diff --git a/com.htc.upm.vive.openxr/Editor/AndroidManifestProcess.cs b/com.htc.upm.vive.openxr/Editor/AndroidManifestProcess.cs index ad8402b..f03e9e6 100644 --- a/com.htc.upm.vive.openxr/Editor/AndroidManifestProcess.cs +++ b/com.htc.upm.vive.openxr/Editor/AndroidManifestProcess.cs @@ -281,7 +281,8 @@ namespace VIVE.OpenXR.Editor } } - foreach (var feature in settings.GetFeatures()) + var features = settings.GetFeatures(); + foreach (var feature in features) { if (!feature.enabled) { continue; } @@ -310,6 +311,17 @@ namespace VIVE.OpenXR.Editor } } } + + if (feature is VIVEFocus3Feature) + { + for (int i = 0; i < features.Length; i++) + { + if (features[i] is Enterprise.ViveEnterpriseCommand) + { + features[i].enabled = true; + } + } + } } if (enableHandtracking) diff --git a/com.htc.upm.vive.openxr/Editor/CompositionLayer/Scripts/CompositionLayerEditor.cs b/com.htc.upm.vive.openxr/Editor/CompositionLayer/Scripts/CompositionLayerEditor.cs index 08c8526..0c70847 100644 --- a/com.htc.upm.vive.openxr/Editor/CompositionLayer/Scripts/CompositionLayerEditor.cs +++ b/com.htc.upm.vive.openxr/Editor/CompositionLayer/Scripts/CompositionLayerEditor.cs @@ -51,6 +51,39 @@ namespace VIVE.OpenXR.CompositionLayer.Editor static GUIContent Label_QuadHeight = new GUIContent("Height", "Height of a Quad Layer"); SerializedProperty Property_QuadHeight; + static string PropertyName_EquirectRadius = "m_EquirectRadius"; + static GUIContent Label_EquirectRadius = new GUIContent("Radius", "Radius of Equirect Layer"); + SerializedProperty Property_EquirectRadius; + + static string PropertyName_EquirectScaleX = "m_EquirectScaleX"; + static GUIContent Label_EquirectScaleX = new GUIContent("scale.x", "Scale.X of Equirect Layer"); + SerializedProperty Property_EquirectScaleX; + + static string PropertyName_EquirectScaleY = "m_EquirectScaleY"; + static GUIContent Label_EquirectScaleY = new GUIContent("scale.y", "Scale.Y of Equirect Layer"); + SerializedProperty Property_EquirectScaleY; + + static string PropertyName_EquirectBiasX = "m_EquirectBiasX"; + static GUIContent Label_EquirectBiasX = new GUIContent("bias.x", "Bias.X of Equirect Layer"); + SerializedProperty Property_EquirectBiasX; + + static string PropertyName_EquirectBiasY = "m_EquirectBiasY"; + static GUIContent Label_EquirectBiasY = new GUIContent("bias.y", "Bias.Y of Equirect Layer"); + SerializedProperty Property_EquirectBiasY; + + static string PropertyName_EquirectCentralHorizontalAngle = "m_EquirectCentralHorizontalAngle"; + static GUIContent Label_EquirectCentralHorizontalAngle = new GUIContent("CentralHorizontalAngle", "Central Horizontal Angle of Equirect Layer"); + SerializedProperty Property_EquirectCentralHorizontalAngle; + + static string PropertyName_EquirectUpperVerticalAngle = "m_EquirectUpperVerticalAngle"; + static GUIContent Label_EquirectUpperVerticalAngle = new GUIContent("UpperVerticalAngle", "Upper Vertical Angle of Equirect Layer"); + SerializedProperty Property_EquirectUpperVerticalAngle; + + static string PropertyName_EquirectLowerVerticalAngle = "m_EquirectLowerVerticalAngle"; + static GUIContent Label_EquirectLowerVerticalAngle = new GUIContent("LowerVerticalAngle", "Lower Vertical Angle of Equirect Layer"); + SerializedProperty Property_EquirectLowerVerticalAngle; + + static string PropertyName_CylinderHeight = "m_CylinderHeight"; static GUIContent Label_CylinderHeight = new GUIContent("Height", "Height of Cylinder Layer"); SerializedProperty Property_CylinderHeight; @@ -138,6 +171,14 @@ namespace VIVE.OpenXR.CompositionLayer.Editor if (Property_LockMode == null) Property_LockMode = serializedObject.FindProperty(PropertyName_LockMode); if (Property_QuadWidth == null) Property_QuadWidth = serializedObject.FindProperty(PropertyName_QuadWidth); if (Property_QuadHeight == null) Property_QuadHeight = serializedObject.FindProperty(PropertyName_QuadHeight); + if (Property_EquirectRadius == null) Property_EquirectRadius = serializedObject.FindProperty(PropertyName_EquirectRadius); + if (Property_EquirectScaleX == null) Property_EquirectScaleX = serializedObject.FindProperty(PropertyName_EquirectScaleX); + if (Property_EquirectScaleY == null) Property_EquirectScaleY = serializedObject.FindProperty(PropertyName_EquirectScaleY); + if (Property_EquirectBiasX == null) Property_EquirectBiasX = serializedObject.FindProperty(PropertyName_EquirectBiasX); + if (Property_EquirectBiasY == null) Property_EquirectBiasY = serializedObject.FindProperty(PropertyName_EquirectBiasY); + if (Property_EquirectCentralHorizontalAngle == null) Property_EquirectCentralHorizontalAngle = serializedObject.FindProperty(PropertyName_EquirectCentralHorizontalAngle); + if (Property_EquirectUpperVerticalAngle == null) Property_EquirectUpperVerticalAngle = serializedObject.FindProperty(PropertyName_EquirectUpperVerticalAngle); + if (Property_EquirectLowerVerticalAngle == null) Property_EquirectLowerVerticalAngle = serializedObject.FindProperty(PropertyName_EquirectLowerVerticalAngle); if (Property_CylinderHeight == null) Property_CylinderHeight = serializedObject.FindProperty(PropertyName_CylinderHeight); if (Property_CylinderArcLength == null) Property_CylinderArcLength = serializedObject.FindProperty(PropertyName_CylinderArcLength); if (Property_CylinderRadius == null) Property_CylinderRadius = serializedObject.FindProperty(PropertyName_CylinderRadius); @@ -171,6 +212,138 @@ namespace VIVE.OpenXR.CompositionLayer.Editor EditorGUILayout.PropertyField(Property_LayerShape, new GUIContent(Label_LayerShape)); serializedObject.ApplyModifiedProperties(); + if (Property_LayerShape.intValue == (int)CompositionLayer.LayerShape.Equirect || Property_LayerShape.intValue == (int)CompositionLayer.LayerShape.Equirect2) + { + if (targetCompositionLayer.isPreviewingQuad) + { + targetCompositionLayer.isPreviewingQuad = false; + if (targetCompositionLayer.generatedPreview != null) + { + DestroyImmediate(targetCompositionLayer.generatedPreview); + } + } + + if (targetCompositionLayer.isPreviewingCylinder) + { + targetCompositionLayer.isPreviewingCylinder = false; + if (targetCompositionLayer.generatedPreview != null) + { + DestroyImmediate(targetCompositionLayer.generatedPreview); + } + } + + if (!FeatureHelpers.GetFeatureWithIdForBuildTarget(BuildTargetGroup.Android, ViveCompositionLayerEquirect.featureId).enabled) + { + EditorGUILayout.HelpBox("The Composition Layer Equirect feature is not enabled in OpenXR Settings.\nEnable it to use Equirect layers.", MessageType.Warning); + } + + EditorGUI.indentLevel++; + showLayerParams = EditorGUILayout.Foldout(showLayerParams, "Equirect Parameters"); + if (showLayerParams) + { + EditorGUILayout.PropertyField(Property_EquirectRadius, new GUIContent(Label_EquirectRadius)); + + if (Property_LayerShape.intValue == (int)CompositionLayer.LayerShape.Equirect) + { + EditorGUILayout.PropertyField(Property_EquirectScaleX, new GUIContent(Label_EquirectScaleX)); + EditorGUILayout.PropertyField(Property_EquirectScaleY, new GUIContent(Label_EquirectScaleY)); + EditorGUILayout.PropertyField(Property_EquirectBiasX, new GUIContent(Label_EquirectBiasX)); + EditorGUILayout.PropertyField(Property_EquirectBiasY, new GUIContent(Label_EquirectBiasY)); + } + + else if (Property_LayerShape.intValue == (int)CompositionLayer.LayerShape.Equirect2) + { + EditorGUILayout.PropertyField(Property_EquirectCentralHorizontalAngle, new GUIContent(Label_EquirectCentralHorizontalAngle)); + EditorGUILayout.PropertyField(Property_EquirectUpperVerticalAngle, new GUIContent(Label_EquirectUpperVerticalAngle)); + EditorGUILayout.PropertyField(Property_EquirectLowerVerticalAngle, new GUIContent(Label_EquirectLowerVerticalAngle)); + } + serializedObject.ApplyModifiedProperties(); + } + EditorGUI.indentLevel--; + + bool EquirectParamsChanged = targetCompositionLayer.LayerDimensionsChanged(); + if (targetCompositionLayer.isPreviewingEquirect) + { + Transform generatedPreviewTransform = targetCompositionLayer.transform.Find(CompositionLayer.EquirectPreviewName); + + if (generatedPreviewTransform != null) + { + targetCompositionLayer.generatedPreview = generatedPreviewTransform.gameObject; + + if (EquirectParamsChanged) + { + MeshFilter equirectMeshFilter = targetCompositionLayer.generatedPreview.GetComponent(); + + //Generate vertices + equirectMeshFilter.mesh = CompositionLayer.MeshGenerationHelper.GenerateEquirectMesh(targetCompositionLayer.hmd, targetCompositionLayer.EquirectRadius); + + targetCompositionLayer.generatedPreview.transform.localPosition = Vector3.zero; + targetCompositionLayer.generatedPreview.transform.localRotation = Quaternion.identity; + + targetCompositionLayer.generatedPreview.transform.localScale = targetCompositionLayer.GetNormalizedLocalScale(targetCompositionLayer.transform, Vector3.one); + } + + if (targetCompositionLayer.generatedPreview.GetComponent().sharedMaterial.mainTexture != targetCompositionLayer.texture) + { + targetCompositionLayer.generatedPreview.GetComponent().sharedMaterial.mainTexture = targetCompositionLayer.texture; + } + + if (GUILayout.Button("Hide Equirect Preview")) + { + targetCompositionLayer.isPreviewingEquirect = false; + if (targetCompositionLayer.generatedPreview != null) + { + DestroyImmediate(targetCompositionLayer.generatedPreview); + } + } + } + else + { + targetCompositionLayer.isPreviewingEquirect = false; + } + } + else + { + if (GUILayout.Button("Show Equirect Preview")) + { + Rect srcRectLeft = FullRect; + if (targetCompositionLayer.isCustomRects && targetCompositionLayer.customRects == CompositionLayer.CustomRectsType.LeftRight) + srcRectLeft = LeftRightRect; + if (targetCompositionLayer.isCustomRects && targetCompositionLayer.customRects == CompositionLayer.CustomRectsType.TopDown) + srcRectLeft = TopDownRect; + + targetCompositionLayer.isPreviewingEquirect = true; + //Vector3[] cylinderVertices = CompositionLayer.MeshGenerationHelper.GenerateCylinderVertex(targetCompositionLayer.CylinderAngleOfArc, targetCompositionLayer.CylinderRadius, targetCompositionLayer.CylinderHeight); + //Add components to Game Object + targetCompositionLayer.generatedPreview = new GameObject(); + targetCompositionLayer.generatedPreview.hideFlags = HideFlags.HideAndDontSave; + targetCompositionLayer.generatedPreview.name = CompositionLayer.EquirectPreviewName; + targetCompositionLayer.generatedPreview.transform.SetParent(targetCompositionLayer.gameObject.transform); + targetCompositionLayer.generatedPreview.transform.localPosition = Vector3.zero; + targetCompositionLayer.generatedPreview.transform.localRotation = Quaternion.identity; + + targetCompositionLayer.generatedPreview.transform.localScale = targetCompositionLayer.GetNormalizedLocalScale(targetCompositionLayer.transform, Vector3.one); + + MeshRenderer equirectMeshRenderer = targetCompositionLayer.generatedPreview.AddComponent(); + MeshFilter equirectMeshFilter = targetCompositionLayer.generatedPreview.AddComponent(); + equirectMeshRenderer.sharedMaterial = new Material(Shader.Find("Unlit/Transparent")); + + if (targetCompositionLayer.texture != null) + { + equirectMeshRenderer.sharedMaterial.mainTexture = targetCompositionLayer.texture; + equirectMeshRenderer.sharedMaterial.mainTextureOffset = srcRectLeft.position; + equirectMeshRenderer.sharedMaterial.mainTextureScale = srcRectLeft.size; + } + + //Generate Mesh + equirectMeshFilter.mesh = CompositionLayer.MeshGenerationHelper.GenerateEquirectMesh(targetCompositionLayer.hmd, targetCompositionLayer.EquirectRadius); + } + } + + EditorGUILayout.Space(10); + serializedObject.ApplyModifiedProperties(); + + } if (Property_LayerShape.intValue == (int)CompositionLayer.LayerShape.Cylinder) { if (!FeatureHelpers.GetFeatureWithIdForBuildTarget(BuildTargetGroup.Android, ViveCompositionLayerCylinder.featureId).enabled) @@ -187,6 +360,15 @@ namespace VIVE.OpenXR.CompositionLayer.Editor } } + if (targetCompositionLayer.isPreviewingEquirect) + { + targetCompositionLayer.isPreviewingEquirect = false; + if (targetCompositionLayer.generatedPreview != null) + { + DestroyImmediate(targetCompositionLayer.generatedPreview); + } + } + Transform generatedQuadTransform = targetCompositionLayer.transform.Find(CompositionLayer.QuadUnderlayMeshName); if (generatedQuadTransform != null) { @@ -280,6 +462,7 @@ namespace VIVE.OpenXR.CompositionLayer.Editor if (targetCompositionLayer.isPreviewingCylinder) { + Transform generatedPreviewTransform = targetCompositionLayer.transform.Find(CompositionLayer.CylinderPreviewName); if (generatedPreviewTransform != null) @@ -372,6 +555,15 @@ namespace VIVE.OpenXR.CompositionLayer.Editor } } + if (targetCompositionLayer.isPreviewingEquirect) + { + targetCompositionLayer.isPreviewingEquirect = false; + if (targetCompositionLayer.generatedPreview != null) + { + DestroyImmediate(targetCompositionLayer.generatedPreview); + } + } + EditorGUI.indentLevel++; showLayerParams = EditorGUILayout.Foldout(showLayerParams, "Quad Parameters"); if (showLayerParams) @@ -507,7 +699,7 @@ namespace VIVE.OpenXR.CompositionLayer.Editor EditorGUI.indentLevel--; }*/ - if (targetCompositionLayer.textureLeft == targetCompositionLayer.textureRight || targetCompositionLayer.textureRight == null) + if((Property_LayerShape.intValue != (int)CompositionLayer.LayerShape.Equirect && Property_LayerShape.intValue != (int)CompositionLayer.LayerShape.Equirect2) && (targetCompositionLayer.textureLeft == targetCompositionLayer.textureRight || targetCompositionLayer.textureRight == null)) { EditorGUILayout.PropertyField(Property_IsCustomRects, Label_IsCustomRects); serializedObject.ApplyModifiedProperties(); diff --git a/com.htc.upm.vive.openxr/Editor/PackageManagerHelper.cs b/com.htc.upm.vive.openxr/Editor/PackageManagerHelper.cs index d31971f..aee19b5 100644 --- a/com.htc.upm.vive.openxr/Editor/PackageManagerHelper.cs +++ b/com.htc.upm.vive.openxr/Editor/PackageManagerHelper.cs @@ -93,9 +93,9 @@ public static class PackageManagerHelper case StatusCode.Failure: if (!s_wasRemoved) { + if (m_removeRequest != null) { Debug.LogError("Something wrong when removing package from list. error:" + m_removeRequest.Error.errorCode + "(" + m_removeRequest.Error.message + ")"); } var request = m_removeRequest; m_removeRequest = null; - Debug.LogError("Something wrong when removing package from list. error:" + m_removeRequest.Error.errorCode + "(" + m_removeRequest.Error.message + ")"); } break; case StatusCode.Success: diff --git a/com.htc.upm.vive.openxr/Editor/Preferences/ViveOpenXRPreference.cs b/com.htc.upm.vive.openxr/Editor/Preferences/ViveOpenXRPreference.cs index 4a164ff..1d076ca 100644 --- a/com.htc.upm.vive.openxr/Editor/Preferences/ViveOpenXRPreference.cs +++ b/com.htc.upm.vive.openxr/Editor/Preferences/ViveOpenXRPreference.cs @@ -149,10 +149,15 @@ namespace VIVE.OpenXR.Editor } } + static int checkPreferenceAssetsFrame = 0; static void OnUpdate() { if (!ViveOpenXRAndroidAssigned) { return; } + checkPreferenceAssetsFrame++; + checkPreferenceAssetsFrame %= 1200; // 10s + if (checkPreferenceAssetsFrame != 0) { return; } + CheckPreferenceAssets(); if (m_AssetAvatar) diff --git a/com.htc.upm.vive.openxr/Editor/ViveOpenXRFeatureSet.cs b/com.htc.upm.vive.openxr/Editor/ViveOpenXRFeatureSet.cs index 2a78fb2..cf6618c 100644 --- a/com.htc.upm.vive.openxr/Editor/ViveOpenXRFeatureSet.cs +++ b/com.htc.upm.vive.openxr/Editor/ViveOpenXRFeatureSet.cs @@ -14,6 +14,7 @@ namespace VIVE.OpenXR "vive.openxr.feature.compositionlayer", "vive.openxr.feature.compositionlayer.cylinder", "vive.openxr.feature.compositionlayer.colorscalebias", + CompositionLayer.ViveCompositionLayerEquirect.featureId, Tracker.ViveWristTracker.featureId, Hand.ViveHandInteraction.featureId, "vive.openxr.feature.foveation", diff --git a/com.htc.upm.vive.openxr/Runtime/Android/arm64/libviveopenxr.so b/com.htc.upm.vive.openxr/Runtime/Android/arm64/libviveopenxr.so index 71cd26f..3e36575 100644 Binary files a/com.htc.upm.vive.openxr/Runtime/Android/arm64/libviveopenxr.so and b/com.htc.upm.vive.openxr/Runtime/Android/arm64/libviveopenxr.so differ diff --git a/com.htc.upm.vive.openxr/Runtime/Common/IViveFeatureWrapper.cs b/com.htc.upm.vive.openxr/Runtime/Common/IViveFeatureWrapper.cs index 3b3e93d..f9dce23 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/IViveFeatureWrapper.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/IViveFeatureWrapper.cs @@ -7,8 +7,17 @@ namespace VIVE.OpenXR.Feature { public interface IViveFeatureWrapper { + /// + /// OnInstanceCreate might be called multiple times. Because many features might be using the same instance. + /// + /// + /// + /// public bool OnInstanceCreate(XrInstance xrInstance, IntPtr xrGetInstanceProcAddr); + /// + /// OnInstanceDestroy might be called multiple times. Because many features might be using the same instance. + /// public void OnInstanceDestroy(); } @@ -21,6 +30,11 @@ namespace VIVE.OpenXR.Feature // Set true in yourfeature's OnInstanceCreate public bool IsInited { get; protected set; } = false; + /// + /// If the feature is inited not successfully, Set this true. Use to avoid multiple inits. + /// + public bool TryInited { get; protected set; } = false; + public OpenXRHelper.xrGetInstanceProcAddrDelegate xrGetInstanceProcAddr; /// diff --git a/com.htc.upm.vive.openxr/Runtime/Common/MemoryTools.cs b/com.htc.upm.vive.openxr/Runtime/Common/MemoryTools.cs index 64ebe5e..ca57f90 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/MemoryTools.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/MemoryTools.cs @@ -1,26 +1,114 @@ using System; using System.Runtime.InteropServices; +using UnityEngine.Profiling; namespace VIVE.OpenXR { - public static class MemoryTools - { + internal static class MemoryTools + { + /// + /// Make sure the input ptr is a OpenXR XrBaseStructure derived struct. + /// + /// the struct to get its next. + /// the next's value + public static unsafe IntPtr GetNext(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + return IntPtr.Zero; + //Profiler.BeginSample("GetNext"); + XrBaseStructure* ptrToStruct = (XrBaseStructure*)ptr.ToPointer(); + //Profiler.EndSample(); + return ptrToStruct->next; + } + + /// + /// Make sure the input ptr is a OpenXR XrBaseStructure derived struct. + /// + /// the struct to get its type + /// the struct's type + public static unsafe XrStructureType GetType(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + throw new Exception("The input pointer is null."); + + //Profiler.BeginSample("GetType"); + XrBaseStructure* ptrToStruct = (XrBaseStructure*)ptr.ToPointer(); + //Profiler.EndSample(); + return ptrToStruct->type; + } + + public static unsafe XrBaseStructure ToBaseStructure(IntPtr ptr) + { + if (ptr == IntPtr.Zero) + throw new Exception("The input pointer is null."); + + //Profiler.BeginSample("ToBaseStructure"); + XrBaseStructure* ptrToStruct = (XrBaseStructure*)ptr.ToPointer(); + //Profiler.EndSample(); + return *ptrToStruct; + } + + public static unsafe T PtrToStructure(IntPtr ptr) where T : unmanaged + { + //Profiler.BeginSample("PtrToStructure"); + // Not to use Marshal.PtrToStructure because it is slow. + T t = default; // Use new T() will cause GC alloc. + Buffer.MemoryCopy((void*)ptr, &t, sizeof(T), sizeof(T)); + //Profiler.EndSample(); + return t; + } + + public static unsafe void PtrToStructure(IntPtr ptr, ref T t) where T : unmanaged + { + //Profiler.BeginSample("PtrToStructure"); + fixed (T* destinationPtr = &t) + { + Buffer.MemoryCopy((void*)ptr, destinationPtr, sizeof(T), sizeof(T)); + } + //Profiler.EndSample(); + } + + public static unsafe void StructureToPtr(T t, IntPtr ptr) where T : unmanaged + { + //Profiler.BeginSample("StructureToPtr"); + // Not to use Marshal.StructureToPtr because it is slow. + Buffer.MemoryCopy(&t, (void*)ptr, sizeof(T), sizeof(T)); + //Profiler.EndSample(); + } + /// /// Convert the enum array to IntPtr. Should call after use. /// - /// /// /// - public static IntPtr ToIntPtr(T[] array) where T : Enum - { - int size = Marshal.SizeOf(typeof(T)) * array.Length; - IntPtr ptr = Marshal.AllocHGlobal(size); - int[] intArray = new int[array.Length]; - for (int i = 0; i < array.Length; i++) - intArray[i] = (int)(object)array[i]; - Marshal.Copy(intArray, 0, ptr, array.Length); - return ptr; - } + public static unsafe IntPtr ToIntPtr(T[] array) where T : Enum + { + int size = sizeof(int) * array.Length; + IntPtr ptr = Marshal.AllocHGlobal(size); + + int* intPtr = (int*)ptr.ToPointer(); + for (int i = 0; i < array.Length; i++) + { + // Convert enum to int. This has better performance than Convert.ToInt32. + intPtr[i] = (int)(object)array[i]; + } + + return ptr; + } + + /// + /// Convert the struct to IntPtr. Should call after use. + /// + /// + /// + /// + public static IntPtr ToIntPtr(T structure) where T : struct + { + int size = Marshal.SizeOf(structure); + IntPtr ptr = Marshal.AllocHGlobal(size); + Marshal.StructureToPtr(structure, ptr, true); + return ptr; + } /// /// Make the same size raw buffer from input array. @@ -28,30 +116,68 @@ namespace VIVE.OpenXR /// Data type could be primitive type or struct. Should call after use. /// The data array /// The memory handle. Should release by - public static IntPtr MakeRawMemory(T[] refArray) - { - int size = Marshal.SizeOf(typeof(T)) * refArray.Length; - return Marshal.AllocHGlobal(size); - } + public static unsafe IntPtr MakeRawMemory(T[] refArray) where T : unmanaged + { + int size = Marshal.SizeOf(typeof(T)) * refArray.Length; + return Marshal.AllocHGlobal(size); + } - /// - /// Copy the raw memory to the array. You should make sure the array has the same size as the raw memory. - /// - /// Convert the memory to this type array. - /// The output array. - /// The data source in raw memory form. - /// Specify the copy count. Count should be less than array length. - public static void CopyFromRawMemory(T[] array, IntPtr raw, int count = 0) - { - int N = array.Length; - if (count > 0 && count < array.Length) - N = count; - int step = Marshal.SizeOf(typeof(T)); - for (int i = 0; i < N; i++) - { - array[i] = Marshal.PtrToStructure(IntPtr.Add(raw, i * step)); - } - } + /// + /// Copy the raw memory to the array. You should make sure the array has the same size as the raw memory. + /// + /// Convert the memory to this type array. + /// The output array. + /// The data source in raw memory form. + /// Specify the copy count. Count should be less than array length. + public static unsafe void CopyFromRawMemory(T[] array, IntPtr raw, int count = 0) where T : unmanaged + { + //Profiler.BeginSample("CopyFromRawMemory"); + int N = array.Length; + if (count > 0 && count < array.Length) + N = count; + int step = sizeof(T); + int bufferSize = step * N; + + // Pin array's address. Prevent GC move it. + fixed (T* destPtr = array) + { + T* sourcePtr = (T*)raw.ToPointer(); + Buffer.MemoryCopy(sourcePtr, destPtr, bufferSize, bufferSize); + } + //Profiler.EndSample(); + } + + /// + /// Copy all raw memory to the array. This has higher performance than . + /// Use this method if you have frequent update requirements. + /// You need prepare a byte buffer to store the raw memory. The byte buffer size should be tSize * array.Length. + /// tSize is used for checking the byte buffer size. If tSize is 0, it will use Marshal.SizeOf(typeof(T)). + /// You can save the size at your size to avoid the Marshal.Sizeof(typeof(T)) call repeatedly. + /// + /// Convert the memory to this type array. + /// The output array. + /// The data source in raw memory form. + public static unsafe void CopyAllFromRawMemory(T[] array, IntPtr raw) where T : unmanaged + { +#if DEBUG + if (array == null) + throw new ArgumentNullException(nameof(array), "Output array cannot be null."); + if (raw == IntPtr.Zero) + throw new ArgumentNullException(nameof(raw), "Raw memory pointer cannot be null."); +#endif + + //Profiler.BeginSample("CopyAllFromRawMemory"); + int elementSize = sizeof(T); + int requiredBufferSize = elementSize * array.Length; + + // Pin array's address. Prevent GC move it. + fixed (T* destPtr = array) + { + T* sourcePtr = (T*)raw.ToPointer(); + Buffer.MemoryCopy(sourcePtr, destPtr, requiredBufferSize, requiredBufferSize); + } + //Profiler.EndSample(); + } /// /// Make the same size raw buffer from input array. Make sure the raw has enough size. @@ -59,22 +185,44 @@ namespace VIVE.OpenXR /// Convert this type array to raw memory. /// The output data in raw memory form /// The data source - public static void CopyToRawMemory(IntPtr raw, T[] array) - { - int step = Marshal.SizeOf(typeof(T)); - for (int i = 0; i < array.Length; i++) - { - Marshal.StructureToPtr(array[i], IntPtr.Add(raw, i * step), false); - } - } + public static unsafe void CopyToRawMemory(IntPtr raw, T[] array) where T : unmanaged + { + //Profiler.BeginSample("CopyToRawMemory"); + int step = sizeof(T); + int bufferSize = step * array.Length; + // Pin array's address. Prevent GC move it. + fixed (T* destPtr = array) + { + void* ptr = raw.ToPointer(); + Buffer.MemoryCopy(destPtr, ptr, bufferSize, bufferSize); + } + //Profiler.EndSample(); + } /// /// Release the raw memory handle which is created by /// /// public static void ReleaseRawMemory(IntPtr ptr) - { - Marshal.FreeHGlobal(ptr); - } - } -} \ No newline at end of file + { + Marshal.FreeHGlobal(ptr); + } + + /// + /// Find a pointer in the next chain. Make sure the input next pointer is a OpenXR XrBaseStructure derived struct. + /// + /// + /// + /// true if exist + public static bool HasPtrInNextChain(IntPtr target, IntPtr next) + { + while (next != IntPtr.Zero) + { + if (next == target) + return true; + next = GetNext(next); + } + return false; + } + } +} diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveEnterpriseCommand.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveEnterpriseCommand.cs new file mode 100644 index 0000000..d429d13 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveEnterpriseCommand.cs @@ -0,0 +1,278 @@ +using System; +using System.Runtime.InteropServices; +using UnityEngine; +using UnityEngine.XR.OpenXR; +using UnityEngine.XR.OpenXR.Features; + +#if UNITY_EDITOR +using UnityEditor; +using UnityEditor.XR.OpenXR.Features; +#endif +namespace VIVE.OpenXR.Enterprise +{ +#if UNITY_EDITOR + [OpenXRFeature(UiName = "VIVE XR Enterprise Command", + Desc = "Support Enterprise request with special command", + Company = "HTC", + OpenxrExtensionStrings = kOpenxrExtensionString, + Version = "0.1", + BuildTargetGroups = new[] { BuildTargetGroup.Android }, + FeatureId = featureId, + Hidden = true + )] +#endif + public class ViveEnterpriseCommand : OpenXRFeature + { + #region Log + const string LOG_TAG = "VIVE.OpenXR.Enterprise.Command "; + private static void DEBUG(String msg) { Debug.Log(LOG_TAG + msg); } + private static void ERROR(String msg) { Debug.LogError(LOG_TAG + msg); } + #endregion + + /// + /// The feature id string. This is used to give the feature a well known id for reference. + /// + public const string featureId = "vive.openxr.feature.enterprise.command"; + + /// + /// The extension string. + /// + public const string kOpenxrExtensionString = "XR_HTC_enterprise_command"; + + #region OpenXR Life Cycle + private static bool m_XrInstanceCreated = false; + private static bool m_XrSessionCreated = false; + private static XrInstance m_XrInstance = 0; + private static XrSession m_XrSession = 0; + private static XrSystemId m_XrSystemId = 0; + + /// + /// Called when xrCreateInstance is done. + /// + /// The created instance. + /// True for valid XrInstance + protected override bool OnInstanceCreate(ulong xrInstance) + { + if (!OpenXRRuntime.IsExtensionEnabled(kOpenxrExtensionString)) + { + ERROR($"OnInstanceCreate() {kOpenxrExtensionString} is NOT enabled."); + return false; + } + + m_XrInstanceCreated = true; + m_XrInstance = xrInstance; + DEBUG($"OnInstanceCreate() {m_XrInstance}"); + + return GetXrFunctionDelegates(m_XrInstance); + } + + /// + /// Called when xrDestroyInstance is done. + /// + /// The instance to destroy. + protected override void OnInstanceDestroy(ulong xrInstance) + { + if (m_XrInstance == xrInstance) + { + m_XrInstanceCreated = false; + m_XrInstance = 0; + } + DEBUG($"OnInstanceDestroy() {xrInstance}"); + } + + /// + /// Called when the XrSystemId retrieved by xrGetSystem is changed. + /// + /// The system id. + protected override void OnSystemChange(ulong xrSystem) + { + m_XrSystemId = xrSystem; + DEBUG($"OnSystemChange() {m_XrSystemId}"); + } + + /// + /// Called when xrCreateSession is done. + /// + /// The created session ID. + protected override void OnSessionCreate(ulong xrSession) + { + m_XrSession = xrSession; + m_XrSessionCreated = true; + DEBUG($"OnSessionCreate() {m_XrSession}"); + } + + /// + /// Called when xrDestroySession is done. + /// + /// The session ID to destroy. + protected override void OnSessionDestroy(ulong xrSession) + { + DEBUG($"OnSessionDestroy() {xrSession}"); + + if (m_XrSession == xrSession) + { + m_XrSession = 0; + m_XrSessionCreated = false; + } + } + #endregion + + #region OpenXR function delegates + /// xrEnterpriseCommandHTC + private static ViveEnterpriseCommandHelper.xrEnterpriseCommandHTCDelegate xrEnterpriseCommandHTC; + /// xrGetInstanceProcAddr + private static OpenXRHelper.xrGetInstanceProcAddrDelegate XrGetInstanceProcAddr; + + /// + /// Enterprise command request for special functionality. + /// + /// The request of enterprise command + /// The result of enterprise command + /// Return XR_SUCCESS if request successfully. False otherwise. + private static XrResult EnterpriseCommandHTC(XrEnterpriseCommandBufferHTC request, ref XrEnterpriseCommandBufferHTC result) + { + if (!m_XrSessionCreated) + { + ERROR("EnterpriseCommandHTC() XR_ERROR_SESSION_LOST."); + return XrResult.XR_ERROR_SESSION_LOST; + } + if (!m_XrInstanceCreated) + { + ERROR("EnterpriseCommandHTC() XR_ERROR_INSTANCE_LOST."); + return XrResult.XR_ERROR_INSTANCE_LOST; + } + + DEBUG($"EnterpriseCommandHTC() code: {request.code}, data: {CharArrayToString(request.data)}"); + return xrEnterpriseCommandHTC(m_XrSession, request, ref result); + } + + /// + /// Get the OpenXR function via XrInstance. + /// + /// The XrInstance is provided by the Unity OpenXR Plugin. + /// Return true if request successfully. False otherwise. + private bool GetXrFunctionDelegates(XrInstance xrInstance) + { + /// xrGetInstanceProcAddr + if (xrGetInstanceProcAddr != null && xrGetInstanceProcAddr != IntPtr.Zero) + { + DEBUG("Get function pointer of xrGetInstanceProcAddr."); + XrGetInstanceProcAddr = Marshal.GetDelegateForFunctionPointer( + xrGetInstanceProcAddr, + typeof(OpenXRHelper.xrGetInstanceProcAddrDelegate)) as OpenXRHelper.xrGetInstanceProcAddrDelegate; + } + else + { + ERROR("xrGetInstanceProcAddr"); + return false; + } + + /// xrEnterpriseCommandHTC + if (XrGetInstanceProcAddr(xrInstance, "xrEnterpriseCommandHTC", out IntPtr funcPtr) == XrResult.XR_SUCCESS) + { + if (funcPtr != IntPtr.Zero) + { + DEBUG("Get function pointer of xrEnterpriseCommandHTC."); + xrEnterpriseCommandHTC = Marshal.GetDelegateForFunctionPointer( + funcPtr, + typeof(ViveEnterpriseCommandHelper.xrEnterpriseCommandHTCDelegate)) as ViveEnterpriseCommandHelper.xrEnterpriseCommandHTCDelegate; + } + } + else + { + ERROR("xrEnterpriseCommandHTC"); + return false; + } + return true; + } + #endregion + + #region Public API + private const int kCharLength = 256; + private const char kEndChar = '\0'; + private static char[] charArray = new char[kCharLength]; + + /// + /// Request special feature with command, it should take code and command string. + /// + /// The type of request code is integer. + /// The maximum length of request command is 256. + /// The output of result code. + /// The output of result command. + /// Return true if request successfully. False otherwise. + public static bool CommandRequest(int requestCode, string requestCommand, out int resultCode, out string resultCommand) + { + resultCode = 0; + resultCommand = string.Empty; + XrEnterpriseCommandBufferHTC request = new XrEnterpriseCommandBufferHTC(requestCode, StringToCharArray(requestCommand)); + XrEnterpriseCommandBufferHTC result = new XrEnterpriseCommandBufferHTC(resultCode, StringToCharArray(resultCommand)); + if (EnterpriseCommandHTC(request, ref result) == XrResult.XR_SUCCESS) + { + resultCode = result.code; + resultCommand = CharArrayToString(result.data); + DEBUG($"CommandRequest Result code: {resultCode}, data: {resultCommand}"); + return true; + } + return false; + } + #endregion + + private static char[] StringToCharArray(string str) + { + Array.Clear(charArray, 0, kCharLength); + if (!string.IsNullOrEmpty(str)) + { + int arrayLength = Math.Min(str.Length, kCharLength); + for (int i = 0; i < arrayLength; i++) + { + charArray[i] = str[i]; + } + charArray[kCharLength - 1] = kEndChar; + } + return charArray; + } + + private static string CharArrayToString(char[] charArray) + { + int actualLength = Array.FindIndex(charArray, c => c == kEndChar); + if (actualLength == -1) + { + actualLength = charArray.Length; + } + + return new string(charArray, 0, actualLength); + } + } + + #region Helper + public struct XrEnterpriseCommandBufferHTC + { + public Int32 code; + + [MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] + public char[] data; + + public XrEnterpriseCommandBufferHTC(int in_code, char[] in_data) + { + code = (Int32)in_code; + data = new char[in_data.Length]; + Array.Copy(in_data, data, in_data.Length); + } + } + + public class ViveEnterpriseCommandHelper + { + /// + /// The function delegate of xrEnterpriseCommandHTC. + /// + /// An XrSession in which the enterprise command will be active. + /// The request of enterprise command + /// The result of enterprise command + /// Return XR_SUCCESS if request successfully. False otherwise. + public delegate XrResult xrEnterpriseCommandHTCDelegate( + XrSession session, + XrEnterpriseCommandBufferHTC request, + ref XrEnterpriseCommandBufferHTC result); + } + #endregion +} diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveEnterpriseCommand.cs.meta b/com.htc.upm.vive.openxr/Runtime/Common/ViveEnterpriseCommand.cs.meta new file mode 100644 index 0000000..3783ee6 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveEnterpriseCommand.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: d5b2125d5dc73694eaed34e97a0962e0 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureCommonWrapper.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureCommonWrapper.cs index d1b61ed..4c07431 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureCommonWrapper.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureCommonWrapper.cs @@ -10,9 +10,14 @@ namespace VIVE.OpenXR.Feature /// /// To use this wrapper, you need to call CommonWrapper.Instance.OnInstanceCreate() in your feature's OnInstanceCreate(), /// and call CommonWrapper.Instance.OnInstanceDestroy() in your feature's OnInstanceDestroy(). + /// + /// Note: + /// In Standardalone's OpenXR MockRuntime, the CreateSwapchain and EnumerateSwapchainImages will work and return success, + /// but the images's native pointer will be null. /// - public class CommonWrapper : ViveFeatureWrapperBase, IViveFeatureWrapper + internal class CommonWrapper : ViveFeatureWrapperBase, IViveFeatureWrapper { + const string TAG = "CommonWrapper"; OpenXRHelper.xrGetSystemPropertiesDelegate XrGetSystemProperties; OpenXRHelper.xrCreateSwapchainDelegate XrCreateSwapchain; OpenXRHelper.xrDestroySwapchainDelegate XrDestroySwapchain; @@ -32,11 +37,13 @@ namespace VIVE.OpenXR.Feature public bool OnInstanceCreate(XrInstance xrInstance, IntPtr xrGetInstanceProcAddrPtr) { if (IsInited) return true; + if (TryInited) return false; + TryInited = true; if (xrInstance == 0) throw new Exception("CommonWrapper: xrInstance is null"); - Debug.Log("CommonWrapper: OnInstanceCreate()"); + Log.D(TAG, "OnInstanceCreate()"); SetGetInstanceProcAddrPtr(xrGetInstanceProcAddrPtr); bool ret = true; @@ -64,9 +71,11 @@ namespace VIVE.OpenXR.Feature /// public void OnInstanceDestroy() { + // Do not destroy twice + if (IsInited == false) return; IsInited = false; XrGetSystemProperties = null; - Debug.Log("CommonWrapper: OnInstanceDestroy()"); + Log.D(TAG, "OnInstanceDestroy()"); } public XrResult GetInstanceProcAddr(XrInstance instance, string name, out IntPtr function) @@ -164,12 +173,12 @@ namespace VIVE.OpenXR.Feature if (formatCapacityInput == 0) { - Debug.Log("CommonWrapper: EnumerateSwapchainFormats(ci=" + formatCapacityInput + ")"); + Log.D(TAG, "EnumerateSwapchainFormats(ci=" + formatCapacityInput + ")"); return XrEnumerateSwapchainFormats(session, 0, ref formatCountOutput, IntPtr.Zero); } else { - Debug.Log("CommonWrapper: EnumerateSwapchainFormats(ci=" + formatCapacityInput + ", formats=long[" + formats.Length + "])"); + Log.D(TAG, "EnumerateSwapchainFormats(ci=" + formatCapacityInput + ", formats=long[" + formats.Length + "])"); IntPtr formatsPtr = MemoryTools.MakeRawMemory(formats); var ret = XrEnumerateSwapchainFormats(session, formatCapacityInput, ref formatCountOutput, formatsPtr); if (ret == XrResult.XR_SUCCESS) @@ -201,7 +210,7 @@ namespace VIVE.OpenXR.Feature return XrResult.XR_ERROR_HANDLE_INVALID; } - Profiler.BeginSample("ASW: xrAcqScImg"); + Profiler.BeginSample("ASW:xrAcqScImg"); var res = XrAcquireSwapchainImage(swapchain, ref acquireInfo, out index); Profiler.EndSample(); return res; @@ -217,7 +226,7 @@ namespace VIVE.OpenXR.Feature return XrResult.XR_ERROR_HANDLE_INVALID; } - Profiler.BeginSample("ASW: xrWaitScImg"); + Profiler.BeginSample("ASW:xrWaitScImg"); var res = XrWaitSwapchainImage(swapchain, ref waitInfo); Profiler.EndSample(); return res; @@ -234,7 +243,7 @@ namespace VIVE.OpenXR.Feature } // Add Profiler - Profiler.BeginSample("ASW: xrRelScImg"); + Profiler.BeginSample("ASW:xrRelScImg"); var res = XrReleaseSwapchainImage(swapchain, ref releaseInfo); Profiler.EndSample(); return res; diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureFutureWrapper.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureFutureWrapper.cs index c433453..976cc0d 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureFutureWrapper.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureFutureWrapper.cs @@ -17,6 +17,8 @@ namespace VIVE.OpenXR.Feature /// public class FutureWrapper : ViveFeatureWrapperBase, IViveFeatureWrapper { + const string TAG = "ViveFuture"; + public enum XrFutureStateEXT { None = 0, // Not defined in extension. A default value. @@ -76,6 +78,8 @@ namespace VIVE.OpenXR.Feature public bool OnInstanceCreate(XrInstance xrInstance, IntPtr xrGetInstanceProcAddrPtr) { if (IsInited) return true; + if (TryInited) return false; + TryInited = true; if (xrInstance == null) throw new Exception("FutureWrapper: xrInstance is null"); @@ -85,12 +89,12 @@ namespace VIVE.OpenXR.Feature throw new Exception("FutureWrapper: xrGetInstanceProcAddr is null"); SetGetInstanceProcAddrPtr(xrGetInstanceProcAddrPtr); - Debug.Log("FutureWrapper: OnInstanceCreate()"); + Log.D(TAG, "OnInstanceCreate()"); bool hasFuture = OpenXRRuntime.IsExtensionEnabled("XR_EXT_future"); if (!hasFuture) { - Debug.LogError("FutureWrapper: XR_EXT_future is not enabled. Check your feature's kOpenxrExtensionString."); + Log.E(TAG, "FutureWrapper: XR_EXT_future is not enabled. Check your feature's kOpenxrExtensionString."); return false; } @@ -102,7 +106,7 @@ namespace VIVE.OpenXR.Feature if (!ret) { - Debug.LogError("FutureWrapper: Failed to get function pointer."); + Log.E(TAG,"FutureWrapper: Failed to get function pointer."); return false; } @@ -112,7 +116,7 @@ namespace VIVE.OpenXR.Feature public void OnInstanceDestroy() { - Debug.Log("FutureWrapper: OnInstanceDestroy()"); + Log.D(TAG, "OnInstanceDestroy()"); IsInited = false; XrPollFutureEXT = null; XrCancelFutureEXT = null; diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureSpaceWrapper.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureSpaceWrapper.cs index 845325e..cbe32b5 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureSpaceWrapper.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveFeatureSpaceWrapper.cs @@ -1,6 +1,7 @@ // Copyright HTC Corporation All Rights Reserved. using System; +using System.Runtime.InteropServices; using UnityEngine; namespace VIVE.OpenXR.Feature @@ -12,9 +13,13 @@ namespace VIVE.OpenXR.Feature /// public class SpaceWrapper : ViveFeatureWrapperBase, IViveFeatureWrapper { + const string TAG = "ViveSpaceWrapper"; + + public delegate XrResult DelegateXrEnumerateReferenceSpaces(XrSession session, uint spaceCapacityInput, out uint spaceCountOutput, [Out] XrReferenceSpaceType[] spaces); delegate XrResult DelegateXrLocateSpace(XrSpace space, XrSpace baseSpace, XrTime time, ref XrSpaceLocation location); delegate XrResult DelegateXrDestroySpace(XrSpace space); + DelegateXrEnumerateReferenceSpaces XrEnumerateReferenceSpaces; OpenXRHelper.xrCreateReferenceSpaceDelegate XrCreateReferenceSpace; DelegateXrLocateSpace XrLocateSpace; DelegateXrDestroySpace XrDestroySpace; @@ -29,17 +34,20 @@ namespace VIVE.OpenXR.Feature public bool OnInstanceCreate(XrInstance xrInstance, IntPtr GetAddr) { if (IsInited) return true; + if (TryInited) return false; + TryInited = true; if (xrInstance == null) - throw new Exception("ViveSpace: xrInstance is null"); + throw new Exception("ViveSpaceWrapper: xrInstance is null"); SetGetInstanceProcAddrPtr(GetAddr); - Debug.Log("ViveSpace: OnInstanceCreate()"); + Log.D(TAG, "OnInstanceCreate()"); bool ret = true; IntPtr funcPtr = IntPtr.Zero; + ret &= OpenXRHelper.GetXrFunctionDelegate(xrGetInstanceProcAddr, xrInstance, "xrEnumerateReferenceSpaces", out XrEnumerateReferenceSpaces); ret &= OpenXRHelper.GetXrFunctionDelegate(xrGetInstanceProcAddr, xrInstance, "xrCreateReferenceSpace", out XrCreateReferenceSpace); ret &= OpenXRHelper.GetXrFunctionDelegate(xrGetInstanceProcAddr, xrInstance, "xrLocateSpace", out XrLocateSpace); ret &= OpenXRHelper.GetXrFunctionDelegate(xrGetInstanceProcAddr, xrInstance, "xrDestroySpace", out XrDestroySpace); @@ -49,12 +57,35 @@ namespace VIVE.OpenXR.Feature public void OnInstanceDestroy() { + // Do not destroy twice + if (IsInited == false) return; IsInited = false; + XrEnumerateReferenceSpaces = null; XrCreateReferenceSpace = null; XrLocateSpace = null; XrDestroySpace = null; } + /// + /// + /// + /// + /// + /// + /// + /// + public XrResult EnumerateReferenceSpaces(XrSession session, int spaceCapacityInput, ref int spaceCountOutput, ref XrReferenceSpaceType[] spaces) + { + spaceCountOutput = 0; + if (!IsInited) + return XrResult.XR_ERROR_HANDLE_INVALID; + if (spaceCapacityInput != 0 && spaces != null && spaces.Length < spaceCapacityInput) + return XrResult.XR_ERROR_SIZE_INSUFFICIENT; + var ret = XrEnumerateReferenceSpaces(session, (uint)spaceCapacityInput, out uint spaceCountOutputXR, spaces); + spaceCountOutput = (int)spaceCountOutputXR; + return ret; + } + /// /// Create a reference space without create info. /// Example: @@ -108,7 +139,7 @@ namespace VIVE.OpenXR.Feature { if (!IsInited) return XrResult.XR_ERROR_HANDLE_INVALID; - Debug.Log($"DestroySpace({space})"); + Log.D(TAG, $"DestroySpace({space})"); return XrDestroySpace(space); } } @@ -124,7 +155,7 @@ namespace VIVE.OpenXR.Feature public Space(XrSpace space) { - Debug.Log($"Space({space})"); + Log.D($"Space({space})"); this.space = space; } diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptors.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptors.cs index cab9508..62d5a80 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptors.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptors.cs @@ -5,9 +5,25 @@ using UnityEngine; using AOT; using System.Collections.Generic; using System.Text; +using System.Linq; namespace VIVE.OpenXR { + [AttributeUsage(AttributeTargets.Method, AllowMultiple = false)] + internal class HookHandlerAttribute : Attribute + { + public string xrFuncName { get; } + + /// + /// Set this function to handle the hook process in + /// + /// The hooked openxr function name + public HookHandlerAttribute(string xrFuncName) + { + this.xrFuncName = xrFuncName; + } + } + /// /// This class is made for all features that need to intercept OpenXR API calls. /// Some APIs will be called by Unity internally, and we need to intercept them in c# to get some information. @@ -22,7 +38,16 @@ namespace VIVE.OpenXR /// return ViveInterceptors.Instance.HookGetInstanceProcAddr(func); /// } /// - partial class ViveInterceptors + + // For extending the ViveInterceptors class, create a new partial class and implement the required functions. + // For example: + // public partial class ViveInterceptors + // { + // [HookHandler("xrYourFunction")] + // private static XrResult OnHookXrYourFunction(XrInstance instance, string name, out IntPtr function) + // { ... } + // } + partial class ViveInterceptors { public const string TAG = "VIVE.OpenXR.ViveInterceptors"; static StringBuilder m_sb = null; @@ -32,8 +57,6 @@ namespace VIVE.OpenXR return m_sb; } } - static void DEBUG(StringBuilder msg) { Debug.LogFormat("{0} {1}", TAG, msg); } - static void ERROR(StringBuilder msg) { Debug.LogErrorFormat("{0} {1}", TAG, msg); } public static ViveInterceptors instance = null; public static ViveInterceptors Instance @@ -48,15 +71,32 @@ namespace VIVE.OpenXR public ViveInterceptors() { - Debug.Log("ViveInterceptors"); + Log.D("ViveInterceptors"); + RegisterFunctions(); } - public delegate XrResult DelegateXrGetInstanceProcAddr(XrInstance instance, string name, out IntPtr function); - private static readonly DelegateXrGetInstanceProcAddr hookXrGetInstanceProcAddrHandle = new DelegateXrGetInstanceProcAddr(XrGetInstanceProcAddrInterceptor); - private static readonly IntPtr hookGetInstanceProcAddrHandlePtr = Marshal.GetFunctionPointerForDelegate(hookXrGetInstanceProcAddrHandle); - static DelegateXrGetInstanceProcAddr XrGetInstanceProcAddrOriginal = null; + delegate XrResult HookHandler(XrInstance instance, string name, out IntPtr function); + static readonly Dictionary interceptors = new Dictionary(); - [MonoPInvokeCallback(typeof(DelegateXrGetInstanceProcAddr))] + private static void RegisterFunctions() + { + var methods = typeof(ViveInterceptors).GetMethods(System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic); + foreach (var method in methods) + { + var attribute = method.GetCustomAttributes(typeof(HookHandlerAttribute), false).FirstOrDefault() as HookHandlerAttribute; + if (attribute != null) + { + Log.I(TAG, $"Registering hook handler {attribute.xrFuncName}"); + interceptors.Add(attribute.xrFuncName, (HookHandler)method.CreateDelegate(typeof(HookHandler))); + } + } + } + + private static readonly OpenXRHelper.xrGetInstanceProcAddrDelegate hookXrGetInstanceProcAddrHandle = new OpenXRHelper.xrGetInstanceProcAddrDelegate(XrGetInstanceProcAddrInterceptor); + private static readonly IntPtr hookGetInstanceProcAddrHandlePtr = Marshal.GetFunctionPointerForDelegate(hookXrGetInstanceProcAddrHandle); + static OpenXRHelper.xrGetInstanceProcAddrDelegate XrGetInstanceProcAddrOriginal = null; + + [MonoPInvokeCallback(typeof(OpenXRHelper.xrGetInstanceProcAddrDelegate))] private static XrResult XrGetInstanceProcAddrInterceptor(XrInstance instance, string name, out IntPtr function) { // Used to check if the original function is already hooked. @@ -66,64 +106,16 @@ namespace VIVE.OpenXR return XrResult.XR_SUCCESS; } - // Custom interceptors - if (name == "xrWaitFrame" && requiredFunctions.Contains(name)) + // Check if the function is intercepted by other features + if (interceptors.ContainsKey(name)) { - Debug.Log($"{TAG}: XrGetInstanceProcAddrInterceptor() {name} is intercepted."); - var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); - if (ret == XrResult.XR_SUCCESS) - { - XrWaitFrameOriginal = Marshal.GetDelegateForFunctionPointer(function); - function = xrWaitFrameInterceptorPtr; - } - return ret; - } + // If no request for this function, call the original function directly. + if (!requiredFunctions.Contains(name)) + return XrGetInstanceProcAddrOriginal(instance, name, out function); - if (name == "xrEndFrame" && requiredFunctions.Contains(name)) - { - Debug.Log($"{TAG}: XrGetInstanceProcAddrInterceptor() {name} is intercepted."); - var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + var ret = interceptors[name](instance, name, out function); if (ret == XrResult.XR_SUCCESS) - { - XrEndFrameOriginal = Marshal.GetDelegateForFunctionPointer(function); - function = xrEndFrameInterceptorPtr; - } - return ret; - } - -#if PERFORMANCE_TEST - if (name == "xrLocateSpace" && requiredFunctions.Contains(name)) - { - Debug.Log($"{TAG}: XrGetInstanceProcAddrInterceptor() {name} is intercepted."); - var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); - if (ret == XrResult.XR_SUCCESS) - { - XrLocateSpaceOriginal = Marshal.GetDelegateForFunctionPointer(function); - function = xrLocateSpaceInterceptorPtr; - } - return ret; - } -#endif - if (name == "xrPollEvent" && requiredFunctions.Contains(name)) - { - Debug.Log($"{TAG}: XrGetInstanceProcAddrInterceptor() {name} is intercepted."); - var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); - if (ret == XrResult.XR_SUCCESS) - { - xrPollEventOrigin = Marshal.GetDelegateForFunctionPointer < xrPollEventDelegate > (function); - function = xrPollEventPtr; - } - return ret; - } - if (name == "xrBeginSession" && requiredFunctions.Contains(name)) - { - Debug.Log($"{TAG}: XrGetInstanceProcAddrInterceptor() {name} is intercepted."); - var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); - if (ret == XrResult.XR_SUCCESS) - { - xrBeginSessionOrigin = Marshal.GetDelegateForFunctionPointer(function); - function = xrBeginSessionPtr; - } + Log.I(TAG, name + " is intercepted"); return ret; } @@ -132,23 +124,23 @@ namespace VIVE.OpenXR public IntPtr HookGetInstanceProcAddr(IntPtr func) { - Debug.Log($"{TAG}: HookGetInstanceProcAddr"); + Log.D(TAG, "HookGetInstanceProcAddr"); if (XrGetInstanceProcAddrOriginal == null) { - Debug.Log($"{TAG}: registering our own xrGetInstanceProcAddr"); - XrGetInstanceProcAddrOriginal = Marshal.GetDelegateForFunctionPointer(func); + Log.D(TAG, "registering our own xrGetInstanceProcAddr"); + XrGetInstanceProcAddrOriginal = Marshal.GetDelegateForFunctionPointer(func); #if UNITY_EDITOR if (Application.isEditor) { // This is a trick to check if the original function is already hooked by this class. Sometimes, the static XrGetInstanceProcAddrOriginal didn't work as expected. - Debug.Log($"{TAG}: Check if duplicate hooked by this script with instance=0 and \"ViveInterceptorHooked\" name. If following a loader error, ignore it."); + Log.D(TAG, "Check if duplicate hooked by this script with instance=0 and \"ViveInterceptorHooked\" name. If following a loader error, ignore it."); // E OpenXR-Loader: Error [SPEC | xrGetInstanceProcAddr | VUID-xrGetInstanceProcAddr-instance-parameter] : XR_NULL_HANDLE for instance but query for ViveInterceptorHooked requires a valid instance // Call XrGetInstanceProcAddrOriginal to check if the original function is already hooked by this class if (XrGetInstanceProcAddrOriginal(0, "ViveInterceptorHooked", out IntPtr function) == XrResult.XR_SUCCESS) { // If it is called successfully, it means the original function is already hooked. So we should return the original function. - Debug.Log($"{TAG}: Already hooked"); + Log.D(TAG, "Already hooked"); return func; } } @@ -173,9 +165,34 @@ namespace VIVE.OpenXR /// public void AddRequiredFunction(string name) { - if (requiredFunctions.Contains(name)) return; - Debug.Log($"{TAG}: AddRequiredFunction({name})"); - requiredFunctions.Add(name); + Log.D(TAG, $"AddRequiredFunction({name})"); + if (!interceptors.ContainsKey(name)) + { + Log.E(TAG, $"AddRequiredFunction({name}) failed. No such function."); + return; + } + + if (!requiredFunctions.Contains(name)) + requiredFunctions.Add(name); + + // If your function support unregister, you can add the reference count here. + if (name == "xrLocateViews") + xrLocateViewsReferenceCount++; + } + + /// + /// If no need to use this hooked function, call this will remove your requirement. + /// If all requirements are removed, the original function will be called directly. + /// + /// + public void RemoveRequiredFunction(string name) + { + // If your function support unregister, you can add the reference count here. + if (requiredFunctions.Contains(name)) + { + if (name == "xrLocateViews") + xrLocateViewsReferenceCount = Mathf.Max(xrLocateViewsReferenceCount--, 0); + } } } } diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsBeginSession.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsBeginSession.cs index a19cf48..58699ae 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsBeginSession.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsBeginSession.cs @@ -12,6 +12,21 @@ namespace VIVE.OpenXR { partial class ViveInterceptors { + [HookHandler("xrBeginSession")] + private static XrResult OnHookXrBeginSession(XrInstance instance, string name, out IntPtr function) + { + if (xrBeginSessionOrigin == null) + { + var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + if (ret != XrResult.XR_SUCCESS) + return ret; + xrBeginSessionOrigin = Marshal.GetDelegateForFunctionPointer(function); + } + function = xrBeginSessionPtr; + return XrResult.XR_SUCCESS; + } + + #region xrBeginSession public delegate XrResult xrBeginSessionDelegate(XrSession session, ref XrSessionBeginInfo beginInfo); private static xrBeginSessionDelegate xrBeginSessionOrigin = null; @@ -19,7 +34,7 @@ namespace VIVE.OpenXR [MonoPInvokeCallback(typeof(xrBeginSessionDelegate))] private static XrResult xrBeginSessionInterceptor(XrSession session, ref XrSessionBeginInfo beginInfo) { - Profiler.BeginSample("ViveInterceptors:BeginSession"); + Profiler.BeginSample("VI:BeginSession"); XrResult result = XrResult.XR_ERROR_FUNCTION_UNSUPPORTED; if (xrBeginSessionOrigin != null) @@ -48,7 +63,8 @@ namespace VIVE.OpenXR IntPtr fs_begin_info_ptr = new IntPtr(offset); XrFrameSynchronizationSessionBeginInfoHTC fsBeginInfo = (XrFrameSynchronizationSessionBeginInfoHTC)Marshal.PtrToStructure(fs_begin_info_ptr, typeof(XrFrameSynchronizationSessionBeginInfoHTC)); - sb.Clear().Append("xrBeginSessionInterceptor() beginInfo.next = (").Append(fsBeginInfo.type).Append(", ").Append(fsBeginInfo.mode).Append(")"); DEBUG(sb); + sb.Clear().Append("xrBeginSessionInterceptor() beginInfo.next = (").Append(fsBeginInfo.type).Append(", ").Append(fsBeginInfo.mode).Append(")"); + Log.D(sb); #endif } @@ -56,7 +72,7 @@ namespace VIVE.OpenXR } else { - sb.Clear().Append("xrBeginSessionInterceptor() Not assign xrBeginSession!"); ERROR(sb); + Log.E("xrBeginSessionInterceptor() Not assign xrBeginSession!"); } Profiler.EndSample(); @@ -79,7 +95,8 @@ namespace VIVE.OpenXR { m_EnableFrameSynchronization = active; m_FrameSynchronizationMode = mode; - sb.Clear().Append("ActivateFrameSynchronization() ").Append(active ? "enable " : "disable ").Append(mode); DEBUG(sb); + sb.Clear().Append("ActivateFrameSynchronization() ").Append(active ? "enable " : "disable ").Append(mode); + Log.D(sb); } } -} \ No newline at end of file +} diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsLocateView.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsLocateView.cs new file mode 100644 index 0000000..7925947 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsLocateView.cs @@ -0,0 +1,98 @@ +// Copyright HTC Corporation All Rights Reserved. +using System.Runtime.InteropServices; +using System; +using AOT; +using UnityEngine.Profiling; + +namespace VIVE.OpenXR +{ + public partial class ViveInterceptors + { + [HookHandler("xrLocateViews")] + private static XrResult OnHookXrLocateViews(XrInstance instance, string name, out IntPtr function) + { + if (xrLocateViewsOriginal == null) + { + var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + if (ret != XrResult.XR_SUCCESS) + return ret; + xrLocateViewsOriginal = Marshal.GetDelegateForFunctionPointer(function); + } + function = xrLocateViewsInterceptorPtr; + return XrResult.XR_SUCCESS; + } + + public struct XrViewLocateInfo + { + public XrStructureType type; + public IntPtr next; + public XrViewConfigurationType viewConfigurationType; + public XrTime displayTime; + public XrSpace space; + } + + public struct XrView + { + public XrStructureType type; + public IntPtr next; + public XrPosef pose; + public XrFovf fov; + } + + public enum XrViewStateFlags { + ORIENTATION_VALID_BIT = 0x00000001, + POSITION_VALID_BIT = 0x00000002, + ORIENTATION_TRACKED_BIT = 0x00000004, + POSITION_TRACKED_BIT = 0x00000008, + } + + public struct XrViewState + { + public XrStructureType type; + public IntPtr next; + public XrViewStateFlags viewStateFlags; + } + + public delegate XrResult DelegateXrLocateViews(XrSession session, IntPtr /*XrViewLocateInfo*/ viewLocateInfo, IntPtr /*XrViewState*/ viewState, uint viewCapacityInput, ref uint viewCountOutput, IntPtr /*XrView*/ views); + + private static readonly DelegateXrLocateViews xrLocateViewsInterceptorHandle = new DelegateXrLocateViews(XrLocateViewsInterceptor); + private static readonly IntPtr xrLocateViewsInterceptorPtr = Marshal.GetFunctionPointerForDelegate(xrLocateViewsInterceptorHandle); + static DelegateXrLocateViews xrLocateViewsOriginal = null; + static int xrLocateViewsReferenceCount = 0; + + [MonoPInvokeCallback(typeof(DelegateXrLocateViews))] + private static XrResult XrLocateViewsInterceptor(XrSession session, IntPtr viewLocateInfo, IntPtr viewState, uint viewCapacityInput, ref uint viewCountOutput, IntPtr views) + { + // Call the original function if the reference count is less than or equal to 0 + if (xrLocateViewsReferenceCount <= 0) + return xrLocateViewsOriginal(session, viewLocateInfo, viewState, viewCapacityInput, ref viewCountOutput, views); + + Profiler.BeginSample("VI:LocateViewsA"); + XrResult result = XrResult.XR_SUCCESS; + if (instance.BeforeOriginalLocateViews != null) + instance.BeforeOriginalLocateViews(session, viewLocateInfo, viewState, viewCapacityInput, ref viewCountOutput, views); + Profiler.EndSample(); + result = xrLocateViewsOriginal(session, viewLocateInfo, viewState, viewCapacityInput, ref viewCountOutput, views); + Profiler.BeginSample("VI:LocateViewsB"); + instance.AfterOriginalLocateViews?.Invoke(session, viewLocateInfo, viewState, viewCapacityInput, ref viewCountOutput, views); + Profiler.EndSample(); + return result; + } + + /// + /// If you return false, the original function will not be called. + /// + /// + public delegate bool DelegateXrLocateViewsInterceptor(XrSession session, IntPtr viewLocateInfo, IntPtr viewState, uint viewCapacityInput, ref uint viewCountOutput, IntPtr views); + + /// + /// Use this to intercept the original function. This will be called before the original function. + /// + public DelegateXrLocateViewsInterceptor BeforeOriginalLocateViews; + + /// + /// Use this to intercept the original function. This will be called after the original function. + /// + public DelegateXrLocateViewsInterceptor AfterOriginalLocateViews; + } +} diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsLocateView.cs.meta b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsLocateView.cs.meta new file mode 100644 index 0000000..1fbdf19 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsLocateView.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 5dfd24c69475c3740975bf5538de3869 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsPollEvent.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsPollEvent.cs index 0489911..dee4c48 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsPollEvent.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsPollEvent.cs @@ -12,6 +12,20 @@ namespace VIVE.OpenXR { partial class ViveInterceptors { + [HookHandler("xrPollEvent")] + private static XrResult OnHookXrPollEvent(XrInstance instance, string name, out IntPtr function) + { + if (xrPollEventOrigin == null) + { + var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + if (ret != XrResult.XR_SUCCESS) + return ret; + xrPollEventOrigin = Marshal.GetDelegateForFunctionPointer(function); + } + function = xrPollEventPtr; + return XrResult.XR_SUCCESS; + } + #region xrPollEvent public delegate XrResult xrPollEventDelegate(XrInstance instance, ref XrEventDataBuffer eventData); private static xrPollEventDelegate xrPollEventOrigin = null; @@ -19,7 +33,7 @@ namespace VIVE.OpenXR [MonoPInvokeCallback(typeof(xrPollEventDelegate))] private static XrResult xrPollEventInterceptor(XrInstance instance, ref XrEventDataBuffer eventData) { - Profiler.BeginSample("ViveInterceptors:WaitFrame"); + Profiler.BeginSample("VI:PollEvent"); XrResult result = XrResult.XR_SUCCESS; if (xrPollEventOrigin != null) @@ -28,7 +42,7 @@ namespace VIVE.OpenXR if (result == XrResult.XR_SUCCESS) { - sb.Clear().Append("xrPollEventInterceptor() xrPollEvent ").Append(eventData.type); DEBUG(sb); + sb.Clear().Append("xrPollEventInterceptor() xrPollEvent ").Append(eventData.type); Log.D("PollEvent", sb); switch(eventData.type) { case XrStructureType.XR_TYPE_EVENT_DATA_PASSTHROUGH_CONFIGURATION_IMAGE_RATE_CHANGED_HTC: @@ -41,7 +55,7 @@ namespace VIVE.OpenXR .Append(", fromImageRatesrc.dstImageRate: ").Append(fromImageRate.dstImageRate) .Append(", toImageRate.srcImageRate: ").Append(toImageRate.srcImageRate) .Append(", toImageRate.dstImageRate: ").Append(toImageRate.dstImageRate); - DEBUG(sb); + Log.D("PollEvent", sb.ToString()); VivePassthroughImageRateChanged.Send(fromImageRate.srcImageRate, fromImageRate.dstImageRate, toImageRate.srcImageRate, toImageRate.dstImageRate); } break; @@ -53,7 +67,7 @@ namespace VIVE.OpenXR sb.Clear().Append("xrPollEventInterceptor() XR_TYPE_EVENT_DATA_PASSTHROUGH_CONFIGURATION_IMAGE_QUALITY_CHANGED_HTC") .Append(", fromImageQuality: ").Append(fromImageQuality.scale) .Append(", toImageQuality: ").Append(toImageQuality.scale); - DEBUG(sb); + Log.D("PollEvent", sb); VivePassthroughImageQualityChanged.Send(fromImageQuality.scale, toImageQuality.scale); } break; @@ -65,7 +79,7 @@ namespace VIVE.OpenXR sb.Clear().Append("xrPollEventInterceptor() XR_TYPE_EVENT_DATA_DISPLAY_REFRESH_RATE_CHANGED_FB") .Append(", fromDisplayRefreshRate: ").Append(fromDisplayRefreshRate) .Append(", toDisplayRefreshRate: ").Append(toDisplayRefreshRate); - DEBUG(sb); + Log.D("PollEvent", sb); ViveDisplayRefreshRateChanged.Send(fromDisplayRefreshRate, toDisplayRefreshRate); } break; @@ -87,7 +101,7 @@ namespace VIVE.OpenXR .Append(", session: ").Append(eventDataSession.session) .Append(", state: ").Append(eventDataSession.state) .Append(", isUserPresent: ").Append(isUserPresent); - DEBUG(sb); + Log.D("PollEvent", sb); } break; case XrStructureType.XR_TYPE_EVENT_DATA_USER_PRESENCE_CHANGED_EXT: @@ -97,7 +111,7 @@ namespace VIVE.OpenXR sb.Clear().Append("xrPollEventInterceptor() XR_TYPE_EVENT_DATA_USER_PRESENCE_CHANGED_EXT") .Append(", session: ").Append(eventDataUserPresence.session) .Append(", isUserPresent: ").Append(isUserPresent); - DEBUG(sb); + Log.D("PollEvent", sb); } break; default: @@ -105,7 +119,7 @@ namespace VIVE.OpenXR } } - //sb.Clear().Append("xrPollEventInterceptor() xrPollEvent result: ").Append(result).Append(", isUserPresent: ").Append(isUserPresent); DEBUG(sb); + //sb.Clear().Append("xrPollEventInterceptor() xrPollEvent result: ").Append(result).Append(", isUserPresent: ").Append(isUserPresent); Log.d("PollEvent", sb); } Profiler.EndSample(); diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsSubmit.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsSubmit.cs index b72353d..090b519 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsSubmit.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsSubmit.cs @@ -8,6 +8,20 @@ namespace VIVE.OpenXR { partial class ViveInterceptors { + [HookHandler("xrEndFrame")] + private static XrResult OnHookXrEndFrame(XrInstance instance, string name, out IntPtr function) + { + if (XrEndFrameOriginal == null) + { + var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + if (ret != XrResult.XR_SUCCESS) + return ret; + XrEndFrameOriginal = Marshal.GetDelegateForFunctionPointer(function); + } + function = xrEndFrameInterceptorPtr; + return XrResult.XR_SUCCESS; + } + public struct XrCompositionLayerBaseHeader { public XrStructureType type; // This base structure itself has no associated XrStructureType value. @@ -37,15 +51,16 @@ namespace VIVE.OpenXR // instance must not null //if (instance == null) // return XrEndFrameOriginal(session, ref frameEndInfo); - Profiler.BeginSample("VI:EndFrame"); + Profiler.BeginSample("VI:EndFrameB"); XrResult result = XrResult.XR_SUCCESS; - if (instance.BeforeOriginalEndFrame != null && - !instance.BeforeOriginalEndFrame(session, ref frameEndInfo, ref result)) - { - Profiler.EndSample(); + bool ret = true; + if (instance.BeforeOriginalEndFrame != null) + ret = instance.BeforeOriginalEndFrame(session, ref frameEndInfo, ref result); + Profiler.EndSample(); + if (!ret) return result; - } result = XrEndFrameOriginal(session, ref frameEndInfo); + Profiler.BeginSample("VI:EndFrameA"); instance.AfterOriginalEndFrame?.Invoke(session, ref frameEndInfo, ref result); Profiler.EndSample(); return result; @@ -86,4 +101,4 @@ namespace VIVE.OpenXR } #endif } -} \ No newline at end of file +} diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsVisibilityMask.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsVisibilityMask.cs new file mode 100644 index 0000000..3a5a7a4 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsVisibilityMask.cs @@ -0,0 +1,91 @@ +// Copyright HTC Corporation All Rights Reserved. +using System.Runtime.InteropServices; +using System; +using AOT; +using UnityEngine.Profiling; + +namespace VIVE.OpenXR +{ + public partial class ViveInterceptors + { + [HookHandler("xrGetVisibilityMaskKHR")] + private static XrResult OnHookXrGetVisibilityMaskKHR(XrInstance instance, string name, out IntPtr function) + { + if (xrGetVisibilityMaskKHROriginal == null) + { + var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + if (ret != XrResult.XR_SUCCESS) + return ret; + xrGetVisibilityMaskKHROriginal = Marshal.GetDelegateForFunctionPointer(function); + } + function = xrGetVisibilityMaskKHRInterceptorPtr; + return XrResult.XR_SUCCESS; + } + + public enum XrVisibilityMaskTypeKHR + { + HIDDEN_TRIANGLE_MESH_KHR = 1, + VISIBLE_TRIANGLE_MESH_KHR = 2, + LINE_LOOP_KHR = 3, + } + + public struct XrVisibilityMaskKHR + { + public XrStructureType type; + public IntPtr next; + public uint vertexCapacityInput; + public uint vertexCountOutput; + public IntPtr vertices; // XrVector2f array + public uint indexCapacityInput; + public uint indexCountOutput; + public IntPtr indices; // uint array + } + + // XrCompositionLayerSpaceWarpInfoFlagsFB bits + public delegate XrResult DelegateXrGetVisibilityMaskKHR(XrSession session, XrViewConfigurationType viewConfigurationType, uint viewIndex, XrVisibilityMaskTypeKHR visibilityMaskType, ref XrVisibilityMaskKHR visibilityMask); + + private static readonly DelegateXrGetVisibilityMaskKHR xrGetVisibilityMaskKHRInterceptorHandle = new DelegateXrGetVisibilityMaskKHR(XrGetVisibilityMaskKHRInterceptor); + private static readonly IntPtr xrGetVisibilityMaskKHRInterceptorPtr = Marshal.GetFunctionPointerForDelegate(xrGetVisibilityMaskKHRInterceptorHandle); + static DelegateXrGetVisibilityMaskKHR xrGetVisibilityMaskKHROriginal = null; + + [MonoPInvokeCallback(typeof(DelegateXrGetVisibilityMaskKHR))] + private static XrResult XrGetVisibilityMaskKHRInterceptor(XrSession session, XrViewConfigurationType viewConfigurationType, uint viewIndex, XrVisibilityMaskTypeKHR visibilityMaskType, ref XrVisibilityMaskKHR visibilityMask) + { + // instance must not null + //if (instance == null) + // return XrGetVisibilityMaskKHROriginal(session, ref frameEndInfo); + Profiler.BeginSample("VI:GetVMB"); + XrResult result = XrResult.XR_SUCCESS; + bool ret = true; + if (instance.BeforeOriginalGetVisibilityMaskKHR != null) + ret = instance.BeforeOriginalGetVisibilityMaskKHR(session, viewConfigurationType, viewIndex, visibilityMaskType, ref visibilityMask, ref result); + Profiler.EndSample(); + if (!ret) + return result; + result = xrGetVisibilityMaskKHROriginal(session, viewConfigurationType, viewIndex, visibilityMaskType, ref visibilityMask); + Profiler.BeginSample("VI:GetVMA"); + instance.AfterOriginalGetVisibilityMaskKHR?.Invoke(session, viewConfigurationType, viewIndex, visibilityMaskType, ref visibilityMask, ref result); + Profiler.EndSample(); + return result; + } + + /// + /// If you return false, the original function will not be called. + /// + /// + /// + /// + /// + public delegate bool DelegateXrGetVisibilityMaskKHRInterceptor(XrSession session, XrViewConfigurationType viewConfigurationType, uint viewIndex, XrVisibilityMaskTypeKHR visibilityMaskType, ref XrVisibilityMaskKHR visibilityMask, ref XrResult result); + + /// + /// Use this to intercept the original function. This will be called before the original function. + /// + public DelegateXrGetVisibilityMaskKHRInterceptor BeforeOriginalGetVisibilityMaskKHR; + + /// + /// Use this to intercept the original function. This will be called after the original function. + /// + public DelegateXrGetVisibilityMaskKHRInterceptor AfterOriginalGetVisibilityMaskKHR; + } +} diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsVisibilityMask.cs.meta b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsVisibilityMask.cs.meta new file mode 100644 index 0000000..a8ea42f --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsVisibilityMask.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: a4c00b0b7df78d34d89cd728c9de0672 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsWaitFrame.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsWaitFrame.cs index 2d49ea2..45f89e0 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsWaitFrame.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveInterceptorsWaitFrame.cs @@ -9,7 +9,20 @@ namespace VIVE.OpenXR { partial class ViveInterceptors { - #region XRWaitFrame + [HookHandler("xrWaitFrame")] + private static XrResult OnHookXrWaitFrame(XrInstance instance, string name, out IntPtr function) + { + if (XrWaitFrameOriginal == null) + { + var ret = XrGetInstanceProcAddrOriginal(instance, name, out function); + if (ret != XrResult.XR_SUCCESS) + return ret; + XrWaitFrameOriginal = Marshal.GetDelegateForFunctionPointer(function); + } + function = xrWaitFrameInterceptorPtr; + return XrResult.XR_SUCCESS; + } + public struct XrFrameWaitInfo { public XrStructureType type; @@ -103,6 +116,5 @@ namespace VIVE.OpenXR /// Use this to intercept the original function. This will be called after the original function. /// public DelegateXrWaitFrameInterceptor AfterOriginalWaitFrame; - #endregion XRWaitFrame } } diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveLog.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveLog.cs new file mode 100644 index 0000000..2f9393c --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveLog.cs @@ -0,0 +1,247 @@ +// Copyright HTC Corporation All Rights Reserved. + +#if UNITY_ANDROID && !UNITY_EDITOR +using System.Runtime.InteropServices; +#endif +using System.Text; +// Non android will need UnityEngine +using UnityEngine; + +namespace VIVE.OpenXR +{ + public static class Log + { + public const string TAG = "VIVE.OpenXR"; + +#if UNITY_ANDROID && !UNITY_EDITOR + [DllImport("liblog.so")] + private static extern int __android_log_print(int prio, string tag, string fmt, string msg); +#endif + + // Use ("%s", message) instead of just (message) is because of the following reason: + // In case message contains special characters like %, \n, \r, etc. It will be treated as format string. + // This is a little waste of performance, but it's safer. + + /// + /// Not show in Standalone + /// + public static void D(string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(3, TAG, "%s", message); // Android Debug +#endif + } + + public static void I(string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(4, TAG, "%s", message); // Android Info +#else + Debug.Log(message); +#endif + } + + public static void W(string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(5, TAG, "%s", message); // Android Warning +#else + Debug.LogWarning(message); +#endif + } + + public static void E(string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(6, TAG, "%s", message); // Android Error +#else + Debug.LogError(message); +#endif + } + + /// + /// Not show in Standalone + /// + public static void D(string tag, string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(3, tag, "%s", message); +#endif + } + + public static void I(string tag, string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(4, tag, "%s", message); +#else + Debug.LogFormat("{0}: {1}", tag, message); +#endif + } + + public static void W(string tag, string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(5, tag, "%s", message); // Android Warning +#else + Debug.LogWarningFormat("{0}: {1}", tag, message); +#endif + } + + public static void E(string tag, string message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(6, tag, "%s", message); // Android Error +#else + Debug.LogErrorFormat("{0}: {1}", tag, message); +#endif + } + + /// + /// Not show in Standalone + /// + public static void D(StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(3, TAG, "%s", message.ToString()); +#endif + } + + public static void I(StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(4, TAG, "%s", message.ToString()); +#else + Debug.Log(message.ToString()); +#endif + } + + public static void W(StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(5, TAG, "%s", message.ToString()); // Android Warning +#else + Debug.LogWarning(message.ToString()); +#endif + } + + public static void E(StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(6, TAG, "%s", message.ToString()); // Android Error +#else + Debug.LogError(message.ToString()); +#endif + } + + /// + /// Not show in Standalone + /// + public static void D(string tag, StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(3, tag, "%s", message.ToString()); +#endif + } + + public static void I(string tag, StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(4, tag, "%s", message.ToString()); +#else + Debug.LogFormat("{0}: {1}", tag, message.ToString()); +#endif + } + + public static void W(string tag, StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(5, tag, "%s", message.ToString()); // Android Warning +#else + Debug.LogWarningFormat("{0}: {1}", tag, message.ToString()); +#endif + } + + public static void E(string tag, StringBuilder message) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(6, tag, "%s", message.ToString()); // Android Error +#else + Debug.LogErrorFormat("{0}: {1}", tag, message.ToString()); +#endif + } + + /// + /// Not show in Standalone + /// + public static void DFmt(string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(3, TAG, "%s", string.Format(fmt, args)); +#endif + } + + public static void IFmt(string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(4, TAG, "%s", string.Format(fmt, args)); +#else + Debug.LogFormat(fmt, args); +#endif + } + + public static void WFmt(string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(5, TAG, "%s", string.Format(fmt, args)); // Android Warning +#else + Debug.LogWarningFormat(fmt, args); +#endif + } + + public static void EFmt(string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(6, TAG, "%s", string.Format(fmt, args)); // Android Error +#else + Debug.LogErrorFormat(fmt, args); +#endif + } + + /// + /// Not show in Standalone + /// + public static void DFmt(string tag, string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(3, tag, "%s", string.Format(fmt, args)); +#endif + } + + public static void IFmt(string tag, string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(4, tag, "%s", string.Format(fmt, args)); +#else + Debug.LogFormat("{0}: {1}", tag, string.Format(fmt, args)); +#endif + } + + public static void WFmt(string tag, string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(5, tag, "%s", string.Format(fmt, args)); // Android Warning +#else + Debug.LogWarningFormat("{0}: {1}", tag, fmt, string.Format(fmt, args)); +#endif + } + + public static void EFmt(string tag, string fmt, params object[] args) + { +#if UNITY_ANDROID && !UNITY_EDITOR + __android_log_print(6, tag, "%s", string.Format(fmt, args)); // Android Error +#else + Debug.LogErrorFormat("{0}: {1}", tag, fmt, string.Format(fmt, args)); +#endif + } + } +} \ No newline at end of file diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveLog.cs.meta b/com.htc.upm.vive.openxr/Runtime/Common/ViveLog.cs.meta new file mode 100644 index 0000000..eaa3ba7 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveLog.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9750d8d4e8eb4994088534cb111510d3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Common/ViveRenderThreadTask.cs b/com.htc.upm.vive.openxr/Runtime/Common/ViveRenderThreadTask.cs index 4c85f8c..1ecd520 100644 --- a/com.htc.upm.vive.openxr/Runtime/Common/ViveRenderThreadTask.cs +++ b/com.htc.upm.vive.openxr/Runtime/Common/ViveRenderThreadTask.cs @@ -58,7 +58,8 @@ namespace VIVE.OpenXR.Common.RenderThread isFree = true }; pool.Insert(index, newItem); - Debug.Log("RT.MessagePool.Obtain() pool count=" + pool.Count); + //Log.d("RT.MessagePool.Obtain<" + typeof(T) + ">() pool count=" + pool.Count); // Not to expose developer's type. + Log.D("RT.MessagePool.Obtain() pool count=" + pool.Count); return newItem; } @@ -101,12 +102,13 @@ namespace VIVE.OpenXR.Common.RenderThread /// The queueSize should be the double count of message you want to pass to render thread in one frame. /// /// - public PreAllocatedQueue(int queueSize = 2) : base() { - for (int i = 0; i < queueSize; i++) + public PreAllocatedQueue(int queueSize = 2) : base() + { + for (int i = 0; i < queueSize; i++) { - list.Add(null); - } - } + list.Add(null); + } + } private int Next(int value) { @@ -154,7 +156,7 @@ namespace VIVE.OpenXR.Common.RenderThread /// After use the Message, call Release() to the message. /// /// - public Message Dequeue() + public Message Dequeue() { // No lock protection here. If list is not change size, it is safe. // However if list changed size, it is safe in most case. @@ -163,12 +165,12 @@ namespace VIVE.OpenXR.Common.RenderThread } } - /// - /// RenderThreadTask class is used to execute specified tasks on the rendering thread. - /// You don't need to develop a native function to run your task on the rendering thread. - /// And you don't need to design how to pass data to render thread. - /// This class can be run in Unity Editor since Unity 2021. Test your code in Unity Editor can save your time. - /// + /// + /// RenderThreadTask class is used to execute specified tasks on the rendering thread. + /// You don't need to develop a native function to run your task on the rendering thread. + /// And you don't need to design how to pass data to render thread. + /// This class can be run in Unity Editor since Unity 2021. Test your code in Unity Editor can save your time. + /// /// You should only create RenderThreadTask as static readonly. Do not create RenderThreadTask in dynamic. /// /// You should not run Unity.Engine code in RenderThread. It will cause the Unity.Engine to hang. @@ -177,8 +179,8 @@ namespace VIVE.OpenXR.Common.RenderThread /// /// The 'lock' expression is not used here. Because I believe the lock is not necessary in this case. /// And the lock will cause the performance issue. All the design here help you not to use 'lock'. - /// - public class RenderThreadTask + /// + public class RenderThreadTask { private static IntPtr GetFunctionPointerForDelegate(Delegate del) { @@ -208,20 +210,21 @@ namespace VIVE.OpenXR.Common.RenderThread /// The callback in render thread. /// If issue this event once in a frame, set queueSize as 2. /// - public RenderThreadTask(Receiver render, int queueSize = 2) - { - queue = new PreAllocatedQueue(queueSize); - receiver = render; - if (receiver == null) - throw new ArgumentNullException("receiver should not be null"); - - CommandList.Add(this); - id = CommandList.IndexOf(this); - } - - ~RenderThreadTask() + public RenderThreadTask(Receiver render, int queueSize = 2) { - try { CommandList.RemoveAt(id); } finally { } + queue = new PreAllocatedQueue(queueSize); + receiver = render; + if (receiver == null) + throw new ArgumentNullException("receiver should not be null"); + + CommandList.Add(this); + id = CommandList.IndexOf(this); + } + + ~RenderThreadTask() + { + // Remove could be in a random order, and will cause orderId change. DO not remove any of them. + //try { CommandList.Remove(this); } finally { } } void IssuePluginEvent(IntPtr callback, int eventID) @@ -282,30 +285,36 @@ namespace VIVE.OpenXR.Common.RenderThread // Use static readonly to create RenderThreadTask. Keep internal to avoid miss use by other developers. internal static readonly RenderThreadTask sampleRenderThreadTask1 = new RenderThreadTask(SampleReceiver1); // Different task use different RenderThreadTask and different recevier. - internal static readonly RenderThreadTask sampleRenderThreadTask2 = new RenderThreadTask(SampleReceiver2); + internal static readonly RenderThreadTask sampleRenderThreadTask2 = new RenderThreadTask(SampleReceiver2); - private static void SampleReceiver1(PreAllocatedQueue dataQueue) + private static void SampleReceiver1(PreAllocatedQueue dataQueue) { var msg = dataQueue.Dequeue() as SampleMessage; - // no need to check msg if it is null because your design should avoid it. - // Keep data before release. Use local variable to keep data and release msg early. Should not keep the msg instance itself. - var data = msg.dataPassedToRenderThread; - // Make sure release the msg if finished. Other wise the memory will keep increasing when Obtain. - MessagePool.Release(msg); - - Debug.Log("Task1, the data passed to render thread: " + data); + if (msg != null) + { + // Keep data before release. Use local variable to keep data and release msg early. Should not keep the msg instance itself. + var data = msg.dataPassedToRenderThread; + // Make sure release the msg if finished. Other wise the memory will keep increasing when Obtain. + MessagePool.Release(msg); + Debug.Log("Task1, the data passed to render thread: " + data); + } } - private static void SampleReceiver2(PreAllocatedQueue dataQueue) - { - var msg = dataQueue.Dequeue() as SampleMessage; - var data = msg.dataPassedToRenderThread; - MessagePool.Release(msg); - Debug.Log("Task2, the data passed to render thread: " + data); - } + private static void SampleReceiver2(PreAllocatedQueue dataQueue) + { + var msg = dataQueue.Dequeue() as SampleMessage; + if (msg != null) + { + // Keep data before release. Use local variable to keep data and release msg early. Should not keep the msg instance itself. + var data = msg.dataPassedToRenderThread; + // Make sure release the msg if finished. Other wise the memory will keep increasing when Obtain. + MessagePool.Release(msg); + Debug.Log("Task2, the data passed to render thread: " + data); + } + } - // Send a message to the render thread every frame. - private void Update() + // Send a message to the render thread every frame. + private void Update() { // Make sure only one kind of message object is used in the queue. var msg = sampleRenderThreadTask1.Queue.Obtain(); @@ -318,12 +327,12 @@ namespace VIVE.OpenXR.Common.RenderThread public void OnClicked() { // Reuse the same message type is ok. - var msg = sampleRenderThreadTask2.Queue.Obtain(); - msg.dataPassedToRenderThread = 234; - sampleRenderThreadTask2.Queue.Enqueue(msg); - sampleRenderThreadTask2.IssueEvent(); - } - } + var msg = sampleRenderThreadTask2.Queue.Obtain(); + msg.dataPassedToRenderThread = 234; + sampleRenderThreadTask2.Queue.Enqueue(msg); + sampleRenderThreadTask2.IssueEvent(); + } + } #endif #endregion } diff --git a/com.htc.upm.vive.openxr/Runtime/CompositionLayer/Scripts/CompositionLayer.cs b/com.htc.upm.vive.openxr/Runtime/CompositionLayer/Scripts/CompositionLayer.cs index ce8dda3..9d419a2 100644 --- a/com.htc.upm.vive.openxr/Runtime/CompositionLayer/Scripts/CompositionLayer.cs +++ b/com.htc.upm.vive.openxr/Runtime/CompositionLayer/Scripts/CompositionLayer.cs @@ -8,6 +8,7 @@ using UnityEngine.XR.OpenXR; using System.Collections.Generic; using System.Linq; using VIVE.OpenXR.CompositionLayer; +using System.Runtime.CompilerServices; namespace VIVE.OpenXR.CompositionLayer { @@ -16,15 +17,18 @@ namespace VIVE.OpenXR.CompositionLayer #if UNITY_EDITOR [SerializeField] public bool isPreviewingCylinder = false; + public bool isPreviewingEquirect = false; [SerializeField] public bool isPreviewingQuad = false; [SerializeField] public GameObject generatedPreview = null; public const string CylinderPreviewName = "CylinderPreview"; + public const string EquirectPreviewName = "EquirectPreview"; public const string QuadPreviewName = "QuadPreview"; #endif public const string CylinderUnderlayMeshName = "Underlay Alpha Mesh (Cylinder)"; + public const string EquirectUnderlayMeshName = "Underlay Alpha Mesh (Equirect)"; public const string QuadUnderlayMeshName = "Underlay Alpha Mesh (Quad)"; public const string FallbackMeshName = "FallbackMeshGO"; @@ -56,6 +60,15 @@ namespace VIVE.OpenXR.CompositionLayer public float QuadHeight { get { return m_QuadHeight; } set { m_QuadHeight = value; } } #endif + [SerializeField] + [Min(0.001f)] + private float m_CylinderRadius = 1f; + public float cylinderRadius { get { return m_CylinderRadius; } } +#if UNITY_EDITOR + public float CylinderRadius { get { return m_CylinderRadius; } set { m_CylinderRadius = value; } } +#endif + + [SerializeField] [Min(0.001f)] private float m_CylinderHeight = 1f; @@ -74,10 +87,66 @@ namespace VIVE.OpenXR.CompositionLayer [SerializeField] [Min(0.001f)] - private float m_CylinderRadius = 1f; - public float cylinderRadius { get { return m_CylinderRadius; } } + private float m_EquirectRadius = 1f; + public float equirectRadius { get { return m_EquirectRadius; } } #if UNITY_EDITOR - public float CylinderRadius { get { return m_CylinderRadius; } set { m_CylinderRadius = value; } } + public float EquirectRadius { get { return m_EquirectRadius; } set { m_EquirectRadius = value; } } +#endif + + [SerializeField] + [Range(0.0f, 1.0f)] + private float m_EquirectScaleX = 1.0f; + public float equirectScaleX { get { return m_EquirectScaleX; } } +#if UNITY_EDITOR + public float EquirectScaleX { get { return m_EquirectScaleX; } set { m_EquirectScaleX = value; } } +#endif + + [SerializeField] + [Range(0.0f, 1.0f)] + private float m_EquirectScaleY = 1.0f; + public float equirectScaleY { get { return m_EquirectScaleY; } } +#if UNITY_EDITOR + public float EquirectScaleY { get { return m_EquirectScaleY; } set { m_EquirectScaleY = value; } } +#endif + + [SerializeField] + [Range(0.0f, 1.0f)] + private float m_EquirectBiasX = 0.0f; + public float equirectBiasX { get { return m_EquirectBiasX; } } +#if UNITY_EDITOR + public float EquirectBiasX { get { return m_EquirectBiasX; } set { m_EquirectBiasX = value; } } +#endif + + [SerializeField] + [Range(0.0f, 1.0f)] + private float m_EquirectBiasY = 0.0f; + public float equirectBiasY { get { return m_EquirectBiasY; } } +#if UNITY_EDITOR + public float EquirectBiasY { get { return m_EquirectBiasY; } set { m_EquirectBiasY = value; } } +#endif + + [SerializeField] + [Range(0f, 360f)] + private float m_EquirectCentralHorizontalAngle = 360f; + public float equirectCentralHorizontalAngle { get { return m_EquirectCentralHorizontalAngle; } } +#if UNITY_EDITOR + public float EquirectCentralHorizontalAngle { get { return m_EquirectCentralHorizontalAngle; } set { m_EquirectCentralHorizontalAngle = value; } } +#endif + + [SerializeField] + [Range(-90f, 90f)] + private float m_EquirectUpperVerticalAngle = 90f; + public float equirectUpperVerticalAngle { get { return m_EquirectUpperVerticalAngle; } } +#if UNITY_EDITOR + public float EquirectUpperVerticalAngle { get { return m_EquirectUpperVerticalAngle; } set { m_EquirectUpperVerticalAngle = value; } } +#endif + + [SerializeField] + [Range(-90f, 90f)] + private float m_EquirectLowerVerticalAngle = -90f; + public float equirectLowerVerticalAngle { get { return m_EquirectLowerVerticalAngle; } } +#if UNITY_EDITOR + public float EquirectLowerVerticalAngle { get { return m_EquirectLowerVerticalAngle; } set { m_EquirectLowerVerticalAngle = value; } } #endif [SerializeField] @@ -171,6 +240,7 @@ namespace VIVE.OpenXR.CompositionLayer private LayerShape previousLayerShape = LayerShape.Quad; private float previousQuadWidth = 1f; private float previousQuadHeight = 1f; + private float previousEquirectRadius = 1f; private float previousCylinderHeight = 1f; private float previousCylinderArcLength = 1f; private float previousCylinderRadius = 1f; @@ -192,7 +262,7 @@ namespace VIVE.OpenXR.CompositionLayer private bool placeholderGenerated = false; private static bool isSynchronized = false; private static RenderThreadSynchronizer synchronizer; - private Camera hmd; + public Camera hmd; private ViveCompositionLayer compositionLayerFeature = null; @@ -362,6 +432,7 @@ namespace VIVE.OpenXR.CompositionLayer previousLayerShape = layerShape; previousQuadWidth = m_QuadWidth; previousQuadHeight = m_QuadHeight; + previousEquirectRadius = m_EquirectRadius; previousCylinderHeight = m_CylinderHeight; previousCylinderArcLength = m_CylinderArcLength; previousCylinderRadius = m_CylinderRadius; @@ -690,6 +761,20 @@ namespace VIVE.OpenXR.CompositionLayer compositionLayerCylinderFeature.Submit_CompositionLayerCylinder(AssignCompositionLayerParamsCylinder(eyeid, botheye), (OpenXR.CompositionLayer.LayerType)layerType, compositionDepth, (eyeid == 0) ? layerID : layerIDRight); } break; + case LayerShape.Equirect:// TODO added code to submit + ViveCompositionLayerEquirect compositionLayerEquicrectFeature = OpenXRSettings.Instance.GetFeature(); + if (compositionLayerEquicrectFeature != null && compositionLayerEquicrectFeature.EquirectExtensionEnabled) + { + compositionLayerEquicrectFeature.Submit_CompositionLayerEquirect(AssignCompositionLayerParamsEquirect(eyeid), (OpenXR.CompositionLayer.LayerType)layerType, compositionDepth, (eyeid == 0) ? layerID : layerIDRight); + } + break; + case LayerShape.Equirect2:// TODO added code to submit + compositionLayerEquicrectFeature = OpenXRSettings.Instance.GetFeature(); + if (compositionLayerEquicrectFeature != null && compositionLayerEquicrectFeature.Equirect2ExtensionEnabled) + { + compositionLayerEquicrectFeature.Submit_CompositionLayerEquirect2(AssignCompositionLayerParamsEquirect2(eyeid), (OpenXR.CompositionLayer.LayerType)layerType, compositionDepth, (eyeid == 0) ? layerID : layerIDRight); + } + break; } } @@ -838,7 +923,7 @@ namespace VIVE.OpenXR.CompositionLayer else { XRInputSubsystem subsystem = null; - SubsystemManager.GetInstances(inputSubsystems); + SubsystemManager.GetSubsystems(inputSubsystems); if (inputSubsystems.Count > 0) { subsystem = inputSubsystems[0]; @@ -873,6 +958,97 @@ namespace VIVE.OpenXR.CompositionLayer return CompositionLayerParamsQuad; } + XrCompositionLayerEquirectKHR CompositionLayerParamsEquirect = new XrCompositionLayerEquirectKHR(); + private XrCompositionLayerEquirectKHR AssignCompositionLayerParamsEquirect(int eyeid) + { + compositionLayerFeature = OpenXRSettings.Instance.GetFeature(); + + CompositionLayerParamsEquirect.type = XrStructureType.XR_TYPE_COMPOSITION_LAYER_EQUIRECT_KHR; + CompositionLayerParamsEquirect.layerFlags = ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_CORRECT_CHROMATIC_ABERRATION_BIT | ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT; + + if (!enabledColorScaleBiasInShader) + { + CompositionLayerParamsEquirect.layerFlags |= ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT; + } + + CompositionLayerParamsEquirect.subImage.imageRect = layerTextures[eyeid].textureLayout; + CompositionLayerParamsEquirect.subImage.imageArrayIndex = 0; + GetCompositionLayerPose(ref CompositionLayerParamsEquirect.pose); //Update isHeadLock + + // HeadLock + CompositionLayerParamsEquirect.space = compositionLayerFeature.HeadLockSpace; + + switch (layerVisibility) + { + default: + case Visibility.Both: + CompositionLayerParamsEquirect.eyeVisibility = XrEyeVisibility.XR_EYE_VISIBILITY_BOTH; + break; + case Visibility.Left: + CompositionLayerParamsEquirect.eyeVisibility = XrEyeVisibility.XR_EYE_VISIBILITY_LEFT; + break; + case Visibility.Right: + CompositionLayerParamsEquirect.eyeVisibility = XrEyeVisibility.XR_EYE_VISIBILITY_RIGHT; + break; + } + + CompositionLayerParamsEquirect.subImage.imageRect = layerTextures[eyeid].textureLayout; + CompositionLayerParamsEquirect.subImage.imageArrayIndex = 0; + GetCompositionLayerPose(ref CompositionLayerParamsEquirect.pose); + CompositionLayerParamsEquirect.radius = m_EquirectRadius; + CompositionLayerParamsEquirect.scale.x = m_EquirectScaleX; + CompositionLayerParamsEquirect.scale.y = m_EquirectScaleY; + CompositionLayerParamsEquirect.bias.x = m_EquirectBiasX; + CompositionLayerParamsEquirect.bias.y = m_EquirectBiasY; + + return CompositionLayerParamsEquirect; + } + + XrCompositionLayerEquirect2KHR CompositionLayerParamsEquirect2 = new XrCompositionLayerEquirect2KHR(); + private XrCompositionLayerEquirect2KHR AssignCompositionLayerParamsEquirect2(int eyeid) + { + compositionLayerFeature = OpenXRSettings.Instance.GetFeature(); + + CompositionLayerParamsEquirect2.type = XrStructureType.XR_TYPE_COMPOSITION_LAYER_EQUIRECT2_KHR; + CompositionLayerParamsEquirect2.layerFlags = ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_CORRECT_CHROMATIC_ABERRATION_BIT | ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT; + + if (!enabledColorScaleBiasInShader) + { + CompositionLayerParamsEquirect2.layerFlags |= ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT; + } + + CompositionLayerParamsEquirect2.subImage.imageRect = layerTextures[eyeid].textureLayout; + CompositionLayerParamsEquirect2.subImage.imageArrayIndex = 0; + GetCompositionLayerPose(ref CompositionLayerParamsEquirect2.pose); //Update isHeadLock + + // HeadLock + CompositionLayerParamsEquirect2.space = compositionLayerFeature.HeadLockSpace; + + switch (layerVisibility) + { + default: + case Visibility.Both: + CompositionLayerParamsEquirect2.eyeVisibility = XrEyeVisibility.XR_EYE_VISIBILITY_BOTH; + break; + case Visibility.Left: + CompositionLayerParamsEquirect2.eyeVisibility = XrEyeVisibility.XR_EYE_VISIBILITY_LEFT; + break; + case Visibility.Right: + CompositionLayerParamsEquirect2.eyeVisibility = XrEyeVisibility.XR_EYE_VISIBILITY_RIGHT; + break; + } + + CompositionLayerParamsEquirect2.subImage.imageRect = layerTextures[eyeid].textureLayout; + CompositionLayerParamsEquirect2.subImage.imageArrayIndex = 0; + GetCompositionLayerPose(ref CompositionLayerParamsEquirect2.pose); + CompositionLayerParamsEquirect2.radius = m_EquirectRadius; + CompositionLayerParamsEquirect2.centralHorizontalAngle = Mathf.Deg2Rad * m_EquirectCentralHorizontalAngle; + CompositionLayerParamsEquirect2.upperVerticalAngle = Mathf.Deg2Rad * m_EquirectUpperVerticalAngle; + CompositionLayerParamsEquirect2.lowerVerticalAngle = Mathf.Deg2Rad * m_EquirectLowerVerticalAngle; + + return CompositionLayerParamsEquirect2; + } + XrCompositionLayerCylinderKHR CompositionLayerParamsCylinder = new XrCompositionLayerCylinderKHR(); private XrCompositionLayerCylinderKHR AssignCompositionLayerParamsCylinder(int eyeid, bool botheye) { @@ -893,7 +1069,7 @@ namespace VIVE.OpenXR.CompositionLayer else { XRInputSubsystem subsystem = null; - SubsystemManager.GetInstances(inputSubsystems); + SubsystemManager.GetSubsystems(inputSubsystems); if (inputSubsystems.Count > 0) { subsystem = inputSubsystems[0]; @@ -1122,7 +1298,15 @@ namespace VIVE.OpenXR.CompositionLayer { bool isChanged = false; - if (layerShape == LayerShape.Cylinder) + if (layerShape == LayerShape.Equirect) + { + if (previousEquirectRadius != m_EquirectRadius) + { + previousEquirectRadius = m_EquirectRadius; + isChanged = true; + } + } + else if (layerShape == LayerShape.Cylinder) { if (previousAngleOfArc != m_CylinderAngleOfArc || previousCylinderArcLength != m_CylinderArcLength || @@ -1583,6 +1767,9 @@ namespace VIVE.OpenXR.CompositionLayer case LayerShape.Cylinder: generatedMesh = MeshGenerationHelper.GenerateCylinderMesh(m_CylinderAngleOfArc, MeshGenerationHelper.GenerateCylinderVertex(m_CylinderAngleOfArc, m_CylinderRadius, m_CylinderHeight)); break; + case LayerShape.Equirect: + generatedMesh = MeshGenerationHelper.GenerateEquirectMesh(hmd, m_EquirectRadius); + break; } generatedFallbackMesh = new GameObject(); @@ -1622,6 +1809,9 @@ namespace VIVE.OpenXR.CompositionLayer case LayerShape.Cylinder: generatedMesh = MeshGenerationHelper.GenerateCylinderMesh(m_CylinderAngleOfArc, MeshGenerationHelper.GenerateCylinderVertex(m_CylinderAngleOfArc, m_CylinderRadius, m_CylinderHeight)); break; + case LayerShape.Equirect: + generatedMesh = MeshGenerationHelper.GenerateEquirectMesh(hmd, m_EquirectRadius); + break; } generatedFallbackMesh.transform.localScale = GetNormalizedLocalScale(transform, Vector3.one); @@ -1657,6 +1847,26 @@ namespace VIVE.OpenXR.CompositionLayer switch (layerShape) { + case LayerShape.Equirect: + generatedUnderlayMesh = new GameObject(); + generatedUnderlayMesh.name = EquirectUnderlayMeshName; + generatedUnderlayMesh.transform.SetParent(transform); + generatedUnderlayMesh.transform.localPosition = Vector3.zero; + generatedUnderlayMesh.transform.localRotation = Quaternion.identity; + + generatedUnderlayMesh.transform.localScale = GetNormalizedLocalScale(transform, Vector3.one); + + generatedUnderlayMeshRenderer = generatedUnderlayMesh.AddComponent(); + generatedUnderlayMeshFilter = generatedUnderlayMesh.AddComponent(); + if (solidEffect) + generatedUnderlayMeshRenderer.sharedMaterial = new Material(Shader.Find("VIVE/OpenXR/CompositionLayer/UnderlayAlphaZeroSolid")); + else + generatedUnderlayMeshRenderer.sharedMaterial = new Material(Shader.Find("VIVE/OpenXR/CompositionLayer/UnderlayAlphaZero")); + generatedUnderlayMeshRenderer.material.mainTexture = texture; + + //Generate Mesh + generatedUnderlayMeshFilter.mesh = MeshGenerationHelper.GenerateEquirectMesh(hmd, m_EquirectRadius); + break; case LayerShape.Cylinder: //Generate vertices Vector3[] cylinderVertices = MeshGenerationHelper.GenerateCylinderVertex(m_CylinderAngleOfArc, m_CylinderRadius, m_CylinderHeight); @@ -1718,6 +1928,10 @@ namespace VIVE.OpenXR.CompositionLayer switch (layerShape) { + case LayerShape.Equirect: + Destroy(generatedUnderlayMeshFilter.mesh); + generatedUnderlayMeshFilter.mesh = MeshGenerationHelper.GenerateEquirectMesh(hmd, m_EquirectRadius); + break; case LayerShape.Cylinder: //Generate vertices Vector3[] cylinderVertices = MeshGenerationHelper.GenerateCylinderVertex(m_CylinderAngleOfArc, m_CylinderRadius, m_CylinderHeight); @@ -1774,6 +1988,8 @@ namespace VIVE.OpenXR.CompositionLayer { Quad = 0, Cylinder = 1, + Equirect = 2, + Equirect2 = 3, } public enum Visibility @@ -2040,6 +2256,92 @@ namespace VIVE.OpenXR.CompositionLayer return vertices; } + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static Vector3 InverseTransformVert(in Vector3 vert, in Vector3 position, in Vector3 scale, float worldScale) + { + return new Vector3( + (worldScale * vert.x - position.x) / scale.x, + (worldScale * vert.y - position.y) / scale.y, + (worldScale * vert.z - position.z) / scale.z); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static Vector2 GetSphereUV(float theta, float phi, float expandScale) + { + float thetaU = expandScale * (theta / (2 * Mathf.PI) - 0.5f) + 0.5f; + float phiV = expandScale * phi / Mathf.PI + 0.5f; + + return new Vector2(thetaU, phiV); + } + + [MethodImpl(MethodImplOptions.AggressiveInlining)] + private static Vector3 GetSphereVert(float theta, float phi) + { + return new Vector3(-Mathf.Sin(theta) * Mathf.Cos(phi), Mathf.Sin(phi), -Mathf.Cos(theta) * Mathf.Cos(phi)); + } + + public static void BuildSphere(List verts, List uv, List triangles, Vector3 position, + Quaternion rotation, Vector3 scale, Rect rect, float worldScale = 800, int latitudes = 128, + int longitudes = 128, float expandCoefficient = 1.0f) + { + position = Quaternion.Inverse(rotation) * position; + + latitudes = Mathf.CeilToInt(latitudes * rect.height); + longitudes = Mathf.CeilToInt(longitudes * rect.width); + + float minTheta = Mathf.PI * 2.0f * rect.x; + float minPhi = Mathf.PI * (0.5f - rect.y - rect.height); + + float thetaScale = Mathf.PI * 2.0f * rect.width / longitudes; + float phiScale = Mathf.PI * rect.height / latitudes; + + float expandScale = 1.0f / expandCoefficient; + + for (int j = 0; j < latitudes + 1; j += 1) + { + for (int k = 0; k < longitudes + 1; k++) + { + float theta = minTheta + k * thetaScale; + float phi = minPhi + j * phiScale; + + Vector2 suv = GetSphereUV(theta, phi, expandScale); + uv.Add(new Vector2((suv.x - rect.x) / rect.width, (suv.y - rect.y) / rect.height)); + Vector3 vert = GetSphereVert(theta, phi); + verts.Add(InverseTransformVert(in vert, in position, in scale, worldScale)); + } + } + + for (int j = 0; j < latitudes; j++) + { + for (int k = 0; k < longitudes; k++) + { + triangles.Add(j * (longitudes + 1) + k); + triangles.Add((j + 1) * (longitudes + 1) + k); + triangles.Add((j + 1) * (longitudes + 1) + k + 1); + triangles.Add((j + 1) * (longitudes + 1) + k + 1); + triangles.Add(j * (longitudes + 1) + k + 1); + triangles.Add(j * (longitudes + 1) + k); + } + } + } + + public static Mesh GenerateEquirectMesh(Camera hmd, float equirectRadius) + { + Mesh eqicrectMesh = new Mesh(); + List _Tris = new List(); + List _UV = new List(); + List _Verts = new List(); + Rect _Rect = new Rect(0, 0, 1, 1); + + BuildSphere(_Verts, _UV, _Tris, Camera.main.transform.position, Camera.main.transform.rotation, equirectRadius* Vector3.one, _Rect); + + eqicrectMesh.SetVertices(_Verts); + eqicrectMesh.SetTriangles(_Tris, 0); + eqicrectMesh.SetUVs(0, _UV); + eqicrectMesh.UploadMeshData(false); + return eqicrectMesh; + } + public static Mesh GenerateCylinderMesh(float cylinderAngleOfArc, Vector3[] vertices) { Mesh cylinderMesh = new Mesh(); diff --git a/com.htc.upm.vive.openxr/Runtime/Editor/Interactions/ViveInteractionsEditor.cs b/com.htc.upm.vive.openxr/Runtime/Editor/Interactions/ViveInteractionsEditor.cs index 9235803..0aeff95 100644 --- a/com.htc.upm.vive.openxr/Runtime/Editor/Interactions/ViveInteractionsEditor.cs +++ b/com.htc.upm.vive.openxr/Runtime/Editor/Interactions/ViveInteractionsEditor.cs @@ -75,7 +75,7 @@ namespace VIVE.OpenXR.Editor.Interaction boxStyleWarning); GUILayout.EndHorizontal(); EditorGUILayout.PropertyField(m_ViveXRTracker); - + /* #if UNITY_ANDROID // ViveHandInteractionExt GUILayout.Space(20); @@ -88,6 +88,7 @@ namespace VIVE.OpenXR.Editor.Interaction GUILayout.EndHorizontal(); EditorGUILayout.PropertyField(m_KHRHandInteraction); #endif + */ #endregion ViveInteractions myScript = target as ViveInteractions; @@ -96,7 +97,7 @@ namespace VIVE.OpenXR.Editor.Interaction bool viveHandInteraction = myScript.UseViveHandInteraction(); bool viveWristTracker = myScript.UseViveWristTracker(); bool viveXrTracker = myScript.UseViveXrTracker(); - bool khrHandInteraction = myScript.UseKhrHandInteraction(); + //bool khrHandInteraction = myScript.UseKhrHandInteraction(); OpenXRSettings settings = null; #if UNITY_ANDROID @@ -116,7 +117,7 @@ namespace VIVE.OpenXR.Editor.Interaction feature.enabled = viveXrTracker; addPathEnumeration = viveXrTracker; } - if (feature is Hand.ViveHandInteractionExt) { feature.enabled = khrHandInteraction; } + //if (feature is Hand.ViveHandInteractionExt) { feature.enabled = khrHandInteraction; } } foreach (var feature in settings.GetFeatures()) diff --git a/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerEquirect.cs b/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerEquirect.cs new file mode 100644 index 0000000..b6767dd --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerEquirect.cs @@ -0,0 +1,120 @@ +// Copyright HTC Corporation All Rights Reserved. + +using System.Collections.Generic; +using UnityEditor; +using UnityEngine.XR.OpenXR; +using UnityEngine.XR.OpenXR.Features; +using AOT; +using UnityEngine; +using System; +using System.Runtime.InteropServices; +using System.Linq; + +#if UNITY_EDITOR +using UnityEditor.XR.OpenXR.Features; +#endif + +namespace VIVE.OpenXR.CompositionLayer +{ +#if UNITY_EDITOR + [OpenXRFeature(UiName = "VIVE XR Composition Layer (Equirect)", + Desc = "Enable this feature to enable the Composition Layer Equirect Extension", + Company = "HTC", + DocumentationLink = "..\\Documentation", + OpenxrExtensionStrings = kOpenXRCylinderExtensionString, + Version = "1.0.0", + BuildTargetGroups = new[] { BuildTargetGroup.Android }, + FeatureId = featureId + )] +#endif + public class ViveCompositionLayerEquirect : OpenXRFeature + { + const string LOG_TAG = "VIVE.OpenXR.ViveCompositionLayer.Equirect"; + static void DEBUG(string msg) { Debug.Log(LOG_TAG + " " + msg); } + static void WARNING(string msg) { Debug.LogWarning(LOG_TAG + " " + msg); } + static void ERROR(string msg) { Debug.LogError(LOG_TAG + " " + msg); } + + /// + /// The feature id string. This is used to give the feature a well known id for reference. + /// + public const string featureId = "vive.openxr.feature.compositionlayer.equirect"; + + private const string kOpenXRCylinderExtensionString = "XR_KHR_composition_layer_equirect XR_KHR_composition_layer_equirect2"; + + private bool m_EquirectExtensionEnabled = true; + /// + /// The extension "XR_KHR_composition_layer_equirect" is enabled or not. + /// + public bool EquirectExtensionEnabled + { + get { return m_EquirectExtensionEnabled; } + } + + private bool m_Equirect2ExtensionEnabled = true; + /// + /// The extension "XR_KHR_composition_layer_equirect2" is enabled or not. + /// + public bool Equirect2ExtensionEnabled + { + get { return m_Equirect2ExtensionEnabled; } + } + + + #region OpenXR Life Cycle + protected override bool OnInstanceCreate(ulong xrInstance) + { + if (!OpenXRRuntime.IsExtensionEnabled("XR_KHR_composition_layer_equirect")) + { + WARNING("OnInstanceCreate() " + "XR_KHR_composition_layer_equirect" + " is NOT enabled."); + + m_EquirectExtensionEnabled = false; + return false; + } + + if (!OpenXRRuntime.IsExtensionEnabled("XR_KHR_composition_layer_equirect2")) + { + WARNING("OnInstanceCreate() " + "XR_KHR_composition_layer_equirect2" + " is NOT enabled."); + + m_Equirect2ExtensionEnabled = false; + return false; + } + + return true; + } + #endregion + + #region Wrapper Functions + private const string ExtLib = "viveopenxr"; + + [DllImportAttribute(ExtLib, EntryPoint = "submit_CompositionLayerEquirect")] + public static extern void VIVEOpenXR_Submit_CompositionLayerEquirect(XrCompositionLayerEquirectKHR equirect, LayerType layerType, uint compositionDepth, int layerID); + /// + /// submit compostion layer of type equirect. + /// + public void Submit_CompositionLayerEquirect(XrCompositionLayerEquirectKHR equirect, LayerType layerType, uint compositionDepth, int layerID) + { + if (!EquirectExtensionEnabled) + { + ERROR("Submit_CompositionLayerEquirect: " + "XR_KHR_composition_layer_equirect" + " is NOT enabled."); + } + + VIVEOpenXR_Submit_CompositionLayerEquirect(equirect, layerType, compositionDepth, layerID); + } + + [DllImportAttribute(ExtLib, EntryPoint = "submit_CompositionLayerEquirect2")] + public static extern void VIVEOpenXR_Submit_CompositionLayerEquirect2(XrCompositionLayerEquirect2KHR equirect2, LayerType layerType, uint compositionDepth, int layerID); + /// + /// submit compostion layer of type equirect2. + /// + public void Submit_CompositionLayerEquirect2(XrCompositionLayerEquirect2KHR equirect2, LayerType layerType, uint compositionDepth, int layerID) + { + if (!Equirect2ExtensionEnabled) + { + ERROR("Submit_CompositionLayerEquirect2: " + "XR_KHR_composition_layer_equirect2" + " is NOT enabled."); + } + + VIVEOpenXR_Submit_CompositionLayerEquirect2(equirect2, layerType, compositionDepth, layerID); + } + #endregion + } +} diff --git a/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerEquirect.cs.meta b/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerEquirect.cs.meta new file mode 100644 index 0000000..7bb96f2 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerEquirect.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: ec826264ff4d75d4081f2ca472a3e083 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerHelper.cs b/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerHelper.cs index d6efd44..4c8996c 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerHelper.cs +++ b/com.htc.upm.vive.openxr/Runtime/Features/CompositionLayer/Scripts/ViveCompositionLayerHelper.cs @@ -215,6 +215,35 @@ namespace VIVE.OpenXR.CompositionLayer public float aspectRatio; } [StructLayout(LayoutKind.Sequential)] + public struct XrCompositionLayerEquirectKHR + { + public XrStructureType type; + public IntPtr next; + public XrCompositionLayerFlags layerFlags; + public XrSpace space; + public XrEyeVisibility eyeVisibility; + public XrSwapchainSubImage subImage; + public XrPosef pose; + public float radius; + public XrVector2f scale; + public XrVector2f bias; + } + [StructLayout(LayoutKind.Sequential)] + public struct XrCompositionLayerEquirect2KHR + { + public XrStructureType type; + public IntPtr next; + public XrCompositionLayerFlags layerFlags; + public XrSpace space; + public XrEyeVisibility eyeVisibility; + public XrSwapchainSubImage subImage; + public XrPosef pose; + public float radius; + public float centralHorizontalAngle; + public float upperVerticalAngle; + public float lowerVerticalAngle; + } + [StructLayout(LayoutKind.Sequential)] public struct XrSwapchainSubImage { public XrSwapchain swapchain; diff --git a/com.htc.upm.vive.openxr/Runtime/Features/FrameSynchronization/Documentation/OpenXRExtensions.md b/com.htc.upm.vive.openxr/Runtime/Features/FrameSynchronization/Documentation/OpenXRExtensions.md index fb84b6a..ddfb5da 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/FrameSynchronization/Documentation/OpenXRExtensions.md +++ b/com.htc.upm.vive.openxr/Runtime/Features/FrameSynchronization/Documentation/OpenXRExtensions.md @@ -1,7 +1,6 @@ # 12.1. XR_HTC_frame_synchronization ## Overview -Traditional, runtime will use the latest frame which will cost jitter. With Frame Synchronization, the render frame will not be discarded for smooth gameplay experience. -However, if the GPU cannot consistently finish rendering on time (rendering more than one vsync at a time), jitter will still occur. Therefore, reducing GPU load is key to smooth gameplay. +The application frame loop relies on xrWaitFrame throttling to synchronize application frame submissions with the display. This extension allows the application to set the frame synchronization mode to adjust the interval between the application frame submission time and the corresponding display time according to the demand of the application. The runtime will return the appropriate XrFrameState::predictedDisplayTime returned by xrWaitFrame to throttle the frame loop approaching to the frame rendering time of the application with the consistent good user experience throughout the session. ## Name String XR_HTC_frame_synchronization ## Revision diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Interaction/Scripts/ViveHandInteractionExt.cs b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Interaction/Scripts/ViveHandInteractionExt.cs index 30d18a5..b5bef3b 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Interaction/Scripts/ViveHandInteractionExt.cs +++ b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Interaction/Scripts/ViveHandInteractionExt.cs @@ -11,6 +11,7 @@ using UnityEngine.InputSystem; using System.Collections.Generic; using UnityEngine.XR; using UnityEngine.XR.OpenXR.Input; +using System; using System.Text; #if UNITY_EDITOR @@ -30,7 +31,7 @@ namespace VIVE.OpenXR.Hand /// This enables the use of hand interaction profiles in OpenXR. It enables XR_EXT_hand_interaction in the underyling runtime. /// #if UNITY_EDITOR - [OpenXRFeature(UiName = "VIVE XR Hand Interaction Ext", + [OpenXRFeature(UiName = "VIVE XR Hand Interaction Ext (Deprecated)", Hidden = true, BuildTargetGroups = new[] { BuildTargetGroup.Android }, Company = "HTC", @@ -41,6 +42,7 @@ namespace VIVE.OpenXR.Hand Category = FeatureCategory.Interaction, FeatureId = featureId)] #endif + [Obsolete("This class is deprecated. Please use Unity Hand Interaction Profile instead.")] public class ViveHandInteractionExt : OpenXRInteractionFeature { #region Log diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandProvider.cs b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandProvider.cs new file mode 100644 index 0000000..dfd294b --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandProvider.cs @@ -0,0 +1,458 @@ +using System.Collections.Generic; +using Unity.Collections; +using UnityEngine; +using UnityEngine.XR; +using UnityEngine.XR.OpenXR; +using VIVE.OpenXR.Interaction; + +#if UNITY_XR_HANDS +using UnityEngine.XR.Hands; +using UnityEngine.XR.Hands.ProviderImplementation; +namespace VIVE.OpenXR.Hand +{ + public class ViveHandProvider : XRHandSubsystemProvider + { + #region Hand Interaction + private const string kFeatureAimPos = "PointerPosition"; + private const string kFeatureAimRot = "PointerRotation"; + private const string kFeatureAimValue = "PointerActivateValue"; + private const string kFeatureGripPos = "DevicePosition"; + private const string kFeatureGripRot = "DeviceRotation"; + private const string kFeatureGripValue = "GraspValue"; + private const string kFeaturePinchPos = "PinchPosition"; + private const string kFeaturePinchRot = "PinchRotation"; + private const string kFeaturePinchValue = "PinchValue"; + private const string kFeaturePokePos = "PokePosition"; + private const string kFeaturePokeRot = "PokeRotation"; + + private class HandDevice + { + public Pose aimPose => m_AimPose; + public Pose gripPose => m_GripPose; + public Pose pinchPose => m_PinchPose; + public Pose pokePose => m_PokePose; + public float aimActivateValue => m_AimActivateValue; + public float graspValue => m_GraspValue; + public float pinchValue => m_PinchValue; + + private Pose m_AimPose = Pose.identity; + private Pose m_GripPose = Pose.identity; + private Pose m_PinchPose = Pose.identity; + private Pose m_PokePose = Pose.identity; + private float m_AimActivateValue = 0; + private float m_GraspValue = 0; + private float m_PinchValue = 0; + + private InputDevice device = default(InputDevice); + private Dictionary> posUsageMapping = new Dictionary>(); + private Dictionary> rotUsageMapping = new Dictionary>(); + private Dictionary> valueUsageMapping = new Dictionary>(); + + public HandDevice(InputDevice device) + { + this.device = device; + + List inputFeatures = new List(); + device.TryGetFeatureUsages(inputFeatures); + for (int i = 0; i < inputFeatures.Count; i++) + { + InputFeatureUsage feature = inputFeatures[i]; + switch (feature.name) + { + case kFeatureAimPos: + case kFeatureGripPos: + case kFeaturePinchPos: + case kFeaturePokePos: + posUsageMapping.Add(feature.name, feature.As()); + break; + case kFeatureAimRot: + case kFeatureGripRot: + case kFeaturePinchRot: + case kFeaturePokeRot: + rotUsageMapping.Add(feature.name, feature.As()); + break; + case kFeatureAimValue: + case kFeatureGripValue: + case kFeaturePinchValue: + valueUsageMapping.Add(feature.name, feature.As()); + break; + + default: + break; + } + } + } + + public void UpdateInputValue() + { + UpdatePosition(); + UpdateRotation(); + UpdateValue(); + } + + private void UpdatePosition() + { + var enumerator = posUsageMapping.GetEnumerator(); + while (enumerator.MoveNext()) + { + var feature = enumerator.Current; + string featureName = feature.Key; + InputFeatureUsage featureUsage = feature.Value; + if (device.TryGetFeatureValue(featureUsage, out Vector3 position)) + { + switch (featureName) + { + case kFeatureAimPos: + m_AimPose.position = position; + break; + case kFeatureGripPos: + m_GripPose.position = position; + break; + case kFeaturePinchPos: + m_PinchPose.position = position; + break; + case kFeaturePokePos: + m_PokePose.position = position; + break; + } + } + } + } + + private void UpdateRotation() + { + var enumerator = rotUsageMapping.GetEnumerator(); + while (enumerator.MoveNext()) + { + var feature = enumerator.Current; + string featureName = feature.Key; + InputFeatureUsage featureUsage = feature.Value; + if (device.TryGetFeatureValue(featureUsage, out Quaternion rotation)) + { + switch (featureName) + { + case kFeatureAimRot: + m_AimPose.rotation = rotation; + break; + case kFeatureGripRot: + m_GripPose.rotation = rotation; + break; + case kFeaturePinchRot: + m_PinchPose.rotation = rotation; + break; + case kFeaturePokeRot: + m_PokePose.rotation = rotation; + break; + } + } + } + } + + private void UpdateValue() + { + var enumerator = valueUsageMapping.GetEnumerator(); + while (enumerator.MoveNext()) + { + var feature = enumerator.Current; + string featureName = feature.Key; + InputFeatureUsage featureUsage = feature.Value; + if (device.TryGetFeatureValue(featureUsage, out float value)) + { + switch (featureName) + { + case kFeatureAimValue: + m_AimActivateValue = value; + break; + case kFeatureGripValue: + m_GraspValue = value; + break; + case kFeaturePinchValue: + m_PinchValue = value; + break; + } + } + } + } + } + private static HandDevice leftHandDevice = null; + private static HandDevice rightHandDevice = null; + private const string kInteractionDeviceName = "Vive Hand Interaction Ext OpenXR"; + #endregion + + private ViveHandTracking viveHand; + + public override void Destroy() { } + + public override void GetHandLayout(NativeArray handJointsInLayout) + { + handJointsInLayout[XRHandJointID.Palm.ToIndex()] = true; + handJointsInLayout[XRHandJointID.Wrist.ToIndex()] = true; + + handJointsInLayout[XRHandJointID.ThumbMetacarpal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.ThumbProximal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.ThumbDistal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.ThumbTip.ToIndex()] = true; + + handJointsInLayout[XRHandJointID.IndexMetacarpal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.IndexProximal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.IndexIntermediate.ToIndex()] = true; + handJointsInLayout[XRHandJointID.IndexDistal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.IndexTip.ToIndex()] = true; + + handJointsInLayout[XRHandJointID.MiddleMetacarpal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.MiddleProximal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.MiddleIntermediate.ToIndex()] = true; + handJointsInLayout[XRHandJointID.MiddleDistal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.MiddleTip.ToIndex()] = true; + + handJointsInLayout[XRHandJointID.RingMetacarpal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.RingProximal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.RingIntermediate.ToIndex()] = true; + handJointsInLayout[XRHandJointID.RingDistal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.RingTip.ToIndex()] = true; + + handJointsInLayout[XRHandJointID.LittleMetacarpal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.LittleProximal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.LittleIntermediate.ToIndex()] = true; + handJointsInLayout[XRHandJointID.LittleDistal.ToIndex()] = true; + handJointsInLayout[XRHandJointID.LittleTip.ToIndex()] = true; + } + + public override void Start() + { + Initialize(); +#if UNITY_XR_HANDS_1_5_0 + InitHandInteractionDevices(); + InputDevices.deviceConnected += DeviceConnected; + InputDevices.deviceDisconnected += DeviceDisconnected; +#endif + } + + public override void Stop() + { +#if UNITY_XR_HANDS_1_5_0 + InputDevices.deviceConnected -= DeviceConnected; + InputDevices.deviceDisconnected -= DeviceDisconnected; +#endif + } + + public override XRHandSubsystem.UpdateSuccessFlags TryUpdateHands(XRHandSubsystem.UpdateType updateType, ref Pose leftHandRootPose, NativeArray leftHandJoints, ref Pose rightHandRootPose, NativeArray rightHandJoints) + { + XRHandSubsystem.UpdateSuccessFlags flags = XRHandSubsystem.UpdateSuccessFlags.None; + if (UpdateHand(true, ref leftHandRootPose, ref leftHandJoints)) + { + flags |= XRHandSubsystem.UpdateSuccessFlags.LeftHandRootPose | XRHandSubsystem.UpdateSuccessFlags.LeftHandJoints; + } + if (UpdateHand(false, ref rightHandRootPose, ref rightHandJoints)) + { + flags |= XRHandSubsystem.UpdateSuccessFlags.RightHandRootPose | XRHandSubsystem.UpdateSuccessFlags.RightHandJoints; + } +#if UNITY_XR_HANDS_1_5_0 + if (updateType == XRHandSubsystem.UpdateType.Dynamic && canSurfaceCommonPoseData) + { + UpdateHandInteraction(); + } +#endif + return flags; + } + +#if UNITY_XR_HANDS_1_5_0 + public override bool canSurfaceCommonPoseData => HandInteractionSupport(); + + public override bool TryGetAimPose(Handedness handedness, out Pose aimPose) + { + aimPose = Pose.identity; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + aimPose = handDevice.aimPose; + return true; + } + return false; + } + + public override bool TryGetAimActivateValue(Handedness handedness, out float aimActivateValue) + { + aimActivateValue = 0; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + aimActivateValue = handDevice.aimActivateValue; + return true; + } + return false; + } + + public override bool TryGetGripPose(Handedness handedness, out Pose gripPose) + { + gripPose = Pose.identity; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + gripPose = handDevice.gripPose; + return true; + } + + return false; + } + + public override bool TryGetGraspValue(Handedness handedness, out float graspValue) + { + graspValue = 0; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + graspValue = handDevice.graspValue; + return true; + } + return false; + } + + public override bool TryGetPinchPose(Handedness handedness, out Pose pinchPose) + { + pinchPose = Pose.identity; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + pinchPose = handDevice.pinchPose; + return true; + } + return false; + } + + public override bool TryGetPinchValue(Handedness handedness, out float pinchValue) + { + pinchValue = 0; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + pinchValue = handDevice.pinchValue; + return true; + } + return false; + } + + public override bool TryGetPokePose(Handedness handedness, out Pose pokePose) + { + pokePose = Pose.identity; + HandDevice handDevice = GetHandDevice(handedness); + if (handDevice != null) + { + pokePose = handDevice.pokePose; + return true; + } + return false; + } + + private void DeviceConnected(InputDevice inputDevice) + { + if (inputDevice.characteristics.HasFlag(InputDeviceCharacteristics.Left) && + inputDevice.name == kInteractionDeviceName) + { + leftHandDevice = new HandDevice(inputDevice); + } + if (inputDevice.characteristics.HasFlag(InputDeviceCharacteristics.Right) && + inputDevice.name == kInteractionDeviceName) + { + rightHandDevice = new HandDevice(inputDevice); + } + } + + private void DeviceDisconnected(InputDevice inputDevice) + { + if (inputDevice.characteristics.HasFlag(InputDeviceCharacteristics.Left) && + inputDevice.name == kInteractionDeviceName) + { + leftHandDevice = default; + } + if (inputDevice.characteristics.HasFlag(InputDeviceCharacteristics.Right) && + inputDevice.name == kInteractionDeviceName) + { + rightHandDevice = default; + } + } + + private void InitHandInteractionDevices() + { + List inputDevices = new List(); + InputDevices.GetDevicesWithCharacteristics(InputDeviceCharacteristics.HeldInHand | + InputDeviceCharacteristics.HandTracking | + InputDeviceCharacteristics.TrackedDevice, inputDevices); + for (int i = 0; i < inputDevices.Count; i++) + { + InputDevice inputDevice = inputDevices[i]; + DeviceConnected(inputDevice); + } + } + + private void UpdateHandInteraction() + { + if (leftHandDevice != null) + { + leftHandDevice.UpdateInputValue(); + } + if (rightHandDevice != null) + { + rightHandDevice.UpdateInputValue(); + } + } + + private HandDevice GetHandDevice(Handedness handedness) => handedness == Handedness.Left ? leftHandDevice : rightHandDevice; + + private bool HandInteractionSupport() + { + ViveInteractions viveInteractions = OpenXRSettings.Instance.GetFeature(); + if (viveInteractions.enabled) + { + return viveInteractions.UseKhrHandInteraction(); + } + return false; + } +#endif + + private void Initialize() + { + viveHand = OpenXRSettings.Instance.GetFeature(); + } + + private bool UpdateHand(bool isLeft, ref Pose handRootPose, ref NativeArray handJoints) + { + if (!viveHand) { return false; } + bool isValid = viveHand.GetJointLocations(isLeft, out XrHandJointLocationEXT[] viveJoints); + + Handedness handedness = isLeft ? Handedness.Left : Handedness.Right; + XRHandJointTrackingState trackingState = XRHandJointTrackingState.None; + for (int jointIndex = XRHandJointID.BeginMarker.ToIndex(); jointIndex < XRHandJointID.EndMarker.ToIndex(); ++jointIndex) + { + XRHandJointID jointID = XRHandJointIDUtility.FromIndex(jointIndex); + int viveIndex = XRHandJointIDToIndex(jointID); + + Pose pose = Pose.identity; + if (isValid) + { + pose.position = viveJoints[viveIndex].pose.position.ToUnityVector(); + pose.rotation = viveJoints[viveIndex].pose.orientation.ToUnityQuaternion(); + trackingState = XRHandJointTrackingState.Pose; + } + handJoints[jointIndex] = XRHandProviderUtility.CreateJoint(handedness, trackingState, jointID, pose); + } + handJoints[XRHandJointID.Wrist.ToIndex()].TryGetPose(out handRootPose); + return isValid; + } + + private int XRHandJointIDToIndex(XRHandJointID id) + { + switch (id) + { + case XRHandJointID.Palm: + return 0; + case XRHandJointID.Wrist: + return 1; + default: + return (int)id - 1; + } + } + } +} +#endif + diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandProvider.cs.meta b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandProvider.cs.meta new file mode 100644 index 0000000..34df112 --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandProvider.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 68f6a3e78d49e1143a9aa0a111a04a0a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandSubsystem.cs b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandSubsystem.cs new file mode 100644 index 0000000..eb43f3f --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandSubsystem.cs @@ -0,0 +1,102 @@ +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR.OpenXR; +using VIVE.OpenXR.Interaction; + +#if UNITY_XR_HANDS +using UnityEngine.XR.Hands; +using UnityEngine.XR.Hands.ProviderImplementation; +namespace VIVE.OpenXR.Hand +{ + public class ViveHandSubsystem : XRHandSubsystem + { + public const string featureId = "vive.openxr.feature.xrhandsubsystem"; + private static XRHandSubsystem subsystem = null; + private XRHandProviderUtility.SubsystemUpdater subsystemUpdater = null; + + [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)] + private static void RegisterDescriptor() + { + if (!ViveHandTrackingSupport()) { return; } + bool handInteractionSupport = HandInteractionSupport(); + + var handsSubsystemCinfo = new XRHandSubsystemDescriptor.Cinfo + { + id = featureId, + providerType = typeof(ViveHandProvider), + subsystemTypeOverride = typeof(ViveHandSubsystem), +#if UNITY_XR_HANDS_1_5_0 + supportsAimPose = handInteractionSupport, + supportsAimActivateValue = handInteractionSupport, + supportsGraspValue = handInteractionSupport, + supportsGripPose = handInteractionSupport, + supportsPinchPose = handInteractionSupport, + supportsPinchValue = handInteractionSupport, + supportsPokePose = handInteractionSupport, +#endif + }; + XRHandSubsystemDescriptor.Register(handsSubsystemCinfo); + } + + [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)] + private static void StartSubsystem() + { + List descriptors = new List(); + if (subsystem == null || !subsystem.running) + { + descriptors.Clear(); + SubsystemManager.GetSubsystemDescriptors(descriptors); + for (int i = 0; i < descriptors.Count; i++) + { + XRHandSubsystemDescriptor descriptor = descriptors[i]; + if (descriptor.id == featureId) + { + subsystem = descriptor.Create(); + subsystem.Start(); + } + } + } + } + + protected override void OnStart() + { + base.OnStart(); + if (subsystemUpdater == null) + { + subsystemUpdater = new XRHandProviderUtility.SubsystemUpdater(subsystem); + } + subsystemUpdater.Start(); + + } + + protected override void OnStop() + { + base.OnStop(); + subsystemUpdater.Stop(); + } + + protected override void OnDestroy() + { + base.OnDestroy(); + subsystemUpdater.Destroy(); + subsystemUpdater = null; + } + + private static bool ViveHandTrackingSupport() + { + ViveHandTracking viveHand = OpenXRSettings.Instance.GetFeature(); + return viveHand.enabled; + } + + private static bool HandInteractionSupport() + { + ViveInteractions viveInteractions = OpenXRSettings.Instance.GetFeature(); + if (viveInteractions.enabled) + { + return viveInteractions.UseKhrHandInteraction(); + } + return false; + } + } +} +#endif \ No newline at end of file diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandSubsystem.cs.meta b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandSubsystem.cs.meta new file mode 100644 index 0000000..05f0f6c --- /dev/null +++ b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandSubsystem.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2ce39c25a1e4a794c807d9f723d37804 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandTracking.cs b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandTracking.cs index b2ea076..c17540d 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandTracking.cs +++ b/com.htc.upm.vive.openxr/Runtime/Features/Hand/Tracking/Scripts/ViveHandTracking.cs @@ -9,7 +9,6 @@ using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; -using AOT; using UnityEngine.InputSystem; using UnityEngine.InputSystem.LowLevel; @@ -63,48 +62,74 @@ namespace VIVE.OpenXR.Hand private bool m_XrInstanceCreated = false; private XrInstance m_XrInstance = 0; private static IntPtr xrGetInstanceProcAddr_prev; - private static IntPtr WaitFrame_prev; - private static XrFrameWaitInfo m_frameWaitInfo; - private static XrFrameState m_frameState; + private static XrTime m_predictedDisplayTime; + private static XrDuration m_predictedDisplayDuration; + + private static int sizeOfXrHandJointLocationEXT = Marshal.SizeOf(typeof(XrHandJointLocationEXT)); + private static IntPtr handJointLocationsNativeBuffer = IntPtr.Zero; + private static byte[] handJointLocationsByteBuffer = null; + private static int handJointLocationsNativeBufferLength = 0; // Not byte size, it is the number of XrHandJointLocationEXT. + protected override IntPtr HookGetInstanceProcAddr(IntPtr func) { - UnityEngine.Debug.Log("EXT: registering our own xrGetInstanceProcAddr"); - xrGetInstanceProcAddr_prev = func; - return Marshal.GetFunctionPointerForDelegate(m_intercept_xrWaitFrame_xrGetInstanceProcAddr); - } - [MonoPInvokeCallback(typeof(OpenXRHelper.xrGetInstanceProcAddrDelegate))] - private static XrResult intercept_xrWaitFrame_xrGetInstanceProcAddr(XrInstance instance, string name, out IntPtr function) - { - if (xrGetInstanceProcAddr_prev == null || xrGetInstanceProcAddr_prev == IntPtr.Zero) + ViveInterceptors.Instance.AddRequiredFunction("xrWaitFrame"); + if (ViveInterceptors.Instance.BeforeOriginalWaitFrame == null) { - UnityEngine.Debug.LogError("xrGetInstanceProcAddr_prev is null"); - function = IntPtr.Zero; - return XrResult.XR_ERROR_VALIDATION_FAILURE; + ViveInterceptors.Instance.BeforeOriginalWaitFrame = new ViveInterceptors.DelegateXrWaitFrameInterceptor(BeforeWaitFrame); + } + else + { + ViveInterceptors.Instance.BeforeOriginalWaitFrame += BeforeWaitFrame; } - // Get delegate of old xrGetInstanceProcAddr. - var xrGetProc = Marshal.GetDelegateForFunctionPointer(xrGetInstanceProcAddr_prev); - XrResult result = xrGetProc(instance, name, out function); - if (name == "xrWaitFrame") + if (ViveInterceptors.Instance.AfterOriginalWaitFrame == null) { - WaitFrame_prev = function; - m_intercept_xrWaitFrame = intercepted_xrWaitFrame; - function = Marshal.GetFunctionPointerForDelegate(m_intercept_xrWaitFrame); ; - UnityEngine.Debug.Log("Getting xrWaitFrame func"); + ViveInterceptors.Instance.AfterOriginalWaitFrame = new ViveInterceptors.DelegateXrWaitFrameInterceptor(AfterWaitFrame); } - - return result; - + else + { + ViveInterceptors.Instance.AfterOriginalWaitFrame += AfterWaitFrame; + } + return ViveInterceptors.Instance.HookGetInstanceProcAddr(func); } - [MonoPInvokeCallback(typeof(OpenXRHelper.xrWaitFrameDelegate))] - private static int intercepted_xrWaitFrame(ulong session, ref XrFrameWaitInfo frameWaitInfo, ref XrFrameState frameState) + + private bool BeforeWaitFrame(XrSession session, ref ViveInterceptors.XrFrameWaitInfo frameWaitInfo, ref ViveInterceptors.XrFrameState frameState, ref XrResult result) { - // Get delegate of prev xrWaitFrame. - var xrWaitFrame = Marshal.GetDelegateForFunctionPointer(WaitFrame_prev); - int res = xrWaitFrame(session, ref frameWaitInfo, ref frameState); - m_frameWaitInfo = frameWaitInfo; - m_frameState = frameState; - return res; + ViveInterceptors.XrFrameState nextFrameState = new ViveInterceptors.XrFrameState + { + type = XrStructureType.XR_TYPE_PASSTHROUGH_HAND_TRACKER_FRAME_STATE_HTC, + next = frameState.next, + predictedDisplayPeriod = 0, + predictedDisplayTime = 0, + shouldRender = false + }; + frameState.next = MemoryTools.ToIntPtr(nextFrameState); + return true; + } + + private bool AfterWaitFrame(XrSession session, ref ViveInterceptors.XrFrameWaitInfo frameWaitInfo, ref ViveInterceptors.XrFrameState frameState, ref XrResult result) + { + m_predictedDisplayTime = frameState.predictedDisplayTime; + m_predictedDisplayDuration = frameState.predictedDisplayPeriod; + + IntPtr next = frameState.next; + HashSet visited = new HashSet(); + int iterationCount = 0; + int maxIterations = 10; + while (next != IntPtr.Zero && !visited.Contains(next)) + { + if (iterationCount++ > maxIterations) { break; } + visited.Add(next); + ViveInterceptors.XrFrameState nextFrameState = Marshal.PtrToStructure(next); + if (nextFrameState.type == XrStructureType.XR_TYPE_PASSTHROUGH_HAND_TRACKER_FRAME_STATE_HTC && + nextFrameState.predictedDisplayTime != 0) + { + m_predictedDisplayTime = nextFrameState.predictedDisplayTime; + break; + } + next = nextFrameState.next; + } + return true; } /// @@ -140,6 +165,14 @@ namespace VIVE.OpenXR.Hand InputSystem.onAfterUpdate -= UpdateCallback; } sb.Clear().Append(LOG_TAG).Append("OnInstanceDestroy() ").Append(xrInstance); DEBUG(sb); + // release buffer + if (handJointLocationsNativeBuffer != IntPtr.Zero) + { + Marshal.FreeHGlobal(handJointLocationsNativeBuffer); + handJointLocationsNativeBuffer = IntPtr.Zero; + handJointLocationsByteBuffer = null; + handJointLocationsNativeBufferLength = 0; + } } private XrSystemId m_XrSystemId = 0; @@ -343,9 +376,6 @@ namespace VIVE.OpenXR.Hand #endregion #region OpenXR function delegates - private static readonly OpenXRHelper.xrGetInstanceProcAddrDelegate m_intercept_xrWaitFrame_xrGetInstanceProcAddr - = new OpenXRHelper.xrGetInstanceProcAddrDelegate(intercept_xrWaitFrame_xrGetInstanceProcAddr); - private static OpenXRHelper.xrWaitFrameDelegate m_intercept_xrWaitFrame; /// xrGetInstanceProcAddr OpenXRHelper.xrGetInstanceProcAddrDelegate XrGetInstanceProcAddr; @@ -681,7 +711,7 @@ namespace VIVE.OpenXR.Hand { XRInputSubsystem subsystem = null; - SubsystemManager.GetInstances(s_InputSubsystems); + SubsystemManager.GetSubsystems(s_InputSubsystems); if (s_InputSubsystems.Count > 0) { subsystem = s_InputSubsystems[0]; @@ -795,7 +825,7 @@ namespace VIVE.OpenXR.Hand return true; } - private int lastUpdateFrameL = -1, lastUpdateFrameR = -1; + private int lastUpdateFrameL = -1, lastUpdateFrameR = -1, updateFrame = -1; private void UpdateCallback() { // Only allow updating poses once at BeforeRender & Dynamic per frame. @@ -805,6 +835,10 @@ namespace VIVE.OpenXR.Hand lastUpdateFrameL = -1; lastUpdateFrameR = -1; } + if (InputState.currentUpdateType == InputUpdateType.BeforeRender) + { + updateFrame = Time.frameCount; + } } private bool AllowUpdate(bool isLeft) { @@ -832,90 +866,69 @@ namespace VIVE.OpenXR.Hand public bool GetJointLocations(bool isLeft, out XrHandJointLocationEXT[] handJointLocation, out XrTime timestamp) { handJointLocation = isLeft ? jointLocationsL : jointLocationsR; - timestamp = m_frameState.predictedDisplayTime; + long displayTime = m_predictedDisplayTime; + if (Time.frameCount > updateFrame) + { + displayTime += m_predictedDisplayDuration; + } + timestamp = displayTime; if (!AllowUpdate(isLeft)) { return true; } bool ret = false; if (isLeft && !hasLeftHandTracker) { return ret; } if (!isLeft && !hasRightHandTracker) { return ret; } - OpenXRHelper.Trace.Begin("GetJointLocations"); - - TrackingOriginModeFlags origin = GetTrackingOriginMode(); - if (origin == TrackingOriginModeFlags.Unknown || origin == TrackingOriginModeFlags.Unbounded) { return ret; } - XrSpace baseSpace = (origin == TrackingOriginModeFlags.Device ? m_ReferenceSpaceLocal : m_ReferenceSpaceStage); - /// Configures XrHandJointsLocateInfoEXT XrHandJointsLocateInfoEXT locateInfo = new XrHandJointsLocateInfoEXT( in_type: XrStructureType.XR_TYPE_HAND_JOINTS_LOCATE_INFO_EXT, in_next: IntPtr.Zero, - in_baseSpace: baseSpace, - in_time: m_frameState.predictedDisplayTime); + in_baseSpace: GetCurrentAppSpace(), + in_time: displayTime); /// Configures XrHandJointLocationsEXT locations.type = XrStructureType.XR_TYPE_HAND_JOINT_LOCATIONS_EXT; locations.next = IntPtr.Zero; locations.isActive = false; - locations.jointCount = (uint)(isLeft ? jointLocationsL.Length : jointLocationsR.Length); + locations.jointCount = (uint)(handJointLocation.Length); - XrHandJointLocationEXT joint_location_ext_type = default(XrHandJointLocationEXT); - int jointLocationsLength = isLeft ? jointLocationsL.Length : jointLocationsR.Length; - locations.jointLocations = Marshal.AllocHGlobal(Marshal.SizeOf(joint_location_ext_type) * jointLocationsLength); + int jointLocationsLength = handJointLocation.Length; - long offset = 0; - /*if (IntPtr.Size == 4) - offset = locations.jointLocations.ToInt32(); - else - offset = locations.jointLocations.ToInt64(); - - for (int i = 0; i < jointLocationsLength; i++) + if (handJointLocationsNativeBuffer == null || handJointLocationsNativeBuffer == IntPtr.Zero) { - IntPtr joint_location_ext_ptr = new IntPtr(offset); + int N = sizeOfXrHandJointLocationEXT * jointLocationsLength; + handJointLocationsNativeBuffer = Marshal.AllocHGlobal(N); + handJointLocationsByteBuffer = new byte[N]; + handJointLocationsNativeBufferLength = jointLocationsLength; + DEBUG($"GetJointLocations() handJointLocationsNativeBuffer[{N}] is allocated."); + } + else if (handJointLocationsNativeBufferLength < jointLocationsLength) + { + Marshal.FreeHGlobal(handJointLocationsNativeBuffer); + int N = sizeOfXrHandJointLocationEXT * jointLocationsLength; + handJointLocationsNativeBuffer = Marshal.AllocHGlobal(N); + handJointLocationsByteBuffer = new byte[N]; + handJointLocationsNativeBufferLength = jointLocationsLength; + DEBUG($"GetJointLocations() handJointLocationsNativeBuffer[{N}] is allocated."); + } - if (isLeft) - Marshal.StructureToPtr(jointLocationsL[i], joint_location_ext_ptr, false); - else - Marshal.StructureToPtr(jointLocationsR[i], joint_location_ext_ptr, false); + locations.jointLocations = handJointLocationsNativeBuffer; - offset += Marshal.SizeOf(joint_location_ext_type); - }*/ - - if (LocateHandJointsEXT( + var retX = LocateHandJointsEXT( handTracker: (isLeft ? leftHandTracker : rightHandTracker), locateInfo: locateInfo, - locations: ref locations) == XrResult.XR_SUCCESS) + locations: ref locations); + + if (retX == XrResult.XR_SUCCESS) { timestamp = locateInfo.time; if (locations.isActive) { - if (IntPtr.Size == 4) - offset = locations.jointLocations.ToInt32(); - else - offset = locations.jointLocations.ToInt64(); - - for (int i = 0; i < locations.jointCount; i++) - { - IntPtr joint_location_ext_ptr = new IntPtr(offset); - - if (isLeft) - jointLocationsL[i] = (XrHandJointLocationEXT)Marshal.PtrToStructure(joint_location_ext_ptr, typeof(XrHandJointLocationEXT)); - else - jointLocationsR[i] = (XrHandJointLocationEXT)Marshal.PtrToStructure(joint_location_ext_ptr, typeof(XrHandJointLocationEXT)); - - offset += Marshal.SizeOf(joint_location_ext_type); - } - - // ToDo: locationFlags? - handJointLocation = isLeft ? jointLocationsL : jointLocationsR; - + MemoryTools.CopyAllFromRawMemory(handJointLocation, handJointLocationsNativeBuffer); ret = true; } } - Marshal.FreeHGlobal(locations.jointLocations); - - OpenXRHelper.Trace.End(); return ret; } /// diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthrough.cs b/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthrough.cs index 1de5a92..516df0a 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthrough.cs +++ b/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthrough.cs @@ -10,7 +10,9 @@ using UnityEngine.XR.OpenXR; using UnityEngine.XR.OpenXR.Features; using UnityEngine; using UnityEngine.XR; -using AOT; +using VIVE.OpenXR.CompositionLayer; +using UnityEngine.Profiling; +using VIVE.OpenXR.Feature; #if UNITY_EDITOR using UnityEditor.XR.OpenXR.Features; @@ -18,6 +20,254 @@ using UnityEditor.XR.OpenXR.Features; namespace VIVE.OpenXR.Passthrough { + public class PassthroughLayer : IDisposable + { + private XrPassthroughHTC xrHandle = 0; + private XrCompositionLayerPassthroughHTC layer; + private IntPtr layerPtr = IntPtr.Zero; + private XrPassthroughMeshTransformInfoHTC meshTransform; + private bool needMesh = false; + private IntPtr meshPtr = IntPtr.Zero; + private CompositionLayer.LayerType layerType = CompositionLayer.LayerType.Underlay; + private bool disposedValue = false; + private IntPtr verticesPtr = IntPtr.Zero; + private IntPtr indicesPtr = IntPtr.Zero; + private int depth = 0; + + public bool NeedMesh { get => needMesh; set => needMesh = value; } + public CompositionLayer.LayerType LayerType { get => layerType; set => layerType = value; } + public int Depth { get => depth; set => depth = value; } + + public PassthroughLayer(XrPassthroughHTC xrHandle, CompositionLayer.LayerType layerType) + { + this.xrHandle = xrHandle; + this.layerType = layerType; + + layer = new XrCompositionLayerPassthroughHTC(); + layerPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrCompositionLayerPassthroughHTC))); + + meshTransform = new XrPassthroughMeshTransformInfoHTC(); + meshPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrPassthroughMeshTransformInfoHTC))); + } + + public PassthroughLayer() + { + layer = new XrCompositionLayerPassthroughHTC(); + layerPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrCompositionLayerPassthroughHTC))); + + meshTransform = new XrPassthroughMeshTransformInfoHTC(); + meshPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrPassthroughMeshTransformInfoHTC))); + } + + public void SetLayer(XrCompositionLayerPassthroughHTC layer) + { + this.layer = layer; + } + + public static XrCompositionLayerPassthroughHTC MakeEmptyLayer() + { + XrPassthroughColorHTC passthroughColor = new XrPassthroughColorHTC(in_alpha: 0); + XrCompositionLayerPassthroughHTC compositionLayerPassthrough = new XrCompositionLayerPassthroughHTC( + in_layerFlags: (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT, + in_space: 0, + in_passthrough: 0, + in_color: passthroughColor); + + return compositionLayerPassthrough; + } + + public XrCompositionLayerPassthroughHTC GetLayer() + { + return layer; + } + + /// + /// Never null unless disposed. + /// + /// + public IntPtr GetLayerPtr() + { + return layerPtr; + } + + /// + /// Before SetMeshTransform, you should call SetLayer first. + /// + /// + /// + public void SetMeshTransform(XrPassthroughMeshTransformInfoHTC meshTransform, bool needMesh = true) + { + this.meshTransform = meshTransform; + NeedMesh = needMesh; + } + + public static XrPassthroughMeshTransformInfoHTC MakeMeshTransform() + { + return new XrPassthroughMeshTransformInfoHTC() + { + type = XrStructureType.XR_TYPE_PASSTHROUGH_MESH_TRANSFORM_INFO_HTC, + next = IntPtr.Zero, + vertexCount = 0, + vertices = IntPtr.Zero, + indexCount = 0, + indices = IntPtr.Zero, + baseSpace = 0, + time = 0, + pose = XrPosef.Identity, + scale = XrVector3f.One, + }; + } + + public bool SetMeshData(ref XrPassthroughMeshTransformInfoHTC mesh, Vector3[] vertices, int[] indices, bool convertFromUnityToOpenXR = true) + { + if (vertices.Length < 3 || indices.Length % 3 != 0) //Must have at least 3 vertices and complete triangles + { + Debug.LogError("PassthroughLayer: Mesh data invalid."); + return false; + } + + // check our vertex buffer and index buffer + if (verticesPtr != IntPtr.Zero) + { + Marshal.FreeHGlobal(verticesPtr); + verticesPtr = IntPtr.Zero; + } + + if (indicesPtr != IntPtr.Zero) + { + Marshal.FreeHGlobal(indicesPtr); + indicesPtr = IntPtr.Zero; + } + + verticesPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrVector3f)) * vertices.Length); + indicesPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(uint)) * indices.Length); + + XrVector3f[] xrVertices = new XrVector3f[vertices.Length]; + for (int i = 0; i < vertices.Length; i++) + { + xrVertices[i] = OpenXRHelper.ToOpenXRVector(vertices[i], convertFromUnityToOpenXR); + } + + uint[] indicesUint = new uint[indices.Length]; + // Unity is contrary to OpenXR in the order of the vertices in the triangle. + for (int i = 0; i < indices.Length; i += 3) + { + indicesUint[i] = (uint)indices[i]; + indicesUint[i + 1] = (uint)indices[i + 2]; + indicesUint[i + 2] = (uint)indices[i + 1]; + } + + MemoryTools.CopyToRawMemory(verticesPtr, xrVertices); + MemoryTools.CopyToRawMemory(indicesPtr, indicesUint); + + mesh.vertexCount = (uint)vertices.Length; + mesh.vertices = verticesPtr; + + mesh.indexCount = (uint)indices.Length; + mesh.indices = indicesPtr; + + return true; + } + + /// + /// Copy to native buffer + /// + public void ToNativeBuffer() + { + if (layerPtr == IntPtr.Zero) + return; + + if (NeedMesh) + { + layer.next = meshPtr; + MemoryTools.StructureToPtr(meshTransform, meshPtr); + MemoryTools.StructureToPtr(layer, layerPtr); + } + else + { + if (layer.next != IntPtr.Zero) + layer.next = IntPtr.Zero; + MemoryTools.StructureToPtr(layer, layerPtr); + } + } + + public XrPassthroughMeshTransformInfoHTC GetMesh() + { + return meshTransform; + } + + public IntPtr GetMeshTransformPtr() + { + return meshPtr; + } + + public bool IsOverlay() + { + return layerType == CompositionLayer.LayerType.Overlay; + } + + public bool IsUnderlay() + { + return layerType == CompositionLayer.LayerType.Underlay; + } + + protected virtual void Dispose(bool disposing) + { + if (!disposedValue) + { + if (disposing) + { + xrHandle = 0; + } + + if (layerPtr != IntPtr.Zero) + { + Marshal.FreeHGlobal(layerPtr); + layerPtr = IntPtr.Zero; + } + + if (meshPtr != IntPtr.Zero) + { + Marshal.FreeHGlobal(meshPtr); + meshPtr = IntPtr.Zero; + } + + if (verticesPtr != IntPtr.Zero) + { + Marshal.FreeHGlobal(verticesPtr); + verticesPtr = IntPtr.Zero; + } + + if (indicesPtr != IntPtr.Zero) + { + Marshal.FreeHGlobal(indicesPtr); + indicesPtr = IntPtr.Zero; + } + + disposedValue = true; + } + } + + ~PassthroughLayer() + { + // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method + Dispose(disposing: false); + } + + void IDisposable.Dispose() + { + // Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method + Dispose(disposing: true); + GC.SuppressFinalize(this); + } + + internal void Dispose() + { + Dispose(true); + GC.SuppressFinalize(this); + } + } + #if UNITY_EDITOR [OpenXRFeature(UiName = "VIVE XR Passthrough", Desc = "Enable this feature to use the VIVE OpenXR Passthrough feature.", @@ -32,18 +282,15 @@ namespace VIVE.OpenXR.Passthrough public class VivePassthrough : OpenXRFeature { #region LOG - const string LOG_TAG = "VIVE.OpenXR.Passthrough.VivePassthrough"; - StringBuilder m_sb = null; - StringBuilder sb { + const string TAG = "VivePassthrough"; + StringBuilder sb = new StringBuilder(); + + StringBuilder CSB { get { - if (m_sb == null) { m_sb = new StringBuilder(); } - return m_sb; + return sb.Clear(); } } - static void DEBUG(string msg) { Debug.Log(LOG_TAG + " " + msg); } - static void DEBUG(StringBuilder msg) { Debug.LogFormat("{0} {1}", LOG_TAG, msg); } - static void WARNING(string msg) { Debug.LogWarning(LOG_TAG + " " + msg); } - static void ERROR(string msg) { Debug.LogError(LOG_TAG + " " + msg); } + #endregion /// @@ -56,117 +303,144 @@ namespace VIVE.OpenXR.Passthrough /// public const string kOpenxrExtensionStrings = "XR_HTC_passthrough XR_HTC_passthrough_configuration"; -#if UNITY_STANDALONE - private static IntPtr xrGetInstanceProcAddr_prev; - private static IntPtr XrEndFrame_prev; - private static IntPtr XrWaitFrame_prev; - private static List layerListOrigin = new List(); - private static List layerListModified = new List(); - private static IntPtr layersModified = Marshal.AllocHGlobal((int)(Marshal.SizeOf(typeof(IntPtr)) * 30)); //Preallocate a layer buffer with sufficient size and reuse it for each frame. + private static IntPtr[] layersOrigin = null; + private static IntPtr[] layersModified = null; + private static int sizeOfIntPtr = Marshal.SizeOf(typeof(IntPtr)); + private static IntPtr layersModifiedPtr = Marshal.AllocHGlobal(sizeOfIntPtr * 30); //Preallocate a layer buffer with sufficient size and reuse it for each frame. + protected override IntPtr HookGetInstanceProcAddr(IntPtr func) { - UnityEngine.Debug.Log("EXT: registering our own xrGetInstanceProcAddr"); - xrGetInstanceProcAddr_prev = func; - return Marshal.GetFunctionPointerForDelegate(Intercept_xrGetInstanceProcAddr); - } - [MonoPInvokeCallback(typeof(OpenXRHelper.xrGetInstanceProcAddrDelegate))] - private static XrResult InterceptXrEndFrame_xrGetInstanceProcAddr(XrInstance instance, string name, out IntPtr function) - { - if (xrGetInstanceProcAddr_prev == null || xrGetInstanceProcAddr_prev == IntPtr.Zero) - { - UnityEngine.Debug.LogError("xrGetInstanceProcAddr_prev is null"); - function = IntPtr.Zero; - return XrResult.XR_ERROR_VALIDATION_FAILURE; - } + var interceptors = ViveInterceptors.Instance; + interceptors.AddRequiredFunction("xrWaitFrame"); + interceptors.AddRequiredFunction("xrEndFrame"); - // Get delegate of old xrGetInstanceProcAddr. - var xrGetProc = Marshal.GetDelegateForFunctionPointer(xrGetInstanceProcAddr_prev); - XrResult result = xrGetProc(instance, name, out function); - if (name == "xrEndFrame") - { - XrEndFrame_prev = function; - m_intercept_xrEndFrame = intercepted_xrEndFrame; - function = Marshal.GetFunctionPointerForDelegate(m_intercept_xrEndFrame); ; - UnityEngine.Debug.Log("Getting xrEndFrame func"); - } - if (name == "xrWaitFrame") - { - XrWaitFrame_prev = function; - m_intercept_xrWaitFrame = intercepted_xrWaitFrame; - function = Marshal.GetFunctionPointerForDelegate(m_intercept_xrWaitFrame); ; - UnityEngine.Debug.Log("Getting xrWaitFrame func"); - } - return result; + return interceptors.HookGetInstanceProcAddr(func); } - [MonoPInvokeCallback(typeof(OpenXRHelper.xrEndFrameDelegate))] - private static XrResult intercepted_xrEndFrame(XrSession session, ref XrFrameEndInfo frameEndInfo) + struct XrCompositionLayerProjection { - XrResult res; - // Get delegate of prev xrEndFrame. - var xrEndFrame = Marshal.GetDelegateForFunctionPointer(XrEndFrame_prev); + public XrStructureType type; + public IntPtr next; + public XrCompositionLayerFlags layerFlags; + public XrSpace space; + public uint viewCount; + public IntPtr views; + } + + + private void ForceProjectionLayerTransparent(IntPtr[] layersPtr) + { + // Find the projection layer in freameEndInfo + int projIndex = -1; + IntPtr projLayerPtr = IntPtr.Zero; + for (int i = 0; i < layersPtr.Length; i++) + { + projLayerPtr = layersPtr[i]; + if (MemoryTools.GetType(projLayerPtr) == XrStructureType.XR_TYPE_COMPOSITION_LAYER_PROJECTION) + { + projIndex = i; + break; + } + } + + // No projection layer found. + if (projIndex == -1) + Debug.Log("No projection layer"); + + // Force projection layer accept transparent + XrCompositionLayerProjection xrProjLayer = default; + MemoryTools.PtrToStructure(projLayerPtr, ref xrProjLayer); + xrProjLayer.layerFlags |= ViveCompositionLayerHelper.XR_COMPOSITION_LAYER_BLEND_TEXTURE_SOURCE_ALPHA_BIT; + MemoryTools.StructureToPtr(xrProjLayer, projLayerPtr); + } + + private bool OnBeforeEndFrame(XrSession session, ref ViveInterceptors.XrFrameEndInfo frameEndInfo, ref XrResult result) + { + // It is possible that the layerCount is 0, so we need to check it. + if (frameEndInfo.layerCount == 0 || ptLayers == null || ptLayers.Count == 0) + return true; - layerListOrigin.Clear(); uint layerCount = frameEndInfo.layerCount; - IntPtr layers = frameEndInfo.layers; - for (int i = 0; i < layerCount; i++) - { - IntPtr ptr = Marshal.ReadIntPtr(layers, i * Marshal.SizeOf(typeof(IntPtr))); - XrCompositionLayerBaseHeader header = (XrCompositionLayerBaseHeader)Marshal.PtrToStructure(ptr, typeof(XrCompositionLayerBaseHeader)); - layerListOrigin.Add(ptr); - } - List layerListNew; - if (layerListModified.Count != 0) - { - layerListNew = new List(layerListModified); - } - else - { - layerListNew = new List(layerListOrigin); - } - for (int i = 0; i < layerListNew.Count; i++) - { - Marshal.WriteIntPtr(layersModified, i * Marshal.SizeOf(typeof(IntPtr)), layerListNew[i]); - } - frameEndInfo.layers = layersModified; - frameEndInfo.layerCount = (uint)layerListNew.Count; - res = xrEndFrame(session, ref frameEndInfo); - return res; - } - private static XrFrameWaitInfo m_frameWaitInfo; - private static XrFrameState m_frameState; - [MonoPInvokeCallback(typeof(OpenXRHelper.xrWaitFrameDelegate))] - private static int intercepted_xrWaitFrame(ulong session, ref XrFrameWaitInfo frameWaitInfo, ref XrFrameState frameState) - { - var xrWaitFrame = Marshal.GetDelegateForFunctionPointer(XrWaitFrame_prev); - int res = xrWaitFrame(session, ref frameWaitInfo, ref frameState); - m_frameWaitInfo = frameWaitInfo; - m_frameState = frameState; - return res; - } - public void GetOriginEndFrameLayerList(out List layers) - { - layers = new List(layerListOrigin); + Profiler.BeginSample("Pt"); + + // Make all layers to array + if (layersOrigin == null || layersOrigin.Length != layerCount) + layersOrigin = new IntPtr[layerCount]; + MemoryTools.CopyAllFromRawMemory(layersOrigin, frameEndInfo.layers); + + // Insert our layers into layersOrigin + // Total passthough layers count + var finalCount = ptLayers.Count + layerCount; + if (layersModified == null || layersModified.Length != finalCount) + layersModified = new IntPtr[finalCount]; + + int j = 0; + bool hasUnderlay = false; + // Insert underlay + for (int i = 0; i < ptLayers.Count; i++) + { + if (ptLayers[i].IsUnderlay()) + { + ptLayers[i].ToNativeBuffer(); + var ptr = ptLayers[i].GetLayerPtr(); + if (ptr != IntPtr.Zero) + layersModified[j++] = ptr; + hasUnderlay = true; + } + } + if (hasUnderlay) + ForceProjectionLayerTransparent(layersOrigin); + + // put original layers into layersModified + for (int i = 0; i < layersOrigin.Length; i++) + { + layersModified[j++] = layersOrigin[i]; + } + + // Append overlay + for (int i = 0; i < ptLayers.Count; i++) + { + if (ptLayers[i].IsOverlay()) + { + ptLayers[i].ToNativeBuffer(); + var ptr = ptLayers[i].GetLayerPtr(); + if (ptr != IntPtr.Zero) + layersModified[j++] = ptr; + } + } + + MemoryTools.CopyToRawMemory(layersModifiedPtr, layersModified); + + // Change original layers + frameEndInfo.layers = layersModifiedPtr; + frameEndInfo.layerCount = (uint)layersModified.Length; + + Profiler.EndSample(); + + return true; } - public void SubmitLayers(List layers) + List ptLayers = null; + + /// + /// Call this function in game thread + /// + /// passthrough layers + public void SubmitLayers(List layers) { - layerListModified = new List(layers); - //UnityEngine.Debug.Log("####Update submit end " + layerListModified.Count); + ptLayers = layers; } + public XrFrameState GetFrameState() { - return m_frameState; + var frameState = ViveInterceptors.Instance.GetCurrentFrameState(); + return new XrFrameState() { + predictedDisplayTime = frameState.predictedDisplayTime, + predictedDisplayPeriod = frameState.predictedDisplayPeriod, + shouldRender = frameState.shouldRender + }; } -#endif -#if UNITY_ANDROID - protected override IntPtr HookGetInstanceProcAddr(IntPtr func) - { - ViveInterceptors.Instance.AddRequiredFunction("xrPollEvent"); - return ViveInterceptors.Instance.HookGetInstanceProcAddr(func); - } -#endif #region OpenXR Life Cycle private bool m_XrInstanceCreated = false; @@ -180,35 +454,50 @@ namespace VIVE.OpenXR.Passthrough private XrInstance m_XrInstance = 0; protected override bool OnInstanceCreate(ulong xrInstance) { + Log.D(TAG, "OnInstanceCreate() " + m_XrInstance); foreach (string kOpenxrExtensionString in kOpenxrExtensionStrings.Split(' ')) { if (!OpenXRRuntime.IsExtensionEnabled(kOpenxrExtensionString)) { - WARNING("OnInstanceCreate() " + kOpenxrExtensionString + " is NOT enabled."); + Log.W(TAG, "OnInstanceCreate() " + kOpenxrExtensionString + " is NOT enabled."); } else { - DEBUG("OnInstanceCreate() " + kOpenxrExtensionString + " is enabled."); + Log.I(TAG, "OnInstanceCreate() " + kOpenxrExtensionString + " is enabled."); } } + SpaceWrapper.Instance.OnInstanceCreate(xrInstance, xrGetInstanceProcAddr); + CommonWrapper.Instance.OnInstanceCreate(xrInstance, xrGetInstanceProcAddr); + bool ret = GetXrFunctionDelegates(xrInstance); + if (!ret) + return ret; + m_XrInstanceCreated = true; m_XrInstance = xrInstance; - DEBUG("OnInstanceCreate() " + m_XrInstance); + ViveInterceptors.Instance.BeforeOriginalEndFrame += OnBeforeEndFrame; - return GetXrFunctionDelegates(m_XrInstance); + return ret; } protected override void OnInstanceDestroy(ulong xrInstance) { + if (m_XrInstanceCreated) + { + ViveInterceptors.Instance.BeforeOriginalEndFrame -= OnBeforeEndFrame; + + CommonWrapper.Instance.OnInstanceDestroy(); + SpaceWrapper.Instance.OnInstanceDestroy(); + } + m_XrInstanceCreated = false; - DEBUG("OnInstanceDestroy() " + m_XrInstance); + Log.D(TAG, "OnInstanceDestroy() " + m_XrInstance); } private XrSystemId m_XrSystemId = 0; protected override void OnSystemChange(ulong xrSystem) { m_XrSystemId = xrSystem; - DEBUG("OnSystemChange() " + m_XrSystemId); + Log.D(TAG, "OnSystemChange() " + m_XrSystemId); } private bool m_XrSessionCreated = false; @@ -224,7 +513,7 @@ namespace VIVE.OpenXR.Passthrough { m_XrSession = xrSession; m_XrSessionCreated = true; - DEBUG("OnSessionCreate() " + m_XrSession); + Log.I(TAG, "OnSessionCreate() " + m_XrSession); CheckConfigurationSupport(); } @@ -253,23 +542,25 @@ namespace VIVE.OpenXR.Passthrough protected override void OnSessionBegin(ulong xrSession) { m_XrSessionEnding = false; - DEBUG("OnSessionBegin() " + m_XrSession); + Log.D(TAG, "OnSessionBegin() " + m_XrSession); // Enumerate supported reference space types and create the XrSpace. - XrReferenceSpaceType[] spaces = new XrReferenceSpaceType[Enum.GetNames(typeof(XrReferenceSpaceType)).Count()]; - UInt32 spaceCountOutput; - if (EnumerateReferenceSpaces( + XrReferenceSpaceType[] spaces = null;// new XrReferenceSpaceType[Enum.GetNames(typeof(XrReferenceSpaceType)).Count()]; + int spaceCountOutput = 0; + if (SpaceWrapper.Instance.EnumerateReferenceSpaces( + xrSession, spaceCapacityInput: 0, - spaceCountOutput: out spaceCountOutput, - spaces: out spaces[0]) == XrResult.XR_SUCCESS) + spaceCountOutput: ref spaceCountOutput, + spaces: ref spaces) == XrResult.XR_SUCCESS) { - //DEBUG("spaceCountOutput: " + spaceCountOutput); + //Log.I(TAG, "spaceCountOutput: " + spaceCountOutput); Array.Resize(ref spaces, (int)spaceCountOutput); - if (EnumerateReferenceSpaces( + if (SpaceWrapper.Instance.EnumerateReferenceSpaces( + xrSession, spaceCapacityInput: spaceCountOutput, - spaceCountOutput: out spaceCountOutput, - spaces: out spaces[0]) == XrResult.XR_SUCCESS) + spaceCountOutput: ref spaceCountOutput, + spaces: ref spaces) == XrResult.XR_SUCCESS) { if (spaces.Contains(XrReferenceSpaceType.XR_REFERENCE_SPACE_TYPE_LOCAL)) { @@ -280,20 +571,21 @@ namespace VIVE.OpenXR.Passthrough referenceSpaceCreateInfoWorldLock.poseInReferenceSpace.orientation = new XrQuaternionf(0, 0, 0, 1); referenceSpaceCreateInfoWorldLock.poseInReferenceSpace.position = new XrVector3f(0, 0, 0); - if (CreateReferenceSpace( - createInfo: ref referenceSpaceCreateInfoWorldLock, - space: out m_WorldLockSpaceOriginOnHead) == XrResult.XR_SUCCESS) + if (SpaceWrapper.Instance.CreateReferenceSpace( + xrSession, + createInfo: referenceSpaceCreateInfoWorldLock, + space: out m_WorldLockSpaceOriginOnHead) == XrResult.XR_SUCCESS) { - //DEBUG("CreateReferenceSpace: " + m_WorldLockSpaceOriginOnHead); + //Log.I(TAG, "CreateReferenceSpace: " + m_WorldLockSpaceOriginOnHead); } else { - ERROR("CreateReferenceSpace for world lock layers on head failed."); + Log.E(TAG, "CreateReferenceSpace for world lock layers on head failed."); } } else { - ERROR("CreateReferenceSpace no space type for world lock on head layers."); + Log.E(TAG, "CreateReferenceSpace no space type for world lock on head layers."); } if (spaces.Contains(XrReferenceSpaceType.XR_REFERENCE_SPACE_TYPE_STAGE)) @@ -305,20 +597,21 @@ namespace VIVE.OpenXR.Passthrough referenceSpaceCreateInfoWorldLock.poseInReferenceSpace.orientation = new XrQuaternionf(0, 0, 0, 1); referenceSpaceCreateInfoWorldLock.poseInReferenceSpace.position = new XrVector3f(0, 0, 0); - if (CreateReferenceSpace( - createInfo: ref referenceSpaceCreateInfoWorldLock, - space: out m_WorldLockSpaceOriginOnFloor) == XrResult.XR_SUCCESS) + if (SpaceWrapper.Instance.CreateReferenceSpace( + xrSession, + createInfo: referenceSpaceCreateInfoWorldLock, + space: out m_WorldLockSpaceOriginOnFloor) == XrResult.XR_SUCCESS) { - //DEBUG("CreateReferenceSpace: " + m_WorldLockSpaceOriginOnFloor); + //Log.I(TAG, "CreateReferenceSpace: " + m_WorldLockSpaceOriginOnFloor); } else { - ERROR("CreateReferenceSpace for world lock layers on floor failed."); + Log.E(TAG, "CreateReferenceSpace for world lock layers on floor failed."); } } else { - ERROR("CreateReferenceSpace no space type for world lock on floor layers."); + Log.E(TAG, "CreateReferenceSpace no space type for world lock on floor layers."); } if (spaces.Contains(XrReferenceSpaceType.XR_REFERENCE_SPACE_TYPE_VIEW)) @@ -330,36 +623,37 @@ namespace VIVE.OpenXR.Passthrough referenceSpaceCreateInfoHeadLock.poseInReferenceSpace.orientation = new XrQuaternionf(0, 0, 0, 1); referenceSpaceCreateInfoHeadLock.poseInReferenceSpace.position = new XrVector3f(0, 0, 0); - if (CreateReferenceSpace( - createInfo: ref referenceSpaceCreateInfoHeadLock, - space: out m_HeadLockSpace) == XrResult.XR_SUCCESS) + if (SpaceWrapper.Instance.CreateReferenceSpace( + xrSession, + createInfo: referenceSpaceCreateInfoHeadLock, + space: out m_HeadLockSpace) == XrResult.XR_SUCCESS) { - //DEBUG("CreateReferenceSpace: " + m_HeadLockSpace); + //Log.I(TAG, "CreateReferenceSpace: " + m_HeadLockSpace); } else { - ERROR("CreateReferenceSpace for head lock layers failed."); + Log.E(TAG, "CreateReferenceSpace for head lock layers failed."); } } else { - ERROR("CreateReferenceSpace no space type for head lock layers."); + Log.E(TAG, "CreateReferenceSpace no space type for head lock layers."); } } else { - ERROR("EnumerateReferenceSpaces(" + spaceCountOutput + ") failed."); + Log.E(TAG, "EnumerateReferenceSpaces(" + spaceCountOutput + ") failed."); } } else { - ERROR("EnumerateReferenceSpaces(0) failed."); + Log.E(TAG, "EnumerateReferenceSpaces(0) failed."); } } protected override void OnSessionEnd(ulong xrSession) { m_XrSessionEnding = true; - DEBUG("OnSessionEnd() " + m_XrSession); + Log.D(TAG, "OnSessionEnd() " + m_XrSession); } /// @@ -371,7 +665,7 @@ namespace VIVE.OpenXR.Passthrough { if (!m_XrSessionCreated || m_XrSession != xrSession) { return; } - sb.Clear().Append("OnSessionDestroy() " + xrSession); DEBUG(sb); + Log.D(TAG, CSB.Append("OnSessionDestroy() " + xrSession)); m_XrSessionCreated = false; m_XrSession = 0; @@ -382,24 +676,24 @@ namespace VIVE.OpenXR.Passthrough DestroyPassthroughHTC(currentpassthrough); if (OnPassthroughSessionDestroyHandlerDictionary.ContainsKey(currentpassthrough) && OnPassthroughSessionDestroyHandlerDictionary[currentpassthrough] != null) { - sb.Clear().Append("OnSessionDestroy() Call back ").Append(passthroughs[i]); DEBUG(sb); + Log.D(TAG, CSB.Append("OnSessionDestroy() Call back ").Append(passthroughs[i])); OnPassthroughSessionDestroyHandlerDictionary[passthroughs[i]].Invoke(passthroughs[i]); } } if (m_HeadLockSpace != 0) { - DestroySpace(m_HeadLockSpace); + SpaceWrapper.Instance.DestroySpace(m_HeadLockSpace); m_HeadLockSpace = 0; } if (m_WorldLockSpaceOriginOnFloor != 0) { - DestroySpace(m_WorldLockSpaceOriginOnFloor); + SpaceWrapper.Instance.DestroySpace(m_WorldLockSpaceOriginOnFloor); m_WorldLockSpaceOriginOnFloor = 0; } if (m_WorldLockSpaceOriginOnHead != 0) { - DestroySpace(m_WorldLockSpaceOriginOnHead); + SpaceWrapper.Instance.DestroySpace(m_WorldLockSpaceOriginOnHead); m_WorldLockSpaceOriginOnHead = 0; } } @@ -415,7 +709,7 @@ namespace VIVE.OpenXR.Passthrough private XrSessionState m_XrSessionOldState = XrSessionState.XR_SESSION_STATE_UNKNOWN; protected override void OnSessionStateChange(int oldState, int newState) { - DEBUG("OnSessionStateChange() oldState: " + oldState + " newState:" + newState); + Log.D(TAG, "OnSessionStateChange() oldState: " + oldState + " newState:" + newState); if (Enum.IsDefined(typeof(XrSessionState), oldState)) { @@ -423,7 +717,7 @@ namespace VIVE.OpenXR.Passthrough } else { - DEBUG("OnSessionStateChange() oldState undefined"); + Log.I(TAG, "OnSessionStateChange() oldState undefined"); } if (Enum.IsDefined(typeof(XrSessionState), newState)) @@ -432,7 +726,7 @@ namespace VIVE.OpenXR.Passthrough } else { - DEBUG("OnSessionStateChange() newState undefined"); + Log.I(TAG, "OnSessionStateChange() newState undefined"); } } @@ -441,77 +735,8 @@ namespace VIVE.OpenXR.Passthrough #region OpenXR function delegates /// xrGetInstanceProcAddr OpenXRHelper.xrGetInstanceProcAddrDelegate XrGetInstanceProcAddr; - - /// xrGetSystemProperties - OpenXRHelper.xrGetSystemPropertiesDelegate xrGetSystemProperties; - /// - /// Helper function to get this feature' properties. - /// See xrGetSystemProperties - /// - public XrResult GetSystemProperties(ref XrSystemProperties properties) - { - if (m_XrInstanceCreated) - { - return xrGetSystemProperties(m_XrInstance, m_XrSystemId, ref properties); - } - - return XrResult.XR_ERROR_INSTANCE_LOST; - } - -#if UNITY_STANDALONE - OpenXRHelper.xrGetInstanceProcAddrDelegate Intercept_xrGetInstanceProcAddr = - new OpenXRHelper.xrGetInstanceProcAddrDelegate(InterceptXrEndFrame_xrGetInstanceProcAddr); - - private static OpenXRHelper.xrEndFrameDelegate m_intercept_xrEndFrame; - private static OpenXRHelper.xrWaitFrameDelegate m_intercept_xrWaitFrame; - VivePassthroughHelper.xrCreatePassthroughHTCDelegate xrCreatePassthroughHTC; VivePassthroughHelper.xrDestroyPassthroughHTCDelegate xrDestroyPassthroughHTC; -#endif - - /// xrEnumerateReferenceSpaces - OpenXRHelper.xrEnumerateReferenceSpacesDelegate xrEnumerateReferenceSpaces; - private XrResult EnumerateReferenceSpaces(UInt32 spaceCapacityInput, out UInt32 spaceCountOutput, out XrReferenceSpaceType spaces) - { - if (!m_XrSessionCreated) - { - spaceCountOutput = 0; - spaces = XrReferenceSpaceType.XR_REFERENCE_SPACE_TYPE_UNBOUNDED_MSFT; - return XrResult.XR_ERROR_SESSION_NOT_RUNNING; - } - - return xrEnumerateReferenceSpaces(m_XrSession, spaceCapacityInput, out spaceCountOutput, out spaces); - } - - /// xrCreateReferenceSpace - OpenXRHelper.xrCreateReferenceSpaceDelegate xrCreateReferenceSpace; - /// - /// Creates a reference space - /// See xrCreateReferenceSpace - /// - private XrResult CreateReferenceSpace(ref XrReferenceSpaceCreateInfo createInfo, out XrSpace space) - { - if (!m_XrSessionCreated) - { - space = 0; - return XrResult.XR_ERROR_SESSION_NOT_RUNNING; - } - - return xrCreateReferenceSpace(m_XrSession, ref createInfo, out space); - } - - /// xrDestroySpace - OpenXRHelper.xrDestroySpaceDelegate xrDestroySpace; - private XrResult DestroySpace(XrSpace space) - { - if (space != 0) - { - return xrDestroySpace(space); - } - return XrResult.XR_ERROR_REFERENCE_SPACE_UNSUPPORTED; - } - - VivePassthroughHelper.xrEnumeratePassthroughImageRatesHTCDelegate xrEnumeratePassthroughImageRatesHTC; VivePassthroughHelper.xrGetPassthroughConfigurationHTCDelegate xrGetPassthroughConfigurationHTC; VivePassthroughHelper.xrSetPassthroughConfigurationHTCDelegate xrSetPassthroughConfigurationHTC; @@ -521,361 +746,32 @@ namespace VIVE.OpenXR.Passthrough /// xrGetInstanceProcAddr if (xrGetInstanceProcAddr != null && xrGetInstanceProcAddr != IntPtr.Zero) { - DEBUG("Get function pointer of xrGetInstanceProcAddr."); + Log.I(TAG, "Get function pointer of xrGetInstanceProcAddr."); XrGetInstanceProcAddr = Marshal.GetDelegateForFunctionPointer( xrGetInstanceProcAddr, typeof(OpenXRHelper.xrGetInstanceProcAddrDelegate)) as OpenXRHelper.xrGetInstanceProcAddrDelegate; } else { - ERROR("xrGetInstanceProcAddr"); + Log.E(TAG, "xrGetInstanceProcAddr"); return false; } - IntPtr funcPtr = IntPtr.Zero; - /// xrGetSystemProperties - if (XrGetInstanceProcAddr(xrInstance, "xrGetSystemProperties", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrGetSystemProperties."); - xrGetSystemProperties = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(OpenXRHelper.xrGetSystemPropertiesDelegate)) as OpenXRHelper.xrGetSystemPropertiesDelegate; - } - } - else - { - ERROR("xrGetSystemProperties"); - return false; - } - /// xrEnumerateReferenceSpaces - if (XrGetInstanceProcAddr(xrInstance, "xrEnumerateReferenceSpaces", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrEnumerateReferenceSpaces."); - xrEnumerateReferenceSpaces = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(OpenXRHelper.xrEnumerateReferenceSpacesDelegate)) as OpenXRHelper.xrEnumerateReferenceSpacesDelegate; - } - } - else - { - ERROR("xrEnumerateReferenceSpaces"); - return false; - } - /// xrCreateReferenceSpace - if (XrGetInstanceProcAddr(xrInstance, "xrCreateReferenceSpace", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrCreateReferenceSpace."); - xrCreateReferenceSpace = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(OpenXRHelper.xrCreateReferenceSpaceDelegate)) as OpenXRHelper.xrCreateReferenceSpaceDelegate; - } - } - else - { - ERROR("xrCreateReferenceSpace"); - return false; - } - /// xrDestroySpace - if (XrGetInstanceProcAddr(xrInstance, "xrDestroySpace", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrDestroySpace."); - xrDestroySpace = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(OpenXRHelper.xrDestroySpaceDelegate)) as OpenXRHelper.xrDestroySpaceDelegate; - } - } - else - { - ERROR("xrDestroySpace"); - return false; - } -#if UNITY_ANDROID - /// xrEnumeratePassthroughImageRatesHTC - if (XrGetInstanceProcAddr(xrInstance, "xrEnumeratePassthroughImageRatesHTC", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrEnumeratePassthroughImageRatesHTC."); - xrEnumeratePassthroughImageRatesHTC = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(VivePassthroughHelper.xrEnumeratePassthroughImageRatesHTCDelegate)) as VivePassthroughHelper.xrEnumeratePassthroughImageRatesHTCDelegate; - } - } - else - { - ERROR("xrEnumeratePassthroughImageRatesHTC"); - //return false; - } + bool ret = true; + IntPtr funcPtr = IntPtr.Zero; - /// xrGetPassthroughConfigurationHTC - if (XrGetInstanceProcAddr(xrInstance, "xrGetPassthroughConfigurationHTC", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrGetPassthroughConfigurationHTC."); - xrGetPassthroughConfigurationHTC = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(VivePassthroughHelper.xrGetPassthroughConfigurationHTCDelegate)) as VivePassthroughHelper.xrGetPassthroughConfigurationHTCDelegate; - } - } - else - { - ERROR("xrGetPassthroughConfigurationHTC"); - //return false; - } - - /// xrSetPassthroughConfigurationHTC - if (XrGetInstanceProcAddr(xrInstance, "xrSetPassthroughConfigurationHTC", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrSetPassthroughConfigurationHTC."); - xrSetPassthroughConfigurationHTC = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(VivePassthroughHelper.xrSetPassthroughConfigurationHTCDelegate)) as VivePassthroughHelper.xrSetPassthroughConfigurationHTCDelegate; - } - } - else - { - ERROR("xrSetPassthroughConfigurationHTC"); - //return false; - } -#endif -#if UNITY_STANDALONE - /// xrCreatePassthroughHTC - if (XrGetInstanceProcAddr(xrInstance, "xrCreatePassthroughHTC", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrCreatePassthroughHTC."); - xrCreatePassthroughHTC = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(VivePassthroughHelper.xrCreatePassthroughHTCDelegate)) as VivePassthroughHelper.xrCreatePassthroughHTCDelegate; - } - } - else - { - ERROR("xrCreatePassthroughHTC"); - return false; - } - /// xrCreatePassthroughHTC - if (XrGetInstanceProcAddr(xrInstance, "xrDestroyPassthroughHTC", out funcPtr) == XrResult.XR_SUCCESS) - { - if (funcPtr != IntPtr.Zero) - { - DEBUG("Get function pointer of xrDestroyPassthroughHTC."); - xrDestroyPassthroughHTC = Marshal.GetDelegateForFunctionPointer( - funcPtr, - typeof(VivePassthroughHelper.xrDestroyPassthroughHTCDelegate)) as VivePassthroughHelper.xrDestroyPassthroughHTCDelegate; - } - } - else - { - ERROR("xrDestroyPassthroughHTC"); - return false; - } -#endif + ret &= OpenXRHelper.GetXrFunctionDelegate(XrGetInstanceProcAddr, xrInstance, "xrCreatePassthroughHTC", out xrCreatePassthroughHTC); + ret &= OpenXRHelper.GetXrFunctionDelegate(XrGetInstanceProcAddr, xrInstance, "xrDestroyPassthroughHTC", out xrDestroyPassthroughHTC); #if UNITY_ANDROID - if (GetFuncAddrs(xrInstance, xrGetInstanceProcAddr) == XrResult.XR_SUCCESS) - { - DEBUG("Get function pointers in native."); - } - else - { - ERROR("GetFuncAddrs"); - return false; - } + ret &= OpenXRHelper.GetXrFunctionDelegate(XrGetInstanceProcAddr, xrInstance, "xrEnumeratePassthroughImageRatesHTC", out xrEnumeratePassthroughImageRatesHTC); + ret &= OpenXRHelper.GetXrFunctionDelegate(XrGetInstanceProcAddr, xrInstance, "xrGetPassthroughConfigurationHTC", out xrGetPassthroughConfigurationHTC); + ret &= OpenXRHelper.GetXrFunctionDelegate(XrGetInstanceProcAddr, xrInstance, "xrSetPassthroughConfigurationHTC", out xrSetPassthroughConfigurationHTC); #endif - return true; + return ret; } #endregion -#if UNITY_ANDROID -#region Android Hook - Public - private const string ExtLib = "viveopenxr"; - [DllImport(ExtLib, EntryPoint = "htcpassthrough_CreatePassthrough")] - private static extern int ViveCreatePassthrough(XrSession session, CompositionLayer.LayerType layerType, PassthroughLayerForm layerForm, uint compositionDepth = 0); - [DllImport(ExtLib, EntryPoint = "htcpassthrough_DestroyPassthrough")] - private static extern bool ViveDestroyPassthrough(int passthroughID); - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetAlpha")] - private static extern bool ViveSetAlpha(int passthroughID, float alpha); - /// - /// Set Passthough Alpha. - /// - public bool SetAlpha(XrPassthroughHTC passthrough, float alpha) - { - if (!m_XrInstanceCreated) - { - ERROR("SetAlpha: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetAlpha() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetAlpha() passthrough: ").Append(passthroughID).Append(", alpha: ").Append(alpha); DEBUG(sb); - return ViveSetAlpha(passthroughID, alpha); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetLayerType")] - private static extern bool ViveSetLayerType(int passthroughID, CompositionLayer.LayerType layerType, uint compositionDepth = 0); - /// - /// Set Passthough Layer Type. - /// - public bool SetLayerType(XrPassthroughHTC passthrough, CompositionLayer.LayerType layerType, uint compositionDepth = 0) - { - if (!m_XrInstanceCreated) - { - ERROR("SetLayerType: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetLayerType() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetAlpha() passthrough: ").Append(passthroughID).Append(", layerType: ").Append(layerType).Append(", compositionDepth: ").Append(compositionDepth); DEBUG(sb); - return ViveSetLayerType(passthroughID, layerType, compositionDepth); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetMesh")] - private static extern bool ViveSetMesh(int passthroughID, uint vertexCount, [In, Out] XrVector3f[] vertexBuffer, uint indexCount, [In, Out] uint[] indexBuffer); - /// - /// Set Passthough Mesh. - /// - public bool SetMesh(XrPassthroughHTC passthrough, uint vertexCount, [In, Out] XrVector3f[] vertexBuffer, uint indexCount, [In, Out] uint[] indexBuffer) - { - if (!m_XrInstanceCreated) - { - ERROR("SetMesh: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetMesh() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetMesh() passthrough: ").Append(passthroughID).Append(", vertexCount: ").Append(vertexCount).Append(", indexCount: ").Append(indexCount); DEBUG(sb); - return ViveSetMesh(passthroughID, vertexCount, vertexBuffer, indexCount, indexBuffer); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetMeshTransform")] - private static extern bool ViveSetMeshTransform(int passthroughID, XrSpace meshSpace, XrPosef meshPose, XrVector3f meshScale); - /// - /// Set Passthough Mesh Transform. - /// - public bool SetMeshTransform(XrPassthroughHTC passthrough, XrSpace meshSpace, XrPosef meshPose, XrVector3f meshScale) - { - if (!m_XrInstanceCreated) - { - ERROR("SetMeshTransform: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetMeshTransform() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetMeshTransform() passthrough: ").Append(passthroughID).Append(", meshSpace: ").Append(meshSpace); DEBUG(sb); - return ViveSetMeshTransform(passthroughID, meshSpace, meshPose, meshScale); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetMeshTransformSpace")] - private static extern bool ViveSetMeshTransformSpace(int passthroughID, XrSpace meshSpace); - /// - /// Set Passthough Mesh Transform Space. - /// - public bool SetMeshTransformSpace(XrPassthroughHTC passthrough, XrSpace meshSpace) - { - if (!m_XrInstanceCreated) - { - ERROR("SetMeshTransformSpace: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetMeshTransformSpace() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetMeshTransformSpace() passthrough: ").Append(passthroughID).Append(", meshSpace: ").Append(meshSpace); DEBUG(sb); - return ViveSetMeshTransformSpace(passthroughID, meshSpace); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetMeshTransformPosition")] - private static extern bool ViveSetMeshTransformPosition(int passthroughID, XrVector3f meshPosition); - /// - /// Set Passthough Mesh Transform Position. - /// - public bool SetMeshTransformPosition(XrPassthroughHTC passthrough, XrVector3f meshPosition) - { - if (!m_XrInstanceCreated) - { - ERROR("SetMeshTransformPosition: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetMeshTransformPosition() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetMeshTransformPosition() passthrough: ").Append(passthroughID); DEBUG(sb); - return ViveSetMeshTransformPosition(passthroughID, meshPosition); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetMeshTransformOrientation")] - private static extern bool ViveSetMeshTransformOrientation(int passthroughID, XrQuaternionf meshOrientation); - /// - /// Set Passthough Mesh Transform orientation. - /// - public bool SetMeshTransformOrientation(XrPassthroughHTC passthrough, XrQuaternionf meshOrientation) - { - if (!m_XrInstanceCreated) - { - ERROR("SetMeshTransformOrientation: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetMeshTransformOrientation() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetMeshTransformOrientation() passthrough: ").Append(passthroughID); DEBUG(sb); - return ViveSetMeshTransformOrientation(passthroughID, meshOrientation); - } - - [DllImport(ExtLib, EntryPoint = "htcpassthrough_SetMeshTransformScale")] - private static extern bool ViveSetMeshTransformScale(int passthroughID, XrVector3f meshScale); - /// - /// Set Passthough Mesh Transform scale. - /// - public bool SetMeshTransformScale(XrPassthroughHTC passthrough, XrVector3f meshScale) - { - if (!m_XrInstanceCreated) - { - ERROR("SetMeshTransformScale: " + kOpenxrExtensionStrings + " is NOT enabled."); - return false; - } - if (passthrough == 0) { ERROR("SetMeshTransformScale() Invalid passthrough."); return false; } - - int passthroughID = (int)(passthrough & 0x00007FFF); - sb.Clear().Append("SetMeshTransformScale() passthrough: ").Append(passthroughID); DEBUG(sb); - return ViveSetMeshTransformScale(passthroughID, meshScale); - } -#endregion - -#region Android Hook - Private - [DllImport(ExtLib, EntryPoint = "htcpassthrough_GetFuncAddrs")] - private static extern XrResult ViveGetFuncAddrs(XrInstance xrInstance, IntPtr xrGetInstanceProcAddrFuncPtr); - private XrResult GetFuncAddrs(XrInstance xrInstance, IntPtr xrGetInstanceProcAddrFuncPtr) - { - if (!m_XrInstanceCreated) - { - ERROR("ViveGetFuncAddrs: " + kOpenxrExtensionStrings + " is NOT enabled."); - return XrResult.XR_ERROR_FEATURE_UNSUPPORTED; - } - - return ViveGetFuncAddrs(xrInstance, xrGetInstanceProcAddrFuncPtr); - } -#endregion -#endif - private List passthroughList = new List(); public List PassthroughList { get { @@ -891,46 +787,27 @@ namespace VIVE.OpenXR.Passthrough if (!m_XrSessionCreated) { - ERROR("CreatePassthroughHTC() XR_ERROR_SESSION_LOST."); + Log.E(TAG, "CreatePassthroughHTC() XR_ERROR_SESSION_LOST."); return XrResult.XR_ERROR_SESSION_LOST; } if (!m_XrInstanceCreated) { - ERROR("CreatePassthroughHTC() XR_ERROR_INSTANCE_LOST."); + Log.E(TAG, "CreatePassthroughHTC() XR_ERROR_INSTANCE_LOST."); return XrResult.XR_ERROR_INSTANCE_LOST; } - sb.Clear().Append("CreatePassthroughHTC() layerType: ").Append(layerType).Append(", compositionDepth: ").Append(compositionDepth); DEBUG(sb); + Log.I(TAG, CSB.Append("CreatePassthroughHTC() layerType: ").Append(layerType).Append(", compositionDepth: ").Append(compositionDepth)); XrResult result = XrResult.XR_ERROR_RUNTIME_FAILURE; -#if UNITY_STANDALONE result = xrCreatePassthroughHTC(m_XrSession, createInfo, out passthrough); - DEBUG("CreatePassthroughHTC() xrCreatePassthroughHTC result: " + result); + Log.I(TAG, "CreatePassthroughHTC() xrCreatePassthroughHTC result: " + result); if (result == XrResult.XR_SUCCESS) { passthroughList.Add(passthrough); if (onDestroy != null) { OnPassthroughSessionDestroyHandlerDictionary.Add(passthrough, onDestroy); } } -#endif -#if UNITY_ANDROID - int passthroughID = 0; - - if (createInfo.form == XrPassthroughFormHTC.XR_PASSTHROUGH_FORM_PLANAR_HTC) - passthroughID = ViveCreatePassthrough(m_XrSession, layerType, PassthroughLayerForm.Planar, compositionDepth); - else // createInfo.form == XrPassthroughFormHTC.XR_PASSTHROUGH_FORM_PROJECTED_HTC - passthroughID = ViveCreatePassthrough(m_XrSession, layerType, PassthroughLayerForm.Projected, compositionDepth); - - sb.Clear().Append("CreatePassthroughHTC() CreatePassthrough passthroughID: ").Append(passthroughID); DEBUG(sb); - if (passthroughID != 0) - { - passthrough = (UInt64)(passthroughID & 0x7FFFFFFF); - passthroughList.Add(passthrough); - if (onDestroy != null) { OnPassthroughSessionDestroyHandlerDictionary.Add(passthrough, onDestroy); } - result = XrResult.XR_SUCCESS; - } -#endif return result; } public XrResult CreatePassthroughHTC(XrPassthroughCreateInfoHTC createInfo, out XrPassthroughHTC passthrough, CompositionLayer.LayerType layerType, OnPassthroughSessionDestroyDelegate onDestroy = null) @@ -946,37 +823,24 @@ namespace VIVE.OpenXR.Passthrough { if (!passthroughList.Contains(passthrough)) { - ERROR("DestroyPassthroughHTC() Invalid passthrough: " + passthrough); + Log.E(TAG, "DestroyPassthroughHTC() Invalid passthrough: " + passthrough); return XrResult.XR_ERROR_VALIDATION_FAILURE; } - sb.Clear().Append("DestroyPassthroughHTC() passthrough: ").Append(passthrough); DEBUG(sb); + Log.I(TAG, CSB.Append("DestroyPassthroughHTC() passthrough: ").Append(passthrough)); XrResult result = XrResult.XR_ERROR_RUNTIME_FAILURE; int passthroughID = (int)(passthrough & 0x00007FFF); -#if UNITY_STANDALONE result = xrDestroyPassthroughHTC(passthrough); - sb.Clear().Append("DestroyPassthroughHTC() ").Append(passthrough).Append(", result: ").Append(result); DEBUG(sb); + Log.I(TAG, CSB.Append("DestroyPassthroughHTC() ").Append(passthrough).Append(", result: ").Append(result)); if (result == XrResult.XR_SUCCESS) { passthroughList.Remove(passthrough); if (OnPassthroughSessionDestroyHandlerDictionary.ContainsKey(passthrough)) OnPassthroughSessionDestroyHandlerDictionary.Remove(passthrough); } -#endif -#if UNITY_ANDROID - bool ret = ViveDestroyPassthrough(passthroughID); - sb.Clear().Append("DestroyPassthroughHTC() ").Append(passthroughID).Append(", ret: ").Append(ret); DEBUG(sb); - if (ret) - { - passthroughList.Remove(passthrough); - if (OnPassthroughSessionDestroyHandlerDictionary.ContainsKey(passthrough)) - OnPassthroughSessionDestroyHandlerDictionary.Remove(passthrough); - result = XrResult.XR_SUCCESS; - } -#endif return result; } @@ -987,7 +851,7 @@ namespace VIVE.OpenXR.Passthrough public XrSpace GetTrackingSpace() { XrSpace space = GetCurrentAppSpace(); - sb.Clear().Append("GetTrackingSpace() ").Append(space); DEBUG(sb); + Log.I(TAG, CSB.Append("GetTrackingSpace() ").Append(space)); return space; } @@ -1006,7 +870,7 @@ namespace VIVE.OpenXR.Passthrough case ProjectedPassthroughSpaceType.Worldlock: default: XRInputSubsystem subsystem = null; - SubsystemManager.GetInstances(inputSubsystems); + SubsystemManager.GetSubsystems(inputSubsystems); if (inputSubsystems.Count > 0) { subsystem = inputSubsystems[0]; @@ -1041,7 +905,7 @@ namespace VIVE.OpenXR.Passthrough { if (!m_XrSessionCreated) { - ERROR("EnumeratePassthroughImageRatesHTC() XR_ERROR_SESSION_LOST."); + Log.E(TAG, "EnumeratePassthroughImageRatesHTC() XR_ERROR_SESSION_LOST."); return XrResult.XR_ERROR_SESSION_LOST; } return xrEnumeratePassthroughImageRatesHTC(m_XrSession, imageRateCapacityInput, ref imageRateCountOutput, imageRates); @@ -1051,7 +915,7 @@ namespace VIVE.OpenXR.Passthrough { if (!m_XrSessionCreated) { - ERROR("GetPassthroughConfigurationHTC() XR_ERROR_SESSION_LOST."); + Log.E(TAG, "GetPassthroughConfigurationHTC() XR_ERROR_SESSION_LOST."); return XrResult.XR_ERROR_SESSION_LOST; } return xrGetPassthroughConfigurationHTC(m_XrSession, config); @@ -1061,7 +925,7 @@ namespace VIVE.OpenXR.Passthrough { if (!m_XrSessionCreated) { - ERROR("SetPassthroughConfigurationHTC() XR_ERROR_SESSION_LOST."); + Log.E(TAG, "SetPassthroughConfigurationHTC() XR_ERROR_SESSION_LOST."); return XrResult.XR_ERROR_SESSION_LOST; } return xrSetPassthroughConfigurationHTC(m_XrSession, config); @@ -1077,7 +941,7 @@ namespace VIVE.OpenXR.Passthrough m_SupportsImageQuality = false; if (!m_XrSessionCreated) { - ERROR("CheckUserPresenceSupport() session is not created."); + Log.E(TAG, "CheckUserPresenceSupport() session is not created."); return; } @@ -1095,7 +959,7 @@ namespace VIVE.OpenXR.Passthrough IntPtr passthroughConfigurationPtr = new IntPtr(offset); Marshal.StructureToPtr(passthroughConfigurationProperties, passthroughConfigurationPtr, false); - if (GetSystemProperties(ref systemProperties) == XrResult.XR_SUCCESS) + if (CommonWrapper.Instance.GetSystemProperties(m_XrInstance, m_XrSystemId, ref systemProperties) == XrResult.XR_SUCCESS) { if (IntPtr.Size == 4) offset = systemProperties.next.ToInt32(); @@ -1105,14 +969,14 @@ namespace VIVE.OpenXR.Passthrough passthroughConfigurationPtr = new IntPtr(offset); passthroughConfigurationProperties = (XrSystemPassthroughConfigurationPropertiesHTC)Marshal.PtrToStructure(passthroughConfigurationPtr, typeof(XrSystemPassthroughConfigurationPropertiesHTC)); - sb.Clear().Append("CheckConfigurationSupport() supportsImageQuality: ").Append((UInt32)passthroughConfigurationProperties.supportsImageQuality); DEBUG(sb); - sb.Clear().Append("CheckConfigurationSupport() supportsImageRate: ").Append((UInt32)passthroughConfigurationProperties.supportsImageRate); DEBUG(sb); + Log.I(TAG, CSB.Append("CheckConfigurationSupport() supportsImageQuality: ").Append((UInt32)passthroughConfigurationProperties.supportsImageQuality)); + Log.I(TAG, CSB.Append("CheckConfigurationSupport() supportsImageRate: ").Append((UInt32)passthroughConfigurationProperties.supportsImageRate)); m_SupportsImageQuality = passthroughConfigurationProperties.supportsImageQuality; m_SupportsImageRate = passthroughConfigurationProperties.supportsImageRate; } else { - ERROR("CheckSupport() GetSystemProperties failed."); + Log.E(TAG, "CheckSupport() GetSystemProperties failed."); } Marshal.FreeHGlobal(systemProperties.next); diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthroughHelper.cs b/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthroughHelper.cs index 9cd4051..ace11b3 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthroughHelper.cs +++ b/com.htc.upm.vive.openxr/Runtime/Features/Passthrough/Scripts/VivePassthroughHelper.cs @@ -172,10 +172,10 @@ namespace VIVE.OpenXR.Passthrough /// The alpha value of the passthrough in the range [0, 1]. /// public float alpha; - public XrPassthroughColorHTC(XrStructureType in_type, IntPtr in_next, float in_alpha) + public XrPassthroughColorHTC(float in_alpha) { - type = in_type; - next = in_next; + type = XrStructureType.XR_TYPE_PASSTHROUGH_COLOR_HTC; + next = IntPtr.Zero; alpha = in_alpha; } }; @@ -201,7 +201,7 @@ namespace VIVE.OpenXR.Passthrough /// /// An array of XrVector3f. The size of the array must be equal to vertexCount. /// - public XrVector3f[] vertices; + public IntPtr vertices; // XrVector3f /// /// The count of indices array in the mesh. /// @@ -209,7 +209,7 @@ namespace VIVE.OpenXR.Passthrough /// /// An array of triangle indices. The size of the array must be equal to indexCount. /// - public UInt32[] indices; + public IntPtr indices; // UInt32[] /// /// The XrSpace that defines the projected passthrough's base space for transformations. /// @@ -226,21 +226,6 @@ namespace VIVE.OpenXR.Passthrough /// The XrVector3f that defines the scale of the mesh /// public XrVector3f scale; - public XrPassthroughMeshTransformInfoHTC(XrStructureType in_type, IntPtr in_next, UInt32 in_vertexCount, - XrVector3f[] in_vertices, UInt32 in_indexCount, UInt32[] in_indices, XrSpace in_baseSpace, XrTime in_time, - XrPosef in_pose, XrVector3f in_scale) - { - type = in_type; - next = in_next; - vertexCount = in_vertexCount; - vertices = in_vertices; - indexCount = in_indexCount; - indices = in_indices; - baseSpace = in_baseSpace; - time = in_time; - pose = in_pose; - scale = in_scale; - } }; /// @@ -273,11 +258,12 @@ namespace VIVE.OpenXR.Passthrough /// The XrPassthroughColorHTC describing the color information with the alpha value of the passthrough layer. /// public XrPassthroughColorHTC color; - public XrCompositionLayerPassthroughHTC(XrStructureType in_type, IntPtr in_next, XrCompositionLayerFlags in_layerFlags, + + public XrCompositionLayerPassthroughHTC(XrCompositionLayerFlags in_layerFlags, XrSpace in_space, XrPassthroughHTC in_passthrough, XrPassthroughColorHTC in_color) { - type = in_type; - next = in_next; + type = XrStructureType.XR_TYPE_COMPOSITION_LAYER_PASSTHROUGH_HTC; + next = IntPtr.Zero; layerFlags = in_layerFlags; space = in_space; passthrough = in_passthrough; diff --git a/com.htc.upm.vive.openxr/Runtime/Features/Tracker/ViveTracker/HTCViveTrackerProfile.cs b/com.htc.upm.vive.openxr/Runtime/Features/Tracker/ViveTracker/HTCViveTrackerProfile.cs index 241eeb2..b8d6a39 100644 --- a/com.htc.upm.vive.openxr/Runtime/Features/Tracker/ViveTracker/HTCViveTrackerProfile.cs +++ b/com.htc.upm.vive.openxr/Runtime/Features/Tracker/ViveTracker/HTCViveTrackerProfile.cs @@ -26,7 +26,7 @@ namespace UnityEngine.XR.OpenXR.Features.Interactions /// #if UNITY_EDITOR [UnityEditor.XR.OpenXR.Features.OpenXRFeature( - UiName = "HTC Vive Tracker Profile", + UiName = "HTC VIVE Tracker Profile", BuildTargetGroups = new[] { BuildTargetGroup.Standalone, BuildTargetGroup.WSA }, Company = "MASSIVE", Desc = "Allows for mapping input to the HTC Vive Tracker interaction profile.", diff --git a/com.htc.upm.vive.openxr/Runtime/Models/Hand/HandModelActions.cs b/com.htc.upm.vive.openxr/Runtime/Models/Hand/HandModelActions.cs index 09be440..abb2943 100644 --- a/com.htc.upm.vive.openxr/Runtime/Models/Hand/HandModelActions.cs +++ b/com.htc.upm.vive.openxr/Runtime/Models/Hand/HandModelActions.cs @@ -3,6 +3,7 @@ using System; using System.Text; using UnityEngine; +using UnityEngine.Profiling; using VIVE.OpenXR.Hand; namespace VIVE.OpenXR.Models @@ -69,16 +70,43 @@ namespace VIVE.OpenXR.Models skinMeshRenderer = GetComponentInChildren(); } + private void OnEnable() + { + Application.onBeforeRender += BeforeRenderUpdate; + } + + private void OnDisable() + { + Application.onBeforeRender -= BeforeRenderUpdate; + } + private void Update() { - if (skinMeshRenderer == null) { return; } + UpdateHand(); + } + private void BeforeRenderUpdate() + { + if (!skinMeshRenderer.enabled) { return; } + UpdateHand(); + } + + private void UpdateHand() + { + Profiler.BeginSample("HandModelActions"); + if (skinMeshRenderer == null) { Profiler.EndSample(); return; } + + Profiler.BeginSample("GetJointLocations"); if (!XR_EXT_hand_tracking.Interop.GetJointLocations(m_IsLeft, out XrHandJointLocationEXT[] handJointLocation)) { skinMeshRenderer.enabled = false; + Profiler.EndSample(); + Profiler.EndSample(); return; } + Profiler.EndSample(); + Profiler.BeginSample("UpdateJointPose"); skinMeshRenderer.enabled = !ForceHidden; UpdateJointPosition(handJointLocation[(int)XrHandJointEXT.XR_HAND_JOINT_WRIST_EXT], ref m_Wrist); @@ -114,6 +142,8 @@ namespace VIVE.OpenXR.Models UpdateJointRotation(handJointLocation[(int)XrHandJointEXT.XR_HAND_JOINT_LITTLE_INTERMEDIATE_EXT], ref m_Little_Intermediate); UpdateJointRotation(handJointLocation[(int)XrHandJointEXT.XR_HAND_JOINT_LITTLE_DISTAL_EXT], ref m_Little_Distal); UpdateJointRotation(handJointLocation[(int)XrHandJointEXT.XR_HAND_JOINT_LITTLE_TIP_EXT], ref m_Little_Tip); + Profiler.EndSample(); + Profiler.EndSample(); } private void UpdateJointPosition(XrHandJointLocationEXT pose, ref GameObject joint) diff --git a/com.htc.upm.vive.openxr/Runtime/OpenXRUtils.cs b/com.htc.upm.vive.openxr/Runtime/OpenXRUtils.cs index 466ab51..5a03222 100644 --- a/com.htc.upm.vive.openxr/Runtime/OpenXRUtils.cs +++ b/com.htc.upm.vive.openxr/Runtime/OpenXRUtils.cs @@ -127,6 +127,9 @@ namespace VIVE.OpenXR XR_TYPE_PASSTHROUGH_CREATE_INFO_HTC = 1000317001, XR_TYPE_PASSTHROUGH_COLOR_HTC = 1000317002, XR_TYPE_PASSTHROUGH_MESH_TRANSFORM_INFO_HTC = 1000317003, + XR_TYPE_PASSTHROUGH_HAND_TRACKER_FRAME_STATE_HTC = 1000317100, + XR_TYPE_PASSTHROUGH_VIVE_CONTROLLER_FRAME_STATE_HTC = 1000317101, + XR_TYPE_PASSTHROUGH_VIVE_TRACKER_FRAME_STATE_HTC = 1000317102, XR_TYPE_COMPOSITION_LAYER_PASSTHROUGH_HTC = 1000317004, XR_TYPE_SESSION_CREATE_INFO_OVERLAY_EXTX = 1000033000, XR_TYPE_EVENT_DATA_MAIN_SESSION_VISIBILITY_CHANGED_EXTX = 1000033003, @@ -544,6 +547,24 @@ namespace VIVE.OpenXR } } + public struct XrBaseStructure + { + public XrStructureType type; + public IntPtr next; + } + + public struct XrBaseOutStructure + { + public XrStructureType type; + public IntPtr next; + } + + public struct XrBaseInStructure + { + public XrStructureType type; + public IntPtr next; + } + #region 2.18. Coordinate System /// /// A two-dimensional vector is defined by the XrVector2f structure. @@ -3243,7 +3264,7 @@ namespace VIVE.OpenXR { if (funcPtr != IntPtr.Zero) { - Debug.Log("Get function pointer of " + name); + Log.D("Get function pointer of " + name); func = Marshal.GetDelegateForFunctionPointer(funcPtr); return true; } diff --git a/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking.cs b/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking.cs index a3d5cef..7946898 100644 --- a/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking.cs +++ b/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking.cs @@ -3,6 +3,7 @@ using System; using System.Collections.Generic; using System.Runtime.InteropServices; +using UnityEngine.Profiling; //using VIVE.OpenXR.Utils; using VIVE.OpenXR.Hand; @@ -59,20 +60,7 @@ namespace VIVE.OpenXR if (m_JointLocations.isActive == 1) { - long offset = 0; - XrHandJointLocationEXT joint_location_ext_type = default(XrHandJointLocationEXT); - - if (IntPtr.Size == 4) - offset = m_JointLocations.jointLocations.ToInt32(); - else - offset = m_JointLocations.jointLocations.ToInt64(); - - for (int i = 0; i < m_JointLocations.jointCount; i++) - { - IntPtr joint_location_ext_ptr = new IntPtr(offset); - s_JointLocation[isLeft][i] = (XrHandJointLocationEXT)Marshal.PtrToStructure(joint_location_ext_ptr, typeof(XrHandJointLocationEXT)); - offset += Marshal.SizeOf(joint_location_ext_type); - } + MemoryTools.CopyFromRawMemory(handJointLocation, m_JointLocations.jointLocations, (int)m_JointLocations.jointCount); handJointLocation = s_JointLocation[isLeft]; return true; diff --git a/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking_impls.cs b/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking_impls.cs index 7121cee..7163847 100644 --- a/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking_impls.cs +++ b/com.htc.upm.vive.openxr/Runtime/Profiles/XR_EXT_hand_tracking_impls.cs @@ -86,13 +86,8 @@ namespace VIVE.OpenXR { if (ASSERT_FEATURE()) { - if (feature.GetJointLocations(isLeft, out XrHandJointLocationEXT[] array, out timestamp)) + if (feature.GetJointLocations(isLeft, out handJointLocation, out timestamp)) { - if (l_HandJointLocation == null) { l_HandJointLocation = new List(); } - l_HandJointLocation.Clear(); - for (int i = 0; i < array.Length; i++) { l_HandJointLocation.Add(array[i]); } - - handJointLocation = l_HandJointLocation.ToArray(); return true; } } diff --git a/com.htc.upm.vive.openxr/Runtime/Profiles/XR_HTC_passthrough_impls.cs b/com.htc.upm.vive.openxr/Runtime/Profiles/XR_HTC_passthrough_impls.cs index 81c8e86..3c7b2aa 100644 --- a/com.htc.upm.vive.openxr/Runtime/Profiles/XR_HTC_passthrough_impls.cs +++ b/com.htc.upm.vive.openxr/Runtime/Profiles/XR_HTC_passthrough_impls.cs @@ -43,27 +43,6 @@ namespace VIVE.OpenXR return result; } - public override void GetOriginEndFrameLayerList(out List layers) - { - ASSERT_FEATURE(); - layers = new List(); -#if UNITY_STANDALONE - if (feature) - feature.GetOriginEndFrameLayerList(out layers); - - else - layers = new List(); -#endif - } - public override void SubmitLayers(List layers) - { - ASSERT_FEATURE(); -#if UNITY_STANDALONE - if (feature) - feature.SubmitLayers(layers); -#endif - } - public override XrSpace GetTrackingSpace() { ASSERT_FEATURE(); @@ -77,10 +56,8 @@ namespace VIVE.OpenXR public override XrFrameState GetFrameState() { ASSERT_FEATURE(); -#if UNITY_STANDALONE if (feature) return feature.GetFrameState(); -#endif return new XrFrameState(); } } diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/Common/VIVEInput.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/Common/VIVEInput.cs index d1985ca..8b32112 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/Common/VIVEInput.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/Common/VIVEInput.cs @@ -2,7 +2,6 @@ using System; using System.Collections.Generic; -using System.Linq; using UnityEngine; using UnityEngine.InputSystem; using UnityEngine.XR.OpenXR; @@ -107,6 +106,12 @@ namespace VIVE.OpenXR.Toolkits.Common public static class VIVEInput { + private const string kFloatType = "float"; + private const string kVector2Type = "Vector2"; + private const string kVector3Type = "Vector3"; + private const string kQuaternionType = "Quaternion"; + private const string kPoseType = "Pose"; + private struct InputActionMapping { public DeviceCategory device; @@ -115,15 +120,18 @@ namespace VIVE.OpenXR.Toolkits.Common public HandEvent handEvent; public InputAction inputAction { get; private set; } - public InputActionMapping(string bindingPath, DeviceCategory device, - PoseState poseState = PoseState.None, ButtonEvent buttonEvent = ButtonEvent.None, HandEvent handEvent = HandEvent.None) + public InputActionMapping(string in_BindingPath, DeviceCategory in_Device, + PoseState in_PoseState = PoseState.None, + ButtonEvent in_ButtonEvent = ButtonEvent.None, + HandEvent in_HandEvent = HandEvent.None, + string in_Type = "") { - inputAction = new InputAction(binding: bindingPath); + inputAction = new InputAction(binding: in_BindingPath, expectedControlType: in_Type); inputAction.Enable(); - this.device = device; - this.poseState = poseState; - this.buttonEvent = buttonEvent; - this.handEvent = handEvent; + this.device = in_Device; + this.poseState = in_PoseState; + this.buttonEvent = in_ButtonEvent; + this.handEvent = in_HandEvent; } public static InputActionMapping Identify => new InputActionMapping("", DeviceCategory.None); @@ -150,11 +158,11 @@ namespace VIVE.OpenXR.Toolkits.Common public Vector3 position { get; private set; } public Quaternion rotation { get; private set; } - public JointData(bool isValid, Vector3 position, Quaternion rotation) + public JointData(bool in_IsValid, Vector3 in_Position, Quaternion in_Rotation) { - this.isValid = isValid; - this.position = position; - this.rotation = rotation; + this.isValid = in_IsValid; + this.position = in_Position; + this.rotation = in_Rotation; } public static JointData Identify => new JointData(false, Vector3.zero, Quaternion.identity); @@ -164,18 +172,44 @@ namespace VIVE.OpenXR.Toolkits.Common public bool isTracked { get; private set; } public int updateTime { get; private set; } public JointData[] joints { get; private set; } + private JointData[] jointBuffer; - public HandData(JointData[] joints) + public HandData(JointData[] in_Joints) { - this.joints = joints; - isTracked = !this.joints.Any(x => x.isValid == false); + jointBuffer = new JointData[(int)HandJointType.Count]; + for (int i = 0; i < in_Joints.Length; i++) + { + jointBuffer[i] = in_Joints[i]; + } + this.joints = jointBuffer; + isTracked = true; + for (int i = 0; i < this.joints.Length; i++) + { + if (!this.joints[i].isValid) + { + isTracked = false; + break; + } + } updateTime = Time.frameCount; } - public void Update(JointData[] joints) + public void Update(JointData[] in_Joints) { - this.joints = joints; - isTracked = !this.joints.Any(x => x.isValid == false); + for (int i = 0; i < in_Joints.Length; i++) + { + jointBuffer[i] = in_Joints[i]; + } + this.joints = jointBuffer; + isTracked = true; + for (int i = 0; i < this.joints.Length; i++) + { + if (!this.joints[i].isValid) + { + isTracked = false; + break; + } + } updateTime = Time.frameCount; } @@ -193,12 +227,16 @@ namespace VIVE.OpenXR.Toolkits.Common } } - private static bool isInitInputActions = false; - private static List inputActions = new List(); - private static HandData leftHand = HandData.Identify; - private static HandData rightHand = HandData.Identify; + private static bool m_IsInitInputActions = false; + private static bool m_IsSupportViveHand = false; + private static bool m_IsSupportXrHand = false; + private static List s_InputActions = new List(); + private static HandData m_LeftHand = HandData.Identify; + private static HandData m_RightHand = HandData.Identify; + private static JointData[] m_JointBuffer = new JointData[(int)HandJointType.Count]; #if UNITY_XR_HANDS - private static XRHandSubsystem handSubsystem = null; + private static XRHandSubsystem m_HandSubsystem = null; + private static List m_HandSubsystems = new List(); #endif #region Public Interface @@ -221,18 +259,16 @@ namespace VIVE.OpenXR.Toolkits.Common } else { - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == device && x.poseState == poseState); - if (inputActionMapping == null) { return false; } - - try + if (GetInputActionMapping(device, poseState, out InputActionMapping inputActionMapping)) { - eventResult = inputActionMapping.inputAction.ReadValue() > 0; - return true; - } - catch (InvalidOperationException) - { - return false; + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kFloatType) + { + eventResult = inputActionMapping.inputAction.ReadValue() > 0; + return true; + } } + return false; } } @@ -255,18 +291,16 @@ namespace VIVE.OpenXR.Toolkits.Common } else { - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == device && x.poseState == poseState); - if (inputActionMapping == null) { return false; } - - try + if (GetInputActionMapping(device, poseState, out InputActionMapping inputActionMapping)) { - eventResult = inputActionMapping.inputAction.ReadValue(); - return true; - } - catch (InvalidOperationException) - { - return false; + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kVector3Type) + { + eventResult = inputActionMapping.inputAction.ReadValue(); + return true; + } } + return false; } } @@ -289,18 +323,16 @@ namespace VIVE.OpenXR.Toolkits.Common } else { - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == device && x.poseState == poseState); - if (inputActionMapping == null) { return false; } - - try + if (GetInputActionMapping(device, poseState, out InputActionMapping inputActionMapping)) { - eventResult = inputActionMapping.inputAction.ReadValue(); - return true; - } - catch (InvalidOperationException) - { - return false; + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kQuaternionType) + { + eventResult = inputActionMapping.inputAction.ReadValue(); + return true; + } } + return false; } } @@ -315,11 +347,14 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = false; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetController(handedness) && x.buttonEvent == buttonEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetController(handedness), buttonEvent, out InputActionMapping inputActionMapping)) { - eventResult = inputActionMapping.inputAction.WasPressedThisFrame(); - return true; + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kFloatType) + { + eventResult = inputActionMapping.inputAction.WasPressedThisFrame(); + return true; + } } return false; } @@ -335,11 +370,14 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = false; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetController(handedness) && x.buttonEvent == buttonEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetController(handedness), buttonEvent, out InputActionMapping inputActionMapping)) { - eventResult = inputActionMapping.inputAction.WasReleasedThisFrame(); - return true; + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kFloatType) + { + eventResult = inputActionMapping.inputAction.WasReleasedThisFrame(); + return true; + } } return false; } @@ -355,21 +393,16 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = false; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetController(handedness) && x.buttonEvent == buttonEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetController(handedness), buttonEvent, out InputActionMapping inputActionMapping)) { - try + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kFloatType) { eventResult = inputActionMapping.inputAction.ReadValue() == 1; return true; } - catch (InvalidOperationException) - { - return false; - } } return false; - } /// @@ -383,21 +416,16 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = 0f; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetController(handedness) && x.buttonEvent == buttonEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetController(handedness), buttonEvent, out InputActionMapping inputActionMapping)) { - try + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kFloatType) { eventResult = inputActionMapping.inputAction.ReadValue(); return true; } - catch (InvalidOperationException) - { - return false; - } } return false; - } /// @@ -411,18 +439,14 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = Vector2.zero; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetController(handedness) && x.buttonEvent == buttonEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetController(handedness), buttonEvent, out InputActionMapping inputActionMapping)) { - try + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kVector2Type) { eventResult = inputActionMapping.inputAction.ReadValue(); return true; } - catch (InvalidOperationException) - { - return false; - } } return false; } @@ -438,18 +462,14 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = 0; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetHand(handedness) && x.handEvent == handEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetHand(handedness), handEvent, out InputActionMapping inputActionMapping)) { - try + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kFloatType) { eventResult = inputActionMapping.inputAction.ReadValue(); return true; } - catch (InvalidOperationException) - { - return false; - } } return false; } @@ -465,19 +485,19 @@ namespace VIVE.OpenXR.Toolkits.Common { CheckInitialize(); eventResult = Pose.identity; - InputActionMapping inputActionMapping = inputActions.FirstOrDefault(x => x.device == GetHand(handedness) && x.handEvent == handEvent); - if (inputActionMapping != null) + if (GetInputActionMapping(GetHand(handedness), handEvent, out InputActionMapping inputActionMapping)) { - try + var inputAction = inputActionMapping.inputAction; + if (inputAction != null && inputAction.enabled && inputAction.expectedControlType == kPoseType) { +# if USE_INPUT_SYSTEM_POSE_CONTROL + UnityEngine.InputSystem.XR.PoseState pose = inputActionMapping.inputAction.ReadValue(); +#else UnityEngine.XR.OpenXR.Input.Pose pose = inputActionMapping.inputAction.ReadValue(); +#endif eventResult = new Pose(pose.position, pose.rotation); return true; } - catch (InvalidOperationException) - { - return false; - } } return false; } @@ -495,13 +515,13 @@ namespace VIVE.OpenXR.Toolkits.Common jointPose = Pose.identity; if (handedness == Handedness.Left) { - jointPose = new Pose(leftHand.joints[(int)joint].position, leftHand.joints[(int)joint].rotation); - return leftHand.joints[(int)joint].isValid; + jointPose = new Pose(m_LeftHand.joints[(int)joint].position, m_LeftHand.joints[(int)joint].rotation); + return m_LeftHand.joints[(int)joint].isValid; } else { - jointPose = new Pose(rightHand.joints[(int)joint].position, rightHand.joints[(int)joint].rotation); - return rightHand.joints[(int)joint].isValid; + jointPose = new Pose(m_RightHand.joints[(int)joint].position, m_RightHand.joints[(int)joint].rotation); + return m_RightHand.joints[(int)joint].isValid; } } @@ -513,24 +533,27 @@ namespace VIVE.OpenXR.Toolkits.Common public static bool IsHandTracked(Handedness handedness) { CheckHandUpdated(); - return handedness == Handedness.Left ? leftHand.isTracked : rightHand.isTracked; + return handedness == Handedness.Left ? m_LeftHand.isTracked : m_RightHand.isTracked; } public static bool IsHandValidate() { - ViveHandTracking viveHand = OpenXRSettings.Instance.GetFeature(); - if (viveHand) + if (!m_IsInitInputActions) { - return true; - } + ViveHandTracking viveHand = OpenXRSettings.Instance.GetFeature(); + if (viveHand) + { + m_IsSupportViveHand = true; + } #if UNITY_XR_HANDS - HandTracking xrHand = OpenXRSettings.Instance.GetFeature(); - if (xrHand) - { - return true; - } + HandTracking xrHand = OpenXRSettings.Instance.GetFeature(); + if (xrHand) + { + m_IsSupportXrHand = true; + } #endif - return false; + } + return m_IsSupportViveHand || m_IsSupportXrHand; } #endregion @@ -538,192 +561,233 @@ namespace VIVE.OpenXR.Toolkits.Common [RuntimeInitializeOnLoadMethod] private static bool CheckInitialize() { - if (!isInitInputActions) + if (!m_IsInitInputActions) { Initialized(); - isInitInputActions = true; + IsHandValidate(); + m_IsInitInputActions = true; } - return isInitInputActions; + return m_IsInitInputActions; } private static void Initialized() { #region Head - inputActions.Add(new InputActionMapping("/isTracked", DeviceCategory.HMD, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("/centerEyePosition", DeviceCategory.HMD, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("/centerEyeRotation", DeviceCategory.HMD, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("/centerEyeVelocity", DeviceCategory.HMD, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("/centerEyeAngularVelocity", DeviceCategory.HMD, poseState: PoseState.AngularVelocity)); - inputActions.Add(new InputActionMapping("/centerEyeAcceleration", DeviceCategory.HMD, poseState: PoseState.Acceleration)); - inputActions.Add(new InputActionMapping("/centerEyeAngularAcceleration", DeviceCategory.HMD, poseState: PoseState.AngularAcceleration)); + s_InputActions.Add(new InputActionMapping("/isTracked", DeviceCategory.HMD, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("/centerEyePosition", DeviceCategory.HMD, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("/centerEyeRotation", DeviceCategory.HMD, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("/centerEyeVelocity", DeviceCategory.HMD, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("/centerEyeAngularVelocity", DeviceCategory.HMD, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("/centerEyeAcceleration", DeviceCategory.HMD, in_PoseState: PoseState.Acceleration, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("/centerEyeAngularAcceleration", DeviceCategory.HMD, in_PoseState: PoseState.AngularAcceleration, in_Type: kVector3Type)); #endregion #region Eye - inputActions.Add(new InputActionMapping("/pose/isTracked", DeviceCategory.CenterEye, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("/pose/position", DeviceCategory.CenterEye, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("/pose/rotation", DeviceCategory.CenterEye, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("/pose/velocity", DeviceCategory.CenterEye, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("/pose/angularVelocity", DeviceCategory.CenterEye, poseState: PoseState.AngularVelocity)); + s_InputActions.Add(new InputActionMapping("/pose/isTracked", DeviceCategory.CenterEye, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("/pose/position", DeviceCategory.CenterEye, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("/pose/rotation", DeviceCategory.CenterEye, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("/pose/velocity", DeviceCategory.CenterEye, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("/pose/angularVelocity", DeviceCategory.CenterEye, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); #endregion #region Controller - inputActions.Add(new InputActionMapping("{LeftHand}/isTracked", DeviceCategory.LeftController, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{LeftHand}/pointerPosition", DeviceCategory.LeftController, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{LeftHand}/pointerRotation", DeviceCategory.LeftController, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{LeftHand}/deviceVelocity", DeviceCategory.LeftController, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{LeftHand}/deviceAngularVelocity", DeviceCategory.LeftController, poseState: PoseState.AngularVelocity)); - inputActions.Add(new InputActionMapping("{LeftHand}/deviceAcceleration", DeviceCategory.LeftController, poseState: PoseState.Acceleration)); - inputActions.Add(new InputActionMapping("{LeftHand}/deviceAngularAcceleration", DeviceCategory.LeftController, poseState: PoseState.AngularAcceleration)); - inputActions.Add(new InputActionMapping("{LeftHand}/{grip}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.GripValue)); - inputActions.Add(new InputActionMapping("{LeftHand}/{gripButton}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.GripPress)); - inputActions.Add(new InputActionMapping("{LeftHand}/{trigger}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.TriggerValue)); - inputActions.Add(new InputActionMapping("{LeftHand}/triggerTouched", DeviceCategory.LeftController, buttonEvent: ButtonEvent.TriggerTouch)); - inputActions.Add(new InputActionMapping("{LeftHand}/{triggerButton}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.TriggerPress)); - inputActions.Add(new InputActionMapping("{LeftHand}/{primary2DAxis}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Primary2DAxisValue)); - inputActions.Add(new InputActionMapping("{LeftHand}/{primary2DAxisTouch}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Primary2DAxisTouch)); - inputActions.Add(new InputActionMapping("{LeftHand}/{primary2DAxisClick}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Primary2DAxisPress)); - inputActions.Add(new InputActionMapping("{LeftHand}/{secondary2DAxis}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Secondary2DAxisValue)); - inputActions.Add(new InputActionMapping("{LeftHand}/{secondary2DAxisTouch}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Secondary2DAxisTouch)); - inputActions.Add(new InputActionMapping("{LeftHand}/{secondary2DAxisClick}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Secondary2DAxisPress)); - inputActions.Add(new InputActionMapping("{LeftHand}/{primaryButton}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.PrimaryButton)); - inputActions.Add(new InputActionMapping("{LeftHand}/{secondaryButton}", DeviceCategory.LeftController, buttonEvent: ButtonEvent.SecondaryButton)); - inputActions.Add(new InputActionMapping("{LeftHand}/parkingTouched", DeviceCategory.LeftController, buttonEvent: ButtonEvent.ParkingTouch)); - inputActions.Add(new InputActionMapping("{LeftHand}/menu", DeviceCategory.LeftController, buttonEvent: ButtonEvent.Menu)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/isTracked", DeviceCategory.LeftController, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/pointerPosition", DeviceCategory.LeftController, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/pointerRotation", DeviceCategory.LeftController, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/deviceVelocity", DeviceCategory.LeftController, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/deviceAngularVelocity", DeviceCategory.LeftController, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/deviceAcceleration", DeviceCategory.LeftController, in_PoseState: PoseState.Acceleration, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/deviceAngularAcceleration", DeviceCategory.LeftController, in_PoseState: PoseState.AngularAcceleration, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{grip}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.GripValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{gripButton}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.GripPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{trigger}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.TriggerValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/triggerTouched", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.TriggerTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{triggerButton}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.TriggerPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{primary2DAxis}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Primary2DAxisValue, in_Type: kVector2Type)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{primary2DAxisTouch}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Primary2DAxisTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{primary2DAxisClick}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Primary2DAxisPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{secondary2DAxis}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Secondary2DAxisValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{secondary2DAxisTouch}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Secondary2DAxisTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{secondary2DAxisClick}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Secondary2DAxisPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{primaryButton}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.PrimaryButton, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/{secondaryButton}", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.SecondaryButton, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/parkingTouched", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.ParkingTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/menu", DeviceCategory.LeftController, in_ButtonEvent: ButtonEvent.Menu, in_Type: kFloatType)); - inputActions.Add(new InputActionMapping("{RightHand}/isTracked", DeviceCategory.RightController, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{RightHand}/pointerPosition", DeviceCategory.RightController, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{RightHand}/pointerRotation", DeviceCategory.RightController, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{RightHand}/deviceVelocity", DeviceCategory.RightController, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{RightHand}/deviceAngularVelocity", DeviceCategory.RightController, poseState: PoseState.AngularVelocity)); - inputActions.Add(new InputActionMapping("{RightHand}/deviceAcceleration", DeviceCategory.RightController, poseState: PoseState.Acceleration)); - inputActions.Add(new InputActionMapping("{RightHand}/deviceAngularAcceleration", DeviceCategory.RightController, poseState: PoseState.AngularAcceleration)); - inputActions.Add(new InputActionMapping("{RightHand}/{grip}", DeviceCategory.RightController, buttonEvent: ButtonEvent.GripValue)); - inputActions.Add(new InputActionMapping("{RightHand}/{gripButton}", DeviceCategory.RightController, buttonEvent: ButtonEvent.GripPress)); - inputActions.Add(new InputActionMapping("{RightHand}/{trigger}", DeviceCategory.RightController, buttonEvent: ButtonEvent.TriggerValue)); - inputActions.Add(new InputActionMapping("{RightHand}/triggerTouched", DeviceCategory.RightController, buttonEvent: ButtonEvent.TriggerTouch)); - inputActions.Add(new InputActionMapping("{RightHand}/{triggerButton}", DeviceCategory.RightController, buttonEvent: ButtonEvent.TriggerPress)); - inputActions.Add(new InputActionMapping("{RightHand}/{primary2DAxis}", DeviceCategory.RightController, buttonEvent: ButtonEvent.Primary2DAxisValue)); - inputActions.Add(new InputActionMapping("{RightHand}/{primary2DAxisTouch}", DeviceCategory.RightController, buttonEvent: ButtonEvent.Primary2DAxisTouch)); - inputActions.Add(new InputActionMapping("{RightHand}/{primary2DAxisClick}", DeviceCategory.RightController, buttonEvent: ButtonEvent.Primary2DAxisPress)); - inputActions.Add(new InputActionMapping("{RightHand}/{secondary2DAxis}", DeviceCategory.RightController, buttonEvent: ButtonEvent.Secondary2DAxisValue)); - inputActions.Add(new InputActionMapping("{RightHand}/{secondary2DAxisTouch}", DeviceCategory.RightController, buttonEvent: ButtonEvent.Secondary2DAxisTouch)); - inputActions.Add(new InputActionMapping("{RightHand}/{secondary2DAxisClick}", DeviceCategory.RightController, buttonEvent: ButtonEvent.Secondary2DAxisPress)); - inputActions.Add(new InputActionMapping("{RightHand}/{primaryButton}", DeviceCategory.RightController, buttonEvent: ButtonEvent.PrimaryButton)); - inputActions.Add(new InputActionMapping("{RightHand}/{secondaryButton}", DeviceCategory.RightController, buttonEvent: ButtonEvent.SecondaryButton)); - inputActions.Add(new InputActionMapping("{RightHand}/parkingTouched", DeviceCategory.RightController, buttonEvent: ButtonEvent.ParkingTouch)); + s_InputActions.Add(new InputActionMapping("{RightHand}/isTracked", DeviceCategory.RightController, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/pointerPosition", DeviceCategory.RightController, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{RightHand}/pointerRotation", DeviceCategory.RightController, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/deviceVelocity", DeviceCategory.RightController, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{RightHand}/deviceAngularVelocity", DeviceCategory.RightController, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{RightHand}/deviceAcceleration", DeviceCategory.RightController, in_PoseState: PoseState.Acceleration, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{RightHand}/deviceAngularAcceleration", DeviceCategory.RightController, in_PoseState: PoseState.AngularAcceleration, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{grip}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.GripValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{gripButton}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.GripPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{trigger}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.TriggerValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/triggerTouched", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.TriggerTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{triggerButton}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.TriggerPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{primary2DAxis}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.Primary2DAxisValue, in_Type: kVector2Type)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{primary2DAxisTouch}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.Primary2DAxisTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{primary2DAxisClick}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.Primary2DAxisPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{secondary2DAxis}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.Secondary2DAxisValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{secondary2DAxisTouch}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.Secondary2DAxisTouch, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{secondary2DAxisClick}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.Secondary2DAxisPress, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{primaryButton}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.PrimaryButton, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/{secondaryButton}", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.SecondaryButton, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/parkingTouched", DeviceCategory.RightController, in_ButtonEvent: ButtonEvent.ParkingTouch, in_Type: kFloatType)); #endregion #region Hand - inputActions.Add(new InputActionMapping("{LeftHand}/selectValue", DeviceCategory.LeftHand, handEvent: HandEvent.PinchValue)); - inputActions.Add(new InputActionMapping("{LeftHand}/pointerPose", DeviceCategory.LeftHand, handEvent: HandEvent.PinchPose)); - inputActions.Add(new InputActionMapping("{LeftHand}/gripValue", DeviceCategory.LeftHand, handEvent: HandEvent.GraspValue)); - inputActions.Add(new InputActionMapping("{LeftHand}/devicePose", DeviceCategory.LeftHand, handEvent: HandEvent.GraspPose)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/selectValue", DeviceCategory.LeftHand, in_HandEvent: HandEvent.PinchValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/pointerPose", DeviceCategory.LeftHand, in_HandEvent: HandEvent.PinchPose, in_Type: kPoseType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/gripValue", DeviceCategory.LeftHand, in_HandEvent: HandEvent.GraspValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{LeftHand}/devicePose", DeviceCategory.LeftHand, in_HandEvent: HandEvent.GraspPose, in_Type: kPoseType)); - inputActions.Add(new InputActionMapping("{RightHand}/selectValue", DeviceCategory.RightHand, handEvent: HandEvent.PinchValue)); - inputActions.Add(new InputActionMapping("{RightHand}/pointerPose", DeviceCategory.RightHand, handEvent: HandEvent.PinchPose)); - inputActions.Add(new InputActionMapping("{RightHand}/gripValue", DeviceCategory.RightHand, handEvent: HandEvent.GraspValue)); - inputActions.Add(new InputActionMapping("{RightHand}/devicePose", DeviceCategory.RightHand, handEvent: HandEvent.GraspPose)); + s_InputActions.Add(new InputActionMapping("{RightHand}/selectValue", DeviceCategory.RightHand, in_HandEvent: HandEvent.PinchValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/pointerPose", DeviceCategory.RightHand, in_HandEvent: HandEvent.PinchPose, in_Type: kPoseType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/gripValue", DeviceCategory.RightHand, in_HandEvent: HandEvent.GraspValue, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{RightHand}/devicePose", DeviceCategory.RightHand, in_HandEvent: HandEvent.GraspPose, in_Type: kPoseType)); #endregion #region Tracker - inputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePose/isTracked", DeviceCategory.Tracker0, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePosition", DeviceCategory.Tracker0, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/deviceRotation", DeviceCategory.Tracker0, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePose/velocity", DeviceCategory.Tracker0, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePose/angularVelocity", DeviceCategory.Tracker0, poseState: PoseState.AngularVelocity)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePose/isTracked", DeviceCategory.Tracker0, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePosition", DeviceCategory.Tracker0, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/deviceRotation", DeviceCategory.Tracker0, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePose/velocity", DeviceCategory.Tracker0, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 0}/devicePose/angularVelocity", DeviceCategory.Tracker0, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePose/isTracked", DeviceCategory.Tracker1, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePosition", DeviceCategory.Tracker1, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/deviceRotation", DeviceCategory.Tracker1, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePose/velocity", DeviceCategory.Tracker1, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePose/angularVelocity", DeviceCategory.Tracker1, poseState: PoseState.AngularVelocity)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePose/isTracked", DeviceCategory.Tracker1, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePosition", DeviceCategory.Tracker1, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/deviceRotation", DeviceCategory.Tracker1, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePose/velocity", DeviceCategory.Tracker1, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 1}/devicePose/angularVelocity", DeviceCategory.Tracker1, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePose/isTracked", DeviceCategory.Tracker2, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePosition", DeviceCategory.Tracker2, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/deviceRotation", DeviceCategory.Tracker2, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePose/velocity", DeviceCategory.Tracker2, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePose/angularVelocity", DeviceCategory.Tracker2, poseState: PoseState.AngularVelocity)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePose/isTracked", DeviceCategory.Tracker2, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePosition", DeviceCategory.Tracker2, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/deviceRotation", DeviceCategory.Tracker2, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePose/velocity", DeviceCategory.Tracker2, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 2}/devicePose/angularVelocity", DeviceCategory.Tracker2, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePose/isTracked", DeviceCategory.Tracker3, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePosition", DeviceCategory.Tracker3, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/deviceRotation", DeviceCategory.Tracker3, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePose/velocity", DeviceCategory.Tracker3, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePose/angularVelocity", DeviceCategory.Tracker3, poseState: PoseState.AngularVelocity)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePose/isTracked", DeviceCategory.Tracker3, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePosition", DeviceCategory.Tracker3, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/deviceRotation", DeviceCategory.Tracker3, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePose/velocity", DeviceCategory.Tracker3, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 3}/devicePose/angularVelocity", DeviceCategory.Tracker3, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePose/isTracked", DeviceCategory.Tracker4, poseState: PoseState.IsTracked)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePosition", DeviceCategory.Tracker4, poseState: PoseState.Position)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/deviceRotation", DeviceCategory.Tracker4, poseState: PoseState.Rotation)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePose/velocity", DeviceCategory.Tracker4, poseState: PoseState.Velocity)); - inputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePose/angularVelocity", DeviceCategory.Tracker4, poseState: PoseState.AngularVelocity)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePose/isTracked", DeviceCategory.Tracker4, in_PoseState: PoseState.IsTracked, in_Type: kFloatType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePosition", DeviceCategory.Tracker4, in_PoseState: PoseState.Position, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/deviceRotation", DeviceCategory.Tracker4, in_PoseState: PoseState.Rotation, in_Type: kQuaternionType)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePose/velocity", DeviceCategory.Tracker4, in_PoseState: PoseState.Velocity, in_Type: kVector3Type)); + s_InputActions.Add(new InputActionMapping("{Ultimate Tracker 4}/devicePose/angularVelocity", DeviceCategory.Tracker4, in_PoseState: PoseState.AngularVelocity, in_Type: kVector3Type)); #endregion } + private static bool GetInputActionMapping(DeviceCategory device, PoseState poseState, out InputActionMapping inputActionMapping) + { + inputActionMapping = default; + for (int i = 0; i < s_InputActions.Count; i++) + { + var action = s_InputActions[i]; + if (action.device == device && action.poseState == poseState) + { + inputActionMapping = action; + return true; + } + } + return false; + } + + private static bool GetInputActionMapping(DeviceCategory device, ButtonEvent buttonEvent, out InputActionMapping inputActionMapping) + { + inputActionMapping = default; + for (int i = 0; i < s_InputActions.Count; i++) + { + var action = s_InputActions[i]; + if (action.device == device && action.buttonEvent == buttonEvent) + { + inputActionMapping = action; + return true; + } + } + return false; + } + + private static bool GetInputActionMapping(DeviceCategory device, HandEvent handEvent, out InputActionMapping inputActionMapping) + { + inputActionMapping = default; + for (int i = 0; i < s_InputActions.Count; i++) + { + var action = s_InputActions[i]; + if (action.device == device && action.handEvent == handEvent) + { + inputActionMapping = action; + return true; + } + } + return false; + } + private static void CheckHandUpdated() { - if (Time.frameCount > leftHand.updateTime || - Time.frameCount > rightHand.updateTime) + int frameCount = Time.frameCount; + if (frameCount > m_LeftHand.updateTime || + frameCount > m_RightHand.updateTime) { - ViveHandTracking viveHand = OpenXRSettings.Instance.GetFeature(); - if (viveHand) - { - UpdateViveHand(true, viveHand); - UpdateViveHand(false, viveHand); - } - #if UNITY_XR_HANDS - HandTracking xrHand = OpenXRSettings.Instance.GetFeature(); - if (xrHand) + if (m_IsSupportViveHand || m_IsSupportXrHand) { - if (handSubsystem == null || !handSubsystem.running) + if (m_HandSubsystem == null || !m_HandSubsystem.running) { - if (handSubsystem != null && !handSubsystem.running) + if (m_HandSubsystem != null) { - handSubsystem.updatedHands -= OnUpdatedHands; - handSubsystem = null; + m_HandSubsystem.updatedHands -= OnUpdatedHands; + m_HandSubsystem = null; } - var handSubsystems = new List(); - SubsystemManager.GetSubsystems(handSubsystems); - for (var i = 0; i < handSubsystems.Count; ++i) + m_HandSubsystems.Clear(); + SubsystemManager.GetSubsystems(m_HandSubsystems); + for (var i = 0; i < m_HandSubsystems.Count; ++i) { - var xrHnad = handSubsystems[i]; - if (xrHnad.running) + var xrHand = m_HandSubsystems[i]; + if (xrHand.running) { - handSubsystem = xrHnad; + m_HandSubsystem = xrHand; + m_HandSubsystem.updatedHands += OnUpdatedHands; break; } } - if (handSubsystem != null && handSubsystem.running) - { - handSubsystem.updatedHands += OnUpdatedHands; - } } } +#else + if (m_IsSupportViveHand) + { + UpdateViveHand(true); + UpdateViveHand(false); + } #endif } } - private static void UpdateViveHand(bool isLeft, ViveHandTracking viveHand) + private static void UpdateViveHand(bool isLeft) { - bool isUpdated = viveHand.GetJointLocations(isLeft, out XrHandJointLocationEXT[] viveJoints); - JointData[] joints = new JointData[viveJoints.Length]; - for (int i = 0; i < joints.Length; i++) + bool isUpdated = XR_EXT_hand_tracking.Interop.GetJointLocations(isLeft, out XrHandJointLocationEXT[] viveJoints); + for (int i = 0; i < m_JointBuffer.Length; i++) { bool isValid = isUpdated && viveJoints[i].locationFlags.HasFlag(XrSpaceLocationFlags.XR_SPACE_LOCATION_POSITION_TRACKED_BIT) && viveJoints[i].locationFlags.HasFlag(XrSpaceLocationFlags.XR_SPACE_LOCATION_ORIENTATION_TRACKED_BIT); Vector3 position = viveJoints[i].pose.position.ToUnityVector(); Quaternion rotation = viveJoints[i].pose.orientation.ToUnityQuaternion(); - joints[i] = new JointData(isValid, position, rotation); + m_JointBuffer[i] = new JointData(isValid, position, rotation); } if (isLeft) { - leftHand.Update(joints); + m_LeftHand.Update(m_JointBuffer); } else { - rightHand.Update(joints); + m_RightHand.Update(m_JointBuffer); } } #if UNITY_XR_HANDS - private static void OnUpdatedHands(XRHandSubsystem xrHnad, XRHandSubsystem.UpdateSuccessFlags flags, XRHandSubsystem.UpdateType type) + private static void OnUpdatedHands(XRHandSubsystem xrHnad, XRHandSubsystem.UpdateSuccessFlags flags, XRHandSubsystem.UpdateType type) { if (xrHnad != null && xrHnad.running) { @@ -732,42 +796,48 @@ namespace VIVE.OpenXR.Toolkits.Common } } - private static void UpdateXRHand(bool isLeft, XRHandSubsystem xrHnad, bool isUpdated) + private static void UpdateXRHand(bool isLeft, XRHandSubsystem xrHand, bool isUpdated) { - JointData[] joints = new JointData[(int)HandJointType.Count]; - for (int i = 0; i < joints.Length; i++) + for (int i = 0; i < m_JointBuffer.Length; i++) { XRHandJointID jointId = JointTypeToXRId(i); - XRHandJoint joint = (isLeft ? xrHnad.leftHand : xrHnad.rightHand).GetJoint(jointId); - bool isValid = isUpdated && joint.trackingState.HasFlag(XRHandJointTrackingState.Pose); - joint.TryGetPose(out Pose pose); - joints[i] = new JointData(isValid, pose.position, pose.rotation); - } - if (isLeft) - { - leftHand.Update(joints); - } - else - { - rightHand.Update(joints); - } - } + XRHandJoint joint = (isLeft ? xrHand.leftHand : xrHand.rightHand).GetJoint(jointId); - private static XRHandJointID JointTypeToXRId(int id) - { - switch (id) - { - case 0: - return XRHandJointID.Palm; - case 1: - return XRHandJointID.Wrist; - default: - return (XRHandJointID)(id + 1); - } - } + if (isUpdated && joint.trackingState.HasFlag(XRHandJointTrackingState.Pose)) + { + joint.TryGetPose(out Pose pose); + m_JointBuffer[i] = new JointData(true, pose.position, pose.rotation); + } + else + { + m_JointBuffer[i] = new JointData(false, Vector3.zero, Quaternion.identity); + } + } + if (isLeft) + { + m_LeftHand.Update(m_JointBuffer); + } + else + { + m_RightHand.Update(m_JointBuffer); + } + } + + private static XRHandJointID JointTypeToXRId(int id) + { + switch (id) + { + case 0: + return XRHandJointID.Palm; + case 1: + return XRHandJointID.Wrist; + default: + return (XRHandJointID)(id + 1); + } + } #endif - private static DeviceCategory GetController(Handedness handedness) + private static DeviceCategory GetController(Handedness handedness) { DeviceCategory device = DeviceCategory.None; switch (handedness) diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/Passthrough/PassthroughAPI.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/Passthrough/PassthroughAPI.cs index b4aa10f..1f5c367 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/Passthrough/PassthroughAPI.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/Passthrough/PassthroughAPI.cs @@ -5,8 +5,7 @@ using System.Collections.Generic; using System.Runtime.InteropServices; using UnityEngine; using UnityEngine.XR.OpenXR; -using System.Threading.Tasks; -using VIVE.OpenXR; +using System.Linq; namespace VIVE.OpenXR.Passthrough { @@ -27,13 +26,7 @@ namespace VIVE.OpenXR.Passthrough return false; } -#if UNITY_STANDALONE - private static Dictionary passthrough2Layer = new Dictionary(); - private static Dictionary passthrough2LayerPtr = new Dictionary(); - private static Dictionary passthrough2IsUnderLay= new Dictionary(); - private static Dictionary passthrough2meshTransform = new Dictionary(); - private static Dictionary passthrough2meshTransformInfoPtr = new Dictionary(); -#endif + private static Dictionary layersDict = new Dictionary(); #region Public APIs /// @@ -58,42 +51,32 @@ namespace VIVE.OpenXR.Passthrough } XrPassthroughCreateInfoHTC createInfo = new XrPassthroughCreateInfoHTC( XrStructureType.XR_TYPE_PASSTHROUGH_CREATE_INFO_HTC, +#if UNITY_ANDROID + IntPtr.Zero, +#else new IntPtr(6), //Enter IntPtr(0) for backward compatibility (using createPassthrough to enable the passthrough feature), or enter IntPtr(6) to enable the passthrough feature based on the layer submitted to endframe. +#endif XrPassthroughFormHTC.XR_PASSTHROUGH_FORM_PLANAR_HTC ); -#if UNITY_ANDROID - res = passthroughFeature.CreatePassthroughHTC(createInfo, out passthrough, layerType, compositionDepth, onDestroyPassthroughSessionHandler); - DEBUG("CreatePlanarPassthrough() CreatePassthroughHTC result: " + res + ", passthrough: " + passthrough); -#endif -#if UNITY_STANDALONE res = XR_HTC_passthrough.xrCreatePassthroughHTC(createInfo, out passthrough); if(res == XrResult.XR_SUCCESS) - { - XrPassthroughColorHTC passthroughColor = new XrPassthroughColorHTC( - in_type: XrStructureType.XR_TYPE_PASSTHROUGH_COLOR_HTC, - in_next: IntPtr.Zero, - in_alpha: alpha); - XrCompositionLayerPassthroughHTC compositionLayerPassthrough = new XrCompositionLayerPassthroughHTC( - in_type: XrStructureType.XR_TYPE_COMPOSITION_LAYER_PASSTHROUGH_HTC, - in_next: IntPtr.Zero, - in_layerFlags: (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT, - in_space: 0, - in_passthrough: passthrough, - in_color: passthroughColor); - passthrough2Layer.Add(passthrough, compositionLayerPassthrough); - IntPtr layerPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrCompositionLayerPassthroughHTC))); - passthrough2LayerPtr.Add(passthrough, layerPtr); - if (layerType == CompositionLayer.LayerType.Underlay) - passthrough2IsUnderLay.Add(passthrough, true); - if (layerType == CompositionLayer.LayerType.Overlay) - passthrough2IsUnderLay.Add(passthrough, false); + { + PassthroughLayer layer = new PassthroughLayer(passthrough, layerType); + var xrLayer = PassthroughLayer.MakeEmptyLayer(); + xrLayer.passthrough = passthrough; + xrLayer.layerFlags = (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT; + xrLayer.color.alpha = alpha; + layer.SetLayer(xrLayer); + + layersDict.Add(passthrough, layer); } -#endif + if (res == XrResult.XR_SUCCESS) { SetPassthroughAlpha(passthrough, alpha); } + return res; } @@ -138,54 +121,34 @@ namespace VIVE.OpenXR.Passthrough XrPassthroughCreateInfoHTC createInfo = new XrPassthroughCreateInfoHTC( XrStructureType.XR_TYPE_PASSTHROUGH_CREATE_INFO_HTC, +#if UNITY_ANDROID + IntPtr.Zero, +#else new IntPtr(6), //Enter IntPtr(0) for backward compatibility (using createPassthrough to enable the passthrough feature), or enter IntPtr(6) to enable the passthrough feature based on the layer submitted to endframe. +#endif XrPassthroughFormHTC.XR_PASSTHROUGH_FORM_PROJECTED_HTC ); -#if UNITY_STANDALONE res = XR_HTC_passthrough.xrCreatePassthroughHTC(createInfo, out passthrough); if (res == XrResult.XR_SUCCESS) { - XrPassthroughMeshTransformInfoHTC PassthroughMeshTransformInfo = new XrPassthroughMeshTransformInfoHTC( - in_type: XrStructureType.XR_TYPE_PASSTHROUGH_MESH_TRANSFORM_INFO_HTC, - in_next: IntPtr.Zero, - in_vertexCount: 0, - in_vertices: new XrVector3f[0], - in_indexCount: 0, - in_indices: new UInt32[0], - in_baseSpace: XR_HTC_passthrough.Interop.GetTrackingSpace(), - in_time: XR_HTC_passthrough.Interop.GetFrameState().predictedDisplayTime, - in_pose: new XrPosef(), - in_scale: new XrVector3f() - ); - IntPtr meshTransformInfoPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrPassthroughMeshTransformInfoHTC))); - Marshal.StructureToPtr(PassthroughMeshTransformInfo, meshTransformInfoPtr, false); - XrPassthroughColorHTC passthroughColor = new XrPassthroughColorHTC( - in_type: XrStructureType.XR_TYPE_PASSTHROUGH_COLOR_HTC, - in_next: IntPtr.Zero, - in_alpha: alpha); - XrCompositionLayerPassthroughHTC compositionLayerPassthrough = new XrCompositionLayerPassthroughHTC( - in_type: XrStructureType.XR_TYPE_COMPOSITION_LAYER_PASSTHROUGH_HTC, - in_next: meshTransformInfoPtr, - in_layerFlags: (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT, - in_space: 0, - in_passthrough: passthrough, - in_color: passthroughColor); - passthrough2meshTransform.Add(passthrough, PassthroughMeshTransformInfo); - passthrough2meshTransformInfoPtr.Add(passthrough, meshTransformInfoPtr); - passthrough2Layer.Add(passthrough, compositionLayerPassthrough); - IntPtr layerPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrCompositionLayerPassthroughHTC))); - passthrough2LayerPtr.Add(passthrough, layerPtr); - if (layerType == CompositionLayer.LayerType.Underlay) - passthrough2IsUnderLay.Add(passthrough, true); - if (layerType == CompositionLayer.LayerType.Overlay) - passthrough2IsUnderLay.Add(passthrough, false); + var layer = new PassthroughLayer(passthrough, layerType); + var xrLayer = PassthroughLayer.MakeEmptyLayer(); + xrLayer.passthrough = passthrough; + xrLayer.layerFlags = (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT; + xrLayer.space = 0; + xrLayer.color.alpha = alpha; + layer.SetLayer(xrLayer); + var xrMesh = PassthroughLayer.MakeMeshTransform(); + + xrMesh.time = XR_HTC_passthrough.Interop.GetFrameState().predictedDisplayTime; + xrMesh.baseSpace = XR_HTC_passthrough.Interop.GetTrackingSpace(); + xrMesh.scale = new XrVector3f(meshScale.x, meshScale.y, meshScale.z); + layer.SetMeshTransform(xrMesh); + + layersDict.Add(passthrough, layer); } -#endif -#if UNITY_ANDROID - res = passthroughFeature.CreatePassthroughHTC(createInfo, out passthrough, layerType, compositionDepth, onDestroyPassthroughSessionHandler); - DEBUG("CreateProjectedPassthrough() CreatePassthroughHTC result: " + res + ", passthrough: " + passthrough); -#endif + if (res == XrResult.XR_SUCCESS) { SetPassthroughAlpha(passthrough, alpha); @@ -219,54 +182,30 @@ namespace VIVE.OpenXR.Passthrough XrPassthroughCreateInfoHTC createInfo = new XrPassthroughCreateInfoHTC( XrStructureType.XR_TYPE_PASSTHROUGH_CREATE_INFO_HTC, +#if UNITY_ANDROID + IntPtr.Zero, +#else new IntPtr(6), //Enter IntPtr(0) for backward compatibility (using createPassthrough to enable the passthrough feature), or enter IntPtr(6) to enable the passthrough feature based on the layer submitted to endframe. +#endif XrPassthroughFormHTC.XR_PASSTHROUGH_FORM_PROJECTED_HTC - ); + ); -#if UNITY_STANDALONE res = XR_HTC_passthrough.xrCreatePassthroughHTC(createInfo, out passthrough); if (res == XrResult.XR_SUCCESS) { - XrPassthroughMeshTransformInfoHTC PassthroughMeshTransformInfo = new XrPassthroughMeshTransformInfoHTC( - in_type: XrStructureType.XR_TYPE_PASSTHROUGH_MESH_TRANSFORM_INFO_HTC, - in_next: IntPtr.Zero, - in_vertexCount: 0, - in_vertices: new XrVector3f[0], - in_indexCount: 0, - in_indices: new UInt32[0], - in_baseSpace: XR_HTC_passthrough.Interop.GetTrackingSpace(), - in_time: XR_HTC_passthrough.Interop.GetFrameState().predictedDisplayTime, - in_pose: new XrPosef(), - in_scale: new XrVector3f() - ); - IntPtr meshTransformInfoPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrPassthroughMeshTransformInfoHTC))); - Marshal.StructureToPtr(PassthroughMeshTransformInfo, meshTransformInfoPtr, false); - XrPassthroughColorHTC passthroughColor = new XrPassthroughColorHTC( - in_type: XrStructureType.XR_TYPE_PASSTHROUGH_COLOR_HTC, - in_next: IntPtr.Zero, - in_alpha: alpha); - XrCompositionLayerPassthroughHTC compositionLayerPassthrough = new XrCompositionLayerPassthroughHTC( - in_type: XrStructureType.XR_TYPE_COMPOSITION_LAYER_PASSTHROUGH_HTC, - in_next: meshTransformInfoPtr, - in_layerFlags: (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT, - in_space: 0, - in_passthrough: passthrough, - in_color: passthroughColor); - passthrough2meshTransform.Add(passthrough, PassthroughMeshTransformInfo); - passthrough2meshTransformInfoPtr.Add(passthrough, meshTransformInfoPtr); - passthrough2Layer.Add(passthrough, compositionLayerPassthrough); - IntPtr layerPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(XrCompositionLayerPassthroughHTC))); - passthrough2LayerPtr.Add(passthrough, layerPtr); - if (layerType == CompositionLayer.LayerType.Underlay) - passthrough2IsUnderLay.Add(passthrough, true); - if (layerType == CompositionLayer.LayerType.Overlay) - passthrough2IsUnderLay.Add(passthrough, false); + var layer = new PassthroughLayer(passthrough, layerType); + var xrLayer = PassthroughLayer.MakeEmptyLayer(); + xrLayer.passthrough = passthrough; + xrLayer.layerFlags = (UInt64)XrCompositionLayerFlagBits.XR_COMPOSITION_LAYER_UNPREMULTIPLIED_ALPHA_BIT; + xrLayer.color.alpha = alpha; + layer.SetLayer(xrLayer); + + var xrMesh = PassthroughLayer.MakeMeshTransform(); + layer.SetMeshTransform(xrMesh, true); + + layersDict.Add(passthrough, layer); } -#endif -#if UNITY_ANDROID - res = passthroughFeature.CreatePassthroughHTC(createInfo, out passthrough, layerType, onDestroyPassthroughSessionHandler); - DEBUG("CreateProjectedPassthrough() CreatePassthroughHTC result: " + res + ", passthrough: " + passthrough); -#endif + if (res == XrResult.XR_SUCCESS) { SetPassthroughAlpha(passthrough, alpha); @@ -275,43 +214,18 @@ namespace VIVE.OpenXR.Passthrough return res; } -#if UNITY_STANDALONE - private static async void SubmitLayer() - { - await Task.Run(() => { - int layerListCount = 0; - while(layerListCount == 0) - { - System.Threading.Thread.Sleep(1); - XR_HTC_passthrough.Interop.GetOriginEndFrameLayerList(out List layerList);//GetOriginEndFrameLayers - layerListCount = layerList.Count; - foreach (var passthrough in passthrough2IsUnderLay.Keys) - { - //Get and submit layer list - if (layerListCount != 0) - { - Marshal.StructureToPtr(passthrough2Layer[passthrough], passthrough2LayerPtr[passthrough], false); - if (passthrough2IsUnderLay[passthrough]) - layerList.Insert(0, passthrough2LayerPtr[passthrough]); - else - layerList.Insert(1, passthrough2LayerPtr[passthrough]); - } - } - if(layerListCount != 0) - XR_HTC_passthrough.Interop.SubmitLayers(layerList); - } - }); - - } -#endif + private static void SubmitLayer() + { + passthroughFeature.SubmitLayers(layersDict.Values.ToList()); + } - /// - /// To Destroying a passthrough. - /// You should call this function when the delegate is invoked. - /// - /// The created - /// XR_SUCCESS for success. - public static XrResult DestroyPassthrough(XrPassthroughHTC passthrough) + /// + /// To Destroying a passthrough. + /// You should call this function when the delegate is invoked. + /// + /// The created + /// XR_SUCCESS for success. + public static XrResult DestroyPassthrough(XrPassthroughHTC passthrough) { XrResult res = XrResult.XR_ERROR_RUNTIME_FAILURE; @@ -326,23 +240,17 @@ namespace VIVE.OpenXR.Passthrough return res; } -#if UNITY_STANDALONE - XrPassthroughHTC pt = passthrough2Layer[passthrough].passthrough; - XR_HTC_passthrough.xrDestroyPassthroughHTC(pt); - passthrough2IsUnderLay.Remove(passthrough); + if (layersDict.ContainsKey(passthrough)) + { + XR_HTC_passthrough.xrDestroyPassthroughHTC(passthrough); + var layer = layersDict[passthrough]; + layer.Dispose(); + layersDict.Remove(passthrough); + } + SubmitLayer(); - passthrough2Layer.Remove(pt); - if(passthrough2LayerPtr.ContainsKey(passthrough)) Marshal.FreeHGlobal(passthrough2LayerPtr[passthrough]); - passthrough2LayerPtr.Remove(passthrough); - if(passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) Marshal.FreeHGlobal(passthrough2meshTransformInfoPtr[passthrough]); - passthrough2meshTransformInfoPtr.Remove(passthrough); - passthrough2meshTransform.Remove(passthrough); res = XrResult.XR_SUCCESS; -#elif UNITY_ANDROID - res = passthroughFeature.DestroyPassthroughHTC(passthrough); - DEBUG("DestroyPassthrough() DestroyPassthroughHTC result: " + res + ", passthrough: " + passthrough); -#endif return res; } @@ -368,36 +276,18 @@ namespace VIVE.OpenXR.Passthrough return ret; } -#if UNITY_ANDROID - if (autoClamp) + if (layersDict.ContainsKey(passthrough)) { - ret = passthroughFeature.SetAlpha(passthrough, Mathf.Clamp01(alpha)); - } - else - { - if (alpha < 0f || alpha > 1f) - { - ERROR("SetPassthroughAlpha: Alpha out of range"); - return ret; - } - - ret = passthroughFeature.SetAlpha(passthrough, alpha); - } - DEBUG("SetPassthroughAlpha() SetAlpha result: " + ret + ", passthrough: " + passthrough); -#endif - -#if UNITY_STANDALONE - if (passthrough2Layer.ContainsKey(passthrough)) - { - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.color.alpha = alpha; - passthrough2Layer[passthrough] = layer; + var layer = layersDict[passthrough]; + var xrLayer = layer.GetLayer(); + xrLayer.color.alpha = alpha; + layer.SetLayer(xrLayer); + SubmitLayer(); ret = true; } else ret = false; -#endif return ret; } @@ -425,45 +315,18 @@ namespace VIVE.OpenXR.Passthrough return ret; } - XrVector3f[] vertexBufferXrVector = new XrVector3f[vertexBuffer.Length]; + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } - for (int i = 0; i < vertexBuffer.Length; i++) - { - vertexBufferXrVector[i] = OpenXRHelper.ToOpenXRVector(vertexBuffer[i], convertFromUnityToOpenXR); - } - - uint[] indexBufferUint = new uint[indexBuffer.Length]; - - for (int i = 0; i < indexBuffer.Length; i++) - { - indexBufferUint[i] = (uint)indexBuffer[i]; - } - -#if UNITY_STANDALONE - if (passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) - { - XrPassthroughMeshTransformInfoHTC MeshTransformInfo = passthrough2meshTransform[passthrough]; - MeshTransformInfo.vertexCount = (uint)vertexBuffer.Length; - MeshTransformInfo.vertices = vertexBufferXrVector; - MeshTransformInfo.indexCount = (uint)indexBuffer.Length; - MeshTransformInfo.indices = indexBufferUint; - passthrough2meshTransform[passthrough] = MeshTransformInfo; - Marshal.StructureToPtr(MeshTransformInfo, passthrough2meshTransformInfoPtr[passthrough], false); - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.next = passthrough2meshTransformInfoPtr[passthrough]; - passthrough2Layer[passthrough] = layer; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif - //Note: Ignore Clock-Wise definition of index buffer for now as passthrough extension does not have back-face culling -#if UNITY_ANDROID - ret = passthroughFeature.SetMesh(passthrough, (uint)vertexBuffer.Length, vertexBufferXrVector, (uint)indexBuffer.Length, indexBufferUint); ; - DEBUG("SetProjectedPassthroughMesh() SetMesh result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + var xrMesh = layer.GetMesh(); + layer.SetMeshData(ref xrMesh, vertexBuffer, indexBuffer, convertFromUnityToOpenXR); + layer.SetMeshTransform(xrMesh); + SubmitLayer(); + return true; } /// @@ -508,29 +371,22 @@ namespace VIVE.OpenXR.Passthrough XrVector3f meshXrScale = OpenXRHelper.ToOpenXRVector(meshScale, false); -#if UNITY_STANDALONE - if (passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) - { - XrPassthroughMeshTransformInfoHTC MeshTransformInfo = passthrough2meshTransform[passthrough]; - MeshTransformInfo.pose = meshXrPose; - MeshTransformInfo.scale = meshXrScale; - passthrough2meshTransform[passthrough] = MeshTransformInfo; - Marshal.StructureToPtr(MeshTransformInfo, passthrough2meshTransformInfoPtr[passthrough], false); - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.next = passthrough2meshTransformInfoPtr[passthrough]; - passthrough2Layer[passthrough] = layer; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } -#if UNITY_ANDROID - ret = passthroughFeature.SetMeshTransform(passthrough, passthroughFeature.GetXrSpaceFromSpaceType(spaceType), meshXrPose, meshXrScale); - DEBUG("SetProjectedPassthroughMeshTransform() SetMeshTransform result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + var xrMesh = layer.GetMesh(); + xrMesh.pose = meshXrPose; + xrMesh.scale = meshXrScale; + xrMesh.time = XR_HTC_passthrough.Interop.GetFrameState().predictedDisplayTime; + xrMesh.baseSpace = passthroughFeature.GetXrSpaceFromSpaceType(spaceType); + + layer.SetMeshTransform(xrMesh); + SubmitLayer(); + return true; } /// @@ -550,22 +406,18 @@ namespace VIVE.OpenXR.Passthrough return ret; } -#if UNITY_STANDALONE - if (passthrough2IsUnderLay.ContainsKey(passthrough)) - { - passthrough2IsUnderLay[passthrough] = layerType == CompositionLayer.LayerType.Underlay ? true : false; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } -#if UNITY_ANDROID - ret = passthroughFeature.SetLayerType(passthrough, layerType, compositionDepth); - DEBUG("SetPassthroughLayerType() SetLayerType result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + layer.LayerType = layerType; + layer.Depth = (int)compositionDepth; + + SubmitLayer(); + return true; } /// @@ -584,28 +436,18 @@ namespace VIVE.OpenXR.Passthrough return ret; } -#if UNITY_STANDALONE - if (passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) - { - XrPassthroughMeshTransformInfoHTC MeshTransformInfo = passthrough2meshTransform[passthrough]; - MeshTransformInfo.baseSpace = passthroughFeature.GetXrSpaceFromSpaceType(spaceType); - passthrough2meshTransform[passthrough] = MeshTransformInfo; - Marshal.StructureToPtr(MeshTransformInfo, passthrough2meshTransformInfoPtr[passthrough], false); - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.next = passthrough2meshTransformInfoPtr[passthrough]; - passthrough2Layer[passthrough] = layer; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } -#if UNITY_ANDROID - ret = passthroughFeature.SetMeshTransformSpace(passthrough, passthroughFeature.GetXrSpaceFromSpaceType(spaceType)); - DEBUG("SetProjectedPassthroughSpaceType() SetMeshTransformSpace result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + var xrMesh = layer.GetMesh(); + xrMesh.baseSpace = passthroughFeature.GetXrSpaceFromSpaceType(spaceType); + layer.SetMeshTransform(xrMesh); + SubmitLayer(); + return true; } /// @@ -639,30 +481,18 @@ namespace VIVE.OpenXR.Passthrough trackingSpaceMeshPosition = trackingSpaceLayerPoseTRS.GetColumn(3); //4th Column of TRS Matrix is the position } -#if UNITY_STANDALONE - if (passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) - { - XrPassthroughMeshTransformInfoHTC MeshTransformInfo = passthrough2meshTransform[passthrough]; - XrPosef meshXrPose = MeshTransformInfo.pose; - meshXrPose.position = OpenXRHelper.ToOpenXRVector(trackingSpaceMeshPosition, convertFromUnityToOpenXR); ; - MeshTransformInfo.pose = meshXrPose; - passthrough2meshTransform[passthrough] = MeshTransformInfo; - Marshal.StructureToPtr(MeshTransformInfo, passthrough2meshTransformInfoPtr[passthrough], false); - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.next = passthrough2meshTransformInfoPtr[passthrough]; - passthrough2Layer[passthrough] = layer; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } -#if UNITY_ANDROID - ret = passthroughFeature.SetMeshTransformPosition(passthrough, OpenXRHelper.ToOpenXRVector(trackingSpaceMeshPosition, convertFromUnityToOpenXR)); - DEBUG("SetProjectedPassthroughMeshPosition() SetMeshTransformPosition result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + var xrMesh = layer.GetMesh(); + xrMesh.pose.position = OpenXRHelper.ToOpenXRVector(trackingSpaceMeshPosition, convertFromUnityToOpenXR); + layer.SetMeshTransform(xrMesh); + SubmitLayer(); + return true; } /// @@ -696,30 +526,18 @@ namespace VIVE.OpenXR.Passthrough trackingSpaceMeshRotation = Quaternion.LookRotation(trackingSpaceLayerPoseTRS.GetColumn(2), trackingSpaceLayerPoseTRS.GetColumn(1)); } -#if UNITY_STANDALONE - if (passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) - { - XrPassthroughMeshTransformInfoHTC MeshTransformInfo = passthrough2meshTransform[passthrough]; - XrPosef meshXrPose = MeshTransformInfo.pose; - meshXrPose.orientation = OpenXRHelper.ToOpenXRQuaternion(trackingSpaceMeshRotation, convertFromUnityToOpenXR); - MeshTransformInfo.pose = meshXrPose; - passthrough2meshTransform[passthrough] = MeshTransformInfo; - Marshal.StructureToPtr(MeshTransformInfo, passthrough2meshTransformInfoPtr[passthrough], false); - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.next = passthrough2meshTransformInfoPtr[passthrough]; - passthrough2Layer[passthrough] = layer; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } -#if UNITY_ANDROID - ret = passthroughFeature.SetMeshTransformOrientation(passthrough, OpenXRHelper.ToOpenXRQuaternion(trackingSpaceMeshRotation, convertFromUnityToOpenXR)); - DEBUG("SetProjectedPassthroughMeshOrientation() SetMeshTransformOrientation result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + var xrMesh = layer.GetMesh(); + xrMesh.pose.orientation = OpenXRHelper.ToOpenXRQuaternion(trackingSpaceMeshRotation, convertFromUnityToOpenXR); + layer.SetMeshTransform(xrMesh); + SubmitLayer(); + return true; } /// @@ -738,28 +556,18 @@ namespace VIVE.OpenXR.Passthrough return ret; } -#if UNITY_STANDALONE - if (passthrough2meshTransformInfoPtr.ContainsKey(passthrough)) - { - XrPassthroughMeshTransformInfoHTC MeshTransformInfo = passthrough2meshTransform[passthrough]; - MeshTransformInfo.scale = OpenXRHelper.ToOpenXRVector(meshScale, false); - passthrough2meshTransform[passthrough] = MeshTransformInfo; - Marshal.StructureToPtr(MeshTransformInfo, passthrough2meshTransformInfoPtr[passthrough], false); - XrCompositionLayerPassthroughHTC layer = passthrough2Layer[passthrough]; - layer.next = passthrough2meshTransformInfoPtr[passthrough]; - passthrough2Layer[passthrough] = layer; - SubmitLayer(); - ret = true; - } - else - ret = false; -#endif + if (layersDict[passthrough] == null) + { + ERROR("Passthrough layer not found."); + return ret; + } -#if UNITY_ANDROID - ret = passthroughFeature.SetMeshTransformScale(passthrough, OpenXRHelper.ToOpenXRVector(meshScale, false)); - DEBUG("SetProjectedPassthroughScale() SetMeshTransformScale result: " + ret + ", passthrough: " + passthrough); -#endif - return ret; + var layer = layersDict[passthrough]; + var xrMesh = layer.GetMesh(); + xrMesh.scale = OpenXRHelper.ToOpenXRVector(meshScale, false); + layer.SetMeshTransform(xrMesh); + SubmitLayer(); + return true; } /// diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberLeft.prefab b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberLeft.prefab index bfa7016..e0ad0ef 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberLeft.prefab +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberLeft.prefab @@ -699,6 +699,7 @@ GameObject: serializedVersion: 6 m_Component: - component: {fileID: 4806409459047702211} + - component: {fileID: 5568897672767345397} - component: {fileID: 1039589470112983849} - component: {fileID: 1039589470112983840} - component: {fileID: 1039589470112983852} @@ -725,6 +726,19 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5568897672767345397 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4806409459047702212} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 52790aba0e3d55f4fb27aded6c698d8b, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Handedness: 1 --- !u!114 &1039589470112983849 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberRight.prefab b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberRight.prefab index 15649f5..5b422f8 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberRight.prefab +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Resources/Prefabs/VIVEXRHandGrabberRight.prefab @@ -858,6 +858,7 @@ GameObject: serializedVersion: 6 m_Component: - component: {fileID: 7152668487518777764} + - component: {fileID: 7057365311429264906} - component: {fileID: 3431167848623168894} - component: {fileID: 3431167848623168881} - component: {fileID: 3431167848623168882} @@ -884,6 +885,19 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &7057365311429264906 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7152668487518777765} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 52790aba0e3d55f4fb27aded6c698d8b, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Handedness: 0 --- !u!114 &3431167848623168894 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/CustomGrabPose.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/CustomGrabPose.cs index 96bd583..d53933c 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/CustomGrabPose.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/CustomGrabPose.cs @@ -8,12 +8,13 @@ // conditions signed by you and all SDK and API requirements, // specifications, and documentation provided by HTC to You." -using System.Collections.Generic; -using System.Text; using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; using UnityEditor; using UnityEngine; -using System.Linq; +using UnityEngine.InputSystem; namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction { @@ -129,6 +130,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction private HandGrabInteractable candidate = null; private Pose wristPose = Pose.identity; private Quaternion[] fingerJointRotation = new Quaternion[jointsPathMapping.Count]; + private bool isNewInputSystem = false; #region MonoBehaviours @@ -156,6 +158,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction sb.Append("However, you still can record grab pose if you use direct preview mode."); WARNING(sb); } + isNewInputSystem = Keyboard.current != null; } private void OnDisable() @@ -199,7 +202,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction } } - if (Input.GetKeyDown(KeyCode.Return) || Input.GetKeyDown(KeyCode.KeypadEnter)) + if (IsEnterPressed()) { FindNearInteractable(); SavePoseWithCandidate(); @@ -326,6 +329,19 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction return updated; } + private bool IsEnterPressed() + { + if (isNewInputSystem) + { + return (Keyboard.current.enterKey?.wasPressedThisFrame ?? false) || + (Keyboard.current.numpadEnterKey?.wasPressedThisFrame ?? false); + } + else + { + return Input.GetKeyDown(KeyCode.Return) || Input.GetKeyDown(KeyCode.KeypadEnter); + } + } + /// /// Finds the nearest interactable object to the hand. /// diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractable.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractable.cs index 1be89fd..e3a0160 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractable.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractable.cs @@ -8,7 +8,6 @@ // conditions signed by you and all SDK and API requirements, // specifications, and documentation provided by HTC to You." -using System; using System.Collections.Generic; using System.Text; using UnityEngine; @@ -87,8 +86,8 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction [SerializeField] private IOneHandContraintMovement m_OneHandContraintMovement; - public IOneHandContraintMovement oneHandContraintMovement { get { return m_OneHandContraintMovement; } set { m_OneHandContraintMovement = value; } } - public bool isContraint => m_OneHandContraintMovement != null; + public IOneHandContraintMovement oneHandContraintMovement { get { return m_OneHandContraintMovement; } set { m_OneHandContraintMovement = value; } } + public bool isContraint => m_OneHandContraintMovement != null; #pragma warning disable [SerializeField] @@ -183,8 +182,9 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction { if (!isGrabbable || isGrabbed) { return 0; } Vector3 closestPoint = GetClosestPoint(grabberPos); - float distacne = Vector3.Distance(grabberPos, closestPoint); - return distacne > grabDistance ? 0 : 1 - (distacne / grabDistance); + float distanceSqr = (grabberPos - closestPoint).sqrMagnitude; + float grabDistSqr = grabDistance * grabDistance; + return distanceSqr > grabDistSqr ? 0 : 1 - (distanceSqr / grabDistSqr); } /// @@ -263,35 +263,41 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction private Vector3 GetClosestPoint(Vector3 sourcePos) { Vector3 closestPoint = Vector3.zero; - float shortDistance = float.MaxValue; + float shortDistanceSqr = float.MaxValue; for (int i = 0; i < allColliders.Count; i++) { Collider collider = allColliders[i]; Vector3 closePoint = collider.ClosestPointOnBounds(sourcePos); - float distance = Vector3.Distance(sourcePos, closePoint); + float distanceSqr = (sourcePos - closePoint).sqrMagnitude; + if (distanceSqr < 0.001f) + { + return closePoint; + } + if (collider.bounds.Contains(closePoint)) { Vector3 direction = closePoint - sourcePos; direction.Normalize(); - int hitCount = Physics.RaycastNonAlloc(sourcePos, direction, hitResults, distance); + int hitCount = Physics.RaycastNonAlloc(sourcePos, direction, hitResults, Mathf.Sqrt(distanceSqr)); + for (int j = 0; j < hitCount; j++) { RaycastHit hit = hitResults[j]; if (hit.collider == collider) { - float hitDistance = Vector3.Distance(sourcePos, hit.point); - if (distance > hitDistance) + float hitDistanceSqr = (sourcePos - hit.point).sqrMagnitude; + if (distanceSqr > hitDistanceSqr) { - distance = hitDistance; + distanceSqr = hitDistanceSqr; closePoint = hit.point; } } } } - if (shortDistance > distance) + if (shortDistanceSqr > distanceSqr) { - shortDistance = distance; + shortDistanceSqr = distanceSqr; closestPoint = closePoint; } } @@ -361,9 +367,12 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction /// The index of the indicator to show. private void ShowIndicatorByIndex(int index) { - foreach (var grabPose in m_GrabPoses) + for (int i = 0; i < m_GrabPoses.Count; i++) { - grabPose.indicator.SetActive(false); + if (index != i) + { + m_GrabPoses[i].indicator.SetActive(false); + } } if (index >= 0 && index < m_GrabPoses.Count && m_GrabPoses[index].indicator.enableIndicator) @@ -379,9 +388,9 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction /// Whether the hand side is left. private void ShowAllIndicator(bool isLeft) { - foreach (var grabPose in m_GrabPoses) + for (int i = 0; i < m_GrabPoses.Count; i++) { - grabPose.indicator.SetActive(false); + m_GrabPoses[i].indicator.SetActive(false); } foreach (var grabPose in m_GrabPoses) { diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractor.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractor.cs index 3d305cc..0542292 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractor.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/Grab/HandGrabInteractor.cs @@ -8,7 +8,6 @@ // conditions signed by you and all SDK and API requirements, // specifications, and documentation provided by HTC to You." -using System; using System.Collections.Generic; using System.Text; using UnityEngine; @@ -79,6 +78,13 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction private Pose wristPose = Pose.identity; private Vector3[] fingerTipPosition = new Vector3[(int)FingerId.Count]; + private const int kMaxCacheSize = 100; + private int lastBufferCount = 0; + private Collider[] colliderBuffer = new Collider[50]; + private HandGrabInteractable[] grabbableBuffer = new HandGrabInteractable[50]; + private LinkedList lruList = new LinkedList(); + private Dictionary> unusedColliders = new Dictionary>(); + #region MonoBehaviour private void Awake() { @@ -159,7 +165,6 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction /// private void FindCandidate() { - currentCandidate = null; float distanceScore = float.MinValue; if (GetClosestGrabbable(m_GrabDistance, out HandGrabInteractable grabbable, out float score) && score > distanceScore) { @@ -189,28 +194,47 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction grabbable = null; maxScore = 0f; - Collider[] nearColliders = Physics.OverlapSphere(wristPose.position, 0.5f); - List nearHandGrabInteractables = new List(); - for (int i = 0; i < nearColliders.Length; i++) + for (int i = 0; i < lastBufferCount; i++) { - HandGrabInteractable interactable = nearColliders[i].GetComponentInParent(); - if (interactable && !nearHandGrabInteractables.Contains(interactable)) - { - nearHandGrabInteractables.Add(interactable); - continue; - } - interactable = nearColliders[i].GetComponentInChildren(); - if (interactable && !nearHandGrabInteractables.Contains(interactable)) - { - nearHandGrabInteractables.Add(interactable); - continue; - } + HandGrabInteractable interactable = grabbableBuffer[i]; + interactable.ShowIndicator(false, this); } - for (int i = 0; i < nearHandGrabInteractables.Count; i++) + int colliderCount = Physics.OverlapSphereNonAlloc(wristPose.position, grabDistance * 5, colliderBuffer); + int interactableCount = 0; + for (int i = 0; i < colliderCount; i++) { - HandGrabInteractable interactable = nearHandGrabInteractables[i]; - interactable.ShowIndicator(false, this); + Collider collider = colliderBuffer[i]; + if (unusedColliders.TryGetValue(collider, out _)) { continue; } + + HandGrabInteractable interactable = collider.GetComponentInParent() + ?? collider.GetComponentInChildren(); + if (interactable != null) + { + bool isUnique = true; + for (int j = 0; j < interactableCount; j++) + { + if (grabbableBuffer[j] == interactable) + { + isUnique = false; + break; + } + } + if (isUnique) + { + grabbableBuffer[interactableCount++] = interactable; + } + } + else + { + AddUnusedColliders(collider); + } + } + lastBufferCount = interactableCount; + + for (int i = 0; i < interactableCount; i++) + { + HandGrabInteractable interactable = grabbableBuffer[i]; for (int j = 0; j < fingerTipPosition.Length; j++) { float distanceScore = interactable.CalculateDistanceScore(fingerTipPosition[j], grabDistance); @@ -279,5 +303,18 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction } m_Grabbable.UpdatePositionAndRotation(wristPose); } + + private void AddUnusedColliders(Collider collider) + { + if (lruList.Count >= kMaxCacheSize) + { + var oldest = lruList.First; + unusedColliders.Remove(oldest.Value); + lruList.RemoveFirst(); + } + + var node = lruList.AddLast(collider); + unusedColliders[collider] = node; + } } } diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandColliderController.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandColliderController.cs index 194b668..84ed55e 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandColliderController.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandColliderController.cs @@ -11,7 +11,6 @@ using System.Collections; using System.Collections.Generic; using System.Linq; -using System.Text; using UnityEngine; namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction @@ -85,7 +84,11 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction private Quaternion lastRotation; private bool isInit = false; private bool isTracked = true; - private List collisionDirections = new List(); + private const int k_MaxCollisionCount = 100; + private readonly ContactPoint[] contactPointsBuffer = new ContactPoint[k_MaxCollisionCount]; + private readonly Vector3[] collisionsDirection = new Vector3[k_MaxCollisionCount]; + private readonly object collisionLock = new object(); + private int currentCollisionCount = 0; private bool isGrabbing = false; #region MonoBehaviour @@ -163,7 +166,11 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction if (isGrabbing) { +#if UNITY_6000_0_OR_NEWER + rootJointRigidbody.linearVelocity = Vector3.zero; +#else rootJointRigidbody.velocity = Vector3.zero; +#endif rootJointRigidbody.angularVelocity = Vector3.zero; rootJoint.localPosition = lastRootPos; rootJoint.localRotation = lastRotation; @@ -175,7 +182,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction } } - #endregion +#endregion private IEnumerator WaitForInit() { @@ -232,33 +239,41 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction Vector3 vel = (lastRootPos - rootJoint.position) / Time.deltaTime; if (IsValidVelocity(vel)) { - if (collisionDirections.Count > 0) + lock (collisionLock) { - float minAngle = float.MaxValue; - Vector3 closestDirection = Vector3.zero; - foreach (Vector3 direction in collisionDirections.ToList()) + if (currentCollisionCount > 0) { - float angle = Mathf.Abs(Vector3.Angle(direction, vel)); - if (angle < minAngle) - { - minAngle = angle; - closestDirection = direction; - } - } - collisionDirections.Clear(); + float minAngle = float.MaxValue; + Vector3 closestDirection = Vector3.zero; - Vector3 adjustedDirection = closestDirection; - if (Vector3.Dot(vel, closestDirection) > 0) - { - adjustedDirection *= -1f; - } - vel = Vector3.ProjectOnPlane(vel, adjustedDirection); - if (vel.magnitude > 1) - { - vel.Normalize(); + for (int i = 0; i < currentCollisionCount; i++) + { + Vector3 direction = collisionsDirection[i]; + float angle = Mathf.Abs(Vector3.Angle(direction, vel)); + if (angle < minAngle) + { + minAngle = angle; + closestDirection = direction; + } + } + Vector3 adjustedDirection = closestDirection; + if (Vector3.Dot(vel, closestDirection) > 0) + { + adjustedDirection *= -1f; + } + vel = Vector3.ProjectOnPlane(vel, adjustedDirection); + if (vel.magnitude > 1) + { + vel.Normalize(); + } + currentCollisionCount = 0; } } +#if UNITY_6000_0_OR_NEWER + rootJointRigidbody.linearVelocity = vel; +#else rootJointRigidbody.velocity = vel; +#endif } } @@ -287,7 +302,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction && !float.IsInfinity(vector.x) && !float.IsInfinity(vector.y) && !float.IsInfinity(vector.z); } - #region Event CallBack +#region Event CallBack /// /// When tracking state changing, reset the pose and enable/disable collider. @@ -299,7 +314,11 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction { lastRootPos = Vector3.zero; lastRotation = Quaternion.identity; +#if UNITY_6000_0_OR_NEWER + rootJointRigidbody.linearVelocity = Vector3.zero; +#else rootJointRigidbody.velocity = Vector3.zero; +#endif rootJointRigidbody.angularVelocity = Vector3.zero; } foreach (JointCollider jointCollider in jointsCollider) @@ -355,17 +374,21 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction case JointCollider.CollisionState.Stay: if (collision.contactCount > 0 && (collision.rigidbody == null || collision.rigidbody.isKinematic)) { - ContactPoint[] contactPoints = new ContactPoint[collision.contactCount]; - collision.GetContacts(contactPoints); - foreach (ContactPoint contactPoint in contactPoints) + lock (collisionLock) { - collisionDirections.Add(contactPoint.normal * -1f); + currentCollisionCount = Mathf.Min(contactPointsBuffer.Length, collision.contactCount); + collision.GetContacts(contactPointsBuffer); + + for (int i = 0; i < currentCollisionCount; i++) + { + collisionsDirection[i] = contactPointsBuffer[i].normal * -1f; + } } } break; } } - #endregion +#endregion } } diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandInteractionUtils.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandInteractionUtils.cs index 763effa..c0f5eaa 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandInteractionUtils.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandInteractionUtils.cs @@ -635,6 +635,8 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction } }, }; + // palm, wrist, thumb, index, middle, ring, pinky + private static readonly int[] fingerGroup = { 1, 1, 4, 5, 5, 5, 5 }; public bool valid = false; public bool isTracked = false; @@ -771,14 +773,16 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction group = 0; index = jointId; - // palm, wrist, thumb, index, middle, ring, pinky - int[] fingerGroup = { 1, 1, 4, 5, 5, 5, 5 }; - while (index > fingerGroup[group]) + for (int i = 0; i < fingerGroup.Length; i++) { - index -= fingerGroup[group]; - group += 1; + if (index <= fingerGroup[i]) + { + group = i; + index -= 1; // Adjust to 0-based index + return; + } + index -= fingerGroup[i]; } - index -= 1; } } @@ -848,32 +852,29 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction /// True if the hand is left; otherwise, false. private static void GetFingerData(FingerId id, ref FingerData finger, bool isLeft) { - JointType[] jointTypes = { }; - switch (id) - { - case FingerId.Thumb: jointTypes = s_ThumbJoints; break; - case FingerId.Index: jointTypes = s_IndexJoints; break; - case FingerId.Middle: jointTypes = s_MiddleJoints; break; - case FingerId.Ring: jointTypes = s_RingJoints; break; - case FingerId.Pinky: jointTypes = s_PinkyJoints; break; - default: return; - } + JointType[] jointTypes = GetJointTypes(id); + if (jointTypes == null) return; + + float deltaTime = Time.deltaTime; + Vector3 parentVel = Vector3.zero; + for (int i = 0; i < jointTypes.Length; i++) { - Vector3 parentVel = i == 0 ? Vector3.zero : finger.joints[i - 1].velocity; - JointData lastJoint = finger.joints[i]; - GetJointData(jointTypes[i], ref finger.joints[i], isLeft); + ref JointData joint = ref finger.joints[i]; + Vector3 lastPosition = joint.position; + + DataWrapper.GetJointPose(jointTypes[i], ref joint.position, ref joint.rotation, isLeft); + joint.velocity = (joint.position - lastPosition) / deltaTime; //As the velocity of child node should not be lower than the parent node. //Add the current parent node's velocity multiplied by time to the last position of child node, obtaining the new simulated position. - if (parentVel.magnitude > finger.joints[i].velocity.magnitude) + if (parentVel.magnitude > joint.velocity.magnitude) { - lastJoint.position += parentVel * Time.deltaTime; - finger.joints[i] = lastJoint; + joint.position += parentVel * deltaTime; } + parentVel = joint.velocity; } - // Since the thumb does not have joint3, it is replaced by joint2. if (id == FingerId.Thumb) { finger.joints[(int)JointId.Tip] = finger.joint3; @@ -885,6 +886,19 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction } } + private static JointType[] GetJointTypes(FingerId id) + { + return id switch + { + FingerId.Thumb => s_ThumbJoints, + FingerId.Index => s_IndexJoints, + FingerId.Middle => s_MiddleJoints, + FingerId.Ring => s_RingJoints, + FingerId.Pinky => s_PinkyJoints, + _ => null + }; + } + /// /// Update the data for the left or right hand. /// @@ -1067,16 +1081,16 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction Vector3 thumbTip = thumbData.tip.position; Vector3 thumbJoint2 = thumbData.joint2.position; Vector3 thumbJoint1 = thumbData.joint1.position; - Vector3[] fingerPos = { fingerData.tip.position, - fingerData.joint3.position, - fingerData.joint2.position}; float distance = float.PositiveInfinity; - for (int i = 0; i < fingerPos.Length; i++) - { - distance = Mathf.Min(distance, CalculateShortestDistance(fingerPos[i], thumbTip, thumbJoint2)); - distance = Mathf.Min(distance, CalculateShortestDistance(fingerPos[i], thumbJoint2, thumbJoint1)); - } + distance = Mathf.Min(distance, CalculateShortestDistance(fingerData.tip.position, thumbTip, thumbJoint2)); + distance = Mathf.Min(distance, CalculateShortestDistance(fingerData.tip.position, thumbJoint2, thumbJoint1)); + + distance = Mathf.Min(distance, CalculateShortestDistance(fingerData.joint3.position, thumbTip, thumbJoint2)); + distance = Mathf.Min(distance, CalculateShortestDistance(fingerData.joint3.position, thumbJoint2, thumbJoint1)); + + distance = Mathf.Min(distance, CalculateShortestDistance(fingerData.joint2.position, thumbTip, thumbJoint2)); + distance = Mathf.Min(distance, CalculateShortestDistance(fingerData.joint2.position, thumbJoint2, thumbJoint1)); return distance; } @@ -1732,9 +1746,16 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction /// True to enable the indicator, false to deactivate it. public void SetActive(bool enable) { - if (target != null) + if (target) { - target.SetActive(enable); + if (enable) + { + target.transform.localScale = Vector3.one; + } + else + { + target.transform.localScale = Vector3.zero; + } } } diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/MeshHandPose.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/MeshHandPose.cs index a7d95bd..1cf3029 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/MeshHandPose.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/MeshHandPose.cs @@ -7,7 +7,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction { [SerializeField] private HandMeshManager m_HandMesh; - + private bool keepUpdate = false; protected override void OnEnable() @@ -18,11 +18,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction protected override void OnDisable() { base.OnDisable(); - if (keepUpdate) - { - keepUpdate = false; - StopCoroutine(UpdatePose()); - } + keepUpdate = false; } public void SetHandMeshRenderer(HandMeshManager handMeshRenderer) @@ -44,39 +40,32 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction { yield return new WaitUntil(() => m_Initialized); base.OnEnable(); - if (!keepUpdate) - { - keepUpdate = true; - StartCoroutine(UpdatePose()); - } + keepUpdate = true; } - private IEnumerator UpdatePose() + private void Update() { - while (keepUpdate) + if (!keepUpdate) { return; } + HandPose handPose = HandPoseProvider.GetHandPose(m_HandMesh.isLeft ? HandPoseType.HAND_LEFT : HandPoseType.HAND_RIGHT); + m_IsTracked = handPose.IsTracked(); + if (!m_IsTracked) { return; } + + for (int i = 0; i < poseCount; i++) { - yield return new WaitForFixedUpdate(); - - HandPose handPose = HandPoseProvider.GetHandPose(m_HandMesh.isLeft ? HandPoseType.HAND_LEFT : HandPoseType.HAND_RIGHT); - m_IsTracked = handPose.IsTracked(); - - for (int i = 0; i < poseCount; i++) + if (m_HandMesh.GetJointPositionAndRotation((JointType)i, out Vector3 position, out Quaternion rotation) && + m_HandMesh.GetJointPositionAndRotation((JointType)i, out Vector3 localPosition, out Quaternion localRotation, local: true)) { - if (m_HandMesh.GetJointPositionAndRotation((JointType)i, out Vector3 position, out Quaternion rotation) && - m_HandMesh.GetJointPositionAndRotation((JointType)i, out Vector3 localPosition, out Quaternion localRotation, local: true)) - { - m_Position[i] = position; - m_Rotation[i] = rotation; - m_LocalPosition[i] = localPosition; - m_LocalRotation[i] = localRotation; - } - else - { - m_Position[i] = Vector3.zero; - m_Rotation[i] = Quaternion.identity; - m_LocalPosition[i] = Vector3.zero; - m_LocalRotation[i] = Quaternion.identity; - } + m_Position[i] = position; + m_Rotation[i] = rotation; + m_LocalPosition[i] = localPosition; + m_LocalRotation[i] = localRotation; + } + else + { + m_Position[i] = Vector3.zero; + m_Rotation[i] = Quaternion.identity; + m_LocalPosition[i] = Vector3.zero; + m_LocalRotation[i] = Quaternion.identity; } } } diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/RealHandPose.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/RealHandPose.cs index 9832ebe..c5463f3 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/RealHandPose.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/HandPose/RealHandPose.cs @@ -18,11 +18,7 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction protected override void OnDisable() { base.OnDisable(); - if (keepUpdate) - { - keepUpdate = false; - StopCoroutine(UpdatePose()); - } + keepUpdate = false; } public override void SetType(HandPoseType poseType) @@ -43,41 +39,33 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction { yield return new WaitUntil(() => m_Initialized); base.OnEnable(); - if (!keepUpdate) - { - keepUpdate = true; - StartCoroutine(UpdatePose()); - } + keepUpdate = true; } - private IEnumerator UpdatePose() + private void Update() { + if (!keepUpdate) { return; } + HandData handData = CachedHand.Get(isLeft); + m_IsTracked = handData.isTracked; + if (!m_IsTracked) { return; } + Vector3 position = Vector3.zero; Quaternion rotation = Quaternion.identity; - while (keepUpdate) + for (int i = 0; i < poseCount; i++) { - yield return new WaitForEndOfFrame(); - - HandData handData = CachedHand.Get(isLeft); - m_IsTracked = handData.isTracked; - if (!m_IsTracked) { continue; } - - for (int i = 0; i < poseCount; i++) + if (handData.GetJointPosition((JointType)i, ref position) && handData.GetJointRotation((JointType)i, ref rotation)) { - if (handData.GetJointPosition((JointType)i, ref position) && handData.GetJointRotation((JointType)i, ref rotation)) - { - m_Position[i] = transform.position + transform.rotation * position; - m_Rotation[i] = transform.rotation * rotation; - m_LocalPosition[i] = position; - m_LocalRotation[i] = rotation; - } - else - { - m_Position[i] = Vector3.zero; - m_Rotation[i] = Quaternion.identity; - m_LocalPosition[i] = Vector3.zero; - m_LocalRotation[i] = Quaternion.identity; - } + m_Position[i] = transform.position + transform.rotation * position; + m_Rotation[i] = transform.rotation * rotation; + m_LocalPosition[i] = position; + m_LocalRotation[i] = rotation; + } + else + { + m_Position[i] = Vector3.zero; + m_Rotation[i] = Quaternion.identity; + m_LocalPosition[i] = Vector3.zero; + m_LocalRotation[i] = Quaternion.identity; } } } diff --git a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/PhysicsInteractable.cs b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/PhysicsInteractable.cs index 9b13b9c..843cd88 100644 --- a/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/PhysicsInteractable.cs +++ b/com.htc.upm.vive.openxr/Runtime/Toolkits/RealisticHandInteraction(experimental)/Scripts/PhysicsInteractable.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using System.Threading.Tasks; using UnityEngine; @@ -9,13 +10,15 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction [SerializeField] private float forceMultiplier = 1.0f; - private readonly int MIN_POSE_SAMPLES = 2; - private readonly int MAX_POSE_SAMPLES = 10; + private const int MIN_POSE_SAMPLES = 2; + private const int MAX_POSE_SAMPLES = 10; private readonly float MIN_VELOCITY = 0.5f; private Rigidbody interactableRigidbody; - private List movementPoses = new List(); - private List timestamps = new List(); + private Pose[] movementPoses = new Pose[MAX_POSE_SAMPLES]; + private float[] timestamps = new float[MAX_POSE_SAMPLES]; + private int currentPoseIndex = 0; + private int poseCount = 0; private bool isBegin = false; private bool isEnd = false; private object lockVel = new object(); @@ -36,7 +39,11 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction if (isEnd) { +#if UNITY_6000_0_OR_NEWER + interactableRigidbody.linearVelocity = Vector3.zero; +#else interactableRigidbody.velocity = Vector3.zero; +#endif interactableRigidbody.angularVelocity = Vector3.zero; Vector3 velocity = CalculateVelocity(); @@ -46,8 +53,10 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction } interactableRigidbody = null; - movementPoses.Clear(); - timestamps.Clear(); + Array.Clear(movementPoses, 0, MAX_POSE_SAMPLES); + Array.Clear(timestamps, 0, MAX_POSE_SAMPLES); + currentPoseIndex = 0; + poseCount = 0; isEnd = false; } } @@ -55,28 +64,29 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction private void RecordMovement() { float time = Time.time; - if (movementPoses.Count == 0 || - timestamps[movementPoses.Count - 1] != time) - { - movementPoses.Add(new Pose(interactableRigidbody.position, interactableRigidbody.rotation)); - timestamps.Add(time); - } - if (movementPoses.Count > MAX_POSE_SAMPLES) + int lastIndex = (currentPoseIndex + poseCount - 1) % MAX_POSE_SAMPLES; + if (poseCount == 0 || timestamps[lastIndex] != time) { - movementPoses.RemoveAt(0); - timestamps.RemoveAt(0); + movementPoses[currentPoseIndex] = new Pose(interactableRigidbody.position, interactableRigidbody.rotation); + timestamps[currentPoseIndex] = time; + + if (poseCount < MAX_POSE_SAMPLES) + { + poseCount++; + } + currentPoseIndex = (currentPoseIndex + 1) % MAX_POSE_SAMPLES; } } private Vector3 CalculateVelocity() { - if (movementPoses.Count >= MIN_POSE_SAMPLES) + if (poseCount >= MIN_POSE_SAMPLES) { List velocities = new List(); - for (int i = 0; i < movementPoses.Count - 1; i++) + for (int i = 0; i < poseCount - 1; i++) { - for (int j = i + 1; j < movementPoses.Count; j++) + for (int j = i + 1; j < poseCount; j++) { velocities.Add(GetVelocity(i, j)); } @@ -89,9 +99,9 @@ namespace VIVE.OpenXR.Toolkits.RealisticHandInteraction private Vector3 GetVelocity(int idx1, int idx2) { - if (idx1 < 0 || idx1 >= movementPoses.Count - || idx2 < 0 || idx2 >= movementPoses.Count - || movementPoses.Count < MIN_POSE_SAMPLES) + if (idx1 < 0 || idx1 >= poseCount + || idx2 < 0 || idx2 >= poseCount + || poseCount < MIN_POSE_SAMPLES) { return Vector3.zero; } diff --git a/com.htc.upm.vive.openxr/Runtime/VIVE.OpenXR.asmdef b/com.htc.upm.vive.openxr/Runtime/VIVE.OpenXR.asmdef index 9fa3941..af57bc8 100644 --- a/com.htc.upm.vive.openxr/Runtime/VIVE.OpenXR.asmdef +++ b/com.htc.upm.vive.openxr/Runtime/VIVE.OpenXR.asmdef @@ -13,7 +13,7 @@ "WindowsStandalone64" ], "excludePlatforms": [], - "allowUnsafeCode": false, + "allowUnsafeCode": true, "overrideReferences": false, "precompiledReferences": [], "autoReferenced": true, @@ -24,6 +24,11 @@ "expression": "1.3.0", "define": "UNITY_XR_HANDS" }, + { + "name": "com.unity.xr.hands", + "expression": "1.5.0", + "define": "UNITY_XR_HANDS_1_5_0" + }, { "name": "com.unity.xr.interaction.toolkit", "expression": "0.9.4-preview", @@ -41,4 +46,4 @@ } ], "noEngineReferences": false -} \ No newline at end of file +} diff --git a/com.htc.upm.vive.openxr/Runtime/VIVEFocus3Profile.cs b/com.htc.upm.vive.openxr/Runtime/VIVEFocus3Profile.cs index 36802e4..20f0ee7 100644 --- a/com.htc.upm.vive.openxr/Runtime/VIVEFocus3Profile.cs +++ b/com.htc.upm.vive.openxr/Runtime/VIVEFocus3Profile.cs @@ -48,7 +48,7 @@ namespace VIVE.OpenXR public class VIVEFocus3Profile : OpenXRInteractionFeature { #region Log - const string LOG_TAG = "VIVE.OpenXR.VIVEFocus3Profile"; + const string LOG_TAG = "VIVE.OpenXR.VIVEFocus3Profile "; StringBuilder m_sb = null; StringBuilder sb { get { @@ -56,8 +56,8 @@ namespace VIVE.OpenXR return m_sb; } } - void DEBUG(StringBuilder msg) { Debug.LogFormat("{0} {1}", LOG_TAG, msg); } - void ERROR(StringBuilder msg) { Debug.LogErrorFormat("{0} {1}", LOG_TAG, msg); } + void DEBUG(StringBuilder msg) { Debug.Log(LOG_TAG + msg); } + void ERROR(StringBuilder msg) { Debug.LogError(LOG_TAG + msg); } #endregion private static VIVEFocus3Profile m_Instance = null; @@ -88,11 +88,13 @@ namespace VIVE.OpenXR return m_sb; } } - void DEBUG(StringBuilder msg) { Debug.LogFormat("{0} {1}", LOG_TAG, msg); } - void ERROR(StringBuilder msg) { Debug.LogErrorFormat("{0} {1}", LOG_TAG, msg); } + void DEBUG(StringBuilder msg) { Debug.Log(LOG_TAG + msg); } + void ERROR(StringBuilder msg) { Debug.LogError(LOG_TAG + msg); } #endregion #region Action Path + + #region Button /// /// A [Vector2Control](xref:UnityEngine.InputSystem.Controls.Vector2Control) that represents the OpenXR binding. /// @@ -145,7 +147,7 @@ namespace VIVE.OpenXR /// A [ButtonControl](xref:UnityEngine.InputSystem.Controls.ButtonControl) that represents the OpenXR binding. /// [Preserve, InputControl(aliases = new[] { "indexButton", "triggerButton" }, usage = "TriggerButton")] - public ButtonControl triggerPressed { get; private set; } + public ButtonControl triggerPressed { get; private set; } // InputControl(offset = 20) /// /// A [ButtonControl](xref:UnityEngine.InputSystem.Controls.ButtonControl) that represents the OpenXR binding. @@ -157,7 +159,7 @@ namespace VIVE.OpenXR /// A [ButtonControl](xref:UnityEngine.InputSystem.Controls.ButtonControl) that represents the OpenXR binding. /// [Preserve, InputControl(aliases = new[] { "JoystickOrPadPressed", "thumbstickClick", "joystickClicked", "primary2DAxisClick" }, usage = "Primary2DAxisClick")] - public ButtonControl thumbstickClicked { get; private set; } + public ButtonControl thumbstickClicked { get; private set; } // InputControl(offset = 22) /// /// A [ButtonControl](xref:UnityEngine.InputSystem.Controls.ButtonControl) that represents the OpenXR binding. @@ -169,31 +171,31 @@ namespace VIVE.OpenXR /// A [ButtonControl](xref:UnityEngine.InputSystem.Controls.ButtonControl) that represents the OpenXR binding. /// [Preserve, InputControl(aliases = new[] { "ParkingTouched", "parkingTouched" })] - public ButtonControl thumbrestTouched { get; private set; } + public ButtonControl thumbrestTouched { get; private set; } // InputControl(offset = 24) + #endregion /// /// A that represents the OpenXR binding. The grip pose represents the location of the user's palm or holding a motion controller. /// [Preserve, InputControl(offset = 0, aliases = new[] { "device", "gripPose" }, usage = "Device")] public PoseControl devicePose { get; private set; } - /// /// A that represents the OpenXR binding. The pointer pose represents the tip of the controller pointing forward. /// [Preserve, InputControl(offset = 0, aliases = new[] { "aimPose", "pointerPose" }, usage = "Pointer")] public PoseControl pointer { get; private set; } -#if UNITY_ANDROID - /// - /// A representing the OpenXR binding. - /// - [Preserve, InputControl(offset = 0, alias = "indexTip", usage = "Poke")] - public PoseControl pokePose { get; private set; } +#if UNITY_ANDROID /// /// A representing the OpenXR binding. /// [Preserve, InputControl(offset = 0, usage = "Pinch")] public PoseControl pinchPose { get; private set; } + /// + /// A representing the OpenXR binding. + /// + [Preserve, InputControl(offset = 0, alias = "indexTip", usage = "Poke")] + public PoseControl pokePose { get; private set; } #endif /// @@ -227,28 +229,29 @@ namespace VIVE.OpenXR /// [Preserve, InputControl(offset = 104, noisy = true, alias = "pointerOrientation")] public QuaternionControl pointerRotation { get; private set; } -#if UNITY_ANDROID - /// - /// A [Vector3Control](xref:UnityEngine.InputSystem.Controls.Vector3Control) required for backwards compatibility with the XRSDK layouts. This is the poke position. This value is equivalent to mapping pokePose/position. - /// - [Preserve, InputControl(offset = 152, noisy = true)] - public Vector3Control pokePosition { get; private set; } - /// - /// A [QuaternionControl](xref:UnityEngine.InputSystem.Controls.QuaternionControl) required for backwards compatibility with the XRSDK layouts. This is the poke orientation. This value is equivalent to mapping pokePose/rotation. - /// - [Preserve, InputControl(offset = 164, noisy = true)] - public QuaternionControl pokeRotation { get; private set; } +#if UNITY_ANDROID /// /// A [Vector3Control](xref:UnityEngine.InputSystem.Controls.Vector3Control) required for backwards compatibility with the XRSDK layouts. This is the pinch position. This value is equivalent to mapping pinchPose/position. /// - [Preserve, InputControl(offset = 212, noisy = true)] + [Preserve, InputControl(offset = 152, noisy = true)] public Vector3Control pinchPosition { get; private set; } /// /// A [QuaternionControl](xref:UnityEngine.InputSystem.Controls.QuaternionControl) required for backwards compatibility with the XRSDK layouts. This is the pinch orientation. This value is equivalent to mapping pinchPose/rotation. /// - [Preserve, InputControl(offset = 224, noisy = true)] + [Preserve, InputControl(offset = 164, noisy = true)] public QuaternionControl pinchRotation { get; private set; } + + /// + /// A [Vector3Control](xref:UnityEngine.InputSystem.Controls.Vector3Control) required for backwards compatibility with the XRSDK layouts. This is the poke position. This value is equivalent to mapping pokePose/position. + /// + [Preserve, InputControl(offset = 212, noisy = true)] + public Vector3Control pokePosition { get; private set; } + /// + /// A [QuaternionControl](xref:UnityEngine.InputSystem.Controls.QuaternionControl) required for backwards compatibility with the XRSDK layouts. This is the poke orientation. This value is equivalent to mapping pokePose/rotation. + /// + [Preserve, InputControl(offset = 224, noisy = true)] + public QuaternionControl pokeRotation { get; private set; } #endif /// /// A that represents the binding. diff --git a/com.htc.upm.vive.openxr/Runtime/VIVERig.cs b/com.htc.upm.vive.openxr/Runtime/VIVERig.cs index 26f4401..732536b 100644 --- a/com.htc.upm.vive.openxr/Runtime/VIVERig.cs +++ b/com.htc.upm.vive.openxr/Runtime/VIVERig.cs @@ -1,13 +1,13 @@ // Copyright HTC Corporation All Rights Reserved. using System.Collections.Generic; +using System.Text; using UnityEngine; using UnityEngine.XR; -using System.Text; + #if ENABLE_INPUT_SYSTEM using UnityEngine.InputSystem; #endif - namespace VIVE.OpenXR { [DisallowMultipleComponent] @@ -43,12 +43,6 @@ namespace VIVE.OpenXR private float m_CameraHeight = 1.5f; public float CameraHeight { get { return m_CameraHeight; } set { m_CameraHeight = value; } } - [System.Obsolete("This variable is deprecated. Please use CameraHeight instead.")] - [SerializeField] - private float m_CameraYOffset = 1; - [System.Obsolete("This variable is deprecated. Please use CameraHeight instead.")] - public float CameraYOffset { get { return m_CameraYOffset; } set { m_CameraYOffset = value; } } - #if ENABLE_INPUT_SYSTEM [SerializeField] private InputActionAsset m_ActionAsset; @@ -56,10 +50,14 @@ namespace VIVE.OpenXR #endif #endregion - static List s_InputSubsystems = new List(); + private static readonly List s_InputSubsystems = new List(); + private static readonly object lockObj = new object(); + private float m_LastRecenteredTime = 0.0f; + + #region MonoBehaviour private void OnEnable() { - SubsystemManager.GetInstances(s_InputSubsystems); + UpdateInputSubsystems(); for (int i = 0; i < s_InputSubsystems.Count; i++) { s_InputSubsystems[i].trackingOriginUpdated += TrackingOriginUpdated; @@ -74,29 +72,12 @@ namespace VIVE.OpenXR } private void OnDisable() { - SubsystemManager.GetInstances(s_InputSubsystems); + UpdateInputSubsystems(); for (int i = 0; i < s_InputSubsystems.Count; i++) { s_InputSubsystems[i].trackingOriginUpdated -= TrackingOriginUpdated; } } - - float m_LastRecenteredTime = 0.0f; - private void TrackingOriginUpdated(XRInputSubsystem obj) - { - m_LastRecenteredTime = Time.time; - sb.Clear().Append("TrackingOriginUpdated() m_LastRecenteredTime: ").Append(m_LastRecenteredTime); DEBUG(sb); - } - - XRInputSubsystem m_InputSystem = null; - void UpdateInputSystem() - { - SubsystemManager.GetInstances(s_InputSubsystems); - if (s_InputSubsystems.Count > 0) - { - m_InputSystem = s_InputSubsystems[0]; - } - } private void Awake() { if (m_Instance == null) @@ -107,37 +88,17 @@ namespace VIVE.OpenXR { Destroy(this); } - - UpdateInputSystem(); - if (m_InputSystem != null) - { - sb.Clear().Append("Awake() TrySetTrackingOriginMode ").Append(m_TrackingOrigin); DEBUG(sb); - m_InputSystem.TrySetTrackingOriginMode(m_TrackingOrigin); - - TrackingOriginModeFlags mode = m_InputSystem.GetTrackingOriginMode(); - sb.Clear().Append("Awake() Tracking mode is set to ").Append(mode); DEBUG(sb); - } - else - { - sb.Clear().Append("Awake() no XRInputSubsystem."); DEBUG(sb); - } - m_TrackingOriginEx = m_TrackingOrigin; } - private void Update() { - UpdateInputSystem(); - if (m_InputSystem != null) + TrackingOriginModeFlags mode = GetTrackingOriginMode(); + if ((mode != m_TrackingOrigin || m_TrackingOriginEx != m_TrackingOrigin) && + m_TrackingOrigin != TrackingOriginModeFlags.Unknown && + SetTrackingOriginMode(m_TrackingOrigin)) { - TrackingOriginModeFlags mode = m_InputSystem.GetTrackingOriginMode(); - if ((mode != m_TrackingOrigin || m_TrackingOriginEx != m_TrackingOrigin) && m_TrackingOrigin != TrackingOriginModeFlags.Unknown) - { - m_InputSystem.TrySetTrackingOriginMode(m_TrackingOrigin); - - mode = m_InputSystem.GetTrackingOriginMode(); - sb.Clear().Append("Update() Tracking mode is set to " + mode); - m_TrackingOriginEx = m_TrackingOrigin; - } + mode = GetTrackingOriginMode(); + sb.Clear().Append("Update() Tracking mode is set to " + mode); + m_TrackingOriginEx = m_TrackingOrigin; } if (m_CameraOffset != null && m_TrackingOrigin == TrackingOriginModeFlags.Device) @@ -149,5 +110,66 @@ namespace VIVE.OpenXR m_CameraOffset.transform.localPosition = cameraPosOffset; } } + #endregion + + private bool SetTrackingOriginMode(TrackingOriginModeFlags value) + { + lock (lockObj) + { + UpdateInputSubsystems(); + + for (int i = 0; i < s_InputSubsystems.Count; i++) + { + var subsys = s_InputSubsystems[i]; + if (!subsys.running) + { + continue; + } + + if (subsys.TrySetTrackingOriginMode(value)) + { + return true; + } + Debug.LogWarning($"Failed to set TrackingOriginModeFlags({value}) to XRInputSubsystem: {subsys.subsystemDescriptor?.id ?? "Unknown"}"); + } + return false; + } + } + + private TrackingOriginModeFlags GetTrackingOriginMode() + { + lock (lockObj) + { + UpdateInputSubsystems(); + + for(int i=0; i< s_InputSubsystems.Count; i++) + { + var subsys = s_InputSubsystems[i]; + if (!subsys.running) + { + continue; + } + return subsys.GetTrackingOriginMode(); + } + return TrackingOriginModeFlags.Unknown; + } + } + + private void UpdateInputSubsystems() + { + s_InputSubsystems.Clear(); + +#if UNITY_6000_0_OR_NEWER + SubsystemManager.GetSubsystems(s_InputSubsystems); +#else + SubsystemManager.GetInstances(s_InputSubsystems); +#endif + } + + private void TrackingOriginUpdated(XRInputSubsystem obj) + { + m_LastRecenteredTime = Time.time; + sb.Clear().Append("TrackingOriginUpdated() m_LastRecenteredTime: ").Append(m_LastRecenteredTime); DEBUG(sb); + } } } diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Anchor/Scripts/AnchorTestHandle.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Anchor/Scripts/AnchorTestHandle.cs index 9eeea90..4977d0c 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Anchor/Scripts/AnchorTestHandle.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Anchor/Scripts/AnchorTestHandle.cs @@ -124,7 +124,7 @@ namespace VIVE.OpenXR.Samples.Anchor void GetXRInputSubsystem() { List xrSubsystemList = new List(); - SubsystemManager.GetInstances(xrSubsystemList); + SubsystemManager.GetSubsystems(xrSubsystemList); foreach (var xrSubsystem in xrSubsystemList) { if (xrSubsystem.running) @@ -675,6 +675,12 @@ namespace VIVE.OpenXR.Samples.Anchor if (task.IsCompleted) { Task<(XrResult, string, byte[])> t = task as Task<(XrResult, string, byte[])>; + if (t == null) + { + tasks.Remove(task); + break; + } + if (t.Result.Item1 == XrResult.XR_SUCCESS) { // write to file diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/ActionMap/InputActions.inputactions b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/ActionMap/InputActions.inputactions index 9c3c2ff..888649f 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/ActionMap/InputActions.inputactions +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/ActionMap/InputActions.inputactions @@ -349,9 +349,9 @@ }, { "name": "IsTracked", - "type": "Value", + "type": "Button", "id": "384094ab-6290-4de1-9b73-6dd7fae94298", - "expectedControlType": "Analog", + "expectedControlType": "Button", "processors": "", "interactions": "", "initialStateCheck": true @@ -1230,9 +1230,9 @@ }, { "name": "IsTracked", - "type": "Value", + "type": "Button", "id": "d1478f77-9424-45e1-bbe0-949fcfaec599", - "expectedControlType": "Analog", + "expectedControlType": "Button", "processors": "", "interactions": "", "initialStateCheck": true diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug.meta new file mode 100644 index 0000000..1bacff8 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa549247e9994a84697e73e6d1288e2b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugIsTrackedOffset.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugIsTrackedOffset.cs new file mode 100644 index 0000000..e228231 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugIsTrackedOffset.cs @@ -0,0 +1,71 @@ +// Copyright HTC Corporation All Rights Reserved. + +using UnityEngine; +using UnityEngine.InputSystem; +using UnityEngine.UI; +using UnityEngine.XR; +using VIVE.OpenXR; + +[RequireComponent(typeof(Text))] +public class DebugIsTrackedOffset : MonoBehaviour +{ + public InputActionReference isTracked1 = null; + public InputActionReference isTracked2 = null; + public InputActionReference isTracked3 = null; + public InputActionReference isTracked4 = null; + + private Text m_Text = null; + private void Start() + { + m_Text = GetComponent(); + } + void Update() + { + if (m_Text == null) { return; } + + m_Text.text = ""; + { + if (OpenXRHelper.GetButton(isTracked1, out bool value, out string msg)) + { + m_Text.text += isTracked1.action.name + ": " + value; + } + else + { + m_Text.text += msg; + } + } + m_Text.text += "\n"; + { + if (OpenXRHelper.GetButton(isTracked2, out bool value, out string msg)) + { + m_Text.text += isTracked2.action.name + ": " + value; + } + else + { + m_Text.text += msg; + } + } + m_Text.text += "\n"; + { + if (OpenXRHelper.GetButton(isTracked3, out bool value, out string msg)) + { + m_Text.text += isTracked3.action.name + ": " + value; + } + else + { + m_Text.text += msg; + } + } + m_Text.text += "\n"; + { + if (OpenXRHelper.GetButton(isTracked4, out bool value, out string msg)) + { + m_Text.text += isTracked4.action.name + ": " + value; + } + else + { + m_Text.text += msg; + } + } + } +} diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugIsTrackedOffset.cs.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugIsTrackedOffset.cs.meta new file mode 100644 index 0000000..b733ef6 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugIsTrackedOffset.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 2c5ffdf8ced75cf41a74cb761a3987dd +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugPoseData.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugPoseData.cs new file mode 100644 index 0000000..6e71407 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugPoseData.cs @@ -0,0 +1,136 @@ +// Copyright HTC Corporation All Rights Reserved. + +using UnityEngine; +using UnityEngine.InputSystem; +using UnityEngine.UI; +using UnityEngine.XR; +using VIVE.OpenXR; + +[RequireComponent(typeof(Text))] +public class DebugPoseData : MonoBehaviour +{ + public string PoseName = ""; + public InputActionReference isTracked = null; + public InputActionReference trackingState = null; + public InputActionReference position = null; + public InputActionReference rotation = null; + public InputActionReference pose = null; + + private Text m_Text = null; + private void Start() + { + m_Text = GetComponent(); + } + + void Update() + { + if (m_Text == null) { return; } + + m_Text.text = PoseName + " ----"; + + if (isTracked != null) + { + m_Text.text += "\nisTracked: "; + { + if (OpenXRHelper.GetButton(isTracked, out bool value, out string msg)) + { + m_Text.text += value; + } + else + { + m_Text.text += msg; + } + } + } + if (trackingState != null) + { + m_Text.text += "\ntrackingState: "; + { + if (OpenXRHelper.GetInteger(trackingState, out InputTrackingState value, out string msg)) + { + m_Text.text += value; + } + else + { + m_Text.text += msg; + } + } + } + if (position != null) + { + m_Text.text += "\nposition: "; + { + if (OpenXRHelper.GetVector3(position, out Vector3 value, out string msg)) + { + m_Text.text += "(" + value.x.ToString("N3") + ", " + value.y.ToString("N3") + ", " + value.z.ToString("N3") + ")"; + } + else + { + m_Text.text += msg; + } + } + } + if (rotation != null) + { + m_Text.text += "\nrotation: "; + { + if (OpenXRHelper.GetQuaternion(rotation, out Quaternion value, out string msg)) + { + m_Text.text += "(" + value.x.ToString("N3") + ", " + value.y.ToString("N3") + ", " + value.z.ToString("N3") + ", " + value.w.ToString("N3") + ")"; + } + else + { + m_Text.text += msg; + } + } + } + + if (pose != null) + { + m_Text.text += "\npose.isTracked: "; + { + if (OpenXRHelper.GetPoseIsTracked(pose, out bool value, out string msg)) + { + m_Text.text += value; + } + else + { + m_Text.text += msg; + } + } + m_Text.text += "\npose.trackingState: "; + { + if (OpenXRHelper.GetPoseTrackingState(pose, out InputTrackingState value, out string msg)) + { + m_Text.text += value; + } + else + { + m_Text.text += msg; + } + } + m_Text.text += "\npose.position: "; + { + if (OpenXRHelper.GetPosePosition(pose, out Vector3 value, out string msg)) + { + m_Text.text += "(" + value.x.ToString("N3") + ", " + value.y.ToString("N3") + ", " + value.z.ToString("N3") + ")"; + } + else + { + m_Text.text += msg; + } + } + m_Text.text += "\npose.rotation: "; + { + if (OpenXRHelper.GetPoseRotation(pose, out Quaternion value, out string msg)) + { + m_Text.text += "(" + value.x.ToString("N3") + ", " + value.y.ToString("N3") + ", " + value.z.ToString("N3") + ", " + value.w.ToString("N3") + ")"; + } + else + { + m_Text.text += msg; + } + } + } + } +} diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugPoseData.cs.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugPoseData.cs.meta new file mode 100644 index 0000000..64d5bf0 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/Debug/DebugPoseData.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 04725f4c022874d40a6e786b002b782a +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/HideObjectWhenUntracked.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/HideObjectWhenUntracked.cs index c769031..88738d0 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/HideObjectWhenUntracked.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Commons/Script/HideObjectWhenUntracked.cs @@ -111,7 +111,14 @@ namespace VIVE.OpenXR.Samples rotationTracked = ((uint)trackingState & (uint)InputTrackingState.Rotation) != 0; bool tracked = isActive /*&& positionTracked */&& rotationTracked; // Show the object with 3DoF. +// Temporary workaround for PC platform: The isTracked value for HandInteractionEXT always returns false. +// For now, forcing it to true using a macro. This will be properly fixed in the next patch. +#if UNITY_STANDALONE + if (IsActive.action.ToString() == "Hand/isTrackedR" || IsActive.action.ToString() == "Hand/isTrackedL") + m_ObjectToHide.SetActive(true); +#else m_ObjectToHide.SetActive(tracked); +#endif } } } diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Scenes/CompositionLayerTest_Equirect.unity b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Scenes/CompositionLayerTest_Equirect.unity new file mode 100644 index 0000000..a5df9fe --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Scenes/CompositionLayerTest_Equirect.unity @@ -0,0 +1,439 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0.18028378, g: 0.22571412, b: 0.30692285, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &165655209 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 165655211} + - component: {fileID: 165655210} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &165655210 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 165655209} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &165655211 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 165655209} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1001 &577647561 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 7207139244497761804, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_Name + value: VRSRig_withController + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244497761807, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244786812522, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_ClearFlags + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7207139244786812522, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_BackGroundColor.b + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244786812522, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_BackGroundColor.g + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7207139244786812522, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + propertyPath: m_BackGroundColor.r + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} +--- !u!1 &577647562 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 7207139244497761804, guid: aa6466f3484ac344fb3c59a5b6398f84, type: 3} + m_PrefabInstance: {fileID: 577647561} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1436813407 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 4106666293350236145, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_Name + value: VRSInputManager + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.20003967 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalPosition.y + value: 0.3311797 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalPosition.z + value: 1.3696996 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4106666293350236147, guid: 247f35baba2bd814c96bea592859803d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 247f35baba2bd814c96bea592859803d, type: 3} +--- !u!1 &1888556275 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1888556277} + - component: {fileID: 1888556276} + m_Layer: 0 + m_Name: Underlay + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1888556276 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888556275} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 221c4e845ba39fa4396461ac8c3b9e8e, type: 3} + m_Name: + m_EditorClassIdentifier: + isPreviewingCylinder: 0 + isPreviewingEquirect: 1 + isPreviewingQuad: 0 + generatedPreview: {fileID: 0} + layerType: 2 + compositionDepth: 0 + layerShape: 3 + layerVisibility: 0 + m_QuadWidth: 1 + m_QuadHeight: 1 + m_CylinderRadius: 1 + m_CylinderHeight: 1 + m_CylinderArcLength: 1 + m_EquirectRadius: 10 + m_EquirectScaleX: 1 + m_EquirectScaleY: 1 + m_EquirectBiasX: 0 + m_EquirectBiasY: 0 + m_EquirectCentralHorizontalAngle: 360 + m_EquirectUpperVerticalAngle: 90 + m_EquirectLowerVerticalAngle: -90 + m_CylinderAngleOfArc: 180 + lockMode: 0 + isDynamicLayer: 0 + isExternalSurface: 0 + isCustomRects: 0 + customRects: 2 + externalSurfaceWidth: 1280 + externalSurfaceHeight: 720 + applyColorScaleBias: 0 + solidEffect: 0 + colorScale: {r: 1, g: 1, b: 1, a: 1} + colorBias: {r: 0, g: 0, b: 0, a: 0} + isProtectedSurface: 0 + texture: {fileID: 2800000, guid: 536e6f3c92ead484baf6cebabecc58a7, type: 3} + textureRight: {fileID: 0} + renderPriority: 0 + trackingOrigin: {fileID: 577647562} + generatedUnderlayMesh: {fileID: 0} + generatedFallbackMesh: {fileID: 0} + hmd: {fileID: 0} +--- !u!4 &1888556277 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888556275} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Scenes/CompositionLayerTest_Equirect.unity.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Scenes/CompositionLayerTest_Equirect.unity.meta new file mode 100644 index 0000000..0a4e279 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Scenes/CompositionLayerTest_Equirect.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c44817993abad6145928810ed11e7e49 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Textures/pixel360.jpg b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Textures/pixel360.jpg new file mode 100644 index 0000000..faba802 Binary files /dev/null and b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Textures/pixel360.jpg differ diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Textures/pixel360.jpg.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Textures/pixel360.jpg.meta new file mode 100644 index 0000000..f659f1c --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/CompositionLayer2/Textures/pixel360.jpg.meta @@ -0,0 +1,135 @@ +fileFormatVersion: 2 +guid: 536e6f3c92ead484baf6cebabecc58a7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 1 + lightmap: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 0 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 4096 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Avatar_Shieh_V2.fbx b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Avatar_Shieh_V2.fbx index 62533df..1ff7c8b 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Avatar_Shieh_V2.fbx +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Avatar_Shieh_V2.fbx @@ -1,9224 +1,9224 @@ -; FBX 7.4.0 project file -; ---------------------------------------------------- - -FBXHeaderExtension: { - FBXHeaderVersion: 1003 - FBXVersion: 7400 - CreationTimeStamp: { - Version: 1000 - Year: 2019 - Month: 7 - Day: 9 - Hour: 10 - Minute: 54 - Second: 25 - Millisecond: 368 - } - Creator: "FBX SDK/FBX Plugins version 2018.1.1" - SceneInfo: "SceneInfo::GlobalInfo", "UserData" { - Type: "UserData" - Version: 100 - MetaData: { - Version: 100 - Title: "" - Subject: "" - Author: "" - Keywords: "" - Revision: "" - Comment: "" - } - Properties70: { - P: "DocumentUrl", "KString", "Url", "", "D:\MAYA\scenes\Head\_output190709\Avatar_Shieh_V2.fbx" - P: "SrcDocumentUrl", "KString", "Url", "", "D:\MAYA\scenes\Head\_output190709\Avatar_Shieh_V2.fbx" - P: "Original", "Compound", "", "" - P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" - P: "Original|ApplicationName", "KString", "", "", "Maya" - P: "Original|ApplicationVersion", "KString", "", "", "201802" - P: "Original|DateTime_GMT", "DateTime", "", "", "09/07/2019 02:54:25.363" - P: "Original|FileName", "KString", "", "", "D:\MAYA\scenes\Head\_output190709\Avatar_Shieh_V2.fbx" - P: "LastSaved", "Compound", "", "" - P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" - P: "LastSaved|ApplicationName", "KString", "", "", "Maya" - P: "LastSaved|ApplicationVersion", "KString", "", "", "201802" - P: "LastSaved|DateTime_GMT", "DateTime", "", "", "09/07/2019 02:54:25.363" - P: "Original|ApplicationActiveProject", "KString", "", "", "D:\MAYA\scenes\Head\_output190709" - P: "Original|ApplicationNativeFile", "KString", "", "", "D:\MAYA\scenes\Head\Head_B_V3_190709_50.ma" - } - } -} -GlobalSettings: { - Version: 1000 - Properties70: { - P: "UpAxis", "int", "Integer", "",1 - P: "UpAxisSign", "int", "Integer", "",1 - P: "FrontAxis", "int", "Integer", "",2 - P: "FrontAxisSign", "int", "Integer", "",1 - P: "CoordAxis", "int", "Integer", "",0 - P: "CoordAxisSign", "int", "Integer", "",1 - P: "OriginalUpAxis", "int", "Integer", "",1 - P: "OriginalUpAxisSign", "int", "Integer", "",1 - P: "UnitScaleFactor", "double", "Number", "",1 - P: "OriginalUnitScaleFactor", "double", "Number", "",1 - P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 - P: "DefaultCamera", "KString", "", "", "Producer Perspective" - P: "TimeMode", "enum", "", "",11 - P: "TimeProtocol", "enum", "", "",2 - P: "SnapOnFrameMode", "enum", "", "",0 - P: "TimeSpanStart", "KTime", "Time", "",1924423250 - P: "TimeSpanStop", "KTime", "Time", "",384884650000 - P: "CustomFrameRate", "double", "Number", "",-1 - P: "TimeMarker", "Compound", "", "" - P: "CurrentTimeMarker", "int", "Integer", "",-1 - } -} - -; Documents Description -;------------------------------------------------------------------ - -Documents: { - Count: 1 - Document: 2805540295936, "", "Scene" { - Properties70: { - P: "SourceObject", "object", "", "" - P: "ActiveAnimStackName", "KString", "", "", "Take 001" - } - RootNode: 0 - } -} - -; Document References -;------------------------------------------------------------------ - -References: { -} - -; Object definitions -;------------------------------------------------------------------ - -Definitions: { - Version: 100 - Count: 119 - ObjectType: "GlobalSettings" { - Count: 1 - } - ObjectType: "Geometry" { - Count: 55 - PropertyTemplate: "FbxMesh" { - Properties70: { - P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 - P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 - P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 - P: "Primary Visibility", "bool", "", "",1 - P: "Casts Shadows", "bool", "", "",1 - P: "Receive Shadows", "bool", "", "",1 - } - } - } - ObjectType: "Material" { - Count: 3 - PropertyTemplate: "FbxSurfaceLambert" { - Properties70: { - P: "ShadingModel", "KString", "", "", "Lambert" - P: "MultiLayer", "bool", "", "",0 - P: "EmissiveColor", "Color", "", "A",0,0,0 - P: "EmissiveFactor", "Number", "", "A",1 - P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 - P: "AmbientFactor", "Number", "", "A",1 - P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 - P: "DiffuseFactor", "Number", "", "A",1 - P: "Bump", "Vector3D", "Vector", "",0,0,0 - P: "NormalMap", "Vector3D", "Vector", "",0,0,0 - P: "BumpFactor", "double", "Number", "",1 - P: "TransparentColor", "Color", "", "A",0,0,0 - P: "TransparencyFactor", "Number", "", "A",0 - P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 - P: "DisplacementFactor", "double", "Number", "",1 - P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 - P: "VectorDisplacementFactor", "double", "Number", "",1 - } - } - } - ObjectType: "Texture" { - Count: 2 - PropertyTemplate: "FbxFileTexture" { - Properties70: { - P: "TextureTypeUse", "enum", "", "",0 - P: "Texture alpha", "Number", "", "A",1 - P: "CurrentMappingType", "enum", "", "",0 - P: "WrapModeU", "enum", "", "",0 - P: "WrapModeV", "enum", "", "",0 - P: "UVSwap", "bool", "", "",0 - P: "PremultiplyAlpha", "bool", "", "",1 - P: "Translation", "Vector", "", "A",0,0,0 - P: "Rotation", "Vector", "", "A",0,0,0 - P: "Scaling", "Vector", "", "A",1,1,1 - P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 - P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 - P: "CurrentTextureBlendMode", "enum", "", "",1 - P: "UVSet", "KString", "", "", "default" - P: "UseMaterial", "bool", "", "",0 - P: "UseMipMap", "bool", "", "",0 - } - } - } - ObjectType: "Model" { - Count: 3 - PropertyTemplate: "FbxNode" { - Properties70: { - P: "QuaternionInterpolate", "enum", "", "",0 - P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 - P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 - P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 - P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 - P: "TranslationActive", "bool", "", "",0 - P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 - P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 - P: "TranslationMinX", "bool", "", "",0 - P: "TranslationMinY", "bool", "", "",0 - P: "TranslationMinZ", "bool", "", "",0 - P: "TranslationMaxX", "bool", "", "",0 - P: "TranslationMaxY", "bool", "", "",0 - P: "TranslationMaxZ", "bool", "", "",0 - P: "RotationOrder", "enum", "", "",0 - P: "RotationSpaceForLimitOnly", "bool", "", "",0 - P: "RotationStiffnessX", "double", "Number", "",0 - P: "RotationStiffnessY", "double", "Number", "",0 - P: "RotationStiffnessZ", "double", "Number", "",0 - P: "AxisLen", "double", "Number", "",10 - P: "PreRotation", "Vector3D", "Vector", "",0,0,0 - P: "PostRotation", "Vector3D", "Vector", "",0,0,0 - P: "RotationActive", "bool", "", "",0 - P: "RotationMin", "Vector3D", "Vector", "",0,0,0 - P: "RotationMax", "Vector3D", "Vector", "",0,0,0 - P: "RotationMinX", "bool", "", "",0 - P: "RotationMinY", "bool", "", "",0 - P: "RotationMinZ", "bool", "", "",0 - P: "RotationMaxX", "bool", "", "",0 - P: "RotationMaxY", "bool", "", "",0 - P: "RotationMaxZ", "bool", "", "",0 - P: "InheritType", "enum", "", "",0 - P: "ScalingActive", "bool", "", "",0 - P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 - P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 - P: "ScalingMinX", "bool", "", "",0 - P: "ScalingMinY", "bool", "", "",0 - P: "ScalingMinZ", "bool", "", "",0 - P: "ScalingMaxX", "bool", "", "",0 - P: "ScalingMaxY", "bool", "", "",0 - P: "ScalingMaxZ", "bool", "", "",0 - P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 - P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 - P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 - P: "MinDampRangeX", "double", "Number", "",0 - P: "MinDampRangeY", "double", "Number", "",0 - P: "MinDampRangeZ", "double", "Number", "",0 - P: "MaxDampRangeX", "double", "Number", "",0 - P: "MaxDampRangeY", "double", "Number", "",0 - P: "MaxDampRangeZ", "double", "Number", "",0 - P: "MinDampStrengthX", "double", "Number", "",0 - P: "MinDampStrengthY", "double", "Number", "",0 - P: "MinDampStrengthZ", "double", "Number", "",0 - P: "MaxDampStrengthX", "double", "Number", "",0 - P: "MaxDampStrengthY", "double", "Number", "",0 - P: "MaxDampStrengthZ", "double", "Number", "",0 - P: "PreferedAngleX", "double", "Number", "",0 - P: "PreferedAngleY", "double", "Number", "",0 - P: "PreferedAngleZ", "double", "Number", "",0 - P: "LookAtProperty", "object", "", "" - P: "UpVectorProperty", "object", "", "" - P: "Show", "bool", "", "",1 - P: "NegativePercentShapeSupport", "bool", "", "",1 - P: "DefaultAttributeIndex", "int", "Integer", "",-1 - P: "Freeze", "bool", "", "",0 - P: "LODBox", "bool", "", "",0 - P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 - P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 - P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 - P: "Visibility", "Visibility", "", "A",1 - P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 - } - } - } - ObjectType: "Deformer" { - Count: 53 - } - ObjectType: "Video" { - Count: 2 - PropertyTemplate: "FbxVideo" { - Properties70: { - P: "Path", "KString", "XRefUrl", "", "" - P: "RelPath", "KString", "XRefUrl", "", "" - P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 - P: "ClipIn", "KTime", "Time", "",0 - P: "ClipOut", "KTime", "Time", "",0 - P: "Offset", "KTime", "Time", "",0 - P: "PlaySpeed", "double", "Number", "",0 - P: "FreeRunning", "bool", "", "",0 - P: "Loop", "bool", "", "",0 - P: "Mute", "bool", "", "",0 - P: "AccessMode", "enum", "", "",0 - P: "ImageSequence", "bool", "", "",0 - P: "ImageSequenceOffset", "int", "Integer", "",0 - P: "FrameRate", "double", "Number", "",0 - P: "LastFrame", "int", "Integer", "",0 - P: "Width", "int", "Integer", "",0 - P: "Height", "int", "Integer", "",0 - P: "StartFrame", "int", "Integer", "",0 - P: "StopFrame", "int", "Integer", "",0 - P: "InterlaceMode", "enum", "", "",0 - } - } - } -} - -; Object properties -;------------------------------------------------------------------ - -Objects: { - Geometry: 2807092188944, "Geometry::", "Mesh" { - Vertices: *26400 { - a: -2.20561385154724,-7.55881834030151,3.85040068626404,1.11758708953857e-08,-7.393798828125,2.58472013473511,2.20560598373413,-7.55881834030151,3.85040068626404,1.47968745231628,-7.44051265716553,4.68008899688721,0.00168840959668159,-7.73218679428101,6.14038419723511,-1.47959971427917,-7.44051265716553,4.68008899688721,-1.84245872497559,-7.28768444061279,3.78343915939331,1.11758708953857e-08,-6.99806213378906,2.65426874160767,1.84254705905914,-7.28768444061279,3.78343915939331,0.97236156463623,-7.09157943725586,4.75699758529663,1.11758708953857e-08,-7.37500238418579,6.05133152008057,-0.972170412540436,-7.09157943725586,4.75719547271729,-1.69072318077087,-6.53853034973145,3.82911109924316,1.11758708953857e-08,-5.49669694900513,3.19840335845947,1.69081854820251,-6.53853034973145,3.82911109924316,1.11758708953857e-08,-7.25841522216797,6.15898752212524,-2.20193386077881,-6.2309455871582,4.42866897583008,1.11758708953857e-08,-5.09460544586182,4.39045810699463,2.2020218372345,-6.2309455871582,4.42866897583008,8.04662704467773e-07,-7.19568300247192,6.45229959487915,-2.56345129013062,-6.40943765640259,5.7252893447876,8.06525349617004e-07,-5.44608068466187,5.78538513183594,2.56353855133057,-6.40943670272827,5.7252893447876,-1.9613653421402e-06,-7.13139009475708,7.08588409423828,-2.1652569770813,-6.73461484909058,7.01464605331421,-1.96322798728943e-06,-6.04623556137085,7.05802536010742,2.16534996032715,-6.73461484909058,7.01464605331421,1.30385160446167e-08,-7.20962953567505,8.31943321228027,-1.74206614494324,-6.85715103149414,8.32787036895752,1.86264514923096e-08,-6.20600748062134,8.36826419830322,1.74215364456177,-6.85715103149414,8.32787036895752,9.59131866693497e-05,-7.08725166320801,9.02095317840576,-1.62396132946014,-6.70060634613037,8.97737503051758,2.60770320892334e-08,-6.24098062515259,9.0377721786499,1.62405669689178,-6.70060634613037,8.97737503051758,2.23517417907715e-08,-6.76416397094727,9.61794853210449,-1.37005531787872,-6.56096315383911,9.25986766815186,7.45058059692383e-09,-6.49117183685303,9.55245876312256, -1.37004768848419,-6.56096315383911,9.25986766815186,-1.44457459449768,-7.58153533935547,5.14104890823364,-0.9002406001091,-7.3217248916626,5.17448139190674,1.45441734790802,-7.58011674880981,5.12831449508667,0.903211355209351,-7.32120132446289,5.17060279846191,0.000294709578156471,-7.5031795501709,6.07989025115967,0.853564560413361,-7.6777868270874,5.74707794189453,-1.58396697044373,-7.38469314575195,4.46597146987915,-2.07119846343994,-7.4956841468811,3.82432270050049,-1.67361581325531,-7.19581317901611,3.40515518188477,-1.99587833881378,-7.51313829421997,3.45729374885559,-1.87937188148499,-7.44897079467773,3.43072605133057,-1.28717541694641,-7.05426740646362,2.89086866378784,-1.52665853500366,-7.43935537338257,2.92171239852905,-1.44457459449768,-7.37365865707397,2.8933527469635,-0.356297165155411,-7.0008864402771,2.66660475730896,1.11758708953857e-08,-7.33208322525024,2.58680605888367,-0.398880302906036,-7.39663648605347,2.60541772842407,-0.385843485593796,-7.33465957641602,2.60481357574463,0.356385409832001,-7.0008864402771,2.66660475730896,0.398968517780304,-7.39663648605347,2.60541772842407,0.385938733816147,-7.33465957641602,2.60481357574463,0.931968808174133,-7.01935911178589,2.75415992736816,1.06967282295227,-7.41471004486084,2.74251675605774,1.02439820766449,-7.35030841827393,2.72650170326233,1.67370414733887,-7.19581317901611,3.40515518188477,2.07119059562683,-7.4956841468811,3.82432270050049,1.99597156047821,-7.51313829421997,3.45729374885559,1.87945938110352,-7.44897079467773,3.43072605133057,1.84851944446564,-7.32399702072144,4.03646373748779,1.19264400005341,-7.45248460769653,5.04235172271729,0.536871254444122,-7.42240190505981,5.65583610534668,0.00118720903992653,-7.54047012329102,6.09481477737427,0.6977578997612,-7.47456359863281,5.68389320373535,-1.18589019775391,-7.45350360870361,5.0510082244873,-1.24618482589722,-7.28002548217773,4.6158127784729,-1.28230130672455,-6.95214891433716,4.41662740707397,-1.36965775489807,-7.21366739273071,4.41115522384644,-1.69401180744171,-6.91580724716187,3.76453351974487, --1.54417049884796,-6.17129611968994,3.58296155929565,-1.52227795124054,-6.69316339492798,3.43530464172363,-1.18429696559906,-5.62808990478516,3.26835012435913,-1.14380133152008,-6.35888004302979,2.99662971496582,-0.323063969612122,-5.49245309829712,3.20029830932617,1.11758708953857e-08,-6.24264049530029,2.84798264503479,-0.319679498672485,-6.24762725830078,2.85395646095276,0.323159217834473,-5.49245309829712,3.20029830932617,0.319774717092514,-6.24762725830078,2.85395646095276,0.855458796024323,-5.51811790466309,3.21482467651367,0.834960639476776,-6.28420209884644,2.90121388435364,1.54416286945343,-6.17129611968994,3.58296155929565,1.69409930706024,-6.91580724716187,3.76453351974487,1.52237331867218,-6.69316339492798,3.43530464172363,1.6507203578949,-6.70535469055176,4.0238151550293,1.67897582054138,-7.01102495193481,3.99526405334473,0.65099436044693,-7.23099279403687,5.74190139770508,1.11758708953857e-08,-7.34452486038208,6.08436584472656,0.496972024440765,-7.28906583786011,5.58678865432739,0.573584914207458,-7.2930850982666,5.62748336791992,-0.651002109050751,-7.23099279403687,5.74190139770508,-0.496884495019913,-7.3153657913208,5.58678865432739,-0.573496699333191,-7.3075385093689,5.62748336791992,-1.59690010547638,-6.81990766525269,4.75739574432373,-1.40438055992126,-6.9168062210083,4.51631927490234,-1.89737868309021,-6.31397104263306,4.03864431381226,-2.25237727165222,-5.75051593780518,4.4042911529541,-1.85787761211395,-5.86022520065308,3.91029715538025,-2.02602958679199,-5.05770492553711,4.40179824829102,-1.57918798923492,-5.20232200622559,3.76344752311707,-0.526733219623566,-5.01966571807861,4.39592885971069,1.11758708953857e-08,-5.19142580032349,3.73607873916626,-0.413303762674332,-5.15330791473389,3.73886561393738,0.526724815368652,-5.01966571807861,4.39592885971069,0.413399010896683,-5.15330791473389,3.73886561393738,1.42237913608551,-4.90157604217529,4.40229988098145,1.11483681201935,-5.09427881240845,3.74234175682068,2.25246548652649,-5.75051593780518,4.4042911529541,1.89746618270874,-6.31397104263306,4.03864431381226, -1.85797297954559,-5.86022520065308,3.91029715538025,2.06780624389648,-6.49439334869385,4.50477981567383,1.81100928783417,-6.54084444046021,4.17634010314941,0.634754657745361,-7.25804138183594,6.21998596191406,1.11758708953857e-08,-7.23713541030884,6.2774829864502,0.673181593418121,-7.19702625274658,5.94009971618652,-0.634660303592682,-7.25804138183594,6.21998596191406,-0.67308646440506,-7.19702625274658,5.94009971618652,-1.68497049808502,-7.04350662231445,5.74041223526001,-1.72107303142548,-6.88279008865356,5.18751001358032,-2.49236273765564,-6.27856779098511,5.03469085693359,-2.5368754863739,-6.03180265426636,5.74866342544556,-2.51643776893616,-5.83238506317139,5.05190086364746,-2.17221999168396,-5.44589185714722,5.80348682403564,-2.22282409667969,-5.17011499404907,5.10324335098267,-0.599396169185638,-5.35535335540771,5.79204988479614,1.11758708953857e-08,-5.21460676193237,5.09100389480591,-0.599459707736969,-5.12091732025146,5.09786796569824,0.599491238594055,-5.35535335540771,5.79204988479614,0.599554896354675,-5.12091732025146,5.09786796569824,1.56813263893127,-5.23162984848022,5.81542491912842,1.58694541454315,-4.97921657562256,5.1134934425354,2.53696942329407,-6.03180265426636,5.74866342544556,2.49245023727417,-6.27856922149658,5.03469085693359,2.51642918586731,-5.83238506317139,5.05190086364746,2.38370156288147,-6.64376354217529,5.72070932388306,2.32898235321045,-6.54328346252441,5.06125783920288,0.521597564220428,-7.13768863677979,7.06160926818848,7.45058059692383e-09,-7.16142129898071,6.69556427001953,0.577662348747253,-7.20352935791016,6.57975387573242,-0.521502375602722,-7.13768863677979,7.06160926818848,-0.577574908733368,-7.20353078842163,6.57975387573242,-1.33156526088715,-7.01338195800781,7.01076078414917,-1.52168095111847,-7.02463388442993,6.35021686553955,-2.40012431144714,-6.5769100189209,6.36871767044067,-2.19198846817017,-6.48812532424927,7.03165674209595,-2.38888716697693,-6.2747106552124,6.39011573791504,-1.88767445087433,-6.0833797454834,7.07045936584473,-2.03816485404968,-5.7905478477478,6.43836975097656, --0.466896057128906,-6.00877952575684,7.06070995330811,1.11758708953857e-08,-5.76417684555054,6.42135143280029,-0.53867095708847,-5.70105600357056,6.42603397369385,0.466884106397629,-6.00877857208252,7.06070995330811,0.538766145706177,-5.70105600357056,6.42603397369385,1.29435610771179,-5.9516339302063,7.07633543014526,1.44148409366608,-5.61338472366333,6.44762468338013,2.19208335876465,-6.48812532424927,7.03165721893311,2.40021944046021,-6.5769100189209,6.36871814727783,2.38897466659546,-6.27470970153809,6.39011573791504,1.94195330142975,-6.85132026672363,7.008873462677,2.19764924049377,-6.75193119049072,6.35787868499756,0.421458095312119,-7.17161130905151,8.32438945770264,1.54599547386169e-07,-7.18281507492065,7.7015585899353,0.466556072235107,-7.16426038742065,7.70742654800415,-0.42136287689209,-7.17161130905151,8.32438945770264,-0.46646437048912,-7.16426038742065,7.70742702484131,-1.04808330535889,-7.07631254196167,8.33266925811768,-1.16863262653351,-7.05757474899292,7.71608352661133,-1.93437969684601,-6.83662509918213,7.71270751953125,-1.76872980594635,-6.62286710739136,8.34369564056396,-1.97344052791595,-6.598717212677,7.72880935668945,-1.51879835128784,-6.2346658706665,8.37316417694092,-1.70764362812042,-6.20324277877808,7.76234436035156,-0.378779828548431,-6.15517473220825,8.37195110321045,1.564621925354e-07,-6.16943311691284,7.75429582595825,-0.418336749076843,-6.12887716293335,7.75727415084839,0.378772228956223,-6.15517473220825,8.37195110321045,0.41842845082283,-6.12887716293335,7.75727415084839,1.04350340366364,-6.09586668014526,8.37963199615479,1.16511857509613,-6.07379770278931,7.76822328567505,1.76882433891296,-6.62286710739136,8.34369564056396,1.93447840213776,-6.83662509918213,7.71270751953125,1.97343301773071,-6.598717212677,7.72880935668945,1.54127979278564,-6.93885707855225,8.32590007781982,1.71464705467224,-6.92810916900635,7.7096266746521,0.393297791481018,-7.03700351715088,9.02017688751221,9.5907598733902e-05,-7.12616014480591,8.71630191802979,0.409218043088913,-7.09575176239014,8.71958446502686, --0.393210381269455,-7.03700351715088,9.02017688751221,-0.409026771783829,-7.09575176239014,8.71958446502686,-0.985701501369476,-6.92965698242188,9.01062870025635,-1.01585257053375,-7.00846099853516,8.72686672210693,-1.68028199672699,-6.76897573471069,8.72525310516357,-1.58536005020142,-6.52975177764893,8.98324489593506,-1.67490613460541,-6.57590389251709,8.73828983306885,-1.27165353298187,-6.26526165008545,9.01498699188232,-1.39621770381927,-6.26227188110352,8.76159000396729,-0.309636563062668,-6.19683980941772,9.03926277160645,0,-6.22807645797729,8.75779438018799,-0.346151351928711,-6.18072891235352,8.7612943649292,0.309724122285843,-6.19683980941772,9.03926277160645,0.346238911151886,-6.18072891235352,8.7612943649292,0.859632849693298,-6.15256404876709,9.0378885269165,0.955446779727936,-6.13408708572388,8.76726055145264,1.58545589447021,-6.52975177764893,8.98324489593506,1.68036961555481,-6.76897573471069,8.72525310516357,1.67489850521088,-6.57590389251709,8.73828983306885,1.45610642433167,-6.77181625366211,8.98635387420654,1.49471497535706,-6.83583641052246,8.7235860824585,0.306737929582596,-6.74567651748657,9.60250282287598,9.59187746047974e-05,-7.02291202545166,9.36224460601807,0.353700906038284,-6.96546745300293,9.35316753387451,-0.306650370359421,-6.74567651748657,9.60250282287598,-0.353510230779648,-6.96546745300293,9.35316753387451,-0.8187535405159,-6.65372276306152,9.5063943862915,-0.911876022815704,-6.85465049743652,9.29568195343018,-1.51511836051941,-6.62728452682495,9.1566858291626,-1.3077700138092,-6.4772367477417,9.27417469024658,-1.4623818397522,-6.48657464981079,9.1497049331665,-1.06280851364136,-6.37585878372192,9.35506343841553,-1.13644230365753,-6.28286790847778,9.22085952758789,-0.253220081329346,-6.47053575515747,9.54410266876221,1.49011611938477e-08,-6.29512596130371,9.32282543182373,-0.272723466157913,-6.26105451583862,9.32003879547119,0.253308296203613,-6.47053194046021,9.54410266876221,0.272811710834503,-6.26105356216431,9.32004070281982,0.694270491600037,-6.40034770965576,9.49288272857666, -0.754867374897003,-6.21334457397461,9.2980489730835,1.30776238441467,-6.47723531723022,9.27417373657227,1.51520609855652,-6.62728452682495,9.15668678283691,1.46247708797455,-6.48657464981079,9.14970684051514,1.24786555767059,-6.59028768539429,9.33976078033447,1.36636054515839,-6.69525003433228,9.19785594940186,0,-6.62430667877197,9.66608905792236,-0.268837779760361,-6.60856199264526,9.65225410461426,-0.694182276725769,-6.40034770965576,9.49288272857666,-0.730793058872223,-6.53739023208618,9.56720447540283,0.268932998180389,-6.60855960845947,9.65225410461426,1.06290423870087,-6.37585878372192,9.35506343841553,1.1233971118927,-6.48240661621094,9.39338970184326,1.52675318717957,-7.43935537338257,2.92171239852905,1.28736650943756,-7.05426740646362,2.89086866378784,1.44456624984741,-7.37365865707397,2.8933527469635,1.582963347435,-7.38481760025024,4.46746826171875,1.18438529968262,-5.62808990478516,3.26835012435913,1.14379298686981,-6.35888004302979,2.99662971496582,2.02611494064331,-5.05770492553711,4.40179824829102,1.5791882276535,-5.20232200622559,3.76344752311707,2.17231440544128,-5.44589185714722,5.80348682403564,2.22281551361084,-5.17011499404907,5.10324287414551,1.88776242733002,-6.0833797454834,7.07045936584473,2.038250207901,-5.7905478477478,6.43836975097656,1.51889288425446,-6.2346658706665,8.37316513061523,1.70774281024933,-6.20324277877808,7.76234436035156,1.27174186706543,-6.26526165008545,9.01498889923096,1.39620971679688,-6.26227188110352,8.76158905029297,1.13652980327606,-6.28286790847778,9.22086048126221,0.818841814994812,-6.65372276306152,9.5063943862915,0.730983376502991,-6.53738880157471,9.56720352172852,0.985796689987183,-6.92965698242188,9.01062870025635,0.911971151828766,-6.85465049743652,9.29568195343018,1.04817938804626,-7.07631254196167,8.33266925811768,1.01594078540802,-7.00846099853516,8.72686672210693,1.33166062831879,-7.01338195800781,7.01076078414917,1.16872358322144,-7.05757474899292,7.71608400344849,1.68505799770355,-7.04350662231445,5.74041223526001,1.52177619934082,-7.02463531494141,6.35021686553955, -1.59699547290802,-6.81990766525269,4.75739574432373,1.72116076946259,-6.88279008865356,5.18751049041748,1.28238952159882,-6.95214891433716,4.41662740707397,1.404372215271,-6.9168062210083,4.51631927490234,1.2474672794342,-7.27987432479858,4.61432313919067,1.3696494102478,-7.21366739273071,4.41115522384644,-1.848424077034,-7.32399702072144,4.03646373748779,-1.06948161125183,-7.41471004486084,2.74251675605774,-0.931777715682983,-7.01935911178589,2.75415992736816,-1.02440583705902,-7.35030841827393,2.72650170326233,-1.65063214302063,-6.70535469055176,4.0238151550293,-1.67888832092285,-7.01102495193481,3.99526405334473,-2.06771111488342,-6.49439334869385,4.50477981567383,-1.81091451644897,-6.54084444046021,4.17634010314941,-2.38361358642578,-6.64376354217529,5.72070932388306,-2.32899022102356,-6.54328346252441,5.06125783920288,-1.94186580181122,-6.85131883621216,7.008873462677,-2.19755387306213,-6.75193119049072,6.35787868499756,-1.5412871837616,-6.93885707855225,8.32589912414551,-1.7145482301712,-6.92810916900635,7.70962762832642,-1.4561140537262,-6.77181911468506,8.98635387420654,-1.49461960792542,-6.83583641052246,8.72358512878418,-1.24777030944824,-6.59028768539429,9.33976078033447,-1.36627316474915,-6.69525003433228,9.19785594940186,-1.12330186367035,-6.48240661621094,9.39338970184326,-0.859544932842255,-6.15256404876709,9.0378885269165,-0.754772245883942,-6.21334457397461,9.29805088043213,-1.04340803623199,-6.09586668014526,8.37963199615479,-0.955358564853668,-6.13408708572388,8.76726055145264,-1.29436814785004,-5.9516339302063,7.07633590698242,-1.16501939296722,-6.07379770278931,7.76822280883789,-1.56803739070892,-5.23162984848022,5.81542491912842,-1.44138872623444,-5.61338424682617,6.44762468338013,-1.42229068279266,-4.90157604217529,4.40229988098145,-1.58695316314697,-4.97921657562256,5.1134934425354,-0.855364322662354,-5.51811790466309,3.21482467651367,-1.11474847793579,-5.09427881240845,3.74234175682068,-0.834968388080597,-6.28420209884644,2.90121388435364,-0.846810936927795,-7.67880582809448,5.75583028793335, --0.53558886051178,-7.43568325042725,5.65733289718628,-0.69318687915802,-7.47556591033936,5.68966674804688,-5.06172609329224,0.722357153892517,8.31211757659912,-4.96826219558716,0.804025232791901,8.43973159790039,-4.89786577224731,0.905931532382965,8.54976654052734,-4.73986864089966,1.11957097053528,8.76476669311523,-4.53224754333496,1.26109647750854,8.94384860992432,-4.3298397064209,1.33957314491272,9.07678604125977,-4.05036020278931,1.41884458065033,9.19754981994629,-3.66671991348267,1.48115682601929,9.24205684661865,-3.23053550720215,1.44888138771057,9.26728057861328,-2.77981758117676,1.31160473823547,9.2496395111084,-2.40774464607239,1.09070861339569,9.21471786499023,-2.13073706626892,0.846117198467255,9.07898616790771,-1.99557781219482,0.579079151153564,8.9521427154541,-1.94327652454376,0.477810263633728,8.93542671203613,-1.90612649917603,0.391817569732666,9.17814159393311,-1.98969197273254,0.482903599739075,9.22632217407227,-2.14296674728394,0.637337803840637,9.37906646728516,-2.33448767662048,0.832436859607697,9.54290580749512,-2.66567206382751,0.98560243844986,9.63003444671631,-3.13725090026855,1.09777176380157,9.66600036621094,-3.77553033828735,1.14031517505646,9.64246463775635,-4.25683403015137,1.10933041572571,9.55359935760498,-4.59434366226196,1.03170120716095,9.40384292602539,-4.78511381149292,0.931740522384644,9.21455097198486,-5.04669570922852,0.812938332557678,8.95227909088135,-5.35321998596191,0.617966175079346,8.62938976287842,-5.41665029525757,0.520399570465088,8.45675945281982,-5.49520778656006,0.46476823091507,8.2722864151001,-5.20562791824341,0.597253680229187,8.26625823974609,-5.11323118209839,0.688520193099976,8.42013263702393,-5.00379705429077,0.789329767227173,8.56112003326416,-4.81226778030396,0.972737848758698,8.7938756942749,-4.59765672683716,1.12432932853699,9.0106086730957,-4.41829538345337,1.19514989852905,9.14549446105957,-4.13964796066284,1.26467823982239,9.30924415588379,-3.7371654510498,1.29511249065399,9.40971755981445,-3.21502137184143,1.24594366550446,9.43244743347168,-2.74473810195923,1.11841833591461,9.39710712432861, --2.40301418304443,0.958635985851288,9.3621244430542,-2.13812756538391,0.756233513355255,9.21322536468506,-2.00341773033142,0.539337038993835,9.08273601531982,-1.923699259758,0.428004831075668,9.04653644561768,-2.04610705375671,0.371692478656769,8.91295719146729,-2.28353071212769,0.253348618745804,8.96965408325195,-2.59925508499146,0.158466219902039,9.10888671875,-2.96751236915588,0.0826774463057518,9.18136787414551,-3.42717480659485,0.00887179374694824,9.2322301864624,-3.99084162712097,0.0388907566666603,9.16523838043213,-4.35178995132446,0.159775257110596,8.95899772644043,-4.56429100036621,0.275825560092926,8.82272434234619,-4.75296974182129,0.408831179141998,8.59839725494385,-4.89068698883057,0.534761786460876,8.44810199737549,-4.99963998794556,0.625198006629944,8.34968090057373,-1.90603375434875,0.342506468296051,9.07817840576172,-2.03210258483887,0.215170934796333,9.06676197052002,-2.24897527694702,0.0789206773042679,9.09784507751465,-2.56849503517151,-0.18522921204567,9.18730354309082,-3.008380651474,-0.312937557697296,9.29741382598877,-3.4803295135498,-0.396937787532806,9.38370418548584,-4.10679531097412,-0.369373470544815,9.33031940460205,-4.54069805145264,-0.37511357665062,9.15563201904297,-4.81606245040894,-0.300997883081436,8.96822547912598,-5.07882785797119,-0.177335992455482,8.76202487945557,-5.24557733535767,-0.0243304893374443,8.56571769714355,-5.29145193099976,0.170305103063583,8.43000316619873,-5.25835466384888,0.440353214740753,8.30957221984863,-5.14703464508057,0.618767261505127,8.34332656860352,-5.13432788848877,0.423882484436035,8.42490100860596,-5.0578236579895,0.250360012054443,8.54831027984619,-4.92229795455933,0.0739419758319855,8.7350435256958,-4.69483327865601,-0.0538720116019249,8.92243099212646,-4.44266986846924,-0.118233919143677,9.09331512451172,-4.04397249221802,-0.170167922973633,9.27809143066406,-3.45109820365906,-0.18191459774971,9.33170986175537,-2.97970366477966,-0.0973856896162033,9.25637912750244,-2.58160448074341,0.0237287506461143,9.1746129989624,-2.30238699913025,0.112591817975044,9.09860706329346, --2.06660008430481,0.302818417549133,9.03805732727051,-1.95992636680603,0.40014836192131,9.04069328308105,5.06172609329224,0.722357153892517,8.31211757659912,4.96825695037842,0.804140210151672,8.43973159790039,4.89786958694458,0.899877607822418,8.54976654052734,4.73985481262207,1.08055102825165,8.76476669311523,4.53223371505737,1.22235512733459,8.94384860992432,4.32982730865479,1.32917857170105,9.08128929138184,4.05035209655762,1.41976273059845,9.20368957519531,3.6667218208313,1.48284244537354,9.24890232086182,3.23057770729065,1.45032286643982,9.27368450164795,2.7798764705658,1.31169068813324,9.25911140441895,2.4075231552124,1.09109342098236,9.22318649291992,2.13080024719238,0.846735417842865,9.08304214477539,1.99557626247406,0.579129099845886,8.9521427154541,1.94327366352081,0.477955341339111,8.93542671203613,1.90612649917603,0.391817569732666,9.17814159393311,1.98969197273254,0.482903599739075,9.22632217407227,2.14319276809692,0.636784553527832,9.37884330749512,2.33383965492249,0.830574452877045,9.55071449279785,2.66558980941772,0.984100222587585,9.63788318634033,3.13734412193298,1.09652185440063,9.66750240325928,3.77553033828735,1.14030373096466,9.64246463775635,4.25682353973389,1.11025595664978,9.55361938476563,4.59434366226196,1.03170120716095,9.40384292602539,4.78511381149292,0.931993722915649,9.21455097198486,5.0466890335083,0.813059747219086,8.95227909088135,5.35321998596191,0.617962598800659,8.62938976287842,5.41665029525757,0.520399570465088,8.45675945281982,5.49520778656006,0.46476823091507,8.2722864151001,5.20562791824341,0.597253680229187,8.26625823974609,5.11323118209839,0.688520014286041,8.42013263702393,5.00378036499023,0.789687156677246,8.56112098693848,4.81218576431274,0.955044686794281,8.79388236999512,4.59757471084595,1.11053204536438,9.01061534881592,4.41855144500732,1.19330763816833,9.14898490905762,4.14055585861206,1.26521980762482,9.31982517242432,3.73798513412476,1.29685819149017,9.41917610168457,3.21511363983154,1.2468409538269,9.43974685668945,2.74470353126526,1.11734592914581,9.40608215332031, -2.40258526802063,0.959394812583923,9.37080383300781,2.13817691802979,0.757858157157898,9.21584892272949,2.00341868400574,0.539567112922668,9.08273601531982,1.923699259758,0.428004831075668,9.04653644561768,2.04632449150085,0.387154877185822,8.91485786437988,2.28353071212769,0.310706108808517,8.96965408325195,2.5992534160614,0.215924814343452,9.10888767242432,2.96751356124878,0.0846380293369293,9.18136787414551,3.42717671394348,0.0103797540068626,9.2322301864624,3.99084138870239,0.0400375314056873,9.16523838043213,4.35178995132446,0.159775257110596,8.95899772644043,4.56429100036621,0.275825560092926,8.82272434234619,4.75297212600708,0.408792048692703,8.59839725494385,4.89068698883057,0.534761786460876,8.44810199737549,4.99963998794556,0.625198006629944,8.34968090057373,1.90609359741211,0.342501819133759,9.07816219329834,2.03213763237,0.229229018092155,9.06676197052002,2.24897432327271,0.10893788933754,9.09784507751465,2.56820821762085,-0.175361678004265,9.18730354309082,3.00838160514832,-0.312540471553802,9.29741477966309,3.48032808303833,-0.396675825119019,9.38370418548584,4.1067967414856,-0.369186550378799,9.33031940460205,4.54069805145264,-0.37511345744133,9.15563201904297,4.81606245040894,-0.300997853279114,8.96822547912598,5.07882785797119,-0.177335992455482,8.76202487945557,5.24557733535767,-0.0243304893374443,8.56571769714355,5.2914514541626,0.170305147767067,8.43000316619873,5.25835466384888,0.440353214740753,8.30957221984863,5.14703989028931,0.618678331375122,8.34332656860352,5.13432741165161,0.423882603645325,8.42490005493164,5.0578236579895,0.250356703996658,8.54831027984619,4.92229795455933,0.0739419907331467,8.7350435256958,4.69483327865601,-0.0538720116019249,8.92243099212646,4.44266986846924,-0.118233889341354,9.09331512451172,4.04397392272949,-0.169432491064072,9.27809143066406,3.45109820365906,-0.181085854768753,9.33170986175537,2.97970366477966,-0.0964831635355949,9.25637912750244,2.58158278465271,0.0677021592855453,9.1746129989624,2.30238604545593,0.147187918424606,9.09860706329346,2.06650638580322,0.323853433132172,9.03805732727051, -1.9599461555481,0.402394145727158,9.04069328308105,-5.06172609329224,0.722357153892517,8.31211757659912,-4.96826219558716,0.804025232791901,8.43973159790039,-4.89786577224731,0.905931532382965,8.54976654052734,-4.73986864089966,1.11957097053528,8.76476669311523,-4.53224754333496,1.26109647750854,8.94384860992432,-4.3298397064209,1.33957314491272,9.07678604125977,-4.05036020278931,1.41884458065033,9.19754981994629,-3.66671991348267,1.48115682601929,9.24205684661865,-3.23053550720215,1.44888138771057,9.26728057861328,-2.77981758117676,1.31160473823547,9.2496395111084,-2.40774464607239,1.09070861339569,9.21471786499023,-2.13073706626892,0.846117198467255,9.07898616790771,-1.99557781219482,0.579079151153564,8.9521427154541,-1.94327652454376,0.477810263633728,8.93542671203613,-1.92050635814667,0.376390367746353,9.17739105224609,-2.01061511039734,0.392349869012833,9.29914665222168,-2.10722851753235,0.464855909347534,9.41654491424561,-2.26173424720764,0.577823758125305,9.52799987792969,-2.67719602584839,0.78004789352417,9.63627243041992,-3.19458436965942,0.895462393760681,9.73175048828125,-3.86719489097595,0.878580987453461,9.69486808776855,-4.32197999954224,0.870754241943359,9.52414131164551,-4.62521839141846,0.795515060424805,9.40437412261963,-4.92273664474487,0.675275266170502,9.17812156677246,-5.21259593963623,0.538311421871185,8.9755163192749,-5.38313770294189,0.454435288906097,8.74977397918701,-5.51882171630859,0.388617902994156,8.6369047164917,-5.72771263122559,0.36525622010231,8.48100471496582,-5.33982944488525,0.49470129609108,8.28265953063965,-5.17641878128052,0.524977505207062,8.42637062072754,-4.9685001373291,0.675430774688721,8.58381843566895,-4.816810131073,0.780909359455109,8.80797100067139,-4.70073556900024,0.922541618347168,9.07110977172852,-4.45248794555664,1.04396545886993,9.19352626800537,-4.22670412063599,1.09337437152863,9.37176513671875,-3.76834082603455,1.11796581745148,9.45351791381836,-3.2240355014801,1.13332092761993,9.4781379699707,-2.7093288898468,0.975722014904022,9.45719814300537,-2.36868047714233,0.788046538829803,9.39644622802734, --2.15665364265442,0.626390933990479,9.25687408447266,-2.07413053512573,0.560304760932922,9.1012487411499,-1.94362461566925,0.434865087270737,9.05033111572266,-2.04610705375671,0.371692478656769,8.91295719146729,-2.28353071212769,0.253348618745804,8.96965408325195,-2.59925508499146,0.158466219902039,9.10888671875,-2.96751236915588,0.0826774463057518,9.18136787414551,-3.42717480659485,0.00887179374694824,9.2322301864624,-3.99084162712097,0.0388907566666603,9.16523838043213,-4.35178995132446,0.159775257110596,8.95899772644043,-4.56429100036621,0.275825560092926,8.82272434234619,-4.75296974182129,0.408831179141998,8.59839725494385,-4.89068698883057,0.534761786460876,8.44810199737549,-4.99963998794556,0.625198006629944,8.34968090057373,-1.819544672966,0.332746386528015,9.12087249755859,-1.95276367664337,0.208789318799973,9.111891746521,-2.17895197868347,0.07783043384552,9.14784145355225,-2.51462197303772,-0.154128655791283,9.25709056854248,-2.97713136672974,-0.258224248886108,9.36641788482666,-3.47266983985901,-0.334936112165451,9.46067333221436,-4.13360738754272,-0.311049669981003,9.4065408706665,-4.59399223327637,-0.334189862012863,9.23260974884033,-4.88891649246216,-0.29370054602623,9.04173374176025,-5.17328262329102,-0.203418925404549,8.82977104187012,-5.35396957397461,-0.0898965746164322,8.62385368347168,-5.40528345108032,0.0848260670900345,8.47216510772705,-5.37027978897095,0.29606169462204,8.33026695251465,-5.24378490447998,0.49960070848465,8.34929275512695,-5.23610305786133,0.313517272472382,8.44689750671387,-5.15612459182739,0.167049407958984,8.58322525024414,-5.00866317749023,0.0237278342247009,8.78236389160156,-4.76167154312134,-0.0681835412979126,8.9762077331543,-4.49065446853638,-0.0980744436383247,9.1505184173584,-4.06737947463989,-0.124856069684029,9.33662414550781,-3.44207644462585,-0.133138313889503,9.38938808441162,-2.94531416893005,-0.0453692227602005,9.31126594543457,-2.52663850784302,0.0492033958435059,9.23059463500977,-2.2342426776886,0.113723151385784,9.1454029083252,-1.98812234401703,0.295584678649902,9.07489681243896, --1.87592244148254,0.393911629915237,9.07821559906006,5.06172609329224,0.722357153892517,8.31211757659912,4.96825695037842,0.804140210151672,8.43973159790039,4.89786958694458,0.899877607822418,8.54976654052734,4.73985481262207,1.08055102825165,8.76476669311523,4.53223371505737,1.22235512733459,8.94384860992432,4.32982730865479,1.32917845249176,9.08128929138184,4.05035209655762,1.41976273059845,9.20368957519531,3.6667218208313,1.48284220695496,9.24890232086182,3.23057770729065,1.45032274723053,9.27368450164795,2.7798764705658,1.31169056892395,9.25911140441895,2.4075231552124,1.09109342098236,9.22318649291992,2.13080024719238,0.846735417842865,9.08304214477539,1.99557626247406,0.579129099845886,8.9521427154541,1.94327366352081,0.477955341339111,8.93542671203613,1.92050635814667,0.376390367746353,9.17739105224609,2.01078128814697,0.398333191871643,9.29914665222168,2.10730814933777,0.465470552444458,9.4165506362915,2.26173424720764,0.57753586769104,9.52799987792969,2.67719602584839,0.778857350349426,9.63627243041992,3.19458436965942,0.893792688846588,9.73175048828125,3.86719489097595,0.878005862236023,9.69486808776855,4.32197999954224,0.870738506317139,9.52414131164551,4.62521839141846,0.795515060424805,9.40437412261963,4.9227442741394,0.675184726715088,9.17811012268066,5.21259593963623,0.538311362266541,8.9755163192749,5.38313770294189,0.454435288906097,8.74977397918701,5.51882171630859,0.388617902994156,8.6369047164917,5.72771263122559,0.36525622010231,8.48100471496582,5.33982944488525,0.49470129609108,8.28265953063965,5.17641878128052,0.524977445602417,8.42637062072754,4.9685001373291,0.675430774688721,8.58381843566895,4.81662702560425,0.783759772777557,8.80798530578613,4.70022916793823,0.928933024406433,9.07191753387451,4.452392578125,1.04906845092773,9.19355201721191,4.22708892822266,1.09573435783386,9.37705516815186,3.76872849464417,1.12004625797272,9.45852565765381,3.22415113449097,1.13495206832886,9.4850492477417,2.70907974243164,0.97569477558136,9.46674346923828,2.36844325065613,0.789215624332428,9.40152740478516, -2.15678763389587,0.628417670726776,9.25686073303223,2.07428455352783,0.567350804805756,9.1012487411499,1.94364142417908,0.44374868273735,9.05034065246582,2.04632449150085,0.387154877185822,8.91485786437988,2.28353071212769,0.310706108808517,8.96965408325195,2.5992534160614,0.215924814343452,9.10888767242432,2.96751356124878,0.0846380293369293,9.18136787414551,3.42717671394348,0.0103797540068626,9.2322301864624,3.99084138870239,0.0400375314056873,9.16523838043213,4.35178995132446,0.159775257110596,8.95899772644043,4.56429100036621,0.275825560092926,8.82272434234619,4.75297212600708,0.408792048692703,8.59839725494385,4.89068698883057,0.534761786460876,8.44810199737549,4.99963998794556,0.625198006629944,8.34968090057373,1.819544672966,0.332746386528015,9.12087249755859,1.95275485515594,0.210244223475456,9.111891746521,2.17894005775452,0.0955295860767365,9.14784145355225,2.51435661315918,-0.146545320749283,9.25709056854248,2.97713136672974,-0.257818102836609,9.36641883850098,3.47266840934753,-0.334818124771118,9.46067333221436,4.13360834121704,-0.310933113098145,9.4065408706665,4.59399223327637,-0.334189802408218,9.23260974884033,4.88891649246216,-0.293700516223907,9.04173374176025,5.17328262329102,-0.203418925404549,8.82977104187012,5.35397291183472,-0.0898966118693352,8.62385368347168,5.40528249740601,0.0848260819911957,8.47216510772705,5.37027978897095,0.29606169462204,8.33026695251465,5.24378490447998,0.49960070848465,8.34929275512695,5.23610305786133,0.31351712346077,8.44689655303955,5.15612459182739,0.167049407958984,8.58322525024414,5.00866317749023,0.0237278379499912,8.78236389160156,4.76167011260986,-0.0681825280189514,8.9762077331543,4.49065446853638,-0.0980744361877441,9.1505184173584,4.06737947463989,-0.124312646687031,9.33662414550781,3.44207644462585,-0.132465377449989,9.38938808441162,2.94531297683716,-0.0445554815232754,9.31126594543457,2.52668404579163,0.0854531675577164,9.23058032989502,2.23426508903503,0.139412105083466,9.1454029083252,1.98817443847656,0.301932156085968,9.07488250732422,1.8759183883667,0.393876701593399,9.07821559906006, --7.67204910516739e-05,-6.21619272232056,10.7321262359619,1.44100940227509,-6.14445877075195,10.0975389480591,2.16947197914124,-6.01648330688477,8.95395565032959,2.53911781311035,-5.82994270324707,7.25559616088867,2.57891869544983,-5.80733442306519,6.23576736450195,-7.67204910516739e-05,-3.80944204330444,10.3496856689453,1.5278480052948,-3.72579002380371,9.72752857208252,2.22702193260193,-3.57229733467102,8.59624671936035,2.60987615585327,-3.34418630599976,6.92969751358032,2.67021107673645,-3.42640256881714,5.68099164962769,0.816657483577728,-5.35645294189453,10.4493455886841,0.779641449451447,-6.16896963119507,10.4349269866943,1.42906951904297,-5.26600313186646,10.0664348602295,0.891875088214874,-3.77179098129272,10.0637788772583,-7.67204910516739e-05,-5.3017110824585,10.6879634857178,1.83071231842041,-5.27385139465332,9.57354736328125,1.90362322330475,-6.0930233001709,9.57655906677246,2.11710071563721,-5.30726289749146,8.95762252807617,1.93816781044006,-3.65362906455994,9.1970796585083,2.41996502876282,-5.18281126022339,8.20937538146973,2.41996502876282,-5.96190929412842,8.16780376434326,2.45458650588989,-5.11397838592529,7.30203199386597,2.49120092391968,-3.47505044937134,7.87748861312866,2.59236812591553,-4.84982824325562,6.78690433502197,2.69059181213379,-5.82278871536255,6.72381782531738,2.61266660690308,-5.02046489715576,6.23445129394531,2.64060378074646,-3.26274490356445,6.33746004104614,0.598962008953094,-6.21754217147827,10.7229251861572,0.454018890857697,-5.12842035293579,10.6079740524292,1.90481472015381,-6.16266965866089,9.93728923797607,1.64755916595459,-5.12903833389282,9.83918380737305,2.44256997108459,-6.05743980407715,8.66366481781006,2.31155395507813,-5.04810428619385,8.64824485778809,2.68318843841553,-5.85268306732178,7.05120515823364,2.55034375190735,-4.95216464996338,7.11908721923828,1.20954632759094,-6.19574785232544,10.412353515625,1.20787072181702,-5.09789371490479,10.2298641204834,1.15732860565186,-4.92991161346436,10.3026037216187,1.44515061378479,-4.93363952636719,10.113431930542,1.2184591293335,-3.75024509429932,9.90089416503906, -0.82055675983429,-4.96743249893188,10.475640296936,0.441678166389465,-4.95442533493042,10.6348133087158,0.453381597995758,-3.79537487030029,10.2384967803955,-7.67204910516739e-05,-4.97995138168335,10.7610511779785,2.14702677726746,-6.10758829116821,9.31225490570068,1.95289134979248,-5.00903797149658,9.29726600646973,1.97207474708557,-4.82019233703613,9.32335662841797,2.14917922019958,-4.86429834365845,9.00823211669922,2.05214762687683,-3.59468412399292,8.90334224700928,1.84240961074829,-4.9001030921936,9.60667324066162,1.67239570617676,-4.90209484100342,9.87600612640381,1.76647853851318,-3.68992519378662,9.46966075897217,2.54413270950317,-5.96022415161133,7.76582431793213,2.42593502998352,-4.878662109375,7.82701110839844,2.47942066192627,-4.75098323822021,7.95540571212769,2.53084206581116,-4.73315286636353,7.36377668380737,2.54381346702576,-3.42584323883057,7.51118564605713,2.43118453025818,-4.80729675292969,8.32950687408447,2.31680393218994,-4.81523847579956,8.68103122711182,2.37570524215698,-3.52154636383057,8.2230396270752,2.73468661308289,-5.82247352600098,6.39923477172852,2.6083664894104,-4.89594030380249,6.41888046264648,2.61043667793274,-4.65481853485107,6.43297481536865,2.62834620475769,-4.74086904525757,6.19173336029053,2.65477347373962,-3.23592948913574,5.96119499206543,2.59316444396973,-4.6646671295166,6.80287742614746,2.56856608390808,-4.69731330871582,7.14518451690674,2.62619876861572,-3.30985593795776,6.68903684616089,0.248416587710381,-6.22404289245605,10.8135080337524,0.248021185398102,-4.96406364440918,10.7071895599365,0.25152513384819,-3.80308675765991,10.2984771728516,0.246269524097443,-5.17882061004639,10.7031602859497,0.636691927909851,-4.95541286468506,10.5558376312256,0.675849378108978,-3.78370904922485,10.152286529541,0.767625629901886,-6.20383882522583,10.5778188705444,0.665585219860077,-5.18739366531372,10.5270643234253,0.938123106956482,-6.19465923309326,10.4595317840576,0.988505840301514,-4.94667673110962,10.3948917388916,1.05934643745422,-3.7609691619873,9.98197269439697,0.991532027721405,-5.20428323745728,10.3845367431641, -1.31222343444824,-4.93261098861694,10.2090654373169,1.3755841255188,-3.73848485946655,9.81740283966064,1.40327990055084,-6.17923879623413,10.2315492630005,1.38154745101929,-5.1838493347168,10.1332654953003,1.6676173210144,-6.1713695526123,10.1096124649048,1.56318843364716,-4.91711711883545,10.0034885406494,1.66125059127808,-3.7083420753479,9.60178184509277,1.51113605499268,-5.1890721321106,10.0149831771851,1.76639580726624,-4.90188646316528,9.73764705657959,1.85769426822662,-3.67182159423828,9.33412456512451,1.96801626682281,-6.13824892044067,9.70737743377686,1.79210913181305,-5.20931720733643,9.66518115997314,2.07221007347107,-6.11771965026855,9.53572368621826,1.90306305885315,-4.87315368652344,9.47091674804688,1.99627232551575,-3.63068151473999,9.05076503753662,1.86963331699371,-5.15749883651733,9.49563312530518,2.06058883666992,-4.85492086410522,9.16111278533936,2.13381290435791,-3.5903434753418,8.75202560424805,2.19677257537842,-6.08080959320068,9.10251712799072,2.06018805503845,-5.17085218429565,9.08461761474609,2.30971956253052,-6.06748104095459,8.89682769775391,2.23274970054626,-4.83329248428345,8.85091400146484,2.30374979972839,-3.54712581634521,8.41085433959961,2.1921591758728,-5.11476612091064,8.85641193389893,2.38860034942627,-4.80841827392578,8.50043201446533,2.44129538536072,-3.49835062026978,8.05076789855957,2.49470543861389,-6.0253267288208,8.32164859771729,2.43333172798157,-5.08730506896973,8.35621547698975,2.54373669624329,-5.9981803894043,8.05091190338135,2.45800757408142,-4.77966117858887,8.15988826751709,2.52057194709778,-3.45178747177124,7.70257806777954,2.42051959037781,-5.023606300354,8.10939884185791,2.49191498756409,-4.73876810073853,7.64967775344849,2.56251978874207,-3.38536167144775,7.22254991531372,2.57772088050842,-5.90810632705688,7.43864154815674,2.44073557853699,-4.9638819694519,7.49332523345947,-7.67204910516739e-05,-6.20898962020874,10.6545896530151,1.33904564380646,-6.1451997756958,10.0494470596313,2.03797817230225,-6.01517105102539,8.9346752166748,2.28552198410034,-5.82303857803345,7.20906686782837, -2.41200137138367,-5.80802249908447,6.2144603729248,-7.67204910516739e-05,-4.61597585678101,10.1029272079468,-7.67204910516739e-05,-4.25567579269409,9.19778919219971,-7.67204910516739e-05,-4.04321527481079,7.2955379486084,-7.67204910516739e-05,-3.3556272983551,6.35885906219482,0.784897685050964,-5.35388612747192,10.4057569503784,0.751385569572449,-6.16575050354004,10.3837471008301,1.32718873023987,-5.24303007125854,10.0550670623779,-7.67204910516739e-05,-4.78922080993652,10.3865852355957,-7.67204910516739e-05,-5.29943180084229,10.6484079360962,1.64580941200256,-5.27322387695313,9.55965137481689,1.74148464202881,-6.09074783325195,9.5503625869751,1.98855042457581,-5.30668449401855,8.9456958770752,-7.67204910516739e-05,-4.44762134552002,9.79842090606689,2.08995366096497,-5.16920614242554,8.12527942657471,2.18953394889832,-5.95280742645264,8.09652328491211,2.23729228973389,-5.04301834106445,7.24810886383057,-7.67204910516739e-05,-4.06590414047241,8.3202075958252,2.2697651386261,-4.84824657440186,6.73806762695313,2.30072927474976,-5.82225036621094,6.7092981338501,2.33940887451172,-5.00281143188477,6.22596073150635,-7.67204910516739e-05,-3.79949975013733,6.7226767539978,0.44892230629921,-6.18991184234619,10.59010887146,0.394397914409637,-5.12262487411499,10.5002069473267,1.57019639015198,-6.14955949783325,9.79483127593994,1.41474151611328,-5.12540245056152,9.77165699005127,2.00749802589417,-6.05140399932861,8.58141613006592,1.98990726470947,-5.04615449905396,8.6140775680542,2.26069331169128,-5.84914302825928,7.02525997161865,2.24190473556519,-4.93474864959717,7.05166721343994,1.06165313720703,-6.17055654525757,10.2821702957153,1.00466287136078,-5.1281361579895,10.1846103668213,0.993042349815369,-4.98856544494629,10.2047452926636,1.22498321533203,-4.96596240997314,10.0294179916382,-7.67204910516739e-05,-4.7044677734375,10.2523107528687,0.69256716966629,-5.0015344619751,10.3690938949585,0.38603937625885,-5.00539064407349,10.5087766647339,-7.67204910516739e-05,-4.86312580108643,10.492449760437,-7.67204910516739e-05,-5.01617479324341,10.6331367492676, -1.76178312301636,-6.10922145843506,9.19013977050781,1.68123245239258,-5.10956954956055,9.23971176147461,1.68926680088043,-4.92439126968384,9.26060390472412,1.84727084636688,-4.89078283309937,8.96791648864746,-7.67204910516739e-05,-4.35080289840698,9.53289127349854,1.56406784057617,-4.93146276473999,9.55031299591064,1.41888201236725,-4.9601001739502,9.79391860961914,-7.67204910516739e-05,-4.53979349136353,9.97043323516846,2.16589140892029,-5.95229434967041,7.71211338043213,2.08231449127197,-4.90415143966675,7.76292419433594,2.10142111778259,-4.79083204269409,7.78340911865234,2.1345317363739,-4.72642135620117,7.26164436340332,-7.67204910516739e-05,-4.03186655044556,7.91965436935425,2.06973814964294,-4.81758213043213,8.19492816925049,1.98369586467743,-4.87421846389771,8.64631652832031,-7.67204910516739e-05,-4.14395952224731,8.76574230194092,2.32731008529663,-5.82250738143921,6.40649127960205,2.31210851669312,-4.89640235900879,6.39480257034302,2.16000390052795,-4.65980625152588,6.45814752578735,2.17289304733276,-4.60442161560059,6.25503063201904,2.18451476097107,-4.71044778823853,6.71750640869141,2.14663100242615,-4.70081472396851,6.99988985061646,0.182353913784027,-6.19691944122314,10.6262340545654,0.214668720960617,-4.99102210998535,10.5715703964233,0.221039295196533,-5.1715841293335,10.5898180007935,0.522706210613251,-4.99193954467773,10.4446773529053,0.66406923532486,-6.20330810546875,10.4472274780273,0.59752893447876,-5.18182992935181,10.4342641830444,0.830509066581726,-6.17396593093872,10.3379526138306,0.852953910827637,-4.98247241973877,10.2842531204224,0.876991927623749,-5.20482540130615,10.309229850769,1.10025548934937,-4.96983957290649,10.1259307861328,1.24774789810181,-6.18188953399658,10.1255617141724,1.20500361919403,-5.18185949325562,10.073148727417,1.42771887779236,-6.17186832427979,9.95745468139648,1.3275842666626,-4.95026826858521,9.90988731384277,1.31779193878174,-5.18168306350708,9.9521427154541,1.48239612579346,-4.93766832351685,9.68376922607422,1.67756903171539,-6.12466812133789,9.62149810791016,1.5554666519165,-5.20650291442871,9.61593818664551, -1.69834506511688,-6.11061763763428,9.42087268829346,1.62256753444672,-4.91088914871216,9.39997100830078,1.61898696422577,-5.17198657989502,9.44967460632324,1.7541378736496,-4.89474534988403,9.13007545471191,1.9014698266983,-6.07585859298706,9.01035213470459,1.80428469181061,-5.18578672409058,9.0479154586792,1.99292814731598,-6.06208467483521,8.82335376739502,1.91993987560272,-4.85901260375977,8.79479122161865,1.96745586395264,-5.11074209213257,8.79558944702148,2.02731251716614,-4.83553552627563,8.47818946838379,2.08454465866089,-6.02103090286255,8.26997184753418,2.08422613143921,-5.08479928970337,8.32749843597412,2.13850784301758,-5.98124122619629,7.93514633178711,2.08167743682861,-4.78424215316772,7.99088525772095,2.065997838974,-4.99506855010986,7.98176431655884,2.10985660552979,-4.74397802352905,7.53710603713989,2.20505428314209,-5.90470743179321,7.41537857055664,2.15021204948425,-4.9380145072937,7.47347927093506,0.161418884992599,-5.99620723724365,10.5883436203003,-7.67204910516739e-05,-6.01326370239258,10.647442817688,2.24644112586975,-5.64674186706543,6.40034198760986,2.34713077545166,-5.63024950027466,6.19017839431763,0.772161602973938,-5.99148511886597,10.3921117782593,0.825569927692413,-5.97229623794556,10.3178730010986,1.05481052398682,-5.96023225784302,10.2516374588013,1.25125110149384,-5.97588348388672,10.0944890975952,0.677601099014282,-6.0025200843811,10.4182968139648,1.34167098999023,-5.9681601524353,10.0530290603638,0.436823517084122,-5.98489570617676,10.5625286102295,1.34644889831543,-5.97086668014526,9.94462490081787,1.48144638538361,-5.94182538986206,9.76863384246826,1.59821033477783,-5.92494344711304,9.58926868438721,1.69428503513336,-5.92439365386963,9.54779434204102,1.61604356765747,-5.9272141456604,9.40991878509521,1.69532108306885,-5.91470813751221,9.1658935546875,1.84288775920868,-5.87625932693481,8.9760684967041,2.02333664894104,-5.87491035461426,8.93968105316162,1.94922780990601,-5.88559484481812,8.83939933776855,1.92169213294983,-5.87055253982544,8.59227466583252,1.99420213699341,-5.84308862686157,8.27300834655762, -2.10897731781006,-5.81267786026001,8.10771942138672,2.06114339828491,-5.80498123168945,7.94922637939453,2.07570791244507,-5.7727952003479,7.71314764022827,2.1298360824585,-5.72634553909302,7.417236328125,2.23227190971375,-5.68489122390747,7.22065877914429,2.17584252357483,-5.68429565429688,7.05137586593628,2.20799803733826,-5.65562963485718,6.72965478897095,0.211247131228447,-6.24847888946533,10.7486724853516,-7.67204910516739e-05,-6.23700046539307,10.6934776306152,0.498750567436218,-6.24358892440796,10.6953783035278,0.707851231098175,-6.23854351043701,10.5200033187866,0.762133061885834,-6.19046020507813,10.4073266983032,0.884395122528076,-6.22473669052124,10.3992967605591,1.13511896133423,-6.22686815261841,10.3488941192627,1.32328391075134,-6.22095680236816,10.1810293197632,1.38911020755768,-6.16939687728882,10.0721397399902,1.56143689155579,-6.21689367294312,10.0330867767334,1.74506533145905,-6.20566177368164,9.86744976043701,1.82927858829498,-6.17670869827271,9.6677942276001,1.82371008396149,-6.10994386672974,9.56262111663818,1.88412117958069,-6.11779069900513,9.47591781616211,1.94739937782288,-6.11110782623291,9.25061321258545,2.04833054542542,-6.08344793319702,9.05823516845703,2.10245394706726,-6.02352380752563,8.94280624389648,2.14941501617432,-6.06108808517456,8.85622310638428,2.22272181510925,-6.03034591674805,8.61954116821289,2.29014086723328,-6.01991748809814,8.29539585113525,2.30597949028015,-5.96800661087036,8.1296854019165,2.34052395820618,-6.00384044647217,7.98949098587036,2.35525345802307,-5.93959379196167,7.73963451385498,2.39281797409058,-5.92104721069336,7.42715454101563,2.41367673873901,-5.83990859985352,7.23079776763916,2.47448372840881,-5.86489677429199,7.03505182266235,2.49757170677185,-5.80571842193604,6.71703815460205,2.53354358673096,-5.83821725845337,6.40500688552856,2.49788451194763,-5.82779407501221,6.2298002243042,0.24897712469101,-5.11597394943237,10.7058963775635,-7.67204910516739e-05,-5.20460224151611,10.7079381942749,0.220479279756546,-5.11243915557861,10.5875148773193,-7.67204910516739e-05,-5.21004629135132,10.6482305526733, -1.42731785774231,-5.17014265060425,10.0724725723267,1.35973930358887,-5.11094570159912,10.1520175933838,1.20246112346649,-5.04473114013672,10.2470426559448,0.991850674152374,-5.12875127792358,10.3859529495239,1.52363014221191,-5.1108512878418,10.0072088241577,0.814586639404297,-5.24449729919434,10.4538955688477,1.6520209312439,-5.06402397155762,9.84812545776367,0.652849137783051,-5.12024688720703,10.5349168777466,1.77682518959045,-5.12095785140991,9.6816463470459,0.444385796785355,-5.07770156860352,10.6145257949829,1.82609331607819,-5.16614246368408,9.57676315307617,1.87520813941956,-5.07334613800049,9.48432731628418,1.95687294006348,-4.94513034820557,9.30515384674072,2.05660724639893,-5.07866334915161,9.10423755645752,2.12514114379883,-5.18139457702637,8.96917819976807,2.2040159702301,-5.03358316421509,8.85367298126221,2.31203174591064,-4.98072242736816,8.65931224822998,2.4196469783783,-5.00655889511108,8.40085792541504,2.42282605171204,-5.07566547393799,8.24384784698486,2.43015241622925,-4.95311594009399,8.12364196777344,2.44025778770447,-4.8367748260498,7.86283302307129,2.45554184913635,-4.90069389343262,7.51933813095093,2.4790256023407,-5.01555395126343,7.3164439201355,2.55639052391052,-4.88036632537842,7.12684154510498,2.59324145317078,-4.79598236083984,6.79205846786499,2.60964035987854,-4.82578945159912,6.42443752288818,2.61791682243347,-4.94281578063965,6.22543334960938,2.30009174346924,-4.9078540802002,6.2130274772644,2.27215528488159,-4.82987022399902,6.40319538116455,2.24031233787537,-4.79475355148315,6.72987270355225,2.21691107749939,-4.8596453666687,7.044762134552,2.20704221725464,-4.95234298706055,7.2494912147522,2.13906836509705,-4.87345886230469,7.48208999633789,2.08685064315796,-4.85497903823853,7.77254724502563,2.07189154624939,-4.92449712753296,7.99071025848389,2.08008480072021,-5.06507349014282,8.14252948760986,2.06560301780701,-5.00788164138794,8.36452293395996,1.98568391799927,-4.98204851150513,8.62331008911133,1.94819593429565,-5.03372049331665,8.79545879364014,1.93816781044006,-5.18414354324341,8.94220066070557, -1.78390967845917,-5.09484052658081,9.05940628051758,1.67844200134277,-5.04022884368896,9.24466323852539,1.61309337615967,-5.0898003578186,9.43358707427979,1.61198472976685,-5.16870260238647,9.54607582092285,1.52880334854126,-5.12128496170044,9.62254524230957,1.41195726394653,-5.06289958953857,9.7760066986084,1.31675946712494,-5.10752153396606,9.93827438354492,1.29312229156494,-5.15547657012939,10.0386047363281,1.17945528030396,-5.11211252212524,10.0817356109619,0.999725878238678,-5.07360601425171,10.1888465881348,0.868633270263672,-5.13236522674561,10.2998676300049,0.759266436100006,-5.24501419067383,10.3854103088379,0.581607580184937,-5.11755657196045,10.432653427124,0.391613602638245,-5.07405853271484,10.5013198852539,1.882688164711,-4.39436292648315,6.75146913528442,1.89972448348999,-4.4520115852356,7.29836845397949,1.92360293865204,-4.52532339096069,7.82272911071777,1.90624833106995,-4.56584596633911,8.22654819488525,1.84925842285156,-4.64360284805298,8.66859531402588,1.68465423583984,-4.67599296569824,9.01572036743164,1.56485795974731,-4.73743677139282,9.31390190124512,1.40383994579315,-4.76555824279785,9.59842491149902,1.2554692029953,-4.81805467605591,9.83580875396729,1.03849375247955,-4.84567546844482,10.0437498092651,0.803921401500702,-4.88038921356201,10.213773727417,0.500419914722443,-4.88780689239502,10.3542613983154,0.289969116449356,-4.92022562026978,10.4710645675659,1.87083113193512,-4.03698921203613,6.32787609100342,-7.67204910516739e-05,-4.92767381668091,10.5683641433716,-1.44108653068542,-6.14445877075195,10.0975389480591,-2.16955471038818,-6.01648330688477,8.95395565032959,-2.53927731513977,-5.82994270324707,7.25559616088867,-2.57907891273499,-5.80733442306519,6.23576736450195,-1.52800750732422,-3.72579002380371,9.72752857208252,-2.22709941864014,-3.57229733467102,8.59624671936035,-2.60995936393738,-3.34418630599976,6.92969751358032,-2.67029452323914,-3.42640256881714,5.68099164962769,-0.816734910011292,-5.35645294189453,10.4493455886841,-0.779724419116974,-6.16896963119507,10.4349269866943,-1.4291467666626,-5.26600313186646,10.0664348602295, --0.892035186290741,-3.77179098129272,10.0637788772583,-1.83078956604004,-5.27385139465332,9.57354736328125,-1.90378320217133,-6.0930233001709,9.57655906677246,-2.11717844009399,-5.30726289749146,8.95762252807617,-1.93824458122253,-3.65362906455994,9.1970796585083,-2.42004227638245,-5.18281126022339,8.20937538146973,-2.42004227638245,-5.96190929412842,8.16780376434326,-2.45474600791931,-5.11397838592529,7.30203199386597,-2.49128437042236,-3.47505044937134,7.87748861312866,-2.59244561195374,-4.84982824325562,6.78690433502197,-2.69075131416321,-5.82278871536255,6.72381782531738,-2.61282658576965,-5.02046489715576,6.23445129394531,-2.64076375961304,-3.26274490356445,6.33746004104614,-0.599039852619171,-6.21754217147827,10.7229251861572,-0.45417907834053,-5.12842035293579,10.6079740524292,-1.90497493743896,-6.16266965866089,9.93728923797607,-1.64763867855072,-5.12903833389282,9.83918380737305,-2.44264721870422,-6.05743980407715,8.66366481781006,-2.31163191795349,-5.04810428619385,8.64824485778809,-2.68326592445374,-5.85268306732178,7.05120515823364,-2.55042123794556,-4.95216464996338,7.11908721923828,-1.20970582962036,-6.19574785232544,10.412353515625,-1.20795357227325,-5.09789371490479,10.2298641204834,-1.15740573406219,-4.92991161346436,10.3026037216187,-1.44531011581421,-4.93363952636719,10.113431930542,-1.2186187505722,-3.75024509429932,9.90089416503906,-0.820716500282288,-4.96743249893188,10.475640296936,-0.441761612892151,-4.95442533493042,10.6348133087158,-0.453458875417709,-3.79537487030029,10.2384967803955,-2.14710927009583,-6.10758829116821,9.31225490570068,-1.95297479629517,-5.00903797149658,9.29726600646973,-1.97223484516144,-4.82019233703613,9.32335662841797,-2.14925646781921,-4.86429834365845,9.00823211669922,-2.05223107337952,-3.59468412399292,8.90334224700928,-1.84256947040558,-4.9001030921936,9.60667324066162,-1.67247307300568,-4.90209484100342,9.87600612640381,-1.7665559053421,-3.68992519378662,9.46966075897217,-2.54421544075012,-5.96022415161133,7.76582431793213,-2.42601180076599,-4.878662109375,7.82701110839844, --2.4795036315918,-4.75098323822021,7.95540571212769,-2.53091931343079,-4.73315286636353,7.36377668380737,-2.54397368431091,-3.42584323883057,7.51118564605713,-2.43126845359802,-4.80729675292969,8.32950687408447,-2.31696367263794,-4.81523847579956,8.68103122711182,-2.37586522102356,-3.52154636383057,8.2230396270752,-2.73476386070251,-5.82247352600098,6.39923477172852,-2.60844922065735,-4.89594030380249,6.41888046264648,-2.61051392555237,-4.65481853485107,6.43297481536865,-2.62850570678711,-4.74086904525757,6.19173336029053,-2.65485024452209,-3.23592948913574,5.96119499206543,-2.59324193000793,-4.6646671295166,6.80287742614746,-2.56864905357361,-4.69731330871582,7.14518451690674,-2.62635850906372,-3.30985593795776,6.68903684616089,-0.248499989509583,-6.22404289245605,10.8135080337524,-0.248098492622375,-4.96406364440918,10.7071895599365,-0.251602977514267,-3.80308675765991,10.2984771728516,-0.246352404356003,-5.17882061004639,10.7031602859497,-0.63676929473877,-4.95541286468506,10.5558376312256,-0.676009058952332,-3.78370904922485,10.152286529541,-0.767702341079712,-6.20383882522583,10.5778188705444,-0.665662467479706,-5.18739366531372,10.5270643234253,-0.938282787799835,-6.19465923309326,10.4595317840576,-0.988583147525787,-4.94667673110962,10.3948917388916,-1.05950653553009,-3.7609691619873,9.98197269439697,-0.991691648960114,-5.20428323745728,10.3845367431641,-1.31230068206787,-4.93261098861694,10.2090654373169,-1.37566125392914,-3.73848485946655,9.81740283966064,-1.40336275100708,-6.17923879623413,10.2315492630005,-1.38170754909515,-5.1838493347168,10.1332654953003,-1.66777741909027,-6.1713695526123,10.1096124649048,-1.56327188014984,-4.91711711883545,10.0034885406494,-1.6613302230835,-3.7083420753479,9.60178184509277,-1.51121318340302,-5.1890721321106,10.0149831771851,-1.76647901535034,-4.90188646316528,9.73764705657959,-1.85777711868286,-3.67182159423828,9.33412456512451,-1.96809363365173,-6.13824892044067,9.70737743377686,-1.79226922988892,-5.20931720733643,9.66518115997314,-2.07228684425354,-6.11771965026855,9.53572368621826, --1.90314614772797,-4.87315368652344,9.47091674804688,-1.99643182754517,-3.63068151473999,9.05076503753662,-1.86979341506958,-5.15749883651733,9.49563312530518,-2.06066560745239,-4.85492086410522,9.16111278533936,-2.13397240638733,-3.5903434753418,8.75202560424805,-2.19693207740784,-6.08080959320068,9.10251712799072,-2.0602707862854,-5.17085218429565,9.08461761474609,-2.30980277061462,-6.06748104095459,8.89682769775391,-2.23290920257568,-4.83329248428345,8.85091400146484,-2.30383324623108,-3.54712581634521,8.41085433959961,-2.19223642349243,-5.11476612091064,8.85641193389893,-2.3886833190918,-4.80841827392578,8.50043201446533,-2.4413731098175,-3.49835062026978,8.05076789855957,-2.49478197097778,-6.0253267288208,8.32164859771729,-2.43341541290283,-5.08730506896973,8.35621547698975,-2.54381465911865,-5.9981803894043,8.05091190338135,-2.45816779136658,-4.77966117858887,8.15988826751709,-2.52065515518188,-3.45178747177124,7.70257806777954,-2.42060303688049,-5.023606300354,8.10939884185791,-2.49207520484924,-4.73876810073853,7.64967775344849,-2.56260275840759,-3.38536167144775,7.22254991531372,-2.57780432701111,-5.90810632705688,7.43864154815674,-2.44081902503967,-4.9638819694519,7.49332523345947,-1.33912909030914,-6.1451997756958,10.0494470596313,-2.03806114196777,-6.01517105102539,8.9346752166748,-2.28560495376587,-5.82303857803345,7.20906686782837,-2.41208481788635,-5.80802249908447,6.2144603729248,-0.785057246685028,-5.35388612747192,10.4057569503784,-0.751468539237976,-6.16575050354004,10.3837471008301,-1.32726609706879,-5.24303007125854,10.0550670623779,-1.64589440822601,-5.27322387695313,9.55965137481689,-1.74156808853149,-6.09074783325195,9.5503625869751,-1.98863387107849,-5.30668449401855,8.9456958770752,-2.09003663063049,-5.16920614242554,8.12527942657471,-2.1896116733551,-5.95280742645264,8.09652328491211,-2.23736882209778,-5.04301834106445,7.24810886383057,-2.26984333992004,-4.84824657440186,6.73806762695313,-2.30080652236938,-5.82225036621094,6.7092981338501,-2.33949184417725,-5.00281143188477,6.22596073150635, --0.448999583721161,-6.18991184234619,10.59010887146,-0.394558042287827,-5.12262487411499,10.5002069473267,-1.57035636901855,-6.14955949783325,9.79483127593994,-1.41482424736023,-5.12540245056152,9.77165699005127,-2.00765204429626,-6.05140399932861,8.58141613006592,-1.98998475074768,-5.04615449905396,8.6140775680542,-2.26077032089233,-5.84914302825928,7.02525997161865,-2.24198818206787,-4.93474864959717,7.05166721343994,-1.06173646450043,-6.17055654525757,10.2821702957153,-1.0047402381897,-5.1281361579895,10.1846103668213,-0.993202030658722,-4.98856544494629,10.2047452926636,-1.22514343261719,-4.96596240997314,10.0294179916382,-0.692726731300354,-5.0015344619751,10.3690938949585,-0.38612225651741,-5.00539064407349,10.5087766647339,-1.76185965538025,-6.10922145843506,9.19013977050781,-1.6813098192215,-5.10956954956055,9.23971176147461,-1.68950939178467,-4.92439126968384,9.26060390472412,-1.84734761714935,-4.89078283309937,8.96791648864746,-1.56414496898651,-4.93146276473999,9.55031299591064,-1.41904211044312,-4.9601001739502,9.79391860961914,-2.16597414016724,-5.95229434967041,7.71211338043213,-2.08239793777466,-4.90415143966675,7.76292419433594,-2.1014986038208,-4.79083204269409,7.78340911865234,-2.13469195365906,-4.72642135620117,7.26164436340332,-2.06989789009094,-4.81758213043213,8.19492816925049,-1.9838559627533,-4.87421846389771,8.64631652832031,-2.32739305496216,-5.82250738143921,6.40649127960205,-2.3121919631958,-4.89640235900879,6.39480257034302,-2.16016364097595,-4.65980625152588,6.45814752578735,-2.17297649383545,-4.60442161560059,6.25503063201904,-2.18475651741028,-4.71044778823853,6.71750640869141,-2.14670848846436,-4.70081472396851,6.99988985061646,-0.182514071464539,-6.19691944122314,10.6262340545654,-0.214751601219177,-4.99102210998535,10.5715703964233,-0.221117123961449,-5.1715841293335,10.5898180007935,-0.522789657115936,-4.99193954467773,10.4446773529053,-0.664152145385742,-6.20330810546875,10.4472274780273,-0.597688615322113,-5.18182992935181,10.4342641830444,-0.830668151378632,-6.17396593093872,10.3379526138306, --0.85311359167099,-4.98247241973877,10.2842531204224,-0.877069175243378,-5.20482540130615,10.309229850769,-1.10041570663452,-4.96983957290649,10.1259307861328,-1.24783062934875,-6.18188953399658,10.1255617141724,-1.2051637172699,-5.18185949325562,10.073148727417,-1.42787837982178,-6.17186832427979,9.95745468139648,-1.32766699790955,-4.95026826858521,9.90988731384277,-1.31787490844727,-5.18168306350708,9.9521427154541,-1.48247957229614,-4.93766832351685,9.68376922607422,-1.67772912979126,-6.12466812133789,9.62149810791016,-1.55555009841919,-5.20650291442871,9.61593818664551,-1.69850516319275,-6.11061763763428,9.42087268829346,-1.62272691726685,-4.91088914871216,9.39997100830078,-1.61914646625519,-5.17198657989502,9.44967460632324,-1.75422072410583,-4.89474534988403,9.13007545471191,-1.90155327320099,-6.07585859298706,9.01035213470459,-1.80444478988647,-5.18578672409058,9.0479154586792,-1.99301075935364,-6.06208467483521,8.82335376739502,-1.92001700401306,-4.85901260375977,8.79479122161865,-1.96753931045532,-5.11074209213257,8.79558944702148,-2.02739596366882,-4.83553552627563,8.47818946838379,-2.08462166786194,-6.02103090286255,8.26997184753418,-2.08438611030579,-5.08479928970337,8.32749843597412,-2.13859105110168,-5.98124122619629,7.93514633178711,-2.0817608833313,-4.78424215316772,7.99088525772095,-2.06615805625916,-4.99506855010986,7.98176431655884,-2.10993385314941,-4.74397802352905,7.53710603713989,-2.20521450042725,-5.90470743179321,7.41537857055664,-2.1502890586853,-4.9380145072937,7.47347927093506,-0.161578476428986,-5.99620723724365,10.5883436203003,-2.24652457237244,-5.64674186706543,6.40034198760986,-2.34721374511719,-5.63024950027466,6.19017839431763,-0.772245049476624,-5.99148511886597,10.3921117782593,-0.825730621814728,-5.97229623794556,10.3178730010986,-1.05496990680695,-5.96023225784302,10.2516374588013,-1.25133454799652,-5.97588348388672,10.0944890975952,-0.677684605121613,-6.0025200843811,10.4182968139648,-1.34175372123718,-5.9681601524353,10.0530290603638,-0.436900794506073,-5.98489570617676,10.5625286102295, --1.34660851955414,-5.97086668014526,9.94462490081787,-1.48152363300323,-5.94182538986206,9.76863384246826,-1.59837055206299,-5.92494344711304,9.58926868438721,-1.69436395168304,-5.92439365386963,9.54779434204102,-1.61612033843994,-5.9272141456604,9.40991878509521,-1.69539654254913,-5.91470813751221,9.1658935546875,-1.8430472612381,-5.87625932693481,8.9760684967041,-2.02341389656067,-5.87491035461426,8.93968105316162,-1.94938790798187,-5.88559484481812,8.83939933776855,-1.92176866531372,-5.87055253982544,8.59227466583252,-1.99436163902283,-5.84308862686157,8.27300834655762,-2.10913801193237,-5.81267786026001,8.10771942138672,-2.06122040748596,-5.80498123168945,7.94922637939453,-2.07579112052917,-5.7727952003479,7.71314764022827,-2.12991428375244,-5.72634553909302,7.417236328125,-2.23243236541748,-5.68489122390747,7.22065877914429,-2.17591977119446,-5.68429565429688,7.05137586593628,-2.20807480812073,-5.65562963485718,6.72965478897095,-0.211407259106636,-6.24847888946533,10.7486724853516,-0.49882784485817,-6.24358892440796,10.6953783035278,-0.707928478717804,-6.23854351043701,10.5200033187866,-0.762210428714752,-6.19046020507813,10.4073266983032,-0.884472489356995,-6.22473669052124,10.3992967605591,-1.13520228862762,-6.22686815261841,10.3488941192627,-1.32336676120758,-6.22095680236816,10.1810293197632,-1.38926982879639,-6.16939687728882,10.0721397399902,-1.56151962280273,-6.21689367294312,10.0330867767334,-1.74514818191528,-6.20566177368164,9.86744976043701,-1.82936203479767,-6.17670869827271,9.6677942276001,-1.82378721237183,-6.10994386672974,9.56262111663818,-1.88428127765656,-6.11779069900513,9.47591781616211,-1.94748222827911,-6.11110782623291,9.25061321258545,-2.0484082698822,-6.08344793319702,9.05823516845703,-2.10253119468689,-6.02352380752563,8.94280624389648,-2.14957499504089,-6.06108808517456,8.85622310638428,-2.22280430793762,-6.03034591674805,8.61954116821289,-2.29022431373596,-6.01991748809814,8.29539585113525,-2.30606293678284,-5.96800661087036,8.1296854019165,-2.34060740470886,-6.00384044647217,7.98949098587036, --2.3553307056427,-5.93959379196167,7.73963451385498,-2.39297795295715,-5.92104721069336,7.42715454101563,-2.41383671760559,-5.83990859985352,7.23079776763916,-2.47456669807434,-5.86489677429199,7.03505182266235,-2.49764919281006,-5.80571842193604,6.71703815460205,-2.53370380401611,-5.83821725845337,6.40500688552856,-2.49804472923279,-5.82779407501221,6.2298002243042,-0.249054402112961,-5.11597394943237,10.7058963775635,-0.220562160015106,-5.11243915557861,10.5875148773193,-1.42740082740784,-5.17014265060425,10.0724725723267,-1.35982227325439,-5.11094570159912,10.1520175933838,-1.20253849029541,-5.04473114013672,10.2470426559448,-0.991928040981293,-5.12875127792358,10.3859529495239,-1.52370738983154,-5.1108512878418,10.0072088241577,-0.814668953418732,-5.24449729919434,10.4538955688477,-1.65209627151489,-5.06402397155762,9.84812545776367,-0.652926385402679,-5.12024688720703,10.5349168777466,-1.77690863609314,-5.12095785140991,9.6816463470459,-0.444463044404984,-5.07770156860352,10.6145257949829,-1.82617616653442,-5.16614246368408,9.57676315307617,-1.87536764144897,-5.07334613800049,9.48432731628418,-1.95703315734863,-4.94513034820557,9.30515384674072,-2.05668377876282,-5.07866334915161,9.10423755645752,-2.12521839141846,-5.18139457702637,8.96917819976807,-2.20409893989563,-5.03358316421509,8.85367298126221,-2.3121919631958,-4.98072242736816,8.65931224822998,-2.41972398757935,-5.00655889511108,8.40085792541504,-2.42298603057861,-5.07566547393799,8.24384784698486,-2.43023037910461,-4.95311594009399,8.12364196777344,-2.44034123420715,-4.8367748260498,7.86283302307129,-2.45570135116577,-4.90069389343262,7.51933813095093,-2.47910332679749,-5.01555395126343,7.3164439201355,-2.55655026435852,-4.88036632537842,7.12684154510498,-2.5934009552002,-4.79598236083984,6.79205846786499,-2.6098005771637,-4.82578945159912,6.42443752288818,-2.61799931526184,-4.94281578063965,6.22543334960938,-2.30016922950745,-4.9078540802002,6.2130274772644,-2.27223181724548,-4.82987022399902,6.40319538116455,-2.24039530754089,-4.79475355148315,6.72987270355225, --2.21699452400208,-4.8596453666687,7.044762134552,-2.20720195770264,-4.95234298706055,7.2494912147522,-2.13914585113525,-4.87345886230469,7.48208999633789,-2.08693408966064,-4.85497903823853,7.77254724502563,-2.07205104827881,-4.92449712753296,7.99071025848389,-2.08016753196716,-5.06507349014282,8.14252948760986,-2.065762758255,-5.00788164138794,8.36452293395996,-1.98576736450195,-4.98204851150513,8.62331008911133,-1.94835603237152,-5.03372049331665,8.79545879364014,-1.93824458122253,-5.18414354324341,8.94220066070557,-1.78398704528809,-5.09484052658081,9.05940628051758,-1.67860221862793,-5.04022884368896,9.24466323852539,-1.61325120925903,-5.0898003578186,9.43358707427979,-1.61214077472687,-5.16870260238647,9.54607582092285,-1.52888679504395,-5.12128496170044,9.62254524230957,-1.41203439235687,-5.06289958953857,9.7760066986084,-1.31691944599152,-5.10752153396606,9.93827438354492,-1.29327630996704,-5.15547657012939,10.0386047363281,-1.17961537837982,-5.11211252212524,10.0817356109619,-0.999808847904205,-5.07360601425171,10.1888465881348,-0.868710696697235,-5.13236522674561,10.2998676300049,-0.759426653385162,-5.24501419067383,10.3854103088379,-0.581690490245819,-5.11755657196045,10.432653427124,-0.391690850257874,-5.07405853271484,10.5013198852539,-1.88284778594971,-4.39436292648315,6.75146913528442,-1.89980101585388,-4.4520115852356,7.29836845397949,-1.92368066310883,-4.52532339096069,7.82272911071777,-1.90633141994476,-4.56584596633911,8.22654819488525,-1.84941840171814,-4.64360284805298,8.66859531402588,-1.68473148345947,-4.67599296569824,9.01572036743164,-1.56494069099426,-4.73743677139282,9.31390190124512,-1.40391707420349,-4.76555824279785,9.59842491149902,-1.25562918186188,-4.81805467605591,9.83580875396729,-1.03865337371826,-4.84567546844482,10.0437498092651,-0.804080486297607,-4.88038921356201,10.213773727417,-0.500580132007599,-4.88780689239502,10.3542613983154,-0.29012867808342,-4.92022562026978,10.4710645675659,-1.87090849876404,-4.03698921203613,6.32787609100342,-0.308197110891342,-4.81720018386841,10.3705530166626, --0.159036085009575,-4.87342262268066,10.4829759597778,-1.34613072872162,-4.09637641906738,6.78873920440674,-1.29885053634644,-3.6716845035553,6.35489892959595,-0.500102460384369,-4.76407194137573,10.235652923584,-0.681182324886322,-4.70219993591309,10.0764589309692,-0.827004611492157,-4.63880825042725,9.90776252746582,-0.965742528438568,-4.56622743606567,9.69939136505127,-1.08577442169189,-4.49326658248901,9.42716884613037,-1.22037100791931,-4.43386459350586,9.10629081726074,-1.36642909049988,-4.36891460418701,8.71580410003662,-1.4526309967041,-4.32083606719971,8.27136516571045,-1.44968700408936,-4.298987865448,7.87445211410522,-1.43846130371094,-4.30566120147705,7.33613443374634,-0.11851616948843,-4.9258279800415,10.5478172302246,2.36870336532593,-4.89915895462036,6.05093717575073,2.40563678741455,-4.97647333145142,6.04435634613037,1.91230034828186,-3.92576694488525,6.15001773834229,2.21531844139099,-4.54039859771729,6.10468196868896,-2.40571427345276,-4.97647333145142,6.04435634613037,-2.36878037452698,-4.89915895462036,6.05093717575073,-1.91237807273865,-3.92576694488525,6.15001773834229,-1.3193085193634,-3.5384349822998,6.17151260375977,-2.21547865867615,-4.54039859771729,6.10468196868896,-7.67204910516739e-05,-3.21373343467712,6.18803453445435,2.55384182929993,-5.75352811813354,6.14624261856079,2.49064660072327,-5.76948547363281,6.12738513946533,2.42728590965271,-5.75763177871704,6.10978126525879,2.37785863876343,-5.62378406524658,6.09825658798218,2.37713885307312,-5.01688718795776,6.14634227752686,2.35055255889893,-4.95397138595581,6.13868141174316,-2.35071206092834,-4.95397138595581,6.13868141174316,-2.37722182273865,-5.01688718795776,6.14634227752686,-2.37793588638306,-5.62378406524658,6.09825658798218,-2.42736291885376,-5.75763177871704,6.10978126525879,-2.4907238483429,-5.76948547363281,6.12738513946533,-2.55400204658508,-5.75352811813354,6.14624261856079,-2.31616735458374,-4.78816795349121,6.07486486434937,2.31609058380127,-4.78816795349121,6.07486486434937,0.566246807575226,-5.38128614425659,10.681791305542, -0.246192812919617,-5.41680717468262,10.7577047348022,0.402356058359146,-5.39608001708984,10.7270231246948,1.77945041656494,-5.33451986312866,9.91261291503906,1.59271860122681,-5.3716778755188,10.1045579910278,1.68743848800659,-5.34744930267334,10.0274114608765,2.43476557731628,-5.29290103912354,8.67005157470703,2.27549338340759,-5.32962989807129,8.89839935302734,2.35779547691345,-5.30605792999268,8.80605792999268,2.50011372566223,-5.05364608764648,7.22187995910645,2.46652555465698,-5.13603925704956,7.30129432678223,2.57469463348389,-4.98489141464233,7.12168741226196,2.51674914360046,-5.08021211624146,7.22337961196899,1.07104420661926,-6.19871234893799,10.4532356262207,1.23008024692535,-6.12625408172607,10.4297370910645,0.95220935344696,-6.12730646133423,10.4781188964844,1.08783864974976,-6.12938976287842,10.4722518920898,1.23724162578583,-4.9298210144043,10.2557611465454,1.2922431230545,-5.0667839050293,10.1946229934692,0.540456593036652,-4.95295143127441,10.5953779220581,0.563857853412628,-3.78981256484985,10.1971521377563,2.12012076377869,-6.11656141281128,9.43780994415283,2.18531036376953,-6.04439640045166,9.32894897460938,2.10213541984558,-6.05786371231079,9.5564489364624,2.15602254867554,-6.05410432815552,9.45830726623535,2.01497793197632,-4.83223581314087,9.24244499206543,2.00821208953857,-4.99154615402222,9.20073890686035,1.72150504589081,-4.9008264541626,9.80685710906982,1.81335735321045,-3.68086624145508,9.40210819244385,2.55193114280701,-5.98643398284912,7.92556858062744,2.59029746055603,-5.90131378173828,7.77436351776123,2.59038019180298,-5.9391074180603,8.07243824005127,2.59993052482605,-5.92604207992554,7.94169330596924,2.48435831069946,-4.74286890029907,7.80917644500732,2.44766116142273,-4.8491415977478,7.68547058105469,2.35557246208191,-4.8105297088623,8.59074878692627,2.40985465049744,-3.50977420806885,8.13588333129883,2.7779848575592,-5.51153469085693,6.74354219436646,2.78451490402222,-5.49429225921631,6.38666725158691,2.79493808746338,-5.50533866882324,6.55248069763184,2.6146547794342,-4.87392616271973,6.30552673339844, -2.61130976676941,-4.95285940170288,6.30372381210327,2.63312411308289,-3.28767967224121,6.52517414093018,2.58225703239441,-4.67946624755859,6.98756504058838,0.422895759344101,-6.22150421142578,10.7779750823975,0.62021005153656,-6.14947462081909,10.7371854782104,0.25152513384819,-6.1558518409729,10.8286790847778,0.434994578361511,-6.15349102020264,10.7928981781006,0.773276507854462,-6.18317461013794,10.492805480957,0.793893456459045,-6.11256837844849,10.4474754333496,0.793256223201752,-6.1360502243042,10.5915660858154,0.793415248394012,-6.12203216552734,10.5054244995117,0.833769977092743,-5.47786331176758,10.465648651123,0.767147362232208,-5.40177488327026,10.5656452178955,0.803125083446503,-5.44741249084473,10.5072536468506,1.79871618747711,-6.17119932174683,10.0438709259033,1.93673419952393,-6.09180784225464,9.9573335647583,1.68322050571442,-6.10219383239746,10.1345090866089,1.8226717710495,-6.0999813079834,10.0684766769409,1.92487740516663,-6.11152410507202,9.62552928924561,1.92280662059784,-6.04206943511963,9.58533763885498,1.99587142467499,-6.06993532180786,9.71592235565186,1.94700419902802,-6.05281352996826,9.63218879699707,1.87448811531067,-5.39900588989258,9.59115314483643,1.88571441173553,-5.36145830154419,9.69441604614258,1.87862920761108,-5.38414192199707,9.6276798248291,2.38278985023499,-6.06951522827148,8.80442142486572,2.4900860786438,-5.99994945526123,8.67735481262207,2.33861255645752,-6.01029920578003,8.91247653961182,2.42234826087952,-6.01045846939087,8.82058906555176,2.44949555397034,-5.98758316040039,8.22527027130127,2.45331263542175,-5.9230375289917,8.18176460266113,2.53991460800171,-5.96709251403809,8.32698440551758,2.4872190952301,-5.94068717956543,8.23351097106934,2.48093104362488,-5.30903768539429,8.22675228118896,2.53107786178589,-5.29190921783447,8.34867286682129,2.50600719451904,-5.30312013626099,8.26855659484863,2.57469463348389,-5.53896903991699,7.28717947006226,2.74033761024475,-5.54294681549072,7.08502197265625,2.6491219997406,-5.54244422912598,7.19982957839966,2.69393038749695,-5.84068250656128,6.89755344390869, -2.73826742172241,-5.76365041732788,6.72922039031982,2.72497701644897,-5.79253578186035,7.06258821487427,2.74057412147522,-5.77958679199219,6.90722036361694,2.72935366630554,-5.13624048233032,6.76804351806641,2.67475271224976,-5.19783115386963,7.11063480377197,2.71431183815002,-5.16106271743774,6.95400714874268,1.41904175281525,-6.15810871124268,10.1467761993408,1.45859956741333,-6.08747577667236,10.1083421707153,1.4297069311142,-6.1099648475647,10.243049621582,1.44188249111176,-6.09604692459106,10.1561756134033,1.4638557434082,-5.41136312484741,10.0993022918701,1.42740023136139,-5.36600542068481,10.1941890716553,1.45080149173737,-5.39493846893311,10.1334867477417,1.23031604290009,-5.33457040786743,10.3346290588379,0.988824427127838,-5.40275382995605,10.4450454711914,1.10567080974579,-5.35919141769409,10.3998765945435,1.29734027385712,-3.74451875686646,9.85927677154541,0.905407428741455,-4.95959520339966,10.4361753463745,0.979668974876404,-3.76639318466187,10.0222578048706,0.898558616638184,-5.20458173751831,10.4245805740356,0.0581044778227806,-4.97750186920166,10.7529458999634,0.0585821568965912,-3.80714273452759,10.3407936096191,0.0570718422532082,-5.28466129302979,10.6990880966187,0.0589007958769798,-5.1928563117981,10.7132616043091,0.552000403404236,-5.08422231674194,10.5733594894409,2.17647981643677,-6.04208469390869,9.01570415496826,2.18364119529724,-5.97893047332764,8.96032905578613,2.22399592399597,-6.02156591415405,9.10936832427979,2.19518542289734,-5.99576950073242,9.02073001861572,2.14066100120544,-5.39109086990356,8.9628324508667,2.14901423454285,-5.35427951812744,9.0933313369751,2.14057874679565,-5.38381814956665,9.01462173461914,2.07538890838623,-5.29148054122925,9.32239532470703,1.98305916786194,-5.36987113952637,9.54968357086182,2.03216767311096,-5.32303953170776,9.45143127441406,2.09003663063049,-3.59096431732178,8.8278865814209,1.87329638004303,-4.89144420623779,9.53985595703125,1.96920824050903,-3.64389991760254,9.12462520599365,1.84766566753387,-5.1354022026062,9.53629589080811,1.50548505783081,-4.92667293548584,10.0606355667114, -1.59781551361084,-3.71742677688599,9.6675968170166,1.4701384305954,-5.14917039871216,10.0455408096313,1.72047221660614,-5.08461809158325,9.76005458831787,2.54922842979431,-5.86286878585815,7.33647632598877,2.56609988212585,-5.79004096984863,7.26262283325195,2.61775708198547,-5.84616804122925,7.44112205505371,2.58106565475464,-5.81336307525635,7.34045124053955,2.52916669845581,-5.24765205383301,7.30459833145142,2.56586408615112,-5.19028902053833,7.4799370765686,2.53704762458801,-5.22478914260864,7.38118886947632,2.55328726768494,-5.17577457427979,7.80620574951172,2.55352377891541,-5.26619529724121,8.12104034423828,2.55853748321533,-5.21674394607544,7.98145294189453,2.55097532272339,-3.40678358078003,7.37494039535522,2.4456729888916,-4.79573726654053,8.24600124359131,2.50751757621765,-3.46340703964233,7.79011964797974,2.42473793029785,-5.03045463562012,8.19138431549072,2.19120383262634,-4.85039281845093,8.93075561523438,2.26698136329651,-3.56012415885925,8.5060396194458,2.1615138053894,-5.11873531341553,8.91559505462646,2.37387633323669,-4.98405885696411,8.5270881652832,2.62707161903381,-5.42901182174683,6.21318340301514,2.70865988731384,-5.46296405792236,6.27867794036865,2.62930154800415,-5.11680030822754,6.24068880081177,2.72346091270447,-5.14277458190918,6.39971160888672,2.67681741714478,-5.13292789459229,6.29661417007446,2.60223722457886,-4.85794878005981,6.59181594848633,2.62396907806396,-4.88413953781128,6.7855920791626,2.63224482536316,-4.92915534973145,6.41459321975708,2.6320858001709,-4.89259052276611,6.58782196044922,2.66273069381714,-3.28638744354248,5.82048511505127,2.61998701095581,-4.67815494537354,6.30472087860107,2.64760613441467,-3.23664593696594,6.1414909362793,2.60200071334839,-4.6534276008606,6.60857820510864,2.6028745174408,-4.79819631576538,6.59765148162842,2.62078380584717,-3.32737493515015,6.8132643699646,2.55097532272339,-4.71743583679199,7.25841617584229,2.51659035682678,-4.96414136886597,7.23243427276611,2.57812190055847,-4.88279342651367,6.9683632850647,2.57987427711487,-4.82382917404175,6.97422170639038, --7.67204910516739e-05,-6.14882516860962,10.7384452819824,0.0330338403582573,-6.2180643081665,10.7608232498169,0.031676959246397,-6.15073442459106,10.7692003250122,0.346162348985672,-3.80005931854248,10.2728490829468,0.34019273519516,-4.95876932144165,10.674464225769,0.343696653842926,-5.14614200592041,10.6599750518799,0.340593695640564,-5.09143400192261,10.6644906997681,0,-5.46868753433228,10.6961698532104,0.0388443991541862,-5.46272850036621,10.7215843200684,0.787923336029053,-3.77777767181396,10.1074657440186,0.730532228946686,-4.96316480636597,10.5156650543213,0.612730085849762,-5.81223726272583,10.7480869293213,0.818409204483032,-5.80088090896606,10.5974206924438,0.74557501077652,-5.80561113357544,10.6775608062744,0.744224369525909,-5.28894329071045,10.4860992431641,0.736502468585968,-5.19503211975098,10.4928035736084,0.565131783485413,-5.13811635971069,10.5657052993774,0.488480687141418,-5.16111516952515,10.6132593154907,0.686673700809479,-5.21814012527466,10.5301637649536,0.597051203250885,-5.17026042938232,10.5706043243408,0.826048672199249,-5.79729986190796,10.4669504165649,0.973304092884064,-5.78964471817017,10.4875783920288,0.878342628479004,-5.79480218887329,10.4708395004272,1.13902378082275,-3.75567102432251,9.94163227081299,1.07343327999115,-4.93617916107178,10.3497266769409,0.898322880268097,-5.30402421951294,10.4232625961304,0.820480048656464,-5.38121318817139,10.4522428512573,0.99144971370697,-5.23509693145752,10.3936376571655,0.898558616638184,-5.33122491836548,10.4292478561401,1.09858667850494,-5.1296706199646,10.3100242614746,1.09771311283112,-5.07038974761963,10.3188095092773,1.45310831069946,-3.73259544372559,9.77542972564697,1.38115262985229,-4.93476009368896,10.1622486114502,1.24010837078094,-5.77027893066406,10.4280824661255,1.44896697998047,-5.75700235366821,10.2426996231079,1.36483597755432,-5.76183938980103,10.3413133621216,1.30784642696381,-5.12646627426147,10.1744384765625,1.21431791782379,-5.12968444824219,10.2391633987427,1.39357018470764,-5.21220302581787,10.1398096084595,1.31819295883179,-5.15665435791016,10.1825561523438, -1.41203331947327,-5.23901510238647,10.0959196090698,1.39762842655182,-5.15135288238525,10.1096410751343,1.47810220718384,-5.76028156280518,10.1184663772583,1.66355729103088,-5.75714492797852,10.155650138855,1.55124938488007,-5.76018714904785,10.1419162750244,1.71664988994598,-3.69902992248535,9.53592681884766,1.61922264099121,-4.90826559066772,9.9417028427124,1.57409560680389,-5.14579153060913,9.93711280822754,1.5853157043457,-5.07765579223633,9.93589019775391,1.46242272853851,-5.23930597305298,10.0487232208252,1.43567645549774,-5.2925910949707,10.0717658996582,1.52331149578094,-5.21743154525757,10.0307359695435,1.47061598300934,-5.26658535003662,10.0596237182617,1.90011930465698,-3.66277027130127,9.26631832122803,1.80675661563873,-4.90261316299438,9.67172622680664,1.90585315227509,-5.74225854873657,9.96549129486084,1.97350835800171,-5.72455263137817,9.71689796447754,1.96475434303284,-5.73232173919678,9.83455848693848,1.81964552402496,-5.25656270980835,9.61117076873779,1.80722808837891,-5.15477609634399,9.62291526794434,1.72747468948364,-5.15852165222168,9.74481105804443,1.6676173210144,-5.15767383575439,9.84956455230713,1.80961751937866,-5.23495817184448,9.66826820373535,1.74777281284332,-5.18581342697144,9.75107097625732,1.91643583774567,-5.72711324691772,9.5975456237793,2.07976603507996,-5.74564027786255,9.57506084442139,1.98536515235901,-5.73789215087891,9.59651660919189,2.02245783805847,-3.61103582382202,8.97729206085205,1.9353836774826,-4.8416600227356,9.39909172058105,1.84599637985229,-5.23458528518677,9.54294490814209,1.83907079696655,-5.29887056350708,9.57698154449463,1.88706493377686,-5.18942403793335,9.50742435455322,1.85793554782867,-5.26300859451294,9.55139541625977,1.90585315227509,-5.06111478805542,9.40726089477539,1.9121413230896,-4.99115467071533,9.40340900421143,2.18109273910522,-3.58336782455444,8.6764497756958,2.10547995567322,-4.86570835113525,9.0840425491333,2.17488718032837,-5.73093557357788,9.33788967132568,2.21659255027771,-5.71024370193481,9.10509204864502,2.20728421211243,-5.72150659561157,9.21305465698242, -2.00908517837524,-5.06467771530151,9.18466091156006,1.97167992591858,-5.04156064987183,9.30147361755371,2.07563090324402,-5.19960069656372,9.08407688140869,2.02731251716614,-5.09609651565552,9.1858024597168,2.09170603752136,-5.27031946182251,9.01190376281738,2.09290289878845,-5.15507316589355,9.02957153320313,2.17154216766357,-5.6849799156189,8.96569538116455,2.33686661720276,-5.70256185531616,8.92179489135742,2.23649549484253,-5.69270706176758,8.95033359527588,2.3402054309845,-3.53412818908691,8.31560134887695,2.27525782585144,-4.82226657867432,8.76768112182617,2.24700164794922,-5.06174516677856,8.76805210113525,2.25480031967163,-4.99242925643921,8.76817321777344,2.14965128898621,-5.22609329223633,8.91264629364014,2.12107682228088,-5.32847785949707,8.95840549468994,2.20441699028015,-5.1474552154541,8.86599445343018,2.15593957901001,-5.25232219696045,8.9181604385376,2.46883249282837,-3.48684215545654,7.96456861495972,2.41295719146729,-4.80944633483887,8.4138355255127,2.5071222782135,-5.68907690048218,8.68220615386963,2.57294845581055,-5.65895128250122,8.33833408355713,2.56053161621094,-5.67529582977295,8.49959468841553,2.43548536300659,-5.15020132064819,8.26579856872559,2.42856049537659,-5.05244398117065,8.3100471496582,2.38287305831909,-5.05493497848511,8.49727916717529,2.33455371856689,-5.08148908615112,8.65361499786377,2.45259785652161,-5.11785173416138,8.35070896148682,2.40571355819702,-5.08747005462646,8.49636554718018,2.49701142311096,-5.63119173049927,8.216721534729,2.62317228317261,-5.64838314056396,8.10554695129395,2.55408382415771,-5.64072895050049,8.1782054901123,2.53322505950928,-3.44001388549805,7.61496782302856,2.46994733810425,-4.76405715942383,8.06769847869873,2.41733336448669,-5.12399673461914,8.17035579681396,2.42999362945557,-5.20708465576172,8.2091064453125,2.44264674186707,-5.05684375762939,8.11344528198242,2.43238234519958,-5.15224266052246,8.17349433898926,2.42243146896362,-4.93146657943726,7.98725986480713,2.43484854698181,-4.88004207611084,8.01153469085693,2.58631587028503,-3.36392593383789,7.07006502151489, -2.50926947593689,-4.73791790008545,7.49767446517944,2.61648321151733,-5.60670042037964,7.7851881980896,2.6359851360321,-5.55877542495728,7.45898151397705,2.63121271133423,-5.58071756362915,7.60861539840698,2.43380999565125,-4.89644432067871,7.65153789520264,2.45171999931335,-4.91125011444092,7.82333564758301,2.46270298957825,-4.9930682182312,7.48904657363892,2.45888614654541,-4.92788362503052,7.6465916633606,2.44121360778809,-5.0602707862854,7.38465309143066,2.46238493919373,-4.97526693344116,7.40415477752686,0.246428549289703,-5.82561588287354,10.8254709243774,0.137858554720879,-5.8268518447876,10.8261938095093,2.66273069381714,-5.82068872451782,6.30041408538818,2.60200071334839,-5.74568367004395,6.21926403045654,2.77400875091553,-5.75696134567261,6.39206981658936,2.69377112388611,-5.75503396987915,6.2871527671814,0.837828814983368,-6.1787543296814,10.4386072158813,0.850481986999512,-6.1179986000061,10.4541006088257,1.32694685459137,-6.19051742553711,10.3292140960693,1.35162222385406,-6.11993551254272,10.3437271118164,1.10177195072174,-5.78057861328125,10.4750280380249,0.82565450668335,-5.79872941970825,10.5181884765625,1.46528315544128,-5.75787258148193,10.1603355407715,0.711750507354736,-6.21345472335815,10.6553907394409,0.737540721893311,-6.14440011978149,10.6694641113281,1.53612375259399,-6.15566396713257,10.1063566207886,1.55045235157013,-6.09379148483276,10.1244239807129,0.425521582365036,-5.81985569000244,10.7984733581543,1.79361939430237,-5.75090217590332,10.0846815109253,1.96132659912109,-6.15349531173706,9.81819248199463,1.99348795413971,-6.08238744735718,9.83203506469727,1.93490552902222,-5.72276449203491,9.63778209686279,1.97637510299683,-6.10247945785522,9.56428813934326,1.99945819377899,-6.04880857467651,9.57936191558838,2.13771224021912,-5.74113321304321,9.47379016876221,2.17974185943604,-6.09915924072266,9.20094013214111,2.21436262130737,-6.03561639785767,9.21235179901123,2.18475604057312,-5.69440841674805,9.01995468139648,2.22622561454773,-6.03745031356812,8.9305534362793,2.2452495098114,-5.99182844161987,8.94156837463379, -2.42983388900757,-5.69980192184448,8.82768249511719,2.4861044883728,-6.04573059082031,8.48531055450439,2.53497719764709,-5.98618602752686,8.4938383102417,2.52757406234741,-5.6408109664917,8.25703907012939,2.47552156448364,-5.97767925262451,8.12065124511719,2.51460218429565,-5.93028497695923,8.14033699035645,2.62890028953552,-5.63312721252441,7.9626727104187,2.56434798240662,-5.93740749359131,7.59262275695801,2.60852527618408,-5.87507486343384,7.59661674499512,2.5937192440033,-5.54469203948975,7.36269903182983,2.60772895812988,-5.8378438949585,7.16555786132813,2.64044451713562,-5.78956842422485,7.17555570602417,2.7715368270874,-5.52833938598633,6.92693424224854,2.72409749031067,-5.81995344161987,6.54902982711792,2.7691478729248,-5.7579870223999,6.54846382141113,0.186176478862762,-5.40599918365479,10.5604429244995,0.408962994813919,-5.37765836715698,10.5297174453735,0.286388486623764,-5.38923454284668,10.5522413253784,1.325035572052,-5.36255979537964,9.95902156829834,1.42851531505585,-5.32881593704224,9.76651668548584,1.36372089385986,-5.34021043777466,9.86811637878418,1.94158887863159,-5.32511186599731,8.82122325897217,1.92996776103973,-5.28943252563477,8.59484100341797,1.92208695411682,-5.30168724060059,8.72125053405762,2.24429416656494,-5.00509595870972,7.15655708312988,0.821990370750427,-6.10083627700806,10.3223876953125,0.928407192230225,-5.96340847015381,10.2915315628052,1.05242145061493,-6.09419918060303,10.2619771957397,0.937243938446045,-6.17199945449829,10.3191995620728,0.92657870054245,-6.09543037414551,10.2999811172485,1.04016304016113,-4.97368860244751,10.1728649139404,1.08999192714691,-5.08548498153687,10.1295099258423,-7.67204910516739e-05,-4.82760667800903,10.4434747695923,0.0763324722647667,-4.79100894927979,10.3860998153687,0.0387615188956261,-4.8633074760437,10.4919900894165,0.0551605597138405,-4.82843399047852,10.4429531097412,1.64429950714111,-6.04884767532349,9.40957260131836,1.63792824745178,-5.92446565628052,9.29218292236328,1.7149806022644,-6.04238224029541,9.17246723175049,1.71577668190002,-6.11391878128052,9.30952644348145, -1.6626843214035,-6.04944658279419,9.29476261138916,1.71673262119293,-4.90206718444824,9.20643615722656,1.72381734848022,-5.05477571487427,9.14552783966064,1.3260737657547,-4.78569936752319,9.7157096862793,2.08884501457214,-5.91932535171509,7.93646907806396,2.05986857414246,-5.79199028015137,7.84212493896484,2.10913705825806,-5.89180088043213,7.70996999740601,2.14431834220886,-5.97305107116699,7.83440399169922,2.09011888504028,-5.91011047363281,7.83400630950928,2.10555624961853,-4.76589059829712,7.68279552459717,2.10858249664307,-4.85247659683228,7.62794589996338,1.87838733196259,-4.59503698348999,8.43730449676514,2.22288084030151,-5.65008878707886,6.55651426315308,2.32619524002075,-4.95285987854004,6.29020309448242,2.28337454795837,-4.87071323394775,6.30008888244629,-7.67204910516739e-05,-3.9584653377533,6.98886203765869,0.35977703332901,-3.81218218803406,6.71512842178345,0.38803294301033,-4.05646705627441,7.28638696670532,0.375374138355255,-3.97162222862244,6.98015403747559,0.169618412852287,-6.1231107711792,10.5979661941528,0.287025183439255,-5.988205909729,10.5854339599609,0.440563231706619,-6.11404848098755,10.5666961669922,0.306368172168732,-6.19124126434326,10.6185121536255,0.294505149126053,-6.11588954925537,10.5919895172119,0.666700124740601,-6.13303661346436,10.4265365600586,0.740006387233734,-6.00004625320435,10.398907661438,0.758788824081421,-6.10812997817993,10.3846988677979,0.718675434589386,-6.1850004196167,10.4072217941284,0.725919544696808,-6.12282848358154,10.3988599777222,0.650937855243683,-5.39533662796021,10.4212408065796,0.794689834117889,-5.47476577758789,10.408164024353,0.736980140209198,-5.44269752502441,10.4122934341431,1.37757205963135,-6.10226678848267,9.94392013549805,1.40503168106079,-5.95820379257202,9.86252021789551,1.51479339599609,-6.0747766494751,9.77573490142822,1.49752128124237,-6.16524887084961,9.8830623626709,1.44053173065186,-6.09168291091919,9.86570739746094,1.62821853160858,-6.05386161804199,9.60113048553467,1.66188967227936,-5.92327165603638,9.56415939331055,1.71434366703033,-6.03816080093384,9.54702377319336, -1.72118628025055,-6.10439252853394,9.58134269714355,1.6858434677124,-6.04370927810669,9.57003784179688,1.56685149669647,-5.3568754196167,9.60207843780518,1.65360546112061,-5.39749765396118,9.56203746795654,1.62527680397034,-5.3816089630127,9.57783508300781,1.96100866794586,-6.00411128997803,8.82915496826172,1.9224054813385,-5.88084697723389,8.73263740539551,1.95010709762573,-5.99304389953613,8.58433055877686,1.98974215984344,-6.06311559677124,8.71806716918945,1.94318199157715,-6.00318956375122,8.7229175567627,2.0249297618866,-5.9622950553894,8.26840019226074,2.06225824356079,-5.82613277435303,8.17712116241455,2.14567542076111,-5.91247653961182,8.09736251831055,2.14798188209534,-5.98181676864624,8.17105484008789,2.0968029499054,-5.93409490585327,8.17023372650146,2.02006888389587,-5.28791952133179,8.30005550384521,2.05660724639893,-5.29694747924805,8.13282680511475,2.04904460906982,-5.29619359970093,8.20464706420898,2.20966768264771,-5.68408060073853,7.14621591567993,2.20353841781616,-5.78885459899902,7.03546905517578,2.18379998207092,-5.67091464996338,6.90352153778076,2.24158644676208,-5.76317119598389,6.71711730957031,2.27637243270874,-5.8389949798584,6.87727737426758,2.21611475944519,-5.77779912948608,6.88765811920166,2.1861891746521,-5.18651103973389,7.06976270675659,2.20369744300842,-5.14053010940552,6.74492788314819,2.18658423423767,-5.16320753097534,6.92189598083496,1.24377179145813,-6.11098718643188,10.1056795120239,1.31134414672852,-5.97287893295288,10.0681858062744,1.33586037158966,-6.08797979354858,10.0490570068359,1.3003603219986,-6.16207933425903,10.0806865692139,1.3011566400528,-6.09937143325806,10.0716905593872,1.23143100738525,-5.36108875274658,10.0816946029663,1.34167098999023,-5.39989280700684,10.0577201843262,1.30402386188507,-5.38513517379761,10.0656757354736,0.860115110874176,-5.39775514602661,10.3183031082153,1.03093147277832,-5.3446741104126,10.2140007019043,0.934058725833893,-5.36277103424072,10.2695369720459,0.926024436950684,-4.86019468307495,10.1273174285889,0.632550776004791,-4.88005113601685,10.2919750213623, -0.773518443107605,-4.99328756332397,10.3273773193359,0.817931473255157,-5.2043628692627,10.3473539352417,-7.67204910516739e-05,-4.89575910568237,10.5324831008911,0.0292112790048122,-4.92700052261353,10.5663976669312,0.0296066403388977,-4.89541912078857,10.5316677093506,0.0504655167460442,-5.01350450515747,10.6269931793213,0.0533259995281696,-5.19576406478882,10.64195728302,0.445182114839554,-4.99293184280396,10.4821138381958,0.485932171344757,-5.08079099655151,10.4631299972534,1.86151683330536,-6.00480508804321,8.98930644989014,1.95018374919891,-5.87137508392334,8.95053768157959,2.02787303924561,-5.97562074661255,8.93642425537109,1.98456823825836,-6.03864812850952,8.96684455871582,1.96148633956909,-5.98455810546875,8.95667362213135,1.82577466964722,-5.35777711868286,9.0042896270752,1.99340581893921,-5.38977289199829,8.94283771514893,1.92471218109131,-5.38095664978027,8.96782970428467,1.60712385177612,-5.37224245071411,9.44071674346924,1.68266773223877,-5.33764410018921,9.1995906829834,1.63028872013092,-5.35114717483521,9.32604312896729,1.61596071720123,-4.69843578338623,9.16233348846436,1.4694242477417,-4.74452495574951,9.47203159332275,1.59375727176666,-4.92087697982788,9.47666549682617,1.61381363868713,-5.1370906829834,9.49890995025635,1.13432204723358,-4.82753372192383,9.95303153991699,1.27743721008301,-4.95821237564087,9.9718599319458,1.30569326877594,-5.13906717300415,9.99788284301758,1.44801104068756,-4.94233655929565,9.74861526489258,1.4711766242981,-5.08394289016724,9.69204616546631,2.15483069419861,-5.84213399887085,7.41336584091187,2.1905665397644,-5.70176649093628,7.30723094940186,2.2501814365387,-5.78243350982666,7.21115446090698,2.25074195861816,-5.8577127456665,7.30153751373291,2.2104640007019,-5.80747747421265,7.30093145370483,2.12052226066589,-5.17634010314941,7.45029163360596,2.22399592399597,-5.17915391921997,7.24811840057373,2.18149399757385,-5.17578315734863,7.33958625793457,2.02405047416687,-5.24577903747559,7.97601079940796,2.04729223251343,-5.19134044647217,7.73314571380615,2.02794981002808,-5.21531534194946,7.86455249786377, -1.90330493450165,-4.47847080230713,7.55332088470459,1.90696799755096,-4.53847312927246,8.04321670532227,2.07690501213074,-4.79959678649902,8.08755874633789,2.0754714012146,-5.00528717041016,8.06597137451172,1.75326490402222,-4.6523609161377,8.8609504699707,1.8850771188736,-4.87454414367676,8.88124465942383,1.95297384262085,-5.12037134170532,8.87244510650635,2.00407075881958,-4.84943151473999,8.5842227935791,2.02771425247192,-4.98613929748535,8.49838161468506,2.29683065414429,-5.6382474899292,6.2773904800415,2.2593367099762,-5.14606666564941,6.39601182937622,2.33519124984741,-5.12082242965698,6.21801853179932,2.29809832572937,-5.13455247879028,6.28661584854126,2.29157423973083,-4.85793352127075,6.55554151535034,1.85546445846558,-4.20000314712524,6.50439786911011,2.17082834243774,-4.68411588668823,6.59617805480957,2.25678825378418,-4.80195474624634,6.55563545227051,2.13970518112183,-4.71264457702637,7.13491487503052,2.21547770500183,-4.91827392578125,7.15354251861572,2.25177407264709,-4.87821626663208,6.90782165527344,2.22606658935547,-4.81624126434326,6.89821529388428,-7.67204910516739e-05,-6.14056253433228,10.6504936218262,0.0340659208595753,-6.01094055175781,10.6377286911011,0.0389211177825928,-6.20711088180542,10.6502695083618,0.0358948782086372,-6.13796138763428,10.6417560577393,0.301347762346268,-5.13962745666504,10.5470905303955,0.30055758357048,-5.08769702911377,10.5466318130493,0.0534856021404266,-5.28108501434326,10.6435079574585,0.571738719940186,-5.99353218078613,10.4897956848145,0.699887335300446,-5.28515005111694,10.4222755432129,0.676645755767822,-5.1942024230957,10.4103212356567,0.494450360536575,-5.13222646713257,10.4613428115845,0.787127017974854,-5.98200082778931,10.3582763671875,0.836158335208893,-5.30040502548218,10.3648710250854,0.931038081645966,-5.14778614044189,10.2483787536621,0.927610754966736,-5.08898401260376,10.2462596893311,1.1640944480896,-5.96804332733154,10.1708030700684,1.10400140285492,-5.14506006240845,10.119909286499,1.28348922729492,-5.22202062606812,10.0626363754272,1.24910402297974,-5.14094305038452,10.0589284896851, -1.33936440944672,-5.97088193893433,10.0099296569824,1.35345125198364,-5.14177560806274,9.86582660675049,1.35631775856018,-5.07640743255615,9.86119174957275,1.32384395599365,-5.22253799438477,10.0166835784912,1.54193484783173,-5.93096017837524,9.66748237609863,1.61420845985413,-5.25503540039063,9.58355617523193,1.57974672317505,-5.1564826965332,9.58060646057129,1.48550534248352,-5.15513181686401,9.68349075317383,1.6569527387619,-5.92647075653076,9.49569129943848,1.63434553146362,-5.23311138153076,9.51705646514893,1.63904559612274,-5.127037525177,9.35101509094238,1.63817203044891,-5.05470132827759,9.34469985961914,1.76082706451416,-5.89473915100098,9.05418682098389,1.73257112503052,-5.13085269927979,9.13426876068115,1.90784096717834,-5.26923036575317,8.99398708343506,1.86860132217407,-5.15683317184448,8.99800872802734,2.0029559135437,-5.88165235519409,8.90550804138184,1.96649992465973,-5.05836963653564,8.71498394012451,1.95917952060699,-4.99277925491333,8.71739482879639,1.99157667160034,-5.22366094589233,8.87605953216553,1.94652652740479,-5.85800170898438,8.42519664764404,2.09687900543213,-5.14430522918701,8.21382427215576,2.07992577552795,-5.05013561248779,8.24398899078369,2.03885722160339,-5.05353832244873,8.47288417816162,2.09306287765503,-5.8088002204895,8.0347375869751,2.07658696174622,-5.09675216674805,8.05501079559326,2.0677502155304,-4.93245363235474,7.88428354263306,2.07515335083008,-4.87675619125366,7.89324283599854,2.09529209136963,-5.7505259513855,7.56198787689209,2.11049389839172,-4.90567970275879,7.61822128295898,2.19916129112244,-5.0022406578064,7.3518385887146,2.17671608924866,-4.9220609664917,7.35746097564697,0.0990197658538818,-6.00180387496948,10.6008262634277,2.27239060401917,-5.75701570510864,6.4032621383667,2.374272108078,-5.74866580963135,6.19916963577271,2.36925768852234,-5.82069063186646,6.29629898071289,2.32293319702148,-5.75506639480591,6.28545475006104,0.778609395027161,-6.16701364517212,10.3600177764893,0.778449833393097,-6.10288381576538,10.3549547195435,1.16664302349091,-6.1793041229248,10.2051277160645, -1.15947556495667,-6.10430669784546,10.1831855773926,0.571101486682892,-6.19947624206543,10.5205993652344,0.568075180053711,-6.12496137619019,10.4970645904541,1.37820935249329,-6.15687704086304,10.0106410980225,1.35201752185822,-6.09499311447144,10.0057744979858,1.62877905368805,-6.13793706893921,9.70009803771973,1.57425463199615,-6.06321001052856,9.67862319946289,1.72038996219635,-6.09791660308838,9.49898338317871,1.68107306957245,-6.04250335693359,9.49363613128662,1.82545614242554,-6.09793281555176,9.08753299713135,1.78032898902893,-6.02580404281616,9.06590557098389,2.02484679222107,-6.03453397750854,8.89117813110352,2.00844788551331,-5.98847103118896,8.89710330963135,2.03845620155334,-6.04081392288208,8.41938591003418,1.97669363021851,-5.98061990737915,8.41966342926025,2.16994953155518,-5.96357154846191,8.02015972137451,2.12521815299988,-5.91383123397827,8.02179908752441,2.1814112663269,-5.93296003341675,7.5623574256897,2.12585473060608,-5.86960124969482,7.55970764160156,2.27621364593506,-5.83205604553223,7.12649011611938,2.23139905929565,-5.78330945968628,7.13298797607422,2.31107616424561,-5.81996726989746,6.54831314086914,2.2528121471405,-5.75801706314087,6.5514178276062,0,-6.23420095443726,10.6710348129272,0.0425840802490711,-6.23896408081055,10.7079133987427,0.0419473573565483,-6.23420381546021,10.6754026412964,0.466589748859406,-6.22927379608154,10.6432409286499,0.347277283668518,-6.24602651596069,10.7361726760864,0.19548536837101,-6.23483800888062,10.6854448318481,0.32212433218956,-6.23096084594727,10.677041053772,0.680468320846558,-6.23354291915894,10.4814872741699,0.62291818857193,-6.24517917633057,10.6125583648682,0.589889407157898,-6.23515129089355,10.5659761428833,0.754252195358276,-6.18786001205444,10.3930158615112,0.741758644580841,-6.21124076843262,10.4497108459473,0.726473987102509,-6.20910120010376,10.425952911377,0.853987097740173,-6.21186351776123,10.3657112121582,0.80670577287674,-6.20344066619873,10.3982582092285,0.789994180202484,-6.19608163833618,10.376443862915,1.0931715965271,-6.21170139312744,10.3130474090576, -1.00434482097626,-6.229079246521,10.3874664306641,0.966379046440125,-6.21340322494507,10.3506259918213,1.27902936935425,-6.21461248397827,10.1519069671631,1.24544107913971,-6.22857141494751,10.2696866989136,1.19991254806519,-6.21731281280518,10.2356119155884,1.35998070240021,-6.16723299026489,10.0586633682251,1.35663652420044,-6.19053888320923,10.1142635345459,1.32288861274719,-6.18766784667969,10.0960445404053,1.49266648292542,-6.20759439468384,9.99063396453857,1.46425104141235,-6.18948268890381,10.0571002960205,1.41879987716675,-6.18443918228149,10.0303316116333,1.65186011791229,-6.19127702713013,9.82794666290283,1.65997660160065,-6.21759796142578,9.96387195587158,1.57496869564056,-6.20521783828735,9.91913318634033,1.74864602088928,-6.16345930099487,9.64427280426025,1.80173671245575,-6.19523477554321,9.76203060150146,1.70932948589325,-6.18010282516479,9.72939014434814,1.77976894378662,-6.10918617248535,9.55600070953369,1.82688963413239,-6.14048480987549,9.60496234893799,1.77085554599762,-6.13309478759766,9.59326553344727,1.78263568878174,-6.12304878234863,9.4449405670166,1.84853887557983,-6.10888671875,9.5295524597168,1.77905511856079,-6.11172866821289,9.51222991943359,1.84392607212067,-6.12006759643555,9.21766185760498,1.913250207901,-6.11746263504028,9.37184143066406,1.80412578582764,-6.12493467330933,9.33722972869873,1.96769773960114,-6.0902853012085,9.03364944458008,1.99826037883759,-6.10219812393188,9.14531421661377,1.90250825881958,-6.11084985733032,9.11484909057617,2.06567931175232,-6.02549171447754,8.93746852874756,2.08016753196716,-6.04765796661377,8.99182891845703,2.02723598480225,-6.05138683319092,8.97891807556152,2.06153869628906,-6.06937503814697,8.83524036407471,2.12394332885742,-6.04021501541138,8.90776824951172,2.0675904750824,-6.04410123825073,8.89664459228516,2.10444140434265,-6.04720067977905,8.59602451324463,2.18395900726318,-6.04982328414917,8.757399559021,2.07610869407654,-6.06345844268799,8.73276424407959,2.17839121818542,-6.02843379974365,8.28049278259277,2.26124811172485,-6.02696132659912,8.45082664489746, -2.13938689231873,-6.0411114692688,8.43193912506104,2.24477243423462,-5.96651697158813,8.10960674285889,2.30000948905945,-5.98965311050415,8.19709491729736,2.21890473365784,-5.99262189865112,8.18166732788086,2.22901010513306,-6.0016918182373,7.95667362213135,2.32309222221375,-5.98703908920288,8.06682109832764,2.23999381065369,-5.98292922973633,8.03853225708008,2.25272917747498,-5.95306921005249,7.72386360168457,2.34769082069397,-5.97587633132935,7.87852573394775,2.23625349998474,-5.98257160186768,7.85232257843018,2.29022288322449,-5.92270231246948,7.42056274414063,2.37387633323669,-5.93167209625244,7.57836294174194,2.26936483383179,-5.94088983535767,7.56949234008789,2.34386897087097,-5.83793687820435,7.21732473373413,2.40141844749451,-5.87683057785034,7.31838417053223,2.31903409957886,-5.87540626525879,7.30841445922852,2.35763645172119,-5.86648988723755,7.02719736099243,2.44400358200073,-5.85108947753906,7.14324331283569,2.35230422019958,-5.84942388534546,7.13183546066284,2.39122581481934,-5.82123041152954,6.71133613586426,2.4873788356781,-5.83587741851807,6.88590526580811,2.37284445762634,-5.84577035903931,6.87893390655518,2.42075634002686,-5.84086990356445,6.40657758712769,2.51977515220642,-5.81626129150391,6.55002737045288,2.4061906337738,-5.82668161392212,6.54862117767334,2.45394897460938,-5.82781839370728,6.22352886199951,2.51858425140381,-5.84261131286621,6.3023624420166,2.43826961517334,-5.84264087677002,6.30083560943604,0.231940805912018,-6.24994277954102,10.7890882492065,0.140566155314445,-6.22369813919067,10.8224611282349,0.133640632033348,-6.24663591384888,10.7465028762817,0.138578161597252,-6.24836540222168,10.7921237945557,0.550644040107727,-6.24428033828735,10.7154684066772,0.387236624956131,-6.24764776229858,10.7644128799438,0.738018333911896,-6.23334169387817,10.5530605316162,0.668446242809296,-6.24251985549927,10.6393938064575,0.76985490322113,-6.18956565856934,10.421350479126,0.756641209125519,-6.20781993865967,10.473126411438,0.914002299308777,-6.22303295135498,10.4319543838501,0.822945773601532,-6.20250511169434,10.4194488525391, -1.1759512424469,-6.22539186477661,10.3837080001831,1.04119575023651,-6.22803449630737,10.423360824585,1.36626958847046,-6.21271324157715,10.209267616272,1.28961837291718,-6.2231879234314,10.3027172088623,1.41697084903717,-6.16682815551758,10.0852346420288,1.38967084884644,-6.18517923355103,10.1319999694824,1.62344610691071,-6.20723819732666,10.0742988586426,1.50540208816528,-6.18378114700317,10.0831432342529,1.83517217636108,-6.19839239120483,9.90555000305176,1.73957335948944,-6.20835256576538,10.0072154998779,1.90744006633759,-6.17108869552612,9.69009876251221,1.89152431488037,-6.18872213363647,9.79325485229492,1.86780500411987,-6.11018180847168,9.56925678253174,1.88157320022583,-6.13695287704468,9.61616134643555,1.99006080627441,-6.1268572807312,9.50750827789307,1.92017614841461,-6.11417961120605,9.54731559753418,2.05804038047791,-6.11834001541138,9.28408336639404,2.02890563011169,-6.12618923187256,9.40709781646729,2.13142347335815,-6.09084939956665,9.08338737487793,2.09919142723083,-6.10985374450684,9.17624759674072,2.13970518112183,-6.02600765228271,8.9481372833252,2.13405418395996,-6.05195999145508,9.00514888763428,2.23943948745728,-6.07251739501953,8.87739562988281,2.18133425712585,-6.04572677612305,8.91915607452393,2.34442257881165,-6.05066967010498,8.64320373535156,2.29467678070068,-6.06716156005859,8.78227043151855,2.40348315238953,-6.03091335296631,8.31009769439697,2.38581609725952,-6.04387521743774,8.46977615356445,2.36758828163147,-5.97164964675903,8.14973545074463,2.38199353218079,-5.99588823318481,8.21236228942871,2.45291686058044,-6.01118564605713,8.02205657958984,2.40659213066101,-5.99097490310669,8.0952091217041,2.45904588699341,-5.95749092102051,7.7539496421814,2.46039652824402,-5.99008321762085,7.90378856658936,2.49573683738708,-5.92459678649902,7.43358135223389,2.47918510437012,-5.94334602355957,7.58628606796265,2.48356199264526,-5.84189033508301,7.24426984786987,2.48372077941895,-5.87834930419922,7.32845306396484,2.5913360118866,-5.86851215362549,7.04255485534668,2.5356969833374,-5.85274696350098,7.15455961227417, -2.60382986068726,-5.82149744033813,6.72048091888428,2.60200071334839,-5.84679460525513,6.89122009277344,2.6463315486908,-5.8408522605896,6.40299320220947,2.63336038589478,-5.82665920257568,6.54978227615356,2.54190230369568,-5.82783651351929,6.23660564422607,2.59889221191406,-5.84258365631104,6.303795337677,0.176862567663193,-4.9685378074646,10.725546836853,0.178213283419609,-5.14227962493896,10.7214317321777,0.159354165196419,-5.20709037780762,10.6159152984619,0.158953204751015,-5.13926792144775,10.6123895645142,2.16032195091248,-4.63492059707642,6.35010147094727,2.16454005241394,-4.6992130279541,6.84043788909912,2.12211489677429,-4.7338662147522,7.3962082862854,2.09329867362976,-4.78276300430298,7.88114452362061,2.05119156837463,-4.82722282409668,8.33678722381592,1.95742750167847,-4.85762071609497,8.71256256103516,1.80062735080719,-4.894211769104,9.05072116851807,1.66021466255188,-4.90851783752441,9.3226490020752,1.52402544021606,-4.93551921844482,9.61845779418945,1.38170719146729,-4.9469051361084,9.84668636322021,1.16393482685089,-4.96858882904053,10.0794248580933,0.934058725833893,-4.97818994522095,10.241358757019,0.607079207897186,-4.99794101715088,10.4075193405151,0.315440714359283,-4.99706411361694,10.5372972488403,0.246511429548264,-5.21204662322998,10.7027978897095,0.173918634653091,-5.21407032012939,10.7190637588501,0.166273519396782,-5.24695348739624,10.7230825424194,0.126237437129021,-5.42249059677124,10.5738525390625,0.688030540943146,-5.38145542144775,10.6259078979492,0.362797141075134,-5.17924976348877,10.661789894104,0.755526781082153,-5.31603527069092,10.4882488250732,0.896972179412842,-5.45260906219482,10.4559268951416,1.10105240345001,-5.16190147399902,10.3199367523193,1.34573483467102,-5.34129858016968,10.2636613845825,1.42134833335876,-5.26597881317139,10.1007375717163,1.51463437080383,-5.39827156066895,10.1090993881226,1.5908899307251,-5.17470169067383,9.95172595977783,1.84909915924072,-5.3420557975769,9.79553604125977,1.83150851726532,-5.28115892410278,9.6130952835083,1.91985750198364,-5.39472675323486,9.5806827545166, -1.92487740516663,-5.09416818618774,9.41640472412109,2.12084054946899,-5.31265735626221,9.19946956634521,2.10062503814697,-5.29398012161255,9.01094150543213,2.19438910484314,-5.3654260635376,8.93744468688965,2.26570725440979,-5.09604549407959,8.77732372283936,2.49995493888855,-5.28837776184082,8.50004482269287,2.44877600669861,-5.17671394348145,8.26155281066895,2.51221299171448,-5.2968373298645,8.19015884399414,2.44774317741394,-4.9653959274292,7.98782444000244,2.5634753704071,-5.17045927047729,7.63038063049316,2.45689249038696,-5.08468770980835,7.38189697265625,2.59403705596924,-5.23268222808838,7.22093057632446,2.60765242576599,-4.91723775863647,6.96965503692627,2.73667454719543,-5.13699293136597,6.57012557983398,2.61624717712402,-5.04084634780884,6.2415599822998,2.62476491928101,-4.98053407669067,6.30407524108887,2.22789525985718,-5.14150047302246,6.55919456481934,2.21205592155457,-5.18721342086792,7.16838359832764,2.07698178291321,-5.17987251281738,7.58828735351563,2.04092764854431,-5.27656745910645,8.06105804443359,1.97152042388916,-5.28518962860107,8.44222545623779,1.98218560218811,-5.36283731460571,8.89448833465576,1.74649894237518,-5.34158611297607,9.08690929412842,1.63124704360962,-5.39109706878662,9.51782894134521,1.49871850013733,-5.33682298660278,9.67146015167236,1.33323514461517,-5.38740348815918,10.0221710205078,1.13527798652649,-5.3458890914917,10.1412086486816,0.824697971343994,-5.44743967056274,10.3706474304199,0.536079585552216,-5.37668561935425,10.4732055664063,2.04562282562256,-4.57646083831787,6.89951705932617,2.04769396781921,-4.52924251556396,6.57404136657715,2.10158038139343,-4.62104320526123,6.72384881973267,2.04172372817993,-4.64238119125366,7.65060091018677,2.03129410743713,-4.67021989822388,7.93083524703979,2.06870555877686,-4.71014356613159,7.7919750213623,1.96785688400269,-4.74430322647095,8.55517482757568,1.90043783187866,-4.76295328140259,8.75462627410889,1.95846617221832,-4.79433917999268,8.65931034088135,1.69173872470856,-4.81615018844604,9.20237064361572,1.61166608333588,-4.83111333847046,9.3654842376709, -1.67072641849518,-4.8535099029541,9.27618408203125,1.40312027931213,-4.87468671798706,9.74563407897949,1.30664849281311,-4.88759326934814,9.88013362884521,1.38648498058319,-4.90268516540527,9.80770301818848,0.986512184143066,-4.92256879806519,10.16273021698,0.831540584564209,-4.9298038482666,10.2566366195679,0.948546469211578,-4.94296216964722,10.2107849121094,0.411752879619598,-4.95003175735474,10.4580230712891,0.244676887989044,-4.94905757904053,10.5227603912354,0.351017504930496,-4.96786832809448,10.5040454864502,2.05358099937439,-4.32579469680786,6.29204225540161,2.03694581985474,-4.42243957519531,6.4269003868103,1.87687766551971,-4.42844390869141,7.04257583618164,2.04275631904602,-4.58085632324219,7.2770209312439,2.03551197052002,-4.56761264801025,7.08492183685303,2.03893351554871,-4.60245275497437,7.47223377227783,2.01776242256165,-4.69018220901489,8.21164226531982,2.02229905128479,-4.66989278793335,8.06455039978027,1.99364757537842,-4.71235132217407,8.39055728912354,1.7914719581604,-4.778724193573,8.98734951019287,1.84551870822906,-4.763023853302,8.86764144897461,1.73606932163239,-4.79380893707275,9.10254287719727,1.51200914382935,-4.84543037414551,9.56727409362793,1.5619969367981,-4.83260107040405,9.46528244018555,1.45207619667053,-4.8575611114502,9.66306781768799,1.15286874771118,-4.90220403671265,10.0335512161255,1.23143100738525,-4.89095592498779,9.95738315582275,1.06285047531128,-4.91081666946411,10.1027679443359,0.605728447437286,-4.93106079101563,10.3594102859497,0.716681838035583,-4.92705297470093,10.3072757720947,0.380789339542389,-4.9005446434021,10.4144401550293,0.50034373998642,-4.93824863433838,10.4097013473511,1.04016304016113,-3.96771550178528,6.75447463989258,0.992959558963776,-3.52570533752441,6.34976625442505,1.00816750526428,-3.73918104171753,6.52913522720337,-7.67204910516739e-05,-4.74798107147217,10.3225812911987,0.124727122485638,-4.70928573608398,10.2527637481689,0.10005184262991,-4.75122356414795,10.3224563598633,-7.67204910516739e-05,-4.65933084487915,10.1769323348999,0.171606406569481,-4.62323379516602,10.102972984314, -0.148924723267555,-4.66560745239258,10.1775159835815,0,-4.57800912857056,10.0371942520142,0.211011350154877,-4.5472936630249,9.96690559387207,0.19174513220787,-4.58564424514771,10.0356349945068,-7.67204910516739e-05,-4.49541330337524,9.89371967315674,0.250327825546265,-4.45475387573242,9.79148864746094,0.230985447764397,-4.50286436080933,9.88823890686035,-7.67204910516739e-05,-4.39892959594727,9.67584896087646,0.284158557653427,-4.35712575912476,9.52557849884033,0.267599940299988,-4.40561151504517,9.66836261749268,-7.67204910516739e-05,-4.30472993850708,9.37608337402344,0.320295363664627,-4.26248502731323,9.193190574646,0.301430642604828,-4.31094932556152,9.36964797973633,-7.67204910516739e-05,-4.19903087615967,8.99018478393555,0.362160384654999,-4.15308332443237,8.76627635955811,0.341867685317993,-4.20667600631714,8.98861408233643,-7.67204910516739e-05,-4.10008144378662,8.53670120239258,0.386358022689819,-4.07911968231201,8.31794357299805,0.377285450696945,-4.11137390136719,8.53646659851074,-7.67204910516739e-05,-4.04012060165405,8.13325214385986,0.388269275426865,-4.04566669464111,7.91401243209839,0.388511210680008,-4.05398416519165,8.12930202484131,0,-4.05027151107788,7.62311029434204,0.390257298946381,-4.06385135650635,7.61539936065674,-0.246270060539246,-5.41680717468262,10.7577047348022,-0.566329658031464,-5.38128614425659,10.681791305542,-0.402438968420029,-5.39608001708984,10.7270231246948,-1.59279954433441,-5.3716778755188,10.1045579910278,-1.77953314781189,-5.33451986312866,9.91261291503906,-1.68759822845459,-5.34744930267334,10.0274114608765,-2.27557682991028,-5.32962989807129,8.89839935302734,-2.43492531776428,-5.29290103912354,8.67005157470703,-2.35787892341614,-5.30605792999268,8.80605792999268,-2.57477807998657,-4.98489141464233,7.12168741226196,-2.46660900115967,-5.13603925704956,7.30129432678223,-2.50019764900208,-5.05364608764648,7.22187995910645,-2.51683259010315,-5.08021211624146,7.22337961196899,-0.952286720275879,-6.12730646133423,10.4781188964844,-1.23023986816406,-6.12625408172607,10.4297370910645, --1.07112765312195,-6.19871234893799,10.4532356262207,-1.08792150020599,-6.12938976287842,10.4722518920898,-1.29232656955719,-5.0667839050293,10.1946229934692,-1.23732435703278,-4.9298210144043,10.2557611465454,-0.563940703868866,-3.78981256484985,10.1971521377563,-0.540539443492889,-4.95295143127441,10.5953779220581,-2.10221266746521,-6.05786371231079,9.5564489364624,-2.18539357185364,-6.04439640045166,9.32894897460938,-2.12020421028137,-6.11656141281128,9.43780994415283,-2.1560230255127,-6.05410432815552,9.45830726623535,-2.0082893371582,-4.99154615402222,9.20073890686035,-2.01505494117737,-4.83223581314087,9.24244499206543,-1.81344068050385,-3.68086624145508,9.40210819244385,-1.72158789634705,-4.9008264541626,9.80685710906982,-2.59045743942261,-5.9391074180603,8.07243824005127,-2.59038019180298,-5.90131378173828,7.77436351776123,-2.55201411247253,-5.98643398284912,7.92556858062744,-2.60000777244568,-5.92604207992554,7.94169330596924,-2.4477436542511,-4.8491415977478,7.68547058105469,-2.48443555831909,-4.74286890029907,7.80917644500732,-2.40993142127991,-3.50977420806885,8.13588333129883,-2.35564923286438,-4.8105297088623,8.59074878692627,-2.78459215164185,-5.49429225921631,6.38666725158691,-2.77806830406189,-5.51153469085693,6.74354219436646,-2.79509830474854,-5.50533866882324,6.55248069763184,-2.61473751068115,-4.87392616271973,6.30552673339844,-2.61139321327209,-4.95285940170288,6.30372381210327,-2.58241653442383,-4.67946624755859,6.98756504058838,-2.6332836151123,-3.28767967224121,6.52517414093018,-0.251685261726379,-6.1558518409729,10.8286790847778,-0.62029355764389,-6.14947462081909,10.7371854782104,-0.422973603010178,-6.22150421142578,10.7779750823975,-0.43507182598114,-6.15349102020264,10.7928981781006,-0.793333530426025,-6.1360502243042,10.5915660858154,-0.793971359729767,-6.11256837844849,10.4474754333496,-0.773360013961792,-6.18317461013794,10.492805480957,-0.793492615222931,-6.12203216552734,10.5054244995117,-0.767230808734894,-5.40177488327026,10.5656452178955,-0.833847343921661,-5.47786331176758,10.465648651123, --0.803202450275421,-5.44741249084473,10.5072536468506,-1.68329763412476,-6.10219383239746,10.1345090866089,-1.93681156635284,-6.09180784225464,9.9573335647583,-1.79887628555298,-6.17119932174683,10.0438709259033,-1.82275521755219,-6.0999813079834,10.0684766769409,-1.9960310459137,-6.06993532180786,9.71592235565186,-1.92288374900818,-6.04206943511963,9.58533763885498,-1.92495477199554,-6.11152410507202,9.62552928924561,-1.94708132743835,-6.05281352996826,9.63218879699707,-1.88579154014587,-5.36145830154419,9.69441604614258,-1.87457132339478,-5.39900588989258,9.59115314483643,-1.87870693206787,-5.38414192199707,9.6276798248291,-2.33869600296021,-6.01029920578003,8.91247653961182,-2.49008655548096,-5.99994945526123,8.67735481262207,-2.38287281990051,-6.06951522827148,8.80442142486572,-2.42250776290894,-6.01045846939087,8.82058906555176,-2.53999185562134,-5.96709251403809,8.32698440551758,-2.45339512825012,-5.9230375289917,8.18176460266113,-2.44957256317139,-5.98758316040039,8.22527027130127,-2.48730206489563,-5.94068717956543,8.23351097106934,-2.53116130828857,-5.29190921783447,8.34867286682129,-2.4810905456543,-5.30903768539429,8.22675228118896,-2.50608444213867,-5.30312013626099,8.26855659484863,-2.74041485786438,-5.54294681549072,7.08502197265625,-2.57477807998657,-5.53896903991699,7.28717947006226,-2.64919924736023,-5.54244422912598,7.19982957839966,-2.72505402565002,-5.79253578186035,7.06258821487427,-2.73842692375183,-5.76365041732788,6.72922039031982,-2.69401383399963,-5.84068250656128,6.89755344390869,-2.74065661430359,-5.77958679199219,6.90722036361694,-2.67483043670654,-5.19783115386963,7.11063480377197,-2.72943091392517,-5.13624048233032,6.76804351806641,-2.7143120765686,-5.16106271743774,6.95400714874268,-1.42978405952454,-6.1099648475647,10.243049621582,-1.45867741107941,-6.08747577667236,10.1083421707153,-1.41911888122559,-6.15810871124268,10.1467761993408,-1.44188284873962,-6.09604692459106,10.1561756134033,-1.42747735977173,-5.36600542068481,10.1941890716553,-1.46393346786499,-5.41136312484741,10.0993022918701, --1.45087885856628,-5.39493846893311,10.1334867477417,-0.988984644412994,-5.40275382995605,10.4450454711914,-1.23039901256561,-5.33457040786743,10.3346290588379,-1.10574853420258,-5.35919141769409,10.3998765945435,-1.29741752147675,-3.74451875686646,9.85927677154541,-0.979829251766205,-3.76639318466187,10.0222578048706,-0.905484795570374,-4.95959520339966,10.4361753463745,-0.898718297481537,-5.20458173751831,10.4245805740356,-0.176945433020592,-4.9685378074646,10.725546836853,-0.179009616374969,-3.80354499816895,10.3134431838989,-0.05898367613554,-5.1928563117981,10.7132616043091,-0.0571491271257401,-5.28466129302979,10.6990880966187,-0.552078247070313,-5.08422231674194,10.5733594894409,-2.22415590286255,-6.02156591415405,9.10936832427979,-2.18372392654419,-5.97893047332764,8.96032905578613,-2.17663979530334,-6.04208469390869,9.01570415496826,-2.19526267051697,-5.99576950073242,9.02073001861572,-2.14909768104553,-5.35427951812744,9.0933313369751,-2.14073824882507,-5.39109086990356,8.9628324508667,-2.14073824882507,-5.38381814956665,9.01462173461914,-1.98314142227173,-5.36987113952637,9.54968357086182,-2.07547235488892,-5.29148054122925,9.32239532470703,-2.03225064277649,-5.32303953170776,9.45143127441406,-2.09019589424133,-3.59096431732178,8.8278865814209,-1.96929109096527,-3.64389991760254,9.12462520599365,-1.8733743429184,-4.89144420623779,9.53985595703125,-1.84774911403656,-5.1354022026062,9.53629589080811,-1.59789061546326,-3.71742677688599,9.6675968170166,-1.50556218624115,-4.92667293548584,10.0606355667114,-1.4702216386795,-5.14917039871216,10.0455408096313,-1.72054958343506,-5.08461809158325,9.76005458831787,-2.61784052848816,-5.84616804122925,7.44112205505371,-2.56618332862854,-5.79004096984863,7.26262283325195,-2.54930639266968,-5.86286878585815,7.33647632598877,-2.58114290237427,-5.81336307525635,7.34045124053955,-2.56594133377075,-5.19028902053833,7.4799370765686,-2.52924990653992,-5.24765205383301,7.30459833145142,-2.53720760345459,-5.22478914260864,7.38118886947632,-2.55360674858093,-5.26619529724121,8.12104034423828, --2.55336427688599,-5.17577457427979,7.80620574951172,-2.55869698524475,-5.21674394607544,7.98145294189453,-2.55113482475281,-3.40678358078003,7.37494039535522,-2.5076003074646,-3.46340703964233,7.79011964797974,-2.44574999809265,-4.79573726654053,8.24600124359131,-2.42489743232727,-5.03045463562012,8.19138431549072,-2.26705861091614,-3.56012415885925,8.5060396194458,-2.19128060340881,-4.85039281845093,8.93075561523438,-2.16159152984619,-5.11873531341553,8.91559505462646,-2.37395405769348,-4.98405885696411,8.5270881652832,-2.62715458869934,-5.42901182174683,6.21318340301514,-2.70873785018921,-5.46296405792236,6.27867794036865,-2.72354388237,-5.14277458190918,6.39971160888672,-2.6293785572052,-5.11680030822754,6.24068880081177,-2.67690086364746,-5.13292789459229,6.29661417007446,-2.63232827186584,-4.92915534973145,6.41459321975708,-2.62404632568359,-4.88413953781128,6.7855920791626,-2.60231995582581,-4.85794878005981,6.59181594848633,-2.632169008255,-4.89259052276611,6.58782196044922,-2.62007021903992,-4.67815494537354,6.30472087860107,-2.66281414031982,-3.28638744354248,5.82048511505127,-2.60207796096802,-4.6534276008606,6.60857820510864,-2.6476891040802,-3.23664593696594,6.1414909362793,-2.60295796394348,-4.79819631576538,6.59765148162842,-2.55105805397034,-4.71743583679199,7.25841617584229,-2.6208667755127,-3.32737493515015,6.8132643699646,-2.51667380332947,-4.96414136886597,7.23243427276611,-2.57995128631592,-4.82382917404175,6.97422170639038,-2.57819962501526,-4.88279342651367,6.9683632850647,-0.0331111177802086,-6.2180643081665,10.7608232498169,-0.0317604020237923,-6.15073442459106,10.7692003250122,-0.340276122093201,-4.95876932144165,10.674464225769,-0.346245765686035,-3.80005931854248,10.2728490829468,-0.340594232082367,-5.09143400192261,10.6644906997681,-0.343773931264877,-5.14614200592041,10.6599750518799,-0.039003998041153,-5.46272850036621,10.7215843200684,-0.730615794658661,-4.96316480636597,10.5156650543213,-0.788083493709564,-3.77777767181396,10.1074657440186,-0.818410336971283,-5.80088090896606,10.5974206924438, --0.612813651561737,-5.81223726272583,10.7480869293213,-0.745575606822968,-5.80561113357544,10.6775608062744,-0.736585438251495,-5.19503211975098,10.4928035736084,-0.744301617145538,-5.28894329071045,10.4860992431641,-0.686757206916809,-5.21814012527466,10.5301637649536,-0.488563627004623,-5.16111516952515,10.6132593154907,-0.56521475315094,-5.13811635971069,10.5657052993774,-0.597128570079803,-5.17026042938232,10.5706043243408,-0.97346419095993,-5.78964471817017,10.4875783920288,-0.826131641864777,-5.79729986190796,10.4669504165649,-0.878426074981689,-5.79480218887329,10.4708395004272,-1.07351660728455,-4.93617916107178,10.3497266769409,-1.13918399810791,-3.75567102432251,9.94163227081299,-0.991609394550323,-5.23509693145752,10.3936376571655,-0.820639729499817,-5.38121318817139,10.4522428512573,-0.898400247097015,-5.30402421951294,10.4232625961304,-0.898641526699066,-5.33122491836548,10.4292478561401,-1.09787321090698,-5.07038974761963,10.3188095092773,-1.09866333007813,-5.1296706199646,10.3100242614746,-1.38123607635498,-4.93476009368896,10.1622486114502,-1.45326781272888,-3.73259544372559,9.77542972564697,-1.44904983043671,-5.75700235366821,10.2426996231079,-1.24018549919128,-5.77027893066406,10.4280824661255,-1.36491310596466,-5.76183938980103,10.3413133621216,-1.39364671707153,-5.21220302581787,10.1398096084595,-1.21440136432648,-5.12968444824219,10.2391633987427,-1.30792307853699,-5.12646627426147,10.1744384765625,-1.31827020645142,-5.15665435791016,10.1825561523438,-1.39771127700806,-5.15135288238525,10.1096410751343,-1.41211652755737,-5.23901510238647,10.0959196090698,-1.66364240646362,-5.75714492797852,10.155650138855,-1.47817873954773,-5.76028156280518,10.1184663772583,-1.55133199691772,-5.76018714904785,10.1419162750244,-1.61930370330811,-4.90826559066772,9.9417028427124,-1.71673333644867,-3.69902992248535,9.53592681884766,-1.58540034294128,-5.07765579223633,9.93589019775391,-1.57417285442352,-5.14579153060913,9.93711280822754,-1.52339494228363,-5.21743154525757,10.0307359695435,-1.43575382232666,-5.2925910949707,10.0717658996582, --1.46249938011169,-5.23930597305298,10.0487232208252,-1.47069942951202,-5.26658535003662,10.0596237182617,-1.80683374404907,-4.90261316299438,9.67172622680664,-1.90027940273285,-3.66277027130127,9.26631832122803,-1.97358560562134,-5.72455263137817,9.71689796447754,-1.905930519104,-5.74225854873657,9.96549129486084,-1.96491384506226,-5.73232173919678,9.83455848693848,-1.80731153488159,-5.15477609634399,9.62291526794434,-1.81972897052765,-5.25656270980835,9.61117076873779,-1.80977725982666,-5.23495817184448,9.66826820373535,-1.66770124435425,-5.15767383575439,9.84956455230713,-1.72763419151306,-5.15852165222168,9.74481105804443,-1.74785017967224,-5.18581342697144,9.75107097625732,-2.07984948158264,-5.74564027786255,9.57506084442139,-1.91651928424835,-5.72711324691772,9.5975456237793,-1.98544859886169,-5.73789215087891,9.59651660919189,-1.93546080589294,-4.8416600227356,9.39909172058105,-2.02245831489563,-3.61103582382202,8.97729206085205,-1.88706564903259,-5.18942403793335,9.50742435455322,-1.83914804458618,-5.29887056350708,9.57698154449463,-1.84607362747192,-5.23458528518677,9.54294490814209,-1.85809564590454,-5.26300859451294,9.55139541625977,-1.91221845149994,-4.99115467071533,9.40340900421143,-1.905930519104,-5.06111478805542,9.40726089477539,-2.10555744171143,-4.86570835113525,9.0840425491333,-2.18117570877075,-3.58336782455444,8.6764497756958,-2.2166759967804,-5.71024370193481,9.10509204864502,-2.17496418952942,-5.73093557357788,9.33788967132568,-2.20728468894958,-5.72150659561157,9.21305465698242,-2.07579112052917,-5.19960069656372,9.08407688140869,-1.97175645828247,-5.04156064987183,9.30147361755371,-2.00924515724182,-5.06467771530151,9.18466091156006,-2.02739596366882,-5.09609651565552,9.1858024597168,-2.09298038482666,-5.15507316589355,9.02957153320313,-2.09178924560547,-5.27031946182251,9.01190376281738,-2.33694386482239,-5.70256185531616,8.92179489135742,-2.1716251373291,-5.6849799156189,8.96569538116455,-2.23657274246216,-5.69270706176758,8.95033359527588,-2.27541756629944,-4.82226657867432,8.76768112182617, --2.3402886390686,-3.53412818908691,8.31560134887695,-2.25488305091858,-4.99242925643921,8.76817321777344,-2.24716114997864,-5.06174516677856,8.76805210113525,-2.20449423789978,-5.1474552154541,8.86599445343018,-2.12116003036499,-5.32847785949707,8.95840549468994,-2.14973473548889,-5.22609329223633,8.91264629364014,-2.1560230255127,-5.25232219696045,8.9181604385376,-2.41304063796997,-4.80944633483887,8.4138355255127,-2.46883296966553,-3.48684215545654,7.96456861495972,-2.57302641868591,-5.65895128250122,8.33833408355713,-2.50728249549866,-5.68907690048218,8.68220615386963,-2.56060838699341,-5.67529582977295,8.49959468841553,-2.42863702774048,-5.05244398117065,8.3100471496582,-2.43556261062622,-5.15020132064819,8.26579856872559,-2.45275807380676,-5.11785173416138,8.35070896148682,-2.33463716506958,-5.08148908615112,8.65361499786377,-2.3829493522644,-5.05493497848511,8.49727916717529,-2.40579581260681,-5.08747005462646,8.49636554718018,-2.62325000762939,-5.64838314056396,8.10554695129395,-2.49717164039612,-5.63119173049927,8.216721534729,-2.55416107177734,-5.64072895050049,8.1782054901123,-2.47010684013367,-4.76405715942383,8.06769847869873,-2.53330898284912,-3.44001388549805,7.61496782302856,-2.44272994995117,-5.05684375762939,8.11344528198242,-2.43015289306641,-5.20708465576172,8.2091064453125,-2.41741752624512,-5.12399673461914,8.17035579681396,-2.43246006965637,-5.15224266052246,8.17349433898926,-2.43492531776428,-4.88004207611084,8.01153469085693,-2.42250776290894,-4.93146657943726,7.98725986480713,-2.50942897796631,-4.73791790008545,7.49767446517944,-2.58639860153198,-3.36392593383789,7.07006502151489,-2.63606858253479,-5.55877542495728,7.45898151397705,-2.61656665802002,-5.60670042037964,7.7851881980896,-2.63129067420959,-5.58071756362915,7.60861539840698,-2.46278643608093,-4.9930682182312,7.48904657363892,-2.45187950134277,-4.91125011444092,7.82333564758301,-2.43389320373535,-4.89644432067871,7.65153789520264,-2.4589638710022,-4.92788362503052,7.6465916633606,-2.46246790885925,-4.97526693344116,7.40415477752686, --2.44129657745361,-5.0602707862854,7.38465309143066,-0.246512025594711,-5.82561588287354,10.8254709243774,-0.137941434979439,-5.8268518447876,10.8261938095093,-2.77408647537231,-5.75696134567261,6.39206981658936,-2.60207796096802,-5.74568367004395,6.21926403045654,-2.66281414031982,-5.82068872451782,6.30041408538818,-2.69393086433411,-5.75503396987915,6.2871527671814,-0.837911784648895,-6.1787543296814,10.4386072158813,-0.850565552711487,-6.1179986000061,10.4541006088257,-1.32702970504761,-6.19051742553711,10.3292140960693,-1.35170555114746,-6.11993551254272,10.3437271118164,-1.10184907913208,-5.78057861328125,10.4750280380249,-0.825653970241547,-5.79872941970825,10.5181884765625,-1.46544313430786,-5.75787258148193,10.1603355407715,-0.711751103401184,-6.21345472335815,10.6553907394409,-0.737700343132019,-6.14440011978149,10.6694641113281,-1.53620707988739,-6.15566396713257,10.1063566207886,-1.55053579807281,-6.09379148483276,10.1244239807129,-0.425598323345184,-5.81985569000244,10.7984733581543,-1.79362010955811,-5.75090217590332,10.0846815109253,-1.96140992641449,-6.15349531173706,9.81819248199463,-1.99356508255005,-6.08238744735718,9.83203506469727,-1.93498241901398,-5.72276449203491,9.63778209686279,-1.97645223140717,-6.10247945785522,9.56428813934326,-1.99953484535217,-6.04880857467651,9.57936191558838,-2.13771271705627,-5.74113321304321,9.47379016876221,-2.17990136146545,-6.09915924072266,9.20094013214111,-2.21444606781006,-6.03561639785767,9.21235179901123,-2.18491578102112,-5.69440841674805,9.01995468139648,-2.2263023853302,-6.03745031356812,8.9305534362793,-2.24532675743103,-5.99182844161987,8.94156837463379,-2.42991185188293,-5.69980192184448,8.82768249511719,-2.48618721961975,-6.04573059082031,8.48531055450439,-2.53513693809509,-5.98618602752686,8.4938383102417,-2.52765679359436,-5.6408109664917,8.25703907012939,-2.47559857368469,-5.97767925262451,8.12065124511719,-2.51468515396118,-5.93028497695923,8.14033699035645,-2.62898373603821,-5.63312721252441,7.9626727104187,-2.56443095207214,-5.93740749359131,7.59262275695801, --2.60860824584961,-5.87507486343384,7.59661674499512,-2.5938024520874,-5.54469203948975,7.36269903182983,-2.60781240463257,-5.8378438949585,7.16555786132813,-2.64052200317383,-5.78956842422485,7.17555570602417,-2.7715380191803,-5.52833938598633,6.92693424224854,-2.72418093681335,-5.81995344161987,6.54902982711792,-2.76923131942749,-5.7579870223999,6.54846382141113,-0.409122556447983,-5.37765836715698,10.5297174453735,-0.186253771185875,-5.40599918365479,10.5604429244995,-0.286465764045715,-5.38923454284668,10.5522413253784,-1.42859244346619,-5.32881593704224,9.76651668548584,-1.32511901855469,-5.36255979537964,9.95902156829834,-1.36380434036255,-5.34021043777466,9.86811637878418,-1.9301278591156,-5.28943252563477,8.59484100341797,-1.94167232513428,-5.32511186599731,8.82122325897217,-1.92217016220093,-5.30168724060059,8.72125053405762,-2.24437141418457,-5.00509595870972,7.15655708312988,-0.93732738494873,-6.17199945449829,10.3191995620728,-1.05249869823456,-6.09419918060303,10.2619771957397,-0.92849063873291,-5.96340847015381,10.2915315628052,-0.822067081928253,-6.10083627700806,10.3223876953125,-0.926661670207977,-6.09543037414551,10.2999811172485,-1.09015130996704,-5.08548498153687,10.1295099258423,-1.04024028778076,-4.97368860244751,10.1728649139404,-0.0389216765761375,-4.8633074760437,10.4919900894165,-0.0764153599739075,-4.79100894927979,10.3860998153687,-0.0552384033799171,-4.82843399047852,10.4429531097412,-1.71585404872894,-6.11391878128052,9.30952644348145,-1.71505749225616,-6.04238224029541,9.17246723175049,-1.63801109790802,-5.92446565628052,9.29218292236328,-1.64437675476074,-6.04884767532349,9.40957260131836,-1.66268646717072,-6.04944658279419,9.29476261138916,-1.72389447689056,-5.05477571487427,9.14552783966064,-1.71680974960327,-4.90206718444824,9.20643615722656,-0.898004710674286,-4.60341739654541,9.81055164337158,-1.32615113258362,-4.78569936752319,9.7157096862793,-2.14440178871155,-5.97305107116699,7.83440399169922,-2.10922026634216,-5.89180088043213,7.70996999740601,-2.05995202064514,-5.79199028015137,7.84212493896484, --2.08892202377319,-5.91932535171509,7.93646907806396,-2.0902726650238,-5.91011047363281,7.83400630950928,-2.10865998268127,-4.85247659683228,7.62794589996338,-2.10563969612122,-4.76589059829712,7.68279552459717,-1.42063474655151,-4.34241580963135,8.49148368835449,-1.87854743003845,-4.59503698348999,8.43730449676514,-2.2229642868042,-5.65008878707886,6.55651426315308,-2.28345799446106,-4.87071323394775,6.30008888244629,-2.3262779712677,-4.95285987854004,6.29020309448242,-0.388110250234604,-4.05646705627441,7.28638696670532,-0.359854310750961,-3.81218218803406,6.71512842178345,-0.375457018613815,-3.97162222862244,6.98015403747559,-0.306445449590683,-6.19124126434326,10.6185121536255,-0.44064661860466,-6.11404848098755,10.5666961669922,-0.287185341119766,-5.988205909729,10.5854339599609,-0.169701278209686,-6.1231107711792,10.5979661941528,-0.294588536024094,-6.11588954925537,10.5919895172119,-0.718753278255463,-6.1850004196167,10.4072217941284,-0.758871734142303,-6.10812997817993,10.3846988677979,-0.740083694458008,-6.00004625320435,10.398907661438,-0.666777491569519,-6.13303661346436,10.4265365600586,-0.725996911525726,-6.12282848358154,10.3988599777222,-0.794767081737518,-5.47476577758789,10.408164024353,-0.651015162467957,-5.39533662796021,10.4212408065796,-0.737063646316528,-5.44269752502441,10.4122934341431,-1.49760448932648,-6.16524887084961,9.8830623626709,-1.51487672328949,-6.0747766494751,9.77573490142822,-1.40519106388092,-5.95820379257202,9.86252021789551,-1.37764871120453,-6.10226678848267,9.94392013549805,-1.44060838222504,-6.09168291091919,9.86570739746094,-1.7212690114975,-6.10439252853394,9.58134269714355,-1.71450328826904,-6.03816080093384,9.54702377319336,-1.66196727752686,-5.92327165603638,9.56415939331055,-1.62830018997192,-6.05386161804199,9.60113048553467,-1.68592870235443,-6.04370927810669,9.57003784179688,-1.65369069576263,-5.39749765396118,9.56203746795654,-1.56692922115326,-5.3568754196167,9.60207843780518,-1.6254346370697,-5.3816089630127,9.57783508300781,-1.98982548713684,-6.06311559677124,8.71806716918945, --1.95018422603607,-5.99304389953613,8.58433055877686,-1.92248892784119,-5.88084697723389,8.73263740539551,-1.96109139919281,-6.00411128997803,8.82915496826172,-1.94325935840607,-6.00318956375122,8.7229175567627,-2.14806485176086,-5.98181676864624,8.17105484008789,-2.14583539962769,-5.91247653961182,8.09736251831055,-2.06233549118042,-5.82613277435303,8.17712116241455,-2.02500700950623,-5.9622950553894,8.26840019226074,-2.09687972068787,-5.93409490585327,8.17023372650146,-2.05668377876282,-5.29694747924805,8.13282680511475,-2.02015161514282,-5.28791952133179,8.30005550384521,-2.04912161827087,-5.29619359970093,8.20464706420898,-2.20982718467712,-5.68408060073853,7.14621591567993,-2.27644968032837,-5.8389949798584,6.87727737426758,-2.24166917800903,-5.76317119598389,6.71711730957031,-2.18388295173645,-5.67091464996338,6.90352153778076,-2.20362114906311,-5.78885459899902,7.03546905517578,-2.21611523628235,-5.77779912948608,6.88765811920166,-2.20378088951111,-5.14053010940552,6.74492788314819,-2.18626689910889,-5.18651103973389,7.06976270675659,-2.1866672039032,-5.16320753097534,6.92189598083496,-1.30051982402802,-6.16207933425903,10.0806865692139,-1.33594381809235,-6.08797979354858,10.0490570068359,-1.3114275932312,-5.97287893295288,10.0681858062744,-1.24384891986847,-6.11098718643188,10.1056795120239,-1.30123949050903,-6.09937143325806,10.0716905593872,-1.34175372123718,-5.39989280700684,10.0577201843262,-1.23159062862396,-5.36108875274658,10.0816946029663,-1.30410671234131,-5.38513517379761,10.0656757354736,-1.03109109401703,-5.3446741104126,10.2140007019043,-0.860198140144348,-5.39775514602661,10.3183031082153,-0.934141576290131,-5.36277103424072,10.2695369720459,-0.594343662261963,-4.73376798629761,10.15793800354,-0.926101684570313,-4.86019468307495,10.1273174285889,-0.402598559856415,-4.79111385345459,10.3060150146484,-0.632628083229065,-4.88005113601685,10.2919750213623,-0.818008840084076,-5.2043628692627,10.3473539352417,-0.773595809936523,-4.99328756332397,10.3273773193359,-0.029294716194272,-4.92700052261353,10.5663976669312, --0.0296895187348127,-4.89541912078857,10.5316677093506,-0.0534094497561455,-5.19576406478882,10.64195728302,-0.0505422353744507,-5.01350450515747,10.6269931793213,-0.48601558804512,-5.08079099655151,10.4631299972534,-0.445259362459183,-4.99293184280396,10.4821138381958,-1.98465180397034,-6.03864812850952,8.96684455871582,-2.02795052528381,-5.97562074661255,8.93642425537109,-1.95034384727478,-5.87137508392334,8.95053768157959,-1.8615939617157,-6.00480508804321,8.98930644989014,-1.96156978607178,-5.98455810546875,8.95667362213135,-1.99348926544189,-5.38977289199829,8.94283771514893,-1.8258581161499,-5.35777711868286,9.0042896270752,-1.92479491233826,-5.38095664978027,8.96782970428467,-1.68282032012939,-5.33764410018921,9.1995906829834,-1.60720729827881,-5.37224245071411,9.44071674346924,-1.63036668300629,-5.35114717483521,9.32604312896729,-1.15040349960327,-4.46315431594849,9.27386951446533,-1.61604344844818,-4.69843578338623,9.16233348846436,-1.02631306648254,-4.52849769592285,9.57024669647217,-1.46950769424438,-4.74452495574951,9.47203159332275,-1.61389076709747,-5.1370906829834,9.49890995025635,-1.59383618831635,-4.92087697982788,9.47666549682617,-0.756718516349792,-4.67116594314575,9.99471855163574,-1.13440549373627,-4.82753372192383,9.95303153991699,-1.30577600002289,-5.13906717300415,9.99788284301758,-1.27752017974854,-4.95821237564087,9.9718599319458,-1.47125375270844,-5.08394289016724,9.69204616546631,-1.44809448719025,-4.94233655929565,9.74861526489258,-2.25081849098206,-5.8577127456665,7.30153751373291,-2.25026416778564,-5.78243350982666,7.21115446090698,-2.19064927101135,-5.70176649093628,7.30723094940186,-2.15490818023682,-5.84213399887085,7.41336584091187,-2.21054673194885,-5.80747747421265,7.30093145370483,-2.22407937049866,-5.17915391921997,7.24811840057373,-2.12059950828552,-5.17634010314941,7.45029163360596,-2.18157124519348,-5.17578315734863,7.33958625793457,-2.04745316505432,-5.19134044647217,7.73314571380615,-2.0241334438324,-5.24577903747559,7.97601079940796,-2.02803325653076,-5.21531534194946,7.86455249786377, --1.45000576972961,-4.31315135955811,7.61803579330444,-1.90338170528412,-4.47847080230713,7.55332088470459,-1.4563707113266,-4.30403232574463,8.07893085479736,-1.9070451259613,-4.53847312927246,8.04321670532227,-2.07554864883423,-5.00528717041016,8.06597137451172,-2.07698273658752,-4.79959678649902,8.08755874633789,-1.29598391056061,-4.40089702606201,8.92042636871338,-1.75334775447845,-4.6523609161377,8.8609504699707,-1.95305156707764,-5.12037134170532,8.87244510650635,-1.88523650169373,-4.87454414367676,8.88124465942383,-2.02779126167297,-4.98613929748535,8.49838161468506,-2.00415349006653,-4.84943151473999,8.5842227935791,-2.29690718650818,-5.6382474899292,6.2773904800415,-2.33527421951294,-5.12082242965698,6.21801853179932,-2.25941920280457,-5.14606666564941,6.39601182937622,-2.29818177223206,-5.13455247879028,6.28661584854126,-2.2916522026062,-4.85793352127075,6.55554151535034,-1.31254243850708,-3.87833046913147,6.54945039749146,-1.8555474281311,-4.20000314712524,6.50439786911011,-2.25687122344971,-4.80195474624634,6.55563545227051,-2.17090630531311,-4.68411588668823,6.59617805480957,-2.21556115150452,-4.91827392578125,7.15354251861572,-2.13978290557861,-4.71264457702637,7.13491487503052,-2.22614336013794,-4.81624126434326,6.89821529388428,-2.25185751914978,-4.87821626663208,6.90782165527344,-0.039003998041153,-6.20711088180542,10.6502695083618,-0.0341493636369705,-6.01094055175781,10.6377286911011,-0.035977765917778,-6.13796138763428,10.6417560577393,-0.300634890794754,-5.08769702911377,10.5466318130493,-0.301431208848953,-5.13962745666504,10.5470905303955,-0.0535684823989868,-5.28108501434326,10.6435079574585,-0.571898341178894,-5.99353218078613,10.4897956848145,-0.676729202270508,-5.1942024230957,10.4103212356567,-0.699970901012421,-5.28515005111694,10.4222755432129,-0.494533687829971,-5.13222646713257,10.4613428115845,-0.787205517292023,-5.98200082778931,10.3582763671875,-0.836236774921417,-5.30040502548218,10.3648710250854,-0.927694320678711,-5.08898401260376,10.2462596893311,-0.931115329265594,-5.14778614044189,10.2483787536621, --1.16417169570923,-5.96804332733154,10.1708030700684,-1.10407865047455,-5.14506006240845,10.119909286499,-1.24926424026489,-5.14094305038452,10.0589284896851,-1.28356647491455,-5.22202062606812,10.0626363754272,-1.33944714069366,-5.97088193893433,10.0099296569824,-1.3564772605896,-5.07640743255615,9.86119174957275,-1.35353398323059,-5.14177560806274,9.86582660675049,-1.32392120361328,-5.22253799438477,10.0166835784912,-1.54201757907867,-5.93096017837524,9.66748237609863,-1.57982206344604,-5.1564826965332,9.58060646057129,-1.61429345607758,-5.25503540039063,9.58355617523193,-1.48558247089386,-5.15513181686401,9.68349075317383,-1.65703535079956,-5.92647075653076,9.49569129943848,-1.63443279266357,-5.23311138153076,9.51705646514893,-1.6382474899292,-5.05470132827759,9.34469985961914,-1.63912439346313,-5.127037525177,9.35101509094238,-1.76090431213379,-5.89473915100098,9.05418682098389,-1.73264837265015,-5.13085269927979,9.13426876068115,-1.86867845058441,-5.15683317184448,8.99800872802734,-1.90800070762634,-5.26923036575317,8.99398708343506,-2.00303864479065,-5.88165235519409,8.90550804138184,-1.95926296710968,-4.99277925491333,8.71739482879639,-1.96658337116241,-5.05836963653564,8.71498394012451,-1.99165391921997,-5.22366094589233,8.87605953216553,-1.94660353660583,-5.85800170898438,8.42519664764404,-2.08000922203064,-5.05013561248779,8.24398899078369,-2.09696245193481,-5.14430522918701,8.21382427215576,-2.03893399238586,-5.05353832244873,8.47288417816162,-2.09322237968445,-5.8088002204895,8.0347375869751,-2.07666373252869,-5.09675216674805,8.05501079559326,-2.07523059844971,-4.87675619125366,7.89324283599854,-2.06782746315002,-4.93245363235474,7.88428354263306,-2.09536981582642,-5.7505259513855,7.56198787689209,-2.11065411567688,-4.90567970275879,7.61822128295898,-2.17679834365845,-4.9220609664917,7.35746097564697,-2.19924426078796,-5.0022406578064,7.3518385887146,-0.0990970358252525,-6.00180387496948,10.6008262634277,-2.36934089660645,-5.82069063186646,6.29629898071289,-2.37435460090637,-5.74866580963135,6.19916963577271, --2.27247357368469,-5.75701570510864,6.4032621383667,-2.32301664352417,-5.75506639480591,6.28545475006104,-0.778769135475159,-6.16701364517212,10.3600177764893,-0.778533279895782,-6.10288381576538,10.3549547195435,-1.16680240631104,-6.1793041229248,10.2051277160645,-1.15955889225006,-6.10430669784546,10.1831855773926,-0.571184873580933,-6.19947624206543,10.5205993652344,-0.568158626556396,-6.12496137619019,10.4970645904541,-1.37836885452271,-6.15687704086304,10.0106410980225,-1.3521009683609,-6.09499311447144,10.0057744979858,-1.62885415554047,-6.13793706893921,9.70009803771973,-1.57433247566223,-6.06321001052856,9.67862319946289,-1.72047281265259,-6.09791660308838,9.49898338317871,-1.68115019798279,-6.04250335693359,9.49363613128662,-1.82553958892822,-6.09793281555176,9.08753299713135,-1.78040635585785,-6.02580404281616,9.06590557098389,-2.02493023872375,-6.03453397750854,8.89117813110352,-2.00860810279846,-5.98847103118896,8.89710330963135,-2.03853893280029,-6.04081392288208,8.41938591003418,-1.97677087783813,-5.98061990737915,8.41966342926025,-2.17003273963928,-5.96357154846191,8.02015972137451,-2.12530064582825,-5.91383123397827,8.02179908752441,-2.18157124519348,-5.93296003341675,7.5623574256897,-2.12593197822571,-5.86960124969482,7.55970764160156,-2.27637314796448,-5.83205604553223,7.12649011611938,-2.23148250579834,-5.78330945968628,7.13298797607422,-2.31115365028381,-5.81996726989746,6.54831314086914,-2.25288963317871,-5.75801706314087,6.5514178276062,-0.0426613613963127,-6.23896408081055,10.7079133987427,-0.0421069636940956,-6.23420381546021,10.6754026412964,-0.195644959807396,-6.23483800888062,10.6854448318481,-0.347360700368881,-6.24602651596069,10.7361726760864,-0.466672599315643,-6.22927379608154,10.6432409286499,-0.322207182645798,-6.23096084594727,10.677041053772,-0.623001158237457,-6.24517917633057,10.6125583648682,-0.680545628070831,-6.23354291915894,10.4814872741699,-0.590049624443054,-6.23515129089355,10.5659761428833,-0.741835415363312,-6.21124076843262,10.4497108459473,-0.754335701465607,-6.18786001205444,10.3930158615112, --0.726634204387665,-6.20910120010376,10.425952911377,-0.806790351867676,-6.20344066619873,10.3982582092285,-0.854069530963898,-6.21186351776123,10.3657112121582,-0.790072619915009,-6.19608163833618,10.376443862915,-1.00442218780518,-6.229079246521,10.3874664306641,-1.09325444698334,-6.21170139312744,10.3130474090576,-0.966538727283478,-6.21340322494507,10.3506259918213,-1.24552392959595,-6.22857141494751,10.2696866989136,-1.27911281585693,-6.21461248397827,10.1519069671631,-1.19998979568481,-6.21731281280518,10.2356119155884,-1.35671973228455,-6.19053888320923,10.1142635345459,-1.36005854606628,-6.16723299026489,10.0586633682251,-1.32296586036682,-6.18766784667969,10.0960445404053,-1.46441113948822,-6.18948268890381,10.0571002960205,-1.49274945259094,-6.20759439468384,9.99063396453857,-1.4188826084137,-6.18443918228149,10.0303316116333,-1.66005551815033,-6.21759796142578,9.96387195587158,-1.65193891525269,-6.19127702713013,9.82794666290283,-1.57505202293396,-6.20521783828735,9.91913318634033,-1.80181956291199,-6.19523477554321,9.76203060150146,-1.74872875213623,-6.16345930099487,9.64427280426025,-1.70948898792267,-6.18010282516479,9.72939014434814,-1.82697308063507,-6.14048480987549,9.60496234893799,-1.77985191345215,-6.10918617248535,9.55600070953369,-1.77093827724457,-6.13309478759766,9.59326553344727,-1.84862148761749,-6.10888671875,9.5295524597168,-1.78271865844727,-6.12304878234863,9.4449405670166,-1.77921462059021,-6.11172866821289,9.51222991943359,-1.91333341598511,-6.11746263504028,9.37184143066406,-1.84400320053101,-6.12006759643555,9.21766185760498,-1.80420851707458,-6.12493467330933,9.33722972869873,-1.99834299087524,-6.10219812393188,9.14531421661377,-1.96777510643005,-6.0902853012085,9.03364944458008,-1.90266835689545,-6.11084985733032,9.11484909057617,-2.08024501800537,-6.04765796661377,8.99182891845703,-2.065762758255,-6.02549171447754,8.93746852874756,-2.0273129940033,-6.05138683319092,8.97891807556152,-2.12402677536011,-6.04021501541138,8.90776824951172,-2.06162166595459,-6.06937503814697,8.83524036407471, --2.06766796112061,-6.04410123825073,8.89664459228516,-2.18404316902161,-6.04982328414917,8.757399559021,-2.10452485084534,-6.04720067977905,8.59602451324463,-2.07626891136169,-6.06345844268799,8.73276424407959,-2.2613308429718,-6.02696132659912,8.45082664489746,-2.17846775054932,-6.02843379974365,8.28049278259277,-2.1394636631012,-6.0411114692688,8.43193912506104,-2.30009293556213,-5.98965311050415,8.19709491729736,-2.24484944343567,-5.96651697158813,8.10960674285889,-2.21898198127747,-5.99262189865112,8.18166732788086,-2.3230926990509,-5.98703908920288,8.06682109832764,-2.22909283638,-6.0016918182373,7.95667362213135,-2.24015331268311,-5.98292922973633,8.03853225708008,-2.34776854515076,-5.97587633132935,7.87852573394775,-2.25281262397766,-5.95306921005249,7.72386360168457,-2.23633694648743,-5.98257160186768,7.85232257843018,-2.37395405769348,-5.93167209625244,7.57836294174194,-2.29030084609985,-5.92270231246948,7.42056274414063,-2.26944804191589,-5.94088983535767,7.56949234008789,-2.40149617195129,-5.87683057785034,7.31838417053223,-2.34395170211792,-5.83793687820435,7.21732473373413,-2.31919407844543,-5.87540626525879,7.30841445922852,-2.44408082962036,-5.85108947753906,7.14324331283569,-2.3577196598053,-5.86648988723755,7.02719736099243,-2.35238695144653,-5.84942388534546,7.13183546066284,-2.4875385761261,-5.83587741851807,6.88590526580811,-2.39139151573181,-5.82123041152954,6.71133613586426,-2.37292170524597,-5.84577035903931,6.87893390655518,-2.51985836029053,-5.81626129150391,6.55002737045288,-2.42092156410217,-5.84086990356445,6.40657758712769,-2.40627408027649,-5.82668161392212,6.54862117767334,-2.5186607837677,-5.84261131286621,6.3023624420166,-2.4540319442749,-5.82781839370728,6.22352886199951,-2.43834710121155,-5.84264087677002,6.30083560943604,-0.232024222612381,-6.24994277954102,10.7890882492065,-0.133724078536034,-6.24663591384888,10.7465028762817,-0.140649035573006,-6.22369813919067,10.8224611282349,-0.138737753033638,-6.24836540222168,10.7921237945557,-0.550727009773254,-6.24428033828735,10.7154684066772, --0.387313932180405,-6.24764776229858,10.7644128799438,-0.738095700740814,-6.23334169387817,10.5530605316162,-0.668606400489807,-6.24251985549927,10.6393938064575,-0.769932210445404,-6.18956565856934,10.421350479126,-0.756801307201385,-6.20781993865967,10.473126411438,-0.914085209369659,-6.22303295135498,10.4319543838501,-0.823023021221161,-6.20250511169434,10.4194488525391,-1.17603468894958,-6.22539186477661,10.3837080001831,-1.04127848148346,-6.22803449630737,10.423360824585,-1.36634683609009,-6.21271324157715,10.209267616272,-1.28977859020233,-6.2231879234314,10.3027172088623,-1.41704797744751,-6.16682815551758,10.0852346420288,-1.38974809646606,-6.18517923355103,10.1319999694824,-1.62352180480957,-6.20723819732666,10.0742988586426,-1.50548553466797,-6.18378114700317,10.0831432342529,-1.83524870872498,-6.19839239120483,9.90555000305176,-1.73965620994568,-6.20835256576538,10.0072154998779,-1.90752291679382,-6.17108869552612,9.69009876251221,-1.89160168170929,-6.18872213363647,9.79325485229492,-1.8678822517395,-6.11018180847168,9.56925678253174,-1.88157367706299,-6.13695287704468,9.61616134643555,-1.99022078514099,-6.1268572807312,9.50750827789307,-1.92025887966156,-6.11417961120605,9.54731559753418,-2.05820035934448,-6.11834001541138,9.28408336639404,-2.02898859977722,-6.12618923187256,9.40709781646729,-2.13158917427063,-6.09084939956665,9.08338737487793,-2.09926915168762,-6.10985374450684,9.17624759674072,-2.13986587524414,-6.02600765228271,8.9481372833252,-2.13413190841675,-6.05195999145508,9.00514888763428,-2.2395167350769,-6.07251739501953,8.87739562988281,-2.18141222000122,-6.04572677612305,8.91915607452393,-2.34450602531433,-6.05066967010498,8.64320373535156,-2.29483699798584,-6.06716156005859,8.78227043151855,-2.40356659889221,-6.03091335296631,8.31009769439697,-2.3859760761261,-6.04387521743774,8.46977615356445,-2.36766600608826,-5.97164964675903,8.14973545074463,-2.38207697868347,-5.99588823318481,8.21236228942871,-2.45299363136292,-6.01118564605713,8.02205657958984,-2.40675234794617,-5.99097490310669,8.0952091217041, --2.45920586585999,-5.95749092102051,7.7539496421814,-2.4604799747467,-5.99008321762085,7.90378856658936,-2.49582076072693,-5.92459678649902,7.43358135223389,-2.47926211357117,-5.94334602355957,7.58628606796265,-2.48363924026489,-5.84189033508301,7.24426984786987,-2.48379826545715,-5.87834930419922,7.32845306396484,-2.59149575233459,-5.86851215362549,7.04255485534668,-2.53577399253845,-5.85274696350098,7.15455961227417,-2.60398960113525,-5.82149744033813,6.72048091888428,-2.60207796096802,-5.84679460525513,6.89122009277344,-2.64649105072021,-5.8408522605896,6.40299320220947,-2.63343739509583,-5.82665920257568,6.54978227615356,-2.54206204414368,-5.82783651351929,6.23660564422607,-2.59897565841675,-5.84258365631104,6.303795337677,-0.178296148777008,-5.14227962493896,10.7214317321777,-0.159036085009575,-5.13926792144775,10.6123895645142,-0.15943144261837,-5.20709037780762,10.6159152984619,-2.16039967536926,-4.63492059707642,6.35010147094727,-2.16461730003357,-4.6992130279541,6.84043788909912,-2.12219214439392,-4.7338662147522,7.3962082862854,-2.09338212013245,-4.78276300430298,7.88114452362061,-2.05135178565979,-4.82722282409668,8.33678722381592,-1.95758759975433,-4.85762071609497,8.71256256103516,-1.80070447921753,-4.894211769104,9.05072116851807,-1.66029751300812,-4.90851783752441,9.3226490020752,-1.5241082906723,-4.93551921844482,9.61845779418945,-1.38186657428741,-4.9469051361084,9.84668636322021,-1.16401255130768,-4.96858882904053,10.0794248580933,-0.934141576290131,-4.97818994522095,10.241358757019,-0.607162654399872,-4.99794101715088,10.4075193405151,-0.315441250801086,-4.99706411361694,10.5372972488403,-0.246588706970215,-5.21204662322998,10.7027978897095,-0.173995912075043,-5.21407032012939,10.7190637588501,-0.166433110833168,-5.24695348739624,10.7230825424194,-0.126320883631706,-5.42249059677124,10.5738525390625,-0.688107907772064,-5.38145542144775,10.6259078979492,-0.362880557775497,-5.17924976348877,10.661789894104,-0.755609691143036,-5.31603527069092,10.4882488250732,-0.897048890590668,-5.45260906219482,10.4559268951416, --1.10113525390625,-5.16190147399902,10.3199367523193,-1.34581279754639,-5.34129858016968,10.2636613845825,-1.42143106460571,-5.26597881317139,10.1007375717163,-1.51479375362396,-5.39827156066895,10.1090993881226,-1.59096562862396,-5.17470169067383,9.95172595977783,-1.84917652606964,-5.3420557975769,9.79553604125977,-1.83158588409424,-5.28115892410278,9.6130952835083,-1.92001700401306,-5.39472675323486,9.5806827545166,-1.92503142356873,-5.09416818618774,9.41640472412109,-2.1209180355072,-5.31265735626221,9.19946956634521,-2.1007022857666,-5.29398012161255,9.01094150543213,-2.19446587562561,-5.3654260635376,8.93744468688965,-2.26578450202942,-5.09604549407959,8.77732372283936,-2.50003838539124,-5.28837776184082,8.50004482269287,-2.44885873794556,-5.17671394348145,8.26155281066895,-2.51229596138,-5.2968373298645,8.19015884399414,-2.44782066345215,-4.9653959274292,7.98782444000244,-2.56355214118958,-5.17045927047729,7.63038063049316,-2.45697593688965,-5.08468770980835,7.38189697265625,-2.59412121772766,-5.23268222808838,7.22093057632446,-2.60772943496704,-4.91723775863647,6.96965503692627,-2.73683404922485,-5.13699293136597,6.57012557983398,-2.61632466316223,-5.04084634780884,6.2415599822998,-2.62484264373779,-4.98053407669067,6.30407524108887,-2.22805452346802,-5.14150047302246,6.55919456481934,-2.21221613883972,-5.18721342086792,7.16838359832764,-2.07706522941589,-5.17987251281738,7.58828735351563,-2.04108738899231,-5.27656745910645,8.06105804443359,-1.97159743309021,-5.28518962860107,8.44222545623779,-1.98226284980774,-5.36283731460571,8.89448833465576,-1.74658179283142,-5.34158611297607,9.08690929412842,-1.63132035732269,-5.39109706878662,9.51782894134521,-1.49879634380341,-5.33682298660278,9.67146015167236,-1.33323574066162,-5.38740348815918,10.0221710205078,-1.1353611946106,-5.3458890914917,10.1412086486816,-0.824774742126465,-5.44743967056274,10.3706474304199,-0.536162495613098,-5.37668561935425,10.4732055664063,-2.04777073860168,-4.52924251556396,6.57404136657715,-2.04570031166077,-4.57646083831787,6.89951705932617, --2.10165810585022,-4.62104320526123,6.72384881973267,-2.03137135505676,-4.67021989822388,7.93083524703979,-2.04180145263672,-4.64238119125366,7.65060091018677,-2.06878280639648,-4.71014356613159,7.7919750213623,-1.90052127838135,-4.76295328140259,8.75462627410889,-1.96801698207855,-4.74430322647095,8.55517482757568,-1.9585428237915,-4.79433917999268,8.65931034088135,-1.61174154281616,-4.83111333847046,9.3654842376709,-1.6918158531189,-4.81615018844604,9.20237064361572,-1.67080354690552,-4.8535099029541,9.27618408203125,-1.3067319393158,-4.88759326934814,9.88013362884521,-1.40320312976837,-4.87468671798706,9.74563407897949,-1.38656842708588,-4.90268516540527,9.80770301818848,-0.831623554229736,-4.9298038482666,10.2566366195679,-0.986595690250397,-4.92256879806519,10.16273021698,-0.948629379272461,-4.94296216964722,10.2107849121094,-0.244759768247604,-4.94905757904053,10.5227603912354,-0.411830127239227,-4.95003175735474,10.4580230712891,-0.351177126169205,-4.96786832809448,10.5040454864502,-2.05366373062134,-4.32579469680786,6.29204225540161,-2.03694629669189,-4.42243957519531,6.4269003868103,-2.04283285140991,-4.58085632324219,7.2770209312439,-1.87703704833984,-4.42844390869141,7.04257583618164,-2.03559541702271,-4.56761264801025,7.08492183685303,-2.03901696205139,-4.60245275497437,7.47223377227783,-2.01784563064575,-4.69018220901489,8.21164226531982,-2.02238178253174,-4.66989278793335,8.06455039978027,-1.99372410774231,-4.71235132217407,8.39055728912354,-1.79154980182648,-4.778724193573,8.98734951019287,-1.8455958366394,-4.763023853302,8.86764144897461,-1.73622906208038,-4.79380893707275,9.10254287719727,-1.51208627223969,-4.84543037414551,9.56727409362793,-1.56207406520844,-4.83260107040405,9.46528244018555,-1.45207595825195,-4.8575611114502,9.66306781768799,-1.15295135974884,-4.90220403671265,10.0335512161255,-1.23151445388794,-4.89095592498779,9.95738315582275,-1.0630042552948,-4.91081666946411,10.1027679443359,-0.605805814266205,-4.93106079101563,10.3594102859497,-0.716765344142914,-4.92705297470093,10.3072757720947, --0.380867183208466,-4.9005446434021,10.4144401550293,-0.500421047210693,-4.93824863433838,10.4097013473511,-0.223665118217468,-4.84479427337646,10.4306545257568,0,-3.56970500946045,6.51639032363892,-0.34385621547699,-3.36579561233521,6.35206460952759,-0.348870456218719,-3.58103013038635,6.50943946838379,-0.124804392457008,-4.70928573608398,10.2527637481689,-0.10013472288847,-4.75122356414795,10.3224563598633,-0.17168927192688,-4.62323379516602,10.102972984314,-0.149001985788345,-4.66560745239258,10.1775159835815,-0.211088642477989,-4.5472936630249,9.96690559387207,-0.19190526008606,-4.58564424514771,10.0356349945068,-0.250411242246628,-4.45475387573242,9.79148864746094,-0.231068313121796,-4.50286436080933,9.88823890686035,-0.284318149089813,-4.35712575912476,9.52557849884033,-0.267683357000351,-4.40561151504517,9.66836261749268,-0.320372670888901,-4.26248502731323,9.193190574646,-0.301507890224457,-4.31094932556152,9.36964797973633,-0.362243264913559,-4.15308332443237,8.76627635955811,-0.341945499181747,-4.20667600631714,8.98861408233643,-0.386440873146057,-4.07911968231201,8.31794357299805,-0.37736776471138,-4.11137390136719,8.53646659851074,-0.388352125883102,-4.04566669464111,7.91401243209839,-0.388588458299637,-4.05398416519165,8.12930202484131,-0.390257805585861,-4.06385135650635,7.61539936065674,-1.39595949649811,-4.23608684539795,7.05527067184448,-0.124167688190937,-4.90264368057251,10.5239286422729,-0.0587423220276833,-3.80714273452759,10.3407936096191,-0.0581873580813408,-4.97750186920166,10.7529458999634,-0.993043005466461,-3.52570533752441,6.34976625442505,-1.04024028778076,-3.96771550178528,6.75447463989258,-1.00824403762817,-3.73918104171753,6.52913522720337,-7.67204910516739e-05,-5.33168506622314,10.6897068023682,-0.0521354451775551,-5.31537961959839,10.7041501998901,-0.147651270031929,-5.4346718788147,10.7696905136108,-7.67204910516739e-05,-5.81879901885986,10.7183170318604,-0.0323147997260094,-5.82114171981812,10.7500438690186,-0.139693677425385,-6.15579319000244,10.8367366790771,-7.67204910516739e-05,-6.238365650177,10.7155323028564, --0.0382076874375343,-6.24052238464355,10.73841381073,-0.115890868008137,-6.20062732696533,10.633936882019,-0.125683605670929,-6.23534393310547,10.6866340637207,-0.105627201497555,-6.12835836410522,10.6096153259277,-7.67204910516739e-05,-5.46318054199219,10.6194181442261,-0.04329863935709,-5.45512008666992,10.6095857620239,-0.150040224194527,-5.0037636756897,10.598503112793,-0.0872401595115662,-4.92539691925049,10.5562505722046,-0.116050489246845,-4.86545896530151,10.4871187210083,-0.0885908827185631,-4.89526033401489,10.5259189605713,-0.227646708488464,-4.80199432373047,10.3783197402954,-0.164687588810921,-4.83419418334961,10.4369010925293,-0.370921015739441,-4.73593997955322,10.2451238632202,-0.297927260398865,-4.76963043212891,10.314751625061,-0.508378684520721,-4.66260433197021,10.0905685424805,-0.442080229520798,-4.69943618774414,10.168833732605,-0.62156754732132,-4.59215259552002,9.9355411529541,-0.566648364067078,-4.62806987762451,10.014853477478,-0.731730759143829,-4.50810289382935,9.74110507965088,-0.677684605121613,-4.55149602890015,9.84618854522705,-0.828355967998505,-4.42166566848755,9.47172164916992,-0.780438423156738,-4.46387195587158,9.61457538604736,-0.936129570007324,-4.34701490402222,9.14680480957031,-0.879853546619415,-4.38439655303955,9.31758499145508,-1.05703461170197,-4.26460552215576,8.7417459487915,-0.998611629009247,-4.30469655990601,8.95368480682373,-1.12819385528564,-4.2107081413269,8.292893409729,-1.10168969631195,-4.23405885696411,8.51392459869385,-1.12891340255737,-4.18843269348145,7.89068794250488,-1.13265371322632,-4.19236421585083,8.10105419158936,-1.12159311771393,-4.20286750793457,7.31114101409912,-1.13074254989624,-4.20833253860474,7.61441659927368,-1.0847362279892,-4.12249612808228,7.01977634429932,0.178932890295982,-3.80354499816895,10.3134431838989,0.343773365020752,-3.36579561233521,6.35206460952759,0.348869949579239,-3.58103013038635,6.50943946838379,0.0520581603050232,-5.31537961959839,10.7041501998901,0.147650703787804,-5.4346718788147,10.7696905136108,0.0322375185787678,-5.82114171981812,10.7500438690186, -0.139610230922699,-6.15579319000244,10.8367366790771,0.0381247997283936,-6.24052238464355,10.73841381073,0.115814156830311,-6.20062732696533,10.633936882019,0.125600159168243,-6.23534393310547,10.6866340637207,0.105467036366463,-6.12835836410522,10.6096153259277,0.0432213619351387,-5.45512008666992,10.6095857620239,0.149956807494164,-5.0037636756897,10.598503112793,0.0871567204594612,-4.92539691925049,10.5562505722046,0.115890316665173,-4.86545896530151,10.4871187210083,0.0885135978460312,-4.89526033401489,10.5259189605713,0.227563828229904,-4.80199432373047,10.3783197402954,0.164604172110558,-4.83419418334961,10.4369010925293,0.370837599039078,-4.73593997955322,10.2451238632202,0.297850012779236,-4.76963043212891,10.314751625061,0.508218467235565,-4.66260433197021,10.0905685424805,0.441996783018112,-4.69943618774414,10.168833732605,0.621484577655792,-4.59215259552002,9.9355411529541,0.566564857959747,-4.62806987762451,10.014853477478,0.731647312641144,-4.50810289382935,9.74110507965088,0.677601099014282,-4.55149602890015,9.84618854522705,0.828278601169586,-4.42166566848755,9.47172164916992,0.780437827110291,-4.46387195587158,9.61457538604736,0.936052322387695,-4.34701490402222,9.14680480957031,0.879776179790497,-4.38439655303955,9.31758499145508,1.05703413486481,-4.26460552215576,8.7417459487915,0.998451411724091,-4.30469655990601,8.95368480682373,1.12811660766602,-4.2107081413269,8.292893409729,1.10153007507324,-4.23405885696411,8.51392459869385,1.12883055210114,-4.18843269348145,7.89068794250488,1.13257646560669,-4.19236421585083,8.10105419158936,1.12150979042053,-4.20286750793457,7.31114101409912,1.13066530227661,-4.20833253860474,7.61441659927368,1.08465909957886,-4.12249612808228,7.01977634429932,2.55384182929993,-5.77502298355103,6.18848419189453,2.57183432579041,-5.70590400695801,6.13583612442017,2.57199311256409,-5.7222900390625,6.17376518249512,2.33145141601563,-4.94588184356689,6.1679048538208,2.35731840133667,-5.02211380004883,6.18612432479858,2.37061452865601,-5.6285080909729,6.1411600112915,2.38223552703857,-5.11413526535034,6.13764238357544, -2.36177778244019,-5.11884784698486,6.17713308334351,2.39751410484314,-5.72182083129883,6.10004568099976,2.43047118186951,-5.77776145935059,6.15754699707031,2.39632177352905,-5.73410892486572,6.14560413360596,2.45824885368347,-5.76956796646118,6.11806917190552,2.49486446380615,-5.79238319396973,6.17520427703857,2.4631040096283,-5.79236555099487,6.16660165786743,2.5246307849884,-5.76949119567871,6.14010334014893,2.52662444114685,-5.79253768920898,6.18568086624146,2.34474205970764,-4.85058498382568,6.06146764755249,2.09887290000916,-4.24279308319092,6.12762975692749,1.00696969032288,-3.38726377487183,6.17138433456421,-2.59993100166321,-5.40195178985596,6.14881134033203,-2.59953022003174,-5.41003942489624,6.17475986480713,-2.61425971984863,-5.09038162231445,6.19899082183838,-2.61346340179443,-5.10391902923584,6.21204566955566,-2.35740113258362,-5.02211380004883,6.18612432479858,-2.33153486251831,-4.94588184356689,6.1679048538208,-2.37069225311279,-5.6285080909729,6.1411600112915,-2.38231205940247,-5.11413526535034,6.13764238357544,-2.36193704605103,-5.11884784698486,6.17713308334351,-2.43054890632629,-5.77776145935059,6.15754699707031,-2.39759659767151,-5.72182083129883,6.10004568099976,-2.39640522003174,-5.73410892486572,6.14560413360596,-2.49494099617004,-5.79238319396973,6.17520427703857,-2.45832657814026,-5.76956796646118,6.11806917190552,-2.46310520172119,-5.79236555099487,6.16660165786743,-2.55392527580261,-5.77502298355103,6.18848419189453,-2.52478981018066,-5.76949119567871,6.14010334014893,-2.5267014503479,-5.79253768920898,6.18568086624146,-2.09903287887573,-4.24279308319092,6.12762975692749,-0.348788142204285,-3.22370958328247,6.18123435974121,-1.00705301761627,-3.38726377487183,6.17138433456421,0.348628014326096,-3.22370958328247,6.18123435974121,-2.67618107795715,-3.6941990852356,5.50424146652222,-2.63359665870667,-4.86086988449097,6.06210994720459,2.40961289405823,-5.07661390304565,6.03472995758057,-2.40969562530518,-5.07661390304565,6.03472995758057,2.61966872215271,-5.03282928466797,6.16885757446289,2.63343644142151,-4.86086988449097,6.06210994720459, -2.61417651176453,-5.09038162231445,6.19899082183838,2.61338067054749,-5.10391902923584,6.21204566955566,2.59984827041626,-5.40195178985596,6.14881134033203,2.59945273399353,-5.41003942489624,6.17475986480713,2.67610383033752,-3.6941990852356,5.50424146652222,-2.61975145339966,-5.03282928466797,6.16885757446289,-2.57191157341003,-5.70590400695801,6.13583612442017,-2.57207036018372,-5.7222900390625,6.17376518249512,-2.34474205970764,-4.85058498382568,6.06146764755249,-1.98513865470886,-7.18690013885498,4.76535987854004,1.98495900630951,-7.18690013885498,4.76535987854004,1.33163225650787,-7.10434341430664,5.5120792388916,0.00143316946923733,-7.30788040161133,6.82634449005127,-1.33172619342804,-7.10434341430664,5.5120792388916,-1.65829932689667,-6.99769639968872,4.70509433746338,1.65820586681366,-6.99769639968872,4.70509433746338,-1.30020356178284,-7.20275259017944,5.92694282531738,1.30888915061951,-7.20176219940186,5.91548156738281,0.768121719360352,-7.26991891860962,6.47236919403076,-1.42565667629242,-7.06539106369019,5.31937313079834,-1.86416494846344,-7.14284324645996,4.74188947677612,1.8639851808548,-7.14284324645996,4.74188947677612,1.6635810136795,-7.02303647994995,4.93281650543213,1.42458045482635,-7.06547784805298,5.32072067260742,-1.66366803646088,-7.02303647994995,4.93281650543213,-0.762216210365295,-7.2706298828125,6.48024654388428,1.67889130115509,-7.21260595321655,5.74471569061279,-7.82310962677002e-08,-7.70984983444214,7.29000997543335,-1.685342669487,-7.21188497543335,5.73665904998779,-8.63876193761826e-05,-6.25312042236328,10.4959335327148,-1.42180740833282,-6.22902965545654,9.99483776092529,-1.95979452133179,-6.17012119293213,8.93764305114746,-2.68180727958679,-6.01233148574829,7.30299282073975,-2.73284721374512,-5.87049102783203,6.33276748657227,-8.63876193761826e-05,-8.81738948822021,9.731520652771,-1.34864854812622,-8.7330265045166,9.24324417114258,-1.96866059303284,-8.5785083770752,8.34024810791016,-2.74807119369507,-8.30893611907959,6.76264047622681,-2.82462763786316,-8.00935745239258,5.65442037582397, --0.773856163024902,-7.00037956237793,10.0389804840088,-0.781288862228394,-6.25447607040405,10.259428024292,-1.2862331867218,-7.0286808013916,9.71983909606934,-0.821670532226563,-8.77790546417236,9.50720596313477,-8.63876193761826e-05,-7.08419609069824,10.2046422958374,-1.64244532585144,-6.95121908187866,9.3407735824585,-1.83631265163422,-6.1999306678772,9.55794048309326,-1.90454745292664,-6.82845067977905,8.82947158813477,-1.66358244419098,-8.6617317199707,8.825514793396,-2.30427956581116,-6.82737350463867,8.13209533691406,-2.26667189598083,-6.09426403045654,8.17570304870605,-2.59386920928955,-6.70084619522095,7.23260688781738,-2.34627437591553,-8.47163581848145,7.71692514419556,-2.74332618713379,-6.87985038757324,6.71100425720215,-2.84719729423523,-5.92618942260742,6.80941581726074,-2.76543855667114,-6.6276912689209,6.23508262634277,-2.79436612129211,-8.21381759643555,6.20342493057251,-0.569151520729065,-6.83498764038086,10.3152141571045,-8.63876193761826e-05,-6.80248641967773,10.3000078201294,-0.598610281944275,-6.2509765625,10.4933376312256,-0.805909276008606,-6.78305768966675,10.1227054595947,-0.424002051353455,-7.23230409622192,10.1029167175293,-1.69599401950836,-6.78860425949097,9.6970043182373,-1.37184274196625,-6.77857828140259,9.83614444732666,-1.86658036708832,-6.1895489692688,9.87600517272949,-1.73459100723267,-6.72753286361694,9.42684555053711,-1.48126924037933,-7.12226343154907,9.51136207580566,-2.2434778213501,-6.62554740905762,8.6055326461792,-1.93875753879547,-6.65975141525269,8.86474990844727,-2.18231749534607,-6.08514165878296,8.65997886657715,-2.35970664024353,-6.59931373596191,8.17973804473877,-2.10664939880371,-7.02285432815552,8.53039360046387,-2.88167333602905,-6.40284204483032,7.08253288269043,-2.70634126663208,-6.44912910461426,7.26314735412598,-2.83940672874451,-5.9487509727478,7.11781215667725,-2.93289256095886,-6.37607002258301,6.76114940643311,-2.6988160610199,-6.83150625228882,7.03578662872314,-1.17931592464447,-6.83588123321533,10.0483856201172,-1.21442198753357,-6.22680950164795,10.2498636245728, --1.08681869506836,-7.20661783218384,9.80578804016113,-1.04293930530548,-7.37217378616333,9.82890796661377,-1.27728152275085,-7.34181547164917,9.68410873413086,-1.10150468349457,-8.75555324554443,9.3794412612915,-0.759528040885925,-7.36223363876343,9.97036933898926,-0.409581333398819,-7.39689826965332,10.0896625518799,-0.417644709348679,-8.80156993865967,9.64441108703613,-8.63876193761826e-05,-7.3912558555603,10.1918172836304,-1.91457438468933,-6.69897270202637,9.1934928894043,-1.97179985046387,-6.1438775062561,9.30354309082031,-1.74041092395782,-7.1545729637146,9.05648517608643,-1.74435293674469,-7.33295249938965,9.04251575469971,-1.91735529899597,-7.24627161026001,8.79716396331787,-1.78697800636292,-8.63889026641846,8.58676719665527,-1.61370348930359,-7.30035448074341,9.28481006622314,-1.48592042922974,-7.33698034286499,9.4945240020752,-1.54636466503143,-8.69909477233887,9.0396900177002,-2.59906530380249,-6.53626155853271,7.74758625030518,-2.52367043495178,-6.01895570755005,7.7970142364502,-2.43573236465454,-7.0410327911377,7.70953369140625,-2.45337176322937,-7.18557453155518,7.81644439697266,-2.66801643371582,-7.09995031356812,7.22804164886475,-2.50970053672791,-8.40734767913818,7.34728145599365,-2.29353499412537,-7.19611978530884,8.1980094909668,-2.10378980636597,-7.24394464492798,8.52466678619385,-2.15258646011353,-8.52693653106689,8.03760242462158,-2.9282341003418,-6.3525276184082,6.42132949829102,-2.89385056495667,-5.88141202926636,6.50469493865967,-2.78684091567993,-6.41502141952515,6.25674152374268,-2.76024842262268,-6.78036499023438,6.37870407104492,-2.76123070716858,-7.03619718551636,6.35551071166992,-2.77618932723999,-6.95524549484253,6.16110515594482,-2.80869340896606,-8.1545934677124,5.86091089248657,-2.74412941932678,-7.07595634460449,6.69479846954346,-2.71806812286377,-7.09941244125366,7.01734447479248,-2.77878379821777,-8.27109909057617,6.53366899490356,-0.237653702497482,-6.82442331314087,10.375675201416,-0.25028270483017,-6.2576961517334,10.5622711181641,-0.229776799678802,-7.39833068847656,10.1472215652466, --0.231568545103073,-8.81004905700684,9.69142246246338,-0.229955732822418,-7.19935035705566,10.1863565444946,-0.591005563735962,-7.38481473922729,10.0291147232056,-0.623237609863281,-8.7899923324585,9.57671356201172,-0.775017261505127,-6.81815528869629,10.2072381973267,-0.768659830093384,-6.24292087554932,10.3786296844482,-0.624491930007935,-7.1664834022522,10.0543651580811,-0.945066809654236,-6.81064701080322,10.1177816390991,-0.941124796867371,-6.23458623886108,10.285680770874,-0.904055118560791,-7.36976051330566,9.90339088439941,-0.969156742095947,-8.76664257049561,9.44309234619141,-0.919277667999268,-7.13067483901978,9.94816398620605,-1.16731762886047,-7.35641765594482,9.75736236572266,-1.22785365581512,-8.7446231842041,9.31387615203857,-1.35518491268158,-6.81324243545532,9.91727256774902,-1.40730035305023,-6.21622514724731,10.1071290969849,-1.23492860794067,-7.11357307434082,9.74963855743408,-1.52415907382965,-6.7968430519104,9.85405540466309,-1.65561163425446,-6.20611238479614,10.011492729187,-1.38374769687653,-7.34136390686035,9.59598064422607,-1.45547330379486,-8.71671867370605,9.14447689056396,-1.35402381420135,-7.09189558029175,9.65955638885498,-1.56060647964478,-7.31747579574585,9.38708782196045,-1.60716664791107,-8.68033504486084,8.93171501159668,-1.75921833515167,-6.75987148284912,9.51263236999512,-1.91556358337402,-6.17907047271729,9.69009113311768,-1.60546743869781,-7.02366256713867,9.39691734313965,-1.84240233898163,-6.70819139480591,9.40811252593994,-1.95612478256226,-6.17074584960938,9.52427291870117,-1.66447830200195,-7.30546855926514,9.17083549499512,-1.71256494522095,-8.64444255828857,8.70765399932861,-1.6563286781311,-7.04667615890503,9.24836349487305,-1.83085060119629,-7.27725458145142,8.91840267181396,-1.87517488002777,-8.60317230224609,8.46596527099609,-1.96651029586792,-6.66458702087402,8.98733615875244,-1.99641990661621,-6.13464879989624,9.09337615966797,-1.84625589847565,-6.97360754013062,8.91178035736084,-2.07629537582397,-6.64568758010864,8.82124805450439,-2.07253909111023,-6.11360597610474,8.88921642303467, --2.00582432746887,-7.25209712982178,8.6655330657959,-2.05874919891357,-8.55307388305664,8.19036483764648,-1.97385668754578,-6.99205493927002,8.71567726135254,-2.20604872703552,-7.22290182113647,8.36590766906738,-2.24921131134033,-8.5011510848999,7.88850355148315,-2.38692808151245,-6.59554529190063,8.29255294799805,-2.28780221939087,-6.06023406982422,8.32820796966553,-2.28279185295105,-6.9405574798584,8.26551914215088,-2.49689269065857,-6.56070756912231,8.07066917419434,-2.42077994346619,-6.03821039199829,8.06968021392822,-2.37072277069092,-7.19344758987427,8.02481937408447,-2.42794132232666,-8.44096374511719,7.5404314994812,-2.34287667274475,-6.95722675323486,8.01273441314697,-2.55581617355347,-7.14428615570068,7.51011180877686,-2.61670422554016,-8.35823059082031,7.055992603302,-2.72720694541931,-6.49113845825195,7.42539978027344,-2.67553615570068,-5.98340654373169,7.48503971099854,-2.54444217681885,-6.89176177978516,7.39262962341309,-0.24768140912056,-6.43929576873779,10.521183013916,-8.63876193761826e-05,-6.43176889419556,10.4410247802734,-2.94614481925964,-6.04358386993408,6.46771049499512,-2.77511405944824,-6.042160987854,6.29461479187012,-0.802419066429138,-6.41565704345703,10.2279920578003,-0.952406287193298,-6.41716718673706,10.2511005401611,-1.22740256786346,-6.41600322723389,10.20911693573,-1.42521190643311,-6.40239143371582,10.0605430603027,-0.80215322971344,-6.42424201965332,10.3375110626221,-1.42870259284973,-6.39280700683594,9.95848274230957,-0.614013195037842,-6.43472051620483,10.456711769104,-1.63913404941559,-6.39344120025635,9.98497009277344,-1.84697043895721,-6.37893533706665,9.83883094787598,-1.89478540420532,-6.36156463623047,9.64317226409912,-1.82816302776337,-6.35279750823975,9.53087902069092,-1.95173799991608,-6.34195423126221,9.51108837127686,-1.98764657974243,-6.31946897506714,9.2871561050415,-2.01209568977356,-6.30130052566528,9.06704998016357,-1.97009432315826,-6.29887819290161,8.92680740356445,-2.1005642414093,-6.28078651428223,8.88731288909912,-2.24491095542908,-6.25608062744141,8.65854454040527, --2.3569324016571,-6.22724103927612,8.31881046295166,-2.31923127174377,-6.2283182144165,8.18833160400391,-2.48247838020325,-6.20531368255615,8.08687591552734,-2.5932457447052,-6.17646503448486,7.78824043273926,-2.73571443557739,-6.14575147628784,7.46426868438721,-2.71985983848572,-6.1350998878479,7.29565238952637,-2.89653253555298,-6.10322284698486,7.11369037628174,-2.92313051223755,-6.07304763793945,6.79544544219971,-8.63876193761826e-05,-6.24901580810547,10.4386959075928,-1.31488943099976,-6.22159862518311,9.95839023590088,-1.84849011898041,-6.16833305358887,8.91840267181396,-2.41478109359741,-6.00821733474731,7.25911331176758,-2.55052709579468,-5.86619424819946,6.31378078460693,-7.82310962677002e-08,-7.63374471664429,9.61390972137451,-8.63876193761826e-05,-7.83736801147461,8.84372520446777,-0.742247104644775,-6.99653434753418,10.0049381256104,-0.753529191017151,-6.250168800354,10.2193965911865,-1.19238901138306,-7.04810857772827,9.70459842681885,-8.63876193761826e-05,-7.51410055160522,9.8661584854126,-8.63876193761826e-05,-7.08069658279419,10.1737451553345,-1.51332247257233,-6.94969987869263,9.32931423187256,-1.705934882164,-6.19787406921387,9.53186702728271,-1.79906511306763,-6.8272876739502,8.81970882415771,-8.63876193761826e-05,-7.74584197998047,9.34623718261719,-2.01218128204346,-6.82289361953735,8.04703044891357,-2.07271194458008,-6.08790969848633,8.10764694213867,-2.36463046073914,-6.7620906829834,7.1709156036377,-2.40179371833801,-6.87411165237427,6.66561508178711,-2.43465685844421,-5.92493963241577,6.79589653015137,-2.46994185447693,-6.64747476577759,6.21116352081299,-0.408778101205826,-6.82397079467773,10.1841192245483,-8.63876193761826e-05,-6.79702568054199,10.2399044036865,-0.449253052473068,-6.25741720199585,10.3840036392212,-0.768301486968994,-6.7783088684082,10.0750513076782,-0.368482649326324,-7.22236394882202,10.0187292098999,-1.36208033561707,-6.77516555786133,9.56143665313721,-1.24871861934662,-6.77588653564453,9.79299831390381,-1.56105065345764,-6.18121480941772,9.76264476776123,-1.5633796453476,-6.72467756271362,9.39523696899414, --1.28086495399475,-7.11589002609253,9.45852947235107,-1.74157202243805,-6.61775159835815,8.52843189239502,-1.81061685085297,-6.65831899642944,8.84444141387939,-1.7967334985733,-6.07743167877197,8.57822513580322,-1.96248209476471,-6.59062337875366,8.08463954925537,-1.82216608524323,-7.01963424682617,8.50165271759033,-2.29881834983826,-6.40830230712891,7.05396366119385,-2.35254597663879,-6.49955892562866,7.20888137817383,-2.39221096038818,-5.94643402099609,7.09345722198486,-2.32183289527893,-6.37382984161377,6.75488471984863,-2.3724217414856,-6.8361496925354,6.97069072723389,-0.99207866191864,-6.82254838943481,9.92640495300293,-1.06460678577423,-6.23145198822021,10.1433038711548,-0.901187300682068,-7.17230892181396,9.77679347991943,-0.885517954826355,-7.3039402961731,9.76488018035889,-1.08547115325928,-7.29991245269775,9.62543964385986,-8.63876193761826e-05,-7.57320117950439,9.74625873565674,-0.633716464042664,-7.31559133529663,9.89508533477783,-0.358720153570175,-7.33178901672363,10.0024490356445,-8.63876193761826e-05,-7.45428800582886,9.97082138061523,-8.63876193761826e-05,-7.34548759460449,10.0920667648315,-1.57367956638336,-6.67300748825073,9.06239700317383,-1.66080164909363,-6.12256526947021,9.18434143066406,-1.53902459144592,-7.05311727523804,9.0281867980957,-1.53893184661865,-7.22737216949463,9.01106834411621,-1.67343008518219,-7.21591377258301,8.76922512054443,-8.63876193761826e-05,-7.79724311828613,9.12140941619873,-1.41527056694031,-7.26320028305054,9.24612617492676,-1.27333903312683,-7.27170753479004,9.44278621673584,-8.63876193761826e-05,-7.68532800674438,9.49693965911865,-2.06967210769653,-6.52390909194946,7.68051910400391,-2.16512894630432,-6.01422595977783,7.74579429626465,-2.1068286895752,-7.00432062149048,7.64997863769531,-2.12276911735535,-7.11804294586182,7.65159130096436,-2.211510181427,-7.08133029937744,7.04429531097412,-1.98693037033081,-7.16380071640015,8.06511497497559,-1.81249225139618,-7.18403625488281,8.50398254394531,-8.63876193761826e-05,-7.87684774398804,8.47908973693848,-2.37717342376709,-6.35243129730225,6.43036842346191, --2.46277570724487,-5.88204622268677,6.51159000396729,-2.46528387069702,-6.41457033157349,6.23793506622314,-2.4466552734375,-6.77633762359619,6.3546142578125,-2.27741527557373,-7.01265478134155,6.33715438842773,-2.31179857254028,-7.012375831604,6.61600017547607,-2.26443481445313,-7.05769157409668,6.84542655944824,-0.164229720830917,-6.80920505523682,10.202561378479,-0.182492807507515,-6.25608110427856,10.4136228561401,-0.211506828665733,-7.34692001342773,10.0465745925903,-0.206761658191681,-7.1898717880249,10.0977258682251,-0.482740044593811,-7.33510541915894,9.95051288604736,-0.655742406845093,-6.80427360534668,10.0798892974854,-0.66675865650177,-6.22482919692993,10.2786798477173,-0.558587074279785,-7.15843725204468,9.98183059692383,-0.81433117389679,-6.80068826675415,10.0011081695557,-0.834120750427246,-6.2361912727356,10.1868181228638,-0.769110918045044,-7.32105112075806,9.82512760162354,-0.804927110671997,-7.11937952041626,9.8903341293335,-0.973005414009094,-7.31003475189209,9.70058727264404,-1.15577042102814,-6.80140924453735,9.81260967254639,-1.2386839389801,-6.19876766204834,10.0269651412964,-1.07750105857849,-7.10684394836426,9.70254039764404,-1.24253332614899,-6.78134679794312,9.71249961853027,-1.41114974021912,-6.18417549133301,9.89578342437744,-1.182985663414,-7.29749011993408,9.53036594390869,-1.18441891670227,-7.08983898162842,9.60941314697266,-1.33673655986786,-7.27682209014893,9.35315036773682,-1.48440098762512,-6.75144052505493,9.42030906677246,-1.65955352783203,-6.17799425125122,9.60728073120117,-1.42646634578705,-7.01918315887451,9.3570728302002,-1.51054787635803,-6.6938681602478,9.28552722930908,-1.64334118366241,-6.15865278244019,9.41034984588623,-1.47633826732635,-7.26033544540405,9.12113571166992,-1.47965574264526,-7.0264310836792,9.21354866027832,-1.59319698810577,-7.23587989807129,8.90049839019775,-1.68059754371643,-6.65517568588257,8.88534927368164,-1.74676895141602,-6.12426662445068,9.00220108032227,-1.64289700984955,-6.95435237884521,8.88427352905273,-1.75670969486237,-6.63870859146118,8.75004196166992, --1.79762709140778,-6.10671377182007,8.8160572052002,-1.74336385726929,-7.22013378143311,8.62440967559814,-1.78590512275696,-6.9868540763855,8.66543865203857,-1.88027858734131,-7.19379329681396,8.34619426727295,-1.87034344673157,-6.59052753448486,8.23954105377197,-1.92415738105774,-6.05558109283447,8.27859210968018,-1.96293330192566,-6.93778896331787,8.23732280731201,-1.97251629829407,-6.54763412475586,7.92757606506348,-2.06975841522217,-6.02782821655273,7.95918560028076,-2.05014777183533,-7.16031122207642,7.85709953308105,-2.0325083732605,-6.95929336547852,7.88146114349365,-2.18375062942505,-7.11858129501343,7.38582038879395,-2.21473598480225,-6.49767541885376,7.3962984085083,-2.2940731048584,-5.9813494682312,7.46292114257813,-2.24562788009644,-6.9142370223999,7.3690767288208,-0.159570872783661,-6.43436431884766,10.3271369934082,-8.63876193761826e-05,-6.42721271514893,10.3771781921387,-2.37725949287415,-6.0447564125061,6.48078346252441,-2.48032832145691,-6.04098796844482,6.27625942230225,-0.765434265136719,-6.41089868545532,10.1759881973267,-0.817821979522705,-6.41787767410278,10.1137351989746,-1.04007208347321,-6.41958856582642,10.0598287582397,-1.21182084083557,-6.38296318054199,9.94424057006836,-0.672127485275269,-6.40444803237915,10.199089050293,-1.29501354694366,-6.38412666320801,9.91039562225342,-0.431785702705383,-6.44107437133789,10.3041973114014,-1.30737030506134,-6.36621761322021,9.8283519744873,-1.44723796844482,-6.3676495552063,9.6828556060791,-1.55495846271515,-6.35618114471436,9.52470016479492,-1.64325487613678,-6.35018253326416,9.48718547821045,-1.55093038082123,-6.32565069198608,9.35752391815186,-1.59283840656281,-6.29834938049316,9.12373161315918,-1.69017350673676,-6.30380964279175,8.93694496154785,-1.83497214317322,-6.29923343658447,8.9019136428833,-1.76378405094147,-6.27327823638916,8.8079948425293,-1.73020422458649,-6.24784183502197,8.57032203674316,-1.85045862197876,-6.22205018997192,8.26311206817627,-2.00090026855469,-6.22034883499146,8.10254383087158,-1.99938058853149,-6.19258642196655,7.95139503479004, --2.0818498134613,-6.17046642303467,7.72323131561279,-2.22064208984375,-6.14450168609619,7.43641567230225,-2.35916900634766,-6.13867616653442,7.24765110015869,-2.30248785018921,-6.10232877731323,7.09032535552979,-2.33660554885864,-6.07250928878784,6.78926658630371,-0.211865276098251,-6.22626161575317,10.5215425491333,-8.63876193761826e-05,-6.22895336151123,10.4758768081665,-0.499663114547729,-6.2232141494751,10.479640007019,-0.711169242858887,-6.20296907424927,10.344331741333,-0.765169143676758,-6.23091459274292,10.2445812225342,-0.889998555183411,-6.19849920272827,10.248233795166,-1.14268970489502,-6.18935632705688,10.2103710174561,-1.32716000080109,-6.17092847824097,10.0805139541626,-1.36969244480133,-6.20261287689209,9.98256492614746,-1.5476188659668,-6.15373086929321,9.96635913848877,-1.73405301570892,-6.14029169082642,9.83517265319824,-1.80837345123291,-6.13751363754272,9.66423320770264,-1.77622711658478,-6.18220472335815,9.54880809783936,-1.80273246765137,-6.16089248657227,9.46588706970215,-1.81679713726044,-6.1306209564209,9.24399375915527,-1.87285208702087,-6.12497854232788,9.05048561096191,-1.90329301357269,-6.1617865562439,8.92780590057373,-1.93409872055054,-6.11298084259033,8.84854507446289,-1.98943901062012,-6.10322332382202,8.61368274688721,-2.10718727111816,-6.06095504760742,8.30268287658691,-2.17148685455322,-6.08093070983887,8.14051723480225,-2.24643063545227,-6.01787900924683,8.01282119750977,-2.34591579437256,-6.02424287796021,7.7705078125,-2.48614835739136,-5.96756458282471,7.47653198242188,-2.54963827133179,-5.99755668640137,7.28176975250244,-2.61858296394348,-5.93263006210327,7.10500335693359,-2.6429443359375,-5.93326425552368,6.80117988586426,-2.68109083175659,-5.86575222015381,6.51230716705322,-2.642493724823,-5.84774684906006,6.32882499694824,-0.231927007436752,-7.25774002075195,10.175895690918,-8.63876193761826e-05,-7.17624998092651,10.1957769393921,-1.27531027793884,-7.11768770217896,9.70085906982422,-1.21263039112091,-7.18358469009399,9.74856281280518,-1.08144354820251,-7.25827836990356,9.8084774017334, --0.91542911529541,-7.20042705535889,9.93313789367676,-1.36002326011658,-7.16291666030884,9.63701248168945,-0.766243815422058,-7.1038064956665,10.0139951705933,-1.4801938533783,-7.18358469009399,9.50484180450439,-0.610522389411926,-7.22952556610107,10.0462160110474,-1.58299040794373,-7.10720920562744,9.38796424865723,-0.414146929979324,-7.28011894226074,10.0979919433594,-1.62418222427368,-7.05052137374878,9.31688690185547,-1.65301668643951,-7.12260961532593,9.22098064422607,-1.74005258083344,-7.21484661102295,9.05084419250488,-1.83873689174652,-7.06180715560913,8.91151523590088,-1.90785849094391,-6.94673871994019,8.81847381591797,-1.98334693908691,-7.0669116973877,8.70035934448242,-2.10477209091187,-7.08706951141357,8.53030776977539,-2.25968408584595,-7.02285432815552,8.29829502105713,-2.30230903625488,-6.93278026580811,8.15278053283691,-2.35021615028381,-7.02563285827637,8.0163106918335,-2.44039058685303,-7.08777141571045,7.73836231231689,-2.55375289916992,-6.96009111404419,7.40775966644287,-2.61894083023071,-6.80455160140991,7.22974681854248,-2.70526623725891,-6.90788221359253,7.03086185455322,-2.74421525001526,-6.93796157836914,6.706618309021,-2.76132369041443,-6.85567378997803,6.37234687805176,-2.77018284797668,-6.71589088439941,6.21116352081299,-2.43842005729675,-6.71518850326538,6.20507049560547,-2.40528464317322,-6.84054279327393,6.32443904876709,-0.232192248106003,-7.10675764083862,10.2216529846191,-8.63876193761826e-05,-7.01399183273315,10.2307910919189,-0.190555527806282,-7.08912754058838,10.0921697616577,-8.63876193761826e-05,-7.00880098342896,10.1782064437866,-0.498501420021057,-7.13810586929321,10.1482276916504,-0.679473996162415,-7.08311939239502,10.0880575180054,-0.786750316619873,-6.94853687286377,10.0612802505493,-0.928860664367676,-7.0535683631897,9.99302673339844,-1.11609792709351,-7.11974477767944,9.86094284057617,-1.27477288246155,-7.04301357269287,9.7911205291748,-1.31175696849823,-6.9691276550293,9.75143051147461,-1.39897179603577,-7.02421045303345,9.71569919586182,-1.5417058467865,-7.04632043838501,9.55863761901855, --1.65050804615021,-6.96259117126465,9.42530822753906,-1.66904389858246,-6.89802980422974,9.36460971832275,-1.70916044712067,-6.96581125259399,9.29655361175537,-1.79082667827606,-7.05285739898682,9.09024429321289,-1.88520884513855,-6.89964485168457,8.92895603179932,-1.91538393497467,-6.78967189788818,8.83913993835449,-2.00582432746887,-6.90751791000366,8.75031280517578,-2.15966081619263,-6.92784881591797,8.5554666519165,-2.32756018638611,-6.8562126159668,8.26829051971436,-2.32738065719604,-6.77374219894409,8.14498901367188,-2.3983895778656,-6.86222076416016,8.0357494354248,-2.50504231452942,-6.92560911178589,7.71920299530029,-2.61258339881897,-6.79585218429565,7.39737415313721,-2.63434433937073,-6.64138984680176,7.24111461639404,-2.77000403404236,-6.72520542144775,7.05495262145996,-2.82856965065002,-6.75618839263916,6.72515392303467,-2.82785248756409,-6.67237234115601,6.38604354858398,-2.7818295955658,-6.59276676177979,6.26300621032715,-2.46689605712891,-6.59018087387085,6.21349239349365,-2.41012287139893,-6.66494178771973,6.36902809143066,-2.35200834274292,-6.7433066368103,6.6873664855957,-2.33418941497803,-6.72350406646729,6.99549102783203,-2.35245251655579,-6.69726037979126,7.17932987213135,-2.22297120094299,-6.80535936355591,7.36782264709473,-2.07638835906982,-6.87922620773315,7.65043067932129,-2.00107884407043,-6.85307884216309,7.89256381988525,-1.98979711532593,-6.76747465133667,8.05535316467285,-1.92746913433075,-6.85236740112305,8.22890090942383,-1.78473269939423,-6.91996622085571,8.50344371795654,-1.76933181285858,-6.8999137878418,8.68843650817871,-1.80165505409241,-6.78798961639404,8.82483100891113,-1.65032911300659,-6.87851524353027,8.87730312347412,-1.536337018013,-6.95659208297729,9.02800750732422,-1.47947692871094,-6.94280767440796,9.2316198348999,-1.52451741695404,-6.89525175094604,9.34580898284912,-1.43667268753052,-6.95382404327393,9.3662052154541,-1.28399729728699,-7.03073740005493,9.47126293182373,-1.18943631649017,-7.01444339752197,9.63278579711914,-1.20617985725403,-6.98139381408691,9.72575092315674, --1.09362077713013,-7.03145837783813,9.72197151184082,-0.91228985786438,-7.08320569992065,9.80105972290039,-0.800447821617126,-7.0389666557312,9.9125280380249,-0.749321341514587,-6.94289350509644,10.0201807022095,-0.580526828765869,-7.06798791885376,9.9924201965332,-0.370632857084274,-7.11732244491577,10.043083190918,-2.05059957504272,-7.15028476715088,6.43753433227539,-1.61370348930359,-7.31763792037964,6.31637525558472,-1.84446167945862,-7.38927459716797,7.59688234329224,-1.74399435520172,-7.42795753479004,8.05463600158691,-1.6448677778244,-7.41534519195557,8.48427867889404,-1.46407413482666,-7.43959951400757,8.77584743499756,-1.39216959476471,-7.41677808761597,9.0232629776001,-1.21002840995789,-7.43369722366333,9.25669193267822,-1.08923423290253,-7.41399049758911,9.44921207427979,-0.880144715309143,-7.41937398910522,9.61426830291748,-0.696669220924377,-7.40790510177612,9.7512674331665,-0.436000376939774,-7.42035388946533,9.86139488220215,-0.259321302175522,-7.40485811233521,9.95839023590088,1.42162692546844,-6.22902965545654,9.99483776092529,1.95970737934113,-6.17012119293213,8.93764305114746,2.68171334266663,-6.01233148574829,7.30299282073975,2.73275327682495,-5.87049102783203,6.33276748657227,1.34855461120605,-8.7330265045166,9.24324417114258,1.9685732126236,-8.5785083770752,8.34024810791016,2.7479772567749,-8.30893611907959,6.76264047622681,2.82454037666321,-8.00935745239258,5.65442037582397,0.773762106895447,-7.00037956237793,10.0389804840088,0.781108498573303,-6.25447607040405,10.259428024292,1.28614675998688,-7.0286808013916,9.71983909606934,0.821490883827209,-8.77790546417236,9.50720596313477,1.6422655582428,-6.95121908187866,9.3407735824585,1.83622550964355,-6.1999306678772,9.55794048309326,1.90436506271362,-6.82845067977905,8.82947158813477,1.66348826885223,-8.6617317199707,8.825514793396,2.30419278144836,-6.82737350463867,8.13209533691406,2.26649165153503,-6.09426403045654,8.17570304870605,2.59368920326233,-6.70084619522095,7.23260688781738,2.34618735313416,-8.47163581848145,7.71692514419556,2.74323296546936,-6.87985038757324,6.71100425720215, -2.8471040725708,-5.92618942260742,6.80941581726074,2.76525831222534,-6.6276912689209,6.23508262634277,2.79418587684631,-8.21381759643555,6.20342493057251,0.569064378738403,-6.83498764038086,10.3152141571045,0.598523259162903,-6.2509765625,10.4933376312256,0.805822134017944,-6.78305768966675,10.1227054595947,0.423907995223999,-7.23230409622192,10.1029167175293,1.69581365585327,-6.78860425949097,9.6970043182373,1.3717485666275,-6.77857828140259,9.83614444732666,1.86649394035339,-6.1895489692688,9.87600517272949,1.73449695110321,-6.72753286361694,9.42684555053711,1.48117506504059,-7.12226343154907,9.51136207580566,2.24339008331299,-6.62554740905762,8.6055326461792,1.93857717514038,-6.65975141525269,8.86474990844727,2.18213701248169,-6.08514165878296,8.65997886657715,2.35961890220642,-6.59931373596191,8.17973804473877,2.10646986961365,-7.02285432815552,8.53039360046387,2.88157939910889,-6.40284204483032,7.08253288269043,2.70624828338623,-6.44912910461426,7.26314735412598,2.83931279182434,-5.9487509727478,7.11781215667725,2.93271279335022,-6.37607002258301,6.76114940643311,2.69863653182983,-6.83150625228882,7.03578662872314,1.17913556098938,-6.83588123321533,10.0483856201172,1.21432793140411,-6.22680950164795,10.2498636245728,1.0867246389389,-7.20661783218384,9.80578804016113,1.04284584522247,-7.37217378616333,9.82890796661377,1.27718758583069,-7.34181547164917,9.68410873413086,1.10141122341156,-8.75555324554443,9.3794412612915,0.759348392486572,-7.36223363876343,9.97036933898926,0.40949422121048,-7.39689826965332,10.0896625518799,0.417550653219223,-8.80156993865967,9.64441108703613,1.91439652442932,-6.69897270202637,9.1934928894043,1.97161936759949,-6.1438775062561,9.30354309082031,1.74023056030273,-7.1545729637146,9.05648517608643,1.74425876140594,-7.33295249938965,9.04251575469971,1.91726171970367,-7.24627161026001,8.79716396331787,1.78679132461548,-8.63889026641846,8.58676719665527,1.61361634731293,-7.30035448074341,9.28481006622314,1.48583340644836,-7.33698034286499,9.4945240020752,1.54627752304077,-8.69909477233887,9.0396900177002, -2.59897184371948,-6.53626155853271,7.74758625030518,2.52357721328735,-6.01895570755005,7.7970142364502,2.43555212020874,-7.0410327911377,7.70953369140625,2.45328426361084,-7.18557453155518,7.81644439697266,2.66792321205139,-7.09995031356812,7.22804164886475,2.50952053070068,-8.40734767913818,7.34728145599365,2.29344177246094,-7.19611978530884,8.1980094909668,2.1036958694458,-7.24394464492798,8.52466678619385,2.15249943733215,-8.52693653106689,8.03760242462158,2.928147315979,-6.3525276184082,6.42132949829102,2.89375734329224,-5.88141202926636,6.50469493865967,2.78675365447998,-6.41502141952515,6.25674152374268,2.76006865501404,-6.78036499023438,6.37870407104492,2.76114368438721,-7.03619718551636,6.35551071166992,2.77600908279419,-6.95524549484253,6.16110515594482,2.80860018730164,-8.1545934677124,5.86091089248657,2.7439489364624,-7.07595634460449,6.69479846954346,2.71788811683655,-7.09941244125366,7.01734447479248,2.77869057655334,-8.27109909057617,6.53366899490356,0.237473994493484,-6.82442331314087,10.375675201416,0.250189274549484,-6.2576961517334,10.5622711181641,0.229682803153992,-7.39833068847656,10.1472215652466,0.231388211250305,-8.81004905700684,9.69142246246338,0.22977602481842,-7.19935035705566,10.1863565444946,0.590825200080872,-7.38481473922729,10.0291147232056,0.623057961463928,-8.7899923324585,9.57671356201172,0.774837493896484,-6.81815528869629,10.2072381973267,0.768479585647583,-6.24292087554932,10.3786296844482,0.624312281608582,-7.1664834022522,10.0543651580811,0.94497287273407,-6.81064701080322,10.1177816390991,0.94094455242157,-6.23458623886108,10.285680770874,0.903960466384888,-7.36976051330566,9.90339088439941,0.969062685966492,-8.76664257049561,9.44309234619141,0.919098019599915,-7.13067483901978,9.94816398620605,1.16722977161407,-7.35641765594482,9.75736236572266,1.22776019573212,-8.7446231842041,9.31387615203857,1.35500514507294,-6.81324243545532,9.91727256774902,1.40712058544159,-6.21622514724731,10.1071290969849,1.23474812507629,-7.11357307434082,9.74963855743408,1.52406573295593,-6.7968430519104,9.85405540466309, -1.655517578125,-6.20611238479614,10.011492729187,1.38366067409515,-7.34136390686035,9.59598064422607,1.45529353618622,-8.71671867370605,9.14447689056396,1.3539297580719,-7.09189558029175,9.65955638885498,1.56051242351532,-7.31747579574585,9.38708782196045,1.60707950592041,-8.68033504486084,8.93171501159668,1.75912415981293,-6.75987148284912,9.51263236999512,1.91538572311401,-6.17907047271729,9.69009113311768,1.60528767108917,-7.02366256713867,9.39691734313965,1.84231078624725,-6.70819139480591,9.40811252593994,1.95603764057159,-6.17074584960938,9.52427291870117,1.66429793834686,-7.30546855926514,9.17083549499512,1.71238458156586,-8.64444255828857,8.70765399932861,1.65623450279236,-7.04667615890503,9.24836349487305,1.83076584339142,-7.27725458145142,8.91840267181396,1.87508773803711,-8.60317230224609,8.46596527099609,1.96642315387726,-6.66458702087402,8.98733615875244,1.99624037742615,-6.13464879989624,9.09337615966797,1.84607124328613,-6.97360754013062,8.91178035736084,2.07620859146118,-6.64568758010864,8.82124805450439,2.07244515419006,-6.11360597610474,8.88921642303467,2.00564384460449,-7.25209712982178,8.6655330657959,2.05865526199341,-8.55307388305664,8.19036483764648,1.97376346588135,-6.99205493927002,8.71567726135254,2.20595479011536,-7.22290182113647,8.36590766906738,2.24911832809448,-8.5011510848999,7.88850355148315,2.38684177398682,-6.59554529190063,8.29255294799805,2.28771471977234,-6.06023406982422,8.32820796966553,2.28261160850525,-6.9405574798584,8.26551914215088,2.49680519104004,-6.56070756912231,8.07066917419434,2.42068672180176,-6.03821039199829,8.06968021392822,2.37054252624512,-7.19344758987427,8.02481937408447,2.4277617931366,-8.44096374511719,7.5404314994812,2.34269642829895,-6.95722675323486,8.01273441314697,2.55572271347046,-7.14428615570068,7.51011180877686,2.61661791801453,-8.35823059082031,7.055992603302,2.72702670097351,-6.49113845825195,7.42539978027344,2.67544841766357,-5.98340654373169,7.48503971099854,2.54426193237305,-6.89176177978516,7.39262962341309,0.247594326734543,-6.43929576873779,10.521183013916, -2.94605207443237,-6.04358386993408,6.46771049499512,2.77502059936523,-6.042160987854,6.29461479187012,0.802238702774048,-6.41565704345703,10.2279920578003,0.952317953109741,-6.41716718673706,10.2511005401611,1.22731554508209,-6.41600322723389,10.20911693573,1.42511832714081,-6.40239143371582,10.0605430603027,0.801973462104797,-6.42424201965332,10.3375110626221,1.42852222919464,-6.39280700683594,9.95848274230957,0.61392605304718,-6.43472051620483,10.456711769104,1.63895356655121,-6.39344120025635,9.98497009277344,1.84687435626984,-6.37893533706665,9.83883094787598,1.89469766616821,-6.36156463623047,9.64317226409912,1.8280782699585,-6.35279750823975,9.53087902069092,1.95165050029755,-6.34195423126221,9.51108837127686,1.98755347728729,-6.31946897506714,9.2871561050415,2.01200199127197,-6.30130052566528,9.06704998016357,1.96991419792175,-6.29887819290161,8.92680740356445,2.10047078132629,-6.28078651428223,8.88731288909912,2.24482417106628,-6.25608062744141,8.65854454040527,2.35684561729431,-6.22724103927612,8.31881046295166,2.31914448738098,-6.2283182144165,8.18833160400391,2.48238515853882,-6.20531368255615,8.08687591552734,2.59315180778503,-6.17646503448486,7.78824043273926,2.73562049865723,-6.14575147628784,7.46426868438721,2.71968030929565,-6.1350998878479,7.29565238952637,2.89635276794434,-6.10322284698486,7.11369037628174,2.92295026779175,-6.07304763793945,6.79544544219971,1.31470966339111,-6.22159862518311,9.95839023590088,1.84831202030182,-6.16833305358887,8.91840267181396,2.41468811035156,-6.00821733474731,7.25911331176758,2.55035400390625,-5.86619424819946,6.31378078460693,0.742067456245422,-6.99653434753418,10.0049381256104,0.753435134887695,-6.250168800354,10.2193965911865,1.1922093629837,-7.04810857772827,9.70459842681885,1.51323521137238,-6.94969987869263,9.32931423187256,1.70575511455536,-6.19787406921387,9.53186702728271,1.79888224601746,-6.8272876739502,8.81970882415771,2.01209449768066,-6.82289361953735,8.04703044891357,2.07253789901733,-6.08790969848633,8.10764694213867,2.36454367637634,-6.7620906829834,7.1709156036377, -2.40170741081238,-6.87411165237427,6.66561508178711,2.43457007408142,-5.92493963241577,6.79589653015137,2.46984887123108,-6.64747476577759,6.21116352081299,0.408598363399506,-6.82397079467773,10.1841192245483,0.449159681797028,-6.25741720199585,10.3840036392212,0.768214344978333,-6.7783088684082,10.0750513076782,0.368302315473557,-7.22236394882202,10.0187292098999,1.36198663711548,-6.77516555786133,9.56143665313721,1.24853885173798,-6.77588653564453,9.79299831390381,1.56095719337463,-6.18121480941772,9.76264476776123,1.56328618526459,-6.72467756271362,9.39523696899414,1.28077101707458,-7.11589002609253,9.45852947235107,1.74139225482941,-6.61775159835815,8.52843189239502,1.8105229139328,-6.65831899642944,8.84444141387939,1.79664647579193,-6.07743167877197,8.57822513580322,1.96239495277405,-6.59062337875366,8.08463954925537,1.82207632064819,-7.01963424682617,8.50165271759033,2.29863882064819,-6.40830230712891,7.05396366119385,2.35236573219299,-6.49955892562866,7.20888137817383,2.39212441444397,-5.94643402099609,7.09345722198486,2.32165336608887,-6.37382984161377,6.75488471984863,2.3723349571228,-6.8361496925354,6.97069072723389,0.99189829826355,-6.82254838943481,9.92640495300293,1.06451976299286,-6.23145198822021,10.1433038711548,0.901006937026978,-7.17230892181396,9.77679347991943,0.88533890247345,-7.3039402961731,9.76488018035889,1.08538401126862,-7.29991245269775,9.62543964385986,0.633623003959656,-7.31559133529663,9.89508533477783,0.3585404753685,-7.33178901672363,10.0024490356445,1.57349920272827,-6.67300748825073,9.06239700317383,1.66071391105652,-6.12256526947021,9.18434143066406,1.53884470462799,-7.05311727523804,9.0281867980957,1.53875148296356,-7.22737216949463,9.01106834411621,1.67325019836426,-7.21591377258301,8.76922512054443,1.41517698764801,-7.26320028305054,9.24612617492676,1.27315926551819,-7.27170753479004,9.44278621673584,2.0695788860321,-6.52390909194946,7.68051910400391,2.16503524780273,-6.01422595977783,7.74579429626465,2.1067419052124,-7.00432062149048,7.64997863769531,2.12258958816528,-7.11804294586182,7.65159130096436, -2.21133065223694,-7.08133029937744,7.04429531097412,1.98675000667572,-7.16380071640015,8.06511497497559,1.81231451034546,-7.18403625488281,8.50398254394531,2.37707948684692,-6.35243129730225,6.43036842346191,2.46259546279907,-5.88204622268677,6.51159000396729,2.46510434150696,-6.41457033157349,6.23793506622314,2.44656825065613,-6.77633762359619,6.3546142578125,2.27723574638367,-7.01265478134155,6.33715438842773,2.31161856651306,-7.012375831604,6.61600017547607,2.2643415927887,-7.05769157409668,6.84542655944824,0.164135694503784,-6.80920505523682,10.202561378479,0.182405695319176,-6.25608110427856,10.4136228561401,0.211326479911804,-7.34692001342773,10.0465745925903,0.206668257713318,-7.1898717880249,10.0977258682251,0.482653617858887,-7.33510541915894,9.95051288604736,0.65556275844574,-6.80427360534668,10.0798892974854,0.666665315628052,-6.22482919692993,10.2786798477173,0.55849301815033,-7.15843725204468,9.98183059692383,0.814150810241699,-6.80068826675415,10.0011081695557,0.834026694297791,-6.2361912727356,10.1868181228638,0.768931269645691,-7.32105112075806,9.82512760162354,0.804747343063354,-7.11937952041626,9.8903341293335,0.972911953926086,-7.31003475189209,9.70058727264404,1.15558993816376,-6.80140924453735,9.81260967254639,1.23859751224518,-6.19876766204834,10.0269651412964,1.07732129096985,-7.10684394836426,9.70254039764404,1.24235355854034,-6.78134679794312,9.71249961853027,1.41096925735474,-6.18417549133301,9.89578342437744,1.18289852142334,-7.29749011993408,9.53036594390869,1.1843318939209,-7.08983898162842,9.60941314697266,1.33655607700348,-7.27682209014893,9.35315036773682,1.4843076467514,-6.75144052505493,9.42030906677246,1.65937316417694,-6.17799425125122,9.60728073120117,1.42628586292267,-7.01918315887451,9.3570728302002,1.51045441627502,-6.6938681602478,9.28552722930908,1.64325404167175,-6.15865278244019,9.41034984588623,1.47625112533569,-7.26033544540405,9.12113571166992,1.47947597503662,-7.0264310836792,9.21354866027832,1.59310984611511,-7.23587989807129,8.90049839019775,1.68041086196899,-6.65517568588257,8.88534927368164, -1.74668180942535,-6.12426662445068,9.00220108032227,1.64271664619446,-6.95435237884521,8.88427352905273,1.75652933120728,-6.63870859146118,8.75004196166992,1.79754233360291,-6.10671377182007,8.8160572052002,1.74318397045135,-7.22013378143311,8.62440967559814,1.78572285175323,-6.9868540763855,8.66543865203857,1.88009810447693,-7.19379329681396,8.34619426727295,1.87016367912292,-6.59052753448486,8.23954105377197,1.92407023906708,-6.05558109283447,8.27859210968018,1.96275353431702,-6.93778896331787,8.23732280731201,1.97242271900177,-6.54763412475586,7.92757606506348,2.0695788860321,-6.02782821655273,7.95918560028076,2.05006146430969,-7.16031122207642,7.85709953308105,2.03241515159607,-6.95929336547852,7.88146114349365,2.18357110023499,-7.11858129501343,7.38582038879395,2.21455574035645,-6.49767541885376,7.3962984085083,2.29397916793823,-5.9813494682312,7.46292114257813,2.24553394317627,-6.9142370223999,7.3690767288208,0.159476846456528,-6.43436431884766,10.3271369934082,2.37707948684692,-6.0447564125061,6.48078346252441,2.48014879226685,-6.04098796844482,6.27625942230225,0.765347242355347,-6.41089868545532,10.1759881973267,0.817641615867615,-6.41787767410278,10.1137351989746,1.03989231586456,-6.41958856582642,10.0598287582397,1.21173357963562,-6.38296318054199,9.94424057006836,0.672040462493896,-6.40444803237915,10.199089050293,1.29492020606995,-6.38412666320801,9.91039562225342,0.431699216365814,-6.44107437133789,10.3041973114014,1.30727684497833,-6.36621761322021,9.8283519744873,1.44715082645416,-6.3676495552063,9.6828556060791,1.55487143993378,-6.35618114471436,9.52470016479492,1.64316141605377,-6.35018253326416,9.48718547821045,1.5507504940033,-6.32565069198608,9.35752391815186,1.59275138378143,-6.29834938049316,9.12373161315918,1.69008696079254,-6.30380964279175,8.93694496154785,1.83487796783447,-6.29923343658447,8.9019136428833,1.76360416412354,-6.27327823638916,8.8079948425293,1.73011028766632,-6.24784183502197,8.57032203674316,1.85028100013733,-6.22205018997192,8.26311206817627,2.00080609321594,-6.22034883499146,8.10254383087158, -1.99919378757477,-6.19258642196655,7.95139503479004,2.08166980743408,-6.17046642303467,7.72323131561279,2.22055506706238,-6.14450168609619,7.43641567230225,2.35908222198486,-6.13867616653442,7.24765110015869,2.30240106582642,-6.10232877731323,7.09032535552979,2.33642554283142,-6.07250928878784,6.78926658630371,0.211684957146645,-6.22626161575317,10.5215425491333,0.499576061964035,-6.2232141494751,10.479640007019,0.711082100868225,-6.20296907424927,10.344331741333,0.765075087547302,-6.23091459274292,10.2445812225342,0.88981819152832,-6.19849920272827,10.248233795166,1.14250981807709,-6.18935632705688,10.2103710174561,1.326979637146,-6.17092847824097,10.0805139541626,1.36959850788116,-6.20261287689209,9.98256492614746,1.54753184318542,-6.15373086929321,9.96635913848877,1.73395955562592,-6.14029169082642,9.83517265319824,1.80828642845154,-6.13751363754272,9.66423320770264,1.77613985538483,-6.18220472335815,9.54880809783936,1.80264532566071,-6.16089248657227,9.46588706970215,1.81670117378235,-6.1306209564209,9.24399375915527,1.87275791168213,-6.12497854232788,9.05048561096191,1.90311253070831,-6.1617865562439,8.92780590057373,1.93400537967682,-6.11298084259033,8.84854507446289,1.98934519290924,-6.10322332382202,8.61368274688721,2.10710048675537,-6.06095504760742,8.30268287658691,2.17139315605164,-6.08093070983887,8.14051723480225,2.2463436126709,-6.01787900924683,8.01282119750977,2.3457362651825,-6.02424287796021,7.7705078125,2.48596858978271,-5.96756458282471,7.47653198242188,2.54954433441162,-5.99755668640137,7.28176975250244,2.61840271949768,-5.93263006210327,7.10500335693359,2.64285111427307,-5.93326425552368,6.80117988586426,2.68091058731079,-5.86575222015381,6.51230716705322,2.6423134803772,-5.84774684906006,6.32882499694824,0.231832981109619,-7.25774002075195,10.175895690918,1.27512991428375,-7.11768770217896,9.70085906982422,1.21253621578217,-7.18358469009399,9.74856281280518,1.08126318454742,-7.25827836990356,9.8084774017334,0.915335059165955,-7.20042705535889,9.93313789367676,1.35992920398712,-7.16291666030884,9.63701248168945, -0.766064167022705,-7.1038064956665,10.0139951705933,1.48001337051392,-7.18358469009399,9.50484180450439,0.610435843467712,-7.22952556610107,10.0462160110474,1.58281052112579,-7.10720920562744,9.38796424865723,0.413967221975327,-7.28011894226074,10.0979919433594,1.62400186061859,-7.05052137374878,9.31688690185547,1.6529233455658,-7.12260961532593,9.22098064422607,1.73996531963348,-7.21484661102295,9.05084419250488,1.83863842487335,-7.06180715560913,8.91151523590088,1.9076806306839,-6.94673871994019,8.81847381591797,1.98316657543182,-7.0669116973877,8.70035934448242,2.10468506813049,-7.08706951141357,8.53030776977539,2.25950384140015,-7.02285432815552,8.29829502105713,2.30222153663635,-6.93278026580811,8.15278053283691,2.35003614425659,-7.02563285827637,8.0163106918335,2.44021105766296,-7.08777141571045,7.73836231231689,2.5535728931427,-6.96009111404419,7.40775966644287,2.61885452270508,-6.80455160140991,7.22974681854248,2.70517349243164,-6.90788221359253,7.03086185455322,2.74412798881531,-6.93796157836914,6.706618309021,2.76122975349426,-6.85567378997803,6.37234687805176,2.77009677886963,-6.71589088439941,6.21116352081299,2.43823909759521,-6.71518850326538,6.20507049560547,2.40510511398315,-6.84054279327393,6.32443904876709,0.232011899352074,-7.10675764083862,10.2216529846191,0.190375849604607,-7.08912754058838,10.0921697616577,0.498407989740372,-7.13810586929321,10.1482276916504,0.679294228553772,-7.08311939239502,10.0880575180054,0.786656260490417,-6.94853687286377,10.0612802505493,0.928766012191772,-7.0535683631897,9.99302673339844,1.1160044670105,-7.11974477767944,9.86094284057617,1.27468574047089,-7.04301357269287,9.7911205291748,1.31166362762451,-6.9691276550293,9.75143051147461,1.39879143238068,-7.02421045303345,9.71569919586182,1.54161858558655,-7.04632043838501,9.55863761901855,1.65032815933228,-6.96259117126465,9.42530822753906,1.66886353492737,-6.89802980422974,9.36460971832275,1.70906710624695,-6.96581125259399,9.29655361175537,1.79073321819305,-7.05285739898682,9.09024429321289,1.88503098487854,-6.89964485168457,8.92895603179932, -1.91529059410095,-6.78967189788818,8.83913993835449,2.00573706626892,-6.90751791000366,8.75031280517578,2.15957379341125,-6.92784881591797,8.5554666519165,2.32737994194031,-6.8562126159668,8.26829051971436,2.32720112800598,-6.77374219894409,8.14498901367188,2.39830231666565,-6.86222076416016,8.0357494354248,2.50486207008362,-6.92560911178589,7.71920299530029,2.6124963760376,-6.79585218429565,7.39737415313721,2.63425731658936,-6.64138984680176,7.24111461639404,2.76991724967957,-6.72520542144775,7.05495262145996,2.82848238945007,-6.75618839263916,6.72515392303467,2.82776618003845,-6.67237234115601,6.38604354858398,2.78165006637573,-6.59276676177979,6.26300621032715,2.4668025970459,-6.59018087387085,6.21349239349365,2.40994262695313,-6.66494178771973,6.36902809143066,2.35182809829712,-6.7433066368103,6.6873664855957,2.33409547805786,-6.72350406646729,6.99549102783203,2.35227227210999,-6.69726037979126,7.17932987213135,2.22279167175293,-6.80535936355591,7.36782264709473,2.07620859146118,-6.87922620773315,7.65043067932129,2.00089931488037,-6.85307884216309,7.89256381988525,1.98961746692657,-6.76747465133667,8.05535316467285,1.92728888988495,-6.85236740112305,8.22890090942383,1.78455495834351,-6.91996622085571,8.50344371795654,1.76924467086792,-6.8999137878418,8.68843650817871,1.80147790908813,-6.78798961639404,8.82483100891113,1.65023577213287,-6.87851524353027,8.87730312347412,1.53624355792999,-6.95659208297729,9.02800750732422,1.47938287258148,-6.94280767440796,9.2316198348999,1.52442407608032,-6.89525175094604,9.34580898284912,1.43657875061035,-6.95382404327393,9.3662052154541,1.28381764888763,-7.03073740005493,9.47126293182373,1.18925583362579,-7.01444339752197,9.63278579711914,1.20599937438965,-6.98139381408691,9.72575092315674,1.09353375434875,-7.03145837783813,9.72197151184082,0.912202715873718,-7.08320569992065,9.80105972290039,0.800267457962036,-7.0389666557312,9.9125280380249,0.749228000640869,-6.94289350509644,10.0201807022095,0.580346465110779,-7.06798791885376,9.9924201965332,0.370538800954819,-7.11732244491577,10.043083190918, -2.05041933059692,-7.15028476715088,6.43753433227539,1.61361634731293,-7.31763792037964,6.31637525558472,1.84428381919861,-7.38927459716797,7.59688234329224,1.74381458759308,-7.42795753479004,8.05463600158691,1.64477360248566,-7.41534519195557,8.48427867889404,1.46389424800873,-7.43959951400757,8.77584743499756,1.39207541942596,-7.41677808761597,9.0232629776001,1.20994138717651,-7.43369722366333,9.25669193267822,1.08914697170258,-7.41399049758911,9.44921207427979,0.880056381225586,-7.41937398910522,9.61426830291748,0.696488857269287,-7.40790510177612,9.7512674331665,0.435820698738098,-7.42035388946533,9.86139488220215,0.259141564369202,-7.40485811233521,9.95839023590088,0.108171537518501,-7.39456224441528,10.1726589202881,0.108437396585941,-8.81609153747559,9.71208953857422,0.110142819583416,-7.21134757995605,10.1978168487549,0.107275679707527,-7.13550090789795,10.2115201950073,0.0921449735760689,-7.05616474151611,10.2524585723877,0.087930902838707,-6.8127818107605,10.3523015975952,0.089364156126976,-6.43704652786255,10.4949321746826,0.0899947881698608,-6.25795602798462,10.5451803207397,0.0885615348815918,-6.2290301322937,10.5057697296143,0.0776379704475403,-6.25222635269165,10.4274129867554,0.0665285512804985,-6.42943334579468,10.3532667160034,0.071904331445694,-6.80113983154297,10.2219247817993,0.090890645980835,-7.04327297210693,10.1394376754761,0.0999292582273483,-7.12896394729614,10.1461715698242,0.0975138321518898,-7.34907341003418,10.0759649276733,0.0897226259112358,-7.44775104522705,9.96741676330566,0.159570097923279,-7.4986138343811,9.86470603942871,0.253772735595703,-7.54329538345337,9.74919319152832,0.34188324213028,-7.59085083007813,9.61686420440674,0.417550653219223,-7.63499402999878,9.48791885375977,0.493039190769196,-7.68792343139648,9.32538890838623,0.56163227558136,-7.73429679870605,9.09875106811523,0.634339928627014,-7.76939392089844,8.8291130065918,0.713769793510437,-7.8016357421875,8.48427867889404,0.786656260490417,-7.79142665863037,8.05392551422119,0.865277171134949,-7.72391414642334,7.6678900718689, --0.108258649706841,-7.39456224441528,10.1726589202881,-0.108617126941681,-8.81609153747559,9.71208953857422,-0.110229916870594,-7.21134757995605,10.1978168487549,-0.107455387711525,-7.13550090789795,10.2115201950073,-0.0922320857644081,-7.05616474151611,10.2524585723877,-0.0881106182932854,-6.8127818107605,10.3523015975952,-0.0894581824541092,-6.43704652786255,10.4949321746826,-0.0900818929076195,-6.25795602798462,10.5451803207397,-0.0886480063199997,-6.2290301322937,10.5057697296143,-0.0777250677347183,-6.25222635269165,10.4274129867554,-0.0667088851332664,-6.42943334579468,10.3532667160034,-0.0720840469002724,-6.80113983154297,10.2219247817993,-0.0910709798336029,-7.04327297210693,10.1394376754761,-0.100023277103901,-7.12896394729614,10.1461715698242,-0.0976072326302528,-7.34907341003418,10.0759649276733,-0.0899029597640038,-7.44775104522705,9.96741676330566,-0.159657180309296,-7.4986138343811,9.86470603942871,-0.25385981798172,-7.54329538345337,9.74919319152832,-0.341977268457413,-7.59085083007813,9.61686420440674,-0.417644709348679,-7.63499402999878,9.48791885375977,-0.493126273155212,-7.68792343139648,9.32538890838623,-0.561812043190002,-7.73429679870605,9.09875106811523,-0.634519696235657,-7.76939392089844,8.8291130065918,-0.713856935501099,-7.8016357421875,8.48427867889404,-0.786750316619873,-7.79142665863037,8.05392551422119,-0.865457534790039,-7.72391414642334,7.6678900718689,-2.43277883529663,-6.70174026489258,6.04702663421631,-2.47262382507324,-6.61578035354614,6.06153392791748,-2.47835755348206,-6.41332054138184,6.08176803588867,-2.50512790679932,-6.01825332641602,6.11301898956299,-2.47486662864685,-6.56716728210449,6.0622501373291,-2.23434591293335,-7.04980897903442,5.94091129302979,2.47244381904602,-6.61578035354614,6.06153392791748,2.43268489837646,-6.70174026489258,6.04702663421631,2.50504112243652,-6.01825332641602,6.11301898956299,2.47817730903625,-6.41332054138184,6.08176803588867,2.47468638420105,-6.56716728210449,6.0622501373291,2.23273253440857,-7.04998207092285,5.9428825378418,-2.78218841552734,-6.03534507751465,6.22871685028076, --2.74439430236816,-5.89027500152588,6.23632144927979,-2.65090894699097,-5.85983037948608,6.2242374420166,-2.57407975196838,-5.87353849411011,6.20802402496338,-2.49465560913086,-6.03606605529785,6.17883777618408,-2.47513198852539,-6.41895341873169,6.1431941986084,-2.4736123085022,-6.57306957244873,6.1242151260376,-2.47164082527161,-6.62142324447632,6.12358379364014,-2.43044972419739,-6.70496988296509,6.11364936828613,-2.23353624343872,-7.03512048721313,6.08409786224365,2.23309111595154,-7.03512048721313,6.0844554901123,2.43036222457886,-6.70496988296509,6.11364936828613,2.47146153450012,-6.62142324447632,6.12358379364014,2.47351861000061,-6.57306957244873,6.1242151260376,2.47495222091675,-6.41895341873169,6.1431941986084,2.49447631835938,-6.03606605529785,6.17883777618408,2.57399296760559,-5.87353849411011,6.20802402496338,2.65072870254517,-5.85983037948608,6.2242374420166,2.7442147731781,-5.89027500152588,6.23632144927979,2.78209447860718,-6.03534507751465,6.22871685028076,2.77403879165649,-6.41233015060425,6.1978178024292,-2.7742178440094,-6.41233015060425,6.1978178024292,2.37582588195801,-6.84904098510742,6.09788799285889,2.37672114372253,-6.85818243026733,6.0026969909668,-2.37591886520386,-6.84904098510742,6.09788799285889,-2.37681484222412,-6.85818243026733,6.0026969909668,-8.63876193761826e-05,-7.86209201812744,8.01434707641602,0.869935989379883,-7.52377033233643,6.85239839553833,1.39207541942596,-7.30473756790161,6.08669281005859,0.000982088968157768,-7.47506093978882,6.92931985855103,0.807973027229309,-7.4113941192627,6.60865163803101,-1.52119982242584,-7.1991662979126,5.60618877410889,-1.3871523141861,-7.30537176132202,6.09322834014893,-1.78581011295319,-7.20418453216553,5.43587398529053,-1.65901613235474,-7.17266321182251,5.39298343658447,2.04020643234253,-7.1965708732605,5.01276874542236,1.90060222148895,-7.15341758728027,4.98375988006592,1.516188621521,-7.199791431427,5.61263942718506,1.77972328662872,-7.20490550994873,5.44366550445557,1.65489399433136,-7.17321109771729,5.39818000793457,-2.04038596153259,-7.1965708732605,5.01276874542236, --1.90069806575775,-7.15341758728027,4.98375988006592,-0.397675603628159,-6.83140230178833,10.3545207977295,-0.361945778131485,-7.12852144241333,10.186713218689,-1.6171942949295,-6.79674673080444,9.79245948791504,-1.46846067905426,-7.04693555831909,9.64522838592529,-2.15921592712402,-6.63710308074951,8.73634338378906,-2.07575798034668,-6.93377113342285,8.66927051544189,-1.07472705841064,-6.22992420196533,10.2819929122925,-1.22919428348541,-6.29288911819458,10.2432327270508,-1.08574330806732,-6.41787815093994,10.2445812225342,-0.950793504714966,-6.29887866973877,10.2805767059326,-1.08646023273468,-6.29610967636108,10.2766351699829,-1.10723197460175,-7.36563682556152,9.79281997680664,-1.15496075153351,-7.23041963577271,9.77238845825195,-0.501547455787659,-7.39267826080322,10.05894947052,-0.519631624221802,-8.79601764678955,9.61188793182373,-1.97251629829407,-6.15598058700562,9.42835426330566,-1.99543881416321,-6.20485258102417,9.30629825592041,-1.97833657264709,-6.33147573471069,9.41547870635986,-1.97251629829407,-6.22902965545654,9.52927303314209,-1.99355316162109,-6.21667671203613,9.43354320526123,-1.78750908374786,-7.31012153625488,8.97963809967041,-1.79145109653473,-7.15663957595825,8.97444248199463,-1.52675402164459,-7.32830905914307,9.44063758850098,-1.57896208763123,-8.68981170654297,8.98562240600586,-2.47262382507324,-6.0268383026123,7.95022678375244,-2.56960654258728,-6.07151937484741,7.79764461517334,-2.53978300094604,-6.19142293930054,7.95568752288818,-2.46161389350891,-6.09704208374023,8.08329200744629,-2.51721978187561,-6.08379554748535,7.95828914642334,-2.50181651115417,-7.16809797286987,7.66941070556641,-2.49966669082642,-7.04246520996094,7.56393241882324,-2.15563249588013,-7.23481225967407,8.44711208343506,-2.20058679580688,-8.51437759399414,7.96435022354126,-2.94417428970337,-6.35717058181763,6.57937335968018,-2.94891905784607,-6.05631113052368,6.6206579208374,-2.76328825950623,-6.70845937728882,6.28629302978516,-2.76588892936707,-6.79854345321655,6.27527713775635,-2.7864818572998,-8.24450874328613,6.37973833084106, --2.73266768455505,-7.09117364883423,6.8683385848999,-0.422389209270477,-6.25517749786377,10.5363903045654,-0.617059230804443,-6.31536483764648,10.4847440719604,-0.426861613988876,-6.43794059753418,10.49880027771,-0.252698749303818,-6.32224798202515,10.5541391372681,-0.432596474885941,-6.31956577301025,10.5284366607666,-0.774573087692261,-6.24971723556519,10.3077993392944,-0.792391419410706,-6.30792427062988,10.2528858184814,-0.804031252861023,-6.41905117034912,10.2712478637695,-0.790686011314392,-6.30693435668945,10.3696765899658,-0.791495561599731,-6.30756855010986,10.2998285293579,-0.794627904891968,-6.79711198806763,10.1562852859497,-0.735172867774963,-7.00288915634155,10.0745143890381,-1.77568984031677,-6.19697999954224,9.96043586730957,-1.87670135498047,-6.25723457336426,9.87026119232178,-1.75607895851135,-6.38771200180054,9.93045139312744,-1.66295123100281,-6.27299976348877,10.0105037689209,-1.78446936607361,-6.2655782699585,9.95830249786377,-1.86747694015503,-6.19097185134888,9.61023330688477,-1.84365844726563,-6.24820756912231,9.55311012268066,-1.8529691696167,-6.35663318634033,9.57137203216553,-1.92254519462585,-6.24292039871216,9.67820262908936,-1.87365460395813,-6.24577569961548,9.60054683685303,-1.74184417724609,-6.74302911758423,9.45523643493652,-1.6647435426712,-6.91881322860718,9.38895511627197,-2.12796545028687,-6.09668684005737,8.7985897064209,-2.2264621257782,-6.14092588424683,8.66649627685547,-2.17408132553101,-6.26942348480225,8.79850387573242,-2.09761071205139,-6.16920757293701,8.89591503143311,-2.16360282897949,-6.15418243408203,8.80656147003174,-2.27285051345825,-6.08002710342407,8.23256969451904,-2.29595112800598,-6.13304281234741,8.18484020233154,-2.33320116996765,-6.22732734680176,8.23284339904785,-2.33203935623169,-6.11539363861084,8.327317237854,-2.30848693847656,-6.12516021728516,8.23551368713379,-2.37295913696289,-6.59814119338989,8.21779918670654,-2.33499217033386,-6.80238914489746,8.19013214111328,-2.85068869590759,-5.93505239486694,6.97355270385742,-2.89770078659058,-5.97794580459595,6.80556583404541, --2.92098045349121,-6.08800554275513,6.96647644042969,-2.88363766670227,-6.00606393814087,7.11898040771484,-2.90011596679688,-5.99083709716797,6.97310638427734,-2.92125272750854,-6.38897037506104,6.93486785888672,-2.81012034416199,-6.75591897964478,6.9029016494751,-1.41034638881683,-6.22356939315796,10.0363845825195,-1.43300235271454,-6.28284311294556,9.98677921295166,-1.42511868476868,-6.3962197303772,9.99347686767578,-1.42682409286499,-6.28132438659668,10.096001625061,-1.42637360095978,-6.28178596496582,10.025728225708,-1.36476790904999,-6.79201698303223,9.8630256652832,-1.29876971244812,-6.99465990066528,9.76819896697998,-1.0588800907135,-6.82746028900146,10.0935859680176,-1.02019691467285,-7.10282611846924,9.92685508728027,-1.16534626483917,-8.75000095367432,9.34685039520264,-0.833668947219849,-7.36384868621826,9.93813800811768,-0.900024890899658,-8.77219390869141,9.47470378875732,-0.839224338531494,-7.13623142242432,9.98122596740723,-0.0538146793842316,-7.3923225402832,10.1851196289063,-0.0539935976266861,-8.8172492980957,9.72446441650391,-0.0534562095999718,-7.10139322280884,10.2082958221436,-0.05498206615448,-7.18779563903809,10.1972789764404,-0.514886498451233,-7.2682089805603,10.0676374435425,-1.97197878360748,-6.15641307830811,9.00220108032227,-1.97134876251221,-6.20601606369019,8.93790817260742,-1.98361921310425,-6.30004119873047,8.98216438293457,-2.015944480896,-6.19061613082886,9.08933067321777,-1.98621344566345,-6.20020055770874,8.99924850463867,-1.94654202461243,-6.6602897644043,8.91274452209473,-1.90132164955139,-6.82075071334839,8.8785400390625,-1.88305866718292,-6.70524978637695,9.31597423553467,-1.74560725688934,-7.02706575393677,9.20081329345703,-1.82995474338531,-8.6225643157959,8.52642726898193,-1.63698387145996,-7.29865312576294,9.22984504699707,-1.6868622303009,-8.65179920196533,8.76764583587646,-1.6347473859787,-7.07309293746948,9.27701854705811,-1.33065068721771,-7.34073925018311,9.64202785491943,-1.40380954742432,-8.72535419464111,9.19621467590332,-1.3125604391098,-7.13318395614624,9.67524909973145, --1.53741228580475,-7.15198707580566,9.44097518920898,-2.67705488204956,-6.00015258789063,7.3830451965332,-2.71054887771606,-6.05074548721313,7.30326461791992,-2.72388815879822,-6.14056062698364,7.36800098419189,-2.71851968765259,-6.04045009613037,7.47814559936523,-2.71135234832764,-6.04671764373779,7.3791971206665,-2.71224761009216,-6.47027826309204,7.3326301574707,-2.62055349349976,-6.70030784606934,7.30791568756104,-2.5487425327301,-6.5484414100647,7.92632293701172,-2.44898509979248,-6.91118955612183,7.8948860168457,-2.55831909179688,-8.3841724395752,7.20983028411865,-2.33248353004456,-7.19299554824829,8.11302185058594,-2.38845467567444,-8.45629024505615,7.62872171401978,-2.3217396736145,-6.96563816070557,8.09448623657227,-1.96078372001648,-7.24788665771484,8.73259830474854,-2.01379418373108,-8.56610488891602,8.26726818084717,-1.94206893444061,-6.99697685241699,8.76454830169678,-2.18849587440491,-7.0636043548584,8.41227722167969,-2.85802841186523,-6.38207817077637,6.31861782073975,-2.86232876777649,-6.04091119766235,6.36204719543457,-2.80188512802124,-6.62750816345215,6.29775428771973,-2.75379824638367,-6.84279251098633,6.53128623962402,-2.83564424514771,-6.72181224822998,6.54069042205811,-2.81549572944641,-8.13744449615479,5.76124620437622,-2.76786017417908,-7.02025842666626,6.25638294219971,-2.80170559883118,-8.18183135986328,6.01941156387329,-2.75343942642212,-7.05625915527344,6.51275157928467,-2.75442910194397,-6.9060845375061,6.52672100067139,-2.72818779945374,-6.87599611282349,6.88472366333008,-2.73006701469421,-6.93930721282959,6.88015842437744,-8.63876193761826e-05,-6.3157205581665,10.4808874130249,-0.0421741679310799,-6.2551007270813,10.5144662857056,-0.0899029597640038,-6.32126712799072,10.5332565307617,-0.0422667786478996,-6.43383598327637,10.460901260376,-0.0420878604054451,-6.31786441802979,10.5004978179932,-0.318696916103363,-8.80612564086914,9.67136001586914,-0.315378695726395,-7.39850378036499,10.1210069656372,-0.320840179920197,-7.22334480285645,10.1464366912842,-0.317170381546021,-7.27456283569336,10.1391649246216, --0.0417293906211853,-6.80607175827026,10.3194389343262,-0.0441454350948334,-7.02831554412842,10.2411766052246,-0.726572155952454,-8.78393077850342,9.54150295257568,-0.677768588066101,-7.37190437316895,10.0002107620239,-0.697385430335999,-6.83069086074829,10.2631168365479,-0.738928914070129,-6.42980813980103,10.4011058807373,-0.70338499546051,-7.0675368309021,10.0494422912598,-0.692096590995789,-7.15485191345215,10.0319995880127,-0.528232455253601,-7.21735572814941,10.0722017288208,-0.602466583251953,-7.12556076049805,10.1139135360718,-0.858383297920227,-6.79173851013184,10.1186580657959,-0.854892373085022,-6.41582059860229,10.2334547042847,-1.03622341156006,-8.76108932495117,9.41141128540039,-0.974525690078735,-7.37307691574097,9.86631774902344,-0.844592571258545,-7.04462862014771,10.004222869873,-0.851129412651062,-6.98381662368774,10.0359334945679,-1.00166153907776,-7.18868970870972,9.87386226654053,-0.998880743980408,-7.2446756362915,9.86875247955322,-1.28945887088776,-8.73922824859619,9.28083515167236,-1.22346079349518,-7.34772729873657,9.72188568115234,-1.28569662570953,-6.82952737808228,9.98427104949951,-1.34990298748016,-6.40990877151489,10.140079498291,-1.16973292827606,-7.17240476608276,9.76880359649658,-1.20743405818939,-7.09225177764893,9.81888103485107,-1.26689541339874,-7.057692527771,9.73504447937012,-1.24737167358398,-7.14025926589966,9.72501754760742,-1.43372011184692,-6.78547096252441,9.85082912445068,-1.51502156257629,-6.39344120025635,9.97495937347412,-1.50409805774689,-8.70806503295898,9.09242820739746,-1.43685185909271,-7.34073925018311,9.54657077789307,-1.41294074058533,-7.1206488609314,9.58980274200439,-1.41840291023254,-7.18349838256836,9.57522773742676,-1.31354880332947,-7.05070400238037,9.6987771987915,-1.34587407112122,-6.98864221572876,9.74258232116699,-1.63618052005768,-8.67119121551514,8.87924289703369,-1.58889663219452,-7.30742979049683,9.33622741699219,-1.74363601207733,-6.77570390701294,9.59839630126953,-1.89299929141998,-6.36962032318115,9.73775100708008,-1.63259720802307,-6.97253084182739,9.36647701263428, --1.60940313339233,-7.06771898269653,9.35028171539307,-1.55021345615387,-7.08168649673462,9.4460973739624,-1.60591220855713,-7.01166534423828,9.48360157012939,-1.78052747249603,-6.71580505371094,9.42808151245117,-1.88144588470459,-6.34849071502686,9.53016090393066,-1.74685454368591,-8.64328670501709,8.64722919464111,-1.70181405544281,-7.3241753578186,9.10725975036621,-1.64522612094879,-6.98274946212769,9.3056001663208,-1.68372988700867,-6.91826486587524,9.34249782562256,-1.69089043140411,-7.12260961532593,9.15648937225342,-1.69106936454773,-7.18663215637207,9.13929462432861,-1.9220073223114,-8.58963203430176,8.40518188476563,-1.87409937381744,-7.25602912902832,8.85829830169678,-1.94914305210114,-6.68150568008423,9.08236694335938,-2.00618195533752,-6.30854892730713,9.16985321044922,-1.79610931873322,-7.08652257919312,8.97463893890381,-1.84284889698029,-6.99366044998169,8.99951457977295,-1.87875831127167,-6.87072849273682,8.86843776702881,-1.8754471540451,-6.98013496398926,8.8635139465332,-1.99239206314087,-6.65409898757935,8.84910011291504,-2.02086877822876,-6.29153347015381,8.91257095336914,-2.10522317886353,-8.53983020782471,8.11333847045898,-2.05363869667053,-7.25030851364136,8.59684658050537,-2.03071737289429,-7.02822875976563,8.63515472412109,-2.03689575195313,-7.09260749816895,8.62422943115234,-1.9340056180954,-6.8972225189209,8.77951717376709,-1.95129334926605,-6.839111328125,8.80163669586182,-2.29881834983826,-8.48680591583252,7.80477952957153,-2.25172019004822,-7.20804977416992,8.28254318237305,-2.33159470558167,-6.60816717147827,8.43969821929932,-2.31663656234741,-6.23951721191406,8.47961711883545,-2.30463814735413,-6.8673152923584,8.18501091003418,-2.28959321975708,-6.96555137634277,8.21627044677734,-2.20371913909912,-6.99304437637329,8.39393424987793,-2.25637197494507,-6.9000096321106,8.4060173034668,-2.41746878623962,-6.58229875564575,8.14293193817139,-2.38899207115173,-6.21935844421387,8.15207290649414,-2.46725487709045,-8.42545986175537,7.45204925537109,-2.41039443016052,-7.19254398345947,7.93043613433838, --2.31663656234741,-6.87493896484375,8.08615875244141,-2.35316967964172,-6.80499410629272,8.10630702972412,-2.38379645347595,-7.02142238616943,7.87742614746094,-2.39015364646912,-7.07425546646118,7.89336585998535,-2.68807196617126,-8.33230495452881,6.9024224281311,-2.61572265625,-7.11849451065063,7.35958671569824,-2.67401599884033,-6.51514196395874,7.57207584381104,-2.67535662651062,-6.15954637527466,7.61434268951416,-2.49465560913086,-6.9896411895752,7.53805065155029,-2.56682658195496,-6.8791298866272,7.54387092590332,-2.56879711151123,-6.77240562438965,7.30245494842529,-2.58796286582947,-6.86247968673706,7.30720043182373,-0.143902152776718,-6.81851148605347,10.3729877471924,-0.146583437919617,-6.4390172958374,10.5175132751465,-2.81773233413696,-5.86870336532593,6.40350341796875,-2.75943875312805,-5.92889022827148,6.3170919418335,-2.9354875087738,-5.94177198410034,6.4890193939209,-2.85059571266174,-5.93075561523438,6.3858642578125,-0.84002697467804,-6.24604511260986,10.2650699615479,-0.849165081977844,-6.30388689041138,10.2595138549805,-1.33360362052917,-6.219810962677,10.1849422454834,-1.35187363624573,-6.2865252494812,10.1757917404175,-0.711978793144226,-6.2451605796814,10.4405736923218,-0.73454225063324,-6.31033706665039,10.4315528869629,-1.52057564258575,-6.22008943557739,10.0047597885132,-1.52881169319153,-6.27935361862183,10.0008354187012,-1.91421663761139,-6.18112802505493,9.78225517272949,-1.92317521572113,-6.24820756912231,9.77249336242676,-1.88834130764008,-6.18927001953125,9.5483455657959,-1.89952993392944,-6.2410364151001,9.54916572570801,-1.9880051612854,-6.13366842269897,9.19286060333252,-2.01092720031738,-6.19411516189575,9.19158935546875,-2.00492811203003,-6.14692497253418,8.91769409179688,-2.02104806900024,-6.19106817245483,8.92162799835205,-2.2466094493866,-6.06749200820923,8.48686504364014,-2.29362201690674,-6.12435293197632,8.48885250091553,-2.33401083946228,-6.07053899765015,8.13317108154297,-2.36741137504578,-6.11853694915771,8.14642333984375,-2.60793161392212,-5.99710512161255,7.63243293762207, --2.65395426750183,-6.05289888381958,7.62759494781494,-2.88265585899353,-5.90442514419556,6.64653301239014,-2.93029093742371,-5.95949840545654,6.63650512695313,-0.273921579122543,-6.81851100921631,10.201042175293,-0.272308766841888,-7.10873794555664,10.0691394805908,-1.29151630401611,-6.78072166442871,9.64202785491943,-1.22229897975922,-7.03172826766968,9.55281829833984,-1.73315715789795,-6.62894201278687,8.65415859222412,-1.76091694831848,-6.92508029937744,8.60597801208496,-0.821942806243896,-6.3010311126709,10.1540479660034,-0.919005632400513,-6.4223575592041,10.0910787582397,-1.04956245422363,-6.29842615127563,10.1060371398926,-0.941482782363892,-6.23539352416992,10.1719589233398,-0.926710605621338,-6.30273294448853,10.1353340148926,-0.923127055168152,-7.31324577331543,9.73746109008789,-1.02547883987427,-7.23964834213257,9.69376659393311,-0.89205539226532,-7.27036190032959,9.76710510253906,-0.958764314651489,-7.25827836990356,9.72752666473389,-7.82310962677002e-08,-7.48671293258667,9.91745185852051,-0.0689516887068748,-7.5123987197876,9.8660717010498,-0.117217883467674,-7.47640800476074,9.91567707061768,-0.0393139719963074,-7.45401906967163,9.96994304656982,-0.0503238514065742,-7.48590564727783,9.91717910766602,-1.58871757984161,-6.21372556686401,9.3853702545166,-1.55684340000153,-6.30952930450439,9.24531841278076,-1.61674964427948,-6.18157958984375,9.15453720092773,-1.64048099517822,-6.13769626617432,9.30228805541992,-1.58845245838165,-6.19465351104736,9.27442455291748,-1.56194639205933,-7.24027299880981,8.96335697174072,-1.61513674259186,-7.13318395614624,8.88131427764893,-1.53794968128204,-7.18108558654785,9.01431274414063,-1.57350075244904,-7.16317653656006,8.94400215148926,-1.13740706443787,-7.43064975738525,9.35169792175293,-0.748425602912903,-7.53658533096313,9.46945190429688,-0.455789923667908,-7.66114187240601,9.41339588165283,-0.871456384658813,-7.56721258163452,9.29063129425049,-0.811012864112854,-7.55188941955566,9.38563632965088,-2.02445244789124,-6.08486223220825,7.95300674438477,-2.02883863449097,-6.18130016326904,7.84814739227295, --2.11148762702942,-6.06570339202881,7.73603916168213,-2.10611176490784,-6.01868629455566,7.86319065093994,-2.0558819770813,-6.07411479949951,7.85513401031494,-2.15303802490234,-7.12422370910645,7.54718208312988,-2.22619700431824,-7.03691864013672,7.36684036254883,-2.11820363998413,-7.08876180648804,7.65562629699707,-2.17085647583008,-7.0695161819458,7.51064968109131,-1.6792505979538,-7.43360042572021,8.26219749450684,-1.19023954868317,-7.63140773773193,8.48087406158447,-0.753529191017151,-7.8008279800415,8.27294254302979,-1.30297744274139,-7.6228232383728,8.05714511871338,-1.25086200237274,-7.62909126281738,8.27260208129883,-2.35227370262146,-6.05692672729492,6.62737369537354,-2.3451132774353,-6.356276512146,6.5841178894043,-2.46161389350891,-6.7054123878479,6.266770362854,-2.42749619483948,-6.76148509979248,6.242506980896,-0.169060572981834,-6.31965208053589,10.3708190917969,-0.283504486083984,-6.44134378433228,10.3226642608643,-0.439040124416351,-6.32349729537964,10.3444242477417,-0.306426405906677,-6.2601957321167,10.4060297012329,-0.293260037899017,-6.32546806335449,10.3642129898071,-0.66675865650177,-6.28615999221802,10.242772102356,-0.734004855155945,-6.4040060043335,10.1835794448853,-0.758181095123291,-6.30308866500854,10.2036542892456,-0.721203207969666,-6.23593187332153,10.2428588867188,-0.725676298141479,-6.29162979125977,10.2187004089355,-0.728098511695862,-6.78788328170776,10.0743341445923,-0.677323818206787,-6.9933910369873,10.0103988647461,-1.35393106937408,-6.24596786499023,9.86553382873535,-1.36977827548981,-6.36621761322021,9.76201438903809,-1.49738204479218,-6.2469482421875,9.72629070281982,-1.48592042922974,-6.17969560623169,9.83703899383545,-1.42144882678986,-6.24453544616699,9.80264949798584,-1.60143303871155,-6.23977708816528,9.56974029541016,-1.61468553543091,-6.3538646697998,9.50242710113525,-1.67575967311859,-6.24568891525269,9.51540565490723,-1.69465351104736,-6.19043302536011,9.56564426422119,-1.65319621562958,-6.2442569732666,9.53920650482178,-1.53785717487335,-6.73854923248291,9.40419483184814, --1.49666512012482,-6.91405439376831,9.35628223419189,-1.77166140079498,-6.16151714324951,8.81388854980469,-1.73092067241669,-6.26074314117432,8.70553874969482,-1.74918437004089,-6.13232183456421,8.57517910003662,-1.78285896778107,-6.08864116668701,8.71269702911377,-1.74471127986908,-6.14512729644775,8.71028232574463,-1.87311732769012,-6.11011600494385,8.27098941802979,-1.93732380867004,-6.22141551971436,8.16998386383057,-2.03322553634644,-6.12543916702271,8.10389137268066,-2.01056885719299,-6.07519197463989,8.18089008331299,-1.96570777893066,-6.11943101882935,8.1750020980835,-1.92774140834808,-6.59196949005127,8.15081024169922,-1.97027337551117,-6.79729413986206,8.13200950622559,-2.33176732063293,-6.00373792648315,7.09336376190186,-2.31090927124023,-6.08665943145752,6.95206356048584,-2.3721559047699,-5.97686910629272,6.7942008972168,-2.40886855125427,-5.93326425552368,6.95447826385498,-2.3451132774353,-5.98915481567383,6.95475006103516,-2.30051755905151,-6.38592338562012,6.91848278045654,-2.33580231666565,-6.74267244338989,6.8530216217041,-1.2226574420929,-6.26091623306274,9.99143123626709,-1.26582050323486,-6.3819727897644,9.92327213287354,-1.30432438850403,-6.2738938331604,9.94164657592773,-1.28220570087433,-6.21058225631714,9.98702716827393,-1.27280163764954,-6.26664543151855,9.96213436126709,-1.21576273441315,-6.78600883483887,9.79891109466553,-1.16633546352386,-6.99921655654907,9.72420787811279,-0.893396139144897,-6.8152904510498,9.96681022644043,-0.8448646068573,-7.07470798492432,9.85405540466309,-0.785940766334534,-7.41685485839844,9.68106937408447,-0.46420481801033,-7.48428058624268,9.74919319152832,-0.299437791109085,-7.56721258163452,9.68357276916504,-0.620012640953064,-7.50901556015015,9.61541175842285,-0.545333743095398,-7.49610471725464,9.68438243865967,-0.545062184333801,-7.41980648040771,9.81189155578613,-0.293890029191971,-7.46405506134033,9.86087512969971,-0.206310585141182,-7.52072381973267,9.80947494506836,-0.378330826759338,-7.47443723678589,9.80732536315918,-0.702754259109497,-7.3171968460083,9.86094284057617, --0.783439159393311,-7.25200080871582,9.84932136535645,-0.682068943977356,-7.20455121994019,9.92759132385254,-0.736427187919617,-7.22066259384155,9.89255905151367,-0.088827557861805,-7.40655946731567,10.0250873565674,-0.0482662692666054,-7.34700632095337,10.0868892669678,-8.63876193761826e-05,-7.41005849838257,10.0342359542847,-0.0416367799043655,-7.40996265411377,10.0314626693726,-8.63876193761826e-05,-7.25192403793335,10.1287956237793,-0.0998437404632568,-7.27161169052124,10.1072845458984,-0.050144299864769,-7.25863409042358,10.1217918395996,-0.412627369165421,-7.33957576751709,9.97950839996338,-0.527422785758972,-7.27519702911377,9.95685195922852,-0.364274889230728,-7.30510330200195,10.006031036377,-0.446027427911758,-7.29749011993408,9.97799968719482,-1.70978403091431,-6.18685722351074,8.97043323516846,-1.77542388439178,-6.3042516708374,8.91178035736084,-1.83971667289734,-6.20531415939331,8.9141092300415,-1.80864810943604,-6.1517505645752,8.95375633239746,-1.78742027282715,-6.20029640197754,8.9353141784668,-1.75778448581696,-6.6568865776062,8.85814476013184,-1.7374575138092,-6.81734752655029,8.85042190551758,-1.52952861785889,-6.68276500701904,9.17943000793457,-1.49558985233307,-6.95954370498657,9.13257884979248,-1.40945053100586,-7.43772459030151,8.89700794219971,-0.97990083694458,-7.59361934661865,9.06257724761963,-0.597270250320435,-7.75229215621948,8.97070407867432,-1.0794723033905,-7.61385488510132,8.80199527740479,-1.02950763702393,-7.60401105880737,8.9371919631958,-1.2770094871521,-7.43638896942139,9.1526575088501,-0.527781248092651,-7.71262884140015,9.21874237060547,-0.927513718605042,-7.5812668800354,9.18165493011475,-1.44625568389893,-7.26230621337891,9.18489074707031,-1.47437381744385,-7.17607736587524,9.15595245361328,-1.44983279705048,-7.15000677108765,9.26647281646729,-1.46264088153839,-7.15977382659912,9.21659278869629,-0.963508725166321,-7.42393016815186,9.54164791107178,-0.380567312240601,-7.6125283241272,9.55362796783447,-0.686190366744995,-7.52243518829346,9.54493999481201,-1.13481271266937,-7.29892253875732,9.57959651947021, --1.18433320522308,-7.22461366653442,9.55991077423096,-1.12765216827393,-7.21134757995605,9.64621829986572,-1.15639400482178,-7.21494245529175,9.60835647583008,-1.30190205574036,-7.28183031082153,9.4043493270874,-1.37506067752838,-7.1847677230835,9.34034824371338,-1.27593410015106,-7.23095846176147,9.44547367095947,-1.32662260532379,-7.21153020858765,9.38923740386963,-2.24410843849182,-6.0380277633667,7.45163822174072,-2.30589246749878,-6.14234828948975,7.33021354675293,-2.37779760360718,-6.04617929458618,7.25463962554932,-2.36651492118835,-5.99702835083008,7.35000324249268,-2.32550263404846,-6.04321908950806,7.34167575836182,-2.29944205284119,-6.50403833389282,7.29117202758789,-2.30087518692017,-6.74302816390991,7.26448822021484,-2.01066184043884,-6.53457021713257,7.81412220001221,-2.028480052948,-6.87931299209595,7.78125858306885,-0.869040966033936,-7.52395296096802,6.85365152359009,-1.65543270111084,-7.38694763183594,7.05432176589966,-1.28050661087036,-7.60651016235352,7.61326742172241,-0.556974291801453,-7.75094604492188,7.51145315170288,-1.07660520076752,-7.58206367492676,7.2318902015686,-1.78285896778107,-7.42483329772949,7.86990690231323,-0.807343125343323,-7.77897787094116,7.8468918800354,-1.33441376686096,-7.61769962310791,7.86283159255981,-2.02059626579285,-7.16254186630249,7.95568752288818,-2.04988241195679,-7.08428192138672,7.88136672973633,-2.00223994255066,-7.03432321548462,8.05929470062256,-2.02749156951904,-7.05365467071533,7.96813869476318,-1.52281200885773,-7.44166612625122,8.64744186401367,-0.673740267753601,-7.78847599029541,8.66830635070801,-1.13311362266541,-7.62468910217285,8.65370750427246,-1.70870935916901,-7.21833610534668,8.69676399230957,-1.75643754005432,-7.13246297836304,8.64574241638184,-1.71748912334442,-7.07290983200073,8.78120517730713,-1.74103462696075,-7.0971827507019,8.71628189086914,-1.83918178081512,-7.19756174087524,8.44632148742676,-1.91717636585236,-7.09637546539307,8.29856967926025,-1.81536138057709,-7.13935518264771,8.50353050231934,-1.86425137519836,-7.12350273132324,8.40896987915039, --2.43054246902466,-6.04098796844482,6.36338710784912,-2.42462921142578,-6.3814435005188,6.31745052337646,-2.44254159927368,-6.62204837799072,6.27473831176758,-2.42489528656006,-6.83776473999023,6.49770736694336,-2.37833499908447,-6.7114109992981,6.51633548736572,-2.29720544815063,-7.01542329788208,6.49027442932129,-2.3553192615509,-6.92865610122681,6.33231544494629,-2.34009575843811,-6.97648096084595,6.63175964355469,-2.35021615028381,-6.95140027999878,6.47827529907227,-2.32335233688354,-6.98212385177612,6.93442249298096,-2.30669522285461,-6.95820617675781,7.14413833618164,-2.38281440734863,-6.86999702453613,6.82795143127441,-8.63876193761826e-05,-6.31114482879639,10.4159517288208,-0.0337592586874962,-6.42791414260864,10.3690452575684,-0.0711018741130829,-6.31446123123169,10.3942956924438,-0.0390418097376823,-6.25016927719116,10.4348640441895,-0.0358168333768845,-6.31231737136841,10.4085397720337,-0.281799048185349,-7.21331834793091,10.0582323074341,-0.0502375364303589,-7.09681797027588,10.1648683547974,-0.0459371581673622,-7.02025938034058,10.1650657653809,-0.566377639770508,-6.42280960083008,10.2511005401611,-0.542646169662476,-6.81779956817627,10.1301193237305,-0.660222411155701,-7.06207609176636,9.99965572357178,-0.461072474718094,-7.20794439315796,9.99069690704346,-0.475845336914063,-7.10648822784424,10.0103988647461,-0.779941320419312,-6.41484022140503,10.1473159790039,-0.784779071807861,-6.78547096252441,10.043888092041,-0.780930399894714,-7.0397834777832,9.95856952667236,-0.779497146606445,-6.97655868530273,9.97773456573486,-0.842714548110962,-7.16326332092285,9.82987213134766,-1.13704931735992,-6.40095853805542,10.0002975463867,-1.08036816120148,-6.81573247909546,9.86497783660889,-0.986882448196411,-7.14741086959839,9.73038768768311,-1.00210642814636,-7.064133644104,9.75224018096924,-1.15048086643219,-7.06851673126221,9.70468997955322,-1.29572355747223,-6.37553215026855,9.8782320022583,-1.24289178848267,-6.77705955505371,9.76342964172363,-1.219611287117,-7.11419820785522,9.5341968536377,-1.18952250480652,-7.06153774261475,9.66951465606689, --1.19892609119415,-6.99214124679565,9.69289112091064,-1.50409805774689,-6.36254501342773,9.59430027008057,-1.42610776424408,-6.76460075378418,9.48012828826904,-1.48448729515076,-6.9698486328125,9.3439998626709,-1.35420334339142,-7.0760440826416,9.39737033843994,-1.36056065559387,-6.99876499176025,9.4068775177002,-1.60089564323425,-6.33999300003052,9.43846797943115,-1.53803610801697,-6.70881605148315,9.35655307769775,-1.49809849262238,-6.98023080825806,9.28411102294922,-1.50391912460327,-6.91307401657104,9.30345630645752,-1.49890851974487,-7.05339574813843,9.12282371520996,-1.63331401348114,-6.299156665802,9.01431274414063,-1.62158024311066,-6.66217374801636,8.95888519287109,-1.58307659626007,-7.01794290542603,8.94553852081299,-1.58558535575867,-6.92722463607788,8.93971920013428,-1.73020422458649,-6.86910438537598,8.85355377197266,-1.81473326683044,-6.28750562667847,8.87030506134033,-1.79637694358826,-6.65034961700439,8.81095504760742,-1.78948044776917,-7.02358531951904,8.59120464324951,-1.80327236652374,-6.89400196075439,8.74932479858398,-1.79754483699799,-6.8348913192749,8.76606750488281,-1.77568984031677,-6.23288440704346,8.40968608856201,-1.79772210121155,-6.60208225250244,8.37782001495361,-1.99803304672241,-6.86240339279175,8.13290500640869,-1.89210367202759,-6.99062204360962,8.37190818786621,-1.85288286209106,-6.89444351196289,8.36517333984375,-2.00582432746887,-6.20816898345947,8.03296852111816,-1.96696221828461,-6.57108974456787,8.01398849487305,-2.01997256278992,-6.87769746780396,7.96760082244873,-1.99409103393555,-6.80095672607422,7.97969150543213,-2.06080603599548,-7.00037908554077,7.77534580230713,-2.14587068557739,-6.15605688095093,7.57673358917236,-2.13790678977966,-6.50797080993652,7.53366374969482,-2.17220330238342,-6.97485637664795,7.50644207000732,-2.1446225643158,-6.85262680053711,7.50447082519531,-2.31565427780151,-6.82450819015503,7.26233863830566,-0.0979657098650932,-6.43105792999268,10.3383321762085,-0.105756923556328,-6.80410099029541,10.2104644775391,-2.40466070175171,-5.94266605377197,6.49949836730957, --2.51005864143372,-5.92565107345581,6.29676532745361,-2.50719213485718,-5.86833810806274,6.3996639251709,-2.45811605453491,-5.93057250976563,6.38425254821777,-0.781288862228394,-6.24568891525269,10.2016839981079,-0.778063297271729,-6.30363655090332,10.1794786453247,-1.16490161418915,-6.2124662399292,10.0869808197021,-1.14833760261536,-6.2780179977417,10.0487241744995,-0.572735548019409,-6.23879718780518,10.3335876464844,-0.567359805107117,-6.30363702774048,10.2942733764648,-1.35598814487457,-6.20547771453857,9.93204593658447,-1.32312476634979,-6.2613582611084,9.9106616973877,-1.61692845821381,-6.17772483825684,9.67952442169189,-1.55343890190125,-6.24299716949463,9.64039707183838,-1.67701399326324,-6.18300247192383,9.48350811004639,-1.63600158691406,-6.23305749893188,9.46499156951904,-1.69688987731934,-6.11638402938843,9.08173656463623,-1.65507435798645,-6.17969560623169,9.04833507537842,-1.83210480213165,-6.14324331283569,8.8785400390625,-1.81894481182098,-6.18694400787354,8.8777551651001,-1.84840357303619,-6.06140661239624,8.42231464385986,-1.79647028446198,-6.11755657196045,8.41649436950684,-2.07549214363098,-6.06149339675903,8.03717517852783,-2.0348379611969,-6.1079626083374,8.03288269042969,-2.22735810279846,-5.99443292617798,7.60360717773438,-2.17354464530945,-6.04966926574707,7.59231567382813,-2.44558048248291,-5.90433883666992,6.64591026306152,-2.38397550582886,-5.95976734161377,6.63937187194824,-8.63876193761826e-05,-6.22831916809082,10.4585037231445,-0.0840823948383331,-6.22965478897095,10.4674558639526,-0.0439658910036087,-6.22921276092529,10.4868879318237,-0.0420878604054451,-6.22895336151123,10.4618139266968,-0.467516750097275,-6.22895336151123,10.4358282089233,-0.3476183116436,-6.22670364379883,10.51149559021,-0.1958387196064,-6.2298378944397,10.4696063995361,-0.32254558801651,-6.23216438293457,10.4620876312256,-0.68403959274292,-6.20208501815796,10.313515663147,-0.625115633010864,-6.20996761322021,10.416953086853,-0.592345595359802,-6.21256303787231,10.3785429000854,-0.757377862930298,-6.23126935958862,10.2328481674194, --0.744928479194641,-6.21792697906494,10.282904624939,-0.7298903465271,-6.21658134460449,10.2640800476074,-0.859192728996277,-6.20547771453857,10.2188787460327,-0.810747742652893,-6.21784973144531,10.2412633895874,-0.793910980224609,-6.22141599655151,10.2225303649902,-1.09935510158539,-6.19823932647705,10.1786594390869,-1.01105809211731,-6.19285583496094,10.2404594421387,-0.972646951675415,-6.20191144943237,10.2077751159668,-1.27808427810669,-6.17262029647827,10.0564403533936,-1.25328421592712,-6.17656183242798,10.1503591537476,-1.20438814163208,-6.1820216178894,10.1210737228394,-1.33915829658508,-6.20271873474121,9.97173500061035,-1.34811115264893,-6.18927001953125,10.0207853317261,-1.31094741821289,-6.18935632705688,10.0061178207397,-1.47822248935699,-6.15622997283936,9.93132781982422,-1.44535994529724,-6.18220472335815,9.97682189941406,-1.39879286289215,-6.18300247192383,9.95498466491699,-1.64495384693146,-6.14781856536865,9.80043125152588,-1.64898228645325,-6.14324331283569,9.91352844238281,-1.56561684608459,-6.14827060699463,9.87600517272949,-1.73279857635498,-6.14602088928223,9.63880348205566,-1.78778123855591,-6.13457202911377,9.7476749420166,-1.70020818710327,-6.14352178573608,9.7160587310791,-1.7403244972229,-6.18193578720093,9.54200649261475,-1.79422497749329,-6.16115188598633,9.59803867340088,-1.74399435520172,-6.16599702835083,9.58452033996582,-1.71748912334442,-6.15121221542358,9.43668270111084,-1.78563046455383,-6.17782068252563,9.51601314544678,-1.7283194065094,-6.17243766784668,9.49973964691162,-1.73145866394043,-6.11700916290283,9.21336841583252,-1.80819189548492,-6.14450216293335,9.36407279968262,-1.71739637851715,-6.13196659088135,9.33166027069092,-1.80434262752533,-6.11468267440796,9.0272741317749,-1.84330058097839,-6.12175798416138,9.13893699645996,-1.7634254693985,-6.10887670516968,9.11063957214355,-1.87204241752625,-6.15909481048584,8.92288208007813,-1.89067029953003,-6.14746284484863,8.97963809967041,-1.84553897380829,-6.14182996749878,8.96747875213623,-1.85717701911926,-6.10187768936157,8.82884120941162, --1.91735529899597,-6.14074373245239,8.89591503143311,-1.86873137950897,-6.13528299331665,8.88534927368164,-1.88323760032654,-6.08369922637939,8.59228038787842,-1.95478415489197,-6.10743474960327,8.75022220611572,-1.85906374454498,-6.09068870544434,8.72738361358643,-2.00761580467224,-6.05047702789307,8.28932666778564,-2.04809069633484,-6.07940196990967,8.45150852203369,-1.93857824802399,-6.06310796737671,8.43449211120605,-2.12008166313171,-6.07805633544922,8.12143707275391,-2.1433687210083,-6.07304811477661,8.20623397827148,-2.07271194458008,-6.06723213195801,8.19200134277344,-2.14954733848572,-6.01322650909424,7.98183536529541,-2.20622777938843,-6.05029392242432,8.08364963531494,-2.13602232933044,-6.04769849777222,8.05660629272461,-2.24822306632996,-6.01224565505981,7.75725555419922,-2.29066872596741,-6.02075338363647,7.9050989151001,-2.19002175331116,-6.01125574111938,7.88128185272217,-2.38092923164368,-5.96514177322388,7.47053241729736,-2.41907525062561,-5.9938850402832,7.6190881729126,-2.31484484672546,-5.98600196838379,7.6117467880249,-2.47612118721008,-5.99630689620972,7.2690544128418,-2.52295398712158,-5.98314714431763,7.36853885650635,-2.43734455108643,-5.98224306106567,7.35904884338379,-2.49483513832092,-5.93021726608276,7.09802150726318,-2.53047251701355,-5.92216110229492,6.79795360565186,-2.63219404220581,-5.93228387832642,6.96245002746582,-2.51094818115234,-5.92457437515259,6.95734596252441,-2.56172299385071,-5.86414670944214,6.51418495178223,-2.66640448570251,-5.90263748168945,6.64742851257324,-2.54623365402222,-5.89547538757324,6.64760875701904,-2.59512329101563,-5.84675693511963,6.32318496704102,-2.66514992713928,-5.84783363342285,6.40708827972412,-2.58017182350159,-5.8476505279541,6.40574741363525,-0.233353346586227,-6.23064517974854,10.5518960952759,-0.149450555443764,-6.25876331329346,10.5631847381592,-0.0901744961738586,-6.23288536071777,10.5337944030762,-0.135036170482635,-6.22751140594482,10.5185022354126,-0.143902152776718,-6.23216438293457,10.5503597259521,-0.551419496536255,-6.22544431686401,10.4952144622803, --0.387462675571442,-6.22929906845093,10.5335216522217,-0.740720629692078,-6.21238040924072,10.3680448532104,-0.670249462127686,-6.21622562408447,10.43665599823,-0.772601842880249,-6.23377895355225,10.2550535202026,-0.759435415267944,-6.22446393966675,10.2997426986694,-0.919005632400513,-6.2045841217041,10.2725887298584,-0.826687932014465,-6.22169542312622,10.2572040557861,-1.18325781822205,-6.19563436508179,10.2364139556885,-1.04732596874237,-6.19886445999146,10.2674856185913,-1.37210786342621,-6.18248319625854,10.0996780395508,-1.29859066009521,-6.1861457824707,10.1740169525146,-1.39897179603577,-6.20691967010498,9.99188232421875,-1.38267302513123,-6.19671058654785,10.0327844619751,-1.61200439929962,-6.16840982437134,9.99490451812744,-1.48932504653931,-6.19106817245483,9.99510860443115,-1.8134833574295,-6.15238475799561,9.86229133605957,-1.7247428894043,-6.15784502029419,9.94361686706543,-1.87338316440582,-6.14629030227661,9.68339347839355,-1.86416494846344,-6.14512729644775,9.77184963226318,-1.8110636472702,-6.18309879302979,9.55525875091553,-1.83819711208344,-6.16609287261963,9.60799789428711,-1.89093613624573,-6.15775871276855,9.49910831451416,-1.84463882446289,-6.17584085464478,9.53473377227783,-1.90454745292664,-6.12937116622925,9.27835845947266,-1.90195250511169,-6.14217567443848,9.4006986618042,-1.94278585910797,-6.12221908569336,9.07645416259766,-1.92514657974243,-6.11978721618652,9.17083549499512,-1.93481516838074,-6.16044044494629,8.93354034423828,-1.93642771244049,-6.14557886123657,8.99342727661133,-2.01191639900208,-6.1058292388916,8.87092876434326,-1.96651029586792,-6.1373405456543,8.90792942047119,-2.09617733955383,-6.08817911148071,8.63929176330566,-2.05140280723572,-6.09535074234009,8.77692317962646,-2.20667266845703,-6.0531587600708,8.31780338287354,-2.15769624710083,-6.06668424606323,8.47165584564209,-2.22270607948303,-6.08164215087891,8.15976810455322,-2.21401906013489,-6.0700101852417,8.22128772735596,-2.34296298027039,-6.01905155181885,8.04416370391846,-2.27634048461914,-6.05281257629395,8.11069297790527, --2.44343709945679,-6.01492738723755,7.78591156005859,-2.39096331596375,-6.01591777801514,7.93025779724121,-2.59118175506592,-5.96631479263306,7.48289012908936,-2.52313232421875,-5.98754024505615,7.62777423858643,-2.62324190139771,-5.99871969223022,7.29448509216309,-2.60855579376221,-5.9840407371521,7.37803554534912,-2.7422513961792,-5.93156290054321,7.11235046386719,-2.75541067123413,-5.92295932769775,6.80646228790283,-2.75343942642212,-5.92565107345581,6.96889972686768,-2.80036520957947,-5.86385822296143,6.51078033447266,-2.78657484054565,-5.89556217193604,6.64868259429932,-2.69111824035645,-5.84954452514648,6.33428764343262,-2.75012826919556,-5.84792947769165,6.40842819213867,-0.163871273398399,-7.39680194854736,10.1621980667114,-0.166021451354027,-7.23562049865723,10.1930894851685,-0.149185344576836,-7.16085004806519,10.125391960144,-2.40466070175171,-6.77105045318604,6.10719871520996,-2.29048895835876,-7.03887891769409,6.71924686431885,-2.3306987285614,-6.98649787902832,6.79007720947266,-2.1987087726593,-7.10102701187134,7.20565605163574,-2.27356719970703,-6.99115991592407,7.24792385101318,-2.08982014656067,-7.14284420013428,7.74758625030518,-2.07898283004761,-7.09484672546387,7.77821254730225,-1.93481516838074,-7.17840337753296,8.20722484588623,-1.96427464485168,-7.05759620666504,8.17570304870605,-1.7820451259613,-7.20929002761841,8.55725765228271,-1.78025960922241,-7.14445924758911,8.57865142822266,-1.63259720802307,-7.22478675842285,8.83645343780518,-1.66940248012543,-7.09403944015503,8.83162117004395,-1.51216065883636,-7.25120306015015,9.05836296081543,-1.50212669372559,-7.1843056678772,9.08673572540283,-1.37658715248108,-7.26937198638916,9.30130577087402,-1.41840291023254,-7.16130208969116,9.30354309082031,-1.23555219173431,-7.29149103164673,9.48091411590576,-1.22632777690887,-7.23266935348511,9.50392913818359,-1.02932798862457,-7.30465173721313,9.66450023651123,-1.08287680149078,-7.22182607650757,9.67065906524658,-0.836449861526489,-7.31888818740845,9.7911205291748,-0.834479093551636,-7.26839113235474,9.80768489837646, --0.558407425880432,-7.32435846328735,9.92363166809082,-0.609268665313721,-7.23346710205078,9.94460105895996,-0.293173104524612,-7.3436131477356,10.0228624343872,-0.206403180956841,-7.29454851150513,10.0701446533203,-0.281354278326035,-7.30287313461304,10.0392532348633,-0.162524327635765,-7.16917514801025,10.2060585021973,-0.148647308349609,-7.08249473571777,10.2446489334106,-0.134677693247795,-7.0667290687561,10.1153650283813,-2.13620138168335,-7.12386798858643,6.6185941696167,-2.1397852897644,-7.10147905349731,6.36258411407471,-2.22386693954468,-7.07299566268921,6.55035972595215,-2.06644701957703,-7.2321400642395,7.44062232971191,-2.01728510856628,-7.2568359375,7.7787504196167,-2.08918952941895,-7.19586038589478,7.64684677124023,-1.8150030374527,-7.29024124145508,8.40047740936279,-1.72939491271973,-7.30331468582153,8.57641506195068,-1.78912210464478,-7.26005601882935,8.50236892700195,-1.54134738445282,-7.31915807723999,8.94482231140137,-1.46908450126648,-7.3290114402771,9.07851123809814,-1.52227485179901,-7.2953462600708,9.01080226898193,-1.25775730609894,-7.34387302398682,9.38859462738037,-1.16328871250153,-7.35113048553467,9.49515533447266,-1.24038994312286,-7.3268575668335,9.44224834442139,-0.872982859611511,-7.35910940170288,9.71965885162354,-0.744211435317993,-7.36573314666748,9.79344940185547,-0.84405517578125,-7.34700632095337,9.76065540313721,-0.379585146903992,-7.37575912475586,9.95256900787354,-0.223505184054375,-7.38274812698364,10.0065698623657,-0.32532012462616,-7.36581945419312,9.9915246963501,-1.9777991771698,-7.16299295425415,6.12134742736816,-1.98245072364807,-7.20347356796265,6.77493953704834,-2.01110672950745,-7.22970771789551,7.09336376190186,-1.9363352060318,-7.28504991531372,8.06047248840332,-1.97529053688049,-7.27966690063477,7.91190147399902,-1.87356209754944,-7.29354810714722,8.23821067810059,-1.62543666362762,-7.32257032394409,8.76617813110352,-1.67530858516693,-7.31969594955444,8.66785430908203,-1.57824516296387,-7.32533884048462,8.86082649230957,-1.36333465576172,-7.34514188766479,9.24236392974854, --1.4171484708786,-7.34227705001831,9.15872573852539,-1.30450391769409,-7.34781408309937,9.32044792175293,-1.01912152767181,-7.35945558547974,9.6161470413208,-1.09174287319183,-7.35900402069092,9.555344581604,-0.938795208930969,-7.3613395690918,9.67119693756104,-0.550437331199646,-7.37924861907959,9.87285614013672,-0.646073222160339,-7.37549018859863,9.83195400238037,-0.335347175598145,-7.41641283035278,9.91001987457275,-0.458205997943878,-7.3797869682312,9.91299057006836,-0.162975400686264,-7.43011140823364,9.96349334716797,-0.216968297958374,-7.45088529586792,9.91207599639893,-8.63876193761826e-05,-7.54302597045898,9.80883407592773,-0.110322520136833,-7.5688271522522,9.7474946975708,-0.0893649533390999,-7.54007482528687,9.80938339233398,-7.82310962677002e-08,-7.60427045822144,9.67927837371826,-0.149629473686218,-7.62702465057373,9.61532020568848,-0.130470559000969,-7.59855079650879,9.68097686767578,-7.82310962677002e-08,-7.65943002700806,9.55579662322998,-0.184463441371918,-7.67780113220215,9.49569320678711,-0.16718253493309,-7.65218210220337,9.55615329742432,-8.63876193761826e-05,-7.71531105041504,9.42917537689209,-0.220193892717361,-7.73833417892456,9.34231853485107,-0.202461272478104,-7.70769739151001,9.42640113830566,-7.82310962677002e-08,-7.77333545684814,9.2417573928833,-0.253501385450363,-7.79044628143311,9.11682415008545,-0.236757844686508,-7.7660870552063,9.23716640472412,-8.63876193761826e-05,-7.8174877166748,8.99092102050781,-0.291739821434021,-7.83047485351563,8.84130954742432,-0.271950274705887,-7.81076860427856,8.98708915710449,-8.63876193761826e-05,-7.86019897460938,8.67313766479492,-0.333018064498901,-7.86887836456299,8.48186206817627,-0.312425225973129,-7.85285425186157,8.67323112487793,-0.368841111660004,-7.85590076446533,8.03081893920898,-8.63876193761826e-05,-7.82670640945435,7.73102140426636,-0.378954499959946,-7.82931137084961,7.77847814559937,0.361851751804352,-7.12852144241333,10.186713218689,0.397582203149796,-6.83140230178833,10.3545207977295,1.4683666229248,-7.04693555831909,9.64522838592529, -1.61710715293884,-6.79674673080444,9.79245948791504,2.07557773590088,-6.93377113342285,8.66927051544189,2.15912270545959,-6.63710308074951,8.73634338378906,0.950706481933594,-6.29887866973877,10.2805767059326,1.08564984798431,-6.41787815093994,10.2445812225342,1.22910010814667,-6.29288911819458,10.2432327270508,1.07463991641998,-6.22992420196533,10.2819929122925,1.08645939826965,-6.29610967636108,10.2766351699829,1.15487372875214,-7.23041963577271,9.77238845825195,1.1070522069931,-7.36563682556152,9.79281997680664,0.51954448223114,-8.79601764678955,9.61188793182373,0.501453399658203,-7.39267826080322,10.05894947052,1.97242271900177,-6.22902965545654,9.52927303314209,1.97824275493622,-6.33147573471069,9.41547870635986,1.99534475803375,-6.20485258102417,9.30629825592041,1.97242271900177,-6.15598058700562,9.42835426330566,1.99346649646759,-6.21667671203613,9.43354320526123,1.79136395454407,-7.15663957595825,8.97444248199463,1.78742206096649,-7.31012153625488,8.97963809967041,1.57886862754822,-8.68981170654297,8.98562240600586,1.52657413482666,-7.32830905914307,9.44063758850098,2.46151995658875,-6.09704208374023,8.08329200744629,2.53969621658325,-6.19142293930054,7.95568752288818,2.5694272518158,-6.07151937484741,7.79764461517334,2.47253632545471,-6.0268383026123,7.95022678375244,2.5171320438385,-6.08379554748535,7.95828914642334,2.49957966804504,-7.04246520996094,7.56393241882324,2.50172996520996,-7.16809797286987,7.66941070556641,2.20040726661682,-8.51437759399414,7.96435022354126,2.15554547309875,-7.23481225967407,8.44711208343506,2.94883251190186,-6.05631113052368,6.6206579208374,2.94408082962036,-6.35717058181763,6.57937335968018,2.76579570770264,-6.79854345321655,6.27527713775635,2.76320052146912,-6.70845937728882,6.28629302978516,2.73248744010925,-7.09117364883423,6.8683385848999,2.78630232810974,-8.24450874328613,6.37973833084106,0.252604722976685,-6.32224798202515,10.5541391372681,0.426775097846985,-6.43794059753418,10.49880027771,0.616972208023071,-6.31536483764648,10.4847440719604,0.422295808792114,-6.25517749786377,10.5363903045654, -0.432416170835495,-6.31956577301025,10.5284366607666,0.79059886932373,-6.30693435668945,10.3696765899658,0.803937792778015,-6.41905117034912,10.2712478637695,0.79229736328125,-6.30792427062988,10.2528858184814,0.774479031562805,-6.24971723556519,10.3077993392944,0.791315197944641,-6.30756855010986,10.2998285293579,0.735078811645508,-7.00288915634155,10.0745143890381,0.794540762901306,-6.79711198806763,10.1562852859497,1.66286468505859,-6.27299976348877,10.0105037689209,1.755899310112,-6.38771200180054,9.93045139312744,1.87660717964172,-6.25723457336426,9.87026119232178,1.77560245990753,-6.19697999954224,9.96043586730957,1.78437519073486,-6.2655782699585,9.95830249786377,1.9224579334259,-6.24292039871216,9.67820262908936,1.85279190540314,-6.35663318634033,9.57137203216553,1.84347605705261,-6.24820756912231,9.55311012268066,1.86738276481628,-6.19097185134888,9.61023330688477,1.87356126308441,-6.24577569961548,9.60054683685303,1.66465640068054,-6.91881322860718,9.38895511627197,1.74175071716309,-6.74302911758423,9.45523643493652,2.09751749038696,-6.16920757293701,8.89591503143311,2.17398738861084,-6.26942348480225,8.79850387573242,2.22637510299683,-6.14092588424683,8.66649627685547,2.12787222862244,-6.09668684005737,8.7985897064209,2.16351556777954,-6.15418243408203,8.80656147003174,2.33194541931152,-6.11539363861084,8.327317237854,2.33311343193054,-6.22732734680176,8.23284339904785,2.29586434364319,-6.13304281234741,8.18484020233154,2.27275586128235,-6.08002710342407,8.23256969451904,2.3083074092865,-6.12516021728516,8.23551368713379,2.33490514755249,-6.80238914489746,8.19013214111328,2.37287211418152,-6.59814119338989,8.21779918670654,2.88345813751221,-6.00606393814087,7.11898040771484,2.92089343070984,-6.08800554275513,6.96647644042969,2.89760684967041,-5.97794580459595,6.80556583404541,2.85059475898743,-5.93505239486694,6.97355270385742,2.90002918243408,-5.99083709716797,6.97310638427734,2.81003355979919,-6.75591897964478,6.9029016494751,2.92115879058838,-6.38897037506104,6.93486785888672,1.42664432525635,-6.28132438659668,10.096001625061, -1.42503154277802,-6.3962197303772,9.99347686767578,1.43282270431519,-6.28284311294556,9.98677921295166,1.41016662120819,-6.22356939315796,10.0363845825195,1.42628586292267,-6.28178596496582,10.025728225708,1.29868245124817,-6.99465990066528,9.76819896697998,1.3646742105484,-6.79201698303223,9.8630256652832,1.02010273933411,-7.10282611846924,9.92685508728027,1.05878603458405,-6.82746028900146,10.0935859680176,1.16516661643982,-8.75000095367432,9.34685039520264,0.899932265281677,-8.77219390869141,9.47470378875732,0.833582520484924,-7.36384868621826,9.93813800811768,0.839130282402039,-7.13623142242432,9.98122596740723,0.16369092464447,-7.39680194854736,10.1621980667114,0.164494171738625,-8.81348133087158,9.70306301116943,0.0548886694014072,-7.18779563903809,10.1972789764404,0.0533691048622131,-7.10139322280884,10.2082958221436,0.514799356460571,-7.2682089805603,10.0676374435425,2.01585102081299,-6.19061613082886,9.08933067321777,1.98352515697479,-6.30004119873047,8.98216438293457,1.9712610244751,-6.20601606369019,8.93790817260742,1.97188520431519,-6.15641307830811,9.00220108032227,1.98612010478973,-6.20020055770874,8.99924850463867,1.9012371301651,-6.82075071334839,8.8785400390625,1.94645488262177,-6.6602897644043,8.91274452209473,1.74542689323425,-7.02706575393677,9.20081329345703,1.88296723365784,-6.70524978637695,9.31597423553467,1.82986509799957,-8.6225643157959,8.52642726898193,1.68677496910095,-8.65179920196533,8.76764583587646,1.63689661026001,-7.29865312576294,9.22984504699707,1.63456690311432,-7.07309293746948,9.27701854705811,1.40362977981567,-8.72535419464111,9.19621467590332,1.33055734634399,-7.34073925018311,9.64202785491943,1.31247317790985,-7.13318395614624,9.67524909973145,1.53731822967529,-7.15198707580566,9.44097518920898,2.718425989151,-6.04045009613037,7.47814559936523,2.72380113601685,-6.14056062698364,7.36800098419189,2.71045565605164,-6.05074548721313,7.30326461791992,2.67696857452393,-6.00015258789063,7.3830451965332,2.71117210388184,-6.04671764373779,7.3791971206665,2.62037396430969,-6.70030784606934,7.30791568756104, -2.71216106414795,-6.47027826309204,7.3326301574707,2.44880557060242,-6.91118955612183,7.8948860168457,2.54864859580994,-6.5484414100647,7.92632293701172,2.55823159217834,-8.3841724395752,7.20983028411865,2.38827514648438,-8.45629024505615,7.62872171401978,2.3323974609375,-7.19299554824829,8.11302185058594,2.32155990600586,-6.96563816070557,8.09448623657227,2.01361465454102,-8.56610488891602,8.26726818084717,1.96068966388702,-7.24788665771484,8.73259830474854,1.94188916683197,-6.99697685241699,8.76454830169678,2.18840885162354,-7.0636043548584,8.41227722167969,2.86214923858643,-6.04091119766235,6.36204719543457,2.85794138908386,-6.38207817077637,6.31861782073975,2.80179810523987,-6.62750816345215,6.29775428771973,2.83546423912048,-6.72181224822998,6.54069042205811,2.75371098518372,-6.84279251098633,6.53128623962402,2.76776671409607,-7.02025842666626,6.25638294219971,2.81540870666504,-8.13744449615479,5.76124620437622,2.75335311889648,-7.05625915527344,6.51275157928467,2.80161881446838,-8.18183135986328,6.01941156387329,2.75433468818665,-6.9060845375061,6.52672100067139,2.72997951507568,-6.93930721282959,6.88015842437744,2.72810220718384,-6.87599611282349,6.88472366333008,0.0421733781695366,-6.43383598327637,10.460901260376,0.0898158699274063,-6.32126712799072,10.5332565307617,0.0420870706439018,-6.2551007270813,10.5144662857056,0.0419944599270821,-6.31786441802979,10.5004978179932,0.315291613340378,-7.39850378036499,10.1210069656372,0.31860288977623,-8.80612564086914,9.67136001586914,0.317083328962326,-7.27456283569336,10.1391649246216,0.320753067731857,-7.22334480285645,10.1464366912842,0.0440583378076553,-7.02831554412842,10.2411766052246,0.0416359901428223,-6.80607175827026,10.3194389343262,0.677681446075439,-7.37190437316895,10.0002107620239,0.726485013961792,-8.78393077850342,9.54150295257568,0.738841772079468,-6.42980813980103,10.4011058807373,0.69729208946228,-6.83069086074829,10.2631168365479,0.692009568214417,-7.15485191345215,10.0319995880127,0.703290939331055,-7.0675368309021,10.0494422912598,0.602372527122498,-7.12556076049805,10.1139135360718, -0.528138399124146,-7.21735572814941,10.0722017288208,0.85480523109436,-6.41582059860229,10.2334547042847,0.858295559883118,-6.79173851013184,10.1186580657959,0.974438548088074,-7.37307691574097,9.86631774902344,1.0361293554306,-8.76108932495117,9.41141128540039,0.8510422706604,-6.98381662368774,10.0359334945679,0.844412803649902,-7.04462862014771,10.004222869873,0.998793721199036,-7.2446756362915,9.86875247955322,1.00156760215759,-7.18868970870972,9.87386226654053,1.2232803106308,-7.34772729873657,9.72188568115234,1.28936541080475,-8.73922824859619,9.28083515167236,1.34980893135071,-6.40990877151489,10.140079498291,1.28560924530029,-6.82952737808228,9.98427104949951,1.20734691619873,-7.09225177764893,9.81888103485107,1.16964590549469,-7.17240476608276,9.76880359649658,1.24719130992889,-7.14025926589966,9.72501754760742,1.26680195331573,-7.057692527771,9.73504447937012,1.51484107971191,-6.39344120025635,9.97495937347412,1.43353962898254,-6.78547096252441,9.85082912445068,1.43675768375397,-7.34073925018311,9.54657077789307,1.50401067733765,-8.70806503295898,9.09242820739746,1.41831564903259,-7.18349838256836,9.57522773742676,1.41285419464111,-7.1206488609314,9.58980274200439,1.34578061103821,-6.98864221572876,9.74258232116699,1.31345462799072,-7.05070400238037,9.6987771987915,1.58880949020386,-7.30742979049683,9.33622741699219,1.63608705997467,-8.67119121551514,8.87924289703369,1.89290595054626,-6.36962032318115,9.73775100708008,1.74354255199432,-6.77570390701294,9.59839630126953,1.60922336578369,-7.06771898269653,9.35028171539307,1.63250994682312,-6.97253084182739,9.36647701263428,1.60582506656647,-7.01166534423828,9.48360157012939,1.55012607574463,-7.08168649673462,9.4460973739624,1.88126611709595,-6.34849071502686,9.53016090393066,1.78043341636658,-6.71580505371094,9.42808151245117,1.70172679424286,-7.3241753578186,9.10725975036621,1.74668180942535,-8.64328670501709,8.64722919464111,1.68363630771637,-6.91826486587524,9.34249782562256,1.64513206481934,-6.98274946212769,9.3056001663208,1.6908894777298,-7.18663215637207,9.13929462432861, -1.69080328941345,-7.12260961532593,9.15648937225342,1.87401235103607,-7.25602912902832,8.85829830169678,1.92182755470276,-8.58963203430176,8.40518188476563,2.00609564781189,-6.30854892730713,9.16985321044922,1.94896328449249,-6.68150568008423,9.08236694335938,1.84276175498962,-6.99366044998169,8.99951457977295,1.79601573944092,-7.08652257919312,8.97463893890381,1.87535297870636,-6.98013496398926,8.8635139465332,1.87866926193237,-6.87072849273682,8.86843776702881,2.02068853378296,-6.29153347015381,8.91257095336914,1.99221229553223,-6.65409898757935,8.84910011291504,2.05355167388916,-7.25030851364136,8.59684658050537,2.10504341125488,-8.53983020782471,8.11333847045898,2.03689455986023,-7.09260749816895,8.62422943115234,2.03063035011292,-7.02822875976563,8.63515472412109,1.95119988918304,-6.839111328125,8.80163669586182,1.93391823768616,-6.8972225189209,8.77951717376709,2.25162625312805,-7.20804977416992,8.28254318237305,2.29872441291809,-8.48680591583252,7.80477952957153,2.31654953956604,-6.23951721191406,8.47961711883545,2.33150124549866,-6.60816717147827,8.43969821929932,2.28950667381287,-6.96555137634277,8.21627044677734,2.30455112457275,-6.8673152923584,8.18501091003418,2.25628519058228,-6.9000096321106,8.4060173034668,2.20363235473633,-6.99304437637329,8.39393424987793,2.3888988494873,-6.21935844421387,8.15207290649414,2.41737532615662,-6.58229875564575,8.14293193817139,2.41021490097046,-7.19254398345947,7.93043613433838,2.46716094017029,-8.42545986175537,7.45204925537109,2.35308194160461,-6.80499410629272,8.10630702972412,2.31654953956604,-6.87493896484375,8.08615875244141,2.39006686210632,-7.07425546646118,7.89336585998535,2.38370943069458,-7.02142238616943,7.87742614746094,2.61562943458557,-7.11849451065063,7.35958671569824,2.68798494338989,-8.33230495452881,6.9024224281311,2.67526960372925,-6.15954637527466,7.61434268951416,2.6739227771759,-6.51514196395874,7.57207584381104,2.56673908233643,-6.8791298866272,7.54387092590332,2.49456310272217,-6.9896411895752,7.53805065155029,2.5878689289093,-6.86247968673706,7.30720043182373, -2.56871032714844,-6.77240562438965,7.30245494842529,0.146496340632439,-6.4390172958374,10.5175132751465,0.143808752298355,-6.81851148605347,10.3729877471924,2.93540048599243,-5.94177198410034,6.4890193939209,2.75935196876526,-5.92889022827148,6.3170919418335,2.81764602661133,-5.86870336532593,6.40350341796875,2.85050845146179,-5.93075561523438,6.3858642578125,0.839939832687378,-6.24604511260986,10.2650699615479,0.849071025848389,-6.30388689041138,10.2595138549805,1.33351707458496,-6.219810962677,10.1849422454834,1.35177946090698,-6.2865252494812,10.1757917404175,0.711884737014771,-6.2451605796814,10.4405736923218,0.734362483024597,-6.31033706665039,10.4315528869629,1.5204883813858,-6.22008943557739,10.0047597885132,1.52872443199158,-6.27935361862183,10.0008354187012,1.91412961483002,-6.18112802505493,9.78225517272949,1.92299544811249,-6.24820756912231,9.77249336242676,1.88815891742706,-6.18927001953125,9.5483455657959,1.89944541454315,-6.2410364151001,9.54916572570801,1.98791193962097,-6.13366842269897,9.19286060333252,2.01084041595459,-6.19411516189575,9.19158935546875,2.00474786758423,-6.14692497253418,8.91769409179688,2.02095413208008,-6.19106817245483,8.92162799835205,2.24643015861511,-6.06749200820923,8.48686504364014,2.29353523254395,-6.12435293197632,8.48885250091553,2.33391690254211,-6.07053899765015,8.13317108154297,2.36731767654419,-6.11853694915771,8.14642333984375,2.60775208473206,-5.99710512161255,7.63243293762207,2.65386724472046,-6.05289888381958,7.62759494781494,2.88247609138489,-5.90442514419556,6.64653301239014,2.93020439147949,-5.95949840545654,6.63650512695313,0.272221624851227,-7.10873794555664,10.0691394805908,0.273827493190765,-6.81851100921631,10.201042175293,1.22221183776855,-7.03172826766968,9.55281829833984,1.29142928123474,-6.78072166442871,9.64202785491943,1.76082324981689,-6.92508029937744,8.60597801208496,1.73297739028931,-6.62894201278687,8.65415859222412,0.941396951675415,-6.23539352416992,10.1719589233398,1.04956161975861,-6.29842615127563,10.1060371398926,0.918918609619141,-6.4223575592041,10.0910787582397, -0.821848750114441,-6.3010311126709,10.1540479660034,0.92653214931488,-6.30273294448853,10.1353340148926,0.891962051391602,-7.27036190032959,9.76710510253906,1.02529907226563,-7.23964834213257,9.69376659393311,0.92304003238678,-7.31324577331543,9.73746109008789,0.958677887916565,-7.25827836990356,9.72752666473389,0.0392199382185936,-7.45401906967163,9.96994304656982,0.117124482989311,-7.47640800476074,9.91567707061768,0.0688582956790924,-7.5123987197876,9.8660717010498,0.0503230579197407,-7.48590564727783,9.91717910766602,1.64038681983948,-6.13769626617432,9.30228805541992,1.61665546894073,-6.18157958984375,9.15453720092773,1.55666375160217,-6.30952930450439,9.24531841278076,1.58853733539581,-6.21372556686401,9.3853702545166,1.58835828304291,-6.19465351104736,9.27442455291748,1.53785634040833,-7.18108558654785,9.01431274414063,1.61504328250885,-7.13318395614624,8.88131427764893,1.56185293197632,-7.24027299880981,8.96335697174072,1.57332026958466,-7.16317653656006,8.94400215148926,1.1373199224472,-7.43064975738525,9.35169792175293,0.871369242668152,-7.56721258163452,9.29063129425049,0.455696523189545,-7.66114187240601,9.41339588165283,0.748331546783447,-7.53658533096313,9.46945190429688,0.810832500457764,-7.55188941955566,9.38563632965088,2.10602498054504,-6.01868629455566,7.86319065093994,2.11140084266663,-6.06570339202881,7.73603916168213,2.02874565124512,-6.18130016326904,7.84814739227295,2.02435874938965,-6.08486223220825,7.95300674438477,2.05578827857971,-6.07411479949951,7.85513401031494,2.11811661720276,-7.08876180648804,7.65562629699707,2.22610306739807,-7.03691864013672,7.36684036254883,2.15294432640076,-7.12422370910645,7.54718208312988,2.17076945304871,-7.0695161819458,7.51064968109131,1.67916345596313,-7.43360042572021,8.26219749450684,1.30279695987701,-7.6228232383728,8.05714511871338,0.753435134887695,-7.8008279800415,8.27294254302979,1.19015181064606,-7.63140773773193,8.48087406158447,1.25077474117279,-7.62909126281738,8.27260208129883,2.34501934051514,-6.356276512146,6.5841178894043,2.35218667984009,-6.05692672729492,6.62737369537354, -2.42740249633789,-6.76148509979248,6.242506980896,2.46151995658875,-6.7054123878479,6.266770362854,0.306246042251587,-6.2601957321167,10.4060297012329,0.438953042030334,-6.32349729537964,10.3444242477417,0.283410459756851,-6.44134378433228,10.3226642608643,0.168880864977837,-6.31965208053589,10.3708190917969,0.293172299861908,-6.32546806335449,10.3642129898071,0.721109867095947,-6.23593187332153,10.2428588867188,0.758093953132629,-6.30308866500854,10.2036542892456,0.733917713165283,-6.4040060043335,10.1835794448853,0.666665315628052,-6.28615999221802,10.242772102356,0.725589156150818,-6.29162979125977,10.2187004089355,0.677236676216125,-6.9933910369873,10.0103988647461,0.728004574775696,-6.78788328170776,10.0743341445923,1.48583340644836,-6.17969560623169,9.83703899383545,1.4972950220108,-6.2469482421875,9.72629070281982,1.36969101428986,-6.36621761322021,9.76201438903809,1.35384404659271,-6.24596786499023,9.86553382873535,1.42135536670685,-6.24453544616699,9.80264949798584,1.69447302818298,-6.19043302536011,9.56564426422119,1.67558002471924,-6.24568891525269,9.51540565490723,1.61459851264954,-6.3538646697998,9.50242710113525,1.60134565830231,-6.23977708816528,9.56974029541016,1.65310215950012,-6.2442569732666,9.53920650482178,1.49657809734344,-6.91405439376831,9.35628223419189,1.53776931762695,-6.73854923248291,9.40419483184814,1.78276312351227,-6.08864116668701,8.71269702911377,1.74909663200378,-6.13232183456421,8.57517910003662,1.73082721233368,-6.26074314117432,8.70553874969482,1.77157437801361,-6.16151714324951,8.81388854980469,1.74461734294891,-6.14512729644775,8.71028232574463,2.01048231124878,-6.07519197463989,8.18089008331299,2.03313159942627,-6.12543916702271,8.10389137268066,1.93723022937775,-6.22141551971436,8.16998386383057,1.87302565574646,-6.11011600494385,8.27098941802979,1.96552729606628,-6.11943101882935,8.1750020980835,1.97018623352051,-6.79729413986206,8.13200950622559,1.92764723300934,-6.59196949005127,8.15081024169922,2.4087815284729,-5.93326425552368,6.95447826385498,2.37206220626831,-5.97686910629272,6.7942008972168, -2.31081604957581,-6.08665943145752,6.95206356048584,2.33168029785156,-6.00373792648315,7.09336376190186,2.34493374824524,-5.98915481567383,6.95475006103516,2.33570909500122,-6.74267244338989,6.8530216217041,2.3004298210144,-6.38592338562012,6.91848278045654,1.28211152553558,-6.21058225631714,9.98702716827393,1.30423080921173,-6.2738938331604,9.94164657592773,1.26564025878906,-6.3819727897644,9.92327213287354,1.22256410121918,-6.26091623306274,9.99143123626709,1.27271509170532,-6.26664543151855,9.96213436126709,1.16624140739441,-6.99921655654907,9.72420787811279,1.21566867828369,-6.78600883483887,9.79891109466553,0.844771265983582,-7.07470798492432,9.85405540466309,0.893308997154236,-6.8152904510498,9.96681022644043,0.785853624343872,-7.41685485839844,9.68106937408447,0.619925618171692,-7.50901556015015,9.61541175842285,0.299351364374161,-7.56721258163452,9.68357276916504,0.464117765426636,-7.48428058624268,9.74919319152832,0.545332908630371,-7.49610471725464,9.68438243865967,0.544975161552429,-7.41980648040771,9.81189155578613,0.206130236387253,-7.52072381973267,9.80947494506836,0.293710321187973,-7.46405506134033,9.86087512969971,0.378243684768677,-7.47443723678589,9.80732536315918,0.681981801986694,-7.20455121994019,9.92759132385254,0.783345103263855,-7.25200080871582,9.84932136535645,0.702667236328125,-7.3171968460083,9.86094284057617,0.736246824264526,-7.22066259384155,9.89255905151367,0.0481728687882423,-7.34700632095337,10.0868892669678,0.0886478424072266,-7.40655946731567,10.0250873565674,0.0415496788918972,-7.40996265411377,10.0314626693726,0.0997503325343132,-7.27161169052124,10.1072845458984,0.0500571951270103,-7.25863409042358,10.1217918395996,0.364181458950043,-7.30510330200195,10.006031036377,0.5273357629776,-7.27519702911377,9.95685195922852,0.412533342838287,-7.33957576751709,9.97950839996338,0.445934057235718,-7.29749011993408,9.97799968719482,1.80855226516724,-6.1517505645752,8.95375633239746,1.83963191509247,-6.20531415939331,8.9141092300415,1.77533042430878,-6.3042516708374,8.91178035736084,1.70969700813293,-6.18685722351074,8.97043323516846, -1.78724229335785,-6.20029640197754,8.9353141784668,1.7373640537262,-6.81734752655029,8.85042190551758,1.75769102573395,-6.6568865776062,8.85814476013184,1.49550259113312,-6.95954370498657,9.13257884979248,1.52944147586823,-6.68276500701904,9.17943000793457,1.40935635566711,-7.43772459030151,8.89700794219971,1.07938516139984,-7.61385488510132,8.80199527740479,0.597182512283325,-7.75229215621948,8.97070407867432,0.979806780815125,-7.59361934661865,9.06257724761963,1.02932715415955,-7.60401105880737,8.9371919631958,1.27682900428772,-7.43638896942139,9.1526575088501,0.527693510055542,-7.71262884140015,9.21874237060547,0.927426695823669,-7.5812668800354,9.18165493011475,1.44965255260468,-7.15000677108765,9.26647281646729,1.47419357299805,-7.17607736587524,9.15595245361328,1.44616174697876,-7.26230621337891,9.18489074707031,1.46254670619965,-7.15977382659912,9.21659278869629,0.963423013687134,-7.42393016815186,9.54164791107178,0.380480229854584,-7.6125283241272,9.55362796783447,0.686096429824829,-7.52243518829346,9.54493999481201,1.12755811214447,-7.21134757995605,9.64621829986572,1.18423914909363,-7.22461366653442,9.55991077423096,1.13481187820435,-7.29892253875732,9.57959651947021,1.15639317035675,-7.21494245529175,9.60835647583008,1.27584683895111,-7.23095846176147,9.44547367095947,1.37497425079346,-7.1847677230835,9.34034824371338,1.30181479454041,-7.28183031082153,9.4043493270874,1.32644212245941,-7.21153020858765,9.38923740386963,2.36642146110535,-5.99702835083008,7.35000324249268,2.37771010398865,-6.04617929458618,7.25463962554932,2.30579876899719,-6.14234828948975,7.33021354675293,2.24401450157166,-6.0380277633667,7.45163822174072,2.3253231048584,-6.04321908950806,7.34167575836182,2.30078840255737,-6.74302816390991,7.26448822021484,2.29935503005981,-6.50403833389282,7.29117202758789,2.02838706970215,-6.87931299209595,7.78125858306885,2.01056861877441,-6.53457021713257,7.81412220001221,1.65533864498138,-7.38694763183594,7.05432176589966,0.556887149810791,-7.75094604492188,7.51145315170288,1.28041303157806,-7.60651016235352,7.61326742172241, -1.07651793956757,-7.58206367492676,7.2318902015686,1.78276312351227,-7.42483329772949,7.86990690231323,0.807162761688232,-7.77897787094116,7.8468918800354,1.33431959152222,-7.61769962310791,7.86283159255981,2.0020604133606,-7.03432321548462,8.05929470062256,2.04978942871094,-7.08428192138672,7.88136672973633,2.02050924301147,-7.16254186630249,7.95568752288818,2.02740478515625,-7.05365467071533,7.96813869476318,1.52272486686707,-7.44166612625122,8.64744186401367,0.673653244972229,-7.78847599029541,8.66830635070801,1.13293325901031,-7.62468910217285,8.65370750427246,1.71739494800568,-7.07290983200073,8.78120517730713,1.75635039806366,-7.13246297836304,8.64574241638184,1.70862150192261,-7.21833610534668,8.69676399230957,1.74094748497009,-7.0971827507019,8.71628189086914,1.81518161296844,-7.13935518264771,8.50353050231934,1.91708219051361,-7.09637546539307,8.29856967926025,1.83908951282501,-7.19756174087524,8.44632148742676,1.86416172981262,-7.12350273132324,8.40896987915039,2.42454218864441,-6.3814435005188,6.31745052337646,2.43036222457886,-6.04098796844482,6.36338710784912,2.44244766235352,-6.62204837799072,6.27473831176758,2.37815475463867,-6.7114109992981,6.51633548736572,2.42480802536011,-6.83776473999023,6.49770736694336,2.34000897407532,-6.97648096084595,6.63175964355469,2.35513973236084,-6.92865610122681,6.33231544494629,2.29702520370483,-7.01542329788208,6.49027442932129,2.35012912750244,-6.95140027999878,6.47827529907227,2.30660820007324,-6.95820617675781,7.14413833618164,2.32326579093933,-6.98212385177612,6.93442249298096,2.38272047042847,-6.86999702453613,6.82795143127441,0.0388620980083942,-6.25016927719116,10.4348640441895,0.0709221661090851,-6.31446123123169,10.3942956924438,0.0336658582091331,-6.42791414260864,10.3690452575684,0.0357297398149967,-6.31231737136841,10.4085397720337,0.281618744134903,-7.21331834793091,10.0582323074341,0.0458500608801842,-7.02025938034058,10.1650657653809,0.0501435101032257,-7.09681797027588,10.1648683547974,0.542559027671814,-6.81779956817627,10.1301193237305,0.56628429889679,-6.42280960083008,10.2511005401611, -0.660128355026245,-7.06207609176636,9.99965572357178,0.475665032863617,-7.10648822784424,10.0103988647461,0.460892796516418,-7.20794439315796,9.99069690704346,0.784685730934143,-6.78547096252441,10.043888092041,0.77985417842865,-6.41484022140503,10.1473159790039,0.77940309047699,-6.97655868530273,9.97773456573486,0.780836343765259,-7.0397834777832,9.95856952667236,0.8426274061203,-7.16326332092285,9.82987213134766,1.08018839359283,-6.81573247909546,9.86497783660889,1.13696205615997,-6.40095853805542,10.0002975463867,1.00192606449127,-7.064133644104,9.75224018096924,0.986794710159302,-7.14741086959839,9.73038768768311,1.15039360523224,-7.06851673126221,9.70468997955322,1.242804646492,-6.77705955505371,9.76342964172363,1.29554378986359,-6.37553215026855,9.8782320022583,1.21952426433563,-7.11419820785522,9.5341968536377,1.1988388299942,-6.99214124679565,9.69289112091064,1.18934226036072,-7.06153774261475,9.66951465606689,1.42601370811462,-6.76460075378418,9.48012828826904,1.50401067733765,-6.36254501342773,9.59430027008057,1.4844001531601,-6.9698486328125,9.3439998626709,1.36046659946442,-6.99876499176025,9.4068775177002,1.35410928726196,-7.0760440826416,9.39737033843994,1.53794896602631,-6.70881605148315,9.35655307769775,1.60072219371796,-6.33999300003052,9.43846797943115,1.50383114814758,-6.91307401657104,9.30345630645752,1.49801135063171,-6.98023080825806,9.28411102294922,1.49872827529907,-7.05339574813843,9.12282371520996,1.62149381637573,-6.66217374801636,8.95888519287109,1.63322627544403,-6.299156665802,9.01431274414063,1.58549821376801,-6.92722463607788,8.93971920013428,1.5829895734787,-7.01794290542603,8.94553852081299,1.73011028766632,-6.86910438537598,8.85355377197266,1.79628789424896,-6.65034961700439,8.81095504760742,1.81464350223541,-6.28750562667847,8.87030506134033,1.78939270973206,-7.02358531951904,8.59120464324951,1.79754233360291,-6.8348913192749,8.76606750488281,1.80318331718445,-6.89400196075439,8.74932479858398,1.79762864112854,-6.60208225250244,8.37782001495361,1.77560245990753,-6.23288440704346,8.40968608856201, -1.99794578552246,-6.86240339279175,8.13290500640869,1.85279190540314,-6.89444351196289,8.36517333984375,1.89201009273529,-6.99062204360962,8.37190818786621,1.96686804294586,-6.57108974456787,8.01398849487305,2.00573706626892,-6.20816898345947,8.03296852111816,1.99391138553619,-6.80095672607422,7.97969150543213,2.01987886428833,-6.87769746780396,7.96760082244873,2.06071281433105,-7.00037908554077,7.77534580230713,2.13772654533386,-6.50797080993652,7.53366374969482,2.14578366279602,-6.15605688095093,7.57673358917236,2.14452934265137,-6.85262680053711,7.50447082519531,2.17211008071899,-6.97485637664795,7.50644207000732,2.31556105613708,-6.82450819015503,7.26233863830566,0.105662889778614,-6.80410099029541,10.2104644775391,0.0978723019361496,-6.43105792999268,10.3383321762085,2.50709867477417,-5.86833810806274,6.3996639251709,2.50987887382507,-5.92565107345581,6.29676532745361,2.40456748008728,-5.94266605377197,6.49949836730957,2.45802927017212,-5.93057250976563,6.38425254821777,0.781194806098938,-6.24568891525269,10.2016839981079,0.777883648872375,-6.30363655090332,10.1794786453247,1.16480815410614,-6.2124662399292,10.0869808197021,1.14815723896027,-6.2780179977417,10.0487241744995,0.572641491889954,-6.23879718780518,10.3335876464844,0.567272663116455,-6.30363702774048,10.2942733764648,1.35580837726593,-6.20547771453857,9.93204593658447,1.32303762435913,-6.2613582611084,9.9106616973877,1.6168349981308,-6.17772483825684,9.67952442169189,1.55335175991058,-6.24299716949463,9.64039707183838,1.67691993713379,-6.18300247192383,9.48350811004639,1.63590753078461,-6.23305749893188,9.46499156951904,1.69680273532867,-6.11638402938843,9.08173656463623,1.65498018264771,-6.17969560623169,9.04833507537842,1.83201766014099,-6.14324331283569,8.8785400390625,1.81885135173798,-6.18694400787354,8.8777551651001,1.84822380542755,-6.06140661239624,8.42231464385986,1.79637432098389,-6.11755657196045,8.41649436950684,2.07539892196655,-6.06149339675903,8.03717517852783,2.03474426269531,-6.1079626083374,8.03288269042969,2.22727108001709,-5.99443292617798,7.60360717773438, -2.17336392402649,-6.04966926574707,7.59231567382813,2.44549369812012,-5.90433883666992,6.64591026306152,2.38388824462891,-5.95976734161377,6.63937187194824,0.0438787862658501,-6.22921276092529,10.4868879318237,0.0839026868343353,-6.22965478897095,10.4674558639526,0.0419944599270821,-6.22895336151123,10.4618139266968,0.195744693279266,-6.2298378944397,10.4696063995361,0.34752431511879,-6.22670364379883,10.51149559021,0.467429012060165,-6.22895336151123,10.4358282089233,0.322452157735825,-6.23216438293457,10.4620876312256,0.625028491020203,-6.20996761322021,10.416953086853,0.683953046798706,-6.20208501815796,10.313515663147,0.592252254486084,-6.21256303787231,10.3785429000854,0.744841337203979,-6.21792697906494,10.282904624939,0.757198095321655,-6.23126935958862,10.2328481674194,0.729796290397644,-6.21658134460449,10.2640800476074,0.810653686523438,-6.21784973144531,10.2412633895874,0.859098792076111,-6.20547771453857,10.2188787460327,0.793823838233948,-6.22141599655151,10.2225303649902,1.01097095012665,-6.19285583496094,10.2404594421387,1.09926104545593,-6.19823932647705,10.1786594390869,0.972553610801697,-6.20191144943237,10.2077751159668,1.25319075584412,-6.17656183242798,10.1503591537476,1.27799701690674,-6.17262029647827,10.0564403533936,1.2042076587677,-6.1820216178894,10.1210737228394,1.34793078899384,-6.18927001953125,10.0207853317261,1.33906483650208,-6.20271873474121,9.97173500061035,1.31086027622223,-6.18935632705688,10.0061178207397,1.4452657699585,-6.18220472335815,9.97682189941406,1.47812914848328,-6.15622997283936,9.93132781982422,1.39870572090149,-6.18300247192383,9.95498466491699,1.64889490604401,-6.14324331283569,9.91352844238281,1.64486682415009,-6.14781856536865,9.80043125152588,1.56543636322021,-6.14827060699463,9.87600517272949,1.78768718242645,-6.13457202911377,9.7476749420166,1.73271214962006,-6.14602088928223,9.63880348205566,1.70011401176453,-6.14352178573608,9.7160587310791,1.79413771629333,-6.16115188598633,9.59803867340088,1.74023056030273,-6.18193578720093,9.54200649261475,1.74390089511871,-6.16599702835083,9.58452033996582, -1.78554332256317,-6.17782068252563,9.51601314544678,1.71739494800568,-6.15121221542358,9.43668270111084,1.72813892364502,-6.17243766784668,9.49973964691162,1.8081066608429,-6.14450216293335,9.36407279968262,1.73136460781097,-6.11700916290283,9.21336841583252,1.71721601486206,-6.13196659088135,9.33166027069092,1.84320914745331,-6.12175798416138,9.13893699645996,1.80425798892975,-6.11468267440796,9.0272741317749,1.76324570178986,-6.10887670516968,9.11063957214355,1.89049053192139,-6.14746284484863,8.97963809967041,1.87195539474487,-6.15909481048584,8.92288208007813,1.84544742107391,-6.14182996749878,8.96747875213623,1.91726171970367,-6.14074373245239,8.89591503143311,1.8570898771286,-6.10187768936157,8.82884120941162,1.86863970756531,-6.13528299331665,8.88534927368164,1.95468997955322,-6.10743474960327,8.75022220611572,1.88314402103424,-6.08369922637939,8.59228038787842,1.85896599292755,-6.09068870544434,8.72738361358643,2.04791140556335,-6.07940196990967,8.45150852203369,2.00743627548218,-6.05047702789307,8.28932666778564,1.93848407268524,-6.06310796737671,8.43449211120605,2.14327502250671,-6.07304811477661,8.20623397827148,2.11999487876892,-6.07805633544922,8.12143707275391,2.07262516021729,-6.06723213195801,8.19200134277344,2.20622706413269,-6.05029392242432,8.08364963531494,2.14945340156555,-6.01322650909424,7.98183536529541,2.13584232330322,-6.04769849777222,8.05660629272461,2.29048848152161,-6.02075338363647,7.9050989151001,2.24804282188416,-6.01224565505981,7.75725555419922,2.18992829322815,-6.01125574111938,7.88128185272217,2.41889500617981,-5.9938850402832,7.6190881729126,2.38084244728088,-5.96514177322388,7.47053241729736,2.31475782394409,-5.98600196838379,7.6117467880249,2.52285957336426,-5.98314714431763,7.36853885650635,2.47602677345276,-5.99630689620972,7.2690544128418,2.43725824356079,-5.98224306106567,7.35904884338379,2.49474143981934,-5.93021726608276,7.09802150726318,2.63210701942444,-5.93228387832642,6.96245002746582,2.53038549423218,-5.92216110229492,6.79795360565186,2.51086115837097,-5.92457437515259,6.95734596252441, -2.66631054878235,-5.90263748168945,6.64742851257324,2.56154274940491,-5.86414670944214,6.51418495178223,2.54614043235779,-5.89547538757324,6.64760875701904,2.66505694389343,-5.84783363342285,6.40708827972412,2.59503674507141,-5.84675693511963,6.32318496704102,2.58007788658142,-5.8476505279541,6.40574741363525,0.233266234397888,-6.23064517974854,10.5518960952759,0.134942770004272,-6.22751140594482,10.5185022354126,0.0900810956954956,-6.23288536071777,10.5337944030762,0.149363458156586,-6.25876331329346,10.5631847381592,0.14372244477272,-6.23216438293457,10.5503597259521,0.551332473754883,-6.22544431686401,10.4952144622803,0.38737553358078,-6.22929906845093,10.5335216522217,0.740633606910706,-6.21238040924072,10.3680448532104,0.670248746871948,-6.21622562408447,10.43665599823,0.772507786750793,-6.23377895355225,10.2550535202026,0.759348392486572,-6.22446393966675,10.2997426986694,0.918918609619141,-6.2045841217041,10.2725887298584,0.826507568359375,-6.22169542312622,10.2572040557861,1.18316376209259,-6.19563436508179,10.2364139556885,1.04723882675171,-6.19886445999146,10.2674856185913,1.37202072143555,-6.18248319625854,10.0996780395508,1.29850351810455,-6.1861457824707,10.1740169525146,1.39888453483582,-6.20691967010498,9.99188232421875,1.38258588314056,-6.19671058654785,10.0327844619751,1.61191093921661,-6.16840982437134,9.99490451812744,1.48932433128357,-6.19106817245483,9.99510860443115,1.81338930130005,-6.15238475799561,9.86229133605957,1.72464871406555,-6.15784502029419,9.94361686706543,1.87329602241516,-6.14629030227661,9.68339347839355,1.8639851808548,-6.14512729644775,9.77184963226318,1.81097400188446,-6.18309879302979,9.55525875091553,1.83810353279114,-6.16609287261963,9.60799789428711,1.89084649085999,-6.15775871276855,9.49910831451416,1.84455347061157,-6.17584085464478,9.53473377227783,1.90446031093597,-6.12937116622925,9.27835845947266,1.90195143222809,-6.14217567443848,9.4006986618042,1.94269168376923,-6.12221908569336,9.07645416259766,1.92505240440369,-6.11978721618652,9.17083549499512,1.93472158908844,-6.16044044494629,8.93354034423828, -1.93633437156677,-6.14557886123657,8.99342727661133,2.01182222366333,-6.1058292388916,8.87092876434326,1.96642315387726,-6.1373405456543,8.90792942047119,2.09608435630798,-6.08817911148071,8.63929176330566,2.05131530761719,-6.09535074234009,8.77692317962646,2.20658564567566,-6.0531587600708,8.31780338287354,2.15760231018066,-6.06668424606323,8.47165584564209,2.22270464897156,-6.08164215087891,8.15976810455322,2.21383881568909,-6.0700101852417,8.22128772735596,2.34287595748901,-6.01905155181885,8.04416370391846,2.27616095542908,-6.05281257629395,8.11069297790527,2.44325709342957,-6.01492738723755,7.78591156005859,2.3908703327179,-6.01591777801514,7.93025779724121,2.59109473228455,-5.96631479263306,7.48289012908936,2.52303886413574,-5.98754024505615,7.62777423858643,2.62315487861633,-5.99871969223022,7.29448509216309,2.60846829414368,-5.9840407371521,7.37803554534912,2.7421567440033,-5.93156290054321,7.11235046386719,2.75532388687134,-5.92295932769775,6.80646228790283,2.75335311889648,-5.92565107345581,6.96889972686768,2.80027174949646,-5.86385822296143,6.51078033447266,2.78648090362549,-5.89556217193604,6.64868259429932,2.69102430343628,-5.84954452514648,6.33428764343262,2.75004124641418,-5.84792947769165,6.40842819213867,0.165927410125732,-7.23562049865723,10.1930894851685,0.149091303348541,-7.16085004806519,10.125391960144,2.34242510795593,-6.93377017974854,6.08328819274902,2.29040288925171,-7.03887891769409,6.71924686431885,2.33060479164124,-6.98649787902832,6.79007720947266,2.19861555099487,-7.10102701187134,7.20565605163574,2.27347278594971,-6.99115991592407,7.24792385101318,2.0897262096405,-7.14284420013428,7.74758625030518,2.07898235321045,-7.09484672546387,7.77821254730225,1.93472158908844,-7.17840337753296,8.20722484588623,1.964186668396,-7.05759620666504,8.17570304870605,1.78195989131927,-7.20929002761841,8.55725765228271,1.78016829490662,-7.14445924758911,8.57865142822266,1.63250994682312,-7.22478675842285,8.83645343780518,1.66922199726105,-7.09403944015503,8.83162117004395,1.51206719875336,-7.25120306015015,9.05836296081543, -1.50203943252563,-7.1843056678772,9.08673572540283,1.37649321556091,-7.26937198638916,9.30130577087402,1.41831564903259,-7.16130208969116,9.30354309082031,1.23545813560486,-7.29149103164673,9.48091411590576,1.2262407541275,-7.23266935348511,9.50392913818359,1.0292409658432,-7.30465173721313,9.66450023651123,1.08278274536133,-7.22182607650757,9.67065906524658,0.836356401443481,-7.31888818740845,9.7911205291748,0.83438503742218,-7.26839113235474,9.80768489837646,0.558314085006714,-7.32435846328735,9.92363166809082,0.60908830165863,-7.23346710205078,9.94460105895996,0.206309780478477,-7.29454851150513,10.0701446533203,0.293079674243927,-7.3436131477356,10.0228624343872,0.281173974275589,-7.30287313461304,10.0392532348633,0.148467600345612,-7.08249473571777,10.2446489334106,0.162436589598656,-7.16917514801025,10.2060585021973,0.134497985243797,-7.0667290687561,10.1153650283813,2.13969135284424,-7.10147905349731,6.36258411407471,2.13611435890198,-7.12386798858643,6.6185941696167,2.22378015518188,-7.07299566268921,6.55035972595215,2.01719808578491,-7.2568359375,7.7787504196167,2.06635332107544,-7.2321400642395,7.44062232971191,2.08910250663757,-7.19586038589478,7.64684677124023,1.72930705547333,-7.30331468582153,8.57641506195068,1.8149094581604,-7.29024124145508,8.40047740936279,1.78894138336182,-7.26005601882935,8.50236892700195,1.46899735927582,-7.3290114402771,9.07851123809814,1.54126024246216,-7.31915807723999,8.94482231140137,1.52218747138977,-7.2953462600708,9.01080226898193,1.16319525241852,-7.35113048553467,9.49515533447266,1.25767004489899,-7.34387302398682,9.38859462738037,1.24029588699341,-7.3268575668335,9.44224834442139,0.744124412536621,-7.36573314666748,9.79344940185547,0.872888803482056,-7.35910940170288,9.71965885162354,0.843968033790588,-7.34700632095337,9.76065540313721,0.223418071866035,-7.38274812698364,10.0065698623657,0.379491716623306,-7.37575912475586,9.95256900787354,0.325139760971069,-7.36581945419312,9.9915246963501,1.97672307491302,-7.16308927536011,6.12269496917725,1.98236405849457,-7.20347356796265,6.77493953704834, -2.01092624664307,-7.22970771789551,7.09336376190186,1.93624818325043,-7.28504991531372,8.06047248840332,1.97519659996033,-7.27966690063477,7.91190147399902,1.87338423728943,-7.29354810714722,8.23821067810059,1.62534248828888,-7.32257032394409,8.76617813110352,1.67522144317627,-7.31969594955444,8.66785430908203,1.57815182209015,-7.32533884048462,8.86082649230957,1.36324107646942,-7.34514188766479,9.24236392974854,1.41706144809723,-7.34227705001831,9.15872573852539,1.30432343482971,-7.34781408309937,9.32044792175293,1.01902747154236,-7.35945558547974,9.6161470413208,1.09174203872681,-7.35900402069092,9.555344581604,0.938708066940308,-7.3613395690918,9.67119693756104,0.550350308418274,-7.37924861907959,9.87285614013672,0.645979881286621,-7.37549018859863,9.83195400238037,0.335260063409805,-7.41641283035278,9.91001987457275,0.458025634288788,-7.3797869682312,9.91299057006836,0.162795066833496,-7.43011140823364,9.96349334716797,0.216881200671196,-7.45088529586792,9.91207599639893,0.110229127109051,-7.5688271522522,9.7474946975708,0.0892778486013412,-7.54007482528687,9.80938339233398,0.14954237639904,-7.62702465057373,9.61532020568848,0.130469769239426,-7.59855079650879,9.68097686767578,0.18437696993351,-7.67780113220215,9.49569320678711,0.167181745171547,-7.65218210220337,9.55615329742432,0.220099851489067,-7.73833417892456,9.34231853485107,0.202374175190926,-7.70769739151001,9.42640113830566,0.253414273262024,-7.79044628143311,9.11682415008545,0.23657813668251,-7.7660870552063,9.23716640472412,0.291652739048004,-7.83047485351563,8.84130954742432,0.27186319231987,-7.81076860427856,8.98708915710449,0.332930982112885,-7.86887836456299,8.48186206817627,0.312331855297089,-7.85285425186157,8.67323112487793,0.36874708533287,-7.85590076446533,8.03081893920898,0.378867417573929,-7.82931137084961,7.77847814559937,0.0538132563233376,-8.8172492980957,9.72446441650391,0.0537269487977028,-7.3923225402832,10.1851196289063,0.149184554815292,-6.32269954681396,10.5535087585449,-7.82310962677002e-08,-6.23064517974854,10.4912796020508,0.043248787522316,-6.23172187805176,10.5072135925293, -0.115783207118511,-6.25384140014648,10.4205369949341,0.125724613666534,-6.22948217391968,10.4706811904907,0.1051255017519,-6.31642246246338,10.3813161849976,0.0363534390926361,-6.79836177825928,10.2338123321533,0.149004995822906,-7.34889078140259,10.0634117126465,0.148826062679291,-7.28389692306519,10.0914363861084,0.146941125392914,-7.39689826965332,10.01731300354,-0.164673879742622,-8.81348133087158,9.70306301116943,-0.149271011352539,-6.32269954681396,10.5535087585449,-0.0434285029768944,-6.23172187805176,10.5072135925293,-0.115870922803879,-6.25384140014648,10.4205369949341,-0.125811710953712,-6.22948217391968,10.4706811904907,-0.105219528079033,-6.31642246246338,10.3813161849976,-0.0365331545472145,-6.79836177825928,10.2338123321533,-0.149092078208923,-7.34889078140259,10.0634117126465,-0.148912534117699,-7.28389692306519,10.0914363861084,-0.147034525871277,-7.39689826965332,10.01731300354,-2.77090001106262,-5.93585968017578,6.23632144927979,-2.53065133094788,-5.92555475234985,6.19504356384277,-2.61150860786438,-5.85661029815674,6.21716213226318,-2.69971227645874,-5.86799192428589,6.23149013519287,2.77081274986267,-5.93585968017578,6.23632144927979,2.5305643081665,-5.92555475234985,6.19504356384277,2.61142086982727,-5.85661029815674,6.21716213226318,2.69962477684021,-5.86799192428589,6.23149013519287,-2.56190180778503,-5.86951112747192,6.11257362365723,-2.40618014335632,-6.77310705184937,6.02759647369385,-1.96901953220367,-7.15341806411743,5.89407920837402,1.96293306350708,-7.15403366088867,5.90196418762207,2.34483957290649,-6.9509482383728,5.9753885269165,2.5619010925293,-5.86951112747192,6.11257362365723,2.40456748008728,-6.77105045318604,6.10719871520996,2.40609335899353,-6.77310705184937,6.02759647369385,-2.34251832962036,-6.93377017974854,6.08328819274902,-2.3449342250824,-6.9509482383728,5.9753885269165,-0.804031252861023,-7.41184568405151,6.61384916305542,-7.82310962677002e-08,-7.87810707092285,8.26159286499023,-0.352721333503723,-7.8695125579834,8.26649761199951,0.352540999650955,-7.8695125579834,8.26649761199951, --8.31105727161315e-30,-2.81674838066101,12.5612058639526,-8.37546759119075e-30,-2.38239884376526,12.3574085235596,-2.18278728425503e-11,-6.2010498046875,11.0751152038574,-7.27595761418343e-12,-5.60652589797974,11.52916431427,-7.27595761418343e-11,-7.09524393081665,11.2427158355713,-2.18278728425503e-11,-6.19437408447266,11.0349063873291,-2.18278728425503e-11,-5.97632884979248,11.3584976196289,1.45519152283669e-11,-6.70365142822266,11.2656488418579,-1.45519152283669e-11,-6.13765716552734,11.1871061325073,-2.18278728425503e-11,-6.3941650390625,11.1589450836182,-7.98737690875265e-30,-4.88956451416016,11.0227117538452,2.36468622460961e-11,-7.69744729995728,10.9385194778442,3.63797880709171e-12,-5.45220470428467,11.5023908615112,1.01863406598568e-10,-7.37440633773804,11.1156044006348,-8.16542612284571e-30,-4.15524578094482,11.0425729751587,-6.55917647510245e-30,-8.47935009002686,10.7843370437622,-8.83524198801206e-30,2.34988594055176,10.2725324630737,-8.83524198801206e-30,1.66520273685455,10.0522737503052,-8.24711639745949e-30,-0.163602992892265,11.0351285934448,-8.83524198801206e-30,0.474852353334427,10.5198411941528,-8.83524198801206e-30,0.802389979362488,10.2217044830322,-8.83524198801206e-30,1.2792751789093,9.98663520812988,-5.81988193487595e-30,-12.0054492950439,8.21793937683105,-6.01503656660399e-30,-11.1364364624023,10.3391914367676,-5.88438403705246e-30,-11.7194204330444,9.48415756225586,-6.42511369537987e-30,-9.18563079833984,10.8848876953125,-8.17158533708583e-30,-3.9726836681366,11.934907913208,-8.17582012601433e-30,-4.04417276382446,11.493257522583,-8.17973818974494e-30,-4.06679534912109,11.2233362197876,-8.17336983154992e-30,-4.11167764663696,11.1055355072021,-8.19365152896037e-30,-3.74346613883972,12.2974214553833,-8.23624241643755e-30,-3.372403383255,12.5569562911987,-8.47262849993593e-30,-1.6922470331192,11.8976850509644,-8.52086176029707e-30,-1.26987147331238,11.653133392334,-8.56136647443996e-30,-0.859426736831665,11.4177484512329,-8.43439352432516e-30,-1.99132990837097,12.0721788406372,-8.40751175527326e-30,-2.17534470558167,12.2047719955444, --8.41188497041651e-30,-0.525843679904938,11.2248640060425,-6.28370304152962e-30,-9.86643695831299,10.9053468704224,-6.15488616395634e-30,-10.4730615615845,10.7793226242065,-8.83524198801206e-30,3.39228105545044,10.3558158874512,-8.83524198801206e-30,4.79106760025024,9.94545650482178,-8.83524198801206e-30,9.10887050628662,8.12166786193848,-8.83524198801206e-30,7.12824249267578,9.19908428192139,-8.83524198801206e-30,10.9990186691284,6.47524547576904,-5.55030101938493e-30,-3.85953783988953,-9.64415073394775,-6.0225476933871e-30,-1.82490658760071,-10.4179039001465,-6.26931423835917e-30,0.291884422302246,-11.1575794219971,-8.83524198801206e-30,2.77468633651733,-11.4015102386475,-8.83524198801206e-30,5.38569402694702,-11.0212116241455,-8.83524198801206e-30,8.13572788238525,-10.2016525268555,-8.83524198801206e-30,10.4706792831421,-8.19120693206787,-8.83524198801206e-30,12.1643362045288,-5.33549213409424,-8.83524198801206e-30,12.9594602584839,-2.30990600585938,-8.83524198801206e-30,13.02467918396,0.84748101234436,-8.83524198801206e-30,12.5013542175293,3.92702579498291,-5.13364413150998e-30,-5.28219318389893,-9.34640789031982,-9.83141480408512e-17,-13.1809892654419,-11.7206726074219,9.68954234407374e-16,-23.2204532623291,2.11477041244507,-4.3854222289065e-30,-7.43977499008179,-9.63141536712646,-4.90011722643099e-30,-12.9335451126099,4.48895645141602,-4.79177802468632e-30,-6.31569051742554,-9.41757106781006,-5.93852523798128e-30,-11.8030519485474,6.5165638923645,-3.71379779515175e-30,-9.17730903625488,-10.1177568435669,-3.29759640775213e-16,-15.377347946167,2.75541257858276,-3.2976028295369e-30,-10.2989158630371,-10.4441614151001,1.18676875679382e-15,-17.5709362030029,1.90694046020508,-2.87060008674194e-30,-11.7145204544067,-10.965521812439,9.17966980268283e-16,-20.5388870239258,1.27679347991943,-4.0890554647026e-30,-8.20370101928711,-9.85538768768311,-3.78726853684e-16,-14.2904253005981,3.88498520851135,-2.00250458717346,0.522028923034668,8.87062835693359,-2.1801233291626,0.847802996635437,9.00672626495361,-2.4537034034729,1.07600772380829,9.15024280548096, --2.80427145957947,1.31544554233551,9.17289161682129,-3.24501895904541,1.4427592754364,9.18281078338623,-3.67122340202332,1.44906437397003,9.17110157012939,-4.26905584335327,1.28526997566223,9.03241920471191,-4.46412134170532,1.20914542675018,8.91198825836182,-4.66720199584961,1.07534503936768,8.74218654632568,-4.81066989898682,0.889254570007324,8.55978107452393,-4.95971488952637,0.742477357387543,8.36825370788574,-4.02485704421997,1.38277077674866,9.13456344604492,-2.3384485244751,0.347775429487228,8.93466663360596,-2.6356348991394,0.26021009683609,9.0864143371582,-2.09942173957825,0.419601500034332,8.84390926361084,-2.05044317245483,0.65114438533783,8.8955192565918,-2.98736834526062,0.195408225059509,9.16323280334473,-3.43918704986572,0.138988763093948,9.19739627838135,-3.95783829689026,0.167365923523903,9.12354564666748,-4.31833744049072,0.267997473478317,8.92407608032227,-4.50838804244995,0.381670862436295,8.79480457305908,-4.70505714416504,0.494918555021286,8.61862087249756,-4.82556009292603,0.604517161846161,8.47788906097412,-4.90757703781128,0.660237073898315,8.40587043762207,-4.87714147567749,0.805868089199066,8.46089935302734,-0.612867474555969,-2.84146428108215,12.3725204467773,-0.573357403278351,-2.41796708106995,12.1977033615112,-0.307788699865341,-6.17764711380005,11.0916528701782,-0.27788320183754,-5.46316385269165,11.4983806610107,-2.88388872146606,-6.38666200637817,9.59838581085205,-3.01232504844666,-6.26241874694824,9.62956809997559,-2.68976354598999,-6.14416790008545,9.95242214202881,-2.53629112243652,-6.35069847106934,9.90819454193115,-2.03534698486328,-5.8695707321167,10.6358270645142,-1.89314746856689,-6.30770111083984,10.4927043914795,-1.58972334861755,-5.65780639648438,10.9632539749146,-1.43242263793945,-6.25313091278076,10.8209323883057,-1.16811096668243,-5.45607137680054,11.2142038345337,-1.03693842887878,-6.18306255340576,10.9778051376343,-0.696184992790222,-5.38955974578857,11.4173488616943,-0.636731863021851,-6.1703519821167,11.0436429977417,-2.22610592842102,-6.33429622650146,10.1983613967896, --2.38717675209045,-6.02569723129272,10.3152656555176,-3.06913900375366,-6.31856966018677,9.58637714385986,-2.92493748664856,-6.38203716278076,9.58940601348877,-3.10725498199463,-6.40046215057373,9.54837131500244,-2.95995092391968,-6.39087057113647,9.57688808441162,-3.04447555541992,-6.47598838806152,9.52670001983643,-2.92498874664307,-6.40054750442505,9.57881355285645,-2.94016790390015,-6.52099895477295,9.5333776473999,-2.87621808052063,-6.40796041488647,9.5903263092041,-2.52313899993896,-6.33868217468262,9.84605693817139,-2.69279074668884,-6.66017436981201,9.66310024261475,-2.22724580764771,-6.3073582649231,10.142279624939,-2.39465260505676,-6.80120801925659,9.95035266876221,-2.05429458618164,-6.88094758987427,10.3412046432495,-1.88881325721741,-6.29249095916748,10.4364519119263,-1.663982629776,-6.92830801010132,10.7327871322632,-1.43046796321869,-6.24330425262451,10.7743721008301,-1.22958207130432,-6.96082162857056,11.0217695236206,-1.03365290164948,-6.17286205291748,10.9232835769653,-0.792382597923279,-7.00890779495239,11.1752309799194,-0.638855695724487,-6.1550030708313,10.9844455718994,-0.361502468585968,-7.04544830322266,11.2296466827393,-0.300843894481659,-6.17233896255493,11.0172481536865,-0.313439071178436,-5.90708303451538,11.3804988861084,-0.687595367431641,-5.85640096664429,11.3123264312744,-1.12153732776642,-5.87813711166382,11.1626853942871,-1.52839398384094,-5.99826812744141,10.9354515075684,-1.97712707519531,-6.12062072753906,10.5866203308105,-2.32052683830261,-6.21050262451172,10.2774066925049,-2.62174940109253,-6.2708568572998,9.94662857055664,-2.94667792320251,-6.33436727523804,9.62025833129883,-2.99289226531982,-6.35576152801514,9.59438991546631,-3.02804565429688,-6.39558076858521,9.56442451477051,-2.97962355613708,-6.43441724777222,9.552321434021,-2.90504598617554,-6.45967817306519,9.56263732910156,-2.60630321502686,-6.51345777511597,9.78423309326172,-2.33382964134216,-6.57768774032593,10.0790071487427,-1.99195289611816,-6.60659170150757,10.4411182403564,-1.55247271060944,-6.60837554931641,10.8338174819946, --1.12587714195251,-6.59154176712036,11.0643281936646,-0.736367344856262,-6.60497903823853,11.174243927002,-0.350211203098297,-6.63875246047974,11.2318592071533,-0.312198489904404,-6.09885263442993,11.2082319259644,-0.65849494934082,-6.07557821273804,11.1555261611938,-1.07063388824463,-6.08668661117554,11.0576696395874,-1.46790814399719,-6.16639995574951,10.865086555481,-1.92485749721527,-6.24488496780396,10.5290174484253,-2.26285886764526,-6.29610013961792,10.2306890487671,-2.56784820556641,-6.32526683807373,9.92364025115967,-2.90726232528687,-6.37118482589722,9.60893154144287,-2.94914817810059,-6.37407970428467,9.59291076660156,-2.98377060890198,-6.39226961135864,9.57207298278809,-2.94413948059082,-6.41239309310913,9.56943416595459,-2.88625264167786,-6.42605400085449,9.58045768737793,-2.55185842514038,-6.43077516555786,9.8532247543335,-2.26914000511169,-6.42899513244629,10.1525249481201,-1.9272301197052,-6.43308687210083,10.4699821472168,-1.47508871555328,-6.40141725540161,10.8274221420288,-1.06835675239563,-6.34831094741821,11.0089550018311,-0.674103736877441,-6.3411545753479,11.0871620178223,-0.31877863407135,-6.36249542236328,11.1326150894165,-0.284675300121307,-4.78527355194092,11.064474105835,-0.69200599193573,-4.67096376419067,11.0971984863281,-1.19090712070465,-4.65360689163208,10.8652582168579,-1.60348856449127,-4.75072002410889,10.6199941635132,-2.10041379928589,-4.94967794418335,10.3427619934082,-2.44613099098206,-5.14300584793091,10.1451902389526,-2.8578200340271,-5.40958213806152,9.8643798828125,-3.37556910514832,-5.73150157928467,9.50794124603271,-3.58002686500549,-6.09771537780762,9.38387775421143,-3.58722949028015,-6.43206739425659,9.34090614318848,-3.49604988098145,-6.72075796127319,9.3155574798584,-3.29658842086792,-7.00609397888184,9.28319644927979,-2.9785168170929,-7.27044200897217,9.33163547515869,-2.63768124580383,-7.51720857620239,9.58832359313965,-0.380467474460602,-7.70760488510132,10.9089078903198,-0.809084534645081,-7.71715402603149,10.8271722793579,-1.23778057098389,-7.68429851531982,10.6856832504272, --1.71254646778107,-7.66423940658569,10.3976364135742,-2.19258213043213,-7.62983465194702,10.0229711532593,-0.276628792285919,-5.35581827163696,11.4545192718506,-0.705096006393433,-5.26781606674194,11.3948183059692,-1.17839825153351,-5.33313131332397,11.1846256256104,-1.6078040599823,-5.53671407699585,10.9352722167969,-2.04950261116028,-5.74241161346436,10.6099004745483,-2.40413236618042,-5.91182565689087,10.2938222885132,-2.71651220321655,-6.05286550521851,9.95620918273926,-3.07438540458679,-6.19183778762817,9.62782001495361,-3.16906523704529,-6.29155683517456,9.56507015228271,-3.23088598251343,-6.41314077377319,9.5117359161377,-3.1863808631897,-6.56011343002319,9.4727258682251,-3.04502511024475,-6.65838003158569,9.46447277069092,-2.81204962730408,-6.82672548294067,9.53612422943115,-2.47520756721497,-7.02757406234741,9.79769992828369,-2.10015106201172,-7.16013097763062,10.2035999298096,-1.69221985340118,-7.23757028579712,10.5777711868286,-1.24376213550568,-7.28252696990967,10.8759183883667,-0.79730498790741,-7.29007863998413,11.0503644943237,-0.369253575801849,-7.32965230941772,11.1096782684326,-0.276756882667542,-4.0905499458313,11.0596790313721,-0.67881166934967,-4.02736043930054,10.9155769348145,-1.11051142215729,-4.01060152053833,10.6648254394531,-1.64762842655182,-4.08224010467529,10.4350128173828,-2.09704518318176,-4.20024442672729,10.1917724609375,-2.41615009307861,-4.1494517326355,9.9251651763916,-3.01657938957214,-4.68970441818237,9.58867073059082,-3.59471702575684,-5.20025300979614,9.29252243041992,-3.21058988571167,-7.73844718933105,9.12869644165039,-3.61845064163208,-7.32958364486694,9.03243350982666,-3.94498634338379,-6.91380882263184,8.91929626464844,-4.10075044631958,-6.44372081756592,8.84724903106689,-3.90626168251038,-5.81220817565918,9.08544826507568,-0.444652616977692,-8.46575260162354,10.7486915588379,-0.915312349796295,-8.41538047790527,10.604640007019,-1.30731439590454,-8.41347980499268,10.4629573822021,-1.7650842666626,-8.43077182769775,10.2372455596924,-2.27534437179565,-8.34659004211426,9.86133289337158, --2.79551029205322,-8.0594596862793,9.42021083831787,-0.425872296094894,2.32587480545044,10.2930870056152,-0.43096199631691,1.55000650882721,10.0067090988159,-1.04734790325165,1.67354381084442,9.85422611236572,-0.999846398830414,2.54404664039612,10.276873588562,-1.76966321468353,2.1059410572052,9.88949108123779,-1.53380644321442,2.77825474739075,10.2362470626831,-2.76184272766113,2.4165780544281,9.69988346099854,-2.67940044403076,3.13047909736633,9.95404052734375,-3.47613048553467,2.64268159866333,9.45586490631104,-3.44323205947876,3.38297891616821,9.62023067474365,-4.33117389678955,3.50773024559021,9.10658740997314,-4.22233247756958,2.80594253540039,9.07201480865479,-4.98590421676636,2.75339007377625,8.45626640319824,-5.24787616729736,3.33925271034241,8.3605260848999,-5.53613471984863,2.60515975952148,7.89962482452393,-5.91983318328857,3.1857442855835,7.45482158660889,-6.33480310440063,1.57071208953857,6.57897281646729,-6.65199041366577,1.82838404178619,5.99423789978027,-6.63125801086426,0.622930347919464,6.3899941444397,-6.9053897857666,0.61238819360733,5.7659649848938,-6.39516115188599,-0.506458342075348,7.06213998794556,-6.64986753463745,-0.835367441177368,6.62848615646362,-5.98848962783813,-1.08541309833527,7.54887008666992,-6.17566585540771,-1.47442102432251,7.3322925567627,-4.84235572814941,-1.58707356452942,8.6058292388916,-4.92961406707764,-1.98827040195465,8.5404806137085,-3.64678597450256,-1.65746462345123,9.26278972625732,-3.70411777496338,-2.01732301712036,9.30448246002197,-2.15958499908447,-1.37878262996674,9.64071941375732,-1.9706484079361,-1.79273068904877,9.81274509429932,-1.53634750843048,-0.979715883731842,9.77910423278809,-1.34802424907684,-1.28716385364532,9.99973106384277,-1.02397525310516,-0.224725618958473,9.89264297485352,-0.837064206600189,-0.76677805185318,10.2936544418335,-0.467166692018509,0.416704267263412,10.3221864700317,-0.487908393144608,-0.270563900470734,10.7006483078003,-6.32265472412109,2.55504369735718,6.62416315078735,-5.98125886917114,2.08447551727295,7.19541788101196,-6.84452104568481,1.11277878284454,5.71848392486572, --6.53752183914185,1.05508756637573,6.37544107437134,-6.62306833267212,0.118500046432018,6.59562110900879,-6.88577032089233,-0.0171589571982622,6.05382061004639,-5.55053091049194,-1.80561172962189,8.01396942138672,-5.43741226196289,-1.40401816368103,8.1262674331665,-4.29575395584106,-2.05251741409302,8.97702884674072,-4.23330020904541,-1.66832804679871,8.98032474517822,-2.93638849258423,-1.92973792552948,9.59064674377441,-2.95425868034363,-1.56733691692352,9.50070571899414,-0.429825216531754,0.769897937774658,10.1320953369141,-0.879478275775909,0.517569661140442,9.87677955627441,-0.403805494308472,1.20479547977448,9.97864055633545,-0.9251429438591,1.07852721214294,9.79307174682617,-2.05242586135864,2.95342707633972,10.1323146820068,-2.23605561256409,2.25964021682739,9.80658435821533,-1.45362198352814,-11.7220678329468,7.7457275390625,-1.94249081611633,-10.8492479324341,9.66497802734375,-2.23401498794556,-11.4141616821289,6.82130861282349,-2.9442195892334,-10.289511680603,8.61220836639404,-3.3287296295166,-10.7363042831421,5.61752510070801,-4.08768844604492,-9.56369495391846,7.49050807952881,-4.52266502380371,-9.69620513916016,4.03538227081299,-5.25208854675293,-8.46740245819092,6.01705121994019,-5.33507013320923,-8.60435485839844,2.59424519538879,-6.02868509292603,-7.47059488296509,4.59234189987183,-6.32686614990234,-6.46139526367188,0.429285854101181,-7.02103042602539,-5.51866674423218,2.56458020210266,-6.63314819335938,-5.30487203598022,0.0010362071916461,-7.25274801254272,-4.77190494537354,1.96178865432739,-3.95017671585083,-10.2369813919067,4.8523736000061,-4.74571561813354,-8.97711849212646,6.75745153427124,-6.021080493927,-7.48551464080811,1.18661463260651,-6.66051816940308,-6.29175806045532,3.25183725357056,-1.73911499977112,-11.4775247573853,8.91175746917725,-2.71912884712219,-11.0005769729614,7.93533086776733,-3.90698981285095,-10.3431310653687,6.69309139251709,-4.62629699707031,-9.8087100982666,5.87688064575195,-5.27568769454956,-9.25722026824951,5.02403020858765,-6.11723518371582,-8.20479583740234,3.56808972358704, --6.7800464630127,-7.01846075057983,2.29027032852173,-7.11960554122925,-6.10610914230347,1.63720464706421,-7.240159034729,-5.08808755874634,1.14679479598999,-1.94618821144104,-3.18484139442444,10.1206188201904,-1.97128963470459,-2.90788984298706,10.7209405899048,-1.94551062583923,-3.20075631141663,10.7982311248779,-2.00889849662781,-3.41766905784607,10.2430095672607,-1.7797863483429,-3.13145756721497,11.2094554901123,-1.76743566989899,-2.75292801856995,11.1367645263672,-1.35704243183136,-2.69259023666382,11.5846138000488,-1.43729317188263,-3.04925537109375,11.6452779769897,-0.957599997520447,-2.5337507724762,11.9536142349243,-1.05197191238403,-2.97319483757019,11.9926862716675,-2.02442502975464,-3.48149967193604,10.1782827377319,-1.93077278137207,-3.22494912147522,10.0023813247681,-2.49771618843079,-3.64891219139099,9.77677917480469,-3.13752794265747,-4.04087781906128,9.50779151916504,-3.86252784729004,-4.52816295623779,9.05229377746582,-4.25440549850464,-5.53818321228027,8.71383094787598,-4.41148996353149,-6.44228935241699,8.42195892333984,-4.20885419845581,-7.09721517562866,8.5288782119751,-3.84948968887329,-7.69750642776489,8.69057750701904,-3.31767225265503,-8.14998245239258,8.95892429351807,-2.86092782020569,-8.52286148071289,9.32379150390625,-2.36147665977478,-8.81789588928223,9.79014587402344,-1.83445572853088,-8.980637550354,10.2019166946411,-1.37862408161163,-9.06450653076172,10.4849948883057,-0.945417165756226,-9.10431480407715,10.6932220458984,-0.484645694494247,-9.14574718475342,10.8382930755615,-0.430151402950287,-3.78667140007019,11.3200263977051,-0.31240439414978,-3.9879150390625,11.2228012084961,-0.433737486600876,-3.95183396339417,11.0838260650635,-0.489092797040939,-3.77038264274597,11.0934047698975,-0.41869729757309,-3.78461003303528,11.4987316131592,-0.247211992740631,-4.00004863739014,11.5239992141724,-0.454335004091263,-3.75801396369934,11.6749477386475,-0.283114284276962,-3.95747375488281,11.842845916748,-0.574335277080536,-3.66264176368713,11.8285436630249,-0.421341925859451,-3.81621551513672,12.0895528793335, --0.667752385139465,-3.55119466781616,11.8290967941284,-0.707025825977325,-3.56791067123413,12.0749969482422,-0.909563183784485,-3.39562368392944,11.6751489639282,-1.00950145721436,-3.40489506721497,11.8691806793213,-1.12229108810425,-3.39301753044128,11.4634742736816,-1.31509912014008,-3.36950826644897,11.5583591461182,-1.36684727668762,-3.45196676254272,11.1405000686646,-1.57666385173798,-3.42707967758179,11.2034111022949,-1.35198771953583,-3.51235747337341,10.7937679290771,-1.63818895816803,-3.65421390533447,10.6730480194092,-0.907981216907501,-3.52404284477234,10.6590929031372,-1.13959503173828,-3.8009729385376,10.6044645309448,-0.723991096019745,-3.83734226226807,10.8534164428711,-0.628357768058777,-3.66664671897888,10.8592538833618,-1.11344730854034,-3.48829293251038,10.6497144699097,-1.33004474639893,-3.70043134689331,10.5921859741211,-0.417708903551102,-3.86824345588684,11.3096218109131,-0.403553485870361,-3.87896728515625,11.5108289718628,-0.433234870433807,-3.84975433349609,11.7220306396484,-0.573271989822388,-3.72333216667175,11.9117679595947,-0.716645300388336,-3.58857870101929,11.9157276153564,-0.968578040599823,-3.44254612922668,11.7576866149902,-1.19751727581024,-3.4263961315155,11.5060796737671,-1.42638289928436,-3.46274399757385,11.1732931137085,-1.44592905044556,-3.57288765907288,10.760458946228,-1.18683660030365,-3.55860686302185,10.6275644302368,-0.953868925571442,-3.61475777626038,10.643669128418,-0.660096526145935,-3.72439980506897,10.8566188812256,-0.489717900753021,-3.83477926254272,11.089243888855,-0.479629516601563,-3.88807821273804,11.0792551040649,-0.687838196754456,-3.77360796928406,10.8551158905029,-0.995428740978241,-3.69183301925659,10.6374979019165,-1.24929904937744,-3.6197030544281,10.6106510162354,-1.52868103981018,-3.61772704124451,10.72838306427,-1.50280821323395,-3.4557158946991,11.1831607818604,-1.26123416423798,-3.40934896469116,11.5390434265137,-0.991897165775299,-3.44237518310547,11.806586265564,-0.728786766529083,-3.58758544921875,11.976110458374,-0.544238805770874,-3.75784301757813,11.9454545974731, --0.409747779369354,-3.88429713249207,11.7604866027832,-0.360714197158813,-3.92862391471863,11.5188732147217,-0.38519811630249,-3.92065572738647,11.2734355926514,-0.252279996871948,-4.04671478271484,11.1392526626587,-0.633074402809143,-3.48106217384338,12.2321043014526,-1.02539217472076,-3.32593989372253,11.9404153823853,-1.0434935092926,-3.16545557975769,11.9897842407227,-0.616223990917206,-3.23225545883179,12.3577098846436,-1.40687966346741,-3.19337606430054,11.6333608627319,-1.36244785785675,-3.29978179931641,11.5985717773438,-1.64664626121521,-3.37046957015991,11.2223606109619,-1.72023391723633,-3.27146601676941,11.2224884033203,-1.41606211662292,-3.48503565788269,11.020432472229,-1.49248671531677,-3.5147180557251,10.9738712310791,-1.58364152908325,-3.53157305717468,10.9414367675781,-1.68115997314453,-3.51594638824463,10.9130373001099,-1.77041971683502,-3.4666850566864,10.8845643997192,-1.85930991172791,-3.36821532249451,10.8499345779419,-1.78209567070007,-3.66406202316284,10.5616931915283,-1.9301050901413,-3.58496809005737,10.4145889282227,-1.66880071163177,-3.78059339523315,10.5170078277588,-1.92606604099274,-3.68454837799072,10.3536720275879,-1.63955330848694,-3.87362623214722,10.4728975296021,-1.95321905612946,-3.7497034072876,10.301025390625,-2.06556057929993,-3.50481677055359,10.0877923965454,-1.99168121814728,-3.2921404838562,9.94458484649658,-2.01186370849609,-3.04351902008057,10.3697299957275,-1.99431753158569,-3.34384107589722,10.4826154708862,-1.91239500045776,-3.48304843902588,10.581241607666,-1.7989376783371,-3.5718195438385,10.6710205078125,-1.68732678890228,-3.59484815597534,10.7522840499878,-1.57070767879486,-3.58308815956116,10.8103818893433,-1.47289800643921,-3.54480695724487,10.8580741882324,-1.38528525829315,-3.49304604530334,10.9014539718628,-0.522467374801636,-1.7358261346817,11.6646327972412,-0.853272676467896,-1.92324829101563,11.4484043121338,-1.10606229305267,-2.10395193099976,11.1008491516113,-0.493669390678406,-1.30989372730255,11.3746156692505,-0.809532463550568,-1.55523955821991,11.0692300796509, --1.07536733150482,-1.88525521755219,10.7500648498535,-0.499034911394119,-0.950579583644867,11.1278257369995,-0.823213994503021,-1.29103064537048,10.7952833175659,-1.13685464859009,-1.72631943225861,10.4549140930176,-0.525806367397308,-1.99147951602936,11.8923997879028,-0.906700909137726,-2.13356018066406,11.6390428543091,-1.19228196144104,-2.32023453712463,11.3356132507324,-1.77341294288635,-2.96184706687927,9.9596471786499,-1.81124925613403,-2.91073107719421,10.0682592391968,-1.59632623195648,-2.55080437660217,9.98704051971436,-1.65940880775452,-2.58622694015503,10.0822715759277,-1.48018991947174,-2.27519178390503,10.1393747329712,-1.5716644525528,-2.40248966217041,10.1943159103394,-1.35658383369446,-2.17649793624878,10.5437431335449,-1.53692555427551,-2.28125858306885,10.5680904388428,-1.30849456787109,-2.20981240272522,10.8322582244873,-1.45997536182404,-2.3338098526001,10.9546804428101,-1.77090895175934,-2.57009840011597,10.2757930755615,-1.67047643661499,-2.4525842666626,10.2923936843872,-1.89677250385284,-2.75604653358459,10.2793006896973,-1.91196882724762,-2.68166303634644,10.6179141998291,-1.82524788379669,-2.52532291412354,10.5684604644775,-1.69814610481262,-2.39185118675232,10.5556602478027,-1.65198802947998,-2.38608336448669,10.8005218505859,-1.83476006984711,-2.63304233551025,10.8799295425415,-0.538437187671661,-2.19871520996094,12.0575828552246,-0.939602255821228,-2.3243362903595,11.8041162490845,-1.26125860214233,-2.47660660743713,11.4658508300781,-1.56867337226868,-2.51121354103088,11.1137351989746,-1.74597990512848,-2.50036120414734,10.8550329208374,-1.8600435256958,-2.94770526885986,9.90234756469727,-1.66260206699371,-2.52715635299683,9.93363285064697,-1.52901208400726,-2.14440107345581,10.0297889709473,-1.18435442447662,-1.55190682411194,10.2380456924438,-0.493864685297012,-0.656538128852844,10.9330472946167,-0.823825776576996,-1.04610085487366,10.5608949661255,-2.17098832130432,-2.45336031913757,9.82688522338867,-2.45258784294128,-3.13287377357483,9.80207538604736,-3.0134608745575,-2.57700514793396,9.59614562988281, --3.12375903129578,-3.26103687286377,9.54150676727295,-3.76545405387878,-2.67373323440552,9.27077484130859,-3.80718517303467,-3.4109890460968,9.16203594207764,-4.40852451324463,-2.72864508628845,8.88379764556885,-4.47413015365601,-3.53251934051514,8.71166706085205,-4.58353710174561,-4.46132040023804,8.47084808349609,-5.13119459152222,-3.46025061607361,8.07415962219238,-5.0813307762146,-2.65648317337036,8.3512020111084,-5.76414632797241,-3.17410206794739,7.3101282119751,-5.73970794677734,-2.41437315940857,7.70609283447266,-6.36890077590942,-2.63990521430969,6.42838335037231,-6.35044479370117,-1.95564937591553,6.92472505569458,-6.89743947982788,-1.81760597229004,5.49506139755249,-6.84193229675293,-1.22105288505554,6.05735206604004,-7.29474830627441,-0.792417943477631,4.60285806655884,-7.13602781295776,-0.210006877779961,5.24569892883301,-5.20545673370361,-4.29827260971069,7.69921255111694,-6.30885076522827,-3.40991997718811,5.83514070510864,-5.73544311523438,-3.94613575935364,6.78741598129272,-6.89638471603394,-2.61104416847229,4.82495212554932,-4.73759174346924,-5.38083934783936,8.1663703918457,-6.3010573387146,-4.04897356033325,5.32221126556396,-5.72612047195435,-4.7100510597229,6.30829238891602,-5.26458787918091,-5.13295125961304,7.31941175460815,-5.76102781295776,-5.33404397964478,5.89009571075439,-6.31455850601196,-4.62396097183228,4.94708442687988,-5.32754421234131,-5.80997514724731,6.88414812088013,-4.87168550491333,-6.17238759994507,7.78334760665894,-4.72261619567871,-6.91689586639404,7.8189582824707,-5.14740514755249,-6.68267869949341,7.0530309677124,-5.49074172973633,-6.30471515655518,6.21001148223877,-5.88891887664795,-5.83466958999634,5.39093065261841,-4.4567985534668,-7.43630933761597,8.02381706237793,-4.63893795013428,-8.18760967254639,7.36468935012817,-5.02923059463501,-7.73272132873535,6.85509061813354,-3.9799268245697,-8.09740734100342,8.34194087982178,-4.05577087402344,-8.76449871063232,7.94083404541016,-2.73335933685303,-11.1102619171143,6.25578022003174,-3.27162933349609,-10.7124099731445,7.34949636459351, --3.49031758308411,-9.97497272491455,8.05880641937256,-3.4200394153595,-8.63992500305176,8.71746921539307,-3.48466086387634,-9.2441577911377,8.43512535095215,-2.93274664878845,-9.02222633361816,9.1695499420166,-2.96490597724915,-9.60867500305176,8.95022678375244,-1.81894302368164,-11.6068286895752,7.34164953231812,-2.2406964302063,-11.2564973831177,8.45750617980957,-2.45543622970581,-10.5916509628296,9.17394256591797,-2.48912644386292,-9.93205738067627,9.49641418457031,-2.44218945503235,-9.33296298980713,9.68772220611572,-1.9356302022934,-9.55088329315186,10.1522846221924,-1.99605703353882,-10.1815195083618,9.99641609191895,-1.07314682006836,-11.8290281295776,8.03556251525879,-1.30664241313934,-11.5927209854126,9.21349239349365,-1.41123855113983,-10.9835996627808,10.008246421814,-0.697075426578522,-11.9222002029419,8.16154384613037,-0.862486779689789,-11.6653308868408,9.4068660736084,-0.957686126232147,-11.0725841522217,10.1917762756348,-0.979436457157135,-9.77400207519531,10.7076902389526,-1.45681405067444,-9.6838207244873,10.4830656051636,-1.46009147167206,-10.3361186981201,10.3605632781982,-0.967066764831543,-10.4287242889404,10.5808334350586,-0.34590008854866,-11.9817800521851,8.21766662597656,-0.443739801645279,-11.7049903869629,9.47061729431152,-0.493437677621841,-11.1157894134521,10.3029832839966,-0.519946038722992,-9.8292236328125,10.8470029830933,-0.534429669380188,-10.4475450515747,10.7151002883911,-5.36939191818237,-7.30701303482056,6.20235872268677,-5.73494005203247,-6.86049842834473,5.45113849639893,-4.99795055389404,-9.16009712219238,3.26559519767761,-5.78187608718872,-8.70682048797607,4.26101684570313,-5.66574621200562,-7.97111368179321,5.29952907562256,-6.09138679504395,-6.36887693405151,4.76351118087769,-5.6676721572876,-8.0396203994751,1.89302062988281,-6.43482160568237,-7.64638471603394,2.92747402191162,-6.33894872665405,-6.92183923721313,3.90507936477661,-6.48305702209473,-5.72916030883789,3.98363208770752,-6.37685298919678,-5.15239000320435,4.52602291107178,-6.88704538345337,-4.96970891952515,3.19840002059937, --6.81757068634033,-4.40107679367065,3.68997001647949,-6.81606912612915,-3.81580328941345,4.09708595275879,-6.84777498245239,-3.22725057601929,4.46643877029419,-7.18535327911377,-4.31236982345581,2.4699010848999,-7.18254566192627,-3.75510191917419,2.80865120887756,-7.25807476043701,-3.04372644424438,3.15227556228638,-7.29280519485474,-2.43727207183838,3.5564558506012,-7.30056953430176,-1.70985400676727,4.08368492126465,-2.13073706626892,0.846115708351135,9.07898616790771,-2.40774464607239,1.09070706367493,9.21471786499023,-2.77981758117676,1.31160318851471,9.2496395111084,-3.23053550720215,1.44887983798981,9.26728057861328,-3.66671991348267,1.48115527629852,9.24191093444824,-4.05036020278931,1.41884303092957,9.19754981994629,-4.3298397064209,1.33957171440125,9.07678508758545,-4.53224754333496,1.26109504699707,8.94384765625,-4.73986864089966,1.1195695400238,8.76476669311523,-4.89786577224731,0.905930161476135,8.54976654052734,-4.96826219558716,0.804023861885071,8.43973159790039,-5.06172609329224,0.722355782985687,8.31211757659912,-4.99963998794556,0.625196635723114,8.34968185424805,-4.89068698883057,0.534760415554047,8.44810199737549,-4.75296974182129,0.408829808235168,8.59839725494385,-4.56429100036621,0.275824129581451,8.82272434234619,-4.35178995132446,0.15977381169796,8.95899772644043,-3.99084162712097,0.0388892628252506,9.16523838043213,-3.42717480659485,0.00879953894764185,9.2322301864624,-2.96751236915588,0.0826759487390518,9.18136787414551,-2.59925508499146,0.158464729785919,9.10888671875,-2.28353071212769,0.253347188234329,8.96965408325195,-2.04610705375671,0.371691018342972,8.91295719146729,-1.94327652454376,0.477808862924576,8.93542671203613,-2.0019166469574,0.60156923532486,8.97407341003418,-1.82606780529022,0.425195068120956,9.02849292755127,-1.94637560844421,0.264149963855743,8.98511219024658,-2.19556713104248,0.082431472837925,9.01692581176758,-2.53517818450928,-0.0189056191593409,9.15310001373291,-2.92958283424377,-0.0964664965867996,9.21659088134766,-3.40226888656616,-0.179821103811264,9.27159404754639, --4.02996778488159,-0.136342287063599,9.18951034545898,-4.39430809020996,-0.0576469674706459,8.98507499694824,-4.63278818130493,0.0630760043859482,8.81034183502197,-4.86522674560547,0.208934247493744,8.57377910614014,-5.05951166152954,0.398431032896042,8.36294651031494,-5.176429271698,0.59698885679245,8.26522159576416,-5.25054693222046,0.72034078836441,8.25850105285645,-5.1321759223938,0.826757729053497,8.36796283721924,-4.96289825439453,0.934091508388519,8.521728515625,-4.8003945350647,1.16704189777374,8.7447566986084,-4.59050703048706,1.33746790885925,8.93040943145752,-4.38301229476929,1.43246936798096,9.06435966491699,-4.06924962997437,1.49892055988312,9.20974063873291,-3.65559482574463,1.57172727584839,9.27534770965576,-3.20716142654419,1.53003346920013,9.30515480041504,-2.74337601661682,1.37544941902161,9.27945995330811,-2.3565239906311,1.14147675037384,9.25848293304443,-2.00829815864563,0.935405790805817,9.16300487518311,-1.8718489408493,0.605570733547211,9.06727695465088,-1.65030658245087,0.671867072582245,9.2253360748291,-1.86886620521545,1.02504360675812,9.20153045654297,-2.22823143005371,1.28928768634796,9.28384971618652,-2.64490365982056,1.54944503307343,9.301025390625,-3.13073205947876,1.73747587203979,9.32033157348633,-3.60988235473633,1.80495667457581,9.27996063232422,-4.0839695930481,1.76164972782135,9.17813205718994,-4.51367521286011,1.67889428138733,9.00890159606934,-4.81332540512085,1.54483807086945,8.84056377410889,-5.05777978897095,1.28734123706818,8.61774826049805,-5.25726699829102,1.02912926673889,8.40596771240234,-5.42085838317871,0.871191680431366,8.25228309631348,-5.48115587234497,0.725011050701141,8.13500881195068,-5.51753902435303,0.520317792892456,8.08371448516846,-5.43042373657227,0.227402254939079,8.12164783477783,-5.24159479141235,-0.112414427101612,8.37997150421143,-4.86105394363403,-0.341683715581894,8.62365913391113,-4.55123424530029,-0.463471502065659,8.84008312225342,-4.06123352050781,-0.511439502239227,9.04056549072266,-3.41040086746216,-0.562736213207245,9.17583847045898,-2.88614726066589,-0.482924997806549,9.16528701782227, --2.44955205917358,-0.383245676755905,9.19193172454834,-2.07176208496094,-0.219020515680313,9.14170551300049,-1.79903078079224,0.0805526524782181,9.13233947753906,-1.61881947517395,0.376979231834412,9.23736095428467,-2.25934982299805,1.98639130592346,9.56893730163574,-1.77149403095245,1.69732677936554,9.60889053344727,-1.26516020298004,1.37100028991699,9.66737365722656,-1.10119354724884,0.884818077087402,9.65639591217041,-1.04085326194763,0.437824785709381,9.68349742889404,-1.2532776594162,-0.197685584425926,9.63908004760742,-1.75755894184113,-0.73046350479126,9.50579166412354,-2.28692698478699,-1.02964699268341,9.41224098205566,-2.90903306007385,-1.23569202423096,9.36333274841309,-3.54473090171814,-1.31134057044983,9.20099544525146,-4.15956401824951,-1.30109202861786,8.99508476257324,-4.7551851272583,-1.20994389057159,8.70662403106689,-5.34941339492798,-1.02330887317657,8.29789924621582,-5.78118515014648,-0.635276556015015,7.92719411849976,-6.18555974960327,-0.231884062290192,7.52792692184448,-6.37773370742798,0.254486232995987,7.18082427978516,-6.38863563537598,0.617636144161224,7.03204202651978,-6.27821969985962,0.939470767974854,7.06617307662964,-6.063720703125,1.30925905704498,7.25209283828735,-5.73361778259277,1.75249147415161,7.72359085083008,-5.32628870010376,2.20393967628479,8.21257972717285,-4.86676406860352,2.46559834480286,8.59459590911865,-4.1407265663147,2.50684332847595,9.0148286819458,-3.45093727111816,2.3841335773468,9.30954551696777,-2.79624772071838,2.23524498939514,9.46375465393066,-2.83902215957642,2.08526301383972,9.25551319122314,-3.44496846199036,2.18608498573303,9.20443820953369,-4.0905556678772,2.18392658233643,9.02815055847168,-4.69400310516357,2.07069492340088,8.79992485046387,-5.07874870300293,1.85113501548767,8.53388404846191,-5.43395280838013,1.49712073802948,8.21975135803223,-5.73813533782959,1.13607203960419,7.95513153076172,-5.88583660125732,0.867983758449554,7.77510261535645,-5.95736503601074,0.662771463394165,7.71622705459595,-5.95411443710327,0.431409955024719,7.73444366455078,-5.84463500976563,0.0337066166102886,7.84447240829468, --5.54838943481445,-0.355836808681488,8.13446712493896,-5.20931720733643,-0.691812336444855,8.40687465667725,-4.61271047592163,-0.816669166088104,8.77346420288086,-4.09506511688232,-0.890169203281403,8.98448276519775,-3.4725034236908,-0.923985183238983,9.13625144958496,-2.88430690765381,-0.873924672603607,9.26791572570801,-2.37831354141235,-0.724734604358673,9.24971771240234,-1.91534018516541,-0.458017349243164,9.32759475708008,-1.58383190631866,-0.131477728486061,9.35623550415039,-1.35541367530823,0.372541576623917,9.40586090087891,-1.35380601882935,0.761859178543091,9.43727493286133,-1.48789989948273,1.21868109703064,9.44263935089111,-1.79330170154572,1.53164410591125,9.38885593414307,-2.29810428619385,1.82303488254547,9.33709144592285,-0.462224692106247,3.33067202568054,10.3590888977051,-0.814615190029144,3.3988926410675,10.3388633728027,-1.29072225093842,3.64332008361816,10.2444944381714,-1.90567791461945,3.94242453575134,10.068943977356,-2.71756935119629,4.27787017822266,9.74560165405273,-3.5896418094635,4.50379800796509,9.27270317077637,-4.52239942550659,4.54819965362549,8.65837001800537,-5.49783897399902,4.30548095703125,7.87937784194946,-6.1940770149231,3.66569113731384,6.67138481140137,-6.67714881896973,2.75051999092102,5.63913249969482,-6.94185256958008,1.86184823513031,5.19958114624023,-7.05338573455811,1.10372149944305,5.06734561920166,-7.09344339370728,0.526106119155884,5.14863300323486,-8.40617752075195,0.0556241795420647,0.640909492969513,-8.2239294052124,0.280366152524948,1.11804068088531,-8.00922012329102,-0.608444571495056,1.27154958248138,-8.30598258972168,-0.53821587562561,0.73651534318924,-8.5859317779541,0.655787527561188,0.402613759040833,-8.34269523620605,0.900962591171265,0.806322634220123,-8.77970123291016,1.21920776367188,0.0404710918664932,-8.57863712310791,1.52623748779297,0.339597314596176,-9.28165245056152,1.6613222360611,-0.547914326190948,-9.02072334289551,2.09513688087463,-0.276704102754593,-9.57998657226563,1.66829705238342,-1.06967425346375,-9.36645793914795,2.22241401672363,-1.2177392244339, --9.64610004425049,1.5166996717453,-1.43420970439911,-9.43434143066406,1.93145954608917,-1.80604302883148,-9.52598857879639,0.681540608406067,-2.07179546356201,-9.47312164306641,0.759064555168152,-2.47445297241211,-9.43591594696045,0.0512671656906605,-2.09960103034973,-9.43670272827148,0.0287300813943148,-2.55825424194336,-9.37417793273926,-0.695516228675842,-2.01381659507751,-9.34363555908203,-0.790418148040771,-2.51949238777161,-9.25639152526855,-1.4842768907547,-1.80209052562714,-9.15201377868652,-1.73476028442383,-2.35918831825256,-8.99237155914307,-2.21868085861206,-1.4315003156662,-8.93394088745117,-2.67437076568604,-1.9970782995224,-8.71511077880859,-2.78971648216248,-0.737185418605804,-8.65053176879883,-3.32020664215088,-1.24940729141235,-8.39547061920166,-3.04587244987488,-0.017298486083746,-8.38211822509766,-3.81003403663635,-0.433070152997971,-8.11442089080811,-3.1936354637146,0.525815308094025,-8.23675060272217,-4.10207796096802,0.121550187468529,-7.73840141296387,-3.19897651672363,0.958669364452362,-8.11107063293457,-4.12815093994141,0.481665849685669,-8.24604320526123,-0.577287614345551,0.995464026927948,-8.42463302612305,0.153164371848106,0.894347965717316,-8.59025955200195,0.753413140773773,0.629709839820862,-8.78072452545166,1.29346311092377,0.247597619891167,-9.26115608215332,1.83518981933594,-0.359960824251175,-9.71281242370605,1.92458057403564,-1.06940853595734,-9.84065628051758,1.72258961200714,-1.52044475078583,-9.85390186309814,0.780522882938385,-2.24550247192383,-9.74722957611084,0.0391654707491398,-2.26296758651733,-9.68539142608643,-0.773595452308655,-2.20587778091431,-9.56930541992188,-1.67190170288086,-2.10549640655518,-9.34415531158447,-2.54098463058472,-1.74549722671509,-8.89970874786377,-3.18234515190125,-0.963524997234344,-8.5346508026123,-3.57418370246887,-0.0667138397693634,-8.26699352264404,-3.55714726448059,0.468929708003998,-7.96421432495117,-3.54026079177856,0.819772362709045,-7.92740678787231,0.707088768482208,1.58156073093414,-7.75378227233887,0.00106443359982222,1.93271040916443, --8.05583763122559,1.20495855808258,1.22469758987427,-8.14210319519043,1.61750769615173,0.71096408367157,-8.16171169281006,1.7912689447403,-0.287664800882339,-8.22274780273438,1.68595325946808,-1.28933835029602,-8.29430675506592,1.49998390674591,-1.83284974098206,-8.38248062133789,0.689188420772552,-2.5513768196106,-8.27509498596191,0.0865578576922417,-2.61773252487183,-8.13198947906494,-0.640048921108246,-2.55151271820068,-7.99686002731323,-1.46767807006836,-2.29771852493286,-7.82757043838501,-2.35106301307678,-1.98396968841553,-7.72032737731934,-3.2160120010376,-1.51325237751007,-7.59922313690186,-3.5660548210144,-0.895240902900696,-7.25170183181763,-3.8191237449646,-0.080264575779438,-7.26813745498657,-4.07855844497681,0.522395431995392,-7.39384269714355,-3.19537711143494,1.42772626876831,-7.82979583740234,-0.364156097173691,1.67531418800354,-8.06924343109131,0.483809947967529,1.41093015670776,-8.21260833740234,1.04184699058533,1.06150698661804,-8.34437274932861,1.51545989513397,0.578359603881836,-8.4775562286377,1.86450958251953,-0.338869124650955,-8.63701915740967,1.86411488056183,-1.27927339076996,-8.77889823913574,1.61289417743683,-1.75693702697754,-8.80913734436035,0.637523710727692,-2.40572357177734,-8.71837043762207,-0.017295029014349,-2.48584079742432,-8.5960578918457,-0.765541732311249,-2.38860511779785,-8.45878791809082,-1.60163044929504,-2.1997697353363,-8.2514705657959,-2.47778415679932,-1.95846939086914,-8.06235027313232,-3.24343061447144,-1.37888097763062,-7.85416507720947,-3.58851766586304,-0.519060909748077,-7.66326284408569,-3.90234065055847,0.0622665882110596,-7.58291912078857,-4.06812286376953,0.609413862228394,-7.50888061523438,-3.25812888145447,1.0896703004837,-9.6566915512085,1.19088184833527,-1.8183753490448,-9.8843297958374,1.36798620223999,-1.91549408435822,-9.49132633209229,1.44061803817749,-2.22823238372803,-8.83131885528564,1.17665469646454,-2.18280220031738,-8.40206527709961,1.12513959407806,-2.4439435005188,-9.01280212402344,1.49861598014832,-0.319701880216599,-9.02793121337891,1.62811434268951,-0.0880535915493965, --8.84053993225098,1.87228548526764,0.0113955168053508,-8.40198230743408,1.71313631534576,0.0522712357342243,-8.17350292205811,1.92774200439453,0.153999537229538,-9.4269962310791,1.69028949737549,-0.776199698448181,-9.4942569732666,1.9344927072525,-0.656897306442261,-9.22696495056152,2.24933004379272,-0.656028389930725,-8.54333114624023,1.91815054416656,-0.774208903312683,-8.18119716644287,1.72784447669983,-0.726136386394501,-8.10354804992676,-0.598297476768494,1.16011381149292,-8.31211471557617,0.242779210209846,1.04209768772125,-8.44231128692627,0.849660992622375,0.760851383209229,-8.68196392059326,1.44033968448639,0.326292425394058,-8.93920707702637,1.78261721134186,-0.00371122895739973,-9.13998317718506,2.00292658805847,-0.288590103387833,-9.37794971466064,2.15835881233215,-0.628212511539459,-9.61817836761475,2.14706921577454,-1.13845789432526,-9.76637268066406,1.89847612380981,-1.67890346050262,-9.82252788543701,1.48246681690216,-2.14551758766174,-9.74726104736328,0.808005571365356,-2.43034744262695,-9.63255500793457,0.0417290292680264,-2.51027631759644,-9.53864860534668,-0.784126937389374,-2.48973345756531,-9.41425514221191,-1.7335319519043,-2.31286644935608,-9.21683597564697,-2.66384983062744,-1.88666462898254,-8.82225894927979,-3.3023157119751,-1.12605535984039,-8.54668235778809,-3.78704833984375,-0.253021776676178,-8.30999088287354,-3.96418452262878,0.349801331758499,-8.05904769897461,-3.93425583839417,0.676900088787079,-7.4086275100708,-3.83309531211853,1.00440299510956,-7.32185649871826,-3.9814350605011,1.05311250686646,-7.92891502380371,-0.533270716667175,1.40354931354523,-8.16231250762939,0.280846804380417,1.16930663585663,-8.29424476623535,0.902041375637054,0.837104439735413,-8.45930671691895,1.44476139545441,0.432716220617294,-8.60464096069336,1.82067406177521,0.0668165907263756,-8.73596572875977,2.04094076156616,-0.317817211151123,-8.86012554168701,2.12431836128235,-0.757209897041321,-9.0003023147583,2.05361986160278,-1.26446914672852,-9.0885534286499,1.78043866157532,-1.78648042678833,-9.17437839508057,1.32840192317963,-2.20067262649536, --9.15705299377441,0.701567888259888,-2.45905184745789,-9.10205268859863,-0.0197196360677481,-2.52215170860291,-8.9765100479126,-0.817377388477325,-2.44046878814697,-8.7988338470459,-1.69314658641815,-2.28348827362061,-8.5914888381958,-2.63403868675232,-2.05287599563599,-8.39008140563965,-3.30210208892822,-1.32934653759003,-8.14418983459473,-3.73202967643738,-0.520102441310883,-7.99722480773926,-4.02059173583984,0.0193376336246729,-7.83655786514282,-4.15941476821899,0.57631641626358,-7.79645156860352,-3.87085318565369,0.891090989112854,-7.76105070114136,-3.61150407791138,0.96287477016449,-7.60530471801758,-2.64006400108337,1.13854217529297,-7.82325553894043,-2.67202138900757,0.606558561325073,-7.97257232666016,-2.59800100326538,0.232179641723633,-8.29879283905029,-2.29580998420715,-0.437075525522232,-8.63137722015381,-1.96803712844849,-0.847795426845551,-8.98237133026123,-1.40080368518829,-1.35610711574554,-9.12864112854004,-0.640572488307953,-1.67632460594177,-9.04624366760254,0.000659702287521213,-1.60365033149719,-8.97405529022217,0.927655398845673,-1.26031458377838,-8.96565628051758,0.479196697473526,-1.573317527771,-9.05311107635498,1.3847017288208,-0.999665081501007,-8.68396186828613,1.02303791046143,-0.437540769577026,-8.54509925842285,0.540164172649384,0.0178523622453213,-8.32595443725586,-0.00530096469447017,0.189795896410942,-8.13072490692139,-0.472302228212357,0.0815707743167877,-8.88009262084961,0.661886811256409,-0.813444375991821,-8.87235355377197,0.190655842423439,-1.02402782440186,-8.87643718719482,-0.164214730262756,-1.0551974773407,-8.77584648132324,-0.698870480060577,-1.18805432319641,-8.56459808349609,-1.25547587871552,-1.12378418445587,-8.17762088775635,-1.57266366481781,-0.675285816192627,-7.73883438110352,-1.95448303222656,-0.365754455327988,-8.55316352844238,0.482197731733322,-0.463631421327591,-8.52521228790283,0.0252473447471857,-0.47016829252243,-8.44647979736328,-0.480911135673523,-0.363637685775757,-8.3405876159668,-0.865411221981049,-0.539741635322571,-7.94676733016968,-1.13499295711517,0.0325417406857014, --7.83537864685059,-1.13797318935394,0.463114559650421,-7.48296165466309,-2.0682373046875,0.379103600978851,-7.63538074493408,-2.28205251693726,0.585019052028656,-7.8828558921814,-1.16284966468811,0.790033459663391,-7.85260820388794,-1.32400691509247,0.997490167617798,-7.67518758773804,-2.24807620048523,0.909905076026917,-7.97152614593506,-1.71899616718292,1.14518177509308,-7.95653247833252,-1.77144062519073,1.338507771492,-7.92291069030762,-1.95277452468872,1.33242797851563,-7.92445516586304,-1.94377028942108,1.14783787727356,-7.90483713150024,-1.38219797611237,1.13383054733276,-7.91120052337646,-1.40186202526093,1.38159692287445,-7.78627490997314,-2.13662910461426,1.40896236896515,-7.80494976043701,-2.07644081115723,1.1401903629303,-7.76078987121582,-1.29510390758514,1.79217278957367,-7.60379791259766,-2.31636095046997,1.69923138618469,-7.63846445083618,-0.756037175655365,2.44806170463562,-7.37063646316528,0.0888413712382317,4.29834508895874,-7.35888528823853,0.870295941829681,4.09235811233521,-7.32054853439331,1.71792018413544,4.00695180892944,-7.36008834838867,-3.32812237739563,2.1660840511322,-7.45038414001465,-2.65506076812744,2.43556666374207,-7.52005577087402,-1.92659544944763,2.74494981765747,-7.50882482528687,-1.2986718416214,3.23501682281494,-7.47103929519653,-0.786478817462921,3.72350430488586,-7.54952335357666,-0.241601139307022,3.3666718006134,-7.58496046066284,0.459071904420853,2.99241018295288,-7.61931896209717,1.19308066368103,2.64043354988098,-7.02118396759033,-4.588134765625,0.302804470062256,-7.28912258148193,-4.39174032211304,1.05844056606293,-7.30461883544922,-4.16600561141968,1.60434532165527,-7.31459140777588,-3.77218055725098,1.8762264251709,-7.33617830276489,-3.60372805595398,1.36917090415955,-7.32266807556152,-3.85119986534119,1.28592264652252,-7.01017570495605,-4.28947877883911,-0.434317737817764,-6.8834753036499,-5.18655681610107,-0.951007843017578,-7.28051567077637,-3.92623400688171,-1.33008432388306,-7.06664037704468,-4.79440832138062,-2.06348180770874,-7.35717153549194,-3.42611026763916,-2.13628530502319, --6.98475980758667,-3.95061850547791,-3.24926400184631,-7.39472436904907,-2.51122641563416,-2.81611680984497,-6.97631931304932,-2.93156123161316,-4.42347097396851,-7.57095432281494,-1.45944273471832,-3.26196646690369,-7.16307020187378,-1.51736581325531,-4.9548168182373,-7.773512840271,-0.493855684995651,-3.47009801864624,-7.40711784362793,-0.261860519647598,-5.11035680770874,-7.97595167160034,0.366927713155746,-3.54731202125549,-7.62014675140381,0.824904024600983,-5.06272649765015,-8.13054275512695,1.13887596130371,-3.43744373321533,-7.80506753921509,1.74159252643585,-4.78061580657959,-8.20302867889404,1.82057893276215,-3.1892557144165,-7.96303176879883,2.66389918327332,-4.27948951721191,-8.08812522888184,3.50882053375244,-3.44184327125549,-8.20641326904297,2.46463108062744,-2.56324315071106,-8.14090156555176,2.93849992752075,-1.68800926208496,-7.69823408126831,1.93010175228119,2.21435189247131,-7.82948350906372,2.56363320350647,1.59077310562134,-7.94811153411865,3.02071166038513,0.876743674278259,-8.02180099487305,3.2474730014801,0.120442882180214,-8.07208156585693,3.17632651329041,-0.772562444210052,-7.24890565872192,2.92218780517578,4.07521533966064,-7.58893871307373,3.81115937232971,2.86107921600342,-7.79884052276611,4.51589107513428,1.80858504772186,-7.94902515411377,4.97307729721069,0.562792003154755,-8.04456806182861,4.71072673797607,-0.80043226480484,-8.12451839447021,4.20733594894409,-2.17165398597717,-6.5429801940918,4.35666608810425,5.53339815139771,-5.83936452865601,5.31749963760376,6.95323324203491,-4.86636686325073,5.77119159698486,7.97111225128174,-3.79756140708923,5.85024261474609,8.73626232147217,-2.88964056968689,5.78035593032837,9.22798442840576,-2.05321335792542,5.54804086685181,9.56657791137695,-1.43283069133759,5.34053802490234,9.74070644378662,-0.906579077243805,5.14756155014038,9.83744335174561,-0.440911084413528,4.84742116928101,9.92636775970459,-0.51741760969162,9.11596298217773,8.07609844207764,-1.09320676326752,9.20700931549072,7.98415613174438,-1.76013934612274,9.29360103607178,7.84114980697632, --2.50077509880066,9.37444686889648,7.58180999755859,-3.45287466049194,9.37937068939209,7.1098518371582,-4.42452621459961,9.19738578796387,6.52355813980103,-5.6390528678894,8.668625831604,5.56420850753784,-6.60955381393433,7.86684608459473,4.36638593673706,-7.37164115905762,6.32191371917725,2.9875328540802,-0.504186153411865,7.12358570098877,9.1892728805542,-1.0216156244278,7.20282888412476,9.14141368865967,-1.59682321548462,7.36775684356689,9.01309108734131,-2.30822396278381,7.53479909896851,8.79819869995117,-3.19743204116821,7.63384580612183,8.40076923370361,-4.19189023971558,7.58147573471069,7.77820682525635,-5.25280475616455,7.27345371246338,6.87509870529175,-6.21244335174561,6.61381769180298,5.77043581008911,-6.98111343383789,5.40456295013428,4.37023735046387,-7.62035131454468,7.41489553451538,1.09772956371307,-6.92244052886963,8.67479038238525,2.88742017745972,-6.02230930328369,9.61266899108887,3.94371747970581,-4.84872579574585,10.4076776504517,4.84173250198364,-3.88288593292236,10.7977638244629,5.37367582321167,-2.908931016922,10.9924812316895,5.80038690567017,-2.08697986602783,11.0666513442993,6.05755472183228,-1.33430349826813,11.0534925460815,6.24619197845459,-0.653030693531036,11.0219612121582,6.33474349975586,-6.50100374221802,-3.37295937538147,-5.94551467895508,-6.6031608581543,-1.84196555614471,-6.56225490570068,-5.31550264358521,-3.66249299049377,-7.65658092498779,-5.44049072265625,-1.97767984867096,-8.24058628082275,-3.70406603813171,-3.83193826675415,-8.76936340332031,-3.93267416954041,-1.91054832935333,-9.32651233673096,-4.48633575439453,-3.77395033836365,-8.33473014831543,-4.70650720596313,-1.9571076631546,-8.8559513092041,-5.9597339630127,-3.52089285850525,-6.88484239578247,-6.06760025024414,-1.92599403858185,-7.47396421432495,-4.15610122680664,0.0726640149950981,-9.77432346343994,-4.86433267593384,-0.0820099264383316,-9.25381183624268,-5.57446050643921,-0.249779000878334,-8.63652420043945,-6.93286228179932,-0.384116500616074,-6.53490591049194,-6.32836961746216,-0.361771166324615,-7.70779514312744, --4.38082361221313,2.18039727210999,-9.84704875946045,-5.06170415878296,1.88383483886719,-9.30503749847412,-5.7366681098938,1.55229163169861,-8.68006324768066,-6.57100296020508,1.23749625682831,-7.64973497390747,-7.18364763259888,0.982836008071899,-6.41935920715332,-4.66040945053101,4.36260938644409,-9.39548778533936,-5.43802547454834,3.91017746925354,-8.80759620666504,-6.10085916519165,3.39812302589417,-8.18937969207764,-6.81753158569336,2.82796263694763,-7.25026369094849,-7.37996053695679,2.28183484077454,-6.1011643409729,-5.12424755096436,6.58037996292114,-8.45871829986572,-5.86592388153076,5.93916893005371,-7.88381290435791,-6.51570987701416,5.23922157287598,-7.28946113586426,-7.13362312316895,4.37973070144653,-6.41931915283203,-7.59203433990479,3.51524090766907,-5.4167013168335,-5.43766069412231,8.64241790771484,-6.8898286819458,-6.21404409408569,7.85274982452393,-6.45617389678955,-6.86771774291992,7.00395059585571,-5.98439693450928,-7.42110252380371,5.84361457824707,-5.29573011398315,-7.81795406341553,4.65318918228149,-4.39308929443359,-5.66820621490479,10.1276111602783,-4.72834587097168,-6.5164942741394,9.25273895263672,-4.42417144775391,-7.17343854904175,8.28569984436035,-4.03828477859497,-7.68428468704224,7.02488470077515,-3.47118353843689,-8.00661754608154,5.63727521896362,-2.72344303131104,-5.62916088104248,11.0652112960815,-2.22535014152527,-6.58144807815552,10.1174831390381,-2.12496757507324,-7.18665170669556,9.17011833190918,-1.92709672451019,-7.67361164093018,7.81409406661987,-1.61308932304382,-7.95512533187866,6.38670635223389,-1.10849297046661,-7.48661661148071,8.35696220397949,-0.0242236163467169,-5.36135482788086,11.3852396011353,0.305533826351166,-6.33773422241211,10.5318584442139,0.135644838213921,-6.94026803970337,9.65329074859619,0.0726752132177353,-6.95829677581787,9.24563407897949,1.72573637962341,-6.17615461349487,10.3094024658203,2.19222164154053,-5.11412286758423,11.2042589187622,2.70831894874573,-1.04318618774414,-3.90684485435486,-9.57221412658691,-1.13791787624359,-1.84333157539368,-10.353687286377, --1.29253804683685,0.315788835287094,-11.085542678833,-1.41271209716797,2.72090673446655,-11.2884521484375,-1.53582167625427,5.30492305755615,-10.8696126937866,-1.7382435798645,8.02209091186523,-9.89536476135254,-1.78098905086517,10.390025138855,-7.96726417541504,-1.71314287185669,12.0455827713013,-5.30744695663452,-1.59504652023315,12.9070796966553,-2.25943613052368,-1.53724265098572,12.9241800308228,0.852242946624756,-6.72695207595825,-4.68151807785034,-4.4121413230896,-6.90901041030884,-5.72505712509155,-2.66515469551086,-6.81298017501831,-6.25775909423828,-1.14970350265503,-0.496038883924484,-3.80822563171387,-9.65039348602295,-0.565522968769073,-1.81483423709869,-10.4103507995605,-0.637238025665283,0.32974910736084,-11.1553335189819,-0.709146916866302,2.77228307723999,-11.3831214904785,-0.787863969802856,5.40320062637329,-10.9760103225708,-0.889000713825226,8.15651321411133,-10.0839538574219,-0.861368179321289,10.5052967071533,-8.0781078338623,-0.83338987827301,12.1373767852783,-5.34705066680908,-0.807116091251373,12.9535961151123,-2.26549959182739,-0.778051435947418,13.0002193450928,0.870301723480225,-2.26013684272766,-3.8938570022583,-9.32493686676025,-2.43823719024658,-1.86028254032135,-10.0303478240967,-2.68087267875671,0.260054409503937,-10.6602001190186,-2.8737952709198,2.5838885307312,-10.7948656082153,-3.07526302337646,5.02608108520508,-10.3114147186279,-3.39611577987671,7.53373670578003,-9.3833122253418,-3.56346130371094,9.79408168792725,-7.57969760894775,-3.49736428260803,11.5034608840942,-5.15501117706299,-3.32358813285828,12.5054578781128,-2.2839457988739,-3.15594434738159,12.6157512664795,0.672657787799835,-0.738614797592163,12.4994955062866,3.8485631942749,-1.49879384040833,12.4474573135376,3.80250239372253,-2.94505977630615,-3.86894845962524,-9.09688091278076,-3.17154812812805,-1.87411487102509,-9.71990203857422,-3.40799689292908,0.182872295379639,-10.2753419876099,-3.61800932884216,2.4148485660553,-10.3745346069336,-3.88968443870544,4.74185466766357,-9.87769603729248,-4.27451515197754,7.13207197189331,-8.99654769897461, --4.49432039260864,9.30913543701172,-7.28674602508545,-4.54035806655884,10.9403295516968,-4.96742153167725,-4.46231174468994,11.9082851409912,-2.26144361495972,-4.19918441772461,12.1256256103516,0.515531361103058,-4.09540367126465,11.7629451751709,3.10842871665955,-3.14920330047607,12.1326732635498,3.42246961593628,-1.65472447872162,-3.89587569236755,-9.47716331481934,-1.75957727432251,-1.85504877567291,-10.2373600006104,-1.96312272548676,0.299863189458847,-10.9261789321899,-2.13375473022461,2.68816900253296,-11.1015186309814,-2.27932524681091,5.20627212524414,-10.6481056213379,-2.56503582000732,7.8169584274292,-9.65657138824463,-2.68940830230713,10.1434297561646,-7.78519916534424,-2.60994911193848,11.8307313919067,-5.24713611602783,-2.472416639328,12.7737789154053,-2.30065274238586,-2.33876633644104,12.8427362442017,0.746545791625977,-2.29699468612671,12.3575115203857,3.62430381774902,-0.517588376998901,-5.26805114746094,-9.33380603790283,-1.08643567562103,-5.23129749298096,-9.29151821136475,-1.74097418785095,-5.15038776397705,-9.19673824310303,-2.42765736579895,-5.08308553695679,-9.04594707489014,-3.15881657600403,-5.02853727340698,-8.81332302093506,-3.93239068984985,-4.9757399559021,-8.46383285522461,-4.73228025436401,-4.92406463623047,-7.95413875579834,-5.50995969772339,-4.86525535583496,-7.17065668106079,-6.20486640930176,-4.79087162017822,-6.10080003738403,-8.64319515228271,-13.7613410949707,-6.49234867095947,-8.45827865600586,-13.2992315292358,-7.70548915863037,-7.77010488510132,-13.0706129074097,-8.68906593322754,-6.9291787147522,-13.0040559768677,-9.5849781036377,-5.94925403594971,-12.992039680481,-10.2592067718506,-4.99908208847046,-12.9968252182007,-10.7301349639893,-4.06416320800781,-13.0407457351685,-11.0760583877563,-3.09096384048462,-13.0979118347168,-11.3484125137329,-2.01616597175598,-13.1434345245361,-11.5675439834595,-0.897775232791901,-13.1605777740479,-11.6888275146484,-8.4887523651123,-14.6470861434937,-5.17452192306519,-8.03654384613037,-15.6640710830688,-4.20482587814331,-7.31738233566284,-16.5804405212402,-3.35303926467896, --6.74378490447998,-17.5974903106689,-2.52438831329346,-6.32377433776855,-18.2904396057129,-1.95093476772308,-5.98745822906494,-18.9915714263916,-1.41046440601349,-5.47605514526367,-19.6213970184326,-0.822464108467102,-4.90706348419189,-20.2975883483887,-0.105866722762585,-4.28194427490234,-20.941780090332,0.766014516353607,-3.81215596199036,-21.2985401153564,1.50899231433868,-3.3359682559967,-21.7558116912842,1.85429203510284,-2.81476855278015,-22.0949058532715,2.03073906898499,-2.35492038726807,-22.3543949127197,2.18042707443237,-1.7653636932373,-22.6129531860352,2.30901074409485,-1.22038698196411,-22.7748050689697,2.32924127578735,-0.85540908575058,-22.9290084838867,2.25529050827026,-0.36254608631134,-23.1343860626221,2.10908079147339,-0.625648081302643,-7.37590169906616,-9.60719299316406,-1.32410180568695,-7.34512948989868,-9.55502128601074,-2.05779266357422,-7.34163665771484,-9.42951202392578,-2.81746506690979,-7.32136392593384,-9.22162342071533,-3.59860324859619,-7.28751516342163,-8.92420864105225,-4.38082933425903,-7.23829650878906,-8.47921657562256,-5.13177537918091,-7.17587614059448,-7.84253072738647,-5.77947664260864,-7.19315910339355,-6.97707557678223,-6.34135818481445,-7.28495264053345,-5.93021202087402,-6.77100849151611,-7.48039674758911,-4.6926383972168,-6.84615612030029,-7.86087083816528,-3.35218596458435,-6.78169870376587,-8.35580444335938,-2.06780433654785,-6.40048694610596,-8.91832733154297,-0.943061053752899,-5.79883766174316,-9.52748394012451,-0.11037153750658,-5.10273265838623,-10.1021938323975,0.494475066661835,-4.39243078231812,-10.6278562545776,0.989344716072083,-3.71881508827209,-11.0863447189331,1.52291250228882,-3.13284301757813,-11.5497035980225,2.12970852851868,-2.74229621887207,-11.9313306808472,2.70095419883728,-2.32388377189636,-12.3248901367188,3.21492695808411,-1.94650614261627,-12.5904026031494,3.57901430130005,-1.57353568077087,-12.7477254867554,3.90267062187195,-1.18646287918091,-12.8427982330322,4.1576943397522,-0.891132175922394,-12.8845291137695,4.30355882644653,-0.64113837480545,-12.891077041626,4.40399074554443, --0.39007779955864,-12.905122756958,4.46603679656982,-0.179619997739792,-12.9209518432617,4.48812198638916,-0.563388705253601,-6.28740692138672,-9.4006404876709,-1.21184766292572,-6.32549619674683,-9.34765338897705,-1.88929092884064,-6.27402353286743,-9.21586894989014,-2.60735654830933,-6.22267913818359,-9.01738357543945,-3.36249756813049,-6.16755390167236,-8.75267696380615,-4.14875459671021,-6.10737609863281,-8.37246036529541,-4.9389271736145,-6.06502532958984,-7.80907344818115,-5.64825057983398,-6.05284976959229,-6.97354698181152,-6.27506494522095,-6.09688806533813,-5.89902639389038,-6.74664688110352,-6.25517225265503,-4.52713060379028,-6.8474063873291,-6.77249336242676,-3.04118299484253,-6.82615423202515,-7.29014492034912,-1.64151537418365,-6.31480979919434,-7.76024484634399,-0.429300457239151,-5.68121862411499,-8.37579917907715,0.379459589719772,-5.09699296951294,-8.88006687164307,1.06801092624664,-4.46523904800415,-9.31941509246826,1.70946669578552,-4.05541086196899,-9.87843418121338,2.41101765632629,-3.68897819519043,-10.443320274353,3.13330888748169,-3.23865914344788,-10.8654813766479,3.92362713813782,-2.6061635017395,-11.2555894851685,4.53100872039795,-2.02840113639832,-11.5209093093872,4.93467092514038,-1.52248239517212,-11.6290349960327,5.31799459457397,-1.14085018634796,-11.6908254623413,5.685218334198,-0.862997770309448,-11.7362089157104,6.03002405166626,-0.605921387672424,-11.7760925292969,6.30243301391602,-0.350636273622513,-11.8051671981812,6.50244760513306,-0.118107497692108,-11.8193836212158,6.51914405822754,-0.72603440284729,-9.14775466918945,-10.0981168746948,-1.51200354099274,-9.19240188598633,-10.0465278625488,-2.32049226760864,-9.17105007171631,-9.88348770141602,-3.10815048217773,-9.09110164642334,-9.61295890808105,-3.89651775360107,-9.06318092346191,-9.25549983978271,-4.68364000320435,-9.12973690032959,-8.76784133911133,-5.39656257629395,-9.20655632019043,-8.07389163970947,-5.94506978988647,-9.33605480194092,-7.20093536376953,-6.39533710479736,-9.4915828704834,-6.2245512008667,-6.7011399269104,-9.6498556137085,-5.11427545547485, --6.79371881484985,-9.98949527740479,-3.93581223487854,-6.66381597518921,-10.5243453979492,-2.8044912815094,-6.22340726852417,-11.1233015060425,-1.82647752761841,-5.80161666870117,-11.8315048217773,-0.991313517093658,-5.27317380905151,-12.5326900482178,-0.33777716755867,-4.66736888885498,-13.1873483657837,0.177737548947334,-4.01640844345093,-13.7544431686401,0.620997488498688,-3.31818199157715,-14.2157945632935,1.00182127952576,-2.78540349006653,-14.5174942016602,1.25320279598236,-2.27392053604126,-14.7957696914673,1.52346575260162,-1.76376962661743,-15.0323362350464,1.90779769420624,-1.4566867351532,-15.1567716598511,2.1547839641571,-1.14831292629242,-15.2191495895386,2.40677833557129,-0.880245089530945,-15.2733564376831,2.56835436820984,-0.643745899200439,-15.3090209960938,2.69347929954529,-0.40669858455658,-15.3267621994019,2.75405740737915,-0.150777891278267,-15.3646907806396,2.76293134689331,-0.781291663646698,-10.3894596099854,-10.448634147644,-1.62238729000092,-10.3734064102173,-10.354660987854,-2.47534418106079,-10.2873373031616,-10.1611289978027,-3.28743171691895,-10.2262086868286,-9.87693691253662,-4.0867748260498,-10.2447195053101,-9.51634502410889,-4.87640619277954,-10.3242082595825,-9.03165531158447,-5.61750507354736,-10.4153423309326,-8.32294082641602,-6.1517915725708,-10.5465068817139,-7.44881343841553,-6.54033660888672,-10.7677879333496,-6.51932191848755,-6.70928955078125,-10.986346244812,-5.45079612731934,-6.8463339805603,-11.4628429412842,-4.35247278213501,-6.65667104721069,-11.9765958786011,-3.28637266159058,-6.08158683776855,-12.5608568191528,-2.4070348739624,-5.63037824630737,-13.1747341156006,-1.52856910228729,-5.1600284576416,-13.9945020675659,-0.966353237628937,-4.68250942230225,-14.7705202102661,-0.467575043439865,-4.17905330657959,-15.3869075775146,0.0480929762125015,-3.59335565567017,-15.9162015914917,0.523802161216736,-3.04364395141602,-16.3260154724121,0.831762075424194,-2.42143297195435,-16.7167434692383,1.08995759487152,-1.98372232913971,-16.9523372650146,1.26455080509186,-1.59317064285278,-17.1624355316162,1.44275057315826, --1.21537566184998,-17.3552722930908,1.60568916797638,-0.864116370677948,-17.4638252258301,1.74329102039337,-0.566159963607788,-17.5375156402588,1.82823538780212,-0.358255118131638,-17.5536861419678,1.87577652931213,-0.120445497334003,-17.5740985870361,1.90244162082672,-0.827059805393219,-11.777400970459,-10.9927101135254,-1.78073978424072,-11.7241125106812,-10.8770484924316,-2.78206324577332,-11.7376880645752,-10.6820974349976,-3.64758586883545,-11.7248067855835,-10.4047145843506,-4.46547555923462,-11.7181310653687,-10.0473127365112,-5.28482007980347,-11.7900047302246,-9.61402893066406,-6.19617986679077,-11.8668336868286,-8.87957954406738,-6.80679321289063,-11.9710521697998,-7.94225406646729,-7.17634248733521,-12.1400594711304,-7.03443813323975,-7.25316190719604,-12.5044260025024,-5.96344804763794,-7.27533388137817,-13.0910673141479,-4.77431774139404,-6.8624472618103,-13.7653150558472,-3.84674096107483,-6.18089771270752,-14.4139165878296,-3.0373170375824,-5.60068082809448,-15.1557779312134,-2.3195641040802,-5.06253862380981,-15.9161586761475,-1.78069031238556,-4.59118938446045,-16.6205387115479,-1.27265441417694,-4.16988658905029,-17.2565898895264,-0.780969023704529,-3.73949885368347,-17.8339920043945,-0.224628210067749,-3.21607780456543,-18.4729709625244,0.400370657444,-2.80481314659119,-18.9583435058594,0.781409800052643,-2.46587800979614,-19.3676662445068,1.06315422058105,-2.0509467124939,-19.6987934112549,1.3283816576004,-1.65970063209534,-19.945442199707,1.46141600608826,-1.21194422245026,-20.0902576446533,1.41052174568176,-0.84194952249527,-20.2194232940674,1.33887577056885,-0.541794419288635,-20.3799839019775,1.29653906822205,-0.203980699181557,-20.5156555175781,1.26132202148438,-0.643635272979736,-8.22926044464111,-9.85444641113281,-1.39376223087311,-8.18760395050049,-9.78995132446289,-2.171799659729,-8.17779922485352,-9.64373016357422,-2.9530668258667,-8.15102100372314,-9.41429328918457,-3.74704670906067,-8.14085292816162,-9.09621715545654,-4.5271954536438,-8.13263034820557,-8.62427616119385,-5.26237392425537,-8.1309642791748,-7.9494104385376, --5.8615984916687,-8.1704626083374,-7.07688856124878,-6.37500095367432,-8.34739589691162,-6.07270526885986,-6.74229383468628,-8.53392124176025,-4.88599109649658,-6.83558368682861,-8.86042308807373,-3.62137317657471,-6.73172521591187,-9.36280155181885,-2.40425562858582,-6.34451007843018,-9.97914695739746,-1.35259056091309,-5.85404062271118,-10.6383562088013,-0.481644362211227,-5.1982889175415,-11.2626161575317,0.134075298905373,-4.50275993347168,-11.8434352874756,0.599624037742615,-3.78320741653442,-12.3431959152222,1.00235331058502,-3.12188076972961,-12.812237739563,1.44490206241608,-2.68707728385925,-13.1786756515503,1.80647385120392,-2.26843738555908,-13.5017595291138,2.184974193573,-1.8536434173584,-13.7794160842896,2.59936094284058,-1.50331711769104,-13.9578886032104,2.98683619499207,-1.18794131278992,-14.1320238113403,3.33676099777222,-0.953288018703461,-14.2412595748901,3.54889917373657,-0.621793150901794,-14.3140735626221,3.72880434989929,-0.424510806798935,-14.3100891113281,3.79969429969788,-0.173259794712067,-14.295295715332,3.87241649627686,-0.686224699020386,-3.31110382080078,11.4172983169556,-0.803417325019836,-3.27108144760132,11.3626937866211,-0.946941077709198,-3.25326538085938,11.2468614578247,-1.0470564365387,-3.2831404209137,11.1011810302734,-1.09913229942322,-3.31128525733948,10.9977207183838,-1.15104711055756,-3.34290099143982,10.9002914428711,-0.611746072769165,-3.34157705307007,11.3992328643799,-0.532138586044312,-3.39445948600769,11.3600931167603,-0.504551589488983,-3.43966221809387,11.2966022491455,-0.479691803455353,-3.43749380111694,11.1914520263672,-0.52191436290741,-3.41624903678894,11.0354175567627,-0.658787488937378,-3.38174843788147,10.8952512741089,-0.840401828289032,-3.3503565788269,10.8026313781738,-0.992791056632996,-3.34739780426025,10.7887210845947,-1.13266718387604,-3.37302184104919,10.8144035339355,-0.678815186023712,-3.30243062973022,11.1854343414307,-0.792406320571899,-3.27622985839844,11.0769290924072,-0.907720804214478,-3.27583456039429,10.9785804748535,-1.0204222202301,-3.30554914474487,10.9048337936401, --0.595511674880981,-3.34261322021484,11.2803497314453,9.09494701772928e-12,-4.76141214370728,10.3938007354736,3.63797880709171e-12,-7.40669536590576,10.3991527557373,-0.292443186044693,-4.70302867889404,10.411449432373,-2.75259256362915,-5.40841817855835,9.14834403991699,-3.09797310829163,-5.70720195770264,8.96552085876465,-1.85865950584412,-4.97731590270996,9.77219295501709,-2.34341382980347,-5.19857597351074,9.45803833007813,-1.36100649833679,-4.80800199508667,10.1225099563599,-0.98523885011673,-4.71654033660889,10.2899417877197,-0.604986190795898,-4.68483877182007,10.3602104187012,-3.37384390830994,-5.93749809265137,8.8080997467041,-3.49813437461853,-6.3752760887146,8.79473876953125,-3.4315812587738,-6.67488241195679,8.79679489135742,-3.16283941268921,-7.06501150131226,8.80908107757568,-2.72594547271729,-7.41771364212036,9.13029098510742,-2.20925116539001,-7.62382793426514,9.44645118713379,-1.79464256763458,-7.65139579772949,9.76041889190674,-1.3591480255127,-7.64054775238037,10.1210842132568,-0.982116758823395,-7.51274871826172,10.2800188064575,-0.607004284858704,-7.40227365493774,10.3452959060669,-0.28584498167038,-7.38006734848022,10.3803043365479,-2.18278728425503e-11,-6.26077890396118,10.7972431182861,-0.30194216966629,-6.24943542480469,10.8142013549805,-0.624637544155121,-6.24589967727661,10.7649621963501,-1.0172404050827,-6.24143505096436,10.697437286377,-1.40521359443665,-6.2437744140625,10.5365409851074,-1.88000738620758,-6.29273557662964,10.1998977661133,-2.27079916000366,-6.35514211654663,9.89800643920898,-2.61869764328003,-6.34562492370605,9.6003999710083,-2.96545195579529,-6.33925914764404,9.38929843902588,-3.09596276283264,-6.32578992843628,9.32376480102539,-3.1649911403656,-6.37896108627319,9.31092548370361,-3.11799287796021,-6.41603517532349,9.31290149688721,-2.98541688919067,-6.43015575408936,9.32470798492432,-2.60040497779846,-6.32098340988159,9.58815670013428,-2.22038984298706,-6.32131481170654,9.89197540283203,-1.8529360294342,-6.3095908164978,10.1936893463135,-1.40329599380493,-6.25318431854248,10.5402755737305, --1.01401877403259,-6.20932769775391,10.7413091659546,-0.626720547676086,-6.19377565383911,10.8380336761475,-0.295129060745239,-6.19072103500366,10.871675491333,-2.18278728425503e-11,-6.19806957244873,10.8897876739502,-2.18278728425503e-11,-6.07349538803101,10.576208114624,-0.298713117837906,-6.05210113525391,10.5934009552002,-0.617956161499023,-6.04542541503906,10.5434818267822,-1.00636005401611,-6.05155611038208,10.4750242233276,-1.39018452167511,-6.04279756546021,10.3119068145752,-1.87275123596191,-6.04466199874878,9.97061347961426,-2.295485496521,-6.07539176940918,9.66455364227295,-2.66421794891357,-6.12633037567139,9.36283683776855,-3.01050567626953,-6.17132997512817,9.17846012115479,-3.190434217453,-6.20648145675659,9.08168697357178,-3.27824974060059,-6.35046339035034,9.06867027282715,-3.22460222244263,-6.44936037063599,9.07067394256592,-3.04573488235474,-6.54443311691284,9.08264446258545,-2.64308500289917,-6.56647920608521,9.3955774307251,-2.21660256385803,-6.56374502182007,9.70359134674072,-1.83311820030212,-6.52105617523193,10.0094718933105,-1.38828682899475,-6.42269420623779,10.3608446121216,-1.00317096710205,-6.3660306930542,10.5475664138794,-0.620017945766449,-6.32859325408936,10.6336011886597,-0.291972994804382,-6.32110595703125,10.6677074432373,-1.49229890666902e-08,-6.33198976516724,10.6860675811768,-8.37113500113226e-30,-3.1514904499054,9.10970115661621,-0.333059281110764,-3.04259610176086,9.12734985351563,-3.13488340377808,-4.35821485519409,7.8642463684082,-3.52823090553284,-4.91547203063965,7.6814227104187,-2.11679720878601,-3.55416989326477,8.48809337615967,-2.66887521743774,-3.96684694290161,8.1739501953125,-1.55002808570862,-3.23837113380432,8.83841133117676,-1.12207198143005,-3.06779313087463,9.00584316253662,-0.689009308815002,-3.00867295265198,9.07611083984375,-3.84241533279419,-5.34498262405396,7.524001121521,-3.98396801948547,-6.1614818572998,7.51064014434814,-3.90817141532898,-6.72027730941772,7.51269578933716,-3.60210609436035,-7.44788789749146,7.5249810218811,-3.10453486442566,-8.10571765899658,7.84619045257568, --2.51607990264893,-8.49013233184814,8.16235160827637,-2.04389142990112,-8.54155158996582,8.47632026672363,-1.54791212081909,-8.52130222320557,8.83698463439941,-1.11851668357849,-8.28295230865479,8.99592018127441,-0.691307425498962,-8.07691287994385,9.06119632720947,-0.325544089078903,-8.03549098968506,9.09620571136475,-6.89870739186854e-30,-8.0851583480835,9.11505317687988,-7.68209970929043e-30,-3.25620675086975,3.18448519706726,-0.292443186044693,-3.10722589492798,3.15491962432861,-2.75259256362915,-5.52335596084595,2.55872249603271,-3.09797310829163,-6.34004735946655,2.62602686882019,-1.85865950584412,-4.13366317749023,2.78859424591064,-2.34341382980347,-4.8433723449707,2.67609429359436,-1.36100649833679,-3.52603387832642,2.97449827194214,-0.98523885011673,-3.21061944961548,3.05512428283691,-0.604986190795898,-3.09410953521729,3.09418106079102,-3.37384390830994,-6.97919702529907,2.66290640830994,-3.49813437461853,-8.0264310836792,2.99264764785767,-3.4315812587738,-8.73656749725342,3.22848439216614,-3.16283941268921,-9.65559577941895,3.54429864883423,-2.72594547271729,-10.3044757843018,4.11142539978027,-2.20925116539001,-10.608268737793,4.55950307846069,-1.79464256763458,-10.4894304275513,4.86614847183228,-1.3591480255127,-10.2519884109497,5.18520212173462,-0.982116758823395,-9.85527992248535,5.22973537445068,-0.607004284858704,-9.55466938018799,5.2027440071106,-0.28584498167038,-9.48139667510986,5.21719026565552,-7.2707120453727e-30,-9.5335636138916,5.25510406494141,-8.67361737988404e-19,-13.5260343551636,-0.881753981113434,-0.00993838906288147,-13.5255155563354,-0.883645474910736,-0.0935440063476563,-13.5425844192505,-0.867419004440308,-0.105281591415405,-13.5461883544922,-0.858322620391846,-0.0631645917892456,-13.5336780548096,-0.87827080488205,-0.0796384811401367,-13.5381870269775,-0.872663080692291,-0.0462523698806763,-13.5290946960449,-0.881868422031403,-0.0334823727607727,-13.5268440246582,-0.883949220180511,-0.0205598473548889,-13.5259380340576,-0.884593188762665,-0.114656686782837,-13.5491352081299,-0.851415693759918, --0.1188805103302,-13.5517959594727,-0.836480975151062,-0.116618633270264,-13.5535011291504,-0.82618921995163,-0.107485771179199,-13.5556221008301,-0.812727689743042,-0.0926384925842285,-13.554347038269,-0.798599600791931,-0.0750792026519775,-13.5522794723511,-0.789532661437988,-0.0609891414642334,-13.5492067337036,-0.786605060100555,-0.0461891889572144,-13.545431137085,-0.784700572490692,-0.0333762168884277,-13.5430583953857,-0.788081586360931,-0.0206284523010254,-13.5417499542236,-0.791459500789642,-0.00971415638923645,-13.5412616729736,-0.792000591754913,-6.50521303491303e-19,-13.541220664978,-0.790968060493469,-8.40436481583679e-30,-5.408447265625,-0.584822595119476,-0.292443186044693,-5.27976083755493,-0.64216148853302,-0.604986190795898,-5.2786602973938,-0.694170773029327,-0.98523885011673,-5.39025735855103,-0.699558854103088,-1.36100649833679,-5.68794107437134,-0.693856835365295,-1.85865950584412,-6.26679515838623,-0.70758056640625,-2.34341382980347,-6.92446565628052,-0.639083087444305,-2.75259256362915,-7.55628824234009,-0.581198334693909,-3.09797310829163,-8.27844047546387,-0.343432426452637,-3.37384390830994,-8.84640026092529,-0.170109942555428,-3.49813437461853,-9.7295389175415,0.331425666809082,-3.4315812587738,-10.3262414932251,0.681404411792755,-3.16283941268921,-11.0966196060181,1.14289796352386,-2.72594547271729,-11.5799207687378,1.74674069881439,-2.20925116539001,-11.7740507125854,2.17691659927368,-1.79464256763458,-11.6132354736328,2.39793872833252,-1.3591480255127,-11.3436212539673,2.60234642028809,-0.982116758823395,-10.9792337417603,2.54923462867737,-0.607004284858704,-10.7138185501099,2.45992803573608,-0.28584498167038,-10.6454162597656,2.45513987541199,-6.44911484499541e-30,-10.6856203079224,2.49748229980469,-8.46744353541378e-30,-2.38399577140808,6.65999889373779,-0.35059916973114,-2.23496174812317,6.65812683105469,-0.725294470787048,-2.20487284660339,6.60296058654785,-1.18116390705109,-2.30328869819641,6.5455961227417,-1.63165736198425,-2.57703590393066,6.41405296325684,-2.22827434539795,-3.09546685218811,6.13171005249023, --2.80942678451538,-3.73151898384094,5.90092802047729,-3.29997563362122,-4.33814430236816,5.67074728012085,-3.71403884887695,-5.12747049331665,5.59133529663086,-4.04476928710938,-5.74061155319214,5.51424503326416,-4.19378137588501,-6.82378721237183,5.64273500442505,-4.11398839950562,-7.56185483932495,5.7414436340332,-3.79180479049683,-8.5201358795166,5.87921953201294,-3.26802968978882,-9.29712581634521,6.30210304260254,-2.64858508110046,-9.71415996551514,6.67280054092407,-2.15152645111084,-9.69162273406982,6.98374176025391,-1.62942981719971,-9.5609073638916,7.32720279693604,-1.17742097377777,-9.20002269744873,7.43883895874023,-0.727713644504547,-8.90883350372314,7.46596908569336,-0.342687785625458,-8.8439884185791,7.49247550964355,-7.04662934402686e-30,-8.90421962738037,7.51920700073242,2.00250458717346,0.523097336292267,8.87062835693359,2.1803252696991,0.847869992256165,9.01435661315918,2.45348072052002,1.07608306407928,9.161452293396,2.80429220199585,1.31502938270569,9.18416976928711,3.24503231048584,1.44207084178925,9.19375324249268,3.67122340202332,1.44853556156158,9.18338680267334,4.26905584335327,1.27608478069305,9.04033946990967,4.46412134170532,1.17421388626099,8.91200733184814,4.66720199584961,1.03999423980713,8.7421875,4.81066989898682,0.882382690906525,8.55978107452393,4.95971488952637,0.742477357387543,8.36825370788574,4.02485704421997,1.38145530223846,9.14638423919678,2.3384485244751,0.405811786651611,8.93466663360596,2.6356348991394,0.31831955909729,9.0864143371582,2.09942173957825,0.436015367507935,8.84390926361084,2.05044317245483,0.651455581188202,8.8955192565918,2.98736834526062,0.1971175968647,9.16323280334473,3.43918704986572,0.139508381485939,9.19739627838135,3.95783829689026,0.168413385748863,9.12354564666748,4.31833744049072,0.267997473478317,8.92407608032227,4.50838804244995,0.381670862436295,8.79480457305908,4.70505714416504,0.494918584823608,8.61862087249756,4.82556009292603,0.604517161846161,8.47788906097412,4.90757703781128,0.660237073898315,8.40587043762207,4.87714147567749,0.805868089199066,8.46089935302734, -0.612867474555969,-2.84146428108215,12.3725204467773,0.573357403278351,-2.41796708106995,12.1977033615112,0.307788580656052,-6.17764711380005,11.0916528701782,0.27788320183754,-5.46316385269165,11.4983806610107,2.88388824462891,-6.38666200637817,9.59838581085205,3.01232433319092,-6.26241874694824,9.62956809997559,2.68976449966431,-6.14416790008545,9.95242214202881,2.53629064559937,-6.35069847106934,9.90819454193115,2.03534626960754,-5.8695707321167,10.6358270645142,1.89314687252045,-6.30770111083984,10.4927043914795,1.58972299098969,-5.65780639648438,10.9632539749146,1.43242311477661,-6.25313091278076,10.8209323883057,1.16811096668243,-5.45607137680054,11.2142038345337,1.03693842887878,-6.18306255340576,10.9778051376343,0.696184992790222,-5.38955974578857,11.4173488616943,0.636731863021851,-6.1703519821167,11.0436429977417,2.22610545158386,-6.33429622650146,10.1983613967896,2.38717675209045,-6.02569723129272,10.3152656555176,3.06913900375366,-6.31856966018677,9.58637714385986,2.92493796348572,-6.38203716278076,9.58940601348877,3.10725355148315,-6.40046215057373,9.54837131500244,2.95995092391968,-6.39087057113647,9.57688808441162,3.04447412490845,-6.47598838806152,9.52670001983643,2.92498898506165,-6.40054750442505,9.57881355285645,2.94016814231873,-6.52099895477295,9.5333776473999,2.87621879577637,-6.40796041488647,9.5903263092041,2.52313947677612,-6.33868217468262,9.84605693817139,2.69279146194458,-6.66017436981201,9.66310024261475,2.22724604606628,-6.3073582649231,10.142279624939,2.3946521282196,-6.80120801925659,9.95035266876221,2.05429482460022,-6.88094758987427,10.3412046432495,1.88881361484528,-6.29249095916748,10.4364519119263,1.66398239135742,-6.92830801010132,10.7327871322632,1.43046736717224,-6.24330425262451,10.7743721008301,1.2295823097229,-6.96082162857056,11.0217695236206,1.03365302085876,-6.17286205291748,10.9232835769653,0.792382597923279,-7.00890779495239,11.1752309799194,0.638855695724487,-6.1550030708313,10.9844455718994,0.361502289772034,-7.04544830322266,11.2296466827393,0.300844103097916,-6.17233896255493,11.0172481536865, -0.313439041376114,-5.90708303451538,11.3804988861084,0.687595248222351,-5.85640096664429,11.3123264312744,1.12153744697571,-5.87813711166382,11.1626853942871,1.52839350700378,-5.99826812744141,10.9354515075684,1.97712695598602,-6.12062072753906,10.5866203308105,2.32052659988403,-6.21050262451172,10.2774066925049,2.62174916267395,-6.2708568572998,9.94662857055664,2.94667816162109,-6.33436727523804,9.62025833129883,2.99289202690125,-6.35576152801514,9.59438991546631,3.02804565429688,-6.39558076858521,9.56442451477051,2.97962355613708,-6.43441724777222,9.552321434021,2.90504670143127,-6.45967817306519,9.56263732910156,2.60630226135254,-6.51345777511597,9.78423309326172,2.33383083343506,-6.57768774032593,10.0790071487427,1.99195313453674,-6.60659170150757,10.4411182403564,1.55247259140015,-6.60837554931641,10.8338174819946,1.12587785720825,-6.59154176712036,11.0643281936646,0.736367702484131,-6.60497903823853,11.174243927002,0.350211471319199,-6.63875246047974,11.2318592071533,0.312198638916016,-6.09885263442993,11.2082319259644,0.65849494934082,-6.07557821273804,11.1555261611938,1.07063388824463,-6.08668661117554,11.0576696395874,1.46790826320648,-6.16639995574951,10.865086555481,1.92485785484314,-6.24488496780396,10.5290174484253,2.26285982131958,-6.29610013961792,10.2306890487671,2.56784725189209,-6.32526683807373,9.92364025115967,2.90726256370544,-6.37118482589722,9.60893154144287,2.94914817810059,-6.37407970428467,9.59291076660156,2.98377084732056,-6.39226961135864,9.57207298278809,2.94413900375366,-6.41239309310913,9.56943416595459,2.88625311851501,-6.42605400085449,9.58045768737793,2.55185914039612,-6.43077516555786,9.8532247543335,2.26913976669312,-6.42899513244629,10.1525249481201,1.92722964286804,-6.43308687210083,10.4699821472168,1.47508835792542,-6.40141725540161,10.8274221420288,1.06835699081421,-6.34831094741821,11.0089550018311,0.674103856086731,-6.3411545753479,11.0871620178223,0.31877875328064,-6.36249542236328,11.1326150894165,0.284675300121307,-4.78527355194092,11.064474105835,0.69200599193573,-4.67096376419067,11.0971984863281, -1.19090712070465,-4.65360689163208,10.8652582168579,1.60348856449127,-4.75072002410889,10.6199941635132,2.10041379928589,-4.94967794418335,10.3427619934082,2.44613099098206,-5.14300584793091,10.1451902389526,2.8578200340271,-5.40958213806152,9.8643798828125,3.37556910514832,-5.73150157928467,9.50794124603271,3.58002686500549,-6.09771537780762,9.38387775421143,3.58722949028015,-6.43206739425659,9.34090614318848,3.49604988098145,-6.72075796127319,9.3155574798584,3.29658842086792,-7.00609397888184,9.28319644927979,2.9785168170929,-7.27044200897217,9.33163547515869,2.63768124580383,-7.51720857620239,9.58832359313965,0.380467474460602,-7.70760488510132,10.9089078903198,0.809084534645081,-7.71715402603149,10.8271722793579,1.23778057098389,-7.68429851531982,10.6856832504272,1.71254646778107,-7.66423940658569,10.3976364135742,2.19258213043213,-7.62983465194702,10.0229711532593,0.276628792285919,-5.35581827163696,11.4545192718506,0.705096006393433,-5.26781606674194,11.3948183059692,1.17839825153351,-5.33313131332397,11.1846256256104,1.60780417919159,-5.53671407699585,10.9352722167969,2.04950284957886,-5.74241161346436,10.6099004745483,2.404132604599,-5.91182565689087,10.2938222885132,2.71651220321655,-6.05286550521851,9.95620918273926,3.07438540458679,-6.19183778762817,9.62782001495361,3.16906523704529,-6.29155683517456,9.56507015228271,3.23088574409485,-6.41314077377319,9.5117359161377,3.1863808631897,-6.56011343002319,9.4727258682251,3.04502534866333,-6.65838003158569,9.46447277069092,2.81204962730408,-6.82672548294067,9.53612422943115,2.47520732879639,-7.02757406234741,9.79769992828369,2.10015106201172,-7.16013097763062,10.2035999298096,1.69221985340118,-7.23757028579712,10.5777711868286,1.24376201629639,-7.28252696990967,10.8759183883667,0.797305047512054,-7.29007863998413,11.0503644943237,0.369253575801849,-7.32965230941772,11.1096782684326,0.276756882667542,-4.0905499458313,11.0596790313721,0.67881166934967,-4.02736043930054,10.9155769348145,1.11051142215729,-4.01060152053833,10.6648254394531,1.64762842655182,-4.08224010467529,10.4350128173828, -2.09704518318176,-4.20024442672729,10.1917724609375,2.41615009307861,-4.1494517326355,9.9251651763916,3.01657938957214,-4.68970441818237,9.58867073059082,3.59471702575684,-5.20025300979614,9.29252243041992,3.21058988571167,-7.73844718933105,9.12869644165039,3.61845064163208,-7.32958364486694,9.03243350982666,3.94498634338379,-6.91380882263184,8.91929626464844,4.10075044631958,-6.44372081756592,8.84724903106689,3.90626168251038,-5.81220817565918,9.08544826507568,0.444652616977692,-8.46575260162354,10.7486915588379,0.915312349796295,-8.41538047790527,10.604640007019,1.30731439590454,-8.41347980499268,10.4629573822021,1.7650842666626,-8.43077182769775,10.2372455596924,2.27534437179565,-8.34659004211426,9.86133289337158,2.79551029205322,-8.0594596862793,9.42021083831787,0.425872296094894,2.32587480545044,10.2930870056152,0.43096199631691,1.55000650882721,10.0067090988159,1.04734790325165,1.67354381084442,9.85422611236572,0.999846398830414,2.54404664039612,10.276873588562,1.76966321468353,2.1059410572052,9.88949108123779,1.53380644321442,2.77825474739075,10.2362470626831,2.76184272766113,2.41657900810242,9.69988441467285,2.67940044403076,3.13047909736633,9.95404052734375,3.47613048553467,2.64268088340759,9.45586490631104,3.44323205947876,3.38297891616821,9.62023067474365,4.33117389678955,3.50773024559021,9.10658740997314,4.22233247756958,2.80594253540039,9.07201480865479,4.98590421676636,2.7533905506134,8.45626640319824,5.24787616729736,3.33925271034241,8.3605260848999,5.53613471984863,2.60515975952148,7.89962482452393,5.91983318328857,3.1857442855835,7.45482158660889,6.33480310440063,1.57071208953857,6.57897233963013,6.65199041366577,1.82838404178619,5.99423789978027,6.63125801086426,0.622930347919464,6.38999462127686,6.9053897857666,0.61238819360733,5.7659649848938,6.39516115188599,-0.506458342075348,7.06213998794556,6.64986753463745,-0.835367441177368,6.62848615646362,5.98848962783813,-1.08541309833527,7.54887008666992,6.17566585540771,-1.47442102432251,7.3322925567627,4.84235572814941,-1.58707356452942,8.6058292388916, -4.92961406707764,-1.98827040195465,8.5404806137085,3.64678597450256,-1.65746462345123,9.26278972625732,3.70411777496338,-2.01732301712036,9.30448246002197,2.15958499908447,-1.37878262996674,9.64071941375732,1.9706484079361,-1.79273068904877,9.81274509429932,1.53634750843048,-0.979715883731842,9.77910423278809,1.34802424907684,-1.28716385364532,9.99973106384277,1.02397525310516,-0.224725618958473,9.89264297485352,0.837064206600189,-0.76677805185318,10.2936544418335,0.467166692018509,0.416704267263412,10.3221864700317,0.487908393144608,-0.270563900470734,10.7006483078003,6.32265472412109,2.55504369735718,6.62416315078735,5.98125886917114,2.08447551727295,7.19541788101196,6.84452104568481,1.11277878284454,5.71848392486572,6.53752183914185,1.05508756637573,6.37544107437134,6.62306833267212,0.118500046432018,6.59562110900879,6.88577032089233,-0.0171589571982622,6.05382061004639,5.55053091049194,-1.80561172962189,8.01396942138672,5.43741226196289,-1.40401816368103,8.1262674331665,4.29575395584106,-2.05251741409302,8.97702884674072,4.23330163955688,-1.66833567619324,8.98032665252686,2.93638849258423,-1.92973792552948,9.59064674377441,2.95425868034363,-1.56733691692352,9.50070571899414,0.429825216531754,0.769897937774658,10.1320953369141,0.879478275775909,0.517569661140442,9.87677955627441,0.403805494308472,1.20479547977448,9.97864055633545,0.9251429438591,1.07852721214294,9.79307174682617,2.05242586135864,2.95342707633972,10.1323146820068,2.23605561256409,2.25964021682739,9.80658435821533,1.45362198352814,-11.7220678329468,7.7457275390625,1.94249081611633,-10.8492479324341,9.66497802734375,2.23401498794556,-11.4141616821289,6.82130861282349,2.9442195892334,-10.289511680603,8.61220836639404,3.3287296295166,-10.7363042831421,5.61752510070801,4.08768844604492,-9.56369495391846,7.49050807952881,4.52266502380371,-9.69620513916016,4.03538227081299,5.25208854675293,-8.46740245819092,6.01705121994019,5.33507013320923,-8.60435485839844,2.59424519538879,6.02868509292603,-7.47059488296509,4.59234189987183,6.32686614990234,-6.46139526367188,0.429285854101181, -7.02103042602539,-5.51866674423218,2.56458020210266,6.63314819335938,-5.30487203598022,0.0010362071916461,7.25274801254272,-4.77190494537354,1.96178865432739,3.95017671585083,-10.2369813919067,4.8523736000061,4.74571561813354,-8.97711849212646,6.75745153427124,6.021080493927,-7.48551464080811,1.18661463260651,6.66051816940308,-6.29175806045532,3.25183725357056,1.73911499977112,-11.4775247573853,8.91175746917725,2.71912884712219,-11.0005769729614,7.93533086776733,3.90698981285095,-10.3431310653687,6.69309139251709,4.62629699707031,-9.8087100982666,5.87688064575195,5.27568769454956,-9.25722026824951,5.02403020858765,6.11723518371582,-8.20479583740234,3.56808972358704,6.7800464630127,-7.01846075057983,2.29027032852173,7.11960554122925,-6.10610914230347,1.63720464706421,7.240159034729,-5.08808755874634,1.14679479598999,1.94618821144104,-3.18484139442444,10.1206188201904,1.97128963470459,-2.90788984298706,10.7209405899048,1.94551062583923,-3.20075631141663,10.7982311248779,2.00889849662781,-3.41766905784607,10.2430095672607,1.7797863483429,-3.13145756721497,11.2094554901123,1.76743566989899,-2.75292801856995,11.1367645263672,1.35704243183136,-2.69259023666382,11.5846138000488,1.43729317188263,-3.04925537109375,11.6452779769897,0.957599997520447,-2.5337507724762,11.9536142349243,1.05197191238403,-2.97319483757019,11.9926862716675,2.02442502975464,-3.48149967193604,10.1782827377319,1.93077278137207,-3.22494912147522,10.0023813247681,2.49771618843079,-3.64891219139099,9.77677917480469,3.13752794265747,-4.04087781906128,9.50779151916504,3.86252784729004,-4.52816295623779,9.05229377746582,4.25440549850464,-5.53818321228027,8.71383094787598,4.41148996353149,-6.44228935241699,8.42195892333984,4.20885419845581,-7.09721517562866,8.5288782119751,3.84948968887329,-7.69750642776489,8.69057750701904,3.31767225265503,-8.14998245239258,8.95892429351807,2.86092782020569,-8.52286148071289,9.32379150390625,2.36147665977478,-8.81789588928223,9.79014587402344,1.83445572853088,-8.980637550354,10.2019166946411,1.37862408161163,-9.06450653076172,10.4849948883057, -0.945417165756226,-9.10431480407715,10.6932220458984,0.484645694494247,-9.14574718475342,10.8382930755615,0.430151402950287,-3.78667140007019,11.3200263977051,0.31240439414978,-3.9879150390625,11.2228012084961,0.433737486600876,-3.95183396339417,11.0838260650635,0.489092797040939,-3.77038264274597,11.0934047698975,0.41869729757309,-3.78461003303528,11.4987316131592,0.247211992740631,-4.00004863739014,11.5239992141724,0.454335004091263,-3.75801396369934,11.6749477386475,0.283114284276962,-3.95747375488281,11.842845916748,0.574335277080536,-3.66264176368713,11.8285436630249,0.421341925859451,-3.81621551513672,12.0895528793335,0.667752385139465,-3.55119466781616,11.8290967941284,0.707025825977325,-3.56791067123413,12.0749969482422,0.909563183784485,-3.39562368392944,11.6751489639282,1.00950145721436,-3.40489506721497,11.8691806793213,1.12229108810425,-3.39301753044128,11.4634742736816,1.31509912014008,-3.36950826644897,11.5583591461182,1.36684727668762,-3.45196676254272,11.1405000686646,1.57666385173798,-3.42707967758179,11.2034111022949,1.35198771953583,-3.51235747337341,10.7937679290771,1.63818895816803,-3.65421390533447,10.6730480194092,0.907981216907501,-3.52404284477234,10.6590929031372,1.13959503173828,-3.8009729385376,10.6044645309448,0.723991096019745,-3.83734226226807,10.8534164428711,0.628357768058777,-3.66664671897888,10.8592538833618,1.11344730854034,-3.48829293251038,10.6497144699097,1.33004474639893,-3.70043134689331,10.5921859741211,0.417708903551102,-3.86824345588684,11.3096218109131,0.403553485870361,-3.87896728515625,11.5108289718628,0.433234870433807,-3.84975433349609,11.7220306396484,0.573271989822388,-3.72333216667175,11.9117679595947,0.716645300388336,-3.58857870101929,11.9157276153564,0.968578040599823,-3.44254612922668,11.7576866149902,1.19751727581024,-3.4263961315155,11.5060796737671,1.42638289928436,-3.46274399757385,11.1732931137085,1.44592905044556,-3.57288765907288,10.760458946228,1.18683660030365,-3.55860686302185,10.6275644302368,0.953868925571442,-3.61475777626038,10.643669128418,0.660096526145935,-3.72439980506897,10.8566188812256, -0.489717900753021,-3.83477926254272,11.089243888855,0.479629516601563,-3.88807821273804,11.0792551040649,0.687838196754456,-3.77360796928406,10.8551158905029,0.995428740978241,-3.69183301925659,10.6374979019165,1.24929904937744,-3.6197030544281,10.6106510162354,1.52868103981018,-3.61772704124451,10.72838306427,1.50280821323395,-3.4557158946991,11.1831607818604,1.26123416423798,-3.40934896469116,11.5390434265137,0.991897165775299,-3.44237518310547,11.806586265564,0.728786766529083,-3.58758544921875,11.976110458374,0.544238805770874,-3.75784301757813,11.9454545974731,0.409747779369354,-3.88429713249207,11.7604866027832,0.360714197158813,-3.92862391471863,11.5188732147217,0.38519811630249,-3.92065572738647,11.2734355926514,0.252279996871948,-4.04671478271484,11.1392526626587,0.633074402809143,-3.48106217384338,12.2321043014526,1.02539217472076,-3.32593989372253,11.9404153823853,1.0434935092926,-3.16545557975769,11.9897842407227,0.616223990917206,-3.23225545883179,12.3577098846436,1.40687966346741,-3.19337606430054,11.6333608627319,1.36244785785675,-3.29978179931641,11.5985717773438,1.64664626121521,-3.37046957015991,11.2223606109619,1.72023391723633,-3.27146601676941,11.2224884033203,1.41606211662292,-3.48503565788269,11.020432472229,1.49248671531677,-3.5147180557251,10.9738712310791,1.58364152908325,-3.53157305717468,10.9414367675781,1.68115997314453,-3.51594638824463,10.9130373001099,1.77041971683502,-3.4666850566864,10.8845643997192,1.85930991172791,-3.36821532249451,10.8499345779419,1.78209567070007,-3.66406202316284,10.5616931915283,1.9301050901413,-3.58496809005737,10.4145889282227,1.66880071163177,-3.78059339523315,10.5170078277588,1.92606604099274,-3.68454837799072,10.3536720275879,1.63955330848694,-3.87362623214722,10.4728975296021,1.95321905612946,-3.7497034072876,10.301025390625,2.06556057929993,-3.50481677055359,10.0877923965454,1.99168121814728,-3.2921404838562,9.94458484649658,2.01186370849609,-3.04351902008057,10.3697299957275,1.99431753158569,-3.34384107589722,10.4826154708862,1.91239500045776,-3.48304843902588,10.581241607666, -1.7989376783371,-3.5718195438385,10.6710205078125,1.68732678890228,-3.59484815597534,10.7522840499878,1.57070767879486,-3.58308815956116,10.8103818893433,1.47289800643921,-3.54480695724487,10.8580741882324,1.38528525829315,-3.49304604530334,10.9014539718628,0.522467374801636,-1.7358261346817,11.6646327972412,0.853272676467896,-1.92324829101563,11.4484043121338,1.10606229305267,-2.10395193099976,11.1008491516113,0.493669390678406,-1.30989372730255,11.3746156692505,0.809532463550568,-1.55523955821991,11.0692300796509,1.07536733150482,-1.88525521755219,10.7500648498535,0.499034911394119,-0.950579583644867,11.1278257369995,0.823213994503021,-1.29103064537048,10.7952833175659,1.13685464859009,-1.72631943225861,10.4549140930176,0.525806367397308,-1.99147951602936,11.8923997879028,0.906700909137726,-2.13356018066406,11.6390428543091,1.19228196144104,-2.32023453712463,11.3356132507324,1.77341294288635,-2.96184706687927,9.9596471786499,1.81124925613403,-2.91073107719421,10.0682592391968,1.59632623195648,-2.55080437660217,9.98704051971436,1.65940880775452,-2.58622694015503,10.0822715759277,1.48018991947174,-2.27519178390503,10.1393747329712,1.5716644525528,-2.40248966217041,10.1943159103394,1.35658383369446,-2.17649793624878,10.5437431335449,1.53692555427551,-2.28125858306885,10.5680904388428,1.30849456787109,-2.20981240272522,10.8322582244873,1.45997536182404,-2.3338098526001,10.9546804428101,1.77090895175934,-2.57009840011597,10.2757930755615,1.67047643661499,-2.4525842666626,10.2923936843872,1.89677250385284,-2.75604653358459,10.2793006896973,1.91196882724762,-2.68166303634644,10.6179141998291,1.82524788379669,-2.52532291412354,10.5684604644775,1.69814610481262,-2.39185118675232,10.5556602478027,1.65198802947998,-2.38608336448669,10.8005218505859,1.83476006984711,-2.63304233551025,10.8799295425415,0.538437187671661,-2.19871520996094,12.0575828552246,0.939602255821228,-2.3243362903595,11.8041162490845,1.26125860214233,-2.47660660743713,11.4658508300781,1.56867337226868,-2.51121354103088,11.1137351989746,1.74597990512848,-2.50036120414734,10.8550329208374, -1.8600435256958,-2.94770526885986,9.90234756469727,1.66260206699371,-2.52715635299683,9.93363285064697,1.52901208400726,-2.14440107345581,10.0297889709473,1.18435442447662,-1.55190682411194,10.2380456924438,0.493864685297012,-0.656538128852844,10.9330472946167,0.823825776576996,-1.04610085487366,10.5608949661255,2.17098832130432,-2.45336031913757,9.82688522338867,2.45258784294128,-3.13287377357483,9.80207538604736,3.0134608745575,-2.57700514793396,9.59614562988281,3.12375903129578,-3.26103687286377,9.54150676727295,3.76545405387878,-2.67373323440552,9.27077484130859,3.80718517303467,-3.4109890460968,9.16203594207764,4.40852451324463,-2.72864508628845,8.88379764556885,4.47413015365601,-3.53251934051514,8.71166706085205,4.58353710174561,-4.46132040023804,8.47084808349609,5.13119459152222,-3.46025061607361,8.07415962219238,5.0813307762146,-2.65648317337036,8.3512020111084,5.76414632797241,-3.17410206794739,7.3101282119751,5.73970794677734,-2.41437315940857,7.70609283447266,6.36890077590942,-2.63990521430969,6.42838335037231,6.35044479370117,-1.95564937591553,6.92472505569458,6.89743947982788,-1.81760597229004,5.49506139755249,6.84193229675293,-1.22105288505554,6.05735206604004,7.29474830627441,-0.792417943477631,4.60285806655884,7.13602781295776,-0.210006877779961,5.24569892883301,5.20545673370361,-4.29827260971069,7.69921255111694,6.30885076522827,-3.40991997718811,5.83514070510864,5.73544311523438,-3.94613575935364,6.78741598129272,6.89638471603394,-2.61104416847229,4.82495212554932,4.73759174346924,-5.38083934783936,8.1663703918457,6.3010573387146,-4.04897356033325,5.32221126556396,5.72612047195435,-4.7100510597229,6.30829238891602,5.26458787918091,-5.13295125961304,7.31941175460815,5.76102781295776,-5.33404397964478,5.89009571075439,6.31455850601196,-4.62396097183228,4.94708442687988,5.32754421234131,-5.80997514724731,6.88414812088013,4.87168550491333,-6.17238759994507,7.78334760665894,4.72261619567871,-6.91689586639404,7.8189582824707,5.14740514755249,-6.68267869949341,7.0530309677124,5.49074172973633,-6.30471515655518,6.21001148223877, -5.88891887664795,-5.83466958999634,5.39093065261841,4.4567985534668,-7.43630933761597,8.02381706237793,4.63893795013428,-8.18760967254639,7.36468935012817,5.02923059463501,-7.73272132873535,6.85509061813354,3.9799268245697,-8.09740734100342,8.34194087982178,4.05577087402344,-8.76449871063232,7.94083404541016,2.73335933685303,-11.1102619171143,6.25578022003174,3.27162933349609,-10.7124099731445,7.34949636459351,3.49031758308411,-9.97497272491455,8.05880641937256,3.4200394153595,-8.63992500305176,8.71746921539307,3.48466086387634,-9.2441577911377,8.43512535095215,2.93274664878845,-9.02222633361816,9.1695499420166,2.96490597724915,-9.60867500305176,8.95022678375244,1.81894302368164,-11.6068286895752,7.34164953231812,2.2406964302063,-11.2564973831177,8.45750617980957,2.45543622970581,-10.5916509628296,9.17394256591797,2.48912644386292,-9.93205738067627,9.49641418457031,2.44218945503235,-9.33296298980713,9.68772220611572,1.9356302022934,-9.55088329315186,10.1522846221924,1.99605703353882,-10.1815195083618,9.99641609191895,1.07314682006836,-11.8290281295776,8.03556251525879,1.30664241313934,-11.5927209854126,9.21349239349365,1.41123855113983,-10.9835996627808,10.008246421814,0.697075426578522,-11.9222002029419,8.16154384613037,0.862486779689789,-11.6653308868408,9.4068660736084,0.957686126232147,-11.0725841522217,10.1917762756348,0.979436457157135,-9.77400207519531,10.7076902389526,1.45681405067444,-9.6838207244873,10.4830656051636,1.46009147167206,-10.3361186981201,10.3605632781982,0.967066764831543,-10.4287242889404,10.5808334350586,0.34590008854866,-11.9817800521851,8.21766662597656,0.443739801645279,-11.7049903869629,9.47061729431152,0.493437677621841,-11.1157894134521,10.3029832839966,0.519946038722992,-9.8292236328125,10.8470029830933,0.534429669380188,-10.4475450515747,10.7151002883911,5.36939191818237,-7.30701303482056,6.20235872268677,5.73494005203247,-6.86049842834473,5.45113849639893,4.99795055389404,-9.16009712219238,3.26559519767761,5.78187608718872,-8.70682048797607,4.26101684570313,5.66574621200562,-7.97111368179321,5.29952907562256, -6.09138679504395,-6.36887693405151,4.76351118087769,5.6676721572876,-8.0396203994751,1.89302062988281,6.43482160568237,-7.64638471603394,2.92747402191162,6.33894872665405,-6.92183923721313,3.90507936477661,6.48305702209473,-5.72916030883789,3.98363208770752,6.37685298919678,-5.15239000320435,4.52602291107178,6.88704538345337,-4.96970891952515,3.19840002059937,6.81757068634033,-4.40107679367065,3.68997001647949,6.81606912612915,-3.81580328941345,4.09708595275879,6.84777498245239,-3.22725057601929,4.46643877029419,7.18535327911377,-4.31236982345581,2.4699010848999,7.18254566192627,-3.75510191917419,2.80865120887756,7.25807476043701,-3.04372644424438,3.15227556228638,7.29280519485474,-2.43727207183838,3.5564558506012,7.30056953430176,-1.70985400676727,4.08368492126465,2.13080024719238,0.846733927726746,9.08304214477539,2.4075231552124,1.0910918712616,9.22318649291992,2.7798764705658,1.31168913841248,9.25911140441895,3.23057770729065,1.45032131671906,9.27368450164795,3.6667218208313,1.48284089565277,9.24890232086182,4.05035209655762,1.41976118087769,9.20368957519531,4.32982730865479,1.32917714118958,9.08128929138184,4.53223371505737,1.22235369682312,8.94384860992432,4.73985481262207,1.08054959774017,8.76476669311523,4.89786958694458,0.899876236915588,8.54976654052734,4.96825695037842,0.804138839244843,8.43973159790039,5.06172609329224,0.722355782985687,8.31211757659912,4.99963998794556,0.625196635723114,8.34968185424805,4.89068698883057,0.534760415554047,8.44810199737549,4.75297212600708,0.408790707588196,8.59839725494385,4.56429100036621,0.275824129581451,8.82272434234619,4.35178995132446,0.15977381169796,8.95899772644043,3.99084138870239,0.0400360375642776,9.16523838043213,3.42717671394348,0.0103091010823846,9.2322301864624,2.96751356124878,0.0846365392208099,9.18136787414551,2.5992534160614,0.215923324227333,9.10888767242432,2.28353071212769,0.310704678297043,8.96965408325195,2.04632449150085,0.387153416872025,8.91485786437988,1.94327366352081,0.477953970432281,8.93542671203613,2.0019154548645,0.601553738117218,8.97407341003418, -1.82606780529022,0.425195068120956,9.02849292755127,1.94637560844421,0.267760902643204,8.98511219024658,2.19556713104248,0.117519222199917,9.01692581176758,2.53517818450928,0.0180125702172518,9.15310001373291,2.92958283424377,-0.096157431602478,9.21659088134766,3.40226888656616,-0.179042667150497,9.27159404754639,4.02996778488159,-0.135790064930916,9.18951034545898,4.39430809020996,-0.0576469674706459,8.98507499694824,4.63278818130493,0.063075989484787,8.81034183502197,4.86522674560547,0.208934277296066,8.57377910614014,5.05951166152954,0.398431032896042,8.36294651031494,5.176429271698,0.59698885679245,8.26522159576416,5.25054693222046,0.72034078836441,8.25850200653076,5.1321759223938,0.826757729053497,8.36796283721924,4.96290016174316,0.930249989032745,8.521728515625,4.80038738250732,1.12754559516907,8.7447566986084,4.59049987792969,1.29811096191406,8.93041038513184,4.38300609588623,1.42221236228943,9.06650352478027,4.06924533843994,1.49937987327576,9.21281051635742,3.65559577941895,1.57259845733643,9.27884292602539,3.20719790458679,1.53071010112762,9.30834293365479,2.74346256256104,1.37497365474701,9.28725337982178,2.35645914077759,1.14113700389862,9.26392364501953,2.00835084915161,0.935280203819275,9.16294288635254,1.8718489408493,0.605570733547211,9.06727695465088,1.65030658245087,0.671867072582245,9.2253360748291,1.86891555786133,1.02495515346527,9.20147228240967,2.22829532623291,1.28863406181335,9.28656959533691,2.64501571655273,1.54854226112366,9.30581092834473,3.13075542449951,1.7376880645752,9.32150840759277,3.60988283157349,1.80529999732971,9.28125381469727,4.08396816253662,1.76181972026825,9.17926788330078,4.51367282867432,1.67156505584717,9.00986099243164,4.81332302093506,1.51568841934204,8.84179878234863,5.057776927948,1.26006722450256,8.61880111694336,5.25726795196533,1.02724695205688,8.40564250946045,5.42085838317871,0.871191680431366,8.25228309631348,5.48115587234497,0.725010991096497,8.13500881195068,5.51753902435303,0.520317792892456,8.08371448516846,5.43042373657227,0.227402254939079,8.12164783477783, -5.24159479141235,-0.112414427101612,8.37997150421143,4.86105394363403,-0.341683715581894,8.62365913391113,4.55123424530029,-0.463471502065659,8.84008312225342,4.06123352050781,-0.511286079883575,9.04019546508789,3.41040086746216,-0.562518298625946,9.17583847045898,2.88614726066589,-0.482838451862335,9.16528701782227,2.44955205917358,-0.372908562421799,9.19193172454834,2.07176208496094,-0.20919594168663,9.14170551300049,1.79903078079224,0.0815637186169624,9.13233947753906,1.61881947517395,0.376979231834412,9.23736095428467,2.25934982299805,1.98647451400757,9.56895160675049,1.77149403095245,1.6973659992218,9.60889625549316,1.26516020298004,1.37100028991699,9.66737365722656,1.10119354724884,0.884818077087402,9.65639591217041,1.04085326194763,0.437824785709381,9.68349742889404,1.2532776594162,-0.197685584425926,9.63908004760742,1.75755894184113,-0.73046350479126,9.50579166412354,2.28692698478699,-1.02964699268341,9.41224098205566,2.90903306007385,-1.23569202423096,9.36333274841309,3.54473090171814,-1.31134057044983,9.20099544525146,4.15957069396973,-1.30111992359161,8.99509239196777,4.7551851272583,-1.20994389057159,8.70662403106689,5.34941339492798,-1.02330887317657,8.29789924621582,5.78118515014648,-0.635276556015015,7.92719411849976,6.18555974960327,-0.231884062290192,7.52792692184448,6.37773370742798,0.254486232995987,7.18082475662231,6.38863563537598,0.617636144161224,7.03204250335693,6.27822017669678,0.939470767974854,7.0661735534668,6.063720703125,1.30925905704498,7.25209331512451,5.73361825942993,1.75249123573303,7.72359085083008,5.32628870010376,2.20392942428589,8.21280860900879,4.86676073074341,2.46570181846619,8.59469509124756,4.1407265663147,2.50684332847595,9.0148286819458,3.45093727111816,2.38413262367249,9.30954551696777,2.79624772071838,2.2352466583252,9.46375560760498,2.83901786804199,2.08524942398071,9.2555103302002,3.44496965408325,2.18608832359314,9.20444011688232,4.0905556678772,2.18392658233643,9.02815055847168,4.69399118423462,2.0691933631897,8.79999828338623,5.07874870300293,1.84557151794434,8.53394603729248, -5.43395280838013,1.49232399463654,8.21975135803223,5.73813533782959,1.13587653636932,7.95513153076172,5.88583660125732,0.86798357963562,7.77510261535645,5.95736503601074,0.66277140378952,7.71622705459595,5.95411443710327,0.431409955024719,7.73444366455078,5.84463500976563,0.0337066166102886,7.84447240829468,5.54838943481445,-0.355836808681488,8.13446712493896,5.20931720733643,-0.691812336444855,8.40687465667725,4.61271047592163,-0.816669166088104,8.77346420288086,4.09506893157959,-0.890204727649689,8.98448753356934,3.4725034236908,-0.923985183238983,9.13625144958496,2.88430690765381,-0.873924672603607,9.26791572570801,2.37831354141235,-0.724734604358673,9.24971771240234,1.91534018516541,-0.458017349243164,9.32759475708008,1.58383190631866,-0.131477728486061,9.35623550415039,1.35541367530823,0.372541576623917,9.40586090087891,1.35380601882935,0.761859178543091,9.43727493286133,1.48790740966797,1.21861588954926,9.44262886047363,1.79328060150146,1.53133583068848,9.38883018493652,2.29799556732178,1.82233583927155,9.33708190917969,0.462224692106247,3.33067202568054,10.3590888977051,0.814615190029144,3.3988926410675,10.3388633728027,1.29072225093842,3.64332008361816,10.2444944381714,1.90567791461945,3.94242453575134,10.068943977356,2.71756935119629,4.27787017822266,9.74560165405273,3.5896418094635,4.50379800796509,9.27270317077637,4.52239942550659,4.54819965362549,8.65837001800537,5.49783897399902,4.30548095703125,7.87937784194946,6.1940770149231,3.66569113731384,6.67138481140137,6.67714881896973,2.75051999092102,5.63913249969482,6.94185256958008,1.86184823513031,5.19958114624023,7.05338573455811,1.10372149944305,5.06734561920166,7.09344339370728,0.526106119155884,5.14863300323486,8.40617752075195,0.0556241795420647,0.640909492969513,8.2239294052124,0.280366152524948,1.11804068088531,8.00922012329102,-0.608444571495056,1.27154958248138,8.30598258972168,-0.53821587562561,0.73651534318924,8.5859317779541,0.655787527561188,0.402613759040833,8.34269523620605,0.900962591171265,0.806322634220123,8.77970123291016,1.21920776367188,0.0404710918664932, -8.57863712310791,1.52623748779297,0.339597314596176,9.28165245056152,1.6613222360611,-0.547914326190948,9.02072334289551,2.09513688087463,-0.276704102754593,9.57998657226563,1.66829705238342,-1.06967425346375,9.36645793914795,2.22241401672363,-1.2177392244339,9.64610004425049,1.5166996717453,-1.43420970439911,9.43434143066406,1.93145954608917,-1.80604302883148,9.52598857879639,0.681540608406067,-2.07179546356201,9.47312164306641,0.759064555168152,-2.47445297241211,9.43591594696045,0.0512671656906605,-2.09960103034973,9.43670272827148,0.0287300813943148,-2.55825424194336,9.37417793273926,-0.695516228675842,-2.01381659507751,9.34363555908203,-0.790418148040771,-2.51949238777161,9.25639152526855,-1.4842768907547,-1.80209052562714,9.15201377868652,-1.73476028442383,-2.35918831825256,8.99237155914307,-2.21868085861206,-1.4315003156662,8.93394088745117,-2.67437076568604,-1.9970782995224,8.71511077880859,-2.78971648216248,-0.737185418605804,8.65053176879883,-3.32020664215088,-1.24940729141235,8.39547061920166,-3.04587244987488,-0.017298486083746,8.38211822509766,-3.81003403663635,-0.433070152997971,8.11442089080811,-3.1936354637146,0.525815308094025,8.23675060272217,-4.10207796096802,0.121550187468529,7.73840141296387,-3.19897651672363,0.958669364452362,8.11107063293457,-4.12815093994141,0.481665849685669,8.24604320526123,-0.577287614345551,0.995464026927948,8.42463302612305,0.153164371848106,0.894347965717316,8.59025955200195,0.753413140773773,0.629709839820862,8.78072452545166,1.29346311092377,0.247597619891167,9.26115608215332,1.83518981933594,-0.359960824251175,9.71281242370605,1.92458057403564,-1.06940853595734,9.84065628051758,1.72258961200714,-1.52044475078583,9.85390186309814,0.780522882938385,-2.24550247192383,9.74722957611084,0.0391654707491398,-2.26296758651733,9.68539142608643,-0.773595452308655,-2.20587778091431,9.56930541992188,-1.67190170288086,-2.10549640655518,9.34415531158447,-2.54098463058472,-1.74549722671509,8.89970874786377,-3.18234515190125,-0.963524997234344,8.5346508026123,-3.57418370246887,-0.0667138397693634, -8.26699352264404,-3.55714726448059,0.468929708003998,7.96421432495117,-3.54026079177856,0.819772362709045,7.92740678787231,0.707088768482208,1.58156073093414,7.75378227233887,0.00106443359982222,1.93271040916443,8.05583763122559,1.20495855808258,1.22469758987427,8.14210319519043,1.61750769615173,0.71096408367157,8.16171169281006,1.7912689447403,-0.287664800882339,8.22274780273438,1.68595325946808,-1.28933835029602,8.29430675506592,1.49998390674591,-1.83284974098206,8.38248062133789,0.689188420772552,-2.5513768196106,8.27509498596191,0.0865578576922417,-2.61773252487183,8.13198947906494,-0.640048921108246,-2.55151271820068,7.99686002731323,-1.46767807006836,-2.29771852493286,7.82757043838501,-2.35106301307678,-1.98396968841553,7.72032737731934,-3.2160120010376,-1.51325237751007,7.59922313690186,-3.5660548210144,-0.895240902900696,7.25170183181763,-3.8191237449646,-0.080264575779438,7.26813745498657,-4.07855844497681,0.522395431995392,7.39384269714355,-3.19537711143494,1.42772626876831,7.82979583740234,-0.364156097173691,1.67531418800354,8.06924343109131,0.483809947967529,1.41093015670776,8.21260833740234,1.04184699058533,1.06150698661804,8.34437274932861,1.51545989513397,0.578359603881836,8.4775562286377,1.86450958251953,-0.338869124650955,8.63701915740967,1.86411488056183,-1.27927339076996,8.77889823913574,1.61289417743683,-1.75693702697754,8.80913734436035,0.637523710727692,-2.40572357177734,8.71837043762207,-0.017295029014349,-2.48584079742432,8.5960578918457,-0.765541732311249,-2.38860511779785,8.45878791809082,-1.60163044929504,-2.1997697353363,8.2514705657959,-2.47778415679932,-1.95846939086914,8.06235027313232,-3.24343061447144,-1.37888097763062,7.85416507720947,-3.58851766586304,-0.519060909748077,7.66326284408569,-3.90234065055847,0.0622665882110596,7.58291912078857,-4.06812286376953,0.609413862228394,7.50888061523438,-3.25812888145447,1.0896703004837,9.6566915512085,1.19088184833527,-1.8183753490448,9.8843297958374,1.36798620223999,-1.91549408435822,9.49132633209229,1.44061803817749,-2.22823238372803,8.83131885528564,1.17665469646454,-2.18280220031738, -8.40206527709961,1.12513959407806,-2.4439435005188,9.01280212402344,1.49861598014832,-0.319701880216599,9.02793121337891,1.62811434268951,-0.0880535915493965,8.84053993225098,1.87228548526764,0.0113955168053508,8.40198230743408,1.71313631534576,0.0522712357342243,8.17350292205811,1.92774200439453,0.153999537229538,9.4269962310791,1.69028949737549,-0.776199698448181,9.4942569732666,1.9344927072525,-0.656897306442261,9.22696495056152,2.24933004379272,-0.656028389930725,8.54333114624023,1.91815054416656,-0.774208903312683,8.18119716644287,1.72784447669983,-0.726136386394501,8.10354804992676,-0.598297476768494,1.16011381149292,8.31211471557617,0.242779210209846,1.04209768772125,8.44231128692627,0.849660992622375,0.760851383209229,8.68196392059326,1.44033968448639,0.326292425394058,8.93920707702637,1.78261721134186,-0.00371122895739973,9.13998317718506,2.00292658805847,-0.288590103387833,9.37794971466064,2.15835881233215,-0.628212511539459,9.61817836761475,2.14706921577454,-1.13845789432526,9.76637268066406,1.89847612380981,-1.67890346050262,9.82252788543701,1.48246681690216,-2.14551758766174,9.74726104736328,0.808005571365356,-2.43034744262695,9.63255500793457,0.0417290292680264,-2.51027631759644,9.53864860534668,-0.784126937389374,-2.48973345756531,9.41425514221191,-1.7335319519043,-2.31286644935608,9.21683597564697,-2.66384983062744,-1.88666462898254,8.82225894927979,-3.3023157119751,-1.12605535984039,8.54668235778809,-3.78704833984375,-0.253021776676178,8.30999088287354,-3.96418452262878,0.349801331758499,8.05904769897461,-3.93425583839417,0.676900088787079,7.4086275100708,-3.83309531211853,1.00440299510956,7.32185649871826,-3.9814350605011,1.05311250686646,7.92891502380371,-0.533270716667175,1.40354931354523,8.16231250762939,0.280846804380417,1.16930663585663,8.29424476623535,0.902041375637054,0.837104439735413,8.45930671691895,1.44476139545441,0.432716220617294,8.60464096069336,1.82067406177521,0.0668165907263756,8.73596572875977,2.04094076156616,-0.317817211151123,8.86012554168701,2.12431836128235,-0.757209897041321, -9.0003023147583,2.05361986160278,-1.26446914672852,9.0885534286499,1.78043866157532,-1.78648042678833,9.17437839508057,1.32840192317963,-2.20067262649536,9.15705299377441,0.701567888259888,-2.45905184745789,9.10205268859863,-0.0197196360677481,-2.52215170860291,8.9765100479126,-0.817377388477325,-2.44046878814697,8.7988338470459,-1.69314658641815,-2.28348827362061,8.5914888381958,-2.63403868675232,-2.05287599563599,8.39008140563965,-3.30210208892822,-1.32934653759003,8.14418983459473,-3.73202967643738,-0.520102441310883,7.99722480773926,-4.02059173583984,0.0193376336246729,7.83655786514282,-4.15941476821899,0.57631641626358,7.79645156860352,-3.87085318565369,0.891090989112854,7.76105070114136,-3.61150407791138,0.96287477016449,7.60530471801758,-2.64006400108337,1.13854217529297,7.82325553894043,-2.67202138900757,0.606558561325073,7.97257232666016,-2.59800100326538,0.232179641723633,8.29879283905029,-2.29580998420715,-0.437075525522232,8.63137722015381,-1.96803712844849,-0.847795426845551,8.98237133026123,-1.40080368518829,-1.35610711574554,9.12864112854004,-0.640572488307953,-1.67632460594177,9.04624366760254,0.000659702287521213,-1.60365033149719,8.97405529022217,0.927655398845673,-1.26031458377838,8.96565628051758,0.479196697473526,-1.573317527771,9.05311107635498,1.3847017288208,-0.999665081501007,8.68396186828613,1.02303791046143,-0.437540769577026,8.54509925842285,0.540164172649384,0.0178523622453213,8.32595443725586,-0.00530096469447017,0.189795896410942,8.13072490692139,-0.472302228212357,0.0815707743167877,8.88009262084961,0.661886811256409,-0.813444375991821,8.87235355377197,0.190655842423439,-1.02402782440186,8.87643718719482,-0.164214730262756,-1.0551974773407,8.77584648132324,-0.698870480060577,-1.18805432319641,8.56459808349609,-1.25547587871552,-1.12378418445587,8.17762088775635,-1.57266366481781,-0.675285816192627,7.73883438110352,-1.95448303222656,-0.365754455327988,8.55316352844238,0.482197731733322,-0.463631421327591,8.52521228790283,0.0252473447471857,-0.47016829252243,8.44647979736328,-0.480911135673523,-0.363637685775757, -8.3405876159668,-0.865411221981049,-0.539741635322571,7.94676733016968,-1.13499295711517,0.0325417406857014,7.83537864685059,-1.13797318935394,0.463114559650421,7.48296165466309,-2.0682373046875,0.379103600978851,7.63538074493408,-2.28205251693726,0.585019052028656,7.8828558921814,-1.16284966468811,0.790033459663391,7.85260820388794,-1.32400691509247,0.997490167617798,7.67518758773804,-2.24807620048523,0.909905076026917,7.97152614593506,-1.71899616718292,1.14518177509308,7.95653247833252,-1.77144062519073,1.338507771492,7.92291069030762,-1.95277452468872,1.33242797851563,7.92445516586304,-1.94377028942108,1.14783787727356,7.90483713150024,-1.38219797611237,1.13383054733276,7.91120052337646,-1.40186202526093,1.38159692287445,7.78627490997314,-2.13662910461426,1.40896236896515,7.80494976043701,-2.07644081115723,1.1401903629303,7.76078987121582,-1.29510390758514,1.79217278957367,7.60379791259766,-2.31636095046997,1.69923138618469,7.63846445083618,-0.756037175655365,2.44806170463562,7.37063646316528,0.0888413712382317,4.29834508895874,7.35888528823853,0.870295941829681,4.09235811233521,7.32054853439331,1.71792018413544,4.00695180892944,7.36008834838867,-3.32812237739563,2.1660840511322,7.45038414001465,-2.65506076812744,2.43556666374207,7.52005577087402,-1.92659544944763,2.74494981765747,7.50882482528687,-1.2986718416214,3.23501682281494,7.47103929519653,-0.786478817462921,3.72350430488586,7.54952335357666,-0.241601139307022,3.3666718006134,7.58496046066284,0.459071904420853,2.99241018295288,7.61931896209717,1.19308066368103,2.64043354988098,7.02118396759033,-4.588134765625,0.302804470062256,7.28912258148193,-4.39174032211304,1.05844056606293,7.30461883544922,-4.16600561141968,1.60434532165527,7.31459140777588,-3.77218055725098,1.8762264251709,7.33617830276489,-3.60372805595398,1.36917090415955,7.32266807556152,-3.85119986534119,1.28592264652252,7.01017570495605,-4.28947877883911,-0.434317737817764,6.8834753036499,-5.18655681610107,-0.951007843017578,7.28051567077637,-3.92623400688171,-1.33008432388306,7.06664037704468,-4.79440832138062,-2.06348180770874, -7.35717153549194,-3.42611026763916,-2.13628530502319,6.98475980758667,-3.95061850547791,-3.24926400184631,7.39472436904907,-2.51122641563416,-2.81611680984497,6.97631931304932,-2.93156123161316,-4.42347097396851,7.57095432281494,-1.45944273471832,-3.26196646690369,7.16307020187378,-1.51736581325531,-4.9548168182373,7.773512840271,-0.493855684995651,-3.47009801864624,7.40711784362793,-0.261860519647598,-5.11035680770874,7.97595167160034,0.366927713155746,-3.54731202125549,7.62014675140381,0.824904024600983,-5.06272649765015,8.13054275512695,1.13887596130371,-3.43744373321533,7.80506753921509,1.74159252643585,-4.78061580657959,8.20302867889404,1.82057893276215,-3.1892557144165,7.96303176879883,2.66389918327332,-4.27948951721191,8.08812522888184,3.50882053375244,-3.44184327125549,8.20641326904297,2.46463108062744,-2.56324315071106,8.14090156555176,2.93849992752075,-1.68800926208496,7.69823408126831,1.93010175228119,2.21435189247131,7.82948350906372,2.56363320350647,1.59077310562134,7.94811153411865,3.02071166038513,0.876743674278259,8.02180099487305,3.2474730014801,0.120442882180214,8.07208156585693,3.17632651329041,-0.772562444210052,7.24890565872192,2.92218780517578,4.07521533966064,7.58893871307373,3.81115937232971,2.86107921600342,7.79884052276611,4.51589107513428,1.80858504772186,7.94902515411377,4.97307729721069,0.562792003154755,8.04456806182861,4.71072673797607,-0.80043226480484,8.12451839447021,4.20733594894409,-2.17165398597717,6.5429801940918,4.35666608810425,5.53339815139771,5.83936452865601,5.31749963760376,6.95323324203491,4.86636686325073,5.77119159698486,7.97111225128174,3.79756140708923,5.85024261474609,8.73626232147217,2.88964056968689,5.78035593032837,9.22798442840576,2.05321335792542,5.54804086685181,9.56657791137695,1.43283069133759,5.34053802490234,9.74070644378662,0.906579077243805,5.14756155014038,9.83744335174561,0.440911084413528,4.84742116928101,9.92636775970459,0.51741760969162,9.11596298217773,8.07609844207764,1.09320676326752,9.20700931549072,7.98415613174438,1.76013934612274,9.29360103607178,7.84114980697632, -2.50077509880066,9.37444686889648,7.58180999755859,3.45287466049194,9.37937068939209,7.1098518371582,4.42452621459961,9.19738578796387,6.52355813980103,5.6390528678894,8.668625831604,5.56420850753784,6.60955381393433,7.86684608459473,4.36638593673706,7.37164115905762,6.32191371917725,2.9875328540802,0.504186153411865,7.12358570098877,9.1892728805542,1.0216156244278,7.20282888412476,9.14141368865967,1.59682321548462,7.36775684356689,9.01309108734131,2.30822396278381,7.53479909896851,8.79819869995117,3.19743204116821,7.63384580612183,8.40076923370361,4.19189023971558,7.58147573471069,7.77820682525635,5.25280475616455,7.27345371246338,6.87509870529175,6.21244335174561,6.61381769180298,5.77043581008911,6.98111343383789,5.40456295013428,4.37023735046387,7.62035131454468,7.41489553451538,1.09772956371307,6.92244052886963,8.67479038238525,2.88742017745972,6.02230930328369,9.61266899108887,3.94371747970581,4.84872579574585,10.4076776504517,4.84173250198364,3.88288593292236,10.7977638244629,5.37367582321167,2.908931016922,10.9924812316895,5.80038690567017,2.08697986602783,11.0666513442993,6.05755472183228,1.33430349826813,11.0534925460815,6.24619197845459,0.653030693531036,11.0219612121582,6.33474349975586,6.50100374221802,-3.37295937538147,-5.94551467895508,6.6031608581543,-1.84196555614471,-6.56225490570068,5.31550264358521,-3.66249299049377,-7.65658092498779,5.44049072265625,-1.97767984867096,-8.24058628082275,3.70406603813171,-3.83193826675415,-8.76936340332031,3.93267416954041,-1.91054832935333,-9.32651233673096,4.48633575439453,-3.77395033836365,-8.33473014831543,4.70650720596313,-1.9571076631546,-8.8559513092041,5.9597339630127,-3.52089285850525,-6.88484239578247,6.06760025024414,-1.92599403858185,-7.47396421432495,4.15610122680664,0.0726640149950981,-9.77432346343994,4.86433267593384,-0.0820099264383316,-9.25381183624268,5.57446050643921,-0.249779000878334,-8.63652420043945,6.93286228179932,-0.384116500616074,-6.53490591049194,6.32836961746216,-0.361771166324615,-7.70779514312744,4.38082361221313,2.18039727210999,-9.84704875946045, -5.06170415878296,1.88383483886719,-9.30503749847412,5.7366681098938,1.55229163169861,-8.68006324768066,6.57100296020508,1.23749625682831,-7.64973497390747,7.18364763259888,0.982836008071899,-6.41935920715332,4.66040945053101,4.36260938644409,-9.39548778533936,5.43802547454834,3.91017746925354,-8.80759620666504,6.10085916519165,3.39812302589417,-8.18937969207764,6.81753158569336,2.82796263694763,-7.25026369094849,7.37996053695679,2.28183484077454,-6.1011643409729,5.12424755096436,6.58037996292114,-8.45871829986572,5.86592388153076,5.93916893005371,-7.88381290435791,6.51570987701416,5.23922157287598,-7.28946113586426,7.13362312316895,4.37973070144653,-6.41931915283203,7.59203433990479,3.51524090766907,-5.4167013168335,5.43766069412231,8.64241790771484,-6.8898286819458,6.21404409408569,7.85274982452393,-6.45617389678955,6.86771774291992,7.00395059585571,-5.98439693450928,7.42110252380371,5.84361457824707,-5.29573011398315,7.81795406341553,4.65318918228149,-4.39308929443359,5.66820621490479,10.1276111602783,-4.72834587097168,6.5164942741394,9.25273895263672,-4.42417144775391,7.17343854904175,8.28569984436035,-4.03828477859497,7.68428468704224,7.02488470077515,-3.47118353843689,8.00661754608154,5.63727521896362,-2.72344303131104,5.62916088104248,11.0652112960815,-2.22535014152527,6.58144807815552,10.1174831390381,-2.12496757507324,7.18665170669556,9.17011833190918,-1.92709672451019,7.67361164093018,7.81409406661987,-1.61308932304382,7.95512533187866,6.38670635223389,-1.10849297046661,7.48661661148071,8.35696220397949,-0.0242236163467169,5.36135482788086,11.3852396011353,0.305533826351166,6.33773422241211,10.5318584442139,0.135644838213921,6.94026803970337,9.65329074859619,0.0726752132177353,6.95829677581787,9.24563407897949,1.72573637962341,6.17615461349487,10.3094024658203,2.19222164154053,5.11412286758423,11.2042589187622,2.70831894874573,1.04318618774414,-3.90684485435486,-9.57221412658691,1.13791787624359,-1.84333157539368,-10.353687286377,1.29253804683685,0.315788835287094,-11.085542678833,1.41271209716797,2.72090673446655,-11.2884521484375, -1.53582167625427,5.30492305755615,-10.8696126937866,1.7382435798645,8.02209091186523,-9.89536476135254,1.78098905086517,10.390025138855,-7.96726417541504,1.71314287185669,12.0455827713013,-5.30744695663452,1.59504652023315,12.9070796966553,-2.25943613052368,1.53724265098572,12.9241800308228,0.852242946624756,6.72695207595825,-4.68151807785034,-4.4121413230896,6.90901041030884,-5.72505712509155,-2.66515469551086,6.81298017501831,-6.25775909423828,-1.14970350265503,0.496038883924484,-3.80822563171387,-9.65039348602295,0.565522968769073,-1.81483423709869,-10.4103507995605,0.637238025665283,0.32974910736084,-11.1553335189819,0.709146916866302,2.77228307723999,-11.3831214904785,0.787863969802856,5.40320062637329,-10.9760103225708,0.889000713825226,8.15651321411133,-10.0839538574219,0.861368179321289,10.5052967071533,-8.0781078338623,0.83338987827301,12.1373767852783,-5.34705066680908,0.807116091251373,12.9535961151123,-2.26549959182739,0.778051435947418,13.0002193450928,0.870301723480225,2.26013684272766,-3.8938570022583,-9.32493686676025,2.43823719024658,-1.86028254032135,-10.0303478240967,2.68087267875671,0.260054409503937,-10.6602001190186,2.8737952709198,2.5838885307312,-10.7948656082153,3.07526302337646,5.02608108520508,-10.3114147186279,3.39611577987671,7.53373670578003,-9.3833122253418,3.56346130371094,9.79408168792725,-7.57969760894775,3.49736428260803,11.5034608840942,-5.15501117706299,3.32358813285828,12.5054578781128,-2.2839457988739,3.15594434738159,12.6157512664795,0.672657787799835,0.738614797592163,12.4994955062866,3.8485631942749,1.49879384040833,12.4474573135376,3.80250239372253,2.94505977630615,-3.86894845962524,-9.09688091278076,3.17154812812805,-1.87411487102509,-9.71990203857422,3.40799689292908,0.182872295379639,-10.2753419876099,3.61800932884216,2.4148485660553,-10.3745346069336,3.88968443870544,4.74185466766357,-9.87769603729248,4.27451515197754,7.13207197189331,-8.99654769897461,4.49432039260864,9.30913543701172,-7.28674602508545,4.54035806655884,10.9403295516968,-4.96742153167725,4.46231174468994,11.9082851409912,-2.26144361495972, -4.19918441772461,12.1256256103516,0.515531361103058,4.09540367126465,11.7629451751709,3.10842871665955,3.14920330047607,12.1326732635498,3.42246961593628,1.65472447872162,-3.89587569236755,-9.47716331481934,1.75957727432251,-1.85504877567291,-10.2373600006104,1.96312272548676,0.299863189458847,-10.9261789321899,2.13375473022461,2.68816900253296,-11.1015186309814,2.27932524681091,5.20627212524414,-10.6481056213379,2.56503582000732,7.8169584274292,-9.65657138824463,2.68940830230713,10.1434297561646,-7.78519916534424,2.60994911193848,11.8307313919067,-5.24713611602783,2.472416639328,12.7737789154053,-2.30065274238586,2.33876633644104,12.8427362442017,0.746545791625977,2.29699468612671,12.3575115203857,3.62430381774902,0.517588376998901,-5.26805114746094,-9.33380603790283,1.08643567562103,-5.23129749298096,-9.29151821136475,1.74097418785095,-5.15038776397705,-9.19673824310303,2.42765736579895,-5.08308553695679,-9.04594707489014,3.15881657600403,-5.02853727340698,-8.81332302093506,3.93239068984985,-4.9757399559021,-8.46383285522461,4.73228025436401,-4.92406463623047,-7.95413875579834,5.50995969772339,-4.86525535583496,-7.17065668106079,6.20486640930176,-4.79087162017822,-6.10080003738403,8.64319515228271,-13.7613410949707,-6.49234867095947,8.45827865600586,-13.2992315292358,-7.70548915863037,7.77010488510132,-13.0706129074097,-8.68906593322754,6.9291787147522,-13.0040559768677,-9.5849781036377,5.94925403594971,-12.992039680481,-10.2592067718506,4.99908208847046,-12.9968252182007,-10.7301349639893,4.06416320800781,-13.0407457351685,-11.0760583877563,3.09096384048462,-13.0979118347168,-11.3484125137329,2.01616597175598,-13.1434345245361,-11.5675439834595,0.897775232791901,-13.1605777740479,-11.6888275146484,8.4887523651123,-14.6470861434937,-5.17452192306519,8.03654384613037,-15.6640710830688,-4.20482587814331,7.31738233566284,-16.5804405212402,-3.35303926467896,6.74378490447998,-17.5974903106689,-2.52438831329346,6.32377433776855,-18.2904396057129,-1.95093476772308,5.98745822906494,-18.9915714263916,-1.41046440601349,5.47605514526367,-19.6213970184326,-0.822464108467102, -4.90706348419189,-20.2975883483887,-0.105866722762585,4.28194427490234,-20.941780090332,0.766014516353607,3.81215596199036,-21.2985401153564,1.50899231433868,3.3359682559967,-21.7558116912842,1.85429203510284,2.81476855278015,-22.0949058532715,2.03073906898499,2.35492038726807,-22.3543949127197,2.18042707443237,1.7653636932373,-22.6129531860352,2.30901074409485,1.22038698196411,-22.7748050689697,2.32924127578735,0.85540908575058,-22.9290084838867,2.25529050827026,0.36254608631134,-23.1343860626221,2.10908079147339,0.625648081302643,-7.37590169906616,-9.60719299316406,1.32410180568695,-7.34512948989868,-9.55502128601074,2.05779266357422,-7.34163665771484,-9.42951202392578,2.81746506690979,-7.32136392593384,-9.22162342071533,3.59860324859619,-7.28751516342163,-8.92420864105225,4.38082933425903,-7.23829650878906,-8.47921657562256,5.13177537918091,-7.17587614059448,-7.84253072738647,5.77947664260864,-7.19315910339355,-6.97707557678223,6.34135818481445,-7.28495264053345,-5.93021202087402,6.77100849151611,-7.48039674758911,-4.6926383972168,6.84615612030029,-7.86087083816528,-3.35218596458435,6.78169870376587,-8.35580444335938,-2.06780433654785,6.40048694610596,-8.91832733154297,-0.943061053752899,5.79883766174316,-9.52748394012451,-0.11037153750658,5.10273265838623,-10.1021938323975,0.494475066661835,4.39243078231812,-10.6278562545776,0.989344716072083,3.71881508827209,-11.0863447189331,1.52291250228882,3.13284301757813,-11.5497035980225,2.12970852851868,2.74229621887207,-11.9313306808472,2.70095419883728,2.32388377189636,-12.3248901367188,3.21492695808411,1.94650614261627,-12.5904026031494,3.57901430130005,1.57353568077087,-12.7477254867554,3.90267062187195,1.18646287918091,-12.8427982330322,4.1576943397522,0.891132175922394,-12.8845291137695,4.30355882644653,0.64113837480545,-12.891077041626,4.40399074554443,0.39007779955864,-12.905122756958,4.46603679656982,0.179619997739792,-12.9209518432617,4.48812198638916,0.563388705253601,-6.28740692138672,-9.4006404876709,1.21184766292572,-6.32549619674683,-9.34765338897705,1.88929092884064,-6.27402353286743,-9.21586894989014, -2.60735654830933,-6.22267913818359,-9.01738357543945,3.36249756813049,-6.16755390167236,-8.75267696380615,4.14875459671021,-6.10737609863281,-8.37246036529541,4.9389271736145,-6.06502532958984,-7.80907344818115,5.64825057983398,-6.05284976959229,-6.97354698181152,6.27506494522095,-6.09688806533813,-5.89902639389038,6.74664688110352,-6.25517225265503,-4.52713060379028,6.8474063873291,-6.77249336242676,-3.04118299484253,6.82615423202515,-7.29014492034912,-1.64151537418365,6.31480979919434,-7.76024484634399,-0.429300457239151,5.68121862411499,-8.37579917907715,0.379459589719772,5.09699296951294,-8.88006687164307,1.06801092624664,4.46523904800415,-9.31941509246826,1.70946669578552,4.05541086196899,-9.87843418121338,2.41101765632629,3.68897819519043,-10.443320274353,3.13330888748169,3.23865914344788,-10.8654813766479,3.92362713813782,2.6061635017395,-11.2555894851685,4.53100872039795,2.02840113639832,-11.5209093093872,4.93467092514038,1.52248239517212,-11.6290349960327,5.31799459457397,1.14085018634796,-11.6908254623413,5.685218334198,0.862997770309448,-11.7362089157104,6.03002405166626,0.605921387672424,-11.7760925292969,6.30243301391602,0.350636273622513,-11.8051671981812,6.50244760513306,0.118107497692108,-11.8193836212158,6.51914405822754,0.72603440284729,-9.14775466918945,-10.0981168746948,1.51200354099274,-9.19240188598633,-10.0465278625488,2.32049226760864,-9.17105007171631,-9.88348770141602,3.10815048217773,-9.09110164642334,-9.61295890808105,3.89651775360107,-9.06318092346191,-9.25549983978271,4.68364000320435,-9.12973690032959,-8.76784133911133,5.39656257629395,-9.20655632019043,-8.07389163970947,5.94506978988647,-9.33605480194092,-7.20093536376953,6.39533710479736,-9.4915828704834,-6.2245512008667,6.7011399269104,-9.6498556137085,-5.11427545547485,6.79371881484985,-9.98949527740479,-3.93581223487854,6.66381597518921,-10.5243453979492,-2.8044912815094,6.22340726852417,-11.1233015060425,-1.82647752761841,5.80161666870117,-11.8315048217773,-0.991313517093658,5.27317380905151,-12.5326900482178,-0.33777716755867, -4.66736888885498,-13.1873483657837,0.177737548947334,4.01640844345093,-13.7544431686401,0.620997488498688,3.31818199157715,-14.2157945632935,1.00182127952576,2.78540349006653,-14.5174942016602,1.25320279598236,2.27392053604126,-14.7957696914673,1.52346575260162,1.76376962661743,-15.0323362350464,1.90779769420624,1.4566867351532,-15.1567716598511,2.1547839641571,1.14831292629242,-15.2191495895386,2.40677833557129,0.880245089530945,-15.2733564376831,2.56835436820984,0.643745899200439,-15.3090209960938,2.69347929954529,0.40669858455658,-15.3267621994019,2.75405740737915,0.150777891278267,-15.3646907806396,2.76293134689331,0.781291663646698,-10.3894596099854,-10.448634147644,1.62238729000092,-10.3734064102173,-10.354660987854,2.47534418106079,-10.2873373031616,-10.1611289978027,3.28743171691895,-10.2262086868286,-9.87693691253662,4.0867748260498,-10.2447195053101,-9.51634502410889,4.87640619277954,-10.3242082595825,-9.03165531158447,5.61750507354736,-10.4153423309326,-8.32294082641602,6.1517915725708,-10.5465068817139,-7.44881343841553,6.54033660888672,-10.7677879333496,-6.51932191848755,6.70928955078125,-10.986346244812,-5.45079612731934,6.8463339805603,-11.4628429412842,-4.35247278213501,6.65667104721069,-11.9765958786011,-3.28637266159058,6.08158683776855,-12.5608568191528,-2.4070348739624,5.63037824630737,-13.1747341156006,-1.52856910228729,5.1600284576416,-13.9945020675659,-0.966353237628937,4.68250942230225,-14.7705202102661,-0.467575043439865,4.17905330657959,-15.3869075775146,0.0480929762125015,3.59335565567017,-15.9162015914917,0.523802161216736,3.04364395141602,-16.3260154724121,0.831762075424194,2.42143297195435,-16.7167434692383,1.08995759487152,1.98372232913971,-16.9523372650146,1.26455080509186,1.59317064285278,-17.1624355316162,1.44275057315826,1.21537566184998,-17.3552722930908,1.60568916797638,0.864116370677948,-17.4638252258301,1.74329102039337,0.566159963607788,-17.5375156402588,1.82823538780212,0.358255118131638,-17.5536861419678,1.87577652931213,0.120445497334003,-17.5740985870361,1.90244162082672, -0.827059805393219,-11.777400970459,-10.9927101135254,1.78073978424072,-11.7241125106812,-10.8770484924316,2.78206324577332,-11.7376880645752,-10.6820974349976,3.64758586883545,-11.7248067855835,-10.4047145843506,4.46547555923462,-11.7181310653687,-10.0473127365112,5.28482007980347,-11.7900047302246,-9.61402893066406,6.19617986679077,-11.8668336868286,-8.87957954406738,6.80679321289063,-11.9710521697998,-7.94225406646729,7.17634248733521,-12.1400594711304,-7.03443813323975,7.25316190719604,-12.5044260025024,-5.96344804763794,7.27533388137817,-13.0910673141479,-4.77431774139404,6.8624472618103,-13.7653150558472,-3.84674096107483,6.18089771270752,-14.4139165878296,-3.0373170375824,5.60068082809448,-15.1557779312134,-2.3195641040802,5.06253862380981,-15.9161586761475,-1.78069031238556,4.59118938446045,-16.6205387115479,-1.27265441417694,4.16988658905029,-17.2565898895264,-0.780969023704529,3.73949885368347,-17.8339920043945,-0.224628210067749,3.21607780456543,-18.4729709625244,0.400370657444,2.80481314659119,-18.9583435058594,0.781409800052643,2.46587800979614,-19.3676662445068,1.06315422058105,2.0509467124939,-19.6987934112549,1.3283816576004,1.65970063209534,-19.945442199707,1.46141600608826,1.21194422245026,-20.0902576446533,1.41052174568176,0.84194952249527,-20.2194232940674,1.33887577056885,0.541794419288635,-20.3799839019775,1.29653906822205,0.203980699181557,-20.5156555175781,1.26132202148438,0.643635272979736,-8.22926044464111,-9.85444641113281,1.39376223087311,-8.18760395050049,-9.78995132446289,2.171799659729,-8.17779922485352,-9.64373016357422,2.9530668258667,-8.15102100372314,-9.41429328918457,3.74704670906067,-8.14085292816162,-9.09621715545654,4.5271954536438,-8.13263034820557,-8.62427616119385,5.26237392425537,-8.1309642791748,-7.9494104385376,5.8615984916687,-8.1704626083374,-7.07688856124878,6.37500095367432,-8.34739589691162,-6.07270526885986,6.74229383468628,-8.53392124176025,-4.88599109649658,6.83558368682861,-8.86042308807373,-3.62137317657471,6.73172521591187,-9.36280155181885,-2.40425562858582,6.34451007843018,-9.97914695739746,-1.35259056091309, -5.85404062271118,-10.6383562088013,-0.481644362211227,5.1982889175415,-11.2626161575317,0.134075298905373,4.50275993347168,-11.8434352874756,0.599624037742615,3.78320741653442,-12.3431959152222,1.00235331058502,3.12188076972961,-12.812237739563,1.44490206241608,2.68707728385925,-13.1786756515503,1.80647385120392,2.26843738555908,-13.5017595291138,2.184974193573,1.8536434173584,-13.7794160842896,2.59936094284058,1.50331711769104,-13.9578886032104,2.98683619499207,1.18794131278992,-14.1320238113403,3.33676099777222,0.953288018703461,-14.2412595748901,3.54889917373657,0.621793150901794,-14.3140735626221,3.72880434989929,0.424510806798935,-14.3100891113281,3.79969429969788,0.173259794712067,-14.295295715332,3.87241649627686,0.686224699020386,-3.31110382080078,11.4172983169556,0.803417325019836,-3.27108144760132,11.3626937866211,0.946941077709198,-3.25326538085938,11.2468614578247,1.0470564365387,-3.2831404209137,11.1011810302734,1.09913229942322,-3.31128525733948,10.9977207183838,1.15104711055756,-3.34290099143982,10.9002914428711,0.611746072769165,-3.34157705307007,11.3992328643799,0.532138586044312,-3.39445948600769,11.3600931167603,0.504551589488983,-3.43966221809387,11.2966022491455,0.479691803455353,-3.43749380111694,11.1914520263672,0.52191436290741,-3.41624903678894,11.0354175567627,0.658787488937378,-3.38174843788147,10.8952512741089,0.840401828289032,-3.3503565788269,10.8026313781738,0.992791056632996,-3.34739780426025,10.7887210845947,1.13266718387604,-3.37302184104919,10.8144035339355,0.678815186023712,-3.30243062973022,11.1854343414307,0.792406320571899,-3.27622985839844,11.0769290924072,0.907720804214478,-3.27583456039429,10.9785804748535,1.0204222202301,-3.30554914474487,10.9048337936401,0.595511674880981,-3.34261322021484,11.2803497314453,0.292443186044693,-4.70302867889404,10.411449432373,2.75259256362915,-5.40841817855835,9.14834403991699,3.09797310829163,-5.70720195770264,8.96552085876465,1.85865950584412,-4.97731590270996,9.77219295501709,2.34341382980347,-5.19857597351074,9.45803833007813,1.36100649833679,-4.80800199508667,10.1225099563599, -0.98523885011673,-4.71654033660889,10.2899417877197,0.604986190795898,-4.68483877182007,10.3602104187012,3.37384390830994,-5.93749809265137,8.8080997467041,3.49813437461853,-6.3752760887146,8.79473876953125,3.4315812587738,-6.67488241195679,8.79679489135742,3.16283941268921,-7.06501150131226,8.80908107757568,2.72594547271729,-7.41771364212036,9.13029098510742,2.20925116539001,-7.62382793426514,9.44645118713379,1.79464256763458,-7.65139579772949,9.76041889190674,1.3591480255127,-7.64054775238037,10.1210842132568,0.982116758823395,-7.51274871826172,10.2800188064575,0.607004284858704,-7.40227365493774,10.3452959060669,0.28584498167038,-7.38006734848022,10.3803043365479,0.30194216966629,-6.24943542480469,10.8142013549805,0.6246377825737,-6.24589967727661,10.7649621963501,1.01724016666412,-6.24143505096436,10.697437286377,1.40521430969238,-6.2437744140625,10.5365409851074,1.88000786304474,-6.29273557662964,10.1998977661133,2.27079844474792,-6.35514211654663,9.89800643920898,2.61869859695435,-6.34562492370605,9.6003999710083,2.96545195579529,-6.33925914764404,9.38929843902588,3.0959620475769,-6.32578992843628,9.32376480102539,3.16499090194702,-6.37896108627319,9.31092548370361,3.11799311637878,-6.41603517532349,9.31290149688721,2.98541688919067,-6.43015575408936,9.32470798492432,2.60040545463562,-6.32098340988159,9.58815670013428,2.22038984298706,-6.32131481170654,9.89197540283203,1.85293579101563,-6.3095908164978,10.1936893463135,1.40329623222351,-6.25318431854248,10.5402755737305,1.01401877403259,-6.20932769775391,10.7413091659546,0.626720488071442,-6.19377565383911,10.8380336761475,0.295129120349884,-6.19072103500366,10.871675491333,0.298713028430939,-6.05210113525391,10.5934009552002,0.617956638336182,-6.04542541503906,10.5434818267822,1.00635957717896,-6.05155611038208,10.4750242233276,1.39018440246582,-6.04279756546021,10.3119068145752,1.87275040149689,-6.04466199874878,9.97061347961426,2.29548501968384,-6.07539176940918,9.66455364227295,2.66421794891357,-6.12633037567139,9.36283683776855,3.01050424575806,-6.17132997512817,9.17846012115479, -3.19043397903442,-6.20648145675659,9.08168697357178,3.27824902534485,-6.35046339035034,9.06867027282715,3.22460269927979,-6.44936037063599,9.07067394256592,3.04573392868042,-6.54443311691284,9.08264446258545,2.64308547973633,-6.56647920608521,9.3955774307251,2.21660327911377,-6.56374502182007,9.70359134674072,1.83311855792999,-6.52105617523193,10.0094718933105,1.38828682899475,-6.42269420623779,10.3608446121216,1.00317096710205,-6.3660306930542,10.5475664138794,0.620018243789673,-6.32859325408936,10.6336011886597,0.291972726583481,-6.32110595703125,10.6677074432373,0.333059281110764,-3.04259610176086,9.12734985351563,3.13488340377808,-4.35821485519409,7.8642463684082,3.52823090553284,-4.91547203063965,7.6814227104187,2.11679720878601,-3.55416989326477,8.48809337615967,2.66887521743774,-3.96684694290161,8.1739501953125,1.55002808570862,-3.23837113380432,8.83841133117676,1.12207198143005,-3.06779313087463,9.00584316253662,0.689009308815002,-3.00867295265198,9.07611083984375,3.84241533279419,-5.34498262405396,7.524001121521,3.98396801948547,-6.1614818572998,7.51064014434814,3.90817141532898,-6.72027730941772,7.51269578933716,3.60210609436035,-7.44788789749146,7.5249810218811,3.10453486442566,-8.10571765899658,7.84619045257568,2.51607990264893,-8.49013233184814,8.16235160827637,2.04389142990112,-8.54155158996582,8.47632026672363,1.54791212081909,-8.52130222320557,8.83698463439941,1.11851668357849,-8.28295230865479,8.99592018127441,0.691307425498962,-8.07691287994385,9.06119632720947,0.325544089078903,-8.03549098968506,9.09620571136475,0.292443186044693,-3.10722589492798,3.15491962432861,2.75259256362915,-5.52335596084595,2.55872249603271,3.09797310829163,-6.34004735946655,2.62602686882019,1.85865950584412,-4.13366317749023,2.78859424591064,2.34341382980347,-4.8433723449707,2.67609429359436,1.36100649833679,-3.52603387832642,2.97449827194214,0.98523885011673,-3.21061944961548,3.05512428283691,0.604986190795898,-3.09410953521729,3.09418106079102,3.37384390830994,-6.97919702529907,2.66290640830994,3.49813437461853,-8.0264310836792,2.99264764785767, -3.4315812587738,-8.73656749725342,3.22848439216614,3.16283941268921,-9.65559577941895,3.54429864883423,2.72594547271729,-10.3044757843018,4.11142539978027,2.20925116539001,-10.608268737793,4.55950307846069,1.79464256763458,-10.4894304275513,4.86614847183228,1.3591480255127,-10.2519884109497,5.18520212173462,0.982116758823395,-9.85527992248535,5.22973537445068,0.607004284858704,-9.55466938018799,5.2027440071106,0.28584498167038,-9.48139667510986,5.21719026565552,0.00993838906288147,-13.5255155563354,-0.883645474910736,0.0935440063476563,-13.5425844192505,-0.867419004440308,0.105281591415405,-13.5461883544922,-0.858322620391846,0.0631645917892456,-13.5336780548096,-0.87827080488205,0.0796384811401367,-13.5381870269775,-0.872663080692291,0.0462523698806763,-13.5290946960449,-0.881868422031403,0.0334823727607727,-13.5268440246582,-0.883949220180511,0.0205598473548889,-13.5259380340576,-0.884593188762665,0.114656686782837,-13.5491352081299,-0.851415693759918,0.1188805103302,-13.5517959594727,-0.836480975151062,0.116618633270264,-13.5535011291504,-0.82618921995163,0.107485771179199,-13.5556221008301,-0.812727689743042,0.0926384925842285,-13.554347038269,-0.798599600791931,0.0750792026519775,-13.5522794723511,-0.789532661437988,0.0609891414642334,-13.5492067337036,-0.786605060100555,0.0461891889572144,-13.545431137085,-0.784700572490692,0.0333762168884277,-13.5430583953857,-0.788081586360931,0.0206284523010254,-13.5417499542236,-0.791459500789642,0.00971415638923645,-13.5412616729736,-0.792000591754913,0.292443186044693,-5.27976083755493,-0.64216148853302,0.604986190795898,-5.2786602973938,-0.694170773029327,0.98523885011673,-5.39025735855103,-0.699558854103088,1.36100649833679,-5.68794107437134,-0.693856835365295,1.85865950584412,-6.26679515838623,-0.70758056640625,2.34341382980347,-6.92446565628052,-0.639083087444305,2.75259256362915,-7.55628824234009,-0.581198334693909,3.09797310829163,-8.27844047546387,-0.343432426452637,3.37384390830994,-8.84640026092529,-0.170109942555428,3.49813437461853,-9.7295389175415,0.331425666809082, -3.4315812587738,-10.3262414932251,0.681404411792755,3.16283941268921,-11.0966196060181,1.14289796352386,2.72594547271729,-11.5799207687378,1.74674069881439,2.20925116539001,-11.7740507125854,2.17691659927368,1.79464256763458,-11.6132354736328,2.39793872833252,1.3591480255127,-11.3436212539673,2.60234642028809,0.982116758823395,-10.9792337417603,2.54923462867737,0.607004284858704,-10.7138185501099,2.45992803573608,0.28584498167038,-10.6454162597656,2.45513987541199,0.35059916973114,-2.23496174812317,6.65812683105469,0.725294470787048,-2.20487284660339,6.60296058654785,1.18116390705109,-2.30328869819641,6.5455961227417,1.63165736198425,-2.57703590393066,6.41405296325684,2.22827434539795,-3.09546685218811,6.13171005249023,2.80942678451538,-3.73151898384094,5.90092802047729,3.29997563362122,-4.33814430236816,5.67074728012085,3.71403884887695,-5.12747049331665,5.59133529663086,4.04476928710938,-5.74061155319214,5.51424503326416,4.19378137588501,-6.82378721237183,5.64273500442505,4.11398839950562,-7.56185483932495,5.7414436340332,3.79180479049683,-8.5201358795166,5.87921953201294,3.26802968978882,-9.29712581634521,6.30210304260254,2.64858508110046,-9.71415996551514,6.67280054092407,2.15152645111084,-9.69162273406982,6.98374176025391,1.62942981719971,-9.5609073638916,7.32720279693604,1.17742097377777,-9.20002269744873,7.43883895874023,0.727713644504547,-8.90883350372314,7.46596908569336,0.342687785625458,-8.8439884185791,7.49247550964355,-2.07070708274841,0.569117963314056,8.77950286865234,-2.07506585121155,0.694664776325226,8.8052282333374,-2.1513307094574,0.849074482917786,8.8833589553833,-2.45797538757324,1.05291700363159,9.05999660491943,-2.80601143836975,1.26788198947906,9.0857458114624,-3.24545574188232,1.39283037185669,9.08279418945313,-3.67122340202332,1.38816392421722,9.07086277008057,-4.01973390579224,1.32798945903778,8.95517253875732,-4.24928617477417,1.24516928195953,8.86488914489746,-4.44707155227661,1.18011903762817,8.7779655456543,-4.67869663238525,1.06821238994598,8.62750625610352,-4.79920244216919,0.889434039592743,8.46297264099121, --4.87659406661987,0.808789074420929,8.36913776397705,-2.3352427482605,0.395833760499954,8.85163974761963,-2.14283895492554,0.478615403175354,8.76449966430664,-2.63840126991272,0.320625454187393,9.00386905670166,-2.98839020729065,0.26444399356842,9.07974052429199,-3.43948340415955,0.210528627038002,9.10910415649414,-3.95418238639832,0.249527797102928,9.03609466552734,-4.30096769332886,0.337327897548676,8.85173606872559,-4.48836517333984,0.439885377883911,8.72526073455811,-4.65410995483398,0.546657264232635,8.546630859375,-4.81672239303589,0.632130324840546,8.39734554290771,-4.92189264297485,0.683880686759949,8.30993938446045,-4.98457670211792,0.756589829921722,8.24863338470459,2.07070708274841,0.570815086364746,8.77950286865234,2.07506608963013,0.69462925195694,8.8052282333374,2.15133047103882,0.84870857000351,8.8833589553833,2.45797276496887,1.05290365219116,9.07314777374268,2.8060142993927,1.26744377613068,9.09841156005859,3.24545097351074,1.39072895050049,9.09785652160645,3.67122340202332,1.38608717918396,9.0860595703125,4.01973390579224,1.3258204460144,8.96726989746094,4.24928617477417,1.23828160762787,8.87012004852295,4.44707155227661,1.16017472743988,8.7779655456543,4.67869663238525,1.04165160655975,8.62750625610352,4.79920244216919,0.888553500175476,8.46297359466553,4.87659406661987,0.808789074420929,8.36913776397705,2.3352427482605,0.446783870458603,8.85163974761963,2.14283895492554,0.490987867116928,8.76450061798096,2.63840126991272,0.370653688907623,9.00386905670166,2.98839020729065,0.266836494207382,9.07974052429199,3.43948340415955,0.211244359612465,9.10910415649414,3.95418238639832,0.250260204076767,9.03609466552734,4.30096769332886,0.337250381708145,8.85173606872559,4.48836517333984,0.439885377883911,8.72526073455811,4.65410995483398,0.546657264232635,8.546630859375,4.81672239303589,0.632130324840546,8.39734554290771,4.92189264297485,0.683880686759949,8.30993938446045,4.98457670211792,0.756589829921722,8.24863338470459,-2.11595106124878,0.621418178081512,8.57382011413574,-2.11086773872375,0.759891152381897,8.59828948974609, --2.09473943710327,0.923130989074707,8.62376022338867,-2.38242292404175,1.22601747512817,8.74057006835938,-2.75832724571228,1.47955667972565,8.77144336700439,-3.24065542221069,1.61621057987213,8.75167465209961,-3.6715087890625,1.59770023822784,8.73800277709961,-3.96165585517883,1.50148141384125,8.68351459503174,-4.26363658905029,1.38684070110321,8.56610107421875,-4.43415689468384,1.277712225914,8.45132350921631,-4.60842418670654,1.11471974849701,8.22391033172607,-4.7768030166626,0.878619432449341,7.92279863357544,-4.8810453414917,0.768955230712891,7.82474756240845,-2.21902751922607,0.140462622046471,8.54229640960693,-2.11851620674133,0.530460178852081,8.55931568145752,-2.59652829170227,0.035649012774229,8.71971702575684,-2.94878840446472,0.0474902093410492,8.77867412567139,-3.44295859336853,0.0413073413074017,8.79851341247559,-3.88026285171509,0.0668637081980705,8.75302410125732,-4.22494983673096,0.103257782757282,8.58361911773682,-4.43716955184937,0.183535009622574,8.38054370880127,-4.6274881362915,0.333828032016754,8.22596168518066,-4.74970388412476,0.479262411594391,8.07919883728027,-4.93270349502563,0.600320100784302,7.8647665977478,-4.98596143722534,0.685719907283783,7.69714164733887,2.11595487594604,0.621723294258118,8.57382011413574,2.11086702346802,0.760293841362,8.59828948974609,2.09473443031311,0.923543334007263,8.62376022338867,2.38279891014099,1.22259521484375,8.74883937835693,2.75840044021606,1.480393409729,8.78505039215088,3.24051141738892,1.60412275791168,8.75417423248291,3.6714973449707,1.58520579338074,8.74022769927979,3.96170663833618,1.49049746990204,8.68366622924805,4.26367235183716,1.38282108306885,8.56610107421875,4.43421459197998,1.2730940580368,8.45132350921631,4.60842847824097,1.11448466777802,8.22391033172607,4.7768030166626,0.878619432449341,7.92279863357544,4.88104581832886,0.768955290317535,7.82474756240845,2.21887826919556,0.139048650860786,8.54229640960693,2.11856269836426,0.531427502632141,8.55931568145752,2.59620189666748,0.0334820710122585,8.71971702575684,2.94885039329529,0.0474754571914673,8.77870750427246, -3.44295191764832,0.0414743237197399,8.79851245880127,3.88026309013367,0.0668422803282738,8.75302410125732,4.22494840621948,0.103296652436256,8.5836181640625,4.43716955184937,0.183533519506454,8.38054370880127,4.6274881362915,0.333831369876862,8.22596168518066,4.74970388412476,0.4792640209198,8.07919883728027,4.93270349502563,0.600320100784302,7.8647665977478,4.98596143722534,0.685719966888428,7.69714164733887,-3.25908279418945,0.736528098583221,7.3692831993103,3.25908279418945,0.736529946327209,7.3692831993103 - } - PolygonVertexIndex: *33849 { - a: 0,46,49,-49,46,6,47,-50,49,47,50,-53,51,48,49,-53,52,50,281,-283,280,51,52,-283,56,55,280,-283,281,53,56,-283,56,53,7,-55,55,56,54,-2,1,54,59,-59,54,7,57,-60,59,57,60,-63,61,58,59,-63,62,60,247,-249,246,61,62,-249,66,65,246,-249,63,66,248,-248,66,63,8,-65,65,66,64,-3,41,68,71,-45,68,42,69,-72,71,69,43,-71,44,71,70,-5,5,39,72,-74,72,40,11,-74,5,73,75,-46,73,11,74,-76,75,74,283,-285,279,45,75,-285,6,76,78,-48,76,12,77,-79,78,77,79,-81,50,47,78,-81,80,79,308,-311,281,50,80,-311,83,53,281,-311,81,83,310,-309,83,81,13,-83,53,83,82,-8,7,82,85,-58,82,13,84,-86,85,84,86,-88,60,57,85,-88,87,86,250,-252,60,87,251,-248,90,63,247,-252,88,90,251,-251,90,88,14,-90,63,90,89,-9,8,89,92,-68,89,14,91,-93,92,91,275,-279,249,67,92,-279,96,9,-277,93,96,276,-274,96,93,15,-95,95,96,94,-11,10,94,99,-99,94,15,97,-100,99,97,100,-102,11,99,-102,101,100,285,-287,74,101,286,-284,12,102,104,-78,102,16,103,-105,104,103,105,-107,79,77,104,-107,106,105,306,-310,79,106,309,-309,109,81,308,-310,107,109,309,-307,109,107,17,-109,81,109,108,-14,13,108,111,-85,108,17,110,-112,111,110,112,-114,86,84,111,-114,113,112,252,-254,86,113,253,-251,116,88,250,-254,114,116,253,-253,116,114,18,-116,88,116,115,-15,14,115,118,-92,115,18,117,-119,118,117,273,-277,91,118,276,-276,121,93,273,-275,119,121,274,-272,121,119,19,-121,93,121,120,-16,15,120,123,-98,120,19,122,-124,123,122,124,-126,100,97,123,-126,125,124,287,-289,100,125,288,-286,16,126,128,-104,126,20,127,-129,128,127,129,-131,105,103,128,-131,130,129,304,-308,105,130,307,-307,133,107,306,-308,131,133,307,-305,133,131,21,-133,107,133,132,-18,17,132,135,-111,132,21,134,-136,135,134,136,-138,112,110,135,-138,137,136,254,-256,112,137,255,-253,140,114,252,-256,138,140,255,-255,140,138,22,-140,114,140,139,-19,18,139,142,-118,139,22,141,-143,142,141,271,-275,117,142,274,-274,145,119,271,-273,143,145,272,-270,145,143,23,-145,119,145,144,-20,19,144,147,-123,144,23,146,-148,147,146,148,-150,124,122,147,-150,149,148,289,-291,124,149,290,-288,20,150,152,-128,150,24,151,-153,152,151,153,-155,129,127, -152,-155,154,153,302,-306,129,154,305,-305,157,131,304,-306,155,157,305,-303,157,155,25,-157,131,157,156,-22,21,156,159,-135,156,25,158,-160,159,158,160,-162,136,134,159,-162,161,160,256,-258,136,161,257,-255,164,138,254,-258,162,164,257,-257,164,162,26,-164,138,164,163,-23,22,163,166,-142,163,26,165,-167,166,165,269,-273,141,166,272,-272,169,143,269,-271,167,169,270,-268,169,167,27,-169,143,169,168,-24,23,168,171,-147,168,27,170,-172,171,170,172,-174,148,146,171,-174,173,172,291,-293,148,173,292,-290,24,174,176,-152,174,28,175,-177,176,175,177,-179,153,151,176,-179,178,177,300,-304,153,178,303,-303,181,155,302,-304,179,181,303,-301,181,179,29,-181,155,181,180,-26,25,180,183,-159,180,29,182,-184,183,182,184,-186,160,158,183,-186,185,184,258,-260,160,185,259,-257,188,162,256,-260,186,188,259,-259,188,186,30,-188,162,188,187,-27,26,187,190,-166,187,30,189,-191,190,189,267,-271,165,190,270,-270,193,167,267,-269,191,193,268,-266,193,191,31,-193,167,193,192,-28,27,192,195,-171,192,31,194,-196,195,194,196,-198,172,170,195,-198,197,196,293,-295,172,197,294,-292,28,198,200,-176,198,32,199,-201,200,199,201,-203,177,175,200,-203,202,201,298,-302,177,202,301,-301,205,179,300,-302,203,205,301,-299,205,203,33,-205,179,205,204,-30,29,204,207,-183,204,33,206,-208,207,206,208,-210,184,182,207,-210,209,208,260,-262,184,209,261,-259,212,186,258,-262,210,212,261,-261,212,210,34,-212,186,212,211,-31,30,211,214,-190,211,34,213,-215,214,213,265,-269,189,214,268,-268,217,191,265,-267,215,217,266,-264,217,215,35,-217,191,217,216,-32,31,216,219,-195,216,35,218,-220,219,218,220,-222,196,194,219,-222,221,220,295,-297,196,221,296,-294,32,222,224,-200,222,36,223,-225,224,223,225,-227,201,199,224,-227,226,225,241,-300,201,226,299,-299,229,203,298,-300,227,229,299,-242,229,227,37,-229,203,229,228,-34,33,228,231,-207,228,37,230,-232,231,230,232,-234,208,206,231,-234,233,232,244,-263,208,233,262,-261,236,210,260,-263,234,236,262,-245,236,234,38,-236,210,236,235,-35,34,235,238,-214,235,38,237,-239,238,237,263,-267,213,238,266,-266,37,227,240,-240, -240,227,241,-243,220,218,240,-243,239,240,218,-36,242,241,225,-298,220,242,297,-296,232,230,243,-265,230,37,239,-244,243,239,35,-216,243,215,263,-265,38,234,245,-238,234,244,-246,245,244,232,-265,237,245,264,-264,9,277,278,-276,277,3,249,-279,12,76,284,-284,76,6,279,-285,16,102,286,-286,102,12,283,-287,20,126,288,-288,126,16,285,-289,24,150,290,-290,150,20,287,-291,28,174,292,-292,174,24,289,-293,32,198,294,-294,198,28,291,-295,36,222,296,-296,222,32,293,-297,223,297,-226,223,36,295,-298,4,70,313,-312,70,43,312,-314,313,312,40,-73,311,313,72,-40,41,3,277,-69,277,9,42,-69,43,69,95,-11,69,42,9,-96,11,40,312,-99,312,43,10,-99,11,101,-75,11,98,-100,96,95,-10,276,9,-276,328,355,354,-330,329,354,353,-331,330,353,352,-332,331,352,351,-333,332,351,350,-334,333,350,349,-335,334,349,348,-336,335,348,347,-337,336,347,346,-338,337,346,345,-339,338,345,344,-340,339,344,343,-341,340,343,342,-342,343,315,314,-343,344,316,315,-344,345,317,316,-345,346,318,317,-346,347,319,318,-347,348,320,319,-348,349,321,320,-349,350,322,321,-350,351,323,322,-351,352,324,323,-352,353,325,324,-353,354,326,325,-354,355,327,326,-355,366,314,380,-382,365,366,381,-383,364,365,382,-384,363,364,383,-385,362,363,384,-386,361,362,385,-387,360,361,386,-388,359,360,387,-389,358,359,388,-390,357,358,389,-391,356,357,390,-392,391,392,327,-357,381,380,379,-379,382,381,378,-378,383,382,377,-377,384,383,376,-376,385,384,375,-375,386,385,374,-374,387,386,373,-373,388,387,372,-372,389,388,371,-371,390,389,370,-370,391,390,369,-369,367,392,391,-369,407,408,433,-435,408,409,432,-434,409,410,431,-433,410,411,430,-432,411,412,429,-431,412,413,428,-430,413,414,427,-429,414,415,426,-428,415,416,425,-427,416,417,424,-426,417,418,423,-425,418,419,422,-424,419,420,421,-423,422,421,393,-395,423,422,394,-396,424,423,395,-397,425,424,396,-398,426,425,397,-399,427,426,398,-400,428,427,399,-401,429,428,400,-402,430,429,401,-403,431,430,402,-404,432,431,403,-405,433,432,404,-406,434,433,405,-407,445,460,459,-394,444,461,460,-446,443,462,461,-445,442,463,462,-444,441,464,463,-443, -440,465,464,-442,439,466,465,-441,438,467,466,-440,437,468,467,-439,436,469,468,-438,435,470,469,-437,470,435,406,-472,460,457,458,-460,461,456,457,-461,462,455,456,-462,463,454,455,-463,464,453,454,-464,465,452,453,-465,466,451,452,-466,467,450,451,-467,468,449,450,-468,469,448,449,-469,470,447,448,-470,446,447,470,-472,486,513,512,-488,487,512,511,-489,488,511,510,-490,489,510,509,-491,490,509,508,-492,491,508,507,-493,492,507,506,-494,493,506,505,-495,494,505,504,-496,495,504,503,-497,496,503,502,-498,497,502,501,-499,498,501,500,-500,501,473,472,-501,502,474,473,-502,503,475,474,-503,504,476,475,-504,505,477,476,-505,506,478,477,-506,507,479,478,-507,508,480,479,-508,509,481,480,-509,510,482,481,-510,511,483,482,-511,512,484,483,-512,513,485,484,-513,524,472,538,-540,523,524,539,-541,522,523,540,-542,521,522,541,-543,520,521,542,-544,519,520,543,-545,518,519,544,-546,517,518,545,-547,516,517,546,-548,515,516,547,-549,514,515,548,-550,549,550,485,-515,539,538,537,-537,540,539,536,-536,541,540,535,-535,542,541,534,-534,543,542,533,-533,544,543,532,-532,545,544,531,-531,546,545,530,-530,547,546,529,-529,548,547,528,-528,549,548,527,-527,525,550,549,-527,565,566,591,-593,566,567,590,-592,567,568,589,-591,568,569,588,-590,569,570,587,-589,570,571,586,-588,571,572,585,-587,572,573,584,-586,573,574,583,-585,574,575,582,-584,575,576,581,-583,576,577,580,-582,577,578,579,-581,580,579,551,-553,581,580,552,-554,582,581,553,-555,583,582,554,-556,584,583,555,-557,585,584,556,-558,586,585,557,-559,587,586,558,-560,588,587,559,-561,589,588,560,-562,590,589,561,-563,591,590,562,-564,592,591,563,-565,603,618,617,-552,602,619,618,-604,601,620,619,-603,600,621,620,-602,599,622,621,-601,598,623,622,-600,597,624,623,-599,596,625,624,-598,595,626,625,-597,594,627,626,-596,593,628,627,-595,628,593,564,-630,618,615,616,-618,619,614,615,-619,620,613,614,-620,621,612,613,-621,622,611,612,-622,623,610,611,-623,624,609,610,-624,625,608,609,-625,626,607,608,-626,627,606,607,-627,628,605,606,-628,604,605,628,-630,1341,1340,1630,-1648,1339, -1341,1647,-1512,1341,1339,1517,-2090,1340,1341,2089,-2085,1344,1343,1543,-1649,1342,1344,1648,-1556,1344,1342,1561,-2097,1343,1344,2096,-1552,1347,1346,1587,-1661,1345,1347,1660,-1600,1347,1345,1605,-2105,1346,1347,2104,-1596,664,1348,1351,-1351,1348,651,1349,-1352,1351,1349,1467,-2112,1350,1351,2111,-1425,706,1352,1355,-1355,1352,665,1353,-1356,1355,1353,1533,-1641,1354,1355,1640,-1522,710,1356,1357,-911,1356,667,911,-1358,1359,672,671,-1359,1359,1358,702,-704,722,1360,1363,-1363,1360,674,1361,-1364,1363,1361,1577,-1655,1362,1363,1654,-1566,726,1364,1365,-923,1364,676,921,-1366,1367,681,680,-1367,1367,1366,718,-720,738,1368,1371,-1371,1368,682,1369,-1372,1371,1369,1621,-1667,1370,1371,1666,-1610,742,1372,1373,-931,1372,684,929,-1374,1375,689,688,-1375,1375,1374,734,-736,1378,1377,1484,-2114,1376,1378,2113,-1424,1378,1376,1420,-1675,1377,1378,1674,-1635,935,1379,1380,-656,1379,934,691,-1381,1382,695,656,-1382,1382,1381,697,-697,698,1383,1386,-1386,1383,657,1384,-1387,1386,1384,1511,-1648,1385,1386,1647,-1631,704,1387,1390,-1390,1387,641,1388,-1391,1390,1388,1520,-1642,1389,1390,1641,-1513,1393,1392,1512,-1642,1391,1393,1641,-1521,1393,1391,1526,-2091,1392,1393,2090,-1519,714,1394,1397,-1397,1394,659,1395,-1398,1397,1395,1555,-1649,1396,1397,1648,-1544,720,1398,1401,-1401,1398,646,1399,-1402,1401,1399,1564,-1652,1400,1401,1651,-1557,1404,1403,1556,-1652,1402,1404,1651,-1565,1404,1402,1570,-2099,1403,1404,2098,-1563,730,1405,1408,-1408,1405,661,1406,-1409,1408,1406,1599,-1661,1407,1408,1660,-1588,736,1409,1412,-1412,1409,650,1410,-1413,1412,1410,1608,-1664,1411,1412,1663,-1601,1415,1414,1600,-1664,1413,1415,1663,-1609,1415,1413,1614,-2107,1414,1415,2106,-1607,1418,1417,1424,-2112,1416,1418,2111,-1468,1418,1416,1464,-1672,1417,1418,1671,-1422,663,1419,1422,-1422,1419,654,1420,-1423,1422,1420,1376,-1673,1417,1421,1422,-1673,1425,1424,1417,-1673,1376,1423,1425,-1673,1425,1423,1487,-2113,1350,1424,1425,-2113,712,1426,1429,-1429,1426,631,1427,-1430,1429,1427,1542,-1643,1428,1429,1642,-1535,1432,1431,1534,-1643,1430,1432, -1642,-1543,1432,1430,1550,-2095,1431,1432,2094,-1539,1435,1434,1521,-1641,1433,1435,1640,-1534,1435,1433,1537,-2093,1434,1435,2092,-1528,1436,669,667,-1357,1436,1356,710,-712,1438,643,670,-1438,1438,1437,707,-709,707,1437,1439,-913,1437,670,914,-1440,1441,635,673,-1441,3110,1441,1440,-2067,1443,906,644,-1443,1443,1442,2085,-2068,702,1358,1444,-917,1358,671,918,-1445,728,1445,1448,-1448,1445,632,1446,-1449,1448,1446,1586,-1658,1447,1448,1657,-1579,1451,1450,1578,-1658,1449,1451,1657,-1587,1451,1449,1594,-2103,1450,1451,2102,-1583,1454,1453,1565,-1655,1452,1454,1654,-1578,1454,1452,1581,-2101,1453,1454,2100,-1572,1455,678,676,-1365,1455,1364,726,-728,1457,648,679,-1457,1457,1456,723,-725,723,1456,1458,-921,1456,679,919,-1459,1460,636,668,-1460,1460,1459,715,-717,715,1459,1461,-914,1459,668,909,-1462,718,1366,1462,-918,1366,680,915,-1463,744,1463,1466,-1466,1463,633,1464,-1467,1466,1464,1416,-1670,1465,1466,1669,-1623,1469,1468,1622,-1670,1416,1467,1469,-1670,1469,1467,1349,-2111,1468,1469,2110,-1627,1472,1471,1609,-1667,1470,1472,1666,-1622,1472,1470,1625,-2109,1471,1472,2108,-1616,1473,686,684,-1373,1473,1372,742,-744,1475,652,687,-1475,1475,1474,739,-741,739,1474,1476,-929,1474,687,927,-1477,1478,637,677,-1478,1478,1477,731,-733,731,1477,1479,-925,1477,677,923,-1480,734,1374,1480,-927,1374,688,925,-1481,1482,1481,1483,-1486,1377,1482,1485,-1485,1482,1377,1634,-1636,1481,1482,1635,-1634,1485,1483,2114,-2116,1484,1485,2115,-1489,691,1486,1489,-1489,1486,653,1487,-1490,1489,1487,1423,-2114,1484,1488,1489,-2114,1491,693,639,-1491,1491,1490,694,-693,692,694,1492,-1494,1492,656,695,-1494,692,1493,1494,-935,1493,695,933,-1495,696,697,1495,-1497,1495,638,685,-1497,696,1496,1497,-933,1496,685,931,-1498,664,1498,1499,-933,1498,653,933,-1500,1500,1502,3115,-3074,1500,630,1501,-1503,1502,1501,2009,-3117,1631,3115,1502,-3117,1504,671,672,-1504,1504,1503,700,-700,701,1505,1506,-906,1505,658,918,-1507,1507,1508,3113,-3071,1508,1507,3073,-3116,2086,3113,1508,-3115,1510,670,643,-1510,1510,1509,703,-703,1513,1512,1392,-2089,1339,1511, -1513,-2089,1513,1511,1384,-1645,1389,1512,1513,-1645,705,1514,1515,-917,1514,640,914,-1516,705,1516,1519,-1519,1516,658,1517,-1520,1519,1517,1339,-2089,1392,1518,1519,-2089,1522,1521,1434,-2092,1391,1520,1522,-2092,1522,1520,1388,-1638,1354,1521,1522,-1638,1524,667,669,-1524,1524,1523,708,-708,709,1525,1528,-1528,1525,640,1526,-1529,1528,1526,1391,-2092,1434,1527,1528,-2092,709,1529,1530,-913,1529,666,911,-1531,1532,668,636,-1532,1532,1531,711,-711,1535,1534,1431,-2094,1433,1533,1535,-2094,1535,1533,1353,-1640,1428,1534,1535,-1640,713,1536,1539,-1539,1536,666,1537,-1540,1539,1537,1433,-2094,1431,1538,1539,-2094,713,1540,1541,-911,1540,642,909,-1542,1544,1543,1343,-2096,1430,1542,1544,-2096,1544,1542,1427,-1647,1396,1543,1544,-1647,1546,680,681,-1546,1546,1545,716,-716,717,1547,1548,-914,1547,660,915,-1549,717,1549,1552,-1552,1549,642,1550,-1553,1552,1550,1430,-2096,1343,1551,1552,-2096,1554,679,648,-1554,1554,1553,719,-719,1557,1556,1403,-2098,1342,1555,1557,-2098,1557,1555,1395,-1651,1400,1556,1557,-1651,721,1558,1559,-918,1558,645,919,-1560,721,1560,1563,-1563,1560,660,1561,-1564,1563,1561,1342,-2098,1403,1562,1563,-2098,1566,1565,1453,-2100,1402,1564,1566,-2100,1566,1564,1399,-1654,1362,1565,1566,-1654,1568,676,678,-1568,1568,1567,724,-724,725,1569,1572,-1572,1569,645,1570,-1573,1572,1570,1402,-2100,1453,1571,1572,-2100,725,1573,1574,-921,1573,675,921,-1575,1576,677,637,-1576,1576,1575,727,-727,1579,1578,1450,-2102,1452,1577,1579,-2102,1579,1577,1361,-1657,1447,1578,1579,-1657,729,1580,1583,-1583,1580,675,1581,-1584,1583,1581,1452,-2102,1450,1582,1583,-2102,729,1584,1585,-923,1584,647,923,-1586,1588,1587,1346,-2104,1449,1586,1588,-2104,1588,1586,1446,-1660,1407,1587,1588,-1660,1590,688,689,-1590,1590,1589,732,-732,733,1591,1592,-925,1591,662,925,-1593,733,1593,1596,-1596,1593,647,1594,-1597,1596,1594,1449,-2104,1346,1595,1596,-2104,1598,687,652,-1598,1598,1597,735,-735,1601,1600,1414,-2106,1345,1599,1601,-2106,1601,1599,1406,-1663,1411,1600,1601,-1663,737,1602,1603,-927,1602,649,927,-1604,737,1604,1607,-1607,1604, -662,1605,-1608,1607,1605,1345,-2106,1414,1606,1607,-2106,1610,1609,1471,-2108,1413,1608,1610,-2108,1610,1608,1410,-1666,1370,1609,1610,-1666,1612,684,686,-1612,1612,1611,740,-740,741,1613,1616,-1616,1613,649,1614,-1617,1616,1614,1413,-2108,1471,1615,1616,-2108,741,1617,1618,-929,1617,683,929,-1619,1620,685,638,-1620,1620,1619,743,-743,1623,1622,1468,-2110,1470,1621,1623,-2110,1623,1621,1369,-1669,1465,1622,1623,-1669,745,1624,1627,-1627,1624,683,1625,-1628,1627,1625,1470,-2110,1468,1626,1627,-2110,745,1628,1629,-931,1628,651,931,-1630,1385,1630,1631,-3117,1631,1630,1340,-3115,1631,3114,1508,-3116,690,1632,1635,-1635,1632,634,1633,-1636,641,1636,1637,-1389,1636,706,1354,-1638,665,1638,1639,-1354,1638,712,1428,-1640,657,1643,1644,-1385,1643,704,1389,-1645,631,1645,1646,-1428,1645,714,1396,-1647,659,1649,1650,-1396,1649,720,1400,-1651,646,1652,1653,-1400,1652,722,1362,-1654,674,1655,1656,-1362,1655,728,1447,-1657,632,1658,1659,-1447,1658,730,1407,-1660,661,1661,1662,-1407,1661,736,1411,-1663,650,1664,1665,-1411,1664,738,1370,-1666,682,1667,1668,-1370,1667,744,1465,-1669,633,1670,1671,-1465,1670,663,1421,-1672,654,1673,1674,-1421,1673,690,1634,-1675,1677,1676,857,-1721,1680,1679,859,-1734,1683,1682,867,-1747,766,1684,2117,-1816,1684,779,1764,-2118,817,1685,1689,-1689,1685,852,1686,-1690,1689,1686,853,-1688,1688,1689,1687,-781,782,1690,1691,-959,1690,820,957,-1692,787,1692,1695,-1695,1692,758,1693,-1696,1695,1693,3126,-3128,1694,1695,3127,-3125,829,1696,1700,-1700,1696,862,1697,-1701,1700,1697,863,-1699,1699,1700,1698,-790,791,1701,1702,-951,1701,832,949,-1703,970,1703,3135,-3135,1703,971,3132,-3136,841,1704,1708,-1708,1704,870,1705,-1709,1708,1705,871,-1707,1707,1708,1706,-798,799,1709,1710,-943,1709,844,941,-1711,966,1711,3143,-3143,1711,967,3140,-3144,849,1712,2116,-1831,1712,875,1765,-2117,770,1713,1714,-937,1713,806,937,-1715,753,1715,1718,-1718,1715,771,1716,-1719,1718,1716,2172,-3149,1717,1718,3148,-3147,811,1719,1723,-1723,1719,847,1720,-1724,1723,1720,857,-1722,1722,1723,1721,-773,815,1724,1728,-1728,1724,855, -1725,-1729,1728,1725,851,-1727,1727,1728,1726,-757,1731,1730,851,-1726,823,1732,1736,-1736,1732,858,1733,-1737,1736,1733,859,-1735,1735,1736,1734,-775,827,1737,1741,-1741,1737,860,1738,-1742,1741,1738,861,-1740,1740,1741,1739,-762,1744,1743,861,-1739,835,1745,1749,-1749,1745,866,1746,-1750,1749,1746,867,-1748,1748,1749,1747,-777,839,1750,1754,-1754,1750,868,1751,-1755,1754,1751,869,-1753,1753,1754,1752,-766,1757,1756,869,-1752,874,1758,2117,-1765,1758,873,1815,-2118,778,1759,1763,-1763,1759,874,1760,-1764,1763,1760,875,-1762,1762,1763,1761,-770,1766,1765,875,-1761,821,1767,1771,-1771,1767,854,1768,-1772,1771,1768,856,-1770,1770,1771,1769,-748,1774,1773,856,-1769,1777,1776,853,-1687,972,1778,3131,-3131,1778,973,3128,-3132,973,1779,3129,-3129,1779,974,3126,-3130,785,1780,1781,-961,1780,818,959,-1782,977,1782,1784,-1784,1782,787,1694,-1785,1784,1694,3124,-3126,1783,1784,3125,-3124,1786,908,788,-1786,1786,1785,3122,-2070,786,1787,1788,-963,1787,814,961,-1789,833,1789,1793,-1793,1789,864,1790,-1794,1793,1790,865,-1792,1792,1793,1791,-749,1796,1795,865,-1791,1799,1798,863,-1698,968,1800,3139,-3139,1800,969,3136,-3140,969,1801,3137,-3137,1801,970,3134,-3138,794,1802,1803,-953,1802,830,951,-1804,971,1804,3133,-3133,1804,972,3130,-3134,783,1805,1806,-957,1805,824,955,-1807,795,1807,1808,-955,1807,826,953,-1809,845,1809,1813,-1813,1809,872,1810,-1814,1813,1810,873,-1812,1812,1813,1811,-750,1816,1815,873,-1811,1819,1818,871,-1706,964,1820,3147,-3147,1820,965,3144,-3148,965,1821,3145,-3145,1821,966,3142,-3146,802,1822,1823,-945,1822,842,943,-1824,967,1824,3141,-3141,1824,968,3138,-3142,792,1825,1826,-949,1825,836,947,-1827,803,1827,1828,-947,1827,838,945,-1829,850,1829,1832,-1832,1829,849,1830,-1833,768,1833,2116,-1766,1833,806,1830,-2117,976,1834,2174,-2174,1834,963,2172,-2175,809,1835,1836,-939,1835,807,937,-1837,800,1837,1838,-941,1837,810,939,-1839,768,1839,1840,-939,1839,779,939,-1841,746,1841,1844,-1844,1841,848,1842,-1845,1844,1842,1892,-3121,1843,1844,3120,-3119,773,1845,1846,-963,1845,813,907,-1847,1847,3121,3081,-760, -2087,3121,1847,-2069,1729,855,1848,-2129,1848,857,1676,-2129,755,1849,1850,-961,1849,816,961,-1851,773,1851,2128,-1677,1851,816,1729,-2129,1775,852,1852,-2128,1852,851,1730,-2128,755,1853,2127,-1731,1853,819,1775,-2128,781,1854,1855,-959,1854,819,959,-1856,1772,854,1856,-2127,1856,853,1776,-2127,781,1857,2126,-1777,1857,822,1772,-2127,757,1858,1859,-957,1858,822,957,-1860,1678,858,1860,-2126,1860,856,1773,-2126,775,1861,1862,-955,1861,825,955,-1863,757,1863,2125,-1774,1863,825,1678,-2126,1742,860,1864,-2125,1864,859,1679,-2125,760,1865,1866,-953,1865,828,953,-1867,775,1867,2124,-1680,1867,828,1742,-2125,1797,862,1868,-2124,1868,861,1743,-2124,760,1869,2123,-1744,1869,831,1797,-2124,790,1870,1871,-951,1870,831,951,-1872,1794,864,1872,-2123,1872,863,1798,-2123,790,1873,2122,-1799,1873,834,1794,-2123,762,1874,1875,-949,1874,834,949,-1876,1681,866,1876,-2122,1876,865,1795,-2122,777,1877,1878,-947,1877,837,947,-1879,762,1879,2121,-1796,1879,837,1681,-2122,1755,868,1880,-2121,1880,867,1682,-2121,764,1881,1882,-945,1881,840,945,-1883,777,1883,2120,-1683,1883,840,1755,-2121,1817,870,1884,-2120,1884,869,1756,-2120,764,1885,2119,-1757,1885,843,1817,-2120,798,1886,1887,-943,1886,843,943,-1888,1814,872,1888,-2119,1888,871,1818,-2119,798,1889,2118,-1819,1889,846,1814,-2119,766,1890,1891,-941,1890,846,941,-1892,1675,847,1892,-2088,2087,1892,1842,-3122,805,1893,1896,-1896,1893,849,1829,-1897,1896,1829,850,-1895,1895,1896,1894,-751,756,1726,1898,-1898,1726,851,1852,-1899,1898,1852,852,-1686,1897,1898,1685,-818,780,1687,1900,-1900,1687,853,1856,-1901,1900,1856,854,-1768,1899,1900,1767,-822,1777,1686,852,-1776,1731,1725,855,-1730,1774,1768,854,-1773,772,1721,1902,-1902,1721,857,1848,-1903,1902,1848,855,-1725,1901,1902,1724,-816,747,1769,1904,-1904,1769,856,1860,-1905,1904,1860,858,-1733,1903,1904,1732,-824,1677,1720,847,-1676,1680,1733,858,-1679,774,1734,1906,-1906,1734,859,1864,-1907,1906,1864,860,-1738,1905,1906,1737,-828,1744,1738,860,-1743,761,1739,1908,-1908,1739,861,1868,-1909,1908,1868,862,-1697,1907,1908,1696,-830,1799,1697, -862,-1798,789,1698,1910,-1910,1698,863,1872,-1911,1910,1872,864,-1790,1909,1910,1789,-834,1796,1790,864,-1795,748,1791,1912,-1912,1791,865,1876,-1913,1912,1876,866,-1746,1911,1912,1745,-836,1683,1746,866,-1682,776,1747,1914,-1914,1747,867,1880,-1915,1914,1880,868,-1751,1913,1914,1750,-840,1757,1751,868,-1756,765,1752,1916,-1916,1752,869,1884,-1917,1916,1884,870,-1705,1915,1916,1704,-842,1819,1705,870,-1818,797,1706,1918,-1918,1706,871,1888,-1919,1918,1888,872,-1810,1917,1918,1809,-846,1816,1810,872,-1815,749,1811,1920,-1920,1811,873,1758,-1921,1920,1758,874,-1760,1919,1920,1759,-779,1766,1760,874,-1765,769,1761,1922,-1922,1761,875,1712,-1923,1922,1712,849,-1894,1921,1922,1893,-806,877,1923,1925,-1925,1923,746,1843,-1926,1925,1843,3118,-3120,1924,1925,3119,-2011,811,1722,1929,-1929,1722,772,1926,-1930,1929,1926,878,-1928,1928,1929,1927,-877,772,1901,1932,-1927,1901,815,1930,-1933,1932,1930,879,-1932,1926,1932,1931,-879,815,1727,1935,-1931,1727,756,1933,-1936,1935,1933,880,-1935,1930,1935,1934,-880,756,1897,1938,-1934,1897,817,1936,-1939,1938,1936,881,-1938,1933,1938,1937,-881,817,1688,1941,-1937,1688,780,1939,-1942,1941,1939,882,-1941,1936,1941,1940,-882,780,1899,1944,-1940,1899,821,1942,-1945,1944,1942,883,-1944,1939,1944,1943,-883,821,1770,1947,-1943,1770,747,1945,-1948,1947,1945,884,-1947,1942,1947,1946,-884,747,1903,1950,-1946,1903,823,1948,-1951,1950,1948,885,-1950,1945,1950,1949,-885,823,1735,1953,-1949,1735,774,1951,-1954,1953,1951,886,-1953,1948,1953,1952,-886,774,1905,1956,-1952,1905,827,1954,-1957,1956,1954,887,-1956,1951,1956,1955,-887,827,1740,1959,-1955,1740,761,1957,-1960,1959,1957,888,-1959,1954,1959,1958,-888,761,1907,1962,-1958,1907,829,1960,-1963,1962,1960,889,-1962,1957,1962,1961,-889,829,1699,1965,-1961,1699,789,1963,-1966,1965,1963,890,-1965,1960,1965,1964,-890,789,1909,1968,-1964,1909,833,1966,-1969,1968,1966,891,-1968,1963,1968,1967,-891,833,1792,1971,-1967,1792,748,1969,-1972,1971,1969,892,-1971,1966,1971,1970,-892,748,1911,1974,-1970,1911,835,1972,-1975,1974,1972,893,-1974,1969,1974,1973,-893, -835,1748,1977,-1973,1748,776,1975,-1978,1977,1975,894,-1977,1972,1977,1976,-894,776,1913,1980,-1976,1913,839,1978,-1981,1980,1978,895,-1980,1975,1980,1979,-895,839,1753,1983,-1979,1753,765,1981,-1984,1983,1981,896,-1983,1978,1983,1982,-896,765,1915,1986,-1982,1915,841,1984,-1987,1986,1984,897,-1986,1981,1986,1985,-897,841,1707,1989,-1985,1707,797,1987,-1990,1989,1987,898,-1989,1984,1989,1988,-898,797,1917,1992,-1988,1917,845,1990,-1993,1992,1990,899,-1992,1987,1992,1991,-899,845,1812,1995,-1991,1812,749,1993,-1996,1995,1993,900,-1995,1990,1995,1994,-900,749,1919,1998,-1994,1919,778,1996,-1999,1998,1996,901,-1998,1993,1998,1997,-901,778,1762,2001,-1997,1762,769,1999,-2002,2001,1999,902,-2001,1996,2001,2000,-902,769,1921,2004,-2000,1921,805,2002,-2005,2004,2002,903,-2004,1999,2004,2003,-903,805,1895,2007,-2003,1895,750,2005,-2008,2007,2005,904,-2007,2002,2007,2006,-904,876,2008,2011,-2011,2008,698,2009,-2012,2011,2009,1501,-3118,1924,2010,2011,-3118,657,1383,2013,-2013,1383,698,2008,-2014,2013,2008,876,-1928,2012,2013,1927,-879,704,1643,2015,-2015,1643,657,2012,-2016,2015,2012,878,-1932,2014,2015,1931,-880,641,1387,2017,-2017,1387,704,2014,-2018,2017,2014,879,-1935,2016,2017,1934,-881,706,1636,2019,-2019,1636,641,2016,-2020,2019,2016,880,-1938,2018,2019,1937,-882,665,1352,2021,-2021,1352,706,2018,-2022,2021,2018,881,-1941,2020,2021,1940,-883,712,1638,2023,-2023,1638,665,2020,-2024,2023,2020,882,-1944,2022,2023,1943,-884,631,1426,2025,-2025,1426,712,2022,-2026,2025,2022,883,-1947,2024,2025,1946,-885,714,1645,2027,-2027,1645,631,2024,-2028,2027,2024,884,-1950,2026,2027,1949,-886,659,1394,2029,-2029,1394,714,2026,-2030,2029,2026,885,-1953,2028,2029,1952,-887,720,1649,2031,-2031,1649,659,2028,-2032,2031,2028,886,-1956,2030,2031,1955,-888,646,1398,2033,-2033,1398,720,2030,-2034,2033,2030,887,-1959,2032,2033,1958,-889,722,1652,2035,-2035,1652,646,2032,-2036,2035,2032,888,-1962,2034,2035,1961,-890,674,1360,2037,-2037,1360,722,2034,-2038,2037,2034,889,-1965,2036,2037,1964,-891,728,1655,2039,-2039,1655,674,2036,-2040,2039,2036, -890,-1968,2038,2039,1967,-892,632,1445,2041,-2041,1445,728,2038,-2042,2041,2038,891,-1971,2040,2041,1970,-893,730,1658,2043,-2043,1658,632,2040,-2044,2043,2040,892,-1974,2042,2043,1973,-894,661,1405,2045,-2045,1405,730,2042,-2046,2045,2042,893,-1977,2044,2045,1976,-895,736,1661,2047,-2047,1661,661,2044,-2048,2047,2044,894,-1980,2046,2047,1979,-896,650,1409,2049,-2049,1409,736,2046,-2050,2049,2046,895,-1983,2048,2049,1982,-897,738,1664,2051,-2051,1664,650,2048,-2052,2051,2048,896,-1986,2050,2051,1985,-898,682,1368,2053,-2053,1368,738,2050,-2054,2053,2050,897,-1989,2052,2053,1988,-899,744,1667,2055,-2055,1667,682,2052,-2056,2055,2052,898,-1992,2054,2055,1991,-900,633,1463,2057,-2057,1463,744,2054,-2058,2057,2054,899,-1995,2056,2057,1994,-901,663,1670,2059,-2059,1670,633,2056,-2060,2059,2056,900,-1998,2058,2059,1997,-902,654,1419,2061,-2061,1419,663,2058,-2062,2061,2058,901,-2001,2060,2061,2000,-903,690,1673,2063,-2063,1673,654,2060,-2064,2063,2060,902,-2004,2062,2063,2003,-904,634,1632,2065,-2065,1632,690,2062,-2066,2065,2062,903,-2007,2064,2065,2006,-905,2067,905,699,-2067,1443,2067,2066,-1441,2069,907,813,-2069,1786,2069,2068,-1848,909,668,1532,-1542,1532,710,910,-1542,911,667,1524,-1531,1524,707,912,-1531,911,666,1536,-1358,1536,713,910,-1358,909,642,1549,-1462,1549,717,913,-1462,914,640,1525,-1440,1525,709,912,-1440,915,680,1546,-1549,1546,715,913,-1549,914,670,1510,-1516,1510,702,916,-1516,915,660,1560,-1463,1560,721,917,-1463,918,658,1516,-1445,1516,705,916,-1445,919,679,1554,-1560,1554,718,917,-1560,918,671,1504,-1507,1504,699,905,-1507,919,645,1569,-1459,1569,725,920,-1459,921,676,1568,-1575,1568,723,920,-1575,921,675,1580,-1366,1580,729,922,-1366,923,677,1576,-1586,1576,726,922,-1586,923,647,1593,-1480,1593,733,924,-1480,925,688,1590,-1593,1590,731,924,-1593,925,662,1604,-1481,1604,737,926,-1481,927,687,1598,-1604,1598,734,926,-1604,927,649,1613,-1477,1613,741,928,-1477,929,684,1612,-1619,1612,739,928,-1619,929,683,1624,-1374,1624,745,930,-1374,931,685,1620,-1630,1620,742,930,-1630,931,651,1348,-1498,1348,664, -932,-1498,933,695,1382,-1500,1382,696,932,-1500,933,653,1486,-1495,1486,691,934,-1495,693,1491,1379,-936,1491,692,934,-1380,937,807,2070,-1715,2070,808,936,-1715,937,806,1833,-1837,1833,768,938,-1837,939,810,2071,-1841,2071,809,938,-1841,939,779,1684,-1839,1684,766,940,-1839,941,844,2072,-1892,2072,800,940,-1892,941,846,1889,-1711,1889,798,942,-1711,943,842,2073,-1888,2073,799,942,-1888,943,843,1885,-1824,1885,764,944,-1824,945,838,2074,-1883,2074,802,944,-1883,945,840,1883,-1829,1883,777,946,-1829,947,836,2075,-1879,2075,803,946,-1879,947,837,1879,-1827,1879,762,948,-1827,949,832,2076,-1876,2076,792,948,-1876,949,834,1873,-1703,1873,790,950,-1703,951,830,2077,-1872,2077,791,950,-1872,951,831,1869,-1804,1869,760,952,-1804,953,826,2078,-1867,2078,794,952,-1867,953,828,1867,-1809,1867,775,954,-1809,955,824,2079,-1863,2079,795,954,-1863,955,825,1863,-1807,1863,757,956,-1807,957,820,2080,-1860,2080,783,956,-1860,957,822,1857,-1692,1857,781,958,-1692,959,818,2081,-1856,2081,782,958,-1856,959,819,1853,-1782,1853,755,960,-1782,961,814,2082,-1851,2082,785,960,-1851,961,816,1851,-1789,1851,773,962,-1789,812,2083,1846,-908,2083,786,962,-1847,1340,2084,2086,-3115,2084,701,2085,-2087,2086,2085,1442,-3114,658,1505,2089,-1518,1505,701,2084,-2090,640,1514,2090,-1527,1514,705,1518,-2091,666,1529,2092,-1538,1529,709,1527,-2093,642,1540,2094,-1551,1540,713,1538,-2095,660,1547,2096,-1562,1547,717,1551,-2097,645,1558,2098,-1571,1558,721,1562,-2099,675,1573,2100,-1582,1573,725,1571,-2101,647,1584,2102,-1595,1584,729,1582,-2103,662,1591,2104,-1606,1591,733,1595,-2105,649,1602,2106,-1615,1602,737,1606,-2107,683,1617,2108,-1626,1617,741,1615,-2109,651,1628,2110,-1350,1628,745,1626,-2111,653,1498,2112,-1488,1498,664,1350,-2113,655,1380,2115,-2115,1380,691,1488,-2116,1830,806,1713,-1833,1713,770,1831,-1833,1764,779,1839,-1767,1839,768,1765,-1767,1814,846,1890,-1817,1890,766,1815,-1817,1817,843,1886,-1820,1886,798,1818,-1820,1755,840,1881,-1758,1881,764,1756,-1758,1681,837,1877,-1684,1877,777,1682,-1684,1794,834,1874,-1797,1874,762,1795,-1797, -1797,831,1870,-1800,1870,790,1798,-1800,1742,828,1865,-1745,1865,760,1743,-1745,1678,825,1861,-1681,1861,775,1679,-1681,1772,822,1858,-1775,1858,757,1773,-1775,1775,819,1854,-1778,1854,781,1776,-1778,1729,816,1849,-1732,1849,755,1730,-1732,813,1845,1677,-1676,1845,773,1676,-1678,809,2071,2131,-1836,2071,810,2129,-2132,2131,2129,963,-2131,1835,2131,2130,-808,965,2132,2134,-2134,2132,844,1709,-2135,2134,1709,799,-2074,2133,2134,2073,-843,967,2135,2137,-2137,2135,838,1827,-2138,2137,1827,803,-2076,2136,2137,2075,-837,969,2138,2140,-2140,2138,832,1701,-2141,2140,1701,791,-2078,2139,2140,2077,-831,971,2141,2143,-2143,2141,826,1807,-2144,2143,1807,795,-2080,2142,2143,2079,-825,973,2144,2146,-2146,2144,820,1690,-2147,2146,1690,782,-2082,2145,2146,2081,-819,975,2147,2149,-2149,2147,814,1787,-2150,2149,1787,786,-2084,2148,2149,2083,-813,976,2150,2151,-1835,2150,808,2070,-2152,2151,2070,807,-2131,1834,2151,2130,-964,964,2152,2154,-2154,2152,963,2129,-2155,2154,2129,810,-1838,2153,2154,1837,-801,844,2132,2155,-2073,2132,965,1820,-2156,2155,1820,964,-2154,2072,2155,2153,-801,966,1821,2157,-2157,1821,965,2133,-2158,2157,2133,842,-1823,2156,2157,1822,-803,838,2135,2158,-2075,2135,967,1711,-2159,2158,1711,966,-2157,2074,2158,2156,-803,968,1824,2160,-2160,1824,967,2136,-2161,2160,2136,836,-1826,2159,2160,1825,-793,832,2138,2161,-2077,2138,969,1800,-2162,2161,1800,968,-2160,2076,2161,2159,-793,970,1801,2163,-2163,1801,969,2139,-2164,2163,2139,830,-1803,2162,2163,1802,-795,826,2141,2164,-2079,2141,971,1703,-2165,2164,1703,970,-2163,2078,2164,2162,-795,972,1804,2166,-2166,1804,971,2142,-2167,2166,2142,824,-1806,2165,2166,1805,-784,820,2144,2167,-2081,2144,973,1778,-2168,2167,1778,972,-2166,2080,2167,2165,-784,974,1779,2169,-2169,1779,973,2145,-2170,2169,2145,818,-1781,2168,2169,1780,-786,814,2147,2171,-2083,2147,975,2170,-2172,2171,2170,974,-2169,2082,2171,2168,-786,974,2170,3127,-3127,2170,975,3124,-3128,2174,2172,1716,-3113,2173,2174,3112,-3112,758,2175,2177,-1694,2175,784,2176,-2178,2177,2176,3128,-3130,1693,2177,3129,-3127,784,2178, -2180,-2177,2178,751,2179,-2181,2180,2179,3130,-3132,2176,2180,3131,-3129,751,2181,2183,-2180,2181,796,2182,-2184,2183,2182,3132,-3134,2179,2183,3133,-3131,796,2184,2186,-2183,2184,763,2185,-2187,2186,2185,3134,-3136,2182,2186,3135,-3133,763,2187,2189,-2186,2187,793,2188,-2190,2189,2188,3136,-3138,2185,2189,3137,-3135,793,2190,2192,-2189,2190,752,2191,-2193,2192,2191,3138,-3140,2188,2192,3139,-3137,752,2193,2195,-2192,2193,804,2194,-2196,2195,2194,3140,-3142,2191,2195,3141,-3139,804,2196,2198,-2195,2196,767,2197,-2199,2198,2197,3142,-3144,2194,2198,3143,-3141,767,2199,2201,-2198,2199,801,2200,-2202,2201,2200,3144,-3146,2197,2201,3145,-3143,801,2202,2203,-2201,2202,753,1717,-2204,2203,1717,3146,-3148,2200,2203,3147,-3145,2172,963,2152,-3149,2152,964,3146,-3149,2148,812,3123,-3126,2148,3125,3124,-976,1785,788,977,-1784,1785,1783,3123,-3123,2204,2206,2510,-2494,2206,2204,2952,-2958,2205,2206,2957,-2381,2206,2205,2375,-2511,2207,2209,2511,-2406,2209,2207,2412,-2965,2208,2209,2964,-2425,2209,2208,2419,-2512,2210,2212,2523,-2450,2212,2210,2456,-2973,2211,2212,2972,-2469,2212,2211,2463,-2524,1009,2213,2216,-2216,2216,2213,2288,-2980,2214,2216,2979,-2334,2215,2216,2214,-997,1050,2217,2220,-2220,2220,2217,2383,-2504,2218,2220,2503,-2398,2219,2220,2218,-1011,2222,1054,1233,-2222,2222,2221,1234,-1013,1017,2223,2224,-1017,2223,1047,1046,-2225,1066,2225,2228,-2228,2228,2225,2427,-2518,2226,2228,2517,-2442,2227,2228,2226,-1019,2230,1070,1245,-2230,2230,2229,1244,-1021,1025,2231,2232,-1025,2231,1063,1062,-2233,1082,2233,2236,-2236,2236,2233,2471,-2530,2234,2236,2529,-2486,2235,2236,2234,-1027,2238,1086,1253,-2238,2238,2237,1252,-1029,1033,2239,2240,-1033,2239,1079,1078,-2241,2241,2243,2981,-2349,2243,2241,2495,-2538,2242,2243,2537,-2286,2243,2242,2289,-2982,2245,1035,1257,-2245,2245,2244,1258,-1001,1039,2246,2247,-1002,2246,1040,1041,-2248,1042,2248,2251,-2251,2251,2248,2493,-2511,2249,2251,2510,-2376,2250,2251,2249,-1003,1048,2252,2255,-2255,2255,2252,2374,-2505,2253,2255,2504,-2385,2254,2255,2253,-988,2256,2258,2504,-2375,2258, -2256,2379,-2959,2257,2258,2958,-2390,2258,2257,2384,-2505,1058,2259,2262,-2262,2262,2259,2405,-2512,2260,2262,2511,-2420,2261,2262,2260,-1005,1064,2263,2266,-2266,2266,2263,2418,-2515,2264,2266,2514,-2429,2265,2266,2264,-992,2267,2269,2514,-2419,2269,2267,2423,-2967,2268,2269,2966,-2434,2269,2268,2428,-2515,1074,2270,2273,-2273,2273,2270,2449,-2524,2271,2273,2523,-2464,2272,2273,2271,-1007,1080,2274,2277,-2277,2277,2274,2462,-2527,2275,2277,2526,-2473,2276,2277,2275,-996,2278,2280,2526,-2463,2280,2278,2467,-2975,2279,2280,2974,-2478,2280,2279,2472,-2527,2281,2283,2979,-2289,2283,2281,2284,-2535,2282,2283,2534,-2330,2283,2282,2333,-2980,1008,2284,2287,-2287,2287,2284,2281,-2536,2242,2285,2287,-2536,2286,2287,2285,-1000,2281,2288,2290,-2536,2290,2288,2213,-2981,2289,2290,2980,-2353,2290,2289,2242,-2536,1056,2291,2294,-2294,2294,2291,2396,-2506,2292,2294,2505,-2407,2293,2294,2292,-979,2295,2297,2505,-2397,2297,2295,2399,-2963,2296,2297,2962,-2414,2297,2296,2406,-2506,2298,2300,2503,-2384,2300,2298,2388,-2961,2299,2300,2960,-2401,2300,2299,2397,-2504,1014,2301,2222,-1013,2301,1055,1054,-2223,989,2302,2303,-1016,2302,1052,1051,-2304,2303,1051,1235,-2305,2303,2304,1237,-1016,2306,1044,1043,-2306,3065,2306,2305,-3067,2308,644,906,-2308,2308,2307,2935,-2954,2224,1046,1239,-2310,2224,2309,1241,-1017,1072,2310,2313,-2313,2313,2310,2440,-2521,2311,2313,2520,-2451,2312,2313,2311,-980,2314,2316,2520,-2441,2316,2314,2443,-2971,2315,2316,2970,-2458,2316,2315,2450,-2521,2317,2319,2517,-2428,2319,2317,2432,-2969,2318,2319,2968,-2445,2319,2318,2441,-2518,1022,2320,2230,-1021,2320,1071,1070,-2231,993,2321,2322,-1024,2321,1068,1067,-2323,2322,1067,1243,-2324,2322,2323,1242,-1024,982,2324,2325,-1014,2324,1060,1059,-2326,2325,1059,1236,-2327,2325,2326,1232,-1014,2232,1062,1240,-2328,2232,2327,1238,-1025,1088,2328,2331,-2331,2331,2328,2484,-2533,2282,2329,2331,-2533,2330,2331,2329,-981,2332,2334,2532,-2485,2334,2332,2487,-2979,2214,2333,2334,-2979,2334,2333,2282,-2533,2335,2337,2529,-2472,2337,2335,2476,-2977,2336,2337,2976,-2489,2337,2336, -2485,-2530,1030,2338,2238,-1029,2338,1087,1086,-2239,997,2339,2340,-1032,2339,1084,1083,-2341,2340,1083,1251,-2342,2340,2341,1250,-1032,983,2342,2343,-1022,2342,1076,1075,-2344,2343,1075,1247,-2345,2343,2344,1246,-1022,2240,1078,1249,-2346,2240,2345,1248,-1033,2346,2347,2350,-2350,2347,2346,2496,-2499,2241,2347,2498,-2496,2347,2241,2348,-2351,2350,2348,2351,-2984,2349,2350,2983,-2983,1035,2351,2354,-2354,2354,2351,2348,-2982,2289,2352,2354,-2982,2353,2354,2352,-999,1037,2355,2356,-986,2355,1036,1038,-2357,2358,1038,1036,-2358,2358,2357,1039,-1002,2357,1036,1257,-2360,2357,2359,1256,-1040,2361,1041,1040,-2361,2361,2360,1029,-985,2360,1040,1255,-2363,2360,2362,1254,-1030,2364,1009,1255,-2364,2364,2363,1256,-999,630,1500,2366,-2366,2366,1500,3073,-3075,2365,2366,3075,-2880,1017,1016,2367,-2369,2367,1043,1044,-2369,2370,1045,1230,-2370,2370,2369,1241,-1004,1507,2371,3074,-3074,2371,1507,3070,-3072,2494,3074,2371,-3073,989,1015,2372,-2374,2372,1046,1047,-2374,2256,2374,2376,-2957,2376,2374,2252,-2508,2249,2375,2376,-2508,2376,2375,2205,-2957,2378,1049,1239,-2378,2378,2377,1237,-987,1049,2379,2382,-2382,2382,2379,2256,-2957,2205,2380,2382,-2957,2381,2382,2380,-1004,2298,2383,2385,-2960,2385,2383,2217,-2501,2253,2384,2385,-2501,2385,2384,2257,-2960,1014,1012,2386,-2388,2386,1051,1052,-2388,1053,2388,2391,-2391,2391,2388,2298,-2960,2257,2389,2391,-2960,2390,2391,2389,-987,2393,1053,1235,-2393,2393,2392,1234,-1012,982,1013,2394,-2396,2394,1054,1055,-2396,2295,2396,2398,-2962,2398,2396,2291,-2503,2218,2397,2398,-2503,2398,2397,2299,-2962,1057,2399,2402,-2402,2402,2399,2295,-2962,2299,2400,2402,-2962,2401,2402,2400,-1012,2404,1057,1233,-2404,2404,2403,1232,-989,2207,2405,2407,-2964,2407,2405,2259,-2510,2292,2406,2407,-2510,2407,2406,2296,-2964,1025,1024,2408,-2410,2408,1059,1060,-2410,2411,1061,1236,-2411,2411,2410,1238,-1006,1061,2412,2415,-2415,2415,2412,2207,-2964,2296,2413,2415,-2964,2414,2415,2413,-989,993,1023,2416,-2418,2416,1062,1063,-2418,2267,2418,2420,-2966,2420,2418,2263,-2514,2260,2419,2420,-2514,2420,2419,2208, --2966,2422,1065,1240,-2422,2422,2421,1242,-991,1065,2423,2426,-2426,2426,2423,2267,-2966,2208,2424,2426,-2966,2425,2426,2424,-1006,2317,2427,2429,-2968,2429,2427,2225,-2517,2264,2428,2429,-2517,2429,2428,2268,-2968,1022,1020,2430,-2432,2430,1067,1068,-2432,1069,2432,2435,-2435,2435,2432,2317,-2968,2268,2433,2435,-2968,2434,2435,2433,-991,2437,1069,1243,-2437,2437,2436,1244,-1020,983,1021,2438,-2440,2438,1070,1071,-2440,2314,2440,2442,-2970,2442,2440,2310,-2520,2226,2441,2442,-2520,2442,2441,2318,-2970,1073,2443,2446,-2446,2446,2443,2314,-2970,2318,2444,2446,-2970,2445,2446,2444,-1020,2448,1073,1245,-2448,2448,2447,1246,-993,2210,2449,2451,-2972,2451,2449,2270,-2523,2311,2450,2451,-2523,2451,2450,2315,-2972,1033,1032,2452,-2454,2452,1075,1076,-2454,2455,1077,1247,-2455,2455,2454,1248,-1008,1077,2456,2459,-2459,2459,2456,2210,-2972,2315,2457,2459,-2972,2458,2459,2457,-993,997,1031,2460,-2462,2460,1078,1079,-2462,2278,2462,2464,-2974,2464,2462,2274,-2526,2271,2463,2464,-2526,2464,2463,2211,-2974,2466,1081,1249,-2466,2466,2465,1250,-995,1081,2467,2470,-2470,2470,2467,2278,-2974,2211,2468,2470,-2974,2469,2470,2468,-1008,2335,2471,2473,-2976,2473,2471,2233,-2529,2275,2472,2473,-2529,2473,2472,2279,-2976,1030,1028,2474,-2476,2474,1083,1084,-2476,1085,2476,2479,-2479,2479,2476,2335,-2976,2279,2477,2479,-2976,2478,2479,2477,-995,2481,1085,1251,-2481,2481,2480,1252,-1028,984,1029,2482,-2484,2482,1086,1087,-2484,2332,2484,2486,-2978,2486,2484,2328,-2532,2234,2485,2486,-2532,2486,2485,2336,-2978,1089,2487,2490,-2490,2490,2487,2332,-2978,2336,2488,2490,-2978,2489,2490,2488,-1028,2492,1089,1253,-2492,2492,2491,1254,-997,2204,2493,2494,-3073,2494,2493,2248,-3076,2494,3075,2366,-3075,1034,2495,2498,-2498,2497,2498,2496,-982,987,2253,2500,-2500,2499,2500,2217,-1051,1010,2218,2502,-2502,2501,2502,2291,-1057,1002,2249,2507,-2507,2506,2507,2252,-1049,978,2292,2509,-2509,2508,2509,2259,-1059,1004,2260,2513,-2513,2512,2513,2263,-1065,991,2264,2516,-2516,2515,2516,2225,-1067,1018,2226,2519,-2519,2518,2519,2310,-1073,979,2311,2522,-2522, -2521,2522,2270,-1075,1006,2271,2525,-2525,2524,2525,2274,-1081,995,2275,2528,-2528,2527,2528,2233,-1083,1026,2234,2531,-2531,2530,2531,2328,-1089,980,2329,2534,-2534,2533,2534,2284,-1009,999,2285,2537,-2537,2536,2537,2495,-1035,1183,2538,2540,-2585,2716,2540,2538,-1108,2540,2539,1174,-2585,1185,2541,2543,-2598,2732,2543,2541,-1110,2543,2542,1184,-2598,1193,2544,2546,-2611,2748,2546,2544,-1112,2546,2545,1192,-2611,2547,1102,2681,-2986,2547,2985,2628,-1114,1144,2548,2552,-2552,2548,1114,2549,-2553,2552,2549,1179,-2551,2551,2552,2550,-1179,2554,1116,1281,-2554,2554,2553,1280,-1148,758,1692,2557,-2557,1692,787,2555,-2558,2557,2555,3085,-3089,2556,2557,3088,-3088,1156,2558,2562,-2562,2558,1120,2559,-2563,2562,2559,1189,-2561,2561,2562,2560,-1189,2564,1122,1273,-2564,2564,2563,1272,-1160,2566,1293,1307,-2566,2566,2565,1306,-1295,1168,2567,2571,-2571,2567,1126,2568,-2572,2571,2568,1197,-2570,2570,2571,2569,-1197,2573,1128,1265,-2573,2573,2572,1264,-1172,2575,1289,1311,-2575,2575,2574,1310,-1291,2701,2984,2576,-1176,2984,2627,1201,-2577,2578,1105,1259,-2578,2578,2577,1260,-1134,771,1715,2581,-2581,1715,753,2579,-2582,2581,2579,3107,-3110,2580,2581,3109,-3069,1138,2582,2586,-2586,2582,1106,2583,-2587,2586,2583,1183,-2585,2585,2586,2584,-1175,1142,2587,2591,-2591,2587,1095,2588,-2592,2591,2588,1177,-2590,2590,2591,2589,-1182,1177,2592,2594,-2590,2720,2594,2592,-1095,2594,2593,1181,-2590,1150,2595,2599,-2599,2595,1108,2596,-2600,2599,2596,1185,-2598,2598,2599,2597,-1185,1154,2600,2604,-2604,2600,1098,2601,-2605,2604,2601,1187,-2603,2603,2604,2602,-1187,1187,2605,2607,-2603,2736,2607,2605,-1098,2607,2606,1186,-2603,1162,2608,2612,-2612,2608,1110,2609,-2613,2612,2609,1193,-2611,2611,2612,2610,-1193,1166,2613,2617,-2617,2613,1101,2614,-2618,2617,2614,1195,-2616,2616,2617,2615,-1195,1195,2618,2620,-2616,2752,2620,2618,-1101,2620,2619,1194,-2616,2628,2985,2621,-1201,2985,2681,1199,-2622,1112,2622,2626,-2626,2622,1104,2623,-2627,2626,2623,1201,-2625,2625,2626,2624,-1201,1201,2627,2629,-2625,2711,2629,2627,-1104,2629,2628,1200,-2625, -1148,2630,2634,-2634,2630,1090,2631,-2635,2634,2631,1182,-2633,2633,2634,2632,-1181,1182,2635,2637,-2633,2729,2637,2635,-1097,2637,2636,1180,-2633,1179,2638,2640,-2551,2725,2640,2638,-1116,2640,2639,1178,-2551,2642,1295,1305,-2642,2642,2641,1304,-1297,2644,1296,1304,-2644,2644,2643,1300,-1298,2646,1118,1283,-2646,2646,2645,1282,-1146,787,1782,2648,-2556,1782,977,2647,-2649,2648,2647,3084,-3087,2555,2648,3086,-3086,2650,788,908,-2650,2650,2649,2936,-3084,2652,1119,1285,-2652,2652,2651,1284,-1142,1160,2653,2657,-2657,2653,1091,2654,-2658,2657,2654,1191,-2656,2656,2657,2655,-1191,1191,2658,2660,-2656,2745,2660,2658,-1100,2660,2659,1190,-2656,1189,2661,2663,-2561,2741,2663,2661,-1122,2663,2662,1188,-2561,2665,1291,1309,-2665,2665,2664,1308,-1293,2667,1292,1308,-2667,2667,2666,1307,-1294,2669,1124,1275,-2669,2669,2668,1274,-1158,2671,1294,1306,-2671,2671,2670,1305,-1296,2673,1117,1279,-2673,2673,2672,1278,-1152,2675,1125,1277,-2675,2675,2674,1276,-1154,1172,2676,2680,-2680,2676,1092,2677,-2681,2680,2677,1199,-2679,2679,2680,2678,-1199,1199,2681,2683,-2679,2761,2683,2681,-1103,2683,2682,1198,-2679,1197,2684,2686,-2570,2757,2686,2684,-1128,2686,2685,1196,-2570,2688,1287,1313,-2688,2688,2687,1312,-1289,2690,1288,1312,-2690,2690,2689,1311,-1290,2692,1130,1267,-2692,2692,2691,1266,-1170,2694,1290,1310,-2694,2694,2693,1309,-1292,2696,1123,1271,-2696,2696,2695,1270,-1164,2698,1131,1269,-2698,2698,2697,1268,-1166,2700,2702,2699,-1177,2702,2701,1175,-2700,2578,2702,2700,-1106,2703,1103,2627,-2985,2703,2984,2701,-1134,2705,1299,1303,-2705,2705,2704,1302,-1287,2707,1136,1261,-2707,2707,2706,1260,-1135,2709,1129,1263,-2709,2709,2708,1262,-1138,2711,1103,1261,-2711,2711,2710,1262,-1114,848,1841,2714,-2714,1841,746,2712,-2715,2714,2712,3078,-3081,2713,2714,3080,-2763,2716,1107,1285,-2716,2716,2715,1231,-1141,2717,759,3081,-3083,2593,2996,2718,-1182,2996,2538,1183,-2719,2720,1094,1283,-2720,2720,2719,1284,-1144,2721,1107,2538,-2997,2721,2996,2593,-1144,2639,2995,2722,-1179,2995,2592,1177,-2723,2723,1094,2592,-2996,2723,2995,2639,-1147, -2725,1115,1281,-2725,2725,2724,1282,-1147,2636,2994,2726,-1181,2994,2638,1179,-2727,2727,1115,2638,-2995,2727,2994,2636,-1150,2729,1096,1279,-2729,2729,2728,1280,-1150,2542,2993,2730,-1185,2993,2635,1182,-2731,2732,1109,1277,-2732,2732,2731,1278,-1153,2733,1096,2635,-2994,2733,2993,2542,-1153,2606,2992,2734,-1187,2992,2541,1185,-2735,2736,1097,1275,-2736,2736,2735,1276,-1156,2737,1109,2541,-2993,2737,2992,2606,-1156,2662,2991,2738,-1189,2991,2605,1187,-2739,2739,1097,2605,-2992,2739,2991,2662,-1159,2741,1121,1273,-2741,2741,2740,1274,-1159,2659,2990,2742,-1191,2990,2661,1189,-2743,2743,1121,2661,-2991,2743,2990,2659,-1162,2745,1099,1271,-2745,2745,2744,1272,-1162,2545,2989,2746,-1193,2989,2658,1191,-2747,2748,1111,1269,-2748,2748,2747,1270,-1165,2749,1099,2658,-2990,2749,2989,2545,-1165,2619,2988,2750,-1195,2988,2544,1193,-2751,2752,1100,1267,-2752,2752,2751,1268,-1168,2753,1111,2544,-2989,2753,2988,2619,-1168,2685,2987,2754,-1197,2987,2618,1195,-2755,2755,1100,2618,-2988,2755,2987,2685,-1171,2757,1127,1265,-2757,2757,2756,1266,-1171,2682,2986,2758,-1199,2986,2684,1197,-2759,2759,1127,2684,-2987,2759,2986,2682,-1174,2761,1102,1263,-2761,2761,2760,1264,-1174,2762,1174,2539,-2956,2713,2762,2955,-3083,1132,2763,2766,-2766,2763,1093,2764,-2767,2766,2764,1176,-2700,2765,2766,2699,-1176,1095,2767,2768,-2589,2767,1144,2551,-2769,2768,2551,1178,-2723,2588,2768,2722,-1178,1114,2769,2770,-2550,2769,1148,2633,-2771,2770,2633,1180,-2727,2549,2770,2726,-1180,1106,2771,2772,-2584,2771,1142,2590,-2773,2772,2590,1181,-2719,2583,2772,2718,-1184,1090,2773,2774,-2632,2773,1150,2598,-2775,2774,2598,1184,-2731,2631,2774,2730,-1183,1108,2775,2776,-2597,2775,1154,2603,-2777,2776,2603,1186,-2735,2596,2776,2734,-1186,1098,2777,2778,-2602,2777,1156,2561,-2779,2778,2561,1188,-2739,2601,2778,2738,-1188,1120,2779,2780,-2560,2779,1160,2656,-2781,2780,2656,1190,-2743,2559,2780,2742,-1190,1091,2781,2782,-2655,2781,1162,2611,-2783,2782,2611,1192,-2747,2654,2782,2746,-1192,1110,2783,2784,-2610,2783,1166,2616,-2785,2784,2616,1194,-2751,2609,2784,2750, --1194,1101,2785,2786,-2615,2785,1168,2570,-2787,2786,2570,1196,-2755,2614,2786,2754,-1196,1126,2787,2788,-2569,2787,1172,2679,-2789,2788,2679,1198,-2759,2568,2788,2758,-1198,1092,2789,2790,-2678,2789,1112,2625,-2791,2790,2625,1200,-2622,2677,2790,2621,-1200,1104,2791,2792,-2624,2791,1132,2765,-2793,2792,2765,1175,-2577,2623,2792,2576,-1202,746,1923,2794,-2713,1923,877,2793,-2795,2794,2793,2878,-3080,2712,2794,3079,-3079,1138,2795,2798,-2583,2795,1202,2796,-2799,2798,2796,1203,-2798,2582,2798,2797,-1107,1106,2797,2801,-2772,2797,1203,2799,-2802,2801,2799,1204,-2801,2771,2801,2800,-1143,1142,2800,2804,-2588,2800,1204,2802,-2805,2804,2802,1205,-2804,2587,2804,2803,-1096,1095,2803,2807,-2768,2803,1205,2805,-2808,2807,2805,1206,-2807,2767,2807,2806,-1145,1144,2806,2810,-2549,2806,1206,2808,-2811,2810,2808,1207,-2810,2548,2810,2809,-1115,1114,2809,2813,-2770,2809,1207,2811,-2814,2813,2811,1208,-2813,2769,2813,2812,-1149,1148,2812,2816,-2631,2812,1208,2814,-2817,2816,2814,1209,-2816,2630,2816,2815,-1091,1090,2815,2819,-2774,2815,1209,2817,-2820,2819,2817,1210,-2819,2773,2819,2818,-1151,1150,2818,2822,-2596,2818,1210,2820,-2823,2822,2820,1211,-2822,2595,2822,2821,-1109,1108,2821,2825,-2776,2821,1211,2823,-2826,2825,2823,1212,-2825,2775,2825,2824,-1155,1154,2824,2828,-2601,2824,1212,2826,-2829,2828,2826,1213,-2828,2600,2828,2827,-1099,1098,2827,2831,-2778,2827,1213,2829,-2832,2831,2829,1214,-2831,2777,2831,2830,-1157,1156,2830,2834,-2559,2830,1214,2832,-2835,2834,2832,1215,-2834,2558,2834,2833,-1121,1120,2833,2837,-2780,2833,1215,2835,-2838,2837,2835,1216,-2837,2779,2837,2836,-1161,1160,2836,2840,-2654,2836,1216,2838,-2841,2840,2838,1217,-2840,2653,2840,2839,-1092,1091,2839,2843,-2782,2839,1217,2841,-2844,2843,2841,1218,-2843,2781,2843,2842,-1163,1162,2842,2846,-2609,2842,1218,2844,-2847,2846,2844,1219,-2846,2608,2846,2845,-1111,1110,2845,2849,-2784,2845,1219,2847,-2850,2849,2847,1220,-2849,2783,2849,2848,-1167,1166,2848,2852,-2614,2848,1220,2850,-2853,2852,2850,1221,-2852,2613,2852,2851,-1102,1101,2851,2855,-2786,2851,1221, -2853,-2856,2855,2853,1222,-2855,2785,2855,2854,-1169,1168,2854,2858,-2568,2854,1222,2856,-2859,2858,2856,1223,-2858,2567,2858,2857,-1127,1126,2857,2861,-2788,2857,1223,2859,-2862,2861,2859,1224,-2861,2787,2861,2860,-1173,1172,2860,2864,-2677,2860,1224,2862,-2865,2864,2862,1225,-2864,2676,2864,2863,-1093,1092,2863,2867,-2790,2863,1225,2865,-2868,2867,2865,1226,-2867,2789,2867,2866,-1113,1112,2866,2870,-2623,2866,1226,2868,-2871,2870,2868,1227,-2870,2622,2870,2869,-1105,1104,2869,2873,-2792,2869,1227,2871,-2874,2873,2871,1228,-2873,2791,2873,2872,-1133,1132,2872,2876,-2764,2872,1228,2874,-2877,2876,2874,1229,-2876,2763,2876,2875,-1094,1042,2877,2880,-2880,2877,1202,2878,-2881,2880,2878,2793,-3078,2365,2879,2880,-3078,1002,2881,2882,-2251,2881,1203,2796,-2883,2882,2796,1202,-2878,2250,2882,2877,-1043,1048,2883,2884,-2507,2883,1204,2799,-2885,2884,2799,1203,-2882,2506,2884,2881,-1003,987,2885,2886,-2255,2885,1205,2802,-2887,2886,2802,1204,-2884,2254,2886,2883,-1049,1050,2887,2888,-2500,2887,1206,2805,-2889,2888,2805,1205,-2886,2499,2888,2885,-988,1010,2889,2890,-2220,2889,1207,2808,-2891,2890,2808,1206,-2888,2219,2890,2887,-1051,1056,2891,2892,-2502,2891,1208,2811,-2893,2892,2811,1207,-2890,2501,2892,2889,-1011,978,2893,2894,-2294,2893,1209,2814,-2895,2894,2814,1208,-2892,2293,2894,2891,-1057,1058,2895,2896,-2509,2895,1210,2817,-2897,2896,2817,1209,-2894,2508,2896,2893,-979,1004,2897,2898,-2262,2897,1211,2820,-2899,2898,2820,1210,-2896,2261,2898,2895,-1059,1064,2899,2900,-2513,2899,1212,2823,-2901,2900,2823,1211,-2898,2512,2900,2897,-1005,991,2901,2902,-2266,2901,1213,2826,-2903,2902,2826,1212,-2900,2265,2902,2899,-1065,1066,2903,2904,-2516,2903,1214,2829,-2905,2904,2829,1213,-2902,2515,2904,2901,-992,1018,2905,2906,-2228,2905,1215,2832,-2907,2906,2832,1214,-2904,2227,2906,2903,-1067,1072,2907,2908,-2519,2907,1216,2835,-2909,2908,2835,1215,-2906,2518,2908,2905,-1019,979,2909,2910,-2313,2909,1217,2838,-2911,2910,2838,1216,-2908,2312,2910,2907,-1073,1074,2911,2912,-2522,2911,1218,2841,-2913,2912,2841,1217,-2910,2521,2912, -2909,-980,1006,2913,2914,-2273,2913,1219,2844,-2915,2914,2844,1218,-2912,2272,2914,2911,-1075,1080,2915,2916,-2525,2915,1220,2847,-2917,2916,2847,1219,-2914,2524,2916,2913,-1007,995,2917,2918,-2277,2917,1221,2850,-2919,2918,2850,1220,-2916,2276,2918,2915,-1081,1082,2919,2920,-2528,2919,1222,2853,-2921,2920,2853,1221,-2918,2527,2920,2917,-996,1026,2921,2922,-2236,2921,1223,2856,-2923,2922,2856,1222,-2920,2235,2922,2919,-1083,1088,2923,2924,-2531,2923,1224,2859,-2925,2924,2859,1223,-2922,2530,2924,2921,-1027,980,2925,2926,-2331,2925,1225,2862,-2927,2926,2862,1224,-2924,2330,2926,2923,-1089,1008,2927,2928,-2534,2927,1226,2865,-2929,2928,2865,1225,-2926,2533,2928,2925,-981,999,2929,2930,-2287,2929,1227,2868,-2931,2930,2868,1226,-2928,2286,2930,2927,-1009,1034,2931,2932,-2537,2931,1228,2871,-2933,2932,2871,1227,-2930,2536,2932,2929,-1000,981,2933,2934,-2498,2933,1229,2874,-2935,2934,2874,1228,-2932,2497,2934,2931,-1035,2305,1043,1230,-2936,2305,2935,2307,-3067,2937,1140,1231,-2937,2937,2936,2649,-2718,2394,1013,1232,-2404,2394,2403,1233,-1055,2386,1012,1234,-2393,2386,2392,1235,-1052,2401,1011,1234,-2222,2401,2221,1233,-1058,2414,988,1232,-2327,2414,2326,1236,-1062,2390,986,1237,-2305,2390,2304,1235,-1054,2408,1024,1238,-2411,2408,2410,1236,-1060,2372,1015,1237,-2378,2372,2377,1239,-1047,2425,1005,1238,-2328,2425,2327,1240,-1066,2381,1003,1241,-2310,2381,2309,1239,-1050,2416,1023,1242,-2422,2416,2421,1240,-1063,2367,1016,1241,-2370,2367,2369,1230,-1044,2434,990,1242,-2324,2434,2323,1243,-1070,2430,1020,1244,-2437,2430,2436,1243,-1068,2445,1019,1244,-2230,2445,2229,1245,-1074,2438,1021,1246,-2448,2438,2447,1245,-1071,2458,992,1246,-2345,2458,2344,1247,-1078,2452,1032,1248,-2455,2452,2454,1247,-1076,2469,1007,1248,-2346,2469,2345,1249,-1082,2460,1031,1250,-2466,2460,2465,1249,-1079,2478,994,1250,-2342,2478,2341,1251,-1086,2474,1028,1252,-2481,2474,2480,1251,-1084,2489,1027,1252,-2238,2489,2237,1253,-1090,2482,1029,1254,-2492,2482,2491,1253,-1087,2215,996,1254,-2363,2215,2362,1255,-1010,2246,1039,1256,-2364,2246,2363,1255, --1041,2353,998,1256,-2360,2353,2359,1257,-1036,2355,1037,1258,-2245,2355,2244,1257,-1037,2938,1134,1260,-2578,2938,2577,1259,-1136,2703,1133,1260,-2707,2703,2706,1261,-1104,2939,1137,1262,-2711,2939,2710,1261,-1137,2547,1113,1262,-2709,2547,2708,1263,-1103,2940,1171,1264,-2761,2940,2760,1263,-1130,2759,1173,1264,-2573,2759,2572,1265,-1128,2941,1169,1266,-2757,2941,2756,1265,-1129,2755,1170,1266,-2692,2755,2691,1267,-1101,2942,1165,1268,-2752,2942,2751,1267,-1131,2753,1167,1268,-2698,2753,2697,1269,-1112,2943,1163,1270,-2748,2943,2747,1269,-1132,2749,1164,1270,-2696,2749,2695,1271,-1100,2944,1159,1272,-2745,2944,2744,1271,-1124,2743,1161,1272,-2564,2743,2563,1273,-1122,2945,1157,1274,-2741,2945,2740,1273,-1123,2739,1158,1274,-2669,2739,2668,1275,-1098,2946,1153,1276,-2736,2946,2735,1275,-1125,2737,1155,1276,-2675,2737,2674,1277,-1110,2947,1151,1278,-2732,2947,2731,1277,-1126,2733,1152,1278,-2673,2733,2672,1279,-1097,2948,1147,1280,-2729,2948,2728,1279,-1118,2727,1149,1280,-2554,2727,2553,1281,-1116,2949,1145,1282,-2725,2949,2724,1281,-1117,2723,1146,1282,-2646,2723,2645,1283,-1095,2950,1141,1284,-2720,2950,2719,1283,-1119,2721,1143,1284,-2652,2721,2651,1285,-1108,2951,1139,1231,-2716,2951,2715,1285,-1120,1045,2952,2954,-2954,2954,2952,2204,-3073,2954,3072,2371,-3072,2308,2953,2954,-3072,2955,2539,1140,-2938,1003,2380,2957,-2371,2370,2957,2952,-1046,986,2389,2958,-2379,2378,2958,2379,-1050,1011,2400,2960,-2394,2393,2960,2388,-1054,988,2413,2962,-2405,2404,2962,2399,-1058,1005,2424,2964,-2412,2411,2964,2412,-1062,990,2433,2966,-2423,2422,2966,2423,-1066,1019,2444,2968,-2438,2437,2968,2432,-1070,992,2457,2970,-2449,2448,2970,2443,-1074,1007,2468,2972,-2456,2455,2972,2456,-1078,994,2477,2974,-2467,2466,2974,2467,-1082,1027,2488,2976,-2482,2481,2976,2476,-1086,996,2214,2978,-2493,2492,2978,2487,-1090,998,2352,2980,-2365,2364,2980,2213,-1010,1000,2982,2983,-2246,2245,2983,2351,-1036,2578,1133,2701,-2703,2711,1113,2628,-2630,2761,1173,2682,-2684,2757,1170,2685,-2687,2752,1167,2619,-2621,2748,1164,2545,-2547,2745,1161,2659, --2661,2741,1158,2662,-2664,2736,1155,2606,-2608,2732,1152,2542,-2544,2729,1149,2636,-2638,2725,1146,2639,-2641,2720,1143,2593,-2595,2716,1140,2539,-2541,1136,2707,2999,-2940,2707,1134,2997,-3000,2999,2997,1286,-2999,2939,2999,2998,-1138,1288,3000,3002,-3002,3000,1169,2941,-3003,3002,2941,1128,-2574,3001,3002,2573,-1172,1290,3003,3005,-3005,3003,1163,2943,-3006,3005,2943,1131,-2699,3004,3005,2698,-1166,1292,3006,3008,-3008,3006,1157,2945,-3009,3008,2945,1122,-2565,3007,3008,2564,-1160,1294,3009,3011,-3011,3009,1151,2947,-3012,3011,2947,1125,-2676,3010,3011,2675,-1154,1296,3012,3014,-3014,3012,1145,2949,-3015,3014,2949,1116,-2555,3013,3014,2554,-1148,1298,3015,3017,-3017,3015,1139,2951,-3018,3017,2951,1119,-2653,3016,3017,2652,-1142,1299,2705,3019,-3019,2705,1286,2997,-3020,3019,2997,1134,-2939,3018,3019,2938,-1136,1287,3020,3022,-3022,3020,1129,2709,-3023,3022,2709,1137,-2999,3021,3022,2998,-1287,1171,2940,3023,-3002,2940,1129,3020,-3024,3023,3020,1287,-2689,3001,3023,2688,-1289,1289,3024,3025,-2691,3024,1130,2692,-3026,3025,2692,1169,-3001,2690,3025,3000,-1289,1165,2942,3026,-3005,2942,1130,3024,-3027,3026,3024,1289,-2576,3004,3026,2575,-1291,1291,3027,3028,-2695,3027,1123,2696,-3029,3028,2696,1163,-3004,2694,3028,3003,-1291,1159,2944,3029,-3008,2944,1123,3027,-3030,3029,3027,1291,-2666,3007,3029,2665,-1293,1293,3030,3031,-2668,3030,1124,2669,-3032,3031,2669,1157,-3007,2667,3031,3006,-1293,1153,2946,3032,-3011,2946,1124,3030,-3033,3032,3030,1293,-2567,3010,3032,2566,-1295,1295,3033,3034,-2672,3033,1117,2673,-3035,3034,2673,1151,-3010,2671,3034,3009,-1295,1147,2948,3035,-3014,2948,1117,3033,-3036,3035,3033,1295,-2643,3013,3035,2642,-1297,1297,3036,3037,-2645,3036,1118,2646,-3038,3037,2646,1145,-3013,2644,3037,3012,-1297,1141,2950,3039,-3017,2950,1118,3036,-3040,3039,3036,1297,-3039,3016,3039,3038,-1299,3038,1297,1300,-3041,3038,3040,1301,-1299,754,3041,3043,-3043,3041,771,2580,-3044,3043,2580,3068,-3070,3042,3043,3069,-3068,784,2175,3045,-3045,2175,758,2556,-3046,3045,2556,3087,-3091,3044,3045,3090,-3090,751,2178,3047, --3047,2178,784,3044,-3048,3047,3044,3089,-3093,3046,3047,3092,-3092,796,2181,3049,-3049,2181,751,3046,-3050,3049,3046,3091,-3095,3048,3049,3094,-3094,763,2184,3051,-3051,2184,796,3048,-3052,3051,3048,3093,-3097,3050,3051,3096,-3096,793,2187,3053,-3053,2187,763,3050,-3054,3053,3050,3095,-3099,3052,3053,3098,-3098,752,2190,3055,-3055,2190,793,3052,-3056,3055,3052,3097,-3101,3054,3055,3100,-3100,804,2193,3057,-3057,2193,752,3054,-3058,3057,3054,3099,-3103,3056,3057,3102,-3102,767,2196,3059,-3059,2196,804,3056,-3060,3059,3056,3101,-3105,3058,3059,3104,-3104,801,2199,3061,-3061,2199,767,3058,-3062,3061,3058,3103,-3107,3060,3061,3106,-3106,753,2202,3062,-2580,2202,801,3060,-3063,3062,3060,3105,-3109,2579,3062,3108,-3108,3021,1286,1302,-3064,3021,3063,1313,-1288,1139,3015,3064,-1315,3015,1298,1301,-3065,2647,977,788,-2651,2647,2650,3083,-3085,3066,673,635,-3066,1302,2704,3069,-3069,2704,1303,3067,-3070,2307,906,673,-3067,2935,1230,1045,-2954,3070,644,2308,-3072,2248,1042,2879,-3076,877,3076,3077,-2794,3076,630,2365,-3078,1202,2795,3079,-2879,2795,1138,3078,-3080,1138,2585,3080,-3079,2585,1174,2762,-3081,848,2713,3082,-3082,2955,2937,2717,-3083,2649,908,759,-2718,2936,1231,1139,-3084,3083,1139,1314,-3085,1314,3064,3086,-3085,3064,1301,3085,-3087,1301,3040,3088,-3086,3040,1300,3087,-3089,1300,2643,3090,-3088,2643,1304,3089,-3091,1304,2641,3092,-3090,2641,1305,3091,-3093,1305,2670,3094,-3092,2670,1306,3093,-3095,1306,2565,3096,-3094,2565,1307,3095,-3097,1307,2666,3098,-3096,2666,1308,3097,-3099,1308,2664,3100,-3098,2664,1309,3099,-3101,1309,2693,3102,-3100,2693,1310,3101,-3103,1310,2574,3104,-3102,2574,1311,3103,-3105,1311,2689,3106,-3104,2689,1312,3105,-3107,1312,2687,3108,-3106,2687,1313,3107,-3109,1313,3063,3109,-3108,3063,1302,3068,-3110,2066,699,700,-3111,771,3041,3112,-1717,3041,754,3111,-3113,1440,673,906,-1444,2085,701,905,-2068,644,3070,3113,-1443,698,1385,3116,-2010,630,3076,3117,-1502,3076,877,1924,-3118,811,1928,3119,-3119,1928,876,2010,-3120,847,1719,3120,-1893,1719,811,3118,-3121,1842,848,3081,-3122,2068,813,1675, --2088,1847,759,908,-1787,3122,812,907,-2070,3123,812,-3123,634,3149,3151,-1634,3149,1325,3150,-3152,3151,3150,3198,-3200,1481,1633,3151,-3200,3153,770,936,-3153,3153,3152,1330,-1330,3154,850,1831,-3157,3154,3156,3155,-1329,3156,1831,770,-3154,976,2173,3167,-1318,750,1894,3159,-3159,1894,850,3154,-3160,3159,3154,1328,-3158,3158,3159,3157,-1328,904,2005,3162,-3162,2005,750,3158,-3163,3162,3158,1327,-3161,3161,3162,3160,-1327,634,2064,3164,-3150,2064,904,3161,-3165,3164,3161,1326,-3164,3149,3164,3163,-1326,1330,3152,3165,-1316,3152,936,1338,-3166,3156,3153,1329,-3156,808,2150,3166,-1319,2150,976,1317,-3167,3189,3167,2173,-3112,3169,3168,3202,-3204,2496,2346,3169,-3204,3169,2346,2349,-3172,3168,3169,3171,-3171,3171,2349,-2983,3170,3171,2982,-1001,3173,1259,1105,-3173,3173,3172,1332,-1332,2700,1176,3174,-3177,3174,1333,3175,-3177,3172,3176,3175,-1333,1303,1299,1321,-1323,1176,2764,3179,-3175,2764,1093,3177,-3180,3179,3177,1334,-3179,3174,3179,3178,-1334,1093,2875,3182,-3178,2875,1229,3180,-3183,3182,3180,1335,-3182,3177,3182,3181,-1335,1229,2933,3185,-3181,2933,981,3183,-3186,3185,3183,1336,-3185,3180,3185,3184,-1336,1337,1323,1135,-1260,3172,1105,2700,-3177,1321,1299,3018,-3187,3018,1135,1323,-3187,754,3042,3187,-1325,3188,3187,3042,-3068,3067,1303,1322,-3189,3111,754,1324,-3190,3191,1037,985,-3191,1316,3192,3155,-1330,1315,1316,1329,-1331,1319,1320,1331,-1333,3193,1319,1332,-3176,693,935,3194,-3196,3194,935,655,-3197,655,2114,3197,-3197,2114,1483,-3198,3197,1483,1481,-3200,3196,3197,3199,-3199,3200,639,693,-3196,3201,1258,1037,-3192,1000,1258,3201,-3171,1336,3183,3203,-3203,3183,981,2496,-3204,1337,1259,3173,-3205,3173,1331,1320,-3205,936,808,1318,-1339,3223,4208,4211,-4211,4208,4105,4209,-4212,4211,4209,3213,-3215,4210,4211,3214,-3209,3212,3209,4212,-4214,4212,3224,3671,-4214,3224,4212,4215,-4215,4212,3209,3215,-4216,4215,3215,3220,-4223,4221,4214,4215,-4223,3206,3217,4217,-4217,3217,3211,3218,-4218,4217,3218,3219,-4221,4219,4216,4217,-4221,3207,4218,4220,-3220,4218,3222,4219,-4221,3210,3216,4222,-3221,3216,3205,4221, --4223,3310,4223,4224,-3613,4223,3252,3616,-4225,3330,4225,4226,-3624,4225,3257,3624,-4227,3350,4227,4228,-3632,4227,3262,3632,-4229,3638,3639,3271,-3247,3321,4229,4233,-4233,4229,3273,4230,-4234,4233,4230,3376,-4232,4232,4233,4231,-3376,3325,4234,4235,-3585,4234,3275,3585,-4236,4237,3280,3279,-4237,4237,4236,3315,-3317,3341,4238,4242,-4242,4238,3283,4239,-4243,4242,4239,3386,-4241,4241,4242,4240,-3386,3345,4243,4244,-3597,4243,3285,3595,-4245,4246,3290,3289,-4246,4246,4245,3335,-3337,3361,4247,4251,-4251,4247,3292,4248,-4252,4251,4248,3394,-4250,4250,4251,4249,-3394,3365,4252,4253,-3605,4252,3294,3603,-4254,4255,3299,3298,-4255,4255,4254,3355,-3357,3300,4256,4257,-3373,4256,3270,3398,-4258,3303,4258,4259,-3609,4258,3250,3609,-4260,4261,3307,3251,-4261,4261,4260,3309,-3309,3311,4262,4266,-4266,4262,3254,4263,-4267,4266,4263,3380,-4265,4265,4266,4264,-3371,3318,4267,4271,-4271,4267,3236,4268,-4272,4271,4268,3374,-4270,4270,4271,4269,-3379,3317,4272,4273,-3618,4272,3255,3618,-4274,3331,4274,4278,-4278,4274,3259,4275,-4279,4278,4275,3382,-4277,4277,4278,4276,-3382,3338,4279,4283,-4283,4279,3241,4280,-4284,4283,4280,3384,-4282,4282,4283,4281,-3384,3337,4284,4285,-3626,4284,3260,3626,-4286,3351,4286,4290,-4290,4286,3264,4287,-4291,4290,4287,3390,-4289,4289,4290,4288,-3390,3358,4291,4295,-4295,4291,3245,4292,-4296,4295,4292,3392,-4294,4294,4295,4293,-3392,3357,4296,4297,-3634,4296,3265,3634,-4298,3396,3397,3267,-3269,3269,4298,4302,-4302,4298,3249,4299,-4303,4302,4299,3398,-4301,4301,4302,4300,-3398,3267,4303,4304,-3640,4303,3270,3640,-4305,3328,4305,4309,-4309,4305,3226,4306,-4310,4309,4306,3379,-4308,4308,4309,4307,-3378,3327,4310,4311,-3622,4310,3258,3622,-4312,3320,4312,4313,-3620,4312,3272,3620,-4314,4314,3277,3275,-4235,4314,4234,3325,-3327,4316,3238,3278,-4316,4316,4315,3322,-3324,3322,4315,4317,-3587,4315,3278,3588,-4318,4319,3230,3281,-4319,4319,4318,4143,-4145,4321,3582,3239,-4321,4321,4320,4146,-4146,3315,4236,4322,-3591,4236,3279,3592,-4323,3348,4323,4327,-4327,4323,3227,4324,-4328,4327,4324,3388,-4326,4326,4327, -4325,-3388,3347,4328,4329,-3630,4328,3263,3630,-4330,3340,4330,4331,-3628,4330,3282,3628,-4332,4332,3287,3285,-4244,4332,4243,3345,-3347,4334,3243,3288,-4334,4334,4333,3342,-3344,3342,4333,4335,-3595,4333,3288,3593,-4336,4337,3231,3276,-4337,4337,4336,3332,-3334,3332,4336,4338,-3588,4336,3276,3583,-4339,3335,4245,4339,-3592,4245,3289,3589,-4340,3368,4340,4344,-4344,4340,3228,4341,-4345,4344,4341,3396,-4343,4343,4344,4342,-3396,3367,4345,4346,-3638,4345,3268,3638,-4347,3360,4347,4348,-3636,4347,3291,3636,-4349,4349,3296,3294,-4253,4349,4252,3365,-3367,4351,3247,3297,-4351,4351,4350,3362,-3364,3362,4350,4352,-3603,4350,3297,3601,-4353,4354,3232,3286,-4354,4354,4353,3352,-3354,3352,4353,4355,-3599,4353,3286,3597,-4356,3355,4254,4356,-3601,4254,3298,3599,-4357,3302,4357,4358,-3374,4357,3300,3372,-4359,3300,4357,4359,-3642,4357,3302,3642,-4360,3303,4360,4361,-3642,4360,3248,3640,-4362,4363,3305,3234,-4363,4363,4362,3306,-3305,3304,3306,4364,-4366,4364,3251,3307,-4366,3304,4365,4366,-3609,4365,3307,3607,-4367,3309,3233,3295,-3309,3308,3295,3605,-3607,3271,4367,4368,-3607,4367,3248,3607,-4369,3371,4369,4373,-4373,4369,3225,4370,-4374,4373,4370,4150,-4372,4372,4373,4371,-4150,4375,3279,3280,-4375,4375,4374,3313,-3313,3314,4376,4377,-3582,4376,3256,3592,-4378,4379,3613,3253,-4379,4379,4378,4148,-4148,4381,3278,3238,-4381,4381,4380,3316,-3316,3317,4382,4383,-3379,4382,3252,3380,-4384,3319,4384,4385,-3591,4384,3235,3588,-4386,3319,4386,4387,-3618,4386,3256,3616,-4388,3320,4388,4389,-3376,4388,3255,3374,-4390,4391,3275,3277,-4391,4391,4390,3323,-3323,3324,4392,4393,-3620,4392,3235,3618,-4394,3324,4394,4395,-3587,4394,3274,3585,-4396,4397,3276,3231,-4397,4397,4396,3326,-3326,3327,4398,4399,-3378,4398,3272,3376,-4400,3329,4400,4401,-3622,4400,3274,3620,-4402,3329,4402,4403,-3585,4402,3237,3583,-4404,3330,4404,4405,-3382,4404,3258,3379,-4406,4407,3289,3290,-4407,4407,4406,3333,-3333,3334,4408,4409,-3588,4408,3261,3589,-4410,3334,4410,4411,-3624,4410,3237,3622,-4412,4413,3288,3243,-4413,4413,4412,3336,-3336,3337,4414,4415,-3384,4414, -3257,3382,-4416,3339,4416,4417,-3592,4416,3240,3593,-4418,3339,4418,4419,-3626,4418,3261,3624,-4420,3340,4420,4421,-3386,4420,3260,3384,-4422,4423,3285,3287,-4423,4423,4422,3343,-3343,3344,4424,4425,-3628,4424,3240,3626,-4426,3344,4426,4427,-3595,4426,3284,3595,-4428,4429,3286,3232,-4429,4429,4428,3346,-3346,3347,4430,4431,-3388,4430,3282,3386,-4432,3349,4432,4433,-3630,4432,3284,3628,-4434,3349,4434,4435,-3597,4434,3242,3597,-4436,3350,4436,4437,-3390,4436,3263,3388,-4438,4439,3298,3299,-4439,4439,4438,3353,-3353,3354,4440,4441,-3599,4440,3266,3599,-4442,3354,4442,4443,-3632,4442,3242,3630,-4444,4445,3297,3247,-4445,4445,4444,3356,-3356,3357,4446,4447,-3392,4446,3262,3390,-4448,3359,4448,4449,-3601,4448,3244,3601,-4450,3359,4450,4451,-3634,4450,3266,3632,-4452,3360,4452,4453,-3394,4452,3265,3392,-4454,4455,3294,3296,-4455,4455,4454,3363,-3363,3364,4456,4457,-3636,4456,3244,3634,-4458,3364,4458,4459,-3603,4458,3293,3603,-4460,4461,3295,3233,-4461,4461,4460,3366,-3366,3367,4462,4463,-3396,4462,3291,3394,-4464,3369,4464,4465,-3638,4464,3293,3636,-4466,3369,4466,4467,-3605,4466,3246,3605,-4468,4469,3370,3310,-4469,4469,4468,4148,-4150,3301,4470,4473,-4473,4470,3229,4471,-4474,4473,4471,3373,-4359,4472,4473,4358,-3373,3236,4474,4475,-4269,4474,3321,4232,-4476,4475,4232,3375,-4390,4268,4475,4389,-3375,3273,4476,4477,-4231,4476,3328,4308,-4478,4477,4308,3377,-4400,4230,4477,4399,-3377,3376,3272,4312,-4232,4312,3320,3375,-4232,3374,3255,4272,-4270,4272,3317,3378,-4270,3379,3258,4310,-4308,4310,3327,3377,-4308,3254,4478,4479,-4264,4478,3318,4270,-4480,4479,4270,3378,-4384,4263,4479,4383,-3381,3226,4480,4481,-4307,4480,3331,4277,-4482,4481,4277,3381,-4406,4306,4481,4405,-3380,3380,3252,4223,-4265,4223,3310,3370,-4265,3382,3257,4225,-4277,4225,3330,3381,-4277,3259,4482,4483,-4276,4482,3338,4282,-4484,4483,4282,3383,-4416,4275,4483,4415,-3383,3384,3260,4284,-4282,4284,3337,3383,-4282,3241,4484,4485,-4281,4484,3341,4241,-4486,4485,4241,3385,-4422,4280,4485,4421,-3385,3386,3282,4330,-4241,4330,3340,3385,-4241,3283,4486,4487,-4240, -4486,3348,4326,-4488,4487,4326,3387,-4432,4239,4487,4431,-3387,3388,3263,4328,-4326,4328,3347,3387,-4326,3227,4488,4489,-4325,4488,3351,4289,-4490,4489,4289,3389,-4438,4324,4489,4437,-3389,3390,3262,4227,-4289,4227,3350,3389,-4289,3264,4490,4491,-4288,4490,3358,4294,-4492,4491,4294,3391,-4448,4287,4491,4447,-3391,3392,3265,4296,-4294,4296,3357,3391,-4294,3245,4492,4493,-4293,4492,3361,4250,-4494,4493,4250,3393,-4454,4292,4493,4453,-3393,3394,3291,4347,-4250,4347,3360,3393,-4250,3292,4494,4495,-4249,4494,3368,4343,-4496,4495,4343,3395,-4464,4248,4495,4463,-3395,3396,3268,4345,-4343,4345,3367,3395,-4343,4341,3228,3269,-4302,4341,4301,3397,-3397,3398,3270,4303,-4301,4303,3267,3397,-4301,3249,4496,4497,-4300,4496,3301,4472,-4498,4497,4472,3372,-4258,4299,4497,4257,-3399,3421,4498,4499,-3670,4498,3475,3614,-4500,3426,4500,4501,-3662,4500,3491,3662,-4502,3431,4502,4503,-3654,4502,3507,3654,-4504,3417,3440,3646,-3648,3484,4504,4508,-4508,4504,3528,4505,-4509,4508,4505,3529,-4507,4507,4508,4506,-3443,3444,4509,4512,-4512,4509,3487,4510,-4513,3449,4513,4517,-4517,4513,3409,4514,-4518,4517,4514,4159,-4516,4516,4517,4515,-4159,3500,4518,4522,-4522,4518,3538,4519,-4523,4522,4519,3539,-4521,4521,4522,4520,-3453,3454,4523,4526,-4526,4523,3503,4524,-4527,3677,4527,4531,-4531,4527,3678,4528,-4532,4531,4528,4162,-4530,4530,4531,4529,-4164,3516,4532,4536,-4536,4532,3546,4533,-4537,4536,4533,3547,-4535,4535,4536,4534,-3462,3463,4537,4540,-4540,4537,3519,4538,-4541,3673,4541,4545,-4545,4541,3674,4542,-4546,4545,4542,4166,-4544,4544,4545,4543,-4168,4547,3468,3525,-4547,4547,4546,3551,-3440,3420,4548,4549,-3611,4548,3471,3611,-4550,3476,4550,4554,-4554,4550,3523,4551,-4555,4554,4551,3533,-4553,4553,4554,4552,-3424,3481,4555,4559,-4559,4555,3531,4556,-4560,4559,4556,3527,-4558,4558,4559,4557,-3408,3424,4560,4561,-3668,4560,3480,3668,-4562,3492,4562,4566,-4566,4562,3534,4563,-4567,4566,4563,3535,-4565,4565,4566,4564,-3429,3497,4567,4571,-4571,4567,3536,4568,-4572,4571,4568,3537,-4570,4570,4571,4569,-3413,3429,4572,4573,-3660,4572,3496,3660, --4574,3508,4574,4578,-4578,4574,3542,4575,-4579,4578,4575,3543,-4577,4577,4578,4576,-3434,3513,4579,4583,-4583,4579,3544,4580,-4584,4583,4580,3545,-4582,4582,4583,4581,-3417,3434,4584,4585,-3652,4584,3512,3652,-4586,3550,3549,3437,-3437,3438,4586,4590,-4590,4586,3550,4587,-4591,4590,4587,3551,-4589,4589,4590,4588,-3420,3439,4591,4592,-3646,4591,3436,3646,-4593,3489,4593,4597,-4597,4593,3530,4594,-4598,4597,4594,3532,-4596,4596,4597,4595,-3401,3427,4598,4599,-3664,4598,3488,3664,-4600,3441,4600,4601,-3666,4600,3483,3666,-4602,3679,4602,4606,-4606,4602,3680,4603,-4607,4606,4603,4160,-4605,4605,4606,4604,-4162,3680,4607,4610,-4604,4607,3681,4608,-4611,4610,4608,4159,-4610,4603,4610,4609,-4161,3447,4611,4614,-4614,4611,3485,4612,-4615,3449,4516,4618,-4618,4516,4158,4615,-4619,4618,4615,4157,-4617,4617,4618,4616,-3451,4619,3450,4616,-4622,4621,4616,4157,-4621,4708,4621,4620,-4157,3448,4622,4625,-4625,4622,3479,4623,-4626,3505,4626,4630,-4630,4626,3540,4627,-4631,4630,4627,3541,-4629,4629,4630,4628,-3402,3432,4631,4632,-3656,4631,3504,3656,-4633,3451,4633,4634,-3658,4633,3499,3658,-4635,3675,4635,4639,-4639,4635,3676,4636,-4640,4639,4636,4164,-4638,4638,4639,4637,-4166,3676,4640,4642,-4637,4640,3677,4530,-4643,4642,4530,4163,-4642,4636,4642,4641,-4165,3457,4643,4646,-4646,4643,3501,4644,-4647,3678,4647,4649,-4529,4647,3679,4605,-4650,4649,4605,4161,-4649,4528,4649,4648,-4163,3445,4650,4653,-4653,4650,3493,4651,-4654,3458,4654,4657,-4657,4654,3495,4655,-4658,3521,4658,4662,-4662,4658,3548,4659,-4663,4662,4659,3549,-4661,4661,4662,4660,-3403,3437,4663,4664,-3648,4663,3520,3648,-4665,3460,4665,4666,-3650,4665,3515,3650,-4667,3223,4667,4671,-4671,4667,3671,4668,-4672,4671,4668,3672,-4670,4670,4671,4669,-4169,3672,4672,4674,-4670,4672,3673,4544,-4675,4674,4544,4167,-4674,4669,4674,4673,-4169,3465,4675,4678,-4678,4675,3517,4676,-4679,3674,4679,4681,-4543,4679,3675,4638,-4682,4681,4638,4165,-4681,4542,4681,4680,-4167,3455,4682,4685,-4685,4682,3509,4683,-4686,3466,4686,4689,-4689,4686,3511,4687,-4690,4691,3470,3526,-4691,4691,4690, -3525,-3469,3470,4691,4692,-3644,4691,3468,3644,-4693,3418,4693,4694,-3646,4693,3471,3644,-4695,3473,4695,4698,-4698,4695,3472,4696,-4699,4700,3464,3474,-4700,4697,3418,4701,-4943,4701,3440,4699,-4943,3399,4702,4706,-4706,4702,3524,4703,-4707,4706,4703,4153,-4705,4705,4706,4704,-4153,4624,3425,4707,-4968,4707,3478,4966,-4968,4709,3615,3410,-4709,4709,4708,4156,-4156,4711,3480,3531,-4711,4711,4710,3533,-3422,4613,3406,4712,-4965,4712,3482,4623,-4965,3425,4713,4714,-3670,4713,3482,3668,-4715,4716,3483,3528,-4716,4716,4715,3527,-3425,3406,4717,4718,-3668,4717,3486,3666,-4719,4511,3443,4719,-4963,4719,3486,4612,-4963,4721,3488,3530,-4721,4721,4720,3529,-3442,3443,4722,4723,-3666,4722,3490,3664,-4724,4652,3408,4724,-4961,4724,3490,4510,-4961,4726,3491,3534,-4726,4726,4725,3532,-3428,4656,3430,4727,-4959,4727,3494,4651,-4959,3408,4728,4729,-3664,4728,3494,3662,-4730,4731,3496,3536,-4731,4731,4730,3535,-3427,4645,3411,4732,-4957,4732,3498,4655,-4957,3430,4733,4734,-3662,4733,3498,3660,-4735,4736,3499,3538,-4736,4736,4735,3537,-3430,3411,4737,4738,-3660,4737,3502,3658,-4739,4525,3453,4739,-4955,4739,3502,4644,-4955,4741,3504,3540,-4741,4741,4740,3539,-3452,3453,4742,4743,-3658,4742,3506,3656,-4744,4684,3413,4744,-4953,4744,3506,4524,-4953,4746,3507,3542,-4746,4746,4745,3541,-3433,4688,3435,4747,-4951,4747,3510,4683,-4951,3413,4748,4749,-3656,4748,3510,3654,-4750,4751,3512,3544,-4751,4751,4750,3543,-3432,4677,3415,4752,-4949,4752,3514,4687,-4949,3435,4753,4754,-3654,4753,3514,3652,-4755,4756,3515,3546,-4756,4756,4755,3545,-3435,3415,4757,4758,-3652,4757,3518,3650,-4759,4539,3462,4759,-4947,4759,3518,4676,-4947,4761,3520,3548,-4761,4761,4760,3547,-3461,3462,4762,4763,-3650,4762,3522,3648,-4764,4700,3417,4764,-4945,4764,3522,4538,-4945,4766,3475,3523,-4766,4766,4765,4153,-4155,3469,4767,4770,-4770,4767,3525,4690,-4771,4770,4690,3526,-4769,4769,4770,4768,-3404,3407,4557,4772,-4772,4557,3527,4715,-4773,4772,4715,3528,-4505,4771,4772,4504,-3485,3442,4506,4774,-4774,4506,3529,4720,-4775,4774,4720,3530,-4594,4773,4774,4593,-3490,4600, -3441,3529,-4506,4600,4505,3528,-3484,4560,3424,3527,-4557,4560,4556,3531,-3481,4598,3427,3532,-4595,4598,4594,3530,-3489,3423,4552,4776,-4776,4552,3533,4710,-4777,4776,4710,3531,-4556,4775,4776,4555,-3482,3400,4595,4778,-4778,4595,3532,4725,-4779,4778,4725,3534,-4563,4777,4778,4562,-3493,4498,3421,3533,-4552,4498,4551,3523,-3476,4500,3426,3535,-4564,4500,4563,3534,-3492,3428,4564,4780,-4780,4564,3535,4730,-4781,4780,4730,3536,-4568,4779,4780,4567,-3498,4572,3429,3537,-4569,4572,4568,3536,-3497,3412,4569,4782,-4782,4569,3537,4735,-4783,4782,4735,3538,-4519,4781,4782,4518,-3501,4633,3451,3539,-4520,4633,4519,3538,-3500,3452,4520,4784,-4784,4520,3539,4740,-4785,4784,4740,3540,-4627,4783,4784,4626,-3506,4631,3432,3541,-4628,4631,4627,3540,-3505,3401,4628,4786,-4786,4628,3541,4745,-4787,4786,4745,3542,-4575,4785,4786,4574,-3509,4502,3431,3543,-4576,4502,4575,3542,-3508,3433,4576,4788,-4788,4576,3543,4750,-4789,4788,4750,3544,-4580,4787,4788,4579,-3514,4584,3434,3545,-4581,4584,4580,3544,-3513,3416,4581,4790,-4790,4581,3545,4755,-4791,4790,4755,3546,-4533,4789,4790,4532,-3517,4665,3460,3547,-4534,4665,4533,3546,-3516,3461,4534,4792,-4792,4534,3547,4760,-4793,4792,4760,3548,-4659,4791,4792,4658,-3522,4663,3437,3549,-4660,4663,4659,3548,-3521,3402,4660,4586,-3439,4660,3549,3550,-4587,4591,3439,3551,-4588,4591,4587,3550,-3437,3419,4588,4794,-4794,4588,3551,4546,-4795,4794,4546,3525,-4768,4793,4794,4767,-3470,3553,4795,4798,-4798,4795,3399,4705,-4799,4798,4705,4152,-4797,4797,4798,4796,-4152,3476,4553,4802,-4802,4553,3423,4799,-4803,4802,4799,3554,-4801,4801,4802,4800,-3553,3423,4775,4805,-4800,4775,3481,4803,-4806,4805,4803,3555,-4805,4799,4805,4804,-3555,3481,4558,4808,-4804,4558,3407,4806,-4809,4808,4806,3556,-4808,4803,4808,4807,-3556,3407,4771,4811,-4807,4771,3484,4809,-4812,4811,4809,3557,-4811,4806,4811,4810,-3557,3484,4507,4814,-4810,4507,3442,4812,-4815,4814,4812,3558,-4814,4809,4814,4813,-3558,3442,4773,4817,-4813,4773,3489,4815,-4818,4817,4815,3559,-4817,4812,4817,4816,-3559,3489,4596,4820,-4816,4596,3400,4818,-4821, -4820,4818,3560,-4820,4815,4820,4819,-3560,3400,4777,4823,-4819,4777,3492,4821,-4824,4823,4821,3561,-4823,4818,4823,4822,-3561,3492,4565,4826,-4822,4565,3428,4824,-4827,4826,4824,3562,-4826,4821,4826,4825,-3562,3428,4779,4829,-4825,4779,3497,4827,-4830,4829,4827,3563,-4829,4824,4829,4828,-3563,3497,4570,4832,-4828,4570,3412,4830,-4833,4832,4830,3564,-4832,4827,4832,4831,-3564,3412,4781,4835,-4831,4781,3500,4833,-4836,4835,4833,3565,-4835,4830,4835,4834,-3565,3500,4521,4838,-4834,4521,3452,4836,-4839,4838,4836,3566,-4838,4833,4838,4837,-3566,3452,4783,4841,-4837,4783,3505,4839,-4842,4841,4839,3567,-4841,4836,4841,4840,-3567,3505,4629,4844,-4840,4629,3401,4842,-4845,4844,4842,3568,-4844,4839,4844,4843,-3568,3401,4785,4847,-4843,4785,3508,4845,-4848,4847,4845,3569,-4847,4842,4847,4846,-3569,3508,4577,4850,-4846,4577,3433,4848,-4851,4850,4848,3570,-4850,4845,4850,4849,-3570,3433,4787,4853,-4849,4787,3513,4851,-4854,4853,4851,3571,-4853,4848,4853,4852,-3571,3513,4582,4856,-4852,4582,3416,4854,-4857,4856,4854,3572,-4856,4851,4856,4855,-3572,3416,4789,4859,-4855,4789,3516,4857,-4860,4859,4857,3573,-4859,4854,4859,4858,-3573,3516,4535,4862,-4858,4535,3461,4860,-4863,4862,4860,3574,-4862,4857,4862,4861,-3574,3461,4791,4865,-4861,4791,3521,4863,-4866,4865,4863,3575,-4865,4860,4865,4864,-3575,3521,4661,4868,-4864,4661,3402,4866,-4869,4868,4866,3576,-4868,4863,4868,4867,-3576,4866,3402,3438,-4870,4866,4869,3577,-3577,3438,4589,4872,-4870,4589,3419,4870,-4873,4872,4870,3578,-4872,4869,4872,4871,-3578,3419,4793,4875,-4871,4793,3469,4873,-4876,4875,4873,3579,-4875,4870,4875,4874,-3579,3469,4769,4878,-4874,4769,3403,4876,-4879,4878,4876,3580,-4878,4873,4878,4877,-3580,3552,4879,4883,-4883,4879,3311,4880,-4884,4883,4880,4150,-4882,4882,4883,4881,-4152,3254,4262,4885,-4885,4262,3311,4879,-4886,4885,4879,3552,-4801,4884,4885,4800,-3555,3318,4478,4887,-4887,4478,3254,4884,-4888,4887,4884,3554,-4805,4886,4887,4804,-3556,3236,4267,4889,-4889,4267,3318,4886,-4890,4889,4886,3555,-4808,4888,4889,4807,-3557,3321,4474,4891,-4891,4474,3236,4888, --4892,4891,4888,3556,-4811,4890,4891,4810,-3558,3273,4229,4893,-4893,4229,3321,4890,-4894,4893,4890,3557,-4814,4892,4893,4813,-3559,3328,4476,4895,-4895,4476,3273,4892,-4896,4895,4892,3558,-4817,4894,4895,4816,-3560,3226,4305,4897,-4897,4305,3328,4894,-4898,4897,4894,3559,-4820,4896,4897,4819,-3561,3331,4480,4899,-4899,4480,3226,4896,-4900,4899,4896,3560,-4823,4898,4899,4822,-3562,3259,4274,4901,-4901,4274,3331,4898,-4902,4901,4898,3561,-4826,4900,4901,4825,-3563,3338,4482,4903,-4903,4482,3259,4900,-4904,4903,4900,3562,-4829,4902,4903,4828,-3564,3241,4279,4905,-4905,4279,3338,4902,-4906,4905,4902,3563,-4832,4904,4905,4831,-3565,3341,4484,4907,-4907,4484,3241,4904,-4908,4907,4904,3564,-4835,4906,4907,4834,-3566,3283,4238,4909,-4909,4238,3341,4906,-4910,4909,4906,3565,-4838,4908,4909,4837,-3567,3348,4486,4911,-4911,4486,3283,4908,-4912,4911,4908,3566,-4841,4910,4911,4840,-3568,3227,4323,4913,-4913,4323,3348,4910,-4914,4913,4910,3567,-4844,4912,4913,4843,-3569,3351,4488,4915,-4915,4488,3227,4912,-4916,4915,4912,3568,-4847,4914,4915,4846,-3570,3264,4286,4917,-4917,4286,3351,4914,-4918,4917,4914,3569,-4850,4916,4917,4849,-3571,3358,4490,4919,-4919,4490,3264,4916,-4920,4919,4916,3570,-4853,4918,4919,4852,-3572,3245,4291,4921,-4921,4291,3358,4918,-4922,4921,4918,3571,-4856,4920,4921,4855,-3573,3361,4492,4923,-4923,4492,3245,4920,-4924,4923,4920,3572,-4859,4922,4923,4858,-3574,3292,4247,4925,-4925,4247,3361,4922,-4926,4925,4922,3573,-4862,4924,4925,4861,-3575,3368,4494,4927,-4927,4494,3292,4924,-4928,4927,4924,3574,-4865,4926,4927,4864,-3576,3228,4340,4929,-4929,4340,3368,4926,-4930,4929,4926,3575,-4868,4928,4929,4867,-3577,4930,3269,3228,-4929,4930,4928,3576,-3578,3249,4298,4932,-4932,4298,3269,4930,-4933,4932,4930,3577,-4872,4931,4932,4871,-3579,3301,4496,4934,-4934,4496,3249,4931,-4935,4934,4931,3578,-4875,4933,4934,4874,-3580,3229,4470,4936,-4936,4470,3301,4933,-4937,4936,4933,3579,-4878,4935,4936,4877,-3581,4938,3581,3312,-4938,4938,4937,4143,-4146,3478,4939,5855,-4967,4939,4156,4620,-5856,3583,3276,4397,-4404,4397,3325, -3584,-4404,3585,3275,4391,-4396,4391,3322,3586,-4396,3585,3274,4400,-4236,4400,3329,3584,-4236,3583,3237,4410,-4339,4410,3334,3587,-4339,3588,3235,4392,-4318,4392,3324,3586,-4318,3589,3289,4407,-4410,4407,3332,3587,-4410,3588,3278,4381,-4386,4381,3315,3590,-4386,3589,3261,4418,-4340,4418,3339,3591,-4340,3592,3256,4386,-4323,4386,3319,3590,-4323,3593,3288,4413,-4418,4413,3335,3591,-4418,3592,3279,4375,-4378,4375,3312,3581,-4378,3593,3240,4424,-4336,4424,3344,3594,-4336,3595,3285,4423,-4428,4423,3342,3594,-4428,3595,3284,4432,-4245,4432,3349,3596,-4245,3597,3286,4429,-4436,4429,3345,3596,-4436,3597,3242,4442,-4356,4442,3354,3598,-4356,3599,3298,4439,-4442,4439,3352,3598,-4442,3599,3266,4450,-4357,4450,3359,3600,-4357,3601,3297,4445,-4450,4445,3355,3600,-4450,3601,3244,4456,-4353,4456,3364,3602,-4353,3603,3294,4455,-4460,4455,3362,3602,-4460,3603,3293,4464,-4254,4464,3369,3604,-4254,3605,3295,4461,-4468,4461,3365,3604,-4468,3246,3271,3606,-3606,3607,3307,4261,-4369,4261,3308,3606,-4369,3607,3248,4360,-4367,4360,3303,3608,-4367,3305,4363,4259,-3610,4363,3304,3608,-4260,3610,4549,4940,-4190,4549,3611,4205,-4941,3611,4693,4698,-4697,4693,3418,4697,-4699,3474,4941,4942,-4700,4941,3473,4697,-4943,4699,3440,3417,-4701,3519,4943,4944,-4539,4943,3464,4700,-4945,4538,3522,4762,-4541,4762,3462,4539,-4541,3517,4945,4946,-4677,4945,3463,4539,-4947,4676,3518,4757,-4679,4757,3415,4677,-4679,3511,4947,4948,-4688,4947,3465,4677,-4949,4687,3514,4753,-4690,4753,3435,4688,-4690,3509,4949,4950,-4684,4949,3466,4688,-4951,4683,3510,4748,-4686,4748,3413,4684,-4686,3503,4951,4952,-4525,4951,3455,4684,-4953,4524,3506,4742,-4527,4742,3453,4525,-4527,3501,4953,4954,-4645,4953,3454,4525,-4955,4644,3502,4737,-4647,4737,3411,4645,-4647,3495,4955,4956,-4656,4955,3457,4645,-4957,4655,3498,4733,-4658,4733,3430,4656,-4658,3493,4957,4958,-4652,4957,3458,4656,-4959,4651,3494,4728,-4654,4728,3408,4652,-4654,3487,4959,4960,-4511,4959,3445,4652,-4961,4510,3490,4722,-4513,4722,3443,4511,-4513,3485,4961,4962,-4613,4961,3444,4511,-4963,4612,3486,4717,-4615,4717, -3406,4613,-4615,3479,4963,4964,-4624,4963,3447,4613,-4965,4623,3482,4713,-4626,4713,3425,4624,-4626,3477,4965,4967,-4967,4965,3448,4624,-4968,4969,3612,3314,-4969,4969,4968,4146,-4148,4970,3614,3475,-4767,4970,4766,4154,-4156,3616,3252,4382,-4388,4382,3317,3617,-4388,3616,3256,4376,-4225,4376,3314,3612,-4225,3618,3235,4384,-4274,4384,3319,3617,-4274,3618,3255,4388,-4394,4388,3320,3619,-4394,3620,3274,4394,-4314,4394,3324,3619,-4314,3620,3272,4398,-4402,4398,3327,3621,-4402,3622,3237,4402,-4312,4402,3329,3621,-4312,3622,3258,4404,-4412,4404,3330,3623,-4412,3624,3261,4408,-4227,4408,3334,3623,-4227,3624,3257,4414,-4420,4414,3337,3625,-4420,3626,3240,4416,-4286,4416,3339,3625,-4286,3626,3260,4420,-4426,4420,3340,3627,-4426,3628,3284,4426,-4332,4426,3344,3627,-4332,3628,3282,4430,-4434,4430,3347,3629,-4434,3630,3242,4434,-4330,4434,3349,3629,-4330,3630,3263,4436,-4444,4436,3350,3631,-4444,3632,3266,4440,-4229,4440,3354,3631,-4229,3632,3262,4446,-4452,4446,3357,3633,-4452,3634,3244,4448,-4298,4448,3359,3633,-4298,3634,3265,4452,-4458,4452,3360,3635,-4458,3636,3293,4458,-4349,4458,3364,3635,-4349,3636,3291,4462,-4466,4462,3367,3637,-4466,3638,3246,4466,-4347,4466,3369,3637,-4347,3267,3639,3638,-3269,3640,3248,4367,-4305,4367,3271,3639,-4305,3640,3270,4256,-4362,4256,3300,3641,-4362,3250,4258,4359,-3643,4258,3303,3641,-4360,3644,3471,4548,-4693,4548,3420,3643,-4693,3644,3468,4547,-4695,4547,3439,3645,-4695,3646,3440,4701,-4593,4701,3418,3645,-4593,3646,3436,3437,-3648,3648,3522,4764,-4665,4764,3417,3647,-4665,3648,3520,4761,-4764,4761,3460,3649,-4764,3650,3518,4759,-4667,4759,3462,3649,-4667,3650,3515,4756,-4759,4756,3434,3651,-4759,3652,3514,4752,-4586,4752,3415,3651,-4586,3652,3512,4751,-4755,4751,3431,3653,-4755,3654,3510,4747,-4504,4747,3435,3653,-4504,3654,3507,4746,-4750,4746,3432,3655,-4750,3656,3506,4744,-4633,4744,3413,3655,-4633,3656,3504,4741,-4744,4741,3451,3657,-4744,3658,3502,4739,-4635,4739,3453,3657,-4635,3658,3499,4736,-4739,4736,3429,3659,-4739,3660,3498,4732,-4574,4732,3411,3659,-4574,3660,3496,4731,-4735, -4731,3426,3661,-4735,3662,3494,4727,-4502,4727,3430,3661,-4502,3662,3491,4726,-4730,4726,3427,3663,-4730,3664,3490,4724,-4600,4724,3408,3663,-4600,3664,3488,4721,-4724,4721,3441,3665,-4724,3666,3486,4719,-4602,4719,3443,3665,-4602,3666,3483,4716,-4719,4716,3424,3667,-4719,3668,3482,4712,-4562,4712,3406,3667,-4562,3668,3480,4711,-4715,4711,3421,3669,-4715,3478,4707,4499,-3615,4707,3425,3669,-4500,3473,4941,4973,-4696,4941,3474,4971,-4974,4973,4971,3670,-4973,4695,4973,4972,-3473,3672,4974,4976,-4976,4974,3519,4537,-4977,4976,4537,3463,-4946,4975,4976,4945,-3518,3674,4977,4979,-4979,4977,3511,4686,-4980,4979,4686,3466,-4950,4978,4979,4949,-3510,3676,4980,4982,-4982,4980,3503,4523,-4983,4982,4523,3454,-4954,4981,4982,4953,-3502,3678,4983,4985,-4985,4983,3495,4654,-4986,4985,4654,3458,-4958,4984,4985,4957,-3494,3680,4986,4988,-4988,4986,3487,4509,-4989,4988,4509,3444,-4962,4987,4988,4961,-3486,3682,4989,4991,-4991,4989,3479,4622,-4992,4991,4622,3448,-4966,4990,4991,4965,-3478,3472,4972,4992,-4191,4972,3670,3671,-4993,4993,3671,3670,-4972,4993,4971,3474,-3465,3519,4974,4994,-4944,4974,3672,4668,-4995,4994,4668,3671,-4994,4943,4994,4993,-3465,3673,4672,4996,-4996,4672,3672,4975,-4997,4996,4975,3517,-4676,4995,4996,4675,-3466,3511,4977,4997,-4948,4977,3674,4541,-4998,4997,4541,3673,-4996,4947,4997,4995,-3466,3675,4679,4999,-4999,4679,3674,4978,-5000,4999,4978,3509,-4683,4998,4999,4682,-3456,3503,4980,5000,-4952,4980,3676,4635,-5001,5000,4635,3675,-4999,4951,5000,4998,-3456,3677,4640,5002,-5002,4640,3676,4981,-5003,5002,4981,3501,-4644,5001,5002,4643,-3458,3495,4983,5003,-4956,4983,3678,4527,-5004,5003,4527,3677,-5002,4955,5003,5001,-3458,3679,4647,5005,-5005,4647,3678,4984,-5006,5005,4984,3493,-4651,5004,5005,4650,-3446,3487,4986,5006,-4960,4986,3680,4602,-5007,5006,4602,3679,-5005,4959,5006,5004,-3446,3681,4607,5008,-5008,4607,3680,4987,-5009,5008,4987,3485,-4612,5007,5008,4611,-3448,3479,4989,5010,-4964,4989,3682,5009,-5011,5010,5009,3681,-5008,4963,5010,5007,-3448,3681,5009,5012,-4609,5009,3682,5011,-5013,5012,5011,4158, --4516,4608,5012,4515,-4160,3409,5013,5015,-4515,5013,3446,5014,-5016,5015,5014,4160,-4610,4514,5015,4609,-4160,3446,5016,5018,-5015,5016,3404,5017,-5019,5018,5017,4161,-4605,5014,5018,4604,-4161,3404,5019,5021,-5018,5019,3459,5020,-5022,5021,5020,4162,-4649,5017,5021,4648,-4162,3459,5022,5024,-5021,5022,3414,5023,-5025,5024,5023,4163,-4530,5020,5024,4529,-4163,3414,5025,5027,-5024,5025,3456,5026,-5028,5027,5026,4164,-4642,5023,5027,4641,-4164,3456,5028,5030,-5027,5028,3405,5029,-5031,5030,5029,4165,-4638,5026,5030,4637,-4165,3405,5031,5033,-5030,5031,3467,5032,-5034,5033,5032,4166,-4681,5029,5033,4680,-4166,4167,5034,5036,-4674,5034,4207,5035,-5037,5036,5035,3223,-4671,4673,5036,4670,-4169,5038,3763,4048,-5038,5038,5037,4050,-3708,5040,3783,4057,-5040,5040,5039,4058,-3712,5042,3803,4065,-5042,5042,5041,4066,-3717,4072,3701,3725,-4074,3774,5043,5047,-5047,5043,3827,5044,-5048,5047,5044,3828,-5046,5046,5047,5045,-3728,5049,3778,4020,-5049,5049,5048,4021,-3730,3734,5050,5051,-3734,5050,3769,3768,-5052,3794,5052,5056,-5056,5052,3837,5053,-5057,5056,5053,3838,-5055,5055,5056,5054,-3737,5058,3798,4032,-5058,5058,5057,4031,-3739,3743,5059,5060,-3743,5059,3789,3788,-5061,3814,5061,5065,-5065,5061,3845,5062,-5066,5065,5062,3846,-5064,5064,5065,5063,-3746,5067,3818,4040,-5067,5067,5066,4039,-3748,3752,5068,5069,-3752,5068,3809,3808,-5070,5071,3753,3824,-5071,5071,5070,3850,-3725,5073,3756,4044,-5073,5073,5072,4045,-3706,3760,5074,5075,-3707,5074,3761,3762,-5076,3764,5076,5080,-5080,5076,3823,5077,-5081,5080,5077,3832,-5079,5079,5080,5078,-3709,3771,5081,5085,-5085,5081,3830,5082,-5086,5085,5082,3826,-5084,5084,5085,5083,-3693,5087,3770,4051,-5087,5087,5086,4052,-3710,3784,5088,5092,-5092,5088,3833,5089,-5093,5092,5089,3834,-5091,5091,5092,5090,-3714,3791,5093,5097,-5097,5093,3835,5094,-5098,5097,5094,3836,-5096,5096,5097,5095,-3697,5099,3790,4059,-5099,5099,5098,4060,-3715,3804,5100,5104,-5104,5100,3841,5101,-5105,5104,5101,3842,-5103,5103,5104,5102,-3719,3811,5105,5109,-5109,5105,3843,5106,-5110,5109,5106,3844,-5108,5108,5109, -5107,-3701,5111,3810,4067,-5111,5111,5110,4068,-3720,3848,3722,3721,-3850,3723,5112,5116,-5116,5112,3849,5113,-5117,5116,5113,3850,-5115,5115,5116,5114,-3705,5118,3721,4073,-5118,5118,5117,4074,-3725,3781,5119,5123,-5123,5119,3829,5120,-5124,5123,5120,3831,-5122,5122,5123,5121,-3684,5125,3780,4055,-5125,5125,5124,4056,-3713,5127,3773,4053,-5127,5127,5126,4054,-3727,3731,5128,5049,-3730,5128,3779,3778,-5050,3694,5129,5130,-3733,5129,3776,3775,-5131,5130,3775,4022,-5132,5130,5131,4024,-3733,5133,3766,3765,-5133,5133,5132,4117,-4119,5135,3239,3582,-5135,5135,5134,4119,-4121,5051,3768,4026,-5137,5051,5136,4028,-3734,3801,5137,5141,-5141,5137,3839,5138,-5142,5141,5138,3840,-5140,5140,5141,5139,-3685,5143,3800,4063,-5143,5143,5142,4064,-3718,5145,3793,4061,-5145,5145,5144,4062,-3736,3740,5146,5058,-3739,5146,3799,3798,-5059,3698,5147,5148,-3742,5147,3796,3795,-5149,5148,3795,4030,-5150,5148,5149,4029,-3742,3687,5150,5151,-3731,5150,3786,3785,-5152,5151,3785,4023,-5153,5151,5152,4019,-3731,5060,3788,4027,-5154,5060,5153,4025,-3743,3821,5154,5158,-5158,5154,3847,5155,-5159,5158,5155,3848,-5157,5157,5158,5156,-3686,5160,3820,4071,-5160,5160,5159,4072,-3723,5162,3813,4069,-5162,5162,5161,4070,-3745,3749,5163,5067,-3748,5163,3819,3818,-5068,3702,5164,5165,-3751,5164,3816,3815,-5166,5165,3815,4038,-5167,5165,5166,4037,-3751,3688,5167,5168,-3740,5167,3806,3805,-5169,5168,3805,4034,-5170,5168,5169,4033,-3740,5069,3808,4036,-5171,5069,5170,4035,-3752,5172,3755,3825,-5172,5172,5171,3824,-3754,5172,3753,4075,-5174,5172,5173,4076,-3756,5175,3756,4075,-5175,5175,5174,4074,-3704,3758,5176,5177,-3691,5176,3757,3759,-5178,5179,3759,3757,-5179,5179,5178,3760,-3707,5178,3757,4044,-5181,5178,5180,4043,-3761,3689,3762,3761,-3749,3748,3761,4042,-4042,5182,3725,4042,-5182,5182,5181,4043,-3704,3225,4369,5186,-5186,4369,3371,5183,-5187,5186,5183,4123,-5185,5185,5186,5184,-4125,3734,3733,5187,-5189,5187,3765,3766,-5189,5190,3767,4018,-5190,5190,5189,4028,-3711,5192,3253,3613,-5192,5192,5191,4121,-4123,3694,3732,5193,-5195,5193,3768,3769,-5195,5196, -3770,3830,-5196,5196,5195,3832,-3708,5198,3772,4026,-5198,5198,5197,4024,-3692,5200,3772,4051,-5200,5200,5199,4050,-3711,5202,3773,3827,-5202,5202,5201,3826,-3710,3731,3729,5203,-5205,5203,3775,3776,-5205,5206,3777,4053,-5206,5206,5205,4052,-3692,5208,3777,4022,-5208,5208,5207,4021,-3729,3687,3730,5209,-5211,5209,3778,3779,-5211,5212,3780,3829,-5212,5212,5211,3828,-3727,5214,3782,4055,-5214,5214,5213,4054,-3729,5216,3782,4020,-5216,5216,5215,4019,-3694,5218,3783,3833,-5218,5218,5217,3831,-3713,3743,3742,5219,-5221,5219,3785,3786,-5221,5222,3787,4023,-5222,5222,5221,4025,-3716,5224,3787,4057,-5224,5224,5223,4056,-3694,3698,3741,5225,-5227,5225,3788,3789,-5227,5228,3790,3835,-5228,5228,5227,3834,-3712,5230,3792,4027,-5230,5230,5229,4029,-3696,5232,3792,4059,-5232,5232,5231,4058,-3716,5234,3793,3837,-5234,5234,5233,3836,-3715,3740,3738,5235,-5237,5235,3795,3796,-5237,5238,3797,4061,-5238,5238,5237,4060,-3696,5240,3797,4030,-5240,5240,5239,4031,-3738,3688,3739,5241,-5243,5241,3798,3799,-5243,5244,3800,3839,-5244,5244,5243,3838,-3736,5246,3802,4063,-5246,5246,5245,4062,-3738,5248,3802,4032,-5248,5248,5247,4033,-3698,5250,3803,3841,-5250,5250,5249,3840,-3718,3752,3751,5251,-5253,5251,3805,3806,-5253,5254,3807,4034,-5254,5254,5253,4035,-3721,5256,3807,4065,-5256,5256,5255,4064,-3698,3702,3750,5257,-5259,5257,3808,3809,-5259,5260,3810,3843,-5260,5260,5259,3842,-3717,5262,3812,4036,-5262,5262,5261,4037,-3700,5264,3812,4067,-5264,5264,5263,4066,-3721,5266,3813,3845,-5266,5266,5265,3844,-3720,3749,3747,5267,-5269,5267,3815,3816,-5269,5270,3817,4069,-5270,5270,5269,4068,-3700,5272,3817,4038,-5272,5272,5271,4039,-3747,3689,3748,5273,-5275,5273,3818,3819,-5275,5276,3820,3847,-5276,5276,5275,3846,-3745,5278,3822,4071,-5278,5278,5277,4070,-3747,5280,3822,4040,-5280,5280,5279,4041,-3702,5282,3763,3823,-5282,5282,5281,4123,-4123,3754,5283,5286,-5286,5283,3824,5171,-5287,5286,5171,3825,-5285,5285,5286,5284,-3687,3692,5083,5288,-5288,5083,3826,5201,-5289,5288,5201,3827,-5044,5287,5288,5043,-3775,3727,5045,5290,-5290,5045,3828,5211,-5291, -5290,5211,3829,-5120,5289,5290,5119,-3782,5127,3726,3828,-5045,5127,5044,3827,-3774,5087,3709,3826,-5083,5087,5082,3830,-3771,5125,3712,3831,-5121,5125,5120,3829,-3781,3708,5078,5292,-5292,5078,3832,5195,-5293,5292,5195,3830,-5082,5291,5292,5081,-3772,3683,5121,5294,-5294,5121,3831,5217,-5295,5294,5217,3833,-5089,5293,5294,5088,-3785,5038,3707,3832,-5078,5038,5077,3823,-3764,5040,3711,3834,-5090,5040,5089,3833,-3784,3713,5090,5296,-5296,5090,3834,5227,-5297,5296,5227,3835,-5094,5295,5296,5093,-3792,5099,3714,3836,-5095,5099,5094,3835,-3791,3696,5095,5298,-5298,5095,3836,5233,-5299,5298,5233,3837,-5053,5297,5298,5052,-3795,5145,3735,3838,-5054,5145,5053,3837,-3794,3736,5054,5300,-5300,5054,3838,5243,-5301,5300,5243,3839,-5138,5299,5300,5137,-3802,5143,3717,3840,-5139,5143,5138,3839,-3801,3684,5139,5302,-5302,5139,3840,5249,-5303,5302,5249,3841,-5101,5301,5302,5100,-3805,5042,3716,3842,-5102,5042,5101,3841,-3804,3718,5102,5304,-5304,5102,3842,5259,-5305,5304,5259,3843,-5106,5303,5304,5105,-3812,5111,3719,3844,-5107,5111,5106,3843,-3811,3700,5107,5306,-5306,5107,3844,5265,-5307,5306,5265,3845,-5062,5305,5306,5061,-3815,5162,3744,3846,-5063,5162,5062,3845,-3814,3745,5063,5308,-5308,5063,3846,5275,-5309,5308,5275,3847,-5155,5307,5308,5154,-3822,5160,3722,3848,-5156,5160,5155,3847,-3821,3685,5156,5112,-3724,5156,3848,3849,-5113,5118,3724,3850,-5114,5118,5113,3849,-3722,3704,5114,5310,-5310,5114,3850,5070,-5311,5310,5070,3824,-5284,5309,5310,5283,-3755,5312,3867,4103,-5312,5312,5311,4049,-3915,5314,3871,4095,-5314,5314,5313,4096,-3931,5316,3876,4087,-5316,5316,5315,4088,-3947,4081,4080,3885,-3864,3923,5317,5321,-5321,5317,3887,5318,-5322,5321,5318,3967,-5320,5320,5321,5319,-3967,3889,5322,5325,-5325,5531,5325,5322,-3889,5324,5325,5323,-3927,3409,4513,5329,-5329,4513,3449,5326,-5330,5329,5326,4132,-5328,5328,5329,5327,-4134,3939,5330,5334,-5334,5330,3894,5331,-5335,5334,5331,3977,-5333,5333,5334,5332,-3977,3896,5335,5338,-5338,5551,5338,5335,-3896,5337,5338,5336,-3943,4112,5339,5343,-5343,5339,4111,5340,-5344,5343,5340,4137, --5342,5342,5343,5341,-4137,3955,5344,5348,-5348,5344,3901,5345,-5349,5348,5345,3985,-5347,5347,5348,5346,-3985,3903,5349,5352,-5352,5571,5352,5349,-3903,5351,5352,5350,-3959,4108,5353,5357,-5357,5353,4107,5354,-5358,5357,5354,4141,-5356,5356,5357,5355,-4141,3907,5358,5359,-3964,5358,3884,3989,-5360,5361,3866,4046,-5361,5361,5360,4047,-3911,3915,5362,5366,-5366,5362,3868,5363,-5367,5366,5363,3971,-5365,5365,5366,5364,-3963,3920,5367,5371,-5371,5367,3856,5368,-5372,5371,5368,3965,-5370,5370,5371,5369,-3970,5373,3869,4101,-5373,5373,5372,4102,-3920,3931,5374,5378,-5378,5374,3873,5375,-5379,5378,5375,3973,-5377,5377,5378,5376,-3973,3936,5379,5383,-5383,5379,3859,5380,-5384,5383,5380,3975,-5382,5382,5383,5381,-3975,5385,3874,4093,-5385,5385,5384,4094,-3936,3947,5386,5390,-5390,5386,3878,5387,-5391,5390,5387,3981,-5389,5389,5390,5388,-3981,3952,5391,5395,-5395,5391,3862,5392,-5396,5395,5392,3983,-5394,5394,5395,5393,-3983,5397,3879,4085,-5397,5397,5396,4086,-3952,3881,3882,3987,-3989,3883,5398,5402,-5402,5398,3865,5399,-5403,5402,5399,3989,-5401,5401,5402,5400,-3989,5404,3884,4079,-5404,5404,5403,4080,-3882,3928,5405,5409,-5409,5405,3851,5406,-5410,5409,5406,3970,-5408,5408,5409,5407,-3969,5411,3872,4097,-5411,5411,5410,4098,-3928,5413,3886,4099,-5413,5413,5412,4100,-3923,4114,5414,5418,-5418,5414,4113,5415,-5419,5418,5415,4135,-5417,5417,5418,5416,-4135,4115,5419,5422,-5422,5419,4114,5417,-5423,5422,5417,4134,-5421,5421,5422,5420,-4134,3891,5423,5426,-5426,5526,5426,5423,-3856,5425,5426,5424,-3925,4132,5326,5429,-5429,5326,3449,4617,-5430,5429,4617,3450,-5428,5428,5429,5427,-4132,3450,4619,5431,-5428,5431,4619,3410,-5518,5427,5431,5430,-4132,3892,5432,5435,-5435,5522,5435,5432,-3871,5434,5435,5433,-3919,3944,5436,5440,-5440,5436,3852,5437,-5441,5440,5437,3979,-5439,5439,5440,5438,-3979,5442,3877,4089,-5442,5442,5441,4090,-3944,5444,3893,4091,-5444,5444,5443,4092,-3939,4110,5445,5449,-5449,5445,4109,5446,-5450,5449,5446,4139,-5448,5448,5449,5447,-4139,4111,5450,5452,-5341,5450,4110,5448,-5453,5452,5448,4138,-5452,5340,5452, -5451,-4138,3898,5453,5456,-5456,5546,5456,5453,-3859,5455,5456,5454,-3941,4113,5457,5459,-5416,5457,4112,5342,-5460,5459,5342,4136,-5459,5415,5459,5458,-4136,3890,5460,5463,-5463,5537,5463,5460,-3858,5462,5463,5461,-3933,3899,5464,5467,-5467,5542,5467,5464,-3876,5466,5467,5465,-3935,3960,5468,5472,-5472,5468,3853,5469,-5473,5472,5469,3987,-5471,5471,5472,5470,-3987,5474,3882,4081,-5474,5474,5473,4082,-3960,5476,3900,4083,-5476,5476,5475,4084,-3955,4106,5477,5480,-5480,5477,4105,4208,-5481,5480,4208,3223,-5479,5479,5480,5478,-4143,4107,5481,5483,-5355,5481,4106,5479,-5484,5483,5479,4142,-5483,5354,5483,5482,-4142,3905,5484,5487,-5487,5566,5487,5484,-3862,5486,5487,5485,-3957,4109,5488,5490,-5447,5488,4108,5356,-5491,5490,5356,4140,-5490,5446,5490,5489,-4140,3897,5491,5494,-5494,5557,5494,5491,-3861,5493,5494,5492,-3949,3906,5495,5498,-5498,5562,5498,5495,-3881,5497,5498,5496,-3951,3909,5499,5500,-3965,5499,3907,3963,-5501,5499,3909,4077,-5502,5499,5501,4078,-3908,5503,3864,4079,-5503,5503,5502,4078,-3911,3912,5504,5507,-5507,5503,5507,5504,-3865,5506,5507,5505,-3912,3904,5508,5509,-3914,3885,5509,5508,-3864,5510,3864,5504,-5749,5510,5748,5509,-3886,3524,4702,5514,-5514,4702,3399,5511,-5515,5514,5511,4126,-5513,5513,5514,5512,-4128,5515,3870,5432,-5774,5515,5773,5771,-3918,5517,3410,3615,-5517,5517,5516,4129,-4131,3919,5518,5519,-3970,5518,3867,3971,-5520,5520,3855,5423,-5771,5520,5770,5433,-3922,5522,3870,4103,-5522,5522,5521,4102,-3922,3922,5523,5524,-3967,5523,3869,3965,-5525,5526,3855,4101,-5526,5526,5525,4100,-3926,5527,3888,5322,-5769,5527,5768,5424,-3926,3927,5528,5529,-3969,5528,3886,3967,-5530,5531,3888,4099,-5531,5531,5530,4098,-3930,5532,3857,5460,-5767,5532,5766,5323,-3930,3930,5533,5534,-3973,5533,3872,3970,-5535,5535,3875,5464,-5765,5535,5764,5461,-3934,5537,3857,4097,-5537,5537,5536,4096,-3934,3935,5538,5539,-3975,5538,3871,3973,-5540,5540,3858,5453,-5763,5540,5762,5465,-3938,5542,3875,4095,-5542,5542,5541,4094,-3938,3938,5543,5544,-3977,5543,3874,3975,-5545,5546,3858,4093,-5546,5546,5545,4092,-3942,5547, -3895,5335,-5761,5547,5760,5454,-3942,3943,5548,5549,-3979,5548,3893,3977,-5550,5551,3895,4091,-5551,5551,5550,4090,-3946,5552,3860,5491,-5759,5552,5758,5336,-3946,3946,5553,5554,-3981,5553,3877,3979,-5555,5555,3880,5495,-5757,5555,5756,5492,-3950,5557,3860,4089,-5557,5557,5556,4088,-3950,3951,5558,5559,-3983,5558,3876,3981,-5560,5560,3861,5484,-5755,5560,5754,5496,-3954,5562,3880,4087,-5562,5562,5561,4086,-3954,3954,5563,5564,-3985,5563,3879,3983,-5565,5566,3861,4085,-5566,5566,5565,4084,-3958,5567,3902,5349,-5753,5567,5752,5485,-3958,3959,5568,5569,-3987,5568,3900,3985,-5570,5571,3902,4083,-5571,5571,5570,4082,-3962,5572,3863,5508,-5751,5572,5750,5350,-3962,5574,3962,3914,-5574,5574,5573,4128,-4128,3908,5575,5578,-5578,5575,3854,5576,-5579,5578,5576,3964,-5501,5577,5578,5500,-3964,3856,5579,5580,-5369,5579,3923,5320,-5581,5580,5320,3966,-5525,5368,5580,5524,-3966,3887,5581,5582,-5319,5581,3928,5408,-5583,5582,5408,3968,-5530,5318,5582,5529,-3968,3967,3886,5413,-5320,5413,3922,3966,-5320,3965,3869,5373,-5370,5373,3919,3969,-5370,3970,3872,5411,-5408,5411,3927,3968,-5408,3868,5583,5584,-5364,5583,3920,5370,-5585,5584,5370,3969,-5520,5363,5584,5519,-3972,3851,5585,5586,-5407,5585,3931,5377,-5587,5586,5377,3972,-5535,5406,5586,5534,-3971,3971,3867,5312,-5365,5312,3914,3962,-5365,3973,3871,5314,-5377,5314,3930,3972,-5377,3873,5587,5588,-5376,5587,3936,5382,-5589,5588,5382,3974,-5540,5375,5588,5539,-3974,3975,3874,5385,-5382,5385,3935,3974,-5382,3859,5589,5590,-5381,5589,3939,5333,-5591,5590,5333,3976,-5545,5380,5590,5544,-3976,3977,3893,5444,-5333,5444,3938,3976,-5333,3894,5591,5592,-5332,5591,3944,5439,-5593,5592,5439,3978,-5550,5331,5592,5549,-3978,3979,3877,5442,-5439,5442,3943,3978,-5439,3852,5593,5594,-5438,5593,3947,5389,-5595,5594,5389,3980,-5555,5437,5594,5554,-3980,3981,3876,5316,-5389,5316,3946,3980,-5389,3878,5595,5596,-5388,5595,3952,5394,-5597,5596,5394,3982,-5560,5387,5596,5559,-3982,3983,3879,5397,-5394,5397,3951,3982,-5394,3862,5597,5598,-5393,5597,3955,5347,-5599,5598,5347,3984,-5565,5392,5598,5564,-3984, -3985,3900,5476,-5347,5476,3954,3984,-5347,3901,5599,5600,-5346,5599,3960,5471,-5601,5600,5471,3986,-5570,5345,5600,5569,-3986,3987,3882,5474,-5471,5474,3959,3986,-5471,5469,3853,3883,-5402,5469,5401,3988,-3988,3989,3884,5404,-5401,5404,3881,3988,-5401,3865,5601,5602,-5400,5601,3908,5577,-5603,5602,5577,3963,-5360,5399,5602,5359,-3990,3399,4795,5605,-5512,4795,3553,5603,-5606,5605,5603,4125,-5605,5511,5605,5604,-4127,3915,5606,5609,-5363,5606,3990,5607,-5610,5609,5607,3991,-5609,5362,5609,5608,-3869,3868,5608,5612,-5584,5608,3991,5610,-5613,5612,5610,3992,-5612,5583,5612,5611,-3921,3920,5611,5615,-5368,5611,3992,5613,-5616,5615,5613,3993,-5615,5367,5615,5614,-3857,3856,5614,5618,-5580,5614,3993,5616,-5619,5618,5616,3994,-5618,5579,5618,5617,-3924,3923,5617,5621,-5318,5617,3994,5619,-5622,5621,5619,3995,-5621,5317,5621,5620,-3888,3887,5620,5624,-5582,5620,3995,5622,-5625,5624,5622,3996,-5624,5581,5624,5623,-3929,3928,5623,5627,-5406,5623,3996,5625,-5628,5627,5625,3997,-5627,5405,5627,5626,-3852,3851,5626,5630,-5586,5626,3997,5628,-5631,5630,5628,3998,-5630,5585,5630,5629,-3932,3931,5629,5633,-5375,5629,3998,5631,-5634,5633,5631,3999,-5633,5374,5633,5632,-3874,3873,5632,5636,-5588,5632,3999,5634,-5637,5636,5634,4000,-5636,5587,5636,5635,-3937,3936,5635,5639,-5380,5635,4000,5637,-5640,5639,5637,4001,-5639,5379,5639,5638,-3860,3859,5638,5642,-5590,5638,4001,5640,-5643,5642,5640,4002,-5642,5589,5642,5641,-3940,3939,5641,5645,-5331,5641,4002,5643,-5646,5645,5643,4003,-5645,5330,5645,5644,-3895,3894,5644,5648,-5592,5644,4003,5646,-5649,5648,5646,4004,-5648,5591,5648,5647,-3945,3944,5647,5651,-5437,5647,4004,5649,-5652,5651,5649,4005,-5651,5436,5651,5650,-3853,3852,5650,5654,-5594,5650,4005,5652,-5655,5654,5652,4006,-5654,5593,5654,5653,-3948,3947,5653,5657,-5387,5653,4006,5655,-5658,5657,5655,4007,-5657,5386,5657,5656,-3879,3878,5656,5660,-5596,5656,4007,5658,-5661,5660,5658,4008,-5660,5595,5660,5659,-3953,3952,5659,5663,-5392,5659,4008,5661,-5664,5663,5661,4009,-5663,5391,5663,5662,-3863,3862,5662,5666,-5598,5662,4009,5664, --5667,5666,5664,4010,-5666,5597,5666,5665,-3956,3955,5665,5669,-5345,5665,4010,5667,-5670,5669,5667,4011,-5669,5344,5669,5668,-3902,3901,5668,5672,-5600,5668,4011,5670,-5673,5672,5670,4012,-5672,5599,5672,5671,-3961,3960,5671,5675,-5469,5671,4012,5673,-5676,5675,5673,4013,-5675,5468,5675,5674,-3854,3883,3853,5674,-5677,5674,4013,4014,-5677,3883,5676,5679,-5399,5676,4014,5677,-5680,5679,5677,4015,-5679,5398,5679,5678,-3866,3865,5678,5682,-5602,5678,4015,5680,-5683,5682,5680,4016,-5682,5601,5682,5681,-3909,3908,5681,5685,-5576,5681,4016,5683,-5686,5685,5683,4017,-5685,5575,5685,5684,-3855,3764,5686,5690,-5690,5686,3990,5687,-5691,5690,5687,4125,-5689,5689,5690,5688,-4125,3708,5691,5692,-5080,5691,3991,5607,-5693,5692,5607,3990,-5687,5079,5692,5686,-3765,3771,5693,5694,-5292,5693,3992,5610,-5695,5694,5610,3991,-5692,5291,5694,5691,-3709,3692,5695,5696,-5085,5695,3993,5613,-5697,5696,5613,3992,-5694,5084,5696,5693,-3772,3774,5697,5698,-5288,5697,3994,5616,-5699,5698,5616,3993,-5696,5287,5698,5695,-3693,3727,5699,5700,-5047,5699,3995,5619,-5701,5700,5619,3994,-5698,5046,5700,5697,-3775,3781,5701,5702,-5290,5701,3996,5622,-5703,5702,5622,3995,-5700,5289,5702,5699,-3728,3683,5703,5704,-5123,5703,3997,5625,-5705,5704,5625,3996,-5702,5122,5704,5701,-3782,3784,5705,5706,-5294,5705,3998,5628,-5707,5706,5628,3997,-5704,5293,5706,5703,-3684,3713,5707,5708,-5092,5707,3999,5631,-5709,5708,5631,3998,-5706,5091,5708,5705,-3785,3791,5709,5710,-5296,5709,4000,5634,-5711,5710,5634,3999,-5708,5295,5710,5707,-3714,3696,5711,5712,-5097,5711,4001,5637,-5713,5712,5637,4000,-5710,5096,5712,5709,-3792,3794,5713,5714,-5298,5713,4002,5640,-5715,5714,5640,4001,-5712,5297,5714,5711,-3697,3736,5715,5716,-5056,5715,4003,5643,-5717,5716,5643,4002,-5714,5055,5716,5713,-3795,3801,5717,5718,-5300,5717,4004,5646,-5719,5718,5646,4003,-5716,5299,5718,5715,-3737,3684,5719,5720,-5141,5719,4005,5649,-5721,5720,5649,4004,-5718,5140,5720,5717,-3802,3804,5721,5722,-5302,5721,4006,5652,-5723,5722,5652,4005,-5720,5301,5722,5719,-3685,3718,5723,5724,-5104,5723,4007, -5655,-5725,5724,5655,4006,-5722,5103,5724,5721,-3805,3811,5725,5726,-5304,5725,4008,5658,-5727,5726,5658,4007,-5724,5303,5726,5723,-3719,3700,5727,5728,-5109,5727,4009,5661,-5729,5728,5661,4008,-5726,5108,5728,5725,-3812,3814,5729,5730,-5306,5729,4010,5664,-5731,5730,5664,4009,-5728,5305,5730,5727,-3701,3745,5731,5732,-5065,5731,4011,5667,-5733,5732,5667,4010,-5730,5064,5732,5729,-3815,3821,5733,5734,-5308,5733,4012,5670,-5735,5734,5670,4011,-5732,5307,5734,5731,-3746,3685,5735,5736,-5158,5735,4013,5673,-5737,5736,5673,4012,-5734,5157,5736,5733,-3822,3685,3723,5737,-5736,5737,4014,4013,-5736,3704,5738,5739,-5116,5738,4015,5677,-5740,5739,5677,4014,-5738,5115,5739,5737,-3724,3754,5740,5741,-5310,5740,4016,5680,-5742,5741,5680,4015,-5739,5309,5741,5738,-3705,3686,5742,5743,-5286,5742,4017,5683,-5744,5743,5683,4016,-5741,5285,5743,5740,-3755,5132,3765,4018,-5745,5132,5744,4119,-4118,5745,3917,5771,-5846,5745,5845,5430,-4131,5209,3730,4019,-5216,5209,5215,4020,-3779,5203,3729,4021,-5208,5203,5207,4022,-3776,5214,3728,4021,-5049,5214,5048,4020,-3783,5224,3693,4019,-5153,5224,5152,4023,-3788,5206,3691,4024,-5132,5206,5131,4022,-3778,5219,3742,4025,-5222,5219,5221,4023,-3786,5193,3732,4024,-5198,5193,5197,4026,-3769,5232,3715,4025,-5154,5232,5153,4027,-3793,5200,3710,4028,-5137,5200,5136,4026,-3773,5225,3741,4029,-5230,5225,5229,4027,-3789,5187,3733,4028,-5190,5187,5189,4018,-3766,5238,3695,4029,-5150,5238,5149,4030,-3798,5235,3738,4031,-5240,5235,5239,4030,-3796,5246,3737,4031,-5058,5246,5057,4032,-3803,5241,3739,4033,-5248,5241,5247,4032,-3799,5256,3697,4033,-5170,5256,5169,4034,-3808,5251,3751,4035,-5254,5251,5253,4034,-3806,5264,3720,4035,-5171,5264,5170,4036,-3813,5257,3750,4037,-5262,5257,5261,4036,-3809,5270,3699,4037,-5167,5270,5166,4038,-3818,5267,3747,4039,-5272,5267,5271,4038,-3816,5278,3746,4039,-5067,5278,5066,4040,-3823,5273,3748,4041,-5280,5273,5279,4040,-3819,3725,3701,4041,-4043,5074,3760,4043,-5182,5074,5181,4042,-3762,5175,3703,4043,-5181,5175,5180,4044,-3757,5176,3758,4045,-5073,5176,5072,4044,-3758,5746, -4191,3911,-5506,5746,5505,4047,-4204,5503,3910,-4048,3913,5509,5748,-5748,5747,5748,5504,-3913,3958,5350,5750,-5750,5749,5750,5508,-3905,5571,3961,5350,-5353,3956,5485,5752,-5752,5751,5752,5349,-3904,5566,3957,5485,-5488,3950,5496,5754,-5754,5753,5754,5484,-3906,5562,3953,5496,-5499,3948,5492,5756,-5756,5755,5756,5495,-3907,5557,3949,5492,-5495,3942,5336,5758,-5758,5757,5758,5491,-3898,5551,3945,5336,-5339,3940,5454,5760,-5760,5759,5760,5335,-3897,5546,3941,5454,-5457,3934,5465,5762,-5762,5761,5762,5453,-3899,5542,3937,5465,-5468,3932,5461,5764,-5764,5763,5764,5464,-3900,5537,3933,5461,-5464,3926,5323,5766,-5766,5765,5766,5460,-3891,5531,3929,5323,-5326,3924,5424,5768,-5768,5767,5768,5322,-3890,5526,3925,5424,-5427,3918,5433,5770,-5770,5769,5770,5423,-3892,5522,3921,5433,-5436,3916,5771,5773,-5773,5772,5773,5432,-3893,5775,3767,4048,-5775,5775,5774,4121,-4121,5573,3914,4049,-5777,5573,5776,4129,-4129,5196,3707,4050,-5200,5196,5199,4051,-3771,5190,3710,4050,-5038,5190,5037,4048,-3768,5198,3691,4052,-5087,5198,5086,4051,-3773,5202,3709,4052,-5206,5202,5205,4053,-3774,5208,3728,4054,-5127,5208,5126,4053,-3778,5212,3726,4054,-5214,5212,5213,4055,-3781,5216,3693,4056,-5125,5216,5124,4055,-3783,5218,3712,4056,-5224,5218,5223,4057,-3784,5222,3715,4058,-5040,5222,5039,4057,-3788,5228,3711,4058,-5232,5228,5231,4059,-3791,5230,3695,4060,-5099,5230,5098,4059,-3793,5234,3714,4060,-5238,5234,5237,4061,-3794,5240,3737,4062,-5145,5240,5144,4061,-3798,5244,3735,4062,-5246,5244,5245,4063,-3801,5248,3697,4064,-5143,5248,5142,4063,-3803,5250,3717,4064,-5256,5250,5255,4065,-3804,5254,3720,4066,-5042,5254,5041,4065,-3808,5260,3716,4066,-5264,5260,5263,4067,-3811,5262,3699,4068,-5111,5262,5110,4067,-3813,5266,3719,4068,-5270,5266,5269,4069,-3814,5272,3746,4070,-5162,5272,5161,4069,-3818,5276,3744,4070,-5278,5276,5277,4071,-3821,5280,3701,4072,-5160,5280,5159,4071,-3823,4072,4073,3721,-3723,5182,3703,4074,-5118,5182,5117,4073,-3726,5071,3724,4074,-5175,5071,5174,4075,-3754,5073,3705,4076,-5174,5073,5173,4075,-3757,5361,3910,4078,-5502,5361, -5501,4077,-3867,5358,3907,4078,-5503,5358,5502,4079,-3885,5510,3885,4080,-5404,5510,5403,4079,-3865,3881,4080,4081,-3883,5572,3961,4082,-5474,5572,5473,4081,-3864,5568,3959,4082,-5571,5568,5570,4083,-3901,5567,3957,4084,-5476,5567,5475,4083,-3903,5563,3954,4084,-5566,5563,5565,4085,-3880,5560,3953,4086,-5397,5560,5396,4085,-3862,5558,3951,4086,-5562,5558,5561,4087,-3877,5555,3949,4088,-5316,5555,5315,4087,-3881,5553,3946,4088,-5557,5553,5556,4089,-3878,5552,3945,4090,-5442,5552,5441,4089,-3861,5548,3943,4090,-5551,5548,5550,4091,-3894,5547,3941,4092,-5444,5547,5443,4091,-3896,5543,3938,4092,-5546,5543,5545,4093,-3875,5540,3937,4094,-5385,5540,5384,4093,-3859,5538,3935,4094,-5542,5538,5541,4095,-3872,5535,3933,4096,-5314,5535,5313,4095,-3876,5533,3930,4096,-5537,5533,5536,4097,-3873,5532,3929,4098,-5411,5532,5410,4097,-3858,5528,3927,4098,-5531,5528,5530,4099,-3887,5527,3925,4100,-5413,5527,5412,4099,-3889,5523,3922,4100,-5526,5523,5525,4101,-3870,5520,3921,4102,-5373,5520,5372,4101,-3856,5518,3919,4102,-5522,5518,5521,4103,-3868,5515,3917,4049,-5312,5515,5311,4103,-3871,3912,5506,5779,-5748,5506,3911,5777,-5780,5779,5777,4104,-5779,5747,5779,5778,-3914,4106,5780,5782,-5782,5780,3956,5751,-5783,5782,5751,3903,-5352,5781,5782,5351,-3959,4108,5783,5785,-5785,5783,3948,5755,-5786,5785,5755,3906,-5498,5784,5785,5497,-3951,4110,5786,5788,-5788,5786,3940,5759,-5789,5788,5759,3896,-5338,5787,5788,5337,-3943,4112,5789,5791,-5791,5789,3932,5763,-5792,5791,5763,3899,-5467,5790,5791,5466,-3935,4114,5792,5794,-5794,5792,3924,5767,-5795,5794,5767,3889,-5325,5793,5794,5324,-3927,4116,5795,5797,-5797,5795,3916,5772,-5798,5797,5772,3892,-5435,5796,5797,5434,-3919,4104,5777,5798,-4106,5777,3911,4191,-5799,4104,4105,5799,-5779,5799,3904,3913,-5779,3958,5749,5800,-5782,5749,3904,5799,-5801,5800,5799,4105,-5478,5781,5800,5477,-4107,4107,5801,5802,-5482,5801,3905,5486,-5803,5802,5486,3956,-5781,5481,5802,5780,-4107,3950,5753,5803,-5785,5753,3905,5801,-5804,5803,5801,4107,-5354,5784,5803,5353,-4109,4109,5804,5805,-5489,5804,3897,5493,-5806, -5805,5493,3948,-5784,5488,5805,5783,-4109,3942,5757,5806,-5788,5757,3897,5804,-5807,5806,5804,4109,-5446,5787,5806,5445,-4111,4111,5807,5808,-5451,5807,3898,5455,-5809,5808,5455,3940,-5787,5450,5808,5786,-4111,3934,5761,5809,-5791,5761,3898,5807,-5810,5809,5807,4111,-5340,5790,5809,5339,-4113,4113,5810,5811,-5458,5810,3890,5462,-5812,5811,5462,3932,-5790,5457,5811,5789,-4113,3926,5765,5812,-5794,5765,3890,5810,-5813,5812,5810,4113,-5415,5793,5812,5414,-4115,4115,5813,5814,-5420,5813,3891,5425,-5815,5814,5425,3924,-5793,5419,5814,5792,-4115,3918,5769,5816,-5797,5769,3891,5813,-5817,5816,5813,4115,-5816,5796,5816,5815,-4117,4116,5815,5818,-5818,5815,4115,5421,-5819,5818,5421,4133,-5328,5817,5818,5327,-4133,3446,5013,5820,-5820,5013,3409,5328,-5821,5820,5328,4133,-5421,5819,5820,5420,-4135,3404,5016,5822,-5822,5016,3446,5819,-5823,5822,5819,4134,-5417,5821,5822,5416,-4136,3459,5019,5824,-5824,5019,3404,5821,-5825,5824,5821,4135,-5459,5823,5824,5458,-4137,3414,5022,5826,-5826,5022,3459,5823,-5827,5826,5823,4136,-5342,5825,5826,5341,-4138,3456,5025,5828,-5828,5025,3414,5825,-5829,5828,5825,4137,-5452,5827,5828,5451,-4139,3405,5028,5830,-5830,5028,3456,5827,-5831,5830,5827,4138,-5448,5829,5830,5447,-4140,3467,5031,5832,-5832,5031,3405,5829,-5833,5832,5829,4139,-5490,5831,5832,5489,-4141,3223,5035,5834,-5479,5035,4207,5833,-5835,5834,5833,4141,-5483,5478,5834,5482,-4143,5836,3281,3230,-5836,5836,5835,4118,-4118,5134,3582,3281,-5837,5134,5836,4117,-4120,5744,4018,3767,-5776,5744,5775,4120,-4120,5191,3613,3239,-5136,5191,5135,4120,-4122,5774,4048,3763,-5283,5774,5282,4122,-4122,5183,3371,3253,-5193,5183,5192,4122,-4124,3823,5076,5837,-5282,5076,3764,5689,-5838,5837,5689,4124,-5185,5281,5837,5184,-4124,3553,5838,5839,-5604,5838,3225,5185,-5840,5839,5185,4124,-5689,5603,5839,5688,-4126,3990,5606,5841,-5688,5606,3915,5840,-5842,5841,5840,4126,-5605,5687,5841,5604,-4126,3915,5365,5842,-5841,5365,3962,5574,-5843,5842,5574,4127,-5513,5840,5842,5512,-4127,5843,3422,3524,-5514,5843,5513,4127,-4129,5516,3615,3422,-5844,5516,5843,4128, --4130,5776,4049,3917,-5746,5776,5745,4130,-4130,5431,5517,4130,-5431,5771,3916,5844,-5846,5845,5844,4131,-5431,4132,5428,5846,-5818,5428,4131,5844,-5847,5846,5844,3916,-5796,5817,5846,5795,-4117,4937,3312,3313,-5848,4937,5847,4144,-4144,4318,3281,3582,-4322,4318,4321,4145,-4144,4968,3314,3581,-4939,4968,4938,4145,-4147,4320,3239,3613,-4380,4320,4379,4147,-4147,4468,3310,3612,-4970,4468,4969,4147,-4149,4378,3253,3371,-4373,4378,4372,4149,-4149,3311,4265,5848,-4881,4265,3370,4469,-5849,5848,4469,4149,-4372,4880,5848,4371,-4151,3225,5838,5849,-4371,5838,3553,4797,-5850,5849,4797,4151,-4882,4370,5849,4881,-4151,3476,4801,5851,-5851,4801,3552,4882,-5852,5851,4882,4151,-4797,5850,5851,4796,-4153,3523,4550,5852,-4766,4550,3476,5850,-5853,5852,5850,4152,-4705,4765,5852,4704,-4154,4703,3524,3422,-5854,4703,5853,4154,-4154,5853,3422,3615,-4710,5853,4709,4155,-4155,4939,3478,3614,-4971,4939,4970,4155,-4157,4708,3410,4619,-4622,3477,4966,5855,-5855,5854,5855,4620,-4158,3477,5854,5856,-4991,5854,4157,4615,-5857,5856,4615,4158,-5012,4990,5856,5011,-3683,3373,4471,5857,-4182,4471,3229,4182,-5858,3420,3610,4189,-4189,3526,3470,4186,-4186,3470,3643,4187,-4187,3403,4768,5858,-4185,4768,3526,4185,-5859,3580,4876,5859,-4184,4876,3403,4184,-5860,4182,3229,4935,-5861,4935,3580,4183,-5861,3643,3420,4188,-4188,4201,4200,3825,-3756,4201,3755,4076,-3706,3686,5284,5861,-4200,5284,3825,4200,-5862,4046,3866,4193,-4193,3909,3964,4196,-4196,4077,3909,4195,-4195,4196,3964,5576,-5863,5576,3854,4197,-5863,4197,3854,5684,-5864,5684,4017,4198,-5864,4198,4017,5742,-5865,5742,3686,4199,-5865,3866,4077,4194,-4194,4172,5865,5858,-4186,4171,4172,4185,-4187,4173,4171,4186,-4188,4170,4173,4187,-4189,4169,4170,4188,-4190,4206,5866,4940,-4206,5866,4169,4189,-4941,3671,3224,5867,-4993,5867,4174,4190,-4993,4180,5868,5798,-4192,5868,3222,4105,-5799,4204,5869,5746,-4204,5869,4180,4191,-5747,4175,4176,4192,-4194,4179,4175,4193,-4195,4178,4179,4194,-4196,4177,4178,4195,-4197,5870,4177,4196,-5863,4202,3250,3642,-3303,3373,4181,4202,-3303,4203,4047,5360,-5872,5360,4046, -4192,-5872,4192,4176,5872,-5872,5872,4204,4203,-5872,4205,3611,4696,-5874,4696,3472,4190,-5874,4190,4174,5874,-5874,5874,4206,4205,-5874,3671,4667,5875,-4214,4667,3223,4210,-5876,5875,4210,3208,-3222,4213,5875,3221,-3213,4218,3207,3213,-4210,4218,4209,4105,-3223,3467,5876,5877,-5033,5876,4207,5034,-5878,5877,5034,4167,-4544,5032,5877,4543,-4167,4141,5833,5878,-5356,5833,4207,5876,-5879,5878,5876,3467,-5832,5355,5878,5831,-4141,5503,4047,5505,-5508,3611,3471,-4694,6453,6455,6479,-6455,6477,6431,6430,-6479,6476,6432,6431,-6478,6475,6433,6432,-6477,6474,6434,6433,-6476,6473,6435,6434,-6475,6471,6437,6436,-6473,6470,6438,6437,-6472,6469,6439,6438,-6471,6468,6440,6439,-6470,6472,6436,6435,-6474,6452,6456,6455,-6454,6450,6458,6457,-6452,6451,6457,6456,-6453,6478,6430,6454,-6480,6449,6459,6458,-6451,6448,6460,6459,-6450,6447,6461,6460,-6449,6446,6462,6461,-6448,6445,6463,6462,-6447,6444,6464,6463,-6446,6443,6465,6464,-6445,6442,6466,6465,-6444,6441,6467,6466,-6443,6467,6441,6440,-6469,6550,6509,6508,-6552,6551,6508,6507,-6553,6552,6507,6506,-6554,6537,6522,6521,-6539,6536,6523,6522,-6538,6535,6524,6523,-6537,6534,6525,6524,-6536,6533,6526,6525,-6535,6532,6527,6526,-6534,6531,6528,6527,-6533,6530,6529,6528,-6532,6505,6529,6530,-6555,6553,6506,6505,-6555,6538,6521,6520,-6540,6539,6520,6519,-6541,6540,6519,6518,-6542,6541,6518,6517,-6543,6542,6517,6516,-6544,6543,6516,6515,-6545,6544,6515,6514,-6546,6545,6514,6513,-6547,6546,6513,6512,-6548,6547,6512,6511,-6549,6549,6510,6509,-6551,6548,6511,6510,-6550,5880,5976,5975,-5880,5882,5978,6015,-5886,6021,5981,5980,-6023,6019,5983,5992,-6021,6018,5985,5983,-6020,6017,5987,5985,-6019,6016,5989,5987,-6018,5978,5989,6016,-6016,5992,5981,6021,-6021,6022,5980,5993,-6024,6023,5993,5995,-6025,6024,5995,5997,-6026,6025,5997,5999,-6027,6002,6027,6026,-6000,6002,6004,6028,-6028,6028,6004,6005,-6030,6029,6005,6007,-6031,6030,6007,6009,-6032,6031,6009,6011,-6033,6032,6011,6013,-6034,6033,6013,5883,-5887,6015,6034,5887,-5886,6016,6035,6034,-6016,6035,6016,6017,-6037,6036,6017,6018,-6038,6037,6018, -6019,-6039,6038,6019,6020,-6040,6021,6040,6039,-6021,6040,6021,6022,-6042,6041,6022,6023,-6043,6042,6023,6024,-6044,6043,6024,6025,-6045,6044,6025,6026,-6046,6027,6046,6045,-6027,6028,6047,6046,-6028,6047,6028,6029,-6049,6048,6029,6030,-6050,6049,6030,6031,-6051,6050,6031,6032,-6052,6051,6032,6033,-6053,6052,6033,5886,-5889,6034,5977,5881,-5888,6035,5990,5977,-6035,5988,5990,6035,-6037,5986,5988,6036,-6038,5986,6037,6038,-5985,5984,6038,6039,-5992,6040,5982,5991,-6040,5982,6040,6041,-5980,5994,5979,6041,-6043,5996,5994,6042,-6044,5998,5996,6043,-6045,6000,5998,6044,-6046,6046,6001,6000,-6046,6047,6003,6001,-6047,6006,6003,6047,-6049,6008,6006,6048,-6050,6010,6008,6049,-6051,6012,6010,6050,-6052,6014,6012,6051,-6053,5884,6014,6052,-5889,5891,5889,6053,-6073,6053,6054,6073,-6073,6054,6055,6074,-6074,6055,6056,6075,-6075,6056,6057,6076,-6076,6057,6058,6077,-6077,6058,6059,6078,-6078,6060,6079,6078,-6060,6079,6060,6061,-6081,6061,6062,6081,-6081,6062,6063,6082,-6082,6082,6063,6064,-6084,6064,6065,6084,-6084,6065,6066,6085,-6085,5890,5892,6090,-6068,6089,6068,6067,-6091,6088,6069,6068,-6090,6069,6088,6087,-6071,6086,6071,6070,-6088,6085,6066,6071,-6087,5978,5882,5891,-6073,6073,5989,5978,-6073,6074,5987,5989,-6074,6075,5985,5987,-6075,6076,5983,5985,-6076,6077,5992,5983,-6077,6078,5981,5992,-6078,6079,5980,5981,-6079,5993,5980,6079,-6081,6081,5995,5993,-6081,6082,5997,5995,-6082,5999,5997,6082,-6084,6084,6002,5999,-6084,6085,6004,6002,-6085,6005,6004,6085,-6087,6007,6005,6086,-6088,6088,6009,6007,-6088,6011,6009,6088,-6090,6013,6011,6089,-6091,5892,5883,6013,-6091,5893,6091,6053,-5890,6054,6053,6091,-6093,6092,6093,6055,-6055,6093,6094,6056,-6056,6094,6095,6057,-6057,6095,6096,6058,-6058,6059,6058,6096,-6098,6060,6059,6097,-6099,6100,6099,6065,-6065,6064,6063,6101,-6101,6063,6062,6102,-6102,6062,6061,6103,-6103,6061,6060,6098,-6104,6104,5894,5890,-6068,6105,6104,6067,-6069,6068,6069,6106,-6106,6107,6106,6069,-6071,6070,6071,6108,-6108,6109,6108,6071,-6067,6065,6099,6109,-6067,6111,5896,5895,-6111,6110,6113,6112,-6112,6113, -6115,6114,-6113,6117,6116,6163,-6163,6119,6118,6116,-6118,6121,6118,6119,-6121,6121,6120,6123,-6123,6125,6124,6122,-6124,6127,6126,6147,-6147,6129,6128,6149,-6149,6128,6129,6151,-6151,6133,6132,6130,-6132,6135,6134,6153,-6153,6137,6136,6155,-6155,6139,6138,6157,-6157,6141,6140,6138,-6140,6143,6142,6140,-6142,6145,6144,6142,-6144,5898,6144,6145,-5898,5896,6111,6160,-5901,6111,6112,6161,-6161,6147,6124,6125,-6147,6149,6126,6127,-6149,6151,6131,6130,-6151,6153,6132,6133,-6153,6155,6134,6135,-6155,6157,6136,6137,-6157,6158,6144,5898,-5900,6144,6158,6159,-6143,6160,6158,5899,-5901,6159,6158,6160,-6162,6163,6114,6115,-6163,5902,6407,6406,-5904,6165,6390,6389,-6183,6167,6383,6382,-6184,6169,6179,6185,-6185,6171,6414,6413,-6187,6173,6418,6417,-6188,6175,6177,6190,-6190,6179,6171,6186,-6186,6181,6175,6189,-6189,6405,5901,5903,-6407,6388,6164,6182,-6390,6381,6166,6183,-6383,6185,6178,6168,-6185,6186,6170,6178,-6186,6412,6170,6186,-6414,6416,6172,6187,-6418,6189,6174,6180,-6189,6190,6176,6174,-6190,6194,6293,6292,-6192,6196,6192,6193,-6196,6195,6198,6197,-6197,6198,6200,6199,-6198,5976,6199,6200,-5976,6191,6202,6201,-6195,6201,6202,6291,-6291,6204,6097,6096,-6204,6205,6098,6097,-6205,6206,6103,6098,-6206,6207,6102,6103,-6207,6207,6208,6101,-6103,6208,6209,6100,-6102,6209,6210,6099,-6101,6210,6211,6109,-6100,6211,6212,6108,-6110,6212,6213,6107,-6109,6213,6214,6106,-6108,6214,6215,6105,-6107,6215,6216,6104,-6106,6216,5904,5894,-6105,6255,6256,6268,-6244,6243,6268,6267,-6245,6244,6267,6266,-6246,6245,6266,6265,-6247,6246,6265,6264,-6248,6247,6264,6263,-6249,6248,6263,6262,-6250,6249,6262,6261,-6251,6250,6261,6280,-6280,6251,6260,6259,-6253,6254,6257,6256,-6256,6257,6254,6253,-6259,6258,6253,6252,-6260,6217,6243,6244,-6222,6221,6244,6245,-6224,6223,6245,6246,-6226,6225,6246,6247,-6228,6227,6247,6248,-6230,6229,6248,6249,-6232,6231,6249,6250,-6234,6233,6250,6279,-6279,6235,6251,6252,-6242,6253,6237,6241,-6253,6254,6240,6237,-6254,6240,6254,6255,-6221,6220,6255,6243,-6218,6257,6239,6219,-6257,6239,6257,6258,-6239,6242,6238,6258,-6260, -6260,6236,6242,-6260,6261,6234,6281,-6281,6262,6232,6234,-6262,6263,6230,6232,-6263,6264,6228,6230,-6264,6265,6226,6228,-6265,6266,6224,6226,-6266,6267,6222,6224,-6267,6268,6218,6222,-6268,6256,6219,6218,-6269,6272,6271,6270,-6274,5909,5910,6273,-6271,5906,5905,6224,-6223,6222,6218,5907,-5907,6218,6269,5908,-5908,6238,6093,6092,-6240,6091,6219,6239,-6093,6269,6091,5893,-5909,6091,6269,6218,-6220,6228,6226,5909,-6271,6271,6230,6228,-6271,6226,6224,5905,-5910,6200,6272,6273,-5976,5910,5879,5975,-6274,6272,6200,6198,-6275,6271,6272,6274,-6276,6230,6271,6275,-6233,6232,6275,6276,-6235,6275,6274,6277,-6277,6274,6198,6195,-6278,6298,6251,6235,-6300,6297,6260,6251,-6299,6296,6236,6260,-6298,6234,6276,6282,-6282,6276,6277,6283,-6283,6277,6195,6193,-6284,6295,6284,6236,-6297,6294,6285,6284,-6296,6293,6194,6285,-6295,6242,6236,6284,-6287,6286,6284,6285,-6288,6194,6201,6287,-6286,6238,6242,6286,-6289,6288,6094,6093,-6239,6287,6289,6288,-6287,6291,6203,6096,-6291,6201,6290,6289,-6288,6289,6095,6094,-6289,6095,6289,6290,-6097,6293,6193,6192,-6293,6283,6193,6293,-6295,6282,6283,6294,-6296,6281,6282,6295,-6297,6281,6296,6297,-6281,6280,6297,6298,-6280,6279,6298,6299,-6279,5897,6145,6339,-5917,6145,6143,6340,-6340,6143,6141,6338,-6341,6300,6309,5914,-5912,6301,6310,6309,-6301,6302,6311,6310,-6302,6303,6300,5911,-5913,6304,6301,6300,-6304,6305,6302,6301,-6305,6306,6303,5912,-5914,6307,6304,6303,-6307,6308,6305,6304,-6308,6309,6330,5915,-5915,6310,6331,6330,-6310,6311,6332,6331,-6311,6191,6313,6312,-6203,6313,6315,6314,-6313,6315,6317,6316,-6315,6317,6319,6318,-6317,6319,6321,6320,-6319,6321,6311,6302,-6321,6321,6333,6332,-6312,6323,6317,6315,-6323,6322,6315,6313,-6325,6324,6313,6191,-6293,6192,6325,6324,-6293,6322,6324,6325,-6327,6323,6322,6326,-6328,6327,6319,6317,-6324,6328,6321,6319,-6328,6333,6321,6328,-6335,6329,6325,6192,-6197,6330,5976,5880,-5916,6331,6199,5976,-6331,6332,6197,6199,-6332,6333,6196,6197,-6333,6329,6196,6333,-6335,6334,6328,6327,-6327,6329,6334,6326,-6326,6320,6302,6305,-6319,6305,6308,6316,-6319,6312,6335,6291, --6203,6314,6336,6335,-6313,6336,6314,6316,-6338,6337,6316,6308,-6339,6339,6306,5913,-5917,6340,6307,6306,-6340,6338,6308,6307,-6341,6139,6337,6338,-6142,6341,6336,6337,-6140,6342,6335,6336,-6342,6291,6335,6342,-6204,6156,6343,6341,-6140,6203,6342,6344,-6205,6343,6344,6342,-6342,6137,6345,6343,-6157,6344,6343,6345,-6347,6204,6344,6346,-6206,6347,6345,6137,-6155,6345,6347,6348,-6347,6349,6205,6346,-6349,6347,6351,6350,-6349,6351,6353,6352,-6351,6353,6355,6354,-6353,6355,6357,6356,-6355,6357,6359,6358,-6357,6347,6154,6135,-6352,6351,6135,6152,-6354,6133,6355,6353,-6153,6131,6357,6355,-6134,6357,6131,6151,-6360,6348,6350,6360,-6350,6362,6352,6354,-6362,6356,6363,6361,-6355,6360,6350,6352,-6363,6364,6206,6205,-6350,6366,6362,6361,-6366,6367,6360,6362,-6367,6364,6349,6360,-6368,6365,6369,6368,-6367,6366,6368,6370,-6368,6370,6371,6364,-6368,6371,6207,6206,-6365,6373,6372,6207,-6372,6371,6370,6374,-6374,6374,6370,6368,-6376,6208,6207,6372,-6377,6376,6372,6378,-6378,6171,6179,6377,-6379,6376,6377,6380,-6380,6379,6209,6208,-6377,6377,6179,6169,-6381,6184,6168,6381,-6383,6383,6169,6184,-6383,6384,6210,6209,-6380,6385,6384,6379,-6381,6383,6385,6380,-6170,6386,6211,6210,-6385,6384,6385,6387,-6387,6385,6383,6167,-6388,6183,6166,6388,-6390,6390,6167,6183,-6390,6391,6387,6167,-6391,6391,6392,6386,-6388,6211,6386,6392,-6213,6212,6392,6393,-6214,6392,6391,6394,-6394,6391,6390,6165,-6395,6182,6164,6395,-6397,6397,6165,6182,-6397,6395,6398,6399,-6397,6400,6397,6396,-6400,6215,6214,6402,-6402,6393,6402,6214,-6214,6394,6403,6402,-6394,6403,6404,6401,-6403,6397,6400,6404,-6404,6165,6397,6403,-6395,6398,6405,6406,-6400,6407,6400,6399,-6407,6401,6408,6216,-6216,6408,6401,6404,-6410,6409,6404,6400,-6408,6408,5917,5904,-6217,6409,5918,5917,-6409,5918,6409,6407,-5903,6410,6378,6372,-6374,6373,6374,6411,-6411,6187,6172,6412,-6414,6414,6173,6187,-6414,6378,6410,6414,-6172,6410,6411,6173,-6415,6375,6415,6411,-6375,6188,6180,6416,-6418,6418,6181,6188,-6418,6411,6415,6418,-6174,6375,6420,6419,-6416,6369,6420,6375,-6369,6415,6419,6181,-6419,6420,6422, -6421,-6420,6365,6424,6423,-6370,6363,6424,6365,-6362,6423,6422,6420,-6370,6421,6175,6181,-6420,6422,6426,6425,-6422,6424,6428,6427,-6424,6356,6358,6429,-6364,6425,6177,6175,-6422,6427,6426,6422,-6424,6424,6363,6429,-6429,6431,5952,5951,-6431,6432,5953,5952,-6432,6433,5954,5953,-6433,6434,5955,5954,-6434,6435,5961,5955,-6435,6436,5956,5961,-6436,6437,5957,5956,-6437,6438,5958,5957,-6438,6439,5959,5958,-6439,6440,5974,5959,-6440,6441,5960,5974,-6441,5973,5960,6441,-6443,5972,5973,6442,-6444,5971,5972,6443,-6445,5970,5971,6444,-6446,5969,5970,6445,-6447,5968,5969,6446,-6448,5967,5968,6447,-6449,5966,5967,6448,-6450,5963,5966,6449,-6451,5963,6450,6451,-5963,5964,5962,6451,-6453,5950,5964,6452,-6454,5950,6453,6454,-5966,6430,5951,5965,-6455,6456,6503,6504,-6456,6457,6502,6503,-6457,6458,6501,6502,-6458,6459,6500,6501,-6459,6460,6499,6500,-6460,6461,6498,6499,-6461,6462,6497,6498,-6462,6463,6496,6497,-6463,6464,6495,6496,-6464,6465,6494,6495,-6465,6466,6493,6494,-6466,6492,6493,6466,-6468,6480,6481,6478,-6480,6455,6504,6480,-6480,6482,6477,6478,-6482,6476,6477,6482,-6484,6475,6476,6483,-6485,6474,6475,6484,-6486,6473,6474,6485,-6487,6472,6473,6486,-6488,6471,6472,6487,-6489,6470,6471,6488,-6490,6469,6470,6489,-6491,6468,6469,6490,-6492,6492,6467,6468,-6492,6114,6163,6505,-6507,6112,6114,6506,-6508,6161,6112,6507,-6509,6159,6161,6508,-6510,6510,6142,6159,-6510,6140,6142,6510,-6512,6138,6140,6511,-6513,6157,6138,6512,-6514,6136,6157,6513,-6515,6155,6136,6514,-6516,6134,6155,6515,-6517,6153,6134,6516,-6518,6132,6153,6517,-6519,6130,6132,6518,-6520,6150,6130,6519,-6521,6128,6150,6520,-6522,6149,6128,6521,-6523,6523,6126,6149,-6523,6524,6147,6126,-6524,6525,6124,6147,-6525,6526,6122,6124,-6526,6527,6121,6122,-6527,6528,6118,6121,-6528,6529,6116,6118,-6529,6505,6163,6116,-6530,6484,6530,6531,-6486,6485,6531,6532,-6487,6486,6532,6533,-6488,6487,6533,6534,-6489,6488,6534,6535,-6490,6489,6535,6536,-6491,6490,6536,6537,-6492,6491,6537,6538,-6493,6492,6538,6539,-6494,6493,6539,6540,-6495,6494,6540,6541,-6496,6495,6541,6542,-6497,6496, -6542,6543,-6498,6497,6543,6544,-6499,6498,6544,6545,-6500,6499,6545,6546,-6501,6500,6546,6547,-6502,6501,6547,6548,-6503,6502,6548,6549,-6504,6503,6549,6550,-6505,6504,6550,6551,-6481,6480,6551,6552,-6482,6481,6552,6553,-6483,6482,6553,6554,-6484,6530,6484,6483,-6555,5919,6555,6110,-5896,6113,6110,6555,-6557,6115,6113,6556,-6558,6162,6115,6557,-6559,6117,6162,6558,-6560,6119,6117,6559,-6561,6119,6560,6561,-6121,6120,6561,6562,-6124,6123,6562,6563,-6126,6125,6563,6564,-6147,6565,6127,6146,-6565,6127,6565,6566,-6149,6566,6567,6129,-6149,6359,6151,6129,-6568,6665,6570,6569,-6667,6569,6573,6667,-6667,6573,6575,6668,-6668,6575,6657,6669,-6669,6577,6662,6671,-6671,6579,6581,6673,-6673,6581,6652,6674,-6674,6583,6585,6676,-6676,6585,6587,6677,-6677,6587,6589,6678,-6678,6589,6591,6679,-6679,6591,6593,6680,-6680,6593,6595,6681,-6681,6595,6597,6682,-6682,6597,6599,6683,-6683,6571,6600,6601,-6569,6602,6572,6568,-6602,6603,6574,6572,-6603,6655,6574,6603,-6657,6660,6576,6604,-6662,6606,6580,6578,-6606,6650,6580,6606,-6652,6608,6584,6582,-6608,6609,6586,6584,-6609,6610,6588,6586,-6610,6611,6590,6588,-6611,6612,6592,6590,-6612,6613,6594,6592,-6613,6614,6596,6594,-6614,6615,6598,6596,-6615,6633,6617,6616,-6635,6634,6616,6618,-6636,6618,6619,6636,-6636,6619,6659,6658,-6637,6620,6664,6663,-6638,6621,6622,6639,-6639,6622,6654,6653,-6640,6623,6624,6641,-6641,6624,6625,6642,-6642,6625,6626,6643,-6643,6626,6627,6644,-6644,6627,6628,6645,-6645,6628,6629,6646,-6646,6629,6630,6647,-6647,6631,6648,6647,-6631,6648,6631,6685,-6685,6686,6633,6634,-6688,6687,6634,6635,-6689,6636,6689,6688,-6636,6689,6636,6658,-6691,6691,6637,6663,-6693,6639,6694,6693,-6639,6694,6639,6653,-6696,6641,6697,6696,-6641,6642,6698,6697,-6642,6643,6699,6698,-6643,6644,6700,6699,-6644,6645,6701,6700,-6645,6646,6702,6701,-6646,6647,6703,6702,-6647,6648,6704,6703,-6648,6704,6648,6684,-6706,6607,6582,6650,-6652,6652,6583,6675,-6675,6640,6696,6695,-6654,6654,6623,6640,-6654,6604,6576,6655,-6657,6657,6577,6670,-6670,6637,6691,6690,-6659,6659,6620,6637,-6659,6605,6578,6660,-6662, -6662,6579,6672,-6672,6638,6693,6692,-6664,6664,6621,6638,-6664,6600,6665,6666,-6602,6667,6602,6601,-6667,6668,6603,6602,-6668,6669,6656,6603,-6669,6670,6604,6656,-6670,6671,6661,6604,-6671,6672,6605,6661,-6672,6673,6606,6605,-6673,6674,6651,6606,-6674,6675,6607,6651,-6675,6676,6608,6607,-6676,6677,6609,6608,-6677,6678,6610,6609,-6678,6679,6611,6610,-6679,6680,6612,6611,-6680,6681,6613,6612,-6681,6682,6614,6613,-6682,6683,6615,6614,-6683,6684,6649,6706,-6706,6570,6686,6687,-6570,6569,6687,6688,-6574,6689,6575,6573,-6689,6657,6575,6689,-6691,6691,6577,6657,-6691,6662,6577,6691,-6693,6693,6579,6662,-6693,6694,6581,6579,-6694,6652,6581,6694,-6696,6696,6583,6652,-6696,6697,6585,6583,-6697,6698,6587,6585,-6698,6699,6589,6587,-6699,6700,6591,6589,-6700,6701,6593,6591,-6701,6702,6595,6593,-6702,6703,6597,6595,-6703,6704,6599,6597,-6704,6599,6704,6705,-6684,6706,6615,6683,-6706,6598,6615,6706,-6650,6707,6598,6649,-6633,6598,6707,6708,-6597,6709,6594,6596,-6709,6709,6710,6592,-6595,6590,6592,6710,-6712,6712,6588,6590,-6712,6586,6588,6712,-6714,6584,6586,6713,-6715,6716,6715,6650,-6583,6582,6584,6714,-6717,6715,6717,6580,-6651,6578,6580,6717,-6661,6576,6660,6717,-6656,6655,6717,6718,-6575,6719,6572,6574,-6719,6720,6568,6572,-6720,6721,6571,6568,-6721,6718,6717,6715,-6723,6723,6722,6715,-6717,6724,6723,6716,-6715,6713,6725,6724,-6715,6712,6726,6725,-6714,6726,6712,6711,-6728,6728,6727,6711,-6711,6729,6719,6718,-6723,6720,6719,6729,-6731,6730,6729,6722,-6724,6730,6731,6721,-6721,6731,6730,6723,-6725,6732,6731,6724,-6726,6732,6725,6726,-6728,6733,6721,6731,-6733,6727,6728,6733,-6733,6571,6721,6733,-6735,6734,6733,6728,-6736,6728,6710,6709,-6736,6736,6735,6709,-6709,6734,6737,6600,-6572,6735,6736,6737,-6735,6737,6738,6665,-6601,6738,6737,6736,-6740,6743,6742,6741,-6741,6740,6741,6745,-6745,6747,6746,6742,-6744,6747,6739,6707,-6747,6742,6746,6745,-6742,6740,6744,6747,-6744,6744,6738,6739,-6748,6738,6744,6570,-6666,6744,6745,6686,-6571,6746,6749,6748,-6746,6745,6748,6633,-6687,6707,6632,6749,-6747,6707,6739,6736,-6709,6176,6190,6763, --6763,6427,6428,6756,-6756,6754,6426,6427,-6756,6617,6633,6748,-6751,6756,6428,6429,-6758,6359,6567,6751,-6359,6752,6751,6567,-6567,6759,6751,6752,-6761,6566,6565,6753,-6753,6760,6752,6753,-6762,6749,6632,6754,-6756,6756,6748,6749,-6756,6750,6748,6756,-6758,6757,6429,6358,-6759,6617,6750,6759,-6761,6616,6617,6760,-6762,6358,6751,6759,-6759,6750,6757,6758,-6760,6763,6685,6631,-6763,6765,6764,6177,-6426,6763,6190,6177,-6765,6425,6426,6754,-6766,6632,6766,6765,-6755,6764,6765,6766,-6768,6763,6764,6767,-6686,6684,6685,6767,-6767,6766,6632,6649,-6685,6762,6631,6630,-6769,6176,6762,6768,-6770,6768,6630,6629,-6771,6769,6768,6770,-6772,6628,6772,6770,-6630,6771,6770,6772,-6774,6627,6774,6772,-6629,6774,6775,6773,-6773,6626,6776,6774,-6628,6777,6775,6774,-6777,6779,6777,6776,-6779,6625,6778,6776,-6627,6624,6780,6778,-6626,6781,6779,6778,-6781,6623,6782,6780,-6625,6780,6782,6783,-6782,6785,6783,6782,-6785,6623,6654,6784,-6783,6785,6784,6787,-6787,6622,6787,6784,-6655,6621,6788,6787,-6623,6790,6619,6618,-6790,6791,6659,6619,-6791,6659,6791,6792,-6621,6620,6792,6793,-6665,6664,6793,6788,-6622,6761,6789,6618,-6617,6789,6761,6753,-6795,6794,6795,6790,-6790,6795,6796,6791,-6791,6796,6797,6792,-6792,6797,6798,6793,-6793,6798,6799,6788,-6794,6799,6786,6787,-6789,6565,6564,6794,-6754,6794,6564,6563,-6801,6562,6801,6800,-6564,6561,6802,6801,-6563,6560,6803,6802,-6562,6559,6804,6803,-6561,6558,6805,6804,-6560,6557,6806,6805,-6559,6556,6807,6806,-6558,6555,6808,6807,-6557,5919,5920,6808,-6556,5922,5921,6809,-6819,6818,6809,6810,-6820,6819,6810,6811,-6821,6820,6811,6812,-6822,6821,6812,6813,-6823,6822,6813,6814,-6824,6823,6814,6815,-6825,6824,6815,6816,-6826,6825,6816,6817,-6827,5920,5922,6818,-6809,6808,6818,6819,-6808,6807,6819,6820,-6807,6806,6820,6821,-6806,6805,6821,6822,-6805,6804,6822,6823,-6804,6803,6823,6824,-6803,6802,6824,6825,-6802,6801,6825,6826,-6801,6795,6794,6800,-6827,6826,6817,6796,-6796,6797,6796,6817,-6828,6827,6817,6816,-6829,6815,6829,6828,-6817,6815,6814,6830,-6830,6814,6813,6831,-6831,6832,6831,6813,-6813,6812,6811, -6833,-6833,6811,6810,6834,-6834,6810,6809,6835,-6835,6809,5921,5923,-6836,6777,6837,6836,-6776,6837,6845,6844,-6837,6839,6843,6842,-6839,6841,6924,6923,-6841,6843,6841,6840,-6843,6845,6839,6838,-6845,6846,6925,6924,-6842,6847,6846,6841,-6844,6843,6839,6848,-6848,6849,6850,6845,-6838,6850,6848,6839,-6846,6777,6779,6849,-6838,6925,6846,6851,-6927,6846,6847,6852,-6852,6847,6848,6853,-6853,6848,6850,6854,-6854,6849,6855,6854,-6851,6779,6781,6855,-6850,6926,6851,6856,-6928,6857,6856,6851,-6853,6852,6853,6858,-6858,6859,6858,6853,-6855,6859,6854,6855,-6861,6860,6855,6781,-6784,6927,6856,6861,-6929,6856,6857,6862,-6862,6857,6858,6863,-6863,6858,6859,6864,-6864,6860,6865,6864,-6860,6783,6785,6865,-6861,6928,6861,6866,-6930,6861,6862,6867,-6867,6862,6863,6868,-6868,6863,6864,6869,-6869,6865,6870,6869,-6865,6785,6786,6870,-6866,6929,6866,6871,-6931,6872,6871,6866,-6868,6867,6868,6873,-6873,6868,6869,6874,-6874,6869,6870,6875,-6875,6870,6786,6799,-6876,6930,6871,6876,-6932,6871,6872,6877,-6877,6872,6873,6878,-6878,6873,6874,6879,-6879,6874,6875,6880,-6880,6875,6799,6798,-6881,6827,6880,6798,-6798,6879,6880,6827,-6882,6931,6876,6882,-6933,6876,6877,6883,-6883,6877,6878,6884,-6884,6878,6879,6881,-6885,6885,6828,6829,-6887,6829,6830,6887,-6887,6883,6884,6885,-6887,6887,6882,6883,-6887,6881,6827,6885,-6885,6827,6828,-6886,6889,6902,6901,-6889,6890,6903,6902,-6890,6903,6890,6891,-6905,6904,6891,6892,-6906,6905,6892,6893,-6907,6906,6893,6894,-6908,6907,6894,6895,-6909,6908,6895,6896,-6910,6909,6896,6897,-6911,6775,6836,6898,-6774,6899,6771,6773,-6899,6771,6899,6900,-6770,6176,6769,6900,-6175,6902,5925,5924,-6902,6903,5926,5925,-6903,5926,6903,6904,-5928,5927,6904,6905,-5929,5928,6905,6906,-5930,5929,6906,6907,-5931,5930,6907,6908,-5932,5931,6908,6909,-5933,5932,6909,6910,-5934,6912,6936,6935,-6912,6913,6937,6936,-6913,6937,6913,6914,-6939,6938,6914,6915,-6940,6939,6915,6916,-6941,6940,6916,6917,-6942,6941,6917,6918,-6943,6942,6918,6919,-6944,6943,6919,6920,-6945,5934,6921,6835,-5924,6921,5934,5933,-6911,6921,6922,6834,-6836,6922,6921, -6910,-6898,6924,6912,6911,-6924,6925,6913,6912,-6925,6913,6925,6926,-6915,6914,6926,6927,-6916,6915,6927,6928,-6917,6916,6928,6929,-6918,6917,6929,6930,-6919,6918,6930,6931,-6920,6919,6931,6932,-6921,6887,6933,6932,-6883,6830,6831,6933,-6888,6933,6934,6920,-6933,6934,6933,6831,-6833,6936,6889,6888,-6936,6937,6890,6889,-6937,6890,6937,6938,-6892,6891,6938,6939,-6893,6892,6939,6940,-6894,6893,6940,6941,-6895,6894,6941,6942,-6896,6895,6942,6943,-6897,6896,6943,6944,-6898,6922,6945,6833,-6835,6945,6934,6832,-6834,6934,6945,6944,-6921,6897,6944,6945,-6923,5935,6946,6901,-5925,6946,6947,6888,-6902,6947,6948,6935,-6889,6948,6949,6911,-6936,6923,6911,6949,-6951,6950,6951,6840,-6924,6842,6840,6951,-6953,6952,6953,6838,-6843,6844,6838,6953,-6955,6836,6844,6954,-6899,7098,6956,6955,-7100,7097,6957,6956,-7099,7096,6958,6957,-7098,7095,6959,6958,-7097,7094,6960,6959,-7096,7093,6961,6960,-7095,7092,6962,6961,-7094,7091,6963,6962,-7093,7090,6964,6963,-7092,5946,5936,6964,-7091,7099,6955,6965,-7101,7100,6965,6966,-7102,7101,6966,6967,-7103,7102,6967,6968,-7104,7103,6968,6969,-7105,7104,6969,6970,-7106,7105,6970,6971,-7107,7106,6971,6972,-7108,7107,6972,6973,-7109,7108,6973,6974,-7110,7109,6974,6975,-7111,7110,6975,6976,-7112,7111,6976,6977,-7113,7112,6977,6978,-7114,7113,6978,6979,-7115,7114,6979,6980,-7116,7115,6980,6981,-7117,7116,6981,5937,-5948,5940,5938,6982,-7010,7009,6982,6983,-7011,7010,6983,6984,-7012,7011,6984,6985,-7013,7012,6985,6986,-7014,7013,6986,6987,-7015,7014,6987,6988,-7016,7015,6988,6989,-7017,7016,6989,6990,-7018,7017,6990,6991,-7019,7018,6991,6992,-7020,7019,6992,6993,-7021,7020,6993,6994,-7022,7021,6994,6995,-7023,7022,6995,6996,-7024,7023,6996,6997,-7025,7024,6997,6998,-7026,7025,6998,6999,-7027,7026,6999,7000,-7028,7027,7000,7001,-7029,7028,7001,7002,-7030,7029,7002,7003,-7031,7030,7003,7004,-7032,7031,7004,7005,-7033,7032,7005,7006,-7034,7033,7006,7007,-7035,7034,7007,7008,-7036,7035,7008,5939,-5942,5935,5940,7009,-6947,6946,7009,7010,-6948,6947,7010,7011,-6949,6948,7011,7012,-6950,6949,7012,7013,-6951,6950, -7013,7014,-6952,6951,7014,7015,-6953,6952,7015,7016,-6954,6953,7016,7017,-6955,6954,7017,7018,-6899,6898,7018,7019,-6900,6899,7019,7020,-6901,6900,7020,7021,-6175,6174,7021,7022,-6181,6180,7022,7023,-6417,6416,7023,7024,-6173,6172,7024,7025,-6413,6412,7025,7026,-6171,6170,7026,7027,-6179,6178,7027,7028,-6169,6168,7028,7029,-6382,6381,7029,7030,-6167,6166,7030,7031,-6389,6388,7031,7032,-6165,6164,7032,7033,-6396,6395,7033,7034,-6399,6398,7034,7035,-6406,6405,7035,5941,-5902,5948,5942,7036,-7118,7117,7036,7037,-7119,7118,7037,7038,-7120,7119,7038,7039,-7121,7120,7039,7040,-7122,7121,7040,7041,-7123,7122,7041,7042,-7124,7123,7042,7043,-7125,7124,7043,7044,-7126,7125,7044,7045,-7127,7126,7045,7046,-7128,7127,7046,7047,-7129,7128,7047,7048,-7130,7129,7048,7049,-7131,7130,7049,7050,-7132,7131,7050,7051,-7133,7132,7051,7052,-7134,7133,7052,7053,-7135,7134,7053,7054,-7136,7135,7054,7055,-7137,7136,7055,7056,-7138,7137,7056,7057,-7139,7138,7057,7058,-7140,7139,7058,7059,-7141,7140,7059,7060,-7142,7141,7060,7061,-7143,7142,7061,7062,-7144,7143,7062,5943,-5950,5942,5944,7063,-7037,7036,7063,7064,-7038,7037,7064,7065,-7039,7038,7065,7066,-7040,7039,7066,7067,-7041,7040,7067,7068,-7042,7041,7068,7069,-7043,7042,7069,7070,-7044,7043,7070,7071,-7045,7044,7071,7072,-7046,7045,7072,7073,-7047,7046,7073,7074,-7048,7047,7074,7075,-7049,7048,7075,7076,-7050,7049,7076,7077,-7051,7050,7077,7078,-7052,7051,7078,7079,-7053,7052,7079,7080,-7054,7053,7080,7081,-7055,7054,7081,7082,-7056,7055,7082,7083,-7057,7056,7083,7084,-7058,7057,7084,7085,-7059,7058,7085,7086,-7060,7059,7086,7087,-7061,7060,7087,7088,-7062,7061,7088,7089,-7063,7062,7089,5945,-5944,5944,5946,7090,-7064,7063,7090,7091,-7065,7064,7091,7092,-7066,7065,7092,7093,-7067,7066,7093,7094,-7068,7067,7094,7095,-7069,7068,7095,7096,-7070,7069,7096,7097,-7071,7070,7097,7098,-7072,7071,7098,7099,-7073,7072,7099,7100,-7074,7073,7100,7101,-7075,7074,7101,7102,-7076,7075,7102,7103,-7077,7076,7103,7104,-7078,7077,7104,7105,-7079,7078,7105,7106,-7080,7079,7106,7107,-7081,7080,7107,7108,-7082, -7081,7108,7109,-7083,7082,7109,7110,-7084,7083,7110,7111,-7085,7084,7111,7112,-7086,7085,7112,7113,-7087,7086,7113,7114,-7088,7087,7114,7115,-7089,7088,7115,7116,-7090,7089,7116,5947,-5946,5938,5948,7117,-6983,6982,7117,7118,-6984,6983,7118,7119,-6985,6984,7119,7120,-6986,6985,7120,7121,-6987,6986,7121,7122,-6988,6987,7122,7123,-6989,6988,7123,7124,-6990,6989,7124,7125,-6991,6990,7125,7126,-6992,6991,7126,7127,-6993,6992,7127,7128,-6994,6993,7128,7129,-6995,6994,7129,7130,-6996,6995,7130,7131,-6997,6996,7131,7132,-6998,6997,7132,7133,-6999,6998,7133,7134,-7000,6999,7134,7135,-7001,7000,7135,7136,-7002,7001,7136,7137,-7003,7002,7137,7138,-7004,7003,7138,7139,-7005,7004,7139,7140,-7006,7005,7140,7141,-7007,7006,7141,7142,-7008,7007,7142,7143,-7009,7008,7143,5949,-5940,6229,7145,7144,-6228,6231,7146,7145,-6230,6233,7147,7146,-6232,6278,7148,7147,-6234,6299,7149,7148,-6279,6227,7144,7150,-6226,6225,7150,7151,-6224,6223,7151,7152,-6222,6221,7152,7153,-6218,6217,7153,7154,-6221,6220,7154,7155,-6241,6240,7155,7156,-6238,6237,7156,7157,-6242,6241,7157,7158,-6236,6299,6235,7158,-7150,7145,7146,7160,-7160,7161,7160,7146,-7148,7162,7161,7147,-7149,7156,7155,7160,-7162,7161,7162,7157,-7157,7155,7154,7159,-7161,7159,7163,7144,-7146,7154,7153,7163,-7160,7151,7163,7153,-7153,7150,7144,7163,-7152,7149,7158,7157,-7163,7162,7148,-7150,5977,7186,7185,-5882,5979,7193,7192,-5983,5991,7191,7190,-5985,5984,7190,7189,-5987,5986,7189,7188,-5989,5988,7188,7187,-5991,5990,7187,7186,-5978,5982,7192,7191,-5992,5994,7194,7193,-5980,5996,7195,7194,-5995,5998,7196,7195,-5997,6000,7197,7196,-5999,6001,7198,7197,-6001,6003,7199,7198,-6002,6006,7200,7199,-6004,6008,7201,7200,-6007,6010,7202,7201,-6009,6012,7203,7202,-6011,6014,7204,7203,-6013,5884,7205,7204,-6015,7186,7207,7206,-7186,7187,7208,7207,-7187,7188,7209,7208,-7188,7189,7210,7209,-7189,7190,7211,7210,-7190,7191,7212,7211,-7191,7192,7213,7212,-7192,7193,7214,7213,-7193,7194,7215,7214,-7194,7195,7216,7215,-7195,7196,7217,7216,-7196,7197,7218,7217,-7197,7198,7219,7218,-7198,7199,7220,7219,-7199, -7200,7221,7220,-7200,7201,7222,7221,-7201,7202,7223,7222,-7202,7203,7224,7223,-7203,7204,7225,7224,-7204,7205,7226,7225,-7205,7207,7166,7164,-7207,7208,7173,7166,-7208,7209,7172,7173,-7209,7210,7171,7172,-7210,7211,7169,7171,-7211,7212,7170,7169,-7212,7213,7167,7170,-7213,7214,7168,7167,-7214,7215,7174,7168,-7215,7216,7175,7174,-7216,7217,7176,7175,-7217,7218,7177,7176,-7218,7219,7178,7177,-7219,7220,7179,7178,-7220,7221,7180,7179,-7221,7222,7181,7180,-7222,7223,7182,7181,-7223,7224,7183,7182,-7224,7225,7184,7183,-7225,7226,7165,7184,-7226,7166,7228,7227,-7165,7168,7230,7229,-7168,7170,7232,7231,-7170,7169,7231,7233,-7172,7171,7233,7234,-7173,7172,7234,7235,-7174,7173,7235,7228,-7167,7167,7229,7232,-7171,7174,7236,7230,-7169,7175,7237,7236,-7175,7176,7238,7237,-7176,7177,7239,7238,-7177,7178,7240,7239,-7178,7179,7241,7240,-7179,7180,7242,7241,-7180,7181,7243,7242,-7181,7182,7244,7243,-7182,7183,7245,7244,-7183,7184,7246,7245,-7184,7165,7247,7246,-7185,7228,7312,7311,-7228,7230,7319,7318,-7230,7232,7317,7316,-7232,7231,7316,7315,-7234,7233,7315,7314,-7235,7234,7314,7313,-7236,7235,7313,7312,-7229,7229,7318,7317,-7233,7236,7320,7319,-7231,7237,7321,7320,-7237,7238,7322,7321,-7238,7239,7323,7322,-7239,7240,7324,7323,-7240,7241,7325,7324,-7241,7242,7326,7325,-7242,7243,7327,7326,-7243,7244,7328,7327,-7244,7245,7329,7328,-7245,7246,7330,7329,-7246,7247,7331,7330,-7247,7249,7291,7290,-7249,7251,7298,7297,-7251,7253,7296,7295,-7253,7252,7295,7294,-7255,7254,7294,7293,-7256,7255,7293,7292,-7257,7256,7292,7291,-7250,7250,7297,7296,-7254,7257,7299,7298,-7252,7258,7300,7299,-7258,7259,7301,7300,-7259,7260,7302,7301,-7260,7261,7303,7302,-7261,7262,7304,7303,-7262,7263,7305,7304,-7263,7264,7306,7305,-7264,7265,7307,7306,-7265,7266,7308,7307,-7266,7267,7309,7308,-7267,7268,7310,7309,-7268,7291,7270,7269,-7291,7292,7277,7270,-7292,7293,7276,7277,-7293,7294,7275,7276,-7294,7295,7273,7275,-7295,7296,7274,7273,-7296,7297,7271,7274,-7297,7298,7272,7271,-7298,7299,7278,7272,-7299,7300,7279,7278,-7300,7301,7280,7279,-7301,7302,7281,7280, --7302,7303,7282,7281,-7303,7304,7283,7282,-7304,7305,7284,7283,-7305,7306,7285,7284,-7306,7307,7286,7285,-7307,7308,7287,7286,-7308,7309,7288,7287,-7309,7310,7289,7288,-7310,7312,7249,7248,-7312,7313,7256,7249,-7313,7314,7255,7256,-7314,7315,7254,7255,-7315,7316,7252,7254,-7316,7317,7253,7252,-7317,7318,7250,7253,-7318,7319,7251,7250,-7319,7320,7257,7251,-7320,7321,7258,7257,-7321,7322,7259,7258,-7322,7323,7260,7259,-7323,7324,7261,7260,-7324,7325,7262,7261,-7325,7326,7263,7262,-7326,7327,7264,7263,-7327,7328,7265,7264,-7328,7329,7266,7265,-7329,7330,7267,7266,-7330,7331,7268,7267,-7331,7835,7836,7861,-7838,7859,7860,7812,-7814,7858,7859,7813,-7815,7857,7858,7814,-7816,7856,7857,7815,-7817,7855,7856,7816,-7818,7853,7854,7818,-7820,7852,7853,7819,-7821,7851,7852,7820,-7822,7850,7851,7821,-7823,7854,7855,7817,-7819,7834,7835,7837,-7839,7832,7833,7839,-7841,7833,7834,7838,-7840,7860,7861,7836,-7813,7831,7832,7840,-7842,7830,7831,7841,-7843,7829,7830,7842,-7844,7828,7829,7843,-7845,7827,7828,7844,-7846,7826,7827,7845,-7847,7825,7826,7846,-7848,7824,7825,7847,-7849,7823,7824,7848,-7850,7849,7850,7822,-7824,7932,7933,7890,-7892,7933,7934,7889,-7891,7934,7935,7888,-7890,7919,7920,7903,-7905,7918,7919,7904,-7906,7917,7918,7905,-7907,7916,7917,7906,-7908,7915,7916,7907,-7909,7914,7915,7908,-7910,7913,7914,7909,-7911,7912,7913,7910,-7912,7887,7936,7912,-7912,7935,7936,7887,-7889,7920,7921,7902,-7904,7921,7922,7901,-7903,7922,7923,7900,-7902,7923,7924,7899,-7901,7924,7925,7898,-7900,7925,7926,7897,-7899,7926,7927,7896,-7898,7927,7928,7895,-7897,7928,7929,7894,-7896,7929,7930,7893,-7895,7931,7932,7891,-7893,7930,7931,7892,-7894,5880,5879,7357,-7359,5882,5885,7397,-7361,7403,7404,7362,-7364,7401,7402,7374,-7366,7400,7401,7365,-7368,7399,7400,7367,-7370,7398,7399,7369,-7372,7360,7397,7398,-7372,7374,7402,7403,-7364,7404,7405,7375,-7363,7405,7406,7377,-7376,7406,7407,7379,-7378,7407,7408,7381,-7380,7384,7381,7408,-7410,7384,7409,7410,-7387,7410,7411,7387,-7387,7411,7412,7389,-7388,7412,7413,7391,-7390,7413,7414,7393,-7392,7414,7415, -7395,-7394,7415,5886,5883,-7396,7397,5885,5887,-7417,7398,7397,7416,-7418,7417,7418,7399,-7399,7418,7419,7400,-7400,7419,7420,7401,-7401,7420,7421,7402,-7402,7403,7402,7421,-7423,7422,7423,7404,-7404,7423,7424,7405,-7405,7424,7425,7406,-7406,7425,7426,7407,-7407,7426,7427,7408,-7408,7409,7408,7427,-7429,7410,7409,7428,-7430,7429,7430,7411,-7411,7430,7431,7412,-7412,7431,7432,7413,-7413,7432,7433,7414,-7414,7433,7434,7415,-7415,7434,5888,5886,-7416,7416,5887,5881,-7360,7417,7416,7359,-7373,7370,7418,7417,-7373,7368,7419,7418,-7371,7368,7366,7420,-7420,7366,7373,7421,-7421,7422,7421,7373,-7365,7364,7361,7423,-7423,7376,7424,7423,-7362,7378,7425,7424,-7377,7380,7426,7425,-7379,7382,7427,7426,-7381,7428,7427,7382,-7384,7429,7428,7383,-7386,7388,7430,7429,-7386,7390,7431,7430,-7389,7392,7432,7431,-7391,7394,7433,7432,-7393,7396,7434,7433,-7395,5884,5888,7434,-7397,5891,7454,7435,-5890,7435,7454,7455,-7437,7436,7455,7456,-7438,7437,7456,7457,-7439,7438,7457,7458,-7440,7439,7458,7459,-7441,7440,7459,7460,-7442,7442,7441,7460,-7462,7461,7462,7443,-7443,7443,7462,7463,-7445,7444,7463,7464,-7446,7464,7465,7446,-7446,7446,7465,7466,-7448,7447,7466,7467,-7449,5890,7449,7472,-5893,7471,7472,7449,-7451,7470,7471,7450,-7452,7451,7452,7469,-7471,7468,7469,7452,-7454,7467,7468,7453,-7449,7360,7454,5891,-5883,7455,7454,7360,-7372,7456,7455,7371,-7370,7457,7456,7369,-7368,7458,7457,7367,-7366,7459,7458,7365,-7375,7460,7459,7374,-7364,7461,7460,7363,-7363,7375,7462,7461,-7363,7463,7462,7375,-7378,7464,7463,7377,-7380,7381,7465,7464,-7380,7466,7465,7381,-7385,7467,7466,7384,-7387,7387,7468,7467,-7387,7389,7469,7468,-7388,7470,7469,7389,-7392,7393,7471,7470,-7392,7395,7472,7471,-7394,5892,7472,7395,-5884,5893,5889,7435,-7474,7436,7474,7473,-7436,7474,7436,7437,-7476,7475,7437,7438,-7477,7476,7438,7439,-7478,7477,7439,7440,-7479,7441,7479,7478,-7441,7442,7480,7479,-7442,7482,7446,7447,-7482,7446,7482,7483,-7446,7445,7483,7484,-7445,7444,7484,7485,-7444,7443,7485,7480,-7443,7486,7449,5890,-5895,7487,7450,7449,-7487,7450,7487,7488,-7452,7489, -7452,7451,-7489,7452,7489,7490,-7454,7491,7448,7453,-7491,7447,7448,7491,-7482,7493,7492,5895,-5897,7492,7493,7494,-7496,7495,7494,7496,-7498,7499,7544,7545,-7499,7501,7499,7498,-7501,7503,7502,7501,-7501,7503,7504,7505,-7503,7507,7505,7504,-7507,7509,7528,7529,-7509,7511,7530,7531,-7511,7510,7532,7533,-7512,7515,7513,7512,-7515,7517,7534,7535,-7517,7519,7536,7537,-7519,7521,7538,7539,-7521,7523,7521,7520,-7523,7525,7523,7522,-7525,7527,7525,7524,-7527,5898,5897,7527,-7527,5896,5900,7542,-7494,7493,7542,7543,-7495,7529,7528,7507,-7507,7531,7530,7509,-7509,7533,7532,7512,-7514,7535,7534,7515,-7515,7537,7536,7517,-7517,7539,7538,7519,-7519,7540,5899,5898,-7527,7526,7524,7541,-7541,7542,5900,5899,-7541,7541,7543,7542,-7541,7545,7544,7497,-7497,5902,5903,7788,-7790,7547,7564,7771,-7773,7549,7565,7764,-7766,7551,7566,7567,-7562,7553,7568,7795,-7797,7555,7569,7799,-7801,7557,7571,7572,-7560,7561,7567,7568,-7554,7563,7570,7571,-7558,7787,7788,5903,-5902,7770,7771,7564,-7547,7763,7764,7565,-7549,7567,7566,7550,-7561,7568,7567,7560,-7553,7794,7795,7568,-7553,7798,7799,7569,-7555,7571,7570,7562,-7557,7572,7571,7556,-7559,7576,7573,7674,-7676,7578,7577,7575,-7575,7577,7578,7579,-7581,7580,7579,7581,-7583,7358,7357,7582,-7582,7573,7576,7583,-7585,7583,7672,7673,-7585,7586,7585,7478,-7480,7587,7586,7479,-7481,7588,7587,7480,-7486,7589,7588,7485,-7485,7589,7484,7483,-7591,7590,7483,7482,-7592,7591,7482,7481,-7593,7592,7481,7491,-7594,7593,7491,7490,-7595,7594,7490,7489,-7596,7595,7489,7488,-7597,7596,7488,7487,-7598,7597,7487,7486,-7599,7598,7486,5894,-5905,7637,7625,7650,-7639,7625,7626,7649,-7651,7626,7627,7648,-7650,7627,7628,7647,-7649,7628,7629,7646,-7648,7629,7630,7645,-7647,7630,7631,7644,-7646,7631,7632,7643,-7645,7632,7661,7662,-7644,7633,7634,7641,-7643,7636,7637,7638,-7640,7639,7640,7635,-7637,7640,7641,7634,-7636,7599,7603,7626,-7626,7603,7605,7627,-7627,7605,7607,7628,-7628,7607,7609,7629,-7629,7609,7611,7630,-7630,7611,7613,7631,-7631,7613,7615,7632,-7632,7615,7660,7661,-7633,7617,7623,7634,-7634,7635,7634,7623,-7620, -7636,7635,7619,-7623,7622,7602,7637,-7637,7602,7599,7625,-7638,7639,7638,7601,-7622,7621,7620,7640,-7640,7624,7641,7640,-7621,7642,7641,7624,-7619,7643,7662,7663,-7617,7644,7643,7616,-7615,7645,7644,7614,-7613,7646,7645,7612,-7611,7647,7646,7610,-7609,7648,7647,7608,-7607,7649,7648,7606,-7605,7650,7649,7604,-7601,7638,7650,7600,-7602,7654,7655,7652,-7654,5909,7652,7655,-5911,5906,7604,7606,-5906,7604,5906,5907,-7601,7600,5907,5908,-7652,7620,7621,7474,-7476,7473,7474,7621,-7602,7651,5908,5893,-7474,7473,7601,7600,-7652,7610,7652,5909,-7609,7653,7652,7610,-7613,7608,5909,5905,-7607,7582,7357,7655,-7655,5910,7655,7357,-5880,7654,7656,7580,-7583,7653,7657,7656,-7655,7612,7614,7657,-7654,7614,7616,7658,-7658,7657,7658,7659,-7657,7656,7659,7577,-7581,7680,7681,7617,-7634,7679,7680,7633,-7643,7678,7679,7642,-7619,7616,7663,7664,-7659,7658,7664,7665,-7660,7659,7665,7575,-7578,7677,7678,7618,-7667,7676,7677,7666,-7668,7675,7676,7667,-7577,7624,7668,7666,-7619,7668,7669,7667,-7667,7576,7667,7669,-7584,7620,7670,7668,-7625,7670,7620,7475,-7477,7669,7668,7670,-7672,7673,7672,7478,-7586,7583,7669,7671,-7673,7671,7670,7476,-7478,7477,7478,7672,-7672,7675,7674,7574,-7576,7665,7676,7675,-7576,7664,7677,7676,-7666,7663,7678,7677,-7665,7663,7662,7679,-7679,7662,7661,7680,-7680,7661,7660,7681,-7681,5897,5916,7721,-7528,7527,7721,7722,-7526,7525,7722,7720,-7524,7682,5911,5914,-7692,7683,7682,7691,-7693,7684,7683,7692,-7694,7685,5912,5911,-7683,7686,7685,7682,-7684,7687,7686,7683,-7685,7688,5913,5912,-7686,7689,7688,7685,-7687,7690,7689,7686,-7688,7691,5914,5915,-7713,7692,7691,7712,-7714,7693,7692,7713,-7715,7573,7584,7694,-7696,7695,7694,7696,-7698,7697,7696,7698,-7700,7699,7698,7700,-7702,7701,7700,7702,-7704,7703,7702,7684,-7694,7703,7693,7714,-7716,7705,7704,7697,-7700,7704,7706,7695,-7698,7706,7674,7573,-7696,7574,7674,7706,-7708,7704,7708,7707,-7707,7705,7709,7708,-7705,7709,7705,7699,-7702,7710,7709,7701,-7704,7715,7716,7710,-7704,7711,7578,7574,-7708,7712,5915,5880,-7359,7713,7712,7358,-7582,7714,7713,7581,-7580,7715,7714,7579, --7579,7711,7716,7715,-7579,7716,7708,7709,-7711,7711,7707,7708,-7717,7702,7700,7687,-7685,7687,7700,7698,-7691,7694,7584,7673,-7718,7696,7694,7717,-7719,7718,7719,7698,-7697,7719,7720,7690,-7699,7721,5916,5913,-7689,7722,7721,7688,-7690,7720,7722,7689,-7691,7521,7523,7720,-7720,7723,7521,7719,-7719,7724,7723,7718,-7718,7673,7585,7724,-7718,7538,7521,7723,-7726,7585,7586,7726,-7725,7725,7723,7724,-7727,7519,7538,7725,-7728,7726,7728,7727,-7726,7586,7587,7728,-7727,7729,7536,7519,-7728,7727,7728,7730,-7730,7731,7730,7728,-7588,7729,7730,7732,-7734,7733,7732,7734,-7736,7735,7734,7736,-7738,7737,7736,7738,-7740,7739,7738,7740,-7742,7729,7733,7517,-7537,7733,7735,7534,-7518,7515,7534,7735,-7738,7513,7515,7737,-7740,7739,7741,7533,-7514,7730,7731,7742,-7733,7744,7743,7736,-7735,7738,7736,7743,-7746,7742,7744,7734,-7733,7746,7731,7587,-7589,7748,7747,7743,-7745,7749,7748,7744,-7743,7746,7749,7742,-7732,7747,7748,7750,-7752,7748,7749,7752,-7751,7752,7749,7746,-7754,7753,7746,7588,-7590,7755,7753,7589,-7755,7753,7755,7756,-7753,7756,7757,7750,-7753,7590,7758,7754,-7590,7758,7759,7760,-7755,7553,7760,7759,-7562,7758,7761,7762,-7760,7761,7758,7590,-7592,7759,7762,7551,-7562,7566,7764,7763,-7551,7765,7764,7566,-7552,7766,7761,7591,-7593,7767,7762,7761,-7767,7765,7551,7762,-7768,7768,7766,7592,-7594,7766,7768,7769,-7768,7767,7769,7549,-7766,7565,7771,7770,-7549,7772,7771,7565,-7550,7773,7772,7549,-7770,7773,7769,7768,-7775,7593,7594,7774,-7769,7594,7595,7775,-7775,7774,7775,7776,-7774,7773,7776,7547,-7773,7564,7778,7777,-7547,7779,7778,7564,-7548,7777,7778,7781,-7781,7782,7781,7778,-7780,7597,7783,7784,-7597,7775,7595,7596,-7785,7776,7775,7784,-7786,7785,7784,7783,-7787,7779,7785,7786,-7783,7547,7776,7785,-7780,7780,7781,7788,-7788,7789,7788,7781,-7783,7783,7597,7598,-7791,7790,7791,7786,-7784,7791,7789,7782,-7787,7790,7598,5904,-5918,7791,7790,5917,-5919,5918,5902,7789,-7792,7792,7755,7754,-7761,7755,7792,7793,-7757,7569,7795,7794,-7555,7796,7795,7569,-7556,7760,7553,7796,-7793,7792,7796,7555,-7794,7757,7756,7793,-7798,7570,7799, -7798,-7563,7800,7799,7570,-7564,7793,7555,7800,-7798,7757,7797,7801,-7803,7751,7750,7757,-7803,7797,7800,7563,-7802,7802,7801,7803,-7805,7747,7751,7805,-7807,7745,7743,7747,-7807,7805,7751,7802,-7805,7803,7801,7563,-7558,7804,7803,7807,-7809,7806,7805,7809,-7811,7738,7745,7811,-7741,7807,7803,7557,-7560,7809,7805,7804,-7809,7806,7810,7811,-7746,7813,7812,7333,-7335,7814,7813,7334,-7336,7815,7814,7335,-7337,7816,7815,7336,-7338,7817,7816,7337,-7344,7818,7817,7343,-7339,7819,7818,7338,-7340,7820,7819,7339,-7341,7821,7820,7340,-7342,7822,7821,7341,-7357,7823,7822,7356,-7343,7355,7824,7823,-7343,7354,7825,7824,-7356,7353,7826,7825,-7355,7352,7827,7826,-7354,7351,7828,7827,-7353,7350,7829,7828,-7352,7349,7830,7829,-7351,7348,7831,7830,-7350,7345,7832,7831,-7349,7345,7344,7833,-7833,7346,7834,7833,-7345,7332,7835,7834,-7347,7332,7347,7836,-7836,7812,7836,7347,-7334,7838,7837,7886,-7886,7839,7838,7885,-7885,7840,7839,7884,-7884,7841,7840,7883,-7883,7842,7841,7882,-7882,7843,7842,7881,-7881,7844,7843,7880,-7880,7845,7844,7879,-7879,7846,7845,7878,-7878,7847,7846,7877,-7877,7848,7847,7876,-7876,7874,7849,7848,-7876,7862,7861,7860,-7864,7837,7861,7862,-7887,7864,7863,7860,-7860,7858,7865,7864,-7860,7857,7866,7865,-7859,7856,7867,7866,-7858,7855,7868,7867,-7857,7854,7869,7868,-7856,7853,7870,7869,-7855,7852,7871,7870,-7854,7851,7872,7871,-7853,7850,7873,7872,-7852,7874,7873,7850,-7850,7496,7888,7887,-7546,7494,7889,7888,-7497,7543,7890,7889,-7495,7541,7891,7890,-7544,7892,7891,7541,-7525,7522,7893,7892,-7525,7520,7894,7893,-7523,7539,7895,7894,-7521,7518,7896,7895,-7540,7537,7897,7896,-7519,7516,7898,7897,-7538,7535,7899,7898,-7517,7514,7900,7899,-7536,7512,7901,7900,-7515,7532,7902,7901,-7513,7510,7903,7902,-7533,7531,7904,7903,-7511,7905,7904,7531,-7509,7906,7905,7508,-7530,7907,7906,7529,-7507,7908,7907,7506,-7505,7909,7908,7504,-7504,7910,7909,7503,-7501,7911,7910,7500,-7499,7887,7911,7498,-7546,7866,7867,7913,-7913,7867,7868,7914,-7914,7868,7869,7915,-7915,7869,7870,7916,-7916,7870,7871,7917,-7917,7871,7872,7918,-7918,7872, -7873,7919,-7919,7873,7874,7920,-7920,7874,7875,7921,-7921,7875,7876,7922,-7922,7876,7877,7923,-7923,7877,7878,7924,-7924,7878,7879,7925,-7925,7879,7880,7926,-7926,7880,7881,7927,-7927,7881,7882,7928,-7928,7882,7883,7929,-7929,7883,7884,7930,-7930,7884,7885,7931,-7931,7885,7886,7932,-7932,7886,7862,7933,-7933,7862,7863,7934,-7934,7863,7864,7935,-7935,7864,7865,7936,-7936,7912,7936,7865,-7867,5919,5895,7492,-7938,7495,7938,7937,-7493,7497,7939,7938,-7496,7544,7940,7939,-7498,7499,7941,7940,-7545,7501,7942,7941,-7500,7501,7502,7943,-7943,7502,7505,7944,-7944,7505,7507,7945,-7945,7507,7528,7946,-7946,7947,7946,7528,-7510,7509,7530,7948,-7948,7948,7530,7511,-7950,7741,7949,7511,-7534,8047,8048,7951,-7953,7951,8048,8049,-7956,7955,8049,8050,-7958,7957,8050,8051,-8040,7959,8052,8053,-8045,7961,8054,8055,-7964,7963,8055,8056,-8035,7965,8057,8058,-7968,7967,8058,8059,-7970,7969,8059,8060,-7972,7971,8060,8061,-7974,7973,8061,8062,-7976,7975,8062,8063,-7978,7977,8063,8064,-7980,7979,8064,8065,-7982,7953,7950,7983,-7983,7984,7983,7950,-7955,7985,7984,7954,-7957,8037,8038,7985,-7957,8042,8043,7986,-7959,7988,7987,7960,-7963,8032,8033,7988,-7963,7990,7989,7964,-7967,7991,7990,7966,-7969,7992,7991,7968,-7971,7993,7992,7970,-7973,7994,7993,7972,-7975,7995,7994,7974,-7977,7996,7995,7976,-7979,7997,7996,7978,-7981,8015,8016,7998,-8000,8016,8017,8000,-7999,8000,8017,8018,-8002,8001,8018,8040,-8042,8002,8019,8045,-8047,8003,8020,8021,-8005,8004,8021,8035,-8037,8005,8022,8023,-8007,8006,8023,8024,-8008,8007,8024,8025,-8009,8008,8025,8026,-8010,8009,8026,8027,-8011,8010,8027,8028,-8012,8011,8028,8029,-8013,8013,8012,8029,-8031,8030,8066,8067,-8014,8068,8069,8016,-8016,8069,8070,8017,-8017,8018,8017,8070,-8072,8071,8072,8040,-8019,8073,8074,8045,-8020,8021,8020,8075,-8077,8076,8077,8035,-8022,8023,8022,8078,-8080,8024,8023,8079,-8081,8025,8024,8080,-8082,8026,8025,8081,-8083,8027,8026,8082,-8084,8028,8027,8083,-8085,8029,8028,8084,-8086,8030,8029,8085,-8087,8086,8087,8066,-8031,7989,8033,8032,-7965,8034,8056,8057,-7966,8022,8035,8077,-8079, -8036,8035,8022,-8006,7986,8038,8037,-7959,8039,8051,8052,-7960,8019,8040,8072,-8074,8041,8040,8019,-8003,7987,8043,8042,-7961,8044,8053,8054,-7962,8020,8045,8074,-8076,8046,8045,8020,-8004,7982,7983,8048,-8048,8049,8048,7983,-7985,8050,8049,7984,-7986,8051,8050,7985,-8039,8052,8051,8038,-7987,8053,8052,7986,-8044,8054,8053,8043,-7988,8055,8054,7987,-7989,8056,8055,7988,-8034,8057,8056,8033,-7990,8058,8057,7989,-7991,8059,8058,7990,-7992,8060,8059,7991,-7993,8061,8060,7992,-7994,8062,8061,7993,-7995,8063,8062,7994,-7996,8064,8063,7995,-7997,8065,8064,7996,-7998,8066,8087,8088,-8032,7952,7951,8069,-8069,7951,7955,8070,-8070,8071,8070,7955,-7958,8039,8072,8071,-7958,8073,8072,8039,-7960,8044,8074,8073,-7960,8075,8074,8044,-7962,8076,8075,7961,-7964,8034,8077,8076,-7964,8078,8077,8034,-7966,8079,8078,7965,-7968,8080,8079,7967,-7970,8081,8080,7969,-7972,8082,8081,7971,-7974,8083,8082,7973,-7976,8084,8083,7975,-7978,8085,8084,7977,-7980,8086,8085,7979,-7982,7981,8065,8087,-8087,8088,8087,8065,-7998,7980,8031,8088,-7998,8089,8014,8031,-7981,7980,7978,8090,-8090,8091,8090,7978,-7977,8091,7976,7974,-8093,7972,8093,8092,-7975,8094,8093,7972,-7971,7968,8095,8094,-7971,7966,8096,8095,-7969,8098,7964,8032,-8098,7964,8098,8096,-7967,8097,8032,7962,-8100,7960,8042,8099,-7963,7958,8037,8099,-8043,8037,7956,8100,-8100,8101,8100,7956,-7955,8102,8101,7954,-7951,8103,8102,7950,-7954,8100,8104,8097,-8100,8105,8098,8097,-8105,8106,8096,8098,-8106,8095,8096,8106,-8108,8094,8095,8107,-8109,8108,8109,8093,-8095,8110,8092,8093,-8110,8111,8104,8100,-8102,8102,8112,8111,-8102,8112,8105,8104,-8112,8112,8102,8103,-8114,8113,8106,8105,-8113,8114,8107,8106,-8114,8114,8109,8108,-8108,8115,8114,8113,-8104,8109,8114,8115,-8111,7953,8116,8115,-8104,8116,8117,8110,-8116,8110,8117,8091,-8093,8118,8090,8091,-8118,8116,7953,7982,-8120,8117,8116,8119,-8119,8119,7982,8047,-8121,8120,8121,8118,-8120,8125,8122,8123,-8125,8122,8126,8127,-8124,8129,8125,8124,-8129,8129,8128,8089,-8122,8124,8123,8127,-8129,8122,8125,8129,-8127,8126,8129,8121,-8121,8120,8047,7952, --8127,8126,7952,8068,-8128,8128,8127,8130,-8132,8127,8068,8015,-8131,8089,8128,8131,-8015,8089,8090,8118,-8122,7558,8144,8145,-7573,7809,8137,8138,-7811,8136,8137,7809,-7809,7999,8132,8130,-8016,8138,8139,7811,-7811,7741,7740,8133,-7950,8134,7948,7949,-8134,8141,8142,8134,-8134,7948,8134,8135,-7948,8142,8143,8135,-8135,8131,8137,8136,-8015,8138,8137,8131,-8131,8132,8139,8138,-8131,8139,8140,7740,-7812,7999,8142,8141,-8133,7998,8143,8142,-8000,7740,8140,8141,-8134,8132,8141,8140,-8140,8145,8144,8013,-8068,8147,7807,7559,-8147,8145,8146,7559,-7573,7807,8147,8136,-7809,8014,8136,8147,-8149,8146,8149,8148,-8148,8145,8067,8149,-8147,8066,8148,8149,-8068,8148,8066,8031,-8015,8144,8150,8012,-8014,7558,8151,8150,-8145,8150,8152,8011,-8013,8151,8153,8152,-8151,8010,8011,8152,-8155,8153,8155,8154,-8153,8009,8010,8154,-8157,8156,8154,8155,-8158,8008,8009,8156,-8159,8159,8158,8156,-8158,8161,8160,8158,-8160,8007,8008,8158,-8161,8006,8007,8160,-8163,8163,8162,8160,-8162,8005,8006,8162,-8165,8162,8163,8165,-8165,8167,8166,8164,-8166,8005,8164,8166,-8037,8167,8168,8169,-8167,8004,8036,8166,-8170,8003,8004,8169,-8171,8172,8171,8000,-8002,8173,8172,8001,-8042,8041,8002,8174,-8174,8002,8046,8175,-8175,8046,8003,8170,-8176,8143,7998,8000,-8172,8171,8176,8135,-8144,8176,8171,8172,-8178,8177,8172,8173,-8179,8178,8173,8174,-8180,8179,8174,8175,-8181,8180,8175,8170,-8182,8181,8170,8169,-8169,7947,8135,8176,-7947,8176,8182,7945,-7947,7944,7945,8182,-8184,7943,7944,8183,-8185,7942,7943,8184,-8186,7941,7942,8185,-8187,7940,7941,8186,-8188,7939,7940,8187,-8189,7938,7939,8188,-8190,7937,7938,8189,-8191,5919,7937,8190,-5921,5922,8200,8191,-5922,8200,8201,8192,-8192,8201,8202,8193,-8193,8202,8203,8194,-8194,8203,8204,8195,-8195,8204,8205,8196,-8196,8205,8206,8197,-8197,8206,8207,8198,-8198,8207,8208,8199,-8199,5920,8190,8200,-5923,8190,8189,8201,-8201,8189,8188,8202,-8202,8188,8187,8203,-8203,8187,8186,8204,-8204,8186,8185,8205,-8205,8185,8184,8206,-8206,8184,8183,8207,-8207,8183,8182,8208,-8208,8177,8208,8182,-8177,8208,8177,8178,-8200,8179,8209, -8199,-8179,8209,8210,8198,-8200,8197,8198,8210,-8212,8197,8211,8212,-8197,8196,8212,8213,-8196,8214,8194,8195,-8214,8194,8214,8215,-8194,8193,8215,8216,-8193,8192,8216,8217,-8192,8191,8217,5923,-5922,8159,8157,8218,-8220,8219,8218,8226,-8228,8221,8220,8224,-8226,8223,8222,8305,-8307,8225,8224,8222,-8224,8227,8226,8220,-8222,8228,8223,8306,-8308,8229,8225,8223,-8229,8225,8229,8230,-8222,8231,8219,8227,-8233,8232,8227,8221,-8231,8159,8219,8231,-8162,8307,8308,8233,-8229,8228,8233,8234,-8230,8229,8234,8235,-8231,8230,8235,8236,-8233,8231,8232,8236,-8238,8161,8231,8237,-8164,8308,8309,8238,-8234,8239,8234,8233,-8239,8234,8239,8240,-8236,8241,8236,8235,-8241,8241,8242,8237,-8237,8242,8165,8163,-8238,8309,8310,8243,-8239,8238,8243,8244,-8240,8239,8244,8245,-8241,8240,8245,8246,-8242,8242,8241,8246,-8248,8165,8242,8247,-8168,8310,8311,8248,-8244,8243,8248,8249,-8245,8244,8249,8250,-8246,8245,8250,8251,-8247,8247,8246,8251,-8253,8167,8247,8252,-8169,8311,8312,8253,-8249,8254,8249,8248,-8254,8249,8254,8255,-8251,8250,8255,8256,-8252,8251,8256,8257,-8253,8252,8257,8181,-8169,8312,8313,8258,-8254,8253,8258,8259,-8255,8254,8259,8260,-8256,8255,8260,8261,-8257,8256,8261,8262,-8258,8257,8262,8180,-8182,8209,8179,8180,-8263,8261,8263,8209,-8263,8313,8314,8264,-8259,8258,8264,8265,-8260,8259,8265,8266,-8261,8260,8266,8263,-8262,8267,8268,8211,-8211,8211,8268,8269,-8213,8265,8268,8267,-8267,8269,8268,8265,-8265,8263,8266,8267,-8210,8209,8267,-8211,8271,8270,8283,-8285,8272,8271,8284,-8286,8285,8286,8273,-8273,8286,8287,8274,-8274,8287,8288,8275,-8275,8288,8289,8276,-8276,8289,8290,8277,-8277,8290,8291,8278,-8278,8291,8292,8279,-8279,8157,8155,8280,-8219,8281,8280,8155,-8154,8153,8151,8282,-8282,7558,7556,8282,-8152,8284,8283,5924,-5926,8285,8284,5925,-5927,5926,5927,8286,-8286,5927,5928,8287,-8287,5928,5929,8288,-8288,5929,5930,8289,-8289,5930,5931,8290,-8290,5931,5932,8291,-8291,5932,5933,8292,-8292,8294,8293,8317,-8319,8295,8294,8318,-8320,8319,8320,8296,-8296,8320,8321,8297,-8297,8321,8322,8298,-8298,8322,8323,8299,-8299,8323,8324, -8300,-8300,8324,8325,8301,-8301,8325,8326,8302,-8302,5934,5923,8217,-8304,8303,8292,5933,-5935,8303,8217,8216,-8305,8304,8279,8292,-8304,8306,8305,8293,-8295,8307,8306,8294,-8296,8295,8296,8308,-8308,8296,8297,8309,-8309,8297,8298,8310,-8310,8298,8299,8311,-8311,8299,8300,8312,-8312,8300,8301,8313,-8313,8301,8302,8314,-8314,8269,8264,8314,-8316,8212,8269,8315,-8214,8315,8314,8302,-8317,8316,8214,8213,-8316,8318,8317,8270,-8272,8319,8318,8271,-8273,8272,8273,8320,-8320,8273,8274,8321,-8321,8274,8275,8322,-8322,8275,8276,8323,-8323,8276,8277,8324,-8324,8277,8278,8325,-8325,8278,8279,8326,-8326,8304,8216,8215,-8328,8327,8215,8214,-8317,8316,8302,8326,-8328,8279,8304,8327,-8327,5935,5924,8283,-8329,8328,8283,8270,-8330,8329,8270,8317,-8331,8330,8317,8293,-8332,8305,8332,8331,-8294,8332,8305,8222,-8334,8224,8334,8333,-8223,8334,8224,8220,-8336,8226,8336,8335,-8221,8218,8280,8336,-8227,8480,8481,8337,-8339,8479,8480,8338,-8340,8478,8479,8339,-8341,8477,8478,8340,-8342,8476,8477,8341,-8343,8475,8476,8342,-8344,8474,8475,8343,-8345,8473,8474,8344,-8346,8472,8473,8345,-8347,5946,8472,8346,-5937,8481,8482,8347,-8338,8482,8483,8348,-8348,8483,8484,8349,-8349,8484,8485,8350,-8350,8485,8486,8351,-8351,8486,8487,8352,-8352,8487,8488,8353,-8353,8488,8489,8354,-8354,8489,8490,8355,-8355,8490,8491,8356,-8356,8491,8492,8357,-8357,8492,8493,8358,-8358,8493,8494,8359,-8359,8494,8495,8360,-8360,8495,8496,8361,-8361,8496,8497,8362,-8362,8497,8498,8363,-8363,8498,5947,5937,-8364,5940,8391,8364,-5939,8391,8392,8365,-8365,8392,8393,8366,-8366,8393,8394,8367,-8367,8394,8395,8368,-8368,8395,8396,8369,-8369,8396,8397,8370,-8370,8397,8398,8371,-8371,8398,8399,8372,-8372,8399,8400,8373,-8373,8400,8401,8374,-8374,8401,8402,8375,-8375,8402,8403,8376,-8376,8403,8404,8377,-8377,8404,8405,8378,-8378,8405,8406,8379,-8379,8406,8407,8380,-8380,8407,8408,8381,-8381,8408,8409,8382,-8382,8409,8410,8383,-8383,8410,8411,8384,-8384,8411,8412,8385,-8385,8412,8413,8386,-8386,8413,8414,8387,-8387,8414,8415,8388,-8388,8415,8416,8389,-8389,8416,8417,8390,-8390,8417, -5941,5939,-8391,5935,8328,8391,-5941,8328,8329,8392,-8392,8329,8330,8393,-8393,8330,8331,8394,-8394,8331,8332,8395,-8395,8332,8333,8396,-8396,8333,8334,8397,-8397,8334,8335,8398,-8398,8335,8336,8399,-8399,8336,8280,8400,-8400,8280,8281,8401,-8401,8281,8282,8402,-8402,8282,7556,8403,-8403,7556,7562,8404,-8404,7562,7798,8405,-8405,7798,7554,8406,-8406,7554,7794,8407,-8407,7794,7552,8408,-8408,7552,7560,8409,-8409,7560,7550,8410,-8410,7550,7763,8411,-8411,7763,7548,8412,-8412,7548,7770,8413,-8413,7770,7546,8414,-8414,7546,7777,8415,-8415,7777,7780,8416,-8416,7780,7787,8417,-8417,7787,5901,5941,-8418,5948,8499,8418,-5943,8499,8500,8419,-8419,8500,8501,8420,-8420,8501,8502,8421,-8421,8502,8503,8422,-8422,8503,8504,8423,-8423,8504,8505,8424,-8424,8505,8506,8425,-8425,8506,8507,8426,-8426,8507,8508,8427,-8427,8508,8509,8428,-8428,8509,8510,8429,-8429,8510,8511,8430,-8430,8511,8512,8431,-8431,8512,8513,8432,-8432,8513,8514,8433,-8433,8514,8515,8434,-8434,8515,8516,8435,-8435,8516,8517,8436,-8436,8517,8518,8437,-8437,8518,8519,8438,-8438,8519,8520,8439,-8439,8520,8521,8440,-8440,8521,8522,8441,-8441,8522,8523,8442,-8442,8523,8524,8443,-8443,8524,8525,8444,-8444,8525,5949,5943,-8445,5942,8418,8445,-5945,8418,8419,8446,-8446,8419,8420,8447,-8447,8420,8421,8448,-8448,8421,8422,8449,-8449,8422,8423,8450,-8450,8423,8424,8451,-8451,8424,8425,8452,-8452,8425,8426,8453,-8453,8426,8427,8454,-8454,8427,8428,8455,-8455,8428,8429,8456,-8456,8429,8430,8457,-8457,8430,8431,8458,-8458,8431,8432,8459,-8459,8432,8433,8460,-8460,8433,8434,8461,-8461,8434,8435,8462,-8462,8435,8436,8463,-8463,8436,8437,8464,-8464,8437,8438,8465,-8465,8438,8439,8466,-8466,8439,8440,8467,-8467,8440,8441,8468,-8468,8441,8442,8469,-8469,8442,8443,8470,-8470,8443,8444,8471,-8471,8444,5943,5945,-8472,5944,8445,8472,-5947,8445,8446,8473,-8473,8446,8447,8474,-8474,8447,8448,8475,-8475,8448,8449,8476,-8476,8449,8450,8477,-8477,8450,8451,8478,-8478,8451,8452,8479,-8479,8452,8453,8480,-8480,8453,8454,8481,-8481,8454,8455,8482,-8482,8455,8456,8483,-8483,8456,8457,8484,-8484, -8457,8458,8485,-8485,8458,8459,8486,-8486,8459,8460,8487,-8487,8460,8461,8488,-8488,8461,8462,8489,-8489,8462,8463,8490,-8490,8463,8464,8491,-8491,8464,8465,8492,-8492,8465,8466,8493,-8493,8466,8467,8494,-8494,8467,8468,8495,-8495,8468,8469,8496,-8496,8469,8470,8497,-8497,8470,8471,8498,-8498,8471,5945,5947,-8499,5938,8364,8499,-5949,8364,8365,8500,-8500,8365,8366,8501,-8501,8366,8367,8502,-8502,8367,8368,8503,-8503,8368,8369,8504,-8504,8369,8370,8505,-8505,8370,8371,8506,-8506,8371,8372,8507,-8507,8372,8373,8508,-8508,8373,8374,8509,-8509,8374,8375,8510,-8510,8375,8376,8511,-8511,8376,8377,8512,-8512,8377,8378,8513,-8513,8378,8379,8514,-8514,8379,8380,8515,-8515,8380,8381,8516,-8516,8381,8382,8517,-8517,8382,8383,8518,-8518,8383,8384,8519,-8519,8384,8385,8520,-8520,8385,8386,8521,-8521,8386,8387,8522,-8522,8387,8388,8523,-8523,8388,8389,8524,-8524,8389,8390,8525,-8525,8390,5939,5949,-8526,7611,7609,8526,-8528,7613,7611,8527,-8529,7615,7613,8528,-8530,7660,7615,8529,-8531,7681,7660,8530,-8532,7609,7607,8532,-8527,7607,7605,8533,-8533,7605,7603,8534,-8534,7603,7599,8535,-8535,7599,7602,8536,-8536,7602,7622,8537,-8537,7622,7619,8538,-8538,7619,7623,8539,-8539,7623,7617,8540,-8540,7681,8531,8540,-7618,8527,8541,8542,-8529,8543,8529,8528,-8543,8544,8530,8529,-8544,8538,8543,8542,-8538,8543,8538,8539,-8545,8537,8542,8541,-8537,8541,8527,8526,-8546,8536,8541,8545,-8536,8533,8534,8535,-8546,8532,8533,8545,-8527,8531,8544,8539,-8541,8544,8531,-8531,7359,5881,7185,-8566,7361,7364,8571,-8573,7373,7366,8569,-8571,7366,7368,8568,-8570,7368,7370,8567,-8569,7370,7372,8566,-8568,7372,7359,8565,-8567,7364,7373,8570,-8572,7376,7361,8572,-8574,7378,7376,8573,-8575,7380,7378,8574,-8576,7382,7380,8575,-8577,7383,7382,8576,-8578,7385,7383,8577,-8579,7388,7385,8578,-8580,7390,7388,8579,-8581,7392,7390,8580,-8582,7394,7392,8581,-8583,7396,7394,8582,-8584,5884,7396,8583,-7206,8565,7185,7206,-8585,8566,8565,8584,-8586,8567,8566,8585,-8587,8568,8567,8586,-8588,8569,8568,8587,-8589,8570,8569,8588,-8590,8571,8570,8589,-8591,8572,8571,8590,-8592, -8573,8572,8591,-8593,8574,8573,8592,-8594,8575,8574,8593,-8595,8576,8575,8594,-8596,8577,8576,8595,-8597,8578,8577,8596,-8598,8579,8578,8597,-8599,8580,8579,8598,-8600,8581,8580,8599,-8601,8582,8581,8600,-8602,8583,8582,8601,-8603,7205,8583,8602,-7227,8584,7206,7164,-8547,8585,8584,8546,-8554,8586,8585,8553,-8553,8587,8586,8552,-8552,8588,8587,8551,-8550,8589,8588,8549,-8551,8590,8589,8550,-8548,8591,8590,8547,-8549,8592,8591,8548,-8555,8593,8592,8554,-8556,8594,8593,8555,-8557,8595,8594,8556,-8558,8596,8595,8557,-8559,8597,8596,8558,-8560,8598,8597,8559,-8561,8599,8598,8560,-8562,8600,8599,8561,-8563,8601,8600,8562,-8564,8602,8601,8563,-8565,7226,8602,8564,-7166,8546,7164,7227,-8604,8548,8547,8604,-8606,8550,8549,8606,-8608,8549,8551,8608,-8607,8551,8552,8609,-8609,8552,8553,8610,-8610,8553,8546,8603,-8611,8547,8550,8607,-8605,8554,8548,8605,-8612,8555,8554,8611,-8613,8556,8555,8612,-8614,8557,8556,8613,-8615,8558,8557,8614,-8616,8559,8558,8615,-8617,8560,8559,8616,-8618,8561,8560,8617,-8619,8562,8561,8618,-8620,8563,8562,8619,-8621,8564,8563,8620,-8622,7165,8564,8621,-7248,8603,7227,7311,-8680,8605,8604,8685,-8687,8607,8606,8683,-8685,8606,8608,8682,-8684,8608,8609,8681,-8683,8609,8610,8680,-8682,8610,8603,8679,-8681,8604,8607,8684,-8686,8611,8605,8686,-8688,8612,8611,8687,-8689,8613,8612,8688,-8690,8614,8613,8689,-8691,8615,8614,8690,-8692,8616,8615,8691,-8693,8617,8616,8692,-8694,8618,8617,8693,-8695,8619,8618,8694,-8696,8620,8619,8695,-8697,8621,8620,8696,-8698,7247,8621,8697,-7332,8622,7248,7290,-8661,8624,8623,8666,-8668,8626,8625,8664,-8666,8625,8627,8663,-8665,8627,8628,8662,-8664,8628,8629,8661,-8663,8629,8622,8660,-8662,8623,8626,8665,-8667,8630,8624,8667,-8669,8631,8630,8668,-8670,8632,8631,8669,-8671,8633,8632,8670,-8672,8634,8633,8671,-8673,8635,8634,8672,-8674,8636,8635,8673,-8675,8637,8636,8674,-8676,8638,8637,8675,-8677,8639,8638,8676,-8678,8640,8639,8677,-8679,7268,8640,8678,-7311,8660,7290,7269,-8642,8661,8660,8641,-8649,8662,8661,8648,-8648,8663,8662,8647,-8647,8664,8663,8646,-8645,8665,8664,8644, --8646,8666,8665,8645,-8643,8667,8666,8642,-8644,8668,8667,8643,-8650,8669,8668,8649,-8651,8670,8669,8650,-8652,8671,8670,8651,-8653,8672,8671,8652,-8654,8673,8672,8653,-8655,8674,8673,8654,-8656,8675,8674,8655,-8657,8676,8675,8656,-8658,8677,8676,8657,-8659,8678,8677,8658,-8660,7310,8678,8659,-7290,8679,7311,7248,-8623,8680,8679,8622,-8630,8681,8680,8629,-8629,8682,8681,8628,-8628,8683,8682,8627,-8626,8684,8683,8625,-8627,8685,8684,8626,-8624,8686,8685,8623,-8625,8687,8686,8624,-8631,8688,8687,8630,-8632,8689,8688,8631,-8633,8690,8689,8632,-8634,8691,8690,8633,-8635,8692,8691,8634,-8636,8693,8692,8635,-8637,8694,8693,8636,-8638,8695,8694,8637,-8639,8696,8695,8638,-8640,8697,8696,8639,-8641,7331,8697,8640,-7269,5950,5965,8699,-8699,5951,5952,8701,-8701,5952,5953,8702,-8702,5953,5954,8703,-8703,5954,5955,8704,-8704,5955,5961,8705,-8705,5956,5957,8707,-8707,5957,5958,8708,-8708,5958,5959,8709,-8709,5959,5974,8710,-8710,5961,5956,8706,-8706,5962,5964,8712,-8712,5963,5962,8711,-8714,5964,5950,8698,-8713,5965,5951,8700,-8700,5966,5963,8713,-8715,5967,5966,8714,-8716,5968,5967,8715,-8717,5969,5968,8716,-8718,5970,5969,8717,-8719,5971,5970,8718,-8720,5972,5971,8719,-8721,5973,5972,8720,-8722,5960,5973,8721,-8723,5974,5960,8722,-8711,7347,7332,8723,-8725,7334,7333,8725,-8727,7335,7334,8726,-8728,7336,7335,8727,-8729,7337,7336,8728,-8730,7343,7337,8729,-8731,7339,7338,8731,-8733,7340,7339,8732,-8734,7341,7340,8733,-8735,7356,7341,8734,-8736,7338,7343,8730,-8732,7346,7344,8736,-8738,7344,7345,8738,-8737,7332,7346,8737,-8724,7333,7347,8724,-8726,7345,7348,8739,-8739,7348,7349,8740,-8740,7349,7350,8741,-8741,7350,7351,8742,-8742,7351,7352,8743,-8743,7352,7353,8744,-8744,7353,7354,8745,-8745,7354,7355,8746,-8746,7355,7342,8747,-8747,7342,7356,8735,-8748,8698,8699,8749,-8749,8700,8701,8751,-8751,8701,8702,8752,-8752,8702,8703,8753,-8753,8703,8704,8754,-8754,8704,8705,8755,-8755,8706,8707,8757,-8757,8707,8708,8758,-8758,8708,8709,8759,-8759,8709,8710,8760,-8760,8705,8706,8756,-8756,8711,8712,8762,-8762,8713,8711,8761,-8764,8712,8698, -8748,-8763,8699,8700,8750,-8750,8714,8713,8763,-8765,8715,8714,8764,-8766,8716,8715,8765,-8767,8717,8716,8766,-8768,8718,8717,8767,-8769,8719,8718,8768,-8770,8720,8719,8769,-8771,8721,8720,8770,-8772,8722,8721,8771,-8773,8710,8722,8772,-8761,8724,8723,8773,-8775,8726,8725,8775,-8777,8727,8726,8776,-8778,8728,8727,8777,-8779,8729,8728,8778,-8780,8730,8729,8779,-8781,8732,8731,8781,-8783,8733,8732,8782,-8784,8734,8733,8783,-8785,8735,8734,8784,-8786,8731,8730,8780,-8782,8737,8736,8786,-8788,8736,8738,8788,-8787,8723,8737,8787,-8774,8725,8724,8774,-8776,8738,8739,8789,-8789,8739,8740,8790,-8790,8740,8741,8791,-8791,8741,8742,8792,-8792,8742,8743,8793,-8793,8743,8744,8794,-8794,8744,8745,8795,-8795,8745,8746,8796,-8796,8746,8747,8797,-8797,8747,8735,8785,-8798,8748,8749,-8799,8750,8751,-8799,8751,8752,-8799,8752,8753,-8799,8753,8754,-8799,8754,8755,-8799,8756,8757,-8799,8757,8758,-8799,8758,8759,-8799,8759,8760,-8799,8755,8756,-8799,8761,8762,-8799,8763,8761,-8799,8762,8748,-8799,8749,8750,-8799,8764,8763,-8799,8765,8764,-8799,8766,8765,-8799,8767,8766,-8799,8768,8767,-8799,8769,8768,-8799,8770,8769,-8799,8771,8770,-8799,8772,8771,-8799,8760,8772,-8799,8774,8773,-8800,8776,8775,-8800,8777,8776,-8800,8778,8777,-8800,8779,8778,-8800,8780,8779,-8800,8782,8781,-8800,8783,8782,-8800,8784,8783,-8800,8785,8784,-8800,8781,8780,-8800,8787,8786,-8800,8786,8788,-8800,8773,8787,-8800,8775,8774,-8800,8788,8789,-8800,8789,8790,-8800,8790,8791,-8800,8791,8792,-8800,8792,8793,-8800,8793,8794,-8800,8794,8795,-8800,8795,8796,-8800,8796,8797,-8800,8797,8785,-8800 - } - Edges: *17276 { - a: 0,1,2,3,4,5,6,9,10,11,12,15,17,18,19,20,23,24,25,27,28,29,33,34,35,38,39,41,42,43,45,46,49,50,51,52,55,57,58,59,60,63,64,65,67,68,71,73,74,75,78,79,80,81,82,83,84,85,86,89,90,91,94,95,96,97,98,99,100,101,102,105,106,107,109,110,113,114,115,116,119,120,121,122,124,125,126,129,130,131,135,137,138,139,143,144,147,148,151,153,154,155,158,161,162,165,166,169,170,171,175,177,178,179,182,184,187,188,191,193,194,195,198,201,202,203,205,206,209,210,211,212,215,216,217,218,219,221,222,224,225,226,227,229,230,232,233,234,236,237,240,241,242,243,245,247,248,249,250,252,254,255,256,258,259,260,263,264,265,269,271,272,273,276,278,281,282,285,287,288,289,292,295,296,299,300,303,304,305,309,311,312,313,316,318,321,322,325,327,328,329,332,335,336,339,340,343,345,348,350,352,353,354,356,357,359,360,361,364,367,368,371,372,375,376,377,381,383,384,385,388,390,391,392,394,395,396,399,400,401,405,407,408,409,412,414,417,418,421,423,424,425,428,431,432,435,436,439,440,441,445,447,448,449,452,454,457,458,461,463,464,465,468,471,472,475,476,479,481,486,488,489,490,492,493,495,496,497,500,503,504,507,508,511,512,513,517,519,520,521,524,526,527,528,530,531,532,535,536,537,541,543,544,545,548,550,553,554,557,559,560,561,564,567,568,571,572,575,576,577,581,583,584,585,588,590,593,594,597,599,600,601,604,607,608,611,612,615,617,622,624,625,626,628,629,631,632,633,636,639,640,643,644,647,648,649,653,655,656,657,660,662,663,664,666,667,668,671,672,673,677,679,680,681,684,686,689,690,693,695,696,697,700,703,704,707,708,711,712,713,717,719,720,721,724,726,729,730,733,735,736,737,740,743,744,747,748,751,753,758,760,761,762,764,765,767,768,769,772,775,776,779,780,783,784,785,789,791,792,793,796,798,799,800,802,803,804,807,808,809,813,815,816,817,820,822,825,826,829,831,832,833,836,839,840,843,844,847,848,849,853,855,856,857,860,862,865,866,869,871,872,873,876,879,880,883,884,887,889,894,896,897,898,900,901,903,904,905,908,911,912,915,916,919,920,921,925,927,928,929,932,934,935,936,938,939,940,943,944,945,949,951,952,953,956,958,961, -962,965,967,968,969,972,975,976,979,980,983,984,985,989,991,992,993,996,998,1001,1002,1005,1007,1008,1009,1012,1015,1016,1019,1020,1023,1025,1031,1032,1033,1036,1037,1039,1041,1045,1048,1049,1052,1055,1056,1057,1060,1065,1068,1071,1072,1075,1080,1085,1086,1088,1089,1090,1094,1096,1098,1102,1104,1110,1112,1118,1120,1126,1128,1134,1136,1142,1144,1149,1157,1158,1159,1161,1162,1165,1167,1171,1172,1174,1177,1181,1183,1186,1190,1191,1208,1209,1210,1211,1213,1214,1215,1217,1218,1219,1221,1222,1223,1225,1226,1227,1229,1230,1231,1233,1234,1235,1237,1238,1239,1241,1242,1243,1245,1246,1247,1249,1250,1251,1253,1254,1255,1257,1258,1259,1260,1261,1262,1264,1265,1268,1269,1272,1273,1276,1277,1280,1281,1284,1285,1288,1289,1292,1293,1296,1297,1300,1301,1304,1305,1308,1309,1312,1313,1314,1315,1316,1318,1319,1320,1322,1323,1324,1326,1327,1328,1330,1331,1332,1334,1335,1336,1338,1339,1340,1342,1343,1344,1346,1347,1348,1350,1351,1352,1354,1355,1356,1357,1358,1361,1362,1363,1366,1367,1370,1371,1374,1375,1378,1379,1382,1383,1386,1387,1390,1391,1394,1395,1398,1399,1402,1403,1404,1407,1408,1409,1410,1411,1412,1413,1414,1416,1417,1418,1420,1421,1422,1424,1425,1426,1428,1429,1430,1432,1433,1434,1436,1437,1438,1440,1441,1442,1444,1445,1446,1448,1449,1450,1452,1453,1454,1456,1457,1458,1461,1462,1463,1466,1467,1470,1471,1474,1475,1478,1479,1482,1483,1486,1487,1490,1491,1494,1495,1498,1499,1502,1503,1506,1507,1510,1511,1512,1513,1514,1515,1516,1517,1519,1520,1521,1523,1524,1525,1527,1528,1529,1531,1532,1533,1535,1536,1537,1539,1540,1541,1543,1544,1545,1547,1548,1549,1551,1552,1553,1555,1557,1558,1559,1560,1561,1562,1564,1565,1568,1569,1572,1573,1576,1577,1580,1581,1584,1585,1588,1589,1592,1593,1596,1597,1600,1601,1604,1607,1608,1609,1610,1611,1613,1614,1615,1617,1618,1619,1621,1622,1623,1625,1626,1627,1629,1630,1631,1633,1634,1635,1637,1638,1639,1641,1642,1643,1645,1646,1647,1649,1650,1651,1653,1654,1655,1657,1658,1659,1660,1661,1662,1664,1665,1668,1669,1672,1673,1676,1677,1680,1681,1684,1685,1688,1689,1692,1693,1696,1697,1700,1701,1704,1705,1708, -1709,1712,1713,1714,1715,1716,1718,1719,1720,1722,1723,1724,1726,1727,1728,1730,1731,1732,1734,1735,1736,1738,1739,1740,1742,1743,1744,1746,1747,1748,1750,1751,1752,1754,1755,1756,1757,1758,1761,1762,1763,1766,1767,1770,1771,1774,1775,1778,1779,1782,1783,1786,1787,1790,1791,1794,1795,1798,1799,1802,1803,1804,1807,1808,1809,1810,1811,1812,1813,1814,1816,1817,1818,1820,1821,1822,1824,1825,1826,1828,1829,1830,1832,1833,1834,1836,1837,1838,1840,1841,1842,1844,1845,1846,1848,1849,1850,1852,1853,1854,1856,1857,1858,1861,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1912,1913,1914,1915,1916,1917,1919,1920,1921,1923,1924,1925,1927,1928,1929,1931,1932,1933,1935,1936,1937,1939,1940,1941,1943,1944,1945,1947,1948,1949,1951,1952,1953,1955,1957,1958,1959,1960,1961,1962,1964,1965,1968,1969,1972,1973,1976,1977,1980,1981,1984,1985,1988,1989,1992,1993,1996,1997,2000,2001,2004,2007,2008,2009,2010,2011,2012,2014,2015,2017,2018,2019,2022,2023,2024,2025,2026,2027,2028,2030,2031,2033,2034,2035,2038,2039,2040,2041,2042,2043,2044,2046,2047,2049,2050,2051,2054,2055,2056,2057,2058,2059,2060,2061,2062,2065,2066,2067,2070,2071,2072,2073,2074,2075,2076,2077,2078,2081,2082,2083,2086,2087,2088,2089,2090,2091,2092,2093,2094,2096,2097,2098,2099,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2113,2114,2115,2118,2119,2120,2121,2122,2123,2124,2125,2126,2128,2129,2130,2131,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2145,2146,2147,2150,2151,2152,2153,2154,2155,2156,2157,2158,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2174,2175,2177,2178,2179,2182,2183,2184,2185,2186,2187,2188,2189,2190,2192,2193,2194,2195,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2209,2211,2215,2216,2217,2218,2219,2220,2221,2222,2225,2226,2227,2230,2231,2232,2233,2235,2236,2239,2241,2242,2243,2246,2247,2248,2249,2250,2251,2252,2253,2254,2257,2259,2263,2264,2265,2266,2267,2268,2269,2270,2273,2274,2275,2278,2279,2280,2281,2283,2284,2287,2289,2290,2291,2294,2295,2296,2297, -2298,2299,2300,2301,2302,2305,2307,2311,2312,2313,2314,2315,2316,2317,2318,2321,2322,2323,2326,2327,2328,2329,2331,2332,2335,2337,2338,2339,2342,2343,2344,2345,2347,2348,2351,2353,2354,2355,2358,2359,2360,2361,2362,2363,2364,2365,2366,2370,2371,2375,2376,2379,2381,2385,2386,2387,2391,2392,2393,2394,2395,2396,2397,2398,2401,2402,2403,2406,2407,2408,2409,2411,2412,2415,2417,2418,2419,2422,2423,2424,2425,2427,2428,2431,2433,2434,2435,2438,2439,2440,2441,2443,2446,2447,2448,2449,2450,2451,2453,2454,2455,2457,2458,2459,2461,2462,2464,2465,2466,2467,2468,2470,2471,2472,2473,2474,2475,2477,2478,2479,2481,2482,2483,2485,2486,2488,2489,2490,2491,2492,2493,2494,2497,2498,2499,2502,2503,2504,2505,2507,2508,2511,2513,2514,2515,2518,2519,2520,2521,2523,2524,2527,2529,2530,2531,2534,2535,2536,2537,2539,2542,2543,2544,2545,2546,2547,2549,2550,2551,2553,2554,2555,2557,2558,2560,2561,2562,2563,2565,2566,2567,2569,2570,2571,2573,2574,2577,2578,2579,2581,2582,2584,2585,2586,2587,2588,2589,2590,2594,2595,2598,2599,2600,2601,2603,2605,2610,2611,2614,2615,2616,2617,2619,2620,2623,2625,2626,2627,2630,2631,2632,2633,2635,2638,2639,2640,2641,2642,2643,2645,2646,2647,2649,2650,2651,2653,2654,2656,2657,2658,2659,2661,2662,2663,2665,2666,2667,2669,2670,2673,2674,2675,2677,2678,2680,2681,2682,2683,2684,2686,2690,2691,2694,2695,2697,2698,2699,2702,2703,2704,2705,2706,2707,2708,2709,2710,2715,2720,2721,2722,2723,2725,2726,2727,2729,2730,2731,2732,2734,2737,2738,2739,2741,2742,2745,2746,2747,2748,2749,2750,2753,2754,2755,2757,2758,2760,2761,2762,2763,2764,2765,2766,2768,2769,2770,2771,2772,2773,2774,2777,2778,2779,2780,2783,2784,2786,2787,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2800,2801,2802,2803,2805,2807,2808,2810,2811,2812,2814,2815,2817,2819,2820,2822,2823,2825,2827,2830,2831,2835,2836,2837,2838,2839,2840,2841,2842,2844,2845,2846,2847,2848,2849,2850,2855,2860,2862,2863,2865,2867,2870,2871,2875,2876,2878,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2895,2900,2901,2902,2903,2904,2905,2906,2908,2910,2911,2913,2915,2916,2918,2919, -2921,2923,2926,2927,2931,2932,2933,2934,2935,2936,2937,2938,2943,2948,2949,2950,2951,2952,2953,2954,2956,2958,2959,2961,2963,2966,2967,2971,2972,2974,2975,2977,2979,2980,2981,2982,2983,2984,2985,2986,2988,2989,2990,2991,2992,2993,2994,2999,3004,3006,3007,3009,3011,3012,3014,3015,3017,3019,3022,3023,3027,3028,3029,3030,3031,3032,3033,3034,3036,3037,3038,3039,3040,3041,3042,3047,3052,3054,3055,3057,3059,3062,3063,3067,3068,3070,3071,3073,3075,3076,3077,3078,3079,3080,3081,3082,3087,3092,3093,3094,3095,3096,3097,3098,3100,3102,3103,3105,3107,3108,3110,3111,3113,3115,3118,3119,3123,3124,3125,3126,3127,3128,3129,3130,3135,3140,3141,3142,3143,3144,3145,3146,3148,3150,3151,3153,3155,3158,3159,3163,3164,3166,3167,3169,3171,3172,3173,3174,3175,3176,3177,3178,3180,3181,3182,3183,3184,3185,3186,3191,3196,3198,3199,3201,3203,3204,3206,3207,3209,3211,3214,3215,3219,3220,3221,3222,3223,3224,3225,3226,3228,3229,3230,3231,3232,3233,3234,3239,3244,3246,3247,3249,3251,3254,3255,3259,3260,3262,3263,3265,3267,3268,3269,3270,3271,3272,3273,3274,3279,3284,3285,3286,3287,3288,3289,3290,3292,3294,3295,3297,3299,3300,3302,3303,3305,3307,3310,3311,3315,3316,3317,3318,3319,3320,3321,3322,3327,3332,3333,3334,3335,3336,3337,3338,3341,3343,3346,3347,3352,3353,3355,3356,3357,3360,3361,3364,3368,3369,3372,3376,3377,3380,3384,3385,3388,3392,3393,3396,3400,3401,3404,3408,3409,3412,3416,3417,3420,3424,3425,3428,3432,3433,3436,3440,3441,3444,3448,3449,3452,3456,3457,3460,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3484,3485,3486,3487,3488,3489,3490,3493,3494,3495,3498,3499,3500,3501,3502,3503,3504,3505,3506,3508,3509,3510,3511,3512,3513,3514,3517,3518,3519,3522,3523,3524,3525,3526,3527,3528,3529,3530,3533,3534,3535,3538,3539,3540,3541,3542,3543,3544,3545,3546,3548,3549,3550,3551,3552,3553,3554,3556,3557,3558,3559,3560,3561,3562,3565,3566,3567,3570,3571,3572,3573,3574,3575,3576,3577,3578,3580,3581,3582,3583,3584,3585,3586,3588,3589,3590,3591,3592,3593,3594,3596,3597,3598,3599,3600,3601,3602,3604,3605, -3606,3607,3608,3609,3610,3613,3614,3615,3618,3619,3620,3621,3622,3623,3624,3625,3626,3630,3631,3634,3635,3636,3637,3638,3639,3640,3641,3642,3645,3646,3647,3650,3651,3652,3653,3655,3656,3657,3658,3659,3660,3661,3662,3666,3667,3670,3671,3672,3673,3674,3675,3676,3677,3678,3681,3682,3683,3686,3687,3688,3689,3691,3692,3693,3694,3695,3696,3697,3698,3702,3703,3706,3707,3708,3709,3710,3711,3712,3713,3714,3717,3718,3719,3722,3723,3724,3725,3727,3728,3729,3731,3732,3733,3736,3737,3738,3739,3740,3741,3742,3745,3746,3747,3750,3751,3752,3755,3756,3757,3758,3759,3760,3761,3762,3765,3766,3767,3770,3771,3772,3773,3775,3776,3777,3779,3780,3781,3782,3783,3784,3785,3786,3788,3789,3790,3792,3793,3794,3796,3797,3798,3799,3800,3801,3802,3804,3805,3806,3807,3808,3810,3814,3815,3818,3819,3820,3821,3822,3823,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3836,3837,3838,3839,3840,3841,3842,3845,3846,3847,3850,3851,3852,3853,3855,3856,3857,3859,3860,3861,3862,3863,3864,3865,3866,3868,3869,3870,3872,3874,3876,3877,3878,3879,3880,3881,3882,3884,3885,3886,3888,3890,3892,3893,3894,3895,3896,3897,3898,3900,3901,3902,3903,3904,3905,3906,3908,3909,3910,3911,3912,3913,3914,3917,3918,3919,3922,3923,3924,3927,3928,3929,3931,3932,3933,3934,3935,3936,3937,3938,3940,3941,3942,3944,3946,3948,3949,3950,3951,3952,3953,3954,3956,3957,3958,3960,3962,3964,3965,3966,3967,3968,3969,3970,3972,3973,3974,3975,3976,3977,3978,3980,3981,3982,3983,3984,3986,3988,3989,3991,3992,3993,3996,3997,3998,3999,4000,4001,4002,4004,4005,4006,4007,4008,4009,4010,4012,4013,4014,4015,4016,4017,4018,4020,4021,4022,4023,4024,4025,4026,4028,4029,4030,4031,4032,4033,4034,4037,4038,4039,4042,4043,4044,4045,4046,4047,4048,4049,4050,4052,4053,4054,4055,4056,4058,4059,4060,4061,4062,4063,4064,4066,4068,4069,4070,4071,4072,4073,4074,4076,4077,4079,4080,4081,4084,4085,4086,4087,4088,4090,4092,4093,4095,4096,4097,4100,4101,4102,4103,4104,4105,4106,4108,4109,4110,4111,4112,4114,4116,4117,4119,4120,4121,4124,4125,4126,4127,4128,4129,4130,4132,4133,4134,4135,4136,4138,4140,4141,4142,4143,4144, -4145,4146,4148,4149,4151,4152,4153,4156,4157,4158,4159,4160,4162,4164,4165,4166,4167,4168,4169,4170,4172,4173,4175,4176,4177,4180,4181,4182,4183,4184,4186,4188,4189,4191,4192,4193,4196,4197,4198,4199,4200,4201,4202,4204,4205,4206,4207,4208,4210,4212,4213,4215,4216,4217,4220,4221,4222,4223,4224,4225,4226,4228,4229,4230,4231,4232,4234,4236,4237,4238,4239,4240,4241,4242,4244,4245,4247,4248,4249,4252,4253,4254,4255,4256,4258,4260,4261,4262,4263,4264,4265,4266,4268,4269,4271,4272,4273,4276,4277,4278,4279,4280,4282,4284,4285,4287,4288,4289,4292,4293,4294,4295,4296,4297,4298,4300,4301,4302,4303,4304,4306,4308,4309,4311,4312,4313,4316,4317,4318,4319,4320,4321,4322,4324,4325,4326,4327,4330,4332,4333,4334,4335,4336,4338,4342,4343,4346,4347,4349,4350,4351,4354,4359,4363,4365,4366,4367,4370,4375,4379,4383,4387,4391,4393,4394,4395,4398,4403,4407,4409,4410,4411,4414,4419,4423,4427,4431,4433,4434,4435,4438,4443,4447,4451,4453,4454,4455,4458,4463,4467,4471,4473,4474,4475,4478,4483,4487,4491,4493,4494,4495,4498,4503,4507,4511,4513,4514,4515,4518,4523,4527,4531,4533,4534,4535,4538,4543,4547,4551,4553,4554,4555,4558,4563,4567,4571,4573,4574,4575,4578,4583,4587,4591,4593,4594,4595,4598,4603,4607,4608,4609,4610,4611,4612,4614,4618,4619,4622,4623,4625,4626,4627,4629,4630,4633,4634,4635,4638,4639,4641,4642,4645,4646,4649,4650,4651,4654,4657,4658,4661,4662,4665,4666,4667,4670,4673,4674,4677,4678,4681,4682,4683,4686,4689,4690,4693,4694,4697,4698,4699,4702,4705,4706,4709,4710,4713,4714,4715,4718,4721,4722,4725,4726,4729,4730,4731,4734,4737,4738,4741,4742,4745,4746,4747,4750,4753,4754,4757,4758,4761,4762,4763,4766,4769,4770,4773,4774,4777,4778,4779,4782,4785,4786,4789,4790,4793,4794,4795,4798,4801,4802,4805,4806,4809,4810,4811,4814,4817,4818,4821,4822,4825,4826,4827,4830,4833,4834,4837,4838,4841,4842,4843,4846,4849,4850,4853,4854,4857,4858,4859,4862,4865,4866,4869,4870,4873,4874,4875,4878,4881,4882,4885,4886,4889,4890,4891,4894,4897,4898,4901,4902,4905,4906,4907,4910,4913,4914,4917,4918,4921,4922,4923,4926,4929,4930,4933,4934,4937,4938,4939, -4942,4945,4946,4949,4950,4953,4954,4955,4958,4961,4962,4965,4966,4969,4970,4971,4974,4977,4978,4981,4982,4985,4986,4987,4990,4993,4994,4997,4998,5001,5002,5003,5006,5009,5010,5013,5014,5017,5018,5019,5022,5025,5026,5029,5030,5033,5034,5035,5038,5041,5042,5045,5046,5049,5050,5051,5054,5056,5057,5058,5059,5060,5061,5062,5066,5067,5071,5073,5074,5075,5078,5083,5087,5089,5090,5091,5094,5099,5103,5105,5106,5107,5110,5115,5119,5121,5122,5123,5126,5131,5135,5137,5138,5139,5142,5147,5151,5153,5154,5155,5158,5163,5167,5169,5170,5171,5174,5179,5183,5185,5186,5187,5190,5195,5199,5201,5202,5203,5206,5211,5215,5217,5218,5219,5222,5227,5231,5233,5234,5235,5238,5243,5247,5249,5250,5251,5254,5259,5263,5265,5266,5267,5270,5275,5279,5281,5282,5283,5286,5291,5295,5297,5298,5299,5302,5307,5311,5313,5314,5315,5318,5323,5327,5329,5330,5331,5334,5339,5343,5345,5346,5347,5350,5355,5359,5361,5362,5363,5366,5371,5375,5377,5378,5379,5382,5387,5391,5393,5394,5395,5398,5403,5407,5409,5410,5411,5414,5419,5423,5425,5426,5427,5430,5435,5439,5441,5442,5443,5446,5451,5455,5457,5458,5459,5462,5467,5471,5473,5474,5475,5478,5483,5487,5489,5490,5491,5494,5499,5503,5504,5505,5506,5507,5511,5512,5514,5515,5519,5522,5530,5538,5546,5554,5562,5570,5578,5586,5594,5602,5610,5618,5626,5634,5642,5650,5658,5666,5674,5682,5690,5698,5706,5714,5722,5729,5731,5737,5738,5740,5741,5746,5753,5754,5756,5762,5769,5770,5772,5778,5785,5786,5788,5794,5801,5802,5804,5810,5817,5818,5820,5826,5833,5834,5836,5842,5849,5850,5852,5858,5865,5866,5868,5874,5881,5882,5884,5890,5897,5898,5900,5906,5913,5914,5916,5922,5929,5930,5932,5938,5944,5945,5947,5948,5953,5956,5957,5958,5962,5965,5973,5981,5989,5997,6005,6013,6021,6029,6037,6045,6053,6061,6069,6071,6078,6081,6086,6094,6102,6110,6118,6126,6134,6142,6150,6158,6166,6174,6181,6183,6189,6190,6193,6194,6197,6198,6199,6202,6204,6205,6206,6207,6208,6210,6215,6219,6220,6221,6222,6223,6224,6226,6231,6235,6236,6237,6238,6239,6240,6242,6247,6251,6252,6253,6254,6255,6256,6258,6263,6267,6268,6269,6270,6271,6272,6274,6279,6283,6284,6285,6286, -6287,6288,6290,6295,6299,6300,6301,6302,6304,6306,6311,6316,6317,6318,6319,6320,6322,6327,6331,6333,6334,6338,6343,6349,6350,6351,6354,6359,6363,6365,6366,6370,6375,6381,6382,6383,6386,6391,6395,6397,6398,6402,6407,6413,6414,6415,6418,6423,6427,6429,6430,6434,6439,6445,6446,6447,6450,6455,6459,6461,6462,6466,6471,6477,6478,6479,6482,6487,6491,6493,6494,6497,6498,6501,6503,6509,6513,6518,6519,6522,6523,6524,6525,6526,6528,6529,6530,6533,6535,6540,6541,6542,6544,6545,6546,6549,6551,6556,6557,6558,6560,6561,6562,6565,6567,6572,6573,6574,6576,6577,6578,6581,6583,6588,6589,6590,6592,6593,6594,6597,6599,6604,6605,6606,6608,6609,6610,6613,6615,6620,6621,6622,6624,6625,6626,6629,6631,6636,6637,6638,6640,6641,6642,6645,6647,6652,6653,6654,6656,6657,6658,6661,6663,6668,6669,6670,6672,6674,6679,6686,6693,6695,6701,6703,6706,6708,6709,6710,6711,6713,6714,6715,6716,6718,6719,6721,6722,6724,6725,6726,6727,6729,6730,6731,6732,6734,6735,6737,6738,6740,6741,6742,6743,6745,6746,6747,6748,6750,6751,6753,6754,6756,6757,6758,6759,6761,6762,6763,6764,6766,6767,6770,6771,6772,6773,6774,6775,6777,6778,6779,6780,6782,6783,6786,6787,6788,6789,6790,6791,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6804,6805,6806,6807,6809,6810,6811,6812,6814,6815,6818,6819,6820,6821,6822,6823,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6836,6837,6838,6839,6841,6842,6843,6844,6846,6847,6850,6851,6852,6853,6854,6855,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6868,6869,6870,6871,6873,6874,6875,6876,6878,6879,6881,6882,6884,6885,6886,6887,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6900,6901,6902,6903,6905,6907,6908,6911,6914,6915,6916,6917,6918,6919,6921,6922,6923,6924,6926,6927,6930,6931,6932,6933,6935,6937,6938,6939,6940,6942,6943,6945,6948,6949,6950,6951,6953,6955,6956,6959,6962,6963,6964,6965,6966,6967,6969,6970,6971,6972,6974,6975,6978,6979,6980,6981,6983,6985,6986,6987,6988,6990,6991,6993,6996,6997,6998,6999,7001,7003,7004,7007,7010,7011,7012,7013,7014,7015,7017,7018,7019,7020,7022,7023,7026,7027,7028,7029,7031,7033,7034,7035,7036, -7038,7039,7041,7044,7045,7047,7049,7050,7051,7052,7054,7055,7057,7060,7061,7062,7063,7066,7067,7069,7071,7074,7075,7077,7078,7082,7083,7084,7086,7087,7092,7093,7094,7095,7097,7098,7099,7100,7102,7103,7106,7107,7108,7109,7111,7113,7114,7115,7116,7118,7119,7121,7124,7125,7127,7129,7130,7131,7132,7134,7135,7137,7140,7141,7143,7144,7145,7148,7149,7150,7151,7152,7153,7154,7157,7158,7159,7161,7162,7164,7165,7166,7167,7168,7170,7171,7172,7174,7175,7177,7178,7179,7181,7182,7183,7185,7186,7188,7189,7190,7191,7193,7194,7195,7196,7198,7199,7202,7203,7204,7205,7207,7209,7210,7211,7212,7214,7215,7217,7220,7221,7223,7225,7226,7227,7228,7230,7231,7233,7236,7237,7239,7240,7241,7244,7245,7246,7247,7248,7249,7250,7253,7254,7255,7257,7258,7260,7261,7262,7263,7264,7265,7266,7269,7270,7271,7273,7274,7277,7278,7279,7281,7282,7284,7285,7286,7287,7289,7290,7291,7293,7295,7298,7299,7300,7301,7303,7305,7306,7307,7309,7311,7316,7317,7319,7321,7322,7323,7324,7326,7327,7329,7332,7333,7335,7336,7337,7340,7341,7342,7343,7344,7345,7346,7349,7350,7351,7353,7354,7356,7357,7358,7359,7360,7361,7362,7365,7366,7367,7369,7370,7373,7374,7375,7377,7378,7380,7381,7382,7383,7385,7386,7387,7388,7390,7394,7397,7398,7399,7402,7403,7404,7405,7406,7407,7411,7413,7418,7419,7420,7421,7422,7423,7424,7425,7426,7428,7430,7431,7433,7435,7437,7438,7439,7441,7442,7444,7446,7447,7449,7450,7451,7453,7454,7455,7457,7458,7460,7461,7462,7463,7465,7466,7467,7469,7470,7471,7474,7475,7477,7478,7479,7481,7482,7483,7484,7486,7488,7489,7490,7491,7493,7494,7495,7496,7497,7502,7503,7504,7506,7507,7509,7510,7511,7512,7514,7517,7518,7519,7522,7523,7525,7527,7530,7532,7533,7534,7535,7537,7538,7539,7540,7541,7542,7543,7547,7549,7554,7555,7557,7558,7559,7562,7563,7565,7567,7570,7573,7574,7575,7576,7578,7580,7581,7582,7583,7587,7589,7594,7595,7596,7597,7598,7599,7601,7602,7603,7605,7606,7607,7608,7610,7613,7614,7615,7618,7619,7621,7623,7626,7628,7629,7630,7631,7635,7637,7642,7643,7644,7645,7646,7647,7649,7650,7651,7653,7654,7655,7658,7659,7661,7663,7666,7669,7670,7671,7672,7674,7676,7677, -7678,7679,7681,7682,7683,7684,7685,7686,7687,7691,7693,7698,7699,7701,7702,7703,7704,7706,7709,7710,7711,7714,7715,7717,7719,7722,7724,7725,7726,7727,7729,7730,7731,7732,7733,7734,7735,7739,7741,7746,7747,7749,7750,7751,7754,7755,7757,7759,7762,7765,7766,7767,7768,7770,7772,7773,7774,7775,7779,7781,7786,7787,7788,7789,7790,7791,7793,7794,7795,7797,7798,7799,7800,7802,7805,7806,7807,7810,7811,7813,7815,7818,7820,7821,7822,7823,7827,7829,7834,7835,7836,7837,7838,7839,7841,7842,7843,7845,7846,7847,7850,7851,7853,7855,7858,7861,7862,7863,7864,7866,7868,7869,7870,7871,7873,7874,7875,7876,7877,7878,7879,7883,7885,7890,7891,7893,7894,7895,7896,7898,7901,7902,7903,7906,7907,7909,7911,7914,7916,7917,7918,7919,7921,7922,7923,7924,7925,7926,7927,7931,7933,7938,7939,7941,7942,7943,7946,7947,7949,7951,7954,7957,7958,7959,7960,7962,7964,7965,7966,7967,7971,7973,7978,7979,7980,7981,7982,7983,7985,7986,7987,7989,7990,7991,7992,7994,7997,7998,7999,8002,8003,8005,8007,8010,8012,8013,8014,8015,8019,8021,8026,8027,8028,8029,8030,8031,8033,8034,8035,8037,8039,8042,8043,8048,8050,8051,8054,8055,8058,8059,8063,8066,8067,8071,8074,8075,8079,8082,8083,8087,8090,8091,8095,8098,8099,8103,8106,8107,8111,8114,8115,8119,8122,8123,8127,8130,8131,8135,8138,8139,8143,8146,8147,8151,8154,8155,8159,8160,8161,8162,8163,8164,8166,8167,8168,8169,8170,8172,8173,8174,8175,8176,8178,8179,8180,8181,8182,8184,8185,8186,8187,8188,8190,8191,8192,8193,8194,8196,8197,8198,8199,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8213,8214,8215,8218,8219,8220,8221,8222,8223,8225,8226,8227,8229,8230,8231,8233,8234,8237,8238,8239,8242,8243,8244,8245,8246,8247,8248,8249,8250,8253,8254,8255,8258,8259,8260,8261,8262,8263,8265,8266,8267,8268,8269,8270,8271,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8285,8286,8287,8290,8291,8292,8293,8294,8295,8297,8298,8299,8300,8301,8302,8303,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8316,8317,8318,8319,8321,8322,8323,8325,8326,8327,8329,8330,8333,8334,8335,8338,8339,8340,8341,8342,8343,8344,8345,8346,8349,8351,8355,8356, -8357,8358,8359,8360,8361,8362,8365,8366,8367,8370,8371,8372,8373,8374,8376,8378,8379,8380,8381,8384,8385,8386,8387,8388,8389,8390,8393,8395,8399,8400,8401,8402,8403,8404,8405,8406,8409,8410,8411,8414,8415,8416,8417,8418,8420,8422,8423,8424,8425,8428,8429,8430,8431,8432,8433,8434,8437,8439,8443,8444,8445,8446,8447,8448,8449,8450,8453,8454,8455,8458,8459,8460,8461,8462,8464,8466,8467,8468,8469,8473,8474,8475,8477,8478,8480,8481,8482,8483,8484,8485,8486,8489,8490,8491,8494,8495,8497,8498,8500,8502,8503,8504,8508,8509,8510,8511,8512,8513,8514,8517,8518,8519,8522,8523,8524,8525,8526,8528,8530,8531,8532,8533,8536,8537,8538,8540,8542,8543,8544,8545,8548,8549,8550,8551,8553,8554,8555,8556,8558,8559,8561,8562,8563,8564,8565,8566,8567,8569,8570,8571,8573,8574,8577,8578,8581,8582,8583,8586,8588,8590,8591,8593,8594,8595,8596,8597,8598,8599,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8613,8614,8615,8618,8619,8620,8621,8622,8624,8626,8627,8628,8629,8632,8633,8634,8636,8638,8639,8640,8641,8644,8645,8646,8647,8649,8650,8651,8652,8654,8655,8657,8659,8660,8661,8662,8663,8665,8666,8667,8668,8670,8671,8673,8675,8676,8677,8678,8679,8681,8682,8683,8684,8685,8686,8687,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8701,8702,8703,8706,8707,8709,8710,8712,8715,8716,8717,8720,8721,8722,8724,8726,8727,8728,8729,8732,8733,8734,8735,8737,8738,8739,8740,8742,8743,8745,8747,8748,8749,8750,8751,8753,8754,8755,8756,8758,8759,8761,8763,8764,8765,8766,8767,8769,8770,8771,8772,8773,8774,8775,8777,8778,8779,8780,8781,8782,8783,8784,8786,8788,8790,8792,8795,8798,8799,8800,8801,8802,8803,8805,8806,8807,8808,8809,8810,8811,8813,8814,8815,8816,8817,8818,8819,8821,8822,8823,8825,8826,8827,8829,8830,8831,8833,8834,8835,8837,8838,8841,8842,8843,8846,8847,8849,8850,8851,8853,8854,8855,8856,8858,8859,8860,8861,8862,8864,8866,8869,8870,8871,8873,8874,8875,8876,8879,8882,8883,8884,8885,8886,8888,8890,8892,8895,8898,8899,8901,8902,8903,8905,8906,8907,8908,8909,8910,8912,8914,8916,8919,8922,8923,8925,8926,8927,8929,8930,8931,8932,8933,8934,8936,8938,8941, -8942,8943,8945,8946,8947,8948,8951,8954,8955,8956,8957,8958,8960,8962,8965,8966,8967,8969,8970,8971,8972,8975,8978,8979,8980,8981,8982,8984,8986,8988,8991,8994,8995,8997,8998,8999,9001,9002,9003,9004,9005,9006,9008,9010,9012,9015,9018,9019,9021,9022,9023,9025,9026,9027,9028,9029,9030,9032,9034,9037,9038,9039,9041,9042,9043,9044,9047,9050,9051,9052,9053,9054,9056,9058,9061,9062,9063,9065,9066,9067,9068,9071,9074,9075,9076,9077,9078,9080,9082,9084,9087,9090,9091,9093,9094,9095,9097,9098,9099,9100,9101,9102,9104,9106,9108,9111,9114,9115,9117,9118,9119,9121,9122,9123,9124,9126,9127,9130,9131,9132,9133,9134,9135,9136,9137,9138,9141,9143,9147,9148,9149,9150,9152,9154,9159,9164,9165,9166,9168,9170,9175,9180,9181,9182,9184,9186,9191,9196,9197,9198,9200,9202,9207,9212,9213,9214,9216,9218,9223,9228,9229,9230,9232,9234,9239,9244,9245,9246,9248,9250,9255,9260,9261,9262,9264,9266,9271,9276,9277,9278,9280,9282,9287,9292,9293,9294,9296,9298,9303,9308,9309,9310,9312,9314,9319,9324,9325,9326,9328,9330,9335,9340,9341,9342,9344,9346,9351,9357,9358,9361,9362,9365,9366,9367,9370,9372,9373,9374,9376,9377,9378,9381,9382,9383,9386,9389,9390,9393,9394,9397,9398,9399,9402,9405,9406,9409,9410,9413,9414,9415,9418,9421,9422,9425,9426,9429,9430,9431,9434,9437,9438,9441,9442,9445,9446,9447,9450,9453,9454,9457,9458,9461,9462,9463,9466,9469,9470,9473,9474,9477,9478,9479,9482,9485,9486,9489,9490,9493,9494,9495,9498,9501,9502,9505,9506,9509,9510,9511,9514,9517,9518,9521,9522,9525,9526,9527,9530,9533,9534,9537,9538,9541,9542,9543,9546,9549,9550,9553,9554,9557,9558,9559,9562,9565,9566,9569,9570,9573,9574,9575,9578,9581,9582,9585,9586,9589,9590,9591,9594,9597,9598,9601,9602,9605,9606,9607,9610,9613,9614,9617,9618,9621,9622,9623,9626,9629,9630,9633,9634,9637,9638,9639,9642,9645,9646,9649,9650,9653,9654,9655,9658,9661,9662,9665,9666,9669,9670,9671,9674,9677,9678,9681,9682,9685,9686,9687,9690,9693,9694,9697,9698,9701,9702,9703,9706,9709,9710,9713,9714,9717,9718,9719,9722,9725,9726,9729,9730,9733,9734,9735,9738,9741,9742,9745,9746,9749,9750,9751,9754,9757, -9758,9761,9762,9765,9766,9767,9770,9773,9774,9777,9778,9781,9782,9783,9786,9789,9790,9793,9794,9797,9798,9799,9802,9804,9805,9806,9807,9808,9809,9810,9814,9815,9819,9820,9821,9822,9824,9826,9831,9836,9837,9838,9840,9842,9847,9852,9853,9854,9856,9858,9863,9868,9869,9870,9872,9874,9879,9884,9885,9886,9888,9890,9895,9900,9901,9902,9904,9906,9911,9916,9917,9918,9920,9922,9927,9932,9933,9934,9936,9938,9943,9948,9949,9950,9952,9954,9959,9964,9965,9966,9968,9970,9975,9980,9981,9982,9984,9986,9991,9996,9997,9998,10000,10002,10007,10012,10013,10014,10016,10018,10023,10028,10029,10030,10032,10034,10039,10044,10045,10046,10048,10050,10055,10060,10061,10062,10064,10066,10071,10076,10077,10078,10080,10082,10087,10092,10093,10094,10096,10098,10103,10108,10109,10110,10112,10114,10119,10124,10125,10126,10128,10130,10135,10140,10141,10142,10144,10146,10151,10156,10157,10158,10160,10162,10167,10172,10173,10174,10176,10178,10183,10188,10189,10190,10192,10194,10199,10204,10205,10206,10208,10210,10215,10220,10221,10222,10224,10226,10231,10236,10237,10238,10240,10242,10247,10253,10254,10255,10258,10260,10262,10263,10266,10267,10271,10279,10287,10295,10303,10311,10319,10327,10335,10343,10351,10359,10367,10375,10383,10391,10399,10407,10415,10423,10431,10439,10447,10455,10463,10471,10477,10479,10484,10487,10490,10491,10495,10500,10503,10507,10511,10516,10519,10523,10527,10532,10535,10539,10543,10548,10551,10555,10559,10564,10567,10571,10575,10580,10583,10587,10591,10596,10599,10603,10607,10612,10615,10619,10623,10628,10631,10635,10639,10644,10647,10651,10655,10660,10663,10667,10671,10676,10679,10683,10687,10692,10693,10695,10699,10700,10701,10702,10703,10707,10711,10715,10717,10719,10722,10730,10738,10746,10754,10762,10770,10778,10786,10794,10802,10810,10818,10824,10826,10889,10890,10893,10894,10897,10898,10899,10902,10904,10905,10906,10907,10908,10910,10915,10919,10920,10921,10922,10923,10924,10926,10931,10935,10936,10937,10938,10939,10940,10942,10947,10951,10952,10953,10954,10955,10956,10958,10963,10967,10968,10969,10970,10971,10972,10974, -10979,10983,10984,10985,10986,10987,10988,10990,10995,10999,11001,11002,11003,11006,11011,11015,11016,11017,11018,11019,11020,11022,11027,11031,11033,11034,11038,11043,11048,11049,11050,11052,11054,11059,11065,11066,11070,11075,11080,11081,11082,11084,11086,11091,11097,11098,11102,11107,11112,11113,11114,11116,11118,11123,11129,11130,11134,11139,11144,11145,11146,11148,11150,11155,11161,11162,11166,11171,11176,11177,11178,11180,11182,11187,11193,11194,11198,11202,11203,11206,11210,11211,11213,11214,11216,11217,11218,11219,11220,11222,11226,11227,11230,11231,11233,11234,11235,11238,11242,11243,11246,11247,11249,11250,11251,11254,11258,11259,11262,11263,11265,11266,11267,11270,11274,11275,11278,11279,11281,11282,11283,11286,11290,11291,11294,11295,11297,11298,11299,11302,11306,11307,11310,11311,11313,11314,11315,11318,11322,11323,11326,11327,11329,11330,11331,11334,11338,11339,11342,11343,11345,11346,11347,11350,11354,11355,11358,11359,11361,11362,11363,11366,11370,11371,11374,11375,11377,11378,11382,11386,11387,11390,11394,11395,11397,11401,11402,11403,11406,11411,11414,11416,11418,11421,11423,11425,11429,11436,11444,11445,11448,11453,11457,11461,11471,11477,11482,11486,11489,11493,11497,11501,11505,11509,11513,11517,11521,11525,11529,11533,11537,11541,11545,11549,11553,11557,11561,11565,11569,11573,11577,11581,11585,11594,11597,11601,11621,11629,11631,11637,11656,11663,11664,11665,11667,11668,11669,11672,11673,11674,11678,11679,11681,11682,11684,11685,11686,11687,11689,11690,11692,11693,11694,11698,11700,11701,11702,11704,11705,11706,11709,11713,11714,11717,11718,11720,11721,11722,11725,11729,11730,11733,11734,11736,11737,11741,11745,11746,11749,11752,11753,11754,11756,11757,11761,11764,11765,11766,11769,11771,11774,11775,11776,11777,11778,11780,11782,11785,11786,11789,11790,11793,11797,11798,11800,11801,11803,11804,11805,11807,11808,11809,11810,11811,11812,11814,11816,11819,11820,11821,11823,11824,11827,11828,11831,11832,11833,11836,11839,11840,11843,11844,11847,11848,11849,11852,11855,11856,11859,11860,11863,11864, -11865,11868,11870,11871,11873,11880,11881,11884,11887,11888,11889,11890,11893,11896,11900,11902,11904,11905,11906,11907,11909,11910,11914,11915,11917,11918,11921,11923,11924,11925,11928,11929,11931,11932,11935,11940,11944,11945,11948,11949,11952,11955,11958,11960,11967,11968,11971,11975,11977,11978,11979,11980,11981,11982,11983,11986,11987,11988,11991,11992,11993,11994,11995,11996,11997,11998,11999,12002,12003,12004,12006,12007,12010,12011,12012,12013,12016,12017,12018,12019,12020,12021,12022,12023,12026,12027,12028,12029,12032,12033,12034,12036,12037,12038,12041,12042,12044,12045,12046,12049,12050,12051,12052,12053,12054,12055,12057,12058,12059,12060,12061,12062,12063,12065,12066,12067,12068,12069,12070,12071,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12086,12087,12088,12091,12092,12093,12094,12095,12096,12097,12098,12099,12101,12102,12103,12104,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12118,12119,12120,12123,12124,12125,12126,12127,12128,12129,12130,12131,12133,12134,12135,12136,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12150,12151,12152,12155,12156,12157,12158,12159,12160,12161,12162,12163,12165,12166,12167,12168,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12181,12182,12183,12184,12185,12186,12187,12189,12190,12191,12192,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12206,12207,12208,12211,12212,12213,12214,12215,12216,12217,12218,12219,12222,12223,12224,12227,12228,12229,12230,12231,12232,12233,12234,12235,12237,12238,12239,12240,12241,12242,12243,12246,12247,12248,12251,12252,12253,12254,12255,12256,12257,12258,12259,12262,12263,12264,12267,12268,12269,12270,12271,12272,12273,12274,12275,12277,12278,12279,12280,12281,12282,12283,12286,12287,12288,12291,12292,12293,12294,12295,12296,12297,12298,12299,12302,12303,12304,12307,12308,12309,12310,12311,12312,12313,12314,12315,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12330,12331,12332,12335,12336,12337,12338,12339,12340,12341,12342,12343,12345,12346,12347, -12348,12349,12350,12351,12354,12355,12356,12359,12360,12361,12362,12363,12364,12365,12366,12367,12369,12370,12371,12372,12373,12374,12375,12377,12378,12380,12383,12384,12385,12386,12387,12388,12390,12391,12392,12394,12395,12396,12398,12399,12401,12402,12403,12404,12406,12407,12408,12409,12410,12411,12412,12414,12415,12416,12418,12419,12420,12422,12423,12425,12426,12427,12428,12429,12430,12431,12434,12435,12436,12439,12440,12441,12442,12443,12444,12445,12446,12447,12449,12450,12451,12452,12453,12454,12455,12457,12458,12460,12463,12464,12465,12466,12467,12468,12470,12471,12472,12474,12475,12476,12478,12479,12481,12482,12483,12484,12486,12487,12488,12490,12491,12492,12494,12495,12498,12499,12500,12502,12503,12505,12506,12507,12508,12509,12510,12511,12514,12515,12516,12519,12520,12521,12522,12523,12524,12525,12526,12527,12529,12530,12531,12532,12533,12534,12535,12537,12538,12540,12543,12544,12545,12546,12547,12548,12550,12551,12552,12554,12555,12556,12558,12559,12561,12562,12563,12564,12566,12567,12568,12570,12571,12572,12574,12575,12578,12579,12580,12582,12583,12585,12586,12587,12588,12589,12591,12594,12595,12596,12598,12599,12601,12602,12603,12604,12605,12606,12607,12609,12610,12611,12612,12614,12615,12616,12618,12619,12620,12621,12623,12626,12627,12628,12630,12631,12633,12634,12635,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12649,12650,12651,12652,12653,12654,12655,12658,12659,12660,12663,12664,12665,12667,12668,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12681,12682,12683,12684,12686,12687,12688,12689,12691,12692,12694,12696,12697,12698,12699,12700,12701,12702,12703,12705,12706,12707,12708,12709,12710,12711,12713,12714,12715,12716,12717,12718,12719,12721,12722,12723,12724,12725,12726,12727,12729,12731,12732,12734,12736,12737,12738,12739,12740,12741,12742,12743,12745,12746,12747,12748,12749,12750,12751,12753,12755,12756,12758,12760,12761,12762,12763,12764,12765,12766,12767,12769,12770,12771,12772,12773,12774,12775,12777,12778,12779,12780,12781,12782,12783,12785,12786,12787,12788,12789, -12790,12791,12793,12795,12796,12798,12800,12801,12802,12803,12804,12805,12806,12807,12809,12810,12811,12812,12813,12814,12815,12817,12819,12820,12822,12824,12825,12826,12827,12828,12829,12830,12831,12833,12834,12835,12836,12837,12838,12839,12841,12842,12843,12844,12845,12846,12847,12849,12850,12851,12852,12853,12854,12855,12857,12859,12860,12862,12864,12865,12866,12867,12868,12869,12870,12871,12873,12874,12875,12876,12877,12878,12879,12881,12883,12884,12886,12888,12889,12890,12891,12892,12893,12894,12895,12897,12898,12899,12900,12901,12902,12903,12905,12906,12907,12908,12909,12910,12911,12913,12914,12915,12916,12917,12918,12919,12921,12923,12924,12926,12928,12929,12930,12931,12932,12933,12934,12935,12937,12938,12939,12940,12941,12942,12943,12945,12947,12948,12950,12952,12953,12954,12955,12956,12957,12958,12959,12961,12962,12963,12964,12965,12966,12967,12969,12970,12971,12972,12973,12974,12975,12977,12978,12979,12980,12981,12982,12983,12985,12987,12988,12990,12992,12993,12994,12995,12996,12997,12998,12999,13001,13002,13003,13004,13005,13006,13007,13009,13011,13012,13014,13016,13017,13018,13019,13020,13021,13022,13023,13025,13026,13027,13028,13029,13030,13031,13033,13034,13035,13036,13037,13038,13039,13041,13042,13043,13044,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13058,13060,13064,13065,13066,13067,13069,13071,13076,13081,13082,13083,13085,13087,13092,13099,13107,13115,13121,13122,13123,13125,13127,13132,13137,13138,13139,13141,13143,13148,13155,13163,13169,13170,13171,13173,13175,13180,13187,13193,13194,13195,13197,13199,13204,13211,13217,13218,13219,13221,13223,13228,13235,13241,13242,13243,13245,13247,13252,13259,13265,13266,13267,13269,13271,13276,13283,13289,13290,13291,13293,13295,13300,13307,13313,13314,13315,13317,13319,13324,13331,13338,13340,13347,13353,13354,13355,13357,13359,13364,13369,13370,13371,13372,13373,13374,13375,13377,13378,13379,13380,13381,13382,13383,13385,13386,13387,13388,13389,13390,13391,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13406,13407,13408, -13411,13412,13413,13414,13415,13416,13417,13418,13419,13421,13422,13423,13424,13425,13426,13427,13430,13431,13432,13435,13436,13437,13438,13439,13440,13441,13442,13443,13446,13447,13448,13451,13452,13453,13454,13455,13456,13457,13458,13459,13461,13462,13463,13464,13465,13466,13467,13470,13471,13472,13475,13476,13477,13478,13479,13480,13481,13482,13483,13486,13487,13488,13491,13492,13493,13494,13495,13496,13497,13498,13499,13501,13502,13503,13504,13505,13506,13507,13510,13511,13512,13515,13516,13517,13518,13519,13520,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13533,13534,13535,13536,13537,13538,13539,13542,13543,13544,13547,13548,13549,13550,13551,13552,13553,13554,13555,13558,13559,13560,13563,13564,13565,13566,13567,13568,13569,13570,13571,13573,13574,13575,13576,13577,13578,13579,13582,13583,13584,13587,13588,13589,13590,13591,13592,13593,13594,13595,13598,13599,13600,13603,13604,13605,13606,13607,13608,13609,13610,13611,13613,13614,13615,13616,13617,13618,13619,13622,13623,13624,13627,13628,13629,13630,13631,13632,13633,13634,13635,13638,13639,13640,13643,13644,13645,13646,13647,13648,13649,13650,13651,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13666,13667,13668,13671,13672,13673,13674,13675,13676,13677,13678,13679,13681,13682,13683,13684,13685,13686,13687,13690,13691,13692,13695,13696,13697,13698,13699,13700,13701,13702,13703,13705,13706,13707,13708,13709,13710,13711,13713,13714,13715,13716,13717,13718,13719,13722,13723,13724,13727,13728,13729,13730,13731,13733,13734,13735,13738,13739,13740,13743,13745,13746,13747,13748,13749,13750,13751,13754,13755,13756,13758,13759,13762,13763,13764,13767,13768,13769,13771,13772,13775,13776,13777,13779,13780,13781,13782,13783,13784,13785,13786,13787,13789,13790,13791,13792,13793,13794,13795,13798,13799,13800,13803,13804,13805,13806,13807,13808,13809,13810,13811,13813,13814,13815,13816,13817,13818,13819,13821,13822,13823,13824,13825,13826,13827,13830,13831,13832,13835,13836,13837,13838,13839,13841,13843,13847,13848,13851,13853,13854,13855, -13856,13857,13858,13859,13861,13862,13863,13865,13867,13871,13872,13875,13877,13878,13879,13880,13881,13882,13883,13885,13886,13887,13888,13889,13890,13891,13893,13894,13895,13896,13897,13898,13899,13902,13903,13904,13907,13908,13909,13910,13911,13912,13913,13914,13915,13917,13918,13919,13920,13921,13922,13923,13925,13926,13927,13928,13929,13930,13931,13934,13935,13936,13939,13940,13941,13942,13943,13945,13947,13951,13952,13955,13957,13958,13959,13960,13961,13962,13963,13965,13966,13967,13969,13971,13975,13976,13979,13981,13982,13983,13984,13985,13986,13987,13989,13990,13991,13992,13993,13994,13995,13997,13998,13999,14000,14002,14004,14006,14007,14008,14010,14011,14013,14014,14015,14016,14017,14018,14019,14021,14022,14023,14024,14025,14026,14027,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14041,14042,14043,14044,14045,14046,14047,14050,14051,14052,14055,14056,14057,14058,14059,14060,14061,14062,14063,14065,14066,14067,14068,14071,14072,14073,14074,14075,14076,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14089,14090,14091,14092,14093,14094,14095,14097,14098,14099,14100,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14113,14114,14115,14116,14117,14118,14119,14121,14122,14123,14124,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14137,14138,14139,14140,14141,14142,14143,14145,14146,14147,14148,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14161,14162,14163,14164,14165,14166,14167,14169,14170,14171,14172,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14185,14186,14187,14188,14189,14190,14191,14193,14194,14195,14196,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14209,14210,14211,14212,14213,14214,14215,14217,14218,14219,14220,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14233,14234,14235,14236,14237,14238,14239,14241,14242,14243,14244,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14257,14258,14259,14260,14261,14262,14263,14265,14266,14267,14268,14270,14271,14272,14273,14274,14275,14276,14277, -14278,14279,14281,14282,14283,14284,14285,14286,14287,14289,14290,14291,14292,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14305,14306,14307,14308,14309,14310,14311,14313,14314,14315,14316,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14329,14330,14331,14332,14333,14334,14335,14337,14338,14339,14340,14342,14343,14344,14345,14346,14347,14348,14349,14351,14355,14356,14359,14360,14362,14363,14364,14367,14372,14376,14378,14379,14380,14383,14388,14392,14396,14404,14412,14418,14419,14420,14423,14428,14432,14434,14435,14436,14439,14444,14448,14452,14460,14466,14467,14468,14471,14476,14480,14484,14490,14491,14492,14495,14500,14504,14508,14514,14515,14516,14519,14524,14528,14532,14538,14539,14540,14543,14548,14552,14556,14562,14563,14564,14567,14572,14576,14580,14586,14587,14588,14591,14596,14600,14604,14610,14611,14612,14615,14620,14624,14628,14634,14636,14644,14650,14651,14652,14655,14660,14664,14665,14666,14667,14668,14669,14671,14675,14676,14679,14680,14682,14683,14684,14686,14687,14690,14691,14692,14695,14696,14698,14699,14702,14703,14706,14707,14708,14711,14714,14715,14718,14719,14722,14723,14724,14727,14730,14731,14734,14735,14738,14739,14740,14743,14746,14747,14750,14751,14754,14755,14756,14759,14762,14763,14766,14767,14770,14771,14772,14775,14778,14779,14782,14783,14786,14787,14788,14791,14794,14795,14798,14799,14802,14803,14804,14807,14810,14811,14814,14815,14818,14819,14820,14823,14826,14827,14830,14831,14834,14835,14836,14839,14842,14843,14846,14847,14850,14851,14852,14855,14858,14859,14862,14863,14866,14867,14868,14871,14874,14875,14878,14879,14882,14883,14884,14887,14890,14891,14894,14895,14898,14899,14900,14903,14906,14907,14910,14911,14914,14915,14916,14919,14922,14923,14926,14927,14930,14931,14932,14935,14938,14939,14942,14943,14946,14947,14948,14951,14954,14955,14958,14959,14962,14963,14964,14967,14970,14971,14974,14975,14978,14979,14980,14983,14986,14987,14990,14991,14994,14995,14996,14999,15002,15003,15006,15007,15010,15011,15012,15015,15018,15019,15022,15023,15026,15027,15028, -15031,15034,15035,15038,15039,15042,15043,15044,15047,15051,15052,15054,15055,15058,15059,15062,15063,15066,15067,15068,15071,15074,15075,15078,15079,15082,15083,15084,15087,15090,15091,15094,15095,15098,15099,15100,15103,15105,15106,15107,15108,15109,15110,15111,15114,15115,15116,15119,15120,15122,15123,15124,15127,15132,15136,15138,15139,15140,15143,15148,15152,15154,15155,15156,15159,15164,15168,15170,15171,15172,15175,15180,15184,15186,15187,15188,15191,15196,15200,15202,15203,15204,15207,15212,15216,15218,15219,15220,15223,15228,15232,15234,15235,15236,15239,15244,15248,15250,15251,15252,15255,15260,15264,15266,15267,15268,15271,15276,15280,15282,15283,15284,15287,15292,15296,15298,15299,15300,15303,15308,15312,15314,15315,15316,15319,15324,15328,15330,15331,15332,15335,15340,15344,15346,15347,15348,15351,15356,15360,15362,15363,15364,15367,15372,15376,15378,15379,15380,15383,15388,15392,15394,15395,15396,15399,15404,15408,15410,15411,15412,15415,15420,15424,15426,15427,15428,15431,15436,15440,15442,15443,15444,15447,15452,15456,15458,15459,15460,15463,15468,15472,15474,15475,15476,15479,15484,15488,15489,15492,15496,15498,15499,15500,15503,15508,15512,15514,15515,15516,15519,15524,15528,15530,15531,15532,15535,15540,15544,15545,15546,15547,15548,15550,15551,15552,15553,15554,15555,15557,15559,15563,15571,15579,15587,15595,15603,15611,15619,15627,15635,15643,15651,15659,15667,15675,15683,15691,15699,15707,15715,15723,15731,15739,15751,15759,15766,15768,15774,15775,15776,15778,15779,15781,15782,15784,15789,15790,15793,15801,15802,15805,15811,15817,15818,15821,15827,15833,15834,15837,15843,15849,15850,15853,15859,15865,15866,15869,15875,15881,15882,15885,15891,15897,15898,15901,15907,15913,15914,15917,15923,15929,15930,15933,15939,15945,15946,15949,15955,15961,15962,15965,15971,15977,15978,15980,15981,15985,15986,15987,15988,15990,15991,15992,15993,15996,15999,16000,16003,16011,16019,16027,16035,16043,16051,16059,16067,16075,16083,16091,16099,16107,16115,16123,16131,16139,16147,16155,16163,16171,16179,16191,16199, -16206,16208,16215,16218,16223,16231,16243,16251,16259,16267,16275,16283,16291,16299,16307,16315,16323,16331,16339,16347,16355,16363,16371,16379,16387,16395,16403,16411,16418,16420,16426,16427,16430,16431,16434,16435,16436,16439,16441,16442,16443,16444,16445,16447,16452,16456,16457,16458,16459,16460,16461,16463,16468,16472,16473,16474,16475,16476,16477,16479,16484,16488,16489,16490,16491,16492,16493,16495,16500,16504,16505,16506,16507,16508,16509,16511,16516,16520,16521,16522,16523,16524,16525,16527,16532,16536,16538,16539,16540,16542,16543,16545,16548,16552,16554,16555,16559,16564,16570,16571,16572,16575,16580,16584,16586,16587,16591,16596,16602,16603,16604,16607,16612,16616,16618,16619,16623,16628,16634,16635,16636,16639,16644,16648,16650,16651,16655,16660,16666,16667,16668,16671,16676,16680,16682,16683,16687,16692,16698,16699,16700,16703,16708,16712,16714,16715,16718,16719,16722,16724,16730,16731,16734,16735,16738,16740,16745,16746,16747,16749,16750,16751,16754,16756,16761,16762,16763,16765,16766,16767,16770,16772,16777,16778,16779,16781,16782,16783,16786,16788,16793,16794,16795,16797,16798,16799,16802,16804,16809,16810,16811,16813,16814,16815,16818,16820,16825,16826,16827,16829,16830,16831,16834,16836,16841,16842,16843,16845,16846,16847,16850,16852,16857,16858,16859,16861,16862,16863,16866,16868,16873,16874,16875,16876,16878,16879,16880,16881,16882,16883,16884,16886,16887,16888,16889,16890,16891,16892,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16910,16911,16912,16915,16916,16917,16918,16919,16920,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16933,16934,16935,16936,16937,16938,16939,16942,16943,16944,16947,16948,16949,16950,16951,16952,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16965,16966,16967,16968,16969,16970,16971,16974,16975,16976,16979,16980,16981,16982,16983,16984,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16997,16998,16999,17000,17002,17003,17004,17005,17006,17007,17008,17010,17011,17012,17013,17014,17015,17016,17017, -17018,17019,17021,17022,17023,17024,17025,17026,17027,17030,17031,17032,17035,17036,17037,17038,17039,17040,17041,17042,17043,17046,17047,17048,17051,17052,17053,17054,17055,17056,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17070,17071,17072,17075,17076,17077,17078,17079,17080,17081,17082,17083,17086,17087,17088,17091,17092,17093,17094,17095,17096,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17110,17111,17112,17115,17116,17117,17118,17119,17120,17121,17122,17123,17126,17127,17128,17131,17132,17133,17134,17135,17136,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17154,17155,17156,17159,17160,17161,17162,17163,17164,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17178,17179,17180,17183,17184,17185,17186,17187,17188,17190,17191,17192,17193,17194,17195,17196,17198,17199,17200,17201,17202,17204,17205,17206,17209,17210,17211,17212,17213,17214,17215,17218,17219,17220,17222,17223,17225,17226,17227,17228,17230,17231,17232,17233,17235,17236,17238,17239,17240,17242,17243,17244,17246,17247,17249,17250,17251,17252,17253,17254,17255,17258,17259,17260,17263,17264,17265,17266,17267,17268,17270,17271,17272,17273,17274,17275,17276,17278,17279,17280,17281,17282,17284,17285,17286,17289,17290,17291,17292,17293,17294,17295,17298,17299,17300,17302,17303,17305,17306,17307,17308,17309,17310,17311,17314,17315,17316,17318,17319,17322,17323,17324,17326,17327,17329,17330,17331,17332,17333,17334,17335,17338,17339,17340,17343,17344,17345,17346,17347,17348,17350,17351,17352,17353,17354,17355,17356,17358,17359,17360,17361,17362,17364,17365,17366,17369,17370,17371,17372,17373,17374,17375,17378,17379,17380,17382,17383,17385,17386,17387,17388,17389,17390,17391,17394,17395,17396,17398,17399,17402,17403,17404,17406,17407,17409,17410,17411,17412,17414,17416,17418,17419,17420,17422,17423,17425,17426,17427,17428,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17441,17443,17444,17446,17448,17450,17451,17452,17454,17455,17457,17459,17460,17462,17463,17464,17465,17466, -17467,17468,17470,17471,17472,17474,17475,17476,17478,17479,17482,17483,17484,17487,17488,17490,17491,17492,17493,17495,17497,17498,17499,17500,17502,17503,17504,17505,17507,17508,17510,17511,17512,17514,17515,17516,17517,17519,17521,17522,17523,17524,17526,17527,17528,17529,17530,17531,17532,17534,17535,17536,17537,17538,17539,17540,17542,17543,17544,17545,17546,17547,17548,17550,17551,17552,17554,17555,17556,17557,17559,17561,17562,17563,17564,17566,17567,17568,17569,17570,17571,17572,17574,17575,17576,17578,17579,17580,17581,17583,17585,17586,17587,17588,17590,17591,17592,17593,17594,17595,17596,17598,17599,17600,17601,17602,17603,17604,17606,17607,17608,17609,17610,17611,17612,17614,17615,17616,17618,17619,17620,17621,17623,17625,17626,17627,17628,17630,17631,17632,17633,17634,17635,17636,17638,17639,17640,17642,17643,17644,17645,17647,17649,17650,17651,17652,17654,17655,17656,17657,17658,17659,17660,17662,17663,17664,17665,17666,17667,17668,17670,17671,17672,17673,17674,17675,17676,17678,17679,17680,17682,17683,17684,17685,17687,17689,17690,17691,17692,17694,17695,17696,17697,17698,17699,17700,17702,17703,17704,17706,17707,17708,17709,17711,17713,17714,17715,17716,17718,17719,17720,17721,17722,17723,17724,17726,17727,17728,17729,17730,17731,17732,17734,17735,17736,17737,17738,17739,17740,17742,17743,17744,17746,17747,17748,17749,17751,17753,17754,17755,17756,17758,17759,17760,17761,17762,17763,17764,17766,17767,17768,17770,17771,17772,17773,17775,17777,17778,17779,17780,17782,17783,17784,17785,17786,17787,17788,17790,17791,17792,17793,17794,17795,17796,17798,17799,17800,17801,17802,17803,17804,17806,17807,17808,17810,17811,17812,17813,17815,17817,17818,17819,17820,17822,17823,17824,17825,17826,17827,17828,17830,17831,17832,17834,17835,17836,17837,17839,17841,17842,17843,17844,17846,17847,17848,17849,17850,17851,17852,17854,17855,17856,17857,17858,17859,17860,17862,17863,17864,17865,17866,17867,17868,17870,17871,17872,17873,17874,17875,17876,17877,17879,17883,17884,17887,17888,17890,17891,17892,17895,17900,17904, -17906,17907,17908,17911,17916,17920,17924,17932,17940,17946,17947,17948,17951,17956,17960,17962,17963,17964,17967,17972,17976,17980,17988,17994,17995,17996,17999,18004,18008,18012,18018,18019,18020,18023,18028,18032,18036,18042,18043,18044,18047,18052,18056,18060,18066,18067,18068,18071,18076,18080,18084,18090,18091,18092,18095,18100,18104,18108,18114,18115,18116,18119,18124,18128,18132,18138,18139,18140,18143,18148,18152,18156,18162,18164,18172,18178,18179,18180,18183,18188,18192,18193,18194,18195,18196,18198,18199,18200,18201,18202,18203,18204,18206,18207,18208,18209,18210,18211,18212,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18230,18231,18232,18235,18236,18237,18238,18239,18240,18241,18243,18244,18246,18247,18248,18250,18251,18252,18254,18255,18258,18259,18260,18263,18264,18265,18266,18267,18268,18269,18270,18271,18274,18275,18276,18279,18280,18281,18282,18283,18284,18285,18287,18288,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18302,18303,18304,18307,18308,18309,18310,18311,18312,18313,18314,18315,18318,18319,18320,18323,18324,18325,18326,18327,18328,18329,18331,18332,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18346,18347,18348,18351,18352,18353,18354,18355,18356,18357,18358,18359,18361,18362,18363,18364,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18378,18379,18380,18383,18384,18385,18386,18387,18388,18389,18390,18391,18394,18395,18396,18399,18400,18401,18402,18403,18404,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18418,18419,18420,18423,18424,18425,18426,18427,18428,18429,18430,18431,18434,18435,18436,18439,18440,18441,18442,18443,18444,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18458,18459,18460,18463,18464,18465,18466,18467,18468,18469,18470,18471,18474,18475,18476,18479,18480,18481,18482,18483,18484,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18502,18503,18504,18507,18508,18509,18510,18511,18512,18514,18515,18516,18517,18518,18519,18520,18521,18522, -18523,18526,18527,18528,18531,18532,18533,18534,18535,18536,18538,18539,18540,18541,18542,18543,18544,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18558,18559,18560,18563,18564,18565,18566,18567,18568,18569,18571,18575,18576,18579,18580,18581,18582,18583,18584,18585,18587,18588,18590,18591,18592,18594,18595,18596,18599,18603,18604,18607,18608,18610,18611,18614,18615,18616,18618,18619,18621,18622,18623,18624,18625,18627,18628,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18642,18643,18644,18647,18648,18649,18650,18651,18652,18654,18655,18656,18657,18658,18659,18660,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18674,18675,18676,18679,18680,18681,18682,18683,18685,18687,18691,18692,18695,18697,18698,18699,18700,18701,18703,18704,18706,18707,18708,18709,18710,18711,18713,18715,18719,18720,18723,18725,18726,18727,18728,18729,18731,18732,18734,18735,18736,18737,18738,18739,18740,18741,18743,18744,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18758,18759,18760,18763,18764,18765,18766,18767,18768,18770,18771,18772,18773,18774,18775,18776,18778,18779,18780,18781,18782,18783,18784,18785,18787,18791,18792,18795,18796,18797,18798,18799,18801,18803,18807,18808,18811,18813,18814,18815,18816,18817,18819,18820,18822,18823,18824,18825,18826,18827,18829,18831,18835,18836,18839,18841,18842,18843,18844,18845,18847,18848,18850,18851,18852,18853,18854,18855,18856,18857,18859,18860,18862,18863,18864,18865,18866,18867,18868,18869,18871,18874,18875,18876,18878,18879,18881,18882,18883,18884,18886,18887,18888,18889,18890,18891,18892,18893,18895,18898,18899,18900,18901,18902,18903,18904,18905,18907,18909,18911,18912,18914,18916,18918,18919,18920,18922,18923,18926,18927,18928,18931,18932,18933,18935,18936,18938,18939,18940,18943,18944,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18957,18959,18960,18962,18963,18964,18966,18967,18968,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18982,18983,18984,18986,18987,18988,18989,18991,18992,18994,18995,18996,18997,18998, -18999,19000,19001,19002,19003,19006,19007,19008,19010,19011,19012,19013,19015,19016,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19029,19031,19032,19034,19035,19036,19038,19039,19040,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19053,19055,19056,19058,19059,19060,19062,19063,19064,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19078,19079,19080,19082,19083,19084,19085,19087,19088,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19102,19103,19104,19106,19107,19108,19109,19111,19112,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19125,19127,19128,19130,19131,19132,19134,19135,19136,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19149,19151,19152,19154,19155,19156,19158,19159,19160,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19174,19175,19176,19178,19179,19180,19181,19183,19184,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19198,19199,19200,19202,19203,19204,19205,19207,19208,19210,19211,19212,19213,19214,19215,19216,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19230,19232,19236,19237,19238,19239,19241,19243,19248,19253,19254,19255,19257,19259,19264,19271,19279,19287,19293,19294,19295,19297,19299,19304,19309,19310,19311,19313,19315,19320,19327,19335,19341,19342,19343,19345,19347,19352,19359,19365,19366,19367,19369,19371,19376,19383,19389,19390,19391,19393,19395,19400,19407,19413,19414,19415,19417,19419,19424,19431,19437,19438,19439,19441,19443,19448,19455,19461,19462,19463,19465,19467,19472,19479,19485,19486,19487,19489,19491,19496,19503,19510,19512,19519,19525,19526,19527,19529,19531,19536,19542,19543,19546,19547,19550,19551,19552,19555,19557,19558,19559,19561,19562,19563,19566,19567,19568,19571,19574,19575,19578,19579,19582,19583,19584,19587,19590,19591,19594,19595,19598,19599,19600,19603,19606,19607,19610,19611,19614,19615,19616,19619,19622,19623,19626,19627,19630,19631,19632,19635,19638,19639,19642,19643,19646,19647,19648,19651,19654,19655,19658,19659,19662,19663,19664,19667,19670,19671,19674, -19675,19678,19679,19680,19683,19686,19687,19690,19691,19694,19695,19696,19699,19702,19703,19706,19707,19710,19711,19712,19715,19718,19719,19722,19723,19726,19727,19728,19731,19734,19735,19738,19739,19742,19743,19744,19747,19750,19751,19754,19755,19758,19759,19760,19763,19766,19767,19770,19771,19774,19775,19776,19779,19782,19783,19786,19787,19790,19791,19792,19795,19798,19799,19802,19803,19806,19807,19808,19811,19814,19815,19818,19819,19822,19823,19824,19827,19830,19831,19834,19835,19838,19839,19840,19843,19846,19847,19850,19851,19854,19855,19856,19859,19862,19863,19866,19867,19870,19871,19872,19875,19878,19879,19882,19883,19886,19887,19888,19891,19894,19895,19898,19899,19902,19903,19904,19907,19910,19911,19914,19915,19918,19919,19920,19923,19927,19928,19930,19931,19934,19935,19938,19939,19942,19943,19944,19947,19950,19951,19954,19955,19958,19959,19960,19963,19966,19967,19970,19971,19974,19975,19976,19979,19981,19982,19983,19984,19985,19986,19987,19990,19991,19992,19995,19996,19997,19998,19999,20001,20003,20008,20013,20014,20015,20017,20019,20024,20029,20030,20031,20033,20035,20040,20045,20046,20047,20049,20051,20056,20061,20062,20063,20065,20067,20072,20077,20078,20079,20081,20083,20088,20093,20094,20095,20097,20099,20104,20109,20110,20111,20113,20115,20120,20125,20126,20127,20129,20131,20136,20141,20142,20143,20145,20147,20152,20157,20158,20159,20161,20163,20168,20173,20174,20175,20177,20179,20184,20189,20190,20191,20193,20195,20200,20205,20206,20207,20209,20211,20216,20221,20222,20223,20225,20227,20232,20237,20238,20239,20241,20243,20248,20253,20254,20255,20257,20259,20264,20269,20270,20271,20273,20275,20280,20285,20286,20287,20289,20291,20296,20301,20302,20303,20305,20307,20312,20317,20318,20319,20321,20323,20328,20333,20334,20335,20337,20339,20344,20349,20350,20351,20353,20355,20360,20366,20367,20369,20373,20374,20375,20377,20379,20384,20389,20390,20391,20393,20395,20400,20405,20406,20407,20409,20411,20416,20422,20423,20424,20426,20427,20429,20431,20432,20434,20435,20436,20440,20448,20456,20464,20472,20480,20488, -20496,20504,20512,20520,20528,20536,20544,20552,20560,20568,20576,20584,20592,20600,20608,20616,20628,20636,20642,20644,20649,20650,20652,20654,20655,20656,20659,20662,20663,20667,20670,20671,20675,20682,20683,20687,20694,20695,20699,20706,20707,20711,20718,20719,20723,20730,20731,20735,20742,20743,20747,20754,20755,20759,20766,20767,20771,20778,20779,20783,20790,20791,20795,20800,20802,20803,20807,20808,20809,20810,20811,20813,20814,20815,20818,20819,20821,20822,20827,20835,20843,20851,20859,20867,20875,20883,20891,20899,20907,20915,20923,20931,20939,20947,20955,20963,20971,20979,20987,20995,21003,21015,21023,21029,21031,21039,21042,21047,21055,21067,21075,21083,21091,21099,21107,21115,21123,21131,21139,21147,21155,21163,21171,21179,21187,21195,21203,21211,21219,21227,21235,21241,21243,21249,21250,21253,21254,21257,21258,21259,21262,21264,21265,21266,21267,21268,21270,21275,21279,21280,21281,21282,21283,21284,21286,21291,21295,21296,21297,21298,21299,21300,21302,21307,21311,21312,21313,21314,21315,21316,21318,21323,21327,21328,21329,21330,21331,21332,21334,21339,21343,21344,21345,21346,21347,21348,21350,21355,21359,21361,21362,21363,21366,21369,21370,21372,21377,21378,21382,21387,21392,21393,21394,21396,21398,21403,21409,21410,21414,21419,21424,21425,21426,21428,21430,21435,21441,21442,21446,21451,21456,21457,21458,21460,21462,21467,21473,21474,21478,21483,21488,21489,21490,21492,21494,21499,21505,21506,21510,21515,21520,21521,21522,21524,21526,21531,21537,21538,21542,21546,21547,21550,21553,21554,21555,21558,21563,21567,21569,21570,21571,21574,21579,21583,21585,21586,21587,21590,21595,21599,21601,21602,21603,21606,21611,21615,21617,21618,21619,21622,21627,21631,21633,21634,21635,21638,21643,21647,21649,21650,21651,21654,21659,21663,21665,21666,21667,21670,21675,21679,21681,21682,21685,21686,21689,21691,21696,21698,21699,21701,21703,21705,21707,21715,21721,21723,21731,21737,21739,21745,21746,21750,21755,21760,21761,21762,21764,21766,21771,21777,21778,21781,21782,21785,21787,21793,21794,21798,21803,21808,21809,21811, -21815,21817,21819,21827,21837,21838,21841,21845,21846,21850,21855,21862,21863,21865,21871,21879,21887,21895,21903,21909,21910,21914,21919,21925,21926,21930,21935,21941,21942,21943,21946,21951,21955,21957,21958,21962,21967,21974,21975,21977,21983,21991,22002,22003,22007,22009,22010,22014,22019,22025,22026,22027,22029,22030,22034,22035,22037,22038,22039,22041,22042,22045,22046,22047,22050,22053,22054,22055,22058,22062,22063,22066,22070,22072,22073,22075,22079,22081,22082,22083,22086,22089,22090,22091,22093,22094,22095,22098,22099,22102,22103,22105,22106,22110,22111,22113,22114,22118,22119,22122,22126,22128,22129,22131,22132,22135,22136,22139,22140,22143,22144,22147,22148,22149,22151,22152,22157,22158,22160,22161,22164,22165,22167,22168,22169,22172,22173,22175,22176,22180,22181,22183,22184,22187,22188,22191,22192,22195,22196,22199,22200,22203,22205,22210,22211,22214,22217,22218,22220,22226,22227,22230,22233,22234,22236,22241,22242,22246,22250,22251,22254,22257,22259,22264,22265,22266,22268,22270,22275,22281,22282,22286,22291,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22314,22315,22316,22318,22319,22320,22322,22323,22324,22326,22327,22328,22329,22330,22331,22332,22334,22335,22336,22338,22339,22340,22342,22344,22346,22347,22348,22350,22351,22352,22353,22354,22356,22358,22360,22362,22363,22364,22366,22367,22368,22370,22371,22372,22374,22375,22376,22378,22379,22380,22382,22383,22384,22386,22387,22388,22390,22391,22392,22394,22395,22396,22398,22400,22402,22403,22404,22405,22406,22408,22409,22410,22412,22413,22414,22415,22416,22417,22418,22419,22420,22422,22423,22424,22426,22427,22428,22430,22431,22432,22434,22435,22436,22438,22439,22440,22442,22443,22444,22446,22447,22449,22450,22452,22454,22456,22457,22458,22460,22461,22462,22464,22465,22466,22468,22469,22470,22472,22473,22474,22476,22477,22478,22480,22481,22482,22484,22485,22486,22488,22489,22490,22492,22493,22494,22495,22496,22498,22500,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22522, -22523,22524,22526,22527,22528,22530,22531,22533,22535,22537,22540,22541,22542,22544,22545,22546,22548,22549,22550,22552,22553,22554,22555,22556,22558,22559,22560,22561,22564,22565,22566,22568,22569,22570,22572,22573,22574,22576,22577,22578,22580,22581,22582,22584,22585,22586,22587,22588,22589,22591,22592,22597,22598,22601,22602,22605,22606,22609,22610,22611,22612,22617,22618,22621,22622,22625,22626,22629,22630,22633,22634,22635,22636,22639,22640,22645,22646,22649,22650,22653,22654,22657,22658,22661,22662,22665,22666,22667,22668,22669,22671,22672,22675,22678,22679,22682,22685,22686,22689,22690,22691,22692,22697,22698,22699,22702,22703,22706,22707,22710,22711,22714,22715,22716,22719,22720,22723,22726,22727,22730,22731,22734,22735,22738,22739,22742,22743,22746,22747,22748,22749,22750,22751,22752,22753,22755,22756,22757,22759,22760,22761,22763,22764,22765,22767,22768,22769,22771,22772,22773,22775,22776,22778,22780,22781,22782,22783,22784,22785,22787,22788,22789,22792,22793,22794,22795,22796,22797,22799,22800,22801,22803,22804,22805,22806,22807,22808,22810,22811,22812,22814,22816,22817,22818,22819,22820,22822,22824,22826,22828,22830,22831,22835,22839,22843,22847,22851,22855,22862,22863,22867,22874,22875,22879,22886,22890,22891,22898,22902,22903,22907,22908,22910,22913,22914,22915,22916,22919,22920,22923,22924,22927,22928,22933,22934,22937,22938,22939,22940,22942,22944,22945,22948,22949,22952,22953,22957,22959,22960,22962,22963,22966,22968,22969,22971,22974,22976,22977,22979,22982,22984,22987,22988,22989,22990,22991,22992,22993,22995,22996,22997,22999,23000,23001,23002,23003,23004,23006,23007,23009,23010,23012,23013,23014,23015,23016,23018,23019,23020,23021,23022,23023,23024,23025,23026,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23050,23051,23052,23054,23055,23056,23058,23059,23061,23062,23064,23065,23066,23068,23069,23071,23073,23075,23077,23079,23081,23083,23085,23087,23089,23091,23093,23095,23097,23098,23100,23101,23103,23105,23110,23111, -23113,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23145,23147,23149,23150,23151,23152,23154,23155,23156,23158,23159,23160,23162,23163,23164,23165,23167,23168,23171,23174,23175,23176,23178,23179,23180,23181,23183,23184,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23199,23200,23201,23203,23205,23207,23208,23209,23212,23213,23214,23215,23217,23218,23219,23222,23223,23226,23227,23230,23231,23232,23235,23236,23239,23240,23243,23244,23247,23248,23251,23252,23255,23256,23259,23260,23263,23264,23267,23268,23271,23272,23273,23274,23276,23277,23278,23280,23281,23282,23284,23285,23286,23288,23289,23290,23292,23293,23294,23296,23297,23298,23300,23301,23302,23304,23305,23306,23307,23308,23309,23310,23311,23312,23314,23316,23317,23318,23320,23322,23323,23325,23326,23329,23330,23333,23334,23337,23338,23341,23342,23345,23346,23349,23350,23353,23354,23355,23357,23358,23359,23360,23363,23364,23369,23370,23374,23375,23376,23377,23381,23382,23383,23386,23387,23388,23391,23392,23393,23395,23396,23399,23400,23403,23404,23407,23408,23411,23412,23415,23416,23419,23420,23424,23427,23428,23429,23430,23431,23432,23434,23435,23436,23438,23440,23441,23443,23444,23445,23447,23449,23451,23455,23457,23464,23466,23467,23473,23475,23477,23479,23485,23486,23489,23490,23493,23496,23497,23500,23501,23505,23507,23509,23510,23511,23514,23515,23518,23520,23521,23524,23525,23529,23531,23532,23534,23535,23536,23538,23540,23542,23545,23546,23549,23550,23552,23557,23558,23559,23563,23564,23567,23569,23572,23575,23583,23585,23590,23594,23598,23601,23605,23609,23612,23613,23614,23616,23617,23620,23621,23623,23624,23625,23626,23627,23628,23630,23631,23632,23634,23635,23637,23638,23639,23642,23643,23646,23647,23649,23650,23651,23654,23655,23658,23659,23660,23661,23663,23664,23667,23668,23671,23672,23673,23675,23676,23677,23679,23680,23681,23683,23684,23685,23687,23688,23689,23691,23693,23695,23696,23699,23701,23702, -23705,23706,23710,23711,23712,23717,23718,23721,23722,23723,23727,23730,23733,23734,23735,23738,23739,23741,23743,23747,23751,23758,23762,23769,23772,23775,23776,23779,23780,23785,23786,23789,23790,23791,23793,23795,23803,23807,23810,23811,23814,23817,23819,23820,23824,23825,23827,23831,23832,23837,23838,23841,23843,23846,23848,23849,23851,23854,23855,23856,23857,23859,23860,23861,23863,23864,23865,23867,23868,23869,23871,23872,23873,23877,23881,23883,23887,23893,23896,23897,23899,23901,23902,23903,23904,23910,23911,23914,23915,23917,23918,23919,23922,23926,23927,23928,23929,23932,23933,23935,23936,23939,23943,23944,23946,23948,23949,23953,23954,23957,23958,23960,23961,23962,23964,23966,23968,23969,23970,23971,23977,23980,23982,23983,23987,23990,23991,23994,23995,23999,24002,24004,24005,24009,24012,24014,24015,24019,24022,24023,24024,24029,24032,24033,24036,24037,24041,24044,24045,24046,24047,24050,24051,24052,24053,24055,24058,24060,24061,24062,24063,24067,24068,24071,24072,24076,24078,24083,24085,24087,24091,24092,24097,24098,24102,24103,24104,24107,24108,24114,24115,24118,24120,24121,24124,24126,24127,24132,24136,24139,24140,24144,24146,24147,24152,24155,24156,24157,24159,24164,24167,24168,24169,24171,24172,24173,24175,24179,24183,24187,24188,24189,24191,24192,24193,24196,24197,24199,24203,24209,24211,24212,24213,24215,24216,24219,24220,24223,24224,24227,24228,24231,24232,24235,24236,24239,24240,24243,24244,24247,24248,24251,24252,24255,24258,24259,24262,24263,24266,24267,24270,24271,24274,24275,24278,24279,24282,24283,24286,24287,24290,24293,24294,24295,24298,24299,24302,24305,24306,24308,24311,24312,24313,24315,24316,24319,24320,24323,24324,24327,24328,24331,24332,24335,24336,24339,24340,24343,24344,24347,24348,24351,24352,24355,24358,24359,24360,24362,24364,24367,24370,24373,24374,24377,24378,24381,24382,24385,24386,24389,24390,24393,24394,24397,24398,24401,24402,24405,24406,24410,24412,24414,24418,24422,24426,24427,24434,24438,24442,24446,24450,24454,24458,24462,24466,24470,24474,24478,24479,24483,24487,24491, -24495,24499,24503,24511,24513,24517,24521,24525,24529,24533,24537,24541,24545,24549,24553,24557,24561,24565,24569,24573,24577,24581,24585,24589,24593,24597,24601,24605,24611,24612,24614,24617,24618,24621,24622,24625,24626,24629,24630,24633,24634,24636,24637,24640,24641,24644,24645,24648,24649,24651,24654,24656,24657,24659,24660,24666,24667,24668,24669,24670,24671,24672,24673,24675,24676,24677,24679,24680,24681,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24695,24696,24697,24698,24699,24700,24701,24703,24704,24705,24707,24708,24709,24711,24712,24713,24715,24716,24717,24719,24720,24721,24723,24724,24725,24727,24728,24729,24730,24731,24732,24734,24735,24736,24738,24739,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24753,24754,24755,24756,24757,24758,24759,24760,24762,24763,24764,24766,24767,24768,24770,24771,24772,24774,24775,24776,24778,24779,24780,24782,24783,24784,24786,24787,24788,24789,24790,24792,24793,24794,24795,24796,24797,24799,24800,24801,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24815,24816,24817,24818,24819,24820,24821,24823,24824,24825,24827,24828,24829,24831,24832,24833,24835,24836,24837,24839,24840,24841,24843,24844,24846,24848,24849,24850,24851,24853,24854,24857,24858,24859,24860,24865,24866,24867,24869,24870,24871,24872,24873,24877,24878,24879,24880,24881,24883,24884,24887,24888,24891,24892,24895,24896,24899,24900,24903,24904,24907,24908,24913,24914,24916,24918,24919,24921,24924,24926,24927,24932,24934,24935,24937,24940,24942,24943,24948,24950,24951,24953,24956,24958,24959,24963,24965,24967,24971,24975,24979,24983,24987,24991,24995,24999,25003,25007,25011,25015,25019,25023,25027,25031,25035,25036,25037,25039,25041,25045,25047,25054,25055,25062,25063,25067,25074,25075,25079,25083,25087,25091,25095,25099,25103,25107,25113,25115,25122,25123,25125,25126,25128,25129,25131,25134,25135,25136,25141,25142,25143,25146,25149,25150,25153,25154,25155,25156,25158,25161,25163,25164,25169,25173,25176,25177,25179,25182,25183,25186,25187,25190,25193,25194, -25195,25198,25199,25202,25203,25204,25207,25208,25213,25214,25215,25218,25219,25222,25225,25226,25230,25231,25232,25238,25239,25242,25246,25247,25250,25252,25257,25258,25261,25262,25265,25267,25270,25271,25272,25276,25279,25280,25285,25286,25287,25288,25289,25290,25292,25293,25294,25295,25296,25298,25299,25300,25301,25304,25308,25311,25316,25320,25323,25324,25325,25328,25332,25340,25341,25342,25344,25345,25346,25347,25350,25353,25354,25357,25358,25360,25361,25363,25366,25367,25369,25370,25372,25373,25377,25378,25380,25382,25383,25390,25393,25394,25396,25398,25402,25405,25411,25413,25415,25416,25418,25422,25425,25427,25428,25433,25434,25437,25442,25449,25450,25453,25454,25457,25458,25461,25462,25463,25464,25469,25470,25471,25472,25475,25476,25479,25480,25483,25486,25487,25489,25490,25491,25495,25496,25499,25502,25503,25504,25508,25509,25511,25513,25514,25516,25520,25521,25522,25523,25527,25528,25531,25533,25534,25535,25538,25540,25541,25544,25545,25548,25551,25557,25558,25559,25560,25563,25564,25567,25568,25571,25572,25575,25576,25579,25584,25589,25590,25591,25592,25595,25596,25599,25600,25603,25604,25607,25608,25611,25612,25615,25616,25619,25620,25623,25624,25627,25628,25629,25630,25632,25633,25634,25636,25637,25638,25640,25641,25642,25644,25645,25646,25648,25649,25650,25652,25653,25654,25656,25657,25658,25660,25661,25662,25663,25665,25669,25673,25677,25681,25685,25689,25693,25697,25702,25704,25709,25710,25713,25714,25715,25716,25720,25721,25724,25725,25727,25730,25732,25733,25736,25737,25740,25741,25744,25745,25747,25748,25749,25751,25752,25753,25755,25756,25757,25758,25759,25760,25761,25762,25763,25765,25767,25769,25771,25772,25774,25775,25778,25780,25781,25783,25784,25786,25787,25792,25796,25797,25798,25800,25801,25804,25805,25808,25809,25811,25812,25816,25820,25821,25822,25823,25826,25828,25829,25831,25834,25837,25838,25842,25844,25845,25846,25848,25849,25852,25853,25856,25857,25859,25860,25864,25868,25869,25870,25872,25873,25876,25877,25880,25881,25883,25884,25888,25892,25893,25894,25895,25898,25900,25901,25904, -25905,25908,25909,25913,25916,25917,25918,25920,25921,25924,25925,25928,25929,25932,25933,25937,25939,25945,25946,25948,25949,25950,25952,25953,25956,25957,25961,25963,25965,25966,25968,25969,25972,25974,25975,25980,25986,25987,25988,25989,25990,25991,25993,25995,25996,25997,25999,26000,26001,26003,26004,26005,26007,26008,26009,26011,26012,26013,26015,26016,26017,26019,26020,26021,26023,26024,26026,26029,26031,26032,26036,26038,26039,26040,26042,26043,26048,26049,26052,26053,26056,26057,26060,26061,26064,26065,26068,26069,26072,26073,26074,26075,26076,26077,26078,26079,26081,26083,26084,26085,26087,26088,26089,26091,26092,26093,26095,26096,26097,26099,26100,26101,26103,26104,26105,26107,26108,26109,26110,26111,26113,26115,26117,26118,26119,26125,26126,26128,26130,26136,26140,26144,26148,26152,26156,26160,26162,26163,26167,26170,26171,26177,26178,26180,26182,26188,26192,26196,26200,26204,26208,26212,26214,26215,26218,26223,26230,26231,26233,26234,26235,26238,26239,26242,26243,26248,26249,26250,26251,26256,26257,26258,26259,26264,26265,26268,26270,26271,26272,26273,26274,26275,26277,26278,26279,26281,26282,26283,26285,26286,26287,26289,26290,26291,26293,26294,26295,26297,26298,26299,26301,26302,26303,26305,26306,26307,26309,26311,26312,26313,26315,26316,26317,26319,26320,26321,26323,26324,26325,26327,26328,26329,26331,26332,26333,26335,26336,26337,26339,26340,26341,26343,26344,26345,26347,26348,26349,26351,26352,26353,26355,26356,26357,26359,26360,26361,26363,26364,26365,26367,26368,26369,26371,26372,26373,26375,26376,26377,26379,26380,26381,26382,26383,26384,26385,26387,26388,26389,26391,26392,26393,26395,26396,26397,26399,26400,26401,26403,26404,26405,26407,26408,26409,26411,26412,26413,26415,26416,26417,26419,26420,26421,26423,26424,26425,26427,26428,26429,26431,26432,26433,26435,26436,26437,26439,26440,26441,26443,26444,26445,26447,26448,26449,26451,26452,26453,26455,26456,26457,26459,26460,26461,26463,26464,26465,26467,26468,26469,26471,26472,26473,26475,26476,26477,26479,26480,26481,26483,26484,26485,26487,26488, -26489,26491,26492,26493,26494,26496,26500,26504,26508,26512,26516,26520,26524,26528,26532,26536,26540,26544,26548,26552,26556,26560,26564,26568,26572,26576,26580,26584,26588,26592,26596,26600,26604,26606,26607,26608,26609,26611,26612,26613,26615,26616,26617,26619,26620,26621,26623,26624,26625,26627,26628,26629,26631,26632,26633,26635,26636,26637,26639,26640,26641,26643,26644,26645,26647,26648,26649,26651,26652,26653,26655,26656,26657,26659,26660,26661,26663,26664,26665,26667,26668,26669,26671,26672,26673,26675,26676,26677,26679,26680,26681,26683,26684,26685,26687,26688,26689,26691,26692,26693,26695,26696,26697,26699,26700,26701,26703,26704,26705,26707,26708,26709,26711,26712,26713,26715,26716,26717,26718,26719,26720,26723,26724,26727,26728,26731,26732,26735,26736,26739,26740,26743,26744,26747,26748,26751,26752,26755,26756,26759,26760,26763,26764,26767,26768,26771,26772,26775,26776,26779,26780,26783,26784,26787,26788,26791,26792,26795,26796,26799,26800,26803,26804,26807,26808,26811,26812,26815,26816,26819,26820,26823,26824,26827,26828,26830,26832,26836,26840,26844,26848,26852,26856,26860,26864,26868,26872,26876,26880,26884,26888,26892,26896,26900,26904,26908,26912,26916,26920,26924,26928,26932,26936,26940,26942,26944,26948,26952,26956,26960,26964,26968,26972,26976,26980,26984,26988,26992,26996,27000,27004,27008,27012,27016,27020,27024,27028,27032,27036,27040,27044,27048,27052,27054,27055,27056,27058,27059,27062,27063,27066,27067,27070,27071,27075,27076,27079,27080,27083,27084,27087,27088,27091,27092,27095,27096,27099,27100,27103,27104,27107,27108,27112,27115,27116,27117,27118,27121,27122,27125,27127,27129,27131,27135,27138,27139,27143,27146,27157,27161,27162,27163,27165,27166,27167,27169,27170,27171,27174,27175,27178,27179,27182,27183,27186,27190,27193,27194,27197,27198,27201,27202,27205,27206,27209,27210,27213,27214,27217,27218,27221,27222,27225,27226,27229,27230,27233,27234,27237,27238,27241,27242,27243,27245,27246,27249,27250,27253,27254,27257,27258,27261,27262,27265,27266,27269,27270,27273,27274,27277,27278,27281, -27282,27285,27286,27289,27290,27293,27294,27297,27298,27301,27302,27305,27306,27309,27310,27313,27314,27317,27318,27321,27322,27323,27325,27326,27329,27330,27333,27334,27337,27338,27341,27342,27345,27346,27349,27350,27353,27354,27357,27358,27361,27362,27365,27366,27369,27370,27373,27374,27377,27378,27381,27382,27385,27386,27389,27390,27393,27394,27397,27398,27401,27402,27403,27405,27406,27407,27409,27410,27411,27414,27415,27418,27419,27422,27423,27426,27430,27433,27434,27437,27438,27441,27442,27445,27446,27449,27450,27453,27454,27457,27458,27461,27462,27465,27466,27469,27470,27473,27474,27477,27478,27481,27482,27483,27485,27486,27487,27489,27490,27491,27494,27495,27498,27499,27502,27503,27506,27510,27513,27514,27517,27518,27521,27522,27525,27526,27529,27530,27533,27534,27537,27538,27541,27542,27545,27546,27549,27550,27553,27554,27557,27558,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27574,27575,27576,27578,27579,27580,27582,27583,27584,27586,27588,27590,27592,27593,27594,27596,27597,27598,27600,27601,27602,27604,27605,27606,27608,27609,27610,27612,27613,27614,27616,27617,27618,27620,27621,27622,27624,27625,27626,27628,27629,27630,27632,27633,27634,27636,27637,27638,27640,27641,27642,27643,27645,27646,27649,27650,27653,27654,27657,27658,27661,27662,27665,27666,27669,27670,27673,27674,27677,27678,27681,27682,27685,27686,27689,27690,27693,27694,27697,27698,27701,27702,27705,27706,27709,27710,27713,27714,27717,27718,27721,27723,27725,27729,27733,27737,27741,27745,27749,27753,27757,27761,27765,27769,27773,27777,27781,27785,27789,27793,27797,27801,27802,27803,27804,27805,27806,27807,27808,27809,27811,27812,27813,27815,27816,27817,27819,27820,27821,27823,27824,27825,27826,27827,27828,27829,27831,27832,27833,27835,27836,27837,27839,27840,27841,27843,27845,27847,27848,27849,27850,27851,27852,27853,27855,27857,27859,27861,27863,27864,27865,27867,27868,27869,27871,27872,27873,27875,27876,27877,27879,27880,27881,27883,27884,27885,27887,27888,27889,27891,27892,27893,27895,27896,27897,27899,27901,27902, -27903,27904,27905,27906,27907,27909,27910,27911,27913,27914,27915,27916,27917,27919,27920,27921,27923,27924,27925,27927,27928,27929,27931,27932,27933,27935,27936,27937,27939,27940,27941,27943,27944,27945,27946,27948,27949,27951,27953,27954,27955,27957,27958,27959,27961,27962,27963,27965,27966,27967,27969,27970,27971,27973,27974,27975,27977,27978,27979,27981,27982,27983,27985,27986,27987,27989,27990,27991,27993,27995,27996,27997,27999,28002,28003,28004,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28019,28020,28021,28023,28024,28025,28027,28028,28030,28032,28034,28036,28037,28038,28039,28041,28042,28043,28045,28046,28047,28049,28050,28051,28053,28055,28056,28058,28059,28060,28061,28062,28063,28065,28066,28067,28069,28070,28071,28073,28074,28075,28077,28078,28079,28081,28083,28087,28088,28091,28092,28093,28094,28097,28098,28101,28102,28105,28106,28111,28112,28113,28114,28117,28118,28121,28122,28125,28126,28129,28130,28135,28136,28139,28140,28141,28142,28145,28146,28149,28150,28153,28154,28157,28158,28161,28167,28168,28171,28172,28173,28176,28177,28180,28181,28182,28185,28186,28191,28192,28193,28194,28197,28200,28201,28204,28205,28208,28209,28212,28215,28216,28219,28220,28221,28224,28225,28228,28229,28232,28233,28236,28237,28240,28244,28245,28246,28247,28250,28251,28252,28254,28255,28256,28258,28259,28260,28262,28263,28264,28266,28267,28268,28270,28271,28272,28273,28275,28276,28277,28278,28279,28282,28283,28284,28286,28287,28288,28289,28290,28291,28294,28295,28296,28298,28299,28300,28301,28302,28303,28305,28307,28308,28309,28311,28312,28313,28314,28315,28317,28319,28320,28321,28323,28325,28332,28336,28340,28344,28348,28352,28356,28357,28364,28368,28369,28376,28380,28381,28385,28392,28393,28397,28407,28408,28409,28410,28415,28416,28419,28420,28423,28424,28427,28428,28429,28430,28433,28434,28437,28439,28440,28442,28443,28446,28447,28450,28451,28454,28457,28460,28461,28464,28466,28467,28469,28472,28474,28475,28477,28480,28483,28485,28486,28488,28490,28491,28492,28494,28495,28496,28497,28498,28499, -28500,28501,28503,28504,28505,28506,28508,28509,28510,28511,28513,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28547,28548,28549,28551,28552,28553,28555,28556,28558,28560,28562,28563,28566,28567,28570,28572,28574,28576,28578,28580,28582,28584,28586,28588,28590,28592,28593,28596,28598,28599,28604,28605,28610,28612,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28642,28644,28645,28646,28648,28649,28652,28653,28655,28656,28657,28659,28660,28662,28663,28664,28667,28668,28669,28672,28673,28675,28676,28678,28679,28680,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28694,28695,28696,28698,28699,28700,28702,28704,28706,28707,28708,28709,28710,28711,28713,28714,28716,28717,28720,28721,28724,28725,28728,28731,28732,28735,28736,28739,28740,28743,28744,28747,28748,28751,28752,28755,28756,28759,28760,28763,28764,28768,28769,28770,28771,28772,28773,28774,28775,28777,28778,28779,28781,28782,28783,28785,28786,28787,28789,28790,28791,28793,28794,28795,28797,28798,28799,28801,28802,28803,28805,28806,28807,28808,28809,28811,28812,28813,28814,28815,28817,28819,28821,28822,28824,28825,28826,28829,28830,28833,28834,28837,28838,28841,28842,28845,28846,28849,28850,28853,28854,28856,28859,28860,28863,28864,28865,28866,28869,28874,28875,28876,28877,28878,28881,28884,28887,28888,28890,28891,28892,28895,28896,28899,28900,28903,28904,28907,28908,28911,28912,28915,28916,28919,28920,28923,28925,28926,28927,28928,28929,28931,28933,28935,28939,28943,28944,28946,28948,28952,28956,28961,28963,28968,28974,28976,28981,28982,28985,28986,28990,28994,28995,28998,28999,29002,29005,29006,29008,29009,29012,29013,29016,29018,29019,29022,29023,29026,29029,29031,29032,29033,29035,29036,29037,29039,29041,29042,29045,29046,29051,29053,29054,29060,29063,29064,29066,29068,29071,29076,29082,29084,29085,29089, -29093,29098,29102,29106,29110,29111,29114,29115,29118,29119,29121,29123,29124,29125,29127,29128,29129,29131,29132,29133,29136,29137,29140,29141,29144,29145,29148,29149,29152,29153,29156,29159,29160,29163,29164,29167,29168,29170,29171,29172,29174,29175,29176,29178,29179,29180,29182,29183,29184,29186,29187,29188,29190,29192,29195,29196,29197,29198,29200,29201,29202,29205,29211,29212,29213,29214,29217,29218,29224,29225,29228,29229,29230,29233,29236,29240,29244,29248,29252,29253,29257,29266,29271,29275,29276,29279,29280,29281,29282,29285,29286,29292,29296,29304,29305,29308,29309,29312,29314,29319,29320,29322,29323,29328,29331,29332,29333,29334,29338,29341,29344,29346,29347,29349,29352,29354,29355,29356,29358,29359,29360,29362,29363,29364,29366,29367,29368,29370,29371,29372,29374,29378,29384,29388,29390,29394,29395,29397,29398,29400,29403,29404,29405,29409,29412,29413,29414,29416,29417,29420,29421,29426,29427,29428,29430,29431,29435,29436,29440,29441,29443,29444,29446,29447,29449,29450,29453,29454,29457,29458,29459,29461,29463,29465,29466,29467,29472,29474,29477,29479,29484,29485,29488,29489,29492,29496,29497,29500,29502,29503,29506,29509,29511,29516,29517,29520,29523,29524,29526,29530,29531,29534,29535,29538,29541,29542,29543,29545,29548,29550,29551,29552,29553,29556,29557,29558,29559,29564,29567,29568,29571,29572,29573,29575,29582,29584,29588,29591,29592,29593,29594,29597,29604,29608,29613,29616,29618,29619,29621,29623,29628,29631,29635,29639,29640,29641,29643,29648,29651,29654,29655,29656,29660,29663,29666,29667,29668,29670,29671,29672,29676,29680,29684,29686,29687,29688,29690,29691,29692,29694,29695,29700,29704,29706,29710,29711,29712,29715,29716,29719,29720,29723,29724,29727,29728,29731,29732,29735,29736,29739,29740,29743,29744,29747,29748,29751,29752,29753,29756,29757,29760,29761,29764,29765,29768,29769,29772,29773,29776,29777,29780,29781,29784,29785,29788,29789,29790,29793,29796,29797,29800,29801,29802,29807,29810,29811,29812,29815,29816,29819,29820,29823,29824,29827,29828,29831,29832,29835,29836,29839,29840,29843, -29844,29847,29848,29851,29852,29853,29856,29857,29859,29860,29863,29865,29868,29869,29870,29873,29874,29877,29878,29881,29882,29885,29886,29889,29890,29893,29894,29897,29898,29901,29902,29905,29909,29911,29913,29917,29921,29928,29929,29933,29937,29941,29945,29949,29953,29957,29961,29965,29969,29973,29980,29984,29988,29992,29996,30000,30004,30010,30012,30014,30018,30022,30026,30030,30034,30038,30042,30046,30050,30054,30058,30062,30066,30070,30074,30078,30082,30086,30090,30094,30098,30102,30111,30112,30113,30114,30117,30118,30121,30122,30125,30126,30129,30130,30134,30135,30138,30139,30142,30143,30146,30147,30149,30152,30154,30155,30159,30160,30161,30165,30166,30167,30168,30170,30171,30172,30174,30175,30176,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30190,30191,30192,30193,30194,30195,30196,30198,30199,30200,30202,30203,30204,30206,30207,30208,30210,30211,30212,30214,30215,30216,30218,30219,30220,30222,30223,30224,30225,30226,30227,30228,30229,30231,30232,30233,30235,30236,30237,30238,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30252,30253,30254,30255,30256,30257,30259,30260,30261,30263,30264,30265,30267,30268,30269,30271,30272,30273,30275,30276,30277,30279,30280,30281,30283,30284,30285,30286,30287,30288,30289,30290,30291,30294,30295,30296,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30310,30311,30312,30313,30314,30315,30316,30318,30319,30320,30322,30323,30324,30326,30327,30328,30330,30331,30332,30334,30335,30336,30338,30339,30340,30341,30343,30344,30345,30346,30347,30349,30350,30352,30353,30354,30359,30360,30361,30362,30365,30366,30368,30370,30371,30372,30373,30374,30378,30379,30380,30383,30384,30387,30388,30391,30392,30395,30396,30399,30400,30403,30404,30407,30408,30409,30410,30413,30415,30418,30420,30421,30423,30428,30429,30431,30434,30436,30437,30439,30444,30445,30447,30450,30452,30453,30455,30460,30462,30464,30468,30472,30476,30480,30484,30488,30492,30496,30500,30504,30508,30512,30516,30520,30524,30528,30532,30534,30535,30536,30538,30540,30542,30548, -30549,30556,30557,30564,30568,30569,30576,30580,30584,30588,30592,30596,30600,30604,30608,30610,30616,30617,30621,30622,30624,30626,30627,30629,30632,30635,30636,30637,30638,30641,30644,30645,30646,30649,30650,30653,30655,30656,30658,30663,30664,30666,30670,30674,30675,30677,30680,30681,30684,30685,30688,30689,30690,30693,30696,30697,30700,30703,30704,30707,30708,30709,30710,30713,30716,30717,30720,30721,30722,30725,30731,30732,30733,30737,30740,30741,30745,30748,30751,30753,30754,30757,30758,30762,30765,30768,30771,30772,30775,30779,30780,30781,30782,30785,30786,30787,30788,30789,30790,30791,30793,30795,30796,30798,30799,30800,30803,30807,30812,30815,30819,30822,30823,30824,30827,30831,30837,30838,30839,30841,30842,30843,30845,30848,30849,30850,30853,30854,30858,30859,30861,30864,30865,30866,30868,30870,30871,30873,30874,30877,30879,30884,30885,30889,30890,30893,30895,30897,30902,30910,30912,30913,30915,30916,30917,30922,30927,30928,30929,30930,30934,30937,30945,30946,30949,30950,30953,30954,30957,30958,30963,30964,30965,30966,30971,30972,30975,30976,30979,30980,30981,30984,30985,30986,30988,30992,30995,30996,30997,31000,31003,31004,31006,31007,31009,31010,31012,31015,31017,31018,31019,31024,31027,31028,31029,31030,31032,31033,31036,31038,31039,31042,31043,31047,31052,31053,31054,31059,31060,31063,31064,31067,31068,31071,31072,31075,31076,31080,31083,31085,31086,31091,31092,31095,31096,31099,31100,31103,31104,31107,31108,31111,31112,31115,31116,31119,31120,31123,31125,31126,31127,31129,31130,31131,31133,31134,31135,31137,31138,31139,31141,31142,31143,31145,31146,31147,31149,31150,31151,31153,31154,31155,31157,31158,31159,31162,31166,31170,31174,31178,31182,31186,31190,31194,31197,31203,31205,31206,31209,31210,31215,31216,31218,31219,31222,31223,31225,31228,31230,31231,31234,31235,31238,31239,31242,31246,31247,31248,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31262,31264,31266,31268,31269,31271,31272,31273,31276,31278,31279,31281,31283,31284,31288,31291,31293,31294,31295,31298,31299,31302,31303, -31306,31307,31311,31312,31315,31317,31318,31319,31321,31324,31326,31327,31329,31332,31333,31334,31337,31341,31342,31343,31346,31347,31350,31351,31354,31355,31359,31360,31363,31365,31366,31367,31370,31371,31374,31375,31378,31379,31383,31384,31387,31389,31390,31391,31393,31396,31398,31399,31402,31403,31406,31407,31410,31413,31414,31415,31418,31419,31422,31423,31426,31427,31430,31431,31434,31440,31441,31442,31445,31446,31447,31450,31451,31454,31455,31458,31461,31462,31464,31466,31467,31469,31471,31476,31479,31484,31485,31486,31487,31488,31490,31491,31492,31493,31494,31496,31497,31498,31500,31501,31502,31504,31505,31506,31508,31509,31510,31512,31513,31514,31516,31517,31518,31521,31522,31524,31527,31529,31530,31533,31537,31539,31543,31545,31549,31553,31557,31561,31565,31569,31572,31573,31574,31575,31576,31578,31579,31580,31581,31582,31584,31585,31586,31588,31589,31590,31592,31593,31594,31596,31597,31598,31600,31601,31602,31604,31605,31606,31610,31611,31612,31618,31619,31620,31625,31627,31631,31633,31637,31641,31645,31649,31653,31657,31662,31663,31666,31670,31671,31672,31677,31679,31683,31685,31689,31693,31697,31701,31705,31709,31714,31715,31719,31722,31730,31731,31734,31735,31738,31739,31742,31743,31744,31745,31750,31751,31752,31753,31758,31759,31760,31761,31765,31768,31769,31770,31771,31772,31774,31775,31776,31778,31779,31780,31782,31783,31784,31786,31787,31788,31790,31791,31792,31794,31795,31796,31798,31799,31800,31802,31803,31804,31806,31808,31809,31810,31812,31813,31814,31816,31817,31818,31820,31821,31822,31824,31825,31826,31828,31829,31830,31832,31833,31834,31836,31837,31838,31840,31841,31842,31844,31845,31846,31848,31849,31850,31852,31853,31854,31856,31857,31858,31860,31861,31862,31864,31865,31866,31868,31869,31870,31872,31873,31874,31876,31878,31880,31881,31882,31884,31885,31886,31888,31889,31890,31892,31893,31894,31896,31897,31898,31900,31901,31902,31904,31905,31906,31908,31909,31910,31912,31913,31914,31916,31917,31918,31920,31921,31922,31924,31925,31926,31928,31929,31930,31932,31933,31934,31936,31937,31938,31940, -31941,31942,31944,31945,31946,31948,31949,31950,31952,31953,31954,31956,31957,31958,31960,31961,31962,31964,31965,31966,31968,31969,31970,31972,31973,31974,31976,31977,31978,31980,31981,31982,31984,31985,31986,31988,31990,31993,31997,32001,32005,32009,32013,32017,32021,32025,32029,32033,32037,32041,32045,32049,32053,32057,32061,32065,32069,32073,32077,32081,32085,32089,32093,32097,32104,32105,32106,32108,32109,32110,32112,32113,32114,32116,32117,32118,32120,32121,32122,32124,32125,32126,32128,32129,32130,32132,32133,32134,32136,32137,32138,32140,32141,32142,32144,32145,32146,32148,32149,32150,32152,32153,32154,32156,32157,32158,32160,32161,32162,32164,32165,32166,32168,32169,32170,32172,32173,32174,32176,32177,32178,32180,32181,32182,32184,32185,32186,32188,32189,32190,32192,32193,32194,32196,32197,32198,32200,32201,32202,32204,32205,32206,32208,32209,32210,32212,32214,32217,32218,32221,32222,32225,32226,32229,32230,32233,32234,32237,32238,32241,32242,32245,32246,32249,32250,32253,32254,32257,32258,32261,32262,32265,32266,32269,32270,32273,32274,32277,32278,32281,32282,32285,32286,32289,32290,32293,32294,32297,32298,32301,32302,32305,32306,32309,32310,32313,32314,32317,32318,32321,32322,32326,32329,32333,32337,32341,32345,32349,32353,32357,32361,32365,32369,32373,32377,32381,32385,32389,32393,32397,32401,32405,32409,32413,32417,32421,32425,32429,32433,32441,32445,32449,32453,32457,32461,32465,32469,32473,32477,32481,32485,32489,32493,32497,32501,32505,32509,32513,32517,32521,32525,32529,32533,32537,32541,32545,32553,32554,32555,32558,32559,32562,32563,32566,32567,32570,32571,32573,32574,32577,32578,32581,32582,32585,32586,32589,32590,32593,32594,32597,32598,32601,32602,32605,32606,32609,32612,32613,32614,32616,32619,32620,32623,32624,32626,32630,32634,32638,32639,32642,32647,32652,32661,32662,32664,32665,32666,32668,32669,32670,32672,32673,32676,32677,32680,32681,32685,32689,32693,32694,32697,32698,32701,32702,32705,32706,32709,32710,32713,32714,32717,32718,32721,32722,32725,32726,32729,32730,32733,32734,32737,32741, -32742,32745,32746,32749,32750,32753,32754,32757,32758,32761,32762,32765,32766,32769,32770,32773,32774,32777,32778,32781,32782,32785,32786,32789,32790,32793,32794,32797,32798,32801,32802,32805,32806,32809,32810,32813,32814,32817,32821,32822,32825,32826,32829,32830,32833,32834,32837,32838,32841,32842,32845,32846,32849,32850,32853,32854,32857,32858,32861,32862,32865,32866,32869,32870,32873,32874,32877,32878,32881,32882,32885,32886,32889,32890,32893,32894,32897,32901,32902,32904,32905,32906,32908,32909,32910,32912,32913,32916,32917,32920,32921,32925,32929,32933,32934,32937,32938,32941,32942,32945,32946,32949,32950,32953,32954,32957,32958,32961,32962,32965,32966,32969,32970,32973,32974,32977,32981,32982,32984,32985,32986,32988,32989,32990,32992,32993,32996,32997,33000,33001,33005,33009,33013,33014,33017,33018,33021,33022,33025,33026,33029,33030,33033,33034,33037,33038,33041,33042,33045,33046,33049,33050,33053,33054,33057,33059,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33075,33076,33077,33079,33080,33081,33083,33085,33087,33089,33091,33093,33094,33095,33097,33098,33099,33101,33102,33103,33105,33106,33107,33109,33110,33111,33113,33114,33115,33117,33118,33119,33121,33122,33123,33125,33126,33127,33129,33130,33131,33133,33134,33135,33137,33141,33142,33145,33146,33149,33150,33153,33154,33157,33158,33161,33162,33165,33166,33169,33170,33173,33174,33177,33178,33181,33182,33185,33186,33189,33190,33193,33194,33197,33198,33201,33202,33205,33206,33209,33210,33213,33214,33217,33222,33226,33230,33234,33238,33242,33246,33250,33254,33258,33262,33266,33270,33274,33278,33282,33286,33290,33294,33300,33301,33302,33304,33305,33306,33308,33309,33312,33313,33316,33317,33320,33321,33324,33325,33326,33328,33329,33332,33333,33336,33337,33341,33344,33345,33346,33349,33350,33353,33357,33361,33362,33365,33366,33369,33370,33373,33374,33377,33378,33381,33382,33385,33386,33389,33390,33393,33394,33397,33400,33401,33402,33404,33405,33406,33409,33410,33413,33414,33417,33418,33421,33422,33424,33425,33426,33429,33430,33433, -33434,33437,33438,33441,33444,33445,33446,33448,33449,33453,33457,33460,33461,33464,33465,33468,33469,33472,33473,33476,33477,33480,33481,33484,33485,33488,33489,33492,33493,33497,33500,33501,33502,33504,33505,33506,33508,33509,33512,33513,33516,33517,33520,33521,33524,33525,33526,33528,33529,33532,33533,33536,33537,33541,33544,33545,33546,33549,33550,33553,33557,33561,33562,33565,33566,33569,33570,33573,33574,33577,33578,33581,33582,33585,33586,33589,33590,33593,33594,33597,33600,33601,33602,33604,33605,33606,33609,33610,33613,33614,33617,33618,33621,33622,33624,33625,33626,33629,33630,33633,33634,33637,33638,33641,33644,33645,33646,33648,33649,33653,33657,33660,33661,33664,33665,33668,33669,33672,33673,33676,33677,33680,33681,33684,33685,33688,33689,33692,33693,33697,33700,33701,33703,33704,33706,33709,33712,33715,33718,33719,33721,33724,33727,33733,33734,33737,33746,33749,33752,33755,33758,33761,33764,33767,33770,33775,33776,33778,33779,33782,33785,33788,33791,33793,33794,33797,33800,33803,33808,33809,33811,33820,33823,33826,33829,33832,33835,33838,33841,33844 - } - GeometryVersion: 124 - LayerElementNormal: 0 { - Version: 102 - Name: "" - MappingInformationType: "ByPolygonVertex" - ReferenceInformationType: "Direct" - Normals: *101547 { - a: -0.470994740724564,0.871261239051819,-0.138085916638374,-0.614458560943604,0.766919910907745,-0.185133650898933,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.503572523593903,0.83924525976181,-0.205139130353928,-0.614458560943604,0.766919910907745,-0.185133650898933,-0.725436389446259,0.651505827903748,-0.221995964646339,-0.749297738075256,0.499604135751724,-0.434682220220566,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.749297738075256,0.499604135751724,-0.434682220220566,-0.56304407119751,0.312230855226517,-0.76517528295517,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.5771524310112,0.670471370220184,-0.466222256422043,-0.503572523593903,0.83924525976181,-0.205139130353928,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.56304407119751,0.312230855226517,-0.76517528295517,-0.233628481626511,0.167796745896339,-0.957737982273102,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.305580884218216,0.0128882080316544,-0.952078819274902,-0.5771524310112,0.670471370220184,-0.466222256422043,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.126893103122711,0.143671616911888,-0.981456398963928,-0.149451524019241,-0.0228389631956816,-0.988505244255066,-0.305580884218216,0.0128882080316544,-0.952078819274902,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.233628481626511,0.167796745896339,-0.957737982273102,-0.119221441447735,0.174641504883766,-0.977387607097626,-0.126893103122711,0.143671616911888,-0.981456398963928,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.126893103122711,0.143671616911888,-0.981456398963928,-0.119221441447735,0.174641504883766,-0.977387607097626,5.33684252346234e-09,0.228196457028389,-0.973615169525146,9.89053727806777e-09,0.164029449224472,-0.98645544052124,-0.149451524019241,-0.0228389631956816,-0.988505244255066, --0.126893103122711,0.143671616911888,-0.981456398963928,9.89053727806777e-09,0.164029449224472,-0.98645544052124,-4.72001815410295e-08,0.0171858314424753,-0.999852299690247,-4.72001815410295e-08,0.0171858314424753,-0.999852299690247,9.89053727806777e-09,0.164029449224472,-0.98645544052124,0.126882791519165,0.143672123551369,-0.981457591056824,0.149441406130791,-0.0226289536803961,-0.988511621952057,9.89053727806777e-09,0.164029449224472,-0.98645544052124,5.33684252346234e-09,0.228196457028389,-0.973615169525146,0.101520083844662,0.215626627206802,-0.971184253692627,0.126882791519165,0.143672123551369,-0.981457591056824,0.126882791519165,0.143672123551369,-0.981457591056824,0.101520083844662,0.215626627206802,-0.971184253692627,0.228503495454788,0.206113621592522,-0.951474249362946,0.262518882751465,0.134894013404846,-0.955451488494873,0.305748820304871,0.0136532429605722,-0.952014327049255,0.149441406130791,-0.0226289536803961,-0.988511621952057,0.126882791519165,0.143672123551369,-0.981457591056824,0.262518882751465,0.134894013404846,-0.955451488494873,0.262518882751465,0.134894013404846,-0.955451488494873,0.228503495454788,0.206113621592522,-0.951474249362946,0.646105945110321,0.275598257780075,-0.711753189563751,0.643477261066437,0.380538463592529,-0.664174437522888,0.576948702335358,0.670839309692383,-0.465945065021515,0.305748820304871,0.0136532429605722,-0.952014327049255,0.262518882751465,0.134894013404846,-0.955451488494873,0.643477261066437,0.380538463592529,-0.664174437522888,0.694945335388184,0.630982100963593,-0.344836980104446,0.503506004810333,0.839314520359039,-0.205019220709801,0.576948702335358,0.670839309692383,-0.465945065021515,0.643477261066437,0.380538463592529,-0.664174437522888,0.81668496131897,0.377242684364319,-0.436707586050034,0.694945335388184,0.630982100963593,-0.344836980104446,0.643477261066437,0.380538463592529,-0.664174437522888,0.646105945110321,0.275598257780075,-0.711753189563751,0.694945335388184,0.630982100963593,-0.344836980104446,0.81668496131897,0.377242684364319,-0.436707586050034, -0.852208018302917,0.498345047235489,-0.159353509545326,0.614503026008606,0.766903638839722,-0.185053899884224,0.503506004810333,0.839314520359039,-0.205019220709801,0.694945335388184,0.630982100963593,-0.344836980104446,0.614503026008606,0.766903638839722,-0.185053899884224,0.470972239971161,0.871293902397156,-0.137956783175468,0.427262783050537,0.802204430103302,0.417030513286591,0.475550502538681,0.774060308933258,0.417950212955475,0.430817276239395,0.666007578372955,0.60895836353302,0.443712711334229,0.651345014572144,0.615523099899292,0.475550502538681,0.774060308933258,0.417950212955475,0.529205918312073,0.714222252368927,0.45806947350502,0.4903504550457,0.657187819480896,0.572416543960571,0.430817276239395,0.666007578372955,0.60895836353302,0.430817276239395,0.666007578372955,0.60895836353302,0.4903504550457,0.657187819480896,0.572416543960571,0.0168645158410072,0.671300053596497,0.740993797779083,0.00872011017054319,0.514292359352112,0.857570588588715,0.443712711334229,0.651345014572144,0.615523099899292,0.430817276239395,0.666007578372955,0.60895836353302,0.00872011017054319,0.514292359352112,0.857570588588715,0.00460542785003781,0.423136234283447,0.906054377555847,-0.409931153059006,0.829041004180908,0.38032540678978,-0.426372587680817,0.802807927131653,0.416780292987823,-0.473750680685043,0.77540510892868,0.417501211166382,-0.569953143596649,0.650683522224426,0.501761376857758,-0.473750680685043,0.77540510892868,0.417501211166382,-0.506949722766876,0.730726659297943,0.457209646701813,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.569953143596649,0.650683522224426,0.501761376857758,-0.409931153059006,0.829041004180908,0.38032540678978,-0.569953143596649,0.650683522224426,0.501761376857758,-0.650812745094299,0.423960298299789,0.62984162569046,-0.54758632183075,0.632495105266571,0.54781299829483,-0.569953143596649,0.650683522224426,0.501761376857758,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.650812745094299,0.423960298299789,0.62984162569046, --0.650812745094299,0.423960298299789,0.62984162569046,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.808794856071472,0.325524985790253,0.489779770374298,-0.707225739955902,0.546885251998901,0.448049247264862,-0.54758632183075,0.632495105266571,0.54781299829483,-0.650812745094299,0.423960298299789,0.62984162569046,-0.808794856071472,0.325524985790253,0.489779770374298,-0.921597719192505,0.372494578361511,-0.109112277626991,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.855772316455841,0.283412486314774,-0.432817459106445,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.684337973594666,0.256407231092453,-0.682595729827881,-0.855772316455841,0.283412486314774,-0.432817459106445,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.117432110011578,0.602196216583252,-0.789664149284363,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.225590720772743,0.226422384381294,-0.947545170783997,-0.684337973594666,0.256407231092453,-0.682595729827881,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.0707771703600883,0.324491381645203,-0.943237006664276,-0.092989906668663,0.235090315341949,-0.967515170574188,-0.225590720772743,0.226422384381294,-0.947545170783997,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.0155662829056382,0.633758544921875,-0.773374259471893, --0.0707771703600883,0.324491381645203,-0.943237006664276,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.117432110011578,0.602196216583252,-0.789664149284363,-0.0707771703600883,0.324491381645203,-0.943237006664276,-0.0155662829056382,0.633758544921875,-0.773374259471893,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,9.58223633773514e-09,0.335694789886475,-0.941970765590668,-0.092989906668663,0.235090315341949,-0.967515170574188,-0.0707771703600883,0.324491381645203,-0.943237006664276,9.58223633773514e-09,0.335694789886475,-0.941970765590668,5.33684252346234e-09,0.228196457028389,-0.973615169525146,5.33684252346234e-09,0.228196457028389,-0.973615169525146,9.58223633773514e-09,0.335694789886475,-0.941970765590668,0.0707716569304466,0.324493885040283,-0.943236589431763,0.101520083844662,0.215626627206802,-0.971184253692627,9.58223633773514e-09,0.335694789886475,-0.941970765590668,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,0.0155651671811938,0.633765578269958,-0.773368537425995,0.0707716569304466,0.324493885040283,-0.943236589431763,0.0707716569304466,0.324493885040283,-0.943236589431763,0.0155651671811938,0.633765578269958,-0.773368537425995,0.117442525923252,0.602194428443909,-0.789663910865784,0.184801071882248,0.304125338792801,-0.934535264968872,0.228503495454788,0.206113621592522,-0.951474249362946,0.101520083844662,0.215626627206802,-0.971184253692627,0.0707716569304466,0.324493885040283,-0.943236589431763,0.184801071882248,0.304125338792801,-0.934535264968872,0.184801071882248,0.304125338792801,-0.934535264968872,0.117442525923252,0.602194428443909,-0.789663910865784,0.544002830982208,0.334691017866135,-0.769443213939667,0.618378937244415,0.239055067300797,-0.748638868331909,0.228503495454788,0.206113621592522,-0.951474249362946,0.184801071882248,0.304125338792801,-0.934535264968872,0.618378937244415,0.239055067300797,-0.748638868331909,0.646105945110321,0.275598257780075,-0.711753189563751,0.837141573429108,0.204977050423622,-0.507127583026886,0.81668496131897,0.377242684364319,-0.436707586050034, -0.646105945110321,0.275598257780075,-0.711753189563751,0.618378937244415,0.239055067300797,-0.748638868331909,0.771394431591034,0.0944221168756485,-0.629313170909882,0.837141573429108,0.204977050423622,-0.507127583026886,0.618378937244415,0.239055067300797,-0.748638868331909,0.544002830982208,0.334691017866135,-0.769443213939667,0.837141573429108,0.204977050423622,-0.507127583026886,0.771394431591034,0.0944221168756485,-0.629313170909882,0.892970025539398,-0.0762939229607582,-0.443603217601776,0.951014399528503,0.230790764093399,-0.205687284469604,0.81668496131897,0.377242684364319,-0.436707586050034,0.837141573429108,0.204977050423622,-0.507127583026886,0.951014399528503,0.230790764093399,-0.205687284469604,0.852208018302917,0.498345047235489,-0.159353509545326,0.852208018302917,0.498345047235489,-0.159353509545326,0.951014399528503,0.230790764093399,-0.205687284469604,0.808700859546661,0.325703829526901,0.489816308021545,0.707025408744812,0.547127425670624,0.448070019483566,0.951014399528503,0.230790764093399,-0.205687284469604,0.892970025539398,-0.0762939229607582,-0.443603217601776,0.914044320583344,-0.357191115617752,0.192191600799561,0.808700859546661,0.325703829526901,0.489816308021545,0.808700859546661,0.325703829526901,0.489816308021545,0.914044320583344,-0.357191115617752,0.192191600799561,0.821652591228485,-0.227793514728546,0.52249139547348,0.650942742824554,0.423487991094589,0.630024969577789,0.54740297794342,0.632678389549255,0.547784686088562,0.707025408744812,0.547127425670624,0.448070019483566,0.808700859546661,0.325703829526901,0.489816308021545,0.650942742824554,0.423487991094589,0.630024969577789,0.40797546505928,-0.907143175601959,0.103186041116714,0.882606685161591,-0.22201332449913,0.414385885000229,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.328743159770966,-0.944285452365875,0.0159010514616966,0.40797546505928,-0.907143175601959,0.103186041116714,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.429949104785919,-0.892269849777222,-0.137833878397942,0.40797546505928,-0.907143175601959,0.103186041116714, -0.328743159770966,-0.944285452365875,0.0159010514616966,-0.00453746924176812,-0.959409117698669,0.281981498003006,-0.017802894115448,-0.888382017612457,0.458759725093842,0.712423324584961,0.262680470943451,0.650731921195984,0.40797546505928,-0.907143175601959,0.103186041116714,-0.017802894115448,-0.888382017612457,0.458759725093842,0.00481855915859342,-0.0946849584579468,0.995495736598969,0.00481855915859342,-0.0946849584579468,0.995495736598969,-0.017802894115448,-0.888382017612457,0.458759725093842,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.6987544298172,0.276502400636673,0.659764111042023,-0.017802894115448,-0.888382017612457,0.458759725093842,-0.00453746924176812,-0.959409117698669,0.281981498003006,-0.339124590158463,-0.940390467643738,0.0256970208138227,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.339124590158463,-0.940390467643738,0.0256970208138227,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.870673716068268,0.171584844589233,-0.460962057113647, --0.754664897918701,0.0905574262142181,-0.649830937385559,-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.870673716068268,0.171584844589233,-0.460962057113647,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.0333024151623249,0.997731506824493,-0.0585035756230354,-0.0460751131176949,0.903827309608459,-0.425409525632858,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.0460751131176949,0.903827309608459,-0.425409525632858,-0.117432110011578,0.602196216583252,-0.789664149284363,0.0739728212356567,0.930635392665863,-0.358393341302872,-0.0155662829056382,0.633758544921875,-0.773374259471893,-0.117432110011578,0.602196216583252,-0.789664149284363,-0.0460751131176949,0.903827309608459,-0.425409525632858,0.128923192620277,0.991647839546204,-0.00366894504986703,0.0739728212356567,0.930635392665863,-0.358393341302872,-0.0460751131176949,0.903827309608459,-0.425409525632858,-0.0333024151623249,0.997731506824493,-0.0585035756230354,0.0739728212356567,0.930635392665863,-0.358393341302872,0.128923192620277,0.991647839546204,-0.00366894504986703,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-0.0155662829056382,0.633758544921875,-0.773374259471893,0.0739728212356567,0.930635392665863,-0.358393341302872,-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-0.073967382311821,0.93063485622406,-0.358395993709564,0.0155651671811938,0.633765578269958,-0.773368537425995, --2.20903935144179e-08,0.947379052639008,-0.320114016532898,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,-0.128917783498764,0.991648554801941,-0.00367245217785239,-0.073967382311821,0.93063485622406,-0.358395993709564,-0.073967382311821,0.93063485622406,-0.358395993709564,-0.128917783498764,0.991648554801941,-0.00367245217785239,0.0333118550479412,0.997731387615204,-0.0585032925009727,0.0460751727223396,0.903830647468567,-0.42540243268013,0.117442525923252,0.602194428443909,-0.789663910865784,0.0155651671811938,0.633765578269958,-0.773368537425995,-0.073967382311821,0.93063485622406,-0.358395993709564,0.0460751727223396,0.903830647468567,-0.42540243268013,0.0460751727223396,0.903830647468567,-0.42540243268013,0.0333118550479412,0.997731387615204,-0.0585032925009727,0.659068405628204,0.677831828594208,-0.325841993093491,0.56488710641861,0.525017380714417,-0.636599779129028,0.117442525923252,0.602194428443909,-0.789663910865784,0.0460751727223396,0.903830647468567,-0.42540243268013,0.56488710641861,0.525017380714417,-0.636599779129028,0.544002830982208,0.334691017866135,-0.769443213939667,0.754644453525543,0.0905735939741135,-0.649852395057678,0.771394431591034,0.0944221168756485,-0.629313170909882,0.544002830982208,0.334691017866135,-0.769443213939667,0.56488710641861,0.525017380714417,-0.636599779129028,0.870685815811157,0.171618282794952,-0.460926592350006,0.754644453525543,0.0905735939741135,-0.649852395057678,0.56488710641861,0.525017380714417,-0.636599779129028,0.659068405628204,0.677831828594208,-0.325841993093491,0.754644453525543,0.0905735939741135,-0.649852395057678,0.870685815811157,0.171618282794952,-0.460926592350006,0.839908480644226,-0.232921779155731,-0.490205079317093,0.788721859455109,-0.21987096965313,-0.574085772037506,0.771394431591034,0.0944221168756485,-0.629313170909882,0.754644453525543,0.0905735939741135,-0.649852395057678,0.788721859455109,-0.21987096965313,-0.574085772037506,0.892970025539398,-0.0762939229607582,-0.443603217601776,0.892970025539398,-0.0762939229607582,-0.443603217601776, -0.788721859455109,-0.21987096965313,-0.574085772037506,0.654315769672394,-0.708335757255554,-0.264823198318481,0.914044320583344,-0.357191115617752,0.192191600799561,0.788721859455109,-0.21987096965313,-0.574085772037506,0.839908480644226,-0.232921779155731,-0.490205079317093,0.595374405384064,-0.733837783336639,-0.32712584733963,0.654315769672394,-0.708335757255554,-0.264823198318481,0.654315769672394,-0.708335757255554,-0.264823198318481,0.595374405384064,-0.733837783336639,-0.32712584733963,0.429949104785919,-0.892269849777222,-0.137833878397942,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.914044320583344,-0.357191115617752,0.192191600799561,0.654315769672394,-0.708335757255554,-0.264823198318481,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.821652591228485,-0.227793514728546,0.52249139547348,0.133274808526039,-0.979536056518555,-0.150820508599281,0.328743159770966,-0.944285452365875,0.0159010514616966,0.429949104785919,-0.892269849777222,-0.137833878397942,0.350175321102142,-0.916565537452698,-0.19309301674366,0.136113852262497,-0.990546584129333,0.0170460753142834,0.133274808526039,-0.979536056518555,-0.150820508599281,0.350175321102142,-0.916565537452698,-0.19309301674366,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.133274808526039,-0.979536056518555,-0.150820508599281,0.136113852262497,-0.990546584129333,0.0170460753142834,6.92325045292819e-07,-0.99685138463974,0.0792924910783768,1.42238445732801e-06,-0.999859035015106,0.016791146248579,0.328743159770966,-0.944285452365875,0.0159010514616966,0.133274808526039,-0.979536056518555,-0.150820508599281,1.42238445732801e-06,-0.999859035015106,0.016791146248579,-0.00453746924176812,-0.959409117698669,0.281981498003006,-0.00453746924176812,-0.959409117698669,0.281981498003006,1.42238445732801e-06,-0.999859035015106,0.016791146248579,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.339124590158463,-0.940390467643738,0.0256970208138227,1.42238445732801e-06,-0.999859035015106,0.016791146248579,6.92325045292819e-07,-0.99685138463974,0.0792924910783768, --0.136119112372398,-0.990545928478241,0.0170430857688189,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.136119112372398,-0.990545928478241,0.0170430857688189,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.339124590158463,-0.940390467643738,0.0256970208138227,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.870673716068268,0.171584844589233,-0.460962057113647,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.923179626464844,0.320809721946716,0.211708515882492,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.923179626464844,0.320809721946716,0.211708515882492,-0.608199298381805,0.701407432556152,0.371646672487259,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.870673716068268,0.171584844589233,-0.460962057113647,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.608199298381805,0.701407432556152,0.371646672487259,-0.050669327378273,0.905841767787933,0.420574963092804, --0.0486392304301262,0.971866726875305,0.230454355478287,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.0486392304301262,0.971866726875305,0.230454355478287,-0.0333024151623249,0.997731506824493,-0.0585035756230354,0.14022958278656,0.960527002811432,0.240257427096367,0.128923192620277,0.991647839546204,-0.00366894504986703,-0.0333024151623249,0.997731506824493,-0.0585035756230354,-0.0486392304301262,0.971866726875305,0.230454355478287,0.127548262476921,0.909173727035522,0.396402150392532,0.14022958278656,0.960527002811432,0.240257427096367,-0.0486392304301262,0.971866726875305,0.230454355478287,-0.050669327378273,0.905841767787933,0.420574963092804,0.14022958278656,0.960527002811432,0.240257427096367,0.127548262476921,0.909173727035522,0.396402150392532,-5.87420920794557e-08,0.921293497085571,0.388868063688278,1.54691491616177e-07,0.969164848327637,0.246413260698318,0.128923192620277,0.991647839546204,-0.00366894504986703,0.14022958278656,0.960527002811432,0.240257427096367,1.54691491616177e-07,0.969164848327637,0.246413260698318,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,1.54691491616177e-07,0.969164848327637,0.246413260698318,-0.140225932002068,0.960526466369629,0.240261495113373,-0.128917783498764,0.991648554801941,-0.00367245217785239,1.54691491616177e-07,0.969164848327637,0.246413260698318,-5.87420920794557e-08,0.921293497085571,0.388868063688278,-0.127542853355408,0.909172773361206,0.396405845880508,-0.140225932002068,0.960526466369629,0.240261495113373,-0.140225932002068,0.960526466369629,0.240261495113373,-0.127542853355408,0.909172773361206,0.396405845880508,0.0506800226867199,0.905842065811157,0.420573085546494,0.0486221760511398,0.971867024898529,0.230456799268723,0.0333118550479412,0.997731387615204,-0.0585032925009727,-0.128917783498764,0.991648554801941,-0.00367245217785239,-0.140225932002068,0.960526466369629,0.240261495113373,0.0486221760511398,0.971867024898529,0.230456799268723, -0.0486221760511398,0.971867024898529,0.230456799268723,0.0506800226867199,0.905842065811157,0.420573085546494,0.608221113681793,0.70141339302063,0.371599763631821,0.687989056110382,0.721827626228333,0.0750721246004105,0.0333118550479412,0.997731387615204,-0.0585032925009727,0.0486221760511398,0.971867024898529,0.230456799268723,0.687989056110382,0.721827626228333,0.0750721246004105,0.659068405628204,0.677831828594208,-0.325841993093491,0.959466934204102,0.259112805128098,-0.110831968486309,0.870685815811157,0.171618282794952,-0.460926592350006,0.659068405628204,0.677831828594208,-0.325841993093491,0.687989056110382,0.721827626228333,0.0750721246004105,0.923181056976318,0.320837199687958,0.211660459637642,0.959466934204102,0.259112805128098,-0.110831968486309,0.687989056110382,0.721827626228333,0.0750721246004105,0.608221113681793,0.70141339302063,0.371599763631821,0.959466934204102,0.259112805128098,-0.110831968486309,0.923181056976318,0.320837199687958,0.211660459637642,0.966853320598602,-0.254572331905365,0.0196893829852343,0.93520849943161,-0.230121210217476,-0.269126951694489,0.870685815811157,0.171618282794952,-0.460926592350006,0.959466934204102,0.259112805128098,-0.110831968486309,0.93520849943161,-0.230121210217476,-0.269126951694489,0.839908480644226,-0.232921779155731,-0.490205079317093,0.839908480644226,-0.232921779155731,-0.490205079317093,0.93520849943161,-0.230121210217476,-0.269126951694489,0.596242308616638,-0.761437654495239,-0.25437730550766,0.595374405384064,-0.733837783336639,-0.32712584733963,0.93520849943161,-0.230121210217476,-0.269126951694489,0.966853320598602,-0.254572331905365,0.0196893829852343,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.596242308616638,-0.761437654495239,-0.25437730550766,0.596242308616638,-0.761437654495239,-0.25437730550766,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.350175321102142,-0.916565537452698,-0.19309301674366,0.595374405384064,-0.733837783336639,-0.32712584733963,0.596242308616638,-0.761437654495239,-0.25437730550766, -0.350175321102142,-0.916565537452698,-0.19309301674366,0.429949104785919,-0.892269849777222,-0.137833878397942,0.132026225328445,-0.984198391437531,0.117994152009487,0.136113852262497,-0.990546584129333,0.0170460753142834,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.295943468809128,-0.951343715190887,0.0858049169182777,0.105100408196449,-0.994082272052765,0.0274662841111422,0.132026225328445,-0.984198391437531,0.117994152009487,0.295943468809128,-0.951343715190887,0.0858049169182777,0.220161974430084,-0.97490793466568,0.0329131186008453,0.132026225328445,-0.984198391437531,0.117994152009487,0.105100408196449,-0.994082272052765,0.0274662841111422,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,6.84173869558435e-07,-0.992788076400757,0.119882382452488,0.136113852262497,-0.990546584129333,0.0170460753142834,0.132026225328445,-0.984198391437531,0.117994152009487,6.84173869558435e-07,-0.992788076400757,0.119882382452488,6.92325045292819e-07,-0.99685138463974,0.0792924910783768,6.92325045292819e-07,-0.99685138463974,0.0792924910783768,6.84173869558435e-07,-0.992788076400757,0.119882382452488,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.136119112372398,-0.990545928478241,0.0170430857688189,6.84173869558435e-07,-0.992788076400757,0.119882382452488,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,-0.105107061564922,-0.994081556797028,0.0274670012295246,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.105107061564922,-0.994081556797028,0.0274670012295246,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.136119112372398,-0.990545928478241,0.0170430857688189,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.344773948192596,-0.938333809375763,0.0257047209888697, --0.466939598321915,-0.882675111293793,0.0534044429659843,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.466939598321915,-0.882675111293793,0.0534044429659843,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.864584505558014,0.340903431177139,0.369159042835236,-0.923179626464844,0.320809721946716,0.211708515882492,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.875592231750488,0.32309490442276,0.359093308448792,-0.864584505558014,0.340903431177139,0.369159042835236,-0.864584505558014,0.340903431177139,0.369159042835236,-0.875592231750488,0.32309490442276,0.359093308448792,-0.524005472660065,0.757515430450439,0.389343708753586,-0.533544719219208,0.69936740398407,0.475620895624161,-0.608199298381805,0.701407432556152,0.371646672487259,-0.923179626464844,0.320809721946716,0.211708515882492,-0.864584505558014,0.340903431177139,0.369159042835236,-0.533544719219208,0.69936740398407,0.475620895624161,-0.533544719219208,0.69936740398407,0.475620895624161,-0.524005472660065,0.757515430450439,0.389343708753586,-0.0486269742250443,0.939252614974976,0.33976474404335,-0.0462996661663055,0.871803283691406,0.487663120031357,-0.608199298381805,0.701407432556152,0.371646672487259,-0.533544719219208,0.69936740398407,0.475620895624161,-0.0462996661663055,0.871803283691406,0.487663120031357,-0.050669327378273,0.905841767787933,0.420574963092804,0.102118708193302,0.885444819927216,0.453386455774307,0.127548262476921,0.909173727035522,0.396402150392532,-0.050669327378273,0.905841767787933,0.420574963092804,-0.0462996661663055,0.871803283691406,0.487663120031357,0.0839923620223999,0.948243975639343,0.306233018636703,0.102118708193302,0.885444819927216,0.453386455774307,-0.0462996661663055,0.871803283691406,0.487663120031357,-0.0486269742250443,0.939252614974976,0.33976474404335,0.102118708193302,0.885444819927216,0.453386455774307, -0.0839923620223999,0.948243975639343,0.306233018636703,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-2.6050707901959e-07,0.898688793182373,0.438587129116058,0.127548262476921,0.909173727035522,0.396402150392532,0.102118708193302,0.885444819927216,0.453386455774307,-2.6050707901959e-07,0.898688793182373,0.438587129116058,-5.87420920794557e-08,0.921293497085571,0.388868063688278,-5.87420920794557e-08,0.921293497085571,0.388868063688278,-2.6050707901959e-07,0.898688793182373,0.438587129116058,-0.102113209664822,0.885447680950165,0.453381955623627,-0.127542853355408,0.909172773361206,0.396405845880508,-2.6050707901959e-07,0.898688793182373,0.438587129116058,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-0.0839898064732552,0.948244750499725,0.306231379508972,-0.102113209664822,0.885447680950165,0.453381955623627,-0.102113209664822,0.885447680950165,0.453381955623627,-0.0839898064732552,0.948244750499725,0.306231379508972,0.0486114658415318,0.939255714416504,0.33975824713707,0.0463057458400726,0.871802270412445,0.487664312124252,0.0506800226867199,0.905842065811157,0.420573085546494,-0.127542853355408,0.909172773361206,0.396405845880508,-0.102113209664822,0.885447680950165,0.453381955623627,0.0463057458400726,0.871802270412445,0.487664312124252,0.0463057458400726,0.871802270412445,0.487664312124252,0.0486114658415318,0.939255714416504,0.33975824713707,0.523992538452148,0.757517158985138,0.389357835054398,0.533533811569214,0.699371516704559,0.475627064704895,0.0506800226867199,0.905842065811157,0.420573085546494,0.0463057458400726,0.871802270412445,0.487664312124252,0.533533811569214,0.699371516704559,0.475627064704895,0.608221113681793,0.70141339302063,0.371599763631821,0.864582180976868,0.340907722711563,0.369160801172256,0.923181056976318,0.320837199687958,0.211660459637642,0.608221113681793,0.70141339302063,0.371599763631821,0.533533811569214,0.699371516704559,0.475627064704895,0.875584006309509,0.323092758655548,0.359114944934845,0.864582180976868,0.340907722711563,0.369160801172256,0.533533811569214,0.699371516704559,0.475627064704895, -0.523992538452148,0.757517158985138,0.389357835054398,0.864582180976868,0.340907722711563,0.369160801172256,0.875584006309509,0.323092758655548,0.359114944934845,0.824189245700836,-0.533842861652374,0.189007550477982,0.908129811286926,-0.372855067253113,0.190471082925797,0.923181056976318,0.320837199687958,0.211660459637642,0.864582180976868,0.340907722711563,0.369160801172256,0.908129811286926,-0.372855067253113,0.190471082925797,0.966853320598602,-0.254572331905365,0.0196893829852343,0.966853320598602,-0.254572331905365,0.0196893829852343,0.908129811286926,-0.372855067253113,0.190471082925797,0.46694141626358,-0.8826744556427,0.0534005276858807,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.908129811286926,-0.372855067253113,0.190471082925797,0.824189245700836,-0.533842861652374,0.189007550477982,0.344773679971695,-0.938333809375763,0.0257037617266178,0.46694141626358,-0.8826744556427,0.0534005276858807,0.46694141626358,-0.8826744556427,0.0534005276858807,0.344773679971695,-0.938333809375763,0.0257037617266178,0.220161974430084,-0.97490793466568,0.0329131186008453,0.295943468809128,-0.951343715190887,0.0858049169182777,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.46694141626358,-0.8826744556427,0.0534005276858807,0.295943468809128,-0.951343715190887,0.0858049169182777,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.105296939611435,-0.994079172611237,-0.0268163122236729,0.105100408196449,-0.994082272052765,0.0274662841111422,0.220161974430084,-0.97490793466568,0.0329131186008453,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.115611836314201,-0.99113267660141,0.065497063100338,0.105296939611435,-0.994079172611237,-0.0268163122236729,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.199431404471397,-0.97605311870575,0.0868756547570229,0.105296939611435,-0.994079172611237,-0.0268163122236729,0.115611836314201,-0.99113267660141,0.065497063100338,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404, -0.105100408196449,-0.994082272052765,0.0274662841111422,0.105296939611435,-0.994079172611237,-0.0268163122236729,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.105107061564922,-0.994081556797028,0.0274670012295246,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,-0.115619517862797,-0.991130769252777,0.0655117109417915,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.115619517862797,-0.991130769252777,0.0655117109417915,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.105107061564922,-0.994081556797028,0.0274670012295246,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.344773948192596,-0.938333809375763,0.0257047209888697,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.899128139019012,0.303717494010925,0.315157622098923,-0.875592231750488,0.32309490442276,0.359093308448792,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.904420733451843,0.325867354869843,0.275379002094269,-0.899128139019012,0.303717494010925,0.315157622098923, --0.899128139019012,0.303717494010925,0.315157622098923,-0.904420733451843,0.325867354869843,0.275379002094269,-0.544287741184235,0.81655889749527,0.192307844758034,-0.541836977005005,0.801604747772217,0.252670735120773,-0.524005472660065,0.757515430450439,0.389343708753586,-0.875592231750488,0.32309490442276,0.359093308448792,-0.899128139019012,0.303717494010925,0.315157622098923,-0.541836977005005,0.801604747772217,0.252670735120773,-0.541836977005005,0.801604747772217,0.252670735120773,-0.544287741184235,0.81655889749527,0.192307844758034,-0.0623407401144505,0.995002210140228,0.0780014917254448,-0.0573663003742695,0.989228188991547,0.134672358632088,-0.524005472660065,0.757515430450439,0.389343708753586,-0.541836977005005,0.801604747772217,0.252670735120773,-0.0573663003742695,0.989228188991547,0.134672358632088,-0.0486269742250443,0.939252614974976,0.33976474404335,0.0849191024899483,0.990578174591064,0.107441686093807,0.0839923620223999,0.948243975639343,0.306233018636703,-0.0486269742250443,0.939252614974976,0.33976474404335,-0.0573663003742695,0.989228188991547,0.134672358632088,0.0963490232825279,0.994278073310852,0.0461297482252121,0.0849191024899483,0.990578174591064,0.107441686093807,-0.0573663003742695,0.989228188991547,0.134672358632088,-0.0623407401144505,0.995002210140228,0.0780014917254448,0.0849191024899483,0.990578174591064,0.107441686093807,0.0963490232825279,0.994278073310852,0.0461297482252121,-6.43930349042421e-08,0.998733282089233,0.0503183603286743,-4.31713999660133e-07,0.993286550045013,0.11568009853363,0.0839923620223999,0.948243975639343,0.306233018636703,0.0849191024899483,0.990578174591064,0.107441686093807,-4.31713999660133e-07,0.993286550045013,0.11568009853363,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-4.31713999660133e-07,0.993286550045013,0.11568009853363,-0.084913082420826,0.990578591823578,0.107442416250706,-0.0839898064732552,0.948244750499725,0.306231379508972,-4.31713999660133e-07,0.993286550045013,0.11568009853363, --6.43930349042421e-08,0.998733282089233,0.0503183603286743,-0.0963428691029549,0.9942786693573,0.0461303815245628,-0.084913082420826,0.990578591823578,0.107442416250706,-0.084913082420826,0.990578591823578,0.107442416250706,-0.0963428691029549,0.9942786693573,0.0461303815245628,0.062339223921299,0.995001912117004,0.078006811439991,0.0573724359273911,0.989227950572968,0.134671866893768,0.0486114658415318,0.939255714416504,0.33975824713707,-0.0839898064732552,0.948244750499725,0.306231379508972,-0.084913082420826,0.990578591823578,0.107442416250706,0.0573724359273911,0.989227950572968,0.134671866893768,0.0573724359273911,0.989227950572968,0.134671866893768,0.062339223921299,0.995001912117004,0.078006811439991,0.544317603111267,0.816530346870422,0.192344948649406,0.541850030422211,0.801597118377686,0.252666920423508,0.0486114658415318,0.939255714416504,0.33975824713707,0.0573724359273911,0.989227950572968,0.134671866893768,0.541850030422211,0.801597118377686,0.252666920423508,0.523992538452148,0.757517158985138,0.389357835054398,0.899124145507813,0.303725302219391,0.31516170501709,0.875584006309509,0.323092758655548,0.359114944934845,0.523992538452148,0.757517158985138,0.389357835054398,0.541850030422211,0.801597118377686,0.252666920423508,0.904415905475616,0.325875461101532,0.27538537979126,0.899124145507813,0.303725302219391,0.31516170501709,0.541850030422211,0.801597118377686,0.252666920423508,0.544317603111267,0.816530346870422,0.192344948649406,0.899124145507813,0.303725302219391,0.31516170501709,0.904415905475616,0.325875461101532,0.27538537979126,0.746098697185516,-0.62243789434433,0.236448049545288,0.770985126495361,-0.607265472412109,0.191860571503639,0.875584006309509,0.323092758655548,0.359114944934845,0.899124145507813,0.303725302219391,0.31516170501709,0.770985126495361,-0.607265472412109,0.191860571503639,0.824189245700836,-0.533842861652374,0.189007550477982,0.824189245700836,-0.533842861652374,0.189007550477982,0.770985126495361,-0.607265472412109,0.191860571503639,0.289740324020386,-0.956932127475739,0.0182047635316849, -0.344773679971695,-0.938333809375763,0.0257037617266178,0.770985126495361,-0.607265472412109,0.191860571503639,0.746098697185516,-0.62243789434433,0.236448049545288,0.29267281293869,-0.948890864849091,0.11810489743948,0.289740324020386,-0.956932127475739,0.0182047635316849,0.289740324020386,-0.956932127475739,0.0182047635316849,0.29267281293869,-0.948890864849091,0.11810489743948,0.199431404471397,-0.97605311870575,0.0868756547570229,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.344773679971695,-0.938333809375763,0.0257037617266178,0.289740324020386,-0.956932127475739,0.0182047635316849,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.220161974430084,-0.97490793466568,0.0329131186008453,0.123441874980927,-0.972485065460205,0.197572261095047,0.115611836314201,-0.99113267660141,0.065497063100338,0.199431404471397,-0.97605311870575,0.0868756547570229,0.219982534646988,-0.948848187923431,0.226483553647995,0.154018700122833,-0.962590396404266,0.222930043935776,0.123441874980927,-0.972485065460205,0.197572261095047,0.219982534646988,-0.948848187923431,0.226483553647995,0.246317118406296,-0.926339566707611,0.284996539354324,0.123441874980927,-0.972485065460205,0.197572261095047,0.154018700122833,-0.962590396404266,0.222930043935776,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,6.75318869980401e-06,-0.983081102371216,0.183171257376671,0.115611836314201,-0.99113267660141,0.065497063100338,0.123441874980927,-0.972485065460205,0.197572261095047,6.75318869980401e-06,-0.983081102371216,0.183171257376671,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,6.75318869980401e-06,-0.983081102371216,0.183171257376671,-0.123431190848351,-0.972486436367035,0.197572574019432,-0.115619517862797,-0.991130769252777,0.0655117109417915,6.75318869980401e-06,-0.983081102371216,0.183171257376671,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,-0.154009163379669,-0.962590098381042,0.222938135266304,-0.123431190848351,-0.972486436367035,0.197572574019432, --0.123431190848351,-0.972486436367035,0.197572574019432,-0.154009163379669,-0.962590098381042,0.222938135266304,-0.246295556426048,-0.926344811916351,0.284997552633286,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.115619517862797,-0.991130769252777,0.0655117109417915,-0.123431190848351,-0.972486436367035,0.197572574019432,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.246295556426048,-0.926344811916351,0.284997552633286,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.868865311145782,0.439603745937347,0.227643713355064,-0.904420733451843,0.325867354869843,0.275379002094269,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.769762396812439,0.557566463947296,0.310782045125961,-0.868865311145782,0.439603745937347,0.227643713355064,-0.868865311145782,0.439603745937347,0.227643713355064,-0.769762396812439,0.557566463947296,0.310782045125961,-0.443143427371979,0.861525654792786,0.247785106301308,-0.52218633890152,0.830473244190216,0.193998754024506,-0.544287741184235,0.81655889749527,0.192307844758034,-0.904420733451843,0.325867354869843,0.275379002094269,-0.868865311145782,0.439603745937347,0.227643713355064,-0.52218633890152,0.830473244190216,0.193998754024506,-0.52218633890152,0.830473244190216,0.193998754024506,-0.443143427371979,0.861525654792786,0.247785106301308,-0.0579869635403156,0.986328542232513,0.154251113533974,-0.0714135468006134,0.992144048213959,0.102715209126472,-0.544287741184235,0.81655889749527,0.192307844758034, --0.52218633890152,0.830473244190216,0.193998754024506,-0.0714135468006134,0.992144048213959,0.102715209126472,-0.0623407401144505,0.995002210140228,0.0780014917254448,0.101248674094677,0.993318855762482,0.0553735643625259,0.0963490232825279,0.994278073310852,0.0461297482252121,-0.0623407401144505,0.995002210140228,0.0780014917254448,-0.0714135468006134,0.992144048213959,0.102715209126472,0.100855007767677,0.987614512443542,0.120191477239132,0.101248674094677,0.993318855762482,0.0553735643625259,-0.0714135468006134,0.992144048213959,0.102715209126472,-0.0579869635403156,0.986328542232513,0.154251113533974,0.101248674094677,0.993318855762482,0.0553735643625259,0.100855007767677,0.987614512443542,0.120191477239132,-3.43297585914115e-07,0.993099987506866,0.117269933223724,7.63249907720365e-09,0.998726725578308,0.0504464507102966,0.0963490232825279,0.994278073310852,0.0461297482252121,0.101248674094677,0.993318855762482,0.0553735643625259,7.63249907720365e-09,0.998726725578308,0.0504464507102966,-6.43930349042421e-08,0.998733282089233,0.0503183603286743,-6.43930349042421e-08,0.998733282089233,0.0503183603286743,7.63249907720365e-09,0.998726725578308,0.0504464507102966,-0.101237423717976,0.993319511413574,0.0553832836449146,-0.0963428691029549,0.9942786693573,0.0461303815245628,7.63249907720365e-09,0.998726725578308,0.0504464507102966,-3.43297585914115e-07,0.993099987506866,0.117269933223724,-0.100844390690327,0.987615764141083,0.120189927518368,-0.101237423717976,0.993319511413574,0.0553832836449146,-0.101237423717976,0.993319511413574,0.0553832836449146,-0.100844390690327,0.987615764141083,0.120189927518368,0.0579871386289597,0.986329913139343,0.154242739081383,0.0714134350419044,0.992143630981445,0.102718763053417,0.062339223921299,0.995001912117004,0.078006811439991,-0.0963428691029549,0.9942786693573,0.0461303815245628,-0.101237423717976,0.993319511413574,0.0553832836449146,0.0714134350419044,0.992143630981445,0.102718763053417,0.0714134350419044,0.992143630981445,0.102718763053417,0.0579871386289597,0.986329913139343,0.154242739081383, -0.443184733390808,0.861522793769836,0.247721269726753,0.522176265716553,0.830479621887207,0.193999052047729,0.062339223921299,0.995001912117004,0.078006811439991,0.0714134350419044,0.992143630981445,0.102718763053417,0.522176265716553,0.830479621887207,0.193999052047729,0.544317603111267,0.816530346870422,0.192344948649406,0.86882072687149,0.439678430557251,0.227669551968575,0.904415905475616,0.325875461101532,0.27538537979126,0.544317603111267,0.816530346870422,0.192344948649406,0.522176265716553,0.830479621887207,0.193999052047729,0.76978987455368,0.557630121707916,0.310599893331528,0.86882072687149,0.439678430557251,0.227669551968575,0.522176265716553,0.830479621887207,0.193999052047729,0.443184733390808,0.861522793769836,0.247721269726753,0.86882072687149,0.439678430557251,0.227669551968575,0.76978987455368,0.557630121707916,0.310599893331528,0.786892175674438,-0.450535178184509,0.421685457229614,0.788075625896454,-0.541678309440613,0.292440325021744,0.904415905475616,0.325875461101532,0.27538537979126,0.86882072687149,0.439678430557251,0.227669551968575,0.788075625896454,-0.541678309440613,0.292440325021744,0.746098697185516,-0.62243789434433,0.236448049545288,0.746098697185516,-0.62243789434433,0.236448049545288,0.788075625896454,-0.541678309440613,0.292440325021744,0.319241791963577,-0.912434041500092,0.256024926900864,0.29267281293869,-0.948890864849091,0.11810489743948,0.788075625896454,-0.541678309440613,0.292440325021744,0.786892175674438,-0.450535178184509,0.421685457229614,0.346514701843262,-0.87484222650528,0.338494598865509,0.319241791963577,-0.912434041500092,0.256024926900864,0.319241791963577,-0.912434041500092,0.256024926900864,0.346514701843262,-0.87484222650528,0.338494598865509,0.246317118406296,-0.926339566707611,0.284996539354324,0.219982534646988,-0.948848187923431,0.226483553647995,0.29267281293869,-0.948890864849091,0.11810489743948,0.319241791963577,-0.912434041500092,0.256024926900864,0.219982534646988,-0.948848187923431,0.226483553647995,0.199431404471397,-0.97605311870575,0.0868756547570229, -0.183378607034683,-0.859746336936951,0.476663857698441,0.154018700122833,-0.962590396404266,0.222930043935776,0.246317118406296,-0.926339566707611,0.284996539354324,0.274058401584625,-0.819783806800842,0.502838253974915,0.178520902991295,-0.598080992698669,0.781299948692322,0.183378607034683,-0.859746336936951,0.476663857698441,0.274058401584625,-0.819783806800842,0.502838253974915,0.295463979244232,-0.524623990058899,0.798417627811432,0.183378607034683,-0.859746336936951,0.476663857698441,0.178520902991295,-0.598080992698669,0.781299948692322,-1.32595532704727e-05,-0.630243539810181,0.776397466659546,8.99190399650251e-06,-0.895446479320526,0.445169180631638,0.154018700122833,-0.962590396404266,0.222930043935776,0.183378607034683,-0.859746336936951,0.476663857698441,8.99190399650251e-06,-0.895446479320526,0.445169180631638,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,8.99190399650251e-06,-0.895446479320526,0.445169180631638,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.154009163379669,-0.962590098381042,0.222938135266304,8.99190399650251e-06,-0.895446479320526,0.445169180631638,-1.32595532704727e-05,-0.630243539810181,0.776397466659546,-0.178541168570518,-0.598098456859589,0.781281888484955,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.178541168570518,-0.598098456859589,0.781281888484955,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.274038106203079,-0.819787085056305,0.502844214439392,-0.246295556426048,-0.926344811916351,0.284997552633286,-0.154009163379669,-0.962590098381042,0.222938135266304,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.274038106203079,-0.819787085056305,0.502844214439392,-0.274038106203079,-0.819787085056305,0.502844214439392,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.410991340875626,-0.434376358985901,0.801500737667084,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.246295556426048,-0.926344811916351,0.284997552633286, --0.274038106203079,-0.819787085056305,0.502844214439392,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.638568341732025,0.609943985939026,0.46925351023674,-0.769762396812439,0.557566463947296,0.310782045125961,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.577005445957184,-0.0206903330981731,0.816478192806244,-0.518030643463135,0.493195116519928,0.698858201503754,-0.638568341732025,0.609943985939026,0.46925351023674,-0.638568341732025,0.609943985939026,0.46925351023674,-0.518030643463135,0.493195116519928,0.698858201503754,-0.300830811262131,0.617885708808899,0.726442158222198,-0.354806751012802,0.819741725921631,0.449595183134079,-0.443143427371979,0.861525654792786,0.247785106301308,-0.769762396812439,0.557566463947296,0.310782045125961,-0.638568341732025,0.609943985939026,0.46925351023674,-0.354806751012802,0.819741725921631,0.449595183134079,-0.354806751012802,0.819741725921631,0.449595183134079,-0.300830811262131,0.617885708808899,0.726442158222198,-0.0740893334150314,0.656745910644531,0.750463485717773,-0.0432001166045666,0.892786085605621,0.448404669761658,-0.443143427371979,0.861525654792786,0.247785106301308,-0.354806751012802,0.819741725921631,0.449595183134079,-0.0432001166045666,0.892786085605621,0.448404669761658,-0.0579869635403156,0.986328542232513,0.154251113533974,0.0780017152428627,0.887692332267761,0.453782171010971,0.100855007767677,0.987614512443542,0.120191477239132,-0.0579869635403156,0.986328542232513,0.154251113533974,-0.0432001166045666,0.892786085605621,0.448404669761658,0.0222944021224976,0.680644154548645,0.732274889945984,0.0780017152428627,0.887692332267761,0.453782171010971,-0.0432001166045666,0.892786085605621,0.448404669761658,-0.0740893334150314,0.656745910644531,0.750463485717773,0.0780017152428627,0.887692332267761,0.453782171010971,0.0222944021224976,0.680644154548645,0.732274889945984,-4.5741039684799e-06,0.704588413238525,0.709616243839264, --3.04861578115379e-06,0.893409192562103,0.449243873357773,0.100855007767677,0.987614512443542,0.120191477239132,0.0780017152428627,0.887692332267761,0.453782171010971,-3.04861578115379e-06,0.893409192562103,0.449243873357773,-3.43297585914115e-07,0.993099987506866,0.117269933223724,-3.43297585914115e-07,0.993099987506866,0.117269933223724,-3.04861578115379e-06,0.893409192562103,0.449243873357773,-0.0779917016625404,0.887694597244263,0.453779280185699,-0.100844390690327,0.987615764141083,0.120189927518368,-3.04861578115379e-06,0.893409192562103,0.449243873357773,-4.5741039684799e-06,0.704588413238525,0.709616243839264,-0.0222910661250353,0.680645227432251,0.732273995876312,-0.0779917016625404,0.887694597244263,0.453779280185699,-0.0779917016625404,0.887694597244263,0.453779280185699,-0.0222910661250353,0.680645227432251,0.732273995876312,0.0740716010332108,0.656759560108185,0.750453352928162,0.0432032905519009,0.892787516117096,0.448401600122452,0.0579871386289597,0.986329913139343,0.154242739081383,-0.100844390690327,0.987615764141083,0.120189927518368,-0.0779917016625404,0.887694597244263,0.453779280185699,0.0432032905519009,0.892787516117096,0.448401600122452,0.0432032905519009,0.892787516117096,0.448401600122452,0.0740716010332108,0.656759560108185,0.750453352928162,0.300834655761719,0.617887139320374,0.726439237594604,0.354812443256378,0.81972199678421,0.449626445770264,0.0579871386289597,0.986329913139343,0.154242739081383,0.0432032905519009,0.892787516117096,0.448401600122452,0.354812443256378,0.81972199678421,0.449626445770264,0.443184733390808,0.861522793769836,0.247721269726753,0.638554096221924,0.609900712966919,0.469329088926315,0.76978987455368,0.557630121707916,0.310599893331528,0.443184733390808,0.861522793769836,0.247721269726753,0.354812443256378,0.81972199678421,0.449626445770264,0.518049776554108,0.493121802806854,0.698895752429962,0.638554096221924,0.609900712966919,0.469329088926315,0.354812443256378,0.81972199678421,0.449626445770264,0.300834655761719,0.617887139320374,0.726439237594604,0.638554096221924,0.609900712966919,0.469329088926315, -0.518049776554108,0.493121802806854,0.698895752429962,0.576962471008301,-0.0204886123538017,0.81651371717453,0.704647958278656,-0.290556222200394,0.647339403629303,0.76978987455368,0.557630121707916,0.310599893331528,0.638554096221924,0.609900712966919,0.469329088926315,0.704647958278656,-0.290556222200394,0.647339403629303,0.786892175674438,-0.450535178184509,0.421685457229614,0.786892175674438,-0.450535178184509,0.421685457229614,0.704647958278656,-0.290556222200394,0.647339403629303,0.38193017244339,-0.754715919494629,0.533416569232941,0.346514701843262,-0.87484222650528,0.338494598865509,0.704647958278656,-0.290556222200394,0.647339403629303,0.576962471008301,-0.0204886123538017,0.81651371717453,0.411023378372192,-0.434386372566223,0.801478743553162,0.38193017244339,-0.754715919494629,0.533416569232941,0.38193017244339,-0.754715919494629,0.533416569232941,0.411023378372192,-0.434386372566223,0.801478743553162,0.295463979244232,-0.524623990058899,0.798417627811432,0.274058401584625,-0.819783806800842,0.502838253974915,0.346514701843262,-0.87484222650528,0.338494598865509,0.38193017244339,-0.754715919494629,0.533416569232941,0.274058401584625,-0.819783806800842,0.502838253974915,0.246317118406296,-0.926339566707611,0.284996539354324,-4.5741039684799e-06,0.704588413238525,0.709616243839264,0.0222944021224976,0.680644154548645,0.732274889945984,-0.0971987396478653,0.164161846041679,0.981632888317108,-1.57685065005353e-06,0.176666915416718,0.984270691871643,-0.0971987396478653,0.164161846041679,0.981632888317108,0.0222944021224976,0.680644154548645,0.732274889945984,-0.0740893334150314,0.656745910644531,0.750463485717773,-0.224716141819954,0.160125687718391,0.9611776471138,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.178541168570518,-0.598098456859589,0.781281888484955,-0.0971987396478653,0.164161846041679,0.981632888317108,-0.224716141819954,0.160125687718391,0.9611776471138,-1.57685065005353e-06,0.176666915416718,0.984270691871643,-0.0971987396478653,0.164161846041679,0.981632888317108,-0.178541168570518,-0.598098456859589,0.781281888484955, --1.32595532704727e-05,-0.630243539810181,0.776397466659546,-0.224716141819954,0.160125687718391,0.9611776471138,-0.0740893334150314,0.656745910644531,0.750463485717773,-0.300830811262131,0.617885708808899,0.726442158222198,-0.389300435781479,0.176716148853302,0.904000282287598,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.224716141819954,0.160125687718391,0.9611776471138,-0.389300435781479,0.176716148853302,0.904000282287598,-0.410991340875626,-0.434376358985901,0.801500737667084,0.0740716010332108,0.656759560108185,0.750453352928162,-0.0222910661250353,0.680645227432251,0.732273995876312,0.0971815511584282,0.164161399006844,0.981634795665741,0.224751815199852,0.160114601254463,0.96117115020752,-0.0222910661250353,0.680645227432251,0.732273995876312,-4.5741039684799e-06,0.704588413238525,0.709616243839264,-1.57685065005353e-06,0.176666915416718,0.984270691871643,0.0971815511584282,0.164161399006844,0.981634795665741,0.0971815511584282,0.164161399006844,0.981634795665741,-1.57685065005353e-06,0.176666915416718,0.984270691871643,-1.32595532704727e-05,-0.630243539810181,0.776397466659546,0.178520902991295,-0.598080992698669,0.781299948692322,0.0971815511584282,0.164161399006844,0.981634795665741,0.178520902991295,-0.598080992698669,0.781299948692322,0.295463979244232,-0.524623990058899,0.798417627811432,0.224751815199852,0.160114601254463,0.96117115020752,0.576962471008301,-0.0204886123538017,0.81651371717453,0.518049776554108,0.493121802806854,0.698895752429962,0.389358222484589,0.17671425640583,0.903975784778595,0.411023378372192,-0.434386372566223,0.801478743553162,0.518049776554108,0.493121802806854,0.698895752429962,0.300834655761719,0.617887139320374,0.726439237594604,0.389358222484589,0.17671425640583,0.903975784778595,0.389358222484589,0.17671425640583,0.903975784778595,0.300834655761719,0.617887139320374,0.726439237594604,0.0740716010332108,0.656759560108185,0.750453352928162,0.224751815199852,0.160114601254463,0.96117115020752,0.411023378372192,-0.434386372566223,0.801478743553162,0.389358222484589,0.17671425640583,0.903975784778595, -0.224751815199852,0.160114601254463,0.96117115020752,0.295463979244232,-0.524623990058899,0.798417627811432,0.882606685161591,-0.22201332449913,0.414385885000229,0.571112811565399,0.649166345596313,0.502407431602478,0.650942742824554,0.423487991094589,0.630024969577789,0.821652591228485,-0.227793514728546,0.52249139547348,0.571112811565399,0.649166345596313,0.502407431602478,0.410055428743362,0.82936817407608,0.379477232694626,0.54740297794342,0.632678389549255,0.547784686088562,0.650942742824554,0.423487991094589,0.630024969577789,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.808794856071472,0.325524985790253,0.489779770374298,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.921597719192505,0.372494578361511,-0.109112277626991,-0.707225739955902,0.546885251998901,0.448049247264862,-0.808794856071472,0.325524985790253,0.489779770374298,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.466939598321915,-0.882675111293793,0.0534044429659843, --0.344773948192596,-0.938333809375763,0.0257047209888697,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.466939598321915,-0.882675111293793,0.0534044429659843,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.344773948192596,-0.938333809375763,0.0257047209888697,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.577005445957184,-0.0206903330981731,0.816478192806244,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.410991340875626,-0.434376358985901,0.801500737667084,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.518030643463135,0.493195116519928,0.698858201503754,-0.389300435781479,0.176716148853302,0.904000282287598,-0.300830811262131,0.617885708808899,0.726442158222198,-0.518030643463135,0.493195116519928,0.698858201503754,-0.577005445957184,-0.0206903330981731,0.816478192806244,-0.410991340875626,-0.434376358985901,0.801500737667084,-0.389300435781479,0.176716148853302,0.904000282287598,0.00460542785003781,0.423136234283447,0.906054377555847, -0.00872011017054319,0.514292359352112,0.857570588588715,-0.422915160655975,0.672670602798462,0.607171297073364,-0.441228061914444,0.651336491107941,0.617315471172333,0.00872011017054319,0.514292359352112,0.857570588588715,0.0168645158410072,0.671300053596497,0.740993797779083,-0.467725336551666,0.684906303882599,0.558691620826721,-0.422915160655975,0.672670602798462,0.607171297073364,-0.422915160655975,0.672670602798462,0.607171297073364,-0.467725336551666,0.684906303882599,0.558691620826721,-0.506949722766876,0.730726659297943,0.457209646701813,-0.473750680685043,0.77540510892868,0.417501211166382,-0.441228061914444,0.651336491107941,0.617315471172333,-0.422915160655975,0.672670602798462,0.607171297073364,-0.473750680685043,0.77540510892868,0.417501211166382,-0.426372587680817,0.802807927131653,0.416780292987823,0.427262783050537,0.802204430103302,0.417030513286591,0.410055428743362,0.82936817407608,0.379477232694626,0.571112811565399,0.649166345596313,0.502407431602478,0.475550502538681,0.774060308933258,0.417950212955475,0.571112811565399,0.649166345596313,0.502407431602478,0.882606685161591,-0.22201332449913,0.414385885000229,0.529205918312073,0.714222252368927,0.45806947350502,0.475550502538681,0.774060308933258,0.417950212955475,0.0168645158410072,0.671300053596497,0.740993797779083,0.4903504550457,0.657187819480896,0.572416543960571,0.712423324584961,0.262680470943451,0.650731921195984,0.00481855915859342,-0.0946849584579468,0.995495736598969,0.4903504550457,0.657187819480896,0.572416543960571,0.529205918312073,0.714222252368927,0.45806947350502,0.882606685161591,-0.22201332449913,0.414385885000229,0.712423324584961,0.262680470943451,0.650731921195984,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.506949722766876,0.730726659297943,0.457209646701813,-0.467725336551666,0.684906303882599,0.558691620826721,-0.6987544298172,0.276502400636673,0.659764111042023,-0.467725336551666,0.684906303882599,0.558691620826721,0.0168645158410072,0.671300053596497,0.740993797779083,0.00481855915859342,-0.0946849584579468,0.995495736598969, --0.6987544298172,0.276502400636673,0.659764111042023,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.6987544298172,0.276502400636673,0.659764111042023,-0.433865398168564,-0.891728520393372,0.128767356276512,0.40797546505928,-0.907143175601959,0.103186041116714,0.712423324584961,0.262680470943451,0.650731921195984,0.882606685161591,-0.22201332449913,0.414385885000229,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.882606685161591,-0.22201332449913,0.414385885000229,0.821652591228485,-0.227793514728546,0.52249139547348,0.79552561044693,0.595839858055115,0.110063374042511,0.822305619716644,0.555438220500946,0.123700670897961,0.864681661128998,0.456347972154617,0.209933280944824,0.837062537670135,0.505297303199768,0.209764391183853,0.837062537670135,0.505297303199768,0.209764391183853,0.864681661128998,0.456347972154617,0.209933280944824,0.785788238048553,0.527511775493622,0.322906166315079,0.779086053371429,0.561874985694885,0.278067231178284,0.779086053371429,0.561874985694885,0.278067231178284,0.785788238048553,0.527511775493622,0.322906166315079,0.564019203186035,0.698694348335266,0.440123379230499,0.605885326862335,0.723829686641693,0.330111473798752,0.605885326862335,0.723829686641693,0.330111473798752,0.564019203186035,0.698694348335266,0.440123379230499,0.321523547172546,0.764963090419769,0.558080613613129,0.352405101060867,0.847386181354523,0.397174149751663,0.352405101060867,0.847386181354523,0.397174149751663,0.321523547172546,0.764963090419769,0.558080613613129,0.123791985213757,0.766521096229553,0.630175292491913,0.161557465791702,0.858957171440125,0.485892802476883,0.161557465791702,0.858957171440125,0.485892802476883,0.123791985213757,0.766521096229553,0.630175292491913,-0.0675015673041344,0.782272636890411,0.619268119335175,-0.0538193956017494,0.849574446678162,0.524715840816498,-0.0538193956017494,0.849574446678162,0.524715840816498, --0.0675015673041344,0.782272636890411,0.619268119335175,-0.291181415319443,0.806532561779022,0.514508187770844,-0.279587477445602,0.866692841053009,0.413127571344376,-0.279587477445602,0.866692841053009,0.413127571344376,-0.291181415319443,0.806532561779022,0.514508187770844,-0.484429657459259,0.791166126728058,0.373341768980026,-0.46043586730957,0.846303462982178,0.26789790391922,-0.46043586730957,0.846303462982178,0.26789790391922,-0.484429657459259,0.791166126728058,0.373341768980026,-0.617279648780823,0.743905246257782,0.256067991256714,-0.565503835678101,0.811522305011749,0.147095218300819,-0.565503835678101,0.811522305011749,0.147095218300819,-0.617279648780823,0.743905246257782,0.256067991256714,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.545588612556458,0.837678790092468,-0.0250442679971457,-0.545588612556458,0.837678790092468,-0.0250442679971457,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.500788867473602,0.844238698482513,-0.190974965691566,-0.500788867473602,0.844238698482513,-0.190974965691566,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.465438723564148,0.862823069095612,-0.197238758206367,-0.465438723564148,0.862823069095612,-0.197238758206367,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.47386234998703,0.869076669216156,-0.141986981034279,-0.455590009689331,0.877338051795959,-0.150717169046402,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.663796007633209,0.741590857505798,-0.0970448330044746,-0.631025075912476,0.773547828197479,-0.0585756525397301,-0.47386234998703,0.869076669216156,-0.141986981034279,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.796590507030487,0.597080290317535,0.0945449396967888,-0.663796007633209,0.741590857505798,-0.0970448330044746,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.772992789745331,0.528485834598541,0.350976973772049, --0.796590507030487,0.597080290317535,0.0945449396967888,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.617279648780823,0.743905246257782,0.256067991256714,-0.668447852134705,0.558216512203217,0.491499423980713,-0.772992789745331,0.528485834598541,0.350976973772049,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.484429657459259,0.791166126728058,0.373341768980026,-0.512184023857117,0.631382584571838,0.582257270812988,-0.668447852134705,0.558216512203217,0.491499423980713,-0.617279648780823,0.743905246257782,0.256067991256714,-0.291181415319443,0.806532561779022,0.514508187770844,-0.286070048809052,0.674073100090027,0.681020855903625,-0.512184023857117,0.631382584571838,0.582257270812988,-0.484429657459259,0.791166126728058,0.373341768980026,-0.0675015673041344,0.782272636890411,0.619268119335175,-0.0609671249985695,0.66264545917511,0.746447682380676,-0.286070048809052,0.674073100090027,0.681020855903625,-0.291181415319443,0.806532561779022,0.514508187770844,0.123791985213757,0.766521096229553,0.630175292491913,0.10309998691082,0.640609622001648,0.760913848876953,-0.0609671249985695,0.66264545917511,0.746447682380676,-0.0675015673041344,0.782272636890411,0.619268119335175,0.321523547172546,0.764963090419769,0.558080613613129,0.27548560500145,0.629722595214844,0.726331293582916,0.10309998691082,0.640609622001648,0.760913848876953,0.123791985213757,0.766521096229553,0.630175292491913,0.564019203186035,0.698694348335266,0.440123379230499,0.523837089538574,0.619985103607178,0.584134578704834,0.27548560500145,0.629722595214844,0.726331293582916,0.321523547172546,0.764963090419769,0.558080613613129,0.785788238048553,0.527511775493622,0.322906166315079,0.783428847789764,0.497197300195694,0.372872799634933,0.523837089538574,0.619985103607178,0.584134578704834,0.564019203186035,0.698694348335266,0.440123379230499,0.864681661128998,0.456347972154617,0.209933280944824,0.887787878513336,0.409534066915512,0.210034757852554,0.783428847789764,0.497197300195694,0.372872799634933,0.785788238048553,0.527511775493622,0.322906166315079, -0.822305619716644,0.555438220500946,0.123700670897961,0.856370449066162,0.496364444494247,0.142309591174126,0.887787878513336,0.409534066915512,0.210034757852554,0.864681661128998,0.456347972154617,0.209933280944824,-0.20003841817379,0.438410580158234,0.876230895519257,-0.0559886768460274,0.364805787801743,0.929398715496063,-0.27756455540657,0.370197117328644,0.886516809463501,-0.451225459575653,0.409265160560608,0.793030679225922,-0.346906661987305,0.495702892541885,0.796199917793274,-0.20003841817379,0.438410580158234,0.876230895519257,-0.451225459575653,0.409265160560608,0.793030679225922,-0.449358850717545,0.44352787733078,0.775473773479462,-0.417869210243225,0.49138143658638,0.764152884483337,-0.346906661987305,0.495702892541885,0.796199917793274,-0.449358850717545,0.44352787733078,0.775473773479462,-0.463468283414841,0.434963941574097,0.772012710571289,-0.420782119035721,0.464201241731644,0.779396951198578,-0.417869210243225,0.49138143658638,0.764152884483337,-0.463468283414841,0.434963941574097,0.772012710571289,-0.432620614767075,0.41644498705864,0.799633085727692,-0.336877107620239,0.472848027944565,0.814204335212708,-0.420782119035721,0.464201241731644,0.779396951198578,-0.432620614767075,0.41644498705864,0.799633085727692,-0.365396708250046,0.418648719787598,0.831395506858826,-0.190253153443336,0.493472129106522,0.848698437213898,-0.336877107620239,0.472848027944565,0.814204335212708,-0.365396708250046,0.418648719787598,0.831395506858826,-0.191818997263908,0.392405778169632,0.899568319320679,-0.0167184416204691,0.453507572412491,0.891095578670502,-0.190253153443336,0.493472129106522,0.848698437213898,-0.191818997263908,0.392405778169632,0.899568319320679,0.00109934248030186,0.336940050125122,0.941525459289551,0.0648147463798523,0.414552092552185,0.907714486122131,-0.0167184416204691,0.453507572412491,0.891095578670502,0.00109934248030186,0.336940050125122,0.941525459289551,0.119346849620342,0.271680414676666,0.95495867729187,0.0978945046663284,0.492755919694901,0.864643335342407,0.0648147463798523,0.414552092552185,0.907714486122131, -0.119346849620342,0.271680414676666,0.95495867729187,0.148801043629646,0.288873583078384,0.945732772350311,-0.179629519581795,0.708519041538239,0.682447075843811,0.0978945046663284,0.492755919694901,0.864643335342407,0.148801043629646,0.288873583078384,0.945732772350311,0.0872103199362755,0.409369260072708,0.9081911444664,-0.515660226345062,0.725088238716125,0.456444472074509,-0.179629519581795,0.708519041538239,0.682447075843811,0.0872103199362755,0.409369260072708,0.9081911444664,-0.346839159727097,0.61002653837204,0.71243953704834,-0.346839159727097,0.61002653837204,0.71243953704834,-0.585036933422089,0.553135514259338,0.593104362487793,-0.680903017520905,0.6627037525177,0.31176084280014,-0.515660226345062,0.725088238716125,0.456444472074509,-0.451225459575653,0.409265160560608,0.793030679225922,-0.27756455540657,0.370197117328644,0.886516809463501,-0.616989433765411,0.336210519075394,0.711538076400757,-0.532644748687744,0.366001725196838,0.763107120990753,-0.449358850717545,0.44352787733078,0.775473773479462,-0.451225459575653,0.409265160560608,0.793030679225922,-0.532644748687744,0.366001725196838,0.763107120990753,-0.517771780490875,0.393900960683823,0.759443581104279,-0.463468283414841,0.434963941574097,0.772012710571289,-0.449358850717545,0.44352787733078,0.775473773479462,-0.517771780490875,0.393900960683823,0.759443581104279,-0.485129326581955,0.386637717485428,0.784321963787079,-0.432620614767075,0.41644498705864,0.799633085727692,-0.463468283414841,0.434963941574097,0.772012710571289,-0.485129326581955,0.386637717485428,0.784321963787079,-0.455205500125885,0.371867537498474,0.809013247489929,-0.365396708250046,0.418648719787598,0.831395506858826,-0.432620614767075,0.41644498705864,0.799633085727692,-0.455205500125885,0.371867537498474,0.809013247489929,-0.404153525829315,0.357689827680588,0.84185391664505,-0.191818997263908,0.392405778169632,0.899568319320679,-0.365396708250046,0.418648719787598,0.831395506858826,-0.404153525829315,0.357689827680588,0.84185391664505,-0.226094484329224,0.307335823774338,0.924351632595062, -0.00109934248030186,0.336940050125122,0.941525459289551,-0.191818997263908,0.392405778169632,0.899568319320679,-0.226094484329224,0.307335823774338,0.924351632595062,0.000263402966083959,0.235974609851837,0.97175920009613,0.119346849620342,0.271680414676666,0.95495867729187,0.00109934248030186,0.336940050125122,0.941525459289551,0.000263402966083959,0.235974609851837,0.97175920009613,0.151816561818123,0.166385546326637,0.974303662776947,0.148801043629646,0.288873583078384,0.945732772350311,0.119346849620342,0.271680414676666,0.95495867729187,0.151816561818123,0.166385546326637,0.974303662776947,0.192410156130791,0.114098198711872,0.974658787250519,0.0872103199362755,0.409369260072708,0.9081911444664,0.148801043629646,0.288873583078384,0.945732772350311,0.192410156130791,0.114098198711872,0.974658787250519,0.126400336623192,0.16581466794014,0.978022754192352,-0.346839159727097,0.61002653837204,0.71243953704834,0.0872103199362755,0.409369260072708,0.9081911444664,0.126400336623192,0.16581466794014,0.978022754192352,-0.0755287706851959,0.24411752820015,0.966799795627594,-0.291437596082687,0.244067013263702,0.924929857254028,-0.585036933422089,0.553135514259338,0.593104362487793,-0.346839159727097,0.61002653837204,0.71243953704834,-0.0755287706851959,0.24411752820015,0.966799795627594,-0.795871138572693,0.595325827598572,0.110346332192421,-0.838166117668152,0.502178966999054,0.212823629379272,-0.865933299064636,0.453616350889206,0.210693702101707,-0.822527229785919,0.555088579654694,0.123797357082367,-0.838166117668152,0.502178966999054,0.212823629379272,-0.782321691513062,0.555092513561249,0.282568991184235,-0.788384258747101,0.522886753082275,0.324098169803619,-0.865933299064636,0.453616350889206,0.210693702101707,-0.782321691513062,0.555092513561249,0.282568991184235,-0.608225166797638,0.719006061553955,0.336292415857315,-0.565164387226105,0.695841789245605,0.443162739276886,-0.788384258747101,0.522886753082275,0.324098169803619,-0.608225166797638,0.719006061553955,0.336292415857315,-0.351543247699738,0.844057083129883,0.404950380325317, --0.319673299789429,0.761841833591461,0.563388049602509,-0.565164387226105,0.695841789245605,0.443162739276886,-0.351543247699738,0.844057083129883,0.404950380325317,-0.161584869027138,0.851693153381348,0.498507022857666,-0.123349443078041,0.759338319301605,0.638897776603699,-0.319673299789429,0.761841833591461,0.563388049602509,-0.161584869027138,0.851693153381348,0.498507022857666,0.0543670207262039,0.83843058347702,0.542289912700653,0.0674883872270584,0.775307059288025,0.627968311309814,-0.123349443078041,0.759338319301605,0.638897776603699,0.0543670207262039,0.83843058347702,0.542289912700653,0.286949574947357,0.860992014408112,0.41994372010231,0.296658903360367,0.804474413394928,0.514601230621338,0.0674883872270584,0.775307059288025,0.627968311309814,0.286949574947357,0.860992014408112,0.41994372010231,0.467964470386505,0.846542537212372,0.253722310066223,0.493949472904205,0.798535943031311,0.344026625156403,0.296658903360367,0.804474413394928,0.514601230621338,0.467964470386505,0.846542537212372,0.253722310066223,0.555996716022491,0.82312685251236,0.115454353392124,0.605730056762695,0.769242763519287,0.203363120555878,0.493949472904205,0.798535943031311,0.344026625156403,0.555996716022491,0.82312685251236,0.115454353392124,0.525425016880035,0.85005909204483,-0.0364445634186268,0.602065026760101,0.796723365783691,0.0524378456175327,0.605730056762695,0.769242763519287,0.203363120555878,0.525425016880035,0.85005909204483,-0.0364445634186268,0.491407126188278,0.849751234054565,-0.190897688269615,0.543089807033539,0.831915259361267,-0.113888308405876,0.602065026760101,0.796723365783691,0.0524378456175327,0.491407126188278,0.849751234054565,-0.190897688269615,0.465588539838791,0.862692415714264,-0.197456672787666,0.515509724617004,0.834379851818085,-0.195089563727379,0.543089807033539,0.831915259361267,-0.113888308405876,0.465588539838791,0.862692415714264,-0.197456672787666,0.455589681863785,0.877338349819183,-0.150716587901115,0.473881989717484,0.869064331054688,-0.141996741294861,0.515509724617004,0.834379851818085,-0.195089563727379, -0.515509724617004,0.834379851818085,-0.195089563727379,0.473881989717484,0.869064331054688,-0.141996741294861,0.631182014942169,0.77341091632843,-0.0586919039487839,0.656062304973602,0.748713314533234,-0.0949239209294319,0.543089807033539,0.831915259361267,-0.113888308405876,0.515509724617004,0.834379851818085,-0.195089563727379,0.656062304973602,0.748713314533234,-0.0949239209294319,0.764918148517609,0.636813342571259,0.0967939123511314,0.602065026760101,0.796723365783691,0.0524378456175327,0.543089807033539,0.831915259361267,-0.113888308405876,0.764918148517609,0.636813342571259,0.0967939123511314,0.753624260425568,0.586855113506317,0.296060055494308,0.605730056762695,0.769242763519287,0.203363120555878,0.602065026760101,0.796723365783691,0.0524378456175327,0.753624260425568,0.586855113506317,0.296060055494308,0.677423357963562,0.611345052719116,0.409090340137482,0.493949472904205,0.798535943031311,0.344026625156403,0.605730056762695,0.769242763519287,0.203363120555878,0.677423357963562,0.611345052719116,0.409090340137482,0.527201592922211,0.65714955329895,0.538714170455933,0.296658903360367,0.804474413394928,0.514601230621338,0.493949472904205,0.798535943031311,0.344026625156403,0.527201592922211,0.65714955329895,0.538714170455933,0.289933115243912,0.685714840888977,0.66763311624527,0.0674883872270584,0.775307059288025,0.627968311309814,0.296658903360367,0.804474413394928,0.514601230621338,0.289933115243912,0.685714840888977,0.66763311624527,0.0593743547797203,0.667868256568909,0.7419074177742,-0.123349443078041,0.759338319301605,0.638897776603699,0.0674883872270584,0.775307059288025,0.627968311309814,0.0593743547797203,0.667868256568909,0.7419074177742,-0.103779539465904,0.641935110092163,0.759703278541565,-0.319673299789429,0.761841833591461,0.563388049602509,-0.123349443078041,0.759338319301605,0.638897776603699,-0.103779539465904,0.641935110092163,0.759703278541565,-0.273604482412338,0.628802061080933,0.727838158607483,-0.565164387226105,0.695841789245605,0.443162739276886,-0.319673299789429,0.761841833591461,0.563388049602509, --0.273604482412338,0.628802061080933,0.727838158607483,-0.525540411472321,0.618863165378571,0.583794176578522,-0.788384258747101,0.522886753082275,0.324098169803619,-0.565164387226105,0.695841789245605,0.443162739276886,-0.525540411472321,0.618863165378571,0.583794176578522,-0.787359774112701,0.493692189455032,0.369232565164566,-0.865933299064636,0.453616350889206,0.210693702101707,-0.788384258747101,0.522886753082275,0.324098169803619,-0.787359774112701,0.493692189455032,0.369232565164566,-0.888947308063507,0.407739669084549,0.208616614341736,-0.822527229785919,0.555088579654694,0.123797357082367,-0.865933299064636,0.453616350889206,0.210693702101707,-0.888947308063507,0.407739669084549,0.208616614341736,-0.856503546237946,0.49617213010788,0.142179012298584,0.200131505727768,0.438421100378036,0.876204431056976,0.451211780309677,0.409286677837372,0.793027341365814,0.277718961238861,0.370229154825211,0.886455059051514,0.0562071055173874,0.364845335483551,0.929370045661926,0.346876591444016,0.495704889297485,0.796211838722229,0.449339509010315,0.443532466888428,0.775482296943665,0.451211780309677,0.409286677837372,0.793027341365814,0.200131505727768,0.438421100378036,0.876204431056976,0.417846471071243,0.491397082805634,0.764155268669128,0.463464736938477,0.434973210096359,0.772009491920471,0.449339509010315,0.443532466888428,0.775482296943665,0.346876591444016,0.495704889297485,0.796211838722229,0.420786261558533,0.464215278625488,0.779386281967163,0.432622611522675,0.41645023226738,0.799629151821136,0.463464736938477,0.434973210096359,0.772009491920471,0.417846471071243,0.491397082805634,0.764155268669128,0.337372869253159,0.472758710384369,0.814050793647766,0.365835696458817,0.418444246053696,0.831305384635925,0.432622611522675,0.41645023226738,0.799629151821136,0.420786261558533,0.464215278625488,0.779386281967163,0.190815776586533,0.49288147687912,0.848915338516235,0.192171931266785,0.391860455274582,0.899730682373047,0.365835696458817,0.418444246053696,0.831305384635925,0.337372869253159,0.472758710384369,0.814050793647766, -0.0167315900325775,0.452206552028656,0.891756355762482,-0.00104986038058996,0.336072474718094,0.941835522651672,0.192171931266785,0.391860455274582,0.899730682373047,0.190815776586533,0.49288147687912,0.848915338516235,-0.0417919717729092,0.405640542507172,0.913076758384705,-0.1152218952775,0.259502649307251,0.958844184875488,-0.00104986038058996,0.336072474718094,0.941835522651672,0.0167315900325775,0.452206552028656,0.891756355762482,-0.0965219810605049,0.465165585279465,0.879945814609528,-0.139460861682892,0.273902326822281,0.95159238576889,-0.1152218952775,0.259502649307251,0.958844184875488,-0.0417919717729092,0.405640542507172,0.913076758384705,0.082101583480835,0.670126140117645,0.737692594528198,-0.123548083007336,0.369477242231369,0.92098993062973,-0.139460861682892,0.273902326822281,0.95159238576889,-0.0965219810605049,0.465165585279465,0.879945814609528,0.412386745214462,0.749736428260803,0.517525434494019,0.261508852243423,0.607627511024475,0.749934673309326,-0.123548083007336,0.369477242231369,0.92098993062973,0.082101583480835,0.670126140117645,0.737692594528198,0.261508852243423,0.607627511024475,0.749934673309326,0.412386745214462,0.749736428260803,0.517525434494019,0.614259004592896,0.714404463768005,0.335129946470261,0.516154408454895,0.575639069080353,0.634211540222168,0.451211780309677,0.409286677837372,0.793027341365814,0.532635092735291,0.366013139486313,0.763108193874359,0.616972208023071,0.336260706186295,0.711529314517975,0.277718961238861,0.370229154825211,0.886455059051514,0.449339509010315,0.443532466888428,0.775482296943665,0.517770528793335,0.39390355348587,0.759442985057831,0.532635092735291,0.366013139486313,0.763108193874359,0.451211780309677,0.409286677837372,0.793027341365814,0.463464736938477,0.434973210096359,0.772009491920471,0.485128939151764,0.386638611555099,0.784321665763855,0.517770528793335,0.39390355348587,0.759442985057831,0.449339509010315,0.443532466888428,0.775482296943665,0.432622611522675,0.41645023226738,0.799629151821136,0.455205053091049,0.371867954730988,0.809013307094574, -0.485128939151764,0.386638611555099,0.784321665763855,0.463464736938477,0.434973210096359,0.772009491920471,0.365835696458817,0.418444246053696,0.831305384635925,0.404331475496292,0.357535749673843,0.841833829879761,0.455205053091049,0.371867954730988,0.809013307094574,0.432622611522675,0.41645023226738,0.799629151821136,0.192171931266785,0.391860455274582,0.899730682373047,0.2261912971735,0.306842446327209,0.924491882324219,0.404331475496292,0.357535749673843,0.841833829879761,0.365835696458817,0.418444246053696,0.831305384635925,-0.00104986038058996,0.336072474718094,0.941835522651672,-0.000247684249188751,0.235394403338432,0.971899926662445,0.2261912971735,0.306842446327209,0.924491882324219,0.192171931266785,0.391860455274582,0.899730682373047,-0.1152218952775,0.259502649307251,0.958844184875488,-0.15117920935154,0.162139803171158,0.975118219852448,-0.000247684249188751,0.235394403338432,0.971899926662445,-0.00104986038058996,0.336072474718094,0.941835522651672,-0.139460861682892,0.273902326822281,0.95159238576889,-0.190438747406006,0.104879260063171,0.976080596446991,-0.15117920935154,0.162139803171158,0.975118219852448,-0.1152218952775,0.259502649307251,0.958844184875488,-0.123548083007336,0.369477242231369,0.92098993062973,-0.146181687712669,0.14926116168499,0.977932572364807,-0.190438747406006,0.104879260063171,0.976080596446991,-0.139460861682892,0.273902326822281,0.95159238576889,0.261508852243423,0.607627511024475,0.749934673309326,0.0509857349097729,0.240675792098045,0.969265460968018,-0.146181687712669,0.14926116168499,0.977932572364807,-0.123548083007336,0.369477242231369,0.92098993062973,0.262078791856766,0.249597102403641,0.932210266590118,0.0509857349097729,0.240675792098045,0.969265460968018,0.261508852243423,0.607627511024475,0.749934673309326,0.516154408454895,0.575639069080353,0.634211540222168,0.668958902359009,0.68157160282135,0.296570926904678,0.712892115116119,0.624191164970398,0.319640845060349,0.841260850429535,0.39132171869278,0.373024731874466,0.759548902511597,0.593487977981567,0.266190499067307, -0.759548902511597,0.593487977981567,0.266190499067307,0.841260850429535,0.39132171869278,0.373024731874466,0.758107423782349,0.467951327562332,0.454196691513062,0.750302791595459,0.575713872909546,0.324960440397263,0.750302791595459,0.575713872909546,0.324960440397263,0.758107423782349,0.467951327562332,0.454196691513062,0.550983965396881,0.549409329891205,0.628144860267639,0.608252167701721,0.621356606483459,0.493908196687698,0.608252167701721,0.621356606483459,0.493908196687698,0.550983965396881,0.549409329891205,0.628144860267639,0.319611966609955,0.608245968818665,0.726556956768036,0.354390531778336,0.67411744594574,0.648053288459778,0.354390531778336,0.67411744594574,0.648053288459778,0.319611966609955,0.608245968818665,0.726556956768036,0.0787200704216957,0.630947589874268,0.771821439266205,0.0942986905574799,0.721198499202728,0.686280131340027,0.0942986905574799,0.721198499202728,0.686280131340027,0.0787200704216957,0.630947589874268,0.771821439266205,-0.111744396388531,0.629742980003357,0.768724203109741,-0.130209371447563,0.707272231578827,0.694846451282501,-0.130209371447563,0.707272231578827,0.694846451282501,-0.111744396388531,0.629742980003357,0.768724203109741,-0.332083493471146,0.630440175533295,0.701616525650024,-0.337966412305832,0.694904088973999,0.6347336769104,-0.337966412305832,0.694904088973999,0.6347336769104,-0.332083493471146,0.630440175533295,0.701616525650024,-0.542691469192505,0.614945948123932,0.572125315666199,-0.537160754203796,0.708100020885468,0.458315074443817,-0.537160754203796,0.708100020885468,0.458315074443817,-0.542691469192505,0.614945948123932,0.572125315666199,-0.680507481098175,0.642539322376251,0.352211266756058,-0.604439496994019,0.781278491020203,0.155746340751648,-0.604439496994019,0.781278491020203,0.155746340751648,-0.680507481098175,0.642539322376251,0.352211266756058,-0.725529193878174,0.662429630756378,0.186532467603683,-0.532686829566956,0.846239864826202,0.0110806794837117,-0.532686829566956,0.846239864826202,0.0110806794837117,-0.725529193878174,0.662429630756378,0.186532467603683, --0.657000839710236,0.742182672023773,0.13234344124794,-0.482186883687973,0.873794972896576,-0.0630734488368034,-0.482186883687973,0.873794972896576,-0.0630734488368034,-0.657000839710236,0.742182672023773,0.13234344124794,-0.506615281105042,0.854297280311584,0.116263218224049,-0.341556280851364,0.938045501708984,0.0583939701318741,-0.341556280851364,0.938045501708984,0.0583939701318741,-0.506615281105042,0.854297280311584,0.116263218224049,-0.338107854127884,0.920264959335327,0.196965858340263,-0.260902613401413,0.953070282936096,0.153580263257027,-0.506615281105042,0.854297280311584,0.116263218224049,-0.769476294517517,0.497736215591431,0.400206178426743,-0.680981874465942,0.620665073394775,0.388636857271194,-0.338107854127884,0.920264959335327,0.196965858340263,-0.657000839710236,0.742182672023773,0.13234344124794,-0.857420980930328,0.313098549842834,0.408409774303436,-0.769476294517517,0.497736215591431,0.400206178426743,-0.506615281105042,0.854297280311584,0.116263218224049,-0.725529193878174,0.662429630756378,0.186532467603683,-0.850535035133362,0.369106441736221,0.37463366985321,-0.857420980930328,0.313098549842834,0.408409774303436,-0.657000839710236,0.742182672023773,0.13234344124794,-0.680507481098175,0.642539322376251,0.352211266756058,-0.693787932395935,0.476604342460632,0.539913415908813,-0.850535035133362,0.369106441736221,0.37463366985321,-0.725529193878174,0.662429630756378,0.186532467603683,-0.542691469192505,0.614945948123932,0.572125315666199,-0.544361114501953,0.540484726428986,0.641519367694855,-0.693787932395935,0.476604342460632,0.539913415908813,-0.680507481098175,0.642539322376251,0.352211266756058,-0.332083493471146,0.630440175533295,0.701616525650024,-0.271141558885574,0.547871172428131,0.791403472423553,-0.544361114501953,0.540484726428986,0.641519367694855,-0.542691469192505,0.614945948123932,0.572125315666199,-0.111744396388531,0.629742980003357,0.768724203109741,-0.0899595618247986,0.534053146839142,0.840651273727417,-0.271141558885574,0.547871172428131,0.791403472423553,-0.332083493471146,0.630440175533295,0.701616525650024, -0.0787200704216957,0.630947589874268,0.771821439266205,0.0664047524333,0.54141366481781,0.838129818439484,-0.0899595618247986,0.534053146839142,0.840651273727417,-0.111744396388531,0.629742980003357,0.768724203109741,0.319611966609955,0.608245968818665,0.726556956768036,0.255734086036682,0.54309356212616,0.799780905246735,0.0664047524333,0.54141366481781,0.838129818439484,0.0787200704216957,0.630947589874268,0.771821439266205,0.550983965396881,0.549409329891205,0.628144860267639,0.491634607315063,0.502058148384094,0.711500585079193,0.255734086036682,0.54309356212616,0.799780905246735,0.319611966609955,0.608245968818665,0.726556956768036,0.758107423782349,0.467951327562332,0.454196691513062,0.740145146846771,0.375153362751007,0.558072686195374,0.491634607315063,0.502058148384094,0.711500585079193,0.550983965396881,0.549409329891205,0.628144860267639,0.841260850429535,0.39132171869278,0.373024731874466,0.849023699760437,0.337943941354752,0.406143814325333,0.740145146846771,0.375153362751007,0.558072686195374,0.758107423782349,0.467951327562332,0.454196691513062,0.712892115116119,0.624191164970398,0.319640845060349,0.776841819286346,0.520824015140533,0.35391965508461,0.849023699760437,0.337943941354752,0.406143814325333,0.841260850429535,0.39132171869278,0.373024731874466,-0.275715738534927,0.460171669721603,0.84393298625946,-0.197954341769218,0.382024228572845,0.902702450752258,-0.307731240987778,0.404107689857483,0.861393332481384,-0.436201751232147,0.479527413845062,0.761433780193329,-0.351795554161072,0.543404757976532,0.762201547622681,-0.275715738534927,0.460171669721603,0.84393298625946,-0.436201751232147,0.479527413845062,0.761433780193329,-0.417175799608231,0.523640275001526,0.742808878421783,-0.378598630428314,0.570950627326965,0.728476762771606,-0.351795554161072,0.543404757976532,0.762201547622681,-0.417175799608231,0.523640275001526,0.742808878421783,-0.418992638587952,0.533034801483154,0.735063850879669,-0.358235865831375,0.583382785320282,0.728924930095673,-0.378598630428314,0.570950627326965,0.728476762771606, --0.418992638587952,0.533034801483154,0.735063850879669,-0.389877080917358,0.533320188522339,0.75070995092392,-0.258409857749939,0.645295202732086,0.718900799751282,-0.358235865831375,0.583382785320282,0.728924930095673,-0.389877080917358,0.533320188522339,0.75070995092392,-0.315838098526001,0.559803366661072,0.76607209444046,-0.128576412796974,0.720002472400665,0.68195652961731,-0.258409857749939,0.645295202732086,0.718900799751282,-0.315838098526001,0.559803366661072,0.76607209444046,-0.159221634268761,0.561227858066559,0.812201857566833,-0.0381468534469604,0.733152568340302,0.678993463516235,-0.128576412796974,0.720002472400665,0.68195652961731,-0.159221634268761,0.561227858066559,0.812201857566833,-0.00317653990350664,0.523101091384888,0.852264761924744,-0.026578526943922,0.725501716136932,0.68770694732666,-0.0381468534469604,0.733152568340302,0.678993463516235,-0.00317653990350664,0.523101091384888,0.852264761924744,0.0717102885246277,0.472436428070068,0.878442585468292,0.00283694686368108,0.74715530872345,0.664643406867981,-0.026578526943922,0.725501716136932,0.68770694732666,0.0717102885246277,0.472436428070068,0.878442585468292,0.099170982837677,0.499038219451904,0.860886752605438,-0.160838484764099,0.77303546667099,0.613634347915649,0.00283694686368108,0.74715530872345,0.664643406867981,0.099170982837677,0.499038219451904,0.860886752605438,0.0112770479172468,0.578017592430115,0.815946459770203,-0.414339512586594,0.702934086322784,0.578105807304382,-0.160838484764099,0.77303546667099,0.613634347915649,0.0112770479172468,0.578017592430115,0.815946459770203,-0.346778333187103,0.616445362567902,0.706922829151154,-0.346778333187103,0.616445362567902,0.706922829151154,-0.517011404037476,0.485512763261795,0.704965472221375,-0.609012484550476,0.571124494075775,0.550382196903229,-0.414339512586594,0.702934086322784,0.578105807304382,-0.436201751232147,0.479527413845062,0.761433780193329,-0.307731240987778,0.404107689857483,0.861393332481384,-0.622266530990601,0.435071110725403,0.650766909122467,-0.508729696273804,0.461810231208801,0.726584792137146, --0.417175799608231,0.523640275001526,0.742808878421783,-0.436201751232147,0.479527413845062,0.761433780193329,-0.508729696273804,0.461810231208801,0.726584792137146,-0.489443123340607,0.488384783267975,0.722444355487823,-0.418992638587952,0.533034801483154,0.735063850879669,-0.417175799608231,0.523640275001526,0.742808878421783,-0.489443123340607,0.488384783267975,0.722444355487823,-0.460503607988358,0.483971506357193,0.744115591049194,-0.389877080917358,0.533320188522339,0.75070995092392,-0.418992638587952,0.533034801483154,0.735063850879669,-0.460503607988358,0.483971506357193,0.744115591049194,-0.43320894241333,0.467218518257141,0.770737886428833,-0.315838098526001,0.559803366661072,0.76607209444046,-0.389877080917358,0.533320188522339,0.75070995092392,-0.43320894241333,0.467218518257141,0.770737886428833,-0.389635562896729,0.451495766639709,0.80270528793335,-0.159221634268761,0.561227858066559,0.812201857566833,-0.315838098526001,0.559803366661072,0.76607209444046,-0.389635562896729,0.451495766639709,0.80270528793335,-0.214204505085945,0.403091311454773,0.889738142490387,-0.00317653990350664,0.523101091384888,0.852264761924744,-0.159221634268761,0.561227858066559,0.812201857566833,-0.214204505085945,0.403091311454773,0.889738142490387,0.000792705512139946,0.327331513166428,0.944909274578094,0.0717102885246277,0.472436428070068,0.878442585468292,-0.00317653990350664,0.523101091384888,0.852264761924744,0.000792705512139946,0.327331513166428,0.944909274578094,0.137383162975311,0.241212025284767,0.960699081420898,0.099170982837677,0.499038219451904,0.860886752605438,0.0717102885246277,0.472436428070068,0.878442585468292,0.137383162975311,0.241212025284767,0.960699081420898,0.177790597081184,0.18091207742691,0.96729588508606,0.0112770479172468,0.578017592430115,0.815946459770203,0.099170982837677,0.499038219451904,0.860886752605438,0.177790597081184,0.18091207742691,0.96729588508606,0.119499124586582,0.24078731238842,0.963193297386169,-0.346778333187103,0.616445362567902,0.706922829151154,0.0112770479172468,0.578017592430115,0.815946459770203, -0.119499124586582,0.24078731238842,0.963193297386169,-0.098927304148674,0.30905020236969,0.945886492729187,-0.311224281787872,0.293605983257294,0.903844594955444,-0.517011404037476,0.485512763261795,0.704965472221375,-0.346778333187103,0.616445362567902,0.706922829151154,-0.098927304148674,0.30905020236969,0.945886492729187,-0.678620874881744,0.668131351470947,0.305080503225327,-0.755384802818298,0.593719959259033,0.277290970087051,-0.840962946414948,0.390145093202591,0.374924302101135,-0.717747151851654,0.621491432189941,0.313986510038376,-0.755384802818298,0.593719959259033,0.277290970087051,-0.747042119503021,0.575131416320801,0.333394438028336,-0.757769167423248,0.465411186218262,0.457360178232193,-0.840962946414948,0.390145093202591,0.374924302101135,-0.747042119503021,0.575131416320801,0.333394438028336,-0.611244022846222,0.611577749252319,0.502347826957703,-0.552741825580597,0.540196597576141,0.634558200836182,-0.757769167423248,0.465411186218262,0.457360178232193,-0.611244022846222,0.611577749252319,0.502347826957703,-0.352288842201233,0.658220887184143,0.665310323238373,-0.317967534065247,0.599665462970734,0.734369039535522,-0.552741825580597,0.540196597576141,0.634558200836182,-0.352288842201233,0.658220887184143,0.665310323238373,-0.0920629650354385,0.706641435623169,0.701557219028473,-0.0763334855437279,0.623085916042328,0.778419554233551,-0.317967534065247,0.599665462970734,0.734369039535522,-0.0920629650354385,0.706641435623169,0.701557219028473,0.131516799330711,0.694495916366577,0.707374632358551,0.112514115869999,0.62187922000885,0.774988293647766,-0.0763334855437279,0.623085916042328,0.778419554233551,0.131516799330711,0.694495916366577,0.707374632358551,0.34254789352417,0.684040784835815,0.644010186195374,0.335846185684204,0.62657630443573,0.703284680843353,0.112514115869999,0.62187922000885,0.774988293647766,0.34254789352417,0.684040784835815,0.644010186195374,0.539994060993195,0.699622750282288,0.46790423989296,0.551472783088684,0.624497890472412,0.553064405918121,0.335846185684204,0.62657630443573,0.703284680843353, -0.539994060993195,0.699622750282288,0.46790423989296,0.609861552715302,0.775971353054047,0.161050826311111,0.67372453212738,0.658868253231049,0.33464577794075,0.551472783088684,0.624497890472412,0.553064405918121,0.609861552715302,0.775971353054047,0.161050826311111,0.536829113960266,0.843628168106079,0.0102994004264474,0.713483333587646,0.67962920665741,0.170427396893501,0.67372453212738,0.658868253231049,0.33464577794075,0.536829113960266,0.843628168106079,0.0102994004264474,0.483504563570023,0.872991502285004,-0.0641032606363297,0.649325251579285,0.750019788742065,0.125885203480721,0.713483333587646,0.67962920665741,0.170427396893501,0.483504563570023,0.872991502285004,-0.0641032606363297,0.341556757688522,0.93804544210434,0.0583939105272293,0.506202161312103,0.854539036750793,0.116285167634487,0.649325251579285,0.750019788742065,0.125885203480721,0.341556757688522,0.93804544210434,0.0583939105272293,0.260903298854828,0.953070104122162,0.153580293059349,0.338129699230194,0.92026150226593,0.196944087743759,0.506202161312103,0.854539036750793,0.116285167634487,0.506202161312103,0.854539036750793,0.116285167634487,0.338129699230194,0.92026150226593,0.196944087743759,0.681084156036377,0.620642125606537,0.388494074344635,0.766310930252075,0.500690996646881,0.402586817741394,0.649325251579285,0.750019788742065,0.125885203480721,0.506202161312103,0.854539036750793,0.116285167634487,0.766310930252075,0.500690996646881,0.402586817741394,0.848896503448486,0.33591690659523,0.408086448907852,0.713483333587646,0.67962920665741,0.170427396893501,0.649325251579285,0.750019788742065,0.125885203480721,0.848896503448486,0.33591690659523,0.408086448907852,0.844893157482147,0.406099170446396,0.348193794488907,0.67372453212738,0.658868253231049,0.33464577794075,0.713483333587646,0.67962920665741,0.170427396893501,0.844893157482147,0.406099170446396,0.348193794488907,0.700551509857178,0.517200708389282,0.491661667823792,0.551472783088684,0.624497890472412,0.553064405918121,0.67372453212738,0.658868253231049,0.33464577794075,0.700551509857178,0.517200708389282,0.491661667823792, -0.557285487651825,0.559047281742096,0.613921046257019,0.335846185684204,0.62657630443573,0.703284680843353,0.551472783088684,0.624497890472412,0.553064405918121,0.557285487651825,0.559047281742096,0.613921046257019,0.27227109670639,0.549541413784027,0.789856195449829,0.112514115869999,0.62187922000885,0.774988293647766,0.335846185684204,0.62657630443573,0.703284680843353,0.27227109670639,0.549541413784027,0.789856195449829,0.0905894637107849,0.533169269561768,0.841144502162933,-0.0763334855437279,0.623085916042328,0.778419554233551,0.112514115869999,0.62187922000885,0.774988293647766,0.0905894637107849,0.533169269561768,0.841144502162933,-0.0643948391079903,0.541185796260834,0.838433802127838,-0.317967534065247,0.599665462970734,0.734369039535522,-0.0763334855437279,0.623085916042328,0.778419554233551,-0.0643948391079903,0.541185796260834,0.838433802127838,-0.254393458366394,0.54304701089859,0.80023980140686,-0.552741825580597,0.540196597576141,0.634558200836182,-0.317967534065247,0.599665462970734,0.734369039535522,-0.254393458366394,0.54304701089859,0.80023980140686,-0.495379596948624,0.498261719942093,0.711571753025055,-0.757769167423248,0.465411186218262,0.457360178232193,-0.552741825580597,0.540196597576141,0.634558200836182,-0.495379596948624,0.498261719942093,0.711571753025055,-0.743229031562805,0.369729220867157,0.557593941688538,-0.840962946414948,0.390145093202591,0.374924302101135,-0.757769167423248,0.465411186218262,0.457360178232193,-0.743229031562805,0.369729220867157,0.557593941688538,-0.850350022315979,0.348880529403687,0.39393812417984,-0.717747151851654,0.621491432189941,0.313986510038376,-0.840962946414948,0.390145093202591,0.374924302101135,-0.850350022315979,0.348880529403687,0.39393812417984,-0.778777241706848,0.53561007976532,0.32653933763504,0.275719702243805,0.460170179605484,0.843932509422302,0.436201423406601,0.479528099298477,0.761433482170105,0.307734996080399,0.404104202985764,0.861393630504608,0.197962492704391,0.382020533084869,0.902702152729034,0.351768672466278,0.543404996395111,0.76221376657486, -0.417156010866165,0.523643493652344,0.7428178191185,0.436201423406601,0.479528099298477,0.761433482170105,0.275719702243805,0.460170179605484,0.843932509422302,0.37857586145401,0.570964157581329,0.728478074073792,0.41898587346077,0.53304386138916,0.735061228275299,0.417156010866165,0.523643493652344,0.7428178191185,0.351768672466278,0.543404996395111,0.76221376657486,0.358240336179733,0.583399534225464,0.728909373283386,0.389880478382111,0.533327877521515,0.750702738761902,0.41898587346077,0.53304386138916,0.735061228275299,0.37857586145401,0.570964157581329,0.728478074073792,0.259075939655304,0.645155906677246,0.718786001205444,0.316354364156723,0.559554100036621,0.766041278839111,0.389880478382111,0.533327877521515,0.750702738761902,0.358240336179733,0.583399534225464,0.728909373283386,0.129498109221458,0.719105303287506,0.682728171348572,0.159733444452286,0.560464978218079,0.812627971172333,0.316354364156723,0.559554100036621,0.766041278839111,0.259075939655304,0.645155906677246,0.718786001205444,0.038288414478302,0.731195628643036,0.681092500686646,0.00330777233466506,0.521748542785645,0.853092908859253,0.159733444452286,0.560464978218079,0.812627971172333,0.129498109221458,0.719105303287506,0.682728171348572,0.056560043245554,0.702001690864563,0.709925770759583,-0.0615331493318081,0.450990349054337,0.890405297279358,0.00330777233466506,0.521748542785645,0.853092908859253,0.038288414478302,0.731195628643036,0.681092500686646,0.00203956733457744,0.699232161045074,0.714891791343689,-0.0932714119553566,0.467536836862564,0.879039168357849,-0.0615331493318081,0.450990349054337,0.890405297279358,0.056560043245554,0.702001690864563,0.709925770759583,0.0691205337643623,0.739311456680298,0.66980654001236,-0.0697455182671547,0.52985942363739,0.845212817192078,-0.0932714119553566,0.467536836862564,0.879039168357849,0.00203956733457744,0.699232161045074,0.714891791343689,0.319880992174149,0.71192342042923,0.625173032283783,0.266856610774994,0.613635778427124,0.743127644062042,-0.0697455182671547,0.52985942363739,0.845212817192078, -0.0691205337643623,0.739311456680298,0.66980654001236,0.266856610774994,0.613635778427124,0.743127644062042,0.319880992174149,0.71192342042923,0.625173032283783,0.568226873874664,0.595151424407959,0.568254351615906,0.480909019708633,0.494543492794037,0.72398430109024,0.436201423406601,0.479528099298477,0.761433482170105,0.508730411529541,0.461814612150192,0.726581513881683,0.622261583805084,0.435071259737015,0.650771498680115,0.307734996080399,0.404104202985764,0.861393630504608,0.417156010866165,0.523643493652344,0.7428178191185,0.489441186189651,0.488387614488602,0.722443699836731,0.508730411529541,0.461814612150192,0.726581513881683,0.436201423406601,0.479528099298477,0.761433482170105,0.41898587346077,0.53304386138916,0.735061228275299,0.460501551628113,0.483972042798996,0.744116485118866,0.489441186189651,0.488387614488602,0.722443699836731,0.417156010866165,0.523643493652344,0.7428178191185,0.389880478382111,0.533327877521515,0.750702738761902,0.433209031820297,0.467217892408371,0.770738124847412,0.460501551628113,0.483972042798996,0.744116485118866,0.41898587346077,0.53304386138916,0.735061228275299,0.316354364156723,0.559554100036621,0.766041278839111,0.389786720275879,0.451341420412064,0.802718698978424,0.433209031820297,0.467217892408371,0.770738124847412,0.389880478382111,0.533327877521515,0.750702738761902,0.159733444452286,0.560464978218079,0.812627971172333,0.21429730951786,0.40253871679306,0.889965832233429,0.389786720275879,0.451341420412064,0.802718698978424,0.316354364156723,0.559554100036621,0.766041278839111,0.00330777233466506,0.521748542785645,0.853092908859253,-0.000747819314710796,0.326622903347015,0.9451544880867,0.21429730951786,0.40253871679306,0.889965832233429,0.159733444452286,0.560464978218079,0.812627971172333,-0.0615331493318081,0.450990349054337,0.890405297279358,-0.136063233017921,0.235857933759689,0.96221512556076,-0.000747819314710796,0.326622903347015,0.9451544880867,0.00330777233466506,0.521748542785645,0.853092908859253,-0.0932714119553566,0.467536836862564,0.879039168357849, --0.176244243979454,0.16784006357193,0.969931840896606,-0.136063233017921,0.235857933759689,0.96221512556076,-0.0615331493318081,0.450990349054337,0.890405297279358,-0.0697455182671547,0.52985942363739,0.845212817192078,-0.147970795631409,0.217973783612251,0.964671969413757,-0.176244243979454,0.16784006357193,0.969931840896606,-0.0932714119553566,0.467536836862564,0.879039168357849,0.266856610774994,0.613635778427124,0.743127644062042,0.0743997767567635,0.302883267402649,0.950119197368622,-0.147970795631409,0.217973783612251,0.964671969413757,-0.0697455182671547,0.52985942363739,0.845212817192078,0.300985306501389,0.292400687932968,0.907694756984711,0.0743997767567635,0.302883267402649,0.950119197368622,0.266856610774994,0.613635778427124,0.743127644062042,0.480909019708633,0.494543492794037,0.72398430109024,0.212829306721687,0.217103227972984,0.952664613723755,0.130164593458176,0.193935751914978,0.97234058380127,0.118021123111248,0.090134933590889,0.988911867141724,0.213977739214897,0.0890615805983543,0.972770035266876,0.327490657567978,0.237567722797394,0.914500653743744,0.212829306721687,0.217103227972984,0.952664613723755,0.213977739214897,0.0890615805983543,0.972770035266876,0.349182218313217,0.0877810567617416,0.93293422460556,0.212829306721687,0.217103227972984,0.952664613723755,0.327490657567978,0.237567722797394,0.914500653743744,0.30707859992981,0.373052805662155,0.875519514083862,0.240161299705505,0.313696622848511,0.918649554252625,0.130164593458176,0.193935751914978,0.97234058380127,0.212829306721687,0.217103227972984,0.952664613723755,0.240161299705505,0.313696622848511,0.918649554252625,0.18181961774826,0.253342509269714,0.950136423110962,0.608398914337158,0.361604869365692,0.706464827060699,0.319545745849609,0.279676467180252,0.905357241630554,0.266093969345093,0.0750106051564217,0.961024165153503,0.616883337497711,0.144853889942169,0.773609936237335,0.745747447013855,0.394625544548035,0.536778688430786,0.608398914337158,0.361604869365692,0.706464827060699,0.616883337497711,0.144853889942169,0.773609936237335, -0.801282107830048,0.18563087284565,0.568760216236115,0.608398914337158,0.361604869365692,0.706464827060699,0.745747447013855,0.394625544548035,0.536778688430786,0.650332570075989,0.587092518806458,0.48206827044487,0.544649124145508,0.574899971485138,0.610612213611603,0.319545745849609,0.279676467180252,0.905357241630554,0.608398914337158,0.361604869365692,0.706464827060699,0.544649124145508,0.574899971485138,0.610612213611603,0.340378075838089,0.527010321617126,0.778718650341034,0.779881596565247,0.252041667699814,0.572939455509186,0.574787020683289,0.210684657096863,0.790715992450714,0.568173348903656,0.0645316392183304,0.820374667644501,0.817479848861694,0.0793456062674522,0.570465624332428,0.877151727676392,0.257564693689346,0.405296623706818,0.779881596565247,0.252041667699814,0.572939455509186,0.817479848861694,0.0793456062674522,0.570465624332428,0.923970639705658,0.068852424621582,0.376215010881424,0.779881596565247,0.252041667699814,0.572939455509186,0.877151727676392,0.257564693689346,0.405296623706818,0.802838861942291,0.432056188583374,0.410825103521347,0.722124993801117,0.413387537002563,0.554658651351929,0.574787020683289,0.210684657096863,0.790715992450714,0.779881596565247,0.252041667699814,0.572939455509186,0.722124993801117,0.413387537002563,0.554658651351929,0.568896114826202,0.364665627479553,0.737140536308289,0.930400192737579,0.117982521653175,0.347038447856903,0.885087072849274,-0.00465083261951804,0.465402364730835,0.678629100322723,0.337785094976425,0.652199268341064,0.801806926727295,0.384849905967712,0.457160919904709,0.885087072849274,-0.00465083261951804,0.465402364730835,0.945305049419403,0.0100241769105196,0.326033502817154,0.837538182735443,0.464932531118393,0.286997497081757,0.678629100322723,0.337785094976425,0.652199268341064,0.678629100322723,0.337785094976425,0.652199268341064,0.837538182735443,0.464932531118393,0.286997497081757,0.922206163406372,0.238157466053963,0.304658561944962,0.753034293651581,0.17627215385437,0.633930146694183,0.801806926727295,0.384849905967712,0.457160919904709, -0.678629100322723,0.337785094976425,0.652199268341064,0.753034293651581,0.17627215385437,0.633930146694183,0.87514740228653,0.218636348843575,0.431642323732376,-0.0764050707221031,-0.417319446802139,0.905542194843292,0.152453944087029,-0.490097939968109,0.858231723308563,0.191869601607323,-0.0657616630196571,0.979214668273926,-0.0503527484834194,-0.0637124851346016,0.996697187423706,0.152453944087029,-0.490097939968109,0.858231723308563,0.38191831111908,-0.534317016601563,0.754084825515747,0.444481372833252,-0.0677722692489624,0.893220722675323,0.191869601607323,-0.0657616630196571,0.979214668273926,0.191869601607323,-0.0657616630196571,0.979214668273926,0.444481372833252,-0.0677722692489624,0.893220722675323,0.452858477830887,0.0933812335133553,0.886678755283356,0.24857559800148,0.0781746134161949,0.965452671051025,-0.0503527484834194,-0.0637124851346016,0.996697187423706,0.191869601607323,-0.0657616630196571,0.979214668273926,0.24857559800148,0.0781746134161949,0.965452671051025,0.0287272054702044,0.0468101017177105,0.998490691184998,0.496302485466003,0.210021421313286,0.842362582683563,0.474947929382324,0.217140078544617,0.852803945541382,0.469946771860123,-0.180950209498405,0.86394852399826,0.563454568386078,-0.125576511025429,0.816547274589539,0.474947929382324,0.217140078544617,0.852803945541382,0.462071448564529,0.223597913980484,0.858192265033722,0.516118586063385,-0.17624568939209,0.83818793296814,0.469946771860123,-0.180950209498405,0.86394852399826,0.345776945352554,0.297551989555359,0.889888286590576,0.321946859359741,0.303813844919205,0.896686911582947,0.327736765146255,0.266692817211151,0.906346321105957,0.347353905439377,0.260259628295898,0.900894105434418,0.345776945352554,0.297551989555359,0.889888286590576,0.347353905439377,0.260259628295898,0.900894105434418,0.363922715187073,0.25348636507988,0.896272778511047,0.361779034137726,0.291903346776962,0.885385990142822,0.362098813056946,-0.813945949077606,0.454286754131317,0.487723380327225,-0.863978922367096,0.125165298581123,0.934295117855072,-0.0721873790025711,0.349115312099457, -0.64495325088501,-0.0900793001055717,0.758894562721252,0.487723380327225,-0.863978922367096,0.125165298581123,0.488683670759201,-0.870462596416473,0.0590182170271873,0.96843147277832,-0.0758867263793945,0.237448051571846,0.934295117855072,-0.0721873790025711,0.349115312099457,0.934295117855072,-0.0721873790025711,0.349115312099457,0.96843147277832,-0.0758867263793945,0.237448051571846,0.948911905288696,0.145231619477272,0.280131995677948,0.910134375095367,0.150698304176331,0.385934501886368,0.64495325088501,-0.0900793001055717,0.758894562721252,0.934295117855072,-0.0721873790025711,0.349115312099457,0.910134375095367,0.150698304176331,0.385934501886368,0.649630188941956,0.108177959918976,0.752514481544495,0.861620962619781,0.071912445127964,0.50243204832077,0.878374636173248,0.0719039440155029,0.472533375024796,0.844384789466858,-0.145803675055504,0.515514731407166,0.840295255184174,-0.130078285932541,0.526292264461517,0.878374636173248,0.0719039440155029,0.472533375024796,0.897544920444489,0.0651593953371048,0.436081796884537,0.890304565429688,-0.14252296090126,0.432487010955811,0.844384789466858,-0.145803675055504,0.515514731407166,0.821059882640839,0.122795797884464,0.557478070259094,0.794110238552094,0.136485382914543,0.592250466346741,0.790066003799438,0.0960155203938484,0.605455875396729,0.816089034080505,0.0852616801857948,0.571602344512939,0.821059882640839,0.122795797884464,0.557478070259094,0.816089034080505,0.0852616801857948,0.571602344512939,0.835683107376099,0.081412635743618,0.543144345283508,0.837277472019196,0.11309926211834,0.53495329618454,0.453211486339569,-0.875407874584198,0.168108060956001,0.468710780143738,-0.873691916465759,-0.130278989672661,0.978391647338867,-0.204179719090462,-0.0325663685798645,0.908502757549286,-0.245355442166328,0.338265061378479,0.468710780143738,-0.873691916465759,-0.130278989672661,0.427078545093536,-0.896062970161438,-0.121140316128731,0.980018794536591,-0.198278412222862,-0.0157665051519871,0.978391647338867,-0.204179719090462,-0.0325663685798645,0.978391647338867,-0.204179719090462,-0.0325663685798645, -0.980018794536591,-0.198278412222862,-0.0157665051519871,0.998223602771759,0.0560266152024269,0.0202678386121988,0.998498797416687,0.0546546168625355,0.00363308354280889,0.908502757549286,-0.245355442166328,0.338265061378479,0.978391647338867,-0.204179719090462,-0.0325663685798645,0.998498797416687,0.0546546168625355,0.00363308354280889,0.94857782125473,0.0162582080811262,0.316126316785812,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.996767938137054,-0.0642640367150307,0.0482074059545994,0.931723415851593,-0.352641671895981,0.0868064686655998,0.939077377319336,-0.303965419530869,0.160432919859886,0.996767938137054,-0.0642640367150307,0.0482074059545994,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.935719668865204,-0.352570354938507,0.0110868783667684,0.931723415851593,-0.352641671895981,0.0868064686655998,0.927829384803772,0.0874812453985214,0.362601220607758,0.915004372596741,0.0965912863612175,0.391710638999939,0.913209974765778,0.0730284675955772,0.400891989469528,0.924596667289734,0.0704071149230003,0.374384492635727,0.927829384803772,0.0874812453985214,0.362601220607758,0.924596667289734,0.0704071149230003,0.374384492635727,0.944641470909119,0.0620442479848862,0.322184771299362,0.947649896144867,0.0681590139865875,0.311952084302902,0.998491108417511,0.0489984974265099,0.0247932877391577,0.961081564426422,0.0600554384291172,-0.269658237695694,0.946774840354919,0.243151560425758,-0.210937887430191,0.967528283596039,0.252681851387024,-0.00640123477205634,0.997284591197968,0.0318265743553638,0.0664124935865402,0.998491108417511,0.0489984974265099,0.0247932877391577,0.967528283596039,0.252681851387024,-0.00640123477205634,0.965885818004608,0.24819503724575,0.0739179998636246,0.998491108417511,0.0489984974265099,0.0247932877391577,0.997284591197968,0.0318265743553638,0.0664124935865402,0.96679949760437,-0.249450340867043,0.0554373450577259,0.975555777549744,-0.209971636533737,0.0648303180932999,0.961081564426422,0.0600554384291172,-0.269658237695694,0.998491108417511,0.0489984974265099,0.0247932877391577, -0.975555777549744,-0.209971636533737,0.0648303180932999,0.943901240825653,-0.159197479486465,-0.289320975542068,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.997051596641541,-0.0295031256973743,0.0708350166678429,0.993028283119202,0.112560428678989,-0.0349996797740459,0.999694764614105,0.0132730612531304,0.0208377800881863,0.997051596641541,-0.0295031256973743,0.0708350166678429,0.998556017875671,-0.0141695337370038,0.051818061619997,0.976668894290924,0.212742060422897,-0.0293045789003372,0.993028283119202,0.112560428678989,-0.0349996797740459,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.998936772346497,-0.0199484061449766,0.0415629036724567,0.998470366001129,-0.0191732961684465,0.0518577806651592,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.998470366001129,-0.0191732961684465,0.0518577806651592,0.997323036193848,-0.0175949856638908,0.0709722861647606,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.140509262681007,-0.389529824256897,0.910232782363892,0.235168889164925,-0.38590133190155,0.892062604427338,0.22950766980648,-0.0504576563835144,0.971998035907745,0.127597525715828,-0.0325997099280357,0.991290092468262,0.235168889164925,-0.38590133190155,0.892062604427338,0.361415475606918,-0.459209114313126,0.811483681201935,0.372290521860123,-0.066767729818821,0.925711572170258,0.22950766980648,-0.0504576563835144,0.971998035907745,0.22950766980648,-0.0504576563835144,0.971998035907745,0.372290521860123,-0.066767729818821,0.925711572170258,0.349182218313217,0.0877810567617416,0.93293422460556,0.213977739214897,0.0890615805983543,0.972770035266876,0.127597525715828,-0.0325997099280357,0.991290092468262,0.22950766980648,-0.0504576563835144,0.971998035907745,0.213977739214897,0.0890615805983543,0.972770035266876,0.118021123111248,0.090134933590889,0.988911867141724,0.803296148777008,-0.540965020656586,0.249142676591873,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.991217494010925,-0.131425276398659,0.0146671067923307, -0.913928806781769,-0.122308745980263,0.387007266283035,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.611539423465729,-0.490914881229401,0.620501518249512,0.682898283004761,-0.155377089977264,0.713798105716705,0.991217494010925,-0.131425276398659,0.0146671067923307,0.991217494010925,-0.131425276398659,0.0146671067923307,0.682898283004761,-0.155377089977264,0.713798105716705,0.612025260925293,-0.0345636606216431,0.790082573890686,0.988297939300537,-0.00730177154764533,0.152360960841179,0.913928806781769,-0.122308745980263,0.387007266283035,0.991217494010925,-0.131425276398659,0.0146671067923307,0.988297939300537,-0.00730177154764533,0.152360960841179,0.873317956924438,0.0471226051449776,0.484866201877594,0.931119978427887,0.155494168400764,0.329904705286026,0.770491540431976,0.238308936357498,0.59122896194458,0.873317956924438,0.0471226051449776,0.484866201877594,0.988297939300537,-0.00730177154764533,0.152360960841179,0.548751831054688,0.0778049603104591,0.832356750965118,0.931119978427887,0.155494168400764,0.329904705286026,0.988297939300537,-0.00730177154764533,0.152360960841179,0.612025260925293,-0.0345636606216431,0.790082573890686,0.931119978427887,0.155494168400764,0.329904705286026,0.548751831054688,0.0778049603104591,0.832356750965118,0.459471136331558,0.24929216504097,0.852490365505219,0.83314460515976,0.381137043237686,0.400754988193512,0.770491540431976,0.238308936357498,0.59122896194458,0.931119978427887,0.155494168400764,0.329904705286026,0.83314460515976,0.381137043237686,0.400754988193512,0.644027709960938,0.430548369884491,0.632342040538788,0.191228091716766,-0.571527898311615,0.797989845275879,0.462093532085419,-0.664122939109802,0.587716281414032,0.599323749542236,-0.0669796913862228,0.797699630260468,0.232638046145439,-0.0962695926427841,0.967786967754364,0.462093532085419,-0.664122939109802,0.587716281414032,0.608965456485748,-0.694889307022095,0.382478654384613,0.819088101387024,-0.0351431109011173,0.572590351104736,0.599323749542236,-0.0669796913862228,0.797699630260468,0.599323749542236,-0.0669796913862228,0.797699630260468, -0.819088101387024,-0.0351431109011173,0.572590351104736,0.801282107830048,0.18563087284565,0.568760216236115,0.616883337497711,0.144853889942169,0.773609936237335,0.232638046145439,-0.0962695926427841,0.967786967754364,0.599323749542236,-0.0669796913862228,0.797699630260468,0.616883337497711,0.144853889942169,0.773609936237335,0.266093969345093,0.0750106051564217,0.961024165153503,0.76520174741745,-0.598868787288666,-0.236267596483231,0.704367220401764,-0.478252232074738,-0.524539589881897,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.704367220401764,-0.478252232074738,-0.524539589881897,0.584151804447174,-0.762029647827148,0.279423326253891,0.709508717060089,-0.0912200659513474,0.698767721652985,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.709508717060089,-0.0912200659513474,0.698767721652985,0.706025540828705,0.0590945929288864,0.705716550350189,0.914982378482819,0.103140562772751,-0.390088856220245,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.914982378482819,0.103140562772751,-0.390088856220245,0.983625650405884,0.156570419669151,-0.0892541706562042,0.93439906835556,0.224028632044792,-0.276964664459229,0.945863425731659,0.322207003831863,0.0390521138906479,0.983625650405884,0.156570419669151,-0.0892541706562042,0.914982378482819,0.103140562772751,-0.390088856220245,0.763847231864929,0.20733967423439,0.611185431480408,0.93439906835556,0.224028632044792,-0.276964664459229,0.914982378482819,0.103140562772751,-0.390088856220245,0.706025540828705,0.0590945929288864,0.705716550350189,0.93439906835556,0.224028632044792,-0.276964664459229,0.763847231864929,0.20733967423439,0.611185431480408,0.711159825325012,0.402712434530258,0.576258957386017,0.894462466239929,0.430661976337433,-0.120279639959335,0.945863425731659,0.322207003831863,0.0390521138906479,0.93439906835556,0.224028632044792,-0.276964664459229,0.894462466239929,0.430661976337433,-0.120279639959335, -0.826826453208923,0.543696463108063,0.144056633114815,0.290562391281128,-0.833357572555542,0.470200717449188,0.370780885219574,-0.91262024641037,0.172179386019707,0.827346444129944,-0.139853343367577,0.544002711772919,0.567517757415771,-0.105055831372738,0.816631495952606,0.370780885219574,-0.91262024641037,0.172179386019707,0.366073846817017,-0.928832650184631,0.0570956841111183,0.928299844264984,-0.170819714665413,0.330272734165192,0.827346444129944,-0.139853343367577,0.544002711772919,0.827346444129944,-0.139853343367577,0.544002711772919,0.928299844264984,-0.170819714665413,0.330272734165192,0.923970639705658,0.068852424621582,0.376215010881424,0.817479848861694,0.0793456062674522,0.570465624332428,0.567517757415771,-0.105055831372738,0.816631495952606,0.827346444129944,-0.139853343367577,0.544002711772919,0.817479848861694,0.0793456062674522,0.570465624332428,0.568173348903656,0.0645316392183304,0.820374667644501,0.443840831518173,-0.869051337242126,-0.218529835343361,0.430982202291489,-0.753182888031006,-0.496960610151291,0.829370021820068,-0.148437023162842,-0.538620173931122,0.967428803443909,-0.190274477005005,-0.166964590549469,0.430982202291489,-0.753182888031006,-0.496960610151291,0.365046739578247,-0.930285453796387,0.0361897274851799,0.926129341125488,-0.292127281427383,0.23863373696804,0.829370021820068,-0.148437023162842,-0.538620173931122,0.829370021820068,-0.148437023162842,-0.538620173931122,0.926129341125488,-0.292127281427383,0.23863373696804,0.97145414352417,-0.0491053462028503,0.232089444994926,0.871631920337677,0.00994441192597151,-0.490060180425644,0.967428803443909,-0.190274477005005,-0.166964590549469,0.829370021820068,-0.148437023162842,-0.538620173931122,0.871631920337677,0.00994441192597151,-0.490060180425644,0.99474173784256,0.0217426996678114,-0.100080631673336,0.887637495994568,0.174265637993813,-0.426299303770065,0.97530996799469,0.220519706606865,-0.0118971364572644,0.99474173784256,0.0217426996678114,-0.100080631673336,0.871631920337677,0.00994441192597151,-0.490060180425644,0.969870567321777,0.175378158688545,0.169096708297729, -0.887637495994568,0.174265637993813,-0.426299303770065,0.871631920337677,0.00994441192597151,-0.490060180425644,0.97145414352417,-0.0491053462028503,0.232089444994926,0.887637495994568,0.174265637993813,-0.426299303770065,0.969870567321777,0.175378158688545,0.169096708297729,0.866819143295288,0.469822436571121,0.167007490992546,0.848064124584198,0.385227262973785,-0.36385041475296,0.97530996799469,0.220519706606865,-0.0118971364572644,0.887637495994568,0.174265637993813,-0.426299303770065,0.848064124584198,0.385227262973785,-0.36385041475296,0.89900928735733,0.433892607688904,0.0593249090015888,0.779629707336426,0.0128866545855999,0.626108050346375,0.91884571313858,0.0312693379819393,0.393375992774963,0.87514740228653,0.218636348843575,0.431642323732376,0.753034293651581,0.17627215385437,0.633930146694183,0.945926189422607,0.0473997332155704,0.320900350809097,0.779629707336426,0.0128866545855999,0.626108050346375,0.753034293651581,0.17627215385437,0.633930146694183,0.922206163406372,0.238157466053963,0.304658561944962,0.779629707336426,0.0128866545855999,0.626108050346375,0.945926189422607,0.0473997332155704,0.320900350809097,0.94291889667511,-0.162472039461136,0.290700316429138,0.765810191631317,-0.183057054877281,0.616461575031281,0.91884571313858,0.0312693379819393,0.393375992774963,0.779629707336426,0.0128866545855999,0.626108050346375,0.765810191631317,-0.183057054877281,0.616461575031281,0.913950681686401,-0.210046574473381,0.347238570451736,0.490228146314621,-0.860631465911865,0.137803331017494,0.456870555877686,-0.885862767696381,-0.0807245001196861,0.970967531204224,-0.234969109296799,0.0448491983115673,0.913950681686401,-0.210046574473381,0.347238570451736,0.456870555877686,-0.885862767696381,-0.0807245001196861,0.410441100597382,-0.911667168140411,-0.0200270190834999,0.96679949760437,-0.249450340867043,0.0554373450577259,0.970967531204224,-0.234969109296799,0.0448491983115673,0.970967531204224,-0.234969109296799,0.0448491983115673,0.96679949760437,-0.249450340867043,0.0554373450577259,0.997284591197968,0.0318265743553638,0.0664124935865402, -0.992620885372162,0.0358361825346947,0.115842588245869,0.91884571313858,0.0312693379819393,0.393375992774963,0.913950681686401,-0.210046574473381,0.347238570451736,0.970967531204224,-0.234969109296799,0.0448491983115673,0.992620885372162,0.0358361825346947,0.115842588245869,0.952631115913391,0.243915617465973,0.181656539440155,0.87514740228653,0.218636348843575,0.431642323732376,0.91884571313858,0.0312693379819393,0.393375992774963,0.992620885372162,0.0358361825346947,0.115842588245869,0.997284591197968,0.0318265743553638,0.0664124935865402,0.965885818004608,0.24819503724575,0.0739179998636246,0.952631115913391,0.243915617465973,0.181656539440155,0.992620885372162,0.0358361825346947,0.115842588245869,0.952631115913391,0.243915617465973,0.181656539440155,0.965885818004608,0.24819503724575,0.0739179998636246,0.897985458374023,0.431995779275894,0.0836762264370918,0.878183364868164,0.420036882162094,0.228829845786095,0.801806926727295,0.384849905967712,0.457160919904709,0.87514740228653,0.218636348843575,0.431642323732376,0.952631115913391,0.243915617465973,0.181656539440155,0.878183364868164,0.420036882162094,0.228829845786095,0.768001198768616,-0.555274188518524,0.319131225347519,0.845774412155151,-0.527329385280609,0.0811747014522552,0.973446428775787,-0.115157522261143,0.197840303182602,0.880849540233612,-0.10070113837719,0.462561696767807,0.845774412155151,-0.527329385280609,0.0811747014522552,0.279478907585144,-0.493038803339005,0.823895812034607,0.27758714556694,-0.108460150659084,0.954558432102203,0.973446428775787,-0.115157522261143,0.197840303182602,0.973446428775787,-0.115157522261143,0.197840303182602,0.27758714556694,-0.108460150659084,0.954558432102203,0.255010724067688,-0.000428939907578751,0.966938138008118,0.970379710197449,0.000800441717728972,0.24158301949501,0.880849540233612,-0.10070113837719,0.462561696767807,0.973446428775787,-0.115157522261143,0.197840303182602,0.970379710197449,0.000800441717728972,0.24158301949501,0.859796166419983,0.0410401895642281,0.50898551940918,0.95856511592865,0.116585105657578,0.25992476940155, -0.807394444942474,0.185277953743935,0.560166239738464,0.859796166419983,0.0410401895642281,0.50898551940918,0.970379710197449,0.000800441717728972,0.24158301949501,0.333326160907745,0.129022359848022,0.933941543102264,0.95856511592865,0.116585105657578,0.25992476940155,0.970379710197449,0.000800441717728972,0.24158301949501,0.255010724067688,-0.000428939907578751,0.966938138008118,0.95856511592865,0.116585105657578,0.25992476940155,0.333326160907745,0.129022359848022,0.933941543102264,0.481602132320404,0.350094020366669,0.803426086902618,0.929288923740387,0.286769330501556,0.232777491211891,0.807394444942474,0.185277953743935,0.560166239738464,0.95856511592865,0.116585105657578,0.25992476940155,0.929288923740387,0.286769330501556,0.232777491211891,0.73822009563446,0.373730897903442,0.56156587600708,0.325200974941254,0.22761382162571,0.917843222618103,0.144231110811234,0.172638192772865,0.974368274211884,0.0287272054702044,0.0468101017177105,0.998490691184998,0.24857559800148,0.0781746134161949,0.965452671051025,0.462808132171631,0.255610018968582,0.848806321620941,0.325200974941254,0.22761382162571,0.917843222618103,0.24857559800148,0.0781746134161949,0.965452671051025,0.452858477830887,0.0933812335133553,0.886678755283356,0.325200974941254,0.22761382162571,0.917843222618103,0.462808132171631,0.255610018968582,0.848806321620941,0.472877681255341,0.383730292320251,0.793182075023651,0.395465910434723,0.355699986219406,0.846808254718781,0.144231110811234,0.172638192772865,0.974368274211884,0.325200974941254,0.22761382162571,0.917843222618103,0.395465910434723,0.355699986219406,0.846808254718781,0.256486296653748,0.308012425899506,0.916156649589539,0.472578972578049,0.257070481777191,0.842961430549622,0.453348875045776,0.265510946512222,0.850869357585907,0.462071448564529,0.223597913980484,0.858192265033722,0.474947929382324,0.217140078544617,0.852803945541382,0.472578972578049,0.257070481777191,0.842961430549622,0.474947929382324,0.217140078544617,0.852803945541382,0.496302485466003,0.210021421313286,0.842362582683563, -0.490685194730759,0.246961683034897,0.835606276988983,0.398623079061508,0.278666257858276,0.873753368854523,0.384591788053513,0.281165838241577,0.879224002361298,0.388904482126236,0.223152533173561,0.893843531608582,0.40195095539093,0.224304169416428,0.887762844562531,0.398623079061508,0.278666257858276,0.873753368854523,0.40195095539093,0.224304169416428,0.887762844562531,0.424679905176163,0.229900926351547,0.875666916370392,0.415154933929443,0.276450455188751,0.866730391979218,0.424679905176163,0.229900926351547,0.875666916370392,0.40195095539093,0.224304169416428,0.887762844562531,0.394273400306702,-0.0484939105808735,0.917712807655334,0.478856712579727,-0.0499666966497898,0.876470029354095,0.40195095539093,0.224304169416428,0.887762844562531,0.388904482126236,0.223152533173561,0.893843531608582,0.390245676040649,-0.0543134994804859,0.919107437133789,0.394273400306702,-0.0484939105808735,0.917712807655334,0.173165455460548,0.327371120452881,0.92889279127121,2.9084756647535e-07,0.331838518381119,0.943336188793182,3.52183224094915e-06,0.249689862132072,0.968325912952423,0.159134745597839,0.261926114559174,0.951877474784851,0.197980001568794,0.325932204723358,0.924430668354034,0.173165455460548,0.327371120452881,0.92889279127121,0.159134745597839,0.261926114559174,0.951877474784851,0.193692356348038,0.278895646333694,0.940585196018219,0.0267959255725145,-0.143305033445358,0.989315748214722,5.15278725288226e-06,-0.195868358016014,0.980630159378052,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,-0.145488753914833,-0.0377167239785194,0.98864072561264,0.0267959255725145,-0.143305033445358,0.989315748214722,-0.145488753914833,-0.0377167239785194,0.98864072561264,0.00693589961156249,-0.0466239675879478,0.998888373374939,0.123330391943455,-0.0846439674496651,0.988749265670776,0.363922715187073,0.25348636507988,0.896272778511047,0.347353905439377,0.260259628295898,0.900894105434418,0.351311326026917,-0.0980117097496986,0.931114375591278,0.374630957841873,-0.0767536237835884,0.923991620540619,0.347353905439377,0.260259628295898,0.900894105434418, -0.327736765146255,0.266692817211151,0.906346321105957,0.386866927146912,-0.0979848951101303,0.916914939880371,0.351311326026917,-0.0980117097496986,0.931114375591278,0.629507541656494,-0.751857101917267,-0.196038767695427,0.649816811084747,-0.640547335147858,-0.409190863370895,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.649816811084747,-0.640547335147858,-0.409190863370895,0.56140524148941,-0.760091602802277,0.327238112688065,0.828090965747833,-0.0392764545977116,0.559216260910034,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.828090965747833,-0.0392764545977116,0.559216260910034,0.806950986385345,0.0708705857396126,0.586350858211517,0.966601550579071,0.0895454809069633,-0.240131333470345,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.966601550579071,0.0895454809069633,-0.240131333470345,0.992351472377777,0.111337505280972,-0.0533154755830765,0.960236728191376,0.199015572667122,-0.195801466703415,0.967563211917877,0.252599895000458,-0.00382610247470438,0.992351472377777,0.111337505280972,-0.0533154755830765,0.966601550579071,0.0895454809069633,-0.240131333470345,0.761416733264923,0.159113496541977,0.62843269109726,0.960236728191376,0.199015572667122,-0.195801466703415,0.966601550579071,0.0895454809069633,-0.240131333470345,0.806950986385345,0.0708705857396126,0.586350858211517,0.960236728191376,0.199015572667122,-0.195801466703415,0.761416733264923,0.159113496541977,0.62843269109726,0.703478813171387,0.332269787788391,0.628262877464294,0.906783640384674,0.389494448900223,-0.161361962556839,0.967563211917877,0.252599895000458,-0.00382610247470438,0.960236728191376,0.199015572667122,-0.195801466703415,0.906783640384674,0.389494448900223,-0.161361962556839,0.909256994724274,0.416135013103485,-0.00912798754870892,0.841041207313538,0.309059858322144,0.44399505853653,0.651911914348602,0.274591475725174,0.706831216812134, -0.649630188941956,0.108177959918976,0.752514481544495,0.910134375095367,0.150698304176331,0.385934501886368,0.897969782352448,0.300134867429733,0.321821928024292,0.841041207313538,0.309059858322144,0.44399505853653,0.910134375095367,0.150698304176331,0.385934501886368,0.948911905288696,0.145231619477272,0.280131995677948,0.841041207313538,0.309059858322144,0.44399505853653,0.897969782352448,0.300134867429733,0.321821928024292,0.833997189998627,0.422427475452423,0.354969918727875,0.740909159183502,0.431098699569702,0.514982998371124,0.651911914348602,0.274591475725174,0.706831216812134,0.841041207313538,0.309059858322144,0.44399505853653,0.740909159183502,0.431098699569702,0.514982998371124,0.575747072696686,0.436208605766296,0.691547036170959,0.876672983169556,0.102987922728062,0.469934165477753,0.891642034053802,0.0929651632905006,0.443093478679657,0.897544920444489,0.0651593953371048,0.436081796884537,0.878374636173248,0.0719039440155029,0.472533375024796,0.876672983169556,0.102987922728062,0.469934165477753,0.878374636173248,0.0719039440155029,0.472533375024796,0.861620962619781,0.071912445127964,0.50243204832077,0.859469413757324,0.111063994467258,0.498976111412048,0.918027520179749,0.060733400285244,0.391837805509567,0.89489334821701,0.0763727650046349,0.439696550369263,0.888742685317993,0.0559654906392097,0.454977214336395,0.915508985519409,0.03882996737957,0.40041920542717,0.918027520179749,0.060733400285244,0.391837805509567,0.915508985519409,0.03882996737957,0.40041920542717,0.924684047698975,0.0345741249620914,0.379162460565567,0.919245541095734,0.0636509135365486,0.388505220413208,0.924684047698975,0.0345741249620914,0.379162460565567,0.915508985519409,0.03882996737957,0.40041920542717,0.905886471271515,-0.073218360543251,0.417143672704697,0.926183640956879,-0.0844836086034775,0.367486596107483,0.915508985519409,0.03882996737957,0.40041920542717,0.888742685317993,0.0559654906392097,0.454977214336395,0.905811905860901,-0.0550877153873444,0.420083284378052,0.905886471271515,-0.073218360543251,0.417143672704697, -0.664912223815918,0.185147225856781,0.723610579967499,0.597092807292938,0.207738563418388,0.774806380271912,0.594159483909607,0.165744379162788,0.7870854139328,0.656302690505981,0.146639436483383,0.740110456943512,0.664912223815918,0.185147225856781,0.723610579967499,0.656302690505981,0.146639436483383,0.740110456943512,0.712085843086243,0.130221232771873,0.689910233020782,0.71526163816452,0.16785803437233,0.678398430347443,0.712085843086243,0.130221232771873,0.689910233020782,0.656302690505981,0.146639436483383,0.740110456943512,0.628561198711395,-0.124893352389336,0.767666935920715,0.719675958156586,-0.128582119941711,0.682299971580505,0.656302690505981,0.146639436483383,0.740110456943512,0.594159483909607,0.165744379162788,0.7870854139328,0.652966678142548,-0.116778150200844,0.748329758644104,0.628561198711395,-0.124893352389336,0.767666935920715,0.835683107376099,0.081412635743618,0.543144345283508,0.816089034080505,0.0852616801857948,0.571602344512939,0.787403047084808,-0.125650525093079,0.603496730327606,0.835085809230804,-0.0748017132282257,0.545010447502136,0.816089034080505,0.0852616801857948,0.571602344512939,0.790066003799438,0.0960155203938484,0.605455875396729,0.781822502613068,-0.163981661200523,0.601550996303558,0.787403047084808,-0.125650525093079,0.603496730327606,0.536954879760742,-0.810872852802277,-0.232732996344566,0.512325942516327,-0.744121968746185,-0.428724586963654,0.933459937572479,-0.11240142583847,-0.340614676475525,0.979010879993439,-0.153616860508919,-0.133938953280449,0.512325942516327,-0.744121968746185,-0.428724586963654,0.4815514087677,-0.87572968006134,0.0347205102443695,0.94291889667511,-0.162472039461136,0.290700316429138,0.933459937572479,-0.11240142583847,-0.340614676475525,0.933459937572479,-0.11240142583847,-0.340614676475525,0.94291889667511,-0.162472039461136,0.290700316429138,0.945926189422607,0.0473997332155704,0.320900350809097,0.947897851467133,0.0929146558046341,-0.304723560810089,0.979010879993439,-0.153616860508919,-0.133938953280449,0.933459937572479,-0.11240142583847,-0.340614676475525, -0.947897851467133,0.0929146558046341,-0.304723560810089,0.98906534910202,0.0802784711122513,-0.123714156448841,0.905402183532715,0.281880259513855,-0.317475080490112,0.948138177394867,0.282200694084167,-0.14627605676651,0.98906534910202,0.0802784711122513,-0.123714156448841,0.947897851467133,0.0929146558046341,-0.304723560810089,0.945926189422607,0.0473997332155704,0.320900350809097,0.922206163406372,0.238157466053963,0.304658561944962,0.905402183532715,0.281880259513855,-0.317475080490112,0.947897851467133,0.0929146558046341,-0.304723560810089,0.905402183532715,0.281880259513855,-0.317475080490112,0.922206163406372,0.238157466053963,0.304658561944962,0.837538182735443,0.464932531118393,0.286997497081757,0.807442605495453,0.463743209838867,-0.364662319421768,0.948138177394867,0.282200694084167,-0.14627605676651,0.905402183532715,0.281880259513855,-0.317475080490112,0.807442605495453,0.463743209838867,-0.364662319421768,0.865681052207947,0.459593385457993,-0.198418900370598,0.963716447353363,0.255126237869263,0.0784932598471642,0.921207129955292,0.242782741785049,0.304029613733292,0.94857782125473,0.0162582080811262,0.316126316785812,0.998498797416687,0.0546546168625355,0.00363308354280889,0.967525243759155,0.247970029711723,0.0490496791899204,0.963716447353363,0.255126237869263,0.0784932598471642,0.998498797416687,0.0546546168625355,0.00363308354280889,0.998223602771759,0.0560266152024269,0.0202678386121988,0.963716447353363,0.255126237869263,0.0784932598471642,0.967525243759155,0.247970029711723,0.0490496791899204,0.907636106014252,0.41373685002327,0.0708418563008308,0.892504572868347,0.416275709867477,0.17363815009594,0.921207129955292,0.242782741785049,0.304029613733292,0.963716447353363,0.255126237869263,0.0784932598471642,0.892504572868347,0.416275709867477,0.17363815009594,0.830227434635162,0.431485265493393,0.352906316518784,0.998076438903809,-0.0335006192326546,0.0521652586758137,0.9980588555336,-0.0307272728532553,0.0541705675423145,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.996767938137054,-0.0642640367150307,0.0482074059545994, -0.998076438903809,-0.0335006192326546,0.0521652586758137,0.996767938137054,-0.0642640367150307,0.0482074059545994,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.994130790233612,-0.0191965121775866,0.106468379497528,0.987510144710541,0.00802973285317421,0.157351240515709,0.979721188545227,0.0236150678247213,0.198968842625618,0.98066383600235,0.0180061925202608,0.194869875907898,0.98827588558197,-0.00508788786828518,0.152593970298767,0.987510144710541,0.00802973285317421,0.157351240515709,0.98827588558197,-0.00508788786828518,0.152593970298767,0.991952538490295,-0.0207040682435036,0.124906249344349,0.990318834781647,0.000879656348843127,0.138809040188789,0.991952538490295,-0.0207040682435036,0.124906249344349,0.98827588558197,-0.00508788786828518,0.152593970298767,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.98827588558197,-0.00508788786828518,0.152593970298767,0.98066383600235,0.0180061925202608,0.194869875907898,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.898237943649292,0.0905231833457947,0.430086344480515,0.878060460090637,0.0984387844800949,0.468315750360489,0.873294770717621,0.0614541955292225,0.483300536870956,0.895420014858246,0.0586419925093651,0.441343426704407,0.898237943649292,0.0905231833457947,0.430086344480515,0.895420014858246,0.0586419925093651,0.441343426704407,0.904150128364563,0.0649797022342682,0.422244161367416,0.904750525951385,0.0933326557278633,0.415590554475784,0.904150128364563,0.0649797022342682,0.422244161367416,0.895420014858246,0.0586419925093651,0.441343426704407,0.88355153799057,-0.119876965880394,0.452731907367706,0.885731637477875,-0.117089197039604,0.449187576770782,0.895420014858246,0.0586419925093651,0.441343426704407,0.873294770717621,0.0614541955292225,0.483300536870956,0.87024199962616,-0.115240558981895,0.478955656290054,0.88355153799057,-0.119876965880394,0.452731907367706,0.944641470909119,0.0620442479848862,0.322184771299362, -0.924596667289734,0.0704071149230003,0.374384492635727,0.924243927001953,-0.0464271157979965,0.37896916270256,0.968400835990906,0.00266301538795233,0.249384731054306,0.924596667289734,0.0704071149230003,0.374384492635727,0.913209974765778,0.0730284675955772,0.400891989469528,0.899008393287659,-0.0800047740340233,0.430561602115631,0.924243927001953,-0.0464271157979965,0.37896916270256,0.765911519527435,0.0333814844489098,-0.642078757286072,0.716182291507721,0.000275129219517112,-0.69791316986084,0.779022097587585,0.102573357522488,-0.618549406528473,0.833697617053986,0.185058683156967,-0.520289838314056,0.961081564426422,0.0600554384291172,-0.269658237695694,0.765911519527435,0.0333814844489098,-0.642078757286072,0.833697617053986,0.185058683156967,-0.520289838314056,0.946774840354919,0.243151560425758,-0.210937887430191,0.765911519527435,0.0333814844489098,-0.642078757286072,0.961081564426422,0.0600554384291172,-0.269658237695694,0.943901240825653,-0.159197479486465,-0.289320975542068,0.707929074764252,-0.133106932044029,-0.69362735748291,0.716182291507721,0.000275129219517112,-0.69791316986084,0.765911519527435,0.0333814844489098,-0.642078757286072,0.707929074764252,-0.133106932044029,-0.69362735748291,0.647358417510986,-0.13522407412529,-0.750094354152679,0.833697617053986,0.185058683156967,-0.520289838314056,0.779022097587585,0.102573357522488,-0.618549406528473,0.873127579689026,0.231439754366875,-0.429050087928772,0.877731323242188,0.359140127897263,-0.317184686660767,0.946774840354919,0.243151560425758,-0.210937887430191,0.833697617053986,0.185058683156967,-0.520289838314056,0.877731323242188,0.359140127897263,-0.317184686660767,0.896420896053314,0.419392853975296,-0.143315359950066,0.976668894290924,0.212742060422897,-0.0293045789003372,0.962401151657104,0.27144655585289,0.0100412387400866,0.901038825511932,0.433168351650238,-0.022227143868804,0.896420896053314,0.419392853975296,-0.143315359950066,0.962401151657104,0.27144655585289,0.0100412387400866,0.955672204494476,0.283672422170639,0.0788711979985237,0.897985458374023,0.431995779275894,0.0836762264370918, -0.901038825511932,0.433168351650238,-0.022227143868804,0.901038825511932,0.433168351650238,-0.022227143868804,0.897985458374023,0.431995779275894,0.0836762264370918,0.965885818004608,0.24819503724575,0.0739179998636246,0.967528283596039,0.252681851387024,-0.00640123477205634,0.946774840354919,0.243151560425758,-0.210937887430191,0.896420896053314,0.419392853975296,-0.143315359950066,0.901038825511932,0.433168351650238,-0.022227143868804,0.967528283596039,0.252681851387024,-0.00640123477205634,0.99767404794693,-0.00837523303925991,0.0676497146487236,0.998219013214111,-0.0115689476951957,0.0585229098796844,0.998089551925659,-0.00854548532515764,0.0611912310123444,0.997700870037079,-0.00731176231056452,0.0673750191926956,0.99767404794693,-0.00837523303925991,0.0676497146487236,0.997700870037079,-0.00731176231056452,0.0673750191926956,0.99837338924408,-0.0125773344188929,0.0556089356541634,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.99837338924408,-0.0125773344188929,0.0556089356541634,0.998956739902496,-0.0183367785066366,0.0418243370950222,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.998956739902496,-0.0183367785066366,0.0418243370950222,0.998936772346497,-0.0199484061449766,0.0415629036724567,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.998556017875671,-0.0141695337370038,0.051818061619997,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.998310029506683,-0.0115439323708415,0.056955486536026,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.997323036193848,-0.0175949856638908,0.0709722861647606,0.993970155715942,-0.0132716875523329,0.108845576643944,0.99025171995163,-0.0334108285605907,0.135222285985947, -0.993970155715942,-0.0132716875523329,0.108845576643944,0.989045441150665,-0.00783006940037012,0.147403299808502,0.985852181911469,-0.0375175699591637,0.163363993167877,0.99025171995163,-0.0334108285605907,0.135222285985947,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.99025171995163,-0.0334108285605907,0.135222285985947,0.956762909889221,-0.17374150454998,0.233278065919876,0.981098473072052,-0.0995443984866142,0.165941908955574,0.99025171995163,-0.0334108285605907,0.135222285985947,0.985852181911469,-0.0375175699591637,0.163363993167877,0.941215097904205,-0.228930488228798,0.248405158519745,0.956762909889221,-0.17374150454998,0.233278065919876,0.930400192737579,0.117982521653175,0.347038447856903,0.953517556190491,0.236826956272125,0.186326041817665,0.995074689388275,-0.0397914536297321,0.0907912701368332,0.981098473072052,-0.0995443984866142,0.165941908955574,0.953517556190491,0.236826956272125,0.186326041817665,0.955672204494476,0.283672422170639,0.0788711979985237,0.998310029506683,-0.0115439323708415,0.056955486536026,0.995074689388275,-0.0397914536297321,0.0907912701368332,2.41234738496132e-05,0.0307317469269037,0.999527633190155,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.565321087837219,0.0699423104524612,0.821900248527527,4.35391993960366e-05,0.0708878710865974,0.99748432636261,2.41234738496132e-05,0.0307317469269037,0.999527633190155,2.14158717426471e-05,-0.35622963309288,0.934398531913757,-0.529483556747437,-0.324605464935303,0.783759117126465,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.529483556747437,-0.324605464935303,0.783759117126465,-0.230811730027199,-0.364695429801941,0.902066111564636,-0.282585620880127,-0.00664947414770722,0.959219038486481,-0.275225967168808,0.0847131758928299,0.957639992237091,-0.565321087837219,0.0699423104524612,0.821900248527527,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.282585620880127,-0.00664947414770722,0.959219038486481,0.300130397081375,0.2756627202034,0.91319864988327, -0.327736765146255,0.266692817211151,0.906346321105957,0.321946859359741,0.303813844919205,0.896686911582947,0.29065814614296,0.311613619327545,0.904662787914276,0.300130397081375,0.2756627202034,0.91319864988327,0.29065814614296,0.311613619327545,0.904662787914276,0.243145018815994,0.320305287837982,0.91557902097702,0.248251765966415,0.283825427293777,0.926182508468628,0.312815517187119,0.00277976063080132,0.949809849262238,0.393130868673325,0.0616345219314098,0.917414486408234,0.402198970317841,-0.0607786178588867,0.913532793521881,0.318349808454514,-0.0322053767740726,0.947426080703735,0.393130868673325,0.0616345219314098,0.917414486408234,0.374749928712845,0.128784492611885,0.918137788772583,0.386866927146912,-0.0979848951101303,0.916914939880371,0.402198970317841,-0.0607786178588867,0.913532793521881,-0.000136224902234972,0.0868736505508423,0.996219277381897,-0.496288329362869,0.117570117115974,0.860160052776337,-0.361380368471146,0.185899093747139,0.91369891166687,0.000145562866237015,0.109267674386501,0.994012296199799,-0.496288329362869,0.117570117115974,0.860160052776337,-0.000136224902234972,0.0868736505508423,0.996219277381897,4.35391993960366e-05,0.0708878710865974,0.99748432636261,-0.565321087837219,0.0699423104524612,0.821900248527527,-0.075246550142765,0.226132169365883,0.971185922622681,-0.361380368471146,0.185899093747139,0.91369891166687,-0.496288329362869,0.117570117115974,0.860160052776337,-0.208788350224495,0.164736926555634,0.963985979557037,0.378438830375671,0.238302662968636,0.894424855709076,0.388904482126236,0.223152533173561,0.893843531608582,0.384591788053513,0.281165838241577,0.879224002361298,0.373248636722565,0.28591725230217,0.882574021816254,0.378438830375671,0.238302662968636,0.894424855709076,0.373248636722565,0.28591725230217,0.882574021816254,0.361779034137726,0.291903346776962,0.885385990142822,0.363922715187073,0.25348636507988,0.896272778511047,0.579381823539734,0.0800317376852036,0.81111752986908,0.873317956924438,0.0471226051449776,0.484866201877594,0.770491540431976,0.238308936357498,0.59122896194458, -0.516922354698181,0.248777985572815,0.819085419178009,0.327490657567978,0.237567722797394,0.914500653743744,0.349182218313217,0.0877810567617416,0.93293422460556,0.579381823539734,0.0800317376852036,0.81111752986908,0.516922354698181,0.248777985572815,0.819085419178009,0.579381823539734,0.0800317376852036,0.81111752986908,0.349182218313217,0.0877810567617416,0.93293422460556,0.372290521860123,-0.066767729818821,0.925711572170258,0.620405852794647,-0.09043038636446,0.779050052165985,0.913928806781769,-0.122308745980263,0.387007266283035,0.873317956924438,0.0471226051449776,0.484866201877594,0.579381823539734,0.0800317376852036,0.81111752986908,0.620405852794647,-0.09043038636446,0.779050052165985,0.470587104558945,0.114330269396305,0.87491512298584,0.532116651535034,0.0695726945996284,0.843807816505432,0.407787322998047,-0.0665067508816719,0.910651624202728,0.374630957841873,-0.0767536237835884,0.923991620540619,0.532116651535034,0.0695726945996284,0.843807816505432,0.38748687505722,0.0573664493858814,0.920088648796082,0.390245676040649,-0.0543134994804859,0.919107437133789,0.407787322998047,-0.0665067508816719,0.910651624202728,0.470587104558945,0.114330269396305,0.87491512298584,0.369435369968414,0.142308920621872,0.918295085430145,0.435846507549286,0.413397252559662,0.799462556838989,0.644027709960938,0.430548369884491,0.632342040538788,0.369435369968414,0.142308920621872,0.918295085430145,0.374749928712845,0.128784492611885,0.918137788772583,0.30707859992981,0.373052805662155,0.875519514083862,0.435846507549286,0.413397252559662,0.799462556838989,0.435846507549286,0.413397252559662,0.799462556838989,0.30707859992981,0.373052805662155,0.875519514083862,0.327490657567978,0.237567722797394,0.914500653743744,0.516922354698181,0.248777985572815,0.819085419178009,0.770491540431976,0.238308936357498,0.59122896194458,0.644027709960938,0.430548369884491,0.632342040538788,0.435846507549286,0.413397252559662,0.799462556838989,0.516922354698181,0.248777985572815,0.819085419178009,-0.0945053994655609,0.0135007351636887,0.99543285369873, -0.0287272054702044,0.0468101017177105,0.998490691184998,0.144231110811234,0.172638192772865,0.974368274211884,-0.0032636858522892,0.105870991945267,0.994374573230743,0.548751831054688,0.0778049603104591,0.832356750965118,0.612025260925293,-0.0345636606216431,0.790082573890686,-0.0945053994655609,0.0135007351636887,0.99543285369873,-0.0032636858522892,0.105870991945267,0.994374573230743,-0.0945053994655609,0.0135007351636887,0.99543285369873,0.612025260925293,-0.0345636606216431,0.790082573890686,0.682898283004761,-0.155377089977264,0.713798105716705,-0.173348903656006,-0.0628221333026886,0.982854843139648,-0.0503527484834194,-0.0637124851346016,0.996697187423706,0.0287272054702044,0.0468101017177105,0.998490691184998,-0.0945053994655609,0.0135007351636887,0.99543285369873,-0.173348903656006,-0.0628221333026886,0.982854843139648,0.446461707353592,0.228723227977753,0.865076661109924,0.462071448564529,0.223597913980484,0.858192265033722,0.453348875045776,0.265510946512222,0.850869357585907,0.433198034763336,0.272238612174988,0.859200537204742,0.446461707353592,0.228723227977753,0.865076661109924,0.433198034763336,0.272238612174988,0.859200537204742,0.415154933929443,0.276450455188751,0.866730391979218,0.424679905176163,0.229900926351547,0.875666916370392,0.432550311088562,0.0525393672287464,0.900077641010284,0.296649903059006,0.0429628640413284,0.95401930809021,0.0704752877354622,0.239770546555519,0.968268275260925,0.256486296653748,0.308012425899506,0.916156649589539,0.296649903059006,0.0429628640413284,0.95401930809021,0.38748687505722,0.0573664493858814,0.920088648796082,0.459471136331558,0.24929216504097,0.852490365505219,0.0704752877354622,0.239770546555519,0.968268275260925,0.0704752877354622,0.239770546555519,0.968268275260925,0.459471136331558,0.24929216504097,0.852490365505219,0.548751831054688,0.0778049603104591,0.832356750965118,-0.0032636858522892,0.105870991945267,0.994374573230743,0.144231110811234,0.172638192772865,0.974368274211884,0.256486296653748,0.308012425899506,0.916156649589539,0.0704752877354622,0.239770546555519,0.968268275260925, --0.0032636858522892,0.105870991945267,0.994374573230743,0.432550311088562,0.0525393672287464,0.900077641010284,0.561170816421509,0.0272064451128244,0.827252805233002,0.550027906894684,-0.0980221107602119,0.829373836517334,0.478856712579727,-0.0499666966497898,0.876470029354095,0.561170816421509,0.0272064451128244,0.827252805233002,0.533222019672394,-0.0158655233681202,0.845826506614685,0.516118586063385,-0.17624568939209,0.83818793296814,0.550027906894684,-0.0980221107602119,0.829373836517334,0.536860227584839,0.192848414182663,0.821334719657898,0.594159483909607,0.165744379162788,0.7870854139328,0.597092807292938,0.207738563418388,0.774806380271912,0.528049290180206,0.231191053986549,0.817138075828552,0.536860227584839,0.192848414182663,0.821334719657898,0.528049290180206,0.231191053986549,0.817138075828552,0.490685194730759,0.246961683034897,0.835606276988983,0.496302485466003,0.210021421313286,0.842362582683563,0.646494269371033,0.0788106769323349,0.758837342262268,0.859796166419983,0.0410401895642281,0.50898551940918,0.807394444942474,0.185277953743935,0.560166239738464,0.604836463928223,0.238735511898994,0.759722411632538,0.462808132171631,0.255610018968582,0.848806321620941,0.452858477830887,0.0933812335133553,0.886678755283356,0.646494269371033,0.0788106769323349,0.758837342262268,0.604836463928223,0.238735511898994,0.759722411632538,0.646494269371033,0.0788106769323349,0.758837342262268,0.452858477830887,0.0933812335133553,0.886678755283356,0.444481372833252,-0.0677722692489624,0.893220722675323,0.672795593738556,-0.0803807750344276,0.735448837280273,0.880849540233612,-0.10070113837719,0.462561696767807,0.859796166419983,0.0410401895642281,0.50898551940918,0.646494269371033,0.0788106769323349,0.758837342262268,0.672795593738556,-0.0803807750344276,0.735448837280273,0.736564636230469,0.168809071183205,0.654962539672852,0.49786764383316,0.0360203832387924,0.866504609584808,0.561558067798615,0.395983278751373,0.726532697677612,0.73822009563446,0.373730897903442,0.56156587600708,0.49786764383316,0.0360203832387924,0.866504609584808, -0.533222019672394,-0.0158655233681202,0.845826506614685,0.472877681255341,0.383730292320251,0.793182075023651,0.561558067798615,0.395983278751373,0.726532697677612,0.561558067798615,0.395983278751373,0.726532697677612,0.472877681255341,0.383730292320251,0.793182075023651,0.462808132171631,0.255610018968582,0.848806321620941,0.604836463928223,0.238735511898994,0.759722411632538,0.807394444942474,0.185277953743935,0.560166239738464,0.73822009563446,0.373730897903442,0.56156587600708,0.561558067798615,0.395983278751373,0.726532697677612,0.604836463928223,0.238735511898994,0.759722411632538,0.736564636230469,0.168809071183205,0.654962539672852,0.877351403236389,0.132231578230858,0.461269348859787,0.680147051811218,-0.108317017555237,0.725029289722443,0.563454568386078,-0.125576511025429,0.816547274589539,0.877351403236389,0.132231578230858,0.461269348859787,0.652515828609467,0.131035268306732,0.746359705924988,0.652966678142548,-0.116778150200844,0.748329758644104,0.680147051811218,-0.108317017555237,0.725029289722443,-0.144669786095619,0.0121913570910692,0.989404857158661,0.266093969345093,0.0750106051564217,0.961024165153503,0.319545745849609,0.279676467180252,0.905357241630554,-0.109018251299858,0.147485896945,0.98303759098053,0.333326160907745,0.129022359848022,0.933941543102264,0.255010724067688,-0.000428939907578751,0.966938138008118,-0.144669786095619,0.0121913570910692,0.989404857158661,-0.109018251299858,0.147485896945,0.98303759098053,-0.144669786095619,0.0121913570910692,0.989404857158661,0.255010724067688,-0.000428939907578751,0.966938138008118,0.27758714556694,-0.108460150659084,0.954558432102203,-0.141841292381287,-0.088178738951683,0.985954105854034,0.232638046145439,-0.0962695926427841,0.967786967754364,0.266093969345093,0.0750106051564217,0.961024165153503,-0.144669786095619,0.0121913570910692,0.989404857158661,-0.141841292381287,-0.088178738951683,0.985954105854034,0.756154358386993,0.111662238836288,0.644796133041382,0.790066003799438,0.0960155203938484,0.605455875396729,0.794110238552094,0.136485382914543,0.592250466346741, -0.757023990154266,0.152387499809265,0.635368168354034,0.756154358386993,0.111662238836288,0.644796133041382,0.757023990154266,0.152387499809265,0.635368168354034,0.71526163816452,0.16785803437233,0.678398430347443,0.712085843086243,0.130221232771873,0.689910233020782,0.593208611011505,0.173852309584618,0.786052644252777,0.755213499069214,0.14074595272541,0.640189945697784,0.780074834823608,-0.154913365840912,0.606205582618713,0.719675958156586,-0.128582119941711,0.682299971580505,0.755213499069214,0.14074595272541,0.640189945697784,0.781828284263611,0.120814986526966,0.611676633358002,0.781822502613068,-0.163981661200523,0.601550996303558,0.780074834823608,-0.154913365840912,0.606205582618713,0.593208611011505,0.173852309584618,0.786052644252777,0.421275079250336,0.123729176819324,0.898453235626221,-0.00046492533874698,0.372183620929718,0.928158938884735,0.340378075838089,0.527010321617126,0.778718650341034,0.421275079250336,0.123729176819324,0.898453235626221,0.652515828609467,0.131035268306732,0.746359705924988,0.481602132320404,0.350094020366669,0.803426086902618,-0.00046492533874698,0.372183620929718,0.928158938884735,-0.00046492533874698,0.372183620929718,0.928158938884735,0.481602132320404,0.350094020366669,0.803426086902618,0.333326160907745,0.129022359848022,0.933941543102264,-0.109018251299858,0.147485896945,0.98303759098053,0.319545745849609,0.279676467180252,0.905357241630554,0.340378075838089,0.527010321617126,0.778718650341034,-0.00046492533874698,0.372183620929718,0.928158938884735,-0.109018251299858,0.147485896945,0.98303759098053,0.857895612716675,0.0743108317255974,0.508421897888184,0.888742685317993,0.0559654906392097,0.454977214336395,0.89489334821701,0.0763727650046349,0.439696550369263,0.8595010638237,0.0993292704224586,0.501389682292938,0.857895612716675,0.0743108317255974,0.508421897888184,0.8595010638237,0.0993292704224586,0.501389682292938,0.837277472019196,0.11309926211834,0.53495329618454,0.835683107376099,0.081412635743618,0.543144345283508,0.934450149536133,0.191255316138268,0.300373524427414, -0.983625650405884,0.156570419669151,-0.0892541706562042,0.945863425731659,0.322207003831863,0.0390521138906479,0.858171701431274,0.383388936519623,0.341400355100632,0.745747447013855,0.394625544548035,0.536778688430786,0.801282107830048,0.18563087284565,0.568760216236115,0.934450149536133,0.191255316138268,0.300373524427414,0.858171701431274,0.383388936519623,0.341400355100632,0.934450149536133,0.191255316138268,0.300373524427414,0.801282107830048,0.18563087284565,0.568760216236115,0.819088101387024,-0.0351431109011173,0.572590351104736,0.966720521450043,-0.0154459932819009,0.255367934703827,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.983625650405884,0.156570419669151,-0.0892541706562042,0.934450149536133,0.191255316138268,0.300373524427414,0.966720521450043,-0.0154459932819009,0.255367934703827,0.886453747749329,0.21589657664299,0.409375607967377,0.950080454349518,0.178385734558105,0.255979806184769,0.893545269966125,-0.0518663749098778,0.445967197418213,0.835085809230804,-0.0748017132282257,0.545010447502136,0.950080454349518,0.178385734558105,0.255979806184769,0.886452257633209,0.167524337768555,0.431437075138092,0.905811905860901,-0.0550877153873444,0.420083284378052,0.893545269966125,-0.0518663749098778,0.445967197418213,0.886453747749329,0.21589657664299,0.409375607967377,0.803862869739532,0.172455474734306,0.569265842437744,0.737718939781189,0.58137834072113,0.343176573514938,0.826826453208923,0.543696463108063,0.144056633114815,0.803862869739532,0.172455474734306,0.569265842437744,0.781828284263611,0.120814986526966,0.611676633358002,0.650332570075989,0.587092518806458,0.48206827044487,0.737718939781189,0.58137834072113,0.343176573514938,0.737718939781189,0.58137834072113,0.343176573514938,0.650332570075989,0.587092518806458,0.48206827044487,0.745747447013855,0.394625544548035,0.536778688430786,0.858171701431274,0.383388936519623,0.341400355100632,0.945863425731659,0.322207003831863,0.0390521138906479,0.826826453208923,0.543696463108063,0.144056633114815,0.737718939781189,0.58137834072113,0.343176573514938, -0.858171701431274,0.383388936519623,0.341400355100632,0.188057452440262,0.025864390656352,0.981817483901978,0.649630188941956,0.108177959918976,0.752514481544495,0.651911914348602,0.274591475725174,0.706831216812134,0.252802222967148,0.156487420201302,0.954778850078583,0.763847231864929,0.20733967423439,0.611185431480408,0.706025540828705,0.0590945929288864,0.705716550350189,0.188057452440262,0.025864390656352,0.981817483901978,0.252802222967148,0.156487420201302,0.954778850078583,0.188057452440262,0.025864390656352,0.981817483901978,0.706025540828705,0.0590945929288864,0.705716550350189,0.709508717060089,-0.0912200659513474,0.698767721652985,0.153191760182381,-0.0941735506057739,0.983698964118958,0.64495325088501,-0.0900793001055717,0.758894562721252,0.649630188941956,0.108177959918976,0.752514481544495,0.188057452440262,0.025864390656352,0.981817483901978,0.153191760182381,-0.0941735506057739,0.983698964118958,0.916368842124939,0.0464496687054634,0.39763143658638,0.897544920444489,0.0651593953371048,0.436081796884537,0.891642034053802,0.0929651632905006,0.443093478679657,0.907463729381561,0.0781039968132973,0.412806779146194,0.916368842124939,0.0464496687054634,0.39763143658638,0.907463729381561,0.0781039968132973,0.412806779146194,0.919245541095734,0.0636509135365486,0.388505220413208,0.924684047698975,0.0345741249620914,0.379162460565567,0.76248973608017,0.213903322815895,0.610618352890015,0.744976758956909,0.162133932113647,0.647087514400482,0.331249833106995,0.358847171068192,0.87264096736908,0.575747072696686,0.436208605766296,0.691547036170959,0.744976758956909,0.162133932113647,0.647087514400482,0.886452257633209,0.167524337768555,0.431437075138092,0.711159825325012,0.402712434530258,0.576258957386017,0.331249833106995,0.358847171068192,0.87264096736908,0.331249833106995,0.358847171068192,0.87264096736908,0.711159825325012,0.402712434530258,0.576258957386017,0.763847231864929,0.20733967423439,0.611185431480408,0.252802222967148,0.156487420201302,0.954778850078583,0.651911914348602,0.274591475725174,0.706831216812134, -0.575747072696686,0.436208605766296,0.691547036170959,0.331249833106995,0.358847171068192,0.87264096736908,0.252802222967148,0.156487420201302,0.954778850078583,0.76248973608017,0.213903322815895,0.610618352890015,0.870147228240967,0.154020696878433,0.468104034662247,0.929051399230957,-0.111079953610897,0.352880716323853,0.926183640956879,-0.0844836086034775,0.367486596107483,0.870147228240967,0.154020696878433,0.468104034662247,0.899462103843689,0.070027768611908,0.431351244449615,0.890304565429688,-0.14252296090126,0.432487010955811,0.929051399230957,-0.111079953610897,0.352880716323853,0.856721937656403,0.069778248667717,0.51103663444519,0.873294770717621,0.0614541955292225,0.483300536870956,0.878060460090637,0.0984387844800949,0.468315750360489,0.855748414993286,0.110716558992863,0.505407392978668,0.856721937656403,0.069778248667717,0.51103663444519,0.855748414993286,0.110716558992863,0.505407392978668,0.859469413757324,0.111063994467258,0.498976111412048,0.861620962619781,0.071912445127964,0.50243204832077,0.970055520534515,0.13045209646225,0.204876527190208,0.992351472377777,0.111337505280972,-0.0533154755830765,0.967563211917877,0.252599895000458,-0.00382610247470438,0.936956703662872,0.282421767711639,0.205791562795639,0.897969782352448,0.300134867429733,0.321821928024292,0.948911905288696,0.145231619477272,0.280131995677948,0.970055520534515,0.13045209646225,0.204876527190208,0.936956703662872,0.282421767711639,0.205791562795639,0.970055520534515,0.13045209646225,0.204876527190208,0.948911905288696,0.145231619477272,0.280131995677948,0.96843147277832,-0.0758867263793945,0.237448051571846,0.981911540031433,-0.0718926638364792,0.175160557031631,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.992351472377777,0.111337505280972,-0.0533154755830765,0.970055520534515,0.13045209646225,0.204876527190208,0.981911540031433,-0.0718926638364792,0.175160557031631,0.933897316455841,0.0937239080667496,0.345038771629333,0.907306492328644,0.0993173494935036,0.408571898937225,0.892419397830963,0.412483304738998,0.182880237698555, -0.909256994724274,0.416135013103485,-0.00912798754870892,0.907306492328644,0.0993173494935036,0.408571898937225,0.899462103843689,0.070027768611908,0.431351244449615,0.833997189998627,0.422427475452423,0.354969918727875,0.892419397830963,0.412483304738998,0.182880237698555,0.892419397830963,0.412483304738998,0.182880237698555,0.833997189998627,0.422427475452423,0.354969918727875,0.897969782352448,0.300134867429733,0.321821928024292,0.936956703662872,0.282421767711639,0.205791562795639,0.967563211917877,0.252599895000458,-0.00382610247470438,0.909256994724274,0.416135013103485,-0.00912798754870892,0.892419397830963,0.412483304738998,0.182880237698555,0.936956703662872,0.282421767711639,0.205791562795639,0.933897316455841,0.0937239080667496,0.345038771629333,0.932120323181152,0.0270342659205198,0.361138105392456,0.856386959552765,-0.11795199662447,0.502681612968445,0.840295255184174,-0.130078285932541,0.526292264461517,0.932120323181152,0.0270342659205198,0.361138105392456,0.848219990730286,0.0226736664772034,0.529158473014832,0.87024199962616,-0.115240558981895,0.478955656290054,0.856386959552765,-0.11795199662447,0.502681612968445,0.302934408187866,0.0372586101293564,0.952282786369324,0.568173348903656,0.0645316392183304,0.820374667644501,0.574787020683289,0.210684657096863,0.790715992450714,0.335194379091263,0.135729715228081,0.932320833206177,0.761416733264923,0.159113496541977,0.62843269109726,0.806950986385345,0.0708705857396126,0.586350858211517,0.302934408187866,0.0372586101293564,0.952282786369324,0.335194379091263,0.135729715228081,0.932320833206177,0.302934408187866,0.0372586101293564,0.952282786369324,0.806950986385345,0.0708705857396126,0.586350858211517,0.828090965747833,-0.0392764545977116,0.559216260910034,0.270148783922195,-0.0658984035253525,0.96056079864502,0.567517757415771,-0.105055831372738,0.816631495952606,0.568173348903656,0.0645316392183304,0.820374667644501,0.302934408187866,0.0372586101293564,0.952282786369324,0.270148783922195,-0.0658984035253525,0.96056079864502,0.907031059265137,0.0713262856006622,0.414978533983231, -0.913209974765778,0.0730284675955772,0.400891989469528,0.915004372596741,0.0965912863612175,0.391710638999939,0.908649265766144,0.0971544161438942,0.406100541353226,0.907031059265137,0.0713262856006622,0.414978533983231,0.908649265766144,0.0971544161438942,0.406100541353226,0.904750525951385,0.0933326557278633,0.415590554475784,0.904150128364563,0.0649797022342682,0.422244161367416,0.825610280036926,0.0557929053902626,0.561475515365601,0.850996136665344,0.111290536820889,0.513244569301605,0.885454833507538,-0.10305217653513,0.453155487775803,0.885731637477875,-0.117089197039604,0.449187576770782,0.850996136665344,0.111290536820889,0.513244569301605,0.881765305995941,0.156583860516548,0.444939881563187,0.899008393287659,-0.0800047740340233,0.430561602115631,0.885454833507538,-0.10305217653513,0.453155487775803,0.825610280036926,0.0557929053902626,0.561475515365601,0.790543735027313,0.00239566946402192,0.612400949001312,0.349951535463333,0.274283945560455,0.895713329315186,0.568896114826202,0.364665627479553,0.737140536308289,0.790543735027313,0.00239566946402192,0.612400949001312,0.848219990730286,0.0226736664772034,0.529158473014832,0.703478813171387,0.332269787788391,0.628262877464294,0.349951535463333,0.274283945560455,0.895713329315186,0.349951535463333,0.274283945560455,0.895713329315186,0.703478813171387,0.332269787788391,0.628262877464294,0.761416733264923,0.159113496541977,0.62843269109726,0.335194379091263,0.135729715228081,0.932320833206177,0.574787020683289,0.210684657096863,0.790715992450714,0.568896114826202,0.364665627479553,0.737140536308289,0.349951535463333,0.274283945560455,0.895713329315186,0.335194379091263,0.135729715228081,0.932320833206177,0.96678763628006,0.044914573431015,0.251603692770004,0.98066383600235,0.0180061925202608,0.194869875907898,0.979721188545227,0.0236150678247213,0.198968842625618,0.966162383556366,0.0450811833143234,0.253964215517044,0.96678763628006,0.044914573431015,0.251603692770004,0.966162383556366,0.0450811833143234,0.253964215517044,0.947649896144867,0.0681590139865875,0.311952084302902, -0.944641470909119,0.0620442479848862,0.322184771299362,0.977914929389954,0.0444089695811272,0.204231038689613,0.99474173784256,0.0217426996678114,-0.100080631673336,0.97530996799469,0.220519706606865,-0.0118971364572644,0.935251116752625,0.243269473314285,0.25714835524559,0.877151727676392,0.257564693689346,0.405296623706818,0.923970639705658,0.068852424621582,0.376215010881424,0.977914929389954,0.0444089695811272,0.204231038689613,0.935251116752625,0.243269473314285,0.25714835524559,0.977914929389954,0.0444089695811272,0.204231038689613,0.923970639705658,0.068852424621582,0.376215010881424,0.928299844264984,-0.170819714665413,0.330272734165192,0.970346391201019,-0.193304762244225,0.145124331116676,0.967428803443909,-0.190274477005005,-0.166964590549469,0.99474173784256,0.0217426996678114,-0.100080631673336,0.977914929389954,0.0444089695811272,0.204231038689613,0.970346391201019,-0.193304762244225,0.145124331116676,0.962637424468994,0.252006649971008,0.099105529487133,0.937002420425415,0.241222590208054,-0.252662390470505,0.997656524181366,0.0230849012732506,0.064408503472805,0.968400835990906,0.00266301538795233,0.249384731054306,0.937002420425415,0.241222590208054,-0.252662390470505,0.980355262756348,0.185684055089951,-0.066519558429718,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.997656524181366,0.0230849012732506,0.064408503472805,0.962637424468994,0.252006649971008,0.099105529487133,0.917985677719116,0.17777444422245,0.354539930820465,0.854804515838623,0.434143126010895,0.28430449962616,0.89900928735733,0.433892607688904,0.0593249090015888,0.917985677719116,0.17777444422245,0.354539930820465,0.881765305995941,0.156583860516548,0.444939881563187,0.802838861942291,0.432056188583374,0.410825103521347,0.854804515838623,0.434143126010895,0.28430449962616,0.854804515838623,0.434143126010895,0.28430449962616,0.802838861942291,0.432056188583374,0.410825103521347,0.877151727676392,0.257564693689346,0.405296623706818,0.935251116752625,0.243269473314285,0.25714835524559,0.97530996799469,0.220519706606865,-0.0118971364572644, -0.89900928735733,0.433892607688904,0.0593249090015888,0.854804515838623,0.434143126010895,0.28430449962616,0.935251116752625,0.243269473314285,0.25714835524559,0.687476277351379,-0.0471765957772732,0.724672734737396,0.94857782125473,0.0162582080811262,0.316126316785812,0.921207129955292,0.242782741785049,0.304029613733292,0.721513330936432,0.166509702801704,0.672081053256989,0.969870567321777,0.175378158688545,0.169096708297729,0.97145414352417,-0.0491053462028503,0.232089444994926,0.687476277351379,-0.0471765957772732,0.724672734737396,0.721513330936432,0.166509702801704,0.672081053256989,0.687476277351379,-0.0471765957772732,0.724672734737396,0.97145414352417,-0.0491053462028503,0.232089444994926,0.926129341125488,-0.292127281427383,0.23863373696804,0.600978076457977,-0.261314034461975,0.755341231822968,0.908502757549286,-0.245355442166328,0.338265061378479,0.94857782125473,0.0162582080811262,0.316126316785812,0.687476277351379,-0.0471765957772732,0.724672734737396,0.600978076457977,-0.261314034461975,0.755341231822968,0.994035840034485,-0.0367925614118576,0.102660104632378,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.9980588555336,-0.0307272728532553,0.0541705675423145,0.994471251964569,-0.0121922809630632,0.10429909825325,0.994035840034485,-0.0367925614118576,0.102660104632378,0.994471251964569,-0.0121922809630632,0.10429909825325,0.990318834781647,0.000879656348843127,0.138809040188789,0.991952538490295,-0.0207040682435036,0.124906249344349,0.984749257564545,0.116362579166889,0.129339754581451,0.978713750839233,0.08892522752285,0.184964135289192,0.649170100688934,0.397710740566254,0.648386120796204,0.830227434635162,0.431485265493393,0.352906316518784,0.978713750839233,0.08892522752285,0.184964135289192,0.980355262756348,0.185684055089951,-0.066519558429718,0.866819143295288,0.469822436571121,0.167007490992546,0.649170100688934,0.397710740566254,0.648386120796204,0.649170100688934,0.397710740566254,0.648386120796204,0.866819143295288,0.469822436571121,0.167007490992546,0.969870567321777,0.175378158688545,0.169096708297729, -0.721513330936432,0.166509702801704,0.672081053256989,0.921207129955292,0.242782741785049,0.304029613733292,0.830227434635162,0.431485265493393,0.352906316518784,0.649170100688934,0.397710740566254,0.648386120796204,0.721513330936432,0.166509702801704,0.672081053256989,0.984749257564545,0.116362579166889,0.129339754581451,0.992181420326233,0.102621845901012,0.071026511490345,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.992181420326233,0.102621845901012,0.071026511490345,0.995797336101532,0.0686046779155731,0.0606710277497768,0.935719668865204,-0.352570354938507,0.0110868783667684,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.988057315349579,-0.0398513898253441,0.148843824863434,0.985852181911469,-0.0375175699591637,0.163363993167877,0.989045441150665,-0.00783006940037012,0.147403299808502,0.988508582115173,-0.00779631454497576,0.150963544845581,0.988057315349579,-0.0398513898253441,0.148843824863434,0.988508582115173,-0.00779631454497576,0.150963544845581,0.994130790233612,-0.0191965121775866,0.106468379497528,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.996471583843231,0.0601857453584671,0.0584988780319691,0.98906534910202,0.0802784711122513,-0.123714156448841,0.948138177394867,0.282200694084167,-0.14627605676651,0.965531885623932,0.259218961000443,0.0235322955995798,0.967525243759155,0.247970029711723,0.0490496791899204,0.998223602771759,0.0560266152024269,0.0202678386121988,0.996471583843231,0.0601857453584671,0.0584988780319691,0.965531885623932,0.259218961000443,0.0235322955995798,0.996471583843231,0.0601857453584671,0.0584988780319691,0.998223602771759,0.0560266152024269,0.0202678386121988,0.980018794536591,-0.198278412222862,-0.0157665051519871,0.981442987918854,-0.186396196484566,0.0450117699801922,0.979010879993439,-0.153616860508919,-0.133938953280449,0.98906534910202,0.0802784711122513,-0.123714156448841,0.996471583843231,0.0601857453584671,0.0584988780319691,0.981442987918854,-0.186396196484566,0.0450117699801922, -0.997986316680908,0.0507214218378067,0.0380863137543201,0.995731592178345,0.0808172449469566,0.0445774905383587,0.902222096920013,0.430157274007797,-0.0309827905148268,0.865681052207947,0.459593385457993,-0.198418900370598,0.995731592178345,0.0808172449469566,0.0445774905383587,0.995797336101532,0.0686046779155731,0.0606710277497768,0.907636106014252,0.41373685002327,0.0708418563008308,0.902222096920013,0.430157274007797,-0.0309827905148268,0.902222096920013,0.430157274007797,-0.0309827905148268,0.907636106014252,0.41373685002327,0.0708418563008308,0.967525243759155,0.247970029711723,0.0490496791899204,0.965531885623932,0.259218961000443,0.0235322955995798,0.948138177394867,0.282200694084167,-0.14627605676651,0.865681052207947,0.459593385457993,-0.198418900370598,0.902222096920013,0.430157274007797,-0.0309827905148268,0.965531885623932,0.259218961000443,0.0235322955995798,0.997986316680908,0.0507214218378067,0.0380863137543201,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.942376792430878,-0.257297188043594,0.213832184672356,0.939077377319336,-0.303965419530869,0.160432919859886,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.945305049419403,0.0100241769105196,0.326033502817154,0.941215097904205,-0.228930488228798,0.248405158519745,0.942376792430878,-0.257297188043594,0.213832184672356,0.127597525715828,-0.0325997099280357,0.991290092468262,0.118021123111248,0.090134933590889,0.988911867141724,-0.275225967168808,0.0847131758928299,0.957639992237091,-0.282585620880127,-0.00664947414770722,0.959219038486481,-0.275225967168808,0.0847131758928299,0.957639992237091,0.118021123111248,0.090134933590889,0.988911867141724,0.130164593458176,0.193935751914978,0.97234058380127,-0.208788350224495,0.164736926555634,0.963985979557037,-0.275225967168808,0.0847131758928299,0.957639992237091,-0.208788350224495,0.164736926555634,0.963985979557037,-0.496288329362869,0.117570117115974,0.860160052776337,-0.565321087837219,0.0699423104524612,0.821900248527527,0.580079257488251,-0.802277624607086,-0.140921175479889, -0.503361344337463,-0.706269264221191,-0.497806340456009,0.707929074764252,-0.133106932044029,-0.69362735748291,0.943901240825653,-0.159197479486465,-0.289320975542068,0.503361344337463,-0.706269264221191,-0.497806340456009,0.468589961528778,-0.584312975406647,-0.662572145462036,0.647358417510986,-0.13522407412529,-0.750094354152679,0.707929074764252,-0.133106932044029,-0.69362735748291,0.611539423465729,-0.490914881229401,0.620501518249512,-0.205286920070648,-0.331945270299911,0.920689761638641,-0.173348903656006,-0.0628221333026886,0.982854843139648,0.682898283004761,-0.155377089977264,0.713798105716705,-0.205286920070648,-0.331945270299911,0.920689761638641,-0.0764050707221031,-0.417319446802139,0.905542194843292,-0.0503527484834194,-0.0637124851346016,0.996697187423706,-0.173348903656006,-0.0628221333026886,0.982854843139648,0.38191831111908,-0.534317016601563,0.754084825515747,0.585544049739838,-0.560901701450348,0.585258364677429,0.672795593738556,-0.0803807750344276,0.735448837280273,0.444481372833252,-0.0677722692489624,0.893220722675323,0.585544049739838,-0.560901701450348,0.585258364677429,0.768001198768616,-0.555274188518524,0.319131225347519,0.880849540233612,-0.10070113837719,0.462561696767807,0.672795593738556,-0.0803807750344276,0.735448837280273,0.361415475606918,-0.459209114313126,0.811483681201935,0.567689180374146,-0.54811817407608,0.614243924617767,0.620405852794647,-0.09043038636446,0.779050052165985,0.372290521860123,-0.066767729818821,0.925711572170258,0.567689180374146,-0.54811817407608,0.614243924617767,0.803296148777008,-0.540965020656586,0.249142676591873,0.913928806781769,-0.122308745980263,0.387007266283035,0.620405852794647,-0.09043038636446,0.779050052165985,0.279478907585144,-0.493038803339005,0.823895812034607,-0.0991577431559563,-0.400916516780853,0.910732448101044,-0.141841292381287,-0.088178738951683,0.985954105854034,0.27758714556694,-0.108460150659084,0.954558432102203,-0.0991577431559563,-0.400916516780853,0.910732448101044,0.191228091716766,-0.571527898311615,0.797989845275879, -0.232638046145439,-0.0962695926427841,0.967786967754364,-0.141841292381287,-0.088178738951683,0.985954105854034,0.608965456485748,-0.694889307022095,0.382478654384613,0.717230916023254,-0.68506932258606,0.12751404941082,0.966720521450043,-0.0154459932819009,0.255367934703827,0.819088101387024,-0.0351431109011173,0.572590351104736,0.717230916023254,-0.68506932258606,0.12751404941082,0.76520174741745,-0.598868787288666,-0.236267596483231,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.966720521450043,-0.0154459932819009,0.255367934703827,0.584151804447174,-0.762029647827148,0.279423326253891,0.0978060141205788,-0.621664941310883,0.777152895927429,0.153191760182381,-0.0941735506057739,0.983698964118958,0.709508717060089,-0.0912200659513474,0.698767721652985,0.0978060141205788,-0.621664941310883,0.777152895927429,0.362098813056946,-0.813945949077606,0.454286754131317,0.64495325088501,-0.0900793001055717,0.758894562721252,0.153191760182381,-0.0941735506057739,0.983698964118958,0.488683670759201,-0.870462596416473,0.0590182170271873,0.543534517288208,-0.839118838310242,0.0212124735116959,0.981911540031433,-0.0718926638364792,0.175160557031631,0.96843147277832,-0.0758867263793945,0.237448051571846,0.543534517288208,-0.839118838310242,0.0212124735116959,0.629507541656494,-0.751857101917267,-0.196038767695427,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.981911540031433,-0.0718926638364792,0.175160557031631,0.56140524148941,-0.760091602802277,0.327238112688065,0.122852981090546,-0.580223500728607,0.805138409137726,0.270148783922195,-0.0658984035253525,0.96056079864502,0.828090965747833,-0.0392764545977116,0.559216260910034,0.122852981090546,-0.580223500728607,0.805138409137726,0.290562391281128,-0.833357572555542,0.470200717449188,0.567517757415771,-0.105055831372738,0.816631495952606,0.270148783922195,-0.0658984035253525,0.96056079864502,0.366073846817017,-0.928832650184631,0.0570956841111183,0.392117619514465,-0.919745564460754,-0.017663087695837,0.970346391201019,-0.193304762244225,0.145124331116676, -0.928299844264984,-0.170819714665413,0.330272734165192,0.392117619514465,-0.919745564460754,-0.017663087695837,0.443840831518173,-0.869051337242126,-0.218529835343361,0.967428803443909,-0.190274477005005,-0.166964590549469,0.970346391201019,-0.193304762244225,0.145124331116676,0.365046739578247,-0.930285453796387,0.0361897274851799,0.249306723475456,-0.827130019664764,0.503688633441925,0.600978076457977,-0.261314034461975,0.755341231822968,0.926129341125488,-0.292127281427383,0.23863373696804,0.249306723475456,-0.827130019664764,0.503688633441925,0.453211486339569,-0.875407874584198,0.168108060956001,0.908502757549286,-0.245355442166328,0.338265061378479,0.600978076457977,-0.261314034461975,0.755341231822968,0.427078545093536,-0.896062970161438,-0.121140316128731,0.474964082241058,-0.876463294029236,-0.0788748115301132,0.981442987918854,-0.186396196484566,0.0450117699801922,0.980018794536591,-0.198278412222862,-0.0157665051519871,0.474964082241058,-0.876463294029236,-0.0788748115301132,0.536954879760742,-0.810872852802277,-0.232732996344566,0.979010879993439,-0.153616860508919,-0.133938953280449,0.981442987918854,-0.186396196484566,0.0450117699801922,0.4815514087677,-0.87572968006134,0.0347205102443695,0.415730476379395,-0.823940396308899,0.385085076093674,0.765810191631317,-0.183057054877281,0.616461575031281,0.94291889667511,-0.162472039461136,0.290700316429138,0.415730476379395,-0.823940396308899,0.385085076093674,0.490228146314621,-0.860631465911865,0.137803331017494,0.913950681686401,-0.210046574473381,0.347238570451736,0.765810191631317,-0.183057054877281,0.616461575031281,0.410441100597382,-0.911667168140411,-0.0200270190834999,0.482958912849426,-0.87268078327179,0.0719649940729141,0.975555777549744,-0.209971636533737,0.0648303180932999,0.96679949760437,-0.249450340867043,0.0554373450577259,0.482958912849426,-0.87268078327179,0.0719649940729141,0.580079257488251,-0.802277624607086,-0.140921175479889,0.943901240825653,-0.159197479486465,-0.289320975542068,0.975555777549744,-0.209971636533737,0.0648303180932999, --0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.979649782180786,0.010231826454401,-0.200453445315361,-0.99641489982605,0.0495933890342712,0.0685418769717216,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.982662558555603,0.0329523794353008,-0.182450905442238,-0.99641489982605,0.0495933890342712,0.0685418769717216,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.488972872495651,-0.0603184551000595,-0.870211005210876,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.390914648771286,-0.485996723175049,-0.781660377979279, --0.560848295688629,-0.0379329957067966,-0.827049136161804,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.528702199459076,0.02510073967278,-0.848436117172241,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.528702199459076,0.02510073967278,-0.848436117172241,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.0457770563662052,-0.794794380664825,-0.605149805545807,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,-0.0654709786176682,-0.833355844020844,-0.548845648765564,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.0654709786176682,-0.833355844020844,-0.548845648765564,-0.208506092429161,-0.746393322944641,-0.631998658180237,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.0457770563662052,-0.794794380664825,-0.605149805545807,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.821892201900482,-0.345836788415909,-0.452647894620895, --0.464080035686493,-0.874045550823212,-0.143784910440445,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.821892201900482,-0.345836788415909,-0.452647894620895,-0.438970118761063,-0.852742969989777,-0.283080875873566,-0.907367289066315,0.0639203116297722,-0.415450036525726,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.298206895589828,-0.854700148105621,-0.424923866987228,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.280902534723282,-0.819617211818695,-0.499320924282074,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.4206303358078,-0.889036595821381,-0.180787056684494,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.4206303358078,-0.889036595821381,-0.180787056684494,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.387854129076004,-0.902869999408722,-0.185458943247795,-0.993456184864044,-0.0716914087533951,-0.0889105051755905, --0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.31306254863739,-0.939959347248077,-0.135897815227509,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.314095944166183,-0.921738564968109,-0.227467820048332,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.990622639656067,0.0857216641306877,-0.106388725340366,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.896165788173676,-0.440985083580017,-0.049183439463377,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.896165788173676,-0.440985083580017,-0.049183439463377,2.66085771727376e-06,-0.990090310573578,-0.140432059764862,1.52039376644098e-08,-0.921437203884125,-0.388527274131775,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.138488098978996,-0.980667471885681,-0.138246849179268,1.52039376644098e-08,-0.921437203884125,-0.388527274131775, -3.14041017190902e-06,-0.772840142250061,-0.634600639343262,-0.108565412461758,-0.770942389965057,-0.627583682537079,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.108565412461758,-0.770942389965057,-0.627583682537079,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.138488098978996,-0.980667471885681,-0.138246849179268,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.0364131145179272,-0.603021621704102,-0.796893298625946,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.401204913854599,-0.014723970554769,-0.915869951248169,-0.441990077495575,-0.315394371747971,-0.839744746685028,-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.401204913854599,-0.014723970554769,-0.915869951248169,-0.401204913854599,-0.014723970554769,-0.915869951248169, --0.192269220948219,0.0178309604525566,-0.981180191040039,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.441990077495575,-0.315394371747971,-0.839744746685028,-0.401204913854599,-0.014723970554769,-0.915869951248169,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.416277587413788,-0.0313265770673752,-0.908697664737701,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.416277587413788,-0.0313265770673752,-0.908697664737701, --0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.99353951215744,-0.0590934678912163,-0.0968871414661407,-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.416277587413788,-0.0313265770673752,-0.908697664737701,-0.504982352256775,-0.84366911649704,0.182250425219536,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.412525236606598,-0.908749580383301,-0.0632219761610031,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.412525236606598,-0.908749580383301,-0.0632219761610031,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.350769490003586,-0.92918074131012,-0.116550117731094,-0.343549638986588,-0.879240989685059,-0.330013662576675,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.318461418151855,-0.806907653808594,-0.497476071119308,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.889022469520569,-0.0361417755484581,-0.456434816122055,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.889022469520569,-0.0361417755484581,-0.456434816122055, --0.985360980033875,-0.116535291075706,-0.124431379139423,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.318461418151855,-0.806907653808594,-0.497476071119308,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.889022469520569,-0.0361417755484581,-0.456434816122055,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.982662558555603,0.0329523794353008,-0.182450905442238,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.408082395792007,-0.901757717132568,-0.142484843730927,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.408082395792007,-0.901757717132568,-0.142484843730927,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.381489336490631,-0.919561326503754,-0.094196043908596,-0.994863569736481,0.0825993195176125,-0.0585142411291599,-0.990622639656067,0.0857216641306877,-0.106388725340366, --0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.442076206207275,-0.0473057590425014,-0.895729243755341,-0.514413774013519,-0.0855671167373657,-0.853262305259705,-0.488972872495651,-0.0603184551000595,-0.870211005210876,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.245702922344208,-0.800319671630859,-0.546917259693146,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.225158423185349,-0.775384128093719,-0.58998566865921,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.28141462802887,-0.71728241443634,-0.63742595911026, --0.213849946856499,-0.761492013931274,-0.611880898475647,-0.225158423185349,-0.775384128093719,-0.58998566865921,-0.28141462802887,-0.71728241443634,-0.63742595911026,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.208506092429161,-0.746393322944641,-0.631998658180237,-0.213849946856499,-0.761492013931274,-0.611880898475647,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.464114040136337,-0.191303879022598,-0.864870488643646,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.464114040136337,-0.191303879022598,-0.864870488643646,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,2.57396004599286e-06,-0.761352777481079,-0.648337841033936,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.105169393122196,-0.61860316991806,-0.778633117675781,2.57396004599286e-06,-0.761352777481079,-0.648337841033936,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,-0.0457770563662052,-0.794794380664825,-0.605149805545807,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.0457770563662052,-0.794794380664825,-0.605149805545807,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.105169393122196,-0.61860316991806,-0.778633117675781,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,-0.178244784474373,-0.249184742569923,-0.951911568641663,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-0.178244784474373,-0.249184742569923,-0.951911568641663, --0.256911754608154,-0.252870112657547,-0.932766318321228,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.396100550889969,-0.0960882529616356,-0.91316556930542,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.277942091226578,-0.700304388999939,-0.65751188993454,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.180045455694199,-0.541630566120148,-0.821108877658844,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.180045455694199,-0.541630566120148,-0.821108877658844,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.953178584575653,0.0196772385388613,-0.301767021417618,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.464732706546783,-0.814355134963989,-0.347633630037308, --0.308088064193726,-0.897331833839417,-0.316033720970154,-0.301055043935776,-0.904826879501343,-0.301088362932205,-0.464732706546783,-0.814355134963989,-0.347633630037308,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.310237467288971,-0.891564309597015,-0.329947859048843,-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.310237467288971,-0.891564309597015,-0.329947859048843,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.298206895589828,-0.854700148105621,-0.424923866987228,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.280902534723282,-0.819617211818695,-0.499320924282074,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.245702922344208,-0.800319671630859,-0.546917259693146,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.88413417339325,-0.0739206969738007,-0.461348652839661, --0.868790149688721,-0.212861493229866,-0.44709450006485,-0.825587332248688,0.0286079067736864,-0.563548803329468,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.982662558555603,0.0329523794353008,-0.182450905442238,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.387130469083786,-0.918020367622375,-0.0858408212661743,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.26970186829567,-0.962894201278687,-0.00978067889809608, --0.261481642723083,-0.95912629365921,-0.10818512737751,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.26970186829567,-0.962894201278687,-0.00978067889809608,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.461858808994293,-0.883243680000305,-0.081038162112236,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.461858808994293,-0.883243680000305,-0.081038162112236,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.31306254863739,-0.939959347248077,-0.135897815227509,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.314095944166183,-0.921738564968109,-0.227467820048332,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.301055043935776,-0.904826879501343,-0.301088362932205,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.833562433719635,-0.232993811368942,-0.500886976718903,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.789600312709808,-0.233621582388878,-0.567408561706543,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.942162156105042,-0.189164578914642,-0.276671946048737, --0.895905137062073,-0.252558320760727,-0.365470081567764,-0.945482194423676,-0.0409146323800087,-0.32309365272522,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.955233037471771,-0.211159124970436,-0.207223549485207,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.990622639656067,0.0857216641306877,-0.106388725340366,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.794555902481079,-0.603073060512543,-0.0705948919057846,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.834451138973236,-0.550636053085327,-0.0221660751849413, --0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.834451138973236,-0.550636053085327,-0.0221660751849413,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.873724460601807,-0.463758498430252,-0.146743357181549,-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.873724460601807,-0.463758498430252,-0.146743357181549,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.148259058594704,-0.447607427835464,-0.881854236125946,-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.287347048521042,-0.154420122504234,-0.945296883583069,-0.148259058594704,-0.447607427835464,-0.881854236125946,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.287347048521042,-0.154420122504234,-0.945296883583069, --0.121401578187943,-0.550944030284882,-0.825664818286896,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.408545464277267,-0.047090120613575,-0.911522448062897,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.377540469169617,-0.0881210491061211,-0.921790599822998,-0.408545464277267,-0.047090120613575,-0.911522448062897,-0.32930600643158,0.157053649425507,-0.931070148944855,-0.376513838768005,0.0252952426671982,-0.926065623760223,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,1.27130106193363e-05,0.13537959754467,-0.990793883800507,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.376513838768005,0.0252952426671982,-0.926065623760223,-0.32930600643158,0.157053649425507,-0.931070148944855,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.440281808376312,-0.061254620552063,-0.895767748355865,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.440281808376312,-0.061254620552063,-0.895767748355865,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.440281808376312,-0.061254620552063,-0.895767748355865, --0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.440281808376312,-0.061254620552063,-0.895767748355865,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.488972872495651,-0.0603184551000595,-0.870211005210876,-0.514413774013519,-0.0855671167373657,-0.853262305259705, --0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.514413774013519,-0.0855671167373657,-0.853262305259705,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.998237192630768,-0.0260469224303961,0.0533303394913673,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.998237192630768,-0.0260469224303961,0.0533303394913673,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.88413417339325,-0.0739206969738007,-0.461348652839661,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.998237192630768,-0.0260469224303961,0.0533303394913673, --0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.998237192630768,-0.0260469224303961,0.0533303394913673,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.805609703063965,-0.0878097712993622,-0.585903167724609,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.805609703063965,-0.0878097712993622,-0.585903167724609,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.775463104248047,-0.0451733730733395,-0.629774749279022,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.775463104248047,-0.0451733730733395,-0.629774749279022,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.99353951215744,-0.0590934678912163,-0.0968871414661407, --0.915162146091461,-0.0421942844986916,0.400871366262436,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.99353951215744,-0.0590934678912163,-0.0968871414661407,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.9540776014328,0.034807775169611,-0.297530263662338,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.9540776014328,0.034807775169611,-0.297530263662338,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.797227323055267,-0.0204821228981018,-0.603331625461578,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.797227323055267,-0.0204821228981018,-0.603331625461578,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.459797859191895,0.018549919128418,-0.887829899787903,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.789600312709808,-0.233621582388878,-0.567408561706543, --0.459797859191895,0.018549919128418,-0.887829899787903,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.942162156105042,-0.189164578914642,-0.276671946048737,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.955690503120422,0.116404086351395,-0.27038100361824,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.955690503120422,0.116404086351395,-0.27038100361824, --0.978031694889069,0.152403831481934,0.142221853137016,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.955690503120422,0.116404086351395,-0.27038100361824,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.955690503120422,0.116404086351395,-0.27038100361824,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.978031694889069,0.152403831481934,0.142221853137016,-0.96406227350235,0.111413389444351,0.241186484694481,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.96406227350235,0.111413389444351,0.241186484694481,-0.988257348537445,0.126139655709267,0.0862344056367874,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.989424645900726,0.13632769882679,-0.0495329834520817,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.989424645900726,0.13632769882679,-0.0495329834520817, --0.988257348537445,0.126139655709267,0.0862344056367874,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.979649782180786,0.010231826454401,-0.200453445315361,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-0.376513838768005,0.0252952426671982,-0.926065623760223,-0.49920243024826,-0.860129773616791,-0.10475566983223,-0.883460283279419,-0.406381100416183,-0.233135625720024, --0.827536165714264,-0.373897194862366,-0.418789654970169,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.883460283279419,-0.406381100416183,-0.233135625720024,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.390914648771286,-0.485996723175049,-0.781660377979279,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.488972872495651,-0.0603184551000595,-0.870211005210876, --0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.442076206207275,-0.0473057590425014,-0.895729243755341,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.530753314495087,-0.116750054061413,-0.839446425437927,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.530753314495087,-0.116750054061413,-0.839446425437927,-0.530753314495087,-0.116750054061413,-0.839446425437927,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.530753314495087,-0.116750054061413,-0.839446425437927, --0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.805609703063965,-0.0878097712993622,-0.585903167724609,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.805609703063965,-0.0878097712993622,-0.585903167724609, --0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.416277587413788,-0.0313265770673752,-0.908697664737701,-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.953178584575653,0.0196772385388613,-0.301767021417618,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.438970118761063,-0.852742969989777,-0.283080875873566,-0.821892201900482,-0.345836788415909,-0.452647894620895,-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.393761098384857,-0.804321646690369,-0.444992929697037,-0.821892201900482,-0.345836788415909,-0.452647894620895,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.797227323055267,-0.0204821228981018,-0.603331625461578, --0.716828227043152,-0.319538056850433,-0.619719803333282,-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.797227323055267,-0.0204821228981018,-0.603331625461578,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.393761098384857,-0.804321646690369,-0.444992929697037,-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.277942091226578,-0.700304388999939,-0.65751188993454,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.504982352256775,-0.84366911649704,0.182250425219536,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.350769490003586,-0.92918074131012,-0.116550117731094,-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.346632838249207,-0.923425912857056,-0.164713159203529, --0.907046139240265,-0.401282042264938,-0.127436384558678,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.346632838249207,-0.923425912857056,-0.164713159203529,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.343549638986588,-0.879240989685059,-0.330013662576675,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.889022469520569,-0.0361417755484581,-0.456434816122055,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.387854129076004,-0.902869999408722,-0.185458943247795, --0.885654628276825,-0.428707957267761,-0.178396418690681,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.430399775505066,-0.883213877677917,-0.186250641942024,-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.430399775505066,-0.883213877677917,-0.186250641942024,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.994863569736481,0.0825993195176125,-0.0585142411291599, --0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.381489336490631,-0.919561326503754,-0.094196043908596,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.424536168575287,-0.905021488666534,-0.0265562422573566,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.883460283279419,-0.406381100416183,-0.233135625720024,-0.424536168575287,-0.905021488666534,-0.0265562422573566,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.883460283279419,-0.406381100416183,-0.233135625720024,-0.49920243024826,-0.860129773616791,-0.10475566983223,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,0.00515420362353325,-0.894274532794952,-0.44748929142952,-0.0206318106502295,-0.992974400520325,-0.116516247391701,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,-0.148259058594704,-0.447607427835464,-0.881854236125946,0.00515420362353325,-0.894274532794952,-0.44748929142952,0.00515420362353325,-0.894274532794952,-0.44748929142952,-0.148259058594704,-0.447607427835464,-0.881854236125946,-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.0206318106502295,-0.992974400520325,-0.116516247391701,0.00515420362353325,-0.894274532794952,-0.44748929142952,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.0251823868602514,-0.993472933769226,-0.111252799630165,-0.0364131145179272,-0.603021621704102,-0.796893298625946, --0.089910089969635,-0.604069530963898,-0.791843414306641,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.0472629778087139,-0.991491556167603,-0.121288307011127,-0.0117815146222711,-0.987104535102844,-0.159642085433006,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.0117815146222711,-0.987104535102844,-0.159642085433006,-0.00177954800892621,-0.989035606384277,-0.147665843367577,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.189485311508179,-0.917847871780396,-0.348784238100052,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.189485311508179,-0.917847871780396,-0.348784238100052,0.0956828519701958,-0.989283084869385,-0.110289245843887,-0.0341612100601196,-0.997105717658997,-0.0679208040237427,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.0341612100601196,-0.997105717658997,-0.0679208040237427,-0.0472629778087139,-0.991491556167603,-0.121288307011127,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.441990077495575,-0.315394371747971,-0.839744746685028,-0.0529216341674328,-0.859144508838654,-0.508989214897156,-0.189485311508179,-0.917847871780396,-0.348784238100052,-0.441990077495575,-0.315394371747971,-0.839744746685028, --0.590206503868103,-0.137821972370148,-0.795400202274323,-0.298893600702286,-0.752048194408417,-0.587440311908722,-0.0529216341674328,-0.859144508838654,-0.508989214897156,-0.0529216341674328,-0.859144508838654,-0.508989214897156,-0.298893600702286,-0.752048194408417,-0.587440311908722,0.0678983926773071,-0.989783763885498,-0.12537083029747,0.313612312078476,-0.921463906764984,-0.229241237044334,-0.189485311508179,-0.917847871780396,-0.348784238100052,-0.0529216341674328,-0.859144508838654,-0.508989214897156,0.313612312078476,-0.921463906764984,-0.229241237044334,0.0956828519701958,-0.989283084869385,-0.110289245843887,-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.298893600702286,-0.752048194408417,-0.587440311908722,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.120713695883751,-0.988142728805542,-0.0948792919516563,-0.257713168859482,-0.965899109840393,0.0249539688229561,-0.298893600702286,-0.752048194408417,-0.587440311908722,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.257713168859482,-0.965899109840393,0.0249539688229561,0.0678983926773071,-0.989783763885498,-0.12537083029747,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.390914648771286,-0.485996723175049,-0.781660377979279,-0.227106317877769,-0.872373163700104,-0.432883024215698,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.227106317877769,-0.872373163700104,-0.432883024215698, --0.0461204461753368,-0.99501895904541,-0.0883763059973717,-0.0443134233355522,-0.98900705575943,-0.141071781516075,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.0443134233355522,-0.98900705575943,-0.141071781516075,-0.120713695883751,-0.988142728805542,-0.0948792919516563,-0.390914648771286,-0.485996723175049,-0.781660377979279,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.227106317877769,-0.872373163700104,-0.432883024215698,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.209105551242828,-0.908803045749664,-0.361042737960815,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.209105551242828,-0.908803045749664,-0.361042737960815,0.10156561434269,-0.984396278858185,-0.143695771694183,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,-0.227106317877769,-0.872373163700104,-0.432883024215698,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,-0.0461204461753368,-0.99501895904541,-0.0883763059973717,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.0971696898341179,-0.844954967498779,-0.525936543941498,-0.209105551242828,-0.908803045749664,-0.361042737960815,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.0971696898341179,-0.844954967498779,-0.525936543941498,-0.0971696898341179,-0.844954967498779,-0.525936543941498,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,0.201213121414185,-0.928679823875427,-0.311555653810501,-0.209105551242828,-0.908803045749664,-0.361042737960815,-0.0971696898341179,-0.844954967498779,-0.525936543941498, -0.201213121414185,-0.928679823875427,-0.311555653810501,0.10156561434269,-0.984396278858185,-0.143695771694183,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.0731480121612549,-0.991634011268616,0.106354869902134,-0.192202672362328,-0.938989758491516,0.285230129957199,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.192202672362328,-0.938989758491516,0.285230129957199,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.172992020845413,-0.950976848602295,-0.256352514028549,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.186638861894608,-0.949121177196503,-0.25364351272583,-0.172992020845413,-0.950976848602295,-0.256352514028549,-0.172992020845413,-0.950976848602295,-0.256352514028549,-0.186638861894608,-0.949121177196503,-0.25364351272583,0.0171226337552071,-0.995451927185059,-0.0937139689922333,0.0126966061070561,-0.99875146150589,-0.04831488057971,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.172992020845413,-0.950976848602295,-0.256352514028549,0.0126966061070561,-0.99875146150589,-0.04831488057971,-0.0731480121612549,-0.991634011268616,0.106354869902134,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.210337847471237,-0.944559037685394,-0.252123653888702, --0.186638861894608,-0.949121177196503,-0.25364351272583,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.181695714592934,-0.908867359161377,-0.375428885221481,-0.210337847471237,-0.944559037685394,-0.252123653888702,-0.210337847471237,-0.944559037685394,-0.252123653888702,-0.181695714592934,-0.908867359161377,-0.375428885221481,0.0493056923151016,-0.954008221626282,-0.29569810628891,0.013718081638217,-0.990747809410095,-0.135020092129707,-0.186638861894608,-0.949121177196503,-0.25364351272583,-0.210337847471237,-0.944559037685394,-0.252123653888702,0.013718081638217,-0.990747809410095,-0.135020092129707,0.0171226337552071,-0.995451927185059,-0.0937139689922333,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.116785109043121,-0.819804668426514,-0.560608148574829,-0.181695714592934,-0.908867359161377,-0.375428885221481,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.149566903710365,-0.955002725124359,-0.256123691797256,-0.116785109043121,-0.819804668426514,-0.560608148574829,-0.116785109043121,-0.819804668426514,-0.560608148574829,-0.149566903710365,-0.955002725124359,-0.256123691797256,0.0403354056179523,-0.951967716217041,-0.303530186414719,0.0837500244379044,-0.852430880069733,-0.516088664531708,-0.181695714592934,-0.908867359161377,-0.375428885221481,-0.116785109043121,-0.819804668426514,-0.560608148574829,0.0837500244379044,-0.852430880069733,-0.516088664531708,0.0493056923151016,-0.954008221626282,-0.29569810628891,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.126076266169548,-0.979454338550568,0.157397165894508,-0.149566903710365,-0.955002725124359,-0.256123691797256,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.126076266169548,-0.979454338550568,0.157397165894508, --0.126076266169548,-0.979454338550568,0.157397165894508,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.0275773424655199,-0.99890410900116,0.037816233932972,-0.0362910628318787,-0.993932664394379,0.10383029282093,-0.149566903710365,-0.955002725124359,-0.256123691797256,-0.126076266169548,-0.979454338550568,0.157397165894508,-0.0362910628318787,-0.993932664394379,0.10383029282093,0.0403354056179523,-0.951967716217041,-0.303530186414719,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.438970118761063,-0.852742969989777,-0.283080875873566,5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,0.0247502587735653,-0.998201429843903,-0.0546016432344913,0.00369529845193028,-0.999618351459503,-0.027375839650631,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,0.00369529845193028,-0.999618351459503,-0.027375839650631,-0.0275773424655199,-0.99890410900116,0.037816233932972,-0.438970118761063,-0.852742969989777,-0.283080875873566,-0.393761098384857,-0.804321646690369,-0.444992929697037,0.0203423574566841,-0.988523900508881,-0.149688541889191,5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,-0.393761098384857,-0.804321646690369,-0.444992929697037,-0.277942091226578,-0.700304388999939,-0.65751188993454,0.0643943026661873,-0.942418813705444,-0.328177064657211,0.0203423574566841,-0.988523900508881,-0.149688541889191,0.0203423574566841,-0.988523900508881,-0.149688541889191,0.0643943026661873,-0.942418813705444,-0.328177064657211,0.0751078873872757,-0.957080245018005,-0.279922008514404,0.0403689481317997,-0.992588937282562,-0.114618979394436, -5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,0.0203423574566841,-0.988523900508881,-0.149688541889191,0.0403689481317997,-0.992588937282562,-0.114618979394436,0.0247502587735653,-0.998201429843903,-0.0546016432344913,-0.277942091226578,-0.700304388999939,-0.65751188993454,-0.180045455694199,-0.541630566120148,-0.821108877658844,0.0873342081904411,-0.858424842357635,-0.505449652671814,0.0643943026661873,-0.942418813705444,-0.328177064657211,-0.180045455694199,-0.541630566120148,-0.821108877658844,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,0.0873342081904411,-0.858424842357635,-0.505449652671814,0.0873342081904411,-0.858424842357635,-0.505449652671814,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,0.0124122742563486,-0.997229933738708,-0.073337621986866,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0643943026661873,-0.942418813705444,-0.328177064657211,0.0873342081904411,-0.858424842357635,-0.505449652671814,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0751078873872757,-0.957080245018005,-0.279922008514404,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.101934850215912,-0.90874171257019,0.40471950173378,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.504982352256775,-0.84366911649704,0.182250425219536,0.00453799264505506,-0.995851039886475,0.0908845514059067,-0.101934850215912,-0.90874171257019,0.40471950173378,-0.101934850215912,-0.90874171257019,0.40471950173378,0.00453799264505506,-0.995851039886475,0.0908845514059067,-0.022691760212183,-0.998997628688812,0.0385861210525036,-0.0814460813999176,-0.926622152328491,0.367066740989685,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,-0.101934850215912,-0.90874171257019,0.40471950173378,-0.0814460813999176,-0.926622152328491,0.367066740989685,0.0124122742563486,-0.997229933738708,-0.073337621986866,-0.504982352256775,-0.84366911649704,0.182250425219536, --0.412525236606598,-0.908749580383301,-0.0632219761610031,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.00453799264505506,-0.995851039886475,0.0908845514059067,-0.412525236606598,-0.908749580383301,-0.0632219761610031,-0.350769490003586,-0.92918074131012,-0.116550117731094,0.0910874903202057,-0.99446564912796,-0.05235755443573,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.0910874903202057,-0.99446564912796,-0.05235755443573,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,0.00760405976325274,-0.9929518699646,-0.118274159729481,0.00453799264505506,-0.995851039886475,0.0908845514059067,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.00760405976325274,-0.9929518699646,-0.118274159729481,-0.022691760212183,-0.998997628688812,0.0385861210525036,-0.350769490003586,-0.92918074131012,-0.116550117731094,-0.346632838249207,-0.923425912857056,-0.164713159203529,0.06392852216959,-0.996860384941101,-0.0467163622379303,0.0910874903202057,-0.99446564912796,-0.05235755443573,-0.346632838249207,-0.923425912857056,-0.164713159203529,-0.343549638986588,-0.879240989685059,-0.330013662576675,0.0379289388656616,-0.984504699707031,-0.171207651495934,0.06392852216959,-0.996860384941101,-0.0467163622379303,0.06392852216959,-0.996860384941101,-0.0467163622379303,0.0379289388656616,-0.984504699707031,-0.171207651495934,0.00755613064393401,-0.988936245441437,-0.148148745298386,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,0.0910874903202057,-0.99446564912796,-0.05235755443573,0.06392852216959,-0.996860384941101,-0.0467163622379303,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,-0.343549638986588,-0.879240989685059,-0.330013662576675,-0.318461418151855,-0.806907653808594,-0.497476071119308,0.0182535592466593,-0.940808176994324,-0.338447719812393,0.0379289388656616,-0.984504699707031,-0.171207651495934,-0.318461418151855,-0.806907653808594,-0.497476071119308, --0.43657448887825,-0.888075530529022,-0.143959730863571,-0.101609289646149,-0.992553949356079,-0.0671730488538742,0.0182535592466593,-0.940808176994324,-0.338447719812393,0.0182535592466593,-0.940808176994324,-0.338447719812393,-0.101609289646149,-0.992553949356079,-0.0671730488538742,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,0.043247077614069,-0.950159430503845,-0.308750540018082,0.0379289388656616,-0.984504699707031,-0.171207651495934,0.0182535592466593,-0.940808176994324,-0.338447719812393,0.043247077614069,-0.950159430503845,-0.308750540018082,0.00755613064393401,-0.988936245441437,-0.148148745298386,-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.101609289646149,-0.992553949356079,-0.0671730488538742,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,-0.03765569627285,-0.998001635074615,-0.050741158425808,-0.114700071513653,-0.969065606594086,0.218530863523483,-0.101609289646149,-0.992553949356079,-0.0671730488538742,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.114700071513653,-0.969065606594086,0.218530863523483,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.4206303358078,-0.889036595821381,-0.180787056684494,0.0281068701297045,-0.979772806167603,-0.198129341006279,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,-0.4206303358078,-0.889036595821381,-0.180787056684494,-0.387854129076004,-0.902869999408722,-0.185458943247795,0.056607574224472,-0.988347232341766,-0.141298979520798,0.0281068701297045,-0.979772806167603,-0.198129341006279,0.0281068701297045,-0.979772806167603,-0.198129341006279,0.056607574224472,-0.988347232341766,-0.141298979520798, -0.00206747278571129,-0.989448189735413,-0.144872218370438,0.0098766265437007,-0.975041091442108,-0.221804812550545,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,0.0281068701297045,-0.979772806167603,-0.198129341006279,0.0098766265437007,-0.975041091442108,-0.221804812550545,-0.03765569627285,-0.998001635074615,-0.050741158425808,-0.387854129076004,-0.902869999408722,-0.185458943247795,-0.430399775505066,-0.883213877677917,-0.186250641942024,0.0085861636325717,-0.994784593582153,-0.101636379957199,0.056607574224472,-0.988347232341766,-0.141298979520798,-0.430399775505066,-0.883213877677917,-0.186250641942024,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.04545983299613,-0.968846440315247,-0.243454530835152,0.0085861636325717,-0.994784593582153,-0.101636379957199,0.0085861636325717,-0.994784593582153,-0.101636379957199,-0.04545983299613,-0.968846440315247,-0.243454530835152,0.00559763703495264,-0.97633022069931,-0.216213032603264,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.056607574224472,-0.988347232341766,-0.141298979520798,0.0085861636325717,-0.994784593582153,-0.101636379957199,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.00206747278571129,-0.989448189735413,-0.144872218370438,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.0639651566743851,-0.914348006248474,-0.39984542131424,-0.04545983299613,-0.968846440315247,-0.243454530835152,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.0639651566743851,-0.914348006248474,-0.39984542131424,-0.0639651566743851,-0.914348006248474,-0.39984542131424,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.00105106621049345,-0.990453124046326,-0.137845665216446,0.029085224494338,-0.923116743564606,-0.38341823220253,-0.04545983299613,-0.968846440315247,-0.243454530835152,-0.0639651566743851,-0.914348006248474,-0.39984542131424, -0.029085224494338,-0.923116743564606,-0.38341823220253,0.00559763703495264,-0.97633022069931,-0.216213032603264,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,-0.00837635528296232,-0.998803436756134,-0.0481827110052109,-0.0300086587667465,-0.991880595684052,0.123581223189831,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.0300086587667465,-0.991880595684052,0.123581223189831,-0.00105106621049345,-0.990453124046326,-0.137845665216446,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.408082395792007,-0.901757717132568,-0.142484843730927,0.0172660276293755,-0.990056991577148,-0.13960288465023,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,-0.408082395792007,-0.901757717132568,-0.142484843730927,-0.381489336490631,-0.919561326503754,-0.094196043908596,0.0526049174368382,-0.997182309627533,-0.0534800104796886,0.0172660276293755,-0.990056991577148,-0.13960288465023,0.0172660276293755,-0.990056991577148,-0.13960288465023,0.0526049174368382,-0.997182309627533,-0.0534800104796886,0.00336632318794727,-0.998307526111603,-0.0580575168132782,0.00344573124311864,-0.986906349658966,-0.161257728934288,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,0.0172660276293755,-0.990056991577148,-0.13960288465023,0.00344573124311864,-0.986906349658966,-0.161257728934288,-0.00837635528296232,-0.998803436756134,-0.0481827110052109,-0.381489336490631,-0.919561326503754,-0.094196043908596,-0.424536168575287,-0.905021488666534,-0.0265562422573566, -0.0121517311781645,-0.997969150543213,0.0625293329358101,0.0526049174368382,-0.997182309627533,-0.0534800104796886,-0.424536168575287,-0.905021488666534,-0.0265562422573566,-0.49920243024826,-0.860129773616791,-0.10475566983223,-0.0600221194326878,-0.996929943561554,0.0502794049680233,0.0121517311781645,-0.997969150543213,0.0625293329358101,0.0121517311781645,-0.997969150543213,0.0625293329358101,-0.0600221194326878,-0.996929943561554,0.0502794049680233,-0.00253212242387235,-0.995971739292145,0.0896312743425369,-0.00500164367258549,-0.99667751789093,0.081295445561409,0.0526049174368382,-0.997182309627533,-0.0534800104796886,0.0121517311781645,-0.997969150543213,0.0625293329358101,-0.00500164367258549,-0.99667751789093,0.081295445561409,0.00336632318794727,-0.998307526111603,-0.0580575168132782,-0.49920243024826,-0.860129773616791,-0.10475566983223,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.121643021702766,-0.988742113113403,-0.0871318876743317,-0.0600221194326878,-0.996929943561554,0.0502794049680233,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.129560530185699,-0.932362616062164,-0.337511450052261,-0.121643021702766,-0.988742113113403,-0.0871318876743317,-0.121643021702766,-0.988742113113403,-0.0871318876743317,-0.129560530185699,-0.932362616062164,-0.337511450052261,0.0501549690961838,-0.943022549152374,-0.328926771879196,0.00550123490393162,-0.999096095561981,-0.0421488173305988,-0.0600221194326878,-0.996929943561554,0.0502794049680233,-0.121643021702766,-0.988742113113403,-0.0871318876743317,0.00550123490393162,-0.999096095561981,-0.0421488173305988,-0.00253212242387235,-0.995971739292145,0.0896312743425369,-0.00177954800892621,-0.989035606384277,-0.147665843367577,0.0480367057025433,-0.932973802089691,0.356724232435226,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.0251823868602514,-0.993472933769226,-0.111252799630165,0.0480367057025433,-0.932973802089691,0.356724232435226,0.140509262681007,-0.389529824256897,0.910232782363892, --0.230811730027199,-0.364695429801941,0.902066111564636,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.230811730027199,-0.364695429801941,0.902066111564636,-0.529483556747437,-0.324605464935303,0.783759117126465,-0.251147210597992,-0.919208228588104,0.303284019231796,-0.0206318106502295,-0.992974400520325,-0.116516247391701,-0.0251823868602514,-0.993472933769226,-0.111252799630165,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.251147210597992,-0.919208228588104,0.303284019231796,0.361415475606918,-0.459209114313126,0.811483681201935,0.235168889164925,-0.38590133190155,0.892062604427338,0.0988612100481987,-0.915841400623322,0.389179885387421,0.153119534254074,-0.912576973438263,0.379153817892075,0.235168889164925,-0.38590133190155,0.892062604427338,0.140509262681007,-0.389529824256897,0.910232782363892,0.0480367057025433,-0.932973802089691,0.356724232435226,0.0988612100481987,-0.915841400623322,0.389179885387421,0.0988612100481987,-0.915841400623322,0.389179885387421,0.0480367057025433,-0.932973802089691,0.356724232435226,-0.00177954800892621,-0.989035606384277,-0.147665843367577,-0.0117815146222711,-0.987104535102844,-0.159642085433006,0.153119534254074,-0.912576973438263,0.379153817892075,0.0988612100481987,-0.915841400623322,0.389179885387421,-0.0117815146222711,-0.987104535102844,-0.159642085433006,-0.0472629778087139,-0.991491556167603,-0.121288307011127,0.803296148777008,-0.540965020656586,0.249142676591873,0.567689180374146,-0.54811817407608,0.614243924617767,0.250216901302338,-0.936324298381805,0.246350184082985,0.433293581008911,-0.899201214313507,0.0607756488025188,0.567689180374146,-0.54811817407608,0.614243924617767,0.361415475606918,-0.459209114313126,0.811483681201935,0.153119534254074,-0.912576973438263,0.379153817892075,0.250216901302338,-0.936324298381805,0.246350184082985,0.250216901302338,-0.936324298381805,0.246350184082985,0.153119534254074,-0.912576973438263,0.379153817892075,-0.0472629778087139,-0.991491556167603,-0.121288307011127, --0.0341612100601196,-0.997105717658997,-0.0679208040237427,0.433293581008911,-0.899201214313507,0.0607756488025188,0.250216901302338,-0.936324298381805,0.246350184082985,-0.0341612100601196,-0.997105717658997,-0.0679208040237427,0.0956828519701958,-0.989283084869385,-0.110289245843887,0.611539423465729,-0.490914881229401,0.620501518249512,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.646414279937744,-0.755486845970154,-0.106715373694897,0.353388547897339,-0.89521998167038,0.271472990512848,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.803296148777008,-0.540965020656586,0.249142676591873,0.433293581008911,-0.899201214313507,0.0607756488025188,0.646414279937744,-0.755486845970154,-0.106715373694897,0.646414279937744,-0.755486845970154,-0.106715373694897,0.433293581008911,-0.899201214313507,0.0607756488025188,0.0956828519701958,-0.989283084869385,-0.110289245843887,0.313612312078476,-0.921463906764984,-0.229241237044334,0.353388547897339,-0.89521998167038,0.271472990512848,0.646414279937744,-0.755486845970154,-0.106715373694897,0.313612312078476,-0.921463906764984,-0.229241237044334,0.0678983926773071,-0.989783763885498,-0.12537083029747,-0.0764050707221031,-0.417319446802139,0.905542194843292,-0.205286920070648,-0.331945270299911,0.920689761638641,-0.233915567398071,-0.770644068717957,0.592782616615295,-0.104496218264103,-0.86746084690094,0.486407518386841,-0.205286920070648,-0.331945270299911,0.920689761638641,0.611539423465729,-0.490914881229401,0.620501518249512,0.353388547897339,-0.89521998167038,0.271472990512848,-0.233915567398071,-0.770644068717957,0.592782616615295,-0.233915567398071,-0.770644068717957,0.592782616615295,0.353388547897339,-0.89521998167038,0.271472990512848,0.0678983926773071,-0.989783763885498,-0.12537083029747,-0.257713168859482,-0.965899109840393,0.0249539688229561,-0.104496218264103,-0.86746084690094,0.486407518386841,-0.233915567398071,-0.770644068717957,0.592782616615295,-0.257713168859482,-0.965899109840393,0.0249539688229561,-0.120713695883751,-0.988142728805542,-0.0948792919516563, -0.38191831111908,-0.534317016601563,0.754084825515747,0.152453944087029,-0.490097939968109,0.858231723308563,0.0531765222549438,-0.920053005218506,0.388168483972549,0.166441887617111,-0.929746627807617,0.328433185815811,0.152453944087029,-0.490097939968109,0.858231723308563,-0.0764050707221031,-0.417319446802139,0.905542194843292,-0.104496218264103,-0.86746084690094,0.486407518386841,0.0531765222549438,-0.920053005218506,0.388168483972549,0.0531765222549438,-0.920053005218506,0.388168483972549,-0.104496218264103,-0.86746084690094,0.486407518386841,-0.120713695883751,-0.988142728805542,-0.0948792919516563,-0.0443134233355522,-0.98900705575943,-0.141071781516075,0.166441887617111,-0.929746627807617,0.328433185815811,0.0531765222549438,-0.920053005218506,0.388168483972549,-0.0443134233355522,-0.98900705575943,-0.141071781516075,-0.0461204461753368,-0.99501895904541,-0.0883763059973717,0.768001198768616,-0.555274188518524,0.319131225347519,0.585544049739838,-0.560901701450348,0.585258364677429,0.282444894313812,-0.927330076694489,0.245527401566505,0.429459065198898,-0.899992346763611,0.0746902525424957,0.585544049739838,-0.560901701450348,0.585258364677429,0.38191831111908,-0.534317016601563,0.754084825515747,0.166441887617111,-0.929746627807617,0.328433185815811,0.282444894313812,-0.927330076694489,0.245527401566505,0.282444894313812,-0.927330076694489,0.245527401566505,0.166441887617111,-0.929746627807617,0.328433185815811,-0.0461204461753368,-0.99501895904541,-0.0883763059973717,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,0.429459065198898,-0.899992346763611,0.0746902525424957,0.282444894313812,-0.927330076694489,0.245527401566505,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,0.10156561434269,-0.984396278858185,-0.143695771694183,0.279478907585144,-0.493038803339005,0.823895812034607,0.845774412155151,-0.527329385280609,0.0811747014522552,0.503634393215179,-0.85379034280777,-0.131887912750244,0.157121270895004,-0.91596657037735,0.369212865829468,0.845774412155151,-0.527329385280609,0.0811747014522552, -0.768001198768616,-0.555274188518524,0.319131225347519,0.429459065198898,-0.899992346763611,0.0746902525424957,0.503634393215179,-0.85379034280777,-0.131887912750244,0.503634393215179,-0.85379034280777,-0.131887912750244,0.429459065198898,-0.899992346763611,0.0746902525424957,0.10156561434269,-0.984396278858185,-0.143695771694183,0.201213121414185,-0.928679823875427,-0.311555653810501,0.157121270895004,-0.91596657037735,0.369212865829468,0.503634393215179,-0.85379034280777,-0.131887912750244,0.201213121414185,-0.928679823875427,-0.311555653810501,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,0.191228091716766,-0.571527898311615,0.797989845275879,-0.0991577431559563,-0.400916516780853,0.910732448101044,-0.12495057284832,-0.753560721874237,0.645394086837769,0.0609545223414898,-0.898445427417755,0.434833765029907,-0.0991577431559563,-0.400916516780853,0.910732448101044,0.279478907585144,-0.493038803339005,0.823895812034607,0.157121270895004,-0.91596657037735,0.369212865829468,-0.12495057284832,-0.753560721874237,0.645394086837769,-0.12495057284832,-0.753560721874237,0.645394086837769,0.157121270895004,-0.91596657037735,0.369212865829468,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,-0.192202672362328,-0.938989758491516,0.285230129957199,0.0609545223414898,-0.898445427417755,0.434833765029907,-0.12495057284832,-0.753560721874237,0.645394086837769,-0.192202672362328,-0.938989758491516,0.285230129957199,-0.0731480121612549,-0.991634011268616,0.106354869902134,0.608965456485748,-0.694889307022095,0.382478654384613,0.462093532085419,-0.664122939109802,0.587716281414032,0.207492798566818,-0.953606426715851,0.218131944537163,0.251741111278534,-0.962956309318542,0.0966519936919212,0.462093532085419,-0.664122939109802,0.587716281414032,0.191228091716766,-0.571527898311615,0.797989845275879,0.0609545223414898,-0.898445427417755,0.434833765029907,0.207492798566818,-0.953606426715851,0.218131944537163,0.207492798566818,-0.953606426715851,0.218131944537163,0.0609545223414898,-0.898445427417755,0.434833765029907, --0.0731480121612549,-0.991634011268616,0.106354869902134,0.0126966061070561,-0.99875146150589,-0.04831488057971,0.251741111278534,-0.962956309318542,0.0966519936919212,0.207492798566818,-0.953606426715851,0.218131944537163,0.0126966061070561,-0.99875146150589,-0.04831488057971,0.0171226337552071,-0.995451927185059,-0.0937139689922333,0.76520174741745,-0.598868787288666,-0.236267596483231,0.717230916023254,-0.68506932258606,0.12751404941082,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.337446063756943,-0.904584109783173,-0.260495007038116,0.717230916023254,-0.68506932258606,0.12751404941082,0.608965456485748,-0.694889307022095,0.382478654384613,0.251741111278534,-0.962956309318542,0.0966519936919212,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.251741111278534,-0.962956309318542,0.0966519936919212,0.0171226337552071,-0.995451927185059,-0.0937139689922333,0.013718081638217,-0.990747809410095,-0.135020092129707,0.337446063756943,-0.904584109783173,-0.260495007038116,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.013718081638217,-0.990747809410095,-0.135020092129707,0.0493056923151016,-0.954008221626282,-0.29569810628891,0.584151804447174,-0.762029647827148,0.279423326253891,0.704367220401764,-0.478252232074738,-0.524539589881897,0.328925937414169,-0.795323073863983,-0.509184598922729,0.160632506012917,-0.950319290161133,-0.26662802696228,0.704367220401764,-0.478252232074738,-0.524539589881897,0.76520174741745,-0.598868787288666,-0.236267596483231,0.337446063756943,-0.904584109783173,-0.260495007038116,0.328925937414169,-0.795323073863983,-0.509184598922729,0.328925937414169,-0.795323073863983,-0.509184598922729,0.337446063756943,-0.904584109783173,-0.260495007038116,0.0493056923151016,-0.954008221626282,-0.29569810628891,0.0837500244379044,-0.852430880069733,-0.516088664531708,0.160632506012917,-0.950319290161133,-0.26662802696228,0.328925937414169,-0.795323073863983,-0.509184598922729,0.0837500244379044,-0.852430880069733,-0.516088664531708, -0.0403354056179523,-0.951967716217041,-0.303530186414719,0.362098813056946,-0.813945949077606,0.454286754131317,0.0978060141205788,-0.621664941310883,0.777152895927429,-0.0469919368624687,-0.964127540588379,0.261246681213379,-0.00799380801618099,-0.995872557163239,0.0904088094830513,0.0978060141205788,-0.621664941310883,0.777152895927429,0.584151804447174,-0.762029647827148,0.279423326253891,0.160632506012917,-0.950319290161133,-0.26662802696228,-0.0469919368624687,-0.964127540588379,0.261246681213379,-0.0469919368624687,-0.964127540588379,0.261246681213379,0.160632506012917,-0.950319290161133,-0.26662802696228,0.0403354056179523,-0.951967716217041,-0.303530186414719,-0.0362910628318787,-0.993932664394379,0.10383029282093,-0.00799380801618099,-0.995872557163239,0.0904088094830513,-0.0469919368624687,-0.964127540588379,0.261246681213379,-0.0362910628318787,-0.993932664394379,0.10383029282093,-0.0275773424655199,-0.99890410900116,0.037816233932972,0.488683670759201,-0.870462596416473,0.0590182170271873,0.487723380327225,-0.863978922367096,0.125165298581123,0.0210179127752781,-0.999302804470062,-0.0308566223829985,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.487723380327225,-0.863978922367096,0.125165298581123,0.362098813056946,-0.813945949077606,0.454286754131317,-0.00799380801618099,-0.995872557163239,0.0904088094830513,0.0210179127752781,-0.999302804470062,-0.0308566223829985,0.0210179127752781,-0.999302804470062,-0.0308566223829985,-0.00799380801618099,-0.995872557163239,0.0904088094830513,-0.0275773424655199,-0.99890410900116,0.037816233932972,0.00369529845193028,-0.999618351459503,-0.027375839650631,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.0210179127752781,-0.999302804470062,-0.0308566223829985,0.00369529845193028,-0.999618351459503,-0.027375839650631,0.0247502587735653,-0.998201429843903,-0.0546016432344913,0.629507541656494,-0.751857101917267,-0.196038767695427,0.543534517288208,-0.839118838310242,0.0212124735116959,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.112473338842392,-0.952884256839752,-0.281711399555206, -0.543534517288208,-0.839118838310242,0.0212124735116959,0.488683670759201,-0.870462596416473,0.0590182170271873,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.0247502587735653,-0.998201429843903,-0.0546016432344913,0.0403689481317997,-0.992588937282562,-0.114618979394436,0.112473338842392,-0.952884256839752,-0.281711399555206,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.0403689481317997,-0.992588937282562,-0.114618979394436,0.0751078873872757,-0.957080245018005,-0.279922008514404,0.56140524148941,-0.760091602802277,0.327238112688065,0.649816811084747,-0.640547335147858,-0.409190863370895,0.153028205037117,-0.888061106204987,-0.43350875377655,0.0570840537548065,-0.997692048549652,-0.0367689579725266,0.649816811084747,-0.640547335147858,-0.409190863370895,0.629507541656494,-0.751857101917267,-0.196038767695427,0.112473338842392,-0.952884256839752,-0.281711399555206,0.153028205037117,-0.888061106204987,-0.43350875377655,0.153028205037117,-0.888061106204987,-0.43350875377655,0.112473338842392,-0.952884256839752,-0.281711399555206,0.0751078873872757,-0.957080245018005,-0.279922008514404,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0570840537548065,-0.997692048549652,-0.0367689579725266,0.153028205037117,-0.888061106204987,-0.43350875377655,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0124122742563486,-0.997229933738708,-0.073337621986866,0.290562391281128,-0.833357572555542,0.470200717449188,0.122852981090546,-0.580223500728607,0.805138409137726,-0.108503296971321,-0.891186833381653,0.440468996763229,-0.0732996761798859,-0.99484783411026,0.070036493241787,0.122852981090546,-0.580223500728607,0.805138409137726,0.56140524148941,-0.760091602802277,0.327238112688065,0.0570840537548065,-0.997692048549652,-0.0367689579725266,-0.108503296971321,-0.891186833381653,0.440468996763229,-0.108503296971321,-0.891186833381653,0.440468996763229, -0.0570840537548065,-0.997692048549652,-0.0367689579725266,0.0124122742563486,-0.997229933738708,-0.073337621986866,-0.0814460813999176,-0.926622152328491,0.367066740989685,-0.0732996761798859,-0.99484783411026,0.070036493241787,-0.108503296971321,-0.891186833381653,0.440468996763229,-0.0814460813999176,-0.926622152328491,0.367066740989685,-0.022691760212183,-0.998997628688812,0.0385861210525036,0.366073846817017,-0.928832650184631,0.0570956841111183,0.370780885219574,-0.91262024641037,0.172179386019707,-0.0668077543377876,-0.991173028945923,-0.114511594176292,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,0.370780885219574,-0.91262024641037,0.172179386019707,0.290562391281128,-0.833357572555542,0.470200717449188,-0.0732996761798859,-0.99484783411026,0.070036493241787,-0.0668077543377876,-0.991173028945923,-0.114511594176292,-0.0668077543377876,-0.991173028945923,-0.114511594176292,-0.0732996761798859,-0.99484783411026,0.070036493241787,-0.022691760212183,-0.998997628688812,0.0385861210525036,0.00760405976325274,-0.9929518699646,-0.118274159729481,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,-0.0668077543377876,-0.991173028945923,-0.114511594176292,0.00760405976325274,-0.9929518699646,-0.118274159729481,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,0.443840831518173,-0.869051337242126,-0.218529835343361,0.392117619514465,-0.919745564460754,-0.017663087695837,-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.00928663089871407,-0.983943402767181,-0.178238809108734,0.392117619514465,-0.919745564460754,-0.017663087695837,0.366073846817017,-0.928832650184631,0.0570956841111183,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,-0.00928663089871407,-0.983943402767181,-0.178238809108734, --0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,0.00755613064393401,-0.988936245441437,-0.148148745298386,0.365046739578247,-0.930285453796387,0.0361897274851799,0.430982202291489,-0.753182888031006,-0.496960610151291,0.0604671835899353,-0.931171476840973,-0.359532058238983,0.00737170409411192,-0.999630510807037,-0.0261652525514364,0.430982202291489,-0.753182888031006,-0.496960610151291,0.443840831518173,-0.869051337242126,-0.218529835343361,-0.00928663089871407,-0.983943402767181,-0.178238809108734,0.0604671835899353,-0.931171476840973,-0.359532058238983,0.0604671835899353,-0.931171476840973,-0.359532058238983,-0.00928663089871407,-0.983943402767181,-0.178238809108734,0.00755613064393401,-0.988936245441437,-0.148148745298386,0.043247077614069,-0.950159430503845,-0.308750540018082,0.00737170409411192,-0.999630510807037,-0.0261652525514364,0.0604671835899353,-0.931171476840973,-0.359532058238983,0.043247077614069,-0.950159430503845,-0.308750540018082,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,0.453211486339569,-0.875407874584198,0.168108060956001,0.249306723475456,-0.827130019664764,0.503688633441925,-0.0435243733227253,-0.962684154510498,0.267104417085648,0.0206603202968836,-0.99978643655777,-0.000510659127030522,0.249306723475456,-0.827130019664764,0.503688633441925,0.365046739578247,-0.930285453796387,0.0361897274851799,0.00737170409411192,-0.999630510807037,-0.0261652525514364,-0.0435243733227253,-0.962684154510498,0.267104417085648,-0.0435243733227253,-0.962684154510498,0.267104417085648,0.00737170409411192,-0.999630510807037,-0.0261652525514364,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,-0.114700071513653,-0.969065606594086,0.218530863523483,0.0206603202968836,-0.99978643655777,-0.000510659127030522,-0.0435243733227253,-0.962684154510498,0.267104417085648,-0.114700071513653,-0.969065606594086,0.218530863523483,-0.03765569627285,-0.998001635074615,-0.050741158425808,0.427078545093536,-0.896062970161438,-0.121140316128731, -0.468710780143738,-0.873691916465759,-0.130278989672661,-0.000536129053216428,-0.980934262275696,-0.194338858127594,-0.049983486533165,-0.987056851387024,-0.152382746338844,0.468710780143738,-0.873691916465759,-0.130278989672661,0.453211486339569,-0.875407874584198,0.168108060956001,0.0206603202968836,-0.99978643655777,-0.000510659127030522,-0.000536129053216428,-0.980934262275696,-0.194338858127594,-0.000536129053216428,-0.980934262275696,-0.194338858127594,0.0206603202968836,-0.99978643655777,-0.000510659127030522,-0.03765569627285,-0.998001635074615,-0.050741158425808,0.0098766265437007,-0.975041091442108,-0.221804812550545,-0.049983486533165,-0.987056851387024,-0.152382746338844,-0.000536129053216428,-0.980934262275696,-0.194338858127594,0.0098766265437007,-0.975041091442108,-0.221804812550545,0.00206747278571129,-0.989448189735413,-0.144872218370438,0.536954879760742,-0.810872852802277,-0.232732996344566,0.474964082241058,-0.876463294029236,-0.0788748115301132,-0.0172914955765009,-0.994245886802673,-0.105717457830906,0.0649192854762077,-0.969464302062988,-0.236483111977577,0.474964082241058,-0.876463294029236,-0.0788748115301132,0.427078545093536,-0.896062970161438,-0.121140316128731,-0.049983486533165,-0.987056851387024,-0.152382746338844,-0.0172914955765009,-0.994245886802673,-0.105717457830906,-0.0172914955765009,-0.994245886802673,-0.105717457830906,-0.049983486533165,-0.987056851387024,-0.152382746338844,0.00206747278571129,-0.989448189735413,-0.144872218370438,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.0649192854762077,-0.969464302062988,-0.236483111977577,-0.0172914955765009,-0.994245886802673,-0.105717457830906,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.00559763703495264,-0.97633022069931,-0.216213032603264,0.4815514087677,-0.87572968006134,0.0347205102443695,0.512325942516327,-0.744121968746185,-0.428724586963654,0.113678202033043,-0.908584356307983,-0.401935040950775,0.0829202979803085,-0.990111291408539,-0.113154113292694,0.512325942516327,-0.744121968746185,-0.428724586963654, -0.536954879760742,-0.810872852802277,-0.232732996344566,0.0649192854762077,-0.969464302062988,-0.236483111977577,0.113678202033043,-0.908584356307983,-0.401935040950775,0.113678202033043,-0.908584356307983,-0.401935040950775,0.0649192854762077,-0.969464302062988,-0.236483111977577,0.00559763703495264,-0.97633022069931,-0.216213032603264,0.029085224494338,-0.923116743564606,-0.38341823220253,0.0829202979803085,-0.990111291408539,-0.113154113292694,0.113678202033043,-0.908584356307983,-0.401935040950775,0.029085224494338,-0.923116743564606,-0.38341823220253,-0.00105106621049345,-0.990453124046326,-0.137845665216446,0.490228146314621,-0.860631465911865,0.137803331017494,0.415730476379395,-0.823940396308899,0.385085076093674,0.0521012395620346,-0.985487163066864,0.161556497216225,0.0471196658909321,-0.998813986778259,-0.0122599303722382,0.415730476379395,-0.823940396308899,0.385085076093674,0.4815514087677,-0.87572968006134,0.0347205102443695,0.0829202979803085,-0.990111291408539,-0.113154113292694,0.0521012395620346,-0.985487163066864,0.161556497216225,0.0521012395620346,-0.985487163066864,0.161556497216225,0.0829202979803085,-0.990111291408539,-0.113154113292694,-0.00105106621049345,-0.990453124046326,-0.137845665216446,-0.0300086587667465,-0.991880595684052,0.123581223189831,0.0471196658909321,-0.998813986778259,-0.0122599303722382,0.0521012395620346,-0.985487163066864,0.161556497216225,-0.0300086587667465,-0.991880595684052,0.123581223189831,-0.00837635528296232,-0.998803436756134,-0.0481827110052109,0.410441100597382,-0.911667168140411,-0.0200270190834999,0.456870555877686,-0.885862767696381,-0.0807245001196861,-0.0098716439679265,-0.98967045545578,-0.143020287156105,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,0.456870555877686,-0.885862767696381,-0.0807245001196861,0.490228146314621,-0.860631465911865,0.137803331017494,0.0471196658909321,-0.998813986778259,-0.0122599303722382,-0.0098716439679265,-0.98967045545578,-0.143020287156105,-0.0098716439679265,-0.98967045545578,-0.143020287156105,0.0471196658909321,-0.998813986778259,-0.0122599303722382, --0.00837635528296232,-0.998803436756134,-0.0481827110052109,0.00344573124311864,-0.986906349658966,-0.161257728934288,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,-0.0098716439679265,-0.98967045545578,-0.143020287156105,0.00344573124311864,-0.986906349658966,-0.161257728934288,0.00336632318794727,-0.998307526111603,-0.0580575168132782,0.580079257488251,-0.802277624607086,-0.140921175479889,0.482958912849426,-0.87268078327179,0.0719649940729141,-0.0105320187285542,-0.998347282409668,0.0564947053790092,0.0762357041239738,-0.996555685997009,0.0326312221586704,0.482958912849426,-0.87268078327179,0.0719649940729141,0.410441100597382,-0.911667168140411,-0.0200270190834999,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,-0.0105320187285542,-0.998347282409668,0.0564947053790092,-0.0105320187285542,-0.998347282409668,0.0564947053790092,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,0.00336632318794727,-0.998307526111603,-0.0580575168132782,-0.00500164367258549,-0.99667751789093,0.081295445561409,0.0762357041239738,-0.996555685997009,0.0326312221586704,-0.0105320187285542,-0.998347282409668,0.0564947053790092,-0.00500164367258549,-0.99667751789093,0.081295445561409,-0.00253212242387235,-0.995971739292145,0.0896312743425369,0.468589961528778,-0.584312975406647,-0.662572145462036,0.503361344337463,-0.706269264221191,-0.497806340456009,0.123752541840076,-0.980672538280487,-0.151547789573669,0.166902795433998,-0.897470593452454,-0.408276855945587,0.503361344337463,-0.706269264221191,-0.497806340456009,0.580079257488251,-0.802277624607086,-0.140921175479889,0.0762357041239738,-0.996555685997009,0.0326312221586704,0.123752541840076,-0.980672538280487,-0.151547789573669,0.123752541840076,-0.980672538280487,-0.151547789573669,0.0762357041239738,-0.996555685997009,0.0326312221586704,-0.00253212242387235,-0.995971739292145,0.0896312743425369,0.00550123490393162,-0.999096095561981,-0.0421488173305988,0.166902795433998,-0.897470593452454,-0.408276855945587,0.123752541840076,-0.980672538280487,-0.151547789573669, -0.00550123490393162,-0.999096095561981,-0.0421488173305988,0.0501549690961838,-0.943022549152374,-0.328926771879196,0.123330391943455,-0.0846439674496651,0.988749265670776,0.318349808454514,-0.0322053767740726,0.947426080703735,0.248251765966415,0.283825427293777,0.926182508468628,0.193692356348038,0.278895646333694,0.940585196018219,0.0267959255725145,-0.143305033445358,0.989315748214722,0.123330391943455,-0.0846439674496651,0.988749265670776,0.193692356348038,0.278895646333694,0.940585196018219,0.159134745597839,0.261926114559174,0.951877474784851,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.377540469169617,-0.0881210491061211,-0.921790599822998,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.32930600643158,0.157053649425507,-0.931070148944855,0.652966678142548,-0.116778150200844,0.748329758644104,0.594159483909607,0.165744379162788,0.7870854139328,0.536860227584839,0.192848414182663,0.821334719657898,0.680147051811218,-0.108317017555237,0.725029289722443,0.536860227584839,0.192848414182663,0.821334719657898,0.496302485466003,0.210021421313286,0.842362582683563,0.563454568386078,-0.125576511025429,0.816547274589539,0.680147051811218,-0.108317017555237,0.725029289722443,0.516118586063385,-0.17624568939209,0.83818793296814,0.462071448564529,0.223597913980484,0.858192265033722,0.446461707353592,0.228723227977753,0.865076661109924,0.550027906894684,-0.0980221107602119,0.829373836517334,0.446461707353592,0.228723227977753,0.865076661109924,0.424679905176163,0.229900926351547,0.875666916370392,0.478856712579727,-0.0499666966497898,0.876470029354095,0.550027906894684,-0.0980221107602119,0.829373836517334,0.516118586063385,-0.17624568939209,0.83818793296814,0.533222019672394,-0.0158655233681202,0.845826506614685,0.49786764383316,0.0360203832387924,0.866504609584808,0.469946771860123,-0.180950209498405,0.86394852399826, -0.49786764383316,0.0360203832387924,0.866504609584808,0.736564636230469,0.168809071183205,0.654962539672852,0.563454568386078,-0.125576511025429,0.816547274589539,0.469946771860123,-0.180950209498405,0.86394852399826,0.652966678142548,-0.116778150200844,0.748329758644104,0.652515828609467,0.131035268306732,0.746359705924988,0.421275079250336,0.123729176819324,0.898453235626221,0.628561198711395,-0.124893352389336,0.767666935920715,0.421275079250336,0.123729176819324,0.898453235626221,0.593208611011505,0.173852309584618,0.786052644252777,0.719675958156586,-0.128582119941711,0.682299971580505,0.628561198711395,-0.124893352389336,0.767666935920715,0.390245676040649,-0.0543134994804859,0.919107437133789,0.38748687505722,0.0573664493858814,0.920088648796082,0.296649903059006,0.0429628640413284,0.95401930809021,0.394273400306702,-0.0484939105808735,0.917712807655334,0.296649903059006,0.0429628640413284,0.95401930809021,0.432550311088562,0.0525393672287464,0.900077641010284,0.478856712579727,-0.0499666966497898,0.876470029354095,0.394273400306702,-0.0484939105808735,0.917712807655334,0.781822502613068,-0.163981661200523,0.601550996303558,0.790066003799438,0.0960155203938484,0.605455875396729,0.756154358386993,0.111662238836288,0.644796133041382,0.780074834823608,-0.154913365840912,0.606205582618713,0.756154358386993,0.111662238836288,0.644796133041382,0.712085843086243,0.130221232771873,0.689910233020782,0.719675958156586,-0.128582119941711,0.682299971580505,0.780074834823608,-0.154913365840912,0.606205582618713,0.390245676040649,-0.0543134994804859,0.919107437133789,0.388904482126236,0.223152533173561,0.893843531608582,0.378438830375671,0.238302662968636,0.894424855709076,0.407787322998047,-0.0665067508816719,0.910651624202728,0.378438830375671,0.238302662968636,0.894424855709076,0.363922715187073,0.25348636507988,0.896272778511047,0.374630957841873,-0.0767536237835884,0.923991620540619,0.407787322998047,-0.0665067508816719,0.910651624202728,0.781822502613068,-0.163981661200523,0.601550996303558,0.781828284263611,0.120814986526966,0.611676633358002, -0.803862869739532,0.172455474734306,0.569265842437744,0.787403047084808,-0.125650525093079,0.603496730327606,0.803862869739532,0.172455474734306,0.569265842437744,0.886453747749329,0.21589657664299,0.409375607967377,0.835085809230804,-0.0748017132282257,0.545010447502136,0.787403047084808,-0.125650525093079,0.603496730327606,0.386866927146912,-0.0979848951101303,0.916914939880371,0.374749928712845,0.128784492611885,0.918137788772583,0.369435369968414,0.142308920621872,0.918295085430145,0.351311326026917,-0.0980117097496986,0.931114375591278,0.369435369968414,0.142308920621872,0.918295085430145,0.470587104558945,0.114330269396305,0.87491512298584,0.374630957841873,-0.0767536237835884,0.923991620540619,0.351311326026917,-0.0980117097496986,0.931114375591278,0.905811905860901,-0.0550877153873444,0.420083284378052,0.888742685317993,0.0559654906392097,0.454977214336395,0.857895612716675,0.0743108317255974,0.508421897888184,0.893545269966125,-0.0518663749098778,0.445967197418213,0.857895612716675,0.0743108317255974,0.508421897888184,0.835683107376099,0.081412635743618,0.543144345283508,0.835085809230804,-0.0748017132282257,0.545010447502136,0.893545269966125,-0.0518663749098778,0.445967197418213,0.386866927146912,-0.0979848951101303,0.916914939880371,0.327736765146255,0.266692817211151,0.906346321105957,0.300130397081375,0.2756627202034,0.91319864988327,0.402198970317841,-0.0607786178588867,0.913532793521881,0.300130397081375,0.2756627202034,0.91319864988327,0.248251765966415,0.283825427293777,0.926182508468628,0.318349808454514,-0.0322053767740726,0.947426080703735,0.402198970317841,-0.0607786178588867,0.913532793521881,0.905811905860901,-0.0550877153873444,0.420083284378052,0.886452257633209,0.167524337768555,0.431437075138092,0.744976758956909,0.162133932113647,0.647087514400482,0.905886471271515,-0.073218360543251,0.417143672704697,0.744976758956909,0.162133932113647,0.647087514400482,0.76248973608017,0.213903322815895,0.610618352890015,0.926183640956879,-0.0844836086034775,0.367486596107483,0.905886471271515,-0.073218360543251,0.417143672704697, -0.890304565429688,-0.14252296090126,0.432487010955811,0.897544920444489,0.0651593953371048,0.436081796884537,0.916368842124939,0.0464496687054634,0.39763143658638,0.929051399230957,-0.111079953610897,0.352880716323853,0.916368842124939,0.0464496687054634,0.39763143658638,0.924684047698975,0.0345741249620914,0.379162460565567,0.926183640956879,-0.0844836086034775,0.367486596107483,0.929051399230957,-0.111079953610897,0.352880716323853,0.890304565429688,-0.14252296090126,0.432487010955811,0.899462103843689,0.070027768611908,0.431351244449615,0.907306492328644,0.0993173494935036,0.408571898937225,0.844384789466858,-0.145803675055504,0.515514731407166,0.907306492328644,0.0993173494935036,0.408571898937225,0.933897316455841,0.0937239080667496,0.345038771629333,0.840295255184174,-0.130078285932541,0.526292264461517,0.844384789466858,-0.145803675055504,0.515514731407166,0.87024199962616,-0.115240558981895,0.478955656290054,0.873294770717621,0.0614541955292225,0.483300536870956,0.856721937656403,0.069778248667717,0.51103663444519,0.856386959552765,-0.11795199662447,0.502681612968445,0.856721937656403,0.069778248667717,0.51103663444519,0.861620962619781,0.071912445127964,0.50243204832077,0.840295255184174,-0.130078285932541,0.526292264461517,0.856386959552765,-0.11795199662447,0.502681612968445,0.87024199962616,-0.115240558981895,0.478955656290054,0.848219990730286,0.0226736664772034,0.529158473014832,0.790543735027313,0.00239566946402192,0.612400949001312,0.88355153799057,-0.119876965880394,0.452731907367706,0.790543735027313,0.00239566946402192,0.612400949001312,0.825610280036926,0.0557929053902626,0.561475515365601,0.885731637477875,-0.117089197039604,0.449187576770782,0.88355153799057,-0.119876965880394,0.452731907367706,0.899008393287659,-0.0800047740340233,0.430561602115631,0.913209974765778,0.0730284675955772,0.400891989469528,0.907031059265137,0.0713262856006622,0.414978533983231,0.885454833507538,-0.10305217653513,0.453155487775803,0.907031059265137,0.0713262856006622,0.414978533983231,0.904150128364563,0.0649797022342682,0.422244161367416, -0.885731637477875,-0.117089197039604,0.449187576770782,0.885454833507538,-0.10305217653513,0.453155487775803,0.899008393287659,-0.0800047740340233,0.430561602115631,0.881765305995941,0.156583860516548,0.444939881563187,0.917985677719116,0.17777444422245,0.354539930820465,0.924243927001953,-0.0464271157979965,0.37896916270256,0.917985677719116,0.17777444422245,0.354539930820465,0.962637424468994,0.252006649971008,0.099105529487133,0.968400835990906,0.00266301538795233,0.249384731054306,0.924243927001953,-0.0464271157979965,0.37896916270256,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.98066383600235,0.0180061925202608,0.194869875907898,0.96678763628006,0.044914573431015,0.251603692770004,0.997656524181366,0.0230849012732506,0.064408503472805,0.96678763628006,0.044914573431015,0.251603692770004,0.944641470909119,0.0620442479848862,0.322184771299362,0.968400835990906,0.00266301538795233,0.249384731054306,0.997656524181366,0.0230849012732506,0.064408503472805,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.980355262756348,0.185684055089951,-0.066519558429718,0.978713750839233,0.08892522752285,0.184964135289192,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.978713750839233,0.08892522752285,0.184964135289192,0.984749257564545,0.116362579166889,0.129339754581451,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.935719668865204,-0.352570354938507,0.0110868783667684,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.994035840034485,-0.0367925614118576,0.102660104632378,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.994035840034485,-0.0367925614118576,0.102660104632378,0.991952538490295,-0.0207040682435036,0.124906249344349,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.935719668865204,-0.352570354938507,0.0110868783667684,0.995797336101532,0.0686046779155731,0.0606710277497768,0.995731592178345,0.0808172449469566,0.0445774905383587,0.931723415851593,-0.352641671895981,0.0868064686655998, -0.995731592178345,0.0808172449469566,0.0445774905383587,0.997986316680908,0.0507214218378067,0.0380863137543201,0.939077377319336,-0.303965419530869,0.160432919859886,0.931723415851593,-0.352641671895981,0.0868064686655998,0.941215097904205,-0.228930488228798,0.248405158519745,0.985852181911469,-0.0375175699591637,0.163363993167877,0.988057315349579,-0.0398513898253441,0.148843824863434,0.942376792430878,-0.257297188043594,0.213832184672356,0.988057315349579,-0.0398513898253441,0.148843824863434,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.939077377319336,-0.303965419530869,0.160432919859886,0.942376792430878,-0.257297188043594,0.213832184672356,0.941215097904205,-0.228930488228798,0.248405158519745,0.945305049419403,0.0100241769105196,0.326033502817154,0.885087072849274,-0.00465083261951804,0.465402364730835,0.956762909889221,-0.17374150454998,0.233278065919876,0.885087072849274,-0.00465083261951804,0.465402364730835,0.930400192737579,0.117982521653175,0.347038447856903,0.981098473072052,-0.0995443984866142,0.165941908955574,0.956762909889221,-0.17374150454998,0.233278065919876,0.998310029506683,-0.0115439323708415,0.056955486536026,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.995074689388275,-0.0397914536297321,0.0907912701368332,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.981098473072052,-0.0995443984866142,0.165941908955574,0.995074689388275,-0.0397914536297321,0.0907912701368332,0.998310029506683,-0.0115439323708415,0.056955486536026,0.955672204494476,0.283672422170639,0.0788711979985237,0.962401151657104,0.27144655585289,0.0100412387400866,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.962401151657104,0.27144655585289,0.0100412387400866,0.976668894290924,0.212742060422897,-0.0293045789003372,0.998556017875671,-0.0141695337370038,0.051818061619997,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.998219013214111,-0.0115689476951957,0.0585229098796844, -0.99767404794693,-0.00837523303925991,0.0676497146487236,0.997051596641541,-0.0295031256973743,0.0708350166678429,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.99767404794693,-0.00837523303925991,0.0676497146487236,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.998556017875671,-0.0141695337370038,0.051818061619997,0.997051596641541,-0.0295031256973743,0.0708350166678429,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.896165788173676,-0.440985083580017,-0.049183439463377,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.896165788173676,-0.440985083580017,-0.049183439463377,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.834451138973236,-0.550636053085327,-0.0221660751849413,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.834451138973236,-0.550636053085327,-0.0221660751849413,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.873724460601807,-0.463758498430252,-0.146743357181549,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.794555902481079,-0.603073060512543,-0.0705948919057846,-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.873724460601807,-0.463758498430252,-0.146743357181549,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.99641489982605,0.0495933890342712,0.0685418769717216,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.99641489982605,0.0495933890342712,0.0685418769717216, --0.979649782180786,0.010231826454401,-0.200453445315361,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.993456184864044,-0.0716914087533951,-0.0889105051755905,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.988257348537445,0.126139655709267,0.0862344056367874,-0.96406227350235,0.111413389444351,0.241186484694481,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.96406227350235,0.111413389444351,0.241186484694481,-0.978031694889069,0.152403831481934,0.142221853137016,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.955233037471771,-0.211159124970436,-0.207223549485207, --0.967283666133881,-0.213407292962074,-0.137185230851173,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.942162156105042,-0.189164578914642,-0.276671946048737,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.945482194423676,-0.0409146323800087,-0.32309365272522,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.942162156105042,-0.189164578914642,-0.276671946048737,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.789600312709808,-0.233621582388878,-0.567408561706543,-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.833562433719635,-0.232993811368942,-0.500886976718903, --0.789600312709808,-0.233621582388878,-0.567408561706543,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.907367289066315,0.0639203116297722,-0.415450036525726,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.775463104248047,-0.0451733730733395,-0.629774749279022, --0.813219606876373,0.0077988738194108,-0.581904530525208,-0.775463104248047,-0.0451733730733395,-0.629774749279022,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.88413417339325,-0.0739206969738007,-0.461348652839661,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.825587332248688,0.0286079067736864,-0.563548803329468,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.88413417339325,-0.0739206969738007,-0.461348652839661,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.528702199459076,0.02510073967278,-0.848436117172241,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.528702199459076,0.02510073967278,-0.848436117172241, --0.532957494258881,-0.147419512271881,-0.833200931549072,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.516912996768951,-0.207503288984299,-0.830507814884186,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.516912996768951,-0.207503288984299,-0.830507814884186,-0.560848295688629,-0.0379329957067966,-0.827049136161804,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.464114040136337,-0.191303879022598,-0.864870488643646,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.464114040136337,-0.191303879022598,-0.864870488643646,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.408545464277267,-0.047090120613575,-0.911522448062897,-0.377540469169617,-0.0881210491061211,-0.921790599822998, --0.364188849925995,-0.256932556629181,-0.89518278837204,-0.396100550889969,-0.0960882529616356,-0.91316556930542,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.408545464277267,-0.047090120613575,-0.911522448062897,0.130164593458176,0.193935751914978,0.97234058380127,0.18181961774826,0.253342509269714,0.950136423110962,-0.075246550142765,0.226132169365883,0.971185922622681,-0.208788350224495,0.164736926555634,0.963985979557037,0.18181961774826,0.253342509269714,0.950136423110962,0.312815517187119,0.00277976063080132,0.949809849262238,0.00693589961156249,-0.0466239675879478,0.998888373374939,-0.075246550142765,0.226132169365883,0.971185922622681,-0.075246550142765,0.226132169365883,0.971185922622681,0.00693589961156249,-0.0466239675879478,0.998888373374939,-0.145488753914833,-0.0377167239785194,0.98864072561264,-0.361380368471146,0.185899093747139,0.91369891166687,0.374749928712845,0.128784492611885,0.918137788772583,0.393130868673325,0.0616345219314098,0.917414486408234,0.240161299705505,0.313696622848511,0.918649554252625,0.30707859992981,0.373052805662155,0.875519514083862,0.393130868673325,0.0616345219314098,0.917414486408234,0.312815517187119,0.00277976063080132,0.949809849262238,0.18181961774826,0.253342509269714,0.950136423110962,0.240161299705505,0.313696622848511,0.918649554252625,0.38748687505722,0.0573664493858814,0.920088648796082,0.532116651535034,0.0695726945996284,0.843807816505432,0.83314460515976,0.381137043237686,0.400754988193512,0.459471136331558,0.24929216504097,0.852490365505219,0.532116651535034,0.0695726945996284,0.843807816505432,0.470587104558945,0.114330269396305,0.87491512298584,0.644027709960938,0.430548369884491,0.632342040538788,0.83314460515976,0.381137043237686,0.400754988193512,0.533222019672394,-0.0158655233681202,0.845826506614685,0.561170816421509,0.0272064451128244,0.827252805233002,0.395465910434723,0.355699986219406,0.846808254718781,0.472877681255341,0.383730292320251,0.793182075023651,0.561170816421509,0.0272064451128244,0.827252805233002,0.432550311088562,0.0525393672287464,0.900077641010284, -0.256486296653748,0.308012425899506,0.916156649589539,0.395465910434723,0.355699986219406,0.846808254718781,0.652515828609467,0.131035268306732,0.746359705924988,0.877351403236389,0.132231578230858,0.461269348859787,0.929288923740387,0.286769330501556,0.232777491211891,0.481602132320404,0.350094020366669,0.803426086902618,0.877351403236389,0.132231578230858,0.461269348859787,0.736564636230469,0.168809071183205,0.654962539672852,0.73822009563446,0.373730897903442,0.56156587600708,0.929288923740387,0.286769330501556,0.232777491211891,0.781828284263611,0.120814986526966,0.611676633358002,0.755213499069214,0.14074595272541,0.640189945697784,0.544649124145508,0.574899971485138,0.610612213611603,0.650332570075989,0.587092518806458,0.48206827044487,0.755213499069214,0.14074595272541,0.640189945697784,0.593208611011505,0.173852309584618,0.786052644252777,0.340378075838089,0.527010321617126,0.778718650341034,0.544649124145508,0.574899971485138,0.610612213611603,0.886452257633209,0.167524337768555,0.431437075138092,0.950080454349518,0.178385734558105,0.255979806184769,0.894462466239929,0.430661976337433,-0.120279639959335,0.711159825325012,0.402712434530258,0.576258957386017,0.950080454349518,0.178385734558105,0.255979806184769,0.886453747749329,0.21589657664299,0.409375607967377,0.826826453208923,0.543696463108063,0.144056633114815,0.894462466239929,0.430661976337433,-0.120279639959335,0.899462103843689,0.070027768611908,0.431351244449615,0.870147228240967,0.154020696878433,0.468104034662247,0.740909159183502,0.431098699569702,0.514982998371124,0.833997189998627,0.422427475452423,0.354969918727875,0.870147228240967,0.154020696878433,0.468104034662247,0.76248973608017,0.213903322815895,0.610618352890015,0.575747072696686,0.436208605766296,0.691547036170959,0.740909159183502,0.431098699569702,0.514982998371124,0.848219990730286,0.0226736664772034,0.529158473014832,0.932120323181152,0.0270342659205198,0.361138105392456,0.906783640384674,0.389494448900223,-0.161361962556839,0.703478813171387,0.332269787788391,0.628262877464294, -0.932120323181152,0.0270342659205198,0.361138105392456,0.933897316455841,0.0937239080667496,0.345038771629333,0.909256994724274,0.416135013103485,-0.00912798754870892,0.906783640384674,0.389494448900223,-0.161361962556839,0.881765305995941,0.156583860516548,0.444939881563187,0.850996136665344,0.111290536820889,0.513244569301605,0.722124993801117,0.413387537002563,0.554658651351929,0.802838861942291,0.432056188583374,0.410825103521347,0.850996136665344,0.111290536820889,0.513244569301605,0.825610280036926,0.0557929053902626,0.561475515365601,0.568896114826202,0.364665627479553,0.737140536308289,0.722124993801117,0.413387537002563,0.554658651351929,0.980355262756348,0.185684055089951,-0.066519558429718,0.937002420425415,0.241222590208054,-0.252662390470505,0.848064124584198,0.385227262973785,-0.36385041475296,0.866819143295288,0.469822436571121,0.167007490992546,0.937002420425415,0.241222590208054,-0.252662390470505,0.962637424468994,0.252006649971008,0.099105529487133,0.89900928735733,0.433892607688904,0.0593249090015888,0.848064124584198,0.385227262973785,-0.36385041475296,0.995797336101532,0.0686046779155731,0.0606710277497768,0.992181420326233,0.102621845901012,0.071026511490345,0.892504572868347,0.416275709867477,0.17363815009594,0.907636106014252,0.41373685002327,0.0708418563008308,0.992181420326233,0.102621845901012,0.071026511490345,0.984749257564545,0.116362579166889,0.129339754581451,0.830227434635162,0.431485265493393,0.352906316518784,0.892504572868347,0.416275709867477,0.17363815009594,0.945305049419403,0.0100241769105196,0.326033502817154,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.807442605495453,0.463743209838867,-0.364662319421768,0.837538182735443,0.464932531118393,0.286997497081757,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.997986316680908,0.0507214218378067,0.0380863137543201,0.865681052207947,0.459593385457993,-0.198418900370598,0.807442605495453,0.463743209838867,-0.364662319421768,0.955672204494476,0.283672422170639,0.0788711979985237,0.953517556190491,0.236826956272125,0.186326041817665, -0.878183364868164,0.420036882162094,0.228829845786095,0.897985458374023,0.431995779275894,0.0836762264370918,0.953517556190491,0.236826956272125,0.186326041817665,0.930400192737579,0.117982521653175,0.347038447856903,0.801806926727295,0.384849905967712,0.457160919904709,0.878183364868164,0.420036882162094,0.228829845786095,0.999694764614105,0.0132730612531304,0.0208377800881863,0.993028283119202,0.112560428678989,-0.0349996797740459,0.877731323242188,0.359140127897263,-0.317184686660767,0.873127579689026,0.231439754366875,-0.429050087928772,0.993028283119202,0.112560428678989,-0.0349996797740459,0.976668894290924,0.212742060422897,-0.0293045789003372,0.896420896053314,0.419392853975296,-0.143315359950066,0.877731323242188,0.359140127897263,-0.317184686660767,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.994863569736481,0.0825993195176125,-0.0585142411291599,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.990622639656067,0.0857216641306877,-0.106388725340366,-0.994863569736481,0.0825993195176125,-0.0585142411291599,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.979649782180786,0.010231826454401,-0.200453445315361,-0.982662558555603,0.0329523794353008,-0.182450905442238, --0.890301585197449,0.0432293117046356,-0.453314930200577,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.988257348537445,0.126139655709267,0.0862344056367874,-0.989424645900726,0.13632769882679,-0.0495329834520817,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.989424645900726,0.13632769882679,-0.0495329834520817,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.978031694889069,0.152403831481934,0.142221853137016,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.459797859191895,0.018549919128418,-0.887829899787903,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.459797859191895,0.018549919128418,-0.887829899787903,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.9540776014328,0.034807775169611,-0.297530263662338,-0.953178584575653,0.0196772385388613,-0.301767021417618, --0.9540776014328,0.034807775169611,-0.297530263662338,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.953178584575653,0.0196772385388613,-0.301767021417618,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.99353951215744,-0.0590934678912163,-0.0968871414661407,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.442076206207275,-0.0473057590425014,-0.895729243755341,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.514413774013519,-0.0855671167373657,-0.853262305259705,-0.442076206207275,-0.0473057590425014,-0.895729243755341, --0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.794555902481079,-0.603073060512543,-0.0705948919057846,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.809855461120605,-0.580127537250519,-0.0870979130268097, --0.791384994983673,-0.604464888572693,-0.091280072927475,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.993456184864044,-0.0716914087533951,-0.0889105051755905,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.809855461120605,-0.580127537250519,-0.0870979130268097,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.955233037471771,-0.211159124970436,-0.207223549485207,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.945482194423676,-0.0409146323800087,-0.32309365272522,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.803597450256348,-0.412529677152634,-0.429011195898056,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.803597450256348,-0.412529677152634,-0.429011195898056, --0.803597450256348,-0.412529677152634,-0.429011195898056,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.907367289066315,0.0639203116297722,-0.415450036525726,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.803597450256348,-0.412529677152634,-0.429011195898056,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.825587332248688,0.0286079067736864,-0.563548803329468,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.560848295688629,-0.0379329957067966,-0.827049136161804,-0.516912996768951,-0.207503288984299,-0.830507814884186, --0.330431371927261,-0.654714047908783,-0.679826855659485,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.516912996768951,-0.207503288984299,-0.830507814884186,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.396100550889969,-0.0960882529616356,-0.91316556930542,-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.387130469083786,-0.918020367622375,-0.0858408212661743, --0.417903810739517,-0.890013575553894,-0.182297110557556,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.387130469083786,-0.918020367622375,-0.0858408212661743,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.461858808994293,-0.883243680000305,-0.081038162112236,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.461858808994293,-0.883243680000305,-0.081038162112236, --0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.809855461120605,-0.580127537250519,-0.0870979130268097,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.809855461120605,-0.580127537250519,-0.0870979130268097,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.955233037471771,-0.211159124970436,-0.207223549485207,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.758352398872375,-0.517087757587433,-0.39689028263092,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.758352398872375,-0.517087757587433,-0.39689028263092,-0.758352398872375,-0.517087757587433,-0.39689028263092, --0.775608122348785,-0.513262808322906,-0.36741441488266,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.758352398872375,-0.517087757587433,-0.39689028263092,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.833562433719635,-0.232993811368942,-0.500886976718903,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.464732706546783,-0.814355134963989,-0.347633630037308,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.464732706546783,-0.814355134963989,-0.347633630037308,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.833562433719635,-0.232993811368942,-0.500886976718903,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.728222846984863,-0.546146273612976,-0.414023786783218,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.728222846984863,-0.546146273612976,-0.414023786783218,-0.728222846984863,-0.546146273612976,-0.414023786783218,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.728222846984863,-0.546146273612976,-0.414023786783218, --0.924758911132813,-0.2042086571455,-0.321123003959656,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.411990374326706,-0.648164451122284,-0.640427112579346, --0.513042032718658,-0.300453513860703,-0.804061889648438,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.411990374326706,-0.648164451122284,-0.640427112579346,-0.411990374326706,-0.648164451122284,-0.640427112579346,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.411990374326706,-0.648164451122284,-0.640427112579346,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.28141462802887,-0.71728241443634,-0.63742595911026,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.28141462802887,-0.71728241443634,-0.63742595911026,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.292156636714935,-0.664767622947693,-0.687552452087402,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.292156636714935,-0.664767622947693,-0.687552452087402, --0.292156636714935,-0.664767622947693,-0.687552452087402,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.292156636714935,-0.664767622947693,-0.687552452087402,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.208506092429161,-0.746393322944641,-0.631998658180237,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.108565412461758,-0.770942389965057,-0.627583682537079,-0.100648067891598,-0.644245445728302,-0.758167445659637,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.100648067891598,-0.644245445728302,-0.758167445659637,-0.121647201478481,-0.689130485057831,-0.714353680610657,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.0654709786176682,-0.833355844020844,-0.548845648765564,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,-0.0812108442187309,-0.849200785160065,-0.521788001060486,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.0812108442187309,-0.849200785160065,-0.521788001060486,-0.225158423185349,-0.775384128093719,-0.58998566865921,-0.213849946856499,-0.761492013931274,-0.611880898475647, --0.0654709786176682,-0.833355844020844,-0.548845648765564,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.213849946856499,-0.761492013931274,-0.611880898475647,-0.208506092429161,-0.746393322944641,-0.631998658180237,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.0812108442187309,-0.849200785160065,-0.521788001060486,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-0.245702922344208,-0.800319671630859,-0.546917259693146,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.0812108442187309,-0.849200785160065,-0.521788001060486,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.225158423185349,-0.775384128093719,-0.58998566865921,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424,1.08920303318882e-05,-0.866985976696014,-0.498332589864731,-0.101407192647457,-0.861827790737152,-0.496960252523422,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.101407192647457,-0.861827790737152,-0.496960252523422,-0.280902534723282,-0.819617211818695,-0.499320924282074,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.245702922344208,-0.800319671630859,-0.546917259693146, -1.08920303318882e-05,-0.866985976696014,-0.498332589864731,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.101407192647457,-0.861827790737152,-0.496960252523422,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338,-0.106370434165001,-0.905227482318878,-0.411398142576218,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.106370434165001,-0.905227482318878,-0.411398142576218,-0.298206895589828,-0.854700148105621,-0.424923866987228,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.101407192647457,-0.861827790737152,-0.496960252523422,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.280902534723282,-0.819617211818695,-0.499320924282074,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.106370434165001,-0.905227482318878,-0.411398142576218,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,-0.103154316544533,-0.946393847465515,-0.306101262569427,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.103154316544533,-0.946393847465515,-0.306101262569427,-0.310237467288971,-0.891564309597015,-0.329947859048843,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.106370434165001,-0.905227482318878,-0.411398142576218,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.298206895589828,-0.854700148105621,-0.424923866987228,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,1.04003063938762e-07,-0.961563885211945,-0.274581253528595,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.103154316544533,-0.946393847465515,-0.306101262569427, -1.04003063938762e-07,-0.961563885211945,-0.274581253528595,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,-0.106280244886875,-0.957817375659943,-0.267002701759338,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.106280244886875,-0.957817375659943,-0.267002701759338,-0.301055043935776,-0.904826879501343,-0.301088362932205,-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.103154316544533,-0.946393847465515,-0.306101262569427,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.310237467288971,-0.891564309597015,-0.329947859048843,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.106280244886875,-0.957817375659943,-0.267002701759338,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,-0.115805432200432,-0.971457123756409,-0.207027181982994,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.115805432200432,-0.971457123756409,-0.207027181982994,-0.314095944166183,-0.921738564968109,-0.227467820048332,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.106280244886875,-0.957817375659943,-0.267002701759338,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.301055043935776,-0.904826879501343,-0.301088362932205,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,-0.122806437313557,-0.979304194450378,-0.160877972841263,-0.115805432200432,-0.971457123756409,-0.207027181982994,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,0,-0.98962664604187,-0.14366252720356,-0.129820793867111,-0.98259824514389,-0.13284258544445,-0.122806437313557,-0.979304194450378,-0.160877972841263, --0.122806437313557,-0.979304194450378,-0.160877972841263,-0.129820793867111,-0.98259824514389,-0.13284258544445,-0.31306254863739,-0.939959347248077,-0.135897815227509,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.115805432200432,-0.971457123756409,-0.207027181982994,-0.122806437313557,-0.979304194450378,-0.160877972841263,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.314095944166183,-0.921738564968109,-0.227467820048332,0,-0.98962664604187,-0.14366252720356,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.129820793867111,-0.98259824514389,-0.13284258544445,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,3.23932340506872e-06,-0.999818086624146,0.01907654479146,-0.135066285729408,-0.990572273731232,0.022878909483552,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.135066285729408,-0.990572273731232,0.022878909483552,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.129820793867111,-0.98259824514389,-0.13284258544445,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.31306254863739,-0.939959347248077,-0.135897815227509,3.23932340506872e-06,-0.999818086624146,0.01907654479146,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.135066285729408,-0.990572273731232,0.022878909483552,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,2.66085771727376e-06,-0.990090310573578,-0.140432059764862,-0.138488098978996,-0.980667471885681,-0.138246849179268,-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.138488098978996,-0.980667471885681,-0.138246849179268,-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.26970186829567,-0.962894201278687,-0.00978067889809608,-0.135066285729408,-0.990572273731232,0.022878909483552, --0.137500151991844,-0.990292608737946,0.0203537754714489,-0.26970186829567,-0.962894201278687,-0.00978067889809608,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.387130469083786,-0.918020367622375,-0.0858408212661743,-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.178244784474373,-0.249184742569923,-0.951911568641663,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,-0.105169393122196,-0.61860316991806,-0.778633117675781,-0.178244784474373,-0.249184742569923,-0.951911568641663,-0.105169393122196,-0.61860316991806,-0.778633117675781,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.256911754608154,-0.252870112657547,-0.932766318321228,-0.130153819918633,0.193926721811295,0.972343742847443,-0.21282722055912,0.217102646827698,0.952665209770203,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.118009239435196,0.0901520848274231,0.988911807537079,-0.21282722055912,0.217102646827698,0.952665209770203,-0.130153819918633,0.193926721811295,0.972343742847443,-0.18182772397995,0.253345400094986,0.950134098529816,-0.240157574415207,0.313670128583908,0.918659508228302,-0.327520757913589,0.237563222646713,0.914491057395935,-0.21282722055912,0.217102646827698,0.952665209770203, --0.240157574415207,0.313670128583908,0.918659508228302,-0.307092875242233,0.373005419969559,0.875534653663635,-0.21282722055912,0.217102646827698,0.952665209770203,-0.327520757913589,0.237563222646713,0.914491057395935,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.31958857178688,0.27969753742218,0.905335545539856,-0.608430445194244,0.361553758382797,0.706463932991028,-0.616879999637604,0.14482307434082,0.773618340492249,-0.266136586666107,0.0749970376491547,0.961013376712799,-0.608430445194244,0.361553758382797,0.706463932991028,-0.31958857178688,0.27969753742218,0.905335545539856,-0.340317577123642,0.527058899402618,0.778712213039398,-0.544596552848816,0.574981093406677,0.610582768917084,-0.745732545852661,0.394616782665253,0.536806046962738,-0.608430445194244,0.361553758382797,0.706463932991028,-0.544596552848816,0.574981093406677,0.610582768917084,-0.650364398956299,0.58708518743515,0.482034385204315,-0.608430445194244,0.361553758382797,0.706463932991028,-0.745732545852661,0.394616782665253,0.536806046962738,-0.801203608512878,0.185595437884331,0.568882405757904,-0.616879999637604,0.14482307434082,0.773618340492249,-0.574783682823181,0.210681706666946,0.790719330310822,-0.779763996601105,0.252052277326584,0.57309490442276,-0.81740802526474,0.0793337896466255,0.570570111274719,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.779763996601105,0.252052277326584,0.57309490442276,-0.574783682823181,0.210681706666946,0.790719330310822,-0.568908989429474,0.364634901285172,0.737145841121674,-0.722085058689117,0.413335591554642,0.554749369621277,-0.877142071723938,0.257609009742737,0.405289351940155,-0.779763996601105,0.252052277326584,0.57309490442276,-0.722085058689117,0.413335591554642,0.554749369621277,-0.802801370620728,0.432132750749588,0.410817712545395,-0.779763996601105,0.252052277326584,0.57309490442276,-0.877142071723938,0.257609009742737,0.405289351940155,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.81740802526474,0.0793337896466255,0.570570111274719, --0.930492401123047,0.117642223834991,0.346906840801239,-0.801896631717682,0.384813547134399,0.457034409046173,-0.678678631782532,0.337745875120163,0.652167975902557,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.678678631782532,0.337745875120163,0.652167975902557,-0.801896631717682,0.384813547134399,0.457034409046173,-0.875247001647949,0.218632102012634,0.431442677974701,-0.753046095371246,0.176267579197884,0.633917450904846,-0.837620437145233,0.464953988790512,0.286722391843796,-0.678678631782532,0.337745875120163,0.652167975902557,-0.753046095371246,0.176267579197884,0.633917450904846,-0.922275245189667,0.238186061382294,0.304426968097687,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.678678631782532,0.337745875120163,0.652167975902557,-0.837620437145233,0.464953988790512,0.286722391843796,-0.945272922515869,0.00988496094942093,0.326130986213684,0.0763066858053207,-0.417371302843094,0.905526697635651,0.0503877177834511,-0.0637078359723091,0.996695697307587,-0.19186544418335,-0.0657510980963707,0.979216277599335,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.19186544418335,-0.0657510980963707,0.979216277599335,0.0503877177834511,-0.0637078359723091,0.996695697307587,-0.0287351664155722,0.0467967726290226,0.998490989208221,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.19186544418335,-0.0657510980963707,0.979216277599335,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.452850431203842,0.093405120074749,0.88668030500412,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.19186544418335,-0.0657510980963707,0.979216277599335,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.475046217441559,0.217101395130157,0.852759122848511,-0.496219664812088,0.210041984915733,0.842406392097473,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.469950377941132,-0.180933505296707,0.863950073719025,-0.475046217441559,0.217101395130157,0.852759122848511, --0.469950377941132,-0.180933505296707,0.863950073719025,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.462157160043716,0.223579064011574,0.858151078224182,-0.321946293115616,0.303814649581909,0.896686851978302,-0.345715135335922,0.297554850578308,0.889911293983459,-0.347306936979294,0.260266453027725,0.900910317897797,-0.32773369550705,0.266680598258972,0.90635097026825,-0.345715135335922,0.297554850578308,0.889911293983459,-0.361728072166443,0.291893810033798,0.885409951210022,-0.363866746425629,0.253485023975372,0.896295845508575,-0.347306936979294,0.260266453027725,0.900910317897797,-0.362244516611099,-0.81382018327713,0.454395741224289,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.649826109409332,0.1081632822752,0.752347469329834,-0.910142183303833,0.150655776262283,0.385932385921478,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.910142183303833,0.150655776262283,0.385932385921478,-0.948900938034058,0.145196318626404,0.280187606811523,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.878404796123505,0.071886233985424,0.472480088472366,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.844495415687561,-0.145735219120979,0.515353083610535,-0.878404796123505,0.071886233985424,0.472480088472366,-0.844495415687561,-0.145735219120979,0.515353083610535,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.794099569320679,0.136489853262901,0.59226381778717,-0.821046948432922,0.122802093625069,0.557495772838593, --0.81606912612915,0.0852678194642067,0.57162994146347,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.821046948432922,0.122802093625069,0.557495772838593,-0.837142586708069,0.113156691193581,0.535152196884155,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.81606912612915,0.0852678194642067,0.57162994146347,-0.453250050544739,-0.875390589237213,0.168094336986542,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.468763470649719,-0.873666763305664,-0.130258396267891,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.94854873418808,0.0162112768739462,0.316215753555298,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.468763470649719,-0.873666763305664,-0.130258396267891,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.427178382873535,-0.896017134189606,-0.121127761900425,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.93900191783905,-0.304208785295486,0.160413801670074,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.915169775485992,0.0964672192931175,0.391354590654373,-0.927937209606171,0.0873879417777061,0.362347781658173,-0.924784362316132,0.0702748745679855,0.373945415019989,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.927937209606171,0.0873879417777061,0.362347781658173,-0.947731673717499,0.0680974274873734,0.311717063188553,-0.944680571556091,0.0620129816234112,0.322076231241226, --0.924784362316132,0.0702748745679855,0.373945415019989,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.976750731468201,0.21237450838089,-0.029242055490613,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.999700367450714,0.0132086621597409,0.0206089336425066,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.998473405838013,-0.0192288644611835,0.0517794266343117,-0.998943626880646,-0.0200503803789616,0.0413480922579765,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.997304975986481,-0.0175333619117737,0.0712407752871513,-0.998473405838013,-0.0192288644611835,0.0517794266343117,-0.140483602881432,-0.389575660228729,0.910217046737671,-0.127614736557007,-0.0326059870421886,0.991287708282471,-0.229529678821564,-0.0504601784050465,0.971992671489716, --0.235184445977211,-0.385947704315186,0.892038583755493,-0.229529678821564,-0.0504601784050465,0.971992671489716,-0.127614736557007,-0.0326059870421886,0.991287708282471,-0.118009239435196,0.0901520848274231,0.988911807537079,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.229529678821564,-0.0504601784050465,0.971992671489716,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.235184445977211,-0.385947704315186,0.892038583755493,-0.229529678821564,-0.0504601784050465,0.971992671489716,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.803336977958679,-0.540861368179321,0.249235898256302,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.682653307914734,-0.155263811349869,0.714057147502899,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.611733138561249,-0.034547746181488,0.790309429168701,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.682653307914734,-0.155263811349869,0.714057147502899,-0.611642420291901,-0.490592271089554,0.620655059814453,-0.770505547523499,0.238205224275589,0.591252505779266,-0.931054770946503,0.155320644378662,0.330170392990112,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.931054770946503,0.155320644378662,0.330170392990112,-0.770505547523499,0.238205224275589,0.591252505779266,-0.644018173217773,0.43055859208107,0.632344722747803,-0.833136200904846,0.381204217672348,0.400708734989166, --0.548618793487549,0.0776971653103828,0.832454562187195,-0.931054770946503,0.155320644378662,0.330170392990112,-0.833136200904846,0.381204217672348,0.400708734989166,-0.459225565195084,0.249145716428757,0.852665364742279,-0.931054770946503,0.155320644378662,0.330170392990112,-0.548618793487549,0.0776971653103828,0.832454562187195,-0.611733138561249,-0.034547746181488,0.790309429168701,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.23263393342495,-0.0961992964148521,0.967795014381409,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.23263393342495,-0.0961992964148521,0.967795014381409,-0.266136586666107,0.0749970376491547,0.961013376712799,-0.616879999637604,0.14482307434082,0.773618340492249,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.616879999637604,0.14482307434082,0.773618340492249,-0.801203608512878,0.185595437884331,0.568882405757904,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.704103589057922,-0.47858914732933,-0.524586081504822,-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.705813407897949,0.059078112244606,0.705929934978485,-0.704103589057922,-0.47858914732933,-0.524586081504822, --0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.583945155143738,-0.762057662010193,0.279778659343719,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.826912581920624,0.543511629104614,0.14425890147686,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.763453900814056,0.207317247986794,0.611684262752533,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.710642516613007,0.402679920196533,0.576919555664063,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.763453900814056,0.207317247986794,0.611684262752533,-0.705813407897949,0.059078112244606,0.705929934978485,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.290535598993301,-0.833319902420044,0.470283985137939,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.370848000049591,-0.912586987018585,0.172211557626724,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.81740802526474,0.0793337896466255,0.570570111274719,-0.928280353546143,-0.170947059988976,0.330261677503586,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.81740802526474,0.0793337896466255,0.570570111274719,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.370848000049591,-0.912586987018585,0.172211557626724,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.928280353546143,-0.170947059988976,0.330261677503586,-0.366151511669159,-0.928801298141479,0.0571073777973652,-0.443843692541122,-0.869031727313995,-0.218601703643799,-0.967403948307037,-0.19027204811573,-0.167111486196518, --0.829449534416199,-0.148507758975029,-0.538478314876556,-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.967403948307037,-0.19027204811573,-0.167111486196518,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.92610377073288,-0.292241811752319,0.238592609763145,-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.92610377073288,-0.292241811752319,0.238592609763145,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.969876885414124,0.175330132246017,0.169110134243965,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.866828918457031,0.469911992549896,0.166704028844833,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.969876885414124,0.175330132246017,0.169110134243965,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.753046095371246,0.176267579197884,0.633917450904846,-0.875247001647949,0.218632102012634,0.431442677974701,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.913995802402496,-0.209973439574242,0.347164064645767, --0.765838265419006,-0.183012425899506,0.616440057754517,-0.945968389511108,0.047374714165926,0.320779234170914,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.765838265419006,-0.183012425899506,0.616440057754517,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.945968389511108,0.047374714165926,0.320779234170914,-0.922275245189667,0.238186061382294,0.304426968097687,-0.753046095371246,0.176267579197884,0.633917450904846,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.913995802402496,-0.209973439574242,0.347164064645767,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.456867456436157,-0.88587349653244,-0.0806247070431709,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.913995802402496,-0.209973439574242,0.347164064645767,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.456867456436157,-0.88587349653244,-0.0806247070431709,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.410520315170288,-0.91163182258606,-0.0200147889554501,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.875247001647949,0.218632102012634,0.431442677974701,-0.952640473842621,0.24386902153492,0.181670263409615,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.952640473842621,0.24386902153492,0.181670263409615,-0.875247001647949,0.218632102012634,0.431442677974701,-0.801896631717682,0.384813547134399,0.457034409046173,-0.878231346607208,0.419936746358871,0.228829219937325,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.952640473842621,0.24386902153492,0.181670263409615,-0.878231346607208,0.419936746358871,0.228829219937325,-0.897977590560913,0.43198174238205,0.0838346183300018, --0.952640473842621,0.24386902153492,0.181670263409615,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.768169522285461,-0.555073916912079,0.319074511528015,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.277549207210541,-0.10850915312767,0.954563856124878,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.255033791065216,-0.000451219500973821,0.966931998729706,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.277549207210541,-0.10850915312767,0.954563856124878,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.807332277297974,0.185303911566734,0.560247421264648,-0.958530068397522,0.116681046783924,0.260010808706284,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.958530068397522,0.116681046783924,0.260010808706284,-0.807332277297974,0.185303911566734,0.560247421264648,-0.738191425800323,0.373619168996811,0.561677932739258,-0.92929071187973,0.286719083786011,0.232832327485085,-0.333341926336288,0.129127606749535,0.933921456336975,-0.958530068397522,0.116681046783924,0.260010808706284,-0.92929071187973,0.286719083786011,0.232832327485085,-0.481347262859344,0.350065946578979,0.803591012954712,-0.958530068397522,0.116681046783924,0.260010808706284,-0.333341926336288,0.129127606749535,0.933921456336975,-0.255033791065216,-0.000451219500973821,0.966931998729706,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.144239962100983,0.172613084316254,0.974371373653412, --0.325286567211151,0.227613851428032,0.917813003063202,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.0287351664155722,0.0467967726290226,0.998490989208221,-0.325286567211151,0.227613851428032,0.917813003063202,-0.144239962100983,0.172613084316254,0.974371373653412,-0.256543427705765,0.307984679937363,0.916150033473969,-0.395541936159134,0.355704635381699,0.846770763397217,-0.462810188531876,0.255605936050415,0.84880656003952,-0.325286567211151,0.227613851428032,0.917813003063202,-0.395541936159134,0.355704635381699,0.846770763397217,-0.472881108522415,0.383732289075851,0.793179035186768,-0.325286567211151,0.227613851428032,0.917813003063202,-0.462810188531876,0.255605936050415,0.84880656003952,-0.452850431203842,0.093405120074749,0.88668030500412,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.453460842370987,0.265468209981918,0.850823044776917,-0.472663879394531,0.257046222686768,0.842921197414398,-0.475046217441559,0.217101395130157,0.852759122848511,-0.462157160043716,0.223579064011574,0.858151078224182,-0.472663879394531,0.257046222686768,0.842921197414398,-0.490559697151184,0.246980980038643,0.835674345493317,-0.496219664812088,0.210041984915733,0.842406392097473,-0.475046217441559,0.217101395130157,0.852759122848511,-0.384622544050217,0.281148195266724,0.879216194152832,-0.398698180913925,0.278631985187531,0.873729884624481,-0.402046859264374,0.224277660250664,0.887726306915283,-0.388883531093597,0.223127603530884,0.893858790397644,-0.398698180913925,0.278631985187531,0.873729884624481,-0.415154159069061,0.276424914598465,0.86673891544342,-0.424677073955536,0.229889005422592,0.87567138671875,-0.402046859264374,0.224277660250664,0.887726306915283,-0.402046859264374,0.224277660250664,0.887726306915283,-0.424677073955536,0.229889005422592,0.87567138671875,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.402046859264374,0.224277660250664,0.887726306915283,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.390184640884399,-0.0543684512376785,0.919130027294159, --0.388883531093597,0.223127603530884,0.893858790397644,-0.198022574186325,0.325926274061203,0.924423635005951,-0.243139833211899,0.320305675268173,0.915580272674561,-0.248255610466003,0.283828645944595,0.926180481910706,-0.193733528256416,0.278880715370178,0.940581142902374,-0.173236384987831,0.327362209558487,0.928882598876953,-0.198022574186325,0.325926274061203,0.924423635005951,-0.193733528256416,0.278880715370178,0.940581142902374,-0.15919853746891,0.261923760175705,0.951867520809174,0.145520091056824,-0.0377094373106956,0.988636374473572,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,5.15278725288226e-06,-0.195868358016014,0.980630159378052,-0.0268143340945244,-0.143278241157532,0.989319086074829,0.145520091056824,-0.0377094373106956,0.988636374473572,-0.0268143340945244,-0.143278241157532,0.989319086074829,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.00683469092473388,-0.0465485118329525,0.998892605304718,-0.347306936979294,0.260266453027725,0.900910317897797,-0.363866746425629,0.253485023975372,0.896295845508575,-0.374621093273163,-0.0767543241381645,0.923995614051819,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.347306936979294,0.260266453027725,0.900910317897797,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.32773369550705,0.266680598258972,0.90635097026825,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.649918794631958,-0.640278339385986,-0.409449756145477,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.80729615688324,0.0708622336387634,0.585876643657684, --0.649918794631958,-0.640278339385986,-0.409449756145477,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.761776208877563,0.159230262041092,0.627967119216919,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.703601121902466,0.332484751939774,0.628012180328369,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.761776208877563,0.159230262041092,0.627967119216919,-0.80729615688324,0.0708622336387634,0.585876643657684,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.652092397212982,0.274608939886093,0.706657886505127,-0.841024100780487,0.308994978666306,0.444072663784027,-0.910142183303833,0.150655776262283,0.385932385921478,-0.649826109409332,0.1081632822752,0.752347469329834,-0.841024100780487,0.308994978666306,0.444072663784027,-0.652092397212982,0.274608939886093,0.706657886505127,-0.575689733028412,0.43614661693573,0.691633939743042,-0.7409907579422,0.431041389703751,0.51491379737854,-0.898013353347778,0.300065010786057,0.321765452623367,-0.841024100780487,0.308994978666306,0.444072663784027,-0.7409907579422,0.431041389703751,0.51491379737854,-0.834043562412262,0.422363489866257,0.354937255382538,-0.841024100780487,0.308994978666306,0.444072663784027,-0.898013353347778,0.300065010786057,0.321765452623367,-0.948900938034058,0.145196318626404,0.280187606811523,-0.910142183303833,0.150655776262283,0.385932385921478,-0.891506910324097,0.0930751636624336,0.443342357873917, --0.876680493354797,0.102949619293213,0.46992826461792,-0.878404796123505,0.071886233985424,0.472480088472366,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.876680493354797,0.102949619293213,0.46992826461792,-0.859586298465729,0.110959939658642,0.498797833919525,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.878404796123505,0.071886233985424,0.472480088472366,-0.895029008388519,0.0762939751148224,0.439434200525284,-0.917960584163666,0.060780368745327,0.391987293958664,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.917960584163666,0.060780368745327,0.391987293958664,-0.919467449188232,0.0634551271796227,0.388011753559113,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.597299039363861,0.207671627402306,0.774665355682373,-0.665090262889862,0.18508842587471,0.723461925983429,-0.656582295894623,0.146541029214859,0.739881992340088,-0.594218373298645,0.165697261691093,0.787050783634186,-0.665090262889862,0.18508842587471,0.723461925983429,-0.715244710445404,0.167865425348282,0.678414463996887,-0.7120640873909,0.130230605602264,0.689930975437164,-0.656582295894623,0.146541029214859,0.739881992340088,-0.656582295894623,0.146541029214859,0.739881992340088,-0.7120640873909,0.130230605602264,0.689930975437164,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.656582295894623,0.146541029214859,0.739881992340088,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.652988374233246,-0.116873756051064,0.748295783996582, --0.594218373298645,0.165697261691093,0.787050783634186,-0.81606912612915,0.0852678194642067,0.57162994146347,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.81606912612915,0.0852678194642067,0.57162994146347,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.781821191310883,-0.163932874798775,0.601565837860107,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.945968389511108,0.047374714165926,0.320779234170914,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.948151648044586,0.282218486070633,-0.146154284477234,-0.905428767204285,0.281856387853622,-0.317420333623886,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.905428767204285,0.281856387853622,-0.317420333623886,-0.948151648044586,0.282218486070633,-0.146154284477234,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.80746865272522,0.463813126087189,-0.364515721797943,-0.837620437145233,0.464953988790512,0.286722391843796,-0.922275245189667,0.238186061382294,0.304426968097687,-0.905428767204285,0.281856387853622,-0.317420333623886,-0.80746865272522,0.463813126087189,-0.364515721797943, --0.905428767204285,0.281856387853622,-0.317420333623886,-0.922275245189667,0.238186061382294,0.304426968097687,-0.945968389511108,0.047374714165926,0.320779234170914,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.921152472496033,0.242753878235817,0.304218292236328,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.94854873418808,0.0162112768739462,0.316215753555298,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.921152472496033,0.242753878235817,0.304218292236328,-0.830115258693695,0.431543350219727,0.353099137544632,-0.89244532585144,0.416358262300491,0.173744335770607,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.89244532585144,0.416358262300491,0.173744335770607,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.998058378696442,-0.0307773221284151,0.0541491433978081,-0.998075485229492,-0.0335201993584633,0.0521695390343666,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.998075485229492,-0.0335201993584633,0.0521695390343666,-0.994130730628967,-0.0191587414592505,0.1064762622118,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.979690968990326,0.0236730091273785,0.199110999703407,-0.987460434436798,0.00815336406230927,0.157656028866768,-0.988256990909576,-0.00501752877607942,0.152718648314476,-0.980603277683258,0.0181206651031971,0.195163428783417,-0.987460434436798,0.00815336406230927,0.157656028866768,-0.990293800830841,0.000989494030363858,0.138986557722092,-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.988256990909576,-0.00501752877607942,0.152718648314476,-0.988256990909576,-0.00501752877607942,0.152718648314476, --0.991920173168182,-0.0206019692122936,0.12517973780632,-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.988256990909576,-0.00501752877607942,0.152718648314476,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.980603277683258,0.0181206651031971,0.195163428783417,-0.878066778182983,0.0984339118003845,0.468304842710495,-0.898106753826141,0.0906319916248322,0.430337131023407,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.898106753826141,0.0906319916248322,0.430337131023407,-0.904675185680389,0.0934287831187248,0.415732890367508,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.885592103004456,-0.117163017392159,0.449443340301514,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.924784362316132,0.0702748745679855,0.373945415019989,-0.944680571556091,0.0620129816234112,0.322076231241226,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.924784362316132,0.0702748745679855,0.373945415019989,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.716123342514038,0.000295749516226351,-0.697973728179932,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.716123342514038,0.000295749516226351,-0.697973728179932, --0.647262632846832,-0.135123580694199,-0.750195145606995,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.976750731468201,0.21237450838089,-0.029242055490613,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.96250981092453,0.271058112382889,0.010126169770956,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.897977590560913,0.43198174238205,0.0838346183300018,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.96250981092453,0.271058112382889,0.010126169770956,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.897977590560913,0.43198174238205,0.0838346183300018,-0.955795884132385,0.283257216215134,0.0788643434643745,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.997693419456482,-0.00725659215822816,0.067491702735424, --0.998083710670471,-0.00846588052809238,0.0612973161041737,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.998523056507111,-0.0132260071113706,0.0526959337294102,-0.998372733592987,-0.0125734750181437,0.0556218586862087,-0.997693419456482,-0.00725659215822816,0.067491702735424,-0.99895966053009,-0.018380019813776,0.0417340844869614,-0.998372733592987,-0.0125734750181437,0.0556218586862087,-0.998523056507111,-0.0132260071113706,0.0526959337294102,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.99895966053009,-0.018380019813776,0.0417340844869614,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.998943626880646,-0.0200503803789616,0.0413480922579765,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.998523056507111,-0.0132260071113706,0.0526959337294102,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.993946015834808,-0.0132164396345615,0.109071828424931,-0.997304975986481,-0.0175333619117737,0.0712407752871513,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.993946015834808,-0.0132164396345615,0.109071828424931,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.989061295986176,-0.00785514060407877,0.147295877337456,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.941263139247894,-0.228814080357552,0.248330056667328, --0.985881865024567,-0.0375615172088146,0.163175255060196,-0.953635692596436,0.236451253294945,0.186198204755783,-0.930492401123047,0.117642223834991,0.346906840801239,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.953635692596436,0.236451253294945,0.186198204755783,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.955795884132385,0.283257216215134,0.0788643434643745,2.14158717426471e-05,-0.35622963309288,0.934398531913757,2.41234738496132e-05,0.0307317469269037,0.999527633190155,0.587504923343658,0.00948319490998983,0.809165000915527,0.529604315757751,-0.324774593114853,0.783607542514801,0.587504923343658,0.00948319490998983,0.809165000915527,2.41234738496132e-05,0.0307317469269037,0.999527633190155,4.35391993960366e-05,0.0708878710865974,0.99748432636261,0.565484941005707,0.0699168667197227,0.821789741516113,0.529604315757751,-0.324774593114853,0.783607542514801,0.587504923343658,0.00948319490998983,0.809165000915527,0.282535374164581,-0.00665364880114794,0.959233820438385,0.230874493718147,-0.364731192588806,0.902035593986511,-0.321946293115616,0.303814649581909,0.896686851978302,-0.32773369550705,0.266680598258972,0.90635097026825,-0.300128549337387,0.2756507396698,0.913202881813049,-0.290655165910721,0.31161442399025,0.904663443565369,-0.300128549337387,0.2756507396698,0.913202881813049,-0.248255610466003,0.283828645944595,0.926180481910706,-0.243139833211899,0.320305675268173,0.915580272674561,-0.290655165910721,0.31161442399025,0.904663443565369,-0.393057554960251,0.061814084649086,0.917433798313141,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.393057554960251,0.061814084649086,0.917433798313141,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.374680399894714,0.128914713859558,0.91814786195755, --0.000136224902234972,0.0868736505508423,0.996219277381897,0.496378749608994,0.117570020258427,0.860107839107513,0.565484941005707,0.0699168667197227,0.821789741516113,4.35391993960366e-05,0.0708878710865974,0.99748432636261,0.496378749608994,0.117570020258427,0.860107839107513,-0.000136224902234972,0.0868736505508423,0.996219277381897,0.000145562866237015,0.109267674386501,0.994012296199799,0.361446797847748,0.185934022068977,0.913665473461151,0.27520340681076,0.0847124978899956,0.957646548748016,0.565484941005707,0.0699168667197227,0.821789741516113,0.496378749608994,0.117570020258427,0.860107839107513,0.208869874477386,0.164753541350365,0.963965654373169,-0.384622544050217,0.281148195266724,0.879216194152832,-0.388883531093597,0.223127603530884,0.893858790397644,-0.378375172615051,0.238288059830666,0.89445573091507,-0.373177707195282,0.285913437604904,0.882605195045471,-0.378375172615051,0.238288059830666,0.89445573091507,-0.363866746425629,0.253485023975372,0.896295845508575,-0.361728072166443,0.291893810033798,0.885409951210022,-0.373177707195282,0.285913437604904,0.882605195045471,-0.770505547523499,0.238205224275589,0.591252505779266,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.516991257667542,0.24874085187912,0.819053113460541,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.327520757913589,0.237563222646713,0.914491057395935,-0.516991257667542,0.24874085187912,0.819053113460541,-0.532146513462067,0.0696193277835846,0.843785047531128, --0.470575630664825,0.114327363669872,0.87492161989212,-0.374621093273163,-0.0767543241381645,0.923995614051819,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.532146513462067,0.0696193277835846,0.843785047531128,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.390184640884399,-0.0543684512376785,0.919130027294159,-0.387588620185852,0.0575357675552368,0.920035183429718,-0.470575630664825,0.114327363669872,0.87492161989212,-0.644018173217773,0.43055859208107,0.632344722747803,-0.435861140489578,0.413384646177292,0.799461126327515,-0.369501143693924,0.142275765538216,0.918273627758026,-0.435861140489578,0.413384646177292,0.799461126327515,-0.644018173217773,0.43055859208107,0.632344722747803,-0.770505547523499,0.238205224275589,0.591252505779266,-0.516991257667542,0.24874085187912,0.819053113460541,-0.327520757913589,0.237563222646713,0.914491057395935,-0.307092875242233,0.373005419969559,0.875534653663635,-0.435861140489578,0.413384646177292,0.799461126327515,-0.516991257667542,0.24874085187912,0.819053113460541,-0.369501143693924,0.142275765538216,0.918273627758026,-0.435861140489578,0.413384646177292,0.799461126327515,-0.307092875242233,0.373005419969559,0.875534653663635,-0.374680399894714,0.128914713859558,0.91814786195755,-0.144239962100983,0.172613084316254,0.974371373653412,-0.0287351664155722,0.0467967726290226,0.998490989208221,0.0944667756557465,0.0135209951549768,0.995436251163483,0.00325483386404812,0.105867423117161,0.994374930858612,0.0944667756557465,0.0135209951549768,0.995436251163483,-0.0287351664155722,0.0467967726290226,0.998490989208221,0.0503877177834511,-0.0637078359723091,0.996695697307587,0.17330701649189,-0.0628296434879303,0.982861697673798,-0.682653307914734,-0.155263811349869,0.714057147502899,-0.611733138561249,-0.034547746181488,0.790309429168701,0.0944667756557465,0.0135209951549768,0.995436251163483,0.17330701649189,-0.0628296434879303,0.982861697673798,0.0944667756557465,0.0135209951549768,0.995436251163483,-0.611733138561249,-0.034547746181488,0.790309429168701, --0.548618793487549,0.0776971653103828,0.832454562187195,0.00325483386404812,0.105867423117161,0.994374930858612,-0.453460842370987,0.265468209981918,0.850823044776917,-0.462157160043716,0.223579064011574,0.858151078224182,-0.446456104516983,0.228713467717171,0.865082144737244,-0.433207303285599,0.272210299968719,0.859204769134521,-0.446456104516983,0.228713467717171,0.865082144737244,-0.424677073955536,0.229889005422592,0.87567138671875,-0.415154159069061,0.276424914598465,0.86673891544342,-0.433207303285599,0.272210299968719,0.859204769134521,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.256543427705765,0.307984679937363,0.916150033473969,-0.0704345628619194,0.239811018109322,0.968261182308197,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.0704345628619194,0.239811018109322,0.968261182308197,-0.256543427705765,0.307984679937363,0.916150033473969,-0.144239962100983,0.172613084316254,0.974371373653412,0.00325483386404812,0.105867423117161,0.994374930858612,-0.548618793487549,0.0776971653103828,0.832454562187195,-0.459225565195084,0.249145716428757,0.852665364742279,-0.0704345628619194,0.239811018109322,0.968261182308197,0.00325483386404812,0.105867423117161,0.994374930858612,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.0704345628619194,0.239811018109322,0.968261182308197,-0.459225565195084,0.249145716428757,0.852665364742279,-0.387588620185852,0.0575357675552368,0.920035183429718,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.597299039363861,0.207671627402306,0.774665355682373,-0.594218373298645,0.165697261691093,0.787050783634186,-0.536642730236053,0.192880928516388,0.821469128131866, --0.527827739715576,0.2312301248312,0.817270219326019,-0.536642730236053,0.192880928516388,0.821469128131866,-0.496219664812088,0.210041984915733,0.842406392097473,-0.490559697151184,0.246980980038643,0.835674345493317,-0.527827739715576,0.2312301248312,0.817270219326019,-0.807332277297974,0.185303911566734,0.560247421264648,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.646524310112,0.07883071154356,0.758809626102448,-0.604842007160187,0.238733366131783,0.759718835353851,-0.646524310112,0.07883071154356,0.758809626102448,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.452850431203842,0.093405120074749,0.88668030500412,-0.646524310112,0.07883071154356,0.758809626102448,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.646524310112,0.07883071154356,0.758809626102448,-0.452850431203842,0.093405120074749,0.88668030500412,-0.462810188531876,0.255605936050415,0.84880656003952,-0.604842007160187,0.238733366131783,0.759718835353851,-0.736716389656067,0.168893858790398,0.654770076274872,-0.738191425800323,0.373619168996811,0.561677932739258,-0.56153929233551,0.395918190479279,0.726582705974579,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.56153929233551,0.395918190479279,0.726582705974579,-0.738191425800323,0.373619168996811,0.561677932739258,-0.807332277297974,0.185303911566734,0.560247421264648,-0.604842007160187,0.238733366131783,0.759718835353851,-0.462810188531876,0.255605936050415,0.84880656003952,-0.472881108522415,0.383732289075851,0.793179035186768,-0.56153929233551,0.395918190479279,0.726582705974579,-0.604842007160187,0.238733366131783,0.759718835353851,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.56153929233551,0.395918190479279,0.726582705974579,-0.472881108522415,0.383732289075851,0.793179035186768,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.877387881278992,0.131995260715485,0.461267381906509, --0.736716389656067,0.168893858790398,0.654770076274872,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.877387881278992,0.131995260715485,0.461267381906509,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.652988374233246,-0.116873756051064,0.748295783996582,-0.652534902095795,0.131031826138496,0.746343612670898,-0.31958857178688,0.27969753742218,0.905335545539856,-0.266136586666107,0.0749970376491547,0.961013376712799,0.144674673676491,0.0121900094673038,0.989404141902924,0.109015822410583,0.147476926445961,0.983039259910583,0.144674673676491,0.0121900094673038,0.989404141902924,-0.266136586666107,0.0749970376491547,0.961013376712799,-0.23263393342495,-0.0961992964148521,0.967795014381409,0.141833782196045,-0.0881895050406456,0.985954225063324,-0.277549207210541,-0.10850915312767,0.954563856124878,-0.255033791065216,-0.000451219500973821,0.966931998729706,0.144674673676491,0.0121900094673038,0.989404141902924,0.141833782196045,-0.0881895050406456,0.985954225063324,0.144674673676491,0.0121900094673038,0.989404141902924,-0.255033791065216,-0.000451219500973821,0.966931998729706,-0.333341926336288,0.129127606749535,0.933921456336975,0.109015822410583,0.147476926445961,0.983039259910583,-0.794099569320679,0.136489853262901,0.59226381778717,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.756162881851196,0.111659251153469,0.644786775112152,-0.75704163312912,0.152379512786865,0.635349214076996,-0.756162881851196,0.111659251153469,0.644786775112152,-0.7120640873909,0.130230605602264,0.689930975437164,-0.715244710445404,0.167865425348282,0.678414463996887,-0.75704163312912,0.152379512786865,0.635349214076996,-0.755209267139435,0.140739098191261,0.640196442604065,-0.593219518661499,0.173843711614609,0.786046326160431,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.755209267139435,0.140739098191261,0.640196442604065,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.781821191310883,-0.163932874798775,0.601565837860107, --0.781746685504913,0.12085734307766,0.611772418022156,-0.593219518661499,0.173843711614609,0.786046326160431,-0.340317577123642,0.527058899402618,0.778712213039398,0.000475413806270808,0.372147411108017,0.928173542022705,-0.42128998041153,0.123724490404129,0.898446977138519,0.000475413806270808,0.372147411108017,0.928173542022705,-0.340317577123642,0.527058899402618,0.778712213039398,-0.31958857178688,0.27969753742218,0.905335545539856,0.109015822410583,0.147476926445961,0.983039259910583,-0.333341926336288,0.129127606749535,0.933921456336975,-0.481347262859344,0.350065946578979,0.803591012954712,0.000475413806270808,0.372147411108017,0.928173542022705,0.109015822410583,0.147476926445961,0.983039259910583,-0.42128998041153,0.123724490404129,0.898446977138519,0.000475413806270808,0.372147411108017,0.928173542022705,-0.481347262859344,0.350065946578979,0.803591012954712,-0.652534902095795,0.131031826138496,0.746343612670898,-0.895029008388519,0.0762939751148224,0.439434200525284,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.857771813869476,0.074350006878376,0.508625090122223,-0.85942530632019,0.0993647873401642,0.501512587070465,-0.857771813869476,0.074350006878376,0.508625090122223,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.837142586708069,0.113156691193581,0.535152196884155,-0.85942530632019,0.0993647873401642,0.501512587070465,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.934427559375763,0.191264048218727,0.300438016653061,-0.858134806156158,0.383422195911407,0.341455906629562,-0.934427559375763,0.191264048218727,0.300438016653061,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.9666867852211,-0.0154904099181294,0.255493193864822,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.801203608512878,0.185595437884331,0.568882405757904,-0.934427559375763,0.191264048218727,0.300438016653061,-0.9666867852211,-0.0154904099181294,0.255493193864822, --0.934427559375763,0.191264048218727,0.300438016653061,-0.801203608512878,0.185595437884331,0.568882405757904,-0.745732545852661,0.394616782665253,0.536806046962738,-0.858134806156158,0.383422195911407,0.341455906629562,-0.950192093849182,0.178449869155884,0.25552025437355,-0.886572659015656,0.216122582554817,0.408998668193817,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.950192093849182,0.178449869155884,0.25552025437355,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.886231780052185,0.167720913887024,0.431813508272171,-0.886572659015656,0.216122582554817,0.408998668193817,-0.826912581920624,0.543511629104614,0.14425890147686,-0.737739503383636,0.581229150295258,0.343384653329849,-0.803810238838196,0.172660142183304,0.569278120994568,-0.737739503383636,0.581229150295258,0.343384653329849,-0.826912581920624,0.543511629104614,0.14425890147686,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.858134806156158,0.383422195911407,0.341455906629562,-0.745732545852661,0.394616782665253,0.536806046962738,-0.650364398956299,0.58708518743515,0.482034385204315,-0.737739503383636,0.581229150295258,0.343384653329849,-0.858134806156158,0.383422195911407,0.341455906629562,-0.803810238838196,0.172660142183304,0.569278120994568,-0.737739503383636,0.581229150295258,0.343384653329849,-0.650364398956299,0.58708518743515,0.482034385204315,-0.781746685504913,0.12085734307766,0.611772418022156,-0.652092397212982,0.274608939886093,0.706657886505127,-0.649826109409332,0.1081632822752,0.752347469329834,-0.188060313463211,0.0258429832756519,0.981817424297333,-0.25284281373024,0.156451910734177,0.954773962497711,-0.188060313463211,0.0258429832756519,0.981817424297333,-0.649826109409332,0.1081632822752,0.752347469329834,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.705813407897949,0.059078112244606,0.705929934978485, --0.188060313463211,0.0258429832756519,0.981817424297333,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.188060313463211,0.0258429832756519,0.981817424297333,-0.705813407897949,0.059078112244606,0.705929934978485,-0.763453900814056,0.207317247986794,0.611684262752533,-0.25284281373024,0.156451910734177,0.954773962497711,-0.891506910324097,0.0930751636624336,0.443342357873917,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.907294690608978,0.0782724991440773,0.413146078586578,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.919467449188232,0.0634551271796227,0.388011753559113,-0.907294690608978,0.0782724991440773,0.413146078586578,-0.762375354766846,0.213708147406578,0.610829532146454,-0.575689733028412,0.43614661693573,0.691633939743042,-0.331430584192276,0.358989834785461,0.872513592243195,-0.745248079299927,0.161823198199272,0.646852791309357,-0.331430584192276,0.358989834785461,0.872513592243195,-0.575689733028412,0.43614661693573,0.691633939743042,-0.652092397212982,0.274608939886093,0.706657886505127,-0.25284281373024,0.156451910734177,0.954773962497711,-0.763453900814056,0.207317247986794,0.611684262752533,-0.710642516613007,0.402679920196533,0.576919555664063,-0.331430584192276,0.358989834785461,0.872513592243195,-0.25284281373024,0.156451910734177,0.954773962497711,-0.745248079299927,0.161823198199272,0.646852791309357,-0.331430584192276,0.358989834785461,0.872513592243195,-0.710642516613007,0.402679920196533,0.576919555664063,-0.886231780052185,0.167720913887024,0.431813508272171,-0.870330512523651,0.153981164097786,0.467776238918304,-0.762375354766846,0.213708147406578,0.610829532146454,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.870330512523651,0.153981164097786,0.467776238918304,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.899417638778687,0.0698455348610878,0.431473612785339, --0.878066778182983,0.0984339118003845,0.468304842710495,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.85583233833313,0.110657230019569,0.505278170108795,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.859586298465729,0.110959939658642,0.498797833919525,-0.85583233833313,0.110657230019569,0.505278170108795,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.970032870769501,0.130484730005264,0.204963251948357,-0.936971724033356,0.28233477473259,0.205842211842537,-0.970032870769501,0.130484730005264,0.204963251948357,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.948900938034058,0.145196318626404,0.280187606811523,-0.970032870769501,0.130484730005264,0.204963251948357,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.970032870769501,0.130484730005264,0.204963251948357,-0.948900938034058,0.145196318626404,0.280187606811523,-0.898013353347778,0.300065010786057,0.321765452623367,-0.936971724033356,0.28233477473259,0.205842211842537,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.892426788806915,0.412409842014313,0.18300960958004,-0.907412171363831,0.0993990823626518,0.408317297697067,-0.892426788806915,0.412409842014313,0.18300960958004,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.936971724033356,0.28233477473259,0.205842211842537,-0.898013353347778,0.300065010786057,0.321765452623367,-0.834043562412262,0.422363489866257,0.354937255382538,-0.892426788806915,0.412409842014313,0.18300960958004,-0.936971724033356,0.28233477473259,0.205842211842537,-0.907412171363831,0.0993990823626518,0.408317297697067, --0.892426788806915,0.412409842014313,0.18300960958004,-0.834043562412262,0.422363489866257,0.354937255382538,-0.899417638778687,0.0698455348610878,0.431473612785339,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.574783682823181,0.210681706666946,0.790719330310822,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.335193157196045,0.135726362466812,0.932321786880493,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.80729615688324,0.0708622336387634,0.585876643657684,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.80729615688324,0.0708622336387634,0.585876643657684,-0.761776208877563,0.159230262041092,0.627967119216919,-0.335193157196045,0.135726362466812,0.932321786880493,-0.915169775485992,0.0964672192931175,0.391354590654373,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.90853887796402,0.0972727388143539,0.40631902217865,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.904675185680389,0.0934287831187248,0.415732890367508,-0.90853887796402,0.0972727388143539,0.40631902217865,-0.850952863693237,0.11118795722723,0.513338506221771,-0.825584471225739,0.0556592233479023,0.561526894569397, --0.885592103004456,-0.117163017392159,0.449443340301514,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.850952863693237,0.11118795722723,0.513338506221771,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.881876766681671,0.156258404254913,0.444833248853683,-0.825584471225739,0.0556592233479023,0.561526894569397,-0.568908989429474,0.364634901285172,0.737145841121674,-0.3499456346035,0.274282693862915,0.8957160115242,-0.790518581867218,0.002411242807284,0.612433254718781,-0.3499456346035,0.274282693862915,0.8957160115242,-0.568908989429474,0.364634901285172,0.737145841121674,-0.574783682823181,0.210681706666946,0.790719330310822,-0.335193157196045,0.135726362466812,0.932321786880493,-0.761776208877563,0.159230262041092,0.627967119216919,-0.703601121902466,0.332484751939774,0.628012180328369,-0.3499456346035,0.274282693862915,0.8957160115242,-0.335193157196045,0.135726362466812,0.932321786880493,-0.790518581867218,0.002411242807284,0.612433254718781,-0.3499456346035,0.274282693862915,0.8957160115242,-0.703601121902466,0.332484751939774,0.628012180328369,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.979690968990326,0.0236730091273785,0.199110999703407,-0.980603277683258,0.0181206651031971,0.195163428783417,-0.966796219348907,0.0449138544499874,0.251570612192154,-0.966120362281799,0.0451642386615276,0.254109561443329,-0.966796219348907,0.0449138544499874,0.251570612192154,-0.944680571556091,0.0620129816234112,0.322076231241226,-0.947731673717499,0.0680974274873734,0.311717063188553,-0.966120362281799,0.0451642386615276,0.254109561443329,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.935288906097412,0.243272989988327,0.257007420063019,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.967403948307037,-0.19027204811573,-0.167111486196518,-0.970339238643646,-0.193331658840179,0.145137429237366, --0.928280353546143,-0.170947059988976,0.330261677503586,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.970339238643646,-0.193331658840179,0.145137429237366,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.877142071723938,0.257609009742737,0.405289351940155,-0.935288906097412,0.243272989988327,0.257007420063019,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.854764640331268,0.434247642755508,0.28426456451416,-0.9179927110672,0.177842438220978,0.354487657546997,-0.854764640331268,0.434247642755508,0.28426456451416,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.935288906097412,0.243272989988327,0.257007420063019,-0.877142071723938,0.257609009742737,0.405289351940155,-0.802801370620728,0.432132750749588,0.410817712545395,-0.854764640331268,0.434247642755508,0.28426456451416,-0.935288906097412,0.243272989988327,0.257007420063019,-0.9179927110672,0.177842438220978,0.354487657546997,-0.854764640331268,0.434247642755508,0.28426456451416,-0.802801370620728,0.432132750749588,0.410817712545395,-0.881876766681671,0.156258404254913,0.444833248853683,-0.921152472496033,0.242753878235817,0.304218292236328,-0.94854873418808,0.0162112768739462,0.316215753555298,-0.68764317035675,-0.0471886731684208,0.72451376914978,-0.721725344657898,0.166565105319023,0.671839773654938,-0.68764317035675,-0.0471886731684208,0.72451376914978, --0.94854873418808,0.0162112768739462,0.316215753555298,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.601067662239075,-0.261352598667145,0.755256652832031,-0.92610377073288,-0.292241811752319,0.238592609763145,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.68764317035675,-0.0471886731684208,0.72451376914978,-0.601067662239075,-0.261352598667145,0.755256652832031,-0.68764317035675,-0.0471886731684208,0.72451376914978,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.969876885414124,0.175330132246017,0.169110134243965,-0.721725344657898,0.166565105319023,0.671839773654938,-0.998058378696442,-0.0307773221284151,0.0541491433978081,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.994471251964569,-0.0121743716299534,0.104301169514656,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.990293800830841,0.000989494030363858,0.138986557722092,-0.994471251964569,-0.0121743716299534,0.104301169514656,-0.984815239906311,0.116283245384693,0.128907635807991,-0.830115258693695,0.431543350219727,0.353099137544632,-0.649183750152588,0.397769004106522,0.64833664894104,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.649183750152588,0.397769004106522,0.64833664894104,-0.830115258693695,0.431543350219727,0.353099137544632,-0.921152472496033,0.242753878235817,0.304218292236328,-0.721725344657898,0.166565105319023,0.671839773654938,-0.969876885414124,0.175330132246017,0.169110134243965,-0.866828918457031,0.469911992549896,0.166704028844833,-0.649183750152588,0.397769004106522,0.64833664894104,-0.721725344657898,0.166565105319023,0.671839773654938,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.649183750152588,0.397769004106522,0.64833664894104,-0.866828918457031,0.469911992549896,0.166704028844833,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.984815239906311,0.116283245384693,0.128907635807991, --0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.989061295986176,-0.00785514060407877,0.147295877337456,-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.988536179065704,-0.00781740806996822,0.150781840085983,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.994130730628967,-0.0191587414592505,0.1064762622118,-0.988536179065704,-0.00781740806996822,0.150781840085983,-0.948151648044586,0.282218486070633,-0.146154284477234,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.965539634227753,0.259193807840347,0.0234902929514647,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.965539634227753,0.259193807840347,0.0234902929514647,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.948151648044586,0.282218486070633,-0.146154284477234, --0.965539634227753,0.259193807840347,0.0234902929514647,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.965539634227753,0.259193807840347,0.0234902929514647,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.93900191783905,-0.304208785295486,0.160413801670074,-0.94240802526474,-0.257382273674011,0.213591873645782,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.94240802526474,-0.257382273674011,0.213591873645782,-0.941263139247894,-0.228814080357552,0.248330056667328,-0.945272922515869,0.00988496094942093,0.326130986213684,-0.130153819918633,0.193926721811295,0.972343742847443,-0.118009239435196,0.0901520848274231,0.988911807537079,0.27520340681076,0.0847124978899956,0.957646548748016,0.208869874477386,0.164753541350365,0.963965654373169,0.27520340681076,0.0847124978899956,0.957646548748016,-0.118009239435196,0.0901520848274231,0.988911807537079,-0.127614736557007,-0.0326059870421886,0.991287708282471,0.282535374164581,-0.00665364880114794,0.959233820438385,0.27520340681076,0.0847124978899956,0.957646548748016,0.282535374164581,-0.00665364880114794,0.959233820438385,0.587504923343658,0.00948319490998983,0.809165000915527,0.565484941005707,0.0699168667197227,0.821789741516113,-0.580127060413361,-0.80225270986557,-0.140865981578827,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.468642711639404,-0.584188401699066,-0.662644624710083, --0.611642420291901,-0.490592271089554,0.620655059814453,-0.682653307914734,-0.155263811349869,0.714057147502899,0.17330701649189,-0.0628296434879303,0.982861697673798,0.20523139834404,-0.331974714994431,0.920691549777985,0.20523139834404,-0.331974714994431,0.920691549777985,0.17330701649189,-0.0628296434879303,0.982861697673798,0.0503877177834511,-0.0637078359723091,0.996695697307587,0.0763066858053207,-0.417371302843094,0.905526697635651,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.768169522285461,-0.555073916912079,0.319074511528015,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.803336977958679,-0.540861368179321,0.249235898256302,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.277549207210541,-0.10850915312767,0.954563856124878,0.141833782196045,-0.0881895050406456,0.985954225063324,0.0991356819868088,-0.400941520929337,0.910723984241486,0.0991356819868088,-0.400941520929337,0.910723984241486,0.141833782196045,-0.0881895050406456,0.985954225063324,-0.23263393342495,-0.0961992964148521,0.967795014381409,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.9666867852211,-0.0154904099181294,0.255493193864822,-0.717177093029022,-0.685138523578644,0.127444699406624,-0.717177093029022,-0.685138523578644,0.127444699406624, --0.9666867852211,-0.0154904099181294,0.255493193864822,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.583945155143738,-0.762057662010193,0.279778659343719,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.0978286787867546,-0.621704280376434,0.777118682861328,-0.0978286787867546,-0.621704280376434,0.777118682861328,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.362244516611099,-0.81382018327713,0.454395741224289,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.122856259346008,-0.580215871334076,0.805143356323242,-0.122856259346008,-0.580215871334076,0.805143356323242,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.290535598993301,-0.833319902420044,0.470283985137939,-0.366151511669159,-0.928801298141479,0.0571073777973652,-0.928280353546143,-0.170947059988976,0.330261677503586,-0.970339238643646,-0.193331658840179,0.145137429237366,-0.392173528671265,-0.919722676277161,-0.0176098681986332,-0.392173528671265,-0.919722676277161,-0.0176098681986332,-0.970339238643646,-0.193331658840179,0.145137429237366,-0.967403948307037,-0.19027204811573,-0.167111486196518,-0.443843692541122,-0.869031727313995,-0.218601703643799,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.92610377073288,-0.292241811752319,0.238592609763145, --0.601067662239075,-0.261352598667145,0.755256652832031,-0.249369755387306,-0.827082753181458,0.503734946250916,-0.249369755387306,-0.827082753181458,0.503734946250916,-0.601067662239075,-0.261352598667145,0.755256652832031,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.453250050544739,-0.875390589237213,0.168094336986542,-0.427178382873535,-0.896017134189606,-0.121127761900425,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.475014746189117,-0.876436233520508,-0.0788700059056282,-0.475014746189117,-0.876436233520508,-0.0788700059056282,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.765838265419006,-0.183012425899506,0.616440057754517,-0.415800213813782,-0.82390969991684,0.385075271129608,-0.415800213813782,-0.82390969991684,0.385075271129608,-0.765838265419006,-0.183012425899506,0.616440057754517,-0.913995802402496,-0.209973439574242,0.347164064645767,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.410520315170288,-0.91163182258606,-0.0200147889554501,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.482968419790268,-0.872684597969055,0.0718556493520737,-0.482968419790268,-0.872684597969055,0.0718556493520737,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.580127060413361,-0.80225270986557,-0.140865981578827,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.321032702922821,-0.0680899247527122,-0.944617211818695,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.106125302612782,-0.0547467805445194,-0.992844521999359,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.321032702922821,-0.0680899247527122,-0.944617211818695, -0.357091963291168,-0.0802728161215782,-0.93061363697052,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.106125302612782,-0.0547467805445194,-0.992844521999359,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.868885338306427,-0.0424795784056187,-0.493187189102173,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.984756588935852,0.0860742479562759,-0.151148214936256,0.996961891651154,0.0540988482534885,0.0560385398566723,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.990025520324707,0.120999224483967,-0.072171114385128,0.996961891651154,0.0540988482534885,0.0560385398566723,0.984756588935852,0.0860742479562759,-0.151148214936256,0.95380312204361,0.19058008491993,-0.232247248291969,0.996961891651154,0.0540988482534885,0.0560385398566723,0.940796434879303,0.037529218941927,0.336888253688812,0.925897538661957,-0.0276928935199976,0.376758277416229,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.996402859687805,0.0495557300746441,0.0687424540519714,0.979617714881897,0.0102590182796121,-0.200608760118484,0.982589840888977,0.0328721441328526,-0.182857125997543,0.972003519535065,0.0456170327961445,0.230495691299438,0.996402859687805,0.0495557300746441,0.0687424540519714,0.972003519535065,0.0456170327961445,0.230495691299438,0.992337584495544,0.0719796568155289,0.100424520671368,0.996081113815308,0.0883794128894806,0.00336791947484016, -0.250765800476074,-0.393147200345993,-0.8846195936203,0.205787897109985,-0.43680277466774,-0.875702381134033,0.251735776662827,-0.13088458776474,-0.958904683589935,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.205787897109985,-0.43680277466774,-0.875702381134033,0.390885144472122,-0.486017107963562,-0.781662464141846,0.44834902882576,-0.139073446393013,-0.882973253726959,0.251735776662827,-0.13088458776474,-0.958904683589935,0.251735776662827,-0.13088458776474,-0.958904683589935,0.44834902882576,-0.139073446393013,-0.882973253726959,0.488993525505066,-0.0602913647890091,-0.870201289653778,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.251735776662827,-0.13088458776474,-0.958904683589935,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.541523456573486,0.0144119746983051,-0.840562164783478,0.547020196914673,-0.186133503913879,-0.816163718700409,0.560758829116821,-0.0380145087838173,-0.82710599899292,0.576102674007416,0.0398704931139946,-0.816404342651367,0.52849805355072,0.0252384264022112,-0.848559260368347,0.547020196914673,-0.186133503913879,-0.816163718700409,0.52849805355072,0.0252384264022112,-0.848559260368347,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.516933262348175,-0.230008617043495,-0.824546039104462,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,0.0551412850618362,-0.820448160171509,-0.569055676460266,0.0654933154582977,-0.833352625370026,-0.548847854137421,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,0.0458167567849159,-0.794797599315643,-0.605142712593079,0.0551412850618362,-0.820448160171509,-0.569055676460266,0.0551412850618362,-0.820448160171509,-0.569055676460266,0.0458167567849159,-0.794797599315643,-0.605142712593079,0.106486827135086,-0.778541445732117,-0.618493258953094,0.117023155093193,-0.799739181995392,-0.588831901550293,0.0654933154582977,-0.833352625370026,-0.548847854137421, -0.0551412850618362,-0.820448160171509,-0.569055676460266,0.117023155093193,-0.799739181995392,-0.588831901550293,0.126767873764038,-0.810833990573883,-0.571382582187653,0.51786470413208,-0.852376520633698,0.0725972205400467,0.464053809642792,-0.874072670936584,-0.143704861402512,0.884451627731323,-0.373648852109909,-0.279520660638809,0.923657715320587,-0.376178413629532,0.0731174126267433,0.464053809642792,-0.874072670936584,-0.143704861402512,0.438863754272461,-0.852788746356964,-0.283107727766037,0.821834862232208,-0.345841467380524,-0.452748358249664,0.884451627731323,-0.373648852109909,-0.279520660638809,0.884451627731323,-0.373648852109909,-0.279520660638809,0.821834862232208,-0.345841467380524,-0.452748358249664,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.923657715320587,-0.376178413629532,0.0731174126267433,0.884451627731323,-0.373648852109909,-0.279520660638809,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.907388210296631,0.0635263249278069,-0.415464758872986,0.912824213504791,0.0662926584482193,-0.402935802936554,0.866058588027954,0.0650843977928162,-0.495688021183014,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.866058588027954,0.0650843977928162,-0.495688021183014,0.753824532032013,0.0120829222723842,-0.656964600086212,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.46382150053978,-0.740590929985046,-0.486204266548157,0.489569514989853,-0.755737662315369,-0.434951156377792,0.398767828941345,-0.803536295890808,-0.44194307923317,0.381309062242508,-0.782062947750092,-0.492931127548218,0.46382150053978,-0.740590929985046,-0.486204266548157,0.381309062242508,-0.782062947750092,-0.492931127548218,0.359698057174683,-0.776623547077179,-0.517178118228912,0.435355752706528,-0.743057668209076,-0.508262455463409,0.497879147529602,-0.865346670150757,0.0573717728257179,0.420704245567322,-0.888998806476593,-0.180801391601563, -0.900104403495789,-0.415668904781342,-0.130504101514816,0.898619055747986,-0.418207377195358,0.132613226771355,0.420704245567322,-0.888998806476593,-0.180801391601563,0.387941062450409,-0.902830421924591,-0.185469508171082,0.885625779628754,-0.428801566362381,-0.178314879536629,0.900104403495789,-0.415668904781342,-0.130504101514816,0.900104403495789,-0.415668904781342,-0.130504101514816,0.885625779628754,-0.428801566362381,-0.178314879536629,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.898619055747986,-0.418207377195358,0.132613226771355,0.900104403495789,-0.415668904781342,-0.130504101514816,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.987738251686096,-0.10796906799078,0.1127645149827,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.993456125259399,-0.0716922953724861,-0.0889109894633293,0.986385881900787,0.129490092396736,-0.101366467773914,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.972169041633606,-0.163636535406113,-0.167661264538765,0.932737112045288,-0.342042773962021,-0.114053167402744,0.549306571483612,-0.810717701911926,-0.202482223510742,0.548184633255005,-0.824028193950653,-0.143077865242958,0.423574149608612,-0.896063446998596,-0.132872730493546,0.431833833456039,-0.882030606269836,-0.188524648547173,0.549306571483612,-0.810717701911926,-0.202482223510742,0.431833833456039,-0.882030606269836,-0.188524648547173,0.433151990175247,-0.867169499397278,-0.245756685733795,0.552260160446167,-0.79054182767868,-0.264673978090286,0.967489182949066,0.073288656771183,-0.242060959339142,0.986148297786713,0.0842926800251007,-0.142850503325462,0.990463435649872,-0.0371588617563248,-0.132670491933823,0.967431664466858,-0.0304344762116671,-0.251296430826187,0.986148297786713,0.0842926800251007,-0.142850503325462,0.990612149238586,0.0857185050845146,-0.106488816440105,0.992330133914948,-0.0447207093238831,-0.115242637693882, -0.990463435649872,-0.0371588617563248,-0.132670491933823,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.947352945804596,-0.084156908094883,-0.308933764696121,0.89838719367981,-0.352516740560532,-0.261977761983871,0.896174132823944,-0.440976023674011,-0.0491107478737831,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.896174132823944,-0.440976023674011,-0.0491107478737831,0.85398256778717,-0.5202556848526,0.00691878609359264,0.988096594810486,0.0418830551207066,-0.148023575544357,3.14041017190902e-06,-0.772840142250061,-0.634600639343262,1.52039376644098e-08,-0.921437203884125,-0.388527274131775,0.128131896257401,-0.914434194564819,-0.383917152881622,0.108572572469711,-0.770943105220795,-0.627581655979156,1.52039376644098e-08,-0.921437203884125,-0.388527274131775,2.66085771727376e-06,-0.990090310573578,-0.140432059764862,0.138497367501259,-0.980665802955627,-0.138249680399895,0.128131896257401,-0.914434194564819,-0.383917152881622,0.128131896257401,-0.914434194564819,-0.383917152881622,0.138497367501259,-0.980665802955627,-0.138249680399895,0.227555468678474,-0.966486871242523,-0.118834026157856,0.214124009013176,-0.913648962974548,-0.345537900924683,0.108572572469711,-0.770943105220795,-0.627581655979156,0.128131896257401,-0.914434194564819,-0.383917152881622,0.214124009013176,-0.913648962974548,-0.345537900924683,0.187623992562294,-0.789631307125092,-0.584191501140594,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.103935718536377,-0.164655655622482,-0.980859696865082,0.0756061896681786,-0.17784771323204,-0.981149315834045,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.293439120054245,-0.588329136371613,-0.7535001039505,0.33074101805687,-0.145882070064545,-0.932377994060516,0.103935718536377,-0.164655655622482,-0.980859696865082,0.103935718536377,-0.164655655622482,-0.980859696865082,0.33074101805687,-0.145882070064545,-0.932377994060516,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.106125302612782,-0.0547467805445194,-0.992844521999359, -0.0756061896681786,-0.17784771323204,-0.981149315834045,0.103935718536377,-0.164655655622482,-0.980859696865082,0.106125302612782,-0.0547467805445194,-0.992844521999359,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.512175977230072,-0.466066777706146,-0.721427440643311,0.441854745149612,-0.315789490938187,-0.83966737985611,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.441854745149612,-0.315789490938187,-0.83966737985611,0.589899063110352,-0.137920513749123,-0.795611083507538,0.628012835979462,0.0660990849137306,-0.775390684604645,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.628012835979462,0.0660990849137306,-0.775390684604645,0.49469667673111,0.0547363348305225,-0.867340207099915,0.192265674471855,0.0178321488201618,-0.981180846691132,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.192265674471855,0.0178321488201618,-0.981180846691132,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.49469667673111,0.0547363348305225,-0.867340207099915,0.511730790138245,0.0416954979300499,-0.858133494853973,0.157864987850189,0.0144887296482921,-0.987354516983032,0.192265674471855,0.0178321488201618,-0.981180846691132,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.157864987850189,0.0144887296482921,-0.987354516983032,0.511730790138245,0.0416954979300499,-0.858133494853973,0.404185056686401,-0.0720401108264923,-0.911835968494415,0.157864987850189,0.0144887296482921,-0.987354516983032,0.368370145559311,-0.02103091776371,-0.929441332817078,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.192265674471855,0.0178321488201618,-0.981180846691132,0.516204953193665,-0.739144563674927,-0.432663559913635,0.445797830820084,-0.750705003738403,-0.487551361322403,0.696743011474609,-0.360330164432526,-0.62025111913681,0.793203890323639,-0.334265559911728,-0.509012937545776,0.445797830820084,-0.750705003738403,-0.487551361322403, -0.468962371349335,-0.762415885925293,-0.445865750312805,0.72435075044632,-0.381623566150665,-0.574177205562592,0.696743011474609,-0.360330164432526,-0.62025111913681,0.696743011474609,-0.360330164432526,-0.62025111913681,0.72435075044632,-0.381623566150665,-0.574177205562592,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.793203890323639,-0.334265559911728,-0.509012937545776,0.696743011474609,-0.360330164432526,-0.62025111913681,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.455715090036392,-0.712582349777222,-0.533432424068451,0.37758857011795,-0.616982102394104,-0.690478026866913,0.461122572422028,-0.262200891971588,-0.847712635993958,0.632416069507599,-0.348405539989471,-0.691855251789093,0.37758857011795,-0.616982102394104,-0.690478026866913,0.63243442773819,-0.766274094581604,-0.11336162686348,0.941153645515442,-0.336342543363571,0.0332188718020916,0.461122572422028,-0.262200891971588,-0.847712635993958,0.461122572422028,-0.262200891971588,-0.847712635993958,0.941153645515442,-0.336342543363571,0.0332188718020916,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.632416069507599,-0.348405539989471,-0.691855251789093,0.461122572422028,-0.262200891971588,-0.847712635993958,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.636378884315491,-0.0589766092598438,-0.769118785858154,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.976782023906708,-0.096743531525135,-0.191147983074188,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.651831209659576,-0.0200693961232901,-0.758098483085632, -0.636378884315491,-0.0589766092598438,-0.769118785858154,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.504914164543152,-0.843706130981445,0.182268023490906,0.412487804889679,-0.908762454986572,-0.0632809773087502,0.936624050140381,-0.349277704954147,0.0272110253572464,0.901105523109436,-0.274987131357193,0.33524751663208,0.412487804889679,-0.908762454986572,-0.0632809773087502,0.350622594356537,-0.929238021373749,-0.116534858942032,0.906976282596588,-0.401439964771271,-0.12743604183197,0.936624050140381,-0.349277704954147,0.0272110253572464,0.936624050140381,-0.349277704954147,0.0272110253572464,0.906976282596588,-0.401439964771271,-0.12743604183197,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.901105523109436,-0.274987131357193,0.33524751663208,0.936624050140381,-0.349277704954147,0.0272110253572464,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.925897538661957,-0.0276928935199976,0.376758277416229,0.343556195497513,-0.879236817359924,-0.330017954111099,0.318479269742966,-0.806861102581024,-0.49753999710083,0.708132803440094,-0.369493752717972,-0.601682782173157,0.803960502147675,-0.401102036237717,-0.439049750566483,0.318479269742966,-0.806861102581024,-0.49753999710083,0.43664076924324,-0.888041436672211,-0.143969655036926,0.849683105945587,-0.476386874914169,-0.226040348410606,0.708132803440094,-0.369493752717972,-0.601682782173157,0.708132803440094,-0.369493752717972,-0.601682782173157,0.849683105945587,-0.476386874914169,-0.226040348410606,0.98529464006424,-0.116540789604187,-0.124951049685478,0.889032244682312,-0.0361546277999878,-0.456414878368378,0.803960502147675,-0.401102036237717,-0.439049750566483,0.708132803440094,-0.369493752717972,-0.601682782173157,0.889032244682312,-0.0361546277999878,-0.456414878368378,0.92538183927536,-0.00213020131923258,-0.379030108451843,0.98529464006424,-0.116540789604187,-0.124951049685478,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.925759255886078,0.076020248234272,-0.37039253115654, -0.889032244682312,-0.0361546277999878,-0.456414878368378,0.976457178592682,0.162414789199829,-0.141960471868515,0.925759255886078,0.076020248234272,-0.37039253115654,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.978084087371826,0.152315065264702,0.141956150531769,0.925759255886078,0.076020248234272,-0.37039253115654,0.928477048873901,0.121489353477955,-0.350956588983536,0.92538183927536,-0.00213020131923258,-0.379030108451843,0.889032244682312,-0.0361546277999878,-0.456414878368378,0.992337584495544,0.0719796568155289,0.100424520671368,0.972003519535065,0.0456170327961445,0.230495691299438,0.96244889497757,-0.0475795865058899,0.267260789871216,0.994123876094818,-0.0412094928324223,0.100097432732582,0.972003519535065,0.0456170327961445,0.230495691299438,0.982589840888977,0.0328721441328526,-0.182857125997543,0.986677527427673,-0.029893996194005,-0.159917399287224,0.96244889497757,-0.0475795865058899,0.267260789871216,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.407952696084976,-0.901816725730896,-0.142482578754425,0.880153298377991,-0.453859508037567,-0.13907478749752,0.889515578746796,-0.455092877149582,0.0406490974128246,0.407952696084976,-0.901816725730896,-0.142482578754425,0.381359219551086,-0.919612050056458,-0.0942273810505867,0.878848016262054,-0.460666686296463,-0.124146290123463,0.880153298377991,-0.453859508037567,-0.13907478749752,0.880153298377991,-0.453859508037567,-0.13907478749752,0.878848016262054,-0.460666686296463,-0.124146290123463,0.992330133914948,-0.0447207093238831,-0.115242637693882,0.995616734027863,-0.0409315750002861,-0.0840950906276703,0.889515578746796,-0.455092877149582,0.0406490974128246,0.880153298377991,-0.453859508037567,-0.13907478749752,0.995616734027863,-0.0409315750002861,-0.0840950906276703,0.994123876094818,-0.0412094928324223,0.100097432732582,0.992330133914948,-0.0447207093238831,-0.115242637693882,0.990612149238586,0.0857185050845146,-0.106488816440105,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.995616734027863,-0.0409315750002861,-0.0840950906276703, -0.993068099021912,0.097786158323288,-0.065219409763813,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.990612149238586,0.0857185050845146,-0.106488816440105,0.990515828132629,0.087090939283371,-0.106271043419838,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.992337584495544,0.0719796568155289,0.100424520671368,0.994123876094818,-0.0412094928324223,0.100097432732582,0.995616734027863,-0.0409315750002861,-0.0840950906276703,0.563137412071228,-0.491253852844238,-0.664489150047302,0.469654202461243,-0.395616501569748,-0.789247989654541,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.61615127325058,-0.103378012776375,-0.780814051628113,0.469654202461243,-0.395616501569748,-0.789247989654541,0.641406059265137,-0.378595292568207,-0.667280912399292,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.61615127325058,-0.103378012776375,-0.780814051628113,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.513168811798096,-0.037437804043293,-0.857470810413361,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.780752301216125,-0.130897298455238,-0.610976099967957,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.513168811798096,-0.037437804043293,-0.857470810413361,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.488993525505066,-0.0602913647890091,-0.870201289653778, -0.514422237873077,-0.0855942517518997,-0.853254556655884,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.590964138507843,-0.103098534047604,-0.800082564353943,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.514422237873077,-0.0855942517518997,-0.853254556655884,0.56365704536438,-0.122223049402237,-0.816916227340698,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.555411875247955,0.00989418476819992,-0.83151650428772,0.541523456573486,0.0144119746983051,-0.840562164783478,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.339330106973648,-0.710198104381561,-0.616825580596924,0.363881915807724,-0.727092683315277,-0.582173526287079,0.31199836730957,-0.75174742937088,-0.580975770950317,0.296085834503174,-0.734459102153778,-0.610657870769501,0.339330106973648,-0.710198104381561,-0.616825580596924,0.296085834503174,-0.734459102153778,-0.610657870769501,0.282901287078857,-0.715390801429749,-0.638891756534576,0.316736936569214,-0.703204691410065,-0.636538326740265,0.295892357826233,-0.683634638786316,-0.667151749134064,0.316736936569214,-0.703204691410065,-0.636538326740265,0.282901287078857,-0.715390801429749,-0.638891756534576,0.272227436304092,-0.695810735225677,-0.664635062217712,0.295892357826233,-0.683634638786316,-0.667151749134064,0.272227436304092,-0.695810735225677,-0.664635062217712,0.268839001655579,-0.678394854068756,-0.683744192123413,0.283764809370041,-0.66997879743576,-0.6860072016716,0.432826220989227,-0.292234122753143,-0.852795779705048,0.400332540273666,-0.2842738032341,-0.87116140127182,0.413349270820618,-0.204832509160042,-0.8872349858284,0.464342623949051,-0.191317722201347,-0.864744663238525,0.432826220989227,-0.292234122753143,-0.852795779705048,0.464342623949051,-0.191317722201347,-0.864744663238525,0.532904505729675,-0.147325813770294,-0.833251416683197,0.469946354627609,-0.278394103050232,-0.837643802165985,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,2.57396004599286e-06,-0.761352777481079,-0.648337841033936, -0.0498609691858292,-0.752893686294556,-0.656250715255737,0.0458167567849159,-0.794797599315643,-0.605142712593079,2.57396004599286e-06,-0.761352777481079,-0.648337841033936,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,0.105245932936668,-0.618587851524353,-0.778634905815125,0.0498609691858292,-0.752893686294556,-0.656250715255737,0.0498609691858292,-0.752893686294556,-0.656250715255737,0.105245932936668,-0.618587851524353,-0.778634905815125,0.156661868095398,-0.61191338300705,-0.775254189968109,0.102983109652996,-0.740106999874115,-0.664557099342346,0.0458167567849159,-0.794797599315643,-0.605142712593079,0.0498609691858292,-0.752893686294556,-0.656250715255737,0.102983109652996,-0.740106999874115,-0.664557099342346,0.106486827135086,-0.778541445732117,-0.618493258953094,0.178336322307587,-0.24917970597744,-0.951895833015442,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,0.18702594935894,-0.0647337883710861,-0.980219721794128,0.178336322307587,-0.24917970597744,-0.951895833015442,0.18702594935894,-0.0647337883710861,-0.980219721794128,0.275702863931656,-0.086119182407856,-0.957377374172211,0.255999326705933,-0.267593652009964,-0.928901493549347,0.383055806159973,-0.260195881128311,-0.886321723461151,0.395990818738937,-0.0959687009453773,-0.913225829601288,0.405421048402786,0.0109599707648158,-0.914064407348633,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.383055806159973,-0.260195881128311,-0.886321723461151,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.369658052921295,-0.29566553235054,-0.880871653556824,0.277917355298996,-0.700341641902924,-0.657482743263245,0.180045038461685,-0.541619896888733,-0.821116089820862,0.258719444274902,-0.161429896950722,-0.952367842197418,0.477159678936005,-0.261803686618805,-0.838914513587952,0.180045038461685,-0.541619896888733,-0.821116089820862,0.555457890033722,-0.70824271440506,-0.435728013515472,0.741796910762787,-0.154640659689903,-0.652551591396332, -0.258719444274902,-0.161429896950722,-0.952367842197418,0.258719444274902,-0.161429896950722,-0.952367842197418,0.741796910762787,-0.154640659689903,-0.652551591396332,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.264031618833542,0.0021013414952904,-0.964511752128601,0.477159678936005,-0.261803686618805,-0.838914513587952,0.258719444274902,-0.161429896950722,-0.952367842197418,0.264031618833542,0.0021013414952904,-0.964511752128601,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.288455188274384,0.0432411171495914,-0.95651650428772,0.264031618833542,0.0021013414952904,-0.964511752128601,0.459886282682419,0.0185286644846201,-0.887784481048584,0.288455188274384,0.0432411171495914,-0.95651650428772,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.288455188274384,0.0432411171495914,-0.95651650428772,0.547591149806976,0.0530366972088814,-0.835063576698303,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.264031618833542,0.0021013414952904,-0.964511752128601,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.89840167760849,0.0240881759673357,-0.438513457775116,0.95315283536911,0.0197086539119482,-0.301846146583557,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.95409882068634,0.0348662063479424,-0.297455161809921,0.95315283536911,0.0197086539119482,-0.301846146583557,0.89840167760849,0.0240881759673357,-0.438513457775116,0.91331148147583,0.0418378300964832,-0.405106961727142,0.95315283536911,0.0197086539119482,-0.301846146583557,0.999887347221375,-0.00283974967896938,0.0147343929857016,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.527743816375732,-0.766555488109589,-0.365894824266434,0.528576493263245,-0.770433664321899,-0.356424927711487,0.423097163438797,-0.845155298709869,-0.326651573181152,0.42674246430397,-0.838199734687805,-0.33957627415657, -0.527743816375732,-0.766555488109589,-0.365894824266434,0.42674246430397,-0.838199734687805,-0.33957627415657,0.424859493970871,-0.83431738615036,-0.351296126842499,0.532298564910889,-0.759147047996521,-0.374638319015503,0.50800234079361,-0.772281050682068,-0.381465196609497,0.532298564910889,-0.759147047996521,-0.374638319015503,0.424859493970871,-0.83431738615036,-0.351296126842499,0.413723528385162,-0.825479507446289,-0.383948534727097,0.50800234079361,-0.772281050682068,-0.381465196609497,0.413723528385162,-0.825479507446289,-0.383948534727097,0.398767828941345,-0.803536295890808,-0.44194307923317,0.489569514989853,-0.755737662315369,-0.434951156377792,0.924625039100647,-0.204379692673683,-0.321399390697479,0.862016081809998,-0.237058743834496,-0.448030591011047,0.884316444396973,-0.198062226176262,-0.422795385122299,0.966464221477509,-0.141532048583031,-0.214278906583786,0.924625039100647,-0.204379692673683,-0.321399390697479,0.966464221477509,-0.141532048583031,-0.214278906583786,0.968531847000122,-0.04851333796978,-0.24411541223526,0.929381966590881,-0.123729966580868,-0.347764313220978,0.394593596458435,-0.746646106243134,-0.535551607608795,0.435355752706528,-0.743057668209076,-0.508262455463409,0.359698057174683,-0.776623547077179,-0.517178118228912,0.334459483623505,-0.768839836120605,-0.544997334480286,0.394593596458435,-0.746646106243134,-0.535551607608795,0.334459483623505,-0.768839836120605,-0.544997334480286,0.31199836730957,-0.75174742937088,-0.580975770950317,0.363881915807724,-0.727092683315277,-0.582173526287079,0.750636577606201,-0.331162452697754,-0.571730852127075,0.625449419021606,-0.363071113824844,-0.690646409988403,0.692737460136414,-0.268014371395111,-0.669539391994476,0.868971228599548,-0.212771654129028,-0.446785569190979,0.750636577606201,-0.331162452697754,-0.571730852127075,0.868971228599548,-0.212771654129028,-0.446785569190979,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.792401313781738,-0.21995422244072,-0.568964242935181,0.827804982662201,-0.130916640162468,-0.54552698135376, -0.82582426071167,0.0285451002418995,-0.563204646110535,0.823549389839172,0.0683218166232109,-0.563115000724792,0.813247382640839,0.00783070549368858,-0.58186537027359,0.827804982662201,-0.130916640162468,-0.54552698135376,0.813247382640839,0.00783070549368858,-0.58186537027359,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.799626886844635,-0.163402855396271,-0.577837646007538,0.456584513187408,-0.824917614459991,-0.333228886127472,0.435094058513641,-0.765399038791656,-0.47419136762619,0.81584370136261,-0.308632999658585,-0.489024102687836,0.858951389789581,-0.362426906824112,-0.361731052398682,0.435094058513641,-0.765399038791656,-0.47419136762619,0.471450209617615,-0.862914264202118,-0.181971609592438,0.913533270359039,-0.369183957576752,-0.170763596892357,0.81584370136261,-0.308632999658585,-0.489024102687836,0.81584370136261,-0.308632999658585,-0.489024102687836,0.913533270359039,-0.369183957576752,-0.170763596892357,0.986677527427673,-0.029893996194005,-0.159917399287224,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.858951389789581,-0.362426906824112,-0.361731052398682,0.81584370136261,-0.308632999658585,-0.489024102687836,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.986677527427673,-0.029893996194005,-0.159917399287224,0.982589840888977,0.0328721441328526,-0.182857125997543,0.89024543762207,0.0432123914361,-0.453426659107208,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.921634495258331,0.0250504910945892,-0.387249529361725,0.89024543762207,0.0432123914361,-0.453426659107208,0.982589840888977,0.0328721441328526,-0.182857125997543,0.979617714881897,0.0102590182796121,-0.200608760118484,0.89024543762207,0.0432123914361,-0.453426659107208,0.930461645126343,0.044032908976078,-0.36373382806778,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.987849771976471,0.0212721824645996,-0.153949171304703, -0.99705582857132,0.0125236827880144,-0.0756492763757706,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.989431262016296,0.136282756924629,-0.0495256967842579,0.99705582857132,0.0125236827880144,-0.0756492763757706,0.987849771976471,0.0212721824645996,-0.153949171304703,0.9805948138237,0.130027592182159,-0.146719142794609,0.99705582857132,0.0125236827880144,-0.0756492763757706,0.994628012180328,-0.00375852175056934,0.103445485234261,0.987738251686096,-0.10796906799078,0.1127645149827,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.452444911003113,-0.88996547460556,-0.0570528209209442,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.452444911003113,-0.88996547460556,-0.0570528209209442,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.423574149608612,-0.896063446998596,-0.132872730493546,0.548184633255005,-0.824028193950653,-0.143077865242958,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.979054927825928,-0.184137359261513,-0.086860828101635,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.998157441616058,0.0592895559966564,0.0129011496901512,0.976446330547333,-0.207822889089584,-0.057985320687294,0.530801117420197,-0.783872842788696,-0.322170048952103,0.552260160446167,-0.79054182767868,-0.264673978090286,0.433151990175247,-0.867169499397278,-0.245756685733795, -0.426663398742676,-0.852746307849884,-0.301300495862961,0.530801117420197,-0.783872842788696,-0.322170048952103,0.426663398742676,-0.852746307849884,-0.301300495862961,0.423097163438797,-0.845155298709869,-0.326651573181152,0.528576493263245,-0.770433664321899,-0.356424927711487,0.882255256175995,-0.269002169370651,-0.386346369981766,0.833502888679504,-0.23296232521534,-0.501000463962555,0.78961306810379,-0.233641311526299,-0.567382454872131,0.895867526531219,-0.252381771802902,-0.365684121847153,0.882255256175995,-0.269002169370651,-0.386346369981766,0.895867526531219,-0.252381771802902,-0.365684121847153,0.942210137844086,-0.189072623848915,-0.276571184396744,0.904816269874573,-0.24091811478138,-0.351092487573624,0.947976529598236,-0.151237607002258,-0.280121088027954,0.94556999206543,-0.0409093052148819,-0.322837442159653,0.952481865882874,0.000842949375510216,-0.304594099521637,0.960871279239655,-0.0276883840560913,-0.275608122348785,0.947976529598236,-0.151237607002258,-0.280121088027954,0.960871279239655,-0.0276883840560913,-0.275608122348785,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.95521467924118,-0.211122363805771,-0.207345873117447,0.880417287349701,0.0260239727795124,-0.473484963178635,0.919324100017548,0.0491604432463646,-0.390418291091919,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.919324100017548,0.0491604432463646,-0.390418291091919,0.967489182949066,0.073288656771183,-0.242060959339142,0.967431664466858,-0.0304344762116671,-0.251296430826187,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.919324100017548,0.0491604432463646,-0.390418291091919,0.880417287349701,0.0260239727795124,-0.473484963178635,0.947352945804596,-0.084156908094883,-0.308933764696121,0.988860845565796,0.0708148032426834,-0.13091829419136,0.990515828132629,0.087090939283371,-0.106271043419838,0.990612149238586,0.0857185050845146,-0.106488816440105,0.986148297786713,0.0842926800251007,-0.142850503325462, -0.988860845565796,0.0708148032426834,-0.13091829419136,0.986148297786713,0.0842926800251007,-0.142850503325462,0.967489182949066,0.073288656771183,-0.242060959339142,0.988096594810486,0.0418830551207066,-0.148023575544357,0.53996068239212,-0.642871737480164,-0.543284833431244,0.54840362071991,-0.612563192844391,-0.569227397441864,0.399628847837448,-0.677889943122864,-0.617059230804443,0.378362953662872,-0.679854929447174,-0.628202855587006,0.53996068239212,-0.642871737480164,-0.543284833431244,0.378362953662872,-0.679854929447174,-0.628202855587006,0.391568809747696,-0.792815148830414,-0.467030912637711,0.549508213996887,-0.764573931694031,-0.336849242448807,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.794481456279755,-0.603172719478607,-0.0705816969275475,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.85398256778717,-0.5202556848526,0.00691878609359264,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.900180280208588,-0.423967570066452,-0.0996347591280937,0.941188633441925,-0.298583924770355,-0.158151000738144,0.92946070432663,-0.337410181760788,-0.149188429117203,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.92946070432663,-0.337410181760788,-0.149188429117203,0.904228806495667,-0.397547334432602,-0.155969187617302,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.993068099021912,0.097786158323288,-0.065219409763813,0.990515828132629,0.087090939283371,-0.106271043419838,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.873746514320374,-0.463690847158432,-0.146826222538948,0.993068099021912,0.097786158323288,-0.065219409763813,0.873746514320374,-0.463690847158432,-0.146826222538948,0.904228806495667,-0.397547334432602,-0.155969187617302,0.996081113815308,0.0883794128894806,0.00336791947484016,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538, --5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,0.331673711538315,-0.108054272830486,-0.937185525894165,0.370375901460648,-0.0389966443181038,-0.928063035011292,-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,0.148334860801697,-0.447466164827347,-0.881913065910339,0.331673711538315,-0.108054272830486,-0.937185525894165,0.331673711538315,-0.108054272830486,-0.937185525894165,0.148334860801697,-0.447466164827347,-0.881913065910339,0.121410027146339,-0.550902009010315,-0.825691640377045,0.287211626768112,-0.154459059238434,-0.945331573486328,0.370375901460648,-0.0389966443181038,-0.928063035011292,0.331673711538315,-0.108054272830486,-0.937185525894165,0.287211626768112,-0.154459059238434,-0.945331573486328,0.341228455305099,-0.0394069999456406,-0.939153969287872,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.357091963291168,-0.0802728161215782,-0.93061363697052,0.405421048402786,0.0109599707648158,-0.914064407348633,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.331362664699554,0.0784346461296082,-0.940237700939178,0.329432427883148,0.157070621848106,-0.931022584438324,1.27130106193363e-05,0.13537959754467,-0.990793883800507,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,0.376688778400421,0.0253040362149477,-0.925994157791138,0.368370145559311,-0.02103091776371,-0.929441332817078,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.321032702922821,-0.0680899247527122,-0.944617211818695,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.404185056686401,-0.0720401108264923,-0.911835968494415, -0.413349270820618,-0.204832509160042,-0.8872349858284,0.372428387403488,-0.163693055510521,-0.913510680198669,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.372428387403488,-0.163693055510521,-0.913510680198669,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.357091963291168,-0.0802728161215782,-0.93061363697052,0.321032702922821,-0.0680899247527122,-0.944617211818695,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.368370145559311,-0.02103091776371,-0.929441332817078,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.555411875247955,0.00989418476819992,-0.83151650428772,0.800975918769836,0.0486926808953285,-0.596713244915009,0.81552517414093,0.0596523098647594,-0.575638949871063,0.541523456573486,0.0144119746983051,-0.840562164783478,0.800975918769836,0.0486926808953285,-0.596713244915009,0.511730790138245,0.0416954979300499,-0.858133494853973,0.49469667673111,0.0547363348305225,-0.867340207099915,0.81552517414093,0.0596523098647594,-0.575638949871063,0.697140097618103,-0.0760893598198891,-0.712885737419128,0.404185056686401,-0.0720401108264923,-0.911835968494415,0.511730790138245,0.0416954979300499,-0.858133494853973,0.800975918769836,0.0486926808953285,-0.596713244915009,0.697140097618103,-0.0760893598198891,-0.712885737419128,0.800975918769836,0.0486926808953285,-0.596713244915009,0.555411875247955,0.00989418476819992,-0.83151650428772,0.635299921035767,-0.0795372202992439,-0.768158614635468,0.590964138507843,-0.103098534047604,-0.800082564353943,0.56365704536438,-0.122223049402237,-0.816916227340698,0.576102674007416,0.0398704931139946,-0.816404342651367,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.590964138507843,-0.103098534047604,-0.800082564353943,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.532904505729675,-0.147325813770294,-0.833251416683197, -0.635299921035767,-0.0795372202992439,-0.768158614635468,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.513168811798096,-0.037437804043293,-0.857470810413361,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.514422237873077,-0.0855942517518997,-0.853254556655884,0.488993525505066,-0.0602913647890091,-0.870201289653778,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.528671145439148,-0.128377139568329,-0.839062631130219,0.56365704536438,-0.122223049402237,-0.816916227340698,0.514422237873077,-0.0855942517518997,-0.853254556655884,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.528671145439148,-0.128377139568329,-0.839062631130219,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.408123046159744,-0.107793182134628,-0.906540811061859,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.780752301216125,-0.130897298455238,-0.610976099967957,0.692737460136414,-0.268014371395111,-0.669539391994476,0.469770878553391,-0.16160424053669,-0.867870628833771,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.469770878553391,-0.16160424053669,-0.867870628833771,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.408123046159744,-0.107793182134628,-0.906540811061859,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.868885338306427,-0.0424795784056187,-0.493187189102173,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.823549389839172,0.0683218166232109,-0.563115000724792,0.842628657817841,0.0312162972986698,-0.537589430809021, -0.868885338306427,-0.0424795784056187,-0.493187189102173,0.842628657817841,0.0312162972986698,-0.537589430809021,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.993614196777344,-0.112306877970695,0.0108647383749485,0.780752301216125,-0.130897298455238,-0.610976099967957,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.993614196777344,-0.112306877970695,0.0108647383749485,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.651831209659576,-0.0200693961232901,-0.758098483085632,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.636378884315491,-0.0589766092598438,-0.769118785858154,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.976782023906708,-0.096743531525135,-0.191147983074188,0.884316444396973,-0.198062226176262,-0.422795385122299,0.768566012382507,-0.143427550792694,-0.62348610162735,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.768566012382507,-0.143427550792694,-0.62348610162735,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.651831209659576,-0.0200693961232901,-0.758098483085632,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.999887347221375,-0.00283974967896938,0.0147343929857016, -0.915174961090088,-0.0421641208231449,0.400845289230347,0.896405398845673,-0.0819698721170425,0.435589581727982,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.915174961090088,-0.0421641208231449,0.400845289230347,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.896405398845673,-0.0819698721170425,0.435589581727982,0.980044305324554,-0.0478119067847729,0.192943409085274,0.976782023906708,-0.096743531525135,-0.191147983074188,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.915174961090088,-0.0421641208231449,0.400845289230347,0.980044305324554,-0.0478119067847729,0.192943409085274,0.915174961090088,-0.0421641208231449,0.400845289230347,0.999887347221375,-0.00283974967896938,0.0147343929857016,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.95409882068634,0.0348662063479424,-0.297455161809921,0.91331148147583,0.0418378300964832,-0.405106961727142,0.912824213504791,0.0662926584482193,-0.402935802936554,0.935791373252869,0.0217018183320761,-0.351885586977005,0.95409882068634,0.0348662063479424,-0.297455161809921,0.935791373252869,0.0217018183320761,-0.351885586977005,0.968531847000122,-0.04851333796978,-0.24411541223526,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.547591149806976,0.0530366972088814,-0.835063576698303,0.807405650615692,0.0311167482286692,-0.589175641536713,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.807405650615692,0.0311167482286692,-0.589175641536713,0.89840167760849,0.0240881759673357,-0.438513457775116,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.846345007419586,0.0378726609051228,-0.53128707408905,0.91331148147583,0.0418378300964832,-0.405106961727142,0.89840167760849,0.0240881759673357,-0.438513457775116,0.807405650615692,0.0311167482286692,-0.589175641536713,0.846345007419586,0.0378726609051228,-0.53128707408905,0.807405650615692,0.0311167482286692,-0.589175641536713, -0.547591149806976,0.0530366972088814,-0.835063576698303,0.655481338500977,0.0419433489441872,-0.754045724868774,0.459886282682419,0.0185286644846201,-0.887784481048584,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.78961306810379,-0.233641311526299,-0.567382454872131,0.713024973869324,-0.114775560796261,-0.691680490970612,0.459886282682419,0.0185286644846201,-0.887784481048584,0.713024973869324,-0.114775560796261,-0.691680490970612,0.753824532032013,0.0120829222723842,-0.656964600086212,0.655481338500977,0.0419433489441872,-0.754045724868774,0.940796434879303,0.037529218941927,0.336888253688812,0.876156091690063,0.0065525509417057,0.481982827186584,0.859695553779602,-0.0323455259203911,0.509781658649445,0.925897538661957,-0.0276928935199976,0.376758277416229,0.876156091690063,0.0065525509417057,0.481982827186584,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.859695553779602,-0.0323455259203911,0.509781658649445,0.990025520324707,0.120999224483967,-0.072171114385128,0.95380312204361,0.19058008491993,-0.232247248291969,0.952481865882874,0.000842949375510216,-0.304594099521637,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.990025520324707,0.120999224483967,-0.072171114385128,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.942210137844086,-0.189072623848915,-0.276571184396744,0.994931936264038,0.0260696522891521,0.0971127524971962,0.989654898643494,-0.0581933557987213,0.131135925650597,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.876156091690063,0.0065525509417057,0.481982827186584,0.989654898643494,-0.0581933557987213,0.131135925650597,0.876156091690063,0.0065525509417057,0.481982827186584,0.940796434879303,0.037529218941927,0.336888253688812,0.994931936264038,0.0260696522891521,0.0971127524971962,0.928477048873901,0.121489353477955,-0.350956588983536,0.955688834190369,0.116407670080662,-0.27038511633873,0.96819806098938,-0.00619679875671864,-0.250108510255814, -0.92538183927536,-0.00213020131923258,-0.379030108451843,0.955688834190369,0.116407670080662,-0.27038511633873,0.984756588935852,0.0860742479562759,-0.151148214936256,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.96819806098938,-0.00619679875671864,-0.250108510255814,0.976457178592682,0.162414789199829,-0.141960471868515,0.978084087371826,0.152315065264702,0.141956150531769,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.976457178592682,0.162414789199829,-0.141960471868515,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.944020211696625,0.193889617919922,-0.266894608736038,0.928049683570862,0.215501263737679,-0.303781151771545,0.95380312204361,0.19058008491993,-0.232247248291969,0.984756588935852,0.0860742479562759,-0.151148214936256,0.955688834190369,0.116407670080662,-0.27038511633873,0.928049683570862,0.215501263737679,-0.303781151771545,0.955688834190369,0.116407670080662,-0.27038511633873,0.928477048873901,0.121489353477955,-0.350956588983536,0.944020211696625,0.193889617919922,-0.266894608736038,0.994628012180328,-0.00375852175056934,0.103445485234261,0.966179847717285,-0.0294437240809202,0.256182581186295,0.960614383220673,-0.135924786329269,0.242372959852219,0.987738251686096,-0.10796906799078,0.1127645149827,0.966179847717285,-0.0294437240809202,0.256182581186295,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.98529464006424,-0.116540789604187,-0.124951049685478,0.960614383220673,-0.135924786329269,0.242372959852219,0.964100778102875,0.111388944089413,0.241044074296951,0.978084087371826,0.152315065264702,0.141956150531769,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.966179847717285,-0.0294437240809202,0.256182581186295,0.964100778102875,0.111388944089413,0.241044074296951,0.966179847717285,-0.0294437240809202,0.256182581186295,0.994628012180328,-0.00375852175056934,0.103445485234261,0.988234162330627,0.126211360096931,0.0863936245441437, -0.989431262016296,0.136282756924629,-0.0495256967842579,0.9805948138237,0.130027592182159,-0.146719142794609,0.986385881900787,0.129490092396736,-0.101366467773914,0.990121841430664,0.132592484354973,-0.0455840602517128,0.989431262016296,0.136282756924629,-0.0495256967842579,0.990121841430664,0.132592484354973,-0.0455840602517128,0.998157441616058,0.0592895559966564,0.0129011496901512,0.988234162330627,0.126211360096931,0.0863936245441437,0.930461645126343,0.044032908976078,-0.36373382806778,0.973919212818146,0.0321610197424889,-0.224604517221451,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.973919212818146,0.0321610197424889,-0.224604517221451,0.987849771976471,0.0212721824645996,-0.153949171304703,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.967421650886536,0.111605174839497,-0.227243483066559,0.9805948138237,0.130027592182159,-0.146719142794609,0.987849771976471,0.0212721824645996,-0.153949171304703,0.973919212818146,0.0321610197424889,-0.224604517221451,0.967421650886536,0.111605174839497,-0.227243483066559,0.973919212818146,0.0321610197424889,-0.224604517221451,0.930461645126343,0.044032908976078,-0.36373382806778,0.944517731666565,0.0760102942585945,-0.319544553756714,0.921634495258331,0.0250504910945892,-0.387249529361725,0.979617714881897,0.0102590182796121,-0.200608760118484,0.941188633441925,-0.298583924770355,-0.158151000738144,0.953488290309906,-0.24926321208477,-0.169493049383163,0.921634495258331,0.0250504910945892,-0.387249529361725,0.953488290309906,-0.24926321208477,-0.169493049383163,0.972169041633606,-0.163636535406113,-0.167661264538765,0.944517731666565,0.0760102942585945,-0.319544553756714,0.341228455305099,-0.0394069999456406,-0.939153969287872,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.339927136898041,0.0439854599535465,-0.939422607421875,0.370375901460648,-0.0389966443181038,-0.928063035011292, -0.341228455305099,-0.0394069999456406,-0.939153969287872,0.339927136898041,0.0439854599535465,-0.939422607421875,0.376688778400421,0.0253040362149477,-0.925994157791138,0.499098360538483,-0.860193252563477,-0.104729779064655,0.536500513553619,-0.799016773700714,-0.27155002951622,0.827530860900879,-0.373911470174789,-0.418787360191345,0.883458971977234,-0.406380504369736,-0.233141601085663,0.536500513553619,-0.799016773700714,-0.27155002951622,0.525056421756744,-0.734364330768585,-0.430145025253296,0.79384982585907,-0.370954781770706,-0.481866180896759,0.827530860900879,-0.373911470174789,-0.418787360191345,0.827530860900879,-0.373911470174789,-0.418787360191345,0.79384982585907,-0.370954781770706,-0.481866180896759,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.883458971977234,-0.406380504369736,-0.233141601085663,0.827530860900879,-0.373911470174789,-0.418787360191345,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.967431664466858,-0.0304344762116671,-0.251296430826187,0.589899063110352,-0.137920513749123,-0.795611083507538,0.543618559837341,-0.275660157203674,-0.792773902416229,0.714917838573456,0.00455953320488334,-0.69919365644455,0.628012835979462,0.0660990849137306,-0.775390684604645,0.543618559837341,-0.275660157203674,-0.792773902416229,0.250765800476074,-0.393147200345993,-0.8846195936203,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.714917838573456,0.00455953320488334,-0.69919365644455,0.714917838573456,0.00455953320488334,-0.69919365644455,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.541523456573486,0.0144119746983051,-0.840562164783478,0.81552517414093,0.0596523098647594,-0.575638949871063,0.628012835979462,0.0660990849137306,-0.775390684604645,0.714917838573456,0.00455953320488334,-0.69919365644455,0.81552517414093,0.0596523098647594,-0.575638949871063,0.49469667673111,0.0547363348305225,-0.867340207099915,0.390885144472122,-0.486017107963562,-0.781662464141846,0.565682888031006,-0.504618942737579,-0.652198255062103, -0.632826268672943,-0.124994739890099,-0.764138162136078,0.44834902882576,-0.139073446393013,-0.882973253726959,0.565682888031006,-0.504618942737579,-0.652198255062103,0.563137412071228,-0.491253852844238,-0.664489150047302,0.61615127325058,-0.103378012776375,-0.780814051628113,0.632826268672943,-0.124994739890099,-0.764138162136078,0.632826268672943,-0.124994739890099,-0.764138162136078,0.61615127325058,-0.103378012776375,-0.780814051628113,0.513168811798096,-0.037437804043293,-0.857470810413361,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.44834902882576,-0.139073446393013,-0.882973253726959,0.632826268672943,-0.124994739890099,-0.764138162136078,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.488993525505066,-0.0602913647890091,-0.870201289653778,0.293439120054245,-0.588329136371613,-0.7535001039505,0.484833031892776,-0.532703101634979,-0.693660020828247,0.530743896961212,-0.116651892662048,-0.839466035366058,0.33074101805687,-0.145882070064545,-0.932377994060516,0.484833031892776,-0.532703101634979,-0.693660020828247,0.512175977230072,-0.466066777706146,-0.721427440643311,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.530743896961212,-0.116651892662048,-0.839466035366058,0.530743896961212,-0.116651892662048,-0.839466035366058,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.33074101805687,-0.145882070064545,-0.932377994060516,0.530743896961212,-0.116651892662048,-0.839466035366058,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.641406059265137,-0.378595292568207,-0.667280912399292,0.671494722366333,-0.636795699596405,-0.37892735004425,0.927890598773956,-0.216801196336746,-0.303341925144196,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.671494722366333,-0.636795699596405,-0.37892735004425,0.516204953193665,-0.739144563674927,-0.432663559913635,0.793203890323639,-0.334265559911728,-0.509012937545776, -0.927890598773956,-0.216801196336746,-0.303341925144196,0.927890598773956,-0.216801196336746,-0.303341925144196,0.793203890323639,-0.334265559911728,-0.509012937545776,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.927890598773956,-0.216801196336746,-0.303341925144196,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.468962371349335,-0.762415885925293,-0.445865750312805,0.501445531845093,-0.760220110416412,-0.413058996200562,0.752184212207794,-0.389307022094727,-0.531656861305237,0.72435075044632,-0.381623566150665,-0.574177205562592,0.501445531845093,-0.760220110416412,-0.413058996200562,0.455715090036392,-0.712582349777222,-0.533432424068451,0.632416069507599,-0.348405539989471,-0.691855251789093,0.752184212207794,-0.389307022094727,-0.531656861305237,0.752184212207794,-0.389307022094727,-0.531656861305237,0.632416069507599,-0.348405539989471,-0.691855251789093,0.636378884315491,-0.0589766092598438,-0.769118785858154,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.72435075044632,-0.381623566150665,-0.574177205562592,0.752184212207794,-0.389307022094727,-0.531656861305237,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.63243442773819,-0.766274094581604,-0.11336162686348,0.569506764411926,-0.7588871717453,0.315835654735565,0.840517640113831,-0.310326457023621,0.444103240966797,0.941153645515442,-0.336342543363571,0.0332188718020916,0.569506764411926,-0.7588871717453,0.315835654735565,0.51786470413208,-0.852376520633698,0.0725972205400467,0.923657715320587,-0.376178413629532,0.0731174126267433,0.840517640113831,-0.310326457023621,0.444103240966797,0.840517640113831,-0.310326457023621,0.444103240966797,0.923657715320587,-0.376178413629532,0.0731174126267433,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.896405398845673,-0.0819698721170425,0.435589581727982, -0.941153645515442,-0.336342543363571,0.0332188718020916,0.840517640113831,-0.310326457023621,0.444103240966797,0.896405398845673,-0.0819698721170425,0.435589581727982,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.438863754272461,-0.852788746356964,-0.283107727766037,0.393674969673157,-0.804395854473114,-0.444935083389282,0.71679425239563,-0.319492399692535,-0.61978280544281,0.821834862232208,-0.345841467380524,-0.452748358249664,0.393674969673157,-0.804395854473114,-0.444935083389282,0.277917355298996,-0.700341641902924,-0.657482743263245,0.477159678936005,-0.261803686618805,-0.838914513587952,0.71679425239563,-0.319492399692535,-0.61978280544281,0.71679425239563,-0.319492399692535,-0.61978280544281,0.477159678936005,-0.261803686618805,-0.838914513587952,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.821834862232208,-0.345841467380524,-0.452748358249664,0.71679425239563,-0.319492399692535,-0.61978280544281,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.555457890033722,-0.70824271440506,-0.435728013515472,0.540731608867645,-0.663639605045319,0.516905963420868,0.802521944046021,-0.188170716166496,0.56617146730423,0.741796910762787,-0.154640659689903,-0.652551591396332,0.540731608867645,-0.663639605045319,0.516905963420868,0.504914164543152,-0.843706130981445,0.182268023490906,0.901105523109436,-0.274987131357193,0.33524751663208,0.802521944046021,-0.188170716166496,0.56617146730423,0.802521944046021,-0.188170716166496,0.56617146730423,0.901105523109436,-0.274987131357193,0.33524751663208,0.925897538661957,-0.0276928935199976,0.376758277416229,0.859695553779602,-0.0323455259203911,0.509781658649445,0.741796910762787,-0.154640659689903,-0.652551591396332,0.802521944046021,-0.188170716166496,0.56617146730423,0.859695553779602,-0.0323455259203911,0.509781658649445,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.350622594356537,-0.929238021373749,-0.116534858942032, -0.346683531999588,-0.923410952091217,-0.164689466357231,0.873601198196411,-0.421103328466415,-0.243911787867546,0.906976282596588,-0.401439964771271,-0.12743604183197,0.346683531999588,-0.923410952091217,-0.164689466357231,0.343556195497513,-0.879236817359924,-0.330017954111099,0.803960502147675,-0.401102036237717,-0.439049750566483,0.873601198196411,-0.421103328466415,-0.243911787867546,0.873601198196411,-0.421103328466415,-0.243911787867546,0.803960502147675,-0.401102036237717,-0.439049750566483,0.92538183927536,-0.00213020131923258,-0.379030108451843,0.96819806098938,-0.00619679875671864,-0.250108510255814,0.906976282596588,-0.401439964771271,-0.12743604183197,0.873601198196411,-0.421103328466415,-0.243911787867546,0.96819806098938,-0.00619679875671864,-0.250108510255814,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.43664076924324,-0.888041436672211,-0.143969655036926,0.505449831485748,-0.811837494373322,0.292302072048187,0.840250730514526,-0.443081349134445,0.312502384185791,0.849683105945587,-0.476386874914169,-0.226040348410606,0.505449831485748,-0.811837494373322,0.292302072048187,0.497879147529602,-0.865346670150757,0.0573717728257179,0.898619055747986,-0.418207377195358,0.132613226771355,0.840250730514526,-0.443081349134445,0.312502384185791,0.840250730514526,-0.443081349134445,0.312502384185791,0.898619055747986,-0.418207377195358,0.132613226771355,0.987738251686096,-0.10796906799078,0.1127645149827,0.960614383220673,-0.135924786329269,0.242372959852219,0.849683105945587,-0.476386874914169,-0.226040348410606,0.840250730514526,-0.443081349134445,0.312502384185791,0.960614383220673,-0.135924786329269,0.242372959852219,0.98529464006424,-0.116540789604187,-0.124951049685478,0.387941062450409,-0.902830421924591,-0.185469508171082,0.43033829331398,-0.88323187828064,-0.186307087540627,0.886561810970306,-0.413538157939911,-0.207350522279739,0.885625779628754,-0.428801566362381,-0.178314879536629,0.43033829331398,-0.88323187828064,-0.186307087540627,0.456584513187408,-0.824917614459991,-0.333228886127472, -0.858951389789581,-0.362426906824112,-0.361731052398682,0.886561810970306,-0.413538157939911,-0.207350522279739,0.886561810970306,-0.413538157939911,-0.207350522279739,0.858951389789581,-0.362426906824112,-0.361731052398682,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.885625779628754,-0.428801566362381,-0.178314879536629,0.886561810970306,-0.413538157939911,-0.207350522279739,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.471450209617615,-0.862914264202118,-0.181971609592438,0.455620259046555,-0.870745360851288,0.184966832399368,0.86344450712204,-0.432045161724091,0.260385751724243,0.913533270359039,-0.369183957576752,-0.170763596892357,0.455620259046555,-0.870745360851288,0.184966832399368,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.889515578746796,-0.455092877149582,0.0406490974128246,0.86344450712204,-0.432045161724091,0.260385751724243,0.86344450712204,-0.432045161724091,0.260385751724243,0.889515578746796,-0.455092877149582,0.0406490974128246,0.994123876094818,-0.0412094928324223,0.100097432732582,0.96244889497757,-0.0475795865058899,0.267260789871216,0.913533270359039,-0.369183957576752,-0.170763596892357,0.86344450712204,-0.432045161724091,0.260385751724243,0.96244889497757,-0.0475795865058899,0.267260789871216,0.986677527427673,-0.029893996194005,-0.159917399287224,0.381359219551086,-0.919612050056458,-0.0942273810505867,0.424438774585724,-0.905067205429077,-0.0265531558543444,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.878848016262054,-0.460666686296463,-0.124146290123463,0.424438774585724,-0.905067205429077,-0.0265531558543444,0.499098360538483,-0.860193252563477,-0.104729779064655,0.883458971977234,-0.406380504369736,-0.233141601085663,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.883458971977234,-0.406380504369736,-0.233141601085663,0.967431664466858,-0.0304344762116671,-0.251296430826187, -0.990463435649872,-0.0371588617563248,-0.132670491933823,0.878848016262054,-0.460666686296463,-0.124146290123463,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.990463435649872,-0.0371588617563248,-0.132670491933823,0.992330133914948,-0.0447207093238831,-0.115242637693882,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,-0.00514885829761624,-0.894299685955048,-0.447438985109329,0.148334860801697,-0.447466164827347,-0.881913065910339,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,0.0206445995718241,-0.99297958612442,-0.116470016539097,-0.00514885829761624,-0.894299685955048,-0.447438985109329,-0.00514885829761624,-0.894299685955048,-0.447438985109329,0.0206445995718241,-0.99297958612442,-0.116470016539097,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.148334860801697,-0.447466164827347,-0.881913065910339,-0.00514885829761624,-0.894299685955048,-0.447438985109329,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.121410027146339,-0.550902009010315,-0.825691640377045,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.0017736324807629,-0.989037394523621,-0.147654265165329,0.0117843132466078,-0.987104594707489,-0.159642219543457,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.0117843132466078,-0.987104594707489,-0.159642219543457,0.0472595132887363,-0.991489410400391,-0.121306762099266,0.148217156529427,-0.921367168426514,-0.359324753284454,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.148217156529427,-0.921367168426514,-0.359324753284454, -0.293439120054245,-0.588329136371613,-0.7535001039505,0.293439120054245,-0.588329136371613,-0.7535001039505,0.148217156529427,-0.921367168426514,-0.359324753284454,0.237628668546677,-0.919831156730652,-0.312158972024918,0.484833031892776,-0.532703101634979,-0.693660020828247,0.148217156529427,-0.921367168426514,-0.359324753284454,0.0472595132887363,-0.991489410400391,-0.121306762099266,0.0341795571148396,-0.99710351228714,-0.0679439455270767,0.237628668546677,-0.919831156730652,-0.312158972024918,0.237628668546677,-0.919831156730652,-0.312158972024918,0.0341795571148396,-0.99710351228714,-0.0679439455270767,-0.0956810265779495,-0.989281058311462,-0.110309168696404,0.189600706100464,-0.917815208435059,-0.348807841539383,0.484833031892776,-0.532703101634979,-0.693660020828247,0.237628668546677,-0.919831156730652,-0.312158972024918,0.189600706100464,-0.917815208435059,-0.348807841539383,0.512175977230072,-0.466066777706146,-0.721427440643311,0.512175977230072,-0.466066777706146,-0.721427440643311,0.189600706100464,-0.917815208435059,-0.348807841539383,0.0527781695127487,-0.859145700931549,-0.509002089500427,0.441854745149612,-0.315789490938187,-0.83966737985611,0.189600706100464,-0.917815208435059,-0.348807841539383,-0.0956810265779495,-0.989281058311462,-0.110309168696404,-0.31352710723877,-0.921509146690369,-0.229176118969917,0.0527781695127487,-0.859145700931549,-0.509002089500427,0.0527781695127487,-0.859145700931549,-0.509002089500427,-0.31352710723877,-0.921509146690369,-0.229176118969917,-0.067974679172039,-0.989794790744781,-0.125243112444878,0.299092411994934,-0.751762688159943,-0.587704479694366,0.441854745149612,-0.315789490938187,-0.83966737985611,0.0527781695127487,-0.859145700931549,-0.509002089500427,0.299092411994934,-0.751762688159943,-0.587704479694366,0.589899063110352,-0.137920513749123,-0.795611083507538,0.589899063110352,-0.137920513749123,-0.795611083507538,0.299092411994934,-0.751762688159943,-0.587704479694366,0.351489782333374,-0.786727249622345,-0.50745964050293,0.543618559837341,-0.275660157203674,-0.792773902416229, -0.299092411994934,-0.751762688159943,-0.587704479694366,-0.067974679172039,-0.989794790744781,-0.125243112444878,0.257710993289948,-0.965899467468262,0.0249620247632265,0.351489782333374,-0.786727249622345,-0.50745964050293,0.351489782333374,-0.786727249622345,-0.50745964050293,0.257710993289948,-0.965899467468262,0.0249620247632265,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.164953321218491,-0.808561682701111,-0.564817190170288,0.543618559837341,-0.275660157203674,-0.792773902416229,0.351489782333374,-0.786727249622345,-0.50745964050293,0.164953321218491,-0.808561682701111,-0.564817190170288,0.250765800476074,-0.393147200345993,-0.8846195936203,0.250765800476074,-0.393147200345993,-0.8846195936203,0.164953321218491,-0.808561682701111,-0.564817190170288,0.129042506217957,-0.823158740997314,-0.552953541278839,0.205787897109985,-0.43680277466774,-0.875702381134033,0.164953321218491,-0.808561682701111,-0.564817190170288,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.044316329061985,-0.989008367061615,-0.14106185734272,0.129042506217957,-0.823158740997314,-0.552953541278839,0.129042506217957,-0.823158740997314,-0.552953541278839,0.044316329061985,-0.989008367061615,-0.14106185734272,0.0461164265871048,-0.995021760463715,-0.0883454754948616,0.227151274681091,-0.872323572635651,-0.432959347963333,0.205787897109985,-0.43680277466774,-0.875702381134033,0.129042506217957,-0.823158740997314,-0.552953541278839,0.227151274681091,-0.872323572635651,-0.432959347963333,0.390885144472122,-0.486017107963562,-0.781662464141846,0.390885144472122,-0.486017107963562,-0.781662464141846,0.227151274681091,-0.872323572635651,-0.432959347963333,0.284561812877655,-0.903313338756561,-0.321013391017914,0.565682888031006,-0.504618942737579,-0.652198255062103,0.227151274681091,-0.872323572635651,-0.432959347963333,0.0461164265871048,-0.995021760463715,-0.0883454754948616,0.0137346880510449,-0.998532474040985,-0.0523858591914177,0.284561812877655,-0.903313338756561,-0.321013391017914,0.284561812877655,-0.903313338756561,-0.321013391017914, -0.0137346880510449,-0.998532474040985,-0.0523858591914177,-0.101554751396179,-0.984395146369934,-0.143711194396019,0.209152966737747,-0.908778250217438,-0.3610779941082,0.565682888031006,-0.504618942737579,-0.652198255062103,0.284561812877655,-0.903313338756561,-0.321013391017914,0.209152966737747,-0.908778250217438,-0.3610779941082,0.563137412071228,-0.491253852844238,-0.664489150047302,0.563137412071228,-0.491253852844238,-0.664489150047302,0.209152966737747,-0.908778250217438,-0.3610779941082,0.0972086414694786,-0.844942212104797,-0.525949716567993,0.469654202461243,-0.395616501569748,-0.789247989654541,0.209152966737747,-0.908778250217438,-0.3610779941082,-0.101554751396179,-0.984395146369934,-0.143711194396019,-0.201180189847946,-0.928689897060394,-0.311546981334686,0.0972086414694786,-0.844942212104797,-0.525949716567993,0.0972086414694786,-0.844942212104797,-0.525949716567993,-0.201180189847946,-0.928689897060394,-0.311546981334686,0.0143932355567813,-0.999884128570557,-0.00495438417419791,0.259116232395172,-0.887118220329285,-0.381942391395569,0.469654202461243,-0.395616501569748,-0.789247989654541,0.0972086414694786,-0.844942212104797,-0.525949716567993,0.259116232395172,-0.887118220329285,-0.381942391395569,0.641406059265137,-0.378595292568207,-0.667280912399292,0.641406059265137,-0.378595292568207,-0.667280912399292,0.259116232395172,-0.887118220329285,-0.381942391395569,0.345103472471237,-0.93750923871994,-0.0444990508258343,0.671494722366333,-0.636795699596405,-0.37892735004425,0.259116232395172,-0.887118220329285,-0.381942391395569,0.0143932355567813,-0.999884128570557,-0.00495438417419791,0.192215457558632,-0.938979744911194,0.285254687070847,0.345103472471237,-0.93750923871994,-0.0444990508258343,0.345103472471237,-0.93750923871994,-0.0444990508258343,0.192215457558632,-0.938979744911194,0.285254687070847,0.0731555819511414,-0.991638422012329,0.106308683753014,0.236632063984871,-0.959273457527161,-0.154271468520164,0.671494722366333,-0.636795699596405,-0.37892735004425,0.345103472471237,-0.93750923871994,-0.0444990508258343, -0.236632063984871,-0.959273457527161,-0.154271468520164,0.516204953193665,-0.739144563674927,-0.432663559913635,0.516204953193665,-0.739144563674927,-0.432663559913635,0.236632063984871,-0.959273457527161,-0.154271468520164,0.173015519976616,-0.950963735580444,-0.256385236978531,0.445797830820084,-0.750705003738403,-0.487551361322403,0.236632063984871,-0.959273457527161,-0.154271468520164,0.0731555819511414,-0.991638422012329,0.106308683753014,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,0.173015519976616,-0.950963735580444,-0.256385236978531,0.173015519976616,-0.950963735580444,-0.256385236978531,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,-0.0171244870871305,-0.995451152324677,-0.0937228202819824,0.186675056815147,-0.949097871780396,-0.25370392203331,0.445797830820084,-0.750705003738403,-0.487551361322403,0.173015519976616,-0.950963735580444,-0.256385236978531,0.186675056815147,-0.949097871780396,-0.25370392203331,0.468962371349335,-0.762415885925293,-0.445865750312805,0.468962371349335,-0.762415885925293,-0.445865750312805,0.186675056815147,-0.949097871780396,-0.25370392203331,0.210319176316261,-0.94456422328949,-0.252119272947311,0.501445531845093,-0.760220110416412,-0.413058996200562,0.186675056815147,-0.949097871780396,-0.25370392203331,-0.0171244870871305,-0.995451152324677,-0.0937228202819824,-0.0137182576581836,-0.990748465061188,-0.135015621781349,0.210319176316261,-0.94456422328949,-0.252119272947311,0.210319176316261,-0.94456422328949,-0.252119272947311,-0.0137182576581836,-0.990748465061188,-0.135015621781349,-0.0493219755589962,-0.954008638858795,-0.29569399356842,0.181792885065079,-0.908852279186249,-0.375418365001678,0.501445531845093,-0.760220110416412,-0.413058996200562,0.210319176316261,-0.94456422328949,-0.252119272947311,0.181792885065079,-0.908852279186249,-0.375418365001678,0.455715090036392,-0.712582349777222,-0.533432424068451,0.455715090036392,-0.712582349777222,-0.533432424068451,0.181792885065079,-0.908852279186249,-0.375418365001678,0.116814382374287,-0.819821238517761,-0.560577809810638, -0.37758857011795,-0.616982102394104,-0.690478026866913,0.181792885065079,-0.908852279186249,-0.375418365001678,-0.0493219755589962,-0.954008638858795,-0.29569399356842,-0.0837778821587563,-0.852415442466736,-0.516109764575958,0.116814382374287,-0.819821238517761,-0.560577809810638,0.116814382374287,-0.819821238517761,-0.560577809810638,-0.0837778821587563,-0.852415442466736,-0.516109764575958,-0.0403466336429119,-0.951976001262665,-0.303502857685089,0.149653851985931,-0.954992890357971,-0.256109893321991,0.37758857011795,-0.616982102394104,-0.690478026866913,0.116814382374287,-0.819821238517761,-0.560577809810638,0.149653851985931,-0.954992890357971,-0.256109893321991,0.63243442773819,-0.766274094581604,-0.11336162686348,0.63243442773819,-0.766274094581604,-0.11336162686348,0.149653851985931,-0.954992890357971,-0.256109893321991,0.125946179032326,-0.979482173919678,0.157328218221664,0.569506764411926,-0.7588871717453,0.315835654735565,0.149653851985931,-0.954992890357971,-0.256109893321991,-0.0403466336429119,-0.951976001262665,-0.303502857685089,0.0362662635743618,-0.99393630027771,0.103804931044579,0.125946179032326,-0.979482173919678,0.157328218221664,0.125946179032326,-0.979482173919678,0.157328218221664,0.0362662635743618,-0.99393630027771,0.103804931044579,0.0276018399745226,-0.998904407024384,0.0377895794808865,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.569506764411926,-0.7588871717453,0.315835654735565,0.125946179032326,-0.979482173919678,0.157328218221664,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.51786470413208,-0.852376520633698,0.0725972205400467,0.51786470413208,-0.852376520633698,0.0725972205400467,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.0181498248130083,-0.999631345272064,-0.0201945547014475,0.464053809642792,-0.874072670936584,-0.143704861402512,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.0276018399745226,-0.998904407024384,0.0377895794808865,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,0.0181498248130083,-0.999631345272064,-0.0201945547014475, -0.0181498248130083,-0.999631345272064,-0.0201945547014475,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,0.464053809642792,-0.874072670936584,-0.143704861402512,0.0181498248130083,-0.999631345272064,-0.0201945547014475,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,0.438863754272461,-0.852788746356964,-0.283107727766037,0.438863754272461,-0.852788746356964,-0.283107727766037,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,-0.0203818194568157,-0.988526284694672,-0.149667382240295,0.393674969673157,-0.804395854473114,-0.444935083389282,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0203818194568157,-0.988526284694672,-0.149667382240295,-0.0203818194568157,-0.988526284694672,-0.149667382240295,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.064380370080471,-0.942401766777039,-0.328228950500488,0.393674969673157,-0.804395854473114,-0.444935083389282,-0.0203818194568157,-0.988526284694672,-0.149667382240295,-0.064380370080471,-0.942401766777039,-0.328228950500488,0.277917355298996,-0.700341641902924,-0.657482743263245,0.277917355298996,-0.700341641902924,-0.657482743263245,-0.064380370080471,-0.942401766777039,-0.328228950500488,-0.0873351022601128,-0.858423352241516,-0.505452156066895,0.180045038461685,-0.541619896888733,-0.821116089820862,-0.064380370080471,-0.942401766777039,-0.328228950500488,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.0873351022601128,-0.858423352241516,-0.505452156066895,-0.0873351022601128,-0.858423352241516,-0.505452156066895,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,0.0328967608511448,-0.994601726531982,-0.0984133929014206, -0.180045038461685,-0.541619896888733,-0.821116089820862,-0.0873351022601128,-0.858423352241516,-0.505452156066895,0.0328967608511448,-0.994601726531982,-0.0984133929014206,0.555457890033722,-0.70824271440506,-0.435728013515472,0.555457890033722,-0.70824271440506,-0.435728013515472,0.0328967608511448,-0.994601726531982,-0.0984133929014206,0.101912841200829,-0.908747255802155,0.404712557792664,0.540731608867645,-0.663639605045319,0.516905963420868,0.0328967608511448,-0.994601726531982,-0.0984133929014206,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,0.0813811793923378,-0.926623225212097,0.367078334093094,0.101912841200829,-0.908747255802155,0.404712557792664,0.101912841200829,-0.908747255802155,0.404712557792664,0.0813811793923378,-0.926623225212097,0.367078334093094,0.0227406807243824,-0.998998880386353,0.038524117320776,-0.00450151925906539,-0.995848715305328,0.0909112691879272,0.540731608867645,-0.663639605045319,0.516905963420868,0.101912841200829,-0.908747255802155,0.404712557792664,-0.00450151925906539,-0.995848715305328,0.0909112691879272,0.504914164543152,-0.843706130981445,0.182268023490906,0.504914164543152,-0.843706130981445,0.182268023490906,-0.00450151925906539,-0.995848715305328,0.0909112691879272,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,0.412487804889679,-0.908762454986572,-0.0632809773087502,-0.00450151925906539,-0.995848715305328,0.0909112691879272,0.0227406807243824,-0.998998880386353,0.038524117320776,-0.00762299820780754,-0.992952108383179,-0.118270047008991,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,-0.00762299820780754,-0.992952108383179,-0.118270047008991,0.00222110073082149,-0.99709016084671,-0.0761995390057564,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,0.412487804889679,-0.908762454986572,-0.0632809773087502,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,0.350622594356537,-0.929238021373749,-0.116534858942032, -0.350622594356537,-0.929238021373749,-0.116534858942032,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,-0.0639330446720123,-0.996860086917877,-0.046718642115593,0.346683531999588,-0.923410952091217,-0.164689466357231,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,0.00222110073082149,-0.99709016084671,-0.0761995390057564,0.00877070985734463,-0.998901963233948,-0.0460210405290127,-0.0639330446720123,-0.996860086917877,-0.046718642115593,-0.0639330446720123,-0.996860086917877,-0.046718642115593,0.00877070985734463,-0.998901963233948,-0.0460210405290127,-0.00755474669858813,-0.988938808441162,-0.148131370544434,-0.0379277542233467,-0.98450493812561,-0.171206310391426,0.346683531999588,-0.923410952091217,-0.164689466357231,-0.0639330446720123,-0.996860086917877,-0.046718642115593,-0.0379277542233467,-0.98450493812561,-0.171206310391426,0.343556195497513,-0.879236817359924,-0.330017954111099,0.343556195497513,-0.879236817359924,-0.330017954111099,-0.0379277542233467,-0.98450493812561,-0.171206310391426,-0.0182527359575033,-0.940809190273285,-0.338444739580154,0.318479269742966,-0.806861102581024,-0.49753999710083,-0.0379277542233467,-0.98450493812561,-0.171206310391426,-0.00755474669858813,-0.988938808441162,-0.148131370544434,-0.0432454086840153,-0.950159907341003,-0.308748960494995,-0.0182527359575033,-0.940809190273285,-0.338444739580154,-0.0182527359575033,-0.940809190273285,-0.338444739580154,-0.0432454086840153,-0.950159907341003,-0.308748960494995,0.0345610603690147,-0.998634815216064,-0.0391647480428219,0.101652823388577,-0.992541551589966,-0.0672911554574966,0.318479269742966,-0.806861102581024,-0.49753999710083,-0.0182527359575033,-0.940809190273285,-0.338444739580154,0.101652823388577,-0.992541551589966,-0.0672911554574966,0.43664076924324,-0.888041436672211,-0.143969655036926,0.43664076924324,-0.888041436672211,-0.143969655036926,0.101652823388577,-0.992541551589966,-0.0672911554574966,0.189477413892746,-0.953533887863159,0.234246894717216,0.505449831485748,-0.811837494373322,0.292302072048187, -0.101652823388577,-0.992541551589966,-0.0672911554574966,0.0345610603690147,-0.998634815216064,-0.0391647480428219,0.114700697362423,-0.969060480594635,0.218553364276886,0.189477413892746,-0.953533887863159,0.234246894717216,0.189477413892746,-0.953533887863159,0.234246894717216,0.114700697362423,-0.969060480594635,0.218553364276886,0.0376603677868843,-0.998001277446747,-0.050745140761137,0.0852790176868439,-0.996204316616058,-0.0174518525600433,0.505449831485748,-0.811837494373322,0.292302072048187,0.189477413892746,-0.953533887863159,0.234246894717216,0.0852790176868439,-0.996204316616058,-0.0174518525600433,0.497879147529602,-0.865346670150757,0.0573717728257179,0.497879147529602,-0.865346670150757,0.0573717728257179,0.0852790176868439,-0.996204316616058,-0.0174518525600433,-0.0281080342829227,-0.979772686958313,-0.198130145668983,0.420704245567322,-0.888998806476593,-0.180801391601563,0.0852790176868439,-0.996204316616058,-0.0174518525600433,0.0376603677868843,-0.998001277446747,-0.050745140761137,-0.00987572688609362,-0.975039064884186,-0.221813872456551,-0.0281080342829227,-0.979772686958313,-0.198130145668983,-0.0281080342829227,-0.979772686958313,-0.198130145668983,-0.00987572688609362,-0.975039064884186,-0.221813872456551,-0.00206752307713032,-0.989448010921478,-0.144873470067978,-0.0566148720681667,-0.988345980644226,-0.141304582357407,0.420704245567322,-0.888998806476593,-0.180801391601563,-0.0281080342829227,-0.979772686958313,-0.198130145668983,-0.0566148720681667,-0.988345980644226,-0.141304582357407,0.387941062450409,-0.902830421924591,-0.185469508171082,0.387941062450409,-0.902830421924591,-0.185469508171082,-0.0566148720681667,-0.988345980644226,-0.141304582357407,-0.00859022606164217,-0.994786083698273,-0.101621963083744,0.43033829331398,-0.88323187828064,-0.186307087540627,-0.0566148720681667,-0.988345980644226,-0.141304582357407,-0.00206752307713032,-0.989448010921478,-0.144873470067978,0.00842917431145906,-0.996677577495575,-0.0810110941529274,-0.00859022606164217,-0.994786083698273,-0.101621963083744, --0.00859022606164217,-0.994786083698273,-0.101621963083744,0.00842917431145906,-0.996677577495575,-0.0810110941529274,-0.00558301247656345,-0.976331949234009,-0.216205418109894,0.0454825200140476,-0.968847155570984,-0.243447333574295,0.43033829331398,-0.88323187828064,-0.186307087540627,-0.00859022606164217,-0.994786083698273,-0.101621963083744,0.0454825200140476,-0.968847155570984,-0.243447333574295,0.456584513187408,-0.824917614459991,-0.333228886127472,0.456584513187408,-0.824917614459991,-0.333228886127472,0.0454825200140476,-0.968847155570984,-0.243447333574295,0.0639127641916275,-0.914364278316498,-0.399816393852234,0.435094058513641,-0.765399038791656,-0.47419136762619,0.0454825200140476,-0.968847155570984,-0.243447333574295,-0.00558301247656345,-0.976331949234009,-0.216205418109894,-0.029094323515892,-0.923119962215424,-0.383409798145294,0.0639127641916275,-0.914364278316498,-0.399816393852234,0.0639127641916275,-0.914364278316498,-0.399816393852234,-0.029094323515892,-0.923119962215424,-0.383409798145294,0.00105690758209676,-0.990462958812714,-0.137775212526321,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.435094058513641,-0.765399038791656,-0.47419136762619,0.0639127641916275,-0.914364278316498,-0.399816393852234,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.471450209617615,-0.862914264202118,-0.181971609592438,0.471450209617615,-0.862914264202118,-0.181971609592438,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.109180703759193,-0.983856499195099,0.141795545816422,0.455620259046555,-0.870745360851288,0.184966832399368,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.00105690758209676,-0.990462958812714,-0.137775212526321,0.0300077237188816,-0.991880118846893,0.123585782945156,0.109180703759193,-0.983856499195099,0.141795545816422,0.109180703759193,-0.983856499195099,0.141795545816422,0.0300077237188816,-0.991880118846893,0.123585782945156,0.00836390163749456,-0.998803675174713,-0.0481772869825363,0.0531070195138454,-0.99823385477066,-0.0266236197203398,0.455620259046555,-0.870745360851288,0.184966832399368, -0.109180703759193,-0.983856499195099,0.141795545816422,0.0531070195138454,-0.99823385477066,-0.0266236197203398,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.0531070195138454,-0.99823385477066,-0.0266236197203398,-0.0172474682331085,-0.990058124065399,-0.139597609639168,0.407952696084976,-0.901816725730896,-0.142482578754425,0.0531070195138454,-0.99823385477066,-0.0266236197203398,0.00836390163749456,-0.998803675174713,-0.0481772869825363,-0.00341826910153031,-0.986906588077545,-0.161256238818169,-0.0172474682331085,-0.990058124065399,-0.139597609639168,-0.0172474682331085,-0.990058124065399,-0.139597609639168,-0.00341826910153031,-0.986906588077545,-0.161256238818169,-0.00338497199118137,-0.998307347297668,-0.058060847222805,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,0.407952696084976,-0.901816725730896,-0.142482578754425,-0.0172474682331085,-0.990058124065399,-0.139597609639168,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,0.381359219551086,-0.919612050056458,-0.0942273810505867,0.381359219551086,-0.919612050056458,-0.0942273810505867,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,-0.0121226189658046,-0.997971057891846,0.0625052154064178,0.424438774585724,-0.905067205429077,-0.0265531558543444,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,-0.00338497199118137,-0.998307347297668,-0.058060847222805,0.00499414373189211,-0.996677398681641,0.0812970474362373,-0.0121226189658046,-0.997971057891846,0.0625052154064178,-0.0121226189658046,-0.997971057891846,0.0625052154064178,0.00499414373189211,-0.996677398681641,0.0812970474362373,0.00254658795893192,-0.995971739292145,0.0896312519907951,0.0599643588066101,-0.996931612491608,0.0503142550587654,0.424438774585724,-0.905067205429077,-0.0265531558543444,-0.0121226189658046,-0.997971057891846,0.0625052154064178,0.0599643588066101,-0.996931612491608,0.0503142550587654,0.499098360538483,-0.860193252563477,-0.104729779064655,0.499098360538483,-0.860193252563477,-0.104729779064655, -0.0599643588066101,-0.996931612491608,0.0503142550587654,0.121662802994251,-0.988740146160126,-0.0871276333928108,0.536500513553619,-0.799016773700714,-0.27155002951622,0.0599643588066101,-0.996931612491608,0.0503142550587654,0.00254658795893192,-0.995971739292145,0.0896312519907951,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,0.121662802994251,-0.988740146160126,-0.0871276333928108,0.121662802994251,-0.988740146160126,-0.0871276333928108,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,-0.0501352362334728,-0.942996501922607,-0.329004615545273,0.129465445876122,-0.932377934455872,-0.337505578994751,0.536500513553619,-0.799016773700714,-0.27155002951622,0.121662802994251,-0.988740146160126,-0.0871276333928108,0.129465445876122,-0.932377934455872,-0.337505578994751,0.525056421756744,-0.734364330768585,-0.430145025253296,-0.140483602881432,-0.389575660228729,0.910217046737671,-0.0480444952845573,-0.932949662208557,0.356786787509918,0.145859897136688,-0.90880411863327,0.390896379947662,0.230874493718147,-0.364731192588806,0.902035593986511,-0.0480444952845573,-0.932949662208557,0.356786787509918,0.0017736324807629,-0.989037394523621,-0.147654265165329,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.145859897136688,-0.90880411863327,0.390896379947662,0.145859897136688,-0.90880411863327,0.390896379947662,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.0206445995718241,-0.99297958612442,-0.116470016539097,0.251202523708344,-0.919188618659973,0.303297936916351,0.529604315757751,-0.324774593114853,0.783607542514801,0.230874493718147,-0.364731192588806,0.902035593986511,0.145859897136688,-0.90880411863327,0.390896379947662,0.251202523708344,-0.919188618659973,0.303297936916351,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.153088346123695,-0.912603378295898,0.379102826118469,-0.0988656133413315,-0.915834665298462,0.389194458723068,-0.235184445977211,-0.385947704315186,0.892038583755493,-0.153088346123695,-0.912603378295898,0.379102826118469,0.0472595132887363,-0.991489410400391,-0.121306762099266, -0.0117843132466078,-0.987104594707489,-0.159642219543457,-0.0988656133413315,-0.915834665298462,0.389194458723068,-0.0988656133413315,-0.915834665298462,0.389194458723068,0.0117843132466078,-0.987104594707489,-0.159642219543457,0.0017736324807629,-0.989037394523621,-0.147654265165329,-0.0480444952845573,-0.932949662208557,0.356786787509918,-0.235184445977211,-0.385947704315186,0.892038583755493,-0.0988656133413315,-0.915834665298462,0.389194458723068,-0.0480444952845573,-0.932949662208557,0.356786787509918,-0.140483602881432,-0.389575660228729,0.910217046737671,-0.803336977958679,-0.540861368179321,0.249235898256302,-0.433304578065872,-0.899189889431,0.0608656816184521,-0.250383645296097,-0.936257421970367,0.246434733271599,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.433304578065872,-0.899189889431,0.0608656816184521,-0.0956810265779495,-0.989281058311462,-0.110309168696404,0.0341795571148396,-0.99710351228714,-0.0679439455270767,-0.250383645296097,-0.936257421970367,0.246434733271599,-0.250383645296097,-0.936257421970367,0.246434733271599,0.0341795571148396,-0.99710351228714,-0.0679439455270767,0.0472595132887363,-0.991489410400391,-0.121306762099266,-0.153088346123695,-0.912603378295898,0.379102826118469,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.250383645296097,-0.936257421970367,0.246434733271599,-0.153088346123695,-0.912603378295898,0.379102826118469,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.611642420291901,-0.490592271089554,0.620655059814453,-0.353433787822723,-0.895314991474152,0.271100580692291,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.353433787822723,-0.895314991474152,0.271100580692291,-0.067974679172039,-0.989794790744781,-0.125243112444878,-0.31352710723877,-0.921509146690369,-0.229176118969917,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.31352710723877,-0.921509146690369,-0.229176118969917,-0.0956810265779495,-0.989281058311462,-0.110309168696404, --0.433304578065872,-0.899189889431,0.0608656816184521,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.433304578065872,-0.899189889431,0.0608656816184521,-0.803336977958679,-0.540861368179321,0.249235898256302,0.0763066858053207,-0.417371302843094,0.905526697635651,0.104558326303959,-0.867407262325287,0.486489742994308,0.233879595994949,-0.770570516586304,0.592892408370972,0.20523139834404,-0.331974714994431,0.920691549777985,0.104558326303959,-0.867407262325287,0.486489742994308,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.257710993289948,-0.965899467468262,0.0249620247632265,0.233879595994949,-0.770570516586304,0.592892408370972,0.233879595994949,-0.770570516586304,0.592892408370972,0.257710993289948,-0.965899467468262,0.0249620247632265,-0.067974679172039,-0.989794790744781,-0.125243112444878,-0.353433787822723,-0.895314991474152,0.271100580692291,0.20523139834404,-0.331974714994431,0.920691549777985,0.233879595994949,-0.770570516586304,0.592892408370972,-0.353433787822723,-0.895314991474152,0.271100580692291,-0.611642420291901,-0.490592271089554,0.620655059814453,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.166342362761497,-0.929781317710876,0.328385353088379,-0.0531740002334118,-0.920071363449097,0.388125240802765,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.166342362761497,-0.929781317710876,0.328385353088379,0.0461164265871048,-0.995021760463715,-0.0883454754948616,0.044316329061985,-0.989008367061615,-0.14106185734272,-0.0531740002334118,-0.920071363449097,0.388125240802765,-0.0531740002334118,-0.920071363449097,0.388125240802765,0.044316329061985,-0.989008367061615,-0.14106185734272,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.104558326303959,-0.867407262325287,0.486489742994308,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.0531740002334118,-0.920071363449097,0.388125240802765,0.104558326303959,-0.867407262325287,0.486489742994308,0.0763066858053207,-0.417371302843094,0.905526697635651, --0.768169522285461,-0.555073916912079,0.319074511528015,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.282510876655579,-0.92732298374176,0.245478615164757,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.101554751396179,-0.984395146369934,-0.143711194396019,0.0137346880510449,-0.998532474040985,-0.0523858591914177,-0.282510876655579,-0.92732298374176,0.245478615164757,-0.282510876655579,-0.92732298374176,0.245478615164757,0.0137346880510449,-0.998532474040985,-0.0523858591914177,0.0461164265871048,-0.995021760463715,-0.0883454754948616,-0.166342362761497,-0.929781317710876,0.328385353088379,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.282510876655579,-0.92732298374176,0.245478615164757,-0.166342362761497,-0.929781317710876,0.328385353088379,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.157239511609077,-0.916003048419952,0.369071990251541,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.157239511609077,-0.916003048419952,0.369071990251541,0.0143932355567813,-0.999884128570557,-0.00495438417419791,-0.201180189847946,-0.928689897060394,-0.311546981334686,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.201180189847946,-0.928689897060394,-0.311546981334686,-0.101554751396179,-0.984395146369934,-0.143711194396019,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.768169522285461,-0.555073916912079,0.319074511528015,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.0608872622251511,-0.898435711860657,0.434863150119781,0.12497141957283,-0.753512442111969,0.645446419715881,0.0991356819868088,-0.400941520929337,0.910723984241486,-0.0608872622251511,-0.898435711860657,0.434863150119781, -0.0731555819511414,-0.991638422012329,0.106308683753014,0.192215457558632,-0.938979744911194,0.285254687070847,0.12497141957283,-0.753512442111969,0.645446419715881,0.12497141957283,-0.753512442111969,0.645446419715881,0.192215457558632,-0.938979744911194,0.285254687070847,0.0143932355567813,-0.999884128570557,-0.00495438417419791,-0.157239511609077,-0.916003048419952,0.369071990251541,0.0991356819868088,-0.400941520929337,0.910723984241486,0.12497141957283,-0.753512442111969,0.645446419715881,-0.157239511609077,-0.916003048419952,0.369071990251541,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.0171244870871305,-0.995451152324677,-0.0937228202819824,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,0.0731555819511414,-0.991638422012329,0.106308683753014,-0.0608872622251511,-0.898435711860657,0.434863150119781,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.0608872622251511,-0.898435711860657,0.434863150119781,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.717177093029022,-0.685138523578644,0.127444699406624,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.0493219755589962,-0.954008638858795,-0.29569399356842,-0.0137182576581836,-0.990748465061188,-0.135015621781349,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.0137182576581836,-0.990748465061188,-0.135015621781349, --0.0171244870871305,-0.995451152324677,-0.0937228202819824,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.717177093029022,-0.685138523578644,0.127444699406624,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.583945155143738,-0.762057662010193,0.279778659343719,-0.16066101193428,-0.950351893901825,-0.266494303941727,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.704103589057922,-0.47858914732933,-0.524586081504822,-0.16066101193428,-0.950351893901825,-0.266494303941727,-0.0403466336429119,-0.951976001262665,-0.303502857685089,-0.0837778821587563,-0.852415442466736,-0.516109764575958,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.0837778821587563,-0.852415442466736,-0.516109764575958,-0.0493219755589962,-0.954008638858795,-0.29569399356842,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.704103589057922,-0.47858914732933,-0.524586081504822,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.362244516611099,-0.81382018327713,0.454395741224289,0.00795949995517731,-0.99587094783783,0.0904309153556824,0.0469965636730194,-0.964173197746277,0.26107719540596,-0.0978286787867546,-0.621704280376434,0.777118682861328,0.00795949995517731,-0.99587094783783,0.0904309153556824,0.0276018399745226,-0.998904407024384,0.0377895794808865,0.0362662635743618,-0.99393630027771,0.103804931044579,0.0469965636730194,-0.964173197746277,0.26107719540596,0.0469965636730194,-0.964173197746277,0.26107719540596,0.0362662635743618,-0.99393630027771,0.103804931044579,-0.0403466336429119,-0.951976001262665,-0.303502857685089,-0.16066101193428,-0.950351893901825,-0.266494303941727,-0.0978286787867546,-0.621704280376434,0.777118682861328,0.0469965636730194,-0.964173197746277,0.26107719540596,-0.16066101193428,-0.950351893901825,-0.266494303941727, --0.583945155143738,-0.762057662010193,0.279778659343719,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,0.0276018399745226,-0.998904407024384,0.0377895794808865,0.00795949995517731,-0.99587094783783,0.0904309153556824,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,0.00795949995517731,-0.99587094783783,0.0904309153556824,-0.362244516611099,-0.81382018327713,0.454395741224289,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.15286223590374,-0.88806164264679,-0.433566331863403, --0.649918794631958,-0.640278339385986,-0.409449756145477,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.15286223590374,-0.88806164264679,-0.433566331863403,-0.15286223590374,-0.88806164264679,-0.433566331863403,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.649918794631958,-0.640278339385986,-0.409449756145477,-0.15286223590374,-0.88806164264679,-0.433566331863403,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.290535598993301,-0.833319902420044,0.470283985137939,0.0733254179358482,-0.994846999645233,0.0700209513306618,0.10855720192194,-0.891241133213043,0.440345942974091,-0.122856259346008,-0.580215871334076,0.805143356323242,0.0733254179358482,-0.994846999645233,0.0700209513306618,0.0227406807243824,-0.998998880386353,0.038524117320776,0.0813811793923378,-0.926623225212097,0.367078334093094,0.10855720192194,-0.891241133213043,0.440345942974091,0.10855720192194,-0.891241133213043,0.440345942974091,0.0813811793923378,-0.926623225212097,0.367078334093094,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.122856259346008,-0.580215871334076,0.805143356323242,0.10855720192194,-0.891241133213043,0.440345942974091,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.366151511669159,-0.928801298141479,0.0571073777973652,0.0844504535198212,-0.991843283176422,-0.0954725444316864,0.0667957589030266,-0.991175949573517,-0.114492326974869,-0.370848000049591,-0.912586987018585,0.172211557626724,0.0844504535198212,-0.991843283176422,-0.0954725444316864,0.00222110073082149,-0.99709016084671,-0.0761995390057564,-0.00762299820780754,-0.992952108383179,-0.118270047008991,0.0667957589030266,-0.991175949573517,-0.114492326974869, -0.0667957589030266,-0.991175949573517,-0.114492326974869,-0.00762299820780754,-0.992952108383179,-0.118270047008991,0.0227406807243824,-0.998998880386353,0.038524117320776,0.0733254179358482,-0.994846999645233,0.0700209513306618,-0.370848000049591,-0.912586987018585,0.172211557626724,0.0667957589030266,-0.991175949573517,-0.114492326974869,0.0733254179358482,-0.994846999645233,0.0700209513306618,-0.290535598993301,-0.833319902420044,0.470283985137939,-0.443843692541122,-0.869031727313995,-0.218601703643799,0.00930165965110064,-0.983946025371552,-0.178223818540573,0.0662668272852898,-0.995057761669159,-0.0739509761333466,-0.392173528671265,-0.919722676277161,-0.0176098681986332,0.00930165965110064,-0.983946025371552,-0.178223818540573,-0.00755474669858813,-0.988938808441162,-0.148131370544434,0.00877070985734463,-0.998901963233948,-0.0460210405290127,0.0662668272852898,-0.995057761669159,-0.0739509761333466,0.0662668272852898,-0.995057761669159,-0.0739509761333466,0.00877070985734463,-0.998901963233948,-0.0460210405290127,0.00222110073082149,-0.99709016084671,-0.0761995390057564,0.0844504535198212,-0.991843283176422,-0.0954725444316864,-0.392173528671265,-0.919722676277161,-0.0176098681986332,0.0662668272852898,-0.995057761669159,-0.0739509761333466,0.0844504535198212,-0.991843283176422,-0.0954725444316864,-0.366151511669159,-0.928801298141479,0.0571073777973652,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,-0.0604715831577778,-0.931170403957367,-0.359534293413162,-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,0.0345610603690147,-0.998634815216064,-0.0391647480428219,-0.0432454086840153,-0.950159907341003,-0.308748960494995,-0.0604715831577778,-0.931170403957367,-0.359534293413162,-0.0604715831577778,-0.931170403957367,-0.359534293413162,-0.0432454086840153,-0.950159907341003,-0.308748960494995,-0.00755474669858813,-0.988938808441162,-0.148131370544434,0.00930165965110064,-0.983946025371552,-0.178223818540573, --0.430989116430283,-0.753180742263794,-0.496957838535309,-0.0604715831577778,-0.931170403957367,-0.359534293413162,0.00930165965110064,-0.983946025371552,-0.178223818540573,-0.443843692541122,-0.869031727313995,-0.218601703643799,-0.453250050544739,-0.875390589237213,0.168094336986542,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,0.0434680469334126,-0.962681472301483,0.267123430967331,-0.249369755387306,-0.827082753181458,0.503734946250916,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,0.0376603677868843,-0.998001277446747,-0.050745140761137,0.114700697362423,-0.969060480594635,0.218553364276886,0.0434680469334126,-0.962681472301483,0.267123430967331,0.0434680469334126,-0.962681472301483,0.267123430967331,0.114700697362423,-0.969060480594635,0.218553364276886,0.0345610603690147,-0.998634815216064,-0.0391647480428219,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,-0.249369755387306,-0.827082753181458,0.503734946250916,0.0434680469334126,-0.962681472301483,0.267123430967331,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.427178382873535,-0.896017134189606,-0.121127761900425,0.0499588958919048,-0.987058818340302,-0.152377352118492,0.000547988689504564,-0.980932414531708,-0.194348245859146,-0.468763470649719,-0.873666763305664,-0.130258396267891,0.0499588958919048,-0.987058818340302,-0.152377352118492,-0.00206752307713032,-0.989448010921478,-0.144873470067978,-0.00987572688609362,-0.975039064884186,-0.221813872456551,0.000547988689504564,-0.980932414531708,-0.194348245859146,0.000547988689504564,-0.980932414531708,-0.194348245859146,-0.00987572688609362,-0.975039064884186,-0.221813872456551,0.0376603677868843,-0.998001277446747,-0.050745140761137,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,-0.468763470649719,-0.873666763305664,-0.130258396267891,0.000547988689504564,-0.980932414531708,-0.194348245859146,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,-0.453250050544739,-0.875390589237213,0.168094336986542, --0.536952257156372,-0.810873031616211,-0.232738271355629,-0.0649333521723747,-0.969461679458618,-0.236489936709404,0.0173084046691656,-0.994246423244476,-0.10570852458477,-0.475014746189117,-0.876436233520508,-0.0788700059056282,-0.0649333521723747,-0.969461679458618,-0.236489936709404,-0.00558301247656345,-0.976331949234009,-0.216205418109894,0.00842917431145906,-0.996677577495575,-0.0810110941529274,0.0173084046691656,-0.994246423244476,-0.10570852458477,0.0173084046691656,-0.994246423244476,-0.10570852458477,0.00842917431145906,-0.996677577495575,-0.0810110941529274,-0.00206752307713032,-0.989448010921478,-0.144873470067978,0.0499588958919048,-0.987058818340302,-0.152377352118492,-0.475014746189117,-0.876436233520508,-0.0788700059056282,0.0173084046691656,-0.994246423244476,-0.10570852458477,0.0499588958919048,-0.987058818340302,-0.152377352118492,-0.427178382873535,-0.896017134189606,-0.121127761900425,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.0829290598630905,-0.990105748176575,-0.11319588124752,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.0829290598630905,-0.990105748176575,-0.11319588124752,0.00105690758209676,-0.990462958812714,-0.137775212526321,-0.029094323515892,-0.923119962215424,-0.383409798145294,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.029094323515892,-0.923119962215424,-0.383409798145294,-0.00558301247656345,-0.976331949234009,-0.216205418109894,-0.0649333521723747,-0.969461679458618,-0.236489936709404,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.0649333521723747,-0.969461679458618,-0.236489936709404,-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.0471587143838406,-0.998812437057495,-0.0122400857508183,-0.0520746521651745,-0.985492706298828,0.161531209945679,-0.415800213813782,-0.82390969991684,0.385075271129608, --0.0471587143838406,-0.998812437057495,-0.0122400857508183,0.00836390163749456,-0.998803675174713,-0.0481772869825363,0.0300077237188816,-0.991880118846893,0.123585782945156,-0.0520746521651745,-0.985492706298828,0.161531209945679,-0.0520746521651745,-0.985492706298828,0.161531209945679,0.0300077237188816,-0.991880118846893,0.123585782945156,0.00105690758209676,-0.990462958812714,-0.137775212526321,-0.0829290598630905,-0.990105748176575,-0.11319588124752,-0.415800213813782,-0.82390969991684,0.385075271129608,-0.0520746521651745,-0.985492706298828,0.161531209945679,-0.0829290598630905,-0.990105748176575,-0.11319588124752,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.410520315170288,-0.91163182258606,-0.0200147889554501,0.0534753352403641,-0.996550679206848,-0.0634595528244972,0.0098979165777564,-0.989668369293213,-0.143033608794212,-0.456867456436157,-0.88587349653244,-0.0806247070431709,0.0534753352403641,-0.996550679206848,-0.0634595528244972,-0.00338497199118137,-0.998307347297668,-0.058060847222805,-0.00341826910153031,-0.986906588077545,-0.161256238818169,0.0098979165777564,-0.989668369293213,-0.143033608794212,0.0098979165777564,-0.989668369293213,-0.143033608794212,-0.00341826910153031,-0.986906588077545,-0.161256238818169,0.00836390163749456,-0.998803675174713,-0.0481772869825363,-0.0471587143838406,-0.998812437057495,-0.0122400857508183,-0.456867456436157,-0.88587349653244,-0.0806247070431709,0.0098979165777564,-0.989668369293213,-0.143033608794212,-0.0471587143838406,-0.998812437057495,-0.0122400857508183,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.580127060413361,-0.80225270986557,-0.140865981578827,-0.0762956216931343,-0.996552288532257,0.0325979068875313,0.0105597283691168,-0.998346745967865,0.0565000027418137,-0.482968419790268,-0.872684597969055,0.0718556493520737,-0.0762956216931343,-0.996552288532257,0.0325979068875313,0.00254658795893192,-0.995971739292145,0.0896312519907951,0.00499414373189211,-0.996677398681641,0.0812970474362373,0.0105597283691168,-0.998346745967865,0.0565000027418137, -0.0105597283691168,-0.998346745967865,0.0565000027418137,0.00499414373189211,-0.996677398681641,0.0812970474362373,-0.00338497199118137,-0.998307347297668,-0.058060847222805,0.0534753352403641,-0.996550679206848,-0.0634595528244972,-0.482968419790268,-0.872684597969055,0.0718556493520737,0.0105597283691168,-0.998346745967865,0.0565000027418137,0.0534753352403641,-0.996550679206848,-0.0634595528244972,-0.410520315170288,-0.91163182258606,-0.0200147889554501,-0.468642711639404,-0.584188401699066,-0.662644624710083,-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.0501352362334728,-0.942996501922607,-0.329004615545273,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,0.00254658795893192,-0.995971739292145,0.0896312519907951,-0.0762956216931343,-0.996552288532257,0.0325979068875313,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.0762956216931343,-0.996552288532257,0.0325979068875313,-0.580127060413361,-0.80225270986557,-0.140865981578827,-0.193733528256416,0.278880715370178,0.940581142902374,-0.248255610466003,0.283828645944595,0.926180481910706,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.193733528256416,0.278880715370178,0.940581142902374,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.0268143340945244,-0.143278241157532,0.989319086074829,-0.15919853746891,0.261923760175705,0.951867520809174,0.355741113424301,0.129971653223038,-0.925502955913544,0.331362664699554,0.0784346461296082,-0.940237700939178,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.275702863931656,-0.086119182407856,-0.957377374172211,0.355741113424301,0.129971653223038,-0.925502955913544, -0.275702863931656,-0.086119182407856,-0.957377374172211,0.18702594935894,-0.0647337883710861,-0.980219721794128,0.329432427883148,0.157070621848106,-0.931022584438324,-0.536642730236053,0.192880928516388,0.821469128131866,-0.594218373298645,0.165697261691093,0.787050783634186,-0.652988374233246,-0.116873756051064,0.748295783996582,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.536642730236053,0.192880928516388,0.821469128131866,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.496219664812088,0.210041984915733,0.842406392097473,-0.446456104516983,0.228713467717171,0.865082144737244,-0.462157160043716,0.223579064011574,0.858151078224182,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.446456104516983,0.228713467717171,0.865082144737244,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.424677073955536,0.229889005422592,0.87567138671875,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.469950377941132,-0.180933505296707,0.863950073719025,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.469950377941132,-0.180933505296707,0.863950073719025,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.736716389656067,0.168893858790398,0.654770076274872,-0.42128998041153,0.123724490404129,0.898446977138519,-0.652534902095795,0.131031826138496,0.746343612670898,-0.652988374233246,-0.116873756051064,0.748295783996582,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.42128998041153,0.123724490404129,0.898446977138519,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.593219518661499,0.173843711614609,0.786046326160431,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.387588620185852,0.0575357675552368,0.920035183429718, --0.390184640884399,-0.0543684512376785,0.919130027294159,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.756162881851196,0.111659251153469,0.644786775112152,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.781821191310883,-0.163932874798775,0.601565837860107,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.756162881851196,0.111659251153469,0.644786775112152,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.7120640873909,0.130230605602264,0.689930975437164,-0.378375172615051,0.238288059830666,0.89445573091507,-0.388883531093597,0.223127603530884,0.893858790397644,-0.390184640884399,-0.0543684512376785,0.919130027294159,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.378375172615051,0.238288059830666,0.89445573091507,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.374621093273163,-0.0767543241381645,0.923995614051819,-0.363866746425629,0.253485023975372,0.896295845508575,-0.803810238838196,0.172660142183304,0.569278120994568,-0.781746685504913,0.12085734307766,0.611772418022156,-0.781821191310883,-0.163932874798775,0.601565837860107,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.803810238838196,0.172660142183304,0.569278120994568,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.886572659015656,0.216122582554817,0.408998668193817,-0.369501143693924,0.142275765538216,0.918273627758026,-0.374680399894714,0.128914713859558,0.91814786195755,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.369501143693924,0.142275765538216,0.918273627758026,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.374621093273163,-0.0767543241381645,0.923995614051819, --0.470575630664825,0.114327363669872,0.87492161989212,-0.857771813869476,0.074350006878376,0.508625090122223,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.857771813869476,0.074350006878376,0.508625090122223,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.300128549337387,0.2756507396698,0.913202881813049,-0.32773369550705,0.266680598258972,0.90635097026825,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.300128549337387,0.2756507396698,0.913202881813049,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.248255610466003,0.283828645944595,0.926180481910706,-0.745248079299927,0.161823198199272,0.646852791309357,-0.886231780052185,0.167720913887024,0.431813508272171,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.745248079299927,0.161823198199272,0.646852791309357,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.762375354766846,0.213708147406578,0.610829532146454,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.907412171363831,0.0993990823626518,0.408317297697067,-0.899417638778687,0.0698455348610878,0.431473612785339,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.844495415687561,-0.145735219120979,0.515353083610535, --0.907412171363831,0.0993990823626518,0.408317297697067,-0.844495415687561,-0.145735219120979,0.515353083610535,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.790518581867218,0.002411242807284,0.612433254718781,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.790518581867218,0.002411242807284,0.612433254718781,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.885592103004456,-0.117163017392159,0.449443340301514,-0.825584471225739,0.0556592233479023,0.561526894569397,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.885592103004456,-0.117163017392159,0.449443340301514,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.9179927110672,0.177842438220978,0.354487657546997,-0.881876766681671,0.156258404254913,0.444833248853683,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.9179927110672,0.177842438220978,0.354487657546997,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.966796219348907,0.0449138544499874,0.251570612192154, --0.980603277683258,0.0181206651031971,0.195163428783417,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.966796219348907,0.0449138544499874,0.251570612192154,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.944680571556091,0.0620129816234112,0.322076231241226,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.984815239906311,0.116283245384693,0.128907635807991,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.93900191783905,-0.304208785295486,0.160413801670074,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.941263139247894,-0.228814080357552,0.248330056667328,-0.94240802526474,-0.257382273674011,0.213591873645782,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.94240802526474,-0.257382273674011,0.213591873645782, --0.93900191783905,-0.304208785295486,0.160413801670074,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.945272922515869,0.00988496094942093,0.326130986213684,-0.941263139247894,-0.228814080357552,0.248330056667328,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.930492401123047,0.117642223834991,0.346906840801239,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.96250981092453,0.271058112382889,0.010126169770956,-0.955795884132385,0.283257216215134,0.0788643434643745,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.96250981092453,0.271058112382889,0.010126169770956,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.976750731468201,0.21237450838089,-0.029242055490613,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.998523056507111,-0.0132260071113706,0.0526959337294102,0.883981108665466,-0.429128289222717,-0.185543358325958,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.85398256778717,-0.5202556848526,0.00691878609359264, -0.896174132823944,-0.440976023674011,-0.0491107478737831,0.883981108665466,-0.429128289222717,-0.185543358325958,0.896174132823944,-0.440976023674011,-0.0491107478737831,0.89838719367981,-0.352516740560532,-0.261977761983871,0.881268262863159,-0.338604122400284,-0.329717218875885,0.988860845565796,0.0708148032426834,-0.13091829419136,0.988096594810486,0.0418830551207066,-0.148023575544357,0.85398256778717,-0.5202556848526,0.00691878609359264,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.988860845565796,0.0708148032426834,-0.13091829419136,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.990515828132629,0.087090939283371,-0.106271043419838,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.904228806495667,-0.397547334432602,-0.155969187617302,0.873746514320374,-0.463690847158432,-0.146826222538948,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.873746514320374,-0.463690847158432,-0.146826222538948,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.794481456279755,-0.603172719478607,-0.0705816969275475,0.996402859687805,0.0495557300746441,0.0687424540519714,0.996081113815308,0.0883794128894806,0.00336791947484016,0.904228806495667,-0.397547334432602,-0.155969187617302,0.92946070432663,-0.337410181760788,-0.149188429117203,0.996402859687805,0.0495557300746441,0.0687424540519714,0.92946070432663,-0.337410181760788,-0.149188429117203,0.941188633441925,-0.298583924770355,-0.158151000738144,0.979617714881897,0.0102590182796121,-0.200608760118484,0.915288627147675,-0.384901762008667,-0.118732027709484,0.932737112045288,-0.342042773962021,-0.114053167402744,0.972169041633606,-0.163636535406113,-0.167661264538765,0.953488290309906,-0.24926321208477,-0.169493049383163,0.915288627147675,-0.384901762008667,-0.118732027709484,0.953488290309906,-0.24926321208477,-0.169493049383163,0.941188633441925,-0.298583924770355,-0.158151000738144,0.900180280208588,-0.423967570066452,-0.0996347591280937, -0.967421650886536,0.111605174839497,-0.227243483066559,0.944517731666565,0.0760102942585945,-0.319544553756714,0.972169041633606,-0.163636535406113,-0.167661264538765,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.967421650886536,0.111605174839497,-0.227243483066559,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.986385881900787,0.129490092396736,-0.101366467773914,0.9805948138237,0.130027592182159,-0.146719142794609,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.976446330547333,-0.207822889089584,-0.057985320687294,0.998157441616058,0.0592895559966564,0.0129011496901512,0.990121841430664,0.132592484354973,-0.0455840602517128,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.990121841430664,0.132592484354973,-0.0455840602517128,0.986385881900787,0.129490092396736,-0.101366467773914,0.993456125259399,-0.0716922953724861,-0.0889109894633293,0.964100778102875,0.111388944089413,0.241044074296951,0.988234162330627,0.126211360096931,0.0863936245441437,0.998157441616058,0.0592895559966564,0.0129011496901512,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.964100778102875,0.111388944089413,0.241044074296951,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.978084087371826,0.152315065264702,0.141956150531769,0.967262208461761,-0.213494047522545,-0.137200877070427,0.95521467924118,-0.211122363805771,-0.207345873117447,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.967262208461761,-0.213494047522545,-0.137200877070427,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.979054927825928,-0.184137359261513,-0.086860828101635,0.928049683570862,0.215501263737679,-0.303781151771545,0.944020211696625,0.193889617919922,-0.266894608736038,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.960871279239655,-0.0276883840560913,-0.275608122348785,0.928049683570862,0.215501263737679,-0.303781151771545, -0.960871279239655,-0.0276883840560913,-0.275608122348785,0.952481865882874,0.000842949375510216,-0.304594099521637,0.95380312204361,0.19058008491993,-0.232247248291969,0.921732008457184,-0.168077379465103,-0.349514126777649,0.904816269874573,-0.24091811478138,-0.351092487573624,0.942210137844086,-0.189072623848915,-0.276571184396744,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.921732008457184,-0.168077379465103,-0.349514126777649,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.952481865882874,0.000842949375510216,-0.304594099521637,0.94556999206543,-0.0409093052148819,-0.322837442159653,0.989654898643494,-0.0581933557987213,0.131135925650597,0.994931936264038,0.0260696522891521,0.0971127524971962,0.942210137844086,-0.189072623848915,-0.276571184396744,0.895867526531219,-0.252381771802902,-0.365684121847153,0.989654898643494,-0.0581933557987213,0.131135925650597,0.895867526531219,-0.252381771802902,-0.365684121847153,0.78961306810379,-0.233641311526299,-0.567382454872131,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.789911985397339,-0.140332266688347,-0.596947133541107,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.753824532032013,0.0120829222723842,-0.656964600086212,0.713024973869324,-0.114775560796261,-0.691680490970612,0.789911985397339,-0.140332266688347,-0.596947133541107,0.713024973869324,-0.114775560796261,-0.691680490970612,0.78961306810379,-0.233641311526299,-0.567382454872131,0.833502888679504,-0.23296232521534,-0.501000463962555,0.846345007419586,0.0378726609051228,-0.53128707408905,0.655481338500977,0.0419433489441872,-0.754045724868774,0.753824532032013,0.0120829222723842,-0.656964600086212,0.866058588027954,0.0650843977928162,-0.495688021183014,0.846345007419586,0.0378726609051228,-0.53128707408905,0.866058588027954,0.0650843977928162,-0.495688021183014,0.912824213504791,0.0662926584482193,-0.402935802936554,0.91331148147583,0.0418378300964832,-0.405106961727142,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.929381966590881,-0.123729966580868,-0.347764313220978, -0.968531847000122,-0.04851333796978,-0.24411541223526,0.935791373252869,0.0217018183320761,-0.351885586977005,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.935791373252869,0.0217018183320761,-0.351885586977005,0.912824213504791,0.0662926584482193,-0.402935802936554,0.907388210296631,0.0635263249278069,-0.415464758872986,0.980044305324554,-0.0478119067847729,0.192943409085274,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.968531847000122,-0.04851333796978,-0.24411541223526,0.966464221477509,-0.141532048583031,-0.214278906583786,0.980044305324554,-0.0478119067847729,0.192943409085274,0.966464221477509,-0.141532048583031,-0.214278906583786,0.884316444396973,-0.198062226176262,-0.422795385122299,0.976782023906708,-0.096743531525135,-0.191147983074188,0.788994014263153,-0.203541442751884,-0.579706132411957,0.799626886844635,-0.163402855396271,-0.577837646007538,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.768566012382507,-0.143427550792694,-0.62348610162735,0.788994014263153,-0.203541442751884,-0.579706132411957,0.768566012382507,-0.143427550792694,-0.62348610162735,0.884316444396973,-0.198062226176262,-0.422795385122299,0.862016081809998,-0.237058743834496,-0.448030591011047,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.813247382640839,0.00783070549368858,-0.58186537027359,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.813247382640839,0.00783070549368858,-0.58186537027359,0.823549389839172,0.0683218166232109,-0.563115000724792,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.803298056125641,-0.115441992878914,-0.584281802177429,0.792401313781738,-0.21995422244072,-0.568964242935181,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.842628657817841,0.0312162972986698,-0.537589430809021,0.803298056125641,-0.115441992878914,-0.584281802177429,0.842628657817841,0.0312162972986698,-0.537589430809021,0.823549389839172,0.0683218166232109,-0.563115000724792, -0.82582426071167,0.0285451002418995,-0.563204646110535,0.993614196777344,-0.112306877970695,0.0108647383749485,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.868971228599548,-0.212771654129028,-0.446785569190979,0.993614196777344,-0.112306877970695,0.0108647383749485,0.868971228599548,-0.212771654129028,-0.446785569190979,0.692737460136414,-0.268014371395111,-0.669539391994476,0.780752301216125,-0.130897298455238,-0.610976099967957,0.513055562973022,-0.300618588924408,-0.803991615772247,0.516933262348175,-0.230008617043495,-0.824546039104462,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.469770878553391,-0.16160424053669,-0.867870628833771,0.513055562973022,-0.300618588924408,-0.803991615772247,0.469770878553391,-0.16160424053669,-0.867870628833771,0.692737460136414,-0.268014371395111,-0.669539391994476,0.625449419021606,-0.363071113824844,-0.690646409988403,0.528671145439148,-0.128377139568329,-0.839062631130219,0.408123046159744,-0.107793182134628,-0.906540811061859,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.52849805355072,0.0252384264022112,-0.848559260368347,0.528671145439148,-0.128377139568329,-0.839062631130219,0.52849805355072,0.0252384264022112,-0.848559260368347,0.576102674007416,0.0398704931139946,-0.816404342651367,0.56365704536438,-0.122223049402237,-0.816916227340698,0.516984581947327,-0.207487523555756,-0.830467224121094,0.469946354627609,-0.278394103050232,-0.837643802165985,0.532904505729675,-0.147325813770294,-0.833251416683197,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.516984581947327,-0.207487523555756,-0.830467224121094,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.576102674007416,0.0398704931139946,-0.816404342651367,0.560758829116821,-0.0380145087838173,-0.82710599899292,0.697140097618103,-0.0760893598198891,-0.712885737419128,0.635299921035767,-0.0795372202992439,-0.768158614635468,0.532904505729675,-0.147325813770294,-0.833251416683197,0.464342623949051,-0.191317722201347,-0.864744663238525, -0.697140097618103,-0.0760893598198891,-0.712885737419128,0.464342623949051,-0.191317722201347,-0.864744663238525,0.413349270820618,-0.204832509160042,-0.8872349858284,0.404185056686401,-0.0720401108264923,-0.911835968494415,0.373075157403946,-0.292190045118332,-0.880590617656708,0.369658052921295,-0.29566553235054,-0.880871653556824,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.372428387403488,-0.163693055510521,-0.913510680198669,0.373075157403946,-0.292190045118332,-0.880590617656708,0.372428387403488,-0.163693055510521,-0.913510680198669,0.413349270820618,-0.204832509160042,-0.8872349858284,0.400332540273666,-0.2842738032341,-0.87116140127182,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.405421048402786,0.0109599707648158,-0.914064407348633,0.357091963291168,-0.0802728161215782,-0.93061363697052,0.364152193069458,-0.256926089525223,-0.895199477672577,0.327495545148849,-0.333733320236206,-0.883950591087341,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.364152193069458,-0.256926089525223,-0.895199477672577,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.405421048402786,0.0109599707648158,-0.914064407348633,0.395990818738937,-0.0959687009453773,-0.913225829601288,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.18182772397995,0.253345400094986,0.950134098529816,0.0751021802425385,0.226091757416725,0.971206486225128,-0.00683469092473388,-0.0465485118329525,0.998892605304718,0.0751021802425385,0.226091757416725,0.971206486225128,-0.18182772397995,0.253345400094986,0.950134098529816,-0.130153819918633,0.193926721811295,0.972343742847443,0.208869874477386,0.164753541350365,0.963965654373169,0.0751021802425385,0.226091757416725,0.971206486225128, -0.208869874477386,0.164753541350365,0.963965654373169,0.496378749608994,0.117570020258427,0.860107839107513,0.361446797847748,0.185934022068977,0.913665473461151,0.145520091056824,-0.0377094373106956,0.988636374473572,-0.00683469092473388,-0.0465485118329525,0.998892605304718,0.0751021802425385,0.226091757416725,0.971206486225128,0.361446797847748,0.185934022068977,0.913665473461151,0.339927136898041,0.0439854599535465,-0.939422607421875,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.331362664699554,0.0784346461296082,-0.940237700939178,0.355741113424301,0.129971653223038,-0.925502955913544,-0.374680399894714,0.128914713859558,0.91814786195755,-0.307092875242233,0.373005419969559,0.875534653663635,-0.240157574415207,0.313670128583908,0.918659508228302,-0.393057554960251,0.061814084649086,0.917433798313141,-0.393057554960251,0.061814084649086,0.917433798313141,-0.240157574415207,0.313670128583908,0.918659508228302,-0.18182772397995,0.253345400094986,0.950134098529816,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.387588620185852,0.0575357675552368,0.920035183429718,-0.459225565195084,0.249145716428757,0.852665364742279,-0.833136200904846,0.381204217672348,0.400708734989166,-0.532146513462067,0.0696193277835846,0.843785047531128,-0.532146513462067,0.0696193277835846,0.843785047531128,-0.833136200904846,0.381204217672348,0.400708734989166,-0.644018173217773,0.43055859208107,0.632344722747803,-0.470575630664825,0.114327363669872,0.87492161989212,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.472881108522415,0.383732289075851,0.793179035186768,-0.395541936159134,0.355704635381699,0.846770763397217,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.395541936159134,0.355704635381699,0.846770763397217,-0.256543427705765,0.307984679937363,0.916150033473969,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.652534902095795,0.131031826138496,0.746343612670898,-0.481347262859344,0.350065946578979,0.803591012954712,-0.92929071187973,0.286719083786011,0.232832327485085, --0.877387881278992,0.131995260715485,0.461267381906509,-0.877387881278992,0.131995260715485,0.461267381906509,-0.92929071187973,0.286719083786011,0.232832327485085,-0.738191425800323,0.373619168996811,0.561677932739258,-0.736716389656067,0.168893858790398,0.654770076274872,-0.781746685504913,0.12085734307766,0.611772418022156,-0.650364398956299,0.58708518743515,0.482034385204315,-0.544596552848816,0.574981093406677,0.610582768917084,-0.755209267139435,0.140739098191261,0.640196442604065,-0.755209267139435,0.140739098191261,0.640196442604065,-0.544596552848816,0.574981093406677,0.610582768917084,-0.340317577123642,0.527058899402618,0.778712213039398,-0.593219518661499,0.173843711614609,0.786046326160431,-0.886231780052185,0.167720913887024,0.431813508272171,-0.710642516613007,0.402679920196533,0.576919555664063,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.950192093849182,0.178449869155884,0.25552025437355,-0.950192093849182,0.178449869155884,0.25552025437355,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.826912581920624,0.543511629104614,0.14425890147686,-0.886572659015656,0.216122582554817,0.408998668193817,-0.899417638778687,0.0698455348610878,0.431473612785339,-0.834043562412262,0.422363489866257,0.354937255382538,-0.7409907579422,0.431041389703751,0.51491379737854,-0.870330512523651,0.153981164097786,0.467776238918304,-0.870330512523651,0.153981164097786,0.467776238918304,-0.7409907579422,0.431041389703751,0.51491379737854,-0.575689733028412,0.43614661693573,0.691633939743042,-0.762375354766846,0.213708147406578,0.610829532146454,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.703601121902466,0.332484751939774,0.628012180328369,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.881876766681671,0.156258404254913,0.444833248853683, --0.802801370620728,0.432132750749588,0.410817712545395,-0.722085058689117,0.413335591554642,0.554749369621277,-0.850952863693237,0.11118795722723,0.513338506221771,-0.850952863693237,0.11118795722723,0.513338506221771,-0.722085058689117,0.413335591554642,0.554749369621277,-0.568908989429474,0.364634901285172,0.737145841121674,-0.825584471225739,0.0556592233479023,0.561526894569397,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.866828918457031,0.469911992549896,0.166704028844833,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.89244532585144,0.416358262300491,0.173744335770607,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.89244532585144,0.416358262300491,0.173744335770607,-0.830115258693695,0.431543350219727,0.353099137544632,-0.984815239906311,0.116283245384693,0.128907635807991,-0.945272922515869,0.00988496094942093,0.326130986213684,-0.837620437145233,0.464953988790512,0.286722391843796,-0.80746865272522,0.463813126087189,-0.364515721797943,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.80746865272522,0.463813126087189,-0.364515721797943,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.955795884132385,0.283257216215134,0.0788643434643745,-0.897977590560913,0.43198174238205,0.0838346183300018,-0.878231346607208,0.419936746358871,0.228829219937325,-0.953635692596436,0.236451253294945,0.186198204755783,-0.953635692596436,0.236451253294945,0.186198204755783,-0.878231346607208,0.419936746358871,0.228829219937325, --0.801896631717682,0.384813547134399,0.457034409046173,-0.930492401123047,0.117642223834991,0.346906840801239,-0.999700367450714,0.0132086621597409,0.0206089336425066,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.976750731468201,0.21237450838089,-0.029242055490613,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.988096594810486,0.0418830551207066,-0.148023575544357,0.967489182949066,0.073288656771183,-0.242060959339142,0.919324100017548,0.0491604432463646,-0.390418291091919,0.993068099021912,0.097786158323288,-0.065219409763813,0.996081113815308,0.0883794128894806,0.00336791947484016,0.992337584495544,0.0719796568155289,0.100424520671368,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.921634495258331,0.0250504910945892,-0.387249529361725,0.944517731666565,0.0760102942585945,-0.319544553756714,0.930461645126343,0.044032908976078,-0.36373382806778,0.89024543762207,0.0432123914361,-0.453426659107208,0.989431262016296,0.136282756924629,-0.0495256967842579,0.988234162330627,0.126211360096931,0.0863936245441437,0.994628012180328,-0.00375852175056934,0.103445485234261,0.99705582857132,0.0125236827880144,-0.0756492763757706,0.976457178592682,0.162414789199829,-0.141960471868515,0.944020211696625,0.193889617919922,-0.266894608736038,0.928477048873901,0.121489353477955,-0.350956588983536,0.925759255886078,0.076020248234272,-0.37039253115654,0.990025520324707,0.120999224483967,-0.072171114385128,0.994931936264038,0.0260696522891521,0.0971127524971962,0.940796434879303,0.037529218941927,0.336888253688812,0.996961891651154,0.0540988482534885,0.0560385398566723,0.459886282682419,0.0185286644846201,-0.887784481048584,0.655481338500977,0.0419433489441872,-0.754045724868774,0.547591149806976,0.0530366972088814,-0.835063576698303, -0.288455188274384,0.0432411171495914,-0.95651650428772,0.95409882068634,0.0348662063479424,-0.297455161809921,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.999887347221375,-0.00283974967896938,0.0147343929857016,0.95315283536911,0.0197086539119482,-0.301846146583557,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.651831209659576,-0.0200693961232901,-0.758098483085632,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.868885338306427,-0.0424795784056187,-0.493187189102173,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.408123046159744,-0.107793182134628,-0.906540811061859,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.590964138507843,-0.103098534047604,-0.800082564353943,0.635299921035767,-0.0795372202992439,-0.768158614635468,0.555411875247955,0.00989418476819992,-0.83151650428772,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.368370145559311,-0.02103091776371,-0.929441332817078,0.157864987850189,0.0144887296482921,-0.987354516983032,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.331362664699554,0.0784346461296082,-0.940237700939178,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.794481456279755,-0.603172719478607,-0.0705816969275475,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.734329581260681,-0.672811150550842,-0.0899177864193916,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.786744356155396,-0.578907549381256,-0.21424126625061,0.734329581260681,-0.672811150550842,-0.0899177864193916, -0.734329581260681,-0.672811150550842,-0.0899177864193916,0.786744356155396,-0.578907549381256,-0.21424126625061,0.549508213996887,-0.764573931694031,-0.336849242448807,0.717021465301514,-0.693082571029663,-0.074274830520153,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.734329581260681,-0.672811150550842,-0.0899177864193916,0.717021465301514,-0.693082571029663,-0.074274830520153,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.837749600410461,-0.538509607315063,-0.090460017323494,0.791381359100342,-0.604468882083893,-0.0912846848368645,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.976446330547333,-0.207822889089584,-0.057985320687294,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.837749600410461,-0.538509607315063,-0.090460017323494,0.837749600410461,-0.538509607315063,-0.090460017323494,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.993456125259399,-0.0716922953724861,-0.0889109894633293,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.791381359100342,-0.604468882083893,-0.0912846848368645,0.837749600410461,-0.538509607315063,-0.090460017323494,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.932737112045288,-0.342042773962021,-0.114053167402744,0.552260160446167,-0.79054182767868,-0.264673978090286,0.775599241256714,-0.513171076774597,-0.367561191320419,0.830363392829895,-0.453459203243256,-0.323838531970978,0.801824152469635,-0.544710993766785,-0.245698779821396,0.775599241256714,-0.513171076774597,-0.367561191320419,0.904816269874573,-0.24091811478138,-0.351092487573624,0.921732008457184,-0.168077379465103,-0.349514126777649,0.830363392829895,-0.453459203243256,-0.323838531970978,0.830363392829895,-0.453459203243256,-0.323838531970978,0.921732008457184,-0.168077379465103,-0.349514126777649,0.94556999206543,-0.0409093052148819,-0.322837442159653,0.947976529598236,-0.151237607002258,-0.280121088027954,0.801824152469635,-0.544710993766785,-0.245698779821396, -0.830363392829895,-0.453459203243256,-0.323838531970978,0.947976529598236,-0.151237607002258,-0.280121088027954,0.95521467924118,-0.211122363805771,-0.207345873117447,0.532298564910889,-0.759147047996521,-0.374638319015503,0.754648149013519,-0.505985617637634,-0.417713731527328,0.803503513336182,-0.41280871629715,-0.42891851067543,0.758493363857269,-0.496665269136429,-0.421913862228394,0.754648149013519,-0.505985617637634,-0.417713731527328,0.929381966590881,-0.123729966580868,-0.347764313220978,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.803503513336182,-0.41280871629715,-0.42891851067543,0.803503513336182,-0.41280871629715,-0.42891851067543,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.907388210296631,0.0635263249278069,-0.415464758872986,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.758493363857269,-0.496665269136429,-0.421913862228394,0.803503513336182,-0.41280871629715,-0.42891851067543,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.435355752706528,-0.743057668209076,-0.508262455463409,0.551320016384125,-0.643834948539734,-0.530587255954742,0.632389008998871,-0.593713819980621,-0.497582167387009,0.617779731750488,-0.62035059928894,-0.483232170343399,0.551320016384125,-0.643834948539734,-0.530587255954742,0.792401313781738,-0.21995422244072,-0.568964242935181,0.803298056125641,-0.115441992878914,-0.584281802177429,0.632389008998871,-0.593713819980621,-0.497582167387009,0.632389008998871,-0.593713819980621,-0.497582167387009,0.803298056125641,-0.115441992878914,-0.584281802177429,0.82582426071167,0.0285451002418995,-0.563204646110535,0.827804982662201,-0.130916640162468,-0.54552698135376,0.617779731750488,-0.62035059928894,-0.483232170343399,0.632389008998871,-0.593713819980621,-0.497582167387009,0.827804982662201,-0.130916640162468,-0.54552698135376,0.799626886844635,-0.163402855396271,-0.577837646007538,0.316736936569214,-0.703204691410065,-0.636538326740265,0.33041450381279,-0.654642522335052,-0.679903924465179, -0.379265308380127,-0.640037715435028,-0.668213665485382,0.381387948989868,-0.675574779510498,-0.630984902381897,0.33041450381279,-0.654642522335052,-0.679903924465179,0.469946354627609,-0.278394103050232,-0.837643802165985,0.516984581947327,-0.207487523555756,-0.830467224121094,0.379265308380127,-0.640037715435028,-0.668213665485382,0.379265308380127,-0.640037715435028,-0.668213665485382,0.516984581947327,-0.207487523555756,-0.830467224121094,0.560758829116821,-0.0380145087838173,-0.82710599899292,0.547020196914673,-0.186133503913879,-0.816163718700409,0.381387948989868,-0.675574779510498,-0.630984902381897,0.379265308380127,-0.640037715435028,-0.668213665485382,0.547020196914673,-0.186133503913879,-0.816163718700409,0.516933262348175,-0.230008617043495,-0.824546039104462,0.2781702876091,-0.682922065258026,-0.675454378128052,0.270437836647034,-0.666318237781525,-0.694898009300232,0.28106427192688,-0.652657389640808,-0.703591704368591,0.280835896730423,-0.693528056144714,-0.663438141345978,0.270437836647034,-0.666318237781525,-0.694898009300232,0.327495545148849,-0.333733320236206,-0.883950591087341,0.364152193069458,-0.256926089525223,-0.895199477672577,0.28106427192688,-0.652657389640808,-0.703591704368591,0.28106427192688,-0.652657389640808,-0.703591704368591,0.364152193069458,-0.256926089525223,-0.895199477672577,0.395990818738937,-0.0959687009453773,-0.913225829601288,0.383055806159973,-0.260195881128311,-0.886321723461151,0.280835896730423,-0.693528056144714,-0.663438141345978,0.28106427192688,-0.652657389640808,-0.703591704368591,0.383055806159973,-0.260195881128311,-0.886321723461151,0.369658052921295,-0.29566553235054,-0.880871653556824,0.54840362071991,-0.612563192844391,-0.569227397441864,0.53996068239212,-0.642871737480164,-0.543284833431244,0.81378310918808,-0.468367487192154,-0.344076693058014,0.815972208976746,-0.399134337902069,-0.418187886476517,0.53996068239212,-0.642871737480164,-0.543284833431244,0.549508213996887,-0.764573931694031,-0.336849242448807,0.786744356155396,-0.578907549381256,-0.21424126625061, -0.81378310918808,-0.468367487192154,-0.344076693058014,0.81378310918808,-0.468367487192154,-0.344076693058014,0.786744356155396,-0.578907549381256,-0.21424126625061,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.883981108665466,-0.429128289222717,-0.185543358325958,0.815972208976746,-0.399134337902069,-0.418187886476517,0.81378310918808,-0.468367487192154,-0.344076693058014,0.883981108665466,-0.429128289222717,-0.185543358325958,0.881268262863159,-0.338604122400284,-0.329717218875885,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.465979933738708,-0.871747374534607,-0.151390865445137,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.900180280208588,-0.423967570066452,-0.0996347591280937,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.717021465301514,-0.693082571029663,-0.074274830520153,0.465979933738708,-0.871747374534607,-0.151390865445137,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.717021465301514,-0.693082571029663,-0.074274830520153,0.549508213996887,-0.764573931694031,-0.336849242448807,0.932737112045288,-0.342042773962021,-0.114053167402744,0.915288627147675,-0.384901762008667,-0.118732027709484,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.791381359100342,-0.604468882083893,-0.0912846848368645,0.915288627147675,-0.384901762008667,-0.118732027709484,0.900180280208588,-0.423967570066452,-0.0996347591280937,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.452444911003113,-0.88996547460556,-0.0570528209209442, -0.791381359100342,-0.604468882083893,-0.0912846848368645,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.452444911003113,-0.88996547460556,-0.0570528209209442,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.548184633255005,-0.824028193950653,-0.143077865242958,0.823449552059174,-0.54899924993515,-0.143285527825356,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.823449552059174,-0.54899924993515,-0.143285527825356,0.979054927825928,-0.184137359261513,-0.086860828101635,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.976446330547333,-0.207822889089584,-0.057985320687294,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.95521467924118,-0.211122363805771,-0.207345873117447,0.967262208461761,-0.213494047522545,-0.137200877070427,0.812382161617279,-0.548754870891571,-0.197239279747009,0.801824152469635,-0.544710993766785,-0.245698779821396,0.967262208461761,-0.213494047522545,-0.137200877070427,0.979054927825928,-0.184137359261513,-0.086860828101635,0.823449552059174,-0.54899924993515,-0.143285527825356,0.812382161617279,-0.548754870891571,-0.197239279747009,0.812382161617279,-0.548754870891571,-0.197239279747009,0.823449552059174,-0.54899924993515,-0.143285527825356,0.548184633255005,-0.824028193950653,-0.143077865242958,0.549306571483612,-0.810717701911926,-0.202482223510742,0.801824152469635,-0.544710993766785,-0.245698779821396,0.812382161617279,-0.548754870891571,-0.197239279747009,0.549306571483612,-0.810717701911926,-0.202482223510742,0.552260160446167,-0.79054182767868,-0.264673978090286,0.528576493263245,-0.770433664321899,-0.356424927711487, -0.754335582256317,-0.502374529838562,-0.422608256340027,0.758316516876221,-0.517080545425415,-0.396968156099319,0.530801117420197,-0.783872842788696,-0.322170048952103,0.754335582256317,-0.502374529838562,-0.422608256340027,0.833502888679504,-0.23296232521534,-0.501000463962555,0.882255256175995,-0.269002169370651,-0.386346369981766,0.758316516876221,-0.517080545425415,-0.396968156099319,0.758316516876221,-0.517080545425415,-0.396968156099319,0.882255256175995,-0.269002169370651,-0.386346369981766,0.904816269874573,-0.24091811478138,-0.351092487573624,0.775599241256714,-0.513171076774597,-0.367561191320419,0.530801117420197,-0.783872842788696,-0.322170048952103,0.758316516876221,-0.517080545425415,-0.396968156099319,0.775599241256714,-0.513171076774597,-0.367561191320419,0.552260160446167,-0.79054182767868,-0.264673978090286,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.789911985397339,-0.140332266688347,-0.596947133541107,0.751129806041718,-0.497825115919113,-0.433559864759445,0.758493363857269,-0.496665269136429,-0.421913862228394,0.789911985397339,-0.140332266688347,-0.596947133541107,0.833502888679504,-0.23296232521534,-0.501000463962555,0.754335582256317,-0.502374529838562,-0.422608256340027,0.751129806041718,-0.497825115919113,-0.433559864759445,0.751129806041718,-0.497825115919113,-0.433559864759445,0.754335582256317,-0.502374529838562,-0.422608256340027,0.528576493263245,-0.770433664321899,-0.356424927711487,0.527743816375732,-0.766555488109589,-0.365894824266434,0.758493363857269,-0.496665269136429,-0.421913862228394,0.751129806041718,-0.497825115919113,-0.433559864759445,0.527743816375732,-0.766555488109589,-0.365894824266434,0.532298564910889,-0.759147047996521,-0.374638319015503,0.489569514989853,-0.755737662315369,-0.434951156377792,0.692149102687836,-0.559550762176514,-0.455886632204056,0.728176593780518,-0.546175241470337,-0.414066940546036,0.50800234079361,-0.772281050682068,-0.381465196609497,0.692149102687836,-0.559550762176514,-0.455886632204056,0.862016081809998,-0.237058743834496,-0.448030591011047, -0.924625039100647,-0.204379692673683,-0.321399390697479,0.728176593780518,-0.546175241470337,-0.414066940546036,0.728176593780518,-0.546175241470337,-0.414066940546036,0.924625039100647,-0.204379692673683,-0.321399390697479,0.929381966590881,-0.123729966580868,-0.347764313220978,0.754648149013519,-0.505985617637634,-0.417713731527328,0.50800234079361,-0.772281050682068,-0.381465196609497,0.728176593780518,-0.546175241470337,-0.414066940546036,0.754648149013519,-0.505985617637634,-0.417713731527328,0.532298564910889,-0.759147047996521,-0.374638319015503,0.799626886844635,-0.163402855396271,-0.577837646007538,0.788994014263153,-0.203541442751884,-0.579706132411957,0.650380432605743,-0.572864532470703,-0.498830169439316,0.617779731750488,-0.62035059928894,-0.483232170343399,0.788994014263153,-0.203541442751884,-0.579706132411957,0.862016081809998,-0.237058743834496,-0.448030591011047,0.692149102687836,-0.559550762176514,-0.455886632204056,0.650380432605743,-0.572864532470703,-0.498830169439316,0.650380432605743,-0.572864532470703,-0.498830169439316,0.692149102687836,-0.559550762176514,-0.455886632204056,0.489569514989853,-0.755737662315369,-0.434951156377792,0.46382150053978,-0.740590929985046,-0.486204266548157,0.617779731750488,-0.62035059928894,-0.483232170343399,0.650380432605743,-0.572864532470703,-0.498830169439316,0.46382150053978,-0.740590929985046,-0.486204266548157,0.435355752706528,-0.743057668209076,-0.508262455463409,0.363881915807724,-0.727092683315277,-0.582173526287079,0.454631268978119,-0.647301852703094,-0.611809313297272,0.502743184566498,-0.65389758348465,-0.56539112329483,0.394593596458435,-0.746646106243134,-0.535551607608795,0.454631268978119,-0.647301852703094,-0.611809313297272,0.625449419021606,-0.363071113824844,-0.690646409988403,0.750636577606201,-0.331162452697754,-0.571730852127075,0.502743184566498,-0.65389758348465,-0.56539112329483,0.502743184566498,-0.65389758348465,-0.56539112329483,0.750636577606201,-0.331162452697754,-0.571730852127075,0.792401313781738,-0.21995422244072,-0.568964242935181, -0.551320016384125,-0.643834948539734,-0.530587255954742,0.394593596458435,-0.746646106243134,-0.535551607608795,0.502743184566498,-0.65389758348465,-0.56539112329483,0.551320016384125,-0.643834948539734,-0.530587255954742,0.435355752706528,-0.743057668209076,-0.508262455463409,0.516933262348175,-0.230008617043495,-0.824546039104462,0.513055562973022,-0.300618588924408,-0.803991615772247,0.411999702453613,-0.64815616607666,-0.640429496765137,0.381387948989868,-0.675574779510498,-0.630984902381897,0.513055562973022,-0.300618588924408,-0.803991615772247,0.625449419021606,-0.363071113824844,-0.690646409988403,0.454631268978119,-0.647301852703094,-0.611809313297272,0.411999702453613,-0.64815616607666,-0.640429496765137,0.411999702453613,-0.64815616607666,-0.640429496765137,0.454631268978119,-0.647301852703094,-0.611809313297272,0.363881915807724,-0.727092683315277,-0.582173526287079,0.339330106973648,-0.710198104381561,-0.616825580596924,0.381387948989868,-0.675574779510498,-0.630984902381897,0.411999702453613,-0.64815616607666,-0.640429496765137,0.339330106973648,-0.710198104381561,-0.616825580596924,0.316736936569214,-0.703204691410065,-0.636538326740265,0.283764809370041,-0.66997879743576,-0.6860072016716,0.305386394262314,-0.637453854084015,-0.707383692264557,0.315192133188248,-0.640316665172577,-0.700463116168976,0.295892357826233,-0.683634638786316,-0.667151749134064,0.305386394262314,-0.637453854084015,-0.707383692264557,0.400332540273666,-0.2842738032341,-0.87116140127182,0.432826220989227,-0.292234122753143,-0.852795779705048,0.315192133188248,-0.640316665172577,-0.700463116168976,0.315192133188248,-0.640316665172577,-0.700463116168976,0.432826220989227,-0.292234122753143,-0.852795779705048,0.469946354627609,-0.278394103050232,-0.837643802165985,0.33041450381279,-0.654642522335052,-0.679903924465179,0.295892357826233,-0.683634638786316,-0.667151749134064,0.315192133188248,-0.640316665172577,-0.700463116168976,0.33041450381279,-0.654642522335052,-0.679903924465179,0.316736936569214,-0.703204691410065,-0.636538326740265, -0.369658052921295,-0.29566553235054,-0.880871653556824,0.373075157403946,-0.292190045118332,-0.880590617656708,0.292161047458649,-0.664673209190369,-0.687641859054565,0.280835896730423,-0.693528056144714,-0.663438141345978,0.373075157403946,-0.292190045118332,-0.880590617656708,0.400332540273666,-0.2842738032341,-0.87116140127182,0.305386394262314,-0.637453854084015,-0.707383692264557,0.292161047458649,-0.664673209190369,-0.687641859054565,0.292161047458649,-0.664673209190369,-0.687641859054565,0.305386394262314,-0.637453854084015,-0.707383692264557,0.283764809370041,-0.66997879743576,-0.6860072016716,0.280512541532516,-0.666776180267334,-0.690450668334961,0.280835896730423,-0.693528056144714,-0.663438141345978,0.292161047458649,-0.664673209190369,-0.687641859054565,0.280512541532516,-0.666776180267334,-0.690450668334961,0.2781702876091,-0.682922065258026,-0.675454378128052,0.280512541532516,-0.666776180267334,-0.690450668334961,0.283764809370041,-0.66997879743576,-0.6860072016716,0.268839001655579,-0.678394854068756,-0.683744192123413,0.269654154777527,-0.672417044639587,-0.689305424690247,0.280512541532516,-0.666776180267334,-0.690450668334961,0.269654154777527,-0.672417044639587,-0.689305424690247,0.266016513109207,-0.684020519256592,-0.67922830581665,0.2781702876091,-0.682922065258026,-0.675454378128052,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254,0.100640043616295,-0.644241809844971,-0.758171558380127,0.121645800769329,-0.689107835292816,-0.714375793933868,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254,3.14041017190902e-06,-0.772840142250061,-0.634600639343262,0.108572572469711,-0.770943105220795,-0.627581655979156,0.100640043616295,-0.644241809844971,-0.758171558380127,0.100640043616295,-0.644241809844971,-0.758171558380127,0.108572572469711,-0.770943105220795,-0.627581655979156,0.187623992562294,-0.789631307125092,-0.584191501140594,0.175238505005836,-0.665980577468872,-0.725093960762024,0.121645800769329,-0.689107835292816,-0.714375793933868, -0.100640043616295,-0.644241809844971,-0.758171558380127,0.175238505005836,-0.665980577468872,-0.725093960762024,0.21039280295372,-0.687285780906677,-0.695250451564789,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,0.074147991836071,-0.842016756534576,-0.534331083297729,0.0812262371182442,-0.849198520183563,-0.52178943157196,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,0.0654933154582977,-0.833352625370026,-0.548847854137421,0.074147991836071,-0.842016756534576,-0.534331083297729,0.074147991836071,-0.842016756534576,-0.534331083297729,0.0654933154582977,-0.833352625370026,-0.548847854137421,0.126767873764038,-0.810833990573883,-0.571382582187653,0.135613188147545,-0.819313228130341,-0.557077050209045,0.0812262371182442,-0.849198520183563,-0.52178943157196,0.074147991836071,-0.842016756534576,-0.534331083297729,0.135613188147545,-0.819313228130341,-0.557077050209045,0.143658846616745,-0.826772511005402,-0.543883562088013,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,0.08671685308218,-0.854544460773468,-0.512087762355804,0.0917136743664742,-0.858900249004364,-0.503864109516144,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,0.0812262371182442,-0.849198520183563,-0.52178943157196,0.08671685308218,-0.854544460773468,-0.512087762355804,0.08671685308218,-0.854544460773468,-0.512087762355804,0.0812262371182442,-0.849198520183563,-0.52178943157196,0.143658846616745,-0.826772511005402,-0.543883562088013,0.150850802659988,-0.83289909362793,-0.532468795776367,0.0917136743664742,-0.858900249004364,-0.503864109516144,0.08671685308218,-0.854544460773468,-0.512087762355804,0.150850802659988,-0.83289909362793,-0.532468795776367,0.159025937318802,-0.83882075548172,-0.520663559436798,1.08920303318882e-05,-0.866985976696014,-0.498332589864731,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424, -0.0966933369636536,-0.861993134021759,-0.497612535953522,0.101403087377548,-0.861836791038513,-0.496945470571518,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,0.0917136743664742,-0.858900249004364,-0.503864109516144,0.0966933369636536,-0.861993134021759,-0.497612535953522,0.0966933369636536,-0.861993134021759,-0.497612535953522,0.0917136743664742,-0.858900249004364,-0.503864109516144,0.159025937318802,-0.83882075548172,-0.520663559436798,0.167160853743553,-0.843749284744263,-0.510043561458588,0.101403087377548,-0.861836791038513,-0.496945470571518,0.0966933369636536,-0.861993134021759,-0.497612535953522,0.167160853743553,-0.843749284744263,-0.510043561458588,0.175976604223251,-0.845148921012878,-0.504733026027679,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,0.105507344007492,-0.874854803085327,-0.472754925489426,0.106382317841053,-0.905230820178986,-0.411387741565704,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,1.08920303318882e-05,-0.866985976696014,-0.498332589864731,0.101403087377548,-0.861836791038513,-0.496945470571518,0.105507344007492,-0.874854803085327,-0.472754925489426,0.105507344007492,-0.874854803085327,-0.472754925489426,0.101403087377548,-0.861836791038513,-0.496945470571518,0.175976604223251,-0.845148921012878,-0.504733026027679,0.185407146811485,-0.859559714794159,-0.476215541362762,0.106382317841053,-0.905230820178986,-0.411387741565704,0.105507344007492,-0.874854803085327,-0.472754925489426,0.185407146811485,-0.859559714794159,-0.476215541362762,0.191112920641899,-0.88888144493103,-0.416372090578079,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,0.104525603353977,-0.930538654327393,-0.350958853960037,0.103182874619961,-0.946386456489563,-0.306114196777344,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338, -0.106382317841053,-0.905230820178986,-0.411387741565704,0.104525603353977,-0.930538654327393,-0.350958853960037,0.104525603353977,-0.930538654327393,-0.350958853960037,0.106382317841053,-0.905230820178986,-0.411387741565704,0.191112920641899,-0.88888144493103,-0.416372090578079,0.192752718925476,-0.913287758827209,-0.358819991350174,0.103182874619961,-0.946386456489563,-0.306114196777344,0.104525603353977,-0.930538654327393,-0.350958853960037,0.192752718925476,-0.913287758827209,-0.358819991350174,0.194354563951492,-0.929410934448242,-0.313722282648087,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,1.04003063938762e-07,-0.961563885211945,-0.274581253528595,0.103843532502651,-0.955405533313751,-0.276436030864716,0.106286622583866,-0.957814037799835,-0.267012119293213,1.04003063938762e-07,-0.961563885211945,-0.274581253528595,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,0.103182874619961,-0.946386456489563,-0.306114196777344,0.103843532502651,-0.955405533313751,-0.276436030864716,0.103843532502651,-0.955405533313751,-0.276436030864716,0.103182874619961,-0.946386456489563,-0.306114196777344,0.194354563951492,-0.929410934448242,-0.313722282648087,0.197768926620483,-0.937976479530334,-0.284758746623993,0.106286622583866,-0.957814037799835,-0.267012119293213,0.103843532502651,-0.955405533313751,-0.276436030864716,0.197768926620483,-0.937976479530334,-0.284758746623993,0.202338442206383,-0.939430713653564,-0.276639044284821,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,0.110112830996513,-0.961680829524994,-0.251087933778763,0.115813940763474,-0.971455991268158,-0.207027420401573,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,0.106286622583866,-0.957814037799835,-0.267012119293213,0.110112830996513,-0.961680829524994,-0.251087933778763,0.110112830996513,-0.961680829524994,-0.251087933778763,0.106286622583866,-0.957814037799835,-0.267012119293213,0.202338442206383,-0.939430713653564,-0.276639044284821, -0.208529978990555,-0.943388044834137,-0.257942348718643,0.115813940763474,-0.971455991268158,-0.207027420401573,0.110112830996513,-0.961680829524994,-0.251087933778763,0.208529978990555,-0.943388044834137,-0.257942348718643,0.215340182185173,-0.953982889652252,-0.20867483317852,0,-0.98962664604187,-0.14366252720356,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,0.122812509536743,-0.979302108287811,-0.160886213183403,0.129827231168747,-0.982599139213562,-0.132830247282982,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,0.115813940763474,-0.971455991268158,-0.207027420401573,0.122812509536743,-0.979302108287811,-0.160886213183403,0.122812509536743,-0.979302108287811,-0.160886213183403,0.115813940763474,-0.971455991268158,-0.207027420401573,0.215340182185173,-0.953982889652252,-0.20867483317852,0.221424594521523,-0.962188959121704,-0.158630236983299,0.129827231168747,-0.982599139213562,-0.132830247282982,0.122812509536743,-0.979302108287811,-0.160886213183403,0.221424594521523,-0.962188959121704,-0.158630236983299,0.227278470993042,-0.965896666049957,-0.124049283564091,3.23932340506872e-06,-0.999818086624146,0.01907654479146,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.13507716357708,-0.990570545196533,0.0228945054113865,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,0,-0.98962664604187,-0.14366252720356,0.129827231168747,-0.982599139213562,-0.132830247282982,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.129827231168747,-0.982599139213562,-0.132830247282982,0.227278470993042,-0.965896666049957,-0.124049283564091,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.13507716357708,-0.990570545196533,0.0228945054113865,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.227585732936859,-0.973401427268982,0.026349263265729, -2.66085771727376e-06,-0.990090310573578,-0.140432059764862,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,0.137488380074501,-0.990294277667999,0.020353626459837,0.138497367501259,-0.980665802955627,-0.138249680399895,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,3.23932340506872e-06,-0.999818086624146,0.01907654479146,0.13507716357708,-0.990570545196533,0.0228945054113865,0.137488380074501,-0.990294277667999,0.020353626459837,0.137488380074501,-0.990294277667999,0.020353626459837,0.13507716357708,-0.990570545196533,0.0228945054113865,0.227585732936859,-0.973401427268982,0.026349263265729,0.228464365005493,-0.973297297954559,0.0222795214504004,0.138497367501259,-0.980665802955627,-0.138249680399895,0.137488380074501,-0.990294277667999,0.020353626459837,0.228464365005493,-0.973297297954559,0.0222795214504004,0.227555468678474,-0.966486871242523,-0.118834026157856,0.465979933738708,-0.871747374534607,-0.151390865445137,0.549508213996887,-0.764573931694031,-0.336849242448807,0.391568809747696,-0.792815148830414,-0.467030912637711,0.362464904785156,-0.903523087501526,-0.228615939617157,0.465979933738708,-0.871747374534607,-0.151390865445137,0.362464904785156,-0.903523087501526,-0.228615939617157,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.327495545148849,-0.333733320236206,-0.883950591087341,0.270437836647034,-0.666318237781525,-0.694898009300232,0.254144638776779,-0.676149010658264,-0.691543877124786,0.232526928186417,-0.628938138484955,-0.741867899894714,0.270437836647034,-0.666318237781525,-0.694898009300232,0.2781702876091,-0.682922065258026,-0.675454378128052,0.266016513109207,-0.684020519256592,-0.67922830581665,0.254144638776779,-0.676149010658264,-0.691543877124786,0.105245932936668,-0.618587851524353,-0.778634905815125,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,0.178336322307587,-0.24917970597744,-0.951895833015442,0.105245932936668,-0.618587851524353,-0.778634905815125, -0.178336322307587,-0.24917970597744,-0.951895833015442,0.255999326705933,-0.267593652009964,-0.928901493549347,0.156661868095398,-0.61191338300705,-0.775254189968109,-0.15919853746891,0.261923760175705,0.951867520809174,3.52183224094915e-06,0.249689862132072,0.968325912952423,2.9084756647535e-07,0.331838518381119,0.943336188793182,-0.173236384987831,0.327362209558487,0.928882598876953,0.391568809747696,-0.792815148830414,-0.467030912637711,0.378362953662872,-0.679854929447174,-0.628202855587006,0.175238505005836,-0.665980577468872,-0.725093960762024,0.187623992562294,-0.789631307125092,-0.584191501140594,0.378362953662872,-0.679854929447174,-0.628202855587006,0.399628847837448,-0.677889943122864,-0.617059230804443,0.21039280295372,-0.687285780906677,-0.695250451564789,0.175238505005836,-0.665980577468872,-0.725093960762024,-0.0268143340945244,-0.143278241157532,0.989319086074829,5.15278725288226e-06,-0.195868358016014,0.980630159378052,3.52183224094915e-06,0.249689862132072,0.968325912952423,-0.15919853746891,0.261923760175705,0.951867520809174,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.00683469092473388,-0.0465485118329525,0.998892605304718,0.000145562866237015,0.109267674386501,0.994012296199799,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,0.145520091056824,-0.0377094373106956,0.988636374473572,0.361446797847748,0.185934022068977,0.913665473461151,-0.127614736557007,-0.0326059870421886,0.991287708282471,-0.140483602881432,-0.389575660228729,0.910217046737671,0.230874493718147,-0.364731192588806,0.902035593986511,0.282535374164581,-0.00665364880114794,0.959233820438385,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,0.251202523708344,-0.919188618659973,0.303297936916351,0.0206445995718241,-0.99297958612442,-0.116470016539097,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,2.14158717426471e-05,-0.35622963309288,0.934398531913757, -0.529604315757751,-0.324774593114853,0.783607542514801,0.251202523708344,-0.919188618659973,0.303297936916351,0.0017736324807629,-0.989037394523621,-0.147654265165329,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.121410027146339,-0.550902009010315,-0.825691640377045,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.0756061896681786,-0.17784771323204,-0.981149315834045,0.287211626768112,-0.154459059238434,-0.945331573486328,0.121410027146339,-0.550902009010315,-0.825691640377045,0.0756061896681786,-0.17784771323204,-0.981149315834045,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.341228455305099,-0.0394069999456406,-0.939153969287872,0.287211626768112,-0.154459059238434,-0.945331573486328,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538,0.370375901460648,-0.0389966443181038,-0.928063035011292,0.376688778400421,0.0253040362149477,-0.925994157791138,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,0.339927136898041,0.0439854599535465,-0.939422607421875,0.355741113424301,0.129971653223038,-0.925502955913544,0.329432427883148,0.157070621848106,-0.931022584438324,0.376688778400421,0.0253040362149477,-0.925994157791138,0.18702594935894,-0.0647337883710861,-0.980219721794128,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,1.27130106193363e-05,0.13537959754467,-0.990793883800507,0.329432427883148,0.157070621848106,-0.931022584438324,0.275702863931656,-0.086119182407856,-0.957377374172211,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.327495545148849,-0.333733320236206,-0.883950591087341,0.255999326705933,-0.267593652009964,-0.928901493549347,0.255999326705933,-0.267593652009964,-0.928901493549347,0.327495545148849,-0.333733320236206,-0.883950591087341,0.232526928186417,-0.628938138484955,-0.741867899894714, -0.156661868095398,-0.61191338300705,-0.775254189968109,0.232526928186417,-0.628938138484955,-0.741867899894714,0.254144638776779,-0.676149010658264,-0.691543877124786,0.102983109652996,-0.740106999874115,-0.664557099342346,0.156661868095398,-0.61191338300705,-0.775254189968109,0.254144638776779,-0.676149010658264,-0.691543877124786,0.266016513109207,-0.684020519256592,-0.67922830581665,0.106486827135086,-0.778541445732117,-0.618493258953094,0.102983109652996,-0.740106999874115,-0.664557099342346,0.266016513109207,-0.684020519256592,-0.67922830581665,0.269654154777527,-0.672417044639587,-0.689305424690247,0.117023155093193,-0.799739181995392,-0.588831901550293,0.106486827135086,-0.778541445732117,-0.618493258953094,0.269654154777527,-0.672417044639587,-0.689305424690247,0.268839001655579,-0.678394854068756,-0.683744192123413,0.126767873764038,-0.810833990573883,-0.571382582187653,0.117023155093193,-0.799739181995392,-0.588831901550293,0.268839001655579,-0.678394854068756,-0.683744192123413,0.272227436304092,-0.695810735225677,-0.664635062217712,0.135613188147545,-0.819313228130341,-0.557077050209045,0.126767873764038,-0.810833990573883,-0.571382582187653,0.272227436304092,-0.695810735225677,-0.664635062217712,0.282901287078857,-0.715390801429749,-0.638891756534576,0.143658846616745,-0.826772511005402,-0.543883562088013,0.135613188147545,-0.819313228130341,-0.557077050209045,0.282901287078857,-0.715390801429749,-0.638891756534576,0.296085834503174,-0.734459102153778,-0.610657870769501,0.150850802659988,-0.83289909362793,-0.532468795776367,0.143658846616745,-0.826772511005402,-0.543883562088013,0.296085834503174,-0.734459102153778,-0.610657870769501,0.31199836730957,-0.75174742937088,-0.580975770950317,0.159025937318802,-0.83882075548172,-0.520663559436798,0.150850802659988,-0.83289909362793,-0.532468795776367,0.31199836730957,-0.75174742937088,-0.580975770950317,0.334459483623505,-0.768839836120605,-0.544997334480286,0.167160853743553,-0.843749284744263,-0.510043561458588,0.159025937318802,-0.83882075548172,-0.520663559436798, -0.334459483623505,-0.768839836120605,-0.544997334480286,0.359698057174683,-0.776623547077179,-0.517178118228912,0.175976604223251,-0.845148921012878,-0.504733026027679,0.167160853743553,-0.843749284744263,-0.510043561458588,0.359698057174683,-0.776623547077179,-0.517178118228912,0.381309062242508,-0.782062947750092,-0.492931127548218,0.185407146811485,-0.859559714794159,-0.476215541362762,0.175976604223251,-0.845148921012878,-0.504733026027679,0.381309062242508,-0.782062947750092,-0.492931127548218,0.398767828941345,-0.803536295890808,-0.44194307923317,0.191112920641899,-0.88888144493103,-0.416372090578079,0.185407146811485,-0.859559714794159,-0.476215541362762,0.398767828941345,-0.803536295890808,-0.44194307923317,0.413723528385162,-0.825479507446289,-0.383948534727097,0.192752718925476,-0.913287758827209,-0.358819991350174,0.191112920641899,-0.88888144493103,-0.416372090578079,0.413723528385162,-0.825479507446289,-0.383948534727097,0.424859493970871,-0.83431738615036,-0.351296126842499,0.194354563951492,-0.929410934448242,-0.313722282648087,0.192752718925476,-0.913287758827209,-0.358819991350174,0.424859493970871,-0.83431738615036,-0.351296126842499,0.42674246430397,-0.838199734687805,-0.33957627415657,0.197768926620483,-0.937976479530334,-0.284758746623993,0.194354563951492,-0.929410934448242,-0.313722282648087,0.42674246430397,-0.838199734687805,-0.33957627415657,0.423097163438797,-0.845155298709869,-0.326651573181152,0.202338442206383,-0.939430713653564,-0.276639044284821,0.197768926620483,-0.937976479530334,-0.284758746623993,0.423097163438797,-0.845155298709869,-0.326651573181152,0.426663398742676,-0.852746307849884,-0.301300495862961,0.208529978990555,-0.943388044834137,-0.257942348718643,0.202338442206383,-0.939430713653564,-0.276639044284821,0.426663398742676,-0.852746307849884,-0.301300495862961,0.433151990175247,-0.867169499397278,-0.245756685733795,0.215340182185173,-0.953982889652252,-0.20867483317852,0.208529978990555,-0.943388044834137,-0.257942348718643,0.433151990175247,-0.867169499397278,-0.245756685733795, -0.431833833456039,-0.882030606269836,-0.188524648547173,0.221424594521523,-0.962188959121704,-0.158630236983299,0.215340182185173,-0.953982889652252,-0.20867483317852,0.431833833456039,-0.882030606269836,-0.188524648547173,0.423574149608612,-0.896063446998596,-0.132872730493546,0.227278470993042,-0.965896666049957,-0.124049283564091,0.221424594521523,-0.962188959121704,-0.158630236983299,0.423574149608612,-0.896063446998596,-0.132872730493546,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.227278470993042,-0.965896666049957,-0.124049283564091,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.227585732936859,-0.973401427268982,0.026349263265729,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.228464365005493,-0.973297297954559,0.0222795214504004,0.227585732936859,-0.973401427268982,0.026349263265729,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.227555468678474,-0.966486871242523,-0.118834026157856,0.228464365005493,-0.973297297954559,0.0222795214504004,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.362464904785156,-0.903523087501526,-0.228615939617157,0.214124009013176,-0.913648962974548,-0.345537900924683,0.227555468678474,-0.966486871242523,-0.118834026157856,0.362464904785156,-0.903523087501526,-0.228615939617157,0.391568809747696,-0.792815148830414,-0.467030912637711,0.187623992562294,-0.789631307125092,-0.584191501140594,0.214124009013176,-0.913648962974548,-0.345537900924683,0.193692356348038,0.278895646333694,0.940585196018219,0.248251765966415,0.283825427293777,0.926182508468628,0.243145018815994,0.320305287837982,0.91557902097702,0.197980001568794,0.325932204723358,0.924430668354034,3.14041017190902e-06,-0.772840142250061,-0.634600639343262,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254, --0.100648067891598,-0.644245445728302,-0.758167445659637,-0.108565412461758,-0.770942389965057,-0.627583682537079,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,-0.121647201478481,-0.689130485057831,-0.714353680610657,-0.100648067891598,-0.644245445728302,-0.758167445659637,0.159134745597839,0.261926114559174,0.951877474784851,3.52183224094915e-06,0.249689862132072,0.968325912952423,5.15278725288226e-06,-0.195868358016014,0.980630159378052,0.0267959255725145,-0.143305033445358,0.989315748214722,0.00693589961156249,-0.0466239675879478,0.998888373374939,0.312815517187119,0.00277976063080132,0.949809849262238,0.318349808454514,-0.0322053767740726,0.947426080703735,0.123330391943455,-0.0846439674496651,0.988749265670776,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,0.000145562866237015,0.109267674386501,0.994012296199799,-0.361380368471146,0.185899093747139,0.91369891166687,-0.145488753914833,-0.0377167239785194,0.98864072561264,0.140509262681007,-0.389529824256897,0.910232782363892,0.127597525715828,-0.0325997099280357,0.991290092468262,-0.282585620880127,-0.00664947414770722,0.959219038486481,-0.230811730027199,-0.364695429801941,0.902066111564636,2.14158717426471e-05,-0.35622963309288,0.934398531913757,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,-0.251147210597992,-0.919208228588104,0.303284019231796,-0.529483556747437,-0.324605464935303,0.783759117126465,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,-0.0206318106502295,-0.992974400520325,-0.116516247391701,-0.251147210597992,-0.919208228588104,0.303284019231796,-0.0364131145179272,-0.603021621704102,-0.796893298625946,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.00177954800892621,-0.989035606384277,-0.147665843367577, --0.0251823868602514,-0.993472933769226,-0.111252799630165,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.287347048521042,-0.154420122504234,-0.945296883583069,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.0364131145179272,-0.603021621704102,-0.796893298625946,-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.287347048521042,-0.154420122504234,-0.945296883583069,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,-0.376513838768005,0.0252952426671982,-0.926065623760223,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.32930600643158,0.157053649425507,-0.931070148944855,1.27130106193363e-05,0.13537959754467,-0.990793883800507,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-0.256911754608154,-0.252870112657547,-0.932766318321228,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.377540469169617,-0.0881210491061211,-0.921790599822998,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.256911754608154,-0.252870112657547,-0.932766318321228,0.468589961528778,-0.584312975406647,-0.662572145462036,0.617697060108185,-0.551855802536011,-0.560272693634033,0.882977783679962,-0.132542103528976,-0.450314283370972,0.647358417510986,-0.13522407412529,-0.750094354152679,0.617697060108185,-0.551855802536011,-0.560272693634033,0.799822688102722,-0.536500632762909,-0.269166886806488,0.992352962493896,-0.11531413346529,-0.0440255180001259, -0.882977783679962,-0.132542103528976,-0.450314283370972,0.882977783679962,-0.132542103528976,-0.450314283370972,0.992352962493896,-0.11531413346529,-0.0440255180001259,0.99748957157135,-0.0693761855363846,-0.014197638258338,0.930261850357056,-0.040023285895586,-0.364706754684448,0.716182291507721,0.000275129219517112,-0.69791316986084,0.647358417510986,-0.13522407412529,-0.750094354152679,0.882977783679962,-0.132542103528976,-0.450314283370972,0.930261850357056,-0.040023285895586,-0.364706754684448,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.833289444446564,-0.372669488191605,-0.408345431089401,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.946752846240997,0.00653773033991456,-0.321895003318787,-0.957098841667175,-0.0191952716559172,-0.289124965667725,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.324871450662613,-0.736455380916595,-0.593373477458954,-0.506282448768616,-0.665263831615448,-0.548727750778198,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.513917028903961,-0.731300175189972,-0.448429942131042, --0.793850421905518,-0.370948910713196,-0.481869786977768,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.957098841667175,-0.0191952716559172,-0.289124965667725,-0.931095659732819,-0.329804509878159,-0.1558518409729,-0.513917028903961,-0.731300175189972,-0.448429942131042,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.931095659732819,-0.329804509878159,-0.1558518409729,-0.620312750339508,-0.738559484481812,-0.264087319374084,0.0501549690961838,-0.943022549152374,-0.328926771879196,-0.129560530185699,-0.932362616062164,-0.337511450052261,-0.0717204585671425,-0.86509770154953,-0.496449440717697,0.125337421894073,-0.855651915073395,-0.502145707607269,-0.129560530185699,-0.932362616062164,-0.337511450052261,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.513917028903961,-0.731300175189972,-0.448429942131042,-0.0717204585671425,-0.86509770154953,-0.496449440717697,-0.0717204585671425,-0.86509770154953,-0.496449440717697,-0.513917028903961,-0.731300175189972,-0.448429942131042,-0.620312750339508,-0.738559484481812,-0.264087319374084,-0.123676560819149,-0.906368851661682,-0.403979808092117,0.125337421894073,-0.855651915073395,-0.502145707607269,-0.0717204585671425,-0.86509770154953,-0.496449440717697,-0.123676560819149,-0.906368851661682,-0.403979808092117,0.134698942303658,-0.888603746891022,-0.438451498746872,0.468589961528778,-0.584312975406647,-0.662572145462036,0.166902795433998,-0.897470593452454,-0.408276855945587,0.287867814302444,-0.787702918052673,-0.544661521911621,0.617697060108185,-0.551855802536011,-0.560272693634033,0.166902795433998,-0.897470593452454,-0.408276855945587,0.0501549690961838,-0.943022549152374,-0.328926771879196,0.125337421894073,-0.855651915073395,-0.502145707607269,0.287867814302444,-0.787702918052673,-0.544661521911621,0.287867814302444,-0.787702918052673,-0.544661521911621, -0.125337421894073,-0.855651915073395,-0.502145707607269,0.134698942303658,-0.888603746891022,-0.438451498746872,0.318737775087357,-0.843948841094971,-0.431458503007889,0.617697060108185,-0.551855802536011,-0.560272693634033,0.287867814302444,-0.787702918052673,-0.544661521911621,0.318737775087357,-0.843948841094971,-0.431458503007889,0.799822688102722,-0.536500632762909,-0.269166886806488,-0.833289444446564,-0.372669488191605,-0.408345431089401,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.868782699108124,-0.3159359395504,-0.381314784288406,-0.838309228420258,-0.367601722478867,-0.402624696493149,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.873077750205994,-0.311358690261841,-0.375221073627472,-0.868782699108124,-0.3159359395504,-0.381314784288406,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.946752846240997,0.00653773033991456,-0.321895003318787,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.81596964597702,-0.391447365283966,-0.425396710634232,-0.869084119796753,-0.313242137432098,-0.382847458124161,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.506282448768616,-0.665263831615448,-0.548727750778198,-0.81596964597702,-0.391447365283966,-0.425396710634232,-0.137815892696381,-0.765004634857178,-0.629106223583221,-0.324871450662613,-0.736455380916595,-0.593373477458954,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.121647201478481,-0.689130485057831,-0.714353680610657,-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.997489750385284,-0.0693939179182053,-0.0140956426039338,-0.992373943328857,-0.11521127820015,-0.043821919709444,-0.883028507232666,-0.132418647408485,-0.45025098323822,-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.716123342514038,0.000295749516226351,-0.697973728179932, --0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.883028507232666,-0.132418647408485,-0.45025098323822,-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.716123342514038,0.000295749516226351,-0.697973728179932,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.997489750385284,-0.0693939179182053,-0.0140956426039338,-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.999112725257874,-0.0323165357112885,0.0270079094916582,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.999112725257874,-0.0323165357112885,0.0270079094916582,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.999700367450714,0.0132086621597409,0.0206089336425066,0.869363963603973,-0.342697292566299,-0.356040745973587,0.89838719367981,-0.352516740560532,-0.261977761983871,0.947352945804596,-0.084156908094883,-0.308933764696121,0.891768336296082,-0.131842046976089,-0.432858943939209,0.869363963603973,-0.342697292566299,-0.356040745973587,0.891768336296082,-0.131842046976089,-0.432858943939209,0.922260582447052,-0.14799028635025,-0.357119411230087,0.833156585693359,-0.372954607009888,-0.408356517553329,0.880417287349701,0.0260239727795124,-0.473484963178635,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.907611131668091,0.0161414425820112,-0.419501394033432,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.957322597503662,-0.0192046836018562,-0.28838250041008,0.946965098381042,0.00649365969002247,-0.321270555257797,0.907611131668091,0.0161414425820112,-0.419501394033432,0.891768336296082,-0.131842046976089,-0.432858943939209,0.907611131668091,0.0161414425820112,-0.419501394033432,0.946965098381042,0.00649365969002247,-0.321270555257797,0.922260582447052,-0.14799028635025,-0.357119411230087, -0.399628847837448,-0.677889943122864,-0.617059230804443,0.54840362071991,-0.612563192844391,-0.569227397441864,0.560615181922913,-0.635628461837769,-0.530742108821869,0.422343194484711,-0.709747314453125,-0.563812911510468,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.79384982585907,-0.370954781770706,-0.481866180896759,0.856334269046783,-0.380944132804871,-0.348673492670059,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.79384982585907,-0.370954781770706,-0.481866180896759,0.525056421756744,-0.734364330768585,-0.430145025253296,0.514161765575409,-0.731168150901794,-0.448364853858948,0.856334269046783,-0.380944132804871,-0.348673492670059,0.856334269046783,-0.380944132804871,-0.348673492670059,0.514161765575409,-0.731168150901794,-0.448364853858948,0.620490193367004,-0.738419115543365,-0.264063090085983,0.931094825267792,-0.329815626144409,-0.155833229422569,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.856334269046783,-0.380944132804871,-0.348673492670059,0.931094825267792,-0.329815626144409,-0.155833229422569,0.957322597503662,-0.0192046836018562,-0.28838250041008,0.525056421756744,-0.734364330768585,-0.430145025253296,0.129465445876122,-0.932377934455872,-0.337505578994751,0.0718565508723259,-0.865085363388062,-0.496451318264008,0.514161765575409,-0.731168150901794,-0.448364853858948,0.129465445876122,-0.932377934455872,-0.337505578994751,-0.0501352362334728,-0.942996501922607,-0.329004615545273,-0.125187188386917,-0.855672657489777,-0.502147793769836,0.0718565508723259,-0.865085363388062,-0.496451318264008,0.0718565508723259,-0.865085363388062,-0.496451318264008,-0.125187188386917,-0.855672657489777,-0.502147793769836,-0.134513467550278,-0.888677775859833,-0.438358157873154,0.123514726758003,-0.906339287757874,-0.404095709323883,0.514161765575409,-0.731168150901794,-0.448364853858948,0.0718565508723259,-0.865085363388062,-0.496451318264008,0.123514726758003,-0.906339287757874,-0.404095709323883,0.620490193367004,-0.738419115543365,-0.264063090085983,-0.0501352362334728,-0.942996501922607,-0.329004615545273, --0.166973233222961,-0.897425651550293,-0.40834704041481,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.125187188386917,-0.855672657489777,-0.502147793769836,-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.468642711639404,-0.584188401699066,-0.662644624710083,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.80049067735672,-0.536070823669434,-0.268034845590591,-0.318673193454742,-0.844170570373535,-0.431072413921356,-0.125187188386917,-0.855672657489777,-0.502147793769836,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.318673193454742,-0.844170570373535,-0.431072413921356,-0.134513467550278,-0.888677775859833,-0.438358157873154,0.873105764389038,-0.311196446418762,-0.375290513038635,0.869012653827667,-0.313126504421234,-0.383104264736176,0.881268262863159,-0.338604122400284,-0.329717218875885,0.89838719367981,-0.352516740560532,-0.261977761983871,0.891768336296082,-0.131842046976089,-0.432858943939209,0.947352945804596,-0.084156908094883,-0.308933764696121,0.880417287349701,0.0260239727795124,-0.473484963178635,0.907611131668091,0.0161414425820112,-0.419501394033432,0.560615181922913,-0.635628461837769,-0.530742108821869,0.54840362071991,-0.612563192844391,-0.569227397441864,0.815972208976746,-0.399134337902069,-0.418187886476517,0.815860152244568,-0.391426861286163,-0.425625592470169,0.815972208976746,-0.399134337902069,-0.418187886476517,0.881268262863159,-0.338604122400284,-0.329717218875885,0.869012653827667,-0.313126504421234,-0.383104264736176,0.815860152244568,-0.391426861286163,-0.425625592470169,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,0.121645800769329,-0.689107835292816,-0.714375793933868,0.137839734554291,-0.764987766742706,-0.629121601581573,-5.79314018978039e-09,-0.768785357475281,-0.639506936073303,0.239804223179817,-0.753981590270996,-0.611559927463531,0.137839734554291,-0.764987766742706,-0.629121601581573, -0.121645800769329,-0.689107835292816,-0.714375793933868,0.21039280295372,-0.687285780906677,-0.695250451564789,0.21039280295372,-0.687285780906677,-0.695250451564789,0.399628847837448,-0.677889943122864,-0.617059230804443,0.422343194484711,-0.709747314453125,-0.563812911510468,0.239804223179817,-0.753981590270996,-0.611559927463531,-0.121647201478481,-0.689130485057831,-0.714353680610657,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,-5.79314018978039e-09,-0.768785357475281,-0.639506936073303,-0.137815892696381,-0.765004634857178,-0.629106223583221,-0.998450577259064,-0.0145111670717597,0.0537201091647148,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.998083710670471,-0.00846588052809238,0.0612973161041737,-0.998627722263336,-0.0120042953640223,0.0509758442640305,-0.919278740882874,-0.200312465429306,-0.338823795318604,-0.962715804576874,-0.0191965401172638,-0.269832819700241,-0.946752846240997,0.00653773033991456,-0.321895003318787,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.838309228420258,-0.367601722478867,-0.402624696493149,-0.919278740882874,-0.200312465429306,-0.338823795318604,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.833289444446564,-0.372669488191605,-0.408345431089401,0.919417142868042,-0.200109556317329,-0.338568270206451,0.838114321231842,-0.368142247200012,-0.402536422014236,0.833156585693359,-0.372954607009888,-0.408356517553329,0.922260582447052,-0.14799028635025,-0.357119411230087,0.962715268135071,-0.0191910192370415,-0.269834995269775,0.919417142868042,-0.200109556317329,-0.338568270206451,0.922260582447052,-0.14799028635025,-0.357119411230087,0.946965098381042,0.00649365969002247,-0.321270555257797,0.998219013214111,-0.0115689476951957,0.0585229098796844,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.995499432086945,-0.0382689349353313,0.0866971462965012,0.998449325561523,-0.0145139442756772,0.0537427812814713,0.995499432086945,-0.0382689349353313,0.0866971462965012,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.999694764614105,0.0132730612531304,0.0208377800881863, -0.999117434024811,-0.0321307256817818,0.0270562116056681,0.999694764614105,0.0132730612531304,0.0208377800881863,0.873127579689026,0.231439754366875,-0.429050087928772,0.95551210641861,0.00711869867518544,-0.294865697622299,0.999117434024811,-0.0321307256817818,0.0270562116056681,0.873127579689026,0.231439754366875,-0.429050087928772,0.779022097587585,0.102573357522488,-0.618549406528473,0.95551210641861,0.00711869867518544,-0.294865697622299,0.95551210641861,0.00711869867518544,-0.294865697622299,0.779022097587585,0.102573357522488,-0.618549406528473,0.716182291507721,0.000275129219517112,-0.69791316986084,0.930261850357056,-0.040023285895586,-0.364706754684448,0.999117434024811,-0.0321307256817818,0.0270562116056681,0.95551210641861,0.00711869867518544,-0.294865697622299,0.930261850357056,-0.040023285895586,-0.364706754684448,0.99748957157135,-0.0693761855363846,-0.014197638258338,0.99862402677536,-0.0120407585054636,0.0510396957397461,0.998089551925659,-0.00854548532515764,0.0611912310123444,0.998219013214111,-0.0115689476951957,0.0585229098796844,0.998449325561523,-0.0145139442756772,0.0537427812814713,-0.995499908924103,-0.0384220443665981,0.0866238251328468,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.998450577259064,-0.0145111670717597,0.0537201091647148,-0.999700367450714,0.0132086621597409,0.0206089336425066,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.995499908924103,-0.0384220443665981,0.0866238251328468,-0.999112725257874,-0.0323165357112885,0.0270079094916582,-0.80049067735672,-0.536070823669434,-0.268034845590591,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.883028507232666,-0.132418647408485,-0.45025098323822,-0.992373943328857,-0.11521127820015,-0.043821919709444,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.468642711639404,-0.584188401699066,-0.662644624710083,-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.883028507232666,-0.132418647408485,-0.45025098323822,0.873105764389038,-0.311196446418762,-0.375290513038635, -0.89838719367981,-0.352516740560532,-0.261977761983871,0.869363963603973,-0.342697292566299,-0.356040745973587,0.868837058544159,-0.316113770008087,-0.381043493747711,0.869363963603973,-0.342697292566299,-0.356040745973587,0.833156585693359,-0.372954607009888,-0.408356517553329,0.838114321231842,-0.368142247200012,-0.402536422014236,0.868837058544159,-0.316113770008087,-0.381043493747711,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.869084119796753,-0.313242137432098,-0.382847458124161,-0.873077750205994,-0.311358690261841,-0.375221073627472,3.1286046578316e-05,0.933347523212433,0.35897421836853,-0.0769341886043549,0.952120065689087,0.295885741710663,0.127404302358627,0.870312571525574,0.475735187530518,0.00105006573721766,0.819467723369598,0.573124349117279,-0.0769341886043549,0.952120065689087,0.295885741710663,-0.199016839265823,0.964948236942291,0.17107680439949,0.0926034152507782,0.943549811840057,0.318022698163986,0.127404302358627,0.870312571525574,0.475735187530518,0.127404302358627,0.870312571525574,0.475735187530518,0.0926034152507782,0.943549811840057,0.318022698163986,0.369827419519424,0.848678946495056,0.378115952014923,0.322145581245422,0.723398506641388,0.610669136047363,0.00105006573721766,0.819467723369598,0.573124349117279,0.127404302358627,0.870312571525574,0.475735187530518,0.322145581245422,0.723398506641388,0.610669136047363,0.00354147492907941,0.63427597284317,0.773098587989807,-0.368012607097626,0.849207520484924,0.378699630498886,-0.34021183848381,0.892924129962921,0.294860035181046,-0.171337708830833,0.958347201347351,0.228503912687302,-0.0940338149666786,0.943791687488556,0.316883236169815,-0.171337708830833,0.958347201347351,0.228503912687302,0.147601917386055,0.978087961673737,0.146825015544891,0.198442324995995,0.965159118175507,0.170553311705589,-0.0940338149666786,0.943791687488556,0.316883236169815,0.147601917386055,0.978087961673737,0.146825015544891,-0.171337708830833,0.958347201347351,0.228503912687302,-0.281592935323715,0.929069340229034,0.239865720272064, --0.17153188586235,0.974821448326111,0.142477780580521,-0.171337708830833,0.958347201347351,0.228503912687302,-0.34021183848381,0.892924129962921,0.294860035181046,-0.345558404922485,0.888901710510254,0.300737708806992,-0.281592935323715,0.929069340229034,0.239865720272064,-0.281592935323715,0.929069340229034,0.239865720272064,-0.345558404922485,0.888901710510254,0.300737708806992,-0.425247550010681,0.881950259208679,0.203293576836586,-0.351261794567108,0.922170639038086,0.161914691329002,-0.255513966083527,0.960735857486725,0.108162648975849,-0.17153188586235,0.974821448326111,0.142477780580521,-0.281592935323715,0.929069340229034,0.239865720272064,-0.351261794567108,0.922170639038086,0.161914691329002,0.321127533912659,0.946800529956818,-0.0211152732372284,0.474217265844345,0.880373537540436,0.00777136301621795,0.350996434688568,0.922063589096069,0.163095518946648,0.255401104688644,0.960573732852936,0.109856195747852,0.474217265844345,0.880373537540436,0.00777136301621795,0.525646924972534,0.850511491298676,0.0180433727800846,0.425292700529099,0.8816899061203,0.204325810074806,0.350996434688568,0.922063589096069,0.163095518946648,0.350996434688568,0.922063589096069,0.163095518946648,0.425292700529099,0.8816899061203,0.204325810074806,0.346446305513382,0.888436436653137,0.301090747117996,0.281983822584152,0.92876935005188,0.240567073225975,0.171426236629486,0.974702954292297,0.143412679433823,0.255401104688644,0.960573732852936,0.109856195747852,0.350996434688568,0.922063589096069,0.163095518946648,0.281983822584152,0.92876935005188,0.240567073225975,0.340378850698471,0.892681539058685,0.295401394367218,0.173189952969551,0.958074808120728,0.228249445557594,0.281983822584152,0.92876935005188,0.240567073225975,0.346446305513382,0.888436436653137,0.301090747117996,0.173189952969551,0.958074808120728,0.228249445557594,-0.150234207510948,0.977291941642761,0.149432733654976,0.171426236629486,0.974702954292297,0.143412679433823,0.281983822584152,0.92876935005188,0.240567073225975,-0.525547921657562,0.85057008266449,0.0181603133678436, --0.474094569683075,0.880438804626465,0.00787376519292593,-0.351261794567108,0.922170639038086,0.161914691329002,-0.425247550010681,0.881950259208679,0.203293576836586,-0.474094569683075,0.880438804626465,0.00787376519292593,-0.321022480726242,0.946837842464447,-0.0210393685847521,-0.255513966083527,0.960735857486725,0.108162648975849,-0.351261794567108,0.922170639038086,0.161914691329002,-0.0692600607872009,-0.40361499786377,0.912303626537323,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.109554767608643,-0.463935196399689,0.879068791866302,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.25737664103508,-0.520960569381714,0.81385350227356,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.236676275730133,-0.44870325922966,0.86177134513855,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.282623738050461,-0.625286161899567,0.727420747280121,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.58196759223938,-0.243648797273636,0.775853753089905,-0.792892038822174,-0.21461695432663,0.570317268371582,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.792892038822174,-0.21461695432663,0.570317268371582,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.860088109970093,-0.273398786783218,0.430698931217194,-0.805730640888214,-0.350308150053024,0.477579683065414,0.0600302666425705,0.0760350003838539,0.995296478271484,-0.131924688816071,0.14484977722168,0.980619430541992, --0.142524033784866,-0.185490682721138,0.972255110740662,0.0525225922465324,-0.190005153417587,0.98037713766098,-0.131924688816071,0.14484977722168,0.980619430541992,-0.338309645652771,0.210501685738564,0.917188942432404,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.142524033784866,-0.185490682721138,0.972255110740662,-0.142524033784866,-0.185490682721138,0.972255110740662,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.17657545208931,-0.327362060546875,0.928253769874573,0.0525225922465324,-0.190005153417587,0.98037713766098,-0.142524033784866,-0.185490682721138,0.972255110740662,-0.17657545208931,-0.327362060546875,0.928253769874573,0.00786542054265738,-0.305302739143372,0.952222883701324,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.535748302936554,-0.0948459655046463,0.839033901691437,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.317441284656525,-0.284244388341904,0.904674530029297,-0.297977864742279,-0.287405341863632,0.910278737545013,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.317441284656525,-0.284244388341904,0.904674530029297,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.328170418739319,-0.282412022352219,0.901414275169373,-0.548661649227142,0.668700933456421,0.501806080341339,-0.623963296413422,0.768050134181976,0.144113570451736,-0.992165207862854,0.0233097542077303,0.122738763689995,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.623963296413422,0.768050134181976,0.144113570451736,-0.601010143756866,0.790193140506744,0.11992322653532,-0.993990182876587,0.0658001378178596,0.0874857231974602, --0.992165207862854,0.0233097542077303,0.122738763689995,-0.992165207862854,0.0233097542077303,0.122738763689995,-0.993990182876587,0.0658001378178596,0.0874857231974602,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.992165207862854,0.0233097542077303,0.122738763689995,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.851190268993378,-0.136503919959068,0.506795644760132,-0.794983744621277,-0.160349786281586,0.585054397583008,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.851190268993378,-0.136503919959068,0.506795644760132,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.873547792434692,-0.126375392079353,0.470046281814575,-0.394090473651886,0.803994596004486,0.445292562246323,-0.437600523233414,0.872543215751648,0.217195779085159,-0.864012241363525,0.357230216264725,0.35478076338768,-0.726621448993683,0.32442569732666,0.605614900588989,-0.437600523233414,0.872543215751648,0.217195779085159,-0.398814141750336,0.881977081298828,0.251124739646912,-0.85698789358139,0.343310981988907,0.38432976603508,-0.864012241363525,0.357230216264725,0.35478076338768,-0.864012241363525,0.357230216264725,0.35478076338768,-0.85698789358139,0.343310981988907,0.38432976603508,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.942124962806702,0.0402246378362179,0.332840204238892, --0.726621448993683,0.32442569732666,0.605614900588989,-0.864012241363525,0.357230216264725,0.35478076338768,-0.942124962806702,0.0402246378362179,0.332840204238892,-0.816730439662933,0.0452887341380119,0.575239479541779,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.874447166919708,0.288081109523773,0.390322238206863,-0.872197031974792,0.226783886551857,0.433406591415405,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.89040869474411,0.311238497495651,0.332118898630142,-0.874447166919708,0.288081109523773,0.390322238206863,-0.840434372425079,-0.164773017168045,0.516255795955658,-0.832938730716705,-0.167921900749207,0.527271628379822,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.840434372425079,-0.164773017168045,0.516255795955658,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.860000193119049,-0.152292832732201,0.4870385825634,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.995246887207031,0.0550698488950729,0.0803178697824478,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.997405111789703,0.00665625929832458,0.0716846287250519,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.953887403011322,-0.109419479966164,-0.279510796070099,-0.99621844291687,0.0131362657994032,0.0858851000666618,-0.997405111789703,0.00665625929832458,0.0716846287250519,-0.99725204706192,0.0188685450702906,0.0716400593519211, --0.998309850692749,0.0187163222581148,0.0550195500254631,-0.998390316963196,0.0215951167047024,0.0524435192346573,-0.997710525989532,0.0193911418318748,0.064789205789566,-0.99725204706192,0.0188685450702906,0.0716400593519211,-0.997710525989532,0.0193911418318748,0.064789205789566,-0.991462886333466,0.00127873627934605,0.130382806062698,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.0943231582641602,0.0288749188184738,0.995122790336609,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.0843810960650444,-0.217296659946442,0.972451567649841,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.31101456284523,0.129726931452751,0.94150984287262,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.0843810960650444,-0.217296659946442,0.972451567649841,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.0625111162662506,-0.333361387252808,0.940724492073059,-0.806167006492615,0.405817359685898,0.430589258670807,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.986780822277069,0.160144791007042,0.0248461551964283,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.573165655136108,0.205063909292221,0.793366253376007,-0.595437586307526,-0.0581202879548073,0.801296532154083,-0.986780822277069,0.160144791007042,0.0248461551964283,-0.986780822277069,0.160144791007042,0.0248461551964283,-0.595437586307526,-0.0581202879548073,0.801296532154083,-0.57489013671875,-0.214605569839478,0.789585769176483,-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.986780822277069,0.160144791007042,0.0248461551964283, --0.992772698402405,-0.0374946668744087,0.114002458751202,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.490314334630966,-0.306891679763794,0.815726220607758,-0.418494075536728,-0.4173284471035,0.806659519672394,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.189798250794411,0.239573091268539,0.95214569568634,-0.500292360782623,0.364415466785431,0.785435497760773,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.203934475779533,-0.16666454076767,0.964693486690521,-0.500292360782623,0.364415466785431,0.785435497760773,-0.702914714813232,0.419525861740112,0.574377000331879,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.203934475779533,-0.16666454076767,0.964693486690521,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.231684133410454,-0.341643393039703,0.910825073719025,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.785015106201172,0.584624469280243,0.204854965209961,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.780332982540131,-0.327159374952316,0.532960832118988, --0.882719099521637,-0.110210955142975,-0.456793904304504,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.882719099521637,-0.110210955142975,-0.456793904304504,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.903908669948578,-0.195528045296669,-0.380418121814728,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.903908669948578,-0.195528045296669,-0.380418121814728,-0.831903696060181,-0.397577732801437,0.387128055095673,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.340639442205429,0.750027358531952,0.566942572593689,-0.389274567365646,0.873005211353302,0.293814718723297,-0.834942579269409,0.227867662906647,0.500946283340454,-0.631518125534058,0.117306865751743,0.766435742378235,-0.389274567365646,0.873005211353302,0.293814718723297,-0.355925559997559,0.906254887580872,0.228076919913292,-0.869791805744171,0.300110667943954,0.39165785908699,-0.834942579269409,0.227867662906647,0.500946283340454,-0.834942579269409,0.227867662906647,0.500946283340454,-0.869791805744171,0.300110667943954,0.39165785908699,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.631518125534058,0.117306865751743,0.766435742378235,-0.834942579269409,0.227867662906647,0.500946283340454,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.460800260305405,0.886764228343964,0.0362249948084354,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.887675702571869,0.375438243150711,-0.266604602336884,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.359955251216888,0.867213666439056,0.344053357839584,-0.753035187721252,0.389152586460114,0.530564188957214,-0.887675702571869,0.375438243150711,-0.266604602336884, --0.887675702571869,0.375438243150711,-0.266604602336884,-0.753035187721252,0.389152586460114,0.530564188957214,-0.829760372638702,0.108762338757515,0.547420024871826,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.887675702571869,0.375438243150711,-0.266604602336884,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.989044964313507,0.093381255865097,0.114324763417244,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.845598042011261,-0.197273597121239,0.496031492948532,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.452030569314957,0.806248903274536,0.381616413593292,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.824098348617554,0.27809539437294,0.493482232093811,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.370093166828156,0.921099185943604,0.120860703289509,-0.899428308010101,0.420667916536331,0.118604905903339,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.899428308010101,0.420667916536331,0.118604905903339,-0.995246887207031,0.0550698488950729,0.0803178697824478,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.824098348617554,0.27809539437294,0.493482232093811,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.845598042011261,-0.197273597121239,0.496031492948532, --0.974851250648499,-0.173598438501358,0.139745086431503,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.974851250648499,-0.173598438501358,0.139745086431503,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.803800940513611,0.385017901659012,0.453503251075745,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.253959655761719,0.141760915517807,0.95676976442337,-0.231031611561775,-0.167481318116188,0.958422839641571,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.231031611561775,-0.167481318116188,0.958422839641571,-0.202353328466415,-0.298544436693192,0.932697296142578,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.820309162139893,-0.366870522499084,0.438746929168701,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.256725430488586,-0.374575465917587,0.890946269035339,-0.373453110456467,-0.514030456542969,0.772208094596863,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.0555649995803833,-0.379517257213593,0.923514544963837,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.388131648302078,-0.443252623081207,0.808010518550873, --0.41496080160141,-0.562957286834717,0.714763343334198,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.485556483268738,-0.249260917305946,0.837916493415833,-0.465662866830826,-0.255364894866943,0.847317516803741,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.485556483268738,-0.249260917305946,0.837916493415833,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.502492547035217,-0.242833837866783,0.829778790473938,-0.39814281463623,-0.269793570041656,0.876751840114594,-0.36555004119873,-0.275268018245697,0.889157354831696,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.39814281463623,-0.269793570041656,0.876751840114594,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.424731254577637,-0.265143424272537,0.865622520446777,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.371475577354431,-0.195014357566833,0.907730877399445,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.371475577354431,-0.195014357566833,0.907730877399445,-0.165524035692215,-0.303391516208649,0.938379049301147,1.75918557943078e-07,-0.307377070188522,0.951587796211243,2.95768154501275e-06,-0.273690581321716,0.961817860603333,-0.150568410754204,-0.275894820690155,0.949321508407593,-0.165524035692215,-0.303391516208649,0.938379049301147,-0.150568410754204,-0.275894820690155,0.949321508407593,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.186343878507614,-0.30264887213707,0.93470823764801,-0.00905205681920052,-0.0846886336803436,0.996366322040558,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,5.24779306942946e-06,-0.263720482587814,0.964599132537842, -0.223788768053055,-0.286292523145676,0.931641161441803,-0.00905205681920052,-0.0846886336803436,0.996366322040558,0.223788768053055,-0.286292523145676,0.931641161441803,0.150402024388313,-0.318250775337219,0.935999751091003,-0.0497316643595695,-0.134555041790009,0.989657342433929,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.628344833850861,0.683509886264801,0.371479630470276,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.950295329093933,-0.273207515478134,-0.149320408701897,-0.936768233776093,-0.349801152944565,0.0102151110768318,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.950295329093933,-0.273207515478134,-0.149320408701897, --0.682293832302094,-0.429185539484024,0.591840147972107,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.830712795257568,-0.157139912247658,0.534063041210175,-0.827298283576965,-0.160127997398376,0.538457632064819,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.830712795257568,-0.157139912247658,0.534063041210175,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.821022987365723,-0.15960069000721,0.548132181167603,-0.915011405944824,-0.100195169448853,0.390787661075592,-0.912278234958649,-0.101034618914127,0.396913766860962,-0.910836100578308,-0.101129606366158,0.400187909603119,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.915011405944824,-0.100195169448853,0.390787661075592,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.873987078666687,-0.130821585655212,0.468008726835251,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.910836100578308,-0.101129606366158,0.400187909603119,-0.927932739257813,-0.139165371656418,0.345794230699539,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.656458258628845,-0.200193867087364,0.72731351852417,-0.597933888435364,-0.215272724628448,0.772096276283264,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.647187888622284,-0.187938436865807,0.738801002502441,-0.656458258628845,-0.200193867087364,0.72731351852417, --0.647187888622284,-0.187938436865807,0.738801002502441,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.690723538398743,-0.192921012639999,0.696909308433533,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.647187888622284,-0.187938436865807,0.738801002502441,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.647187888622284,-0.187938436865807,0.738801002502441,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.521180927753448,0.839390277862549,0.154254466295242,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.922710716724396,0.310931533575058,0.22787344455719,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.384734183549881,0.823127925395966,0.417660236358643,-0.780667901039124,0.2519251704216,0.571919083595276,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.780667901039124,0.2519251704216,0.571919083595276,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.922710716724396,0.310931533575058,0.22787344455719,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.982185900211334,0.000488366989884526,0.187911063432693,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.973421514034271,-0.164009347558022,-0.159848287701607, --0.889450132846832,-0.376867890357971,-0.258551716804504,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.973421514034271,-0.164009347558022,-0.159848287701607,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.944224298000336,-0.0762681216001511,0.32034906744957,-0.941217601299286,-0.0820105522871017,0.327694356441498,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.944224298000336,-0.0762681216001511,0.32034906744957,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.930082976818085,-0.0858379825949669,0.357180148363113,-0.909098148345947,-0.11354622989893,0.400808811187744,-0.897255182266235,-0.12331510335207,0.42394158244133,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.909098148345947,-0.11354622989893,0.400808811187744,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.914755523204803,-0.108901210129261,0.389053791761398,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.940751850605011,0.0702282711863518,0.331743776798248,-0.943971574306488,0.128323748707771,0.304057091474533,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.956861793994904,0.0141872800886631,0.290197134017944, --0.940751850605011,0.0702282711863518,0.331743776798248,-0.839776396751404,-0.151102215051651,0.521482229232788,-0.82758903503418,-0.154368698596954,0.539691269397736,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.839776396751404,-0.151102215051651,0.521482229232788,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.839202105998993,-0.139069586992264,0.525737106800079,-0.838865041732788,-0.156561627984047,0.52133846282959,-0.839202105998993,-0.139069586992264,0.525737106800079,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.846324682235718,-0.220019087195396,-0.48510417342186,-0.917855978012085,-0.320134043693542,-0.234637275338173, --0.76782613992691,-0.018659695982933,-0.640386521816254,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.839524686336517,-0.0949402377009392,-0.534962296485901,-0.846324682235718,-0.220019087195396,-0.48510417342186,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.917855978012085,-0.320134043693542,-0.234637275338173,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.996107459068298,0.00330066774040461,0.0880859866738319,-0.996031522750854,0.0030316892080009,0.0889491960406303,-0.996792554855347,0.00713484780862927,0.079710066318512,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.996792554855347,0.00713484780862927,0.079710066318512,-0.99812650680542,0.0165074300020933,0.0589137338101864,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.99812650680542,0.0165074300020933,0.0589137338101864,-0.99855649471283,0.0214257724583149,0.0492524392902851,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.99855649471283,0.0214257724583149,0.0492524392902851,-0.998390316963196,0.0215951167047024,0.0524435192346573,-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.998741626739502,-0.00342219998128712,0.0500338859856129,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.998741626739502,-0.00342219998128712,0.0500338859856129, --0.991462886333466,0.00127873627934605,0.130382806062698,-0.96850848197937,-0.0373800881206989,0.246158853173256,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.920935451984406,0.143320575356483,0.362404674291611,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.860088109970093,-0.273398786783218,0.430698931217194,-0.905501306056976,-0.389081418514252,0.169360592961311,-0.993880212306976,0.0232245307415724,0.107993647456169,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.905501306056976,-0.389081418514252,0.169360592961311,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.993880212306976,0.0232245307415724,0.107993647456169,1.42427379614674e-05,-0.348549783229828,0.937290251255035,1.36847847898025e-05,-0.292606621980667,0.956232845783234,0.501805126667023,-0.245855897665024,0.829304873943329,0.511289834976196,-0.297905415296555,0.806123495101929,1.36847847898025e-05,-0.292606621980667,0.956232845783234,0.000240212044445798,-0.090602844953537,0.995887100696564,0.488590627908707,-0.0529423989355564,0.87090539932251,0.501805126667023,-0.245855897665024,0.829304873943329,0.501805126667023,-0.245855897665024,0.829304873943329,0.488590627908707,-0.0529423989355564,0.87090539932251,0.416714161634445,-0.0174247231334448,0.908870577812195,0.440884202718735,-0.237137153744698,0.865671396255493,0.511289834976196,-0.297905415296555,0.806123495101929,0.501805126667023,-0.245855897665024,0.829304873943329,0.440884202718735,-0.237137153744698,0.865671396255493,0.458569407463074,-0.304762840270996,0.834765732288361,-0.275031268596649,-0.280610650777817,0.919573485851288,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.297977864742279,-0.287405341863632,0.910278737545013,-0.270422905683517,-0.292305618524551,0.917294383049011,-0.275031268596649,-0.280610650777817,0.919573485851288, --0.270422905683517,-0.292305618524551,0.917294383049011,-0.226999118924141,-0.298325330018997,0.927077949047089,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.346615135669708,-0.147859111428261,0.926280558109283,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.346615135669708,-0.147859111428261,0.926280558109283,0.420541554689407,-0.33530592918396,0.843038976192474,2.46701147261774e-05,-0.340059369802475,0.940403938293457,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,0.481838226318359,-0.307934612035751,0.820370674133301,0.420541554689407,-0.33530592918396,0.843038976192474,0.481838226318359,-0.307934612035751,0.820370674133301,0.424551904201508,-0.334209501743317,0.841462910175323,0.310132741928101,-0.395607888698578,0.864472031593323,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.36555004119873,-0.275268018245697,0.889157354831696,-0.340660989284515,-0.279812395572662,0.89758288860321,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.340660989284515,-0.279812395572662,0.89758288860321,-0.328170418739319,-0.282412022352219,0.901414275169373,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.568327307701111,-0.391887068748474,0.723483622074127, --0.342844098806381,-0.175389617681503,0.922873973846436,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.568327307701111,-0.391887068748474,0.723483622074127,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.342844098806381,-0.175389617681503,0.922873973846436,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.398151904344559,-0.536222040653229,0.74427205324173,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.25737664103508,-0.520960569381714,0.81385350227356,-0.398151904344559,-0.536222040653229,0.74427205324173,-0.0555649995803833,-0.379517257213593,0.923514544963837,0.0491029173135757,-0.337266832590103,0.940127730369568,0.106146022677422,-0.282717883586884,0.953311920166016,0.00786542054265738,-0.305302739143372,0.952222883701324,0.0491029173135757,-0.337266832590103,0.940127730369568,-0.490314334630966,-0.306891679763794,0.815726220607758,-0.57489013671875,-0.214605569839478,0.789585769176483,0.106146022677422,-0.282717883586884,0.953311920166016,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.465662866830826,-0.255364894866943,0.847317516803741,-0.445334941148758,-0.260695934295654,0.856571316719055,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.445334941148758,-0.260695934295654,0.856571316719055,-0.424731254577637,-0.265143424272537,0.865622520446777,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.206299006938934,-0.364515900611877,0.908057749271393,-0.0412460155785084,-0.429754108190536,0.902003347873688,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.206299006938934,-0.364515900611877,0.908057749271393,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.418494075536728,-0.4173284471035,0.806659519672394, --0.0412460155785084,-0.429754108190536,0.902003347873688,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.597933888435364,-0.215272724628448,0.772096276283264,-0.535182118415833,-0.232380732893944,0.812144875526428,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.535182118415833,-0.232380732893944,0.812144875526428,-0.502492547035217,-0.242833837866783,0.829778790473938,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.820309162139893,-0.366870522499084,0.438746929168701,-0.567373514175415,-0.433731079101563,0.699974715709686,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.567373514175415,-0.433731079101563,0.699974715709686,-0.388131648302078,-0.443252623081207,0.808010518550873,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.41496080160141,-0.562957286834717,0.714763343334198,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.875212669372559,-0.394328147172928,0.280193239450455,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.535748302936554,-0.0948459655046463,0.839033901691437, --0.875212669372559,-0.394328147172928,0.280193239450455,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.236676275730133,-0.44870325922966,0.86177134513855,0.11180654913187,-0.334470957517624,0.935750186443329,0.117831543087959,-0.262484639883041,0.957714676856995,-0.231684133410454,-0.341643393039703,0.910825073719025,0.11180654913187,-0.334470957517624,0.935750186443329,-0.256725430488586,-0.374575465917587,0.890946269035339,-0.202353328466415,-0.298544436693192,0.932697296142578,0.117831543087959,-0.262484639883041,0.957714676856995,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.794983744621277,-0.160349786281586,0.585054397583008,-0.72965532541275,-0.183123156428337,0.658839106559753,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.72965532541275,-0.183123156428337,0.658839106559753,-0.690723538398743,-0.192921012639999,0.696909308433533,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.234741002321243,-0.47547435760498,0.847832918167114,0.040289144963026,-0.486981987953186,0.872482240200043,-0.282623738050461,-0.625286161899567,0.727420747280121,-0.234741002321243,-0.47547435760498,0.847832918167114,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.373453110456467,-0.514030456542969,0.772208094596863,0.040289144963026,-0.486981987953186,0.872482240200043,-0.886835098266602,-0.116375274956226,0.447191417217255, --0.910836100578308,-0.101129606366158,0.400187909603119,-0.912278234958649,-0.101034618914127,0.396913766860962,-0.888192236423492,-0.117809116840363,0.444112092256546,-0.886835098266602,-0.116375274956226,0.447191417217255,-0.888192236423492,-0.117809116840363,0.444112092256546,-0.873547792434692,-0.126375392079353,0.470046281814575,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.826989233493805,-0.454506695270538,0.330926805734634,-0.927932739257813,-0.139165371656418,0.345794230699539,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.682293832302094,-0.429185539484024,0.591840147972107,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.831903696060181,-0.397577732801437,0.387128055095673, --0.780332982540131,-0.327159374952316,0.532960832118988,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.827298283576965,-0.160127997398376,0.538457632064819,-0.83148193359375,-0.157250225543976,0.532832264900208,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.83148193359375,-0.157250225543976,0.532832264900208,-0.873987078666687,-0.130821585655212,0.468008726835251,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.826989233493805,-0.454506695270538,0.330926805734634,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.82758903503418,-0.154368698596954,0.539691269397736,-0.814661085605621,-0.160631060600281,0.557247579097748,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.814661085605621,-0.160631060600281,0.557247579097748,-0.821022987365723,-0.15960069000721,0.548132181167603,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.976659178733826,-0.16157354414463,0.141529962420464, --0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.976659178733826,-0.16157354414463,0.141529962420464,-0.937240719795227,-0.29300731420517,0.189014628529549,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.936768233776093,-0.349801152944565,0.0102151110768318,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.937240719795227,-0.29300731420517,0.189014628529549,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.58196759223938,-0.243648797273636,0.775853753089905,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.832938730716705,-0.167921900749207,0.527271628379822,-0.83442085981369,-0.163837492465973,0.526212096214294,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.83442085981369,-0.163837492465973,0.526212096214294,-0.838865041732788,-0.156561627984047,0.52133846282959,-0.839202105998993,-0.139069586992264,0.525737106800079, --0.694688260555267,-0.291444092988968,0.657623469829559,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.694688260555267,-0.291444092988968,0.657623469829559,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.885213017463684,-0.127952173352242,0.447242945432663,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.897255182266235,-0.12331510335207,0.42394158244133,-0.880656898021698,-0.136906921863556,0.453541457653046,-0.885213017463684,-0.127952173352242,0.447242945432663,-0.880656898021698,-0.136906921863556,0.453541457653046,-0.860000193119049,-0.152292832732201,0.4870385825634,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.989044964313507,0.093381255865097,0.114324763417244,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.957474827766418,-0.27677658200264,-0.0814660489559174,-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.957474827766418,-0.27677658200264,-0.0814660489559174, --0.930284380912781,-0.284267514944077,0.231868550181389,-0.956861793994904,0.0141872800886631,0.290197134017944,-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.612387180328369,-0.103147372603416,0.783800065517426,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.816730439662933,0.0452887341380119,0.575239479541779,-0.612387180328369,-0.103147372603416,0.783800065517426,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.829760372638702,0.108762338757515,0.547420024871826,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.941217601299286,-0.0820105522871017,0.327694356441498,-0.925255835056305,-0.0990582928061485,0.36618173122406,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.925255835056305,-0.0990582928061485,0.36618173122406,-0.914755523204803,-0.108901210129261,0.389053791761398,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.645787417888641,-0.332664549350739,0.687235772609711,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.930284380912781,-0.284267514944077,0.231868550181389,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.645787417888641,-0.332664549350739,0.687235772609711,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.889139890670776,-0.300980299711227,0.344733268022537, --0.930454969406128,0.224429950118065,0.289628684520721,-0.943971574306488,0.128323748707771,0.304057091474533,-0.889139890670776,-0.300980299711227,0.344733268022537,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.89040869474411,0.311238497495651,0.332118898630142,-0.930454969406128,0.224429950118065,0.289628684520721,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.96850848197937,-0.0373800881206989,0.246158853173256,-0.92273998260498,-0.0873825326561928,0.375387012958527,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.92273998260498,-0.0873825326561928,0.375387012958527,-0.930082976818085,-0.0858379825949669,0.357180148363113,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.982185900211334,0.000488366989884526,0.187911063432693,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.880764484405518,0.180825784802437,0.437671184539795,-0.872197031974792,0.226783886551857,0.433406591415405,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.805730640888214,-0.350308150053024,0.477579683065414,-0.920935451984406,0.143320575356483,0.362404674291611, --0.880764484405518,0.180825784802437,0.437671184539795,0.155205458402634,-0.334317892789841,0.929592788219452,-0.0625111162662506,-0.333361387252808,0.940724492073059,-0.0692600607872009,-0.40361499786377,0.912303626537323,0.125930786132813,-0.385909855365753,0.913900971412659,0.155205458402634,-0.334317892789841,0.929592788219452,0.125930786132813,-0.385909855365753,0.913900971412659,0.424551904201508,-0.334209501743317,0.841462910175323,0.458569407463074,-0.304762840270996,0.834765732288361,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.573165655136108,0.205063909292221,0.793366253376007,0.16967536509037,-0.00174521736335009,0.985498547554016,0.156429439783096,-0.19400729238987,0.968447744846344,-0.595437586307526,-0.0581202879548073,0.801296532154083,0.16967536509037,-0.00174521736335009,0.985498547554016,0.0600302666425705,0.0760350003838539,0.995296478271484,0.0525225922465324,-0.190005153417587,0.98037713766098,0.156429439783096,-0.19400729238987,0.968447744846344,0.156429439783096,-0.19400729238987,0.968447744846344,0.0525225922465324,-0.190005153417587,0.98037713766098,0.00786542054265738,-0.305302739143372,0.952222883701324,0.106146022677422,-0.282717883586884,0.953311920166016, --0.595437586307526,-0.0581202879548073,0.801296532154083,0.156429439783096,-0.19400729238987,0.968447744846344,0.106146022677422,-0.282717883586884,0.953311920166016,-0.57489013671875,-0.214605569839478,0.789585769176483,-0.338309645652771,0.210501685738564,0.917188942432404,-0.556367337703705,0.28750267624855,0.779613852500916,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.556367337703705,0.28750267624855,0.779613852500916,-0.803800940513611,0.385017901659012,0.453503251075745,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.388131648302078,-0.443252623081207,0.808010518550873,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.17657545208931,-0.327362060546875,0.928253769874573,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.0555649995803833,-0.379517257213593,0.923514544963837,0.00786542054265738,-0.305302739143372,0.952222883701324,-0.17657545208931,-0.327362060546875,0.928253769874573,-0.57489013671875,-0.214605569839478,0.789585769176483,-0.490314334630966,-0.306891679763794,0.815726220607758,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.202353328466415,-0.298544436693192,0.932697296142578, --0.256725430488586,-0.374575465917587,0.890946269035339,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.820309162139893,-0.366870522499084,0.438746929168701,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.31101456284523,0.129726931452751,0.94150984287262,-0.523054778575897,0.27978852391243,0.805066525936127,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.523054778575897,0.27978852391243,0.805066525936127,-0.806167006492615,0.405817359685898,0.430589258670807,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.253959655761719,0.141760915517807,0.95676976442337,0.0775739923119545,0.0609424635767937,0.995122253894806,0.0929828062653542,-0.162344917654991,0.982343316078186,-0.231031611561775,-0.167481318116188,0.958422839641571,0.0775739923119545,0.0609424635767937,0.995122253894806,-0.189798250794411,0.239573091268539,0.95214569568634,-0.203934475779533,-0.16666454076767,0.964693486690521,0.0929828062653542,-0.162344917654991,0.982343316078186,0.0929828062653542,-0.162344917654991,0.982343316078186,-0.203934475779533,-0.16666454076767,0.964693486690521,-0.231684133410454,-0.341643393039703,0.910825073719025,0.117831543087959,-0.262484639883041,0.957714676856995,-0.231031611561775,-0.167481318116188,0.958422839641571,0.0929828062653542,-0.162344917654991,0.982343316078186, -0.117831543087959,-0.262484639883041,0.957714676856995,-0.202353328466415,-0.298544436693192,0.932697296142578,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.0692600607872009,-0.40361499786377,0.912303626537323,-0.0625111162662506,-0.333361387252808,0.940724492073059,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.236676275730133,-0.44870325922966,0.86177134513855,-0.231684133410454,-0.341643393039703,0.910825073719025,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.702914714813232,0.419525861740112,0.574377000331879,-0.85072648525238,0.454842150211334,0.26340663433075,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.85072648525238,0.454842150211334,0.26340663433075,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.780332982540131,-0.327159374952316,0.532960832118988,-0.831903696060181,-0.397577732801437,0.387128055095673,-0.903908669948578,-0.195528045296669,-0.380418121814728, --0.882719099521637,-0.110210955142975,-0.456793904304504,-0.903908669948578,-0.195528045296669,-0.380418121814728,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.882719099521637,-0.110210955142975,-0.456793904304504,-0.785015106201172,0.584624469280243,0.204854965209961,-0.150067076086998,0.43262243270874,0.888998210430145,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.150067076086998,0.43262243270874,0.888998210430145,-0.548661649227142,0.668700933456421,0.501806080341339,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.780332982540131,-0.327159374952316,0.532960832118988,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.682293832302094,-0.429185539484024,0.591840147972107,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.601010143756866,0.790193140506744,0.11992322653532,-0.633363366127014,0.765548825263977,0.113073691725731,-0.990498125553131,0.0831140950322151,0.109568946063519,-0.993990182876587,0.0658001378178596,0.0874857231974602,-0.633363366127014,0.765548825263977,0.113073691725731,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.990498125553131,0.0831140950322151,0.109568946063519, --0.990498125553131,0.0831140950322151,0.109568946063519,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.976659178733826,-0.16157354414463,0.141529962420464,-0.993990182876587,0.0658001378178596,0.0874857231974602,-0.990498125553131,0.0831140950322151,0.109568946063519,-0.976659178733826,-0.16157354414463,0.141529962420464,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.628344833850861,0.683509886264801,0.371479630470276,-0.14881919324398,0.462757468223572,0.873904049396515,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.14881919324398,0.462757468223572,0.873904049396515,-0.340639442205429,0.750027358531952,0.566942572593689,-0.631518125534058,0.117306865751743,0.766435742378235,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.631518125534058,0.117306865751743,0.766435742378235,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.792892038822174,-0.21461695432663,0.570317268371582,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.792892038822174,-0.21461695432663,0.570317268371582, --0.58196759223938,-0.243648797273636,0.775853753089905,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.355925559997559,0.906254887580872,0.228076919913292,-0.384405732154846,0.901455283164978,0.19902415573597,-0.888725101947784,0.338163733482361,0.309536933898926,-0.869791805744171,0.300110667943954,0.39165785908699,-0.384405732154846,0.901455283164978,0.19902415573597,-0.460800260305405,0.886764228343964,0.0362249948084354,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.888725101947784,0.338163733482361,0.309536933898926,-0.888725101947784,0.338163733482361,0.309536933898926,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.989044964313507,0.093381255865097,0.114324763417244,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.869791805744171,0.300110667943954,0.39165785908699,-0.888725101947784,0.338163733482361,0.309536933898926,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.829760372638702,0.108762338757515,0.547420024871826,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.989044964313507,0.093381255865097,0.114324763417244,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.359955251216888,0.867213666439056,0.344053357839584,-0.225861296057701,0.695742309093475,0.681857228279114,-0.466925084590912,0.270128220319748,0.842028260231018,-0.753035187721252,0.389152586460114,0.530564188957214,-0.225861296057701,0.695742309093475,0.681857228279114,-0.394090473651886,0.803994596004486,0.445292562246323,-0.726621448993683,0.32442569732666,0.605614900588989,-0.466925084590912,0.270128220319748,0.842028260231018,-0.466925084590912,0.270128220319748,0.842028260231018,-0.726621448993683,0.32442569732666,0.605614900588989, --0.816730439662933,0.0452887341380119,0.575239479541779,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.753035187721252,0.389152586460114,0.530564188957214,-0.466925084590912,0.270128220319748,0.842028260231018,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.829760372638702,0.108762338757515,0.547420024871826,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.942124962806702,0.0402246378362179,0.332840204238892,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.816730439662933,0.0452887341380119,0.575239479541779,-0.942124962806702,0.0402246378362179,0.332840204238892,-0.398814141750336,0.881977081298828,0.251124739646912,-0.436745554208755,0.84290075302124,0.314279556274414,-0.853223085403442,0.304148823022842,0.423678874969482,-0.85698789358139,0.343310981988907,0.38432976603508,-0.436745554208755,0.84290075302124,0.314279556274414,-0.521180927753448,0.839390277862549,0.154254466295242,-0.922710716724396,0.310931533575058,0.22787344455719,-0.853223085403442,0.304148823022842,0.423678874969482,-0.853223085403442,0.304148823022842,0.423678874969482,-0.922710716724396,0.310931533575058,0.22787344455719,-0.982185900211334,0.000488366989884526,0.187911063432693,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.85698789358139,0.343310981988907,0.38432976603508,-0.853223085403442,0.304148823022842,0.423678874969482,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.973421514034271,-0.164009347558022,-0.159848287701607,-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.973421514034271,-0.164009347558022,-0.159848287701607,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.982185900211334,0.000488366989884526,0.187911063432693, --0.994298040866852,0.0163711421191692,-0.105373501777649,-0.780667901039124,0.2519251704216,0.571919083595276,-0.384734183549881,0.823127925395966,0.417660236358643,-0.452030569314957,0.806248903274536,0.381616413593292,-0.824098348617554,0.27809539437294,0.493482232093811,-0.780667901039124,0.2519251704216,0.571919083595276,-0.824098348617554,0.27809539437294,0.493482232093811,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.995246887207031,0.0550698488950729,0.0803178697824478,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.974851250648499,-0.173598438501358,0.139745086431503,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.974851250648499,-0.173598438501358,0.139745086431503,-0.845598042011261,-0.197273597121239,0.496031492948532,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.370093166828156,0.921099185943604,0.120860703289509,-0.442843645811081,0.874231338500977,0.199020147323608,-0.921496629714966,0.361332952976227,0.142416775226593,-0.899428308010101,0.420667916536331,0.118604905903339,-0.442843645811081,0.874231338500977,0.199020147323608,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.921496629714966,0.361332952976227,0.142416775226593,-0.921496629714966,0.361332952976227,0.142416775226593,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.899428308010101,0.420667916536331,0.118604905903339,-0.921496629714966,0.361332952976227,0.142416775226593,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.995246887207031,0.0550698488950729,0.0803178697824478,0.247937545180321,0.356415033340454,-0.900830328464508,0.0800770372152328,0.348889946937561,-0.933736324310303,0.167164608836174,0.339099526405334,-0.925779402256012,0.259875953197479,0.378932803869247,-0.888186097145081, -0.0800770372152328,0.348889946937561,-0.933736324310303,0.0663652718067169,0.333928227424622,-0.940259397029877,0.16628709435463,0.278749406337738,-0.94585794210434,0.167164608836174,0.339099526405334,-0.925779402256012,0.733268737792969,0.353318601846695,-0.580932796001434,0.732320487499237,0.344545662403107,-0.587362706661224,0.773984909057617,0.336944669485092,-0.53611159324646,0.724198579788208,0.337111532688141,-0.601574718952179,0.732320487499237,0.344545662403107,-0.587362706661224,0.870228707790375,0.286943376064301,-0.400456577539444,0.893178820610046,0.295912206172943,-0.338626027107239,0.773984909057617,0.336944669485092,-0.53611159324646,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.9298415184021,-0.164688065648079,-0.32904788851738,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.925031006336212,-0.0753350853919983,0.372347176074982,0.951331615447998,-0.149952217936516,0.269225656986237,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.986953139305115,0.0644822493195534,-0.147531688213348,0.991479098796844,0.110518060624599,-0.0689562931656837,0.985069394111633,-0.15815107524395,0.0680177062749863,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.192238688468933,0.585725247859955,-0.787381827831268,0.275860637426376,0.374255150556564,-0.8853440284729,0.196716204285622,0.404981017112732,-0.892912745475769,0.159159854054451,0.618070542812347,-0.769842147827148,0.275860637426376,0.374255150556564,-0.8853440284729,0.406064093112946,0.278222501277924,-0.87046205997467,0.259202659130096,0.317281305789948,-0.912220656871796,0.196716204285622,0.404981017112732,-0.892912745475769,0.196716204285622,0.404981017112732,-0.892912745475769,0.259202659130096,0.317281305789948,-0.912220656871796,0.416761249303818,0.332422733306885,-0.846052706241608,0.372852832078934,0.41802653670311,-0.828392803668976,0.159159854054451,0.618070542812347,-0.769842147827148,0.196716204285622,0.404981017112732,-0.892912745475769, -0.372852832078934,0.41802653670311,-0.828392803668976,0.3162000477314,0.663077235221863,-0.67848813533783,0.518530607223511,0.333309799432755,-0.787420272827148,0.511013150215149,0.496467232704163,-0.701702117919922,0.495140880346298,0.185466706752777,-0.848785996437073,0.55392849445343,0.168168351054192,-0.815403401851654,0.511013150215149,0.496467232704163,-0.701702117919922,0.49078169465065,0.501620471477509,-0.712397575378418,0.416671603918076,0.242084756493568,-0.876230418682098,0.495140880346298,0.185466706752777,-0.848785996437073,7.073596407281e-06,0.83499151468277,-0.550262928009033,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,0.0807666257023811,0.861146986484528,-0.501899182796478,0.0795975625514984,0.829659402370453,-0.552566230297089,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,7.32525177227217e-06,0.889752805233002,-0.456442594528198,0.087555430829525,0.878067910671234,-0.470457851886749,0.0807666257023811,0.861146986484528,-0.501899182796478,0.0807666257023811,0.861146986484528,-0.501899182796478,0.087555430829525,0.878067910671234,-0.470457851886749,0.189263314008713,0.839074850082397,-0.510031998157501,0.183887124061584,0.826946556568146,-0.53136157989502,0.0795975625514984,0.829659402370453,-0.552566230297089,0.0807666257023811,0.861146986484528,-0.501899182796478,0.183887124061584,0.826946556568146,-0.53136157989502,0.176429450511932,0.811212837696075,-0.557500243186951,0.527123928070068,0.79532128572464,0.299339979887009,0.886807203292847,0.371660619974136,0.274666041135788,0.896331429481506,0.439389675855637,-0.0593850947916508,0.493079423904419,0.865481495857239,0.0883983597159386,0.886807203292847,0.371660619974136,0.274666041135788,0.976764976978302,0.115601629018784,0.180461540818214,0.970357775688171,0.154351145029068,-0.185961171984673,0.896331429481506,0.439389675855637,-0.0593850947916508,0.896331429481506,0.439389675855637,-0.0593850947916508,0.970357775688171,0.154351145029068,-0.185961171984673,0.934235095977783,0.148394331336021,-0.324320822954178,0.872592508792877,0.429911404848099,-0.23185895383358, -0.493079423904419,0.865481495857239,0.0883983597159386,0.896331429481506,0.439389675855637,-0.0593850947916508,0.872592508792877,0.429911404848099,-0.23185895383358,0.4871906042099,0.871947884559631,-0.0484998300671577,0.889630854129791,0.0999864265322685,-0.44560033082962,0.882848680019379,0.183537691831589,-0.432310283184052,0.866522550582886,0.0672406181693077,-0.494588106870651,0.899305462837219,0.0559697672724724,-0.433724671602249,0.882848680019379,0.183537691831589,-0.432310283184052,0.851244390010834,0.220117658376694,-0.476373016834259,0.768146157264709,0.127034261822701,-0.627545773983002,0.866522550582886,0.0672406181693077,-0.494588106870651,0.412412017583847,0.853519916534424,-0.318465173244476,0.391010999679565,0.849661409854889,-0.35381618142128,0.327444046735764,0.870584011077881,-0.367238193750381,0.342523485422134,0.883798897266388,-0.318711996078491,0.391010999679565,0.849661409854889,-0.35381618142128,0.373198360204697,0.847398638725281,-0.377675265073776,0.309454381465912,0.8653284907341,-0.394264459609985,0.327444046735764,0.870584011077881,-0.367238193750381,0.327444046735764,0.870584011077881,-0.367238193750381,0.309454381465912,0.8653284907341,-0.394264459609985,0.241002172231674,0.876779854297638,-0.41614305973053,0.252998828887939,0.886166572570801,-0.388201594352722,0.342523485422134,0.883798897266388,-0.318711996078491,0.327444046735764,0.870584011077881,-0.367238193750381,0.252998828887939,0.886166572570801,-0.388201594352722,0.262972354888916,0.908594965934753,-0.324500799179077,0.507899641990662,0.858306348323822,0.0731307566165924,0.912118852138519,0.406485766172409,-0.0529955364763737,0.85185831785202,0.429016262292862,-0.30047020316124,0.409356772899628,0.902956247329712,-0.130755364894867,0.912118852138519,0.406485766172409,-0.0529955364763737,0.982325971126556,0.123072631657124,-0.141027852892876,0.932205259799957,0.121903583407402,-0.340782701969147,0.85185831785202,0.429016262292862,-0.30047020316124,0.85185831785202,0.429016262292862,-0.30047020316124,0.932205259799957,0.121903583407402,-0.340782701969147, -0.911755323410034,0.12490601092577,-0.391280710697174,0.825702786445618,0.459892183542252,-0.326671272516251,0.409356772899628,0.902956247329712,-0.130755364894867,0.85185831785202,0.429016262292862,-0.30047020316124,0.825702786445618,0.459892183542252,-0.326671272516251,0.377066731452942,0.921685636043549,-0.0911936163902283,0.930621147155762,0.237400963902473,-0.278540879487991,0.826967298984528,0.545665800571442,-0.13554984331131,0.936087548732758,0.111993096768856,-0.333463251590729,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.826967298984528,0.545665800571442,-0.13554984331131,0.725338160991669,0.688391089439392,0.0015043233288452,0.916534781455994,0.315282136201859,-0.246092095971107,0.936087548732758,0.111993096768856,-0.333463251590729,0.466133117675781,0.879672467708588,-0.0943194255232811,0.468759685754776,0.874259650707245,-0.126231506466866,0.36862900853157,0.926361262798309,-0.0772489979863167,0.355120450258255,0.933926165103912,-0.0408839508891106,0.468759685754776,0.874259650707245,-0.126231506466866,0.485422134399414,0.856925666332245,-0.173331663012505,0.375085711479187,0.918812155723572,-0.122861780226231,0.36862900853157,0.926361262798309,-0.0772489979863167,0.36862900853157,0.926361262798309,-0.0772489979863167,0.375085711479187,0.918812155723572,-0.122861780226231,0.262632310390472,0.961123704910278,-0.0852374881505966,0.25543686747551,0.966500818729401,-0.0250628516077995,0.355120450258255,0.933926165103912,-0.0408839508891106,0.36862900853157,0.926361262798309,-0.0772489979863167,0.25543686747551,0.966500818729401,-0.0250628516077995,0.239230915904045,0.970812439918518,0.0170813668519258,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.95909571647644,0.00866605900228024,-0.282949209213257,0.954086303710938,0.116435326635838,-0.275974869728088,0.984959304332733,0.112915374338627,-0.130787134170532,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.984959304332733,0.112915374338627,-0.130787134170532,0.985287845134735,0.125068709254265,-0.116470903158188,0.991545021533966,-0.0115073760971427,-0.129251420497894, -0.982530891895294,0.179615572094917,-0.048695120960474,0.989191770553589,0.0672444105148315,-0.130298912525177,0.911470055580139,0.382125437259674,0.152323514223099,0.909924030303955,0.382335722446442,0.160803377628326,0.989191770553589,0.0672444105148315,-0.130298912525177,0.988293766975403,-0.00941547844558954,-0.152272343635559,0.884372234344482,0.457667320966721,0.0917949602007866,0.911470055580139,0.382125437259674,0.152323514223099,0.0285819675773382,0.729895889759064,-0.682960391044617,0.058124840259552,0.430876910686493,-0.900536835193634,0.079592302441597,0.422214806079865,-0.902994930744171,0.0703423768281937,0.730256140232086,-0.679542481899261,0.058124840259552,0.430876910686493,-0.900536835193634,0.0522924698889256,0.322998911142349,-0.944953560829163,0.066230870783329,0.316772729158401,-0.946186363697052,0.079592302441597,0.422214806079865,-0.902994930744171,0.079592302441597,0.422214806079865,-0.902994930744171,0.066230870783329,0.316772729158401,-0.946186363697052,0.253090023994446,0.309255063533783,-0.916682422161102,0.257353484630585,0.407361626625061,-0.876256704330444,0.0703423768281937,0.730256140232086,-0.679542481899261,0.079592302441597,0.422214806079865,-0.902994930744171,0.257353484630585,0.407361626625061,-0.876256704330444,0.231597498059273,0.720394432544708,-0.653754115104675,0.414057105779648,0.641223967075348,-0.646056234836578,0.429304540157318,0.351523876190186,-0.831942617893219,0.318305790424347,0.309041291475296,-0.896200239658356,0.346389561891556,0.535183012485504,-0.770450055599213,0.429304540157318,0.351523876190186,-0.831942617893219,0.363035053014755,0.285731792449951,-0.886883854866028,0.185440421104431,0.276990950107574,-0.942808568477631,0.318305790424347,0.309041291475296,-0.896200239658356,0.318305790424347,0.309041291475296,-0.896200239658356,0.185440421104431,0.276990950107574,-0.942808568477631,0.472372621297836,0.228369891643524,-0.851299822330475,0.522377550601959,0.226540461182594,-0.822071313858032,0.346389561891556,0.535183012485504,-0.770450055599213,0.318305790424347,0.309041291475296,-0.896200239658356, -0.522377550601959,0.226540461182594,-0.822071313858032,0.475937902927399,0.393635958433151,-0.786469340324402,0.491225898265839,0.251587748527527,-0.833906888961792,0.136726126074791,0.2953742146492,-0.945547461509705,0.0890832617878914,0.300667136907578,-0.949559569358826,0.381466448307037,0.306202560663223,-0.872194528579712,0.136726126074791,0.2953742146492,-0.945547461509705,0.316920131444931,0.322103083133698,-0.892082452774048,0.261563330888748,0.344951987266541,-0.901439249515533,0.0890832617878914,0.300667136907578,-0.949559569358826,0.428906440734863,0.83082526922226,-0.354638814926147,0.661201655864716,0.547184109687805,-0.513226926326752,0.569116055965424,0.579348504543304,-0.583491384983063,0.369096249341965,0.844427645206451,-0.388213694095612,0.661201655864716,0.547184109687805,-0.513226926326752,0.836861670017242,0.305047154426575,-0.454542368650436,0.697526335716248,0.352087527513504,-0.624092400074005,0.569116055965424,0.579348504543304,-0.583491384983063,0.569116055965424,0.579348504543304,-0.583491384983063,0.697526335716248,0.352087527513504,-0.624092400074005,0.729379653930664,0.360977053642273,-0.581120312213898,0.623320579528809,0.598883986473083,-0.502801597118378,0.369096249341965,0.844427645206451,-0.388213694095612,0.569116055965424,0.579348504543304,-0.583491384983063,0.623320579528809,0.598883986473083,-0.502801597118378,0.403345912694931,0.857400178909302,-0.319651186466217,0.412647932767868,0.83742094039917,-0.358396232128143,0.579758405685425,0.584730505943298,-0.567424356937408,0.452493160963058,0.532957077026367,-0.71498715877533,0.364626258611679,0.790468752384186,-0.492145121097565,0.579758405685425,0.584730505943298,-0.567424356937408,0.607783138751984,0.349040508270264,-0.713281393051147,0.400801569223404,0.334431350231171,-0.852944254875183,0.452493160963058,0.532957077026367,-0.71498715877533,0.452493160963058,0.532957077026367,-0.71498715877533,0.400801569223404,0.334431350231171,-0.852944254875183,0.962669014930725,0.186627522110939,0.196057677268982,0.897241830825806,0.377294570207596,0.229360029101372, -0.364626258611679,0.790468752384186,-0.492145121097565,0.452493160963058,0.532957077026367,-0.71498715877533,0.897241830825806,0.377294570207596,0.229360029101372,0.635576844215393,0.76066917181015,0.132001623511314,0.980971336364746,0.185382813215256,0.0576918534934521,0.383437156677246,0.307847172021866,-0.870750308036804,0.39307427406311,0.31626883149147,-0.863404154777527,0.981276512145996,0.191767975687981,0.0179323554039001,0.383437156677246,0.307847172021866,-0.870750308036804,0.597319900989532,0.32426705956459,-0.733525633811951,0.573964834213257,0.327366709709167,-0.750596702098846,0.39307427406311,0.31626883149147,-0.863404154777527,0.521699905395508,0.778946161270142,0.347954154014587,0.891996443271637,0.180436879396439,0.41446927189827,0.951896786689758,0.282447278499603,0.118811711668968,0.448808789253235,0.886676609516144,0.111244484782219,0.891996443271637,0.180436879396439,0.41446927189827,0.908789753913879,-0.0247746761888266,0.416518121957779,0.993625104427338,0.0100124217569828,0.112289875745773,0.951896786689758,0.282447278499603,0.118811711668968,0.951896786689758,0.282447278499603,0.118811711668968,0.993625104427338,0.0100124217569828,0.112289875745773,0.984015107154846,0.0289055965840816,-0.175723806023598,0.928663074970245,0.346988201141357,-0.13108816742897,0.448808789253235,0.886676609516144,0.111244484782219,0.951896786689758,0.282447278499603,0.118811711668968,0.928663074970245,0.346988201141357,-0.13108816742897,0.392393261194229,0.919789731502533,0.00378495058976114,0.341739416122437,0.905296921730042,-0.252292722463608,0.764081120491028,0.38950178027153,-0.514264941215515,0.654633402824402,0.378921449184418,-0.65412050485611,0.316450387239456,0.84852546453476,-0.424103587865829,0.764081120491028,0.38950178027153,-0.514264941215515,0.844202399253845,0.0513361506164074,-0.533560752868652,0.773016333580017,0.0912823081016541,-0.627784371376038,0.654633402824402,0.378921449184418,-0.65412050485611,0.654633402824402,0.378921449184418,-0.65412050485611,0.773016333580017,0.0912823081016541,-0.627784371376038, -0.920605778694153,0.139724984765053,-0.364639669656754,0.81708836555481,0.455796748399734,-0.353009760379791,0.316450387239456,0.84852546453476,-0.424103587865829,0.654633402824402,0.378921449184418,-0.65412050485611,0.81708836555481,0.455796748399734,-0.353009760379791,0.440194547176361,0.894553005695343,-0.0774847269058228,0.947330832481384,0.0109401699155569,-0.320069700479507,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.865661025047302,-0.193967401981354,-0.461527645587921,0.966646611690521,-0.169457629323006,-0.192037552595139,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.852650284767151,-0.059975378215313,-0.51902836561203,0.83592814207077,-0.209792360663414,-0.507160067558289,0.865661025047302,-0.193967401981354,-0.461527645587921,0.982482731342316,0.0631801560521126,0.175316616892815,0.998084425926208,0.0616633482277393,0.00499705411493778,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.988163650035858,-0.0455380268394947,0.146488800644875,0.41533300280571,0.888613343238831,0.194588840007782,0.865598917007446,0.468766510486603,0.176058456301689,0.845420837402344,0.530279397964478,-0.0637764483690262,0.369161039590836,0.929343700408936,0.00636240420863032,0.865598917007446,0.468766510486603,0.176058456301689,0.982482731342316,0.0631801560521126,0.175316616892815,0.989315450191498,0.115582823753357,-0.0888567939400673,0.845420837402344,0.530279397964478,-0.0637764483690262,0.845420837402344,0.530279397964478,-0.0637764483690262,0.989315450191498,0.115582823753357,-0.0888567939400673,0.985287845134735,0.125068709254265,-0.116470903158188,0.83901059627533,0.541394233703613,-0.0543462336063385,0.369161039590836,0.929343700408936,0.00636240420863032,0.845420837402344,0.530279397964478,-0.0637764483690262,0.83901059627533,0.541394233703613,-0.0543462336063385,0.343630492687225,0.93797492980957,0.0460529997944832,0.991545021533966,-0.0115073760971427,-0.129251420497894,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.986045718193054,-0.152371600270271,-0.067056804895401, -0.980171322822571,-0.14081147313118,-0.139413714408875,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.988163650035858,-0.0455380268394947,0.146488800644875,0.985069394111633,-0.15815107524395,0.0680177062749863,0.986045718193054,-0.152371600270271,-0.067056804895401,0.475188434123993,0.700506985187531,-0.532433986663818,0.551208794116974,0.402171492576599,-0.731045067310333,0.429802536964417,0.368185758590698,-0.824444651603699,0.389443337917328,0.631120979785919,-0.670835435390472,0.551208794116974,0.402171492576599,-0.731045067310333,0.503604590892792,0.325732111930847,-0.800175666809082,0.336829006671906,0.317928314208984,-0.886266231536865,0.429802536964417,0.368185758590698,-0.824444651603699,0.429802536964417,0.368185758590698,-0.824444651603699,0.336829006671906,0.317928314208984,-0.886266231536865,0.788055241107941,0.269042760133743,-0.553701162338257,0.705819070339203,0.338346719741821,-0.622367143630981,0.389443337917328,0.631120979785919,-0.670835435390472,0.429802536964417,0.368185758590698,-0.824444651603699,0.705819070339203,0.338346719741821,-0.622367143630981,0.535168170928955,0.594861686229706,-0.599778831005096,0.79706084728241,0.281183272600174,-0.534443616867065,0.278537034988403,0.336202412843704,-0.899658262729645,0.192926704883575,0.364895969629288,-0.910840392112732,0.73923659324646,0.344859093427658,-0.57844752073288,0.278537034988403,0.336202412843704,-0.899658262729645,0.460892260074615,0.366113841533661,-0.808417618274689,0.39407479763031,0.414524525403976,-0.820289373397827,0.192926704883575,0.364895969629288,-0.910840392112732,0.441102802753448,0.384839594364166,-0.810756921768188,0.332564800977707,0.353411465883255,-0.874357521533966,0.488260090351105,0.388118863105774,-0.781643033027649,0.484867662191391,0.426925152540207,-0.763307452201843,0.332564800977707,0.353411465883255,-0.874357521533966,0.466656118631363,0.295668810606003,-0.833553910255432,0.593212127685547,0.321026146411896,-0.7382692694664,0.488260090351105,0.388118863105774,-0.781643033027649,0.313833922147751,0.838987350463867,-0.444531738758087, -0.297653019428253,0.831040143966675,-0.469867169857025,0.264259725809097,0.846782326698303,-0.461656272411346,0.275814890861511,0.854386866092682,-0.440396666526794,0.297653019428253,0.831040143966675,-0.469867169857025,0.279201298952103,0.82872998714447,-0.485028952360153,0.252934187650681,0.836789608001709,-0.485600143671036,0.264259725809097,0.846782326698303,-0.461656272411346,0.264259725809097,0.846782326698303,-0.461656272411346,0.252934187650681,0.836789608001709,-0.485600143671036,0.202573224902153,0.861268758773804,-0.466025948524475,0.211023345589638,0.868739426136017,-0.44806370139122,0.275814890861511,0.854386866092682,-0.440396666526794,0.264259725809097,0.846782326698303,-0.461656272411346,0.211023345589638,0.868739426136017,-0.44806370139122,0.220452040433884,0.873438954353333,-0.434171885251999,0.279201298952103,0.82872998714447,-0.485028952360153,0.256998717784882,0.818753182888031,-0.513414859771729,0.241618543863297,0.823541104793549,-0.513225674629211,0.252934187650681,0.836789608001709,-0.485600143671036,0.256998717784882,0.818753182888031,-0.513414859771729,0.24184961616993,0.806344985961914,-0.539737343788147,0.234360799193382,0.808445155620575,-0.539899587631226,0.241618543863297,0.823541104793549,-0.513225674629211,0.241618543863297,0.823541104793549,-0.513225674629211,0.234360799193382,0.808445155620575,-0.539899587631226,0.189263314008713,0.839074850082397,-0.510031998157501,0.194773226976395,0.850903809070587,-0.487879246473312,0.252934187650681,0.836789608001709,-0.485600143671036,0.241618543863297,0.823541104793549,-0.513225674629211,0.194773226976395,0.850903809070587,-0.487879246473312,0.202573224902153,0.861268758773804,-0.466025948524475,0.355381429195404,0.524076342582703,-0.773981869220734,0.378176629543304,0.528110861778259,-0.760316669940948,0.476209849119186,0.397222876548767,-0.784498691558838,0.370532244443893,0.403686285018921,-0.836506485939026,0.378176629543304,0.528110861778259,-0.760316669940948,0.402486979961395,0.522201836109161,-0.751870632171631,0.546992540359497,0.341834425926208,-0.764165222644806, -0.476209849119186,0.397222876548767,-0.784498691558838,7.073596407281e-06,0.83499151468277,-0.550262928009033,0.0795975625514984,0.829659402370453,-0.552566230297089,0.0919826775789261,0.737789630889893,-0.668734490871429,4.06080403081432e-07,0.735536515712738,-0.677485108375549,0.0795975625514984,0.829659402370453,-0.552566230297089,0.176429450511932,0.811212837696075,-0.557500243186951,0.172337353229523,0.741694688796997,-0.64821982383728,0.0919826775789261,0.737789630889893,-0.668734490871429,0.0919826775789261,0.737789630889893,-0.668734490871429,0.172337353229523,0.741694688796997,-0.64821982383728,0.182871222496033,0.526780843734741,-0.830096364021301,0.118349120020866,0.507962286472321,-0.85321033000946,4.06080403081432e-07,0.735536515712738,-0.677485108375549,0.0919826775789261,0.737789630889893,-0.668734490871429,0.118349120020866,0.507962286472321,-0.85321033000946,4.51247871069427e-07,0.499479681253433,-0.866325557231903,2.50662333201035e-06,0.290553063154221,-0.95685887336731,4.51247871069427e-07,0.499479681253433,-0.866325557231903,0.118349120020866,0.507962286472321,-0.85321033000946,0.142957478761673,0.29364675283432,-0.945163905620575,0.142957478761673,0.29364675283432,-0.945163905620575,0.118349120020866,0.507962286472321,-0.85321033000946,0.182871222496033,0.526780843734741,-0.830096364021301,0.208717495203018,0.299665898084641,-0.930933594703674,0.22142082452774,0.15281318128109,-0.9631307721138,0.142957478761673,0.29364675283432,-0.945163905620575,0.208717495203018,0.299665898084641,-0.930933594703674,0.318776696920395,0.121042519807816,-0.940069198608398,0.330113887786865,0.373487502336502,-0.866909325122833,0.332315802574158,0.540797293186188,-0.772725343704224,0.30895471572876,0.22746567428112,-0.92347514629364,0.348579585552216,0.189517378807068,-0.917919039726257,0.332315802574158,0.540797293186188,-0.772725343704224,0.331205278635025,0.555228888988495,-0.762904942035675,0.275888413190842,0.299088269472122,-0.913472473621368,0.30895471572876,0.22746567428112,-0.92347514629364,0.342911422252655,0.810504853725433,-0.474861770868301, -0.57455050945282,0.412903517484665,-0.706684052944183,0.31617084145546,0.329747140407562,-0.889552056789398,0.22217258810997,0.68991482257843,-0.688953518867493,0.57455050945282,0.412903517484665,-0.706684052944183,0.59410285949707,0.175139710307121,-0.785091042518616,0.270146608352661,0.178430765867233,-0.946141183376312,0.31617084145546,0.329747140407562,-0.889552056789398,0.31617084145546,0.329747140407562,-0.889552056789398,0.270146608352661,0.178430765867233,-0.946141183376312,0.809445440769196,0.144350245594978,-0.569175839424133,0.835914254188538,0.249953210353851,-0.488641738891602,0.22217258810997,0.68991482257843,-0.688953518867493,0.31617084145546,0.329747140407562,-0.889552056789398,0.835914254188538,0.249953210353851,-0.488641738891602,0.629011392593384,0.749249517917633,-0.207292005419731,0.780417799949646,0.120299659669399,-0.613576352596283,0.288461476564407,0.137839183211327,-0.947518050670624,0.346846014261246,0.0781911462545395,-0.934657156467438,0.839513540267944,0.0672921165823936,-0.539155781269073,0.288461476564407,0.137839183211327,-0.947518050670624,0.583897352218628,0.1308653652668,-0.801210463047028,0.632351577281952,0.0926535129547119,-0.769120872020721,0.346846014261246,0.0781911462545395,-0.934657156467438,0.924593687057495,0.12973764538765,-0.358182460069656,0.962854385375977,0.131351679563522,-0.235919460654259,0.952069818973541,0.122024171054363,-0.280487269163132,0.911967039108276,0.118431679904461,-0.392797768115997,0.962854385375977,0.131351679563522,-0.235919460654259,0.990326702594757,0.0927801057696342,0.103173792362213,0.994663178920746,0.099911667406559,-0.0257435515522957,0.952069818973541,0.122024171054363,-0.280487269163132,0.462169378995895,0.857039988040924,-0.227776110172272,0.453963726758957,0.862245619297028,-0.224609419703484,0.368420213460922,0.90610283613205,-0.207952544093132,0.370030969381332,0.907288372516632,-0.199761897325516,0.453963726758957,0.862245619297028,-0.224609419703484,0.466593980789185,0.848514020442963,-0.249627456068993,0.363732397556305,0.902941644191742,-0.228899896144867, -0.368420213460922,0.90610283613205,-0.207952544093132,0.368420213460922,0.90610283613205,-0.207952544093132,0.363732397556305,0.902941644191742,-0.228899896144867,0.268075793981552,0.938277304172516,-0.218565970659256,0.267510741949081,0.944651663303375,-0.189924359321594,0.370030969381332,0.907288372516632,-0.199761897325516,0.368420213460922,0.90610283613205,-0.207952544093132,0.267510741949081,0.944651663303375,-0.189924359321594,0.265947252511978,0.947537899017334,-0.177324488759041,0.466593980789185,0.848514020442963,-0.249627456068993,0.425431042909622,0.863421499729156,-0.271130442619324,0.354320287704468,0.896461427211761,-0.266108989715576,0.363732397556305,0.902941644191742,-0.228899896144867,0.425431042909622,0.863421499729156,-0.271130442619324,0.412412017583847,0.853519916534424,-0.318465173244476,0.342523485422134,0.883798897266388,-0.318711996078491,0.354320287704468,0.896461427211761,-0.266108989715576,0.354320287704468,0.896461427211761,-0.266108989715576,0.342523485422134,0.883798897266388,-0.318711996078491,0.262972354888916,0.908594965934753,-0.324500799179077,0.267176300287247,0.927280128002167,-0.262237429618835,0.363732397556305,0.902941644191742,-0.228899896144867,0.354320287704468,0.896461427211761,-0.266108989715576,0.267176300287247,0.927280128002167,-0.262237429618835,0.268075793981552,0.938277304172516,-0.218565970659256,0.792701959609985,0.400867879390717,-0.459269553422928,0.849435150623322,0.347480028867722,-0.397136718034744,0.961063802242279,0.21541254222393,-0.173071682453156,0.859557867050171,0.334645241498947,-0.386228829622269,0.849435150623322,0.347480028867722,-0.397136718034744,0.867344975471497,0.2725790143013,-0.416429340839386,0.951062262058258,0.134249106049538,-0.278312623500824,0.961063802242279,0.21541254222393,-0.173071682453156,0.373198360204697,0.847398638725281,-0.377675265073776,0.334130376577377,0.851143836975098,-0.404859244823456,0.291103363037109,0.861866414546967,-0.415265202522278,0.309454381465912,0.8653284907341,-0.394264459609985,0.334130376577377,0.851143836975098,-0.404859244823456, -0.313833922147751,0.838987350463867,-0.444531738758087,0.275814890861511,0.854386866092682,-0.440396666526794,0.291103363037109,0.861866414546967,-0.415265202522278,0.291103363037109,0.861866414546967,-0.415265202522278,0.275814890861511,0.854386866092682,-0.440396666526794,0.220452040433884,0.873438954353333,-0.434171885251999,0.230519369244576,0.87637585401535,-0.422878295183182,0.309454381465912,0.8653284907341,-0.394264459609985,0.291103363037109,0.861866414546967,-0.415265202522278,0.230519369244576,0.87637585401535,-0.422878295183182,0.241002172231674,0.876779854297638,-0.41614305973053,0.545172929763794,0.533064484596252,-0.647015333175659,0.619479656219482,0.509791851043701,-0.596956551074982,0.828815698623657,0.333292007446289,-0.449422895908356,0.608534216880798,0.422096699476242,-0.671952784061432,0.619479656219482,0.509791851043701,-0.596956551074982,0.656255125999451,0.448537945747375,-0.60674774646759,0.826049566268921,0.216002121567726,-0.52056223154068,0.828815698623657,0.333292007446289,-0.449422895908356,0.748709142208099,0.238583773374557,-0.61847585439682,0.750775992870331,0.394683867692947,-0.529679238796234,0.728286027908325,0.183006748557091,-0.660384654998779,0.74715131521225,0.127207294106483,-0.652367472648621,0.750775992870331,0.394683867692947,-0.529679238796234,0.739257872104645,0.406338691711426,-0.537016332149506,0.691599428653717,0.257617503404617,-0.674776554107666,0.728286027908325,0.183006748557091,-0.660384654998779,0.409580141305923,0.888055443763733,-0.208810359239578,0.777661442756653,0.434450030326843,-0.454418390989304,0.74303275346756,0.400960326194763,-0.535848140716553,0.38879406452179,0.854439854621887,-0.344632625579834,0.777661442756653,0.434450030326843,-0.454418390989304,0.835684537887573,0.120450638234615,-0.535838782787323,0.802316009998322,0.112709224224091,-0.58616179227829,0.74303275346756,0.400960326194763,-0.535848140716553,0.74303275346756,0.400960326194763,-0.535848140716553,0.802316009998322,0.112709224224091,-0.58616179227829,0.998084425926208,0.0616633482277393,0.00499705411493778, -0.892125844955444,0.446515828371048,0.0688126757740974,0.38879406452179,0.854439854621887,-0.344632625579834,0.74303275346756,0.400960326194763,-0.535848140716553,0.892125844955444,0.446515828371048,0.0688126757740974,0.41334941983223,0.894980490207672,0.167786166071892,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.810217082500458,0.0675373077392578,-0.582225978374481,0.809904813766479,0.00722522288560867,-0.586516976356506,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.810217082500458,0.0675373077392578,-0.582225978374481,0.837286174297333,0.0577985979616642,-0.543701350688934,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.809904813766479,0.00722522288560867,-0.586516976356506,0.916099011898041,0.0440531559288502,-0.398524641990662,0.94000256061554,0.0346132442355156,-0.339407026767731,0.945058286190033,-0.0753810480237007,-0.318092048168182,0.915224254131317,-0.053038727492094,-0.399438798427582,0.94000256061554,0.0346132442355156,-0.339407026767731,0.985578894615173,0.0224285423755646,-0.167723700404167,0.978056848049164,-0.11288920044899,-0.175102561712265,0.945058286190033,-0.0753810480237007,-0.318092048168182,3.1286046578316e-05,0.933347523212433,0.35897421836853,0.0770793333649635,0.951992928981781,0.296257019042969,0.200590163469315,0.958871722221375,0.200819864869118,0.108371868729591,0.959608852863312,0.259627461433411,0.0770793333649635,0.951992928981781,0.296257019042969,0.198442324995995,0.965159118175507,0.170553311705589,0.30128887295723,0.942227482795715,0.146398097276688,0.200590163469315,0.958871722221375,0.200819864869118,0.200590163469315,0.958871722221375,0.200819864869118,0.30128887295723,0.942227482795715,0.146398097276688,0.400216519832611,0.909813821315765,0.109843462705612,0.30015429854393,0.941739022731781,0.151773378252983,0.108371868729591,0.959608852863312,0.259627461433411,0.200590163469315,0.958871722221375,0.200819864869118,0.30015429854393,0.941739022731781,0.151773378252983,0.222897455096245,0.956485331058502,0.188288345932961,0.400216519832611,0.909813821315765,0.109843462705612, -0.441829472780228,0.897083759307861,0.00524313747882843,0.344667553901672,0.93763679265976,0.0451833009719849,0.30015429854393,0.941739022731781,0.151773378252983,0.441829472780228,0.897083759307861,0.00524313747882843,0.466133117675781,0.879672467708588,-0.0943194255232811,0.355120450258255,0.933926165103912,-0.0408839508891106,0.344667553901672,0.93763679265976,0.0451833009719849,0.344667553901672,0.93763679265976,0.0451833009719849,0.355120450258255,0.933926165103912,-0.0408839508891106,0.239230915904045,0.970812439918518,0.0170813668519258,0.22064197063446,0.969886660575867,0.103136040270329,0.30015429854393,0.941739022731781,0.151773378252983,0.344667553901672,0.93763679265976,0.0451833009719849,0.22064197063446,0.969886660575867,0.103136040270329,0.222897455096245,0.956485331058502,0.188288345932961,0.920147359371185,0.269906520843506,-0.283688962459564,0.919898808002472,0.297293335199356,-0.255739659070969,0.976116955280304,0.0134601527824998,-0.216828137636185,0.967101693153381,0.0675250291824341,-0.245264634490013,0.919898808002472,0.297293335199356,-0.255739659070969,0.90697705745697,0.336921870708466,-0.252737581729889,0.971439898014069,-0.0380248129367828,-0.234219044446945,0.976116955280304,0.0134601527824998,-0.216828137636185,0.485422134399414,0.856925666332245,-0.173331663012505,0.459614187479019,0.863845646381378,-0.206217125058174,0.373321622610092,0.911100506782532,-0.174719214439392,0.375085711479187,0.918812155723572,-0.122861780226231,0.459614187479019,0.863845646381378,-0.206217125058174,0.462169378995895,0.857039988040924,-0.227776110172272,0.370030969381332,0.907288372516632,-0.199761897325516,0.373321622610092,0.911100506782532,-0.174719214439392,0.373321622610092,0.911100506782532,-0.174719214439392,0.370030969381332,0.907288372516632,-0.199761897325516,0.265947252511978,0.947537899017334,-0.177324488759041,0.264466553926468,0.952880501747131,-0.148580998182297,0.375085711479187,0.918812155723572,-0.122861780226231,0.373321622610092,0.911100506782532,-0.174719214439392,0.264466553926468,0.952880501747131,-0.148580998182297, -0.262632310390472,0.961123704910278,-0.0852374881505966,0.82975310087204,0.32433557510376,-0.454220652580261,0.847729325294495,0.33799347281456,-0.408797353506088,0.890639185905457,0.299340456724167,-0.342282474040985,0.784429788589478,0.305884122848511,-0.53954142332077,0.847729325294495,0.33799347281456,-0.408797353506088,0.853890836238861,0.319215506315231,-0.411061942577362,0.924147367477417,0.229529798030853,-0.305397510528564,0.890639185905457,0.299340456724167,-0.342282474040985,0.886994004249573,0.163238406181335,-0.431966125965118,0.88551664352417,0.269461572170258,-0.378484547138214,0.898446023464203,0.0842752084136009,-0.430920600891113,0.901818215847015,0.0675557777285576,-0.426802188158035,0.88551664352417,0.269461572170258,-0.378484547138214,0.893243849277496,0.298696398735046,-0.335999757051468,0.922317802906036,0.124125301837921,-0.365954786539078,0.898446023464203,0.0842752084136009,-0.430920600891113,0.905371725559235,0.0427408628165722,-0.4224633872509,0.959687411785126,0.0514214597642422,-0.27632600069046,0.94057035446167,0.131806656718254,-0.312976598739624,0.888292610645294,0.134076192975044,-0.439271807670593,0.905371725559235,0.0427408628165722,-0.4224633872509,0.888292610645294,0.134076192975044,-0.439271807670593,0.954086303710938,0.116435326635838,-0.275974869728088,0.95909571647644,0.00866605900228024,-0.282949209213257,0.959687411785126,0.0514214597642422,-0.27632600069046,0.905371725559235,0.0427408628165722,-0.4224633872509,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.965870499610901,0.00448970589786768,-0.258986443281174,0.905371725559235,0.0427408628165722,-0.4224633872509,0.95909571647644,0.00866605900228024,-0.282949209213257,0.955293476581573,-0.100287422537804,-0.278130829334259,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.989710927009583,0.102190293371677,-0.100146681070328,0.988306939601898,0.104397609829903,-0.111133053898811,0.972208499908447,-0.127094998955727,-0.19661520421505,0.980171322822571,-0.14081147313118,-0.139413714408875,0.988306939601898,0.104397609829903,-0.111133053898811, -0.988293766975403,-0.00941547844558954,-0.152272343635559,0.955293476581573,-0.100287422537804,-0.278130829334259,0.972208499908447,-0.127094998955727,-0.19661520421505,0.689390957355499,0.722647607326508,0.0502060428261757,0.631899356842041,0.769888997077942,0.0892974659800529,0.814651012420654,0.577126085758209,0.05717808380723,0.838683366775513,0.544562935829163,-0.00783465337008238,0.631899356842041,0.769888997077942,0.0892974659800529,0.584385097026825,0.809152603149414,0.0613689199090004,0.801068782806396,0.595264196395874,0.0628444850444794,0.814651012420654,0.577126085758209,0.05717808380723,0.887120962142944,0.441524177789688,-0.134434923529625,0.603810250759125,0.796887397766113,0.0195919945836067,0.537430226802826,0.842876613140106,-0.026979073882103,0.847741067409515,0.516543209552765,-0.12049139291048,0.838683366775513,0.544562935829163,-0.00783465337008238,0.989710927009583,0.102190293371677,-0.100146681070328,0.994581878185272,0.0645951926708221,-0.0814513266086578,0.850350499153137,0.521303713321686,-0.0717378035187721,0.994581878185272,0.0645951926708221,-0.0814513266086578,0.991479098796844,0.110518060624599,-0.0689562931656837,0.847741067409515,0.516543209552765,-0.12049139291048,0.850350499153137,0.521303713321686,-0.0717378035187721,4.66808523924556e-06,0.516847312450409,-0.856077551841736,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,0.243593201041222,0.351151376962662,-0.904076874256134,0.1112105473876,0.567817628383636,-0.815607249736786,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,-7.8074026532704e-06,0.338909506797791,-0.940818905830383,0.261896342039108,0.326266586780548,-0.908273279666901,0.243593201041222,0.351151376962662,-0.904076874256134,0.243593201041222,0.351151376962662,-0.904076874256134,0.261896342039108,0.326266586780548,-0.908273279666901,0.344331592321396,0.314264476299286,-0.884688377380371,0.308559060096741,0.384593516588211,-0.869988083839417,0.1112105473876,0.567817628383636,-0.815607249736786,0.243593201041222,0.351151376962662,-0.904076874256134, -0.308559060096741,0.384593516588211,-0.869988083839417,0.133469432592392,0.65885329246521,-0.74033659696579,0.348579585552216,0.189517378807068,-0.917919039726257,0.331366807222366,0.181360095739365,-0.925907373428345,0.358443260192871,0.143149480223656,-0.922511041164398,0.357639133930206,0.230505898594856,-0.904964864253998,0.358443260192871,0.143149480223656,-0.922511041164398,0.368675380945206,0.098903588950634,-0.924281597137451,0.323132365942001,0.276261866092682,-0.905132412910461,0.357639133930206,0.230505898594856,-0.904964864253998,0.291167229413986,0.205097615718842,-0.934428453445435,1.21185021271231e-05,0.230906829237938,-0.972975850105286,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,0.22142082452774,0.15281318128109,-0.9631307721138,0.291167229413986,0.205097615718842,-0.934428453445435,0.22142082452774,0.15281318128109,-0.9631307721138,0.318776696920395,0.121042519807816,-0.940069198608398,0.371691584587097,0.176296725869179,-0.911462962627411,0.382658123970032,0.343927413225174,-0.857488572597504,0.316920131444931,0.322103083133698,-0.892082452774048,0.363035053014755,0.285731792449951,-0.886883854866028,0.411484777927399,0.292565256357193,-0.863183617591858,0.382658123970032,0.343927413225174,-0.857488572597504,0.411484777927399,0.292565256357193,-0.863183617591858,0.253090023994446,0.309255063533783,-0.916682422161102,0.247937545180321,0.356415033340454,-0.900830328464508,0.370532244443893,0.403686285018921,-0.836506485939026,0.359844118356705,0.337632149457932,-0.869779706001282,0.184018075466156,0.307996332645416,-0.933421492576599,0.285932034254074,0.363823145627975,-0.886496305465698,0.184018075466156,0.307996332645416,-0.933421492576599,0.199421912431717,0.25212886929512,-0.946922361850739,0.275888413190842,0.299088269472122,-0.913472473621368,0.285932034254074,0.363823145627975,-0.886496305465698,0.331366807222366,0.181360095739365,-0.925907373428345,0.277288466691971,0.210945814847946,-0.937343597412109,0.324567437171936,0.37573054432869,-0.868033766746521,0.259875953197479,0.378932803869247,-0.888186097145081, -0.277288466691971,0.210945814847946,-0.937343597412109,0.199421912431717,0.25212886929512,-0.946922361850739,0.261563330888748,0.344951987266541,-0.901439249515533,0.324567437171936,0.37573054432869,-0.868033766746521,0.76337343454361,0.199616685509682,-0.614340484142303,0.466656118631363,0.295668810606003,-0.833553910255432,0.406064093112946,0.278222501277924,-0.87046205997467,0.764439225196838,0.174755975604057,-0.620558738708496,0.76337343454361,0.199616685509682,-0.614340484142303,0.764439225196838,0.174755975604057,-0.620558738708496,0.472372621297836,0.228369891643524,-0.851299822330475,0.491225898265839,0.251587748527527,-0.833906888961792,0.359844118356705,0.337632149457932,-0.869779706001282,0.585752069950104,0.344408452510834,-0.733673751354218,0.782543540000916,0.231308832764626,-0.578032732009888,0.381466448307037,0.306202560663223,-0.872194528579712,0.585752069950104,0.344408452510834,-0.733673751354218,0.651852667331696,0.292813539505005,-0.699534296989441,0.593212127685547,0.321026146411896,-0.7382692694664,0.782543540000916,0.231308832764626,-0.578032732009888,0.55392849445343,0.168168351054192,-0.815403401851654,0.555911600589752,0.207833155989647,-0.80484014749527,0.635222494602203,0.233578324317932,-0.736161351203918,0.58081328868866,0.245254293084145,-0.776212811470032,0.635222494602203,0.233578324317932,-0.736161351203918,0.651852667331696,0.292813539505005,-0.699534296989441,0.546992540359497,0.341834425926208,-0.764165222644806,0.58081328868866,0.245254293084145,-0.776212811470032,0.546176314353943,0.382619827985764,-0.745180189609528,0.460892260074615,0.366113841533661,-0.808417618274689,0.503604590892792,0.325732111930847,-0.800175666809082,0.572880685329437,0.325168281793594,-0.752378463745117,0.546176314353943,0.382619827985764,-0.745180189609528,0.572880685329437,0.325168281793594,-0.752378463745117,0.416761249303818,0.332422733306885,-0.846052706241608,0.441102802753448,0.384839594364166,-0.810756921768188,0.555911600589752,0.207833155989647,-0.80484014749527,0.461237609386444,0.226542562246323,-0.857868492603302, -0.493230670690536,0.4366734623909,-0.752356112003326,0.484867662191391,0.426925152540207,-0.763307452201843,0.461237609386444,0.226542562246323,-0.857868492603302,0.318130344152451,0.259494483470917,-0.911841869354248,0.39407479763031,0.414524525403976,-0.820289373397827,0.493230670690536,0.4366734623909,-0.752356112003326,0.608534216880798,0.422096699476242,-0.671952784061432,0.661338627338409,0.378908932209015,-0.647347986698151,0.262142330408096,0.337864607572556,-0.90395176410675,0.38545623421669,0.337239533662796,-0.858890533447266,0.262142330408096,0.337864607572556,-0.90395176410675,0.318130344152451,0.259494483470917,-0.911841869354248,0.416671603918076,0.242084756493568,-0.876230418682098,0.38545623421669,0.337239533662796,-0.858890533447266,0.987502992153168,0.157599970698357,0.000459699804196134,0.870228707790375,0.286943376064301,-0.400456577539444,0.836861670017242,0.305047154426575,-0.454542368650436,0.978566586971283,0.186355918645859,-0.0876293033361435,0.987502992153168,0.157599970698357,0.000459699804196134,0.978566586971283,0.186355918645859,-0.0876293033361435,0.788055241107941,0.269042760133743,-0.553701162338257,0.79706084728241,0.281183272600174,-0.534443616867065,0.74715131521225,0.127207294106483,-0.652367472648621,0.737434148788452,0.135899171233177,-0.661605775356293,0.813067972660065,0.137634322047234,-0.565665185451508,0.775611996650696,0.14525580406189,-0.614269316196442,0.813067972660065,0.137634322047234,-0.565665185451508,0.91890150308609,0.17311230301857,-0.354474425315857,0.826049566268921,0.216002121567726,-0.52056223154068,0.775611996650696,0.14525580406189,-0.614269316196442,0.661338627338409,0.378908932209015,-0.647347986698151,0.940506935119629,0.267852574586868,-0.209049537777901,0.982389628887177,0.173063978552818,0.0704231411218643,0.73923659324646,0.344859093427658,-0.57844752073288,0.940506935119629,0.267852574586868,-0.209049537777901,0.91890150308609,0.17311230301857,-0.354474425315857,0.893178820610046,0.295912206172943,-0.338626027107239,0.982389628887177,0.173063978552818,0.0704231411218643, -0.742010354995728,0.33788987994194,-0.579008817672729,0.597319900989532,0.32426705956459,-0.733525633811951,0.607783138751984,0.349040508270264,-0.713281393051147,0.767211973667145,0.350530058145523,-0.537135422229767,0.742010354995728,0.33788987994194,-0.579008817672729,0.767211973667145,0.350530058145523,-0.537135422229767,0.729379653930664,0.360977053642273,-0.581120312213898,0.733268737792969,0.353318601846695,-0.580932796001434,0.859557867050171,0.334645241498947,-0.386228829622269,0.911404967308044,0.292803913354874,-0.289148598909378,0.610481441020966,0.342256963253021,-0.714263617992401,0.692432820796967,0.330824136734009,-0.641164720058441,0.610481441020966,0.342256963253021,-0.714263617992401,0.587326943874359,0.256558895111084,-0.767609655857086,0.691599428653717,0.257617503404617,-0.674776554107666,0.692432820796967,0.330824136734009,-0.641164720058441,0.737434148788452,0.135899171233177,-0.661605775356293,0.674247980117798,0.186011746525764,-0.714695274829865,0.683745205402374,0.336974382400513,-0.647256314754486,0.724198579788208,0.337111532688141,-0.601574718952179,0.674247980117798,0.186011746525764,-0.714695274829865,0.587326943874359,0.256558895111084,-0.767609655857086,0.573964834213257,0.327366709709167,-0.750596702098846,0.683745205402374,0.336974382400513,-0.647256314754486,0.874095916748047,0.0289738848805428,0.484888583421707,0.990326702594757,0.0927801057696342,0.103173792362213,0.976764976978302,0.115601629018784,0.180461540818214,0.839734971523285,0.0463324189186096,0.541016101837158,0.874095916748047,0.0289738848805428,0.484888583421707,0.839734971523285,0.0463324189186096,0.541016101837158,0.962669014930725,0.186627522110939,0.196057677268982,0.980971336364746,0.185382813215256,0.0576918534934521,0.911404967308044,0.292803913354874,-0.289148598909378,0.985915005207062,0.156256228685379,0.0596290454268456,0.93198835849762,0.0418618321418762,0.360062897205353,0.981276512145996,0.191767975687981,0.0179323554039001,0.985915005207062,0.156256228685379,0.0596290454268456,0.992201030254364,0.0745126605033875,-0.0999240875244141, -0.994663178920746,0.099911667406559,-0.0257435515522957,0.93198835849762,0.0418618321418762,0.360062897205353,0.899305462837219,0.0559697672724724,-0.433724671602249,0.904049396514893,0.0348534919321537,-0.426004707813263,0.941828370094299,0.0542167797684669,-0.331692397594452,0.915594160556793,0.0869414284825325,-0.392591774463654,0.941828370094299,0.0542167797684669,-0.331692397594452,0.992201030254364,0.0745126605033875,-0.0999240875244141,0.951062262058258,0.134249106049538,-0.278312623500824,0.915594160556793,0.0869414284825325,-0.392591774463654,0.857279002666473,0.124704919755459,-0.499521195888519,0.583897352218628,0.1308653652668,-0.801210463047028,0.59410285949707,0.175139710307121,-0.785091042518616,0.869895935058594,0.149776205420494,-0.469944596290588,0.857279002666473,0.124704919755459,-0.499521195888519,0.869895935058594,0.149776205420494,-0.469944596290588,0.934235095977783,0.148394331336021,-0.324320822954178,0.924593687057495,0.12973764538765,-0.358182460069656,0.904049396514893,0.0348534919321537,-0.426004707813263,0.838982045650482,0.0504205077886581,-0.541818201541901,0.845451891422272,0.114010237157345,-0.521740198135376,0.911967039108276,0.118431679904461,-0.392797768115997,0.838982045650482,0.0504205077886581,-0.541818201541901,0.64826375246048,0.10987926274538,-0.753445863723755,0.632351577281952,0.0926535129547119,-0.769120872020721,0.845451891422272,0.114010237157345,-0.521740198135376,0.784429788589478,0.305884122848511,-0.53954142332077,0.791596829891205,0.230182409286499,-0.566030383110046,0.575262010097504,0.198084592819214,-0.793622136116028,0.691240251064301,0.223803639411926,-0.687094509601593,0.575262010097504,0.198084592819214,-0.793622136116028,0.64826375246048,0.10987926274538,-0.753445863723755,0.768146157264709,0.127034261822701,-0.627545773983002,0.691240251064301,0.223803639411926,-0.687094509601593,0.865345120429993,-0.0699237212538719,0.496274620294571,0.925031006336212,-0.0753350853919983,0.372347176074982,0.908789753913879,-0.0247746761888266,0.416518121957779,0.830937922000885,-0.0402981527149677,0.554903745651245, -0.865345120429993,-0.0699237212538719,0.496274620294571,0.830937922000885,-0.0402981527149677,0.554903745651245,0.809445440769196,0.144350245594978,-0.569175839424133,0.780417799949646,0.120299659669399,-0.613576352596283,0.901818215847015,0.0675557777285576,-0.426802188158035,0.895589888095856,-0.120351918041706,-0.428292095661163,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.924264490604401,0.130826368927956,-0.358635663986206,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.990053594112396,0.0981012284755707,-0.100846499204636,0.924147367477417,0.229529798030853,-0.305397510528564,0.924264490604401,0.130826368927956,-0.358635663986206,0.791596829891205,0.230182409286499,-0.566030383110046,0.959591209888458,0.208667978644371,-0.188792005181313,0.902754366397858,-0.128846421837807,0.410406053066254,0.839513540267944,0.0672921165823936,-0.539155781269073,0.959591209888458,0.208667978644371,-0.188792005181313,0.990053594112396,0.0981012284755707,-0.100846499204636,0.951331615447998,-0.149952217936516,0.269225656986237,0.902754366397858,-0.128846421837807,0.410406053066254,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.852650284767151,-0.059975378215313,-0.51902836561203,0.844202399253845,0.0513361506164074,-0.533560752868652,0.925525367259979,0.0349328182637691,-0.377071022987366,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.925525367259979,0.0349328182637691,-0.377071022987366,0.984015107154846,0.0289055965840816,-0.175723806023598,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.967101693153381,0.0675250291824341,-0.245264634490013,0.980044484138489,-0.101791329681873,-0.170737832784653,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.951133668422699,0.1209502145648,-0.28410530090332,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.922317802906036,0.124125301837921,-0.365954786539078,0.951133668422699,0.1209502145648,-0.28410530090332,0.895589888095856,-0.120351918041706,-0.428292095661163, -0.868053674697876,-0.121659033000469,-0.481333494186401,0.863646626472473,-0.193558514118195,-0.465456366539001,0.9298415184021,-0.164688065648079,-0.32904788851738,0.868053674697876,-0.121659033000469,-0.481333494186401,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.83592814207077,-0.209792360663414,-0.507160067558289,0.863646626472473,-0.193558514118195,-0.465456366539001,0.999491512775421,0.0158792212605476,-0.0276509076356888,0.985578894615173,0.0224285423755646,-0.167723700404167,0.982325971126556,0.123072631657124,-0.141027852892876,0.990552127361298,0.136053889989853,0.0171984955668449,0.999491512775421,0.0158792212605476,-0.0276509076356888,0.990552127361298,0.136053889989853,0.0171984955668449,0.920605778694153,0.139724984765053,-0.364639669656754,0.947330832481384,0.0109401699155569,-0.320069700479507,0.980044484138489,-0.101791329681873,-0.170737832784653,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.98804771900177,-0.153398603200912,-0.0151911964640021,0.966646611690521,-0.169457629323006,-0.192037552595139,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.973713517189026,-0.172938525676727,-0.148237258195877,0.978056848049164,-0.11288920044899,-0.175102561712265,0.98804771900177,-0.153398603200912,-0.0151911964640021,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.909102857112885,-0.171811461448669,-0.37949001789093,0.940621256828308,-0.200632810592651,-0.273821353912354,0.95274031162262,-0.0942111760377884,-0.288808196783066,0.940621256828308,-0.200632810592651,-0.273821353912354,0.973713517189026,-0.172938525676727,-0.148237258195877,0.971439898014069,-0.0380248129367828,-0.234219044446945,0.95274031162262,-0.0942111760377884,-0.288808196783066,0.893739640712738,0.0481724552810192,-0.445992112159729,0.837286174297333,0.0577985979616642,-0.543701350688934,0.835684537887573,0.120450638234615,-0.535838782787323,0.895240247249603,0.123104833066463,-0.428240805864334,0.893739640712738,0.0481724552810192,-0.445992112159729,0.895240247249603,0.123104833066463,-0.428240805864334, -0.911755323410034,0.12490601092577,-0.391280710697174,0.916099011898041,0.0440531559288502,-0.398524641990662,0.909102857112885,-0.171811461448669,-0.37949001789093,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.915224254131317,-0.053038727492094,-0.399438798427582,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.886656284332275,0.0170933715999126,-0.462113082408905,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.887120962142944,0.441524177789688,-0.134434923529625,0.986953139305115,0.0644822493195534,-0.147531688213348,0.899778306484222,0.116290338337421,-0.420565724372864,0.892151772975922,0.415251165628433,-0.177852809429169,0.899778306484222,0.116290338337421,-0.420565724372864,0.886656284332275,0.0170933715999126,-0.462113082408905,0.916534781455994,0.315282136201859,-0.246092095971107,0.892151772975922,0.415251165628433,-0.177852809429169,0.213816419243813,0.31326550245285,-0.925282299518585,0.0663652718067169,0.333928227424622,-0.940259397029877,0.0522924698889256,0.322998911142349,-0.944953560829163,0.215213447809219,0.322506368160248,-0.921777009963989,0.213816419243813,0.31326550245285,-0.925282299518585,0.215213447809219,0.322506368160248,-0.921777009963989,0.344331592321396,0.314264476299286,-0.884688377380371,0.333691775798798,0.296535044908524,-0.894827723503113,0.462238311767578,0.886621832847595,0.0154123418033123,0.857436776161194,0.477857738733292,-0.190929800271988,0.811547577381134,0.449394702911377,-0.37340971827507,0.51391863822937,0.845266163349152,-0.146331176161766,0.857436776161194,0.477857738733292,-0.190929800271988,0.954086303710938,0.116435326635838,-0.275974869728088,0.888292610645294,0.134076192975044,-0.439271807670593,0.811547577381134,0.449394702911377,-0.37340971827507,0.811547577381134,0.449394702911377,-0.37340971827507,0.888292610645294,0.134076192975044,-0.439271807670593,0.94057035446167,0.131806656718254,-0.312976598739624,0.841995894908905,0.44246968626976,-0.308647990226746, -0.51391863822937,0.845266163349152,-0.146331176161766,0.811547577381134,0.449394702911377,-0.37340971827507,0.841995894908905,0.44246968626976,-0.308647990226746,0.577709436416626,0.788253307342529,-0.211915999650955,0.475937902927399,0.393635958433151,-0.786469340324402,0.522377550601959,0.226540461182594,-0.822071313858032,0.61596953868866,0.263572335243225,-0.742368578910828,0.437127500772476,0.495630919933319,-0.750512957572937,0.522377550601959,0.226540461182594,-0.822071313858032,0.472372621297836,0.228369891643524,-0.851299822330475,0.764439225196838,0.174755975604057,-0.620558738708496,0.61596953868866,0.263572335243225,-0.742368578910828,0.61596953868866,0.263572335243225,-0.742368578910828,0.764439225196838,0.174755975604057,-0.620558738708496,0.406064093112946,0.278222501277924,-0.87046205997467,0.275860637426376,0.374255150556564,-0.8853440284729,0.437127500772476,0.495630919933319,-0.750512957572937,0.61596953868866,0.263572335243225,-0.742368578910828,0.275860637426376,0.374255150556564,-0.8853440284729,0.192238688468933,0.585725247859955,-0.787381827831268,0.3162000477314,0.663077235221863,-0.67848813533783,0.372852832078934,0.41802653670311,-0.828392803668976,0.563573241233826,0.408018082380295,-0.718266189098358,0.480441778898239,0.691208183765411,-0.539821088314056,0.372852832078934,0.41802653670311,-0.828392803668976,0.416761249303818,0.332422733306885,-0.846052706241608,0.572880685329437,0.325168281793594,-0.752378463745117,0.563573241233826,0.408018082380295,-0.718266189098358,0.563573241233826,0.408018082380295,-0.718266189098358,0.572880685329437,0.325168281793594,-0.752378463745117,0.503604590892792,0.325732111930847,-0.800175666809082,0.551208794116974,0.402171492576599,-0.731045067310333,0.480441778898239,0.691208183765411,-0.539821088314056,0.563573241233826,0.408018082380295,-0.718266189098358,0.551208794116974,0.402171492576599,-0.731045067310333,0.475188434123993,0.700506985187531,-0.532433986663818,0.332564800977707,0.353411465883255,-0.874357521533966,0.441102802753448,0.384839594364166,-0.810756921768188, -0.416761249303818,0.332422733306885,-0.846052706241608,0.259202659130096,0.317281305789948,-0.912220656871796,0.332564800977707,0.353411465883255,-0.874357521533966,0.259202659130096,0.317281305789948,-0.912220656871796,0.406064093112946,0.278222501277924,-0.87046205997467,0.466656118631363,0.295668810606003,-0.833553910255432,0.136726126074791,0.2953742146492,-0.945547461509705,0.491225898265839,0.251587748527527,-0.833906888961792,0.472372621297836,0.228369891643524,-0.851299822330475,0.185440421104431,0.276990950107574,-0.942808568477631,0.136726126074791,0.2953742146492,-0.945547461509705,0.185440421104431,0.276990950107574,-0.942808568477631,0.363035053014755,0.285731792449951,-0.886883854866028,0.316920131444931,0.322103083133698,-0.892082452774048,0.278537034988403,0.336202412843704,-0.899658262729645,0.79706084728241,0.281183272600174,-0.534443616867065,0.788055241107941,0.269042760133743,-0.553701162338257,0.336829006671906,0.317928314208984,-0.886266231536865,0.278537034988403,0.336202412843704,-0.899658262729645,0.336829006671906,0.317928314208984,-0.886266231536865,0.503604590892792,0.325732111930847,-0.800175666809082,0.460892260074615,0.366113841533661,-0.808417618274689,0.231597498059273,0.720394432544708,-0.653754115104675,0.257353484630585,0.407361626625061,-0.876256704330444,0.428826004266739,0.37702539563179,-0.820950865745544,0.392940819263458,0.683278143405914,-0.615409255027771,0.257353484630585,0.407361626625061,-0.876256704330444,0.253090023994446,0.309255063533783,-0.916682422161102,0.411484777927399,0.292565256357193,-0.863183617591858,0.428826004266739,0.37702539563179,-0.820950865745544,0.428826004266739,0.37702539563179,-0.820950865745544,0.411484777927399,0.292565256357193,-0.863183617591858,0.363035053014755,0.285731792449951,-0.886883854866028,0.429304540157318,0.351523876190186,-0.831942617893219,0.392940819263458,0.683278143405914,-0.615409255027771,0.428826004266739,0.37702539563179,-0.820950865745544,0.429304540157318,0.351523876190186,-0.831942617893219,0.414057105779648,0.641223967075348,-0.646056234836578, -0.535168170928955,0.594861686229706,-0.599778831005096,0.705819070339203,0.338346719741821,-0.622367143630981,0.836495816707611,0.426201701164246,-0.344422489404678,0.5715012550354,0.753715932369232,-0.324497550725937,0.705819070339203,0.338346719741821,-0.622367143630981,0.788055241107941,0.269042760133743,-0.553701162338257,0.978566586971283,0.186355918645859,-0.0876293033361435,0.836495816707611,0.426201701164246,-0.344422489404678,0.836495816707611,0.426201701164246,-0.344422489404678,0.978566586971283,0.186355918645859,-0.0876293033361435,0.836861670017242,0.305047154426575,-0.454542368650436,0.661201655864716,0.547184109687805,-0.513226926326752,0.5715012550354,0.753715932369232,-0.324497550725937,0.836495816707611,0.426201701164246,-0.344422489404678,0.661201655864716,0.547184109687805,-0.513226926326752,0.428906440734863,0.83082526922226,-0.354638814926147,0.0800770372152328,0.348889946937561,-0.933736324310303,0.247937545180321,0.356415033340454,-0.900830328464508,0.253090023994446,0.309255063533783,-0.916682422161102,0.066230870783329,0.316772729158401,-0.946186363697052,0.0800770372152328,0.348889946937561,-0.933736324310303,0.066230870783329,0.316772729158401,-0.946186363697052,0.0522924698889256,0.322998911142349,-0.944953560829163,0.0663652718067169,0.333928227424622,-0.940259397029877,0.732320487499237,0.344545662403107,-0.587362706661224,0.733268737792969,0.353318601846695,-0.580932796001434,0.729379653930664,0.360977053642273,-0.581120312213898,0.697526335716248,0.352087527513504,-0.624092400074005,0.732320487499237,0.344545662403107,-0.587362706661224,0.697526335716248,0.352087527513504,-0.624092400074005,0.836861670017242,0.305047154426575,-0.454542368650436,0.870228707790375,0.286943376064301,-0.400456577539444,0.403345912694931,0.857400178909302,-0.319651186466217,0.623320579528809,0.598883986473083,-0.502801597118378,0.678957045078278,0.599737167358398,-0.423476785421371,0.445927709341049,0.856788456439972,-0.258963227272034,0.623320579528809,0.598883986473083,-0.502801597118378,0.729379653930664,0.360977053642273,-0.581120312213898, -0.767211973667145,0.350530058145523,-0.537135422229767,0.678957045078278,0.599737167358398,-0.423476785421371,0.678957045078278,0.599737167358398,-0.423476785421371,0.767211973667145,0.350530058145523,-0.537135422229767,0.607783138751984,0.349040508270264,-0.713281393051147,0.579758405685425,0.584730505943298,-0.567424356937408,0.445927709341049,0.856788456439972,-0.258963227272034,0.678957045078278,0.599737167358398,-0.423476785421371,0.579758405685425,0.584730505943298,-0.567424356937408,0.412647932767868,0.83742094039917,-0.358396232128143,0.383437156677246,0.307847172021866,-0.870750308036804,0.980971336364746,0.185382813215256,0.0576918534934521,0.962669014930725,0.186627522110939,0.196057677268982,0.400801569223404,0.334431350231171,-0.852944254875183,0.383437156677246,0.307847172021866,-0.870750308036804,0.400801569223404,0.334431350231171,-0.852944254875183,0.607783138751984,0.349040508270264,-0.713281393051147,0.597319900989532,0.32426705956459,-0.733525633811951,0.635576844215393,0.76066917181015,0.132001623511314,0.897241830825806,0.377294570207596,0.229360029101372,0.785811424255371,0.226566553115845,0.575471878051758,0.573719918727875,0.637842059135437,0.513812184333801,0.897241830825806,0.377294570207596,0.229360029101372,0.962669014930725,0.186627522110939,0.196057677268982,0.839734971523285,0.0463324189186096,0.541016101837158,0.785811424255371,0.226566553115845,0.575471878051758,0.785811424255371,0.226566553115845,0.575471878051758,0.839734971523285,0.0463324189186096,0.541016101837158,0.976764976978302,0.115601629018784,0.180461540818214,0.886807203292847,0.371660619974136,0.274666041135788,0.573719918727875,0.637842059135437,0.513812184333801,0.785811424255371,0.226566553115845,0.575471878051758,0.886807203292847,0.371660619974136,0.274666041135788,0.527123928070068,0.79532128572464,0.299339979887009,0.962854385375977,0.131351679563522,-0.235919460654259,0.924593687057495,0.12973764538765,-0.358182460069656,0.934235095977783,0.148394331336021,-0.324320822954178,0.970357775688171,0.154351145029068,-0.185961171984673, -0.962854385375977,0.131351679563522,-0.235919460654259,0.970357775688171,0.154351145029068,-0.185961171984673,0.976764976978302,0.115601629018784,0.180461540818214,0.990326702594757,0.0927801057696342,0.103173792362213,0.4871906042099,0.871947884559631,-0.0484998300671577,0.872592508792877,0.429911404848099,-0.23185895383358,0.806441724300385,0.425050586462021,-0.411076217889786,0.458899140357971,0.861370086669922,-0.217837646603584,0.872592508792877,0.429911404848099,-0.23185895383358,0.934235095977783,0.148394331336021,-0.324320822954178,0.869895935058594,0.149776205420494,-0.469944596290588,0.806441724300385,0.425050586462021,-0.411076217889786,0.806441724300385,0.425050586462021,-0.411076217889786,0.869895935058594,0.149776205420494,-0.469944596290588,0.59410285949707,0.175139710307121,-0.785091042518616,0.57455050945282,0.412903517484665,-0.706684052944183,0.458899140357971,0.861370086669922,-0.217837646603584,0.806441724300385,0.425050586462021,-0.411076217889786,0.57455050945282,0.412903517484665,-0.706684052944183,0.342911422252655,0.810504853725433,-0.474861770868301,0.288461476564407,0.137839183211327,-0.947518050670624,0.780417799949646,0.120299659669399,-0.613576352596283,0.809445440769196,0.144350245594978,-0.569175839424133,0.270146608352661,0.178430765867233,-0.946141183376312,0.288461476564407,0.137839183211327,-0.947518050670624,0.270146608352661,0.178430765867233,-0.946141183376312,0.59410285949707,0.175139710307121,-0.785091042518616,0.583897352218628,0.1308653652668,-0.801210463047028,0.629011392593384,0.749249517917633,-0.207292005419731,0.835914254188538,0.249953210353851,-0.488641738891602,0.80191707611084,0.0806678161025047,0.591964304447174,0.567189037799835,0.539463579654694,0.622314691543579,0.835914254188538,0.249953210353851,-0.488641738891602,0.809445440769196,0.144350245594978,-0.569175839424133,0.830937922000885,-0.0402981527149677,0.554903745651245,0.80191707611084,0.0806678161025047,0.591964304447174,0.80191707611084,0.0806678161025047,0.591964304447174,0.830937922000885,-0.0402981527149677,0.554903745651245, -0.908789753913879,-0.0247746761888266,0.416518121957779,0.891996443271637,0.180436879396439,0.41446927189827,0.567189037799835,0.539463579654694,0.622314691543579,0.80191707611084,0.0806678161025047,0.591964304447174,0.891996443271637,0.180436879396439,0.41446927189827,0.521699905395508,0.778946161270142,0.347954154014587,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.984015107154846,0.0289055965840816,-0.175723806023598,0.993625104427338,0.0100124217569828,0.112289875745773,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.993625104427338,0.0100124217569828,0.112289875745773,0.908789753913879,-0.0247746761888266,0.416518121957779,0.925031006336212,-0.0753350853919983,0.372347176074982,0.392393261194229,0.919789731502533,0.00378495058976114,0.928663074970245,0.346988201141357,-0.13108816742897,0.866879463195801,0.382229417562485,-0.320032358169556,0.365334242582321,0.927436530590057,-0.0799523517489433,0.928663074970245,0.346988201141357,-0.13108816742897,0.984015107154846,0.0289055965840816,-0.175723806023598,0.925525367259979,0.0349328182637691,-0.377071022987366,0.866879463195801,0.382229417562485,-0.320032358169556,0.866879463195801,0.382229417562485,-0.320032358169556,0.925525367259979,0.0349328182637691,-0.377071022987366,0.844202399253845,0.0513361506164074,-0.533560752868652,0.764081120491028,0.38950178027153,-0.514264941215515,0.365334242582321,0.927436530590057,-0.0799523517489433,0.866879463195801,0.382229417562485,-0.320032358169556,0.764081120491028,0.38950178027153,-0.514264941215515,0.341739416122437,0.905296921730042,-0.252292722463608,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.947330832481384,0.0109401699155569,-0.320069700479507,0.920605778694153,0.139724984765053,-0.364639669656754,0.773016333580017,0.0912823081016541,-0.627784371376038,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.773016333580017,0.0912823081016541,-0.627784371376038,0.844202399253845,0.0513361506164074,-0.533560752868652,0.852650284767151,-0.059975378215313,-0.51902836561203, -0.440194547176361,0.894553005695343,-0.0774847269058228,0.81708836555481,0.455796748399734,-0.353009760379791,0.89478325843811,0.415955692529678,0.162307739257813,0.524899005889893,0.788100719451904,0.321524620056152,0.81708836555481,0.455796748399734,-0.353009760379791,0.920605778694153,0.139724984765053,-0.364639669656754,0.990552127361298,0.136053889989853,0.0171984955668449,0.89478325843811,0.415955692529678,0.162307739257813,0.89478325843811,0.415955692529678,0.162307739257813,0.990552127361298,0.136053889989853,0.0171984955668449,0.982325971126556,0.123072631657124,-0.141027852892876,0.912118852138519,0.406485766172409,-0.0529955364763737,0.524899005889893,0.788100719451904,0.321524620056152,0.89478325843811,0.415955692529678,0.162307739257813,0.912118852138519,0.406485766172409,-0.0529955364763737,0.507899641990662,0.858306348323822,0.0731307566165924,0.94000256061554,0.0346132442355156,-0.339407026767731,0.916099011898041,0.0440531559288502,-0.398524641990662,0.911755323410034,0.12490601092577,-0.391280710697174,0.932205259799957,0.121903583407402,-0.340782701969147,0.94000256061554,0.0346132442355156,-0.339407026767731,0.932205259799957,0.121903583407402,-0.340782701969147,0.982325971126556,0.123072631657124,-0.141027852892876,0.985578894615173,0.0224285423755646,-0.167723700404167,0.377066731452942,0.921685636043549,-0.0911936163902283,0.825702786445618,0.459892183542252,-0.326671272516251,0.819977819919586,0.462046653032303,-0.337859779596329,0.402317970991135,0.912864685058594,-0.0694136172533035,0.825702786445618,0.459892183542252,-0.326671272516251,0.911755323410034,0.12490601092577,-0.391280710697174,0.895240247249603,0.123104833066463,-0.428240805864334,0.819977819919586,0.462046653032303,-0.337859779596329,0.819977819919586,0.462046653032303,-0.337859779596329,0.895240247249603,0.123104833066463,-0.428240805864334,0.835684537887573,0.120450638234615,-0.535838782787323,0.777661442756653,0.434450030326843,-0.454418390989304,0.402317970991135,0.912864685058594,-0.0694136172533035,0.819977819919586,0.462046653032303,-0.337859779596329, -0.777661442756653,0.434450030326843,-0.454418390989304,0.409580141305923,0.888055443763733,-0.208810359239578,0.810217082500458,0.0675373077392578,-0.582225978374481,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.998084425926208,0.0616633482277393,0.00499705411493778,0.802316009998322,0.112709224224091,-0.58616179227829,0.810217082500458,0.0675373077392578,-0.582225978374481,0.802316009998322,0.112709224224091,-0.58616179227829,0.835684537887573,0.120450638234615,-0.535838782787323,0.837286174297333,0.0577985979616642,-0.543701350688934,0.41334941983223,0.894980490207672,0.167786166071892,0.892125844955444,0.446515828371048,0.0688126757740974,0.865598917007446,0.468766510486603,0.176058456301689,0.41533300280571,0.888613343238831,0.194588840007782,0.892125844955444,0.446515828371048,0.0688126757740974,0.998084425926208,0.0616633482277393,0.00499705411493778,0.982482731342316,0.0631801560521126,0.175316616892815,0.865598917007446,0.468766510486603,0.176058456301689,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.991545021533966,-0.0115073760971427,-0.129251420497894,0.985287845134735,0.125068709254265,-0.116470903158188,0.989315450191498,0.115582823753357,-0.0888567939400673,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.989315450191498,0.115582823753357,-0.0888567939400673,0.982482731342316,0.0631801560521126,0.175316616892815,0.988163650035858,-0.0455380268394947,0.146488800644875,0.343630492687225,0.93797492980957,0.0460529997944832,0.83901059627533,0.541394233703613,-0.0543462336063385,0.857315480709076,0.51344108581543,-0.037259928882122,0.386404693126678,0.916406333446503,0.104359053075314,0.83901059627533,0.541394233703613,-0.0543462336063385,0.985287845134735,0.125068709254265,-0.116470903158188,0.984959304332733,0.112915374338627,-0.130787134170532,0.857315480709076,0.51344108581543,-0.037259928882122,0.857315480709076,0.51344108581543,-0.037259928882122,0.984959304332733,0.112915374338627,-0.130787134170532,0.954086303710938,0.116435326635838,-0.275974869728088,0.857436776161194,0.477857738733292,-0.190929800271988, -0.386404693126678,0.916406333446503,0.104359053075314,0.857315480709076,0.51344108581543,-0.037259928882122,0.857436776161194,0.477857738733292,-0.190929800271988,0.462238311767578,0.886621832847595,0.0154123418033123,3.16250188916456e-05,0.998316526412964,0.0580002292990685,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,-0.0122545342892408,0.932361841201782,-0.36131876707077,0.0110333543270826,0.998570621013641,0.0522978268563747,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,4.66808523924556e-06,0.516847312450409,-0.856077551841736,0.1112105473876,0.567817628383636,-0.815607249736786,-0.0122545342892408,0.932361841201782,-0.36131876707077,-0.0122545342892408,0.932361841201782,-0.36131876707077,0.1112105473876,0.567817628383636,-0.815607249736786,0.133469432592392,0.65885329246521,-0.74033659696579,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.0110333543270826,0.998570621013641,0.0522978268563747,-0.0122545342892408,0.932361841201782,-0.36131876707077,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.0313166528940201,0.998217403888702,0.0508056059479713,0.0285819675773382,0.729895889759064,-0.682960391044617,0.0703423768281937,0.730256140232086,-0.679542481899261,0.0366282314062119,0.959644615650177,-0.278819888830185,0.00238245795480907,0.961176156997681,-0.275925070047379,0.0703423768281937,0.730256140232086,-0.679542481899261,0.231597498059273,0.720394432544708,-0.653754115104675,0.132650107145309,0.961442470550537,-0.240899100899696,0.0366282314062119,0.959644615650177,-0.278819888830185,0.0366282314062119,0.959644615650177,-0.278819888830185,0.132650107145309,0.961442470550537,-0.240899100899696,0.0477132759988308,0.998204469680786,0.0362108647823334,0.0121316770091653,0.9998779296875,-0.00984863564372063,0.00238245795480907,0.961176156997681,-0.275925070047379,0.0366282314062119,0.959644615650177,-0.278819888830185,0.0121316770091653,0.9998779296875,-0.00984863564372063,0.00182646268513054,0.99999612569809,0.00212048715911806,0.231597498059273,0.720394432544708,-0.653754115104675, -0.392940819263458,0.683278143405914,-0.615409255027771,0.212079510092735,0.959425747394562,-0.185807257890701,0.132650107145309,0.961442470550537,-0.240899100899696,0.392940819263458,0.683278143405914,-0.615409255027771,0.414057105779648,0.641223967075348,-0.646056234836578,0.161497190594673,0.963781952857971,-0.212233155965805,0.212079510092735,0.959425747394562,-0.185807257890701,0.212079510092735,0.959425747394562,-0.185807257890701,0.161497190594673,0.963781952857971,-0.212233155965805,-0.0952567905187607,0.993824362754822,0.0569144189357758,0.0319248288869858,0.994054675102234,0.104096844792366,0.132650107145309,0.961442470550537,-0.240899100899696,0.212079510092735,0.959425747394562,-0.185807257890701,0.0319248288869858,0.994054675102234,0.104096844792366,0.0477132759988308,0.998204469680786,0.0362108647823334,0.414057105779648,0.641223967075348,-0.646056234836578,0.346389561891556,0.535183012485504,-0.770450055599213,0.0369772464036942,0.922424018383026,-0.38440415263176,0.161497190594673,0.963781952857971,-0.212233155965805,0.346389561891556,0.535183012485504,-0.770450055599213,0.475937902927399,0.393635958433151,-0.786469340324402,0.235153183341026,0.838583886623383,-0.491406172513962,0.0369772464036942,0.922424018383026,-0.38440415263176,0.0369772464036942,0.922424018383026,-0.38440415263176,0.235153183341026,0.838583886623383,-0.491406172513962,-0.0678212195634842,0.997315227985382,0.0276141986250877,-0.295589625835419,0.950601994991302,-0.0947765856981277,0.161497190594673,0.963781952857971,-0.212233155965805,0.0369772464036942,0.922424018383026,-0.38440415263176,-0.295589625835419,0.950601994991302,-0.0947765856981277,-0.0952567905187607,0.993824362754822,0.0569144189357758,0.475937902927399,0.393635958433151,-0.786469340324402,0.437127500772476,0.495630919933319,-0.750512957572937,0.292504221200943,0.864353120326996,-0.409065961837769,0.235153183341026,0.838583886623383,-0.491406172513962,0.437127500772476,0.495630919933319,-0.750512957572937,0.192238688468933,0.585725247859955,-0.787381827831268,0.13746552169323,0.880333244800568,-0.454000651836395, -0.292504221200943,0.864353120326996,-0.409065961837769,0.292504221200943,0.864353120326996,-0.409065961837769,0.13746552169323,0.880333244800568,-0.454000651836395,0.113079845905304,0.991852641105652,0.0586627013981342,0.241079926490784,0.950754761695862,0.194797098636627,0.235153183341026,0.838583886623383,-0.491406172513962,0.292504221200943,0.864353120326996,-0.409065961837769,0.241079926490784,0.950754761695862,0.194797098636627,-0.0678212195634842,0.997315227985382,0.0276141986250877,0.192238688468933,0.585725247859955,-0.787381827831268,0.159159854054451,0.618070542812347,-0.769842147827148,0.108373567461967,0.89156174659729,-0.439741790294647,0.13746552169323,0.880333244800568,-0.454000651836395,0.159159854054451,0.618070542812347,-0.769842147827148,0.3162000477314,0.663077235221863,-0.67848813533783,0.19864659011364,0.930315792560577,-0.308305114507675,0.108373567461967,0.89156174659729,-0.439741790294647,0.108373567461967,0.89156174659729,-0.439741790294647,0.19864659011364,0.930315792560577,-0.308305114507675,0.0478152371942997,0.995822370052338,0.0777898132801056,0.0432332381606102,0.999017179012299,0.00977621879428625,0.13746552169323,0.880333244800568,-0.454000651836395,0.108373567461967,0.89156174659729,-0.439741790294647,0.0432332381606102,0.999017179012299,0.00977621879428625,0.113079845905304,0.991852641105652,0.0586627013981342,0.3162000477314,0.663077235221863,-0.67848813533783,0.480441778898239,0.691208183765411,-0.539821088314056,0.249046981334686,0.95383495092392,-0.167852237820625,0.19864659011364,0.930315792560577,-0.308305114507675,0.480441778898239,0.691208183765411,-0.539821088314056,0.475188434123993,0.700506985187531,-0.532433986663818,0.169949725270271,0.965027272701263,-0.199598520994186,0.249046981334686,0.95383495092392,-0.167852237820625,0.249046981334686,0.95383495092392,-0.167852237820625,0.169949725270271,0.965027272701263,-0.199598520994186,-0.103046700358391,0.994657814502716,0.00609657214954495,0.0127476053312421,0.991988301277161,0.12568524479866,0.19864659011364,0.930315792560577,-0.308305114507675, -0.249046981334686,0.95383495092392,-0.167852237820625,0.0127476053312421,0.991988301277161,0.12568524479866,0.0478152371942997,0.995822370052338,0.0777898132801056,0.475188434123993,0.700506985187531,-0.532433986663818,0.389443337917328,0.631120979785919,-0.670835435390472,0.0802703574299812,0.915071606636047,-0.395222157239914,0.169949725270271,0.965027272701263,-0.199598520994186,0.389443337917328,0.631120979785919,-0.670835435390472,0.535168170928955,0.594861686229706,-0.599778831005096,0.228196024894714,0.935197353363037,-0.270799577236176,0.0802703574299812,0.915071606636047,-0.395222157239914,0.0802703574299812,0.915071606636047,-0.395222157239914,0.228196024894714,0.935197353363037,-0.270799577236176,0.01406170707196,0.987431228160858,0.157422170042992,-0.182792335748672,0.957660555839539,-0.222425699234009,0.169949725270271,0.965027272701263,-0.199598520994186,0.0802703574299812,0.915071606636047,-0.395222157239914,-0.182792335748672,0.957660555839539,-0.222425699234009,-0.103046700358391,0.994657814502716,0.00609657214954495,0.535168170928955,0.594861686229706,-0.599778831005096,0.5715012550354,0.753715932369232,-0.324497550725937,0.31744658946991,0.94333827495575,0.0966464653611183,0.228196024894714,0.935197353363037,-0.270799577236176,0.5715012550354,0.753715932369232,-0.324497550725937,0.428906440734863,0.83082526922226,-0.354638814926147,0.217575669288635,0.975904643535614,-0.0164574068039656,0.31744658946991,0.94333827495575,0.0966464653611183,0.31744658946991,0.94333827495575,0.0966464653611183,0.217575669288635,0.975904643535614,-0.0164574068039656,0.0752102732658386,0.94880998134613,0.306762129068375,0.182326629757881,0.842849671840668,0.506321489810944,0.228196024894714,0.935197353363037,-0.270799577236176,0.31744658946991,0.94333827495575,0.0966464653611183,0.182326629757881,0.842849671840668,0.506321489810944,0.01406170707196,0.987431228160858,0.157422170042992,0.428906440734863,0.83082526922226,-0.354638814926147,0.369096249341965,0.844427645206451,-0.388213694095612,0.156601950526237,0.980059802532196,-0.12230508774519, -0.217575669288635,0.975904643535614,-0.0164574068039656,0.369096249341965,0.844427645206451,-0.388213694095612,0.403345912694931,0.857400178909302,-0.319651186466217,0.172379702329636,0.979032099246979,-0.1085419729352,0.156601950526237,0.980059802532196,-0.12230508774519,0.156601950526237,0.980059802532196,-0.12230508774519,0.172379702329636,0.979032099246979,-0.1085419729352,-0.0168152339756489,0.997183501720428,0.0730907320976257,-0.0103478236123919,0.992011070251465,0.125726118683815,0.217575669288635,0.975904643535614,-0.0164574068039656,0.156601950526237,0.980059802532196,-0.12230508774519,-0.0103478236123919,0.992011070251465,0.125726118683815,0.0752102732658386,0.94880998134613,0.306762129068375,0.403345912694931,0.857400178909302,-0.319651186466217,0.445927709341049,0.856788456439972,-0.258963227272034,0.196727871894836,0.975983262062073,-0.0935670658946037,0.172379702329636,0.979032099246979,-0.1085419729352,0.445927709341049,0.856788456439972,-0.258963227272034,0.412647932767868,0.83742094039917,-0.358396232128143,0.169735804200172,0.963742554187775,-0.205888405442238,0.196727871894836,0.975983262062073,-0.0935670658946037,0.196727871894836,0.975983262062073,-0.0935670658946037,0.169735804200172,0.963742554187775,-0.205888405442238,-0.0580062493681908,0.987557232379913,-0.146171033382416,-0.0172067284584045,0.999495983123779,0.0266799964010715,0.172379702329636,0.979032099246979,-0.1085419729352,0.196727871894836,0.975983262062073,-0.0935670658946037,-0.0172067284584045,0.999495983123779,0.0266799964010715,-0.0168152339756489,0.997183501720428,0.0730907320976257,0.412647932767868,0.83742094039917,-0.358396232128143,0.364626258611679,0.790468752384186,-0.492145121097565,0.114771716296673,0.919011771678925,-0.377153754234314,0.169735804200172,0.963742554187775,-0.205888405442238,0.364626258611679,0.790468752384186,-0.492145121097565,0.635576844215393,0.76066917181015,0.132001623511314,0.170171514153481,0.984035789966583,-0.0521076507866383,0.114771716296673,0.919011771678925,-0.377153754234314,0.114771716296673,0.919011771678925,-0.377153754234314, -0.170171514153481,0.984035789966583,-0.0521076507866383,-0.0376082472503185,0.989292144775391,-0.141020148992538,-0.0911883115768433,0.927266597747803,-0.363127082586288,0.169735804200172,0.963742554187775,-0.205888405442238,0.114771716296673,0.919011771678925,-0.377153754234314,-0.0911883115768433,0.927266597747803,-0.363127082586288,-0.0580062493681908,0.987557232379913,-0.146171033382416,0.635576844215393,0.76066917181015,0.132001623511314,0.573719918727875,0.637842059135437,0.513812184333801,0.14795009791851,0.927007138729095,0.344627887010574,0.170171514153481,0.984035789966583,-0.0521076507866383,0.573719918727875,0.637842059135437,0.513812184333801,0.527123928070068,0.79532128572464,0.299339979887009,0.0649499148130417,0.969111919403076,0.237915068864822,0.14795009791851,0.927007138729095,0.344627887010574,0.14795009791851,0.927007138729095,0.344627887010574,0.0649499148130417,0.969111919403076,0.237915068864822,0.0388505943119526,0.978016018867493,0.20487879216671,0.0528387017548084,0.961618542671204,0.269254088401794,0.170171514153481,0.984035789966583,-0.0521076507866383,0.14795009791851,0.927007138729095,0.344627887010574,0.0528387017548084,0.961618542671204,0.269254088401794,-0.0376082472503185,0.989292144775391,-0.141020148992538,0.527123928070068,0.79532128572464,0.299339979887009,0.493079423904419,0.865481495857239,0.0883983597159386,0.0198393352329731,0.988691866397858,0.148643672466278,0.0649499148130417,0.969111919403076,0.237915068864822,0.493079423904419,0.865481495857239,0.0883983597159386,0.4871906042099,0.871947884559631,-0.0484998300671577,0.00057746609672904,0.994953036308289,0.100340619683266,0.0198393352329731,0.988691866397858,0.148643672466278,0.0198393352329731,0.988691866397858,0.148643672466278,0.00057746609672904,0.994953036308289,0.100340619683266,-0.030796704813838,0.993721306324005,0.107561133801937,-0.00325257936492562,0.99051308631897,0.137380182743073,0.0649499148130417,0.969111919403076,0.237915068864822,0.0198393352329731,0.988691866397858,0.148643672466278,-0.00325257936492562,0.99051308631897,0.137380182743073, -0.0388505943119526,0.978016018867493,0.20487879216671,0.4871906042099,0.871947884559631,-0.0484998300671577,0.458899140357971,0.861370086669922,-0.217837646603584,-0.0212986879050732,0.999599277973175,0.0186462178826332,0.00057746609672904,0.994953036308289,0.100340619683266,0.458899140357971,0.861370086669922,-0.217837646603584,0.342911422252655,0.810504853725433,-0.474861770868301,-0.0684837475419044,0.983737170696259,-0.166045770049095,-0.0212986879050732,0.999599277973175,0.0186462178826332,-0.0212986879050732,0.999599277973175,0.0186462178826332,-0.0684837475419044,0.983737170696259,-0.166045770049095,-0.0921673104166985,0.989014387130737,-0.115566954016685,-0.0503392890095711,0.997582376003265,0.0479085892438889,0.00057746609672904,0.994953036308289,0.100340619683266,-0.0212986879050732,0.999599277973175,0.0186462178826332,-0.0503392890095711,0.997582376003265,0.0479085892438889,-0.030796704813838,0.993721306324005,0.107561133801937,0.342911422252655,0.810504853725433,-0.474861770868301,0.22217258810997,0.68991482257843,-0.688953518867493,-0.0967039614915848,0.931884527206421,-0.34962785243988,-0.0684837475419044,0.983737170696259,-0.166045770049095,0.22217258810997,0.68991482257843,-0.688953518867493,0.629011392593384,0.749249517917633,-0.207292005419731,0.0430399477481842,0.996272087097168,0.0747625902295113,-0.0967039614915848,0.931884527206421,-0.34962785243988,-0.0967039614915848,0.931884527206421,-0.34962785243988,0.0430399477481842,0.996272087097168,0.0747625902295113,-0.0151509661227465,0.99535870552063,0.0950342044234276,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0684837475419044,0.983737170696259,-0.166045770049095,-0.0967039614915848,0.931884527206421,-0.34962785243988,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0921673104166985,0.989014387130737,-0.115566954016685,0.629011392593384,0.749249517917633,-0.207292005419731,0.567189037799835,0.539463579654694,0.622314691543579,0.113829851150513,0.835547208786011,0.537497639656067,0.0430399477481842,0.996272087097168,0.0747625902295113, -0.567189037799835,0.539463579654694,0.622314691543579,0.521699905395508,0.778946161270142,0.347954154014587,-0.0092410035431385,0.969926238059998,0.243223503232002,0.113829851150513,0.835547208786011,0.537497639656067,0.113829851150513,0.835547208786011,0.537497639656067,-0.0092410035431385,0.969926238059998,0.243223503232002,0.0318148247897625,0.979531645774841,0.198759838938713,0.0964317098259926,0.859874904155731,0.501314222812653,0.0430399477481842,0.996272087097168,0.0747625902295113,0.113829851150513,0.835547208786011,0.537497639656067,0.0964317098259926,0.859874904155731,0.501314222812653,-0.0151509661227465,0.99535870552063,0.0950342044234276,0.521699905395508,0.778946161270142,0.347954154014587,0.448808789253235,0.886676609516144,0.111244484782219,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.0092410035431385,0.969926238059998,0.243223503232002,0.448808789253235,0.886676609516144,0.111244484782219,0.392393261194229,0.919789731502533,0.00378495058976114,-0.0916145890951157,0.988538324832916,0.119994908571243,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.0916145890951157,0.988538324832916,0.119994908571243,-0.0043518808670342,0.995574355125427,0.0938772782683372,-0.010114848613739,0.998629629611969,0.0513465888798237,-0.0092410035431385,0.969926238059998,0.243223503232002,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.010114848613739,0.998629629611969,0.0513465888798237,0.0318148247897625,0.979531645774841,0.198759838938713,0.392393261194229,0.919789731502533,0.00378495058976114,0.365334242582321,0.927436530590057,-0.0799523517489433,-0.0639562830328941,0.989399969577789,0.130373582243919,-0.0916145890951157,0.988538324832916,0.119994908571243,0.365334242582321,0.927436530590057,-0.0799523517489433,0.341739416122437,0.905296921730042,-0.252292722463608,-0.0410658642649651,0.999077379703522,0.0125748058781028,-0.0639562830328941,0.989399969577789,0.130373582243919,-0.0639562830328941,0.989399969577789,0.130373582243919, --0.0410658642649651,0.999077379703522,0.0125748058781028,-0.00473393173888326,0.999670922756195,0.0252132080495358,0.00822858419269323,0.992630243301392,0.120902456343174,-0.0916145890951157,0.988538324832916,0.119994908571243,-0.0639562830328941,0.989399969577789,0.130373582243919,0.00822858419269323,0.992630243301392,0.120902456343174,-0.0043518808670342,0.995574355125427,0.0938772782683372,0.341739416122437,0.905296921730042,-0.252292722463608,0.316450387239456,0.84852546453476,-0.424103587865829,-0.0234013590961695,0.987936198711395,-0.153082862496376,-0.0410658642649651,0.999077379703522,0.0125748058781028,0.316450387239456,0.84852546453476,-0.424103587865829,0.440194547176361,0.894553005695343,-0.0774847269058228,0.0980480089783669,0.988165497779846,0.11796410381794,-0.0234013590961695,0.987936198711395,-0.153082862496376,-0.0234013590961695,0.987936198711395,-0.153082862496376,0.0980480089783669,0.988165497779846,0.11796410381794,0.0337485857307911,0.987116694450378,0.156402423977852,-0.0430066473782063,0.991812765598297,-0.120241060853004,-0.0410658642649651,0.999077379703522,0.0125748058781028,-0.0234013590961695,0.987936198711395,-0.153082862496376,-0.0430066473782063,0.991812765598297,-0.120241060853004,-0.00473393173888326,0.999670922756195,0.0252132080495358,0.440194547176361,0.894553005695343,-0.0774847269058228,0.524899005889893,0.788100719451904,0.321524620056152,0.188261732459068,0.9055095911026,0.380275994539261,0.0980480089783669,0.988165497779846,0.11796410381794,0.524899005889893,0.788100719451904,0.321524620056152,0.507899641990662,0.858306348323822,0.0731307566165924,0.0926333740353584,0.9825359582901,0.161376118659973,0.188261732459068,0.9055095911026,0.380275994539261,0.188261732459068,0.9055095911026,0.380275994539261,0.0926333740353584,0.9825359582901,0.161376118659973,0.0253890473395586,0.987536251544952,0.155330121517181,0.108533754944801,0.915940999984741,0.386358052492142,0.0980480089783669,0.988165497779846,0.11796410381794,0.188261732459068,0.9055095911026,0.380275994539261,0.108533754944801,0.915940999984741,0.386358052492142, -0.0337485857307911,0.987116694450378,0.156402423977852,0.507899641990662,0.858306348323822,0.0731307566165924,0.409356772899628,0.902956247329712,-0.130755364894867,-0.00709670875221491,0.999914407730103,0.0109912762418389,0.0926333740353584,0.9825359582901,0.161376118659973,0.409356772899628,0.902956247329712,-0.130755364894867,0.377066731452942,0.921685636043549,-0.0911936163902283,-0.0195192694664001,0.995099425315857,0.0969333276152611,-0.00709670875221491,0.999914407730103,0.0109912762418389,-0.00709670875221491,0.999914407730103,0.0109912762418389,-0.0195192694664001,0.995099425315857,0.0969333276152611,-0.00392425805330276,0.995426774024963,0.0954470485448837,-0.0219244919717312,0.99975711107254,0.00226402701810002,0.0926333740353584,0.9825359582901,0.161376118659973,-0.00709670875221491,0.999914407730103,0.0109912762418389,-0.0219244919717312,0.99975711107254,0.00226402701810002,0.0253890473395586,0.987536251544952,0.155330121517181,0.377066731452942,0.921685636043549,-0.0911936163902283,0.402317970991135,0.912864685058594,-0.0694136172533035,0.020291943103075,0.98854398727417,0.149563178420067,-0.0195192694664001,0.995099425315857,0.0969333276152611,0.402317970991135,0.912864685058594,-0.0694136172533035,0.409580141305923,0.888055443763733,-0.208810359239578,0.0507242865860462,0.998710453510284,0.00213989592157304,0.020291943103075,0.98854398727417,0.149563178420067,0.020291943103075,0.98854398727417,0.149563178420067,0.0507242865860462,0.998710453510284,0.00213989592157304,7.25488644093275e-05,0.999377608299255,0.0352765023708344,0.0135718127712607,0.985743522644043,0.167706817388535,-0.0195192694664001,0.995099425315857,0.0969333276152611,0.020291943103075,0.98854398727417,0.149563178420067,0.0135718127712607,0.985743522644043,0.167706817388535,-0.00392425805330276,0.995426774024963,0.0954470485448837,0.409580141305923,0.888055443763733,-0.208810359239578,0.38879406452179,0.854439854621887,-0.344632625579834,0.0563377067446709,0.982479810714722,-0.177649810910225,0.0507242865860462,0.998710453510284,0.00213989592157304, -0.38879406452179,0.854439854621887,-0.344632625579834,0.41334941983223,0.894980490207672,0.167786166071892,0.0812827497720718,0.975687861442566,0.203534916043282,0.0563377067446709,0.982479810714722,-0.177649810910225,0.0563377067446709,0.982479810714722,-0.177649810910225,0.0812827497720718,0.975687861442566,0.203534916043282,0.00852314010262489,0.977733075618744,0.20967860519886,-0.0249541122466326,0.988700747489929,-0.147810697555542,0.0507242865860462,0.998710453510284,0.00213989592157304,0.0563377067446709,0.982479810714722,-0.177649810910225,-0.0249541122466326,0.988700747489929,-0.147810697555542,7.25488644093275e-05,0.999377608299255,0.0352765023708344,0.0812827497720718,0.975687861442566,0.203534916043282,0.41334941983223,0.894980490207672,0.167786166071892,0.41533300280571,0.888613343238831,0.194588840007782,0.0646548941731453,0.977678894996643,0.199909120798111,0.0812827497720718,0.975687861442566,0.203534916043282,0.0646548941731453,0.977678894996643,0.199909120798111,0.0121702868491411,0.981673896312714,0.190179511904716,0.00852314010262489,0.977733075618744,0.20967860519886,0.41533300280571,0.888613343238831,0.194588840007782,0.369161039590836,0.929343700408936,0.00636240420863032,0.00748851988464594,0.999597072601318,0.0273781735450029,0.0646548941731453,0.977678894996643,0.199909120798111,0.369161039590836,0.929343700408936,0.00636240420863032,0.343630492687225,0.93797492980957,0.0460529997944832,-0.0155807686969638,0.995435833930969,0.0941529795527458,0.00748851988464594,0.999597072601318,0.0273781735450029,0.00748851988464594,0.999597072601318,0.0273781735450029,-0.0155807686969638,0.995435833930969,0.0941529795527458,-0.00230317981913686,0.995579361915588,0.0938960164785385,-0.00346456165425479,0.999890685081482,0.0143786584958434,0.0646548941731453,0.977678894996643,0.199909120798111,0.00748851988464594,0.999597072601318,0.0273781735450029,-0.00346456165425479,0.999890685081482,0.0143786584958434,0.0121702868491411,0.981673896312714,0.190179511904716,0.343630492687225,0.93797492980957,0.0460529997944832, -0.386404693126678,0.916406333446503,0.104359053075314,0.0132088456302881,0.980670034885406,0.195222586393356,-0.0155807686969638,0.995435833930969,0.0941529795527458,0.386404693126678,0.916406333446503,0.104359053075314,0.462238311767578,0.886621832847595,0.0154123418033123,0.0660544708371162,0.981783330440521,0.178152024745941,0.0132088456302881,0.980670034885406,0.195222586393356,0.0132088456302881,0.980670034885406,0.195222586393356,0.0660544708371162,0.981783330440521,0.178152024745941,0.00153340841643512,0.977238595485687,0.212137639522552,0.00379641377367079,0.977337419986725,0.211653470993042,-0.0155807686969638,0.995435833930969,0.0941529795527458,0.0132088456302881,0.980670034885406,0.195222586393356,0.00379641377367079,0.977337419986725,0.211653470993042,-0.00230317981913686,0.995579361915588,0.0938960164785385,0.462238311767578,0.886621832847595,0.0154123418033123,0.51391863822937,0.845266163349152,-0.146331176161766,0.117219604551792,0.990914106369019,0.0659452006220818,0.0660544708371162,0.981783330440521,0.178152024745941,0.51391863822937,0.845266163349152,-0.146331176161766,0.577709436416626,0.788253307342529,-0.211915999650955,0.157750144600868,0.984252214431763,-0.0797660797834396,0.117219604551792,0.990914106369019,0.0659452006220818,0.117219604551792,0.990914106369019,0.0659452006220818,0.157750144600868,0.984252214431763,-0.0797660797834396,-0.0506674610078335,0.99699342250824,-0.0586251579225063,-0.00483007868751884,0.994182825088501,0.107596851885319,0.0660544708371162,0.981783330440521,0.178152024745941,0.117219604551792,0.990914106369019,0.0659452006220818,-0.00483007868751884,0.994182825088501,0.107596851885319,0.00153340841643512,0.977238595485687,0.212137639522552,0.00182646268513054,0.99999612569809,0.00212048715911806,-0.0316272154450417,0.795688211917877,0.604880213737488,0.0920296460390091,0.77127468585968,0.629814147949219,0.0224202573299408,0.999069094657898,0.0368568897247314,-0.0316272154450417,0.795688211917877,0.604880213737488,-0.0943231582641602,0.0288749188184738,0.995122790336609, -0.108872637152672,0.0131196500733495,0.993969142436981,0.0920296460390091,0.77127468585968,0.629814147949219,0.0920296460390091,0.77127468585968,0.629814147949219,0.108872637152672,0.0131196500733495,0.993969142436981,0.416714161634445,-0.0174247231334448,0.908870577812195,0.276121646165848,0.73132461309433,0.623635530471802,0.0224202573299408,0.999069094657898,0.0368568897247314,0.0920296460390091,0.77127468585968,0.629814147949219,0.276121646165848,0.73132461309433,0.623635530471802,0.0313166528940201,0.998217403888702,0.0508056059479713,-0.31101456284523,0.129726931452751,0.94150984287262,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.0900055393576622,0.767749547958374,0.634397029876709,-0.143310487270355,0.767455577850342,0.62487918138504,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.0943231582641602,0.0288749188184738,0.995122790336609,-0.0316272154450417,0.795688211917877,0.604880213737488,-0.0900055393576622,0.767749547958374,0.634397029876709,-0.0900055393576622,0.767749547958374,0.634397029876709,-0.0316272154450417,0.795688211917877,0.604880213737488,0.00182646268513054,0.99999612569809,0.00212048715911806,0.0121316770091653,0.9998779296875,-0.00984863564372063,-0.143310487270355,0.767455577850342,0.62487918138504,-0.0900055393576622,0.767749547958374,0.634397029876709,0.0121316770091653,0.9998779296875,-0.00984863564372063,0.0477132759988308,0.998204469680786,0.0362108647823334,-0.806167006492615,0.405817359685898,0.430589258670807,-0.523054778575897,0.27978852391243,0.805066525936127,-0.244616314768791,0.838822960853577,0.48635259270668,-0.435825973749161,0.860490024089813,0.263842105865479,-0.523054778575897,0.27978852391243,0.805066525936127,-0.31101456284523,0.129726931452751,0.94150984287262,-0.143310487270355,0.767455577850342,0.62487918138504,-0.244616314768791,0.838822960853577,0.48635259270668,-0.244616314768791,0.838822960853577,0.48635259270668,-0.143310487270355,0.767455577850342,0.62487918138504,0.0477132759988308,0.998204469680786,0.0362108647823334,0.0319248288869858,0.994054675102234,0.104096844792366, --0.435825973749161,0.860490024089813,0.263842105865479,-0.244616314768791,0.838822960853577,0.48635259270668,0.0319248288869858,0.994054675102234,0.104096844792366,-0.0952567905187607,0.993824362754822,0.0569144189357758,-0.573165655136108,0.205063909292221,0.793366253376007,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.370970189571381,0.785313665866852,0.495644569396973,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.806167006492615,0.405817359685898,0.430589258670807,-0.435825973749161,0.860490024089813,0.263842105865479,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.435825973749161,0.860490024089813,0.263842105865479,-0.0952567905187607,0.993824362754822,0.0569144189357758,-0.295589625835419,0.950601994991302,-0.0947765856981277,-0.370970189571381,0.785313665866852,0.495644569396973,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.295589625835419,0.950601994991302,-0.0947765856981277,-0.0678212195634842,0.997315227985382,0.0276141986250877,0.0600302666425705,0.0760350003838539,0.995296478271484,0.16967536509037,-0.00174521736335009,0.985498547554016,0.216084271669388,0.539616167545319,0.813708782196045,0.097871832549572,0.690352499485016,0.716822564601898,0.16967536509037,-0.00174521736335009,0.985498547554016,-0.573165655136108,0.205063909292221,0.793366253376007,-0.370970189571381,0.785313665866852,0.495644569396973,0.216084271669388,0.539616167545319,0.813708782196045,0.216084271669388,0.539616167545319,0.813708782196045,-0.370970189571381,0.785313665866852,0.495644569396973,-0.0678212195634842,0.997315227985382,0.0276141986250877,0.241079926490784,0.950754761695862,0.194797098636627,0.097871832549572,0.690352499485016,0.716822564601898,0.216084271669388,0.539616167545319,0.813708782196045,0.241079926490784,0.950754761695862,0.194797098636627,0.113079845905304,0.991852641105652,0.0586627013981342,-0.338309645652771,0.210501685738564,0.917188942432404,-0.131924688816071,0.14484977722168,0.980619430541992, --0.0479750968515873,0.776828289031982,0.627882301807404,-0.15385927259922,0.807145953178406,0.569949865341187,-0.131924688816071,0.14484977722168,0.980619430541992,0.0600302666425705,0.0760350003838539,0.995296478271484,0.097871832549572,0.690352499485016,0.716822564601898,-0.0479750968515873,0.776828289031982,0.627882301807404,-0.0479750968515873,0.776828289031982,0.627882301807404,0.097871832549572,0.690352499485016,0.716822564601898,0.113079845905304,0.991852641105652,0.0586627013981342,0.0432332381606102,0.999017179012299,0.00977621879428625,-0.15385927259922,0.807145953178406,0.569949865341187,-0.0479750968515873,0.776828289031982,0.627882301807404,0.0432332381606102,0.999017179012299,0.00977621879428625,0.0478152371942997,0.995822370052338,0.0777898132801056,-0.803800940513611,0.385017901659012,0.453503251075745,-0.556367337703705,0.28750267624855,0.779613852500916,-0.278010547161102,0.833264231681824,0.477892130613327,-0.446501880884171,0.862135410308838,0.239496484398842,-0.556367337703705,0.28750267624855,0.779613852500916,-0.338309645652771,0.210501685738564,0.917188942432404,-0.15385927259922,0.807145953178406,0.569949865341187,-0.278010547161102,0.833264231681824,0.477892130613327,-0.278010547161102,0.833264231681824,0.477892130613327,-0.15385927259922,0.807145953178406,0.569949865341187,0.0478152371942997,0.995822370052338,0.0777898132801056,0.0127476053312421,0.991988301277161,0.12568524479866,-0.446501880884171,0.862135410308838,0.239496484398842,-0.278010547161102,0.833264231681824,0.477892130613327,0.0127476053312421,0.991988301277161,0.12568524479866,-0.103046700358391,0.994657814502716,0.00609657214954495,-0.253959655761719,0.141760915517807,0.95676976442337,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.495233595371246,0.863634884357452,-0.0942262634634972,-0.16256882250309,0.795429646968842,0.583834767341614,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.803800940513611,0.385017901659012,0.453503251075745,-0.446501880884171,0.862135410308838,0.239496484398842,-0.495233595371246,0.863634884357452,-0.0942262634634972, --0.495233595371246,0.863634884357452,-0.0942262634634972,-0.446501880884171,0.862135410308838,0.239496484398842,-0.103046700358391,0.994657814502716,0.00609657214954495,-0.182792335748672,0.957660555839539,-0.222425699234009,-0.16256882250309,0.795429646968842,0.583834767341614,-0.495233595371246,0.863634884357452,-0.0942262634634972,-0.182792335748672,0.957660555839539,-0.222425699234009,0.01406170707196,0.987431228160858,0.157422170042992,-0.189798250794411,0.239573091268539,0.95214569568634,0.0775739923119545,0.0609424635767937,0.995122253894806,0.11156539618969,0.49527633190155,0.861541986465454,-0.0542549379169941,0.735487043857574,0.675363004207611,0.0775739923119545,0.0609424635767937,0.995122253894806,-0.253959655761719,0.141760915517807,0.95676976442337,-0.16256882250309,0.795429646968842,0.583834767341614,0.11156539618969,0.49527633190155,0.861541986465454,0.11156539618969,0.49527633190155,0.861541986465454,-0.16256882250309,0.795429646968842,0.583834767341614,0.01406170707196,0.987431228160858,0.157422170042992,0.182326629757881,0.842849671840668,0.506321489810944,-0.0542549379169941,0.735487043857574,0.675363004207611,0.11156539618969,0.49527633190155,0.861541986465454,0.182326629757881,0.842849671840668,0.506321489810944,0.0752102732658386,0.94880998134613,0.306762129068375,-0.702914714813232,0.419525861740112,0.574377000331879,-0.500292360782623,0.364415466785431,0.785435497760773,-0.217033550143242,0.869853854179382,0.443002134561539,-0.282055974006653,0.910620272159576,0.302018374204636,-0.500292360782623,0.364415466785431,0.785435497760773,-0.189798250794411,0.239573091268539,0.95214569568634,-0.0542549379169941,0.735487043857574,0.675363004207611,-0.217033550143242,0.869853854179382,0.443002134561539,-0.217033550143242,0.869853854179382,0.443002134561539,-0.0542549379169941,0.735487043857574,0.675363004207611,0.0752102732658386,0.94880998134613,0.306762129068375,-0.0103478236123919,0.992011070251465,0.125726118683815,-0.282055974006653,0.910620272159576,0.302018374204636,-0.217033550143242,0.869853854179382,0.443002134561539, --0.0103478236123919,0.992011070251465,0.125726118683815,-0.0168152339756489,0.997183501720428,0.0730907320976257,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.85072648525238,0.454842150211334,0.26340663433075,-0.337540805339813,0.929872870445251,0.146296367049217,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.85072648525238,0.454842150211334,0.26340663433075,-0.702914714813232,0.419525861740112,0.574377000331879,-0.282055974006653,0.910620272159576,0.302018374204636,-0.337540805339813,0.929872870445251,0.146296367049217,-0.337540805339813,0.929872870445251,0.146296367049217,-0.282055974006653,0.910620272159576,0.302018374204636,-0.0168152339756489,0.997183501720428,0.0730907320976257,-0.0172067284584045,0.999495983123779,0.0266799964010715,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.337540805339813,0.929872870445251,0.146296367049217,-0.0172067284584045,0.999495983123779,0.0266799964010715,-0.0580062493681908,0.987557232379913,-0.146171033382416,-0.785015106201172,0.584624469280243,0.204854965209961,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.195115342736244,0.971077859401703,-0.137614890933037,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.0580062493681908,0.987557232379913,-0.146171033382416,-0.0911883115768433,0.927266597747803,-0.363127082586288,-0.195115342736244,0.971077859401703,-0.137614890933037,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.0911883115768433,0.927266597747803,-0.363127082586288,-0.0376082472503185,0.989292144775391,-0.141020148992538,-0.548661649227142,0.668700933456421,0.501806080341339,-0.150067076086998,0.43262243270874,0.888998210430145,0.0557740405201912,0.906161785125732,0.419237643480301, --0.00156899739522487,0.968940556049347,0.247288808226585,-0.150067076086998,0.43262243270874,0.888998210430145,-0.785015106201172,0.584624469280243,0.204854965209961,-0.195115342736244,0.971077859401703,-0.137614890933037,0.0557740405201912,0.906161785125732,0.419237643480301,0.0557740405201912,0.906161785125732,0.419237643480301,-0.195115342736244,0.971077859401703,-0.137614890933037,-0.0376082472503185,0.989292144775391,-0.141020148992538,0.0528387017548084,0.961618542671204,0.269254088401794,-0.00156899739522487,0.968940556049347,0.247288808226585,0.0557740405201912,0.906161785125732,0.419237643480301,0.0528387017548084,0.961618542671204,0.269254088401794,0.0388505943119526,0.978016018867493,0.20487879216671,-0.601010143756866,0.790193140506744,0.11992322653532,-0.623963296413422,0.768050134181976,0.144113570451736,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.623963296413422,0.768050134181976,0.144113570451736,-0.548661649227142,0.668700933456421,0.501806080341339,-0.00156899739522487,0.968940556049347,0.247288808226585,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.00156899739522487,0.968940556049347,0.247288808226585,0.0388505943119526,0.978016018867493,0.20487879216671,-0.00325257936492562,0.99051308631897,0.137380182743073,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.00325257936492562,0.99051308631897,0.137380182743073,-0.030796704813838,0.993721306324005,0.107561133801937,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.633363366127014,0.765548825263977,0.113073691725731,-0.0633252263069153,0.99684202671051,0.0479161739349365,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.633363366127014,0.765548825263977,0.113073691725731,-0.601010143756866,0.790193140506744,0.11992322653532,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.0633252263069153,0.99684202671051,0.0479161739349365, --0.0633252263069153,0.99684202671051,0.0479161739349365,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.030796704813838,0.993721306324005,0.107561133801937,-0.0503392890095711,0.997582376003265,0.0479085892438889,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.0633252263069153,0.99684202671051,0.0479161739349365,-0.0503392890095711,0.997582376003265,0.0479085892438889,-0.0921673104166985,0.989014387130737,-0.115566954016685,-0.628344833850861,0.683509886264801,0.371479630470276,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.0608938634395599,0.990029633045197,0.127016574144363,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.0921673104166985,0.989014387130737,-0.115566954016685,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0608938634395599,0.990029633045197,0.127016574144363,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0151509661227465,0.99535870552063,0.0950342044234276,-0.340639442205429,0.750027358531952,0.566942572593689,-0.14881919324398,0.462757468223572,0.873904049396515,0.12006089091301,0.812812566757202,0.570018470287323,0.077876903116703,0.968743920326233,0.235521346330643,-0.14881919324398,0.462757468223572,0.873904049396515,-0.628344833850861,0.683509886264801,0.371479630470276,-0.0608938634395599,0.990029633045197,0.127016574144363,0.12006089091301,0.812812566757202,0.570018470287323,0.12006089091301,0.812812566757202,0.570018470287323,-0.0608938634395599,0.990029633045197,0.127016574144363,-0.0151509661227465,0.99535870552063,0.0950342044234276,0.0964317098259926,0.859874904155731,0.501314222812653,0.077876903116703,0.968743920326233,0.235521346330643,0.12006089091301,0.812812566757202,0.570018470287323, -0.0964317098259926,0.859874904155731,0.501314222812653,0.0318148247897625,0.979531645774841,0.198759838938713,-0.355925559997559,0.906254887580872,0.228076919913292,-0.389274567365646,0.873005211353302,0.293814718723297,0.0741141065955162,0.995791852474213,0.0539037138223648,0.0914653986692429,0.993724524974823,0.0643879324197769,-0.389274567365646,0.873005211353302,0.293814718723297,-0.340639442205429,0.750027358531952,0.566942572593689,0.077876903116703,0.968743920326233,0.235521346330643,0.0741141065955162,0.995791852474213,0.0539037138223648,0.0741141065955162,0.995791852474213,0.0539037138223648,0.077876903116703,0.968743920326233,0.235521346330643,0.0318148247897625,0.979531645774841,0.198759838938713,-0.010114848613739,0.998629629611969,0.0513465888798237,0.0914653986692429,0.993724524974823,0.0643879324197769,0.0741141065955162,0.995791852474213,0.0539037138223648,-0.010114848613739,0.998629629611969,0.0513465888798237,-0.0043518808670342,0.995574355125427,0.0938772782683372,-0.460800260305405,0.886764228343964,0.0362249948084354,-0.384405732154846,0.901455283164978,0.19902415573597,0.0701337903738022,0.994135797023773,0.0823124349117279,0.00778531888499856,0.999922394752502,-0.00972016621381044,-0.384405732154846,0.901455283164978,0.19902415573597,-0.355925559997559,0.906254887580872,0.228076919913292,0.0914653986692429,0.993724524974823,0.0643879324197769,0.0701337903738022,0.994135797023773,0.0823124349117279,0.0701337903738022,0.994135797023773,0.0823124349117279,0.0914653986692429,0.993724524974823,0.0643879324197769,-0.0043518808670342,0.995574355125427,0.0938772782683372,0.00822858419269323,0.992630243301392,0.120902456343174,0.00778531888499856,0.999922394752502,-0.00972016621381044,0.0701337903738022,0.994135797023773,0.0823124349117279,0.00822858419269323,0.992630243301392,0.120902456343174,-0.00473393173888326,0.999670922756195,0.0252132080495358,-0.359955251216888,0.867213666439056,0.344053357839584,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.0683653354644775,0.98283839225769,-0.171332702040672, --0.0160270147025585,0.983390092849731,0.180795356631279,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.460800260305405,0.886764228343964,0.0362249948084354,0.00778531888499856,0.999922394752502,-0.00972016621381044,-0.0683653354644775,0.98283839225769,-0.171332702040672,-0.0683653354644775,0.98283839225769,-0.171332702040672,0.00778531888499856,0.999922394752502,-0.00972016621381044,-0.00473393173888326,0.999670922756195,0.0252132080495358,-0.0430066473782063,0.991812765598297,-0.120241060853004,-0.0160270147025585,0.983390092849731,0.180795356631279,-0.0683653354644775,0.98283839225769,-0.171332702040672,-0.0430066473782063,0.991812765598297,-0.120241060853004,0.0337485857307911,0.987116694450378,0.156402423977852,-0.394090473651886,0.803994596004486,0.445292562246323,-0.225861296057701,0.695742309093475,0.681857228279114,0.0385843142867088,0.895612478256226,0.443158745765686,-0.0325050391256809,0.97695380449295,0.210961312055588,-0.225861296057701,0.695742309093475,0.681857228279114,-0.359955251216888,0.867213666439056,0.344053357839584,-0.0160270147025585,0.983390092849731,0.180795356631279,0.0385843142867088,0.895612478256226,0.443158745765686,0.0385843142867088,0.895612478256226,0.443158745765686,-0.0160270147025585,0.983390092849731,0.180795356631279,0.0337485857307911,0.987116694450378,0.156402423977852,0.108533754944801,0.915940999984741,0.386358052492142,-0.0325050391256809,0.97695380449295,0.210961312055588,0.0385843142867088,0.895612478256226,0.443158745765686,0.108533754944801,0.915940999984741,0.386358052492142,0.0253890473395586,0.987536251544952,0.155330121517181,-0.398814141750336,0.881977081298828,0.251124739646912,-0.437600523233414,0.872543215751648,0.217195779085159,-0.0299279261380434,0.999076545238495,0.0308272037655115,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.437600523233414,0.872543215751648,0.217195779085159,-0.394090473651886,0.803994596004486,0.445292562246323,-0.0325050391256809,0.97695380449295,0.210961312055588,-0.0299279261380434,0.999076545238495,0.0308272037655115, --0.0299279261380434,0.999076545238495,0.0308272037655115,-0.0325050391256809,0.97695380449295,0.210961312055588,0.0253890473395586,0.987536251544952,0.155330121517181,-0.0219244919717312,0.99975711107254,0.00226402701810002,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.0299279261380434,0.999076545238495,0.0308272037655115,-0.0219244919717312,0.99975711107254,0.00226402701810002,-0.00392425805330276,0.995426774024963,0.0954470485448837,-0.521180927753448,0.839390277862549,0.154254466295242,-0.436745554208755,0.84290075302124,0.314279556274414,-0.00861691404134035,0.986984133720398,0.160586446523666,-0.076534666121006,0.996190190315247,0.0418039225041866,-0.436745554208755,0.84290075302124,0.314279556274414,-0.398814141750336,0.881977081298828,0.251124739646912,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.00861691404134035,0.986984133720398,0.160586446523666,-0.00861691404134035,0.986984133720398,0.160586446523666,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.00392425805330276,0.995426774024963,0.0954470485448837,0.0135718127712607,0.985743522644043,0.167706817388535,-0.076534666121006,0.996190190315247,0.0418039225041866,-0.00861691404134035,0.986984133720398,0.160586446523666,0.0135718127712607,0.985743522644043,0.167706817388535,7.25488644093275e-05,0.999377608299255,0.0352765023708344,-0.384734183549881,0.823127925395966,0.417660236358643,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.111568368971348,0.98267138004303,-0.148018434643745,-0.0541600920259953,0.968688130378723,0.242301598191261,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.521180927753448,0.839390277862549,0.154254466295242,-0.076534666121006,0.996190190315247,0.0418039225041866,-0.111568368971348,0.98267138004303,-0.148018434643745,-0.111568368971348,0.98267138004303,-0.148018434643745,-0.076534666121006,0.996190190315247,0.0418039225041866,7.25488644093275e-05,0.999377608299255,0.0352765023708344,-0.0249541122466326,0.988700747489929,-0.147810697555542,-0.0541600920259953,0.968688130378723,0.242301598191261, --0.111568368971348,0.98267138004303,-0.148018434643745,-0.0249541122466326,0.988700747489929,-0.147810697555542,0.00852314010262489,0.977733075618744,0.20967860519886,-0.0584177039563656,0.971585273742676,0.229367539286613,-0.452030569314957,0.806248903274536,0.381616413593292,-0.384734183549881,0.823127925395966,0.417660236358643,-0.0541600920259953,0.968688130378723,0.242301598191261,-0.0584177039563656,0.971585273742676,0.229367539286613,-0.0541600920259953,0.968688130378723,0.242301598191261,0.00852314010262489,0.977733075618744,0.20967860519886,0.0121702868491411,0.981673896312714,0.190179511904716,-0.370093166828156,0.921099185943604,0.120860703289509,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.0155421774834394,0.999395132064819,0.0311111994087696,0.0166346412152052,0.995623648166656,0.0919607058167458,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.452030569314957,0.806248903274536,0.381616413593292,-0.0584177039563656,0.971585273742676,0.229367539286613,-0.0155421774834394,0.999395132064819,0.0311111994087696,-0.0155421774834394,0.999395132064819,0.0311111994087696,-0.0584177039563656,0.971585273742676,0.229367539286613,0.0121702868491411,0.981673896312714,0.190179511904716,-0.00346456165425479,0.999890685081482,0.0143786584958434,0.0166346412152052,0.995623648166656,0.0919607058167458,-0.0155421774834394,0.999395132064819,0.0311111994087696,-0.00346456165425479,0.999890685081482,0.0143786584958434,-0.00230317981913686,0.995579361915588,0.0938960164785385,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.442843645811081,0.874231338500977,0.199020147323608,-0.0156412869691849,0.980694711208344,0.194918364286423,-0.0829718932509422,0.983162522315979,0.162810266017914,-0.442843645811081,0.874231338500977,0.199020147323608,-0.370093166828156,0.921099185943604,0.120860703289509,0.0166346412152052,0.995623648166656,0.0919607058167458,-0.0156412869691849,0.980694711208344,0.194918364286423,-0.0156412869691849,0.980694711208344,0.194918364286423,0.0166346412152052,0.995623648166656,0.0919607058167458, --0.00230317981913686,0.995579361915588,0.0938960164785385,0.00379641377367079,0.977337419986725,0.211653470993042,-0.0829718932509422,0.983162522315979,0.162810266017914,-0.0156412869691849,0.980694711208344,0.194918364286423,0.00379641377367079,0.977337419986725,0.211653470993042,0.00153340841643512,0.977238595485687,0.212137639522552,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.0829718932509422,0.983162522315979,0.162810266017914,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.0829718932509422,0.983162522315979,0.162810266017914,0.00153340841643512,0.977238595485687,0.212137639522552,-0.00483007868751884,0.994182825088501,0.107596851885319,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.00483007868751884,0.994182825088501,0.107596851885319,-0.0506674610078335,0.99699342250824,-0.0586251579225063,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.0497316643595695,-0.134555041790009,0.989657342433929,0.368675380945206,0.098903588950634,-0.924281597137451,0.355109542608261,0.0902480930089951,-0.930458247661591,0.259201914072037,0.299632668495178,-0.91816920042038,0.323132365942001,0.276261866092682,-0.905132412910461,0.355109542608261,0.0902480930089951,-0.930458247661591,0.318776696920395,0.121042519807816,-0.940069198608398,0.208717495203018,0.299665898084641,-0.930933594703674, -0.259201914072037,0.299632668495178,-0.91816920042038,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.535748302936554,-0.0948459655046463,0.839033901691437,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.535748302936554,-0.0948459655046463,0.839033901691437,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.234741002321243,-0.47547435760498,0.847832918167114,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.234741002321243,-0.47547435760498,0.847832918167114,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.206299006938934,-0.364515900611877,0.908057749271393,-0.371475577354431,-0.195014357566833,0.907730877399445, --0.206299006938934,-0.364515900611877,0.908057749271393,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.371475577354431,-0.195014357566833,0.907730877399445,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.342844098806381,-0.175389617681503,0.922873973846436,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.342844098806381,-0.175389617681503,0.922873973846436,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.927932739257813,-0.139165371656418,0.345794230699539, --0.910836100578308,-0.101129606366158,0.400187909603119,-0.886835098266602,-0.116375274956226,0.447191417217255,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.886835098266602,-0.116375274956226,0.447191417217255,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.275031268596649,-0.280610650777817,0.919573485851288,-0.346615135669708,-0.147859111428261,0.926280558109283,-0.275031268596649,-0.280610650777817,0.919573485851288,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.346615135669708,-0.147859111428261,0.926280558109283,-0.927932739257813,-0.139165371656418,0.345794230699539,-0.826989233493805,-0.454506695270538,0.330926805734634,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.937240719795227,-0.29300731420517,0.189014628529549, --0.818732798099518,-0.0261375047266483,0.57357931137085,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.694688260555267,-0.291444092988968,0.657623469829559,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.839202105998993,-0.139069586992264,0.525737106800079,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.956861793994904,0.0141872800886631,0.290197134017944,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.885213017463684,-0.127952173352242,0.447242945432663, --0.949359834194183,-0.0471252389252186,0.310636818408966,-0.885213017463684,-0.127952173352242,0.447242945432663,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.956861793994904,0.0141872800886631,0.290197134017944,-0.930284380912781,-0.284267514944077,0.231868550181389,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.940751850605011,0.0702282711863518,0.331743776798248,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.943971574306488,0.128323748707771,0.304057091474533,-0.940751850605011,0.0702282711863518,0.331743776798248,-0.89040869474411,0.311238497495651,0.332118898630142,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.930454969406128,0.224429950118065,0.289628684520721,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.943971574306488,0.128323748707771,0.304057091474533,-0.930454969406128,0.224429950118065,0.289628684520721,-0.89040869474411,0.311238497495651,0.332118898630142,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.874447166919708,0.288081109523773,0.390322238206863,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.872197031974792,0.226783886551857,0.433406591415405,-0.874447166919708,0.288081109523773,0.390322238206863,-0.920935451984406,0.143320575356483,0.362404674291611,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.880764484405518,0.180825784802437,0.437671184539795,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.872197031974792,0.226783886551857,0.433406591415405,-0.880764484405518,0.180825784802437,0.437671184539795, --0.805730640888214,-0.350308150053024,0.477579683065414,-0.860088109970093,-0.273398786783218,0.430698931217194,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.920935451984406,0.143320575356483,0.362404674291611,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.99725204706192,0.0188685450702906,0.0716400593519211,-0.993880212306976,0.0232245307415724,0.107993647456169,-0.99725204706192,0.0188685450702906,0.0716400593519211,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.993880212306976,0.0232245307415724,0.107993647456169,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.998741626739502,-0.00342219998128712,0.0500338859856129,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.998741626739502,-0.00342219998128712,0.0500338859856129,-0.996107459068298,0.00330066774040461,0.0880859866738319,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.997405111789703,0.00665625929832458,0.0716846287250519,-0.99621844291687,0.0131362657994032,0.0858851000666618,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.997405111789703,0.00665625929832458,0.0716846287250519,0.909924030303955,0.382335722446442,0.160803377628326,0.911470055580139,0.382125437259674,0.152323514223099,0.933702230453491,0.351534873247147,0.0679962337017059,0.918489754199982,0.390081375837326,0.0649086162447929,0.911470055580139,0.382125437259674,0.152323514223099,0.884372234344482,0.457667320966721,0.0917949602007866,0.91965240240097,0.390021592378616,0.0460708625614643,0.933702230453491,0.351534873247147,0.0679962337017059,0.884372234344482,0.457667320966721,0.0917949602007866, -0.988306939601898,0.104397609829903,-0.111133053898811,0.814651012420654,0.577126085758209,0.05717808380723,0.801068782806396,0.595264196395874,0.0628444850444794,0.988306939601898,0.104397609829903,-0.111133053898811,0.989710927009583,0.102190293371677,-0.100146681070328,0.838683366775513,0.544562935829163,-0.00783465337008238,0.814651012420654,0.577126085758209,0.05717808380723,0.537430226802826,0.842876613140106,-0.026979073882103,0.59618866443634,0.802758991718292,0.0117065347731113,0.850350499153137,0.521303713321686,-0.0717378035187721,0.847741067409515,0.516543209552765,-0.12049139291048,0.59618866443634,0.802758991718292,0.0117065347731113,0.689390957355499,0.722647607326508,0.0502060428261757,0.838683366775513,0.544562935829163,-0.00783465337008238,0.850350499153137,0.521303713321686,-0.0717378035187721,0.847741067409515,0.516543209552765,-0.12049139291048,0.991479098796844,0.110518060624599,-0.0689562931656837,0.986953139305115,0.0644822493195534,-0.147531688213348,0.887120962142944,0.441524177789688,-0.134434923529625,0.725338160991669,0.688391089439392,0.0015043233288452,0.670208394527435,0.740215718746185,0.0538638904690742,0.892151772975922,0.415251165628433,-0.177852809429169,0.916534781455994,0.315282136201859,-0.246092095971107,0.670208394527435,0.740215718746185,0.0538638904690742,0.603810250759125,0.796887397766113,0.0195919945836067,0.887120962142944,0.441524177789688,-0.134434923529625,0.892151772975922,0.415251165628433,-0.177852809429169,0.916534781455994,0.315282136201859,-0.246092095971107,0.886656284332275,0.0170933715999126,-0.462113082408905,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.936087548732758,0.111993096768856,-0.333463251590729,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.909102857112885,-0.171811461448669,-0.37949001789093,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.936087548732758,0.111993096768856,-0.333463251590729,0.90697705745697,0.336921870708466,-0.252737581729889,0.902696073055267,0.338164865970612,-0.266053199768066,0.95274031162262,-0.0942111760377884,-0.288808196783066, -0.971439898014069,-0.0380248129367828,-0.234219044446945,0.902696073055267,0.338164865970612,-0.266053199768066,0.930621147155762,0.237400963902473,-0.278540879487991,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.95274031162262,-0.0942111760377884,-0.288808196783066,0.971439898014069,-0.0380248129367828,-0.234219044446945,0.973713517189026,-0.172938525676727,-0.148237258195877,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.976116955280304,0.0134601527824998,-0.216828137636185,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.980044484138489,-0.101791329681873,-0.170737832784653,0.967101693153381,0.0675250291824341,-0.245264634490013,0.976116955280304,0.0134601527824998,-0.216828137636185,0.893243849277496,0.298696398735046,-0.335999757051468,0.907508671283722,0.28566175699234,-0.307937324047089,0.951133668422699,0.1209502145648,-0.28410530090332,0.922317802906036,0.124125301837921,-0.365954786539078,0.907508671283722,0.28566175699234,-0.307937324047089,0.920147359371185,0.269906520843506,-0.283688962459564,0.967101693153381,0.0675250291824341,-0.245264634490013,0.951133668422699,0.1209502145648,-0.28410530090332,0.922317802906036,0.124125301837921,-0.365954786539078,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.868053674697876,-0.121659033000469,-0.481333494186401,0.898446023464203,0.0842752084136009,-0.430920600891113,0.868053674697876,-0.121659033000469,-0.481333494186401,0.895589888095856,-0.120351918041706,-0.428292095661163,0.901818215847015,0.0675557777285576,-0.426802188158035,0.898446023464203,0.0842752084136009,-0.430920600891113,0.853890836238861,0.319215506315231,-0.411061942577362,0.862371385097504,0.269467294216156,-0.428605705499649,0.924264490604401,0.130826368927956,-0.358635663986206,0.924147367477417,0.229529798030853,-0.305397510528564,0.862371385097504,0.269467294216156,-0.428605705499649,0.886994004249573,0.163238406181335,-0.431966125965118,0.901818215847015,0.0675557777285576,-0.426802188158035,0.924264490604401,0.130826368927956,-0.358635663986206, -0.924147367477417,0.229529798030853,-0.305397510528564,0.990053594112396,0.0981012284755707,-0.100846499204636,0.959591209888458,0.208667978644371,-0.188792005181313,0.890639185905457,0.299340456724167,-0.342282474040985,0.959591209888458,0.208667978644371,-0.188792005181313,0.791596829891205,0.230182409286499,-0.566030383110046,0.784429788589478,0.305884122848511,-0.53954142332077,0.890639185905457,0.299340456724167,-0.342282474040985,0.851244390010834,0.220117658376694,-0.476373016834259,0.821320593357086,0.276728183031082,-0.498852610588074,0.691240251064301,0.223803639411926,-0.687094509601593,0.768146157264709,0.127034261822701,-0.627545773983002,0.821320593357086,0.276728183031082,-0.498852610588074,0.82975310087204,0.32433557510376,-0.454220652580261,0.784429788589478,0.305884122848511,-0.53954142332077,0.691240251064301,0.223803639411926,-0.687094509601593,0.768146157264709,0.127034261822701,-0.627545773983002,0.64826375246048,0.10987926274538,-0.753445863723755,0.838982045650482,0.0504205077886581,-0.541818201541901,0.866522550582886,0.0672406181693077,-0.494588106870651,0.838982045650482,0.0504205077886581,-0.541818201541901,0.904049396514893,0.0348534919321537,-0.426004707813263,0.899305462837219,0.0559697672724724,-0.433724671602249,0.866522550582886,0.0672406181693077,-0.494588106870651,0.867344975471497,0.2725790143013,-0.416429340839386,0.869417071342468,0.207068249583244,-0.448594093322754,0.915594160556793,0.0869414284825325,-0.392591774463654,0.951062262058258,0.134249106049538,-0.278312623500824,0.869417071342468,0.207068249583244,-0.448594093322754,0.889630854129791,0.0999864265322685,-0.44560033082962,0.899305462837219,0.0559697672724724,-0.433724671602249,0.915594160556793,0.0869414284825325,-0.392591774463654,0.951062262058258,0.134249106049538,-0.278312623500824,0.992201030254364,0.0745126605033875,-0.0999240875244141,0.985915005207062,0.156256228685379,0.0596290454268456,0.961063802242279,0.21541254222393,-0.173071682453156,0.985915005207062,0.156256228685379,0.0596290454268456,0.911404967308044,0.292803913354874,-0.289148598909378, -0.859557867050171,0.334645241498947,-0.386228829622269,0.961063802242279,0.21541254222393,-0.173071682453156,0.739257872104645,0.406338691711426,-0.537016332149506,0.739202260971069,0.412130922079086,-0.532661318778992,0.692432820796967,0.330824136734009,-0.641164720058441,0.691599428653717,0.257617503404617,-0.674776554107666,0.739202260971069,0.412130922079086,-0.532661318778992,0.792701959609985,0.400867879390717,-0.459269553422928,0.859557867050171,0.334645241498947,-0.386228829622269,0.692432820796967,0.330824136734009,-0.641164720058441,0.691599428653717,0.257617503404617,-0.674776554107666,0.587326943874359,0.256558895111084,-0.767609655857086,0.674247980117798,0.186011746525764,-0.714695274829865,0.728286027908325,0.183006748557091,-0.660384654998779,0.674247980117798,0.186011746525764,-0.714695274829865,0.737434148788452,0.135899171233177,-0.661605775356293,0.74715131521225,0.127207294106483,-0.652367472648621,0.728286027908325,0.183006748557091,-0.660384654998779,0.656255125999451,0.448537945747375,-0.60674774646759,0.686774015426636,0.378295749425888,-0.620671927928925,0.775611996650696,0.14525580406189,-0.614269316196442,0.826049566268921,0.216002121567726,-0.52056223154068,0.686774015426636,0.378295749425888,-0.620671927928925,0.748709142208099,0.238583773374557,-0.61847585439682,0.74715131521225,0.127207294106483,-0.652367472648621,0.775611996650696,0.14525580406189,-0.614269316196442,0.826049566268921,0.216002121567726,-0.52056223154068,0.91890150308609,0.17311230301857,-0.354474425315857,0.940506935119629,0.267852574586868,-0.209049537777901,0.828815698623657,0.333292007446289,-0.449422895908356,0.940506935119629,0.267852574586868,-0.209049537777901,0.661338627338409,0.378908932209015,-0.647347986698151,0.608534216880798,0.422096699476242,-0.671952784061432,0.828815698623657,0.333292007446289,-0.449422895908356,0.49078169465065,0.501620471477509,-0.712397575378418,0.484879583120346,0.517203330993652,-0.705260574817657,0.38545623421669,0.337239533662796,-0.858890533447266,0.416671603918076,0.242084756493568,-0.876230418682098, -0.484879583120346,0.517203330993652,-0.705260574817657,0.545172929763794,0.533064484596252,-0.647015333175659,0.608534216880798,0.422096699476242,-0.671952784061432,0.38545623421669,0.337239533662796,-0.858890533447266,0.416671603918076,0.242084756493568,-0.876230418682098,0.318130344152451,0.259494483470917,-0.911841869354248,0.461237609386444,0.226542562246323,-0.857868492603302,0.495140880346298,0.185466706752777,-0.848785996437073,0.461237609386444,0.226542562246323,-0.857868492603302,0.555911600589752,0.207833155989647,-0.80484014749527,0.55392849445343,0.168168351054192,-0.815403401851654,0.495140880346298,0.185466706752777,-0.848785996437073,0.402486979961395,0.522201836109161,-0.751870632171631,0.446554064750671,0.475454419851303,-0.757979273796082,0.58081328868866,0.245254293084145,-0.776212811470032,0.546992540359497,0.341834425926208,-0.764165222644806,0.446554064750671,0.475454419851303,-0.757979273796082,0.518530607223511,0.333309799432755,-0.787420272827148,0.55392849445343,0.168168351054192,-0.815403401851654,0.58081328868866,0.245254293084145,-0.776212811470032,0.546992540359497,0.341834425926208,-0.764165222644806,0.651852667331696,0.292813539505005,-0.699534296989441,0.585752069950104,0.344408452510834,-0.733673751354218,0.476209849119186,0.397222876548767,-0.784498691558838,0.585752069950104,0.344408452510834,-0.733673751354218,0.359844118356705,0.337632149457932,-0.869779706001282,0.370532244443893,0.403686285018921,-0.836506485939026,0.476209849119186,0.397222876548767,-0.784498691558838,0.331205278635025,0.555228888988495,-0.762904942035675,0.335152059793472,0.538876950740814,-0.772841930389404,0.285932034254074,0.363823145627975,-0.886496305465698,0.275888413190842,0.299088269472122,-0.913472473621368,0.335152059793472,0.538876950740814,-0.772841930389404,0.355381429195404,0.524076342582703,-0.773981869220734,0.370532244443893,0.403686285018921,-0.836506485939026,0.285932034254074,0.363823145627975,-0.886496305465698,0.275888413190842,0.299088269472122,-0.913472473621368,0.199421912431717,0.25212886929512,-0.946922361850739, -0.277288466691971,0.210945814847946,-0.937343597412109,0.30895471572876,0.22746567428112,-0.92347514629364,0.277288466691971,0.210945814847946,-0.937343597412109,0.331366807222366,0.181360095739365,-0.925907373428345,0.348579585552216,0.189517378807068,-0.917919039726257,0.30895471572876,0.22746567428112,-0.92347514629364,0.254412084817886,0.533420383930206,-0.806682765483856,0.281423538923264,0.504726886749268,-0.816119790077209,0.357639133930206,0.230505898594856,-0.904964864253998,0.323132365942001,0.276261866092682,-0.905132412910461,0.281423538923264,0.504726886749268,-0.816119790077209,0.330113887786865,0.373487502336502,-0.866909325122833,0.348579585552216,0.189517378807068,-0.917919039726257,0.357639133930206,0.230505898594856,-0.904964864253998,0.0340442918241024,-0.44191038608551,0.896412968635559,-0.109554767608643,-0.463935196399689,0.879068791866302,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.0695114508271217,-0.308985948562622,0.948523044586182,0.0340442918241024,-0.44191038608551,0.896412968635559,-0.0695114508271217,-0.308985948562622,0.948523044586182,0.150402024388313,-0.318250775337219,0.935999751091003,0.310132741928101,-0.395607888698578,0.864472031593323,0.285638749599457,0.2063317745924,-0.935862064361572,0.16628709435463,0.278749406337738,-0.94585794210434,0.0663652718067169,0.333928227424622,-0.940259397029877,0.213816419243813,0.31326550245285,-0.925282299518585,0.285638749599457,0.2063317745924,-0.935862064361572,0.213816419243813,0.31326550245285,-0.925282299518585,0.333691775798798,0.296535044908524,-0.894827723503113,0.371691584587097,0.176296725869179,-0.911462962627411,-0.25737664103508,-0.520960569381714,0.81385350227356,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.398151904344559,-0.536222040653229,0.74427205324173,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.398151904344559,-0.536222040653229,0.74427205324173, --0.25737664103508,-0.520960569381714,0.81385350227356,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.109554767608643,-0.463935196399689,0.879068791866302,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.418494075536728,-0.4173284471035,0.806659519672394,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.568327307701111,-0.391887068748474,0.723483622074127,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.568327307701111,-0.391887068748474,0.723483622074127,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.418494075536728,-0.4173284471035,0.806659519672394,-0.490314334630966,-0.306891679763794,0.815726220607758,0.0491029173135757,-0.337266832590103,0.940127730369568,-0.0412460155785084,-0.429754108190536,0.902003347873688,0.0491029173135757,-0.337266832590103,0.940127730369568,-0.0555649995803833,-0.379517257213593,0.923514544963837,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.0412460155785084,-0.429754108190536,0.902003347873688,-0.41496080160141,-0.562957286834717,0.714763343334198,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.41496080160141,-0.562957286834717,0.714763343334198,-0.388131648302078,-0.443252623081207,0.808010518550873,-0.567373514175415,-0.433731079101563,0.699974715709686,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.567373514175415,-0.433731079101563,0.699974715709686, --0.820309162139893,-0.366870522499084,0.438746929168701,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.373453110456467,-0.514030456542969,0.772208094596863,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.875212669372559,-0.394328147172928,0.280193239450455,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.875212669372559,-0.394328147172928,0.280193239450455,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.373453110456467,-0.514030456542969,0.772208094596863,-0.256725430488586,-0.374575465917587,0.890946269035339,0.11180654913187,-0.334470957517624,0.935750186443329,0.040289144963026,-0.486981987953186,0.872482240200043,0.11180654913187,-0.334470957517624,0.935750186443329,-0.236676275730133,-0.44870325922966,0.86177134513855,-0.282623738050461,-0.625286161899567,0.727420747280121,0.040289144963026,-0.486981987953186,0.872482240200043,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.282623738050461,-0.625286161899567,0.727420747280121,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.826989233493805,-0.454506695270538,0.330926805734634, --0.921968221664429,-0.384921699762344,0.0425437018275261,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.831903696060181,-0.397577732801437,0.387128055095673,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.682293832302094,-0.429185539484024,0.591840147972107,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.936768233776093,-0.349801152944565,0.0102151110768318,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.950295329093933,-0.273207515478134,-0.149320408701897,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.937240719795227,-0.29300731420517,0.189014628529549,-0.936768233776093,-0.349801152944565,0.0102151110768318, --0.950295329093933,-0.273207515478134,-0.149320408701897,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.58196759223938,-0.243648797273636,0.775853753089905,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.694688260555267,-0.291444092988968,0.657623469829559,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.930284380912781,-0.284267514944077,0.231868550181389,-0.957474827766418,-0.27677658200264,-0.0814660489559174,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.957474827766418,-0.27677658200264,-0.0814660489559174,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.612387180328369,-0.103147372603416,0.783800065517426,-0.645787417888641,-0.332664549350739,0.687235772609711, --0.612387180328369,-0.103147372603416,0.783800065517426,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.645787417888641,-0.332664549350739,0.687235772609711,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.889139890670776,-0.300980299711227,0.344733268022537,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.889139890670776,-0.300980299711227,0.344733268022537,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.805730640888214,-0.350308150053024,0.477579683065414,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.845598042011261,-0.197273597121239,0.496031492948532,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.905501306056976,-0.389081418514252,0.169360592961311,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.905501306056976,-0.389081418514252,0.169360592961311, --0.860088109970093,-0.273398786783218,0.430698931217194,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.917855978012085,-0.320134043693542,-0.234637275338173,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.953887403011322,-0.109419479966164,-0.279510796070099,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.846324682235718,-0.220019087195396,-0.48510417342186,-0.839524686336517,-0.0949402377009392,-0.534962296485901,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.917855978012085,-0.320134043693542,-0.234637275338173,-0.846324682235718,-0.220019087195396,-0.48510417342186,0.955293476581573,-0.100287422537804,-0.278130829334259,0.988293766975403,-0.00941547844558954,-0.152272343635559,0.989191770553589,0.0672444105148315,-0.130298912525177,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.989191770553589,0.0672444105148315,-0.130298912525177,0.982530891895294,0.179615572094917,-0.048695120960474,0.965870499610901,0.00448970589786768,-0.258986443281174,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.955293476581573,-0.100287422537804,-0.278130829334259,0.95909571647644,0.00866605900228024,-0.282949209213257,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.972208499908447,-0.127094998955727,-0.19661520421505,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.991545021533966,-0.0115073760971427,-0.129251420497894,0.980171322822571,-0.14081147313118,-0.139413714408875,0.972208499908447,-0.127094998955727,-0.19661520421505,0.985069394111633,-0.15815107524395,0.0680177062749863,0.991479098796844,0.110518060624599,-0.0689562931656837, -0.994581878185272,0.0645951926708221,-0.0814513266086578,0.986045718193054,-0.152371600270271,-0.067056804895401,0.994581878185272,0.0645951926708221,-0.0814513266086578,0.989710927009583,0.102190293371677,-0.100146681070328,0.980171322822571,-0.14081147313118,-0.139413714408875,0.986045718193054,-0.152371600270271,-0.067056804895401,0.985069394111633,-0.15815107524395,0.0680177062749863,0.988163650035858,-0.0455380268394947,0.146488800644875,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.886656284332275,0.0170933715999126,-0.462113082408905,0.899778306484222,0.116290338337421,-0.420565724372864,0.809904813766479,0.00722522288560867,-0.586516976356506,0.899778306484222,0.116290338337421,-0.420565724372864,0.986953139305115,0.0644822493195534,-0.147531688213348,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.809904813766479,0.00722522288560867,-0.586516976356506,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.837286174297333,0.0577985979616642,-0.543701350688934,0.893739640712738,0.0481724552810192,-0.445992112159729,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.893739640712738,0.0481724552810192,-0.445992112159729,0.916099011898041,0.0440531559288502,-0.398524641990662,0.915224254131317,-0.053038727492094,-0.399438798427582,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.978056848049164,-0.11288920044899,-0.175102561712265,0.973713517189026,-0.172938525676727,-0.148237258195877,0.940621256828308,-0.200632810592651,-0.273821353912354,0.945058286190033,-0.0753810480237007,-0.318092048168182,0.940621256828308,-0.200632810592651,-0.273821353912354,0.909102857112885,-0.171811461448669,-0.37949001789093,0.915224254131317,-0.053038727492094,-0.399438798427582,0.945058286190033,-0.0753810480237007,-0.318092048168182,0.978056848049164,-0.11288920044899,-0.175102561712265,0.985578894615173,0.0224285423755646,-0.167723700404167,0.999491512775421,0.0158792212605476,-0.0276509076356888, -0.98804771900177,-0.153398603200912,-0.0151911964640021,0.999491512775421,0.0158792212605476,-0.0276509076356888,0.947330832481384,0.0109401699155569,-0.320069700479507,0.966646611690521,-0.169457629323006,-0.192037552595139,0.98804771900177,-0.153398603200912,-0.0151911964640021,0.83592814207077,-0.209792360663414,-0.507160067558289,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.865661025047302,-0.193967401981354,-0.461527645587921,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.980044484138489,-0.101791329681873,-0.170737832784653,0.966646611690521,-0.169457629323006,-0.192037552595139,0.865661025047302,-0.193967401981354,-0.461527645587921,0.83592814207077,-0.209792360663414,-0.507160067558289,0.852650284767151,-0.059975378215313,-0.51902836561203,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.863646626472473,-0.193558514118195,-0.465456366539001,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.9298415184021,-0.164688065648079,-0.32904788851738,0.863646626472473,-0.193558514118195,-0.465456366539001,0.951331615447998,-0.149952217936516,0.269225656986237,0.990053594112396,0.0981012284755707,-0.100846499204636,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.895589888095856,-0.120351918041706,-0.428292095661163,0.9298415184021,-0.164688065648079,-0.32904788851738,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.951331615447998,-0.149952217936516,0.269225656986237,0.925031006336212,-0.0753350853919983,0.372347176074982,0.865345120429993,-0.0699237212538719,0.496274620294571,0.902754366397858,-0.128846421837807,0.410406053066254,0.865345120429993,-0.0699237212538719,0.496274620294571,0.780417799949646,0.120299659669399,-0.613576352596283,0.839513540267944,0.0672921165823936,-0.539155781269073,0.902754366397858,-0.128846421837807,0.410406053066254, -0.632351577281952,0.0926535129547119,-0.769120872020721,0.64826375246048,0.10987926274538,-0.753445863723755,0.575262010097504,0.198084592819214,-0.793622136116028,0.346846014261246,0.0781911462545395,-0.934657156467438,0.575262010097504,0.198084592819214,-0.793622136116028,0.791596829891205,0.230182409286499,-0.566030383110046,0.839513540267944,0.0672921165823936,-0.539155781269073,0.346846014261246,0.0781911462545395,-0.934657156467438,0.632351577281952,0.0926535129547119,-0.769120872020721,0.583897352218628,0.1308653652668,-0.801210463047028,0.857279002666473,0.124704919755459,-0.499521195888519,0.845451891422272,0.114010237157345,-0.521740198135376,0.857279002666473,0.124704919755459,-0.499521195888519,0.924593687057495,0.12973764538765,-0.358182460069656,0.911967039108276,0.118431679904461,-0.392797768115997,0.845451891422272,0.114010237157345,-0.521740198135376,0.994663178920746,0.099911667406559,-0.0257435515522957,0.992201030254364,0.0745126605033875,-0.0999240875244141,0.941828370094299,0.0542167797684669,-0.331692397594452,0.952069818973541,0.122024171054363,-0.280487269163132,0.941828370094299,0.0542167797684669,-0.331692397594452,0.904049396514893,0.0348534919321537,-0.426004707813263,0.911967039108276,0.118431679904461,-0.392797768115997,0.952069818973541,0.122024171054363,-0.280487269163132,0.994663178920746,0.099911667406559,-0.0257435515522957,0.990326702594757,0.0927801057696342,0.103173792362213,0.874095916748047,0.0289738848805428,0.484888583421707,0.93198835849762,0.0418618321418762,0.360062897205353,0.874095916748047,0.0289738848805428,0.484888583421707,0.980971336364746,0.185382813215256,0.0576918534934521,0.981276512145996,0.191767975687981,0.0179323554039001,0.93198835849762,0.0418618321418762,0.360062897205353,0.573964834213257,0.327366709709167,-0.750596702098846,0.587326943874359,0.256558895111084,-0.767609655857086,0.610481441020966,0.342256963253021,-0.714263617992401,0.39307427406311,0.31626883149147,-0.863404154777527,0.610481441020966,0.342256963253021,-0.714263617992401,0.911404967308044,0.292803913354874,-0.289148598909378, -0.981276512145996,0.191767975687981,0.0179323554039001,0.39307427406311,0.31626883149147,-0.863404154777527,0.573964834213257,0.327366709709167,-0.750596702098846,0.597319900989532,0.32426705956459,-0.733525633811951,0.742010354995728,0.33788987994194,-0.579008817672729,0.683745205402374,0.336974382400513,-0.647256314754486,0.742010354995728,0.33788987994194,-0.579008817672729,0.733268737792969,0.353318601846695,-0.580932796001434,0.724198579788208,0.337111532688141,-0.601574718952179,0.683745205402374,0.336974382400513,-0.647256314754486,0.893178820610046,0.295912206172943,-0.338626027107239,0.91890150308609,0.17311230301857,-0.354474425315857,0.813067972660065,0.137634322047234,-0.565665185451508,0.773984909057617,0.336944669485092,-0.53611159324646,0.813067972660065,0.137634322047234,-0.565665185451508,0.737434148788452,0.135899171233177,-0.661605775356293,0.724198579788208,0.337111532688141,-0.601574718952179,0.773984909057617,0.336944669485092,-0.53611159324646,0.893178820610046,0.295912206172943,-0.338626027107239,0.870228707790375,0.286943376064301,-0.400456577539444,0.987502992153168,0.157599970698357,0.000459699804196134,0.982389628887177,0.173063978552818,0.0704231411218643,0.987502992153168,0.157599970698357,0.000459699804196134,0.79706084728241,0.281183272600174,-0.534443616867065,0.73923659324646,0.344859093427658,-0.57844752073288,0.982389628887177,0.173063978552818,0.0704231411218643,0.39407479763031,0.414524525403976,-0.820289373397827,0.318130344152451,0.259494483470917,-0.911841869354248,0.262142330408096,0.337864607572556,-0.90395176410675,0.192926704883575,0.364895969629288,-0.910840392112732,0.262142330408096,0.337864607572556,-0.90395176410675,0.661338627338409,0.378908932209015,-0.647347986698151,0.73923659324646,0.344859093427658,-0.57844752073288,0.192926704883575,0.364895969629288,-0.910840392112732,0.39407479763031,0.414524525403976,-0.820289373397827,0.460892260074615,0.366113841533661,-0.808417618274689,0.546176314353943,0.382619827985764,-0.745180189609528,0.493230670690536,0.4366734623909,-0.752356112003326, -0.546176314353943,0.382619827985764,-0.745180189609528,0.441102802753448,0.384839594364166,-0.810756921768188,0.484867662191391,0.426925152540207,-0.763307452201843,0.493230670690536,0.4366734623909,-0.752356112003326,0.593212127685547,0.321026146411896,-0.7382692694664,0.651852667331696,0.292813539505005,-0.699534296989441,0.635222494602203,0.233578324317932,-0.736161351203918,0.488260090351105,0.388118863105774,-0.781643033027649,0.635222494602203,0.233578324317932,-0.736161351203918,0.555911600589752,0.207833155989647,-0.80484014749527,0.484867662191391,0.426925152540207,-0.763307452201843,0.488260090351105,0.388118863105774,-0.781643033027649,0.593212127685547,0.321026146411896,-0.7382692694664,0.466656118631363,0.295668810606003,-0.833553910255432,0.76337343454361,0.199616685509682,-0.614340484142303,0.782543540000916,0.231308832764626,-0.578032732009888,0.76337343454361,0.199616685509682,-0.614340484142303,0.491225898265839,0.251587748527527,-0.833906888961792,0.381466448307037,0.306202560663223,-0.872194528579712,0.782543540000916,0.231308832764626,-0.578032732009888,0.261563330888748,0.344951987266541,-0.901439249515533,0.199421912431717,0.25212886929512,-0.946922361850739,0.184018075466156,0.307996332645416,-0.933421492576599,0.0890832617878914,0.300667136907578,-0.949559569358826,0.184018075466156,0.307996332645416,-0.933421492576599,0.359844118356705,0.337632149457932,-0.869779706001282,0.381466448307037,0.306202560663223,-0.872194528579712,0.0890832617878914,0.300667136907578,-0.949559569358826,0.261563330888748,0.344951987266541,-0.901439249515533,0.316920131444931,0.322103083133698,-0.892082452774048,0.382658123970032,0.343927413225174,-0.857488572597504,0.324567437171936,0.37573054432869,-0.868033766746521,0.382658123970032,0.343927413225174,-0.857488572597504,0.247937545180321,0.356415033340454,-0.900830328464508,0.259875953197479,0.378932803869247,-0.888186097145081,0.324567437171936,0.37573054432869,-0.868033766746521,0.368675380945206,0.098903588950634,-0.924281597137451,0.358443260192871,0.143149480223656,-0.922511041164398, -0.167164608836174,0.339099526405334,-0.925779402256012,0.16628709435463,0.278749406337738,-0.94585794210434,0.358443260192871,0.143149480223656,-0.922511041164398,0.331366807222366,0.181360095739365,-0.925907373428345,0.259875953197479,0.378932803869247,-0.888186097145081,0.167164608836174,0.339099526405334,-0.925779402256012,0.689390957355499,0.722647607326508,0.0502060428261757,0.59618866443634,0.802758991718292,0.0117065347731113,0.508355557918549,0.858610689640045,0.0660479143261909,0.631899356842041,0.769888997077942,0.0892974659800529,0.59618866443634,0.802758991718292,0.0117065347731113,0.537430226802826,0.842876613140106,-0.026979073882103,0.419248729944229,0.906760811805725,0.0448921993374825,0.508355557918549,0.858610689640045,0.0660479143261909,0.508355557918549,0.858610689640045,0.0660479143261909,0.419248729944229,0.906760811805725,0.0448921993374825,0.388052999973297,0.919572174549103,0.0616604872047901,0.439705938100815,0.896298825740814,0.0575079284608364,0.631899356842041,0.769888997077942,0.0892974659800529,0.508355557918549,0.858610689640045,0.0660479143261909,0.439705938100815,0.896298825740814,0.0575079284608364,0.584385097026825,0.809152603149414,0.0613689199090004,0.400216519832611,0.909813821315765,0.109843462705612,0.531966328620911,0.842715263366699,0.082721471786499,0.68889582157135,0.720924198627472,-0.0754383578896523,0.661108434200287,0.746832072734833,-0.0719538405537605,0.531966328620911,0.842715263366699,0.082721471786499,0.725338160991669,0.688391089439392,0.0015043233288452,0.826967298984528,0.545665800571442,-0.13554984331131,0.68889582157135,0.720924198627472,-0.0754383578896523,0.68889582157135,0.720924198627472,-0.0754383578896523,0.826967298984528,0.545665800571442,-0.13554984331131,0.930621147155762,0.237400963902473,-0.278540879487991,0.902696073055267,0.338164865970612,-0.266053199768066,0.661108434200287,0.746832072734833,-0.0719538405537605,0.68889582157135,0.720924198627472,-0.0754383578896523,0.902696073055267,0.338164865970612,-0.266053199768066,0.90697705745697,0.336921870708466,-0.252737581729889, -0.485422134399414,0.856925666332245,-0.173331663012505,0.697756588459015,0.674263179302216,-0.241878002882004,0.760233938694,0.559834182262421,-0.329590559005737,0.690989315509796,0.646738827228546,-0.322897374629974,0.697756588459015,0.674263179302216,-0.241878002882004,0.893243849277496,0.298696398735046,-0.335999757051468,0.88551664352417,0.269461572170258,-0.378484547138214,0.760233938694,0.559834182262421,-0.329590559005737,0.760233938694,0.559834182262421,-0.329590559005737,0.88551664352417,0.269461572170258,-0.378484547138214,0.886994004249573,0.163238406181335,-0.431966125965118,0.862371385097504,0.269467294216156,-0.428605705499649,0.690989315509796,0.646738827228546,-0.322897374629974,0.760233938694,0.559834182262421,-0.329590559005737,0.862371385097504,0.269467294216156,-0.428605705499649,0.853890836238861,0.319215506315231,-0.411061942577362,0.466593980789185,0.848514020442963,-0.249627456068993,0.686749696731567,0.659487128257751,-0.30569863319397,0.759795725345612,0.538528919219971,-0.364276021718979,0.674863219261169,0.646935701370239,-0.355012387037277,0.686749696731567,0.659487128257751,-0.30569863319397,0.851244390010834,0.220117658376694,-0.476373016834259,0.882848680019379,0.183537691831589,-0.432310283184052,0.759795725345612,0.538528919219971,-0.364276021718979,0.759795725345612,0.538528919219971,-0.364276021718979,0.882848680019379,0.183537691831589,-0.432310283184052,0.889630854129791,0.0999864265322685,-0.44560033082962,0.869417071342468,0.207068249583244,-0.448594093322754,0.674863219261169,0.646935701370239,-0.355012387037277,0.759795725345612,0.538528919219971,-0.364276021718979,0.869417071342468,0.207068249583244,-0.448594093322754,0.867344975471497,0.2725790143013,-0.416429340839386,0.373198360204697,0.847398638725281,-0.377675265073776,0.526915609836578,0.755902051925659,-0.388551205396652,0.561478316783905,0.701553881168365,-0.438821583986282,0.485332608222961,0.750634133815765,-0.448330998420715,0.526915609836578,0.755902051925659,-0.388551205396652,0.739257872104645,0.406338691711426,-0.537016332149506, -0.750775992870331,0.394683867692947,-0.529679238796234,0.561478316783905,0.701553881168365,-0.438821583986282,0.561478316783905,0.701553881168365,-0.438821583986282,0.750775992870331,0.394683867692947,-0.529679238796234,0.748709142208099,0.238583773374557,-0.61847585439682,0.686774015426636,0.378295749425888,-0.620671927928925,0.485332608222961,0.750634133815765,-0.448330998420715,0.561478316783905,0.701553881168365,-0.438821583986282,0.686774015426636,0.378295749425888,-0.620671927928925,0.656255125999451,0.448537945747375,-0.60674774646759,0.279201298952103,0.82872998714447,-0.485028952360153,0.35271617770195,0.785173654556274,-0.509012281894684,0.360770851373672,0.750374257564545,-0.553879916667938,0.313253462314606,0.766022562980652,-0.561321318149567,0.35271617770195,0.785173654556274,-0.509012281894684,0.49078169465065,0.501620471477509,-0.712397575378418,0.511013150215149,0.496467232704163,-0.701702117919922,0.360770851373672,0.750374257564545,-0.553879916667938,0.360770851373672,0.750374257564545,-0.553879916667938,0.511013150215149,0.496467232704163,-0.701702117919922,0.518530607223511,0.333309799432755,-0.787420272827148,0.446554064750671,0.475454419851303,-0.757979273796082,0.313253462314606,0.766022562980652,-0.561321318149567,0.360770851373672,0.750374257564545,-0.553879916667938,0.446554064750671,0.475454419851303,-0.757979273796082,0.402486979961395,0.522201836109161,-0.751870632171631,0.230574190616608,0.802635431289673,-0.550101757049561,0.254233181476593,0.781696736812592,-0.56948721408844,0.248894140124321,0.741914570331573,-0.622586905956268,0.226110190153122,0.755864500999451,-0.614445269107819,0.254233181476593,0.781696736812592,-0.56948721408844,0.331205278635025,0.555228888988495,-0.762904942035675,0.332315802574158,0.540797293186188,-0.772725343704224,0.248894140124321,0.741914570331573,-0.622586905956268,0.248894140124321,0.741914570331573,-0.622586905956268,0.332315802574158,0.540797293186188,-0.772725343704224,0.330113887786865,0.373487502336502,-0.866909325122833,0.281423538923264,0.504726886749268,-0.816119790077209, -0.226110190153122,0.755864500999451,-0.614445269107819,0.248894140124321,0.741914570331573,-0.622586905956268,0.281423538923264,0.504726886749268,-0.816119790077209,0.254412084817886,0.533420383930206,-0.806682765483856,0.584385097026825,0.809152603149414,0.0613689199090004,0.439705938100815,0.896298825740814,0.0575079284608364,0.35967755317688,0.930222868919373,0.0729219540953636,0.519965469837189,0.854100704193115,0.0121630895882845,0.439705938100815,0.896298825740814,0.0575079284608364,0.388052999973297,0.919572174549103,0.0616604872047901,0.198442324995995,0.965159118175507,0.170553311705589,0.35967755317688,0.930222868919373,0.0729219540953636,0.422221720218658,0.90238630771637,0.0861846655607224,0.198442324995995,0.965159118175507,0.170553311705589,0.388052999973297,0.919572174549103,0.0616604872047901,0.419248729944229,0.906760811805725,0.0448921993374825,0.422221720218658,0.90238630771637,0.0861846655607224,0.419248729944229,0.906760811805725,0.0448921993374825,0.537430226802826,0.842876613140106,-0.026979073882103,0.603810250759125,0.796887397766113,0.0195919945836067,0.725338160991669,0.688391089439392,0.0015043233288452,0.531966328620911,0.842715263366699,0.082721471786499,0.472208082675934,0.874218463897705,0.112967371940613,0.670208394527435,0.740215718746185,0.0538638904690742,0.531966328620911,0.842715263366699,0.082721471786499,0.400216519832611,0.909813821315765,0.109843462705612,0.30128887295723,0.942227482795715,0.146398097276688,0.472208082675934,0.874218463897705,0.112967371940613,0.472208082675934,0.874218463897705,0.112967371940613,0.30128887295723,0.942227482795715,0.146398097276688,0.198442324995995,0.965159118175507,0.170553311705589,0.422221720218658,0.90238630771637,0.0861846655607224,0.670208394527435,0.740215718746185,0.0538638904690742,0.472208082675934,0.874218463897705,0.112967371940613,0.422221720218658,0.90238630771637,0.0861846655607224,0.603810250759125,0.796887397766113,0.0195919945836067,0.466133117675781,0.879672467708588,-0.0943194255232811,0.441829472780228,0.897083759307861,0.00524313747882843, -0.673779904842377,0.730862021446228,-0.108909793198109,0.701139748096466,0.688596963882446,-0.185033157467842,0.441829472780228,0.897083759307861,0.00524313747882843,0.400216519832611,0.909813821315765,0.109843462705612,0.661108434200287,0.746832072734833,-0.0719538405537605,0.673779904842377,0.730862021446228,-0.108909793198109,0.673779904842377,0.730862021446228,-0.108909793198109,0.661108434200287,0.746832072734833,-0.0719538405537605,0.90697705745697,0.336921870708466,-0.252737581729889,0.919898808002472,0.297293335199356,-0.255739659070969,0.701139748096466,0.688596963882446,-0.185033157467842,0.673779904842377,0.730862021446228,-0.108909793198109,0.919898808002472,0.297293335199356,-0.255739659070969,0.920147359371185,0.269906520843506,-0.283688962459564,0.893243849277496,0.298696398735046,-0.335999757051468,0.697756588459015,0.674263179302216,-0.241878002882004,0.695905327796936,0.684414744377136,-0.217467725276947,0.907508671283722,0.28566175699234,-0.307937324047089,0.697756588459015,0.674263179302216,-0.241878002882004,0.485422134399414,0.856925666332245,-0.173331663012505,0.468759685754776,0.874259650707245,-0.126231506466866,0.695905327796936,0.684414744377136,-0.217467725276947,0.695905327796936,0.684414744377136,-0.217467725276947,0.468759685754776,0.874259650707245,-0.126231506466866,0.466133117675781,0.879672467708588,-0.0943194255232811,0.701139748096466,0.688596963882446,-0.185033157467842,0.907508671283722,0.28566175699234,-0.307937324047089,0.695905327796936,0.684414744377136,-0.217467725276947,0.701139748096466,0.688596963882446,-0.185033157467842,0.920147359371185,0.269906520843506,-0.283688962459564,0.462169378995895,0.857039988040924,-0.227776110172272,0.459614187479019,0.863845646381378,-0.206217125058174,0.667514383792877,0.670128285884857,-0.324580758810043,0.672114908695221,0.664877772331238,-0.325881898403168,0.459614187479019,0.863845646381378,-0.206217125058174,0.485422134399414,0.856925666332245,-0.173331663012505,0.690989315509796,0.646738827228546,-0.322897374629974,0.667514383792877,0.670128285884857,-0.324580758810043, -0.667514383792877,0.670128285884857,-0.324580758810043,0.690989315509796,0.646738827228546,-0.322897374629974,0.853890836238861,0.319215506315231,-0.411061942577362,0.847729325294495,0.33799347281456,-0.408797353506088,0.672114908695221,0.664877772331238,-0.325881898403168,0.667514383792877,0.670128285884857,-0.324580758810043,0.847729325294495,0.33799347281456,-0.408797353506088,0.82975310087204,0.32433557510376,-0.454220652580261,0.851244390010834,0.220117658376694,-0.476373016834259,0.686749696731567,0.659487128257751,-0.30569863319397,0.672002077102661,0.669284045696259,-0.316973149776459,0.821320593357086,0.276728183031082,-0.498852610588074,0.686749696731567,0.659487128257751,-0.30569863319397,0.466593980789185,0.848514020442963,-0.249627456068993,0.453963726758957,0.862245619297028,-0.224609419703484,0.672002077102661,0.669284045696259,-0.316973149776459,0.672002077102661,0.669284045696259,-0.316973149776459,0.453963726758957,0.862245619297028,-0.224609419703484,0.462169378995895,0.857039988040924,-0.227776110172272,0.672114908695221,0.664877772331238,-0.325881898403168,0.821320593357086,0.276728183031082,-0.498852610588074,0.672002077102661,0.669284045696259,-0.316973149776459,0.672114908695221,0.664877772331238,-0.325881898403168,0.82975310087204,0.32433557510376,-0.454220652580261,0.412412017583847,0.853519916534424,-0.318465173244476,0.425431042909622,0.863421499729156,-0.271130442619324,0.621414244174957,0.6958829164505,-0.359988003969193,0.585652112960815,0.712855875492096,-0.385808438062668,0.425431042909622,0.863421499729156,-0.271130442619324,0.466593980789185,0.848514020442963,-0.249627456068993,0.674863219261169,0.646935701370239,-0.355012387037277,0.621414244174957,0.6958829164505,-0.359988003969193,0.621414244174957,0.6958829164505,-0.359988003969193,0.674863219261169,0.646935701370239,-0.355012387037277,0.867344975471497,0.2725790143013,-0.416429340839386,0.849435150623322,0.347480028867722,-0.397136718034744,0.585652112960815,0.712855875492096,-0.385808438062668,0.621414244174957,0.6958829164505,-0.359988003969193, -0.849435150623322,0.347480028867722,-0.397136718034744,0.792701959609985,0.400867879390717,-0.459269553422928,0.739257872104645,0.406338691711426,-0.537016332149506,0.526915609836578,0.755902051925659,-0.388551205396652,0.548983097076416,0.73019552230835,-0.406733363866806,0.739202260971069,0.412130922079086,-0.532661318778992,0.526915609836578,0.755902051925659,-0.388551205396652,0.373198360204697,0.847398638725281,-0.377675265073776,0.391010999679565,0.849661409854889,-0.35381618142128,0.548983097076416,0.73019552230835,-0.406733363866806,0.548983097076416,0.73019552230835,-0.406733363866806,0.391010999679565,0.849661409854889,-0.35381618142128,0.412412017583847,0.853519916534424,-0.318465173244476,0.585652112960815,0.712855875492096,-0.385808438062668,0.739202260971069,0.412130922079086,-0.532661318778992,0.548983097076416,0.73019552230835,-0.406733363866806,0.585652112960815,0.712855875492096,-0.385808438062668,0.792701959609985,0.400867879390717,-0.459269553422928,0.313833922147751,0.838987350463867,-0.444531738758087,0.334130376577377,0.851143836975098,-0.404859244823456,0.43641385436058,0.76430344581604,-0.474745333194733,0.401204943656921,0.759196937084198,-0.512498438358307,0.334130376577377,0.851143836975098,-0.404859244823456,0.373198360204697,0.847398638725281,-0.377675265073776,0.485332608222961,0.750634133815765,-0.448330998420715,0.43641385436058,0.76430344581604,-0.474745333194733,0.43641385436058,0.76430344581604,-0.474745333194733,0.485332608222961,0.750634133815765,-0.448330998420715,0.656255125999451,0.448537945747375,-0.60674774646759,0.619479656219482,0.509791851043701,-0.596956551074982,0.401204943656921,0.759196937084198,-0.512498438358307,0.43641385436058,0.76430344581604,-0.474745333194733,0.619479656219482,0.509791851043701,-0.596956551074982,0.545172929763794,0.533064484596252,-0.647015333175659,0.49078169465065,0.501620471477509,-0.712397575378418,0.35271617770195,0.785173654556274,-0.509012281894684,0.37129145860672,0.761427223682404,-0.531386196613312,0.484879583120346,0.517203330993652,-0.705260574817657, -0.35271617770195,0.785173654556274,-0.509012281894684,0.279201298952103,0.82872998714447,-0.485028952360153,0.297653019428253,0.831040143966675,-0.469867169857025,0.37129145860672,0.761427223682404,-0.531386196613312,0.37129145860672,0.761427223682404,-0.531386196613312,0.297653019428253,0.831040143966675,-0.469867169857025,0.313833922147751,0.838987350463867,-0.444531738758087,0.401204943656921,0.759196937084198,-0.512498438358307,0.484879583120346,0.517203330993652,-0.705260574817657,0.37129145860672,0.761427223682404,-0.531386196613312,0.401204943656921,0.759196937084198,-0.512498438358307,0.545172929763794,0.533064484596252,-0.647015333175659,0.24184961616993,0.806344985961914,-0.539737343788147,0.256998717784882,0.818753182888031,-0.513414859771729,0.292153120040894,0.757225751876831,-0.584170877933502,0.279430031776428,0.75042325258255,-0.59898567199707,0.256998717784882,0.818753182888031,-0.513414859771729,0.279201298952103,0.82872998714447,-0.485028952360153,0.313253462314606,0.766022562980652,-0.561321318149567,0.292153120040894,0.757225751876831,-0.584170877933502,0.292153120040894,0.757225751876831,-0.584170877933502,0.313253462314606,0.766022562980652,-0.561321318149567,0.402486979961395,0.522201836109161,-0.751870632171631,0.378176629543304,0.528110861778259,-0.760316669940948,0.279430031776428,0.75042325258255,-0.59898567199707,0.292153120040894,0.757225751876831,-0.584170877933502,0.378176629543304,0.528110861778259,-0.760316669940948,0.355381429195404,0.524076342582703,-0.773981869220734,0.331205278635025,0.555228888988495,-0.762904942035675,0.254233181476593,0.781696736812592,-0.56948721408844,0.265347182750702,0.7644984126091,-0.587480247020721,0.335152059793472,0.538876950740814,-0.772841930389404,0.254233181476593,0.781696736812592,-0.56948721408844,0.230574190616608,0.802635431289673,-0.550101757049561,0.234481707215309,0.799277126789093,-0.553330361843109,0.265347182750702,0.7644984126091,-0.587480247020721,0.265347182750702,0.7644984126091,-0.587480247020721,0.234481707215309,0.799277126789093,-0.553330361843109, -0.24184961616993,0.806344985961914,-0.539737343788147,0.279430031776428,0.75042325258255,-0.59898567199707,0.335152059793472,0.538876950740814,-0.772841930389404,0.265347182750702,0.7644984126091,-0.587480247020721,0.279430031776428,0.75042325258255,-0.59898567199707,0.355381429195404,0.524076342582703,-0.773981869220734,0.24184961616993,0.806344985961914,-0.539737343788147,0.234481707215309,0.799277126789093,-0.553330361843109,0.231510609388351,0.798652470111847,-0.555479228496552,0.234360799193382,0.808445155620575,-0.539899587631226,0.234481707215309,0.799277126789093,-0.553330361843109,0.230574190616608,0.802635431289673,-0.550101757049561,0.227301627397537,0.797038078308105,-0.559521317481995,0.231510609388351,0.798652470111847,-0.555479228496552,0.231510609388351,0.798652470111847,-0.555479228496552,0.227301627397537,0.797038078308105,-0.559521317481995,0.176429450511932,0.811212837696075,-0.557500243186951,0.183887124061584,0.826946556568146,-0.53136157989502,0.234360799193382,0.808445155620575,-0.539899587631226,0.231510609388351,0.798652470111847,-0.555479228496552,0.183887124061584,0.826946556568146,-0.53136157989502,0.189263314008713,0.839074850082397,-0.510031998157501,7.32525177227217e-06,0.889752805233002,-0.456442594528198,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,0.0934414938092232,0.887089192867279,-0.452041357755661,0.087555430829525,0.878067910671234,-0.470457851886749,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,1.3388275874604e-05,0.905516862869263,-0.424310177564621,0.0996449142694473,0.894337713718414,-0.436154842376709,0.0934414938092232,0.887089192867279,-0.452041357755661,0.0934414938092232,0.887089192867279,-0.452041357755661,0.0996449142694473,0.894337713718414,-0.436154842376709,0.202573224902153,0.861268758773804,-0.466025948524475,0.194773226976395,0.850903809070587,-0.487879246473312,0.087555430829525,0.878067910671234,-0.470457851886749,0.0934414938092232,0.887089192867279,-0.452041357755661,0.194773226976395,0.850903809070587,-0.487879246473312,0.189263314008713,0.839074850082397,-0.510031998157501, -1.3388275874604e-05,0.905516862869263,-0.424310177564621,-1.13681444418035e-05,0.910587549209595,-0.4133161008358,0.105113156139851,0.899474859237671,-0.424141615629196,0.0996449142694473,0.894337713718414,-0.436154842376709,-1.13681444418035e-05,0.910587549209595,-0.4133161008358,4.54438037422733e-07,0.914030373096466,-0.405645698308945,0.110359065234661,0.9026979804039,-0.415881305932999,0.105113156139851,0.899474859237671,-0.424141615629196,0.105113156139851,0.899474859237671,-0.424141615629196,0.110359065234661,0.9026979804039,-0.415881305932999,0.220452040433884,0.873438954353333,-0.434171885251999,0.211023345589638,0.868739426136017,-0.44806370139122,0.0996449142694473,0.894337713718414,-0.436154842376709,0.105113156139851,0.899474859237671,-0.424141615629196,0.211023345589638,0.868739426136017,-0.44806370139122,0.202573224902153,0.861268758773804,-0.466025948524475,4.54438037422733e-07,0.914030373096466,-0.405645698308945,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,0.115020632743835,0.904199481010437,-0.411331236362457,0.110359065234661,0.9026979804039,-0.415881305932999,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,1.50015866893227e-05,0.915112435817719,-0.403198808431625,0.118767149746418,0.903509318828583,-0.41178297996521,0.115020632743835,0.904199481010437,-0.411331236362457,0.115020632743835,0.904199481010437,-0.411331236362457,0.118767149746418,0.903509318828583,-0.41178297996521,0.241002172231674,0.876779854297638,-0.41614305973053,0.230519369244576,0.87637585401535,-0.422878295183182,0.110359065234661,0.9026979804039,-0.415881305932999,0.115020632743835,0.904199481010437,-0.411331236362457,0.230519369244576,0.87637585401535,-0.422878295183182,0.220452040433884,0.873438954353333,-0.434171885251999,1.50015866893227e-05,0.915112435817719,-0.403198808431625,-3.50793754932965e-07,0.927993059158325,-0.372597485780716,0.122044138610363,0.91583776473999,-0.382552415132523,0.118767149746418,0.903509318828583,-0.41178297996521,-3.50793754932965e-07,0.927993059158325,-0.372597485780716, -1.05083618109347e-05,0.954916179180145,-0.296875447034836,0.122964322566986,0.942988991737366,-0.30927586555481,0.122044138610363,0.91583776473999,-0.382552415132523,0.122044138610363,0.91583776473999,-0.382552415132523,0.122964322566986,0.942988991737366,-0.30927586555481,0.262972354888916,0.908594965934753,-0.324500799179077,0.252998828887939,0.886166572570801,-0.388201594352722,0.118767149746418,0.903509318828583,-0.41178297996521,0.122044138610363,0.91583776473999,-0.382552415132523,0.252998828887939,0.886166572570801,-0.388201594352722,0.241002172231674,0.876779854297638,-0.41614305973053,1.05083618109347e-05,0.954916179180145,-0.296875447034836,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,0.120133072137833,0.963482260704041,-0.239311322569847,0.122964322566986,0.942988991737366,-0.30927586555481,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,6.77310254104668e-06,0.98437488079071,-0.176085412502289,0.115609802305698,0.974830448627472,-0.190630197525024,0.120133072137833,0.963482260704041,-0.239311322569847,0.120133072137833,0.963482260704041,-0.239311322569847,0.115609802305698,0.974830448627472,-0.190630197525024,0.268075793981552,0.938277304172516,-0.218565970659256,0.267176300287247,0.927280128002167,-0.262237429618835,0.122964322566986,0.942988991737366,-0.30927586555481,0.120133072137833,0.963482260704041,-0.239311322569847,0.267176300287247,0.927280128002167,-0.262237429618835,0.262972354888916,0.908594965934753,-0.324500799179077,6.77310254104668e-06,0.98437488079071,-0.176085412502289,9.92930395682379e-08,0.989445388317108,-0.144906148314476,0.111164353787899,0.980962216854095,-0.159234330058098,0.115609802305698,0.974830448627472,-0.190630197525024,9.92930395682379e-08,0.989445388317108,-0.144906148314476,2.06756514131712e-08,0.990903377532959,-0.134574607014656,0.107345096766949,0.983264446258545,-0.147200718522072,0.111164353787899,0.980962216854095,-0.159234330058098,0.111164353787899,0.980962216854095,-0.159234330058098,0.107345096766949,0.983264446258545,-0.147200718522072, -0.265947252511978,0.947537899017334,-0.177324488759041,0.267510741949081,0.944651663303375,-0.189924359321594,0.115609802305698,0.974830448627472,-0.190630197525024,0.111164353787899,0.980962216854095,-0.159234330058098,0.267510741949081,0.944651663303375,-0.189924359321594,0.268075793981552,0.938277304172516,-0.218565970659256,2.06756514131712e-08,0.990903377532959,-0.134574607014656,1.95083682541508e-09,0.994212210178375,-0.107433840632439,0.104651518166065,0.987427949905396,-0.118466041982174,0.107345096766949,0.983264446258545,-0.147200718522072,1.95083682541508e-09,0.994212210178375,-0.107433840632439,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,0.103175163269043,0.993301212787628,-0.052034717053175,0.104651518166065,0.987427949905396,-0.118466041982174,0.104651518166065,0.987427949905396,-0.118466041982174,0.103175163269043,0.993301212787628,-0.052034717053175,0.262632310390472,0.961123704910278,-0.0852374881505966,0.264466553926468,0.952880501747131,-0.148580998182297,0.107345096766949,0.983264446258545,-0.147200718522072,0.104651518166065,0.987427949905396,-0.118466041982174,0.264466553926468,0.952880501747131,-0.148580998182297,0.265947252511978,0.947537899017334,-0.177324488759041,0.239230915904045,0.970812439918518,0.0170813668519258,0.086555078625679,0.993677139282227,0.0715123042464256,0.065864622592926,0.979993760585785,0.187813878059387,0.22064197063446,0.969886660575867,0.103136040270329,0.086555078625679,0.993677139282227,0.0715123042464256,2.26350630327943e-06,0.99591463804245,0.0902996808290482,2.28790213441243e-06,0.976968586444855,0.21338301897049,0.065864622592926,0.979993760585785,0.187813878059387,0.065864622592926,0.979993760585785,0.187813878059387,2.28790213441243e-06,0.976968586444855,0.21338301897049,3.1286046578316e-05,0.933347523212433,0.35897421836853,0.108371868729591,0.959608852863312,0.259627461433411,0.22064197063446,0.969886660575867,0.103136040270329,0.065864622592926,0.979993760585785,0.187813878059387,0.108371868729591,0.959608852863312,0.259627461433411,0.222897455096245,0.956485331058502,0.188288345932961, -0.161216169595718,-0.411513656377792,0.897031664848328,0.0692463666200638,-0.40363010764122,0.912298023700714,0.109529964625835,-0.463935971260071,0.879071414470673,0.17542377114296,-0.492901206016541,0.852217674255371,0.161216169595718,-0.411513656377792,0.897031664848328,0.17542377114296,-0.492901206016541,0.852217674255371,0.257376343011856,-0.520962178707123,0.813852488994598,0.272015511989594,-0.415265917778015,0.868079364299774,0.56542831659317,-0.511293947696686,0.647201299667358,0.23664890229702,-0.448689639568329,0.86178594827652,0.282550185918808,-0.625282943248749,0.727452158927917,0.517384827136993,-0.659253060817719,0.545617580413818,0.56542831659317,-0.511293947696686,0.647201299667358,0.517384827136993,-0.659253060817719,0.545617580413818,0.651794612407684,-0.644794881343842,0.399253517389297,0.731242716312408,-0.51183021068573,0.450903505086899,0.792877972126007,-0.21465927362442,0.570320785045624,0.581863045692444,-0.243657320737839,0.77592945098877,0.568074822425842,-0.381185531616211,0.729375541210175,0.725219190120697,-0.381685614585876,0.573038578033447,0.792877972126007,-0.21465927362442,0.570320785045624,0.725219190120697,-0.381685614585876,0.573038578033447,0.801258563995361,-0.360501676797867,0.477517813444138,0.867118418216705,-0.171389430761337,0.467687219381332,0.778084576129913,-0.38656085729599,0.495131373405457,0.805659294128418,-0.350429505109787,0.477611005306244,0.860090136528015,-0.273277372121811,0.430771857500076,0.794207036495209,-0.3851597905159,0.469986349344254,-0.0601249672472477,0.0759568735957146,0.995296716690063,-0.0524753332138062,-0.190004914999008,0.98037976026535,0.142577975988388,-0.18547697365284,0.972249865531921,0.131848931312561,0.144873842597008,0.980626046657562,-0.0524753332138062,-0.190004914999008,0.98037976026535,-0.0078623266890645,-0.305302023887634,0.952223122119904,0.176588729023933,-0.327380537986755,0.928244829177856,0.142577975988388,-0.18547697365284,0.972249865531921,0.142577975988388,-0.18547697365284,0.972249865531921,0.176588729023933,-0.327380537986755,0.928244829177856, -0.373119860887527,-0.338860630989075,0.863686800003052,0.361900568008423,-0.171418622136116,0.916320621967316,0.131848931312561,0.144873842597008,0.980626046657562,0.142577975988388,-0.18547697365284,0.972249865531921,0.361900568008423,-0.171418622136116,0.916320621967316,0.338340848684311,0.210584998130798,0.917158365249634,0.484088093042374,-0.233318135142326,0.843339383602142,0.503244817256927,-0.229387789964676,0.833142101764679,0.53625351190567,-0.0949005037546158,0.838704824447632,0.45816645026207,-0.046262338757515,0.887661695480347,0.484088093042374,-0.233318135142326,0.843339383602142,0.45816645026207,-0.046262338757515,0.887661695480347,0.510328412055969,-0.0449175722897053,0.858805775642395,0.46940404176712,-0.239579230546951,0.849859774112701,0.297978579998016,-0.287405878305435,0.910278260707855,0.317577600479126,-0.284227937459946,0.904631972312927,0.316253304481506,-0.270987331867218,0.9091477394104,0.299889504909515,-0.273949265480042,0.913793206214905,0.317577600479126,-0.284227937459946,0.904631972312927,0.328150719404221,-0.282415062189102,0.901420533657074,0.326374977827072,-0.270279616117477,0.905774891376495,0.316253304481506,-0.270987331867218,0.9091477394104,0.548696398735046,0.668518900871277,0.502010822296143,0.808956742286682,-0.0573622770607471,0.585062980651855,0.992170214653015,0.023433031514287,0.122675113379955,0.624202966690063,0.76788067817688,0.143978625535965,0.808956742286682,-0.0573622770607471,0.585062980651855,0.746551871299744,-0.328548848628998,0.578546464443207,0.948021054267883,-0.254489004611969,0.191027164459229,0.992170214653015,0.023433031514287,0.122675113379955,0.992170214653015,0.023433031514287,0.122675113379955,0.948021054267883,-0.254489004611969,0.191027164459229,0.968433320522308,-0.201979890465736,0.146085485816002,0.993971467018127,0.0660507827997208,0.0875101536512375,0.624202966690063,0.76788067817688,0.143978625535965,0.992170214653015,0.023433031514287,0.122675113379955,0.993971467018127,0.0660507827997208,0.0875101536512375,0.601027071475983,0.790183782577515,0.119900159537792, -0.830573439598083,-0.143151998519897,0.538196206092834,0.820954740047455,-0.140668287873268,0.553394675254822,0.818676471710205,-0.0259896032512188,0.573666512966156,0.824237048625946,-0.0209046006202698,0.565859079360962,0.830573439598083,-0.143151998519897,0.538196206092834,0.824237048625946,-0.0209046006202698,0.565859079360962,0.846161961555481,-0.03146817907691,0.531995892524719,0.82776153087616,-0.14987875521183,0.540691316127777,0.795167982578278,-0.160252347588539,0.584830820560455,0.851172387599945,-0.136488497257233,0.506829798221588,0.842010140419006,-0.127670571208,0.524136602878571,0.784613907337189,-0.148418456315994,0.601957619190216,0.851172387599945,-0.136488497257233,0.506829798221588,0.873401761054993,-0.126450717449188,0.470297425985336,0.869021952152252,-0.121415354311466,0.479644626379013,0.842010140419006,-0.127670571208,0.524136602878571,0.394051760435104,0.804004788398743,0.445308446884155,0.726607739925385,0.324426382780075,0.605630815029144,0.864055693149567,0.357233077287674,0.354672223329544,0.437616169452667,0.872551083564758,0.217133089900017,0.726607739925385,0.324426382780075,0.605630815029144,0.816722750663757,0.0452906414866447,0.575250089168549,0.942134022712708,0.0402702987194061,0.332808822393417,0.864055693149567,0.357233077287674,0.354672223329544,0.864055693149567,0.357233077287674,0.354672223329544,0.942134022712708,0.0402702987194061,0.332808822393417,0.933599233627319,0.0175865385681391,0.357887089252472,0.856952428817749,0.343463450670242,0.384272277355194,0.437616169452667,0.872551083564758,0.217133089900017,0.864055693149567,0.357233077287674,0.354672223329544,0.856952428817749,0.343463450670242,0.384272277355194,0.398877888917923,0.881957292556763,0.251093447208405,0.944757699966431,-0.0427818447351456,0.32496565580368,0.932468891143799,-0.0516576319932938,0.357537627220154,0.87207442522049,0.226961046457291,0.43356055021286,0.874410927295685,0.288264513015747,0.39026814699173,0.944757699966431,-0.0427818447351456,0.32496565580368,0.874410927295685,0.288264513015747,0.39026814699173, -0.890287518501282,0.311503052711487,0.33219587802887,0.940891146659851,-0.0501523986458778,0.33497542142868,0.832961440086365,-0.167933389544487,0.52723217010498,0.840416014194489,-0.164809569716454,0.51627379655838,0.839224100112915,-0.149475067853928,0.522838532924652,0.832327723503113,-0.150266587734222,0.533526301383972,0.840416014194489,-0.164809569716454,0.51627379655838,0.859917342662811,-0.152356714010239,0.487164944410324,0.859896123409271,-0.142539709806442,0.490164369344711,0.839224100112915,-0.149475067853928,0.522838532924652,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.948014378547668,-0.114206790924072,-0.297027975320816,0.948680698871613,0.0530499294400215,-0.311754167079926,0.998457312583923,0.0292231291532516,0.0472116097807884,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.998457312583923,0.0292231291532516,0.0472116097807884,0.995254218578339,0.0549554899334908,0.0803044810891151,0.985689699649811,-0.159650921821594,0.0541065037250519,0.963031113147736,-0.205645516514778,-0.174013987183571,0.936839520931244,-0.322951912879944,-0.134289890527725,0.998716592788696,0.000607570458669215,0.0506442487239838,0.997418582439423,0.00669842446222901,0.0714935287833214,0.963031113147736,-0.205645516514778,-0.174013987183571,0.997418582439423,0.00669842446222901,0.0714935287833214,0.996245980262756,0.0132977534085512,0.085540197789669,0.953685641288757,-0.109224699437618,-0.280273914337158,0.998301982879639,0.0185902323573828,0.0552037134766579,0.997261524200439,0.0188792794942856,0.0715057924389839,0.997716248035431,0.0194510370492935,0.0646827295422554,0.998378157615662,0.0214733984321356,0.0527236349880695,0.997261524200439,0.0188792794942856,0.0715057924389839,0.98707377910614,0.00784813892096281,0.160074472427368,0.991491615772247,0.00140663899946958,0.130163043737411,0.997716248035431,0.0194510370492935,0.0646827295422554,0.0943290740251541,0.0288522019982338,0.995122849941254,0.0843937322497368,-0.217295467853546,0.972450733184814,0.185343086719513,-0.194251209497452,0.963283181190491, -0.192267388105392,0.0386416390538216,0.980581521987915,0.0843937322497368,-0.217295467853546,0.972450733184814,0.0625188425183296,-0.333361506462097,0.940723896026611,0.166856989264488,-0.326760053634644,0.930261552333832,0.185343086719513,-0.194251209497452,0.963283181190491,0.185343086719513,-0.194251209497452,0.963283181190491,0.166856989264488,-0.326760053634644,0.930261552333832,0.287619531154633,-0.320103913545609,0.902667462825775,0.309647798538208,-0.164630636572838,0.936490893363953,0.192267388105392,0.0386416390538216,0.980581521987915,0.185343086719513,-0.194251209497452,0.963283181190491,0.309647798538208,-0.164630636572838,0.936490893363953,0.311008453369141,0.129438325762749,0.941551625728607,0.80627965927124,0.405445098876953,0.430728703737259,0.894742727279663,0.0488326624035835,0.443904131650925,0.986778080463409,0.160166338086128,0.0248146392405033,0.918852925300598,0.391142338514328,0.0521256364881992,0.894742727279663,0.0488326624035835,0.443904131650925,0.830479502677917,-0.194505542516708,0.521987855434418,0.992714047431946,-0.0376175232231617,0.114470943808556,0.986778080463409,0.160166338086128,0.0248146392405033,0.986778080463409,0.160166338086128,0.0248146392405033,0.992714047431946,-0.0376175232231617,0.114470943808556,0.574931979179382,-0.21452622115612,0.789576947689056,0.594833314418793,-0.0582898817956448,0.801732957363129,0.918852925300598,0.391142338514328,0.0521256364881992,0.986778080463409,0.160166338086128,0.0248146392405033,0.594833314418793,-0.0582898817956448,0.801732957363129,0.57364547252655,0.204739347100258,0.793103218078613,0.948952376842499,-0.199090868234634,0.244647070765495,0.763542711734772,-0.339976668357849,0.549015760421753,0.611014664173126,-0.523765981197357,0.593574166297913,0.806391000747681,-0.43461674451828,0.401050895452499,0.948952376842499,-0.199090868234634,0.244647070765495,0.806391000747681,-0.43461674451828,0.401050895452499,0.418492645025253,-0.417349457740784,0.806649446487427,0.490249872207642,-0.306862562894821,0.815775990486145,0.189795464277267,0.239581629633904,0.952144026756287, -0.20401531457901,-0.166772156953812,0.964657783508301,0.564927995204926,-0.187143445014954,0.803637862205505,0.500296115875244,0.364424914121628,0.785428762435913,0.20401531457901,-0.166772156953812,0.964657783508301,0.23160557448864,-0.341618031263351,0.910854637622833,0.579422473907471,-0.400906980037689,0.709607779979706,0.564927995204926,-0.187143445014954,0.803637862205505,0.564927995204926,-0.187143445014954,0.803637862205505,0.579422473907471,-0.400906980037689,0.709607779979706,0.76766049861908,-0.412512093782425,0.490439832210541,0.799408972263336,-0.193910956382751,0.568633437156677,0.500296115875244,0.364424914121628,0.785428762435913,0.564927995204926,-0.187143445014954,0.803637862205505,0.799408972263336,-0.193910956382751,0.568633437156677,0.702990412712097,0.419565856456757,0.574255168437958,0.87173056602478,0.45006275177002,-0.193725004792213,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.848927736282349,0.0427490770816803,-0.52677708864212,0.754838287830353,0.40166237950325,-0.518542528152466,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.954306364059448,-0.251068413257599,-0.162061840295792,0.882660627365112,-0.110119074583054,-0.456928849220276,0.848927736282349,0.0427490770816803,-0.52677708864212,0.848927736282349,0.0427490770816803,-0.52677708864212,0.882660627365112,-0.110119074583054,-0.456928849220276,0.780278146266937,-0.327104479074478,0.533074557781219,0.894276082515717,-0.097051627933979,0.436865478754044,0.754838287830353,0.40166237950325,-0.518542528152466,0.848927736282349,0.0427490770816803,-0.52677708864212,0.894276082515717,-0.097051627933979,0.436865478754044,0.785448968410492,0.584083378314972,0.204734981060028,0.903905987739563,-0.195524647831917,-0.380426108837128,0.93332827091217,-0.338810741901398,-0.118767276406288,0.860257208347321,-0.509540259838104,0.0180641487240791,0.904874742031097,-0.356668084859848,-0.232356280088425,0.903905987739563,-0.195524647831917,-0.380426108837128,0.904874742031097,-0.356668084859848,-0.232356280088425,0.728058815002441,-0.511314928531647,0.456604212522507, -0.831725597381592,-0.397647082805634,0.387439489364624,0.340618073940277,0.749954223632813,0.567052066326141,0.631407916545868,0.117286719381809,0.766529679298401,0.834928035736084,0.227998673915863,0.500910878181458,0.389368146657944,0.872968256473541,0.293800622224808,0.631407916545868,0.117286719381809,0.766529679298401,0.600039601325989,-0.140705794095993,0.787498772144318,0.829451382160187,-0.0813746005296707,0.552619576454163,0.834928035736084,0.227998673915863,0.500910878181458,0.834928035736084,0.227998673915863,0.500910878181458,0.829451382160187,-0.0813746005296707,0.552619576454163,0.897814869880676,-0.0211839824914932,0.439863324165344,0.86969381570816,0.300446540117264,0.391617625951767,0.389368146657944,0.872968256473541,0.293800622224808,0.834928035736084,0.227998673915863,0.500910878181458,0.86969381570816,0.300446540117264,0.391617625951767,0.355875700712204,0.906293213367462,0.228002443909645,0.460872143507004,0.886726438999176,0.0362347550690174,0.926688432693481,0.367865145206451,0.076966218650341,0.887593150138855,0.375568717718124,-0.266695559024811,0.474772721529007,0.848200619220734,-0.234832912683487,0.926688432693481,0.367865145206451,0.076966218650341,0.989045262336731,0.0934214890003204,0.114288978278637,0.95555716753006,0.137370273470879,-0.260844856500626,0.887593150138855,0.375568717718124,-0.266695559024811,0.887593150138855,0.375568717718124,-0.266695559024811,0.95555716753006,0.137370273470879,-0.260844856500626,0.829737067222595,0.108809530735016,0.547445714473724,0.752720415592194,0.38932791352272,0.530881941318512,0.474772721529007,0.848200619220734,-0.234832912683487,0.887593150138855,0.375568717718124,-0.266695559024811,0.752720415592194,0.38932791352272,0.530881941318512,0.35998409986496,0.867266118526459,0.343890994787216,0.975308120250702,-0.00194700108841062,-0.220840260386467,0.984977781772614,-0.0616224482655525,0.161311641335487,0.926871418952942,-0.302499800920486,0.222268790006638,0.95844966173172,-0.230193823575974,-0.168478921055794,0.975308120250702,-0.00194700108841062,-0.220840260386467, -0.95844966173172,-0.230193823575974,-0.168478921055794,0.885432124137878,-0.298503637313843,0.356238156557083,0.884318947792053,-0.054423701018095,0.463700622320175,0.833454966545105,-0.0589393526315689,0.549435198307037,0.82255631685257,-0.213350489735603,0.527145743370056,0.845588147640228,-0.197172567248344,0.496088355779648,0.854334950447083,-0.0434923134744167,0.517899930477142,0.452140301465988,0.806186378002167,0.381618410348892,0.824138283729553,0.277803391218185,0.493580013513565,0.911235272884369,0.403247743844986,0.0839127078652382,0.416480928659439,0.906339287757874,0.0713638886809349,0.824138283729553,0.277803391218185,0.493580013513565,0.854334950447083,-0.0434923134744167,0.517899930477142,0.993151307106018,0.0372834131121635,0.11072713881731,0.911235272884369,0.403247743844986,0.0839127078652382,0.911235272884369,0.403247743844986,0.0839127078652382,0.993151307106018,0.0372834131121635,0.11072713881731,0.995254218578339,0.0549554899334908,0.0803044810891151,0.899473369121552,0.420583963394165,0.118561275303364,0.416480928659439,0.906339287757874,0.0713638886809349,0.911235272884369,0.403247743844986,0.0839127078652382,0.899473369121552,0.420583963394165,0.118561275303364,0.370153248310089,0.92108142375946,0.120812572538853,0.974883675575256,-0.173518389463425,0.139618128538132,0.845588147640228,-0.197172567248344,0.496088355779648,0.794207036495209,-0.3851597905159,0.469986349344254,0.909832239151001,-0.380722135305405,0.165093958377838,0.974883675575256,-0.173518389463425,0.139618128538132,0.909832239151001,-0.380722135305405,0.165093958377838,0.929700791835785,-0.367127627134323,0.0295576956123114,0.985689699649811,-0.159650921821594,0.0541065037250519,0.803968787193298,0.384839653968811,0.453356921672821,0.882689833641052,-0.0387041978538036,0.468359529972076,0.996461987495422,0.0680782571434975,0.0492829121649265,0.887653052806854,0.459179997444153,0.0350099876523018,0.882689833641052,-0.0387041978538036,0.468359529972076,0.850554823875427,-0.263379454612732,0.455178827047348,0.987858235836029,-0.144031837582588,0.0582313798367977, -0.996461987495422,0.0680782571434975,0.0492829121649265,0.996461987495422,0.0680782571434975,0.0492829121649265,0.987858235836029,-0.144031837582588,0.0582313798367977,0.202647313475609,-0.298515766859055,0.932642757892609,0.231135651469231,-0.167288109660149,0.958431541919708,0.887653052806854,0.459179997444153,0.0350099876523018,0.996461987495422,0.0680782571434975,0.0492829121649265,0.231135651469231,-0.167288109660149,0.958431541919708,0.254012256860733,0.141789615154266,0.956751525402069,0.968820154666901,-0.236736476421356,0.073096938431263,0.820302903652191,-0.366882711648941,0.43874853849411,0.730762779712677,-0.524796366691589,0.436548382043839,0.922787308692932,-0.3760906457901,0.083782009780407,0.968820154666901,-0.236736476421356,0.073096938431263,0.922787308692932,-0.3760906457901,0.083782009780407,0.373678237199783,-0.514060199260712,0.772079527378082,0.256940931081772,-0.374582171440125,0.890881359577179,0.225879862904549,-0.420474976301193,0.878737211227417,0.0555685870349407,-0.379517942667007,0.923514127731323,0.170638188719749,-0.490811139345169,0.854392826557159,0.310942828655243,-0.535853862762451,0.784968197345734,0.225879862904549,-0.420474976301193,0.878737211227417,0.310942828655243,-0.535853862762451,0.784968197345734,0.414962351322174,-0.562928795814514,0.714784801006317,0.388115346431732,-0.443261563777924,0.808013439178467,0.465925961732864,-0.255312830209732,0.847188532352448,0.485513418912888,-0.249269068241119,0.837938964366913,0.484088093042374,-0.233318135142326,0.843339383602142,0.46940404176712,-0.239579230546951,0.849859774112701,0.485513418912888,-0.249269068241119,0.837938964366913,0.502386271953583,-0.242851346731186,0.829838037490845,0.503244817256927,-0.229387789964676,0.833142101764679,0.484088093042374,-0.233318135142326,0.843339383602142,0.365534752607346,-0.275272130966187,0.889162361621857,0.397959321737289,-0.269826859235764,0.876824915409088,0.394312739372253,-0.257628470659256,0.882125318050385,0.362585753202438,-0.260607570409775,0.894771039485931,0.397959321737289,-0.269826859235764,0.876824915409088, -0.42473179101944,-0.265143990516663,0.865622103214264,0.427427232265472,-0.254156500101089,0.867588937282562,0.394312739372253,-0.257628470659256,0.882125318050385,0.394312739372253,-0.257628470659256,0.882125318050385,0.427427232265472,-0.254156500101089,0.867588937282562,0.465275973081589,-0.175810903310776,0.867530286312103,0.371367067098618,-0.194919556379318,0.907795608043671,0.394312739372253,-0.257628470659256,0.882125318050385,0.371367067098618,-0.194919556379318,0.907795608043671,0.3477483689785,-0.198941215872765,0.91623866558075,0.362585753202438,-0.260607570409775,0.894771039485931,0.179366111755371,-0.302895218133926,0.93599271774292,0.226872846484184,-0.298341304063797,0.927103579044342,0.228964373469353,-0.288229167461395,0.92978447675705,0.176005661487579,-0.290910065174103,0.940421879291534,0.179366111755371,-0.302895218133926,0.93599271774292,0.176005661487579,-0.290910065174103,0.940421879291534,0.177994892001152,-0.28425520658493,0.942081153392792,0.18642283976078,-0.302652627229691,0.934691250324249,-0.223743036389351,-0.286216169595718,0.931675553321838,5.24779306942946e-06,-0.263720482587814,0.964599132537842,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,0.00903936289250851,-0.0846651792526245,0.99636846780777,-0.223743036389351,-0.286216169595718,0.931675553321838,0.00903936289250851,-0.0846651792526245,0.99636846780777,0.0497473366558552,-0.134566709399223,0.989654958248138,-0.150470897555351,-0.31821072101593,0.936002492904663,0.316253304481506,-0.270987331867218,0.9091477394104,0.326374977827072,-0.270279616117477,0.905774891376495,0.30705800652504,-0.151796445250511,0.939506888389587,0.297187924385071,-0.123561941087246,0.946790277957916,0.316253304481506,-0.270987331867218,0.9091477394104,0.297187924385071,-0.123561941087246,0.946790277957916,0.333074867725372,-0.117942728102207,0.935494780540466,0.299889504909515,-0.273949265480042,0.913793206214905,0.693340718746185,0.714396417140961,-0.0944258198142052,0.989034950733185,0.108781777322292,-0.0998830646276474,0.94737309217453,0.121249817311764,-0.296281397342682, -0.699336349964142,0.640298962593079,-0.317719727754593,0.989034950733185,0.108781777322292,-0.0998830646276474,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.94737309217453,0.121249817311764,-0.296281397342682,0.94737309217453,0.121249817311764,-0.296281397342682,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.855779409408569,-0.144384682178497,0.496784299612045,0.89562314748764,0.0532087571918964,0.441619753837585,0.699336349964142,0.640298962593079,-0.317719727754593,0.94737309217453,0.121249817311764,-0.296281397342682,0.89562314748764,0.0532087571918964,0.441619753837585,0.628531694412231,0.683484315872192,0.371210426092148,0.968112766742706,-0.115815326571465,-0.222136452794075,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.936742961406708,-0.349865049123764,0.0103462673723698,0.950254321098328,-0.273420482873917,-0.149191319942474,0.968112766742706,-0.115815326571465,-0.222136452794075,0.950254321098328,-0.273420482873917,-0.149191319942474,0.739988207817078,-0.321660608053207,0.590721487998962,0.812639117240906,-0.217517703771591,0.540651261806488,0.882075786590576,-0.372996717691422,0.287777364253998,0.682247877120972,-0.429192274808884,0.59188836812973,0.619528710842133,-0.549421966075897,0.560642242431641,0.763568758964539,-0.496402263641357,0.412973940372467,0.882075786590576,-0.372996717691422,0.287777364253998,0.763568758964539,-0.496402263641357,0.412973940372467,0.845468997955322,-0.443901598453522,0.29687288403511,0.920679688453674,-0.318991452455521,0.224929749965668,0.827144920825958,-0.160243526101112,0.538658857345581,0.830558121204376,-0.157234117388725,0.534275770187378,0.830573439598083,-0.143151998519897,0.538196206092834,0.82776153087616,-0.14987875521183,0.540691316127777,0.830558121204376,-0.157234117388725,0.534275770187378,0.821164727210999,-0.159545183181763,0.547935903072357,0.820954740047455,-0.140668287873268,0.553394675254822,0.830573439598083,-0.143151998519897,0.538196206092834,0.912267506122589,-0.101045846939087,0.396935343742371, -0.915313959121704,-0.0999621599912643,0.390138536691666,0.918806731700897,-0.0938960313796997,0.383376836776733,0.910833716392517,-0.10109194368124,0.400202870368958,0.915313959121704,-0.0999621599912643,0.390138536691666,0.874054729938507,-0.130796268582344,0.467889577150345,0.888745725154877,-0.113963581621647,0.444008260965347,0.918806731700897,-0.0938960313796997,0.383376836776733,0.918806731700897,-0.0938960313796997,0.383376836776733,0.888745725154877,-0.113963581621647,0.444008260965347,0.892889142036438,-0.0994650796055794,0.439153373241425,0.919524729251862,-0.11089226603508,0.377063989639282,0.918806731700897,-0.0938960313796997,0.383376836776733,0.919524729251862,-0.11089226603508,0.377063989639282,0.92792272567749,-0.139109119772911,0.345843940973282,0.910833716392517,-0.10109194368124,0.400202870368958,0.597956001758575,-0.215268164873123,0.772080481052399,0.656582236289978,-0.200186222791672,0.727203726768494,0.647315204143524,-0.187909722328186,0.738696813583374,0.592859327793121,-0.200990110635757,0.77982097864151,0.656582236289978,-0.200186222791672,0.727203726768494,0.69054639339447,-0.193011850118637,0.697059512138367,0.686221122741699,-0.180150583386421,0.704731523990631,0.647315204143524,-0.187909722328186,0.738696813583374,0.647315204143524,-0.187909722328186,0.738696813583374,0.686221122741699,-0.180150583386421,0.704731523990631,0.658480286598206,-0.0952623412013054,0.746544599533081,0.581367552280426,-0.112330824136734,0.805849611759186,0.647315204143524,-0.187909722328186,0.738696813583374,0.581367552280426,-0.112330824136734,0.805849611759186,0.608900904655457,-0.122346572577953,0.783754348754883,0.592859327793121,-0.200990110635757,0.77982097864151,0.842010140419006,-0.127670571208,0.524136602878571,0.869021952152252,-0.121415354311466,0.479644626379013,0.84916090965271,-0.13398066163063,0.510856926441193,0.792554795742035,-0.0888480767607689,0.603293359279633,0.842010140419006,-0.127670571208,0.524136602878571,0.792554795742035,-0.0888480767607689,0.603293359279633,0.756192922592163,-0.0511609390377998,0.652345716953278, -0.784613907337189,-0.148418456315994,0.601957619190216,0.521250128746033,0.839334070682526,0.154326602816582,0.92270028591156,0.311021476984024,0.227793514728546,0.940844178199768,0.330499261617661,-0.0747155025601387,0.506224989891052,0.854502975940704,-0.116451598703861,0.92270028591156,0.311021476984024,0.227793514728546,0.982197225093842,0.000441860553110018,0.187852442264557,0.994294047355652,0.0164229031652212,-0.105402871966362,0.940844178199768,0.330499261617661,-0.0747155025601387,0.940844178199768,0.330499261617661,-0.0747155025601387,0.994294047355652,0.0164229031652212,-0.105402871966362,0.833454966545105,-0.0589393526315689,0.549435198307037,0.780824542045593,0.251494169235229,0.571894943714142,0.506224989891052,0.854502975940704,-0.116451598703861,0.940844178199768,0.330499261617661,-0.0747155025601387,0.780824542045593,0.251494169235229,0.571894943714142,0.384831994771957,0.823053538799286,0.417716801166534,0.973433196544647,-0.164063036441803,-0.159721702337265,0.976979911327362,-0.180214643478394,0.114162653684616,0.92187511920929,-0.38712340593338,0.016783095896244,0.889443576335907,-0.376923859119415,-0.258493065834045,0.973433196544647,-0.164063036441803,-0.159721702337265,0.889443576335907,-0.376923859119415,-0.258493065834045,0.778084576129913,-0.38656085729599,0.495131373405457,0.82255631685257,-0.213350489735603,0.527145743370056,0.936541557312012,-0.143504872918129,0.319837808609009,0.839543461799622,-0.133703395724297,0.526583671569824,0.808006346225739,-0.355535328388214,0.469808757305145,0.880135655403137,-0.343090146780014,0.328101515769958,0.936541557312012,-0.143504872918129,0.319837808609009,0.880135655403137,-0.343090146780014,0.328101515769958,0.89973783493042,-0.341453313827515,0.271810978651047,0.934256434440613,-0.153060808777809,0.322082817554474,0.941151320934296,-0.0821005627512932,0.327861964702606,0.944187104701996,-0.0763202235102654,0.320446223020554,0.944757699966431,-0.0427818447351456,0.32496565580368,0.940891146659851,-0.0501523986458778,0.33497542142868,0.944187104701996,-0.0763202235102654,0.320446223020554, -0.930086016654968,-0.0858319774270058,0.357173442840576,0.932468891143799,-0.0516576319932938,0.357537627220154,0.944757699966431,-0.0427818447351456,0.32496565580368,0.897346794605255,-0.123259223997593,0.423764050006866,0.909278512001038,-0.113426715135574,0.400433391332626,0.912991762161255,-0.0900691002607346,0.397911489009857,0.901916682720184,-0.10628217458725,0.418629169464111,0.909278512001038,-0.113426715135574,0.400433391332626,0.914742171764374,-0.108909480273724,0.389082819223404,0.920228779315948,-0.0795585364103317,0.383209377527237,0.912991762161255,-0.0900691002607346,0.397911489009857,0.912991762161255,-0.0900691002607346,0.397911489009857,0.920228779315948,-0.0795585364103317,0.383209377527237,0.943983197212219,0.128329202532768,0.304018646478653,0.940903544425964,0.070175789296627,0.331324458122253,0.912991762161255,-0.0900691002607346,0.397911489009857,0.940903544425964,0.070175789296627,0.331324458122253,0.956947982311249,0.0141221741214395,0.289915651082993,0.901916682720184,-0.10628217458725,0.418629169464111,0.827622175216675,-0.154372617602348,0.539639413356781,0.839892745018005,-0.151049211621284,0.521310210227966,0.839415848255157,-0.131922736763954,0.527235627174377,0.826237261295319,-0.133032575249672,0.547388553619385,0.839892745018005,-0.151049211621284,0.521310210227966,0.838854253292084,-0.156569272279739,0.521353602409363,0.839163839817047,-0.139088898897171,0.525793135166168,0.839415848255157,-0.131922736763954,0.527235627174377,0.839415848255157,-0.131922736763954,0.527235627174377,0.839163839817047,-0.139088898897171,0.525793135166168,0.827139914035797,-0.00921932328492403,0.561920404434204,0.83541464805603,-0.0103724785149097,0.549522280693054,0.839415848255157,-0.131922736763954,0.527235627174377,0.83541464805603,-0.0103724785149097,0.549522280693054,0.831015765666962,-0.0195813197642565,0.55590409040451,0.826237261295319,-0.133032575249672,0.547388553619385,0.839224100112915,-0.149475067853928,0.522838532924652,0.859896123409271,-0.142539709806442,0.490164369344711,0.895096182823181,-0.0639328360557556,0.441265851259232, -0.839722514152527,-0.0430349707603455,0.541307747364044,0.839224100112915,-0.149475067853928,0.522838532924652,0.839722514152527,-0.0430349707603455,0.541307747364044,0.818549573421478,-0.0268298108130693,0.573809087276459,0.832327723503113,-0.150266587734222,0.533526301383972,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.860810875892639,0.011091579683125,-0.508804142475128,0.843631565570831,0.103148303925991,-0.526921272277832,0.717204749584198,0.112385459244251,-0.687740445137024,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.717204749584198,0.112385459244251,-0.687740445137024,0.948680698871613,0.0530499294400215,-0.311754167079926,0.948014378547668,-0.114206790924072,-0.297027975320816,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.948014378547668,-0.114206790924072,-0.297027975320816,0.917859852313995,-0.320248544216156,-0.234465748071671,0.846224725246429,-0.220031172037125,-0.485273152589798,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.846224725246429,-0.220031172037125,-0.485273152589798,0.83915901184082,-0.095047727227211,-0.535516738891602,0.860810875892639,0.011091579683125,-0.508804142475128,0.922730565071106,-0.380059778690338,-0.064209558069706,0.936839520931244,-0.322951912879944,-0.134289890527725,0.917859852313995,-0.320248544216156,-0.234465748071671,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.922730565071106,-0.380059778690338,-0.064209558069706,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.929700791835785,-0.367127627134323,0.0295576956123114,0.915882885456085,-0.400456249713898,0.0281630977988243,0.99613493680954,0.00342563749291003,0.0877693593502045,0.99686586856842,0.00642402423545718,0.0788490772247314,0.996803104877472,0.00722440052777529,0.0795691087841988,0.996054649353027,0.0032000239007175,0.0886840298771858,0.99686586856842,0.00642402423545718,0.0788490772247314,0.998364806175232,0.0151046710088849,0.0551327168941498,0.998127281665802,0.016510970890522,0.0589016973972321,0.996803104877472,0.00722440052777529,0.0795691087841988, -0.998548150062561,0.0213323999196291,0.0494622848927975,0.998127281665802,0.016510970890522,0.0589016973972321,0.998364806175232,0.0151046710088849,0.0551327168941498,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998548150062561,0.0213323999196291,0.0494622848927975,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998301982879639,0.0185902323573828,0.0552037134766579,0.998378157615662,0.0214733984321356,0.0527236349880695,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998364806175232,0.0151046710088849,0.0551327168941498,0.998716592788696,0.000607570458669215,0.0506442487239838,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.997867584228516,0.000807996664661914,0.0652675926685333,0.998301982879639,0.0185902323573828,0.0552037134766579,0.96854168176651,-0.0373059138655663,0.246038869023323,0.991491615772247,0.00140663899946958,0.130163043737411,0.98707377910614,0.00784813892096281,0.160074472427368,0.957352161407471,-0.0185783803462982,0.288325995206833,0.957352161407471,-0.0185783803462982,0.288325995206833,0.98707377910614,0.00784813892096281,0.160074472427368,0.962466359138489,0.0948556363582611,0.254285275936127,0.92098480463028,0.143564224243164,0.362182676792145,0.905479967594147,-0.389077335596085,0.16948401927948,0.860090136528015,-0.273277372121811,0.430771857500076,0.962466359138489,0.0948556363582611,0.254285275936127,0.993885099887848,0.0228749252855778,0.108024179935455,0.905479967594147,-0.389077335596085,0.16948401927948,0.993885099887848,0.0228749252855778,0.108024179935455,0.997867584228516,0.000807996664661914,0.0652675926685333,0.915882885456085,-0.400456249713898,0.0281630977988243,0.000240212044445798,-0.090602844953537,0.995887100696564,1.36847847898025e-05,-0.292606621980667,0.956232845783234,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.488369077444077,-0.0530646555125713,0.87102222442627,1.36847847898025e-05,-0.292606621980667,0.956232845783234, -1.42427379614674e-05,-0.348549783229828,0.937290251255035,-0.511119365692139,-0.29790985584259,0.806229948997498,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.511119365692139,-0.29790985584259,0.806229948997498,-0.458524763584137,-0.304732322692871,0.834801316261292,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.488369077444077,-0.0530646555125713,0.87102222442627,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.416721314191818,-0.0176437478512526,0.908863008022308,0.297978579998016,-0.287405878305435,0.910278260707855,0.299889504909515,-0.273949265480042,0.913793206214905,0.27497398853302,-0.280620843172073,0.919587433338165,0.270361959934235,-0.292315512895584,0.917309105396271,0.27497398853302,-0.280620843172073,0.919587433338165,0.228964373469353,-0.288229167461395,0.92978447675705,0.226872846484184,-0.298341304063797,0.927103579044342,0.270361959934235,-0.292315512895584,0.917309105396271,0.275892049074173,-0.376482635736465,0.884389221668243,0.220295935869217,-0.324890851974487,0.919736683368683,0.272147238254547,-0.176300823688507,0.945967197418213,0.346659570932388,-0.147837936878204,0.926267266273499,0.275892049074173,-0.376482635736465,0.884389221668243,0.346659570932388,-0.147837936878204,0.926267266273499,0.333074867725372,-0.117942728102207,0.935494780540466,0.289807885885239,-0.43032768368721,0.854885756969452,-0.481684356927872,-0.307957500219345,0.820452451705933,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,2.46701147261774e-05,-0.340059369802475,0.940403938293457,-0.420449644327164,-0.335328876972198,0.843075752258301,-0.481684356927872,-0.307957500219345,0.820452451705933,-0.420449644327164,-0.335328876972198,0.843075752258301,-0.310180366039276,-0.395606368780136,0.864455759525299,-0.424630582332611,-0.334179937839508,0.841434895992279,0.365534752607346,-0.275272130966187,0.889162361621857,0.362585753202438,-0.260607570409775,0.894771039485931, -0.339633166790009,-0.266489624977112,0.902015805244446,0.340675264596939,-0.279809176921844,0.897578537464142,0.339633166790009,-0.266489624977112,0.902015805244446,0.326374977827072,-0.270279616117477,0.905774891376495,0.328150719404221,-0.282415062189102,0.901420533657074,0.340675264596939,-0.279809176921844,0.897578537464142,0.463217854499817,-0.406106621026993,0.78772246837616,0.763542711734772,-0.339976668357849,0.549015760421753,0.830479502677917,-0.194505542516708,0.521987855434418,0.499810367822647,-0.296231180429459,0.813902080059052,0.463217854499817,-0.406106621026993,0.78772246837616,0.499810367822647,-0.296231180429459,0.813902080059052,0.287619531154633,-0.320103913545609,0.902667462825775,0.272015511989594,-0.415265917778015,0.868079364299774,0.568185806274414,-0.391976445913315,0.723546385765076,0.440867334604263,-0.435717403888702,0.784720599651337,0.30705800652504,-0.151796445250511,0.939506888389587,0.342980980873108,-0.175373032689095,0.92282623052597,0.568185806274414,-0.391976445913315,0.723546385765076,0.342980980873108,-0.175373032689095,0.92282623052597,0.3477483689785,-0.198941215872765,0.91623866558075,0.354619860649109,-0.380006402730942,0.854306638240814,0.328068912029266,-0.452030867338181,0.82948112487793,0.440867334604263,-0.435717403888702,0.784720599651337,0.611014664173126,-0.523765981197357,0.593574166297913,0.398277938365936,-0.536248743534088,0.744185388088226,0.328068912029266,-0.452030867338181,0.82948112487793,0.398277938365936,-0.536248743534088,0.744185388088226,0.257376343011856,-0.520962178707123,0.813852488994598,0.289807885885239,-0.43032768368721,0.854885756969452,-0.0490954145789146,-0.337257087230682,0.940131485462189,0.0555685870349407,-0.379517942667007,0.923514127731323,-0.0078623266890645,-0.305302023887634,0.952223122119904,-0.106116123497486,-0.28271272778511,0.953316748142242,-0.0490954145789146,-0.337257087230682,0.940131485462189,-0.106116123497486,-0.28271272778511,0.953316748142242,0.574931979179382,-0.21452622115612,0.789576947689056,0.490249872207642,-0.306862562894821,0.815775990486145, -0.465925961732864,-0.255312830209732,0.847188532352448,0.46940404176712,-0.239579230546951,0.849859774112701,0.451806783676147,-0.247525587677956,0.857089102268219,0.445330530405045,-0.260697692632675,0.856573164463043,0.451806783676147,-0.247525587677956,0.857089102268219,0.427427232265472,-0.254156500101089,0.867588937282562,0.42473179101944,-0.265143990516663,0.865622103214264,0.445330530405045,-0.260697692632675,0.856573164463043,0.206263855099678,-0.364544987678528,0.908054053783417,0.354210317134857,-0.385083884000778,0.852200388908386,0.170638188719749,-0.490811139345169,0.854392826557159,0.0412405952811241,-0.429780393838882,0.901991188526154,0.206263855099678,-0.364544987678528,0.908054053783417,0.0412405952811241,-0.429780393838882,0.901991188526154,0.418492645025253,-0.417349457740784,0.806649446487427,0.354619860649109,-0.380006402730942,0.854306638240814,0.481584459543228,-0.387515157461166,0.786071479320526,0.354210317134857,-0.385083884000778,0.852200388908386,0.465275973081589,-0.175810903310776,0.867530286312103,0.541524887084961,-0.117356345057487,0.832453191280365,0.481584459543228,-0.387515157461166,0.786071479320526,0.541524887084961,-0.117356345057487,0.832453191280365,0.510328412055969,-0.0449175722897053,0.858805775642395,0.499750405550003,-0.3817298412323,0.777516484260559,0.597956001758575,-0.215268164873123,0.772080481052399,0.592859327793121,-0.200990110635757,0.77982097864151,0.538938403129578,-0.218982368707657,0.813383162021637,0.535172045230865,-0.232367232441902,0.812155306339264,0.538938403129578,-0.218982368707657,0.813383162021637,0.503244817256927,-0.229387789964676,0.833142101764679,0.502386271953583,-0.242851346731186,0.829838037490845,0.535172045230865,-0.232367232441902,0.812155306339264,0.567363619804382,-0.433732450008392,0.699981868267059,0.820302903652191,-0.366882711648941,0.43874853849411,0.850554823875427,-0.263379454612732,0.455178827047348,0.583847045898438,-0.327874779701233,0.742711663246155,0.567363619804382,-0.433732450008392,0.699981868267059,0.583847045898438,-0.327874779701233,0.742711663246155, -0.373119860887527,-0.338860630989075,0.863686800003052,0.388115346431732,-0.443261563777924,0.808013439178467,0.516300976276398,-0.446030616760254,0.73108834028244,0.709072232246399,-0.490383982658386,0.506695330142975,0.730762779712677,-0.524796366691589,0.436548382043839,0.532850980758667,-0.568655610084534,0.626658320426941,0.516300976276398,-0.446030616760254,0.73108834028244,0.532850980758667,-0.568655610084534,0.626658320426941,0.414962351322174,-0.562928795814514,0.714784801006317,0.499750405550003,-0.3817298412323,0.777516484260559,0.875056028366089,-0.394868493080139,0.279921293258667,0.709072232246399,-0.490383982658386,0.506695330142975,0.53625351190567,-0.0949005037546158,0.838704824447632,0.641211926937103,-0.110249705612659,0.759402573108673,0.875056028366089,-0.394868493080139,0.279921293258667,0.641211926937103,-0.110249705612659,0.759402573108673,0.608900904655457,-0.122346572577953,0.783754348754883,0.54632157087326,-0.482646822929382,0.684532463550568,-0.111819066107273,-0.334474802017212,0.93574732542038,0.23664890229702,-0.448689639568329,0.86178594827652,0.23160557448864,-0.341618031263351,0.910854637622833,-0.117824763059616,-0.26248362660408,0.95771586894989,-0.111819066107273,-0.334474802017212,0.93574732542038,-0.117824763059616,-0.26248362660408,0.95771586894989,0.202647313475609,-0.298515766859055,0.932642757892609,0.256940931081772,-0.374582171440125,0.890881359577179,0.795167982578278,-0.160252347588539,0.584830820560455,0.784613907337189,-0.148418456315994,0.601957619190216,0.724205315113068,-0.169191837310791,0.668506324291229,0.729499876499176,-0.183190047740936,0.65899270772934,0.724205315113068,-0.169191837310791,0.668506324291229,0.686221122741699,-0.180150583386421,0.704731523990631,0.69054639339447,-0.193011850118637,0.697059512138367,0.729499876499176,-0.183190047740936,0.65899270772934,0.598446249961853,-0.519095242023468,0.610247671604156,0.423094630241394,-0.536581158638,0.730117499828339,0.658480286598206,-0.0952623412013054,0.746544599533081,0.723184883594513,-0.061912901699543,0.687873840332031, -0.598446249961853,-0.519095242023468,0.610247671604156,0.723184883594513,-0.061912901699543,0.687873840332031,0.756192922592163,-0.0511609390377998,0.652345716953278,0.693200528621674,-0.491481930017471,0.527179837226868,0.23476405441761,-0.475362211465836,0.847889482975006,0.423094630241394,-0.536581158638,0.730117499828339,0.282550185918808,-0.625282943248749,0.727452158927917,-0.0402895286679268,-0.486978650093079,0.872484087944031,0.23476405441761,-0.475362211465836,0.847889482975006,-0.0402895286679268,-0.486978650093079,0.872484087944031,0.373678237199783,-0.514060199260712,0.772079527378082,0.54632157087326,-0.482646822929382,0.684532463550568,0.912267506122589,-0.101045846939087,0.396935343742371,0.910833716392517,-0.10109194368124,0.400202870368958,0.886831343173981,-0.116333656013012,0.447209715843201,0.888193190097809,-0.117810659110546,0.444109886884689,0.886831343173981,-0.116333656013012,0.447209715843201,0.869021952152252,-0.121415354311466,0.479644626379013,0.873401761054993,-0.126450717449188,0.470297425985336,0.888193190097809,-0.117810659110546,0.444109886884689,0.857245266437531,-0.464626491069794,0.221929728984833,0.93332827091217,-0.338810741901398,-0.118767276406288,0.954306364059448,-0.251068413257599,-0.162061840295792,0.901452958583832,-0.372857749462128,0.219908162951469,0.857245266437531,-0.464626491069794,0.221929728984833,0.901452958583832,-0.372857749462128,0.219908162951469,0.76766049861908,-0.412512093782425,0.490439832210541,0.731242716312408,-0.51183021068573,0.450903505086899,0.921876072883606,-0.385167300701141,0.0423164926469326,0.854461014270782,-0.476516664028168,0.206949934363365,0.84916090965271,-0.13398066163063,0.510856926441193,0.908291161060333,-0.145772188901901,0.392119407653809,0.921876072883606,-0.385167300701141,0.0423164926469326,0.908291161060333,-0.145772188901901,0.392119407653809,0.92792272567749,-0.139109119772911,0.345843940973282,0.826905488967896,-0.45468458533287,0.330891579389572,0.769442439079285,-0.503196477890015,0.393384665250778,0.854461014270782,-0.476516664028168,0.206949934363365, -0.860257208347321,-0.509540259838104,0.0180641487240791,0.764307379722595,-0.60006195306778,0.236135452985764,0.769442439079285,-0.503196477890015,0.393384665250778,0.764307379722595,-0.60006195306778,0.236135452985764,0.651794612407684,-0.644794881343842,0.399253517389297,0.693200528621674,-0.491481930017471,0.527179837226868,0.224800527095795,-0.377653300762177,0.898244142532349,0.682247877120972,-0.429192274808884,0.59188836812973,0.746551871299744,-0.328548848628998,0.578546464443207,0.208847686648369,-0.293012231588364,0.933020114898682,0.224800527095795,-0.377653300762177,0.898244142532349,0.208847686648369,-0.293012231588364,0.933020114898682,0.780278146266937,-0.327104479074478,0.533074557781219,0.831725597381592,-0.397647082805634,0.387439489364624,0.827144920825958,-0.160243526101112,0.538658857345581,0.82776153087616,-0.14987875521183,0.540691316127777,0.840165615081787,-0.14305616915226,0.523122012615204,0.831374049186707,-0.157346367835999,0.532972157001495,0.840165615081787,-0.14305616915226,0.523122012615204,0.888745725154877,-0.113963581621647,0.444008260965347,0.874054729938507,-0.130796268582344,0.467889577150345,0.831374049186707,-0.157346367835999,0.532972157001495,0.588849186897278,-0.495052307844162,0.63888955116272,0.60429185628891,-0.509560883045197,0.612518608570099,0.619528710842133,-0.549421966075897,0.560642242431641,0.340678364038467,-0.520609378814697,0.782881915569305,0.588849186897278,-0.495052307844162,0.63888955116272,0.340678364038467,-0.520609378814697,0.782881915569305,0.728058815002441,-0.511314928531647,0.456604212522507,0.826905488967896,-0.45468458533287,0.330891579389572,0.737267017364502,-0.431954801082611,0.519473314285278,0.60429185628891,-0.509560883045197,0.612518608570099,0.892889142036438,-0.0994650796055794,0.439153373241425,0.866094946861267,-0.071600578725338,0.494725108146667,0.737267017364502,-0.431954801082611,0.519473314285278,0.866094946861267,-0.071600578725338,0.494725108146667,0.846161961555481,-0.03146817907691,0.531995892524719,0.83910346031189,-0.326700925827026,0.434938907623291, -0.827622175216675,-0.154372617602348,0.539639413356781,0.826237261295319,-0.133032575249672,0.547388553619385,0.815493226051331,-0.138903215527534,0.56185108423233,0.814651846885681,-0.16066075861454,0.557252705097198,0.815493226051331,-0.138903215527534,0.56185108423233,0.820954740047455,-0.140668287873268,0.553394675254822,0.821164727210999,-0.159545183181763,0.547935903072357,0.814651846885681,-0.16066075861454,0.557252705097198,0.948286950588226,-0.2696273624897,0.167490169405937,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.976616501808167,-0.161731541156769,0.141644611954689,0.948286950588226,-0.2696273624897,0.167490169405937,0.976616501808167,-0.161731541156769,0.141644611954689,0.968433320522308,-0.201979890465736,0.146085485816002,0.920679688453674,-0.318991452455521,0.224929749965668,0.894481062889099,-0.324167281389236,0.307927399873734,0.937271595001221,-0.292794436216354,0.189191550016403,0.936742961406708,-0.349865049123764,0.0103462673723698,0.903814673423767,-0.393272668123245,0.168688461184502,0.894481062889099,-0.324167281389236,0.307927399873734,0.903814673423767,-0.393272668123245,0.168688461184502,0.845468997955322,-0.443901598453522,0.29687288403511,0.83910346031189,-0.326700925827026,0.434938907623291,0.952621281147003,-0.21545235812664,0.21469259262085,0.937271595001221,-0.292794436216354,0.189191550016403,0.818676471710205,-0.0259896032512188,0.573666512966156,0.824919760227203,-0.025544935837388,0.564672410488129,0.952621281147003,-0.21545235812664,0.21469259262085,0.824919760227203,-0.025544935837388,0.564672410488129,0.831015765666962,-0.0195813197642565,0.55590409040451,0.773024499416351,-0.251035571098328,0.582592725753784,0.331597626209259,-0.234186932444572,0.913892388343811,0.581863045692444,-0.243657320737839,0.77592945098877,0.600039601325989,-0.140705794095993,0.787498772144318,0.313735365867615,-0.166887998580933,0.934729099273682,0.331597626209259,-0.234186932444572,0.913892388343811,0.313735365867615,-0.166887998580933,0.934729099273682, -0.855779409408569,-0.144384682178497,0.496784299612045,0.812639117240906,-0.217517703771591,0.540651261806488,0.832961440086365,-0.167933389544487,0.52723217010498,0.832327723503113,-0.150266587734222,0.533526301383972,0.833731591701508,-0.146685212850571,0.532329797744751,0.83428293466568,-0.163930758833885,0.526401460170746,0.833731591701508,-0.146685212850571,0.532329797744751,0.839163839817047,-0.139088898897171,0.525793135166168,0.838854253292084,-0.156569272279739,0.521353602409363,0.83428293466568,-0.163930758833885,0.526401460170746,0.746168732643127,-0.324731051921844,0.58118999004364,0.694501519203186,-0.291511297225952,0.657790899276733,0.827139914035797,-0.00921932328492403,0.561920404434204,0.815437734127045,-0.016533300280571,0.578608632087708,0.746168732643127,-0.324731051921844,0.58118999004364,0.815437734127045,-0.016533300280571,0.578608632087708,0.818549573421478,-0.0268298108130693,0.573809087276459,0.786836504936218,-0.339921623468399,0.515113234519958,0.615043818950653,-0.242926478385925,0.750138580799103,0.694501519203186,-0.291511297225952,0.657790899276733,0.568074822425842,-0.381185531616211,0.729375541210175,0.361788481473923,-0.334904283285141,0.870027720928192,0.615043818950653,-0.242926478385925,0.750138580799103,0.361788481473923,-0.334904283285141,0.870027720928192,0.739988207817078,-0.321660608053207,0.590721487998962,0.773024499416351,-0.251035571098328,0.582592725753784,0.897346794605255,-0.123259223997593,0.423764050006866,0.901916682720184,-0.10628217458725,0.418629169464111,0.885190367698669,-0.127925336360931,0.447295337915421,0.880648612976074,-0.136910855770111,0.453556388616562,0.885190367698669,-0.127925336360931,0.447295337915421,0.859896123409271,-0.142539709806442,0.490164369344711,0.859917342662811,-0.152356714010239,0.487164944410324,0.880648612976074,-0.136910855770111,0.453556388616562,0.914890289306641,-0.121925175189972,0.384850651025772,0.984977781772614,-0.0616224482655525,0.161311641335487,0.989045262336731,0.0934214890003204,0.114288978278637,0.934940695762634,0.0340865701436996,0.353162676095963, -0.914890289306641,-0.121925175189972,0.384850651025772,0.934940695762634,0.0340865701436996,0.353162676095963,0.897814869880676,-0.0211839824914932,0.439863324165344,0.867118418216705,-0.171389430761337,0.467687219381332,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.902224242687225,-0.345201700925827,0.258509546518326,0.895096182823181,-0.0639328360557556,0.441265851259232,0.949248135089874,-0.0469713434576988,0.311001002788544,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.949248135089874,-0.0469713434576988,0.311001002788544,0.956947982311249,0.0141221741214395,0.289915651082993,0.930343925952911,-0.284103631973267,0.231830254197121,0.829259037971497,-0.332770079374313,0.448991775512695,0.902224242687225,-0.345201700925827,0.258509546518326,0.926871418952942,-0.302499800920486,0.222268790006638,0.853569328784943,-0.332780241966248,0.400845050811768,0.829259037971497,-0.332770079374313,0.448991775512695,0.853569328784943,-0.332780241966248,0.400845050811768,0.801258563995361,-0.360501676797867,0.477517813444138,0.786836504936218,-0.339921623468399,0.515113234519958,0.612357974052429,-0.103161364793777,0.783820986747742,0.839543461799622,-0.133703395724297,0.526583671569824,0.816722750663757,0.0452906414866447,0.575250089168549,0.557461261749268,0.0455756895244122,0.828951001167297,0.612357974052429,-0.103161364793777,0.783820986747742,0.557461261749268,0.0455756895244122,0.828951001167297,0.829737067222595,0.108809530735016,0.547445714473724,0.884318947792053,-0.054423701018095,0.463700622320175,0.941151320934296,-0.0821005627512932,0.327861964702606,0.940891146659851,-0.0501523986458778,0.33497542142868,0.92790675163269,-0.0666510611772537,0.366806298494339,0.925188720226288,-0.0991106107831001,0.366337329149246,0.92790675163269,-0.0666510611772537,0.366806298494339,0.920228779315948,-0.0795585364103317,0.383209377527237,0.914742171764374,-0.108909480273724,0.389082819223404,0.925188720226288,-0.0991106107831001,0.366337329149246,0.794584929943085,-0.250500679016113,0.553068041801453,0.850567281246185,-0.294763803482056,0.43548783659935, -0.808006346225739,-0.355535328388214,0.469808757305145,0.645715713500977,-0.332651615142822,0.687309324741364,0.794584929943085,-0.250500679016113,0.553068041801453,0.645715713500977,-0.332651615142822,0.687309324741364,0.885432124137878,-0.298503637313843,0.356238156557083,0.930343925952911,-0.284103631973267,0.231830254197121,0.889198124408722,-0.300890505313873,0.344661504030228,0.850567281246185,-0.294763803482056,0.43548783659935,0.943983197212219,0.128329202532768,0.304018646478653,0.930425465106964,0.224328979849815,0.289801716804504,0.889198124408722,-0.300890505313873,0.344661504030228,0.930425465106964,0.224328979849815,0.289801716804504,0.890287518501282,0.311503052711487,0.33219587802887,0.909848988056183,-0.299331039190292,0.287360101938248,0.96854168176651,-0.0373059138655663,0.246038869023323,0.957352161407471,-0.0185783803462982,0.288325995206833,0.921497642993927,-0.0544302947819233,0.384550929069519,0.922744691371918,-0.0873746052384377,0.375376880168915,0.921497642993927,-0.0544302947819233,0.384550929069519,0.932468891143799,-0.0516576319932938,0.357537627220154,0.930086016654968,-0.0858319774270058,0.357173442840576,0.922744691371918,-0.0873746052384377,0.375376880168915,0.931503593921661,-0.173606723546982,0.319627553224564,0.976979911327362,-0.180214643478394,0.114162653684616,0.982197225093842,0.000441860553110018,0.187852442264557,0.920298278331757,-0.00599656021222472,0.39117157459259,0.931503593921661,-0.173606723546982,0.319627553224564,0.920298278331757,-0.00599656021222472,0.39117157459259,0.933599233627319,0.0175865385681391,0.357887089252472,0.934256434440613,-0.153060808777809,0.322082817554474,0.924628794193268,-0.320484489202499,0.205794230103493,0.945364832878113,-0.312039226293564,0.0944293588399887,0.92187511920929,-0.38712340593338,0.016783095896244,0.90982460975647,-0.359352380037308,0.207569152116776,0.924628794193268,-0.320484489202499,0.205794230103493,0.90982460975647,-0.359352380037308,0.207569152116776,0.89973783493042,-0.341453313827515,0.271810978651047,0.909848988056183,-0.299331039190292,0.287360101938248, -0.971633672714233,-0.235121175646782,-0.0254140961915255,0.945364832878113,-0.312039226293564,0.0944293588399887,0.87207442522049,0.226961046457291,0.43356055021286,0.880670130252838,0.180893376469612,0.43783301115036,0.971633672714233,-0.235121175646782,-0.0254140961915255,0.880670130252838,0.180893376469612,0.43783301115036,0.92098480463028,0.143564224243164,0.362182676792145,0.805659294128418,-0.350429505109787,0.477611005306244,-0.125935733318329,-0.385893911123276,0.913906991481781,0.0692463666200638,-0.40363010764122,0.912298023700714,0.0625188425183296,-0.333361506462097,0.940723896026611,-0.155206382274628,-0.334304124116898,0.929597616195679,-0.125935733318329,-0.385893911123276,0.913906991481781,-0.155206382274628,-0.334304124116898,0.929597616195679,-0.458524763584137,-0.304732322692871,0.834801316261292,-0.424630582332611,-0.334179937839508,0.841434895992279,0.545852899551392,0.837256550788879,-0.0323435328900814,0.905852019786835,0.346154808998108,-0.24414949119091,0.680091977119446,0.339804410934448,-0.649621427059174,0.490617632865906,0.784561336040497,-0.379153966903687,0.905852019786835,0.346154808998108,-0.24414949119091,0.948680698871613,0.0530499294400215,-0.311754167079926,0.717204749584198,0.112385459244251,-0.687740445137024,0.680091977119446,0.339804410934448,-0.649621427059174,0.680091977119446,0.339804410934448,-0.649621427059174,0.717204749584198,0.112385459244251,-0.687740445137024,0.843631565570831,0.103148303925991,-0.526921272277832,0.80096834897995,0.345901638269424,-0.488673329353333,0.490617632865906,0.784561336040497,-0.379153966903687,0.680091977119446,0.339804410934448,-0.649621427059174,0.80096834897995,0.345901638269424,-0.488673329353333,0.552241027355194,0.750507056713104,-0.362999767065048,0.57364547252655,0.204739347100258,0.793103218078613,0.594833314418793,-0.0582898817956448,0.801732957363129,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.169697016477585,-0.00179272284731269,0.985494613647461,0.594833314418793,-0.0582898817956448,0.801732957363129,0.574931979179382,-0.21452622115612,0.789576947689056, --0.106116123497486,-0.28271272778511,0.953316748142242,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.106116123497486,-0.28271272778511,0.953316748142242,-0.0078623266890645,-0.305302023887634,0.952223122119904,-0.0524753332138062,-0.190004914999008,0.98037976026535,-0.169697016477585,-0.00179272284731269,0.985494613647461,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.0524753332138062,-0.190004914999008,0.98037976026535,-0.0601249672472477,0.0759568735957146,0.995296716690063,0.338340848684311,0.210584998130798,0.917158365249634,0.361900568008423,-0.171418622136116,0.916320621967316,0.598853766918182,-0.13367260992527,0.789623916149139,0.556516230106354,0.287375539541245,0.77955436706543,0.361900568008423,-0.171418622136116,0.916320621967316,0.373119860887527,-0.338860630989075,0.863686800003052,0.583847045898438,-0.327874779701233,0.742711663246155,0.598853766918182,-0.13367260992527,0.789623916149139,0.598853766918182,-0.13367260992527,0.789623916149139,0.583847045898438,-0.327874779701233,0.742711663246155,0.850554823875427,-0.263379454612732,0.455178827047348,0.882689833641052,-0.0387041978538036,0.468359529972076,0.556516230106354,0.287375539541245,0.77955436706543,0.598853766918182,-0.13367260992527,0.789623916149139,0.882689833641052,-0.0387041978538036,0.468359529972076,0.803968787193298,0.384839653968811,0.453356921672821,0.225879862904549,-0.420474976301193,0.878737211227417,0.388115346431732,-0.443261563777924,0.808013439178467,0.373119860887527,-0.338860630989075,0.863686800003052,0.176588729023933,-0.327380537986755,0.928244829177856,0.225879862904549,-0.420474976301193,0.878737211227417,0.176588729023933,-0.327380537986755,0.928244829177856,-0.0078623266890645,-0.305302023887634,0.952223122119904,0.0555685870349407,-0.379517942667007,0.923514127731323,0.948952376842499,-0.199090868234634,0.244647070765495,0.490249872207642,-0.306862562894821,0.815775990486145,0.574931979179382,-0.21452622115612,0.789576947689056,0.992714047431946,-0.0376175232231617,0.114470943808556, -0.948952376842499,-0.199090868234634,0.244647070765495,0.992714047431946,-0.0376175232231617,0.114470943808556,0.830479502677917,-0.194505542516708,0.521987855434418,0.763542711734772,-0.339976668357849,0.549015760421753,0.968820154666901,-0.236736476421356,0.073096938431263,0.256940931081772,-0.374582171440125,0.890881359577179,0.202647313475609,-0.298515766859055,0.932642757892609,0.987858235836029,-0.144031837582588,0.0582313798367977,0.968820154666901,-0.236736476421356,0.073096938431263,0.987858235836029,-0.144031837582588,0.0582313798367977,0.850554823875427,-0.263379454612732,0.455178827047348,0.820302903652191,-0.366882711648941,0.43874853849411,0.311008453369141,0.129438325762749,0.941551625728607,0.309647798538208,-0.164630636572838,0.936490893363953,0.550275981426239,-0.099647082388401,0.829015552997589,0.523320317268372,0.27934929728508,0.805046498775482,0.309647798538208,-0.164630636572838,0.936490893363953,0.287619531154633,-0.320103913545609,0.902667462825775,0.499810367822647,-0.296231180429459,0.813902080059052,0.550275981426239,-0.099647082388401,0.829015552997589,0.550275981426239,-0.099647082388401,0.829015552997589,0.499810367822647,-0.296231180429459,0.813902080059052,0.830479502677917,-0.194505542516708,0.521987855434418,0.894742727279663,0.0488326624035835,0.443904131650925,0.523320317268372,0.27934929728508,0.805046498775482,0.550275981426239,-0.099647082388401,0.829015552997589,0.894742727279663,0.0488326624035835,0.443904131650925,0.80627965927124,0.405445098876953,0.430728703737259,0.254012256860733,0.141789615154266,0.956751525402069,0.231135651469231,-0.167288109660149,0.958431541919708,-0.0929515063762665,-0.162311032414436,0.982351839542389,-0.0775697454810143,0.060862947255373,0.995127439498901,0.231135651469231,-0.167288109660149,0.958431541919708,0.202647313475609,-0.298515766859055,0.932642757892609,-0.117824763059616,-0.26248362660408,0.95771586894989,-0.0929515063762665,-0.162311032414436,0.982351839542389,-0.0929515063762665,-0.162311032414436,0.982351839542389,-0.117824763059616,-0.26248362660408,0.95771586894989, -0.23160557448864,-0.341618031263351,0.910854637622833,0.20401531457901,-0.166772156953812,0.964657783508301,-0.0775697454810143,0.060862947255373,0.995127439498901,-0.0929515063762665,-0.162311032414436,0.982351839542389,0.20401531457901,-0.166772156953812,0.964657783508301,0.189795464277267,0.239581629633904,0.952144026756287,0.161216169595718,-0.411513656377792,0.897031664848328,0.272015511989594,-0.415265917778015,0.868079364299774,0.287619531154633,-0.320103913545609,0.902667462825775,0.166856989264488,-0.326760053634644,0.930261552333832,0.161216169595718,-0.411513656377792,0.897031664848328,0.166856989264488,-0.326760053634644,0.930261552333832,0.0625188425183296,-0.333361506462097,0.940723896026611,0.0692463666200638,-0.40363010764122,0.912298023700714,0.56542831659317,-0.511293947696686,0.647201299667358,0.731242716312408,-0.51183021068573,0.450903505086899,0.76766049861908,-0.412512093782425,0.490439832210541,0.579422473907471,-0.400906980037689,0.709607779979706,0.56542831659317,-0.511293947696686,0.647201299667358,0.579422473907471,-0.400906980037689,0.709607779979706,0.23160557448864,-0.341618031263351,0.910854637622833,0.23664890229702,-0.448689639568329,0.86178594827652,0.702990412712097,0.419565856456757,0.574255168437958,0.799408972263336,-0.193910956382751,0.568633437156677,0.960128307342529,-0.156329676508904,0.231764107942581,0.850822269916534,0.454787462949753,0.263191670179367,0.799408972263336,-0.193910956382751,0.568633437156677,0.76766049861908,-0.412512093782425,0.490439832210541,0.901452958583832,-0.372857749462128,0.219908162951469,0.960128307342529,-0.156329676508904,0.231764107942581,0.960128307342529,-0.156329676508904,0.231764107942581,0.901452958583832,-0.372857749462128,0.219908162951469,0.954306364059448,-0.251068413257599,-0.162061840295792,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.850822269916534,0.454787462949753,0.263191670179367,0.960128307342529,-0.156329676508904,0.231764107942581,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.87173056602478,0.45006275177002,-0.193725004792213, -0.903905987739563,-0.195524647831917,-0.380426108837128,0.831725597381592,-0.397647082805634,0.387439489364624,0.780278146266937,-0.327104479074478,0.533074557781219,0.882660627365112,-0.110119074583054,-0.456928849220276,0.903905987739563,-0.195524647831917,-0.380426108837128,0.882660627365112,-0.110119074583054,-0.456928849220276,0.954306364059448,-0.251068413257599,-0.162061840295792,0.93332827091217,-0.338810741901398,-0.118767276406288,0.785448968410492,0.584083378314972,0.204734981060028,0.894276082515717,-0.097051627933979,0.436865478754044,0.214710965752602,-0.117083609104156,0.969634294509888,0.149979919195175,0.432588964700699,0.889029085636139,0.894276082515717,-0.097051627933979,0.436865478754044,0.780278146266937,-0.327104479074478,0.533074557781219,0.208847686648369,-0.293012231588364,0.933020114898682,0.214710965752602,-0.117083609104156,0.969634294509888,0.214710965752602,-0.117083609104156,0.969634294509888,0.208847686648369,-0.293012231588364,0.933020114898682,0.746551871299744,-0.328548848628998,0.578546464443207,0.808956742286682,-0.0573622770607471,0.585062980651855,0.149979919195175,0.432588964700699,0.889029085636139,0.214710965752602,-0.117083609104156,0.969634294509888,0.808956742286682,-0.0573622770607471,0.585062980651855,0.548696398735046,0.668518900871277,0.502010822296143,0.882075786590576,-0.372996717691422,0.287777364253998,0.920679688453674,-0.318991452455521,0.224929749965668,0.968433320522308,-0.201979890465736,0.146085485816002,0.948021054267883,-0.254489004611969,0.191027164459229,0.882075786590576,-0.372996717691422,0.287777364253998,0.948021054267883,-0.254489004611969,0.191027164459229,0.746551871299744,-0.328548848628998,0.578546464443207,0.682247877120972,-0.429192274808884,0.59188836812973,0.601027071475983,0.790183782577515,0.119900159537792,0.993971467018127,0.0660507827997208,0.0875101536512375,0.990473628044128,0.0833791941404343,0.109589867293835,0.633487701416016,0.76544189453125,0.113101147115231,0.993971467018127,0.0660507827997208,0.0875101536512375,0.968433320522308,-0.201979890465736,0.146085485816002, -0.976616501808167,-0.161731541156769,0.141644611954689,0.990473628044128,0.0833791941404343,0.109589867293835,0.990473628044128,0.0833791941404343,0.109589867293835,0.976616501808167,-0.161731541156769,0.141644611954689,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.989034950733185,0.108781777322292,-0.0998830646276474,0.633487701416016,0.76544189453125,0.113101147115231,0.990473628044128,0.0833791941404343,0.109589867293835,0.989034950733185,0.108781777322292,-0.0998830646276474,0.693340718746185,0.714396417140961,-0.0944258198142052,0.968112766742706,-0.115815326571465,-0.222136452794075,0.812639117240906,-0.217517703771591,0.540651261806488,0.855779409408569,-0.144384682178497,0.496784299612045,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.968112766742706,-0.115815326571465,-0.222136452794075,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.628531694412231,0.683484315872192,0.371210426092148,0.89562314748764,0.0532087571918964,0.441619753837585,0.309368699789047,0.00581573229283094,0.950924336910248,0.148756414651871,0.46286728978157,0.873856604099274,0.89562314748764,0.0532087571918964,0.441619753837585,0.855779409408569,-0.144384682178497,0.496784299612045,0.313735365867615,-0.166887998580933,0.934729099273682,0.309368699789047,0.00581573229283094,0.950924336910248,0.309368699789047,0.00581573229283094,0.950924336910248,0.313735365867615,-0.166887998580933,0.934729099273682,0.600039601325989,-0.140705794095993,0.787498772144318,0.631407916545868,0.117286719381809,0.766529679298401,0.148756414651871,0.46286728978157,0.873856604099274,0.309368699789047,0.00581573229283094,0.950924336910248,0.631407916545868,0.117286719381809,0.766529679298401,0.340618073940277,0.749954223632813,0.567052066326141,0.792877972126007,-0.21465927362442,0.570320785045624,0.867118418216705,-0.171389430761337,0.467687219381332,0.897814869880676,-0.0211839824914932,0.439863324165344,0.829451382160187,-0.0813746005296707,0.552619576454163, -0.792877972126007,-0.21465927362442,0.570320785045624,0.829451382160187,-0.0813746005296707,0.552619576454163,0.600039601325989,-0.140705794095993,0.787498772144318,0.581863045692444,-0.243657320737839,0.77592945098877,0.355875700712204,0.906293213367462,0.228002443909645,0.86969381570816,0.300446540117264,0.391617625951767,0.888605296611786,0.338463991880417,0.309552758932114,0.384320706129074,0.901485502719879,0.199051231145859,0.86969381570816,0.300446540117264,0.391617625951767,0.897814869880676,-0.0211839824914932,0.439863324165344,0.934940695762634,0.0340865701436996,0.353162676095963,0.888605296611786,0.338463991880417,0.309552758932114,0.888605296611786,0.338463991880417,0.309552758932114,0.934940695762634,0.0340865701436996,0.353162676095963,0.989045262336731,0.0934214890003204,0.114288978278637,0.926688432693481,0.367865145206451,0.076966218650341,0.384320706129074,0.901485502719879,0.199051231145859,0.888605296611786,0.338463991880417,0.309552758932114,0.926688432693481,0.367865145206451,0.076966218650341,0.460872143507004,0.886726438999176,0.0362347550690174,0.975308120250702,-0.00194700108841062,-0.220840260386467,0.884318947792053,-0.054423701018095,0.463700622320175,0.829737067222595,0.108809530735016,0.547445714473724,0.95555716753006,0.137370273470879,-0.260844856500626,0.975308120250702,-0.00194700108841062,-0.220840260386467,0.95555716753006,0.137370273470879,-0.260844856500626,0.989045262336731,0.0934214890003204,0.114288978278637,0.984977781772614,-0.0616224482655525,0.161311641335487,0.35998409986496,0.867266118526459,0.343890994787216,0.752720415592194,0.38932791352272,0.530881941318512,0.466896206140518,0.270174503326416,0.842029511928558,0.22581060230732,0.695758759975433,0.681857287883759,0.752720415592194,0.38932791352272,0.530881941318512,0.829737067222595,0.108809530735016,0.547445714473724,0.557461261749268,0.0455756895244122,0.828951001167297,0.466896206140518,0.270174503326416,0.842029511928558,0.466896206140518,0.270174503326416,0.842029511928558,0.557461261749268,0.0455756895244122,0.828951001167297, -0.816722750663757,0.0452906414866447,0.575250089168549,0.726607739925385,0.324426382780075,0.605630815029144,0.22581060230732,0.695758759975433,0.681857287883759,0.466896206140518,0.270174503326416,0.842029511928558,0.726607739925385,0.324426382780075,0.605630815029144,0.394051760435104,0.804004788398743,0.445308446884155,0.936541557312012,-0.143504872918129,0.319837808609009,0.934256434440613,-0.153060808777809,0.322082817554474,0.933599233627319,0.0175865385681391,0.357887089252472,0.942134022712708,0.0402702987194061,0.332808822393417,0.936541557312012,-0.143504872918129,0.319837808609009,0.942134022712708,0.0402702987194061,0.332808822393417,0.816722750663757,0.0452906414866447,0.575250089168549,0.839543461799622,-0.133703395724297,0.526583671569824,0.398877888917923,0.881957292556763,0.251093447208405,0.856952428817749,0.343463450670242,0.384272277355194,0.853111922740936,0.304333984851837,0.423769772052765,0.436673671007156,0.842924654483795,0.314315378665924,0.856952428817749,0.343463450670242,0.384272277355194,0.933599233627319,0.0175865385681391,0.357887089252472,0.920298278331757,-0.00599656021222472,0.39117157459259,0.853111922740936,0.304333984851837,0.423769772052765,0.853111922740936,0.304333984851837,0.423769772052765,0.920298278331757,-0.00599656021222472,0.39117157459259,0.982197225093842,0.000441860553110018,0.187852442264557,0.92270028591156,0.311021476984024,0.227793514728546,0.436673671007156,0.842924654483795,0.314315378665924,0.853111922740936,0.304333984851837,0.423769772052765,0.92270028591156,0.311021476984024,0.227793514728546,0.521250128746033,0.839334070682526,0.154326602816582,0.973433196544647,-0.164063036441803,-0.159721702337265,0.82255631685257,-0.213350489735603,0.527145743370056,0.833454966545105,-0.0589393526315689,0.549435198307037,0.994294047355652,0.0164229031652212,-0.105402871966362,0.973433196544647,-0.164063036441803,-0.159721702337265,0.994294047355652,0.0164229031652212,-0.105402871966362,0.982197225093842,0.000441860553110018,0.187852442264557,0.976979911327362,-0.180214643478394,0.114162653684616, -0.384831994771957,0.823053538799286,0.417716801166534,0.780824542045593,0.251494169235229,0.571894943714142,0.824138283729553,0.277803391218185,0.493580013513565,0.452140301465988,0.806186378002167,0.381618410348892,0.780824542045593,0.251494169235229,0.571894943714142,0.833454966545105,-0.0589393526315689,0.549435198307037,0.854334950447083,-0.0434923134744167,0.517899930477142,0.824138283729553,0.277803391218185,0.493580013513565,0.974883675575256,-0.173518389463425,0.139618128538132,0.985689699649811,-0.159650921821594,0.0541065037250519,0.995254218578339,0.0549554899334908,0.0803044810891151,0.993151307106018,0.0372834131121635,0.11072713881731,0.974883675575256,-0.173518389463425,0.139618128538132,0.993151307106018,0.0372834131121635,0.11072713881731,0.854334950447083,-0.0434923134744167,0.517899930477142,0.845588147640228,-0.197172567248344,0.496088355779648,0.370153248310089,0.92108142375946,0.120812572538853,0.899473369121552,0.420583963394165,0.118561275303364,0.92145162820816,0.361402422189713,0.142530664801598,0.442724764347076,0.874292135238647,0.19901779294014,0.899473369121552,0.420583963394165,0.118561275303364,0.995254218578339,0.0549554899334908,0.0803044810891151,0.998457312583923,0.0292231291532516,0.0472116097807884,0.92145162820816,0.361402422189713,0.142530664801598,0.92145162820816,0.361402422189713,0.142530664801598,0.998457312583923,0.0292231291532516,0.0472116097807884,0.948680698871613,0.0530499294400215,-0.311754167079926,0.905852019786835,0.346154808998108,-0.24414949119091,0.442724764347076,0.874292135238647,0.19901779294014,0.92145162820816,0.361402422189713,0.142530664801598,0.905852019786835,0.346154808998108,-0.24414949119091,0.545852899551392,0.837256550788879,-0.0323435328900814,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.167159870266914,0.339122027158737,-0.925772070884705,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.167159870266914,0.339122027158737,-0.925772070884705, --0.166266694664955,0.278747469186783,-0.945862174034119,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.733271539211273,0.35336098074913,-0.580903470516205,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.773969650268555,0.336919188499451,-0.536149680614471,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.773969650268555,0.336919188499451,-0.536149680614471,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.991487503051758,0.110444560647011,-0.0689526423811913,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.259191989898682,0.317290842533112,-0.912220358848572,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.259191989898682,0.317290842533112,-0.912220358848572, --0.406125217676163,0.278219938278198,-0.87043434381485,-0.518538475036621,0.333198189735413,-0.787462294101715,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.490829437971115,0.501539170742035,-0.712421834468842,7.32525177227217e-06,0.889752805233002,-0.456442594528198,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.0875224769115448,0.878100991249084,-0.470402628183365,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,7.073596407281e-06,0.83499151468277,-0.550262928009033,-0.0795824527740479,0.829624056816101,-0.552621483802795,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.0795824527740479,0.829624056816101,-0.552621483802795,-0.176512122154236,0.811137557029724,-0.557583630084991,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.0875224769115448,0.878100991249084,-0.470402628183365,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.5271235704422,0.795305848121643,0.299381494522095,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.896158635616302,0.439713567495346,-0.0595961138606071,-0.88666570186615,0.37198206782341,0.274687677621841,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.896158635616302,0.439713567495346,-0.0595961138606071, --0.896158635616302,0.439713567495346,-0.0595961138606071,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.97033816576004,0.154364034533501,-0.186052888631821,-0.88666570186615,0.37198206782341,0.274687677621841,-0.896158635616302,0.439713567495346,-0.0595961138606071,-0.97033816576004,0.154364034533501,-0.186052888631821,-0.97677755355835,0.115513071417809,0.180450409650803,-0.88973480463028,0.0997150093317032,-0.445453524589539,-0.899354934692383,0.05581059679389,-0.433642566204071,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.899354934692383,0.05581059679389,-0.433642566204071,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.851243257522583,0.219904631376266,-0.476473480463028,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.262969821691513,0.908584952354431,-0.324530899524689,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.241020381450653,0.876797020435333,-0.416096478700638,-0.508084416389465,0.858207881450653,0.0730034038424492, --0.40931636095047,0.90296483039856,-0.130822703242302,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.40931636095047,0.90296483039856,-0.130822703242302,-0.377121925354004,0.921668231487274,-0.0911404639482498,-0.825659394264221,0.460083603858948,-0.326511442661285,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.825659394264221,0.460083603858948,-0.326511442661285,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.930652797222137,0.237338930368423,-0.278487771749496,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.909069240093231,-0.172094643115997,-0.37944233417511,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.355114340782166,0.933930039405823,-0.0408466123044491,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.355114340782166,0.933930039405823,-0.0408466123044491, --0.239247843623161,0.970808088779449,0.0170955918729305,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.262632071971893,0.961122930049896,-0.0852473974227905,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.954137742519379,0.116419486701488,-0.275803655385971,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.985278785228729,0.125116720795631,-0.116496153175831,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.909995555877686,0.382108211517334,0.160939007997513,-0.911364376544952,0.382403463125229,0.152258291840553,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.911364376544952,0.382403463125229,0.152258291840553,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.0702982097864151,0.730232715606689,-0.67957216501236,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.0702982097864151,0.730232715606689,-0.67957216501236,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.0662364661693573,0.3167804479599,-0.946183323860168,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.0662364661693573,0.3167804479599,-0.946183323860168, --0.0522882007062435,0.322993904352188,-0.944955408573151,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.661113977432251,0.547075629234314,-0.513455450534821,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.729383707046509,0.360981017351151,-0.581112861633301,-0.697425842285156,0.352117657661438,-0.624187707901001, --0.661113977432251,0.547075629234314,-0.513455450534821,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.697425842285156,0.352117657661438,-0.624187707901001,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.412765175104141,0.837416112422943,-0.358272343873978,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.579877972602844,0.5845867395401,-0.567450225353241,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.635532975196838,0.760746121406555,0.131769448518753,-0.897319853305817,0.377036362886429,0.229479074478149,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.897319853305817,0.377036362886429,0.229479074478149,-0.962598562240601,0.186348855495453,0.196667715907097,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.579877972602844,0.5845867395401,-0.567450225353241,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.521687865257263,0.778944432735443,0.347975969314575,-0.448838919401169,0.886660933494568,0.111248157918453,-0.951875388622284,0.282558053731918,0.118718676269054,-0.891934096813202,0.180671438574791,0.414501368999481,-0.448838919401169,0.886660933494568,0.111248157918453,-0.392345577478409,0.919809639453888,0.00387298595160246,-0.928698837757111,0.34689873456955,-0.131071507930756,-0.951875388622284,0.282558053731918,0.118718676269054,-0.951875388622284,0.282558053731918,0.118718676269054, --0.928698837757111,0.34689873456955,-0.131071507930756,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.891934096813202,0.180671438574791,0.414501368999481,-0.951875388622284,0.282558053731918,0.118718676269054,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.341704130172729,0.905311167240143,-0.252289474010468,-0.316405475139618,0.84859436750412,-0.423998981714249,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.316405475139618,0.84859436750412,-0.423998981714249,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.844235479831696,0.0513768196105957,-0.533504366874695,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.852664291858673,-0.0599740967154503,-0.519005417823792,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.415281802415848,0.888628661632538,0.194628059864044,-0.369071453809738,0.929379105567932,0.00637798011302948, --0.845384836196899,0.530350089073181,-0.0636654645204544,-0.865572988986969,0.468763470649719,0.176193386316299,-0.369071453809738,0.929379105567932,0.00637798011302948,-0.343587458133698,0.937992751598358,0.0460143499076366,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.985278785228729,0.125116720795631,-0.116496153175831,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.865572988986969,0.468763470649719,0.176193386316299,-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.535358011722565,0.59464019536972,-0.599828958511353,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.336827337741852,0.317959636449814,-0.886255621910095,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.336827337741852,0.317959636449814,-0.886255621910095, --0.503602981567383,0.325766831636429,-0.800162494182587,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.332545906305313,0.353390842676163,-0.874373018741608,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.332545906305313,0.353390842676163,-0.874373018741608,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.592969179153442,0.321096628904343,-0.738433957099915,-0.466602355241776,0.295693963766098,-0.833575010299683,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.31383341550827,0.838994324207306,-0.44451904296875,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.22046186029911,0.873457729816437,-0.434129238128662,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.202570572495461,0.861213862895966,-0.466128766536713,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.257006973028183,0.818767726421356,-0.513387680053711,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.234378948807716,0.808495759963989,-0.539815783500671, --0.257006973028183,0.818767726421356,-0.513387680053711,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.202570572495461,0.861213862895966,-0.466128766536713,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.234378948807716,0.808495759963989,-0.539815783500671,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.176512122154236,0.811137557029724,-0.557583630084991,-0.0795824527740479,0.829624056816101,-0.552621483802795,-0.0919612050056458,0.737782955169678,-0.668744623661041,-0.172377914190292,0.741736710071564,-0.648160815238953,-0.0795824527740479,0.829624056816101,-0.552621483802795,7.073596407281e-06,0.83499151468277,-0.550262928009033,4.06080403081432e-07,0.735536515712738,-0.677485108375549,-0.0919612050056458,0.737782955169678,-0.668744623661041,-0.0919612050056458,0.737782955169678,-0.668744623661041,4.06080403081432e-07,0.735536515712738,-0.677485108375549,4.51247871069427e-07,0.499479681253433,-0.866325557231903,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.172377914190292,0.741736710071564,-0.648160815238953, --0.0919612050056458,0.737782955169678,-0.668744623661041,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.182878151535988,0.52682489156723,-0.830066859722137,4.51247871069427e-07,0.499479681253433,-0.866325557231903,2.50662333201035e-06,0.290553063154221,-0.95685887336731,-0.142850771546364,0.293649584054947,-0.945179104804993,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.142850771546364,0.293649584054947,-0.945179104804993,2.50662333201035e-06,0.290553063154221,-0.95685887336731,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,-0.221301317214966,0.152849704027176,-0.963152468204498,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.142850771546364,0.293649584054947,-0.945179104804993,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.182878151535988,0.52682489156723,-0.830066859722137,-0.33005753159523,0.373546361923218,-0.866905570030212,-0.348480015993118,0.189375415444374,-0.917986214160919,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.348480015993118,0.189375415444374,-0.917986214160919,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.342942506074905,0.810506045818329,-0.474837124347687,-0.222145259380341,0.690081894397736,-0.68879497051239,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.222145259380341,0.690081894397736,-0.68879497051239,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.835709750652313,0.249700054526329,-0.489120692014694,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.835709750652313,0.249700054526329,-0.489120692014694, --0.809337377548218,0.144351661205292,-0.569329082965851,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.96288138628006,0.131251558661461,-0.23586542904377,-0.924555361270905,0.129721865057945,-0.358286798000336,-0.911948204040527,0.11847773194313,-0.392827421426773,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.96288138628006,0.131251558661461,-0.23586542904377,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.990341305732727,0.092634342610836,0.103164255619049,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.370045125484467,0.90728098154068,-0.199769645929337,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.370045125484467,0.90728098154068,-0.199769645929337,-0.26593479514122,0.947541415691376,-0.177324414253235,-0.267555445432663,0.944637537002563,-0.18993167579174,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.267555445432663,0.944637537002563,-0.18993167579174, --0.268048852682114,0.938291668891907,-0.218537360429764,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.268048852682114,0.938291668891907,-0.218537360429764,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.262969821691513,0.908584952354431,-0.324530899524689,-0.792703151702881,0.400789320468903,-0.45933610200882,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.31383341550827,0.838994324207306,-0.44451904296875,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.291103214025497,0.861871302127838,-0.415255129337311,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.291103214025497,0.861871302127838,-0.415255129337311, --0.291103214025497,0.861871302127838,-0.415255129337311,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.241020381450653,0.876797020435333,-0.416096478700638,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.291103214025497,0.861871302127838,-0.415255129337311,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.22046186029911,0.873457729816437,-0.434129238128662,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.661455273628235,0.378868937492371,-0.647252202033997,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.748834669589996,0.238394916057587,-0.618396639823914,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.38867861032486,0.85452264547348,-0.344557642936707,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.38867861032486,0.85452264547348,-0.344557642936707, --0.413335084915161,0.895001292228699,0.16771088540554,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.809789836406708,0.00712836580350995,-0.586676836013794,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.809789836406708,0.00712836580350995,-0.586676836013794,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.40021613240242,0.909812211990356,0.109857328236103,-0.301414340734482,0.942200183868408,0.146315321326256,-0.200579598546028,0.958886027336121,0.200762361288071,-0.300162523984909,0.941737473011017,0.1517663449049,-0.301414340734482,0.942200183868408,0.146315321326256,-0.199016839265823,0.964948236942291,0.17107680439949,-0.0769341886043549,0.952120065689087,0.295885741710663,-0.200579598546028,0.958886027336121,0.200762361288071,-0.200579598546028,0.958886027336121,0.200762361288071,-0.0769341886043549,0.952120065689087,0.295885741710663, -3.1286046578316e-05,0.933347523212433,0.35897421836853,-0.108388245105743,0.959665358066559,0.259411454200745,-0.300162523984909,0.941737473011017,0.1517663449049,-0.200579598546028,0.958886027336121,0.200762361288071,-0.108388245105743,0.959665358066559,0.259411454200745,-0.222894638776779,0.95649117231369,0.188261821866035,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.355114340782166,0.933930039405823,-0.0408466123044491,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.40021613240242,0.909812211990356,0.109857328236103,-0.300162523984909,0.941737473011017,0.1517663449049,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.300162523984909,0.941737473011017,0.1517663449049,-0.222894638776779,0.95649117231369,0.188261821866035,-0.220642820000648,0.969886004924774,0.10313955694437,-0.355114340782166,0.933930039405823,-0.0408466123044491,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.220642820000648,0.969886004924774,0.10313955694437,-0.239247843623161,0.970808088779449,0.0170955918729305,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.906920254230499,0.337041199207306,-0.252782553434372,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.373310983181,0.911095559597015,-0.174767524003983, --0.370045125484467,0.90728098154068,-0.199769645929337,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.373310983181,0.911095559597015,-0.174767524003983,-0.373310983181,0.911095559597015,-0.174767524003983,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.262632071971893,0.961122930049896,-0.0852473974227905,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.370045125484467,0.90728098154068,-0.199769645929337,-0.373310983181,0.911095559597015,-0.174767524003983,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.26593479514122,0.947541415691376,-0.177324414253235,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.88703578710556,0.163084164261818,-0.43193855881691,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.885466039180756,0.269513994455338,-0.37856587767601,-0.868080079555511,-0.12176526337862,-0.481259018182755,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.885466039180756,0.269513994455338,-0.37856587767601,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.959764063358307,0.0512487143278122,-0.276091665029526, --0.905411005020142,0.0426722913980484,-0.422386080026627,-0.888384640216827,0.134062275290489,-0.439090073108673,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.954137742519379,0.116419486701488,-0.275803655385971,-0.888384640216827,0.134062275290489,-0.439090073108673,-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.959764063358307,0.0512487143278122,-0.276091665029526,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.689413130283356,0.722614347934723,0.0503795966506004,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.814514100551605,0.577297806739807,0.0573935136198997,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.814514100551605,0.577297806739807,0.0573935136198997,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.814514100551605,0.577297806739807,0.0573935136198997,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.584055960178375,0.809352517127991,0.0618640184402466,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.887072622776031,0.441629320383072,-0.134409114718437, --0.847642540931702,0.516695201396942,-0.120533362030983,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.991487503051758,0.110444560647011,-0.0689526423811913,-0.847642540931702,0.516695201396942,-0.120533362030983,-0.887072622776031,0.441629320383072,-0.134409114718437,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.847642540931702,0.516695201396942,-0.120533362030983,-0.991487503051758,0.110444560647011,-0.0689526423811913,-7.8074026532704e-06,0.338909506797791,-0.940818905830383,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.261917173862457,0.326285809278488,-0.908260464668274,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,4.66808523924556e-06,0.516847312450409,-0.856077551841736,-0.11115163564682,0.567677080631256,-0.815713167190552,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.11115163564682,0.567677080631256,-0.815713167190552,-0.133362740278244,0.658979296684265,-0.740243673324585,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.261917173862457,0.326285809278488,-0.908260464668274,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.348480015993118,0.189375415444374,-0.917986214160919,-0.357689201831818,0.230448618531227,-0.904959678649902,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.357689201831818,0.230448618531227,-0.904959678649902,-0.323321968317032,0.276273161172867,-0.905061423778534, --0.368761420249939,0.0988195315003395,-0.924256324768066,-0.221301317214966,0.152849704027176,-0.963152468204498,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,1.21185021271231e-05,0.230906829237938,-0.972975850105286,-0.291237950325012,0.205016359686852,-0.9344242811203,-0.221301317214966,0.152849704027176,-0.963152468204498,-0.291237950325012,0.205016359686852,-0.9344242811203,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.318880528211594,0.120925262570381,-0.940049111843109,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.466602355241776,0.295693963766098,-0.833575010299683,-0.763972997665405,0.199422031641006,-0.613658010959625,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.406125217676163,0.278219938278198,-0.87043434381485, --0.763972997665405,0.199422031641006,-0.613658010959625,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.592969179153442,0.321096628904343,-0.738433957099915,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.503602981567383,0.325766831636429,-0.800162494182587,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.262255430221558,0.337828725576401,-0.903932392597198, --0.661455273628235,0.378868937492371,-0.647252202033997,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.385275810956955,0.337066978216171,-0.85903924703598,-0.262255430221558,0.337828725576401,-0.903932392597198,-0.385275810956955,0.337066978216171,-0.85903924703598,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.813119411468506,0.13746352493763,-0.565632820129395,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.813119411468506,0.13746352493763,-0.565632820129395,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.661455273628235,0.378868937492371,-0.647252202033997,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.733271539211273,0.35336098074913,-0.580903470516205, --0.729383707046509,0.360981017351151,-0.581112861633301,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.990341305732727,0.092634342610836,0.103164255619049,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.97677755355835,0.115513071417809,0.180450409650803,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.962598562240601,0.186348855495453,0.196667715907097,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.899354934692383,0.05581059679389,-0.433642566204071, --0.915551662445068,0.0866205617785454,-0.392762154340744,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.924555361270905,0.129721865057945,-0.358286798000336,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.911948204040527,0.11847773194313,-0.392827421426773,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.830619513988495,-0.0403317101299763,0.555377900600433,-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.809337377548218,0.144351661205292,-0.569329082965851,-0.830619513988495,-0.0403317101299763,0.555377900600433, --0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.852664291858673,-0.0599740967154503,-0.519005417823792,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.844235479831696,0.0513768196105957,-0.533504366874695,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.95115453004837,0.120947979390621,-0.284036248922348,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.95115453004837,0.120947979390621,-0.284036248922348,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.868080079555511,-0.12176526337862,-0.481259018182755,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.868080079555511,-0.12176526337862,-0.481259018182755, --0.863634645938873,-0.193603023886681,-0.4654600918293,-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.909069240093231,-0.172094643115997,-0.37944233417511,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.895220398902893,0.123152531683445,-0.428268700838089,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.895220398902893,0.123152531683445,-0.428268700838089,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.909069240093231,-0.172094643115997,-0.37944233417511, --0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.887072622776031,0.441629320383072,-0.134409114718437,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.333563297986984,0.29656058549881,-0.894867241382599,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.462450176477432,0.886512696743011,0.015330545604229,-0.513878643512726,0.845303356647491,-0.146256804466248,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.857405304908752,0.477951169013977,-0.190837234258652,-0.513878643512726,0.845303356647491,-0.146256804466248,-0.577608048915863,0.788340985774994,-0.21186663210392,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.888384640216827,0.134062275290489,-0.439090073108673,-0.857405304908752,0.477951169013977,-0.190837234258652,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.888384640216827,0.134062275290489,-0.439090073108673, --0.954137742519379,0.116419486701488,-0.275803655385971,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.406125217676163,0.278219938278198,-0.87043434381485,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.503602981567383,0.325766831636429,-0.800162494182587,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.332545906305313,0.353390842676163,-0.874373018741608,-0.259191989898682,0.317290842533112,-0.912220358848572, --0.332545906305313,0.353390842676163,-0.874373018741608,-0.466602355241776,0.295693963766098,-0.833575010299683,-0.406125217676163,0.278219938278198,-0.87043434381485,-0.259191989898682,0.317290842533112,-0.912220358848572,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.336827337741852,0.317959636449814,-0.886255621910095,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.503602981567383,0.325766831636429,-0.800162494182587,-0.336827337741852,0.317959636449814,-0.886255621910095,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.535358011722565,0.59464019536972,-0.599828958511353, --0.57160872220993,0.753607094287872,-0.324561089277267,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.57160872220993,0.753607094287872,-0.324561089277267,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.661113977432251,0.547075629234314,-0.513455450534821,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.661113977432251,0.547075629234314,-0.513455450534821,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.0662364661693573,0.3167804479599,-0.946183323860168,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.0662364661693573,0.3167804479599,-0.946183323860168,-0.729383707046509,0.360981017351151,-0.581112861633301,-0.733271539211273,0.35336098074913,-0.580903470516205,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.697425842285156,0.352117657661438,-0.624187707901001,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.697425842285156,0.352117657661438,-0.624187707901001,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.412765175104141,0.837416112422943,-0.358272343873978, --0.579877972602844,0.5845867395401,-0.567450225353241,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.579877972602844,0.5845867395401,-0.567450225353241,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.729383707046509,0.360981017351151,-0.581112861633301,-0.962598562240601,0.186348855495453,0.196667715907097,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.635532975196838,0.760746121406555,0.131769448518753,-0.573742270469666,0.638030648231506,0.513552963733673,-0.785671651363373,0.226768895983696,0.575583100318909,-0.897319853305817,0.377036362886429,0.229479074478149,-0.573742270469666,0.638030648231506,0.513552963733673,-0.5271235704422,0.795305848121643,0.299381494522095,-0.88666570186615,0.37198206782341,0.274687677621841,-0.785671651363373,0.226768895983696,0.575583100318909,-0.785671651363373,0.226768895983696,0.575583100318909,-0.88666570186615,0.37198206782341,0.274687677621841,-0.97677755355835,0.115513071417809,0.180450409650803,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.897319853305817,0.377036362886429,0.229479074478149,-0.785671651363373,0.226768895983696,0.575583100318909,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.962598562240601,0.186348855495453,0.196667715907097,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.924555361270905,0.129721865057945,-0.358286798000336,-0.96288138628006,0.131251558661461,-0.23586542904377,-0.97033816576004,0.154364034533501,-0.186052888631821, --0.96288138628006,0.131251558661461,-0.23586542904377,-0.990341305732727,0.092634342610836,0.103164255619049,-0.97677755355835,0.115513071417809,0.180450409650803,-0.97033816576004,0.154364034533501,-0.186052888631821,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.458999872207642,0.861296474933624,-0.21791635453701,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.458999872207642,0.861296474933624,-0.21791635453701,-0.342942506074905,0.810506045818329,-0.474837124347687,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.809337377548218,0.144351661205292,-0.569329082965851,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.567175269126892,0.539602279663086,0.62220698595047,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.835709750652313,0.249700054526329,-0.489120692014694,-0.567175269126892,0.539602279663086,0.62220698595047,-0.521687865257263,0.778944432735443,0.347975969314575,-0.891934096813202,0.180671438574791,0.414501368999481,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.891934096813202,0.180671438574791,0.414501368999481, --0.908711850643158,-0.0246684141457081,0.416694313287735,-0.830619513988495,-0.0403317101299763,0.555377900600433,-0.835709750652313,0.249700054526329,-0.489120692014694,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.830619513988495,-0.0403317101299763,0.555377900600433,-0.809337377548218,0.144351661205292,-0.569329082965851,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.392345577478409,0.919809639453888,0.00387298595160246,-0.365481734275818,0.927372515201569,-0.0800210386514664,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.928698837757111,0.34689873456955,-0.131071507930756,-0.365481734275818,0.927372515201569,-0.0800210386514664,-0.341704130172729,0.905311167240143,-0.252289474010468,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.844235479831696,0.0513768196105957,-0.533504366874695,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.928698837757111,0.34689873456955,-0.131071507930756,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.852664291858673,-0.0599740967154503,-0.519005417823792,-0.844235479831696,0.0513768196105957,-0.533504366874695, --0.772837042808533,0.0912535265088081,-0.628009378910065,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.524913370609283,0.788064181804657,0.321591079235077,-0.894793093204498,0.415860712528229,0.162496373057365,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.524913370609283,0.788064181804657,0.321591079235077,-0.508084416389465,0.858207881450653,0.0730034038424492,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.894793093204498,0.415860712528229,0.162496373057365,-0.894793093204498,0.415860712528229,0.162496373057365,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.894793093204498,0.415860712528229,0.162496373057365,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.377121925354004,0.921668231487274,-0.0911404639482498,-0.402263283729553,0.91288834810257,-0.0694204643368721,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.825659394264221,0.460083603858948,-0.326511442661285,-0.402263283729553,0.91288834810257,-0.0694204643368721,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.895220398902893,0.123152531683445,-0.428268700838089, --0.825659394264221,0.460083603858948,-0.326511442661285,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.895220398902893,0.123152531683445,-0.428268700838089,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.413335084915161,0.895001292228699,0.16771088540554,-0.415281802415848,0.888628661632538,0.194628059864044,-0.865572988986969,0.468763470649719,0.176193386316299,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.865572988986969,0.468763470649719,0.176193386316299,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.985278785228729,0.125116720795631,-0.116496153175831,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.343587458133698,0.937992751598358,0.0460143499076366,-0.386403530836105,0.916396677494049,0.10444837808609,-0.857255101203918,0.513546884059906,-0.0371929965913296,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.386403530836105,0.916396677494049,0.10444837808609,-0.462450176477432,0.886512696743011,0.015330545604229,-0.857405304908752,0.477951169013977,-0.190837234258652,-0.857255101203918,0.513546884059906,-0.0371929965913296,-0.857255101203918,0.513546884059906,-0.0371929965913296, --0.857405304908752,0.477951169013977,-0.190837234258652,-0.954137742519379,0.116419486701488,-0.275803655385971,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.857255101203918,0.513546884059906,-0.0371929965913296,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.985278785228729,0.125116720795631,-0.116496153175831,4.66808523924556e-06,0.516847312450409,-0.856077551841736,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,0.0122514693066478,0.932336866855621,-0.361383080482483,-0.11115163564682,0.567677080631256,-0.815713167190552,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,3.16250188916456e-05,0.998316526412964,0.0580002292990685,-0.0110622951760888,0.998569190502167,0.0523180291056633,0.0122514693066478,0.932336866855621,-0.361383080482483,0.0122514693066478,0.932336866855621,-0.361383080482483,-0.0110622951760888,0.998569190502167,0.0523180291056633,-0.0313069485127926,0.998219788074493,0.0507664456963539,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.11115163564682,0.567677080631256,-0.815713167190552,0.0122514693066478,0.932336866855621,-0.361383080482483,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.133362740278244,0.658979296684265,-0.740243673324585,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.0702982097864151,0.730232715606689,-0.67957216501236,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.00183687009848654,0.999996066093445,0.00214116298593581,-0.0121289221569896,0.999878108501434,-0.00983350537717342,-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.0121289221569896,0.999878108501434,-0.00983350537717342,-0.0477085039019585,0.998204052448273,0.0362274385988712,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.0702982097864151,0.730232715606689,-0.67957216501236, --0.0366437584161758,0.959649205207825,-0.278801888227463,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.0477085039019585,0.998204052448273,0.0362274385988712,-0.0319208353757858,0.994053065776825,0.104112789034843,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.0319208353757858,0.994053065776825,0.104112789034843,0.0952361598610878,0.993827521800995,0.0568938255310059,-0.161480590701103,0.963787972927094,-0.212218597531319,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.161480590701103,0.963787972927094,-0.212218597531319,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.161480590701103,0.963787972927094,-0.212218597531319,-0.0369119942188263,0.92246276140213,-0.384317427873611,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.161480590701103,0.963787972927094,-0.212218597531319,0.0952361598610878,0.993827521800995,0.0568938255310059,0.295557230710983,0.950602173805237,-0.0948761776089668,-0.0369119942188263,0.92246276140213,-0.384317427873611,-0.0369119942188263,0.92246276140213,-0.384317427873611,0.295557230710983,0.950602173805237,-0.0948761776089668,0.0673517808318138,0.997349858283997,0.0275145396590233,-0.234841525554657,0.8384730219841,-0.491744220256805,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.0369119942188263,0.92246276140213,-0.384317427873611,-0.234841525554657,0.8384730219841,-0.491744220256805,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.234841525554657,0.8384730219841,-0.491744220256805, --0.292436748743057,0.864367842674255,-0.409083008766174,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.234841525554657,0.8384730219841,-0.491744220256805,0.0673517808318138,0.997349858283997,0.0275145396590233,-0.24118609726429,0.95075124502182,0.19468267261982,-0.292436748743057,0.864367842674255,-0.409083008766174,-0.292436748743057,0.864367842674255,-0.409083008766174,-0.24118609726429,0.95075124502182,0.19468267261982,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.292436748743057,0.864367842674255,-0.409083008766174,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.0432330444455147,0.999016404151917,0.00985363218933344,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.0432330444455147,0.999016404151917,0.00985363218933344,-0.0478165484964848,0.995825588703156,0.0777490139007568,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.249135732650757,0.953780472278595,-0.168030351400375,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.0478165484964848,0.995825588703156,0.0777490139007568,-0.0127053158357739,0.991984069347382,0.12572255730629, --0.249135732650757,0.953780472278595,-0.168030351400375,-0.249135732650757,0.953780472278595,-0.168030351400375,-0.0127053158357739,0.991984069347382,0.12572255730629,0.102952942252159,0.99466747045517,0.00612190458923578,-0.169963926076889,0.965009570121765,-0.199672043323517,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.249135732650757,0.953780472278595,-0.168030351400375,-0.169963926076889,0.965009570121765,-0.199672043323517,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.169963926076889,0.965009570121765,-0.199672043323517,-0.0803335383534431,0.915071129798889,-0.395210444927216,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.169963926076889,0.965009570121765,-0.199672043323517,0.102952942252159,0.99466747045517,0.00612190458923578,0.182742983102798,0.957685947418213,-0.22235669195652,-0.0803335383534431,0.915071129798889,-0.395210444927216,-0.0803335383534431,0.915071129798889,-0.395210444927216,0.182742983102798,0.957685947418213,-0.22235669195652,-0.0140211256220937,0.987421154975891,0.157489344477654,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.0803335383534431,0.915071129798889,-0.395210444927216,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.535358011722565,0.59464019536972,-0.599828958511353,-0.535358011722565,0.59464019536972,-0.599828958511353,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.57160872220993,0.753607094287872,-0.324561089277267,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.0140211256220937,0.987421154975891,0.157489344477654,-0.182302907109261,0.842795491218567,0.506420195102692,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.182302907109261,0.842795491218567,0.506420195102692,-0.0752060860395432,0.948791146278381,0.306821525096893,-0.2175372838974,0.975914299488068,-0.0164011064916849, --0.57160872220993,0.753607094287872,-0.324561089277267,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.2175372838974,0.975914299488068,-0.0164011064916849,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.2175372838974,0.975914299488068,-0.0164011064916849,-0.156618073582649,0.980050384998322,-0.122360542416573,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.2175372838974,0.975914299488068,-0.0164011064916849,-0.0752060860395432,0.948791146278381,0.306821525096893,0.0103472154587507,0.992015898227692,0.125687316060066,-0.156618073582649,0.980050384998322,-0.122360542416573,-0.156618073582649,0.980050384998322,-0.122360542416573,0.0103472154587507,0.992015898227692,0.125687316060066,0.0168159790337086,0.997184991836548,0.0730706378817558,-0.17233806848526,0.979040145874023,-0.108535289764404,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.156618073582649,0.980050384998322,-0.122360542416573,-0.17233806848526,0.979040145874023,-0.108535289764404,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.17233806848526,0.979040145874023,-0.108535289764404,-0.196722522377968,0.975988686084747,-0.0935221761465073,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.17233806848526,0.979040145874023,-0.108535289764404,0.0168159790337086,0.997184991836548,0.0730706378817558,0.0172094311565161,0.999496102333069,0.0266713909804821,-0.196722522377968,0.975988686084747,-0.0935221761465073,-0.196722522377968,0.975988686084747,-0.0935221761465073,0.0172094311565161,0.999496102333069,0.0266713909804821,0.058017011731863,0.987557113170624,-0.14616796374321,-0.169676408171654,0.963762521743774,-0.205843806266785,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.196722522377968,0.975988686084747,-0.0935221761465073,-0.169676408171654,0.963762521743774,-0.205843806266785,-0.412765175104141,0.837416112422943,-0.358272343873978,-0.412765175104141,0.837416112422943,-0.358272343873978, --0.169676408171654,0.963762521743774,-0.205843806266785,-0.114697873592377,0.91904205083847,-0.377102375030518,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.169676408171654,0.963762521743774,-0.205843806266785,0.058017011731863,0.987557113170624,-0.14616796374321,0.0911884754896164,0.92726469039917,-0.36313197016716,-0.114697873592377,0.91904205083847,-0.377102375030518,-0.114697873592377,0.91904205083847,-0.377102375030518,0.0911884754896164,0.92726469039917,-0.36313197016716,0.0375991500914097,0.989300429821014,-0.14096437394619,-0.169898360967636,0.984076023101807,-0.0522394739091396,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.114697873592377,0.91904205083847,-0.377102375030518,-0.169898360967636,0.984076023101807,-0.0522394739091396,-0.635532975196838,0.760746121406555,0.131769448518753,-0.635532975196838,0.760746121406555,0.131769448518753,-0.169898360967636,0.984076023101807,-0.0522394739091396,-0.14804969727993,0.926994621753693,0.344618916511536,-0.573742270469666,0.638030648231506,0.513552963733673,-0.169898360967636,0.984076023101807,-0.0522394739091396,0.0375991500914097,0.989300429821014,-0.14096437394619,-0.0528116226196289,0.961616039276123,0.26926851272583,-0.14804969727993,0.926994621753693,0.344618916511536,-0.14804969727993,0.926994621753693,0.344618916511536,-0.0528116226196289,0.961616039276123,0.26926851272583,-0.0388301573693752,0.978021323680878,0.20485745370388,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.573742270469666,0.638030648231506,0.513552963733673,-0.14804969727993,0.926994621753693,0.344618916511536,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.5271235704422,0.795305848121643,0.299381494522095,-0.5271235704422,0.795305848121643,0.299381494522095,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.019896199926734,0.988689363002777,0.148652255535126,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.0388301573693752,0.978021323680878,0.20485745370388,0.00324956374242902,0.990513205528259,0.137379035353661, --0.019896199926734,0.988689363002777,0.148652255535126,-0.019896199926734,0.988689363002777,0.148652255535126,0.00324956374242902,0.990513205528259,0.137379035353661,0.0307888351380825,0.993721127510071,0.107566244900227,-0.00052551890257746,0.99495267868042,0.100344128906727,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.019896199926734,0.988689363002777,0.148652255535126,-0.00052551890257746,0.99495267868042,0.100344128906727,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.00052551890257746,0.99495267868042,0.100344128906727,0.0212356559932232,0.999600768089294,0.0186338592320681,-0.458999872207642,0.861296474933624,-0.21791635453701,-0.00052551890257746,0.99495267868042,0.100344128906727,0.0307888351380825,0.993721127510071,0.107566244900227,0.0503260940313339,0.997583508491516,0.0478990525007248,0.0212356559932232,0.999600768089294,0.0186338592320681,0.0212356559932232,0.999600768089294,0.0186338592320681,0.0503260940313339,0.997583508491516,0.0478990525007248,0.09213537722826,0.989019989967346,-0.115543395280838,0.0685295760631561,0.983745336532593,-0.165978223085403,-0.458999872207642,0.861296474933624,-0.21791635453701,0.0212356559932232,0.999600768089294,0.0186338592320681,0.0685295760631561,0.983745336532593,-0.165978223085403,-0.342942506074905,0.810506045818329,-0.474837124347687,-0.342942506074905,0.810506045818329,-0.474837124347687,0.0685295760631561,0.983745336532593,-0.165978223085403,0.0967442467808723,0.931856572628021,-0.349691361188889,-0.222145259380341,0.690081894397736,-0.68879497051239,0.0685295760631561,0.983745336532593,-0.165978223085403,0.09213537722826,0.989019989967346,-0.115543395280838,0.119167521595955,0.956874191761017,-0.264935821294785,0.0967442467808723,0.931856572628021,-0.349691361188889,0.0967442467808723,0.931856572628021,-0.349691361188889,0.119167521595955,0.956874191761017,-0.264935821294785,0.0152148120105267,0.995371878147125,0.0948860645294189,-0.0430461131036282,0.99624639749527,0.0751009732484818, --0.222145259380341,0.690081894397736,-0.68879497051239,0.0967442467808723,0.931856572628021,-0.349691361188889,-0.0430461131036282,0.99624639749527,0.0751009732484818,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.0430461131036282,0.99624639749527,0.0751009732484818,-0.113832533359528,0.835574746131897,0.537454068660736,-0.567175269126892,0.539602279663086,0.62220698595047,-0.0430461131036282,0.99624639749527,0.0751009732484818,0.0152148120105267,0.995371878147125,0.0948860645294189,-0.0964507162570953,0.859883785247803,0.501295387744904,-0.113832533359528,0.835574746131897,0.537454068660736,-0.113832533359528,0.835574746131897,0.537454068660736,-0.0964507162570953,0.859883785247803,0.501295387744904,-0.0318146236240864,0.979532301425934,0.198757156729698,0.00924856029450893,0.969927966594696,0.243216246366501,-0.567175269126892,0.539602279663086,0.62220698595047,-0.113832533359528,0.835574746131897,0.537454068660736,0.00924856029450893,0.969927966594696,0.243216246366501,-0.521687865257263,0.778944432735443,0.347975969314575,-0.521687865257263,0.778944432735443,0.347975969314575,0.00924856029450893,0.969927966594696,0.243216246366501,0.0844905227422714,0.992185533046722,0.0918112471699715,-0.448838919401169,0.886660933494568,0.111248157918453,0.00924856029450893,0.969927966594696,0.243216246366501,-0.0318146236240864,0.979532301425934,0.198757156729698,0.0101152528077364,0.998629570007324,0.0513481982052326,0.0844905227422714,0.992185533046722,0.0918112471699715,0.0844905227422714,0.992185533046722,0.0918112471699715,0.0101152528077364,0.998629570007324,0.0513481982052326,0.00432905880734324,0.995575487613678,0.0938657149672508,0.0916174277663231,0.988539695739746,0.119980908930302,-0.448838919401169,0.886660933494568,0.111248157918453,0.0844905227422714,0.992185533046722,0.0918112471699715,0.0916174277663231,0.988539695739746,0.119980908930302,-0.392345577478409,0.919809639453888,0.00387298595160246,-0.392345577478409,0.919809639453888,0.00387298595160246, -0.0916174277663231,0.988539695739746,0.119980908930302,0.0639674514532089,0.989400684833527,0.130363136529922,-0.365481734275818,0.927372515201569,-0.0800210386514664,0.0916174277663231,0.988539695739746,0.119980908930302,0.00432905880734324,0.995575487613678,0.0938657149672508,-0.00818966887891293,0.992629706859589,0.12090964615345,0.0639674514532089,0.989400684833527,0.130363136529922,0.0639674514532089,0.989400684833527,0.130363136529922,-0.00818966887891293,0.992629706859589,0.12090964615345,0.00470683723688126,0.999671161174774,0.0252069365233183,0.0410426110029221,0.999078214168549,0.0125779751688242,-0.365481734275818,0.927372515201569,-0.0800210386514664,0.0639674514532089,0.989400684833527,0.130363136529922,0.0410426110029221,0.999078214168549,0.0125779751688242,-0.341704130172729,0.905311167240143,-0.252289474010468,-0.341704130172729,0.905311167240143,-0.252289474010468,0.0410426110029221,0.999078214168549,0.0125779751688242,0.0234179329127073,0.987943470478058,-0.153033837676048,-0.316405475139618,0.84859436750412,-0.423998981714249,0.0410426110029221,0.999078214168549,0.0125779751688242,0.00470683723688126,0.999671161174774,0.0252069365233183,0.0430123768746853,0.991815567016602,-0.120214991271496,0.0234179329127073,0.987943470478058,-0.153033837676048,0.0234179329127073,0.987943470478058,-0.153033837676048,0.0430123768746853,0.991815567016602,-0.120214991271496,-0.0337237343192101,0.987117350101471,0.156403377652168,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.316405475139618,0.84859436750412,-0.423998981714249,0.0234179329127073,0.987943470478058,-0.153033837676048,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.188221752643585,0.90550708770752,0.380301922559738,-0.524913370609283,0.788064181804657,0.321591079235077,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.0337237343192101,0.987117350101471,0.156403377652168, --0.108519114553928,0.915941119194031,0.386361747980118,-0.188221752643585,0.90550708770752,0.380301922559738,-0.188221752643585,0.90550708770752,0.380301922559738,-0.108519114553928,0.915941119194031,0.386361747980118,-0.0254004187881947,0.987537741661072,0.155319169163704,-0.0925894305109978,0.98253470659256,0.161408603191376,-0.524913370609283,0.788064181804657,0.321591079235077,-0.188221752643585,0.90550708770752,0.380301922559738,-0.0925894305109978,0.98253470659256,0.161408603191376,-0.508084416389465,0.858207881450653,0.0730034038424492,-0.508084416389465,0.858207881450653,0.0730034038424492,-0.0925894305109978,0.98253470659256,0.161408603191376,0.00711704138666391,0.999914407730103,0.0109824491664767,-0.40931636095047,0.90296483039856,-0.130822703242302,-0.0925894305109978,0.98253470659256,0.161408603191376,-0.0254004187881947,0.987537741661072,0.155319169163704,0.0219353027641773,0.999756932258606,0.00226145260967314,0.00711704138666391,0.999914407730103,0.0109824491664767,0.00711704138666391,0.999914407730103,0.0109824491664767,0.0219353027641773,0.999756932258606,0.00226145260967314,0.00392397586256266,0.995427072048187,0.095443494617939,0.0195025783032179,0.9951012134552,0.096918411552906,-0.40931636095047,0.90296483039856,-0.130822703242302,0.00711704138666391,0.999914407730103,0.0109824491664767,0.0195025783032179,0.9951012134552,0.096918411552906,-0.377121925354004,0.921668231487274,-0.0911404639482498,-0.377121925354004,0.921668231487274,-0.0911404639482498,0.0195025783032179,0.9951012134552,0.096918411552906,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.402263283729553,0.91288834810257,-0.0694204643368721,0.0195025783032179,0.9951012134552,0.096918411552906,0.00392397586256266,0.995427072048187,0.095443494617939,-0.0135720372200012,0.985743761062622,0.167705237865448,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.0135720372200012,0.985743761062622,0.167705237865448,-7.09159357938915e-05,0.999376535415649,0.0353056378662586, --0.0507439710199833,0.998709499835968,0.00209245411679149,-0.402263283729553,0.91288834810257,-0.0694204643368721,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.0507439710199833,0.998709499835968,0.00209245411679149,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.0507439710199833,0.998709499835968,0.00209245411679149,-0.0563449561595917,0.982479393482208,-0.177649602293968,-0.38867861032486,0.85452264547348,-0.344557642936707,-0.0507439710199833,0.998709499835968,0.00209245411679149,-7.09159357938915e-05,0.999376535415649,0.0353056378662586,0.0249503254890442,0.988700151443481,-0.14781528711319,-0.0563449561595917,0.982479393482208,-0.177649602293968,-0.0563449561595917,0.982479393482208,-0.177649602293968,0.0249503254890442,0.988700151443481,-0.14781528711319,-0.00852504093199968,0.977734506130219,0.209672600030899,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.38867861032486,0.85452264547348,-0.344557642936707,-0.0563449561595917,0.982479393482208,-0.177649602293968,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.413335084915161,0.895001292228699,0.16771088540554,-0.415281802415848,0.888628661632538,0.194628059864044,-0.413335084915161,0.895001292228699,0.16771088540554,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.00852504093199968,0.977734506130219,0.209672600030899,-0.0121619552373886,0.98167097568512,0.19019527733326,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.415281802415848,0.888628661632538,0.194628059864044,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.00748832244426012,0.999597012996674,0.0273828916251659,-0.369071453809738,0.929379105567932,0.00637798011302948,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.0121619552373886,0.98167097568512,0.19019527733326,0.00345631665550172,0.999890625476837,0.0143791576847434,-0.00748832244426012,0.999597012996674,0.0273828916251659, --0.00748832244426012,0.999597012996674,0.0273828916251659,0.00345631665550172,0.999890625476837,0.0143791576847434,0.002303765155375,0.995579421520233,0.0938953906297684,0.015581950545311,0.995435893535614,0.0941513404250145,-0.369071453809738,0.929379105567932,0.00637798011302948,-0.00748832244426012,0.999597012996674,0.0273828916251659,0.015581950545311,0.995435893535614,0.0941513404250145,-0.343587458133698,0.937992751598358,0.0460143499076366,-0.343587458133698,0.937992751598358,0.0460143499076366,0.015581950545311,0.995435893535614,0.0941513404250145,-0.013194901868701,0.980666279792786,0.19524247944355,-0.386403530836105,0.916396677494049,0.10444837808609,0.015581950545311,0.995435893535614,0.0941513404250145,0.002303765155375,0.995579421520233,0.0938953906297684,-0.00380300800316036,0.977337718009949,0.211651727557182,-0.013194901868701,0.980666279792786,0.19524247944355,-0.013194901868701,0.980666279792786,0.19524247944355,-0.00380300800316036,0.977337718009949,0.211651727557182,-0.00152228341903538,0.977239012718201,0.212135836482048,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.386403530836105,0.916396677494049,0.10444837808609,-0.013194901868701,0.980666279792786,0.19524247944355,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.462450176477432,0.886512696743011,0.015330545604229,-0.462450176477432,0.886512696743011,0.015330545604229,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.117184713482857,0.990918934345245,0.0659342855215073,-0.513878643512726,0.845303356647491,-0.146256804466248,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.00152228341903538,0.977239012718201,0.212135836482048,0.00482708029448986,0.994182825088501,0.107597917318344,-0.117184713482857,0.990918934345245,0.0659342855215073,-0.117184713482857,0.990918934345245,0.0659342855215073,0.00482708029448986,0.994182825088501,0.107597917318344,0.0506666153669357,0.996992409229279,-0.0586448013782501,-0.157791629433632,0.984245717525482,-0.0797630324959755,-0.513878643512726,0.845303356647491,-0.146256804466248, --0.117184713482857,0.990918934345245,0.0659342855215073,-0.157791629433632,0.984245717525482,-0.0797630324959755,-0.577608048915863,0.788340985774994,-0.21186663210392,0.0943290740251541,0.0288522019982338,0.995122849941254,0.0316253863275051,0.795755922794342,0.604791283607483,-0.092217817902565,0.771196782588959,0.629882216453552,-0.10880571603775,0.0131476251408458,0.99397599697113,0.0316253863275051,0.795755922794342,0.604791283607483,-0.00183687009848654,0.999996066093445,0.00214116298593581,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.092217817902565,0.771196782588959,0.629882216453552,-0.092217817902565,0.771196782588959,0.629882216453552,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.0313069485127926,0.998219788074493,0.0507664456963539,-0.27617135643959,0.731259226799011,0.623689949512482,-0.10880571603775,0.0131476251408458,0.99397599697113,-0.092217817902565,0.771196782588959,0.629882216453552,-0.27617135643959,0.731259226799011,0.623689949512482,-0.416721314191818,-0.0176437478512526,0.908863008022308,0.311008453369141,0.129438325762749,0.941551625728607,0.14326636493206,0.767526388168335,0.624802529811859,0.0900027900934219,0.76776510477066,0.634378612041473,0.192267388105392,0.0386416390538216,0.980581521987915,0.14326636493206,0.767526388168335,0.624802529811859,-0.0477085039019585,0.998204052448273,0.0362274385988712,-0.0121289221569896,0.999878108501434,-0.00983350537717342,0.0900027900934219,0.76776510477066,0.634378612041473,0.0900027900934219,0.76776510477066,0.634378612041473,-0.0121289221569896,0.999878108501434,-0.00983350537717342,-0.00183687009848654,0.999996066093445,0.00214116298593581,0.0316253863275051,0.795755922794342,0.604791283607483,0.192267388105392,0.0386416390538216,0.980581521987915,0.0900027900934219,0.76776510477066,0.634378612041473,0.0316253863275051,0.795755922794342,0.604791283607483,0.0943290740251541,0.0288522019982338,0.995122849941254,0.80627965927124,0.405445098876953,0.430728703737259,0.436077535152435,0.860387980937958,0.26375937461853,0.24473749101162,0.838744223117828,0.486427545547485, -0.523320317268372,0.27934929728508,0.805046498775482,0.436077535152435,0.860387980937958,0.26375937461853,0.0952361598610878,0.993827521800995,0.0568938255310059,-0.0319208353757858,0.994053065776825,0.104112789034843,0.24473749101162,0.838744223117828,0.486427545547485,0.24473749101162,0.838744223117828,0.486427545547485,-0.0319208353757858,0.994053065776825,0.104112789034843,-0.0477085039019585,0.998204052448273,0.0362274385988712,0.14326636493206,0.767526388168335,0.624802529811859,0.523320317268372,0.27934929728508,0.805046498775482,0.24473749101162,0.838744223117828,0.486427545547485,0.14326636493206,0.767526388168335,0.624802529811859,0.311008453369141,0.129438325762749,0.941551625728607,0.57364547252655,0.204739347100258,0.793103218078613,0.370899677276611,0.784878849983215,0.496385633945465,0.64087963104248,0.767391085624695,0.0195998437702656,0.918852925300598,0.391142338514328,0.0521256364881992,0.370899677276611,0.784878849983215,0.496385633945465,0.0673517808318138,0.997349858283997,0.0275145396590233,0.295557230710983,0.950602173805237,-0.0948761776089668,0.64087963104248,0.767391085624695,0.0195998437702656,0.64087963104248,0.767391085624695,0.0195998437702656,0.295557230710983,0.950602173805237,-0.0948761776089668,0.0952361598610878,0.993827521800995,0.0568938255310059,0.436077535152435,0.860387980937958,0.26375937461853,0.918852925300598,0.391142338514328,0.0521256364881992,0.64087963104248,0.767391085624695,0.0195998437702656,0.436077535152435,0.860387980937958,0.26375937461853,0.80627965927124,0.405445098876953,0.430728703737259,-0.0601249672472477,0.0759568735957146,0.995296716690063,-0.0977206006646156,0.690484046936035,0.716716468334198,-0.216038152575493,0.53965163230896,0.813697457313538,-0.169697016477585,-0.00179272284731269,0.985494613647461,-0.0977206006646156,0.690484046936035,0.716716468334198,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.24118609726429,0.95075124502182,0.19468267261982,-0.216038152575493,0.53965163230896,0.813697457313538,-0.216038152575493,0.53965163230896,0.813697457313538, --0.24118609726429,0.95075124502182,0.19468267261982,0.0673517808318138,0.997349858283997,0.0275145396590233,0.370899677276611,0.784878849983215,0.496385633945465,-0.169697016477585,-0.00179272284731269,0.985494613647461,-0.216038152575493,0.53965163230896,0.813697457313538,0.370899677276611,0.784878849983215,0.496385633945465,0.57364547252655,0.204739347100258,0.793103218078613,0.338340848684311,0.210584998130798,0.917158365249634,0.153821229934692,0.807217717170715,0.569858491420746,0.047969538718462,0.776811957359314,0.627902865409851,0.131848931312561,0.144873842597008,0.980626046657562,0.153821229934692,0.807217717170715,0.569858491420746,-0.0478165484964848,0.995825588703156,0.0777490139007568,-0.0432330444455147,0.999016404151917,0.00985363218933344,0.047969538718462,0.776811957359314,0.627902865409851,0.047969538718462,0.776811957359314,0.627902865409851,-0.0432330444455147,0.999016404151917,0.00985363218933344,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.0977206006646156,0.690484046936035,0.716716468334198,0.131848931312561,0.144873842597008,0.980626046657562,0.047969538718462,0.776811957359314,0.627902865409851,-0.0977206006646156,0.690484046936035,0.716716468334198,-0.0601249672472477,0.0759568735957146,0.995296716690063,0.803968787193298,0.384839653968811,0.453356921672821,0.446645706892014,0.862121403217316,0.239278569817543,0.277985751628876,0.833320438861847,0.47780853509903,0.556516230106354,0.287375539541245,0.77955436706543,0.446645706892014,0.862121403217316,0.239278569817543,0.102952942252159,0.99466747045517,0.00612190458923578,-0.0127053158357739,0.991984069347382,0.12572255730629,0.277985751628876,0.833320438861847,0.47780853509903,0.277985751628876,0.833320438861847,0.47780853509903,-0.0127053158357739,0.991984069347382,0.12572255730629,-0.0478165484964848,0.995825588703156,0.0777490139007568,0.153821229934692,0.807217717170715,0.569858491420746,0.556516230106354,0.287375539541245,0.77955436706543,0.277985751628876,0.833320438861847,0.47780853509903,0.153821229934692,0.807217717170715,0.569858491420746, -0.338340848684311,0.210584998130798,0.917158365249634,0.254012256860733,0.141789615154266,0.956751525402069,0.162386640906334,0.794926583766937,0.584570229053497,0.495297431945801,0.863593935966492,-0.0942657589912415,0.887653052806854,0.459179997444153,0.0350099876523018,0.162386640906334,0.794926583766937,0.584570229053497,-0.0140211256220937,0.987421154975891,0.157489344477654,0.182742983102798,0.957685947418213,-0.22235669195652,0.495297431945801,0.863593935966492,-0.0942657589912415,0.495297431945801,0.863593935966492,-0.0942657589912415,0.182742983102798,0.957685947418213,-0.22235669195652,0.102952942252159,0.99466747045517,0.00612190458923578,0.446645706892014,0.862121403217316,0.239278569817543,0.887653052806854,0.459179997444153,0.0350099876523018,0.495297431945801,0.863593935966492,-0.0942657589912415,0.446645706892014,0.862121403217316,0.239278569817543,0.803968787193298,0.384839653968811,0.453356921672821,0.189795464277267,0.239581629633904,0.952144026756287,0.0542634166777134,0.735537588596344,0.675307333469391,-0.111539252102375,0.495245486497879,0.86156302690506,-0.0775697454810143,0.060862947255373,0.995127439498901,0.0542634166777134,0.735537588596344,0.675307333469391,-0.0752060860395432,0.948791146278381,0.306821525096893,-0.182302907109261,0.842795491218567,0.506420195102692,-0.111539252102375,0.495245486497879,0.86156302690506,-0.111539252102375,0.495245486497879,0.86156302690506,-0.182302907109261,0.842795491218567,0.506420195102692,-0.0140211256220937,0.987421154975891,0.157489344477654,0.162386640906334,0.794926583766937,0.584570229053497,-0.0775697454810143,0.060862947255373,0.995127439498901,-0.111539252102375,0.495245486497879,0.86156302690506,0.162386640906334,0.794926583766937,0.584570229053497,0.254012256860733,0.141789615154266,0.956751525402069,0.702990412712097,0.419565856456757,0.574255168437958,0.282113760709763,0.910610020160675,0.301995545625687,0.217031970620155,0.869852483272552,0.443005204200745,0.500296115875244,0.364424914121628,0.785428762435913,0.282113760709763,0.910610020160675,0.301995545625687, -0.0168159790337086,0.997184991836548,0.0730706378817558,0.0103472154587507,0.992015898227692,0.125687316060066,0.217031970620155,0.869852483272552,0.443005204200745,0.217031970620155,0.869852483272552,0.443005204200745,0.0103472154587507,0.992015898227692,0.125687316060066,-0.0752060860395432,0.948791146278381,0.306821525096893,0.0542634166777134,0.735537588596344,0.675307333469391,0.500296115875244,0.364424914121628,0.785428762435913,0.217031970620155,0.869852483272552,0.443005204200745,0.0542634166777134,0.735537588596344,0.675307333469391,0.189795464277267,0.239581629633904,0.952144026756287,0.87173056602478,0.45006275177002,-0.193725004792213,0.399394333362579,0.904639661312103,-0.148698210716248,0.33745151758194,0.929914116859436,0.146240413188934,0.850822269916534,0.454787462949753,0.263191670179367,0.399394333362579,0.904639661312103,-0.148698210716248,0.058017011731863,0.987557113170624,-0.14616796374321,0.0172094311565161,0.999496102333069,0.0266713909804821,0.33745151758194,0.929914116859436,0.146240413188934,0.33745151758194,0.929914116859436,0.146240413188934,0.0172094311565161,0.999496102333069,0.0266713909804821,0.0168159790337086,0.997184991836548,0.0730706378817558,0.282113760709763,0.910610020160675,0.301995545625687,0.850822269916534,0.454787462949753,0.263191670179367,0.33745151758194,0.929914116859436,0.146240413188934,0.282113760709763,0.910610020160675,0.301995545625687,0.702990412712097,0.419565856456757,0.574255168437958,0.785448968410492,0.584083378314972,0.204734981060028,0.19513937830925,0.971059203147888,-0.137711808085442,0.385677367448807,0.821133375167847,-0.420705229043961,0.754838287830353,0.40166237950325,-0.518542528152466,0.19513937830925,0.971059203147888,-0.137711808085442,0.0375991500914097,0.989300429821014,-0.14096437394619,0.0911884754896164,0.92726469039917,-0.36313197016716,0.385677367448807,0.821133375167847,-0.420705229043961,0.385677367448807,0.821133375167847,-0.420705229043961,0.0911884754896164,0.92726469039917,-0.36313197016716,0.058017011731863,0.987557113170624,-0.14616796374321, -0.399394333362579,0.904639661312103,-0.148698210716248,0.754838287830353,0.40166237950325,-0.518542528152466,0.385677367448807,0.821133375167847,-0.420705229043961,0.399394333362579,0.904639661312103,-0.148698210716248,0.87173056602478,0.45006275177002,-0.193725004792213,0.548696398735046,0.668518900871277,0.502010822296143,0.00152639474254102,0.968944251537323,0.247274860739708,-0.0557848513126373,0.906190931797028,0.419172912836075,0.149979919195175,0.432588964700699,0.889029085636139,0.00152639474254102,0.968944251537323,0.247274860739708,-0.0388301573693752,0.978021323680878,0.20485745370388,-0.0528116226196289,0.961616039276123,0.26926851272583,-0.0557848513126373,0.906190931797028,0.419172912836075,-0.0557848513126373,0.906190931797028,0.419172912836075,-0.0528116226196289,0.961616039276123,0.26926851272583,0.0375991500914097,0.989300429821014,-0.14096437394619,0.19513937830925,0.971059203147888,-0.137711808085442,0.149979919195175,0.432588964700699,0.889029085636139,-0.0557848513126373,0.906190931797028,0.419172912836075,0.19513937830925,0.971059203147888,-0.137711808085442,0.785448968410492,0.584083378314972,0.204734981060028,0.601027071475983,0.790183782577515,0.119900159537792,0.0347275286912918,0.994239151477814,0.101403146982193,0.0272583737969398,0.99127209186554,0.128983035683632,0.624202966690063,0.76788067817688,0.143978625535965,0.0347275286912918,0.994239151477814,0.101403146982193,0.0307888351380825,0.993721127510071,0.107566244900227,0.00324956374242902,0.990513205528259,0.137379035353661,0.0272583737969398,0.99127209186554,0.128983035683632,0.0272583737969398,0.99127209186554,0.128983035683632,0.00324956374242902,0.990513205528259,0.137379035353661,-0.0388301573693752,0.978021323680878,0.20485745370388,0.00152639474254102,0.968944251537323,0.247274860739708,0.624202966690063,0.76788067817688,0.143978625535965,0.0272583737969398,0.99127209186554,0.128983035683632,0.00152639474254102,0.968944251537323,0.247274860739708,0.548696398735046,0.668518900871277,0.502010822296143,0.693340718746185,0.714396417140961,-0.0944258198142052, -0.128191024065018,0.984565615653992,-0.119153402745724,0.063341036438942,0.996840834617615,0.0479210540652275,0.633487701416016,0.76544189453125,0.113101147115231,0.128191024065018,0.984565615653992,-0.119153402745724,0.09213537722826,0.989019989967346,-0.115543395280838,0.0503260940313339,0.997583508491516,0.0478990525007248,0.063341036438942,0.996840834617615,0.0479210540652275,0.063341036438942,0.996840834617615,0.0479210540652275,0.0503260940313339,0.997583508491516,0.0478990525007248,0.0307888351380825,0.993721127510071,0.107566244900227,0.0347275286912918,0.994239151477814,0.101403146982193,0.633487701416016,0.76544189453125,0.113101147115231,0.063341036438942,0.996840834617615,0.0479210540652275,0.0347275286912918,0.994239151477814,0.101403146982193,0.601027071475983,0.790183782577515,0.119900159537792,0.628531694412231,0.683484315872192,0.371210426092148,0.0608241781592369,0.990066409111023,0.126763314008713,0.173851832747459,0.945185542106628,-0.276405245065689,0.699336349964142,0.640298962593079,-0.317719727754593,0.0608241781592369,0.990066409111023,0.126763314008713,0.0152148120105267,0.995371878147125,0.0948860645294189,0.119167521595955,0.956874191761017,-0.264935821294785,0.173851832747459,0.945185542106628,-0.276405245065689,0.173851832747459,0.945185542106628,-0.276405245065689,0.119167521595955,0.956874191761017,-0.264935821294785,0.09213537722826,0.989019989967346,-0.115543395280838,0.128191024065018,0.984565615653992,-0.119153402745724,0.699336349964142,0.640298962593079,-0.317719727754593,0.173851832747459,0.945185542106628,-0.276405245065689,0.128191024065018,0.984565615653992,-0.119153402745724,0.693340718746185,0.714396417140961,-0.0944258198142052,0.340618073940277,0.749954223632813,0.567052066326141,-0.0778845399618149,0.968756437301636,0.235467776656151,-0.120079904794693,0.812858641147614,0.569948792457581,0.148756414651871,0.46286728978157,0.873856604099274,-0.0778845399618149,0.968756437301636,0.235467776656151,-0.0318146236240864,0.979532301425934,0.198757156729698,-0.0964507162570953,0.859883785247803,0.501295387744904, --0.120079904794693,0.812858641147614,0.569948792457581,-0.120079904794693,0.812858641147614,0.569948792457581,-0.0964507162570953,0.859883785247803,0.501295387744904,0.0152148120105267,0.995371878147125,0.0948860645294189,0.0608241781592369,0.990066409111023,0.126763314008713,0.148756414651871,0.46286728978157,0.873856604099274,-0.120079904794693,0.812858641147614,0.569948792457581,0.0608241781592369,0.990066409111023,0.126763314008713,0.628531694412231,0.683484315872192,0.371210426092148,0.355875700712204,0.906293213367462,0.228002443909645,-0.0914863049983978,0.993721783161163,0.0643994733691216,-0.0741240307688713,0.995790958404541,0.0539057552814484,0.389368146657944,0.872968256473541,0.293800622224808,-0.0914863049983978,0.993721783161163,0.0643994733691216,0.00432905880734324,0.995575487613678,0.0938657149672508,0.0101152528077364,0.998629570007324,0.0513481982052326,-0.0741240307688713,0.995790958404541,0.0539057552814484,-0.0741240307688713,0.995790958404541,0.0539057552814484,0.0101152528077364,0.998629570007324,0.0513481982052326,-0.0318146236240864,0.979532301425934,0.198757156729698,-0.0778845399618149,0.968756437301636,0.235467776656151,0.389368146657944,0.872968256473541,0.293800622224808,-0.0741240307688713,0.995790958404541,0.0539057552814484,-0.0778845399618149,0.968756437301636,0.235467776656151,0.340618073940277,0.749954223632813,0.567052066326141,0.460872143507004,0.886726438999176,0.0362347550690174,-0.0077669988386333,0.999922454357147,-0.00973335932940245,-0.0701415315270424,0.994135320186615,0.0823114439845085,0.384320706129074,0.901485502719879,0.199051231145859,-0.0077669988386333,0.999922454357147,-0.00973335932940245,0.00470683723688126,0.999671161174774,0.0252069365233183,-0.00818966887891293,0.992629706859589,0.12090964615345,-0.0701415315270424,0.994135320186615,0.0823114439845085,-0.0701415315270424,0.994135320186615,0.0823114439845085,-0.00818966887891293,0.992629706859589,0.12090964615345,0.00432905880734324,0.995575487613678,0.0938657149672508,-0.0914863049983978,0.993721783161163,0.0643994733691216, -0.384320706129074,0.901485502719879,0.199051231145859,-0.0701415315270424,0.994135320186615,0.0823114439845085,-0.0914863049983978,0.993721783161163,0.0643994733691216,0.355875700712204,0.906293213367462,0.228002443909645,0.35998409986496,0.867266118526459,0.343890994787216,0.0161274503916502,0.983354330062866,0.180981144309044,0.0682670697569847,0.982852220535278,-0.171292245388031,0.474772721529007,0.848200619220734,-0.234832912683487,0.0161274503916502,0.983354330062866,0.180981144309044,-0.0337237343192101,0.987117350101471,0.156403377652168,0.0430123768746853,0.991815567016602,-0.120214991271496,0.0682670697569847,0.982852220535278,-0.171292245388031,0.0682670697569847,0.982852220535278,-0.171292245388031,0.0430123768746853,0.991815567016602,-0.120214991271496,0.00470683723688126,0.999671161174774,0.0252069365233183,-0.0077669988386333,0.999922454357147,-0.00973335932940245,0.474772721529007,0.848200619220734,-0.234832912683487,0.0682670697569847,0.982852220535278,-0.171292245388031,-0.0077669988386333,0.999922454357147,-0.00973335932940245,0.460872143507004,0.886726438999176,0.0362347550690174,0.394051760435104,0.804004788398743,0.445308446884155,0.0325187593698502,0.976952314376831,0.210965871810913,-0.0386612713336945,0.895626246929169,0.44312384724617,0.22581060230732,0.695758759975433,0.681857287883759,0.0325187593698502,0.976952314376831,0.210965871810913,-0.0254004187881947,0.987537741661072,0.155319169163704,-0.108519114553928,0.915941119194031,0.386361747980118,-0.0386612713336945,0.895626246929169,0.44312384724617,-0.0386612713336945,0.895626246929169,0.44312384724617,-0.108519114553928,0.915941119194031,0.386361747980118,-0.0337237343192101,0.987117350101471,0.156403377652168,0.0161274503916502,0.983354330062866,0.180981144309044,0.22581060230732,0.695758759975433,0.681857287883759,-0.0386612713336945,0.895626246929169,0.44312384724617,0.0161274503916502,0.983354330062866,0.180981144309044,0.35998409986496,0.867266118526459,0.343890994787216,0.398877888917923,0.881957292556763,0.251093447208405,-0.0139050232246518,0.995923221111298,0.0891261100769043, -0.029930155724287,0.999076426029205,0.0308278258889914,0.437616169452667,0.872551083564758,0.217133089900017,-0.0139050232246518,0.995923221111298,0.0891261100769043,0.00392397586256266,0.995427072048187,0.095443494617939,0.0219353027641773,0.999756932258606,0.00226145260967314,0.029930155724287,0.999076426029205,0.0308278258889914,0.029930155724287,0.999076426029205,0.0308278258889914,0.0219353027641773,0.999756932258606,0.00226145260967314,-0.0254004187881947,0.987537741661072,0.155319169163704,0.0325187593698502,0.976952314376831,0.210965871810913,0.437616169452667,0.872551083564758,0.217133089900017,0.029930155724287,0.999076426029205,0.0308278258889914,0.0325187593698502,0.976952314376831,0.210965871810913,0.394051760435104,0.804004788398743,0.445308446884155,0.521250128746033,0.839334070682526,0.154326602816582,0.0765232518315315,0.996190786361694,0.041808694601059,0.00862592738121748,0.986981630325317,0.160601481795311,0.436673671007156,0.842924654483795,0.314315378665924,0.0765232518315315,0.996190786361694,0.041808694601059,-7.09159357938915e-05,0.999376535415649,0.0353056378662586,-0.0135720372200012,0.985743761062622,0.167705237865448,0.00862592738121748,0.986981630325317,0.160601481795311,0.00862592738121748,0.986981630325317,0.160601481795311,-0.0135720372200012,0.985743761062622,0.167705237865448,0.00392397586256266,0.995427072048187,0.095443494617939,-0.0139050232246518,0.995923221111298,0.0891261100769043,0.436673671007156,0.842924654483795,0.314315378665924,0.00862592738121748,0.986981630325317,0.160601481795311,-0.0139050232246518,0.995923221111298,0.0891261100769043,0.398877888917923,0.881957292556763,0.251093447208405,0.384831994771957,0.823053538799286,0.417716801166534,0.0541492849588394,0.968682885169983,0.242324933409691,0.111546769738197,0.982672929763794,-0.148024842143059,0.506224989891052,0.854502975940704,-0.116451598703861,0.0541492849588394,0.968682885169983,0.242324933409691,-0.00852504093199968,0.977734506130219,0.209672600030899,0.0249503254890442,0.988700151443481,-0.14781528711319, -0.111546769738197,0.982672929763794,-0.148024842143059,0.111546769738197,0.982672929763794,-0.148024842143059,0.0249503254890442,0.988700151443481,-0.14781528711319,-7.09159357938915e-05,0.999376535415649,0.0353056378662586,0.0765232518315315,0.996190786361694,0.041808694601059,0.506224989891052,0.854502975940704,-0.116451598703861,0.111546769738197,0.982672929763794,-0.148024842143059,0.0765232518315315,0.996190786361694,0.041808694601059,0.521250128746033,0.839334070682526,0.154326602816582,0.384831994771957,0.823053538799286,0.417716801166534,0.452140301465988,0.806186378002167,0.381618410348892,0.0584053285419941,0.971589744091034,0.229351609945297,0.0541492849588394,0.968682885169983,0.242324933409691,0.0584053285419941,0.971589744091034,0.229351609945297,-0.0121619552373886,0.98167097568512,0.19019527733326,-0.00852504093199968,0.977734506130219,0.209672600030899,0.0541492849588394,0.968682885169983,0.242324933409691,0.370153248310089,0.92108142375946,0.120812572538853,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.0155424000695348,0.999395132064819,0.0311088878661394,0.416480928659439,0.906339287757874,0.0713638886809349,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.002303765155375,0.995579421520233,0.0938953906297684,0.00345631665550172,0.999890625476837,0.0143791576847434,0.0155424000695348,0.999395132064819,0.0311088878661394,0.0155424000695348,0.999395132064819,0.0311088878661394,0.00345631665550172,0.999890625476837,0.0143791576847434,-0.0121619552373886,0.98167097568512,0.19019527733326,0.0584053285419941,0.971589744091034,0.229351609945297,0.416480928659439,0.906339287757874,0.0713638886809349,0.0155424000695348,0.999395132064819,0.0311088878661394,0.0584053285419941,0.971589744091034,0.229351609945297,0.452140301465988,0.806186378002167,0.381618410348892,0.545852899551392,0.837256550788879,-0.0323435328900814,0.0829665437340736,0.98315840959549,0.162837713956833,0.0156417097896338,0.980690956115723,0.194937720894814,0.442724764347076,0.874292135238647,0.19901779294014,0.0829665437340736,0.98315840959549,0.162837713956833, --0.00152228341903538,0.977239012718201,0.212135836482048,-0.00380300800316036,0.977337718009949,0.211651727557182,0.0156417097896338,0.980690956115723,0.194937720894814,0.0156417097896338,0.980690956115723,0.194937720894814,-0.00380300800316036,0.977337718009949,0.211651727557182,0.002303765155375,0.995579421520233,0.0938953906297684,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.442724764347076,0.874292135238647,0.19901779294014,0.0156417097896338,0.980690956115723,0.194937720894814,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.370153248310089,0.92108142375946,0.120812572538853,0.552241027355194,0.750507056713104,-0.362999767065048,0.185870006680489,0.974829435348511,-0.123125806450844,0.12065777182579,0.992693722248077,0.000793443527072668,0.490617632865906,0.784561336040497,-0.379153966903687,0.185870006680489,0.974829435348511,-0.123125806450844,0.0506666153669357,0.996992409229279,-0.0586448013782501,0.00482708029448986,0.994182825088501,0.107597917318344,0.12065777182579,0.992693722248077,0.000793443527072668,0.12065777182579,0.992693722248077,0.000793443527072668,0.00482708029448986,0.994182825088501,0.107597917318344,-0.00152228341903538,0.977239012718201,0.212135836482048,0.0829665437340736,0.98315840959549,0.162837713956833,0.490617632865906,0.784561336040497,-0.379153966903687,0.12065777182579,0.992693722248077,0.000793443527072668,0.0829665437340736,0.98315840959549,0.162837713956833,0.545852899551392,0.837256550788879,-0.0323435328900814,0.176005661487579,-0.290910065174103,0.940421879291534,0.228964373469353,-0.288229167461395,0.92978447675705,0.272147238254547,-0.176300823688507,0.945967197418213,0.135276660323143,-0.174784734845161,0.975269436836243,0.176005661487579,-0.290910065174103,0.940421879291534,0.135276660323143,-0.174784734845161,0.975269436836243,0.0497473366558552,-0.134566709399223,0.989654958248138,0.177994892001152,-0.28425520658493,0.942081153392792,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.368761420249939,0.0988195315003395,-0.924256324768066, --0.323321968317032,0.276273161172867,-0.905061423778534,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.318880528211594,0.120925262570381,-0.940049111843109,0.538938403129578,-0.218982368707657,0.813383162021637,0.592859327793121,-0.200990110635757,0.77982097864151,0.608900904655457,-0.122346572577953,0.783754348754883,0.641211926937103,-0.110249705612659,0.759402573108673,0.538938403129578,-0.218982368707657,0.813383162021637,0.641211926937103,-0.110249705612659,0.759402573108673,0.53625351190567,-0.0949005037546158,0.838704824447632,0.503244817256927,-0.229387789964676,0.833142101764679,0.451806783676147,-0.247525587677956,0.857089102268219,0.46940404176712,-0.239579230546951,0.849859774112701,0.510328412055969,-0.0449175722897053,0.858805775642395,0.541524887084961,-0.117356345057487,0.832453191280365,0.451806783676147,-0.247525587677956,0.857089102268219,0.541524887084961,-0.117356345057487,0.832453191280365,0.465275973081589,-0.175810903310776,0.867530286312103,0.427427232265472,-0.254156500101089,0.867588937282562,0.516300976276398,-0.446030616760254,0.73108834028244,0.499750405550003,-0.3817298412323,0.777516484260559,0.510328412055969,-0.0449175722897053,0.858805775642395,0.45816645026207,-0.046262338757515,0.887661695480347,0.516300976276398,-0.446030616760254,0.73108834028244,0.45816645026207,-0.046262338757515,0.887661695480347,0.53625351190567,-0.0949005037546158,0.838704824447632,0.709072232246399,-0.490383982658386,0.506695330142975,0.23476405441761,-0.475362211465836,0.847889482975006,0.54632157087326,-0.482646822929382,0.684532463550568,0.608900904655457,-0.122346572577953,0.783754348754883,0.581367552280426,-0.112330824136734,0.805849611759186,0.23476405441761,-0.475362211465836,0.847889482975006,0.581367552280426,-0.112330824136734,0.805849611759186,0.658480286598206,-0.0952623412013054,0.746544599533081,0.423094630241394,-0.536581158638,0.730117499828339, -0.206263855099678,-0.364544987678528,0.908054053783417,0.354619860649109,-0.380006402730942,0.854306638240814,0.3477483689785,-0.198941215872765,0.91623866558075,0.371367067098618,-0.194919556379318,0.907795608043671,0.206263855099678,-0.364544987678528,0.908054053783417,0.371367067098618,-0.194919556379318,0.907795608043671,0.465275973081589,-0.175810903310776,0.867530286312103,0.354210317134857,-0.385083884000778,0.852200388908386,0.724205315113068,-0.169191837310791,0.668506324291229,0.784613907337189,-0.148418456315994,0.601957619190216,0.756192922592163,-0.0511609390377998,0.652345716953278,0.723184883594513,-0.061912901699543,0.687873840332031,0.724205315113068,-0.169191837310791,0.668506324291229,0.723184883594513,-0.061912901699543,0.687873840332031,0.658480286598206,-0.0952623412013054,0.746544599533081,0.686221122741699,-0.180150583386421,0.704731523990631,0.339633166790009,-0.266489624977112,0.902015805244446,0.362585753202438,-0.260607570409775,0.894771039485931,0.3477483689785,-0.198941215872765,0.91623866558075,0.342980980873108,-0.175373032689095,0.92282623052597,0.339633166790009,-0.266489624977112,0.902015805244446,0.342980980873108,-0.175373032689095,0.92282623052597,0.30705800652504,-0.151796445250511,0.939506888389587,0.326374977827072,-0.270279616117477,0.905774891376495,0.769442439079285,-0.503196477890015,0.393384665250778,0.693200528621674,-0.491481930017471,0.527179837226868,0.756192922592163,-0.0511609390377998,0.652345716953278,0.792554795742035,-0.0888480767607689,0.603293359279633,0.769442439079285,-0.503196477890015,0.393384665250778,0.792554795742035,-0.0888480767607689,0.603293359279633,0.84916090965271,-0.13398066163063,0.510856926441193,0.854461014270782,-0.476516664028168,0.206949934363365,0.328068912029266,-0.452030867338181,0.82948112487793,0.289807885885239,-0.43032768368721,0.854885756969452,0.333074867725372,-0.117942728102207,0.935494780540466,0.297187924385071,-0.123561941087246,0.946790277957916,0.328068912029266,-0.452030867338181,0.82948112487793,0.297187924385071,-0.123561941087246,0.946790277957916, -0.30705800652504,-0.151796445250511,0.939506888389587,0.440867334604263,-0.435717403888702,0.784720599651337,0.886831343173981,-0.116333656013012,0.447209715843201,0.910833716392517,-0.10109194368124,0.400202870368958,0.92792272567749,-0.139109119772911,0.345843940973282,0.908291161060333,-0.145772188901901,0.392119407653809,0.886831343173981,-0.116333656013012,0.447209715843201,0.908291161060333,-0.145772188901901,0.392119407653809,0.84916090965271,-0.13398066163063,0.510856926441193,0.869021952152252,-0.121415354311466,0.479644626379013,0.27497398853302,-0.280620843172073,0.919587433338165,0.299889504909515,-0.273949265480042,0.913793206214905,0.333074867725372,-0.117942728102207,0.935494780540466,0.346659570932388,-0.147837936878204,0.926267266273499,0.27497398853302,-0.280620843172073,0.919587433338165,0.346659570932388,-0.147837936878204,0.926267266273499,0.272147238254547,-0.176300823688507,0.945967197418213,0.228964373469353,-0.288229167461395,0.92978447675705,0.588849186897278,-0.495052307844162,0.63888955116272,0.826905488967896,-0.45468458533287,0.330891579389572,0.92792272567749,-0.139109119772911,0.345843940973282,0.919524729251862,-0.11089226603508,0.377063989639282,0.588849186897278,-0.495052307844162,0.63888955116272,0.919524729251862,-0.11089226603508,0.377063989639282,0.892889142036438,-0.0994650796055794,0.439153373241425,0.60429185628891,-0.509560883045197,0.612518608570099,0.840165615081787,-0.14305616915226,0.523122012615204,0.82776153087616,-0.14987875521183,0.540691316127777,0.846161961555481,-0.03146817907691,0.531995892524719,0.866094946861267,-0.071600578725338,0.494725108146667,0.840165615081787,-0.14305616915226,0.523122012615204,0.866094946861267,-0.071600578725338,0.494725108146667,0.892889142036438,-0.0994650796055794,0.439153373241425,0.888745725154877,-0.113963581621647,0.444008260965347,0.894481062889099,-0.324167281389236,0.307927399873734,0.83910346031189,-0.326700925827026,0.434938907623291,0.846161961555481,-0.03146817907691,0.531995892524719,0.824237048625946,-0.0209046006202698,0.565859079360962, -0.894481062889099,-0.324167281389236,0.307927399873734,0.824237048625946,-0.0209046006202698,0.565859079360962,0.818676471710205,-0.0259896032512188,0.573666512966156,0.937271595001221,-0.292794436216354,0.189191550016403,0.815493226051331,-0.138903215527534,0.56185108423233,0.826237261295319,-0.133032575249672,0.547388553619385,0.831015765666962,-0.0195813197642565,0.55590409040451,0.824919760227203,-0.025544935837388,0.564672410488129,0.815493226051331,-0.138903215527534,0.56185108423233,0.824919760227203,-0.025544935837388,0.564672410488129,0.818676471710205,-0.0259896032512188,0.573666512966156,0.820954740047455,-0.140668287873268,0.553394675254822,0.615043818950653,-0.242926478385925,0.750138580799103,0.773024499416351,-0.251035571098328,0.582592725753784,0.831015765666962,-0.0195813197642565,0.55590409040451,0.83541464805603,-0.0103724785149097,0.549522280693054,0.615043818950653,-0.242926478385925,0.750138580799103,0.83541464805603,-0.0103724785149097,0.549522280693054,0.827139914035797,-0.00921932328492403,0.561920404434204,0.694501519203186,-0.291511297225952,0.657790899276733,0.833731591701508,-0.146685212850571,0.532329797744751,0.832327723503113,-0.150266587734222,0.533526301383972,0.818549573421478,-0.0268298108130693,0.573809087276459,0.815437734127045,-0.016533300280571,0.578608632087708,0.833731591701508,-0.146685212850571,0.532329797744751,0.815437734127045,-0.016533300280571,0.578608632087708,0.827139914035797,-0.00921932328492403,0.561920404434204,0.839163839817047,-0.139088898897171,0.525793135166168,0.829259037971497,-0.332770079374313,0.448991775512695,0.786836504936218,-0.339921623468399,0.515113234519958,0.818549573421478,-0.0268298108130693,0.573809087276459,0.839722514152527,-0.0430349707603455,0.541307747364044,0.829259037971497,-0.332770079374313,0.448991775512695,0.839722514152527,-0.0430349707603455,0.541307747364044,0.895096182823181,-0.0639328360557556,0.441265851259232,0.902224242687225,-0.345201700925827,0.258509546518326,0.885190367698669,-0.127925336360931,0.447295337915421,0.901916682720184,-0.10628217458725,0.418629169464111, -0.956947982311249,0.0141221741214395,0.289915651082993,0.949248135089874,-0.0469713434576988,0.311001002788544,0.885190367698669,-0.127925336360931,0.447295337915421,0.949248135089874,-0.0469713434576988,0.311001002788544,0.895096182823181,-0.0639328360557556,0.441265851259232,0.859896123409271,-0.142539709806442,0.490164369344711,0.794584929943085,-0.250500679016113,0.553068041801453,0.930343925952911,-0.284103631973267,0.231830254197121,0.956947982311249,0.0141221741214395,0.289915651082993,0.940903544425964,0.070175789296627,0.331324458122253,0.794584929943085,-0.250500679016113,0.553068041801453,0.940903544425964,0.070175789296627,0.331324458122253,0.943983197212219,0.128329202532768,0.304018646478653,0.850567281246185,-0.294763803482056,0.43548783659935,0.92790675163269,-0.0666510611772537,0.366806298494339,0.940891146659851,-0.0501523986458778,0.33497542142868,0.890287518501282,0.311503052711487,0.33219587802887,0.930425465106964,0.224328979849815,0.289801716804504,0.92790675163269,-0.0666510611772537,0.366806298494339,0.930425465106964,0.224328979849815,0.289801716804504,0.943983197212219,0.128329202532768,0.304018646478653,0.920228779315948,-0.0795585364103317,0.383209377527237,0.924628794193268,-0.320484489202499,0.205794230103493,0.909848988056183,-0.299331039190292,0.287360101938248,0.890287518501282,0.311503052711487,0.33219587802887,0.874410927295685,0.288264513015747,0.39026814699173,0.924628794193268,-0.320484489202499,0.205794230103493,0.874410927295685,0.288264513015747,0.39026814699173,0.87207442522049,0.226961046457291,0.43356055021286,0.945364832878113,-0.312039226293564,0.0944293588399887,0.921497642993927,-0.0544302947819233,0.384550929069519,0.957352161407471,-0.0185783803462982,0.288325995206833,0.92098480463028,0.143564224243164,0.362182676792145,0.880670130252838,0.180893376469612,0.43783301115036,0.921497642993927,-0.0544302947819233,0.384550929069519,0.880670130252838,0.180893376469612,0.43783301115036,0.87207442522049,0.226961046457291,0.43356055021286,0.932468891143799,-0.0516576319932938,0.357537627220154, -0.860090136528015,-0.273277372121811,0.430771857500076,0.805659294128418,-0.350429505109787,0.477611005306244,0.92098480463028,0.143564224243164,0.362182676792145,0.962466359138489,0.0948556363582611,0.254285275936127,0.997261524200439,0.0188792794942856,0.0715057924389839,0.998301982879639,0.0185902323573828,0.0552037134766579,0.997867584228516,0.000807996664661914,0.0652675926685333,0.993885099887848,0.0228749252855778,0.108024179935455,0.997261524200439,0.0188792794942856,0.0715057924389839,0.993885099887848,0.0228749252855778,0.108024179935455,0.962466359138489,0.0948556363582611,0.254285275936127,0.98707377910614,0.00784813892096281,0.160074472427368,0.922730565071106,-0.380059778690338,-0.064209558069706,0.915882885456085,-0.400456249713898,0.0281630977988243,0.997867584228516,0.000807996664661914,0.0652675926685333,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.922730565071106,-0.380059778690338,-0.064209558069706,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.998716592788696,0.000607570458669215,0.0506442487239838,0.936839520931244,-0.322951912879944,-0.134289890527725,0.99686586856842,0.00642402423545718,0.0788490772247314,0.99613493680954,0.00342563749291003,0.0877693593502045,0.996245980262756,0.0132977534085512,0.085540197789669,0.997418582439423,0.00669842446222901,0.0714935287833214,0.99686586856842,0.00642402423545718,0.0788490772247314,0.997418582439423,0.00669842446222901,0.0714935287833214,0.998716592788696,0.000607570458669215,0.0506442487239838,0.998364806175232,0.0151046710088849,0.0551327168941498,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.519298076629639,0.85447096824646,0.014456233009696,-0.584055960178375,0.809352517127991,0.0618640184402466,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.988347291946411,0.104021579027176,-0.111126624047756, --0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.847642540931702,0.516695201396942,-0.120533362030983,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.689413130283356,0.722614347934723,0.0503795966506004,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.887072622776031,0.441629320383072,-0.134409114718437,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.906920254230499,0.337041199207306,-0.252782553434372,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.930652797222137,0.237338930368423,-0.278487771749496,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.95115453004837,0.120947979390621,-0.284036248922348, --0.907502174377441,0.285730719566345,-0.307892292737961,-0.907502174377441,0.285730719566345,-0.307892292737961,-0.95115453004837,0.120947979390621,-0.284036248922348,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.868080079555511,-0.12176526337862,-0.481259018182755,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.88703578710556,0.163084164261818,-0.43193855881691,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.851243257522583,0.219904631376266,-0.476473480463028,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.869449853897095,0.20692740380764,-0.448595434427261, --0.869449853897095,0.20692740380764,-0.448595434427261,-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.899354934692383,0.05581059679389,-0.433642566204071,-0.88973480463028,0.0997150093317032,-0.445453524589539,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.739092588424683,0.412199884653091,-0.532760143280029,-0.739092588424683,0.412199884653091,-0.532760143280029,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.792703151702881,0.400789320468903,-0.45933610200882,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.748834669589996,0.238394916057587,-0.618396639823914,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.490829437971115,0.501539170742035,-0.712421834468842,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.385275810956955,0.337066978216171,-0.85903924703598,-0.484819173812866,0.517048895359039,-0.705415368080139,-0.484819173812866,0.517048895359039,-0.705415368080139, --0.385275810956955,0.337066978216171,-0.85903924703598,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.518538475036621,0.333198189735413,-0.787462294101715,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.323321968317032,0.276273161172867,-0.905061423778534,-0.357689201831818,0.230448618531227,-0.904959678649902,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.357689201831818,0.230448618531227,-0.904959678649902, --0.348480015993118,0.189375415444374,-0.917986214160919,-0.33005753159523,0.373546361923218,-0.866905570030212,0.0695710778236389,-0.308949768543243,0.948530435562134,0.220295935869217,-0.324890851974487,0.919736683368683,0.109529964625835,-0.463935971260071,0.879071414470673,-0.0340686589479446,-0.441913366317749,0.896410584449768,0.0695710778236389,-0.308949768543243,0.948530435562134,-0.0340686589479446,-0.441913366317749,0.896410584449768,-0.310180366039276,-0.395606368780136,0.864455759525299,-0.150470897555351,-0.31821072101593,0.936002492904663,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.166266694664955,0.278747469186783,-0.945862174034119,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.333563297986984,0.29656058549881,-0.894867241382599,0.463217854499817,-0.406106621026993,0.78772246837616,0.272015511989594,-0.415265917778015,0.868079364299774,0.257376343011856,-0.520962178707123,0.813852488994598,0.398277938365936,-0.536248743534088,0.744185388088226,0.463217854499817,-0.406106621026993,0.78772246837616,0.398277938365936,-0.536248743534088,0.744185388088226,0.611014664173126,-0.523765981197357,0.593574166297913,0.763542711734772,-0.339976668357849,0.549015760421753,0.275892049074173,-0.376482635736465,0.884389221668243,0.289807885885239,-0.43032768368721,0.854885756969452,0.257376343011856,-0.520962178707123,0.813852488994598,0.17542377114296,-0.492901206016541,0.852217674255371,0.275892049074173,-0.376482635736465,0.884389221668243,0.17542377114296,-0.492901206016541,0.852217674255371,0.109529964625835,-0.463935971260071,0.879071414470673,0.220295935869217,-0.324890851974487,0.919736683368683,0.568185806274414,-0.391976445913315,0.723546385765076,0.354619860649109,-0.380006402730942,0.854306638240814,0.418492645025253,-0.417349457740784,0.806649446487427,0.806391000747681,-0.43461674451828,0.401050895452499, -0.568185806274414,-0.391976445913315,0.723546385765076,0.806391000747681,-0.43461674451828,0.401050895452499,0.611014664173126,-0.523765981197357,0.593574166297913,0.440867334604263,-0.435717403888702,0.784720599651337,-0.0490954145789146,-0.337257087230682,0.940131485462189,0.490249872207642,-0.306862562894821,0.815775990486145,0.418492645025253,-0.417349457740784,0.806649446487427,0.0412405952811241,-0.429780393838882,0.901991188526154,-0.0490954145789146,-0.337257087230682,0.940131485462189,0.0412405952811241,-0.429780393838882,0.901991188526154,0.170638188719749,-0.490811139345169,0.854392826557159,0.0555685870349407,-0.379517942667007,0.923514127731323,0.481584459543228,-0.387515157461166,0.786071479320526,0.499750405550003,-0.3817298412323,0.777516484260559,0.414962351322174,-0.562928795814514,0.714784801006317,0.310942828655243,-0.535853862762451,0.784968197345734,0.481584459543228,-0.387515157461166,0.786071479320526,0.310942828655243,-0.535853862762451,0.784968197345734,0.170638188719749,-0.490811139345169,0.854392826557159,0.354210317134857,-0.385083884000778,0.852200388908386,0.567363619804382,-0.433732450008392,0.699981868267059,0.388115346431732,-0.443261563777924,0.808013439178467,0.414962351322174,-0.562928795814514,0.714784801006317,0.532850980758667,-0.568655610084534,0.626658320426941,0.567363619804382,-0.433732450008392,0.699981868267059,0.532850980758667,-0.568655610084534,0.626658320426941,0.730762779712677,-0.524796366691589,0.436548382043839,0.820302903652191,-0.366882711648941,0.43874853849411,0.875056028366089,-0.394868493080139,0.279921293258667,0.54632157087326,-0.482646822929382,0.684532463550568,0.373678237199783,-0.514060199260712,0.772079527378082,0.922787308692932,-0.3760906457901,0.083782009780407,0.875056028366089,-0.394868493080139,0.279921293258667,0.922787308692932,-0.3760906457901,0.083782009780407,0.730762779712677,-0.524796366691589,0.436548382043839,0.709072232246399,-0.490383982658386,0.506695330142975,-0.111819066107273,-0.334474802017212,0.93574732542038,0.256940931081772,-0.374582171440125,0.890881359577179, -0.373678237199783,-0.514060199260712,0.772079527378082,-0.0402895286679268,-0.486978650093079,0.872484087944031,-0.111819066107273,-0.334474802017212,0.93574732542038,-0.0402895286679268,-0.486978650093079,0.872484087944031,0.282550185918808,-0.625282943248749,0.727452158927917,0.23664890229702,-0.448689639568329,0.86178594827652,0.598446249961853,-0.519095242023468,0.610247671604156,0.693200528621674,-0.491481930017471,0.527179837226868,0.651794612407684,-0.644794881343842,0.399253517389297,0.517384827136993,-0.659253060817719,0.545617580413818,0.598446249961853,-0.519095242023468,0.610247671604156,0.517384827136993,-0.659253060817719,0.545617580413818,0.282550185918808,-0.625282943248749,0.727452158927917,0.423094630241394,-0.536581158638,0.730117499828339,0.857245266437531,-0.464626491069794,0.221929728984833,0.731242716312408,-0.51183021068573,0.450903505086899,0.651794612407684,-0.644794881343842,0.399253517389297,0.764307379722595,-0.60006195306778,0.236135452985764,0.857245266437531,-0.464626491069794,0.221929728984833,0.764307379722595,-0.60006195306778,0.236135452985764,0.860257208347321,-0.509540259838104,0.0180641487240791,0.93332827091217,-0.338810741901398,-0.118767276406288,0.921876072883606,-0.385167300701141,0.0423164926469326,0.826905488967896,-0.45468458533287,0.330891579389572,0.728058815002441,-0.511314928531647,0.456604212522507,0.904874742031097,-0.356668084859848,-0.232356280088425,0.921876072883606,-0.385167300701141,0.0423164926469326,0.904874742031097,-0.356668084859848,-0.232356280088425,0.860257208347321,-0.509540259838104,0.0180641487240791,0.854461014270782,-0.476516664028168,0.206949934363365,0.224800527095795,-0.377653300762177,0.898244142532349,0.831725597381592,-0.397647082805634,0.387439489364624,0.728058815002441,-0.511314928531647,0.456604212522507,0.340678364038467,-0.520609378814697,0.782881915569305,0.224800527095795,-0.377653300762177,0.898244142532349,0.340678364038467,-0.520609378814697,0.782881915569305,0.619528710842133,-0.549421966075897,0.560642242431641,0.682247877120972,-0.429192274808884,0.59188836812973, -0.737267017364502,-0.431954801082611,0.519473314285278,0.83910346031189,-0.326700925827026,0.434938907623291,0.845468997955322,-0.443901598453522,0.29687288403511,0.763568758964539,-0.496402263641357,0.412973940372467,0.737267017364502,-0.431954801082611,0.519473314285278,0.763568758964539,-0.496402263641357,0.412973940372467,0.619528710842133,-0.549421966075897,0.560642242431641,0.60429185628891,-0.509560883045197,0.612518608570099,0.948286950588226,-0.2696273624897,0.167490169405937,0.920679688453674,-0.318991452455521,0.224929749965668,0.845468997955322,-0.443901598453522,0.29687288403511,0.903814673423767,-0.393272668123245,0.168688461184502,0.948286950588226,-0.2696273624897,0.167490169405937,0.903814673423767,-0.393272668123245,0.168688461184502,0.936742961406708,-0.349865049123764,0.0103462673723698,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.952621281147003,-0.21545235812664,0.21469259262085,0.773024499416351,-0.251035571098328,0.582592725753784,0.739988207817078,-0.321660608053207,0.590721487998962,0.950254321098328,-0.273420482873917,-0.149191319942474,0.952621281147003,-0.21545235812664,0.21469259262085,0.950254321098328,-0.273420482873917,-0.149191319942474,0.936742961406708,-0.349865049123764,0.0103462673723698,0.937271595001221,-0.292794436216354,0.189191550016403,0.331597626209259,-0.234186932444572,0.913892388343811,0.812639117240906,-0.217517703771591,0.540651261806488,0.739988207817078,-0.321660608053207,0.590721487998962,0.361788481473923,-0.334904283285141,0.870027720928192,0.331597626209259,-0.234186932444572,0.913892388343811,0.361788481473923,-0.334904283285141,0.870027720928192,0.568074822425842,-0.381185531616211,0.729375541210175,0.581863045692444,-0.243657320737839,0.77592945098877,0.746168732643127,-0.324731051921844,0.58118999004364,0.786836504936218,-0.339921623468399,0.515113234519958,0.801258563995361,-0.360501676797867,0.477517813444138,0.725219190120697,-0.381685614585876,0.573038578033447,0.746168732643127,-0.324731051921844,0.58118999004364,0.725219190120697,-0.381685614585876,0.573038578033447, -0.568074822425842,-0.381185531616211,0.729375541210175,0.694501519203186,-0.291511297225952,0.657790899276733,0.914890289306641,-0.121925175189972,0.384850651025772,0.867118418216705,-0.171389430761337,0.467687219381332,0.801258563995361,-0.360501676797867,0.477517813444138,0.853569328784943,-0.332780241966248,0.400845050811768,0.914890289306641,-0.121925175189972,0.384850651025772,0.853569328784943,-0.332780241966248,0.400845050811768,0.926871418952942,-0.302499800920486,0.222268790006638,0.984977781772614,-0.0616224482655525,0.161311641335487,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.930343925952911,-0.284103631973267,0.231830254197121,0.885432124137878,-0.298503637313843,0.356238156557083,0.95844966173172,-0.230193823575974,-0.168478921055794,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.95844966173172,-0.230193823575974,-0.168478921055794,0.926871418952942,-0.302499800920486,0.222268790006638,0.902224242687225,-0.345201700925827,0.258509546518326,0.612357974052429,-0.103161364793777,0.783820986747742,0.884318947792053,-0.054423701018095,0.463700622320175,0.885432124137878,-0.298503637313843,0.356238156557083,0.645715713500977,-0.332651615142822,0.687309324741364,0.612357974052429,-0.103161364793777,0.783820986747742,0.645715713500977,-0.332651615142822,0.687309324741364,0.808006346225739,-0.355535328388214,0.469808757305145,0.839543461799622,-0.133703395724297,0.526583671569824,0.889198124408722,-0.300890505313873,0.344661504030228,0.909848988056183,-0.299331039190292,0.287360101938248,0.89973783493042,-0.341453313827515,0.271810978651047,0.880135655403137,-0.343090146780014,0.328101515769958,0.889198124408722,-0.300890505313873,0.344661504030228,0.880135655403137,-0.343090146780014,0.328101515769958,0.808006346225739,-0.355535328388214,0.469808757305145,0.850567281246185,-0.294763803482056,0.43548783659935,0.931503593921661,-0.173606723546982,0.319627553224564,0.934256434440613,-0.153060808777809,0.322082817554474,0.89973783493042,-0.341453313827515,0.271810978651047,0.90982460975647,-0.359352380037308,0.207569152116776, -0.931503593921661,-0.173606723546982,0.319627553224564,0.90982460975647,-0.359352380037308,0.207569152116776,0.92187511920929,-0.38712340593338,0.016783095896244,0.976979911327362,-0.180214643478394,0.114162653684616,0.971633672714233,-0.235121175646782,-0.0254140961915255,0.805659294128418,-0.350429505109787,0.477611005306244,0.778084576129913,-0.38656085729599,0.495131373405457,0.889443576335907,-0.376923859119415,-0.258493065834045,0.971633672714233,-0.235121175646782,-0.0254140961915255,0.889443576335907,-0.376923859119415,-0.258493065834045,0.92187511920929,-0.38712340593338,0.016783095896244,0.945364832878113,-0.312039226293564,0.0944293588399887,0.778084576129913,-0.38656085729599,0.495131373405457,0.794207036495209,-0.3851597905159,0.469986349344254,0.845588147640228,-0.197172567248344,0.496088355779648,0.82255631685257,-0.213350489735603,0.527145743370056,0.905479967594147,-0.389077335596085,0.16948401927948,0.915882885456085,-0.400456249713898,0.0281630977988243,0.929700791835785,-0.367127627134323,0.0295576956123114,0.909832239151001,-0.380722135305405,0.165093958377838,0.905479967594147,-0.389077335596085,0.16948401927948,0.909832239151001,-0.380722135305405,0.165093958377838,0.794207036495209,-0.3851597905159,0.469986349344254,0.860090136528015,-0.273277372121811,0.430771857500076,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.985689699649811,-0.159650921821594,0.0541065037250519,0.929700791835785,-0.367127627134323,0.0295576956123114,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.917859852313995,-0.320248544216156,-0.234465748071671,0.948014378547668,-0.114206790924072,-0.297027975320816,0.963031113147736,-0.205645516514778,-0.174013987183571,0.953685641288757,-0.109224699437618,-0.280273914337158,0.83915901184082,-0.095047727227211,-0.535516738891602,0.846224725246429,-0.220031172037125,-0.485273152589798,0.963031113147736,-0.205645516514778,-0.174013987183571,0.846224725246429,-0.220031172037125,-0.485273152589798, -0.917859852313995,-0.320248544216156,-0.234465748071671,0.936839520931244,-0.322951912879944,-0.134289890527725,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.991487503051758,0.110444560647011,-0.0689526423811913,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.809789836406708,0.00712836580350995,-0.586676836013794,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.809789836406708,0.00712836580350995,-0.586676836013794, --0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.909069240093231,-0.172094643115997,-0.37944233417511,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.852664291858673,-0.0599740967154503,-0.519005417823792, --0.835971117019653,-0.209791257977486,-0.507089495658875,-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.911948204040527,0.11847773194313,-0.392827421426773, --0.924555361270905,0.129721865057945,-0.358286798000336,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.911948204040527,0.11847773194313,-0.392827421426773,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.990341305732727,0.092634342610836,0.103164255619049,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.733271539211273,0.35336098074913,-0.580903470516205,-0.813119411468506,0.13746352493763,-0.565632820129395,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.773969650268555,0.336919188499451,-0.536149680614471,-0.813119411468506,0.13746352493763,-0.565632820129395, --0.773969650268555,0.336919188499451,-0.536149680614471,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.262255430221558,0.337828725576401,-0.903932392597198,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.262255430221558,0.337828725576401,-0.903932392597198,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.661455273628235,0.378868937492371,-0.647252202033997,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.592969179153442,0.321096628904343,-0.738433957099915,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.763972997665405,0.199422031641006,-0.613658010959625,-0.466602355241776,0.295693963766098,-0.833575010299683, --0.592969179153442,0.321096628904343,-0.738433957099915,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.763972997665405,0.199422031641006,-0.613658010959625,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.368761420249939,0.0988195315003395,-0.924256324768066,-0.166266694664955,0.278747469186783,-0.945862174034119,-0.167159870266914,0.339122027158737,-0.925772070884705,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.167159870266914,0.339122027158737,-0.925772070884705,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.689413130283356,0.722614347934723,0.0503795966506004,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.508436381816864,0.858558356761932,0.0661066174507141,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.584055960178375,0.809352517127991,0.0618640184402466,-0.439730614423752,0.896234035491943,0.0583229064941406, --0.508436381816864,0.858558356761932,0.0661066174507141,-0.508436381816864,0.858558356761932,0.0661066174507141,-0.439730614423752,0.896234035491943,0.0583229064941406,-0.388090044260025,0.919523358345032,0.0621522143483162,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.508436381816864,0.858558356761932,0.0661066174507141,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.40021613240242,0.909812211990356,0.109857328236103,-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.906920254230499,0.337041199207306,-0.252782553434372,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.930652797222137,0.237338930368423,-0.278487771749496,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.697861075401306,0.674170970916748,-0.24183315038681,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.88703578710556,0.163084164261818,-0.43193855881691,-0.885466039180756,0.269513994455338,-0.37856587767601, --0.697861075401306,0.674170970916748,-0.24183315038681,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.885466039180756,0.269513994455338,-0.37856587767601,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.869449853897095,0.20692740380764,-0.448595434427261,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.869449853897095,0.20692740380764,-0.448595434427261,-0.88973480463028,0.0997150093317032,-0.445453524589539,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.851243257522583,0.219904631376266,-0.476473480463028,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.748834669589996,0.238394916057587,-0.618396639823914,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.279209464788437,0.828645944595337,-0.485167920589447, --0.313274592161179,0.766101777553558,-0.561201572418213,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.313274592161179,0.766101777553558,-0.561201572418213,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.518538475036621,0.333198189735413,-0.787462294101715,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.490829437971115,0.501539170742035,-0.712421834468842,-0.23056173324585,0.802569389343262,-0.550203382968903,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.33005753159523,0.373546361923218,-0.866905570030212,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.388090044260025,0.919523358345032,0.0621522143483162,-0.439730614423752,0.896234035491943,0.0583229064941406,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.199016839265823,0.964948236942291,0.17107680439949,-0.439730614423752,0.896234035491943,0.0583229064941406,-0.584055960178375,0.809352517127991,0.0618640184402466, --0.519298076629639,0.85447096824646,0.014456233009696,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.388090044260025,0.919523358345032,0.0621522143483162,-0.199016839265823,0.964948236942291,0.17107680439949,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.472208678722382,0.874220132827759,0.112951770424843,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.472208678722382,0.874220132827759,0.112951770424843,-0.472208678722382,0.874220132827759,0.112951770424843,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.199016839265823,0.964948236942291,0.17107680439949,-0.301414340734482,0.942200183868408,0.146315321326256,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.472208678722382,0.874220132827759,0.112951770424843,-0.301414340734482,0.942200183868408,0.146315321326256,-0.40021613240242,0.909812211990356,0.109857328236103,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.906920254230499,0.337041199207306,-0.252782553434372, --0.661042153835297,0.746898233890533,-0.0718778744339943,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.40021613240242,0.909812211990356,0.109857328236103,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.907502174377441,0.285730719566345,-0.307892292737961,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.697861075401306,0.674170970916748,-0.24183315038681,-0.907502174377441,0.285730719566345,-0.307892292737961,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.697861075401306,0.674170970916748,-0.24183315038681,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.48543056845665,0.856919169425964,-0.173339679837227, --0.851243257522583,0.219904631376266,-0.476473480463028,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.792703151702881,0.400789320468903,-0.45933610200882,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.739092588424683,0.412199884653091,-0.532760143280029,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.739092588424683,0.412199884653091,-0.532760143280029, --0.792703151702881,0.400789320468903,-0.45933610200882,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.31383341550827,0.838994324207306,-0.44451904296875,-0.40109720826149,0.75919508934021,-0.512585461139679,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.40109720826149,0.75919508934021,-0.512585461139679,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.490829437971115,0.501539170742035,-0.712421834468842,-0.484819173812866,0.517048895359039,-0.705415368080139,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.484819173812866,0.517048895359039,-0.705415368080139,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.40109720826149,0.75919508934021,-0.512585461139679,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.40109720826149,0.75919508934021,-0.512585461139679, --0.31383341550827,0.838994324207306,-0.44451904296875,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.257006973028183,0.818767726421356,-0.513387680053711,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.313274592161179,0.766101777553558,-0.561201572418213,-0.257006973028183,0.818767726421356,-0.513387680053711,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.313274592161179,0.766101777553558,-0.561201572418213,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.234503656625748,0.799349129199982,-0.553216993808746,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.234503656625748,0.799349129199982,-0.553216993808746, --0.23056173324585,0.802569389343262,-0.550203382968903,-0.23056173324585,0.802569389343262,-0.550203382968903,-0.234503656625748,0.799349129199982,-0.553216993808746,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.22725011408329,0.797015845775604,-0.559574127197266,-0.234503656625748,0.799349129199982,-0.553216993808746,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.234378948807716,0.808495759963989,-0.539815783500671,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.234378948807716,0.808495759963989,-0.539815783500671,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.22725011408329,0.797015845775604,-0.559574127197266,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.176512122154236,0.811137557029724,-0.557583630084991,1.3388275874604e-05,0.905516862869263,-0.424310177564621,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.0996078550815582,0.894310653209686,-0.436218619346619,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,7.32525177227217e-06,0.889752805233002,-0.456442594528198,-0.0875224769115448,0.878100991249084,-0.470402628183365,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.0875224769115448,0.878100991249084,-0.470402628183365,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.0996078550815582,0.894310653209686,-0.436218619346619,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.202570572495461,0.861213862895966,-0.466128766536713,4.54438037422733e-07,0.914030373096466,-0.405645698308945,-1.13681444418035e-05,0.910587549209595,-0.4133161008358,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.110339634120464,0.902698576450348,-0.415885150432587, --1.13681444418035e-05,0.910587549209595,-0.4133161008358,1.3388275874604e-05,0.905516862869263,-0.424310177564621,-0.0996078550815582,0.894310653209686,-0.436218619346619,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.0996078550815582,0.894310653209686,-0.436218619346619,-0.202570572495461,0.861213862895966,-0.466128766536713,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.110339634120464,0.902698576450348,-0.415885150432587,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.22046186029911,0.873457729816437,-0.434129238128662,1.50015866893227e-05,0.915112435817719,-0.403198808431625,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.118735879659653,0.903533935546875,-0.411738246679306,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,4.54438037422733e-07,0.914030373096466,-0.405645698308945,-0.110339634120464,0.902698576450348,-0.415885150432587,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.110339634120464,0.902698576450348,-0.415885150432587,-0.22046186029911,0.873457729816437,-0.434129238128662,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.118735879659653,0.903533935546875,-0.411738246679306,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.241020381450653,0.876797020435333,-0.416096478700638,1.05083618109347e-05,0.954916179180145,-0.296875447034836,-3.50793754932965e-07,0.927993059158325,-0.372597485780716,-0.122025050222874,0.915841460227966,-0.38254976272583,-0.122977651655674,0.942991971969604,-0.309261173009872,-3.50793754932965e-07,0.927993059158325,-0.372597485780716,1.50015866893227e-05,0.915112435817719,-0.403198808431625,-0.118735879659653,0.903533935546875,-0.411738246679306,-0.122025050222874,0.915841460227966,-0.38254976272583,-0.122025050222874,0.915841460227966,-0.38254976272583, --0.118735879659653,0.903533935546875,-0.411738246679306,-0.241020381450653,0.876797020435333,-0.416096478700638,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.122977651655674,0.942991971969604,-0.309261173009872,-0.122025050222874,0.915841460227966,-0.38254976272583,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.262969821691513,0.908584952354431,-0.324530899524689,6.77310254104668e-06,0.98437488079071,-0.176085412502289,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.115625269711018,0.974825143814087,-0.190648660063744,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,1.05083618109347e-05,0.954916179180145,-0.296875447034836,-0.122977651655674,0.942991971969604,-0.309261173009872,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.122977651655674,0.942991971969604,-0.309261173009872,-0.262969821691513,0.908584952354431,-0.324530899524689,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.115625269711018,0.974825143814087,-0.190648660063744,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.268048852682114,0.938291668891907,-0.218537360429764,2.06756514131712e-08,0.990903377532959,-0.134574607014656,9.92930395682379e-08,0.989445388317108,-0.144906148314476,-0.111156977713108,0.980962634086609,-0.159236505627632,-0.107339099049568,0.983265817165375,-0.147196039557457,9.92930395682379e-08,0.989445388317108,-0.144906148314476,6.77310254104668e-06,0.98437488079071,-0.176085412502289,-0.115625269711018,0.974825143814087,-0.190648660063744,-0.111156977713108,0.980962634086609,-0.159236505627632,-0.111156977713108,0.980962634086609,-0.159236505627632,-0.115625269711018,0.974825143814087,-0.190648660063744,-0.268048852682114,0.938291668891907,-0.218537360429764,-0.267555445432663,0.944637537002563,-0.18993167579174,-0.107339099049568,0.983265817165375,-0.147196039557457,-0.111156977713108,0.980962634086609,-0.159236505627632, --0.267555445432663,0.944637537002563,-0.18993167579174,-0.26593479514122,0.947541415691376,-0.177324414253235,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,1.95083682541508e-09,0.994212210178375,-0.107433840632439,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.10318198800087,0.993300795555115,-0.0520285628736019,1.95083682541508e-09,0.994212210178375,-0.107433840632439,2.06756514131712e-08,0.990903377532959,-0.134574607014656,-0.107339099049568,0.983265817165375,-0.147196039557457,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.107339099049568,0.983265817165375,-0.147196039557457,-0.26593479514122,0.947541415691376,-0.177324414253235,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.10318198800087,0.993300795555115,-0.0520285628736019,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.262632071971893,0.961122930049896,-0.0852473974227905,3.1286046578316e-05,0.933347523212433,0.35897421836853,2.28790213441243e-06,0.976968586444855,0.21338301897049,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.108388245105743,0.959665358066559,0.259411454200745,2.28790213441243e-06,0.976968586444855,0.21338301897049,2.26350630327943e-06,0.99591463804245,0.0902996808290482,-0.0865604281425476,0.993676722049713,0.0715120956301689,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.0865604281425476,0.993676722049713,0.0715120956301689,-0.239247843623161,0.970808088779449,0.0170955918729305,-0.220642820000648,0.969886004924774,0.10313955694437,-0.108388245105743,0.959665358066559,0.259411454200745,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.220642820000648,0.969886004924774,0.10313955694437,-0.222894638776779,0.95649117231369,0.188261821866035,0.150505572557449,-0.275890499353409,0.949332714080811,2.95768154501275e-06,-0.273690581321716,0.961817860603333,1.75918557943078e-07,-0.307377070188522,0.951587796211243, -0.165464147925377,-0.303402602672577,0.938386082649231,0.150505572557449,-0.275890499353409,0.949332714080811,0.165464147925377,-0.303402602672577,0.938386082649231,0.18642283976078,-0.302652627229691,0.934691250324249,0.177994892001152,-0.28425520658493,0.942081153392792,0.00903936289250851,-0.0846651792526245,0.99636846780777,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,2.95768154501275e-06,-0.273690581321716,0.961817860603333,0.150505572557449,-0.275890499353409,0.949332714080811,0.00903936289250851,-0.0846651792526245,0.99636846780777,0.150505572557449,-0.275890499353409,0.949332714080811,0.177994892001152,-0.28425520658493,0.942081153392792,0.0497473366558552,-0.134566709399223,0.989654958248138,0.135276660323143,-0.174784734845161,0.975269436836243,0.272147238254547,-0.176300823688507,0.945967197418213,0.220295935869217,-0.324890851974487,0.919736683368683,0.0695710778236389,-0.308949768543243,0.948530435562134,0.135276660323143,-0.174784734845161,0.975269436836243,0.0695710778236389,-0.308949768543243,0.948530435562134,-0.150470897555351,-0.31821072101593,0.936002492904663,0.0497473366558552,-0.134566709399223,0.989654958248138,-0.420449644327164,-0.335328876972198,0.843075752258301,2.46701147261774e-05,-0.340059369802475,0.940403938293457,5.24779306942946e-06,-0.263720482587814,0.964599132537842,-0.223743036389351,-0.286216169595718,0.931675553321838,-0.420449644327164,-0.335328876972198,0.843075752258301,-0.223743036389351,-0.286216169595718,0.931675553321838,-0.150470897555351,-0.31821072101593,0.936002492904663,-0.310180366039276,-0.395606368780136,0.864455759525299,-0.0340686589479446,-0.441913366317749,0.896410584449768,0.109529964625835,-0.463935971260071,0.879071414470673,0.0692463666200638,-0.40363010764122,0.912298023700714,-0.125935733318329,-0.385893911123276,0.913906991481781,-0.0340686589479446,-0.441913366317749,0.896410584449768,-0.125935733318329,-0.385893911123276,0.913906991481781,-0.424630582332611,-0.334179937839508,0.841434895992279,-0.310180366039276,-0.395606368780136,0.864455759525299, --0.511119365692139,-0.29790985584259,0.806229948997498,1.42427379614674e-05,-0.348549783229828,0.937290251255035,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,-0.481684356927872,-0.307957500219345,0.820452451705933,-0.511119365692139,-0.29790985584259,0.806229948997498,-0.481684356927872,-0.307957500219345,0.820452451705933,-0.424630582332611,-0.334179937839508,0.841434895992279,-0.458524763584137,-0.304732322692871,0.834801316261292,0.0625188425183296,-0.333361506462097,0.940723896026611,0.0843937322497368,-0.217295467853546,0.972450733184814,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.155206382274628,-0.334304124116898,0.929597616195679,0.0843937322497368,-0.217295467853546,0.972450733184814,0.0943290740251541,0.0288522019982338,0.995122849941254,-0.10880571603775,0.0131476251408458,0.99397599697113,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.10880571603775,0.0131476251408458,0.99397599697113,-0.416721314191818,-0.0176437478512526,0.908863008022308,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.155206382274628,-0.334304124116898,0.929597616195679,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.458524763584137,-0.304732322692871,0.834801316261292,3.16250188916456e-05,0.998316526412964,0.0580002292990685,-0.000560834130737931,0.759455561637878,0.650558948516846,-0.295125186443329,0.727130055427551,0.619825065135956,-0.0110622951760888,0.998569190502167,0.0523180291056633,-0.000560834130737931,0.759455561637878,0.650558948516846,0.000240212044445798,-0.090602844953537,0.995887100696564,-0.488369077444077,-0.0530646555125713,0.87102222442627,-0.295125186443329,0.727130055427551,0.619825065135956,-0.295125186443329,0.727130055427551,0.619825065135956,-0.488369077444077,-0.0530646555125713,0.87102222442627,-0.416721314191818,-0.0176437478512526,0.908863008022308,-0.27617135643959,0.731259226799011,0.623689949512482,-0.0110622951760888,0.998569190502167,0.0523180291056633, --0.295125186443329,0.727130055427551,0.619825065135956,-0.27617135643959,0.731259226799011,0.623689949512482,-0.0313069485127926,0.998219788074493,0.0507664456963539,-0.00183687009848654,0.999996066093445,0.00214116298593581,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.0080979410558939,0.965640664100647,-0.259754508733749,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.0080979410558939,0.965640664100647,-0.259754508733749,-0.0080979410558939,0.965640664100647,-0.259754508733749,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.133362740278244,0.658979296684265,-0.740243673324585,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.0080979410558939,0.965640664100647,-0.259754508733749,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.0313069485127926,0.998219788074493,0.0507664456963539,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.133362740278244,0.658979296684265,-0.740243673324585,-0.260240614414215,0.307801157236099,-0.915168404579163,-1.51857690866564e-07,0.322332769632339,-0.946626484394073, --7.8074026532704e-06,0.338909506797791,-0.940818905830383,-0.261917173862457,0.326285809278488,-0.908260464668274,-0.260240614414215,0.307801157236099,-0.915168404579163,-0.261917173862457,0.326285809278488,-0.908260464668274,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.333563297986984,0.29656058549881,-0.894867241382599,-0.291237950325012,0.205016359686852,-0.9344242811203,1.21185021271231e-05,0.230906829237938,-0.972975850105286,-1.51857690866564e-07,0.322332769632339,-0.946626484394073,-0.260240614414215,0.307801157236099,-0.915168404579163,-0.291237950325012,0.205016359686852,-0.9344242811203,-0.260240614414215,0.307801157236099,-0.915168404579163,-0.333563297986984,0.29656058549881,-0.894867241382599,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.166266694664955,0.278747469186783,-0.945862174034119,-0.368761420249939,0.0988195315003395,-0.924256324768066,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.318880528211594,0.120925262570381,-0.940049111843109,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.142850771546364,0.293649584054947,-0.945179104804993,-0.221301317214966,0.152849704027176,-0.963152468204498,-0.318880528211594,0.120925262570381,-0.940049111843109,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.323321968317032,0.276273161172867,-0.905061423778534,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.182878151535988,0.52682489156723,-0.830066859722137,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.176512122154236,0.811137557029724,-0.557583630084991,-0.172377914190292,0.741736710071564,-0.648160815238953,-0.215977504849434,0.747572183609009,-0.628083944320679, --0.22725011408329,0.797015845775604,-0.559574127197266,-0.172377914190292,0.741736710071564,-0.648160815238953,-0.182878151535988,0.52682489156723,-0.830066859722137,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.215977504849434,0.747572183609009,-0.628083944320679,-0.215977504849434,0.747572183609009,-0.628083944320679,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.22725011408329,0.797015845775604,-0.559574127197266,-0.215977504849434,0.747572183609009,-0.628083944320679,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.23056173324585,0.802569389343262,-0.550203382968903,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.226999118924141,-0.298325330018997,0.927077949047089,-0.179358407855034,-0.302890688180923,0.935995697975159,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.179358407855034,-0.302890688180923,0.935995697975159,-0.186343878507614,-0.30264887213707,0.93470823764801,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.150568410754204,-0.275894820690155,0.949321508407593,2.95768154501275e-06,-0.273690581321716,0.961817860603333,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,-0.00905205681920052,-0.0846886336803436,0.996366322040558,-0.150568410754204,-0.275894820690155,0.949321508407593,-0.00905205681920052,-0.0846886336803436,0.996366322040558,-0.0497316643595695,-0.134555041790009,0.989657342433929,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.0695114508271217,-0.308985948562622,0.948523044586182,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.0695114508271217,-0.308985948562622,0.948523044586182,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.0497316643595695,-0.134555041790009,0.989657342433929,0.150402024388313,-0.318250775337219,0.935999751091003, -0.223788768053055,-0.286292523145676,0.931641161441803,5.24779306942946e-06,-0.263720482587814,0.964599132537842,2.46701147261774e-05,-0.340059369802475,0.940403938293457,0.420541554689407,-0.33530592918396,0.843038976192474,0.223788768053055,-0.286292523145676,0.931641161441803,0.420541554689407,-0.33530592918396,0.843038976192474,0.310132741928101,-0.395607888698578,0.864472031593323,0.150402024388313,-0.318250775337219,0.935999751091003,0.125930786132813,-0.385909855365753,0.913900971412659,-0.0692600607872009,-0.40361499786377,0.912303626537323,-0.109554767608643,-0.463935196399689,0.879068791866302,0.0340442918241024,-0.44191038608551,0.896412968635559,0.125930786132813,-0.385909855365753,0.913900971412659,0.0340442918241024,-0.44191038608551,0.896412968635559,0.310132741928101,-0.395607888698578,0.864472031593323,0.424551904201508,-0.334209501743317,0.841462910175323,0.481838226318359,-0.307934612035751,0.820370674133301,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,1.42427379614674e-05,-0.348549783229828,0.937290251255035,0.511289834976196,-0.297905415296555,0.806123495101929,0.481838226318359,-0.307934612035751,0.820370674133301,0.511289834976196,-0.297905415296555,0.806123495101929,0.458569407463074,-0.304762840270996,0.834765732288361,0.424551904201508,-0.334209501743317,0.841462910175323,-0.0943231582641602,0.0288749188184738,0.995122790336609,-0.0843810960650444,-0.217296659946442,0.972451567649841,0.129447683691978,-0.237919986248016,0.962620079517365,0.108872637152672,0.0131196500733495,0.993969142436981,-0.0843810960650444,-0.217296659946442,0.972451567649841,-0.0625111162662506,-0.333361387252808,0.940724492073059,0.155205458402634,-0.334317892789841,0.929592788219452,0.129447683691978,-0.237919986248016,0.962620079517365,0.129447683691978,-0.237919986248016,0.962620079517365,0.155205458402634,-0.334317892789841,0.929592788219452,0.458569407463074,-0.304762840270996,0.834765732288361,0.440884202718735,-0.237137153744698,0.865671396255493,0.108872637152672,0.0131196500733495,0.993969142436981, -0.129447683691978,-0.237919986248016,0.962620079517365,0.440884202718735,-0.237137153744698,0.865671396255493,0.416714161634445,-0.0174247231334448,0.908870577812195,0.000240212044445798,-0.090602844953537,0.995887100696564,-0.000560834130737931,0.759455561637878,0.650558948516846,0.29518061876297,0.727222681045532,0.61968994140625,0.488590627908707,-0.0529423989355564,0.87090539932251,-0.000560834130737931,0.759455561637878,0.650558948516846,3.16250188916456e-05,0.998316526412964,0.0580002292990685,0.0110333543270826,0.998570621013641,0.0522978268563747,0.29518061876297,0.727222681045532,0.61968994140625,0.29518061876297,0.727222681045532,0.61968994140625,0.0110333543270826,0.998570621013641,0.0522978268563747,0.0313166528940201,0.998217403888702,0.0508056059479713,0.276121646165848,0.73132461309433,0.623635530471802,0.488590627908707,-0.0529423989355564,0.87090539932251,0.29518061876297,0.727222681045532,0.61968994140625,0.276121646165848,0.73132461309433,0.623635530471802,0.416714161634445,-0.0174247231334448,0.908870577812195,0.0285819675773382,0.729895889759064,-0.682960391044617,0.00238245795480907,0.961176156997681,-0.275925070047379,0.00809983070939779,0.96565043926239,-0.259718418121338,0.0785375684499741,0.720712304115295,-0.688771069049835,0.00238245795480907,0.961176156997681,-0.275925070047379,0.00182646268513054,0.99999612569809,0.00212048715911806,0.0224202573299408,0.999069094657898,0.0368568897247314,0.00809983070939779,0.96565043926239,-0.259718418121338,0.00809983070939779,0.96565043926239,-0.259718418121338,0.0224202573299408,0.999069094657898,0.0368568897247314,0.0313166528940201,0.998217403888702,0.0508056059479713,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.0785375684499741,0.720712304115295,-0.688771069049835,0.00809983070939779,0.96565043926239,-0.259718418121338,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.133469432592392,0.65885329246521,-0.74033659696579,0.0522924698889256,0.322998911142349,-0.944953560829163,0.058124840259552,0.430876910686493,-0.900536835193634, -0.187488585710526,0.427115112543106,-0.884545564651489,0.215213447809219,0.322506368160248,-0.921777009963989,0.058124840259552,0.430876910686493,-0.900536835193634,0.0285819675773382,0.729895889759064,-0.682960391044617,0.0785375684499741,0.720712304115295,-0.688771069049835,0.187488585710526,0.427115112543106,-0.884545564651489,0.187488585710526,0.427115112543106,-0.884545564651489,0.0785375684499741,0.720712304115295,-0.688771069049835,0.133469432592392,0.65885329246521,-0.74033659696579,0.308559060096741,0.384593516588211,-0.869988083839417,0.215213447809219,0.322506368160248,-0.921777009963989,0.187488585710526,0.427115112543106,-0.884545564651489,0.308559060096741,0.384593516588211,-0.869988083839417,0.344331592321396,0.314264476299286,-0.884688377380371,0.261896342039108,0.326266586780548,-0.908273279666901,-7.8074026532704e-06,0.338909506797791,-0.940818905830383,-1.51857690866564e-07,0.322332769632339,-0.946626484394073,0.26021546125412,0.307808876037598,-0.91517299413681,0.261896342039108,0.326266586780548,-0.908273279666901,0.26021546125412,0.307808876037598,-0.91517299413681,0.333691775798798,0.296535044908524,-0.894827723503113,0.344331592321396,0.314264476299286,-0.884688377380371,0.26021546125412,0.307808876037598,-0.91517299413681,-1.51857690866564e-07,0.322332769632339,-0.946626484394073,1.21185021271231e-05,0.230906829237938,-0.972975850105286,0.291167229413986,0.205097615718842,-0.934428453445435,0.26021546125412,0.307808876037598,-0.91517299413681,0.291167229413986,0.205097615718842,-0.934428453445435,0.371691584587097,0.176296725869179,-0.911462962627411,0.333691775798798,0.296535044908524,-0.894827723503113,0.355109542608261,0.0902480930089951,-0.930458247661591,0.368675380945206,0.098903588950634,-0.924281597137451,0.16628709435463,0.278749406337738,-0.94585794210434,0.285638749599457,0.2063317745924,-0.935862064361572,0.355109542608261,0.0902480930089951,-0.930458247661591,0.285638749599457,0.2063317745924,-0.935862064361572,0.371691584587097,0.176296725869179,-0.911462962627411,0.318776696920395,0.121042519807816,-0.940069198608398, -0.22142082452774,0.15281318128109,-0.9631307721138,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,2.50662333201035e-06,0.290553063154221,-0.95685887336731,0.142957478761673,0.29364675283432,-0.945163905620575,0.254412084817886,0.533420383930206,-0.806682765483856,0.323132365942001,0.276261866092682,-0.905132412910461,0.259201914072037,0.299632668495178,-0.91816920042038,0.222146436572075,0.542190074920654,-0.81035852432251,0.222146436572075,0.542190074920654,-0.81035852432251,0.259201914072037,0.299632668495178,-0.91816920042038,0.208717495203018,0.299665898084641,-0.930933594703674,0.182871222496033,0.526780843734741,-0.830096364021301,0.254412084817886,0.533420383930206,-0.806682765483856,0.222146436572075,0.542190074920654,-0.81035852432251,0.216018065810204,0.747482717037201,-0.628176629543304,0.226110190153122,0.755864500999451,-0.614445269107819,0.222146436572075,0.542190074920654,-0.81035852432251,0.182871222496033,0.526780843734741,-0.830096364021301,0.172337353229523,0.741694688796997,-0.64821982383728,0.216018065810204,0.747482717037201,-0.628176629543304,0.216018065810204,0.747482717037201,-0.628176629543304,0.172337353229523,0.741694688796997,-0.64821982383728,0.176429450511932,0.811212837696075,-0.557500243186951,0.227301627397537,0.797038078308105,-0.559521317481995,0.226110190153122,0.755864500999451,-0.614445269107819,0.216018065810204,0.747482717037201,-0.628176629543304,0.227301627397537,0.797038078308105,-0.559521317481995,0.230574190616608,0.802635431289673,-0.550101757049561,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.968618035316467,0.227608129382133,0.0998680666089058,-0.999411582946777,0.0342933759093285,-0.000705166603438556,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.735272943973541,0.677123188972473,-0.0296302065253258,-0.968618035316467,0.227608129382133,0.0998680666089058,0.982530891895294,0.179615572094917,-0.048695120960474,0.909924030303955,0.382335722446442,0.160803377628326, -0.918489754199982,0.390081375837326,0.0649086162447929,0.963160037994385,0.267727553844452,0.0253903493285179,0.94057035446167,0.131806656718254,-0.312976598739624,0.959687411785126,0.0514214597642422,-0.27632600069046,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.985291481018066,0.124938115477562,-0.11658088862896,0.959687411785126,0.0514214597642422,-0.27632600069046,0.965870499610901,0.00448970589786768,-0.258986443281174,0.998047888278961,0.0146625395864248,-0.060707226395607,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.577709436416626,0.788253307342529,-0.211915999650955,0.841995894908905,0.44246968626976,-0.308647990226746,0.910410702228546,0.389947533607483,-0.138178318738937,0.633624613285065,0.753813445568085,-0.174026221036911,0.841995894908905,0.44246968626976,-0.308647990226746,0.94057035446167,0.131806656718254,-0.312976598739624,0.985291481018066,0.124938115477562,-0.11658088862896,0.910410702228546,0.389947533607483,-0.138178318738937,-0.0506674610078335,0.99699342250824,-0.0586251579225063,0.157750144600868,0.984252214431763,-0.0797660797834396,0.174809172749519,0.976600348949432,-0.125273838639259,-0.0905638262629509,0.989124715328217,-0.115889199078083,0.157750144600868,0.984252214431763,-0.0797660797834396,0.577709436416626,0.788253307342529,-0.211915999650955,0.633624613285065,0.753813445568085,-0.174026221036911,0.174809172749519,0.976600348949432,-0.125273838639259,-0.735272943973541,0.677123188972473,-0.0296302065253258,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.283307284116745,0.949905514717102,-0.131971746683121,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.0506674610078335,0.99699342250824,-0.0586251579225063,-0.0905638262629509,0.989124715328217,-0.115889199078083,-0.283307284116745,0.949905514717102,-0.131971746683121,0.965870499610901,0.00448970589786768,-0.258986443281174,0.982530891895294,0.179615572094917,-0.048695120960474,0.963160037994385,0.267727553844452,0.0253903493285179, -0.998047888278961,0.0146625395864248,-0.060707226395607,0.993812620639801,-0.0107418037950993,-0.110549911856651,0.999412536621094,0.0342502295970917,-0.00125980097800493,0.843631565570831,0.103148303925991,-0.526921272277832,0.860810875892639,0.011091579683125,-0.508804142475128,0.993812620639801,-0.0107418037950993,-0.110549911856651,0.860810875892639,0.011091579683125,-0.508804142475128,0.83915901184082,-0.095047727227211,-0.535516738891602,0.953685641288757,-0.109224699437618,-0.280273914337158,0.552241027355194,0.750507056713104,-0.362999767065048,0.80096834897995,0.345901638269424,-0.488673329353333,0.968575656414032,0.227879360318184,0.0996607095003128,0.735121607780457,0.677271008491516,-0.0300026647746563,0.80096834897995,0.345901638269424,-0.488673329353333,0.843631565570831,0.103148303925991,-0.526921272277832,0.999412536621094,0.0342502295970917,-0.00125980097800493,0.968575656414032,0.227879360318184,0.0996607095003128,-0.909995555877686,0.382108211517334,0.160939007997513,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.963136672973633,0.267785251140594,0.0256693139672279,-0.918653607368469,0.389712989330292,0.0648018419742584,-0.959764063358307,0.0512487143278122,-0.276091665029526,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.959764063358307,0.0512487143278122,-0.276091665029526,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.910138785839081,0.390371263027191,-0.138771787285805,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.577608048915863,0.788340985774994,-0.21186663210392,-0.633245766162872,0.754034101963043,-0.174448430538177,-0.910138785839081,0.390371263027191,-0.138771787285805, --0.633245766162872,0.754034101963043,-0.174448430538177,-0.577608048915863,0.788340985774994,-0.21186663210392,-0.157791629433632,0.984245717525482,-0.0797630324959755,-0.174915432929993,0.976571559906006,-0.12535035610199,-0.157791629433632,0.984245717525482,-0.0797630324959755,0.0506666153669357,0.996992409229279,-0.0586448013782501,0.0905739814043045,0.989119470119476,-0.115926384925842,-0.174915432929993,0.976571559906006,-0.12535035610199,0.0905739814043045,0.989119470119476,-0.115926384925842,0.0506666153669357,0.996992409229279,-0.0586448013782501,0.185870006680489,0.974829435348511,-0.123125806450844,0.283193707466125,0.949928641319275,-0.132048457860947,0.185870006680489,0.974829435348511,-0.123125806450844,0.552241027355194,0.750507056713104,-0.362999767065048,0.735121607780457,0.677271008491516,-0.0300026647746563,0.283193707466125,0.949928641319275,-0.132048457860947,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.963136672973633,0.267785251140594,0.0256693139672279,0.981224417686462,0.167806178331375,-0.0950773656368256,0.935576796531677,0.340476334095001,-0.0936591178178787,0.910410702228546,0.389947533607483,-0.138178318738937,0.985291481018066,0.124938115477562,-0.11658088862896,0.995482861995697,0.0543078929185867,-0.0778756663203239,0.981224417686462,0.167806178331375,-0.0950773656368256,0.985291481018066,0.124938115477562,-0.11658088862896,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.999225378036499,0.0259163454174995,-0.0296154581010342,0.995482861995697,0.0543078929185867,-0.0778756663203239,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.998047888278961,0.0146625395864248,-0.060707226395607,0.951579332351685,0.307402849197388,-0.000335537944920361,0.999225378036499,0.0259163454174995,-0.0296154581010342,0.998047888278961,0.0146625395864248,-0.060707226395607,0.963160037994385,0.267727553844452,0.0253903493285179,0.91887229681015,0.394474267959595,-0.00798751227557659, -0.951579332351685,0.307402849197388,-0.000335537944920361,0.963160037994385,0.267727553844452,0.0253903493285179,0.918489754199982,0.390081375837326,0.0649086162447929,0.934445858001709,0.35219806432724,-0.0526059940457344,0.937036633491516,0.347901165485382,-0.0304490700364113,0.933702230453491,0.351534873247147,0.0679962337017059,0.91965240240097,0.390021592378616,0.0460708625614643,0.937036633491516,0.347901165485382,-0.0304490700364113,0.91887229681015,0.394474267959595,-0.00798751227557659,0.918489754199982,0.390081375837326,0.0649086162447929,0.933702230453491,0.351534873247147,0.0679962337017059,0.198442324995995,0.965159118175507,0.170553311705589,0.147601917386055,0.978087961673737,0.146825015544891,0.325861901044846,0.941287815570831,0.0882673636078835,0.35967755317688,0.930222868919373,0.0729219540953636,0.325861901044846,0.941287815570831,0.0882673636078835,0.461842626333237,0.886631667613983,-0.0242011398077011,0.519965469837189,0.854100704193115,0.0121630895882845,0.35967755317688,0.930222868919373,0.0729219540953636,-0.460653066635132,0.887348234653473,-0.0202932339161634,-0.325271785259247,0.941008806228638,0.0932776555418968,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.519298076629639,0.85447096824646,0.014456233009696,-0.325271785259247,0.941008806228638,0.0932776555418968,-0.150234207510948,0.977291941642761,0.149432733654976,-0.199016839265823,0.964948236942291,0.17107680439949,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.934439778327942,0.352213710546494,-0.0526110976934433,-0.739810407161713,0.666273951530457,-0.0935925915837288,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.739810407161713,0.666273951530457,-0.0935925915837288,-0.460653066635132,0.887348234653473,-0.0202932339161634,-0.519298076629639,0.85447096824646,0.014456233009696,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.951680302619934,0.307090789079666,-8.11222344054841e-05,-0.91904205083847,0.394078344106674,-0.00799847114831209, --0.918653607368469,0.389712989330292,0.0648018419742584,-0.963136672973633,0.267785251140594,0.0256693139672279,-0.999247670173645,0.0258413702249527,-0.0289186723530293,-0.951680302619934,0.307090789079666,-8.11222344054841e-05,-0.963136672973633,0.267785251140594,0.0256693139672279,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.995457231998444,0.0543347783386707,-0.078183077275753,-0.999247670173645,0.0258413702249527,-0.0289186723530293,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.981092154979706,0.168172180652618,-0.0957925766706467,-0.995457231998444,0.0543347783386707,-0.078183077275753,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.93528687953949,0.341063588857651,-0.0944134220480919,-0.981092154979706,0.168172180652618,-0.0957925766706467,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.910138785839081,0.390371263027191,-0.138771787285805,-0.993900716304779,-0.0106280529871583,-0.109765827655792,-0.953887403011322,-0.109419479966164,-0.279510796070099,-0.839524686336517,-0.0949402377009392,-0.534962296485901,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.999411582946777,0.0342933759093285,-0.000705166603438556,-0.993900716304779,-0.0106280529871583,-0.109765827655792,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.911364376544952,0.382403463125229,0.152258291840553,-0.933690547943115,0.351602673530579,0.0678064078092575,-0.911364376544952,0.382403463125229,0.152258291840553,-0.909995555877686,0.382108211517334,0.160939007997513,-0.918653607368469,0.389712989330292,0.0648018419742584,-0.933690547943115,0.351602673530579,0.0678064078092575,-0.918653607368469,0.389712989330292,0.0648018419742584,-0.91904205083847,0.394078344106674,-0.00799847114831209,-0.937026500701904,0.34792622923851,-0.0304722040891647, --0.933690547943115,0.351602673530579,0.0678064078092575,-0.937026500701904,0.34792622923851,-0.0304722040891647,-0.934439778327942,0.352213710546494,-0.0526110976934433,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.933690547943115,0.351602673530579,0.0678064078092575,0.91965240240097,0.390021592378616,0.0460708625614643,0.884372234344482,0.457667320966721,0.0917949602007866,0.801068782806396,0.595264196395874,0.0628444850444794,0.788574576377869,0.614932358264923,0.00284513644874096,0.801068782806396,0.595264196395874,0.0628444850444794,0.584385097026825,0.809152603149414,0.0613689199090004,0.519965469837189,0.854100704193115,0.0121630895882845,0.788574576377869,0.614932358264923,0.00284513644874096,0.519965469837189,0.854100704193115,0.0121630895882845,0.461842626333237,0.886631667613983,-0.0242011398077011,0.740596115589142,0.665208756923676,-0.0949457511305809,0.788574576377869,0.614932358264923,0.00284513644874096,0.740596115589142,0.665208756923676,-0.0949457511305809,0.934445858001709,0.35219806432724,-0.0526059940457344,0.91965240240097,0.390021592378616,0.0460708625614643,0.788574576377869,0.614932358264923,0.00284513644874096,0.198442324995995,0.965159118175507,0.170553311705589,0.0770793333649635,0.951992928981781,0.296257019042969,-0.12767069041729,0.86908620595932,0.477901011705399,-0.0940338149666786,0.943791687488556,0.316883236169815,0.0770793333649635,0.951992928981781,0.296257019042969,3.1286046578316e-05,0.933347523212433,0.35897421836853,0.00105006573721766,0.819467723369598,0.573124349117279,-0.12767069041729,0.86908620595932,0.477901011705399,-0.12767069041729,0.86908620595932,0.477901011705399,0.00105006573721766,0.819467723369598,0.573124349117279,0.00354147492907941,0.63427597284317,0.773098587989807,-0.321096479892731,0.720745503902435,0.614347457885742,-0.0940338149666786,0.943791687488556,0.316883236169815,-0.12767069041729,0.86908620595932,0.477901011705399,-0.321096479892731,0.720745503902435,0.614347457885742,-0.368012607097626,0.849207520484924,0.378699630498886,0.173189952969551,0.958074808120728,0.228249445557594, -0.340378850698471,0.892681539058685,0.295401394367218,0.369827419519424,0.848678946495056,0.378115952014923,0.0926034152507782,0.943549811840057,0.318022698163986,0.173189952969551,0.958074808120728,0.228249445557594,0.0926034152507782,0.943549811840057,0.318022698163986,-0.199016839265823,0.964948236942291,0.17107680439949,-0.150234207510948,0.977291941642761,0.149432733654976,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,0.0988913848996162,0.994943797588348,0.017530145123601,0.103175163269043,0.993301212787628,-0.052034717053175,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,2.26350630327943e-06,0.99591463804245,0.0902996808290482,0.086555078625679,0.993677139282227,0.0715123042464256,0.0988913848996162,0.994943797588348,0.017530145123601,0.0988913848996162,0.994943797588348,0.017530145123601,0.086555078625679,0.993677139282227,0.0715123042464256,0.239230915904045,0.970812439918518,0.0170813668519258,0.25543686747551,0.966500818729401,-0.0250628516077995,0.103175163269043,0.993301212787628,-0.052034717053175,0.0988913848996162,0.994943797588348,0.017530145123601,0.25543686747551,0.966500818729401,-0.0250628516077995,0.262632310390472,0.961123704910278,-0.0852374881505966,-0.239247843623161,0.970808088779449,0.0170955918729305,-0.0865604281425476,0.993676722049713,0.0715120956301689,-0.0988745242357254,0.994945466518402,0.0175352524966002,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.0865604281425476,0.993676722049713,0.0715120956301689,2.26350630327943e-06,0.99591463804245,0.0902996808290482,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,-0.0988745242357254,0.994945466518402,0.0175352524966002,-0.0988745242357254,0.994945466518402,0.0175352524966002,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,-0.10318198800087,0.993300795555115,-0.0520285628736019,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.0988745242357254,0.994945466518402,0.0175352524966002, --0.10318198800087,0.993300795555115,-0.0520285628736019,-0.262632071971893,0.961122930049896,-0.0852473974227905,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.814514100551605,0.577297806739807,0.0573935136198997,0.884372234344482,0.457667320966721,0.0917949602007866,0.988293766975403,-0.00941547844558954,-0.152272343635559,0.988306939601898,0.104397609829903,-0.111133053898811,-0.622444152832031,-0.0568815171718597,0.780594408512115,-0.633827924728394,0.0169978868216276,0.773287355899811,-0.493350982666016,-0.292393028736115,0.81921374797821,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.0507670193910599,-0.311318546533585,0.948948562145233,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.0507670193910599,-0.311318546533585,0.948948562145233,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.0525912828743458,-0.641458690166473,0.765352845191956,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.122217893600464,-0.506918251514435,0.853285849094391,-0.0525912828743458,-0.641458690166473,0.765352845191956,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.362703084945679,-0.449246019124985,0.816470742225647,-0.296234369277954,-0.436655968427658,0.849456787109375,-0.430363267660141,-0.0405699424445629,0.901743590831757, --0.513725578784943,-0.281165987253189,0.810575008392334,-0.369815438985825,-0.479616552591324,0.795741438865662,-0.362703084945679,-0.449246019124985,0.816470742225647,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.368978589773178,-0.517406225204468,0.772104680538177,-0.369815438985825,-0.479616552591324,0.795741438865662,-0.513725578784943,-0.281165987253189,0.810575008392334,-0.394751042127609,-0.459863156080246,0.795422732830048,-0.321326851844788,-0.594967842102051,0.736724138259888,-0.368978589773178,-0.517406225204468,0.772104680538177,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.430363267660141,-0.0405699424445629,0.901743590831757,-0.296234369277954,-0.436655968427658,0.849456787109375,-0.122217893600464,-0.506918251514435,0.853285849094391,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.208823442459106,0.391514956951141,0.89616334438324,-0.373429536819458,0.295800745487213,0.87923389673233,-0.633827924728394,0.0169978868216276,0.773287355899811,-0.622444152832031,-0.0568815171718597,0.780594408512115,0.20521105825901,0.303497523069382,0.930471777915955,0.126515954732895,0.184289872646332,0.974695205688477,0.00895701535046101,0.33652463555336,0.941632032394409,0.152036800980568,0.404537260532379,0.901795029640198,0.152036800980568,0.404537260532379,0.901795029640198,0.00895701535046101,0.33652463555336,0.941632032394409,-0.373429536819458,0.295800745487213,0.87923389673233,-0.208823442459106,0.391514956951141,0.89616334438324,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.493350982666016,-0.292393028736115,0.81921374797821,0.0972790643572807,0.225614964962006,0.969347536563873,0.0805548876523972,0.00170732999686152,0.996748685836792,0.126515954732895,0.184289872646332,0.974695205688477,0.20521105825901,0.303497523069382,0.930471777915955,-0.0322061702609062,0.215598866343498,0.975950837135315, --0.0483344346284866,-0.126977697014809,0.990727245807648,0.0805548876523972,0.00170732999686152,0.996748685836792,0.0972790643572807,0.225614964962006,0.969347536563873,-0.24457274377346,0.23941496014595,0.939608812332153,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.0483344346284866,-0.126977697014809,0.990727245807648,-0.0322061702609062,0.215598866343498,0.975950837135315,-0.43378084897995,0.253316581249237,0.864676177501678,-0.501552581787109,-0.0615811087191105,0.862932622432709,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.24457274377346,0.23941496014595,0.939608812332153,-0.552580296993256,0.248522356152534,0.795544862747192,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.501552581787109,-0.0615811087191105,0.862932622432709,-0.43378084897995,0.253316581249237,0.864676177501678,-0.616995096206665,0.248675897717476,0.746644020080566,-0.603928744792938,0.156121075153351,0.781598567962646,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.552580296993256,0.248522356152534,0.795544862747192,-0.578743577003479,0.225211217999458,0.783795773983002,-0.577003598213196,0.190486997365952,0.794217646121979,-0.603928744792938,0.156121075153351,0.781598567962646,-0.616995096206665,0.248675897717476,0.746644020080566,-0.487023383378983,0.129526227712631,0.86373096704483,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.577003598213196,0.190486997365952,0.794217646121979,-0.578743577003479,0.225211217999458,0.783795773983002,-0.356160789728165,-0.327515810728073,0.875147342681885,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.487023383378983,0.129526227712631,0.86373096704483,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.356160789728165,-0.327515810728073,0.875147342681885,-0.321326851844788,-0.594967842102051,0.736724138259888,-0.394751042127609,-0.459863156080246,0.795422732830048,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.699978470802307,0.105198852717876,0.706373274326324, --0.622288882732391,-0.106440320611,0.775517344474792,-0.579371690750122,-0.130315348505974,0.804578363895416,-0.579371690750122,-0.130315348505974,0.804578363895416,-0.622288882732391,-0.106440320611,0.775517344474792,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.82001256942749,0.130813300609589,0.557195842266083,-0.875361323356628,0.225780814886093,0.42751082777977,-0.891718804836273,0.173081874847412,0.418186724185944,-0.795642733573914,0.111424118280411,0.595430314540863,-0.807716190814972,0.132200345396996,0.574558556079865,-0.873296499252319,0.179054200649261,0.45309242606163,-0.875361323356628,0.225780814886093,0.42751082777977,-0.82001256942749,0.130813300609589,0.557195842266083,-0.76854807138443,0.109590314328671,0.630336225032806,-0.844377338886261,0.131901383399963,0.519258081912994,-0.873296499252319,0.179054200649261,0.45309242606163,-0.807716190814972,0.132200345396996,0.574558556079865,-0.700298309326172,0.131053596735001,0.701717376708984,-0.76689887046814,0.116679958999157,0.631071984767914,-0.844377338886261,0.131901383399963,0.519258081912994,-0.76854807138443,0.109590314328671,0.630336225032806,-0.526602387428284,0.183498844504356,0.830071091651917,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.76689887046814,0.116679958999157,0.631071984767914,-0.700298309326172,0.131053596735001,0.701717376708984,-0.369711548089981,0.146718040108681,0.917489588260651,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.526602387428284,0.183498844504356,0.830071091651917,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.369711548089981,0.146718040108681,0.917489588260651, --0.190550938248634,-0.252945214509964,0.948529958724976,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.190550938248634,-0.252945214509964,0.948529958724976,-0.257303357124329,-0.354579329490662,0.898926258087158,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.257303357124329,-0.354579329490662,0.898926258087158,-0.795642733573914,0.111424118280411,0.595430314540863,-0.891718804836273,0.173081874847412,0.418186724185944,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.386911332607269,0.0745889842510223,0.919095277786255,-0.32172629237175,0.0042048622854054,0.946823418140411,-0.32172629237175,0.0042048622854054,0.946823418140411, --0.386911332607269,0.0745889842510223,0.919095277786255,-0.300742030143738,0.219192281365395,0.928175091743469,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.300742030143738,0.219192281365395,0.928175091743469,-0.241419926285744,0.347718894481659,0.905984461307526,-0.149873554706573,0.228948622941971,0.96183180809021,-0.149873554706573,0.228948622941971,0.96183180809021,-0.241419926285744,0.347718894481659,0.905984461307526,-0.295458763837814,0.403195053339005,0.866105020046234,-0.193298250436783,0.311735332012177,0.930299341678619,-0.193298250436783,0.311735332012177,0.930299341678619,-0.295458763837814,0.403195053339005,0.866105020046234,-0.483116298913956,0.378075420856476,0.789719998836517,-0.390417993068695,0.353622496128082,0.850014686584473,-0.546429932117462,0.280326753854752,0.789196491241455,-0.635390877723694,0.277111351490021,0.72075492143631,-0.699978470802307,0.105198852717876,0.706373274326324,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.390417993068695,0.353622496128082,0.850014686584473,-0.483116298913956,0.378075420856476,0.789719998836517,-0.635390877723694,0.277111351490021,0.72075492143631,-0.546429932117462,0.280326753854752,0.789196491241455,-9.54276870857029e-08,0.46919858455658,0.883092641830444,-0.427030801773071,0.423026651144028,0.799182772636414,-0.440599650144577,0.181119993329048,0.879242658615112,-4.4512784569406e-08,0.194622755050659,0.980878174304962,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,-0.161505579948425,-0.139396369457245,0.976977288722992,-0.170562729239464,-0.404366999864578,0.898552000522614,-8.14389480296995e-08,-0.502702832221985,0.864459335803986,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.587400913238525,-0.149357974529266,0.795394480228424, --0.648984730243683,-0.224779799580574,0.726837575435638,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.587400913238525,-0.149357974529266,0.795394480228424,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.263805389404297,-0.3244608938694,0.908367693424225,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.161505579948425,-0.139396369457245,0.976977288722992,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.263805389404297,-0.3244608938694,0.908367693424225,-0.170562729239464,-0.404366999864578,0.898552000522614,-0.648984730243683,-0.224779799580574,0.726837575435638,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.172886833548546,-0.39629265666008,0.901699721813202,-0.172886833548546,-0.39629265666008,0.901699721813202,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.457513511180878,-0.228730887174606,0.8592808842659, --0.555301427841187,-0.227197021245956,0.800013661384583,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.555301427841187,-0.227197021245956,0.800013661384583,-0.457513511180878,-0.228730887174606,0.8592808842659,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.718692064285278,-0.158278584480286,0.677074313163757,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.718692064285278,-0.158278584480286,0.677074313163757,-0.620511949062347,-0.17046195268631,0.765446126461029,-0.578703820705414,0.066067636013031,0.812857270240784,-0.578703820705414,0.066067636013031,0.812857270240784,-0.620511949062347,-0.17046195268631,0.765446126461029,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.377665400505066,0.110308043658733,0.919348180294037,-0.377665400505066,0.110308043658733,0.919348180294037,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.198652446269989,0.136567801237106,0.970508337020874,-0.198652446269989,0.136567801237106,0.970508337020874,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.112910144031048,-0.17989219725132,0.9771848320961,-0.0933142006397247,0.13879482448101,0.985915064811707,-0.0933142006397247,0.13879482448101,0.985915064811707,-0.112910144031048,-0.17989219725132,0.9771848320961,-1.530000446337e-07,-0.212198525667191,0.977226614952087,-8.4368110719879e-07,0.104064725339413,0.994570553302765,-0.170562729239464,-0.404366999864578,0.898552000522614,-0.123517006635666,-0.713964462280273,0.689201235771179,-5.37285060886461e-08,-0.762006878852844,0.647568941116333,-8.14389480296995e-08,-0.502702832221985,0.864459335803986, --0.263805389404297,-0.3244608938694,0.908367693424225,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.123517006635666,-0.713964462280273,0.689201235771179,-0.170562729239464,-0.404366999864578,0.898552000522614,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.263805389404297,-0.3244608938694,0.908367693424225,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.416855722665787,-0.70935046672821,0.568377792835236,-0.416855722665787,-0.70935046672821,0.568377792835236,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.198799788951874,-0.571179986000061,0.796386957168579,-0.198799788951874,-0.571179986000061,0.796386957168579,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.172886833548546,-0.39629265666008,0.901699721813202,-0.145042181015015,-0.490352720022202,0.859369993209839,-0.145042181015015,-0.490352720022202,0.859369993209839, --0.172886833548546,-0.39629265666008,0.901699721813202,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.555301427841187,-0.227197021245956,0.800013661384583,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.555301427841187,-0.227197021245956,0.800013661384583,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.696915924549103,0.150847509503365,0.701108515262604,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.696915924549103,0.150847509503365,0.701108515262604,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.639414668083191,0.235927820205688,0.731769800186157,-0.639414668083191,0.235927820205688,0.731769800186157,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.578703820705414,0.066067636013031,0.812857270240784,-0.520338296890259,0.302176177501678,0.798709988594055,-0.520338296890259,0.302176177501678,0.798709988594055,-0.578703820705414,0.066067636013031,0.812857270240784,-0.377665400505066,0.110308043658733,0.919348180294037,-0.307869553565979,0.363059610128403,0.879433870315552,-0.307869553565979,0.363059610128403,0.879433870315552,-0.377665400505066,0.110308043658733,0.919348180294037,-0.198652446269989,0.136567801237106,0.970508337020874,-0.142266169190407,0.401025503873825,0.904952466487885,-0.142266169190407,0.401025503873825,0.904952466487885,-0.198652446269989,0.136567801237106,0.970508337020874,-0.0933142006397247,0.13879482448101,0.985915064811707,-0.059580460190773,0.412580370903015,0.908970713615417,-0.059580460190773,0.412580370903015,0.908970713615417,-0.0933142006397247,0.13879482448101,0.985915064811707, --8.4368110719879e-07,0.104064725339413,0.994570553302765,-1.23364577575558e-06,0.405415445566177,0.914132475852966,-0.123517006635666,-0.713964462280273,0.689201235771179,-0.0650144815444946,-0.92928946018219,0.36358517408371,-2.19972790205247e-07,-0.946157574653625,0.323706299066544,-5.37285060886461e-08,-0.762006878852844,0.647568941116333,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.0700107589364052,-0.918608009815216,0.388918846845627,-0.0650144815444946,-0.92928946018219,0.36358517408371,-0.123517006635666,-0.713964462280273,0.689201235771179,-0.0575000047683716,-0.920222759246826,0.387148171663284,-0.0700107589364052,-0.918608009815216,0.388918846845627,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.0467732325196266,-0.957661330699921,0.284072071313858,-0.0575000047683716,-0.920222759246826,0.387148171663284,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.0467732325196266,-0.957661330699921,0.284072071313858,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.010275911539793,-0.987158477306366,0.159412920475006,-0.010275911539793,-0.987158477306366,0.159412920475006,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.0177781600505114,-0.99129331111908,0.130466863512993,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.070024810731411,-0.992533028125763,0.0998734086751938,-0.0177781600505114,-0.99129331111908,0.130466863512993,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.070024810731411,-0.992533028125763,0.0998734086751938,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.416855722665787,-0.70935046672821,0.568377792835236,0.0745086520910263,-0.995074927806854,-0.0653797164559364,0.114909864962101,-0.963066697120667,-0.243512377142906,0.0745086520910263,-0.995074927806854,-0.0653797164559364,-0.416855722665787,-0.70935046672821,0.568377792835236, --0.198799788951874,-0.571179986000061,0.796386957168579,0.786459982395172,-0.152115032076836,-0.598616480827332,0.114909864962101,-0.963066697120667,-0.243512377142906,-0.198799788951874,-0.571179986000061,0.796386957168579,-0.145042181015015,-0.490352720022202,0.859369993209839,0.19354659318924,0.969684422016144,-0.149170637130737,0.786459982395172,-0.152115032076836,-0.598616480827332,-0.145042181015015,-0.490352720022202,0.859369993209839,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.369951218366623,0.895374655723572,0.247871711850166,0.19354659318924,0.969684422016144,-0.149170637130737,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.334255129098892,0.900808572769165,0.277159631252289,-0.369951218366623,0.895374655723572,0.247871711850166,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.696915924549103,0.150847509503365,0.701108515262604,-0.319086283445358,0.899404048919678,0.298757940530777,-0.334255129098892,0.900808572769165,0.277159631252289,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.345288753509521,0.879696190357208,0.326971441507339,-0.319086283445358,0.899404048919678,0.298757940530777,-0.696915924549103,0.150847509503365,0.701108515262604,-0.639414668083191,0.235927820205688,0.731769800186157,-0.343751102685928,0.846281886100769,0.406991451978683,-0.345288753509521,0.879696190357208,0.326971441507339,-0.639414668083191,0.235927820205688,0.731769800186157,-0.520338296890259,0.302176177501678,0.798709988594055,-0.203538998961449,0.867182850837708,0.454495310783386,-0.343751102685928,0.846281886100769,0.406991451978683,-0.520338296890259,0.302176177501678,0.798709988594055,-0.307869553565979,0.363059610128403,0.879433870315552,-0.0728877931833267,0.860819160938263,0.503664255142212,-0.203538998961449,0.867182850837708,0.454495310783386,-0.307869553565979,0.363059610128403,0.879433870315552,-0.142266169190407,0.401025503873825,0.904952466487885, --0.0103095471858978,0.826472699642181,0.562882483005524,-0.0728877931833267,0.860819160938263,0.503664255142212,-0.142266169190407,0.401025503873825,0.904952466487885,-0.059580460190773,0.412580370903015,0.908970713615417,-4.3436074292913e-07,0.799352884292603,0.60086190700531,-0.0103095471858978,0.826472699642181,0.562882483005524,-0.059580460190773,0.412580370903015,0.908970713615417,-1.23364577575558e-06,0.405415445566177,0.914132475852966,4.47424355343173e-07,0.53668475151062,0.843782901763916,6.76111312714056e-07,0.373505502939224,0.927627980709076,0.0717731863260269,0.317301392555237,0.945604801177979,0.118451811373234,0.516582429409027,0.848004579544067,0.0717731863260269,0.317301392555237,0.945604801177979,-0.249449789524078,0.33998367190361,0.906744658946991,-0.188545882701874,0.431141525506973,0.882364630699158,0.118451811373234,0.516582429409027,0.848004579544067,-0.249449789524078,0.33998367190361,0.906744658946991,-0.472561091184616,0.315939337015152,0.822719991207123,-0.486899256706238,0.335813164710999,0.806324124336243,-0.188545882701874,0.431141525506973,0.882364630699158,-0.472561091184616,0.315939337015152,0.822719991207123,-0.542252838611603,0.257057636976242,0.799926996231079,-0.58552348613739,0.26387482881546,0.766506552696228,-0.486899256706238,0.335813164710999,0.806324124336243,-0.542252838611603,0.257057636976242,0.799926996231079,-0.588205754756927,0.203771024942398,0.782618284225464,-0.62177973985672,0.196991369128227,0.758013486862183,-0.58552348613739,0.26387482881546,0.766506552696228,-0.588205754756927,0.203771024942398,0.782618284225464,-0.623639464378357,0.151776671409607,0.766836106777191,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.62177973985672,0.196991369128227,0.758013486862183,-0.623639464378357,0.151776671409607,0.766836106777191,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.632755398750305,-0.0421934574842453,0.773201406002045,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.549986779689789,-0.0976334884762764,0.829447031021118, --0.632755398750305,-0.0421934574842453,0.773201406002045,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.549986779689789,-0.0976334884762764,0.829447031021118,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.560693979263306,-0.163896352052689,0.811640381813049,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.560693979263306,-0.163896352052689,0.811640381813049,7.63165886041861e-08,-0.290879458189011,0.956759691238403,9.44835463201343e-08,-0.444976627826691,0.895542204380035,-0.118767827749252,-0.434621602296829,0.892747521400452,-0.147238418459892,-0.299318224191666,0.942724466323853,-0.250313520431519,-0.415625274181366,0.874413371086121,-0.271724343299866,-0.30934464931488,0.911302268505096,-0.147238418459892,-0.299318224191666,0.942724466323853,-0.118767827749252,-0.434621602296829,0.892747521400452,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.271724343299866,-0.30934464931488,0.911302268505096, --0.250313520431519,-0.415625274181366,0.874413371086121,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.161505579948425,-0.139396369457245,0.976977288722992,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,4.47424355343173e-07,0.53668475151062,0.843782901763916,0.118451811373234,0.516582429409027,0.848004579544067,-0.188545882701874,0.431141525506973,0.882364630699158,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.161505579948425,-0.139396369457245,0.976977288722992,0.118451811373234,0.516582429409027,0.848004579544067,-0.486899256706238,0.335813164710999,0.806324124336243,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.188545882701874,0.431141525506973,0.882364630699158,-0.58552348613739,0.26387482881546,0.766506552696228,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.486899256706238,0.335813164710999,0.806324124336243,-0.62177973985672,0.196991369128227,0.758013486862183,-0.587400913238525,-0.149357974529266,0.795394480228424,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.58552348613739,0.26387482881546,0.766506552696228,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.648984730243683,-0.224779799580574,0.726837575435638,-0.587400913238525,-0.149357974529266,0.795394480228424,-0.62177973985672,0.196991369128227,0.758013486862183, --0.632755398750305,-0.0421934574842453,0.773201406002045,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.648984730243683,-0.224779799580574,0.726837575435638,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.549986779689789,-0.0976334884762764,0.829447031021118,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.632755398750305,-0.0421934574842453,0.773201406002045,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.549986779689789,-0.0976334884762764,0.829447031021118,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.457513511180878,-0.228730887174606,0.8592808842659,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.560693979263306,-0.163896352052689,0.811640381813049,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.457513511180878,-0.228730887174606,0.8592808842659,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.560693979263306,-0.163896352052689,0.811640381813049,-0.718692064285278,-0.158278584480286,0.677074313163757,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.620511949062347,-0.17046195268631,0.765446126461029, --0.718692064285278,-0.158278584480286,0.677074313163757,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.620511949062347,-0.17046195268631,0.765446126461029,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.250313520431519,-0.415625274181366,0.874413371086121,-0.112910144031048,-0.17989219725132,0.9771848320961,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.250313520431519,-0.415625274181366,0.874413371086121,-0.118767827749252,-0.434621602296829,0.892747521400452,9.44835463201343e-08,-0.444976627826691,0.895542204380035,-1.530000446337e-07,-0.212198525667191,0.977226614952087,-0.112910144031048,-0.17989219725132,0.9771848320961,-0.118767827749252,-0.434621602296829,0.892747521400452,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,-0.0779154822230339,0.00478862784802914,0.996948480606079,0.0717731863260269,0.317301392555237,0.945604801177979,6.76111312714056e-07,0.373505502939224,0.927627980709076,-0.249449789524078,0.33998367190361,0.906744658946991,0.0717731863260269,0.317301392555237,0.945604801177979,-0.0779154822230339,0.00478862784802914,0.996948480606079,-0.353732317686081,0.185769811272621,0.916713178157806,-0.353732317686081,0.185769811272621,0.916713178157806,-0.444391429424286,0.23224301636219,0.865204930305481,-0.472561091184616,0.315939337015152,0.822719991207123,-0.249449789524078,0.33998367190361,0.906744658946991,-0.444391429424286,0.23224301636219,0.865204930305481,-0.481361955404282,0.151183098554611,0.863385438919067,-0.542252838611603,0.257057636976242,0.799926996231079,-0.472561091184616,0.315939337015152,0.822719991207123,-0.481361955404282,0.151183098554611,0.863385438919067,-0.581030488014221,0.153055503964424,0.799360752105713, --0.588205754756927,0.203771024942398,0.782618284225464,-0.542252838611603,0.257057636976242,0.799926996231079,-0.581030488014221,0.153055503964424,0.799360752105713,-0.573613166809082,0.148596420884132,0.805535316467285,-0.623639464378357,0.151776671409607,0.766836106777191,-0.588205754756927,0.203771024942398,0.782618284225464,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.623639464378357,0.151776671409607,0.766836106777191,-0.573613166809082,0.148596420884132,0.805535316467285,-0.56029999256134,0.112414121627808,0.820626080036163,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.56029999256134,0.112414121627808,0.820626080036163,-0.606586515903473,0.0739869400858879,0.791567265987396,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.606586515903473,0.0739869400858879,0.791567265987396,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.17985275387764,-0.0337658226490021,0.983113825321198,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,7.63165886041861e-08,-0.290879458189011,0.956759691238403, --0.147238418459892,-0.299318224191666,0.942724466323853,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.17985275387764,-0.0337658226490021,0.983113825321198,-0.147238418459892,-0.299318224191666,0.942724466323853,-0.271724343299866,-0.30934464931488,0.911302268505096,-0.271724343299866,-0.30934464931488,0.911302268505096,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.167769029736519,-0.276487588882446,0.946260094642639,5.00773921885411e-07,-0.279569029808044,0.96012556552887,4.9137469204652e-07,-0.177478060126305,0.984124779701233,-0.0868286490440369,-0.237600758671761,0.967474400997162,-0.0868286490440369,-0.237600758671761,0.967474400997162,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.167769029736519,-0.276487588882446,0.946260094642639,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.264756917953491,-0.358457028865814,0.895216345787048, --0.353910177946091,-0.00241770781576633,0.935276389122009,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.274904072284698,-0.0619129203259945,0.959476172924042,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.353910177946091,-0.00241770781576633,0.935276389122009,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.569105207920074,0.102337874472141,0.815871477127075,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.569105207920074,0.102337874472141,0.815871477127075,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.864901125431061,0.0519203916192055,0.499249786138535,-0.804547548294067,-0.0347260981798172,0.592872142791748,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.881875574588776,0.0824774503707886,0.46421217918396,-0.865438222885132,0.0103155253455043,0.500909566879272,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.935607731342316,0.127907067537308,0.329056292772293,-0.906198382377625,0.170440211892128,0.386981278657913,-0.889110147953033,0.168669506907463,0.425480872392654,-0.923866987228394,0.119930408895016,0.363437175750732,-0.906198382377625,0.170440211892128,0.386981278657913,-0.935607731342316,0.127907067537308,0.329056292772293,-0.937009155750275,0.036510843783617,0.34739163517952,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.822252154350281,-0.0876013040542603,0.562340915203094,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.628640651702881,-0.0453773140907288,0.776371002197266, --0.582251191139221,-0.0373667292296886,0.8121497631073,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.375234842300415,0.19044616818428,0.907154321670532,-0.475325018167496,0.0613151788711548,0.87767106294632,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.342850804328918,0.149466961622238,0.927422761917114,-0.327629566192627,0.327735483646393,0.886142432689667,-0.282756626605988,0.29180520772934,0.913727641105652,-0.297811299562454,0.113283053040504,0.947879433631897,-0.575288116931915,0.238595888018608,0.782378137111664,-0.537454009056091,0.309819668531418,0.784318149089813,-0.327629566192627,0.327735483646393,0.886142432689667,-0.342850804328918,0.149466961622238,0.927422761917114,-0.759655296802521,0.268870204687119,0.592142403125763,-0.724071383476257,0.254366755485535,0.641106963157654,-0.537454009056091,0.309819668531418,0.784318149089813,-0.575288116931915,0.238595888018608,0.782378137111664,-0.704671740531921,0.351113796234131,0.616568624973297,-0.631399393081665,0.364274203777313,0.684572160243988,-0.724071383476257,0.254366755485535,0.641106963157654,-0.759655296802521,0.268870204687119,0.592142403125763,-4.39817654296348e-07,0.573391735553741,0.819281220436096,-0.631399393081665,0.364274203777313,0.684572160243988,-0.704671740531921,0.351113796234131,0.616568624973297,-3.07718238445887e-07,0.537297904491425,0.843392491340637,5.00773921885411e-07,-0.279569029808044,0.96012556552887,-0.167769029736519,-0.276487588882446,0.946260094642639,-0.272893458604813,0.0898328945040703,0.957840979099274,4.89641479362035e-07,0.148217856884003,0.988954782485962,-0.167769029736519,-0.276487588882446,0.946260094642639,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.272893458604813,0.0898328945040703,0.957840979099274,-0.865438222885132,0.0103155253455043,0.500909566879272,-0.804547548294067,-0.0347260981798172,0.592872142791748, --0.864901125431061,0.0519203916192055,0.499249786138535,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.889110147953033,0.168669506907463,0.425480872392654,-0.881875574588776,0.0824774503707886,0.46421217918396,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.923866987228394,0.119930408895016,0.363437175750732,-0.937009155750275,0.036510843783617,0.34739163517952,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.822252154350281,-0.0876013040542603,0.562340915203094,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.475325018167496,0.0613151788711548,0.87767106294632,-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.628640651702881,-0.0453773140907288,0.776371002197266,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.282756626605988,0.29180520772934,0.913727641105652,-0.375234842300415,0.19044616818428,0.907154321670532,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.297811299562454,0.113283053040504,0.947879433631897,-0.448746651411057,0.331291884183884,0.829983174800873,-0.631399393081665,0.364274203777313,0.684572160243988,-4.39817654296348e-07,0.573391735553741,0.819281220436096,3.14968986003805e-07,0.497228413820267,0.867619633674622,-0.631399393081665,0.364274203777313,0.684572160243988,-0.448746651411057,0.331291884183884,0.829983174800873,-0.654485881328583,0.191099017858505,0.731525301933289,-0.724071383476257,0.254366755485535,0.641106963157654,-0.272893458604813,0.0898328945040703,0.957840979099274,-0.448746651411057,0.331291884183884,0.829983174800873,3.14968986003805e-07,0.497228413820267,0.867619633674622,4.89641479362035e-07,0.148217856884003,0.988954782485962,-0.654485881328583,0.191099017858505,0.731525301933289,-0.448746651411057,0.331291884183884,0.829983174800873,-0.272893458604813,0.0898328945040703,0.957840979099274, --0.445312976837158,-0.0220793094485998,0.895102679729462,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.274904072284698,-0.0619129203259945,0.959476172924042,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,-0.149707466363907,-0.694378197193146,0.703865468502045,-0.114588372409344,-0.91277539730072,0.392059504985809,5.75957983528497e-08,-0.917891561985016,0.396831274032593,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.833477973937988,-0.379801094532013,0.401329815387726,-0.73252934217453,-0.666742086410522,0.137316271662712,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.833477973937988,-0.379801094532013,0.401329815387726,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.73252934217453,-0.666742086410522,0.137316271662712, --0.939025700092316,-0.179976969957352,0.292983204126358,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.888481020927429,-0.454339206218719,-0.0646336674690247,-0.0893125608563423,-0.993775486946106,0.0665845423936844,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,5.75957983528497e-08,-0.917891561985016,0.396831274032593,-0.114588372409344,-0.91277539730072,0.392059504985809,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.73252934217453,-0.666742086410522,0.137316271662712,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.73252934217453,-0.666742086410522,0.137316271662712,-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.888481020927429,-0.454339206218719,-0.0646336674690247, --0.938031911849976,-0.247648358345032,-0.24241815507412,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.805711030960083,0.2922582924366,0.515184164047241,-0.964887261390686,0.141046762466431,0.221581339836121,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.737070262432098,0.114106595516205,0.666113376617432,-0.715191245079041,0.34563997387886,0.607482016086578,-0.805711030960083,0.2922582924366,0.515184164047241,-0.737070262432098,0.114106595516205,0.666113376617432,-0.671664535999298,0.138539746403694,0.727786839008331,-0.654905915260315,0.354517102241516,0.667394816875458,-0.715191245079041,0.34563997387886,0.607482016086578,-0.427030801773071,0.423026651144028,0.799182772636414,-0.654905915260315,0.354517102241516,0.667394816875458,-0.671664535999298,0.138539746403694,0.727786839008331,-0.440599650144577,0.181119993329048,0.879242658615112,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.891603469848633,0.423941075801849,0.159113600850105,-0.959196746349335,0.11716428399086,0.257321119308472,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.959196746349335,0.11716428399086,0.257321119308472,-0.891603469848633,0.423941075801849,0.159113600850105,-0.43017503619194,0.175570383667946,0.885508120059967,-0.67579048871994,0.246512785553932,0.694649934768677,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.56029999256134,0.112414121627808,0.820626080036163,-0.573613166809082,0.148596420884132,0.805535316467285,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.595667660236359,-0.0288831423968077,0.802711427211761, --0.606586515903473,0.0739869400858879,0.791567265987396,-0.56029999256134,0.112414121627808,0.820626080036163,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.606586515903473,0.0739869400858879,0.791567265987396,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.65614902973175,-0.210049211978912,0.724808752536774,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.65614902973175,-0.210049211978912,0.724808752536774,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.574376881122589,0.024629257619381,0.818220317363739,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.574376881122589,0.024629257619381,0.818220317363739,-0.461474388837814,0.0598364695906639,0.885133326053619, --0.429694414138794,-0.0799225717782974,0.899430394172668,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.461474388837814,0.0598364695906639,0.885133326053619,-0.344552010297775,0.080650620162487,0.935296356678009,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.344552010297775,0.080650620162487,0.935296356678009,-0.188998743891716,0.0825604945421219,0.978500485420227,-0.17985275387764,-0.0337658226490021,0.983113825321198,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.188998743891716,0.0825604945421219,0.978500485420227,-2.20459881461466e-07,0.0764520391821861,0.997073292732239,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,-0.17985275387764,-0.0337658226490021,0.983113825321198,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.455359011888504,-0.869095742702484,0.193185538053513, --0.10268546640873,-0.954509794712067,-0.27994042634964,-0.10268546640873,-0.954509794712067,-0.27994042634964,-0.455359011888504,-0.869095742702484,0.193185538053513,-0.290745884180069,-0.916568994522095,0.274532735347748,0.0937823057174683,-0.994987845420837,-0.034701157361269,0.0937823057174683,-0.994987845420837,-0.034701157361269,-0.290745884180069,-0.916568994522095,0.274532735347748,-0.206606820225716,-0.925182163715363,0.318357825279236,0.0773358419537544,-0.989174544811249,0.124711394309998,0.0773358419537544,-0.989174544811249,0.124711394309998,-0.206606820225716,-0.925182163715363,0.318357825279236,-0.119040817022324,-0.926869869232178,0.356007903814316,0.146457031369209,-0.953701436519623,0.262685596942902,0.327705442905426,-0.778845310211182,0.534798204898834,0.163064703345299,-0.776256680488586,0.608962655067444,0.0583279952406883,-0.422760516405106,0.904362499713898,0.16337314248085,-0.490520834922791,0.855978071689606,-0.622528612613678,0.171263828873634,0.763627350330353,-0.580475151538849,0.190929636359215,0.791577279567719,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.580475151538849,0.190929636359215,0.791577279567719,-0.622528612613678,0.171263828873634,0.763627350330353,-0.359327703714371,0.0683239921927452,0.930706918239594,-0.379682570695877,0.180394545197487,0.907358169555664,-0.379682570695877,0.180394545197487,0.907358169555664,-0.359327703714371,0.0683239921927452,0.930706918239594,0.16337314248085,-0.490520834922791,0.855978071689606,0.0583279952406883,-0.422760516405106,0.904362499713898,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.85067754983902,-0.436321139335632,-0.293209284543991, --0.85067754983902,-0.436321139335632,-0.293209284543991,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.725718796253204,-0.558084905147552,-0.40233501791954,-0.725718796253204,-0.558084905147552,-0.40233501791954,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.417807817459106,-0.774399518966675,-0.475123226642609,-0.417807817459106,-0.774399518966675,-0.475123226642609,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.10268546640873,-0.954509794712067,-0.27994042634964,-0.0116365421563387,-0.906590342521667,-0.421851187944412,-0.0116365421563387,-0.906590342521667,-0.421851187944412,-0.10268546640873,-0.954509794712067,-0.27994042634964,0.0937823057174683,-0.994987845420837,-0.034701157361269,0.33331972360611,-0.913330256938934,-0.233935281634331,0.33331972360611,-0.913330256938934,-0.233935281634331,0.0937823057174683,-0.994987845420837,-0.034701157361269,0.0773358419537544,-0.989174544811249,0.124711394309998,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.0773358419537544,-0.989174544811249,0.124711394309998,0.146457031369209,-0.953701436519623,0.262685596942902,0.432196915149689,-0.896145820617676,0.10064011067152,0.414653033018112,-0.778381586074829,0.471364915370941,0.327705442905426,-0.778845310211182,0.534798204898834,0.16337314248085,-0.490520834922791,0.855978071689606,0.144469812512398,-0.614519059658051,0.775560915470123,-0.359327703714371,0.0683239921927452,0.930706918239594,-0.412473618984222,-0.275771468877792,0.868225574493408,0.144469812512398,-0.614519059658051,0.775560915470123,0.16337314248085,-0.490520834922791,0.855978071689606,-0.622528612613678,0.171263828873634,0.763627350330353,-0.718403160572052,-0.0559572800993919,0.69337272644043,-0.412473618984222,-0.275771468877792,0.868225574493408,-0.359327703714371,0.0683239921927452,0.930706918239594,-0.718403160572052,-0.0559572800993919,0.69337272644043, --0.622528612613678,0.171263828873634,0.763627350330353,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.580475151538849,0.190929636359215,0.791577279567719,-0.514494359493256,0.13873003423214,0.846197128295898,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.514494359493256,0.13873003423214,0.846197128295898,-0.580475151538849,0.190929636359215,0.791577279567719,-0.379682570695877,0.180394545197487,0.907358169555664,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.0767984315752983,-0.458664745092392,0.885284543037415,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.379682570695877,0.180394545197487,0.907358169555664,0.0583279952406883,-0.422760516405106,0.904362499713898,0.163064703345299,-0.776256680488586,0.608962655067444,-0.119363613426685,-0.784659922122955,0.608326554298401,-0.0767984315752983,-0.458664745092392,0.885284543037415,0.0583279952406883,-0.422760516405106,0.904362499713898,-0.206606820225716,-0.925182163715363,0.318357825279236,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.119040817022324,-0.926869869232178,0.356007903814316,-0.290745884180069,-0.916568994522095,0.274532735347748,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.206606820225716,-0.925182163715363,0.318357825279236,-0.455359011888504,-0.869095742702484,0.193185538053513,-0.59878534078598,-0.646725535392761,0.472442775964737,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.290745884180069,-0.916568994522095,0.274532735347748,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.522891879081726,-0.60482919216156,0.60063773393631, --0.59878534078598,-0.646725535392761,0.472442775964737,-0.455359011888504,-0.869095742702484,0.193185538053513,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.34188374876976,-0.734208285808563,0.586560964584351,-0.522891879081726,-0.60482919216156,0.60063773393631,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.236640691757202,-0.924676179885864,0.298287123441696,-0.34188374876976,-0.734208285808563,0.586560964584351,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.236640691757202,-0.924676179885864,0.298287123441696,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.43048882484436,-0.478489696979523,0.765328049659729,-0.433876484632492,-0.198223978281021,0.878896176815033,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,-1.02184486650003e-07,-0.267218768596649,0.963635861873627,-0.433876484632492,-0.198223978281021,0.878896176815033,-0.43048882484436,-0.478489696979523,0.765328049659729,1.21897315352726e-07,-0.995536208152771,0.0943798571825027,1.51484229604648e-07,-0.925182104110718,0.379523366689682,-0.236640691757202,-0.924676179885864,0.298287123441696,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.375283002853394,-0.912665247917175,0.161879032850266,4.73723360983058e-07,-0.98859578371048,0.150593131780624, -1.21897315352726e-07,-0.995536208152771,0.0943798571825027,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.291261672973633,-0.854886770248413,0.429342925548553,1.41866473768459e-06,-0.879385590553284,0.476110249757767,4.73723360983058e-07,-0.98859578371048,0.150593131780624,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.444391429424286,0.23224301636219,0.865204930305481,-0.353732317686081,0.185769811272621,0.916713178157806,-0.514494359493256,0.13873003423214,0.846197128295898,-0.0779154822230339,0.00478862784802914,0.996948480606079,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.514494359493256,0.13873003423214,0.846197128295898,-0.353732317686081,0.185769811272621,0.916713178157806,-0.291261672973633,-0.854886770248413,0.429342925548553,-0.0779154822230339,0.00478862784802914,0.996948480606079,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,1.41866473768459e-06,-0.879385590553284,0.476110249757767,-0.0779154822230339,0.00478862784802914,0.996948480606079,-0.291261672973633,-0.854886770248413,0.429342925548553,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.522891879081726,-0.60482919216156,0.60063773393631,-0.34188374876976,-0.734208285808563,0.586560964584351,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,-0.43048882484436,-0.478489696979523,0.765328049659729,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.59878534078598,-0.646725535392761,0.472442775964737,-0.522891879081726,-0.60482919216156,0.60063773393631,-0.43048882484436,-0.478489696979523,0.765328049659729,-0.34188374876976,-0.734208285808563,0.586560964584351,-0.236640691757202,-0.924676179885864,0.298287123441696,1.51484229604648e-07,-0.925182104110718,0.379523366689682,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,-0.671664535999298,0.138539746403694,0.727786839008331,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.433876484632492,-0.198223978281021,0.878896176815033,-0.440599650144577,0.181119993329048,0.879242658615112, --1.02184486650003e-07,-0.267218768596649,0.963635861873627,-4.4512784569406e-08,0.194622755050659,0.980878174304962,-0.440599650144577,0.181119993329048,0.879242658615112,-0.433876484632492,-0.198223978281021,0.878896176815033,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.671664535999298,0.138539746403694,0.727786839008331,-0.737070262432098,0.114106595516205,0.666113376617432,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.59878534078598,-0.646725535392761,0.472442775964737,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.769342064857483,-0.367450475692749,0.522582828998566,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.737070262432098,0.114106595516205,0.666113376617432,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.769342064857483,-0.367450475692749,0.522582828998566,0.270438581705093,-0.908083260059357,0.319761961698532,0.327705442905426,-0.778845310211182,0.534798204898834,0.414653033018112,-0.778381586074829,0.471364915370941,0.46870344877243,-0.856486141681671,0.216214150190353,-0.0116021437570453,-0.911236345767975,0.411720335483551,0.163064703345299,-0.776256680488586,0.608962655067444,0.327705442905426,-0.778845310211182,0.534798204898834,0.270438581705093,-0.908083260059357,0.319761961698532,-0.353556722402573,-0.819659948348999,0.450727373361588, --0.119363613426685,-0.784659922122955,0.608326554298401,0.163064703345299,-0.776256680488586,0.608962655067444,-0.0116021437570453,-0.911236345767975,0.411720335483551,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.669928133487701,-0.618841350078583,0.410160571336746,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.769342064857483,-0.367450475692749,0.522582828998566,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.669928133487701,-0.618841350078583,0.410160571336746,-0.769342064857483,-0.367450475692749,0.522582828998566,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.119363613426685,-0.784659922122955,0.608326554298401,-0.353556722402573,-0.819659948348999,0.450727373361588,-0.852545082569122,-0.416288882493973,0.316022843122482,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.852545082569122,-0.416288882493973,0.316022843122482,-0.0767984315752983,-0.458664745092392,0.885284543037415,-0.119363613426685,-0.784659922122955,0.608326554298401,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.765477299690247,-0.35224324464798,0.53848797082901,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.959196746349335,0.11716428399086,0.257321119308472, --0.765477299690247,-0.35224324464798,0.53848797082901,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.0767984315752983,-0.458664745092392,0.885284543037415,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.481361955404282,0.151183098554611,0.863385438919067,-0.444391429424286,0.23224301636219,0.865204930305481,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.765477299690247,-0.35224324464798,0.53848797082901,-0.646522343158722,0.0286232419312,0.762357950210571,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.43017503619194,0.175570383667946,0.885508120059967,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.573613166809082,0.148596420884132,0.805535316467285,-0.67579048871994,0.246512785553932,0.694649934768677,-0.959196746349335,0.11716428399086,0.257321119308472,-0.67579048871994,0.246512785553932,0.694649934768677,-0.646522343158722,0.0286232419312,0.762357950210571,-0.765477299690247,-0.35224324464798,0.53848797082901,-0.646522343158722,0.0286232419312,0.762357950210571,-0.581030488014221,0.153055503964424,0.799360752105713,-0.481361955404282,0.151183098554611,0.863385438919067,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.581030488014221,0.153055503964424,0.799360752105713,-0.646522343158722,0.0286232419312,0.762357950210571,-0.67579048871994,0.246512785553932,0.694649934768677,-0.573613166809082,0.148596420884132,0.805535316467285,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.964887261390686,0.141046762466431,0.221581339836121,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.852545082569122,-0.416288882493973,0.316022843122482, --0.669928133487701,-0.618841350078583,0.410160571336746,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.852545082569122,-0.416288882493973,0.316022843122482,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.669928133487701,-0.618841350078583,0.410160571336746,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.353556722402573,-0.819659948348999,0.450727373361588,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.353556722402573,-0.819659948348999,0.450727373361588,-0.0116021437570453,-0.911236345767975,0.411720335483551,-0.119040817022324,-0.926869869232178,0.356007903814316,-0.119040817022324,-0.926869869232178,0.356007903814316,-0.0116021437570453,-0.911236345767975,0.411720335483551,0.270438581705093,-0.908083260059357,0.319761961698532,0.146457031369209,-0.953701436519623,0.262685596942902,0.146457031369209,-0.953701436519623,0.262685596942902,0.270438581705093,-0.908083260059357,0.319761961698532,0.46870344877243,-0.856486141681671,0.216214150190353,0.432196915149689,-0.896145820617676,0.10064011067152,-3.07718238445887e-07,0.537297904491425,0.843392491340637,-0.704671740531921,0.351113796234131,0.616568624973297,-0.722416937351227,0.37959811091423,0.577943861484528,1.07731224829877e-07,0.511693179607391,0.859168291091919,-0.704671740531921,0.351113796234131,0.616568624973297,-0.759655296802521,0.268870204687119,0.592142403125763,-0.825799286365509,0.314353853464127,0.468227744102478,-0.722416937351227,0.37959811091423,0.577943861484528,-0.759655296802521,0.268870204687119,0.592142403125763,-0.575288116931915,0.238595888018608,0.782378137111664,-0.708128273487091,0.24351242184639,0.662763893604279,-0.825799286365509,0.314353853464127,0.468227744102478,-0.537846565246582,0.524820148944855,0.659761250019073,-0.436625689268112,0.575781047344208,0.691255569458008,2.69245763462322e-08,0.599188029766083,0.800608277320862,6.63047643456594e-08,0.56467217206955,0.825315177440643,-0.74644410610199,0.517271161079407,0.418630719184875, --0.679213166236877,0.566016376018524,0.467220425605774,-0.436625689268112,0.575781047344208,0.691255569458008,-0.537846565246582,0.524820148944855,0.659761250019073,-0.770220935344696,0.564942955970764,0.295971572399139,-0.68751060962677,0.627668857574463,0.365186244249344,-0.679213166236877,0.566016376018524,0.467220425605774,-0.74644410610199,0.517271161079407,0.418630719184875,-0.609346807003021,0.463627010583878,0.643231213092804,-0.537846565246582,0.524820148944855,0.659761250019073,6.63047643456594e-08,0.56467217206955,0.825315177440643,1.66158670822369e-07,0.537752687931061,0.843102693557739,-0.809419929981232,0.419161200523376,0.411270350217819,-0.74644410610199,0.517271161079407,0.418630719184875,-0.537846565246582,0.524820148944855,0.659761250019073,-0.609346807003021,0.463627010583878,0.643231213092804,-0.838650524616241,0.449791878461838,0.307168453931808,-0.770220935344696,0.564942955970764,0.295971572399139,-0.74644410610199,0.517271161079407,0.418630719184875,-0.809419929981232,0.419161200523376,0.411270350217819,-0.674133718013763,0.417697995901108,0.609156966209412,-0.609346807003021,0.463627010583878,0.643231213092804,1.66158670822369e-07,0.537752687931061,0.843102693557739,2.19163851511439e-07,0.528520941734314,0.848920106887817,-0.841250956058502,0.345796346664429,0.415598124265671,-0.809419929981232,0.419161200523376,0.411270350217819,-0.609346807003021,0.463627010583878,0.643231213092804,-0.674133718013763,0.417697995901108,0.609156966209412,-0.853539526462555,0.35643681883812,0.380030393600464,-0.838650524616241,0.449791878461838,0.307168453931808,-0.809419929981232,0.419161200523376,0.411270350217819,-0.841250956058502,0.345796346664429,0.415598124265671,-0.436625689268112,0.575781047344208,0.691255569458008,-0.400272279977798,0.5667445063591,0.720126926898956,1.62401178727123e-07,0.593734920024872,0.804660618305206,2.69245763462322e-08,0.599188029766083,0.800608277320862,-0.679213166236877,0.566016376018524,0.467220425605774,-0.648093163967133,0.533102750778198,0.543853580951691,-0.400272279977798,0.5667445063591,0.720126926898956, --0.436625689268112,0.575781047344208,0.691255569458008,-0.68751060962677,0.627668857574463,0.365186244249344,-0.67475026845932,0.570691823959351,0.467998743057251,-0.648093163967133,0.533102750778198,0.543853580951691,-0.679213166236877,0.566016376018524,0.467220425605774,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.822638332843781,0.344727516174316,-0.452138453722,-0.886472940444946,0.409068793058395,0.216398671269417,-0.891603469848633,0.423941075801849,0.159113600850105,-0.822638332843781,0.344727516174316,-0.452138453722,-0.773216962814331,0.455902487039566,-0.440781623125076,-0.894166827201843,0.312801986932755,0.320344358682632,-0.886472940444946,0.409068793058395,0.216398671269417,-0.773216962814331,0.455902487039566,-0.440781623125076,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.84546160697937,0.4212307035923,0.328267097473145,-0.894166827201843,0.312801986932755,0.320344358682632,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.775935232639313,0.592567026615143,0.216307118535042,-0.84546160697937,0.4212307035923,0.328267097473145,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.571992337703705,0.750737130641937,0.330482214689255,-0.657712161540985,0.706774055957794,0.26054772734642,-0.775935232639313,0.592567026615143,0.216307118535042,-0.571992337703705,0.750737130641937,0.330482214689255,-0.68751060962677,0.627668857574463,0.365186244249344,-0.770220935344696,0.564942955970764,0.295971572399139,-0.657712161540985,0.706774055957794,0.26054772734642,-0.571992337703705,0.750737130641937,0.330482214689255,-0.626188158988953,0.621568202972412,0.470681846141815,-0.67475026845932,0.570691823959351,0.467998743057251,-0.68751060962677,0.627668857574463,0.365186244249344,-0.649191617965698,0.707069039344788,-0.2803635597229,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.773216962814331,0.455902487039566,-0.440781623125076,-0.772835731506348,0.523139655590057,-0.359235018491745,-0.772835731506348,0.523139655590057,-0.359235018491745, --0.773216962814331,0.455902487039566,-0.440781623125076,-0.822638332843781,0.344727516174316,-0.452138453722,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.822638332843781,0.344727516174316,-0.452138453722,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.964887261390686,0.141046762466431,0.221581339836121,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.772835731506348,0.523139655590057,-0.359235018491745,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.649191617965698,0.707069039344788,-0.2803635597229,-0.772835731506348,0.523139655590057,-0.359235018491745,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.649191617965698,0.707069039344788,-0.2803635597229,-0.574077785015106,0.780576527118683,0.247254893183708,-0.571992337703705,0.750737130641937,0.330482214689255,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.626188158988953,0.621568202972412,0.470681846141815,-0.571992337703705,0.750737130641937,0.330482214689255,-0.574077785015106,0.780576527118683,0.247254893183708,-0.698592782020569,0.632910072803497,0.333756059408188,-0.839187562465668,0.434261083602905,0.327385753393173,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.964887261390686,0.141046762466431,0.221581339836121,-0.805711030960083,0.2922582924366,0.515184164047241,-0.400272279977798,0.5667445063591,0.720126926898956,-0.427030801773071,0.423026651144028,0.799182772636414, --9.54276870857029e-08,0.46919858455658,0.883092641830444,1.62401178727123e-07,0.593734920024872,0.804660618305206,-0.648093163967133,0.533102750778198,0.543853580951691,-0.654905915260315,0.354517102241516,0.667394816875458,-0.427030801773071,0.423026651144028,0.799182772636414,-0.400272279977798,0.5667445063591,0.720126926898956,-0.67475026845932,0.570691823959351,0.467998743057251,-0.715191245079041,0.34563997387886,0.607482016086578,-0.654905915260315,0.354517102241516,0.667394816875458,-0.648093163967133,0.533102750778198,0.543853580951691,-0.626188158988953,0.621568202972412,0.470681846141815,-0.805711030960083,0.2922582924366,0.515184164047241,-0.715191245079041,0.34563997387886,0.607482016086578,-0.67475026845932,0.570691823959351,0.467998743057251,-0.839187562465668,0.434261083602905,0.327385753393173,-0.805711030960083,0.2922582924366,0.515184164047241,-0.626188158988953,0.621568202972412,0.470681846141815,-0.698592782020569,0.632910072803497,0.333756059408188,-0.698592782020569,0.632910072803497,0.333756059408188,-0.574077785015106,0.780576527118683,0.247254893183708,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.839187562465668,0.434261083602905,0.327385753393173,-0.698592782020569,0.632910072803497,0.333756059408188,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.657712161540985,0.706774055957794,0.26054772734642,-0.770220935344696,0.564942955970764,0.295971572399139,-0.838650524616241,0.449791878461838,0.307168453931808,-0.775935232639313,0.592567026615143,0.216307118535042,-0.838650524616241,0.449791878461838,0.307168453931808,-0.853539526462555,0.35643681883812,0.380030393600464,-0.84546160697937,0.4212307035923,0.328267097473145,-0.775935232639313,0.592567026615143,0.216307118535042,-0.886472940444946,0.409068793058395,0.216398671269417,-0.251341193914413,0.0682773515582085,0.965487360954285,-0.43017503619194,0.175570383667946,0.885508120059967,-0.891603469848633,0.423941075801849,0.159113600850105, --0.894166827201843,0.312801986932755,0.320344358682632,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.251341193914413,0.0682773515582085,0.965487360954285,-0.886472940444946,0.409068793058395,0.216398671269417,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.894166827201843,0.312801986932755,0.320344358682632,-0.84546160697937,0.4212307035923,0.328267097473145,-0.530382573604584,0.125614494085312,0.838400483131409,-0.530382573604584,0.125614494085312,0.838400483131409,-0.84546160697937,0.4212307035923,0.328267097473145,-0.853539526462555,0.35643681883812,0.380030393600464,-0.708128273487091,0.24351242184639,0.662763893604279,-0.722416937351227,0.37959811091423,0.577943861484528,-0.674133718013763,0.417697995901108,0.609156966209412,2.19163851511439e-07,0.528520941734314,0.848920106887817,1.07731224829877e-07,0.511693179607391,0.859168291091919,-0.825799286365509,0.314353853464127,0.468227744102478,-0.841250956058502,0.345796346664429,0.415598124265671,-0.674133718013763,0.417697995901108,0.609156966209412,-0.722416937351227,0.37959811091423,0.577943861484528,-0.708128273487091,0.24351242184639,0.662763893604279,-0.853539526462555,0.35643681883812,0.380030393600464,-0.841250956058502,0.345796346664429,0.415598124265671,-0.825799286365509,0.314353853464127,0.468227744102478,-0.342850804328918,0.149466961622238,0.927422761917114,-0.530382573604584,0.125614494085312,0.838400483131409,-0.708128273487091,0.24351242184639,0.662763893604279,-0.575288116931915,0.238595888018608,0.782378137111664,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.530382573604584,0.125614494085312,0.838400483131409,-0.342850804328918,0.149466961622238,0.927422761917114,-0.305485665798187,0.0270282775163651,0.951813042163849,-0.251341193914413,0.0682773515582085,0.965487360954285,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.43017503619194,0.175570383667946,0.885508120059967,-0.251341193914413,0.0682773515582085,0.965487360954285, --0.305485665798187,0.0270282775163651,0.951813042163849,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.297811299562454,0.113283053040504,0.947879433631897,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.342850804328918,0.149466961622238,0.927422761917114,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.305485665798187,0.0270282775163651,0.951813042163849,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.305485665798187,0.0270282775163651,0.951813042163849,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.297811299562454,0.113283053040504,0.947879433631897,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.51875102519989,-0.078107014298439,0.851349949836731,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.51875102519989,-0.078107014298439,0.851349949836731,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.641082942485809,-0.126405611634254,0.756990253925323,-0.51875102519989,-0.078107014298439,0.851349949836731,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.51875102519989,-0.078107014298439,0.851349949836731, --0.641082942485809,-0.126405611634254,0.756990253925323,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.641082942485809,-0.126405611634254,0.756990253925323,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.937622249126434,-0.122151508927345,0.325489401817322,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.937622249126434,-0.122151508927345,0.325489401817322,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.628640651702881,-0.0453773140907288,0.776371002197266,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.628640651702881,-0.0453773140907288,0.776371002197266,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.822252154350281,-0.0876013040542603,0.562340915203094,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.937622249126434,-0.122151508927345,0.325489401817322,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.822252154350281,-0.0876013040542603,0.562340915203094, --0.937622249126434,-0.122151508927345,0.325489401817322,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.937009155750275,0.036510843783617,0.34739163517952,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.641082942485809,-0.126405611634254,0.756990253925323,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.903943419456482,-0.244961842894554,0.350542455911636,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.903943419456482,-0.244961842894554,0.350542455911636, --0.910429537296295,-0.203642666339874,0.360066324472427,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.830139756202698,-0.252047330141068,0.497332960367203,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.833477973937988,-0.379801094532013,0.401329815387726, --0.830139756202698,-0.252047330141068,0.497332960367203,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.830139756202698,-0.252047330141068,0.497332960367203,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.830139756202698,-0.252047330141068,0.497332960367203,-0.833477973937988,-0.379801094532013,0.401329815387726,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.719575703144073,-0.229525789618492,0.655384302139282,-0.65614902973175,-0.210049211978912,0.724808752536774,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.719575703144073,-0.229525789618492,0.655384302139282,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.65614902973175,-0.210049211978912,0.724808752536774, --0.719575703144073,-0.229525789618492,0.655384302139282,-0.719575703144073,-0.229525789618492,0.655384302139282,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.764699339866638,-0.238976582884789,0.598435640335083,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.764699339866638,-0.238976582884789,0.598435640335083,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.635141670703888,-0.0666266232728958,0.76951676607132,-0.574376881122589,0.024629257619381,0.818220317363739,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.764699339866638,-0.238976582884789,0.598435640335083,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.635141670703888,-0.0666266232728958,0.76951676607132, --0.764699339866638,-0.238976582884789,0.598435640335083,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.47883415222168,-0.613580465316772,0.627882838249207,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.172015964984894,-0.984178066253662,0.042475625872612,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.313353955745697,-0.66547167301178,0.677463471889496,-0.47883415222168,-0.613580465316772,0.627882838249207,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.344552010297775,0.080650620162487,0.935296356678009,-0.461474388837814,0.0598364695906639,0.885133326053619,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.635141670703888,-0.0666266232728958,0.76951676607132,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.461474388837814,0.0598364695906639,0.885133326053619,-0.574376881122589,0.024629257619381,0.818220317363739,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.635141670703888,-0.0666266232728958,0.76951676607132,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.47883415222168,-0.613580465316772,0.627882838249207, --0.313353955745697,-0.66547167301178,0.677463471889496,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.47883415222168,-0.613580465316772,0.627882838249207,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.172015964984894,-0.984178066253662,0.042475625872612,-0.0893125608563423,-0.993775486946106,0.0665845423936844,-0.114588372409344,-0.91277539730072,0.392059504985809,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.149707466363907,-0.694378197193146,0.703865468502045,-0.313353955745697,-0.66547167301178,0.677463471889496,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.114588372409344,-0.91277539730072,0.392059504985809,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.203462496399879,-0.0831983089447021,0.975541472434998,-0.188998743891716,0.0825604945421219,0.978500485420227,-0.344552010297775,0.080650620162487,0.935296356678009,-0.203462496399879,-0.0831983089447021,0.975541472434998,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.196311458945274,-0.379952639341354,0.903934597969055,-0.196311458945274,-0.379952639341354,0.903934597969055,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.313353955745697,-0.66547167301178,0.677463471889496,-0.149707466363907,-0.694378197193146,0.703865468502045,-0.203462496399879,-0.0831983089447021,0.975541472434998,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,-2.20459881461466e-07,0.0764520391821861,0.997073292732239,-0.188998743891716,0.0825604945421219,0.978500485420227,-0.196311458945274,-0.379952639341354,0.903934597969055,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,-0.203462496399879,-0.0831983089447021,0.975541472434998,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-0.196311458945274,-0.379952639341354,0.903934597969055, --0.149707466363907,-0.694378197193146,0.703865468502045,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.888481020927429,-0.454339206218719,-0.0646336674690247,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.939025700092316,-0.179976969957352,0.292983204126358,-0.888481020927429,-0.454339206218719,-0.0646336674690247, --0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.926973938941956,-0.14516507089138,0.345899432897568,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.910429537296295,-0.203642666339874,0.360066324472427,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.926973938941956,-0.14516507089138,0.345899432897568,-0.939025700092316,-0.179976969957352,0.292983204126358,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.936245381832123,-0.177436903119087,0.303250223398209,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.926973938941956,-0.14516507089138,0.345899432897568,-0.903943419456482,-0.244961842894554,0.350542455911636,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.910429537296295,-0.203642666339874,0.360066324472427,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.903943419456482,-0.244961842894554,0.350542455911636,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.936245381832123,-0.177436903119087,0.303250223398209,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.910429537296295,-0.203642666339874,0.360066324472427,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.939025700092316,-0.179976969957352,0.292983204126358,-0.926973938941956,-0.14516507089138,0.345899432897568, --0.936245381832123,-0.177436903119087,0.303250223398209,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.936245381832123,-0.177436903119087,0.303250223398209,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.14347305893898,-0.928959310054779,0.341247856616974,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.0525912828743458,-0.641458690166473,0.765352845191956, -0.0295972488820553,-0.913982093334198,0.404673606157303,-0.14347305893898,-0.928959310054779,0.341247856616974,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.122217893600464,-0.506918251514435,0.853285849094391,0.106425814330578,-0.897813558578491,0.427322268486023,0.0295972488820553,-0.913982093334198,0.404673606157303,-0.0525912828743458,-0.641458690166473,0.765352845191956,-0.296234369277954,-0.436655968427658,0.849456787109375,0.118810221552849,-0.894129753112793,0.431759297847748,0.106425814330578,-0.897813558578491,0.427322268486023,-0.122217893600464,-0.506918251514435,0.853285849094391,-0.362703084945679,-0.449246019124985,0.816470742225647,0.0746587365865707,-0.878905773162842,0.471116334199905,0.118810221552849,-0.894129753112793,0.431759297847748,-0.296234369277954,-0.436655968427658,0.849456787109375,-0.369815438985825,-0.479616552591324,0.795741438865662,0.173959538340569,-0.84886234998703,0.499170124530792,0.0746587365865707,-0.878905773162842,0.471116334199905,-0.362703084945679,-0.449246019124985,0.816470742225647,-0.368978589773178,-0.517406225204468,0.772104680538177,0.345366597175598,-0.783761382102966,0.516178250312805,0.173959538340569,-0.84886234998703,0.499170124530792,-0.369815438985825,-0.479616552591324,0.795741438865662,-0.321326851844788,-0.594967842102051,0.736724138259888,0.318178653717041,-0.851679027080536,0.416419565677643,0.345366597175598,-0.783761382102966,0.516178250312805,-0.368978589773178,-0.517406225204468,0.772104680538177,-0.356160789728165,-0.327515810728073,0.875147342681885,0.340116590261459,-0.61156165599823,0.714361965656281,0.318178653717041,-0.851679027080536,0.416419565677643,-0.321326851844788,-0.594967842102051,0.736724138259888,-0.217264279723167,0.573543012142181,0.789838373661041,0.340116590261459,-0.61156165599823,0.714361965656281,-0.356160789728165,-0.327515810728073,0.875147342681885,-0.487023383378983,0.129526227712631,0.86373096704483,-0.316639393568039,0.610971570014954,0.725570917129517,-0.217264279723167,0.573543012142181,0.789838373661041, --0.487023383378983,0.129526227712631,0.86373096704483,-0.578743577003479,0.225211217999458,0.783795773983002,-0.395117282867432,0.556619703769684,0.730792045593262,-0.316639393568039,0.610971570014954,0.725570917129517,-0.578743577003479,0.225211217999458,0.783795773983002,-0.616995096206665,0.248675897717476,0.746644020080566,-0.31505212187767,0.551100432872772,0.772677481174469,-0.395117282867432,0.556619703769684,0.730792045593262,-0.616995096206665,0.248675897717476,0.746644020080566,-0.552580296993256,0.248522356152534,0.795544862747192,-0.269040018320084,0.544349014759064,0.794544875621796,-0.31505212187767,0.551100432872772,0.772677481174469,-0.552580296993256,0.248522356152534,0.795544862747192,-0.43378084897995,0.253316581249237,0.864676177501678,-0.16955578327179,0.51304018497467,0.841451466083527,-0.269040018320084,0.544349014759064,0.794544875621796,-0.43378084897995,0.253316581249237,0.864676177501678,-0.24457274377346,0.23941496014595,0.939608812332153,-0.0434524118900299,0.491198420524597,0.8699631690979,-0.16955578327179,0.51304018497467,0.841451466083527,-0.24457274377346,0.23941496014595,0.939608812332153,-0.0322061702609062,0.215598866343498,0.975950837135315,0.0423764511942863,0.502885341644287,0.863313615322113,-0.0434524118900299,0.491198420524597,0.8699631690979,-0.0322061702609062,0.215598866343498,0.975950837135315,0.0972790643572807,0.225614964962006,0.969347536563873,0.141706243157387,0.545924186706543,0.825763881206512,0.0423764511942863,0.502885341644287,0.863313615322113,0.0972790643572807,0.225614964962006,0.969347536563873,0.20521105825901,0.303497523069382,0.930471777915955,0.141706243157387,0.545924186706543,0.825763881206512,0.20521105825901,0.303497523069382,0.930471777915955,0.152036800980568,0.404537260532379,0.901795029640198,0.113456606864929,0.663541316986084,0.739486753940582,-0.235429763793945,0.630609333515167,0.739530086517334,0.113456606864929,0.663541316986084,0.739486753940582,0.152036800980568,0.404537260532379,0.901795029640198,-0.208823442459106,0.391514956951141,0.89616334438324, --0.808505594730377,0.0228019841015339,0.588046431541443,-0.235429763793945,0.630609333515167,0.739530086517334,-0.208823442459106,0.391514956951141,0.89616334438324,-0.622444152832031,-0.0568815171718597,0.780594408512115,-0.808505594730377,0.0228019841015339,0.588046431541443,-0.622444152832031,-0.0568815171718597,0.780594408512115,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.373429536819458,0.295800745487213,0.87923389673233,-0.475002586841583,0.28080803155899,0.833978116512299,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.633827924728394,0.0169978868216276,0.773287355899811,0.00895701535046101,0.33652463555336,0.941632032394409,-0.193759649991989,0.343486160039902,0.918952941894531,-0.475002586841583,0.28080803155899,0.833978116512299,-0.373429536819458,0.295800745487213,0.87923389673233,0.126515954732895,0.184289872646332,0.974695205688477,-0.0328555330634117,0.200340315699577,0.979175269603729,-0.193759649991989,0.343486160039902,0.918952941894531,0.00895701535046101,0.33652463555336,0.941632032394409,0.0805548876523972,0.00170732999686152,0.996748685836792,-0.0129828387871385,0.0295491050928831,0.999478995800018,-0.0328555330634117,0.200340315699577,0.979175269603729,0.126515954732895,0.184289872646332,0.974695205688477,-0.0483344346284866,-0.126977697014809,0.990727245807648,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.0129828387871385,0.0295491050928831,0.999478995800018,0.0805548876523972,0.00170732999686152,0.996748685836792,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.0483344346284866,-0.126977697014809,0.990727245807648,-0.501552581787109,-0.0615811087191105,0.862932622432709, --0.4957415163517,-0.0890969559550285,0.863887846469879,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.572860062122345,0.00523659866303205,0.819636464118958,-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.501552581787109,-0.0615811087191105,0.862932622432709,-0.603928744792938,0.156121075153351,0.781598567962646,-0.602928280830383,0.102335728704929,0.791204690933228,-0.572860062122345,0.00523659866303205,0.819636464118958,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.577003598213196,0.190486997365952,0.794217646121979,-0.603891611099243,0.107950478792191,0.789722442626953,-0.602928280830383,0.102335728704929,0.791204690933228,-0.603928744792938,0.156121075153351,0.781598567962646,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.603891611099243,0.107950478792191,0.789722442626953,-0.577003598213196,0.190486997365952,0.794217646121979,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.510501742362976,-0.163286864757538,0.844230651855469,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.493350982666016,-0.292393028736115,0.81921374797821,-0.633827924728394,0.0169978868216276,0.773287355899811,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.510501742362976,-0.163286864757538,0.844230651855469,-0.493350982666016,-0.292393028736115,0.81921374797821,-0.107691086828709,-0.189101710915565,0.97603440284729,-0.0507670193910599,-0.311318546533585,0.948948562145233,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.0507670193910599,-0.311318546533585,0.948948562145233, --0.107691086828709,-0.189101710915565,0.97603440284729,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.15942145884037,0.201591685414314,0.966408610343933,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.15942145884037,0.201591685414314,0.966408610343933,-0.313454002141953,0.228585183620453,0.921680867671967,-0.430363267660141,-0.0405699424445629,0.901743590831757,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.313454002141953,0.228585183620453,0.921680867671967,-0.465388923883438,0.182730257511139,0.866038501262665,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.430363267660141,-0.0405699424445629,0.901743590831757,-0.465388923883438,0.182730257511139,0.866038501262665,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.513725578784943,-0.281165987253189,0.810575008392334,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.513725578784943,-0.281165987253189,0.810575008392334,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.394751042127609,-0.459863156080246,0.795422732830048,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.647953748703003,-0.140468388795853,0.748615086078644,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.394751042127609,-0.459863156080246,0.795422732830048, --0.647953748703003,-0.140468388795853,0.748615086078644,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.622288882732391,-0.106440320611,0.775517344474792,-0.654485881328583,0.191099017858505,0.731525301933289,-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.622288882732391,-0.106440320611,0.775517344474792,-0.699978470802307,0.105198852717876,0.706373274326324,-0.635390877723694,0.277111351490021,0.72075492143631,-0.724071383476257,0.254366755485535,0.641106963157654,-0.654485881328583,0.191099017858505,0.731525301933289,-0.699978470802307,0.105198852717876,0.706373274326324,-0.537454009056091,0.309819668531418,0.784318149089813,-0.724071383476257,0.254366755485535,0.641106963157654,-0.635390877723694,0.277111351490021,0.72075492143631,-0.483116298913956,0.378075420856476,0.789719998836517,-0.327629566192627,0.327735483646393,0.886142432689667,-0.537454009056091,0.309819668531418,0.784318149089813,-0.483116298913956,0.378075420856476,0.789719998836517,-0.295458763837814,0.403195053339005,0.866105020046234,-0.282756626605988,0.29180520772934,0.913727641105652,-0.327629566192627,0.327735483646393,0.886142432689667,-0.295458763837814,0.403195053339005,0.866105020046234,-0.241419926285744,0.347718894481659,0.905984461307526,-0.375234842300415,0.19044616818428,0.907154321670532,-0.282756626605988,0.29180520772934,0.913727641105652,-0.241419926285744,0.347718894481659,0.905984461307526,-0.300742030143738,0.219192281365395,0.928175091743469,-0.475325018167496,0.0613151788711548,0.87767106294632, --0.375234842300415,0.19044616818428,0.907154321670532,-0.300742030143738,0.219192281365395,0.928175091743469,-0.386911332607269,0.0745889842510223,0.919095277786255,-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.475325018167496,0.0613151788711548,0.87767106294632,-0.386911332607269,0.0745889842510223,0.919095277786255,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.906198382377625,0.170440211892128,0.386981278657913,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.891718804836273,0.173081874847412,0.418186724185944,-0.889110147953033,0.168669506907463,0.425480872392654,-0.906198382377625,0.170440211892128,0.386981278657913,-0.891718804836273,0.173081874847412,0.418186724185944,-0.875361323356628,0.225780814886093,0.42751082777977,-0.873296499252319,0.179054200649261,0.45309242606163,-0.881875574588776,0.0824774503707886,0.46421217918396,-0.889110147953033,0.168669506907463,0.425480872392654,-0.875361323356628,0.225780814886093,0.42751082777977,-0.844377338886261,0.131901383399963,0.519258081912994,-0.865438222885132,0.0103155253455043,0.500909566879272, --0.881875574588776,0.0824774503707886,0.46421217918396,-0.873296499252319,0.179054200649261,0.45309242606163,-0.76689887046814,0.116679958999157,0.631071984767914,-0.804547548294067,-0.0347260981798172,0.592872142791748,-0.865438222885132,0.0103155253455043,0.500909566879272,-0.844377338886261,0.131901383399963,0.519258081912994,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.804547548294067,-0.0347260981798172,0.592872142791748,-0.76689887046814,0.116679958999157,0.631071984767914,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.190550938248634,-0.252945214509964,0.948529958724976,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.15942145884037,0.201591685414314,0.966408610343933,-0.15942145884037,0.201591685414314,0.966408610343933,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.369711548089981,0.146718040108681,0.917489588260651,-0.313454002141953,0.228585183620453,0.921680867671967,-0.313454002141953,0.228585183620453,0.921680867671967,-0.369711548089981,0.146718040108681,0.917489588260651,-0.526602387428284,0.183498844504356,0.830071091651917, --0.465388923883438,0.182730257511139,0.866038501262665,-0.465388923883438,0.182730257511139,0.866038501262665,-0.526602387428284,0.183498844504356,0.830071091651917,-0.700298309326172,0.131053596735001,0.701717376708984,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.700298309326172,0.131053596735001,0.701717376708984,-0.76854807138443,0.109590314328671,0.630336225032806,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.76854807138443,0.109590314328671,0.630336225032806,-0.807716190814972,0.132200345396996,0.574558556079865,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.807716190814972,0.132200345396996,0.574558556079865,-0.82001256942749,0.130813300609589,0.557195842266083,-0.647953748703003,-0.140468388795853,0.748615086078644,-0.647953748703003,-0.140468388795853,0.748615086078644,-0.82001256942749,0.130813300609589,0.557195842266083,-0.795642733573914,0.111424118280411,0.595430314540863,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.795642733573914,0.111424118280411,0.595430314540863,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.603891611099243,0.107950478792191,0.789722442626953,-0.603891611099243,0.107950478792191,0.789722442626953,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.602928280830383,0.102335728704929,0.791204690933228,-0.602928280830383,0.102335728704929,0.791204690933228,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.572860062122345,0.00523659866303205,0.819636464118958, --0.572860062122345,0.00523659866303205,0.819636464118958,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.32172629237175,0.0042048622854054,0.946823418140411,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.32172629237175,0.0042048622854054,0.946823418140411,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.149873554706573,0.228948622941971,0.96183180809021,-0.0129828387871385,0.0295491050928831,0.999478995800018,-0.0129828387871385,0.0295491050928831,0.999478995800018,-0.149873554706573,0.228948622941971,0.96183180809021,-0.193298250436783,0.311735332012177,0.930299341678619,-0.0328555330634117,0.200340315699577,0.979175269603729,-0.0328555330634117,0.200340315699577,0.979175269603729,-0.193298250436783,0.311735332012177,0.930299341678619,-0.390417993068695,0.353622496128082,0.850014686584473,-0.193759649991989,0.343486160039902,0.918952941894531,-0.193759649991989,0.343486160039902,0.918952941894531,-0.390417993068695,0.353622496128082,0.850014686584473,-0.546429932117462,0.280326753854752,0.789196491241455,-0.475002586841583,0.28080803155899,0.833978116512299,-0.475002586841583,0.28080803155899,0.833978116512299,-0.546429932117462,0.280326753854752,0.789196491241455,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.579371690750122,-0.130315348505974,0.804578363895416,-0.510501742362976,-0.163286864757538,0.844230651855469,-0.510501742362976,-0.163286864757538,0.844230651855469, --0.579371690750122,-0.130315348505974,0.804578363895416,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.107691086828709,-0.189101710915565,0.97603440284729,-0.107691086828709,-0.189101710915565,0.97603440284729,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.257303357124329,-0.354579329490662,0.898926258087158,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.190550938248634,-0.252945214509964,0.948529958724976,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.257303357124329,-0.354579329490662,0.898926258087158,3.63054823537823e-07,0.15388910472393,0.988088130950928,-0.0126635609194636,0.124740079045296,0.992108643054962,-0.0868286490440369,-0.237600758671761,0.967474400997162,4.9137469204652e-07,-0.177478060126305,0.984124779701233,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.0868286490440369,-0.237600758671761,0.967474400997162,-0.0126635609194636,0.124740079045296,0.992108643054962,-0.0605999082326889,0.14594429731369,0.987435102462769,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.0605999082326889,0.14594429731369,0.987435102462769,-0.127829894423485,0.190948218107224,0.973241090774536,-0.274904072284698,-0.0619129203259945,0.959476172924042,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.127829894423485,0.190948218107224,0.973241090774536,-0.22443599998951,0.214606165885925,0.950564444065094,-0.353910177946091,-0.00241770781576633,0.935276389122009,-0.274904072284698,-0.0619129203259945,0.959476172924042,-0.22443599998951,0.214606165885925,0.950564444065094,-0.340124756097794,0.232896119356155,0.911084234714508,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.353910177946091,-0.00241770781576633,0.935276389122009, --0.340124756097794,0.232896119356155,0.911084234714508,-0.470622479915619,0.244484186172485,0.847786426544189,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.470622479915619,0.244484186172485,0.847786426544189,-0.605829894542694,0.242477968335152,0.757743120193481,-0.569105207920074,0.102337874472141,0.815871477127075,-0.569105207920074,0.102337874472141,0.815871477127075,-0.605829894542694,0.242477968335152,0.757743120193481,-0.787121653556824,0.192846238613129,0.585875272750854,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.787121653556824,0.192846238613129,0.585875272750854,-0.911959171295166,0.11306544393301,0.394393980503082,-0.864901125431061,0.0519203916192055,0.499249786138535,-0.864901125431061,0.0519203916192055,0.499249786138535,-0.911959171295166,0.11306544393301,0.394393980503082,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.923866987228394,0.119930408895016,0.363437175750732,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.935607731342316,0.127907067537308,0.329056292772293,-0.923866987228394,0.119930408895016,0.363437175750732,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.937009155750275,0.036510843783617,0.34739163517952,-0.935607731342316,0.127907067537308,0.329056292772293,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.693493843078613,0.0652938112616539,0.717497706413269, --0.728446364402771,0.0299060400575399,0.684449791908264,-0.693493843078613,0.0652938112616539,0.717497706413269,-0.506538450717926,0.35728594660759,0.784707248210907,-0.670880019664764,0.222317904233932,0.707456648349762,-0.728446364402771,0.0299060400575399,0.684449791908264,-0.506538450717926,0.35728594660759,0.784707248210907,-0.303445160388947,0.533744871616364,0.789327204227448,-0.635132551193237,0.263100981712341,0.726212441921234,-0.670880019664764,0.222317904233932,0.707456648349762,-0.303445160388947,0.533744871616364,0.789327204227448,-0.137337490916252,0.722086369991302,0.678033590316772,-0.640452027320862,0.263455420732498,0.721396148204803,-0.635132551193237,0.263100981712341,0.726212441921234,0.0297247059643269,0.909728348255157,0.414138555526733,0.0670048296451569,0.994928240776062,0.0750212594866753,-0.622281014919281,0.667578756809235,0.408784598112106,-0.625394403934479,0.404965341091156,0.666997015476227,0.0590334981679916,0.956456363201141,-0.285843074321747,0.0566010288894176,0.79650467634201,-0.601977288722992,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.618020296096802,0.785884976387024,-0.020872101187706,0.0566010288894176,0.79650467634201,-0.601977288722992,0.0279303062707186,0.524338662624359,-0.85105162858963,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.00497592147439718,0.235830992460251,-0.971781313419342,-0.00314093637280166,0.0235500875860453,-0.999717712402344,-0.634804606437683,-0.048506136983633,-0.77114874124527,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.00314093637280166,0.0235500875860453,-0.999717712402344,0.0376802645623684,-0.112855963408947,-0.992896676063538,-0.629554569721222,-0.156398043036461,-0.761052429676056,-0.634804606437683,-0.048506136983633,-0.77114874124527,0.0376802645623684,-0.112855963408947,-0.992896676063538,-0.0169328302145004,-0.267134875059128,-0.963510394096375,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.629554569721222,-0.156398043036461,-0.761052429676056, --0.0169328302145004,-0.267134875059128,-0.963510394096375,-0.137499764561653,-0.576561093330383,-0.805401206016541,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.137499764561653,-0.576561093330383,-0.805401206016541,-0.187847152352333,-0.823827743530273,-0.534809589385986,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.187847152352333,-0.823827743530273,-0.534809589385986,-0.214595109224319,-0.886547148227692,-0.409857511520386,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.214595109224319,-0.886547148227692,-0.409857511520386,-0.290042757987976,-0.933156549930573,-0.212353751063347,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.290042757987976,-0.933156549930573,-0.212353751063347,-0.308195531368256,-0.92970085144043,0.201672866940498,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.914259910583496,-0.121510855853558,0.386476337909698,-0.961337625980377,-0.26931968331337,-0.0574190281331539,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.961337625980377,-0.26931968331337,-0.0574190281331539,-0.914259910583496,-0.121510855853558,0.386476337909698,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.640131115913391,-0.681664824485779,0.354351848363876, --0.671600103378296,-0.681274831295013,0.291235029697418,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.857174754142761,0.0433638170361519,0.513196885585785,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.628934800624847,-0.667119085788727,0.399240732192993,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.963482022285461,-0.171603709459305,0.205558910965919,-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.70997542142868,0.0398486591875553,0.703098058700562,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.70997542142868,0.0398486591875553,0.703098058700562,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.824441373348236,0.217865794897079,0.522332191467285,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.824443161487579,0.300075203180313,0.479841828346252,-0.824441373348236,0.217865794897079,0.522332191467285,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.809130072593689,0.28207004070282,0.515504539012909, --0.824443161487579,0.300075203180313,0.479841828346252,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.704593241214752,0.0669582560658455,0.706445336341858,-0.780445158481598,0.102822184562683,0.616711378097534,-0.809130072593689,0.28207004070282,0.515504539012909,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.864185214042664,0.167588025331497,0.474444955587387,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.951627790927887,0.16344353556633,0.260174602270126,-0.763710021972656,0.452771812677383,0.460157334804535,-0.864185214042664,0.167588025331497,0.474444955587387,-0.951627790927887,0.16344353556633,0.260174602270126,-0.973378598690033,0.186897858977318,0.132677674293518,-0.250713557004929,0.911273658275604,0.326684951782227,-0.763710021972656,0.452771812677383,0.460157334804535,-0.971945106983185,0.230451807379723,0.0470606461167336,-0.963071823120117,0.26687878370285,0.035615399479866,0.46399787068367,0.878996670246124,-0.109867215156555,0.372783124446869,0.92624706029892,0.0556701831519604,-0.952061533927917,0.305601567029953,-0.0136558897793293,-0.930095851421356,0.342337965965271,-0.133141040802002,0.226254940032959,0.785780906677246,-0.575636267662048,0.389676988124847,0.859412729740143,-0.331001132726669,-0.930095851421356,0.342337965965271,-0.133141040802002,-0.929100632667542,0.205892205238342,-0.307213872671127,0.0176149271428585,0.596212565898895,-0.802633345127106,0.226254940032959,0.785780906677246,-0.575636267662048,-0.846378862857819,-0.0145592531189322,-0.532382309436798,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.102727353572845,-0.0390269421041012,-0.993943631649017, --0.111689299345016,0.199150547385216,-0.973583400249481,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.0498217605054379,-0.188205376267433,-0.980865240097046,-0.102727353572845,-0.0390269421041012,-0.993943631649017,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.71641480922699,-0.323539078235626,-0.618119955062866,0.0616355948150158,-0.241510733962059,-0.968438744544983,-0.0498217605054379,-0.188205376267433,-0.980865240097046,-0.71641480922699,-0.323539078235626,-0.618119955062866,-0.702991366386414,-0.382353127002716,-0.599674463272095,0.107462361454964,-0.419666230678558,-0.901294589042664,0.0616355948150158,-0.241510733962059,-0.968438744544983,-0.702991366386414,-0.382353127002716,-0.599674463272095,-0.685542464256287,-0.561854720115662,-0.462980479001999,0.0494586415588856,-0.758598446846008,-0.649678409099579,0.107462361454964,-0.419666230678558,-0.901294589042664,-0.685542464256287,-0.561854720115662,-0.462980479001999,-0.63401335477829,-0.75498354434967,-0.167412534356117,0.0597462803125381,-0.903311491012573,-0.424804508686066,0.0494586415588856,-0.758598446846008,-0.649678409099579,-0.63401335477829,-0.75498354434967,-0.167412534356117,-0.687629640102386,-0.708999514579773,-0.156478121876717,0.108800947666168,-0.916919946670532,-0.383953392505646,0.0597462803125381,-0.903311491012573,-0.424804508686066,-0.79966402053833,-0.564416527748108,-0.204869478940964,0.0492256097495556,-0.998270094394684,0.0321502834558487,0.108800947666168,-0.916919946670532,-0.383953392505646,-0.687629640102386,-0.708999514579773,-0.156478121876717,0.0492256097495556,-0.998270094394684,0.0321502834558487,-0.79966402053833,-0.564416527748108,-0.204869478940964,-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.91729736328125,-0.066786140203476,0.392562210559845,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.88076639175415,-0.0652495622634888,0.469034016132355, --0.88076639175415,-0.0652495622634888,0.469034016132355,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.864185214042664,0.167588025331497,0.474444955587387,-0.871415734291077,0.104148954153061,0.479361593723297,-0.763710021972656,0.452771812677383,0.460157334804535,-0.550085604190826,0.511289954185486,0.660294115543365,-0.871415734291077,0.104148954153061,0.479361593723297,-0.864185214042664,0.167588025331497,0.474444955587387,-0.550085604190826,0.511289954185486,0.660294115543365,-0.763710021972656,0.452771812677383,0.460157334804535,-0.250713557004929,0.911273658275604,0.326684951782227,0.220280304551125,0.837858080863953,0.499470114707947,0.401778846979141,0.893144488334656,0.202155500650406,0.372783124446869,0.92624706029892,0.0556701831519604,0.46399787068367,0.878996670246124,-0.109867215156555,0.415264427661896,0.905797719955444,-0.084178239107132,0.226254940032959,0.785780906677246,-0.575636267662048,0.355492949485779,0.712097942829132,-0.605426549911499,0.39429759979248,0.850684344768524,-0.347657263278961,0.389676988124847,0.859412729740143,-0.331001132726669,0.355492949485779,0.712097942829132,-0.605426549911499,0.226254940032959,0.785780906677246,-0.575636267662048,0.0176149271428585,0.596212565898895,-0.802633345127106,0.257443219423294,0.499905705451965,-0.826932430267334,-0.102727353572845,-0.0390269421041012,-0.993943631649017,0.130062997341156,0.00817443151026964,-0.991471946239471,0.148644208908081,0.235804900527,-0.960364937782288,-0.111689299345016,0.199150547385216,-0.973583400249481,-0.0498217605054379,-0.188205376267433,-0.980865240097046,0.179193317890167,-0.112113259732723,-0.977404832839966,0.130062997341156,0.00817443151026964,-0.991471946239471,-0.102727353572845,-0.0390269421041012,-0.993943631649017,0.0616355948150158,-0.241510733962059,-0.968438744544983,0.195894181728363,-0.191160306334496,-0.961812376976013,0.179193317890167,-0.112113259732723,-0.977404832839966,-0.0498217605054379,-0.188205376267433,-0.980865240097046,0.107462361454964,-0.419666230678558,-0.901294589042664, -0.143866539001465,-0.477114796638489,-0.866985499858856,0.195894181728363,-0.191160306334496,-0.961812376976013,0.0616355948150158,-0.241510733962059,-0.968438744544983,0.0494586415588856,-0.758598446846008,-0.649678409099579,0.112310662865639,-0.781480014324188,-0.613738775253296,0.143866539001465,-0.477114796638489,-0.866985499858856,0.107462361454964,-0.419666230678558,-0.901294589042664,0.0597462803125381,-0.903311491012573,-0.424804508686066,0.178519919514656,-0.850810766220093,-0.494218319654465,0.112310662865639,-0.781480014324188,-0.613738775253296,0.0494586415588856,-0.758598446846008,-0.649678409099579,0.108800947666168,-0.916919946670532,-0.383953392505646,0.24877355992794,-0.868550181388855,-0.428640246391296,0.178519919514656,-0.850810766220093,-0.494218319654465,0.0597462803125381,-0.903311491012573,-0.424804508686066,0.0492256097495556,-0.998270094394684,0.0321502834558487,0.112244442105293,-0.986817181110382,0.116588607430458,0.24877355992794,-0.868550181388855,-0.428640246391296,0.108800947666168,-0.916919946670532,-0.383953392505646,0.112244442105293,-0.986817181110382,0.116588607430458,0.0492256097495556,-0.998270094394684,0.0321502834558487,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.963482022285461,-0.171603709459305,0.205558910965919,0.0279303062707186,0.524338662624359,-0.85105162858963,-0.00497592147439718,0.235830992460251,-0.971781313419342,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.111689299345016,0.199150547385216,-0.973583400249481,0.148644208908081,0.235804900527,-0.960364937782288,0.257443219423294,0.499905705451965,-0.826932430267334,0.0176149271428585,0.596212565898895,-0.802633345127106,-0.929100632667542,0.205892205238342,-0.307213872671127,-0.846378862857819,-0.0145592531189322,-0.532382309436798, --0.111689299345016,0.199150547385216,-0.973583400249481,0.0176149271428585,0.596212565898895,-0.802633345127106,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.671600103378296,-0.681274831295013,0.291235029697418,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.137337490916252,0.722086369991302,0.678033590316772,0.0297247059643269,0.909728348255157,0.414138555526733,-0.625394403934479,0.404965341091156,0.666997015476227,-0.640452027320862,0.263455420732498,0.721396148204803,0.372783124446869,0.92624706029892,0.0556701831519604,0.401778846979141,0.893144488334656,0.202155500650406,0.220280304551125,0.837858080863953,0.499470114707947,-0.250713557004929,0.911273658275604,0.326684951782227,-0.973378598690033,0.186897858977318,0.132677674293518,-0.971945106983185,0.230451807379723,0.0470606461167336,0.372783124446869,0.92624706029892,0.0556701831519604,-0.250713557004929,0.911273658275604,0.326684951782227,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.628934800624847,-0.667119085788727,0.399240732192993,-0.640131115913391,-0.681664824485779,0.354351848363876,-0.857174754142761,0.0433638170361519,0.513196885585785,0.0670048296451569,0.994928240776062,0.0750212594866753,0.0590334981679916,0.956456363201141,-0.285843074321747,-0.618020296096802,0.785884976387024,-0.020872101187706,-0.622281014919281,0.667578756809235,0.408784598112106,0.389676988124847,0.859412729740143,-0.331001132726669,0.39429759979248,0.850684344768524,-0.347657263278961,0.415264427661896,0.905797719955444,-0.084178239107132,0.46399787068367,0.878996670246124,-0.109867215156555,-0.963071823120117,0.26687878370285,0.035615399479866,-0.952061533927917,0.305601567029953,-0.0136558897793293,0.389676988124847,0.859412729740143,-0.331001132726669,0.46399787068367,0.878996670246124,-0.109867215156555,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.728446364402771,0.0299060400575399,0.684449791908264,-0.914259910583496,-0.121510855853558,0.386476337909698, --0.670880019664764,0.222317904233932,0.707456648349762,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.914259910583496,-0.121510855853558,0.386476337909698,-0.728446364402771,0.0299060400575399,0.684449791908264,-0.635132551193237,0.263100981712341,0.726212441921234,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.670880019664764,0.222317904233932,0.707456648349762,-0.640452027320862,0.263455420732498,0.721396148204803,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.635132551193237,0.263100981712341,0.726212441921234,-0.625394403934479,0.404965341091156,0.666997015476227,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.640452027320862,0.263455420732498,0.721396148204803,-0.622281014919281,0.667578756809235,0.408784598112106,-0.857174754142761,0.0433638170361519,0.513196885585785,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.625394403934479,0.404965341091156,0.666997015476227,-0.618020296096802,0.785884976387024,-0.020872101187706,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.857174754142761,0.0433638170361519,0.513196885585785,-0.622281014919281,0.667578756809235,0.408784598112106,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.618020296096802,0.785884976387024,-0.020872101187706,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.963482022285461,-0.171603709459305,0.205558910965919,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.963482022285461,-0.171603709459305,0.205558910965919,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.634804606437683,-0.048506136983633,-0.77114874124527, --0.924330711364746,-0.0850119069218636,0.372002333402634,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.629554569721222,-0.156398043036461,-0.761052429676056,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.634804606437683,-0.048506136983633,-0.77114874124527,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.629554569721222,-0.156398043036461,-0.761052429676056,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.704593241214752,0.0669582560658455,0.706445336341858,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.399955481290817,-0.122805923223495,0.908269941806793,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.91729736328125,-0.066786140203476,0.392562210559845, --0.88076639175415,-0.0652495622634888,0.469034016132355,-0.693493843078613,0.0652938112616539,0.717497706413269,-0.693493843078613,0.0652938112616539,0.717497706413269,-0.88076639175415,-0.0652495622634888,0.469034016132355,-0.871415734291077,0.104148954153061,0.479361593723297,-0.506538450717926,0.35728594660759,0.784707248210907,-0.550085604190826,0.511289954185486,0.660294115543365,-0.303445160388947,0.533744871616364,0.789327204227448,-0.506538450717926,0.35728594660759,0.784707248210907,-0.871415734291077,0.104148954153061,0.479361593723297,-0.137337490916252,0.722086369991302,0.678033590316772,-0.303445160388947,0.533744871616364,0.789327204227448,-0.550085604190826,0.511289954185486,0.660294115543365,0.220280304551125,0.837858080863953,0.499470114707947,0.401778846979141,0.893144488334656,0.202155500650406,0.0297247059643269,0.909728348255157,0.414138555526733,-0.137337490916252,0.722086369991302,0.678033590316772,0.220280304551125,0.837858080863953,0.499470114707947,0.0670048296451569,0.994928240776062,0.0750212594866753,0.0297247059643269,0.909728348255157,0.414138555526733,0.401778846979141,0.893144488334656,0.202155500650406,0.415264427661896,0.905797719955444,-0.084178239107132,0.39429759979248,0.850684344768524,-0.347657263278961,0.0590334981679916,0.956456363201141,-0.285843074321747,0.0670048296451569,0.994928240776062,0.0750212594866753,0.415264427661896,0.905797719955444,-0.084178239107132,0.355492949485779,0.712097942829132,-0.605426549911499,0.0566010288894176,0.79650467634201,-0.601977288722992,0.0590334981679916,0.956456363201141,-0.285843074321747,0.39429759979248,0.850684344768524,-0.347657263278961,0.0279303062707186,0.524338662624359,-0.85105162858963,0.0566010288894176,0.79650467634201,-0.601977288722992,0.355492949485779,0.712097942829132,-0.605426549911499,0.257443219423294,0.499905705451965,-0.826932430267334,0.148644208908081,0.235804900527,-0.960364937782288,-0.00497592147439718,0.235830992460251,-0.971781313419342,0.0279303062707186,0.524338662624359,-0.85105162858963,0.257443219423294,0.499905705451965,-0.826932430267334, -0.130062997341156,0.00817443151026964,-0.991471946239471,-0.00314093637280166,0.0235500875860453,-0.999717712402344,-0.00497592147439718,0.235830992460251,-0.971781313419342,0.148644208908081,0.235804900527,-0.960364937782288,0.179193317890167,-0.112113259732723,-0.977404832839966,0.0376802645623684,-0.112855963408947,-0.992896676063538,-0.00314093637280166,0.0235500875860453,-0.999717712402344,0.130062997341156,0.00817443151026964,-0.991471946239471,0.195894181728363,-0.191160306334496,-0.961812376976013,-0.0169328302145004,-0.267134875059128,-0.963510394096375,0.0376802645623684,-0.112855963408947,-0.992896676063538,0.179193317890167,-0.112113259732723,-0.977404832839966,0.143866539001465,-0.477114796638489,-0.866985499858856,-0.137499764561653,-0.576561093330383,-0.805401206016541,-0.0169328302145004,-0.267134875059128,-0.963510394096375,0.195894181728363,-0.191160306334496,-0.961812376976013,0.112310662865639,-0.781480014324188,-0.613738775253296,-0.187847152352333,-0.823827743530273,-0.534809589385986,-0.137499764561653,-0.576561093330383,-0.805401206016541,0.143866539001465,-0.477114796638489,-0.866985499858856,0.178519919514656,-0.850810766220093,-0.494218319654465,-0.214595109224319,-0.886547148227692,-0.409857511520386,-0.187847152352333,-0.823827743530273,-0.534809589385986,0.112310662865639,-0.781480014324188,-0.613738775253296,0.24877355992794,-0.868550181388855,-0.428640246391296,-0.290042757987976,-0.933156549930573,-0.212353751063347,-0.214595109224319,-0.886547148227692,-0.409857511520386,0.178519919514656,-0.850810766220093,-0.494218319654465,0.112244442105293,-0.986817181110382,0.116588607430458,-0.308195531368256,-0.92970085144043,0.201672866940498,-0.290042757987976,-0.933156549930573,-0.212353751063347,0.24877355992794,-0.868550181388855,-0.428640246391296,-0.308195531368256,-0.92970085144043,0.201672866940498,0.112244442105293,-0.986817181110382,0.116588607430458,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.399955481290817,-0.122805923223495,0.908269941806793, --0.704593241214752,0.0669582560658455,0.706445336341858,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.780445158481598,0.102822184562683,0.616711378097534,-0.704593241214752,0.0669582560658455,0.706445336341858,-0.399955481290817,-0.122805923223495,0.908269941806793,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.780445158481598,0.102822184562683,0.616711378097534,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.780445158481598,0.102822184562683,0.616711378097534,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.849553406238556,0.330861240625381,0.410840421915054,-0.809130072593689,0.28207004070282,0.515504539012909,-0.727731227874756,0.51099693775177,0.457481563091278,-0.824443161487579,0.300075203180313,0.479841828346252,-0.809130072593689,0.28207004070282,0.515504539012909,-0.849553406238556,0.330861240625381,0.410840421915054,-0.727731227874756,0.51099693775177,0.457481563091278,-0.692417323589325,0.398123383522034,0.601710975170135,-0.824441373348236,0.217865794897079,0.522332191467285,-0.824443161487579,0.300075203180313,0.479841828346252,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.824441373348236,0.217865794897079,0.522332191467285,-0.692417323589325,0.398123383522034,0.601710975170135,-0.712208867073059,0.203920423984528,0.671695709228516,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.712208867073059,0.203920423984528,0.671695709228516,-0.70997542142868,0.0398486591875553,0.703098058700562,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.819959819316864,0.00309126800857484,0.572412610054016,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.70997542142868,0.0398486591875553,0.703098058700562, --0.819959819316864,0.00309126800857484,0.572412610054016,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.628934800624847,-0.667119085788727,0.399240732192993,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.640131115913391,-0.681664824485779,0.354351848363876,-0.671600103378296,-0.681274831295013,0.291235029697418,-0.640131115913391,-0.681664824485779,0.354351848363876,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.961337625980377,-0.26931968331337,-0.0574190281331539,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.961337625980377,-0.26931968331337,-0.0574190281331539, --0.959436476230621,-0.277830839157104,0.0478714406490326,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.819959819316864,0.00309126800857484,0.572412610054016,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.736697912216187,0.0184260755777359,0.675970911979675,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.819959819316864,0.00309126800857484,0.572412610054016,-0.736697912216187,0.0184260755777359,0.675970911979675,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.712208867073059,0.203920423984528,0.671695709228516,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.830455243587494,0.126324564218521,0.542573809623718,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.712208867073059,0.203920423984528,0.671695709228516,-0.692417323589325,0.398123383522034,0.601710975170135,-0.909037232398987,-0.204509243369102,0.363080382347107,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.909037232398987,-0.204509243369102,0.363080382347107,-0.89477813243866,-0.14894962310791,0.420934736728668, --0.89477813243866,-0.14894962310791,0.420934736728668,-0.909037232398987,-0.204509243369102,0.363080382347107,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.89477813243866,-0.14894962310791,0.420934736728668,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.89477813243866,-0.14894962310791,0.420934736728668,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.736697912216187,0.0184260755777359,0.675970911979675,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.830455243587494,0.126324564218521,0.542573809623718,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.830455243587494,0.126324564218521,0.542573809623718,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.830455243587494,0.126324564218521,0.542573809623718, --0.692417323589325,0.398123383522034,0.601710975170135,-0.727731227874756,0.51099693775177,0.457481563091278,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.99286687374115,0.118978433310986,-0.00771750323474407,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.727731227874756,0.51099693775177,0.457481563091278,-0.849553406238556,0.330861240625381,0.410840421915054,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.99286687374115,0.118978433310986,-0.00771750323474407,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.99286687374115,0.118978433310986,-0.00771750323474407,-0.992888033390045,-0.109178259968758,-0.0474712029099464,-0.652465343475342,-0.309647291898727,-0.691670060157776,-0.81197327375412,-0.313396573066711,0.492424696683884,-0.875657141208649,-0.0230464935302734,0.482383221387863,-0.842729270458221,0.0403629913926125,-0.536822259426117,-0.842729270458221,0.0403629913926125,-0.536822259426117,-0.875657141208649,-0.0230464935302734,0.482383221387863,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.81197327375412,-0.313396573066711,0.492424696683884,-0.652465343475342,-0.309647291898727,-0.691670060157776,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.992888033390045,-0.109178259968758,-0.0474712029099464, --0.946084976196289,-0.140076860785484,0.292064636945724,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.81197327375412,-0.313396573066711,0.492424696683884,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.875657141208649,-0.0230464935302734,0.482383221387863,-0.842729270458221,0.0403629913926125,-0.536822259426117,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.652465343475342,-0.309647291898727,-0.691670060157776,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.992888033390045,-0.109178259968758,-0.0474712029099464,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.91729736328125,-0.066786140203476,0.392562210559845,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.91729736328125,-0.066786140203476,0.392562210559845,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.992888033390045,-0.109178259968758,-0.0474712029099464,-0.99286687374115,0.118978433310986,-0.00771750323474407, --0.849553406238556,0.330861240625381,0.410840421915054,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.970032215118408,-0.16810230910778,-0.175439581274986,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.972173810005188,0.0678133368492126,0.224230632185936,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.972173810005188,0.0678133368492126,0.224230632185936,-0.982922613620758,0.0160325467586517,0.183319389820099,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.972173810005188,0.0678133368492126,0.224230632185936, --0.982922613620758,0.0160325467586517,0.183319389820099,-0.972173810005188,0.0678133368492126,0.224230632185936,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.982539415359497,-0.0605741143226624,0.175918206572533,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.982922613620758,0.0160325467586517,0.183319389820099,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.982922613620758,0.0160325467586517,0.183319389820099,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.982539415359497,-0.0605741143226624,0.175918206572533,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.982539415359497,-0.0605741143226624,0.175918206572533,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.970032215118408,-0.16810230910778,-0.175439581274986, --0.949510335922241,-0.313602298498154,0.00914698373526335,-0.79966402053833,-0.564416527748108,-0.204869478940964,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.970032215118408,-0.16810230910778,-0.175439581274986,-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.993854582309723,-0.0928924381732941,0.060199573636055,-0.970032215118408,-0.16810230910778,-0.175439581274986,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.993854582309723,-0.0928924381732941,0.060199573636055,-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.993854582309723,-0.0928924381732941,0.060199573636055,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.79966402053833,-0.564416527748108,-0.204869478940964, --0.687629640102386,-0.708999514579773,-0.156478121876717,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.687629640102386,-0.708999514579773,-0.156478121876717,-0.63401335477829,-0.75498354434967,-0.167412534356117,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.685542464256287,-0.561854720115662,-0.462980479001999,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.63401335477829,-0.75498354434967,-0.167412534356117,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.702991366386414,-0.382353127002716,-0.599674463272095,-0.933903932571411,-0.245449021458626,-0.259957998991013,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.685542464256287,-0.561854720115662,-0.462980479001999,-0.933903932571411,-0.245449021458626,-0.259957998991013,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.71641480922699,-0.323539078235626,-0.618119955062866,-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.933903932571411,-0.245449021458626,-0.259957998991013,-0.702991366386414,-0.382353127002716,-0.599674463272095,-0.944222927093506,-0.212333410978317,-0.251709252595901,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.933903932571411,-0.245449021458626,-0.259957998991013, --0.93233996629715,-0.243075132369995,-0.267687529325485,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.944222927093506,-0.212333410978317,-0.251709252595901,-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.71641480922699,-0.323539078235626,-0.618119955062866,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.846378862857819,-0.0145592531189322,-0.532382309436798,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.846378862857819,-0.0145592531189322,-0.532382309436798,-0.929100632667542,0.205892205238342,-0.307213872671127,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.996430158615112,0.0729456469416618,-0.0424961969256401, --0.988576948642731,0.0620804913341999,-0.137338176369667,-0.930095851421356,0.342337965965271,-0.133141040802002,-0.996430158615112,0.0729456469416618,-0.0424961969256401,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.929100632667542,0.205892205238342,-0.307213872671127,-0.952061533927917,0.305601567029953,-0.0136558897793293,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.996430158615112,0.0729456469416618,-0.0424961969256401,-0.930095851421356,0.342337965965271,-0.133141040802002,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.951627790927887,0.16344353556633,0.260174602270126,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.973378598690033,0.186897858977318,0.132677674293518,-0.951627790927887,0.16344353556633,0.260174602270126,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.973378598690033,0.186897858977318,0.132677674293518,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.971945106983185,0.230451807379723,0.0470606461167336,-0.971945106983185,0.230451807379723,0.0470606461167336,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.963071823120117,0.26687878370285,0.035615399479866,-0.963071823120117,0.26687878370285,0.035615399479866,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.952061533927917,0.305601567029953,-0.0136558897793293,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.949044048786163,0.0498209930956364,0.311180293560028, --0.949044048786163,0.0498209930956364,0.311180293560028,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.996430158615112,0.0729456469416618,-0.0424961969256401,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.949044048786163,0.0498209930956364,0.311180293560028,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.949044048786163,0.0498209930956364,0.311180293560028,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.911959171295166,0.11306544393301,0.394393980503082,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.787121653556824,0.192846238613129,0.585875272750854,-0.845208883285522,0.180517852306366,0.503026068210602,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.911959171295166,0.11306544393301,0.394393980503082,-0.605829894542694,0.242477968335152,0.757743120193481, --0.675026834011078,0.278837352991104,0.683072924613953,-0.845208883285522,0.180517852306366,0.503026068210602,-0.787121653556824,0.192846238613129,0.585875272750854,-0.470622479915619,0.244484186172485,0.847786426544189,-0.525900900363922,0.292911171913147,0.798518180847168,-0.675026834011078,0.278837352991104,0.683072924613953,-0.605829894542694,0.242477968335152,0.757743120193481,-0.340124756097794,0.232896119356155,0.911084234714508,-0.378590852022171,0.300119310617447,0.875555515289307,-0.525900900363922,0.292911171913147,0.798518180847168,-0.470622479915619,0.244484186172485,0.847786426544189,-0.22443599998951,0.214606165885925,0.950564444065094,-0.237684905529022,0.303838640451431,0.922598361968994,-0.378590852022171,0.300119310617447,0.875555515289307,-0.340124756097794,0.232896119356155,0.911084234714508,-0.127829894423485,0.190948218107224,0.973241090774536,-0.125086843967438,0.303321987390518,0.944642245769501,-0.237684905529022,0.303838640451431,0.922598361968994,-0.22443599998951,0.214606165885925,0.950564444065094,-0.0605999082326889,0.14594429731369,0.987435102462769,-0.0415282510221004,0.300986856222153,0.952723622322083,-0.125086843967438,0.303321987390518,0.944642245769501,-0.127829894423485,0.190948218107224,0.973241090774536,-0.0126635609194636,0.124740079045296,0.992108643054962,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0415282510221004,0.300986856222153,0.952723622322083,-0.0605999082326889,0.14594429731369,0.987435102462769,3.63054823537823e-07,0.15388910472393,0.988088130950928,3.70331861176965e-07,0.294343143701553,0.955699801445007,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0126635609194636,0.124740079045296,0.992108643054962,3.78939120082578e-07,0.396793782711029,0.91790771484375,8.38516669432465e-08,0.584491431713104,0.811399877071381,-0.0581103004515171,0.588280320167542,0.80656635761261,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0581103004515171,0.588280320167542,0.80656635761261,-0.0703992545604706,0.603085041046143,0.794564306735992, --0.0572116672992706,0.412366509437561,0.909219920635223,-0.0572116672992706,0.412366509437561,0.909219920635223,-0.0703992545604706,0.603085041046143,0.794564306735992,-0.156789898872375,0.606592059135437,0.77939909696579,-0.137307420372963,0.425327509641647,0.894563138484955,-0.137307420372963,0.425327509641647,0.894563138484955,-0.156789898872375,0.606592059135437,0.77939909696579,-0.289225667715073,0.599415302276611,0.746357679367065,-0.265747338533401,0.42672210931778,0.864457488059998,-0.265747338533401,0.42672210931778,0.864457488059998,-0.289225667715073,0.599415302276611,0.746357679367065,-0.437061578035355,0.57153731584549,0.694494247436523,-0.416861653327942,0.41656681895256,0.807897567749023,-0.416861653327942,0.41656681895256,0.807897567749023,-0.437061578035355,0.57153731584549,0.694494247436523,-0.602753758430481,0.505191385746002,0.617632269859314,-0.57666677236557,0.384265154600143,0.720968663692474,-0.57666677236557,0.384265154600143,0.720968663692474,-0.602753758430481,0.505191385746002,0.617632269859314,-0.75182569026947,0.405794024467468,0.519701242446899,-0.726795613765717,0.320454448461533,0.607517123222351,-0.726795613765717,0.320454448461533,0.607517123222351,-0.75182569026947,0.405794024467468,0.519701242446899,-0.891625940799713,0.245754644274712,0.380273282527924,-0.867741763591766,0.189786493778229,0.459352970123291,-0.867741763591766,0.189786493778229,0.459352970123291,-0.891625940799713,0.245754644274712,0.380273282527924,-0.954199731349945,0.131023228168488,0.268953174352646,-0.9303337931633,0.0937243103981018,0.354534655809402,3.70331861176965e-07,0.294343143701553,0.955699801445007,3.78939120082578e-07,0.396793782711029,0.91790771484375,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0572116672992706,0.412366509437561,0.909219920635223,-0.0415282510221004,0.300986856222153,0.952723622322083,-0.0415282510221004,0.300986856222153,0.952723622322083, --0.0572116672992706,0.412366509437561,0.909219920635223,-0.137307420372963,0.425327509641647,0.894563138484955,-0.125086843967438,0.303321987390518,0.944642245769501,-0.125086843967438,0.303321987390518,0.944642245769501,-0.137307420372963,0.425327509641647,0.894563138484955,-0.265747338533401,0.42672210931778,0.864457488059998,-0.237684905529022,0.303838640451431,0.922598361968994,-0.237684905529022,0.303838640451431,0.922598361968994,-0.265747338533401,0.42672210931778,0.864457488059998,-0.416861653327942,0.41656681895256,0.807897567749023,-0.378590852022171,0.300119310617447,0.875555515289307,-0.378590852022171,0.300119310617447,0.875555515289307,-0.416861653327942,0.41656681895256,0.807897567749023,-0.57666677236557,0.384265154600143,0.720968663692474,-0.525900900363922,0.292911171913147,0.798518180847168,-0.525900900363922,0.292911171913147,0.798518180847168,-0.57666677236557,0.384265154600143,0.720968663692474,-0.726795613765717,0.320454448461533,0.607517123222351,-0.675026834011078,0.278837352991104,0.683072924613953,-0.675026834011078,0.278837352991104,0.683072924613953,-0.726795613765717,0.320454448461533,0.607517123222351,-0.867741763591766,0.189786493778229,0.459352970123291,-0.845208883285522,0.180517852306366,0.503026068210602,-0.845208883285522,0.180517852306366,0.503026068210602,-0.867741763591766,0.189786493778229,0.459352970123291,-0.9303337931633,0.0937243103981018,0.354534655809402,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.949044048786163,0.0498209930956364,0.311180293560028,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.9303337931633,0.0937243103981018,0.354534655809402,-0.9303337931633,0.0937243103981018,0.354534655809402,-0.954199731349945,0.131023228168488,0.268953174352646,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.954199731349945,0.131023228168488,0.268953174352646, --0.971547603607178,0.182237133383751,0.151277914643288,-0.971547603607178,0.182237133383751,0.151277914643288,-0.954199731349945,0.131023228168488,0.268953174352646,-0.891625940799713,0.245754644274712,0.380273282527924,-0.90499746799469,0.313914388418198,0.287119030952454,-0.75182569026947,0.405794024467468,0.519701242446899,-0.762992560863495,0.522242605686188,0.380926549434662,-0.90499746799469,0.313914388418198,0.287119030952454,-0.891625940799713,0.245754644274712,0.380273282527924,-0.75182569026947,0.405794024467468,0.519701242446899,-0.602753758430481,0.505191385746002,0.617632269859314,-0.622123241424561,0.643279373645782,0.446266889572144,-0.762992560863495,0.522242605686188,0.380926549434662,-0.602753758430481,0.505191385746002,0.617632269859314,-0.437061578035355,0.57153731584549,0.694494247436523,-0.464312046766281,0.728468775749207,0.50373363494873,-0.622123241424561,0.643279373645782,0.446266889572144,-0.328172445297241,0.765673995018005,0.553214371204376,-0.464312046766281,0.728468775749207,0.50373363494873,-0.437061578035355,0.57153731584549,0.694494247436523,-0.289225667715073,0.599415302276611,0.746357679367065,-0.289225667715073,0.599415302276611,0.746357679367065,-0.156789898872375,0.606592059135437,0.77939909696579,-0.2000462859869,0.78645932674408,0.584348618984222,-0.328172445297241,0.765673995018005,0.553214371204376,-0.156789898872375,0.606592059135437,0.77939909696579,-0.0703992545604706,0.603085041046143,0.794564306735992,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.2000462859869,0.78645932674408,0.584348618984222,-0.0703992545604706,0.603085041046143,0.794564306735992,-0.0581103004515171,0.588280320167542,0.80656635761261,-0.065187118947506,0.788389921188354,0.611712276935577,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.0581103004515171,0.588280320167542,0.80656635761261,8.38516669432465e-08,0.584491431713104,0.811399877071381,-3.37651790971449e-08,0.775006294250488,0.631953537464142,-0.065187118947506,0.788389921188354,0.611712276935577,-0.944222927093506,-0.212333410978317,-0.251709252595901, --0.90442430973053,-0.211467266082764,-0.370537996292114,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.714498519897461,-0.221778839826584,-0.663555502891541,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.714498519897461,-0.221778839826584,-0.663555502891541,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.81737619638443,-0.152003943920135,-0.555689632892609, --0.807295203208923,-0.229477033019066,-0.543704807758331,-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.81737619638443,-0.152003943920135,-0.555689632892609,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.944222927093506,-0.212333410978317,-0.251709252595901,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.588890433311462,0.00803652405738831,-0.808172881603241,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.588890433311462,0.00803652405738831,-0.808172881603241,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.81737619638443,-0.152003943920135,-0.555689632892609,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.81737619638443,-0.152003943920135,-0.555689632892609,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.588890433311462,0.00803652405738831,-0.808172881603241, --0.622180819511414,0.141736105084419,-0.769936382770538,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.622180819511414,0.141736105084419,-0.769936382770538,-0.588890433311462,0.00803652405738831,-0.808172881603241,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.622180819511414,0.141736105084419,-0.769936382770538,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.622180819511414,0.141736105084419,-0.769936382770538,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.815724194049835,0.170847594738007,-0.552634596824646,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.893019199371338,0.102401807904243,-0.438212931156158, --0.815724194049835,0.170847594738007,-0.552634596824646,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.893019199371338,0.102401807904243,-0.438212931156158,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.815724194049835,0.170847594738007,-0.552634596824646,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.815724194049835,0.170847594738007,-0.552634596824646,-0.893019199371338,0.102401807904243,-0.438212931156158,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.893019199371338,0.102401807904243,-0.438212931156158,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.544627487659454,0.749089062213898,-0.377155721187592, --0.781218111515045,0.528859913349152,-0.331670731306076,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.781218111515045,0.528859913349152,-0.331670731306076,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.957009434700012,0.223830416798592,-0.184480234980583,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.987574577331543,0.121956139802933,-0.099110834300518,-0.957009434700012,0.223830416798592,-0.184480234980583,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.987574577331543,0.121956139802933,-0.099110834300518,-0.544627487659454,0.749089062213898,-0.377155721187592,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.781218111515045,0.528859913349152,-0.331670731306076,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.781218111515045,0.528859913349152,-0.331670731306076,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.957009434700012,0.223830416798592,-0.184480234980583,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.957009434700012,0.223830416798592,-0.184480234980583, --0.987574577331543,0.121956139802933,-0.099110834300518,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.987574577331543,0.121956139802933,-0.099110834300518,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.971547603607178,0.182237133383751,0.151277914643288,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.971547603607178,0.182237133383751,0.151277914643288,-0.952902376651764,0.297708541154861,0.0578522719442844,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.883939802646637,0.464299082756042,0.055469423532486,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.952902376651764,0.297708541154861,0.0578522719442844,-0.883939802646637,0.464299082756042,0.055469423532486,-0.882412433624268,0.439035028219223,0.169104963541031,-0.90499746799469,0.313914388418198,0.287119030952454,-0.762992560863495,0.522242605686188,0.380926549434662,-0.74632716178894,0.630759358406067,0.212458163499832,-0.762992560863495,0.522242605686188,0.380926549434662,-0.622123241424561,0.643279373645782,0.446266889572144, --0.613025367259979,0.755100011825562,0.232430189847946,-0.74632716178894,0.630759358406067,0.212458163499832,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.883939802646637,0.464299082756042,0.055469423532486,-0.882412433624268,0.439035028219223,0.169104963541031,-0.74632716178894,0.630759358406067,0.212458163499832,-0.613025367259979,0.755100011825562,0.232430189847946,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.74632716178894,0.630759358406067,0.212458163499832,-0.952902376651764,0.297708541154861,0.0578522719442844,-0.971547603607178,0.182237133383751,0.151277914643288,-0.882412433624268,0.439035028219223,0.169104963541031,-0.883939802646637,0.464299082756042,0.055469423532486,-0.971547603607178,0.182237133383751,0.151277914643288,-0.90499746799469,0.313914388418198,0.287119030952454,-0.882412433624268,0.439035028219223,0.169104963541031,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.0510411784052849,-0.341072261333466,-0.938650369644165,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.0610240995883942,-0.198125913739204,-0.978275060653687,-0.0510411784052849,-0.341072261333466,-0.938650369644165,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.0610240995883942,-0.198125913739204,-0.978275060653687,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.198316663503647,0.0361166931688786,-0.97947233915329,-0.0826811343431473,0.0399862118065357,-0.995773553848267,-0.0826811343431473,0.0399862118065357,-0.995773553848267,-0.198316663503647,0.0361166931688786,-0.97947233915329,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.126609683036804,0.235696747899055,-0.963543891906738,-0.126609683036804,0.235696747899055,-0.963543891906738,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.151392504572868,0.496224343776703,-0.854892909526825, --0.151392504572868,0.496224343776703,-0.854892909526825,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.116176627576351,0.761918485164642,-0.637168169021606,-0.116176627576351,0.761918485164642,-0.637168169021606,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.0712970271706581,0.915923774242401,-0.394968897104263,-0.0712970271706581,0.915923774242401,-0.394968897104263,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.0529426410794258,0.98890095949173,-0.138823181390762,-0.0529426410794258,0.98890095949173,-0.138823181390762,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.0526714809238911,0.995817303657532,0.0746564120054245,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.0510411784052849,-0.341072261333466,-0.938650369644165,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-0.0610240995883942,-0.198125913739204,-0.978275060653687, --7.94607268872483e-10,-0.2061897367239,-0.978512108325958,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,-0.0510411784052849,-0.341072261333466,-0.938650369644165,-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,-0.0610240995883942,-0.198125913739204,-0.978275060653687,-0.0826811343431473,0.0399862118065357,-0.995773553848267,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,-0.0826811343431473,0.0399862118065357,-0.995773553848267,-0.126609683036804,0.235696747899055,-0.963543891906738,1.21700082900134e-07,0.228037610650063,-0.973652303218842,1.21700082900134e-07,0.228037610650063,-0.973652303218842,-0.126609683036804,0.235696747899055,-0.963543891906738,-0.151392504572868,0.496224343776703,-0.854892909526825,1.34849686972416e-08,0.484101951122284,-0.875011622905731,1.34849686972416e-08,0.484101951122284,-0.875011622905731,-0.151392504572868,0.496224343776703,-0.854892909526825,-0.116176627576351,0.761918485164642,-0.637168169021606,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,-0.116176627576351,0.761918485164642,-0.637168169021606,-0.0712970271706581,0.915923774242401,-0.394968897104263,4.49168147120815e-10,0.921280324459076,-0.388899117708206,4.49168147120815e-10,0.921280324459076,-0.388899117708206,-0.0712970271706581,0.915923774242401,-0.394968897104263,-0.0529426410794258,0.98890095949173,-0.138823181390762,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,-0.0529426410794258,0.98890095949173,-0.138823181390762,-0.0526714809238911,0.995817303657532,0.0746564120054245,6.42563158237408e-09,0.997556865215302,0.0698588863015175,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.384839832782745,-0.188032418489456,-0.903627216815948, --0.276372611522675,-0.19510705769062,-0.941037476062775,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.384839832782745,-0.188032418489456,-0.903627216815948,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.429483532905579,0.812928259372711,-0.393308460712433,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.429483532905579,0.812928259372711,-0.393308460712433,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.206910863518715,0.975700497627258,0.0720853134989738,3.01379898814957e-08,0.939260125160217,0.343206197023392,-0.0593210570514202,0.942984938621521,0.327506184577942,-0.065187118947506,0.788389921188354,0.611712276935577,-3.37651790971449e-08,0.775006294250488,0.631953537464142,-0.0593210570514202,0.942984938621521,0.327506184577942,3.01379898814957e-08,0.939260125160217,0.343206197023392, -6.42563158237408e-09,0.997556865215302,0.0698588863015175,-0.0526714809238911,0.995817303657532,0.0746564120054245,-0.0593210570514202,0.942984938621521,0.327506184577942,-0.113730788230896,0.936106860637665,0.332820117473602,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.065187118947506,0.788389921188354,0.611712276935577,-0.113730788230896,0.936106860637665,0.332820117473602,-0.0593210570514202,0.942984938621521,0.327506184577942,-0.0526714809238911,0.995817303657532,0.0746564120054245,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.384839832782745,-0.188032418489456,-0.903627216815948,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.384839832782745,-0.188032418489456,-0.903627216815948,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.544627487659454,0.749089062213898,-0.377155721187592, --0.429483532905579,0.812928259372711,-0.393308460712433,-0.429483532905579,0.812928259372711,-0.393308460712433,-0.544627487659454,0.749089062213898,-0.377155721187592,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.613025367259979,0.755100011825562,0.232430189847946,-0.478356868028641,0.839772462844849,0.256820797920227,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.622123241424561,0.643279373645782,0.446266889572144,-0.464312046766281,0.728468775749207,0.50373363494873,-0.478356868028641,0.839772462844849,0.256820797920227,-0.613025367259979,0.755100011825562,0.232430189847946,-0.478356868028641,0.839772462844849,0.256820797920227,-0.353402942419052,0.888349592685699,0.293157428503036,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.353402942419052,0.888349592685699,0.293157428503036,-0.478356868028641,0.839772462844849,0.256820797920227,-0.464312046766281,0.728468775749207,0.50373363494873,-0.328172445297241,0.765673995018005,0.553214371204376,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.198316663503647,0.0361166931688786,-0.97947233915329, --0.198316663503647,0.0361166931688786,-0.97947233915329,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.206910863518715,0.975700497627258,0.0720853134989738,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.113730788230896,0.936106860637665,0.332820117473602,-0.215742915868759,0.924982488155365,0.312829822301865,-0.2000462859869,0.78645932674408,0.584348618984222,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.215742915868759,0.924982488155365,0.312829822301865,-0.353402942419052,0.888349592685699,0.293157428503036,-0.328172445297241,0.765673995018005,0.553214371204376,-0.2000462859869,0.78645932674408,0.584348618984222,-0.353402942419052,0.888349592685699,0.293157428503036,-0.215742915868759,0.924982488155365,0.312829822301865,-0.206910863518715,0.975700497627258,0.0720853134989738,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.206910863518715,0.975700497627258,0.0720853134989738, --0.215742915868759,0.924982488155365,0.312829822301865,-0.113730788230896,0.936106860637665,0.332820117473602,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.714498519897461,-0.221778839826584,-0.663555502891541,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.714498519897461,-0.221778839826584,-0.663555502891541, --0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.684308230876923,0.728986442089081,0.0173502005636692,-0.728694200515747,0.622112631797791,0.286322504281998,-0.847042322158813,0.502337336540222,0.173713743686676,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.61449933052063,0.733339846134186,-0.290866494178772,-0.684308230876923,0.728986442089081,0.0173502005636692,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.618001043796539,0.585912525653839,-0.524195611476898,-0.541614532470703,0.677623927593231,-0.497473150491714,-0.61449933052063,0.733339846134186,-0.290866494178772,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.444960385560989,0.612612128257751,-0.653235554695129,-0.541614532470703,0.677623927593231,-0.497473150491714,-0.618001043796539,0.585912525653839,-0.524195611476898,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.351477026939392,0.553170442581177,-0.755292236804962,-0.444960385560989,0.612612128257751,-0.653235554695129,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.270358890295029,0.506686210632324,-0.818642258644104,-0.351477026939392,0.553170442581177,-0.755292236804962,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.213099703192711,0.426459610462189,-0.879045367240906,-0.199552699923515,0.471701294183731,-0.858881115913391,-0.270358890295029,0.506686210632324,-0.818642258644104,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.131308346986771,0.415217816829681,-0.90019565820694,-0.128462314605713,0.454629749059677,-0.881367802619934,-0.199552699923515,0.471701294183731,-0.858881115913391, --0.213099703192711,0.426459610462189,-0.879045367240906,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.0530861020088196,0.451810419559479,-0.890533149242401,-0.128462314605713,0.454629749059677,-0.881367802619934,-0.131308346986771,0.415217816829681,-0.90019565820694,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,1.98165164277952e-08,0.454084575176239,-0.890958487987518,-0.0530861020088196,0.451810419559479,-0.890533149242401,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.847042322158813,0.502337336540222,0.173713743686676,-0.728694200515747,0.622112631797791,0.286322504281998,-0.726915895938873,0.446397453546524,0.521845281124115,-0.852592706680298,0.350510209798813,0.387592911720276,-0.852592706680298,0.350510209798813,0.387592911720276,-0.726915895938873,0.446397453546524,0.521845281124115,-0.656375765800476,0.277168720960617,0.701675295829773,-0.77659010887146,0.159818083047867,0.609398126602173,-0.77659010887146,0.159818083047867,0.609398126602173,-0.656375765800476,0.277168720960617,0.701675295829773,-0.631248235702515,0.231331527233124,0.740277886390686,-0.757037222385406,0.07386264950037,0.649183332920074,-0.757037222385406,0.07386264950037,0.649183332920074,-0.631248235702515,0.231331527233124,0.740277886390686,-0.599312365055084,0.22761432826519,0.767473995685577,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.599312365055084,0.22761432826519,0.767473995685577,-0.565815091133118,0.248613849282265,0.786158084869385,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.565815091133118,0.248613849282265,0.786158084869385,-0.548404693603516,0.272784471511841,0.790468752384186,-0.715418756008148,0.062575489282608,0.695888042449951,-0.715418756008148,0.062575489282608,0.695888042449951,-0.548404693603516,0.272784471511841,0.790468752384186,-0.56310248374939,0.296413868665695,0.771397769451141,-0.691517233848572,0.0937234982848167,0.716253936290741,-0.691517233848572,0.0937234982848167,0.716253936290741, --0.56310248374939,0.296413868665695,0.771397769451141,-0.582047343254089,0.326349675655365,0.744793176651001,-0.670894801616669,0.136083379387856,0.728959143161774,-0.670894801616669,0.136083379387856,0.728959143161774,-0.582047343254089,0.326349675655365,0.744793176651001,-0.566551923751831,0.371688425540924,0.735436260700226,-0.610976159572601,0.186938151717186,0.769260823726654,-0.610976159572601,0.186938151717186,0.769260823726654,-0.566551923751831,0.371688425540924,0.735436260700226,-0.395315915346146,0.400195717811584,0.826782166957855,-0.511263906955719,0.229410231113434,0.828239142894745,-0.511263906955719,0.229410231113434,0.828239142894745,-0.395315915346146,0.400195717811584,0.826782166957855,-0.213978081941605,0.364422500133514,0.906316518783569,-0.34737029671669,0.231676667928696,0.908658266067505,-0.34737029671669,0.231676667928696,0.908658266067505,-0.213978081941605,0.364422500133514,0.906316518783569,-0.150779917836189,0.331106066703796,0.931468784809113,-0.271949082612991,0.202168986201286,0.940835416316986,-0.271949082612991,0.202168986201286,0.940835416316986,-0.150779917836189,0.331106066703796,0.931468784809113,-0.0205323211848736,0.307831794023514,0.951219320297241,-0.119281552731991,0.172357603907585,0.977785646915436,-0.119281552731991,0.172357603907585,0.977785646915436,-0.0205323211848736,0.307831794023514,0.951219320297241,0.102973394095898,0.31115847826004,0.944762885570526,0.0153793878853321,0.13690297305584,0.990465044975281,0.0153793878853321,0.13690297305584,0.990465044975281,0.102973394095898,0.31115847826004,0.944762885570526,0.22580198943615,0.312988311052322,0.922524690628052,0.0923508033156395,0.110743016004562,0.989549040794373,0.0923508033156395,0.110743016004562,0.989549040794373,0.22580198943615,0.312988311052322,0.922524690628052,0.310137838125229,0.29395380616188,0.904105007648468,0.168494120240211,0.0982578992843628,0.980793118476868,0.168494120240211,0.0982578992843628,0.980793118476868,0.310137838125229,0.29395380616188,0.904105007648468,0.184752956032753,0.297427594661713,0.936697959899902, -0.126774579286575,0.124518848955631,0.984085023403168,0.126774579286575,0.124518848955631,0.984085023403168,0.184752956032753,0.297427594661713,0.936697959899902,-1.5048020429731e-07,0.302467465400696,0.953159689903259,-1.18681050764735e-07,0.127460151910782,0.99184376001358,1.68667515509924e-08,0.135232120752335,-0.990813970565796,1.48528812360382e-07,0.231706529855728,-0.972785711288452,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.682427048683167,0.0771267116069794,-0.726873338222504,-0.682427048683167,0.0771267116069794,-0.726873338222504,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.819998681545258,0.0456666238605976,-0.570540606975555, --0.819998681545258,0.0456666238605976,-0.570540606975555,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.734038233757019,-0.289851784706116,0.614144742488861,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.734038233757019,-0.289851784706116,0.614144742488861,-0.788692355155945,-0.369454473257065,0.491393774747849,-0.802000761032104,-0.590044140815735,0.0929660424590111,-0.802000761032104,-0.590044140815735,0.0929660424590111, --0.788692355155945,-0.369454473257065,0.491393774747849,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.386757224798203,-0.659731805324554,0.644338965415955,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.386757224798203,-0.659731805324554,0.644338965415955,-0.235601097345352,-0.715268731117249,0.657938301563263,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.235601097345352,-0.715268731117249,0.657938301563263, --0.0898828059434891,-0.720666527748108,0.687430560588837,-0.0629030466079712,-0.98097163438797,0.183678492903709,-0.0629030466079712,-0.98097163438797,0.183678492903709,-0.0898828059434891,-0.720666527748108,0.687430560588837,6.02130469928852e-08,-0.702668070793152,0.711517870426178,1.42591204621567e-07,-0.984854400157928,0.173383504152298,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,1.68667515509924e-08,0.135232120752335,-0.990813970565796,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.682427048683167,0.0771267116069794,-0.726873338222504,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.682427048683167,0.0771267116069794,-0.726873338222504, --0.819998681545258,0.0456666238605976,-0.570540606975555,-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.819998681545258,0.0456666238605976,-0.570540606975555,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.802000761032104,-0.590044140815735,0.0929660424590111, --0.677948117256165,-0.716406941413879,-0.164764747023582,-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.802000761032104,-0.590044140815735,0.0929660424590111,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.172015964984894,-0.984178066253662,0.042475625872612, --0.172015964984894,-0.984178066253662,0.042475625872612,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.0629030466079712,-0.98097163438797,0.183678492903709,-0.0893125608563423,-0.993775486946106,0.0665845423936844,-0.0893125608563423,-0.993775486946106,0.0665845423936844,-0.0629030466079712,-0.98097163438797,0.183678492903709,1.42591204621567e-07,-0.984854400157928,0.173383504152298,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.591074585914612,0.207418039441109,-0.779492437839508,-0.591074585914612,0.207418039441109,-0.779492437839508,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.769784450531006,0.213163867592812,-0.601658582687378,-0.751979172229767,0.168086335062981,-0.637396395206451,-0.751979172229767,0.168086335062981,-0.637396395206451, --0.769784450531006,0.213163867592812,-0.601658582687378,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.72381591796875,-0.197180986404419,0.661218762397766,-0.651494681835175,-0.183251693844795,0.736188530921936,-0.651494681835175,-0.183251693844795,0.736188530921936,-0.72381591796875,-0.197180986404419,0.661218762397766, --0.650437414646149,-0.166883498430252,0.741000056266785,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.650437414646149,-0.166883498430252,0.741000056266785,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.184067010879517,-0.51487523317337,0.83727103471756, --0.206913635134697,-0.568290770053864,0.796387076377869,-0.206913635134697,-0.568290770053864,0.796387076377869,-0.184067010879517,-0.51487523317337,0.83727103471756,-0.084998719394207,-0.517168939113617,0.851652204990387,-0.11381658911705,-0.566020905971527,0.816496133804321,-0.11381658911705,-0.566020905971527,0.816496133804321,-0.084998719394207,-0.517168939113617,0.851652204990387,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.729940891265869,0.388568073511124,-0.562317609786987,-0.769784450531006,0.213163867592812,-0.601658582687378, --0.769784450531006,0.213163867592812,-0.601658582687378,-0.729940891265869,0.388568073511124,-0.562317609786987,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.987321078777313,0.106447607278824,0.117754012346268,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.987321078777313,0.106447607278824,0.117754012346268,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.817796945571899,-0.229442059993744,0.527792155742645,-0.72381591796875,-0.197180986404419,0.661218762397766,-0.72381591796875,-0.197180986404419,0.661218762397766, --0.817796945571899,-0.229442059993744,0.527792155742645,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.650437414646149,-0.166883498430252,0.741000056266785,-0.650437414646149,-0.166883498430252,0.741000056266785,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.24924410879612,-0.198041886091232,0.947975158691406,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.24924410879612,-0.198041886091232,0.947975158691406,-0.176319509744644,-0.240196973085403,0.954576790332794,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.176319509744644,-0.240196973085403,0.954576790332794, --0.106686748564243,-0.267717778682709,0.957572400569916,-0.184067010879517,-0.51487523317337,0.83727103471756,-0.184067010879517,-0.51487523317337,0.83727103471756,-0.106686748564243,-0.267717778682709,0.957572400569916,-0.0603146553039551,-0.268659979104996,0.961344838142395,-0.084998719394207,-0.517168939113617,0.851652204990387,-0.084998719394207,-0.517168939113617,0.851652204990387,-0.0603146553039551,-0.268659979104996,0.961344838142395,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.131308346986771,0.415217816829681,-0.90019565820694,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.131308346986771,0.415217816829681,-0.90019565820694,-0.213099703192711,0.426459610462189,-0.879045367240906,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.213099703192711,0.426459610462189,-0.879045367240906,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.618001043796539,0.585912525653839,-0.524195611476898, --0.729940891265869,0.388568073511124,-0.562317609786987,-0.729940891265869,0.388568073511124,-0.562317609786987,-0.618001043796539,0.585912525653839,-0.524195611476898,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.847042322158813,0.502337336540222,0.173713743686676,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.847042322158813,0.502337336540222,0.173713743686676,-0.852592706680298,0.350510209798813,0.387592911720276,-0.987321078777313,0.106447607278824,0.117754012346268,-0.987321078777313,0.106447607278824,0.117754012346268,-0.852592706680298,0.350510209798813,0.387592911720276,-0.77659010887146,0.159818083047867,0.609398126602173,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.77659010887146,0.159818083047867,0.609398126602173,-0.757037222385406,0.07386264950037,0.649183332920074,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.757037222385406,0.07386264950037,0.649183332920074,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.715418756008148,0.062575489282608,0.695888042449951,-0.817796945571899,-0.229442059993744,0.527792155742645, --0.817796945571899,-0.229442059993744,0.527792155742645,-0.715418756008148,0.062575489282608,0.695888042449951,-0.691517233848572,0.0937234982848167,0.716253936290741,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.691517233848572,0.0937234982848167,0.716253936290741,-0.670894801616669,0.136083379387856,0.728959143161774,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.670894801616669,0.136083379387856,0.728959143161774,-0.610976159572601,0.186938151717186,0.769260823726654,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.610976159572601,0.186938151717186,0.769260823726654,-0.511263906955719,0.229410231113434,0.828239142894745,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.511263906955719,0.229410231113434,0.828239142894745,-0.34737029671669,0.231676667928696,0.908658266067505,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.34737029671669,0.231676667928696,0.908658266067505,-0.271949082612991,0.202168986201286,0.940835416316986,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.271949082612991,0.202168986201286,0.940835416316986,-0.119281552731991,0.172357603907585,0.977785646915436,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.119281552731991,0.172357603907585,0.977785646915436,0.0153793878853321,0.13690297305584,0.990465044975281,-0.24924410879612,-0.198041886091232,0.947975158691406,-0.24924410879612,-0.198041886091232,0.947975158691406,0.0153793878853321,0.13690297305584,0.990465044975281,0.0923508033156395,0.110743016004562,0.989549040794373,-0.176319509744644,-0.240196973085403,0.954576790332794,-0.176319509744644,-0.240196973085403,0.954576790332794, -0.0923508033156395,0.110743016004562,0.989549040794373,0.168494120240211,0.0982578992843628,0.980793118476868,-0.106686748564243,-0.267717778682709,0.957572400569916,-0.106686748564243,-0.267717778682709,0.957572400569916,0.168494120240211,0.0982578992843628,0.980793118476868,0.126774579286575,0.124518848955631,0.984085023403168,-0.0603146553039551,-0.268659979104996,0.961344838142395,-0.0603146553039551,-0.268659979104996,0.961344838142395,0.126774579286575,0.124518848955631,0.984085023403168,-1.18681050764735e-07,0.127460151910782,0.99184376001358,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,1.48528812360382e-07,0.231706529855728,-0.972785711288452,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.591074585914612,0.207418039441109,-0.779492437839508,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.591074585914612,0.207418039441109,-0.779492437839508, --0.751979172229767,0.168086335062981,-0.637396395206451,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.751979172229767,0.168086335062981,-0.637396395206451,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.651494681835175,-0.183251693844795,0.736188530921936, --0.734038233757019,-0.289851784706116,0.614144742488861,-0.734038233757019,-0.289851784706116,0.614144742488861,-0.651494681835175,-0.183251693844795,0.736188530921936,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.788692355155945,-0.369454473257065,0.491393774747849,-0.788692355155945,-0.369454473257065,0.491393774747849,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.386757224798203,-0.659731805324554,0.644338965415955, --0.386757224798203,-0.659731805324554,0.644338965415955,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.206913635134697,-0.568290770053864,0.796387076377869,-0.235601097345352,-0.715268731117249,0.657938301563263,-0.235601097345352,-0.715268731117249,0.657938301563263,-0.206913635134697,-0.568290770053864,0.796387076377869,-0.11381658911705,-0.566020905971527,0.816496133804321,-0.0898828059434891,-0.720666527748108,0.687430560588837,-0.0898828059434891,-0.720666527748108,0.687430560588837,-0.11381658911705,-0.566020905971527,0.816496133804321,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,6.02130469928852e-08,-0.702668070793152,0.711517870426178,-0.0116365421563387,-0.906590342521667,-0.421851187944412,-0.023888697847724,-0.954553961753845,-0.297079235315323,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.417807817459106,-0.774399518966675,-0.475123226642609,0.33331972360611,-0.913330256938934,-0.233935281634331,0.25480243563652,-0.95263671875,-0.166008993983269,-0.023888697847724,-0.954553961753845,-0.297079235315323,-0.0116365421563387,-0.906590342521667,-0.421851187944412,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.25480243563652,-0.95263671875,-0.166008993983269,0.33331972360611,-0.913330256938934,-0.233935281634331,0.432196915149689,-0.896145820617676,0.10064011067152,0.414681702852249,-0.906808733940125,0.07574313133955,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.46870344877243,-0.856486141681671,0.216214150190353,0.458041399717331,-0.860919594764709,0.221394509077072,0.414681702852249,-0.906808733940125,0.07574313133955,0.432196915149689,-0.896145820617676,0.10064011067152,-0.417807817459106,-0.774399518966675,-0.475123226642609,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.684053778648376,-0.637334287166595,-0.354789197444916,-0.725718796253204,-0.558084905147552,-0.40233501791954,-0.725718796253204,-0.558084905147552,-0.40233501791954, --0.684053778648376,-0.637334287166595,-0.354789197444916,-0.822762191295624,-0.500289440155029,-0.269764542579651,-0.85067754983902,-0.436321139335632,-0.293209284543991,-0.85067754983902,-0.436321139335632,-0.293209284543991,-0.822762191295624,-0.500289440155029,-0.269764542579651,-0.94079327583313,-0.32646968960762,-0.0912446826696396,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.94079327583313,-0.32646968960762,-0.0912446826696396,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.718403160572052,-0.0559572800993919,0.69337272644043,-0.718403160572052,-0.0559572800993919,0.69337272644043,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.420695006847382,-0.58874499797821,0.690213739871979,-0.412473618984222,-0.275771468877792,0.868225574493408,-0.412473618984222,-0.275771468877792,0.868225574493408,-0.420695006847382,-0.58874499797821,0.690213739871979,0.0455757603049278,-0.77970951795578,0.624480545520782,0.144469812512398,-0.614519059658051,0.775560915470123,0.144469812512398,-0.614519059658051,0.775560915470123,0.0455757603049278,-0.77970951795578,0.624480545520782,0.374405801296234,-0.792444050312042,0.481510877609253,0.414653033018112,-0.778381586074829,0.471364915370941,0.46870344877243,-0.856486141681671,0.216214150190353,0.414653033018112,-0.778381586074829,0.471364915370941,0.374405801296234,-0.792444050312042,0.481510877609253,0.458041399717331,-0.860919594764709,0.221394509077072,-0.023888697847724,-0.954553961753845,-0.297079235315323,0.25480243563652,-0.95263671875,-0.166008993983269, --0.236198216676712,-0.958470046520233,0.159829556941986,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.0845373719930649,-0.97024405002594,0.22689189016819,-0.236198216676712,-0.958470046520233,0.159829556941986,0.25480243563652,-0.95263671875,-0.166008993983269,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.117940455675125,-0.949480175971985,0.290821850299835,-0.0845373719930649,-0.97024405002594,0.22689189016819,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.414681702852249,-0.906808733940125,0.07574313133955,-0.420695006847382,-0.58874499797821,0.690213739871979,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.236198216676712,-0.958470046520233,0.159829556941986,-0.0845373719930649,-0.97024405002594,0.22689189016819,-0.0845373719930649,-0.97024405002594,0.22689189016819,0.117940455675125,-0.949480175971985,0.290821850299835,0.0455757603049278,-0.77970951795578,0.624480545520782,-0.420695006847382,-0.58874499797821,0.690213739871979,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.236198216676712,-0.958470046520233,0.159829556941986,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.503160178661346,-0.864180862903595,0.00460245879366994,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.023888697847724,-0.954553961753845,-0.297079235315323,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.503160178661346,-0.864180862903595,0.00460245879366994,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.822762191295624,-0.500289440155029,-0.269764542579651,-0.503160178661346,-0.864180862903595,0.00460245879366994,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.94079327583313,-0.32646968960762,-0.0912446826696396,-0.684053778648376,-0.637334287166595,-0.354789197444916,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.503160178661346,-0.864180862903595,0.00460245879366994, --0.822762191295624,-0.500289440155029,-0.269764542579651,0.458041399717331,-0.860919594764709,0.221394509077072,0.374405801296234,-0.792444050312042,0.481510877609253,0.0455757603049278,-0.77970951795578,0.624480545520782,0.117940455675125,-0.949480175971985,0.290821850299835,0.117940455675125,-0.949480175971985,0.290821850299835,0.414681702852249,-0.906808733940125,0.07574313133955,0.458041399717331,-0.860919594764709,0.221394509077072,-0.0650144815444946,-0.92928946018219,0.36358517408371,-0.0247087050229311,-0.976878702640533,-0.212361350655556,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,-2.19972790205247e-07,-0.946157574653625,0.323706299066544,0.0745086520910263,-0.995074927806854,-0.0653797164559364,0.331993937492371,-0.770820260047913,-0.543705940246582,0.416777580976486,-0.760090827941895,-0.498556226491928,-0.070024810731411,-0.992533028125763,0.0998734086751938,-0.0177781600505114,-0.99129331111908,0.130466863512993,0.401315569877625,-0.798839211463928,-0.448109120130539,0.377735286951065,-0.830142796039581,-0.410096317529678,-0.010275911539793,-0.987158477306366,0.159412920475006,-0.010275911539793,-0.987158477306366,0.159412920475006,0.377735286951065,-0.830142796039581,-0.410096317529678,0.251897037029266,-0.911083221435547,-0.326305150985718,-0.0467732325196266,-0.957661330699921,0.284072071313858,-0.0467732325196266,-0.957661330699921,0.284072071313858,0.251897037029266,-0.911083221435547,-0.326305150985718,0.105126269161701,-0.962312161922455,-0.250806331634521,-0.0575000047683716,-0.920222759246826,0.387148171663284,-0.0575000047683716,-0.920222759246826,0.387148171663284,0.105126269161701,-0.962312161922455,-0.250806331634521,0.0360650680959225,-0.971361756324768,-0.234852284193039,-0.0700107589364052,-0.918608009815216,0.388918846845627,-0.0700107589364052,-0.918608009815216,0.388918846845627,0.0360650680959225,-0.971361756324768,-0.234852284193039,-0.0247087050229311,-0.976878702640533,-0.212361350655556,-0.0650144815444946,-0.92928946018219,0.36358517408371,-0.070024810731411,-0.992533028125763,0.0998734086751938, -0.416777580976486,-0.760090827941895,-0.498556226491928,0.401315569877625,-0.798839211463928,-0.448109120130539,-0.0177781600505114,-0.99129331111908,0.130466863512993,0.114909864962101,-0.963066697120667,-0.243512377142906,0.480054050683975,-0.702494442462921,-0.525404393672943,0.331993937492371,-0.770820260047913,-0.543705940246582,0.0745086520910263,-0.995074927806854,-0.0653797164559364,0.786459982395172,-0.152115032076836,-0.598616480827332,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.480054050683975,-0.702494442462921,-0.525404393672943,0.114909864962101,-0.963066697120667,-0.243512377142906,0.19354659318924,0.969684422016144,-0.149170637130737,0.417964220046997,0.837518751621246,-0.351949512958527,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.786459982395172,-0.152115032076836,-0.598616480827332,-0.369951218366623,0.895374655723572,0.247871711850166,0.300643712282181,0.812015533447266,-0.500244081020355,0.417964220046997,0.837518751621246,-0.351949512958527,0.19354659318924,0.969684422016144,-0.149170637130737,-0.334255129098892,0.900808572769165,0.277159631252289,0.262743443250656,0.836696147918701,-0.480526208877563,0.300643712282181,0.812015533447266,-0.500244081020355,-0.369951218366623,0.895374655723572,0.247871711850166,-0.319086283445358,0.899404048919678,0.298757940530777,0.344585806131363,0.805059134960175,-0.482846230268478,0.262743443250656,0.836696147918701,-0.480526208877563,-0.334255129098892,0.900808572769165,0.277159631252289,-0.345288753509521,0.879696190357208,0.326971441507339,0.25783696770668,0.862873136997223,-0.43470686674118,0.344585806131363,0.805059134960175,-0.482846230268478,-0.319086283445358,0.899404048919678,0.298757940530777,-0.343751102685928,0.846281886100769,0.406991451978683,0.113817416131496,0.917827665805817,-0.380312949419022,0.25783696770668,0.862873136997223,-0.43470686674118,-0.345288753509521,0.879696190357208,0.326971441507339,-0.203538998961449,0.867182850837708,0.454495310783386,0.0477550774812698,0.912685573101044,-0.405862480401993,0.113817416131496,0.917827665805817,-0.380312949419022, --0.343751102685928,0.846281886100769,0.406991451978683,-0.0728877931833267,0.860819160938263,0.503664255142212,0.0447619557380676,0.905397772789001,-0.422198206186295,0.0477550774812698,0.912685573101044,-0.405862480401993,-0.203538998961449,0.867182850837708,0.454495310783386,-0.0103095471858978,0.826472699642181,0.562882483005524,0.0501139350235462,0.917618691921234,-0.394289970397949,0.0447619557380676,0.905397772789001,-0.422198206186295,-0.0728877931833267,0.860819160938263,0.503664255142212,-4.3436074292913e-07,0.799352884292603,0.60086190700531,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,0.0501139350235462,0.917618691921234,-0.394289970397949,-0.0103095471858978,0.826472699642181,0.562882483005524,-0.0247087050229311,-0.976878702640533,-0.212361350655556,0.0360558368265629,-0.259087026119232,-0.965180695056915,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,0.0360650680959225,-0.971361756324768,-0.234852284193039,0.162887245416641,-0.252845227718353,-0.953696429729462,0.0360558368265629,-0.259087026119232,-0.965180695056915,-0.0247087050229311,-0.976878702640533,-0.212361350655556,0.105126269161701,-0.962312161922455,-0.250806331634521,0.287318974733353,-0.265834450721741,-0.920206487178802,0.162887245416641,-0.252845227718353,-0.953696429729462,0.0360650680959225,-0.971361756324768,-0.234852284193039,0.251897037029266,-0.911083221435547,-0.326305150985718,0.50138658285141,-0.259844452142715,-0.825283110141754,0.287318974733353,-0.265834450721741,-0.920206487178802,0.105126269161701,-0.962312161922455,-0.250806331634521,0.377735286951065,-0.830142796039581,-0.410096317529678,0.582196235656738,-0.243713214993477,-0.775661945343018,0.50138658285141,-0.259844452142715,-0.825283110141754,0.251897037029266,-0.911083221435547,-0.326305150985718,0.401315569877625,-0.798839211463928,-0.448109120130539,0.605233550071716,-0.242855295538902,-0.758098661899567,0.582196235656738,-0.243713214993477,-0.775661945343018,0.377735286951065,-0.830142796039581,-0.410096317529678, -0.416777580976486,-0.760090827941895,-0.498556226491928,0.586803495883942,-0.278199374675751,-0.760438561439514,0.605233550071716,-0.242855295538902,-0.758098661899567,0.401315569877625,-0.798839211463928,-0.448109120130539,0.331993937492371,-0.770820260047913,-0.543705940246582,0.527179300785065,-0.344850659370422,-0.77663379907608,0.586803495883942,-0.278199374675751,-0.760438561439514,0.416777580976486,-0.760090827941895,-0.498556226491928,0.480054050683975,-0.702494442462921,-0.525404393672943,0.64567369222641,-0.321532547473907,-0.692619979381561,0.527179300785065,-0.344850659370422,-0.77663379907608,0.331993937492371,-0.770820260047913,-0.543705940246582,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.64567369222641,-0.321532547473907,-0.692619979381561,0.480054050683975,-0.702494442462921,-0.525404393672943,0.417964220046997,0.837518751621246,-0.351949512958527,0.563483655452728,0.416101396083832,-0.713684618473053,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.300643712282181,0.812015533447266,-0.500244081020355,0.586945712566376,0.315013289451599,-0.745829284191132,0.563483655452728,0.416101396083832,-0.713684618473053,0.417964220046997,0.837518751621246,-0.351949512958527,0.262743443250656,0.836696147918701,-0.480526208877563,0.578270196914673,0.275099962949753,-0.768064856529236,0.586945712566376,0.315013289451599,-0.745829284191132,0.300643712282181,0.812015533447266,-0.500244081020355,0.344585806131363,0.805059134960175,-0.482846230268478,0.578391373157501,0.257413566112518,-0.774081289768219,0.578270196914673,0.275099962949753,-0.768064856529236,0.262743443250656,0.836696147918701,-0.480526208877563,0.25783696770668,0.862873136997223,-0.43470686674118,0.58739972114563,0.257034152746201,-0.767394959926605,0.578391373157501,0.257413566112518,-0.774081289768219,0.344585806131363,0.805059134960175,-0.482846230268478,0.113817416131496,0.917827665805817,-0.380312949419022,0.471768319606781,0.292233258485794,-0.831885993480682, -0.58739972114563,0.257034152746201,-0.767394959926605,0.25783696770668,0.862873136997223,-0.43470686674118,0.0477550774812698,0.912685573101044,-0.405862480401993,0.241891622543335,0.338840007781982,-0.909217238426208,0.471768319606781,0.292233258485794,-0.831885993480682,0.113817416131496,0.917827665805817,-0.380312949419022,0.0447619557380676,0.905397772789001,-0.422198206186295,0.112730331718922,0.375972926616669,-0.919747948646545,0.241891622543335,0.338840007781982,-0.909217238426208,0.0477550774812698,0.912685573101044,-0.405862480401993,0.0501139350235462,0.917618691921234,-0.394289970397949,0.0816355124115944,0.38482540845871,-0.919372081756592,0.112730331718922,0.375972926616669,-0.919747948646545,0.0447619557380676,0.905397772789001,-0.422198206186295,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,0.0816355124115944,0.38482540845871,-0.919372081756592,0.0501139350235462,0.917618691921234,-0.394289970397949,0.0360558368265629,-0.259087026119232,-0.965180695056915,-0.0285964030772448,-0.448204517364502,-0.893473565578461,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,0.162887245416641,-0.252845227718353,-0.953696429729462,0.154667645692825,-0.442441701889038,-0.883359014987946,-0.0285964030772448,-0.448204517364502,-0.893473565578461,0.0360558368265629,-0.259087026119232,-0.965180695056915,0.287318974733353,-0.265834450721741,-0.920206487178802,0.324519008398056,-0.418067187070847,-0.848473489284515,0.154667645692825,-0.442441701889038,-0.883359014987946,0.162887245416641,-0.252845227718353,-0.953696429729462,0.50138658285141,-0.259844452142715,-0.825283110141754,0.544105112552643,-0.371156424283981,-0.752457559108734,0.324519008398056,-0.418067187070847,-0.848473489284515,0.287318974733353,-0.265834450721741,-0.920206487178802,0.582196235656738,-0.243713214993477,-0.775661945343018,0.627916812896729,-0.361263185739517,-0.689354300498962,0.544105112552643,-0.371156424283981,-0.752457559108734, -0.50138658285141,-0.259844452142715,-0.825283110141754,0.605233550071716,-0.242855295538902,-0.758098661899567,0.657751321792603,-0.360926240682602,-0.661132037639618,0.627916812896729,-0.361263185739517,-0.689354300498962,0.582196235656738,-0.243713214993477,-0.775661945343018,0.586803495883942,-0.278199374675751,-0.760438561439514,0.700498878955841,-0.367755383253098,-0.611602127552032,0.657751321792603,-0.360926240682602,-0.661132037639618,0.605233550071716,-0.242855295538902,-0.758098661899567,0.527179300785065,-0.344850659370422,-0.77663379907608,0.714449048042297,-0.387402921915054,-0.582650482654572,0.700498878955841,-0.367755383253098,-0.611602127552032,0.586803495883942,-0.278199374675751,-0.760438561439514,0.64567369222641,-0.321532547473907,-0.692619979381561,0.829704761505127,-0.297910153865814,-0.472058743238449,0.714449048042297,-0.387402921915054,-0.582650482654572,0.527179300785065,-0.344850659370422,-0.77663379907608,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.829704761505127,-0.297910153865814,-0.472058743238449,0.64567369222641,-0.321532547473907,-0.692619979381561,0.563483655452728,0.416101396083832,-0.713684618473053,0.845793783664703,0.331601172685623,-0.417939811944962,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.586945712566376,0.315013289451599,-0.745829284191132,0.778241574764252,0.403277993202209,-0.481359392404556,0.845793783664703,0.331601172685623,-0.417939811944962,0.563483655452728,0.416101396083832,-0.713684618473053,0.578270196914673,0.275099962949753,-0.768064856529236,0.671574234962463,0.445546746253967,-0.592010259628296,0.778241574764252,0.403277993202209,-0.481359392404556,0.586945712566376,0.315013289451599,-0.745829284191132,0.578391373157501,0.257413566112518,-0.774081289768219,0.56823718547821,0.494539618492126,-0.657675504684448,0.671574234962463,0.445546746253967,-0.592010259628296,0.578270196914673,0.275099962949753,-0.768064856529236, -0.58739972114563,0.257034152746201,-0.767394959926605,0.528667986392975,0.495006203651428,-0.68954986333847,0.56823718547821,0.494539618492126,-0.657675504684448,0.578391373157501,0.257413566112518,-0.774081289768219,0.471768319606781,0.292233258485794,-0.831885993480682,0.29339337348938,0.577668726444244,-0.761721134185791,0.528667986392975,0.495006203651428,-0.68954986333847,0.58739972114563,0.257034152746201,-0.767394959926605,0.241891622543335,0.338840007781982,-0.909217238426208,0.00850844662636518,0.627050518989563,-0.778932094573975,0.29339337348938,0.577668726444244,-0.761721134185791,0.471768319606781,0.292233258485794,-0.831885993480682,0.112730331718922,0.375972926616669,-0.919747948646545,-0.0209043622016907,0.648062288761139,-0.761300325393677,0.00850844662636518,0.627050518989563,-0.778932094573975,0.241891622543335,0.338840007781982,-0.909217238426208,0.0816355124115944,0.38482540845871,-0.919372081756592,0.0730484277009964,0.663973748683929,-0.744179308414459,-0.0209043622016907,0.648062288761139,-0.761300325393677,0.112730331718922,0.375972926616669,-0.919747948646545,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,0.0730484277009964,0.663973748683929,-0.744179308414459,0.0816355124115944,0.38482540845871,-0.919372081756592,-0.0285964030772448,-0.448204517364502,-0.893473565578461,-0.142273917794228,-0.833896338939667,-0.533268332481384,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,0.714449048042297,-0.387402921915054,-0.582650482654572,0.841986060142517,-0.49426481127739,-0.21624481678009,0.791927695274353,-0.557654678821564,-0.248740687966347,0.700498878955841,-0.367755383253098,-0.611602127552032,0.657751321792603,-0.360926240682602,-0.661132037639618,0.725681900978088,-0.606068789958954,-0.32567834854126,0.677578866481781,-0.636642932891846,-0.368201822042465,0.627916812896729,-0.361263185739517,-0.689354300498962,0.627916812896729,-0.361263185739517,-0.689354300498962, -0.677578866481781,-0.636642932891846,-0.368201822042465,0.58957314491272,-0.677521884441376,-0.439735770225525,0.544105112552643,-0.371156424283981,-0.752457559108734,0.544105112552643,-0.371156424283981,-0.752457559108734,0.58957314491272,-0.677521884441376,-0.439735770225525,0.361980944871902,-0.782905459403992,-0.505992889404297,0.324519008398056,-0.418067187070847,-0.848473489284515,0.324519008398056,-0.418067187070847,-0.848473489284515,0.361980944871902,-0.782905459403992,-0.505992889404297,0.118109293282032,-0.8403200507164,-0.529067516326904,0.154667645692825,-0.442441701889038,-0.883359014987946,0.154667645692825,-0.442441701889038,-0.883359014987946,0.118109293282032,-0.8403200507164,-0.529067516326904,-0.142273917794228,-0.833896338939667,-0.533268332481384,-0.0285964030772448,-0.448204517364502,-0.893473565578461,0.700498878955841,-0.367755383253098,-0.611602127552032,0.791927695274353,-0.557654678821564,-0.248740687966347,0.725681900978088,-0.606068789958954,-0.32567834854126,0.657751321792603,-0.360926240682602,-0.661132037639618,0.829704761505127,-0.297910153865814,-0.472058743238449,0.926309108734131,-0.340794384479523,-0.160656705498695,0.841986060142517,-0.49426481127739,-0.21624481678009,0.714449048042297,-0.387402921915054,-0.582650482654572,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.926309108734131,-0.340794384479523,-0.160656705498695,0.829704761505127,-0.297910153865814,-0.472058743238449,0.845793783664703,0.331601172685623,-0.417939811944962,0.93540495634079,0.237250551581383,-0.262163519859314,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.778241574764252,0.403277993202209,-0.481359392404556,0.857928097248077,0.377771407365799,-0.34820693731308,0.93540495634079,0.237250551581383,-0.262163519859314,0.845793783664703,0.331601172685623,-0.417939811944962,0.671574234962463,0.445546746253967,-0.592010259628296,0.747376799583435,0.487252533435822,-0.451677888631821, -0.857928097248077,0.377771407365799,-0.34820693731308,0.778241574764252,0.403277993202209,-0.481359392404556,0.56823718547821,0.494539618492126,-0.657675504684448,0.557595491409302,0.625448524951935,-0.545803368091583,0.747376799583435,0.487252533435822,-0.451677888631821,0.671574234962463,0.445546746253967,-0.592010259628296,0.528667986392975,0.495006203651428,-0.68954986333847,0.376601874828339,0.724782347679138,-0.576941668987274,0.557595491409302,0.625448524951935,-0.545803368091583,0.56823718547821,0.494539618492126,-0.657675504684448,0.29339337348938,0.577668726444244,-0.761721134185791,0.0293780453503132,0.820863783359528,-0.570367753505707,0.376601874828339,0.724782347679138,-0.576941668987274,0.528667986392975,0.495006203651428,-0.68954986333847,0.00850844662636518,0.627050518989563,-0.778932094573975,-0.318089455366135,0.821739256381989,-0.472825407981873,0.0293780453503132,0.820863783359528,-0.570367753505707,0.29339337348938,0.577668726444244,-0.761721134185791,-0.0209043622016907,0.648062288761139,-0.761300325393677,-0.214610368013382,0.864416241645813,-0.454672396183014,-0.318089455366135,0.821739256381989,-0.472825407981873,0.00850844662636518,0.627050518989563,-0.778932094573975,0.0730484277009964,0.663973748683929,-0.744179308414459,0.0425951853394508,0.888551950454712,-0.456794202327728,-0.214610368013382,0.864416241645813,-0.454672396183014,-0.0209043622016907,0.648062288761139,-0.761300325393677,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,0.0425951853394508,0.888551950454712,-0.456794202327728,0.0730484277009964,0.663973748683929,-0.744179308414459,-0.142273917794228,-0.833896338939667,-0.533268332481384,-0.234723791480064,-0.972028970718384,-0.00802458077669144,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,0.841986060142517,-0.49426481127739,-0.21624481678009,0.86516010761261,-0.455062478780746,0.210751533508301,0.81127405166626,-0.551212430000305,0.194934129714966, -0.791927695274353,-0.557654678821564,-0.248740687966347,0.725681900978088,-0.606068789958954,-0.32567834854126,0.736273646354675,-0.65964686870575,0.15088777244091,0.685998976230621,-0.719344675540924,0.109309673309326,0.677578866481781,-0.636642932891846,-0.368201822042465,0.677578866481781,-0.636642932891846,-0.368201822042465,0.685998976230621,-0.719344675540924,0.109309673309326,0.59903222322464,-0.799202442169189,0.0493554137647152,0.58957314491272,-0.677521884441376,-0.439735770225525,0.58957314491272,-0.677521884441376,-0.439735770225525,0.59903222322464,-0.799202442169189,0.0493554137647152,0.379548043012619,-0.924991965293884,0.0182504169642925,0.361980944871902,-0.782905459403992,-0.505992889404297,0.361980944871902,-0.782905459403992,-0.505992889404297,0.379548043012619,-0.924991965293884,0.0182504169642925,0.0856686681509018,-0.996267199516296,0.0106057124212384,0.118109293282032,-0.8403200507164,-0.529067516326904,0.118109293282032,-0.8403200507164,-0.529067516326904,0.0856686681509018,-0.996267199516296,0.0106057124212384,-0.234723791480064,-0.972028970718384,-0.00802458077669144,-0.142273917794228,-0.833896338939667,-0.533268332481384,0.791927695274353,-0.557654678821564,-0.248740687966347,0.81127405166626,-0.551212430000305,0.194934129714966,0.736273646354675,-0.65964686870575,0.15088777244091,0.725681900978088,-0.606068789958954,-0.32567834854126,0.926309108734131,-0.340794384479523,-0.160656705498695,0.946672141551971,-0.257797360420227,0.19326750934124,0.86516010761261,-0.455062478780746,0.210751533508301,0.841986060142517,-0.49426481127739,-0.21624481678009,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.992025136947632,-0.0135554866865277,0.125308886170387,0.946672141551971,-0.257797360420227,0.19326750934124,0.926309108734131,-0.340794384479523,-0.160656705498695,0.93540495634079,0.237250551581383,-0.262163519859314,0.97174334526062,0.23603567481041,0.00144338794052601,0.992025136947632,-0.0135554866865277,0.125308886170387,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.857928097248077,0.377771407365799,-0.34820693731308, -0.908927142620087,0.406034469604492,-0.0948028340935707,0.97174334526062,0.23603567481041,0.00144338794052601,0.93540495634079,0.237250551581383,-0.262163519859314,0.747376799583435,0.487252533435822,-0.451677888631821,0.774248361587524,0.582248449325562,-0.248044982552528,0.908927142620087,0.406034469604492,-0.0948028340935707,0.857928097248077,0.377771407365799,-0.34820693731308,0.557595491409302,0.625448524951935,-0.545803368091583,0.494146764278412,0.774464547634125,-0.394998282194138,0.774248361587524,0.582248449325562,-0.248044982552528,0.747376799583435,0.487252533435822,-0.451677888631821,0.376601874828339,0.724782347679138,-0.576941668987274,0.139661565423012,0.872599422931671,-0.468043655157089,0.494146764278412,0.774464547634125,-0.394998282194138,0.557595491409302,0.625448524951935,-0.545803368091583,0.0293780453503132,0.820863783359528,-0.570367753505707,-0.217602789402008,0.862488985061646,-0.45690444111824,0.139661565423012,0.872599422931671,-0.468043655157089,0.376601874828339,0.724782347679138,-0.576941668987274,-0.318089455366135,0.821739256381989,-0.472825407981873,-0.506362676620483,0.781843066215515,-0.363755911588669,-0.217602789402008,0.862488985061646,-0.45690444111824,0.0293780453503132,0.820863783359528,-0.570367753505707,-0.214610368013382,0.864416241645813,-0.454672396183014,-0.349090456962585,0.866576611995697,-0.35662430524826,-0.506362676620483,0.781843066215515,-0.363755911588669,-0.318089455366135,0.821739256381989,-0.472825407981873,0.0425951853394508,0.888551950454712,-0.456794202327728,0.0188644248992205,0.93314516544342,-0.35900467634201,-0.349090456962585,0.866576611995697,-0.35662430524826,-0.214610368013382,0.864416241645813,-0.454672396183014,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,2.52106922005169e-08,0.935736477375031,-0.352700024843216,0.0188644248992205,0.93314516544342,-0.35900467634201,0.0425951853394508,0.888551950454712,-0.456794202327728,-0.271395593881607,-0.894916951656342,0.35421484708786,-0.26407516002655,-0.547405004501343,0.794110834598541, -0,-0.464990794658661,0.885315537452698,-3.02580502875571e-08,-0.923264861106873,0.384164065122604,0.876293063163757,-0.386514931917191,0.287604868412018,0.762011110782623,-0.166618525981903,0.625761330127716,0.682523310184479,-0.250711411237717,0.686517059803009,0.826429128646851,-0.469586133956909,0.310650587081909,0.747309625148773,-0.577578604221344,0.328528881072998,0.575405716896057,-0.334927320480347,0.746144711971283,0.503849029541016,-0.388366401195526,0.771561920642853,0.695017695426941,-0.638643980026245,0.330279171466827,0.695017695426941,-0.638643980026245,0.330279171466827,0.503849029541016,-0.388366401195526,0.771561920642853,0.452944487333298,-0.465957880020142,0.760081946849823,0.601116895675659,-0.726306319236755,0.333373248577118,0.601116895675659,-0.726306319236755,0.333373248577118,0.452944487333298,-0.465957880020142,0.760081946849823,0.281940132379532,-0.521386981010437,0.805397570133209,0.38341099023819,-0.850178182125092,0.360822707414627,0.38341099023819,-0.850178182125092,0.360822707414627,0.281940132379532,-0.521386981010437,0.805397570133209,0.0131181590259075,-0.542192041873932,0.840152144432068,0.0720963105559349,-0.922054409980774,0.380286365747452,0.0720963105559349,-0.922054409980774,0.380286365747452,0.0131181590259075,-0.542192041873932,0.840152144432068,-0.26407516002655,-0.547405004501343,0.794110834598541,-0.271395593881607,-0.894916951656342,0.35421484708786,0.826429128646851,-0.469586133956909,0.310650587081909,0.682523310184479,-0.250711411237717,0.686517059803009,0.575405716896057,-0.334927320480347,0.746144711971283,0.747309625148773,-0.577578604221344,0.328528881072998,0.949437916278839,-0.215037569403648,0.228749454021454,0.875040590763092,-0.0363671258091927,0.482681632041931,0.762011110782623,-0.166618525981903,0.625761330127716,0.876293063163757,-0.386514931917191,0.287604868412018,0.991393685340881,-0.0117725878953934,0.130384132266045,0.931641757488251,0.146454691886902,0.332557708024979,0.875040590763092,-0.0363671258091927,0.482681632041931,0.949437916278839,-0.215037569403648,0.228749454021454, -0.978284358978271,0.206213906407356,0.0208684783428907,0.939383327960968,0.307013362646103,0.152649343013763,0.931641757488251,0.146454691886902,0.332557708024979,0.991393685340881,-0.0117725878953934,0.130384132266045,0.921564877033234,0.377173900604248,-0.0919675901532173,0.877217411994934,0.478273332118988,0.0417625308036804,0.939383327960968,0.307013362646103,0.152649343013763,0.978284358978271,0.206213906407356,0.0208684783428907,0.773005664348602,0.60207599401474,-0.19991660118103,0.737073123455048,0.654871702194214,-0.166932180523872,0.877217411994934,0.478273332118988,0.0417625308036804,0.921564877033234,0.377173900604248,-0.0919675901532173,0.400419443845749,0.853491067886353,-0.333492338657379,0.395730227231979,0.839276790618896,-0.372843235731125,0.737073123455048,0.654871702194214,-0.166932180523872,0.773005664348602,0.60207599401474,-0.19991660118103,-0.101070150732994,0.919841825962067,-0.379046142101288,-0.128467231988907,0.860839247703552,-0.492394238710403,0.395730227231979,0.839276790618896,-0.372843235731125,0.400419443845749,0.853491067886353,-0.333492338657379,-0.456542074680328,0.826078832149506,-0.330398350954056,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.128467231988907,0.860839247703552,-0.492394238710403,-0.101070150732994,0.919841825962067,-0.379046142101288,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.62518972158432,0.655074954032898,-0.424281060695648,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.456542074680328,0.826078832149506,-0.330398350954056,-0.419228762388229,0.851044833660126,-0.316180527210236,-0.430703699588776,0.765645563602448,-0.47778794169426,-0.62518972158432,0.655074954032898,-0.424281060695648,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.00069262960460037,0.942585170269012,-0.333965301513672,-0.00734906317666173,0.859205365180969,-0.511577963829041,-0.430703699588776,0.765645563602448,-0.47778794169426,-0.419228762388229,0.851044833660126,-0.316180527210236,-3.55305864729871e-08,0.944239854812622,-0.329258650541306, -1.56375783433305e-08,0.863422572612762,-0.504481375217438,-0.00734906317666173,0.859205365180969,-0.511577963829041,-0.00069262960460037,0.942585170269012,-0.333965301513672,-0.26407516002655,-0.547405004501343,0.794110834598541,-0.183962509036064,-0.0350325591862202,0.982308685779572,3.17806012617439e-08,-0.0365307778120041,0.99933248758316,0,-0.464990794658661,0.885315537452698,0.0131181590259075,-0.542192041873932,0.840152144432068,-0.0766318291425705,-0.0284375138580799,0.996653854846954,-0.183962509036064,-0.0350325591862202,0.982308685779572,-0.26407516002655,-0.547405004501343,0.794110834598541,0.281940132379532,-0.521386981010437,0.805397570133209,0.0148814963176847,-0.020852068439126,0.999671876430511,-0.0766318291425705,-0.0284375138580799,0.996653854846954,0.0131181590259075,-0.542192041873932,0.840152144432068,0.452944487333298,-0.465957880020142,0.760081946849823,0.0173269528895617,-0.0208762809634209,0.999631881713867,0.0148814963176847,-0.020852068439126,0.999671876430511,0.281940132379532,-0.521386981010437,0.805397570133209,0.503849029541016,-0.388366401195526,0.771561920642853,0.0708390399813652,-0.00593735510483384,0.997470021247864,0.0173269528895617,-0.0208762809634209,0.999631881713867,0.452944487333298,-0.465957880020142,0.760081946849823,0.575405716896057,-0.334927320480347,0.746144711971283,0.13260954618454,0.0103374812752008,0.991114377975464,0.0708390399813652,-0.00593735510483384,0.997470021247864,0.503849029541016,-0.388366401195526,0.771561920642853,0.682523310184479,-0.250711411237717,0.686517059803009,0.250808626413345,0.0652036815881729,0.965838193893433,0.13260954618454,0.0103374812752008,0.991114377975464,0.575405716896057,-0.334927320480347,0.746144711971283,0.762011110782623,-0.166618525981903,0.625761330127716,0.371559083461761,0.120893597602844,0.920504510402679,0.250808626413345,0.0652036815881729,0.965838193893433,0.682523310184479,-0.250711411237717,0.686517059803009,0.875040590763092,-0.0363671258091927,0.482681632041931,0.503628790378571,0.228875398635864,0.833051025867462, -0.371559083461761,0.120893597602844,0.920504510402679,0.762011110782623,-0.166618525981903,0.625761330127716,0.931641757488251,0.146454691886902,0.332557708024979,0.645216703414917,0.364714354276657,0.671326100826263,0.503628790378571,0.228875398635864,0.833051025867462,0.875040590763092,-0.0363671258091927,0.482681632041931,0.939383327960968,0.307013362646103,0.152649343013763,0.708086907863617,0.491773962974548,0.506726145744324,0.645216703414917,0.364714354276657,0.671326100826263,0.931641757488251,0.146454691886902,0.332557708024979,0.877217411994934,0.478273332118988,0.0417625308036804,0.701581478118896,0.661462426185608,0.265049010515213,0.708086907863617,0.491773962974548,0.506726145744324,0.939383327960968,0.307013362646103,0.152649343013763,0.737073123455048,0.654871702194214,-0.166932180523872,0.576871156692505,0.815990269184113,-0.0371435061097145,0.701581478118896,0.661462426185608,0.265049010515213,0.877217411994934,0.478273332118988,0.0417625308036804,0.395730227231979,0.839276790618896,-0.372843235731125,0.23839108645916,0.898507952690125,-0.368582457304001,0.576871156692505,0.815990269184113,-0.0371435061097145,0.737073123455048,0.654871702194214,-0.166932180523872,-0.128467231988907,0.860839247703552,-0.492394238710403,-0.137437075376511,0.811269104480743,-0.568289935588837,0.23839108645916,0.898507952690125,-0.368582457304001,0.395730227231979,0.839276790618896,-0.372843235731125,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.440458625555038,0.66471540927887,-0.603448033332825,-0.137437075376511,0.811269104480743,-0.568289935588837,-0.128467231988907,0.860839247703552,-0.492394238710403,-0.62518972158432,0.655074954032898,-0.424281060695648,-0.56741863489151,0.567031741142273,-0.597085416316986,-0.440458625555038,0.66471540927887,-0.603448033332825,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.430703699588776,0.765645563602448,-0.47778794169426,-0.368260383605957,0.667870283126831,-0.646787047386169,-0.56741863489151,0.567031741142273,-0.597085416316986,-0.62518972158432,0.655074954032898,-0.424281060695648, --0.00734906317666173,0.859205365180969,-0.511577963829041,0.0092336917296052,0.746861457824707,-0.664915561676025,-0.368260383605957,0.667870283126831,-0.646787047386169,-0.430703699588776,0.765645563602448,-0.47778794169426,1.56375783433305e-08,0.863422572612762,-0.504481375217438,6.30018490710427e-08,0.75485759973526,-0.655888676643372,0.0092336917296052,0.746861457824707,-0.664915561676025,-0.00734906317666173,0.859205365180969,-0.511577963829041,-0.234723791480064,-0.972028970718384,-0.00802458077669144,-0.271395593881607,-0.894916951656342,0.35421484708786,-3.02580502875571e-08,-0.923264861106873,0.384164065122604,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,0.0856686681509018,-0.996267199516296,0.0106057124212384,0.0720963105559349,-0.922054409980774,0.380286365747452,-0.271395593881607,-0.894916951656342,0.35421484708786,-0.234723791480064,-0.972028970718384,-0.00802458077669144,0.379548043012619,-0.924991965293884,0.0182504169642925,0.38341099023819,-0.850178182125092,0.360822707414627,0.0720963105559349,-0.922054409980774,0.380286365747452,0.0856686681509018,-0.996267199516296,0.0106057124212384,0.59903222322464,-0.799202442169189,0.0493554137647152,0.601116895675659,-0.726306319236755,0.333373248577118,0.38341099023819,-0.850178182125092,0.360822707414627,0.379548043012619,-0.924991965293884,0.0182504169642925,0.685998976230621,-0.719344675540924,0.109309673309326,0.695017695426941,-0.638643980026245,0.330279171466827,0.601116895675659,-0.726306319236755,0.333373248577118,0.59903222322464,-0.799202442169189,0.0493554137647152,0.736273646354675,-0.65964686870575,0.15088777244091,0.747309625148773,-0.577578604221344,0.328528881072998,0.695017695426941,-0.638643980026245,0.330279171466827,0.685998976230621,-0.719344675540924,0.109309673309326,0.81127405166626,-0.551212430000305,0.194934129714966,0.826429128646851,-0.469586133956909,0.310650587081909,0.747309625148773,-0.577578604221344,0.328528881072998,0.736273646354675,-0.65964686870575,0.15088777244091,0.86516010761261,-0.455062478780746,0.210751533508301, -0.876293063163757,-0.386514931917191,0.287604868412018,0.826429128646851,-0.469586133956909,0.310650587081909,0.81127405166626,-0.551212430000305,0.194934129714966,0.946672141551971,-0.257797360420227,0.19326750934124,0.949437916278839,-0.215037569403648,0.228749454021454,0.876293063163757,-0.386514931917191,0.287604868412018,0.86516010761261,-0.455062478780746,0.210751533508301,0.992025136947632,-0.0135554866865277,0.125308886170387,0.991393685340881,-0.0117725878953934,0.130384132266045,0.949437916278839,-0.215037569403648,0.228749454021454,0.946672141551971,-0.257797360420227,0.19326750934124,0.97174334526062,0.23603567481041,0.00144338794052601,0.978284358978271,0.206213906407356,0.0208684783428907,0.991393685340881,-0.0117725878953934,0.130384132266045,0.992025136947632,-0.0135554866865277,0.125308886170387,0.908927142620087,0.406034469604492,-0.0948028340935707,0.921564877033234,0.377173900604248,-0.0919675901532173,0.978284358978271,0.206213906407356,0.0208684783428907,0.97174334526062,0.23603567481041,0.00144338794052601,0.774248361587524,0.582248449325562,-0.248044982552528,0.773005664348602,0.60207599401474,-0.19991660118103,0.921564877033234,0.377173900604248,-0.0919675901532173,0.908927142620087,0.406034469604492,-0.0948028340935707,0.494146764278412,0.774464547634125,-0.394998282194138,0.400419443845749,0.853491067886353,-0.333492338657379,0.773005664348602,0.60207599401474,-0.19991660118103,0.774248361587524,0.582248449325562,-0.248044982552528,0.139661565423012,0.872599422931671,-0.468043655157089,-0.101070150732994,0.919841825962067,-0.379046142101288,0.400419443845749,0.853491067886353,-0.333492338657379,0.494146764278412,0.774464547634125,-0.394998282194138,-0.217602789402008,0.862488985061646,-0.45690444111824,-0.456542074680328,0.826078832149506,-0.330398350954056,-0.101070150732994,0.919841825962067,-0.379046142101288,0.139661565423012,0.872599422931671,-0.468043655157089,-0.506362676620483,0.781843066215515,-0.363755911588669,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.456542074680328,0.826078832149506,-0.330398350954056, --0.217602789402008,0.862488985061646,-0.45690444111824,-0.349090456962585,0.866576611995697,-0.35662430524826,-0.419228762388229,0.851044833660126,-0.316180527210236,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.506362676620483,0.781843066215515,-0.363755911588669,0.0188644248992205,0.93314516544342,-0.35900467634201,-0.00069262960460037,0.942585170269012,-0.333965301513672,-0.419228762388229,0.851044833660126,-0.316180527210236,-0.349090456962585,0.866576611995697,-0.35662430524826,2.52106922005169e-08,0.935736477375031,-0.352700024843216,-3.55305864729871e-08,0.944239854812622,-0.329258650541306,-0.00069262960460037,0.942585170269012,-0.333965301513672,0.0188644248992205,0.93314516544342,-0.35900467634201,0.613759577274323,-0.0553232282400131,0.787552237510681,0.575852811336517,-0.486751854419708,0.656860768795013,0.491462111473083,-0.292720168828964,0.82023161649704,0.632292747497559,0.0173319820314646,0.774535715579987,0.0368634201586246,-0.304008036851883,0.95195597410202,0.187886357307434,-0.371577531099319,0.909191310405731,0.383882284164429,-0.603094279766083,0.699222147464752,0.274986296892166,-0.651024580001831,0.707495212554932,0.0350082777440548,-0.172622829675674,0.98436564207077,0.0368634201586246,-0.304008036851883,0.95195597410202,0.274986296892166,-0.651024580001831,0.707495212554932,0.275654345750809,-0.681295096874237,0.678123593330383,0.0501973144710064,-0.124382235109806,0.990963816642761,0.0350082777440548,-0.172622829675674,0.98436564207077,0.275654345750809,-0.681295096874237,0.678123593330383,0.147971019148827,-0.704563796520233,0.694042086601257,0.134436830878258,-0.039139598608017,0.990148901939392,0.0501973144710064,-0.124382235109806,0.990963816642761,0.147971019148827,-0.704563796520233,0.694042086601257,0.0575017705559731,-0.60280305147171,0.795815229415894,0.290516257286072,0.00602072011679411,0.956851124763489,0.134436830878258,-0.039139598608017,0.990148901939392,0.0575017705559731,-0.60280305147171,0.795815229415894,0.134694382548332,-0.463504552841187,0.87579733133316, -0.499967753887177,-0.163535639643669,0.850463688373566,0.433234065771103,-0.0361165516078472,0.900557518005371,0.295082241296768,-0.404272556304932,0.865731000900269,0.346632272005081,-0.449827909469604,0.823104381561279,0.521048605442047,-0.286888778209686,0.803867697715759,0.499967753887177,-0.163535639643669,0.850463688373566,0.346632272005081,-0.449827909469604,0.823104381561279,0.370025664567947,-0.503738164901733,0.780595183372498,0.483332127332687,-0.396166235208511,0.780667901039124,0.521048605442047,-0.286888778209686,0.803867697715759,0.370025664567947,-0.503738164901733,0.780595183372498,0.380609661340714,-0.54610675573349,0.746259808540344,0.395630598068237,-0.462299972772598,0.7935711145401,0.483332127332687,-0.396166235208511,0.780667901039124,0.380609661340714,-0.54610675573349,0.746259808540344,0.323241502046585,-0.60172700881958,0.730369389057159,0.433234065771103,-0.0361165516078472,0.900557518005371,0.290516257286072,0.00602072011679411,0.956851124763489,0.134694382548332,-0.463504552841187,0.87579733133316,0.295082241296768,-0.404272556304932,0.865731000900269,0.154182031750679,0.399146050214767,0.903830885887146,0.613759577274323,-0.0553232282400131,0.787552237510681,0.632292747497559,0.0173319820314646,0.774535715579987,0.347748458385468,0.297606498003006,0.889101445674896,-0.199233904480934,0.285865694284439,0.937329471111298,-0.190354779362679,0.393678396940231,0.899323225021362,-0.0414680913090706,0.321205735206604,0.946101069450378,-0.130271911621094,0.17735555768013,0.975486636161804,-0.190354779362679,0.393678396940231,0.899323225021362,0.154182031750679,0.399146050214767,0.903830885887146,0.347748458385468,0.297606498003006,0.889101445674896,-0.0414680913090706,0.321205735206604,0.946101069450378,0.187886357307434,-0.371577531099319,0.909191310405731,0.491462111473083,-0.292720168828964,0.82023161649704,0.575852811336517,-0.486751854419708,0.656860768795013,0.383882284164429,-0.603094279766083,0.699222147464752,-0.0863350555300713,0.219253152608871,0.971840679645538,-0.199233904480934,0.285865694284439,0.937329471111298, --0.130271911621094,0.17735555768013,0.975486636161804,-0.076492615044117,-0.000426677463110536,0.997070133686066,0.0321443751454353,0.215293377637863,0.976020216941833,-0.0863350555300713,0.219253152608871,0.971840679645538,-0.076492615044117,-0.000426677463110536,0.997070133686066,0.0484236851334572,-0.126815900206566,0.990743577480316,0.244830623269081,0.239294216036797,0.939572274684906,0.0321443751454353,0.215293377637863,0.976020216941833,0.0484236851334572,-0.126815900206566,0.990743577480316,0.290365815162659,-0.138251453638077,0.946876108646393,0.434168308973312,0.253190070390701,0.864518761634827,0.244830623269081,0.239294216036797,0.939572274684906,0.290365815162659,-0.138251453638077,0.946876108646393,0.501423418521881,-0.0618657283484936,0.862987399101257,0.552578508853912,0.248528689146042,0.795544147491455,0.434168308973312,0.253190070390701,0.864518761634827,0.501423418521881,-0.0618657283484936,0.862987399101257,0.591036200523376,0.0579320266842842,0.804562151432037,0.616995334625244,0.248676180839539,0.746643781661987,0.552578508853912,0.248528689146042,0.795544147491455,0.591036200523376,0.0579320266842842,0.804562151432037,0.60392564535141,0.156122982501984,0.781600594520569,0.578737139701843,0.225207775831223,0.7838014960289,0.616995334625244,0.248676180839539,0.746643781661987,0.60392564535141,0.156122982501984,0.781600594520569,0.57700127363205,0.190487146377563,0.794219255447388,0.487023502588272,0.129526108503342,0.86373096704483,0.578737139701843,0.225207775831223,0.7838014960289,0.57700127363205,0.190487146377563,0.794219255447388,0.487047553062439,0.000498084060382098,0.873375296592712,0.356094896793365,-0.327478647232056,0.875188052654266,0.487023502588272,0.129526108503342,0.86373096704483,0.487047553062439,0.000498084060382098,0.873375296592712,0.420201629400253,-0.298252731561661,0.8570157289505,0.420201629400253,-0.298252731561661,0.8570157289505,0.395630598068237,-0.462299972772598,0.7935711145401,0.323241502046585,-0.60172700881958,0.730369389057159,0.356094896793365,-0.327478647232056,0.875188052654266, -0.625528752803802,0.0949555560946465,0.774401128292084,0.579374969005585,-0.130316764116287,0.804575800895691,0.62228399515152,-0.106441542506218,0.775520920753479,0.699977993965149,0.105198934674263,0.706373870372772,0.579374969005585,-0.130316764116287,0.804575800895691,0.477636814117432,-0.315843403339386,0.819820702075958,0.442050814628601,-0.355755299329758,0.823425233364105,0.62228399515152,-0.106441542506218,0.775520920753479,0.477636814117432,-0.315843403339386,0.819820702075958,0.334927916526794,-0.421966195106506,0.842477142810822,0.380699098110199,-0.54412055015564,0.747663736343384,0.442050814628601,-0.355755299329758,0.823425233364105,0.820026814937592,0.130921140313148,0.557149529457092,0.795642733573914,0.111423671245575,0.595430374145508,0.891719162464142,0.173081129789352,0.418186485767365,0.875358283519745,0.225787833333015,0.427513301372528,0.80785346031189,0.132812395691872,0.574224293231964,0.820026814937592,0.130921140313148,0.557149529457092,0.875358283519745,0.225787833333015,0.427513301372528,0.873242199420929,0.179084986448288,0.453185141086578,0.768238186836243,0.109362043440342,0.630753576755524,0.80785346031189,0.132812395691872,0.574224293231964,0.873242199420929,0.179084986448288,0.453185141086578,0.844126224517822,0.131717905402184,0.519712865352631,0.699494361877441,0.129322603344917,0.702839374542236,0.768238186836243,0.109362043440342,0.630753576755524,0.844126224517822,0.131717905402184,0.519712865352631,0.766587615013123,0.116328589618206,0.631514847278595,0.528425633907318,0.181496202945709,0.829352378845215,0.699494361877441,0.129322603344917,0.702839374542236,0.766587615013123,0.116328589618206,0.631514847278595,0.609998941421509,0.0694049596786499,0.789356827735901,0.370503127574921,0.147420585155487,0.917057633399963,0.528425633907318,0.181496202945709,0.829352378845215,0.609998941421509,0.0694049596786499,0.789356827735901,0.475756406784058,-0.124915234744549,0.870661854743958,0.223360776901245,-0.0399122983217239,0.973918259143829,0.370503127574921,0.147420585155487,0.917057633399963, -0.475756406784058,-0.124915234744549,0.870661854743958,0.374557584524155,-0.459309250116348,0.805444955825806,0.19048398733139,-0.248873218894005,0.949619889259338,0.223360776901245,-0.0399122983217239,0.973918259143829,0.374557584524155,-0.459309250116348,0.805444955825806,0.365272045135498,-0.644276142120361,0.671926021575928,0.399061352014542,-0.637620508670807,0.658931016921997,0.255181282758713,-0.350356936454773,0.90118396282196,0.19048398733139,-0.248873218894005,0.949619889259338,0.365272045135498,-0.644276142120361,0.671926021575928,0.334927916526794,-0.421966195106506,0.842477142810822,0.255181282758713,-0.350356936454773,0.90118396282196,0.399061352014542,-0.637620508670807,0.658931016921997,0.380699098110199,-0.54412055015564,0.747663736343384,0.795642733573914,0.111423671245575,0.595430374145508,0.741437256336212,0.0652128756046295,0.667845726013184,0.88086724281311,0.0466531366109848,0.471058756113052,0.891719162464142,0.173081129789352,0.418186485767365,0.741437256336212,0.0652128756046295,0.667845726013184,0.69052255153656,0.0553218685090542,0.721192121505737,0.819737493991852,-0.0587895140051842,0.569714248180389,0.88086724281311,0.0466531366109848,0.471058756113052,0.69052255153656,0.0553218685090542,0.721192121505737,0.643218159675598,0.0473933406174183,0.764214813709259,0.743377506732941,-0.0995368584990501,0.661424338817596,0.819737493991852,-0.0587895140051842,0.569714248180389,0.643218159675598,0.0473933406174183,0.764214813709259,0.580971300601959,0.000804972019977868,0.81392377614975,0.657937824726105,-0.0946975871920586,0.747094452381134,0.743377506732941,-0.0995368584990501,0.661424338817596,0.580971300601959,0.000804972019977868,0.81392377614975,0.47223624587059,-0.0109372045844793,0.881404221057892,0.524923145771027,-0.0342899076640606,0.850458741188049,0.657937824726105,-0.0946975871920586,0.747094452381134,0.47223624587059,-0.0109372045844793,0.881404221057892,0.321686059236526,0.00443004816770554,0.946836054325104,0.386915534734726,0.0745876654982567,0.919093608856201,0.524923145771027,-0.0342899076640606,0.850458741188049, -0.321686059236526,0.00443004816770554,0.946836054325104,0.226750269532204,0.0926256477832794,0.969538450241089,0.300739198923111,0.219192713499069,0.928175926208496,0.386915534734726,0.0745876654982567,0.919093608856201,0.226750269532204,0.0926256477832794,0.969538450241089,0.149907752871513,0.22834187746048,0.961970686912537,0.241420090198517,0.347718894481659,0.905984401702881,0.300739198923111,0.219192713499069,0.928175926208496,0.149907752871513,0.22834187746048,0.961970686912537,0.192397087812424,0.309196352958679,0.931332886219025,0.295458763837814,0.40319499373436,0.866105020046234,0.241420090198517,0.347718894481659,0.905984401702881,0.192397087812424,0.309196352958679,0.931332886219025,0.387087315320969,0.35172712802887,0.852321207523346,0.483116030693054,0.378075450658798,0.789720058441162,0.295458763837814,0.40319499373436,0.866105020046234,0.545160353183746,0.28033983707428,0.790069401264191,0.625528752803802,0.0949555560946465,0.774401128292084,0.699977993965149,0.105198934674263,0.706373870372772,0.635390818119049,0.277111440896988,0.720755100250244,0.387087315320969,0.35172712802887,0.852321207523346,0.545160353183746,0.28033983707428,0.790069401264191,0.635390818119049,0.277111440896988,0.720755100250244,0.483116030693054,0.378075450658798,0.789720058441162,-9.54276870857029e-08,0.46919858455658,0.883092641830444,-4.4512784569406e-08,0.194622755050659,0.980878174304962,0.440599530935287,0.18112014234066,0.879242599010468,0.427030682563782,0.423026651144028,0.799182832241058,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,-8.14389480296995e-08,-0.502702832221985,0.864459335803986,0.170562997460365,-0.404366940259933,0.898552000522614,0.161506175994873,-0.13939642906189,0.976977169513702,0.577886879444122,-0.498515278100967,0.646165132522583,0.523585915565491,-0.50529271364212,0.685957074165344,0.542861461639404,-0.377595067024231,0.750148892402649,0.63982105255127,-0.326441437005997,0.695747852325439,0.524286150932312,-0.359266400337219,0.772043883800507,0.569905579090118,-0.442883878946304,0.6921426653862, -0.648984372615814,-0.224779918789864,0.726837873458862,0.587399959564209,-0.149358853697777,0.795394957065582,0.458856850862503,-0.295015305280685,0.8381028175354,0.524286150932312,-0.359266400337219,0.772043883800507,0.587399959564209,-0.149358853697777,0.795394957065582,0.517772436141968,-0.100642681121826,0.849577963352203,0.357956409454346,-0.279420077800751,0.890949845314026,0.458856850862503,-0.295015305280685,0.8381028175354,0.517772436141968,-0.100642681121826,0.849577963352203,0.416105180978775,-0.0872008353471756,0.905125617980957,0.263805508613586,-0.324460804462433,0.908367693424225,0.357956409454346,-0.279420077800751,0.890949845314026,0.416105180978775,-0.0872008353471756,0.905125617980957,0.283784985542297,-0.100370101630688,0.953620374202728,0.161506175994873,-0.13939642906189,0.976977169513702,0.170562997460365,-0.404366940259933,0.898552000522614,0.263805508613586,-0.324460804462433,0.908367693424225,0.283784985542297,-0.100370101630688,0.953620374202728,0.648984372615814,-0.224779918789864,0.726837873458862,0.569905579090118,-0.442883878946304,0.6921426653862,0.577886879444122,-0.498515278100967,0.646165132522583,0.63982105255127,-0.326441437005997,0.695747852325439,0.523585915565491,-0.50529271364212,0.685957074165344,0.249853223562241,-0.417165219783783,0.873811483383179,0.278689593076706,-0.323656469583511,0.904200494289398,0.542861461639404,-0.377595067024231,0.750148892402649,0.249853223562241,-0.417165219783783,0.873811483383179,0.172889739274979,-0.396294206380844,0.901698410511017,0.211436629295349,-0.330257833003998,0.919904589653015,0.278689593076706,-0.323656469583511,0.904200494289398,0.172889739274979,-0.396294206380844,0.901698410511017,0.181575134396553,-0.344820976257324,0.920939207077026,0.179459974169731,-0.331311762332916,0.926297307014465,0.211436629295349,-0.330257833003998,0.919904589653015,0.181575134396553,-0.344820976257324,0.920939207077026,0.555300772190094,-0.227197304368019,0.800014019012451,0.457515299320221,-0.22873067855835,0.859279990196228,0.179459974169731,-0.331311762332916,0.926297307014465, -0.652515351772308,-0.172068640589714,0.737981021404266,0.457515299320221,-0.22873067855835,0.859279990196228,0.555300772190094,-0.227197304368019,0.800014019012451,0.697688281536102,-0.154478386044502,0.699548006057739,0.652515351772308,-0.172068640589714,0.737981021404266,0.697688281536102,-0.154478386044502,0.699548006057739,0.735670149326324,-0.0863335058093071,0.671815633773804,0.737166225910187,-0.154637187719345,0.657779157161713,0.735670149326324,-0.0863335058093071,0.671815633773804,0.697834551334381,0.000193950618267991,0.716259002685547,0.718691527843475,-0.158279180526733,0.677074670791626,0.737166225910187,-0.154637187719345,0.657779157161713,0.697834551334381,0.000193950618267991,0.716259002685547,0.578704178333282,0.0660680159926414,0.81285697221756,0.620512127876282,-0.170462161302567,0.76544588804245,0.718691527843475,-0.158279180526733,0.677074670791626,0.578704178333282,0.0660680159926414,0.81285697221756,0.377665132284164,0.11030812561512,0.919348180294037,0.442881882190704,-0.176023185253143,0.879131197929382,0.620512127876282,-0.170462161302567,0.76544588804245,0.377665132284164,0.11030812561512,0.919348180294037,0.198651626706123,0.136567875742912,0.970508515834808,0.242541566491127,-0.173334747552872,0.954530596733093,0.442881882190704,-0.176023185253143,0.879131197929382,0.198651626706123,0.136567875742912,0.970508515834808,0.0933130979537964,0.13879482448101,0.985915184020996,0.112910263240337,-0.179892241954803,0.977184772491455,0.242541566491127,-0.173334747552872,0.954530596733093,0.0933130979537964,0.13879482448101,0.985915184020996,-8.4368110719879e-07,0.104064725339413,0.994570553302765,-1.530000446337e-07,-0.212198525667191,0.977226614952087,0.112910263240337,-0.179892241954803,0.977184772491455,0.170562997460365,-0.404366940259933,0.898552000522614,-8.14389480296995e-08,-0.502702832221985,0.864459335803986,-5.37285060886461e-08,-0.762006878852844,0.647568941116333,0.12351680546999,-0.713964104652405,0.689201712608337,0.263805508613586,-0.324460804462433,0.908367693424225,0.170562997460365,-0.404366940259933,0.898552000522614, -0.12351680546999,-0.713964104652405,0.689201712608337,0.179283425211906,-0.639831066131592,0.747310936450958,0.179283425211906,-0.639831066131592,0.747310936450958,0.23452490568161,-0.560499131679535,0.794253587722778,0.357956409454346,-0.279420077800751,0.890949845314026,0.263805508613586,-0.324460804462433,0.908367693424225,0.23452490568161,-0.560499131679535,0.794253587722778,0.364493042230606,-0.523588597774506,0.770064771175385,0.458856850862503,-0.295015305280685,0.8381028175354,0.357956409454346,-0.279420077800751,0.890949845314026,0.364493042230606,-0.523588597774506,0.770064771175385,0.450171023607254,-0.560612738132477,0.695024847984314,0.524286150932312,-0.359266400337219,0.772043883800507,0.458856850862503,-0.295015305280685,0.8381028175354,0.450171023607254,-0.560612738132477,0.695024847984314,0.461659401655197,-0.657731831073761,0.595197021961212,0.569905579090118,-0.442883878946304,0.6921426653862,0.524286150932312,-0.359266400337219,0.772043883800507,0.577886879444122,-0.498515278100967,0.646165132522583,0.569905579090118,-0.442883878946304,0.6921426653862,0.461659401655197,-0.657731831073761,0.595197021961212,0.444360017776489,-0.714160025119781,0.540850877761841,0.444360017776489,-0.714160025119781,0.540850877761841,0.416853666305542,-0.709351301193237,0.568378210067749,0.523585915565491,-0.50529271364212,0.685957074165344,0.577886879444122,-0.498515278100967,0.646165132522583,0.416853666305542,-0.709351301193237,0.568378210067749,0.198796272277832,-0.571186482906342,0.796383082866669,0.249853223562241,-0.417165219783783,0.873811483383179,0.523585915565491,-0.50529271364212,0.685957074165344,0.198796272277832,-0.571186482906342,0.796383082866669,0.1450454890728,-0.49036180973053,0.85936439037323,0.172889739274979,-0.396294206380844,0.901698410511017,0.249853223562241,-0.417165219783783,0.873811483383179,0.1450454890728,-0.49036180973053,0.85936439037323,0.214211598038673,-0.36577895283699,0.905714690685272,0.181575134396553,-0.344820976257324,0.920939207077026,0.172889739274979,-0.396294206380844,0.901698410511017, -0.214211598038673,-0.36577895283699,0.905714690685272,0.603093087673187,-0.0955721437931061,0.791924655437469,0.555300772190094,-0.227197304368019,0.800014019012451,0.181575134396553,-0.344820976257324,0.920939207077026,0.697688281536102,-0.154478386044502,0.699548006057739,0.555300772190094,-0.227197304368019,0.800014019012451,0.603093087673187,-0.0955721437931061,0.791924655437469,0.702888667583466,0.073844738304615,0.707456350326538,0.735670149326324,-0.0863335058093071,0.671815633773804,0.697688281536102,-0.154478386044502,0.699548006057739,0.702888667583466,0.073844738304615,0.707456350326538,0.696915030479431,0.150848433375359,0.701109290122986,0.696915030479431,0.150848433375359,0.701109290122986,0.639413595199585,0.235928192734718,0.731770575046539,0.697834551334381,0.000193950618267991,0.716259002685547,0.735670149326324,-0.0863335058093071,0.671815633773804,0.639413595199585,0.235928192734718,0.731770575046539,0.520338833332062,0.302176594734192,0.798709452152252,0.578704178333282,0.0660680159926414,0.81285697221756,0.697834551334381,0.000193950618267991,0.716259002685547,0.520338833332062,0.302176594734192,0.798709452152252,0.307869166135788,0.363060057163239,0.879433870315552,0.377665132284164,0.11030812561512,0.919348180294037,0.578704178333282,0.0660680159926414,0.81285697221756,0.307869166135788,0.363060057163239,0.879433870315552,0.142265230417252,0.401025265455246,0.904952764511108,0.198651626706123,0.136567875742912,0.970508515834808,0.377665132284164,0.11030812561512,0.919348180294037,0.142265230417252,0.401025265455246,0.904952764511108,0.0595788769423962,0.412579774856567,0.908971130847931,0.0933130979537964,0.13879482448101,0.985915184020996,0.198651626706123,0.136567875742912,0.970508515834808,0.0595788769423962,0.412579774856567,0.908971130847931,-1.23364577575558e-06,0.405415445566177,0.914132475852966,-8.4368110719879e-07,0.104064725339413,0.994570553302765,0.0933130979537964,0.13879482448101,0.985915184020996,0.12351680546999,-0.713964104652405,0.689201712608337,-5.37285060886461e-08,-0.762006878852844,0.647568941116333, --2.19972790205247e-07,-0.946157574653625,0.323706299066544,0.0650140419602394,-0.929289102554321,0.363586246967316,0.179283425211906,-0.639831066131592,0.747310936450958,0.12351680546999,-0.713964104652405,0.689201712608337,0.0650140419602394,-0.929289102554321,0.363586246967316,0.0700104087591171,-0.918607831001282,0.388919323682785,0.0574995428323746,-0.920222818851471,0.38714811205864,0.23452490568161,-0.560499131679535,0.794253587722778,0.179283425211906,-0.639831066131592,0.747310936450958,0.0700104087591171,-0.918607831001282,0.388919323682785,0.0467730760574341,-0.957661151885986,0.28407296538353,0.364493042230606,-0.523588597774506,0.770064771175385,0.23452490568161,-0.560499131679535,0.794253587722778,0.0574995428323746,-0.920222818851471,0.38714811205864,0.0467730760574341,-0.957661151885986,0.28407296538353,0.0102759916335344,-0.987158536911011,0.159412860870361,0.450171023607254,-0.560612738132477,0.695024847984314,0.364493042230606,-0.523588597774506,0.770064771175385,0.0102759916335344,-0.987158536911011,0.159412860870361,0.0177787970751524,-0.991293430328369,0.13046595454216,0.461659401655197,-0.657731831073761,0.595197021961212,0.450171023607254,-0.560612738132477,0.695024847984314,0.444360017776489,-0.714160025119781,0.540850877761841,0.461659401655197,-0.657731831073761,0.595197021961212,0.0177787970751524,-0.991293430328369,0.13046595454216,0.0700248181819916,-0.992533087730408,0.0998731777071953,0.0700248181819916,-0.992533087730408,0.0998731777071953,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,0.416853666305542,-0.709351301193237,0.568378210067749,0.444360017776489,-0.714160025119781,0.540850877761841,-0.114908866584301,-0.963067054748535,-0.243511691689491,0.198796272277832,-0.571186482906342,0.796383082866669,0.416853666305542,-0.709351301193237,0.568378210067749,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,-0.786457419395447,-0.152120247483253,-0.598618507385254,0.1450454890728,-0.49036180973053,0.85936439037323,0.198796272277832,-0.571186482906342,0.796383082866669, --0.114908866584301,-0.963067054748535,-0.243511691689491,-0.193546488881111,0.969683647155762,-0.149175480008125,0.214211598038673,-0.36577895283699,0.905714690685272,0.1450454890728,-0.49036180973053,0.85936439037323,-0.786457419395447,-0.152120247483253,-0.598618507385254,0.369951128959656,0.895375072956085,0.24787038564682,0.603093087673187,-0.0955721437931061,0.791924655437469,0.214211598038673,-0.36577895283699,0.905714690685272,-0.193546488881111,0.969683647155762,-0.149175480008125,0.702888667583466,0.073844738304615,0.707456350326538,0.603093087673187,-0.0955721437931061,0.791924655437469,0.369951128959656,0.895375072956085,0.24787038564682,0.334255218505859,0.900808334350586,0.277160137891769,0.696915030479431,0.150848433375359,0.701109290122986,0.702888667583466,0.073844738304615,0.707456350326538,0.334255218505859,0.900808334350586,0.277160137891769,0.31908592581749,0.899403631687164,0.298759669065475,0.345288544893265,0.87969571352005,0.326972752809525,0.639413595199585,0.235928192734718,0.731770575046539,0.696915030479431,0.150848433375359,0.701109290122986,0.31908592581749,0.899403631687164,0.298759669065475,0.343751341104507,0.84628164768219,0.40699166059494,0.520338833332062,0.302176594734192,0.798709452152252,0.639413595199585,0.235928192734718,0.731770575046539,0.345288544893265,0.87969571352005,0.326972752809525,0.203538671135902,0.867182433605194,0.454496145248413,0.307869166135788,0.363060057163239,0.879433870315552,0.520338833332062,0.302176594734192,0.798709452152252,0.343751341104507,0.84628164768219,0.40699166059494,0.0728881284594536,0.860819280147552,0.503664135932922,0.142265230417252,0.401025265455246,0.904952764511108,0.307869166135788,0.363060057163239,0.879433870315552,0.203538671135902,0.867182433605194,0.454496145248413,0.0103098433464766,0.82647317647934,0.562881708145142,0.0595788769423962,0.412579774856567,0.908971130847931,0.142265230417252,0.401025265455246,0.904952764511108,0.0728881284594536,0.860819280147552,0.503664135932922,-4.3436074292913e-07,0.799352884292603,0.60086190700531, --1.23364577575558e-06,0.405415445566177,0.914132475852966,0.0595788769423962,0.412579774856567,0.908971130847931,0.0103098433464766,0.82647317647934,0.562881708145142,4.47424355343173e-07,0.53668475151062,0.843782901763916,-0.118451468646526,0.516582369804382,0.848004639148712,-0.071773074567318,0.317301362752914,0.945604801177979,6.76111312714056e-07,0.373505502939224,0.927627980709076,-0.071773074567318,0.317301362752914,0.945604801177979,-0.118451468646526,0.516582369804382,0.848004639148712,0.188545614480972,0.431141436100006,0.882364749908447,0.249449476599693,0.339983731508255,0.906744837760925,0.249449476599693,0.339983731508255,0.906744837760925,0.188545614480972,0.431141436100006,0.882364749908447,0.486899077892303,0.335813015699387,0.806324303150177,0.472561210393906,0.315939396619797,0.822720050811768,0.472561210393906,0.315939396619797,0.822720050811768,0.486899077892303,0.335813015699387,0.806324303150177,0.585523724555969,0.263874471187592,0.766506493091583,0.542253017425537,0.257057696580887,0.799926936626434,0.542253017425537,0.257057696580887,0.799926936626434,0.585523724555969,0.263874471187592,0.766506493091583,0.621779799461365,0.19699102640152,0.758013486862183,0.588205575942993,0.203771129250526,0.782618403434753,0.588205575942993,0.203771129250526,0.782618403434753,0.621779799461365,0.19699102640152,0.758013486862183,0.659780263900757,0.0826389640569687,0.746900856494904,0.623639523983002,0.151776775717735,0.766836106777191,0.623639523983002,0.151776775717735,0.766836106777191,0.659780263900757,0.0826389640569687,0.746900856494904,0.632755637168884,-0.0421929024159908,0.77320122718811,0.613233506679535,0.0911747142672539,0.784622073173523,0.588921010494232,0.0488197505474091,0.806714773178101,0.613233506679535,0.0911747142672539,0.784622073173523,0.632755637168884,-0.0421929024159908,0.77320122718811,0.549986064434052,-0.0976332649588585,0.829447448253632,0.549986064434052,-0.0976332649588585,0.829447448253632,0.43077677488327,-0.104239948093891,0.89641809463501,0.619710087776184,-0.0255411379039288,0.784415245056152, -0.588921010494232,0.0488197505474091,0.806714773178101,0.619710087776184,-0.0255411379039288,0.784415245056152,0.43077677488327,-0.104239948093891,0.89641809463501,0.393909394741058,-0.188258990645409,0.899663209915161,0.622898817062378,-0.127465426921844,0.771848142147064,0.622898817062378,-0.127465426921844,0.771848142147064,0.393909394741058,-0.188258990645409,0.899663209915161,0.292458415031433,-0.296681255102158,0.90909206867218,0.518350839614868,-0.241426378488541,0.820381343364716,0.292458415031433,-0.296681255102158,0.90909206867218,0.349055528640747,-0.261093229055405,0.899994790554047,0.414449870586395,-0.260025858879089,0.87213397026062,0.518350839614868,-0.241426378488541,0.820381343364716,0.414449870586395,-0.260025858879089,0.87213397026062,0.349055528640747,-0.261093229055405,0.899994790554047,0.560694456100464,-0.163896709680557,0.81164014339447,0.531623601913452,-0.146514281630516,0.834212183952332,0.531623601913452,-0.146514281630516,0.834212183952332,0.560694456100464,-0.163896709680557,0.81164014339447,0.703037679195404,-0.1131247356534,0.702097415924072,0.668087065219879,-0.0715607106685638,0.740633964538574,7.63165886041861e-08,-0.290879458189011,0.956759691238403,0.147238597273827,-0.299318253993988,0.942724406719208,0.118767857551575,-0.43462148308754,0.892747700214386,9.44835463201343e-08,-0.444976627826691,0.895542204380035,0.250313520431519,-0.4156254529953,0.874413311481476,0.118767857551575,-0.43462148308754,0.892747700214386,0.147238597273827,-0.299318253993988,0.942724406719208,0.271724492311478,-0.309344738721848,0.911302208900452,0.441231101751328,-0.370093107223511,0.817524373531342,0.250313520431519,-0.4156254529953,0.874413311481476,0.271724492311478,-0.309344738721848,0.911302208900452,0.419241696596146,-0.281242728233337,0.863214313983917,0.419241696596146,-0.281242728233337,0.863214313983917,0.565346777439117,-0.193536981940269,0.80182683467865,0.601977169513702,-0.283897697925568,0.746341466903687,0.441231101751328,-0.370093107223511,0.817524373531342,0.700187385082245,-0.173420861363411,0.692576825618744, -0.601977169513702,-0.283897697925568,0.746341466903687,0.565346777439117,-0.193536981940269,0.80182683467865,0.66425222158432,-0.106923833489418,0.739821791648865,0.703037679195404,-0.1131247356534,0.702097415924072,0.700187385082245,-0.173420861363411,0.692576825618744,0.66425222158432,-0.106923833489418,0.739821791648865,0.668087065219879,-0.0715607106685638,0.740633964538574,0.161506175994873,-0.13939642906189,0.976977169513702,-0.118451468646526,0.516582369804382,0.848004639148712,4.47424355343173e-07,0.53668475151062,0.843782901763916,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,0.188545614480972,0.431141436100006,0.882364749908447,-0.118451468646526,0.516582369804382,0.848004639148712,0.161506175994873,-0.13939642906189,0.976977169513702,0.283784985542297,-0.100370101630688,0.953620374202728,0.486899077892303,0.335813015699387,0.806324303150177,0.188545614480972,0.431141436100006,0.882364749908447,0.283784985542297,-0.100370101630688,0.953620374202728,0.416105180978775,-0.0872008353471756,0.905125617980957,0.585523724555969,0.263874471187592,0.766506493091583,0.486899077892303,0.335813015699387,0.806324303150177,0.416105180978775,-0.0872008353471756,0.905125617980957,0.517772436141968,-0.100642681121826,0.849577963352203,0.621779799461365,0.19699102640152,0.758013486862183,0.585523724555969,0.263874471187592,0.766506493091583,0.517772436141968,-0.100642681121826,0.849577963352203,0.587399959564209,-0.149358853697777,0.795394957065582,0.659780263900757,0.0826389640569687,0.746900856494904,0.621779799461365,0.19699102640152,0.758013486862183,0.587399959564209,-0.149358853697777,0.795394957065582,0.648984372615814,-0.224779918789864,0.726837873458862,0.632755637168884,-0.0421929024159908,0.77320122718811,0.659780263900757,0.0826389640569687,0.746900856494904,0.648984372615814,-0.224779918789864,0.726837873458862,0.63982105255127,-0.326441437005997,0.695747852325439,0.549986064434052,-0.0976332649588585,0.829447448253632,0.632755637168884,-0.0421929024159908,0.77320122718811,0.63982105255127,-0.326441437005997,0.695747852325439, -0.542861461639404,-0.377595067024231,0.750148892402649,0.278689593076706,-0.323656469583511,0.904200494289398,0.43077677488327,-0.104239948093891,0.89641809463501,0.549986064434052,-0.0976332649588585,0.829447448253632,0.542861461639404,-0.377595067024231,0.750148892402649,0.393909394741058,-0.188258990645409,0.899663209915161,0.43077677488327,-0.104239948093891,0.89641809463501,0.278689593076706,-0.323656469583511,0.904200494289398,0.211436629295349,-0.330257833003998,0.919904589653015,0.292458415031433,-0.296681255102158,0.90909206867218,0.393909394741058,-0.188258990645409,0.899663209915161,0.211436629295349,-0.330257833003998,0.919904589653015,0.179459974169731,-0.331311762332916,0.926297307014465,0.457515299320221,-0.22873067855835,0.859279990196228,0.349055528640747,-0.261093229055405,0.899994790554047,0.292458415031433,-0.296681255102158,0.90909206867218,0.179459974169731,-0.331311762332916,0.926297307014465,0.560694456100464,-0.163896709680557,0.81164014339447,0.349055528640747,-0.261093229055405,0.899994790554047,0.457515299320221,-0.22873067855835,0.859279990196228,0.652515351772308,-0.172068640589714,0.737981021404266,0.703037679195404,-0.1131247356534,0.702097415924072,0.560694456100464,-0.163896709680557,0.81164014339447,0.652515351772308,-0.172068640589714,0.737981021404266,0.737166225910187,-0.154637187719345,0.657779157161713,0.718691527843475,-0.158279180526733,0.677074670791626,0.700187385082245,-0.173420861363411,0.692576825618744,0.703037679195404,-0.1131247356534,0.702097415924072,0.737166225910187,-0.154637187719345,0.657779157161713,0.620512127876282,-0.170462161302567,0.76544588804245,0.601977169513702,-0.283897697925568,0.746341466903687,0.700187385082245,-0.173420861363411,0.692576825618744,0.718691527843475,-0.158279180526733,0.677074670791626,0.441231101751328,-0.370093107223511,0.817524373531342,0.601977169513702,-0.283897697925568,0.746341466903687,0.620512127876282,-0.170462161302567,0.76544588804245,0.442881882190704,-0.176023185253143,0.879131197929382,0.242541566491127,-0.173334747552872,0.954530596733093, -0.250313520431519,-0.4156254529953,0.874413311481476,0.441231101751328,-0.370093107223511,0.817524373531342,0.442881882190704,-0.176023185253143,0.879131197929382,0.112910263240337,-0.179892241954803,0.977184772491455,0.118767857551575,-0.43462148308754,0.892747700214386,0.250313520431519,-0.4156254529953,0.874413311481476,0.242541566491127,-0.173334747552872,0.954530596733093,9.44835463201343e-08,-0.444976627826691,0.895542204380035,0.118767857551575,-0.43462148308754,0.892747700214386,0.112910263240337,-0.179892241954803,0.977184772491455,-1.530000446337e-07,-0.212198525667191,0.977226614952087,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,6.76111312714056e-07,0.373505502939224,0.927627980709076,-0.071773074567318,0.317301362752914,0.945604801177979,0.0779157355427742,0.0047886953689158,0.99694836139679,0.249449476599693,0.339983731508255,0.906744837760925,0.353732585906982,0.185769870877266,0.916713058948517,0.0779157355427742,0.0047886953689158,0.99694836139679,-0.071773074567318,0.317301362752914,0.945604801177979,0.353732585906982,0.185769870877266,0.916713058948517,0.249449476599693,0.339983731508255,0.906744837760925,0.472561210393906,0.315939396619797,0.822720050811768,0.444391846656799,0.232243061065674,0.865204691886902,0.444391846656799,0.232243061065674,0.865204691886902,0.472561210393906,0.315939396619797,0.822720050811768,0.542253017425537,0.257057696580887,0.799926936626434,0.48136180639267,0.151183158159256,0.863385498523712,0.48136180639267,0.151183158159256,0.863385498523712,0.542253017425537,0.257057696580887,0.799926936626434,0.588205575942993,0.203771129250526,0.782618403434753,0.581029832363129,0.153055608272552,0.799361109733582,0.581029832363129,0.153055608272552,0.799361109733582,0.588205575942993,0.203771129250526,0.782618403434753,0.623639523983002,0.151776775717735,0.766836106777191,0.573613166809082,0.148596376180649,0.805535316467285,0.613233506679535,0.0911747142672539,0.784622073173523,0.560299932956696,0.112414106726646,0.820626080036163,0.573613166809082,0.148596376180649,0.805535316467285, -0.623639523983002,0.151776775717735,0.766836106777191,0.588921010494232,0.0488197505474091,0.806714773178101,0.606586515903473,0.0739869028329849,0.791567265987396,0.560299932956696,0.112414106726646,0.820626080036163,0.613233506679535,0.0911747142672539,0.784622073173523,0.552811503410339,-0.270912885665894,0.788039147853851,0.414449870586395,-0.260025858879089,0.87213397026062,0.531623601913452,-0.146514281630516,0.834212183952332,0.565667927265167,-0.174161449074745,0.806031882762909,0.414449870586395,-0.260025858879089,0.87213397026062,0.552811503410339,-0.270912885665894,0.788039147853851,0.680364370346069,-0.222015723586082,0.698436319828033,0.518350839614868,-0.241426378488541,0.820381343364716,0.518350839614868,-0.241426378488541,0.820381343364716,0.680364370346069,-0.222015723586082,0.698436319828033,0.751259505748749,-0.0946976244449615,0.653178036212921,0.622898817062378,-0.127465426921844,0.771848142147064,0.622898817062378,-0.127465426921844,0.771848142147064,0.751259505748749,-0.0946976244449615,0.653178036212921,0.699317395687103,0.00647763954475522,0.714782059192657,0.619710087776184,-0.0255411379039288,0.784415245056152,0.619710087776184,-0.0255411379039288,0.784415245056152,0.699317395687103,0.00647763954475522,0.714782059192657,0.606586515903473,0.0739869028329849,0.791567265987396,0.588921010494232,0.0488197505474091,0.806714773178101,0.179853022098541,-0.0337657928466797,0.983113825321198,0.147238597273827,-0.299318253993988,0.942724406719208,7.63165886041861e-08,-0.290879458189011,0.956759691238403,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,0.314554452896118,-0.0662669613957405,0.946923553943634,0.271724492311478,-0.309344738721848,0.911302208900452,0.147238597273827,-0.299318253993988,0.942724406719208,0.179853022098541,-0.0337657928466797,0.983113825321198,0.271724492311478,-0.309344738721848,0.911302208900452,0.314554452896118,-0.0662669613957405,0.946923553943634,0.429694622755051,-0.0799226686358452,0.899430394172668,0.419241696596146,-0.281242728233337,0.863214313983917, -0.55156809091568,-0.0663661956787109,0.831485509872437,0.565346777439117,-0.193536981940269,0.80182683467865,0.419241696596146,-0.281242728233337,0.863214313983917,0.429694622755051,-0.0799226686358452,0.899430394172668,0.565346777439117,-0.193536981940269,0.80182683467865,0.55156809091568,-0.0663661956787109,0.831485509872437,0.643251955509186,-0.050787478685379,0.763968348503113,0.66425222158432,-0.106923833489418,0.739821791648865,0.658806502819061,-0.0609745047986507,0.749837398529053,0.668087065219879,-0.0715607106685638,0.740633964538574,0.66425222158432,-0.106923833489418,0.739821791648865,0.643251955509186,-0.050787478685379,0.763968348503113,0.531623601913452,-0.146514281630516,0.834212183952332,0.668087065219879,-0.0715607106685638,0.740633964538574,0.658806502819061,-0.0609745047986507,0.749837398529053,0.565667927265167,-0.174161449074745,0.806031882762909,0.167769253253937,-0.276487588882446,0.946260154247284,0.0868292823433876,-0.237600713968277,0.967474281787872,4.9137469204652e-07,-0.177478060126305,0.984124779701233,5.00773921885411e-07,-0.279569029808044,0.96012556552887,0.0868292823433876,-0.237600713968277,0.967474281787872,0.167769253253937,-0.276487588882446,0.946260154247284,0.264760106801987,-0.358458042144775,0.895215034484863,0.171102255582809,-0.241622537374496,0.955166220664978,0.171102255582809,-0.241622537374496,0.955166220664978,0.264760106801987,-0.358458042144775,0.895215034484863,0.270612746477127,-0.422039151191711,0.865246593952179,0.212696671485901,-0.165409192442894,0.963016033172607,0.353909879922867,-0.00241755158640444,0.935276448726654,0.274903774261475,-0.0619128942489624,0.959476232528687,0.32490462064743,-0.418022364377975,0.848347902297974,0.377237468957901,-0.36413711309433,0.851525783538818,0.450483679771423,0.0697160139679909,0.890058517456055,0.353909879922867,-0.00241755158640444,0.935276448726654,0.377237468957901,-0.36413711309433,0.851525783538818,0.451805233955383,-0.258582532405853,0.853819131851196,0.546013355255127,-0.156816154718399,0.822969079017639,0.569105446338654,0.102337956428528,0.815871298313141, -0.450483679771423,0.0697160139679909,0.890058517456055,0.451805233955383,-0.258582532405853,0.853819131851196,0.546013355255127,-0.156816154718399,0.822969079017639,0.668119072914124,-0.078662782907486,0.739884495735168,0.722112476825714,0.0751197412610054,0.687684893608093,0.569105446338654,0.102337956428528,0.815871298313141,0.864901006221771,0.0519208051264286,0.499249815940857,0.722112476825714,0.0751197412610054,0.687684893608093,0.668119072914124,-0.078662782907486,0.739884495735168,0.804570019245148,-0.0346855819225311,0.592843890190125,0.914319574832916,0.0844556987285614,0.39608958363533,0.906421720981598,0.0424889847636223,0.420231252908707,0.865444779396057,0.0103214215487242,0.500897884368896,0.88187563419342,0.0824778228998184,0.464212000370026,0.935607671737671,0.127907514572144,0.329056054353714,0.923866987228394,0.119930803775787,0.363437175750732,0.889109969139099,0.168669983744621,0.425480663776398,0.906198561191559,0.170440301299095,0.386980891227722,0.906198561191559,0.170440301299095,0.386980891227722,0.906984090805054,0.066459633409977,0.415888011455536,0.937009036540985,0.0365108624100685,0.347391545772552,0.935607671737671,0.127907514572144,0.329056054353714,0.822252213954926,-0.0876014456152916,0.562340915203094,0.902409493923187,-0.047013234347105,0.428307056427002,0.863092243671417,-0.040555365383625,0.50341534614563,0.784411549568176,-0.0817646682262421,0.614827632904053,0.628640949726105,-0.0453776307404041,0.776370704174042,0.723528265953064,-0.0745095536112785,0.686261653900146,0.694853246212006,-0.0758795365691185,0.715137243270874,0.582253575325012,-0.0373691320419312,0.812147974967957,0.422675728797913,0.0540579818189144,0.904667377471924,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.475327998399734,0.0613102093338966,0.877669811248779,0.375233739614487,0.190444394946098,0.907155156135559,0.342850595712662,0.149466872215271,0.927422881126404,0.297811090946198,0.113282963633537,0.947879493236542,0.282756716012955,0.29180508852005,0.913727760314941,0.327629417181015,0.327735424041748,0.886142432689667, -0.575288236141205,0.238595768809319,0.782378077507019,0.342850595712662,0.149466872215271,0.927422881126404,0.327629417181015,0.327735424041748,0.886142432689667,0.537453949451447,0.309819549322128,0.784318149089813,0.759655237197876,0.268870264291763,0.592142403125763,0.575288236141205,0.238595768809319,0.782378077507019,0.537453949451447,0.309819549322128,0.784318149089813,0.724071383476257,0.254366815090179,0.641106963157654,0.704671382904053,0.35111403465271,0.616568863391876,0.759655237197876,0.268870264291763,0.592142403125763,0.724071383476257,0.254366815090179,0.641106963157654,0.631399214267731,0.364274352788925,0.684572279453278,-4.39817654296348e-07,0.573391735553741,0.819281220436096,-3.07718238445887e-07,0.537297904491425,0.843392491340637,0.704671382904053,0.35111403465271,0.616568863391876,0.631399214267731,0.364274352788925,0.684572279453278,5.00773921885411e-07,-0.279569029808044,0.96012556552887,4.89641479362035e-07,0.148217856884003,0.988954782485962,0.272893875837326,0.0898328572511673,0.957840800285339,0.167769253253937,-0.276487588882446,0.946260154247284,0.167769253253937,-0.276487588882446,0.946260154247284,0.272893875837326,0.0898328572511673,0.957840800285339,0.44531324505806,-0.0220793299376965,0.895102560520172,0.264760106801987,-0.358458042144775,0.895215034484863,0.865444779396057,0.0103214215487242,0.500897884368896,0.906421720981598,0.0424889847636223,0.420231252908707,0.864901006221771,0.0519208051264286,0.499249815940857,0.804570019245148,-0.0346855819225311,0.592843890190125,0.889109969139099,0.168669983744621,0.425480663776398,0.923866987228394,0.119930803775787,0.363437175750732,0.914319574832916,0.0844556987285614,0.39608958363533,0.88187563419342,0.0824778228998184,0.464212000370026,0.937009036540985,0.0365108624100685,0.347391545772552,0.906984090805054,0.066459633409977,0.415888011455536,0.863092243671417,-0.040555365383625,0.50341534614563,0.902409493923187,-0.047013234347105,0.428307056427002,0.694853246212006,-0.0758795365691185,0.715137243270874,0.723528265953064,-0.0745095536112785,0.686261653900146, -0.822252213954926,-0.0876014456152916,0.562340915203094,0.784411549568176,-0.0817646682262421,0.614827632904053,0.475327998399734,0.0613102093338966,0.877669811248779,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.628640949726105,-0.0453776307404041,0.776370704174042,0.582253575325012,-0.0373691320419312,0.812147974967957,0.282756716012955,0.29180508852005,0.913727760314941,0.297811090946198,0.113282963633537,0.947879493236542,0.422675728797913,0.0540579818189144,0.904667377471924,0.375233739614487,0.190444394946098,0.907155156135559,0.448747307062149,0.331291794776917,0.829982876777649,3.14968986003805e-07,0.497228413820267,0.867619633674622,-4.39817654296348e-07,0.573391735553741,0.819281220436096,0.631399214267731,0.364274352788925,0.684572279453278,0.631399214267731,0.364274352788925,0.684572279453278,0.724071383476257,0.254366815090179,0.641106963157654,0.654486119747162,0.191098988056183,0.731525182723999,0.448747307062149,0.331291794776917,0.829982876777649,0.272893875837326,0.0898328572511673,0.957840800285339,4.89641479362035e-07,0.148217856884003,0.988954782485962,3.14968986003805e-07,0.497228413820267,0.867619633674622,0.448747307062149,0.331291794776917,0.829982876777649,0.654486119747162,0.191098988056183,0.731525182723999,0.44531324505806,-0.0220793299376965,0.895102560520172,0.272893875837326,0.0898328572511673,0.957840800285339,0.448747307062149,0.331291794776917,0.829982876777649,0.32490462064743,-0.418022364377975,0.848347902297974,0.274903774261475,-0.0619128942489624,0.959476232528687,0.212696671485901,-0.165409192442894,0.963016033172607,0.270612746477127,-0.422039151191711,0.865246593952179,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,5.75957983528497e-08,-0.917891561985016,0.396831274032593,0.114588350057602,-0.912775337696075,0.392059504985809,0.149707362055779,-0.694378197193146,0.703865468502045,0.634809195995331,-0.558387041091919,0.534061014652252,0.508506715297699,-0.815533101558685,0.276272922754288,0.603131353855133,-0.763180196285248,0.231923550367355,0.739822447299957,-0.494534075260162,0.45617863535881, -0.75903993844986,-0.468803286552429,0.451754212379456,0.634543776512146,-0.742676556110382,0.213975921273232,0.641319572925568,-0.740115821361542,0.20233079791069,0.750535011291504,-0.466074794530869,0.4684779047966,0.78462290763855,-0.433153241872787,0.443559587001801,0.683599233627319,-0.708920001983643,0.173564046621323,0.732529401779175,-0.666742026805878,0.137316301465034,0.833478033542633,-0.379800826311111,0.401329815387726,0.879793643951416,-0.306445717811584,0.363392621278763,0.773152410984039,-0.626932680606842,0.0958684459328651,0.823865830898285,-0.564590632915497,0.0498245023190975,0.911567687988281,-0.228366628289223,0.341896325349808,0.930331110954285,-0.186108112335205,0.315986633300781,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.93603527545929,-0.181322798132896,0.301595836877823,0.958406686782837,-0.153457835316658,0.240639463067055,0.920947551727295,-0.351148158311844,-0.168968588113785,0.938031852245331,-0.247648492455482,-0.242418184876442,0.984486639499664,-0.103614754974842,0.141597986221313,0.833478033542633,-0.379800826311111,0.401329815387726,0.732529401779175,-0.666742026805878,0.137316301465034,0.773152410984039,-0.626932680606842,0.0958684459328651,0.879793643951416,-0.306445717811584,0.363392621278763,0.939025521278381,-0.179977178573608,0.292983204126358,0.888480961322784,-0.454339295625687,-0.064633846282959,0.920947551727295,-0.351148158311844,-0.168968588113785,0.958406686782837,-0.153457835316658,0.240639463067055,0.0893126279115677,-0.993775486946106,0.066584125161171,0.114588350057602,-0.912775337696075,0.392059504985809,5.75957983528497e-08,-0.917891561985016,0.396831274032593,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,0.362132221460342,-0.931851267814636,0.0226623974740505,0.603131353855133,-0.763180196285248,0.231923550367355,0.508506715297699,-0.815533101558685,0.276272922754288,0.298353463411331,-0.954143464565277,0.0243995748460293,0.489590495824814,-0.871388077735901,0.0313687920570374, -0.641319572925568,-0.740115821361542,0.20233079791069,0.634543776512146,-0.742676556110382,0.213975921273232,0.424411624670029,-0.905128479003906,0.0248428620398045,0.732529401779175,-0.666742026805878,0.137316301465034,0.683599233627319,-0.708920001983643,0.173564046621323,0.560462832450867,-0.828098118305206,0.0116214090958238,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.773152410984039,-0.626932680606842,0.0958684459328651,0.732529401779175,-0.666742026805878,0.137316301465034,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.677948117256165,-0.71640682220459,-0.164764940738678,0.823865830898285,-0.564590632915497,0.0498245023190975,0.773152410984039,-0.626932680606842,0.0958684459328651,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.745865523815155,-0.66082090139389,-0.0836689472198486,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.700287818908691,-0.696540117263794,-0.156297460198402,0.920947551727295,-0.351148158311844,-0.168968588113785,0.888480961322784,-0.454339295625687,-0.064633846282959,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.938031852245331,-0.247648492455482,-0.242418184876442,0.920947551727295,-0.351148158311844,-0.168968588113785,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.936773419380188,0.209211736917496,-0.280510157346725,0.982687652111053,0.148474961519241,-0.110816136002541,0.985133230686188,-0.123099699616432,0.119829945266247,0.805711448192596,0.292258203029633,0.515183746814728,0.845844030380249,0.0282919183373451,0.532679498195648,0.946663558483124,-0.0758194178342819,0.313176423311234,0.96488744020462,0.141046658158302,0.221580728888512,0.845844030380249,0.0282919183373451,0.532679498195648,0.805711448192596,0.292258203029633,0.515183746814728, -0.715191185474396,0.34563997387886,0.607482135295868,0.737070381641388,0.114106610417366,0.666113376617432,0.737070381641388,0.114106610417366,0.666113376617432,0.715191185474396,0.34563997387886,0.607482135295868,0.654905915260315,0.354517191648483,0.667394876480103,0.671664416790009,0.138539895415306,0.727786839008331,0.427030682563782,0.423026651144028,0.799182832241058,0.440599530935287,0.18112014234066,0.879242599010468,0.671664416790009,0.138539895415306,0.727786839008331,0.654905915260315,0.354517191648483,0.667394876480103,0.936773419380188,0.209211736917496,-0.280510157346725,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.959196865558624,0.117164917290211,0.257320284843445,0.891604006290436,0.423940151929855,0.159113571047783,0.959196865558624,0.117164917290211,0.257320284843445,0.675791025161743,0.246512725949287,0.694649577140808,0.430175453424454,0.17557030916214,0.885507822036743,0.891604006290436,0.423940151929855,0.159113571047783,0.485416024923325,0.00731630343943834,0.874252736568451,0.445871531963348,0.0744199678301811,0.891997873783112,0.573613166809082,0.148596376180649,0.805535316467285,0.560299932956696,0.112414106726646,0.820626080036163,0.595667898654938,-0.0288832504302263,0.802711367607117,0.485416024923325,0.00731630343943834,0.874252736568451,0.560299932956696,0.112414106726646,0.820626080036163,0.606586515903473,0.0739869028329849,0.791567265987396,0.728366792201996,-0.0401403270661831,0.684010624885559,0.595667898654938,-0.0288832504302263,0.802711367607117,0.606586515903473,0.0739869028329849,0.791567265987396,0.699317395687103,0.00647763954475522,0.714782059192657,0.809467434883118,-0.120740197598934,0.574616611003876,0.728366792201996,-0.0401403270661831,0.684010624885559,0.699317395687103,0.00647763954475522,0.714782059192657,0.751259505748749,-0.0946976244449615,0.653178036212921,0.809467434883118,-0.120740197598934,0.574616611003876,0.751259505748749,-0.0946976244449615,0.653178036212921,0.680364370346069,-0.222015723586082,0.698436319828033,0.774750411510468,-0.225245609879494,0.590784311294556, -0.774750411510468,-0.225245609879494,0.590784311294556,0.680364370346069,-0.222015723586082,0.698436319828033,0.552811503410339,-0.270912885665894,0.788039147853851,0.686697602272034,-0.282533258199692,0.669791877269745,0.686697602272034,-0.282533258199692,0.669791877269745,0.552811503410339,-0.270912885665894,0.788039147853851,0.565667927265167,-0.174161449074745,0.806031882762909,0.656148910522461,-0.210049197077751,0.724808871746063,0.656148910522461,-0.210049197077751,0.724808871746063,0.565667927265167,-0.174161449074745,0.806031882762909,0.658806502819061,-0.0609745047986507,0.749837398529053,0.695716381072998,-0.086280569434166,0.713115930557251,0.695716381072998,-0.086280569434166,0.713115930557251,0.658806502819061,-0.0609745047986507,0.749837398529053,0.643251955509186,-0.050787478685379,0.763968348503113,0.66613382101059,-0.0218829568475485,0.745511174201965,0.66613382101059,-0.0218829568475485,0.745511174201965,0.643251955509186,-0.050787478685379,0.763968348503113,0.55156809091568,-0.0663661956787109,0.831485509872437,0.574376583099365,0.0246292874217033,0.818220555782318,0.574376583099365,0.0246292874217033,0.818220555782318,0.55156809091568,-0.0663661956787109,0.831485509872437,0.429694622755051,-0.0799226686358452,0.899430394172668,0.461474180221558,0.0598365068435669,0.885133445262909,0.461474180221558,0.0598365068435669,0.885133445262909,0.429694622755051,-0.0799226686358452,0.899430394172668,0.314554452896118,-0.0662669613957405,0.946923553943634,0.344552159309387,0.08065065741539,0.935296416282654,0.344552159309387,0.08065065741539,0.935296416282654,0.314554452896118,-0.0662669613957405,0.946923553943634,0.179853022098541,-0.0337657928466797,0.983113825321198,0.188998714089394,0.0825605019927025,0.978500485420227,0.188998714089394,0.0825605019927025,0.978500485420227,0.179853022098541,-0.0337657928466797,0.983113825321198,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,-2.20459881461466e-07,0.0764520391821861,0.997073292732239,0.875134229660034,-0.0694368183612823,0.478872209787369, -0.927510797977448,-0.340489387512207,0.154242485761642,0.688236832618713,-0.710206925868988,0.148108795285225,0.777086198329926,-0.239047184586525,0.582231462001801,0.927510797977448,-0.340489387512207,0.154242485761642,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.612375855445862,-0.789205431938171,0.0463740564882755,0.688236832618713,-0.710206925868988,0.148108795285225,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.850436449050903,-0.49777415394783,-0.170230999588966,0.590460956096649,-0.803650557994843,0.0741726160049438,0.612375855445862,-0.789205431938171,0.0463740564882755,0.850436449050903,-0.49777415394783,-0.170230999588966,0.74780684709549,-0.60307514667511,-0.277642726898193,0.628254175186157,-0.761968374252319,0.157165363430977,0.590460956096649,-0.803650557994843,0.0741726160049438,0.74780684709549,-0.60307514667511,-0.277642726898193,0.427040368318558,-0.824204504489899,-0.371918737888336,0.60682213306427,-0.772793889045715,0.185893401503563,0.628254175186157,-0.761968374252319,0.157165363430977,0.427040368318558,-0.824204504489899,-0.371918737888336,0.102685742080212,-0.954509735107422,-0.279940962791443,0.455358922481537,-0.869095683097839,0.193186178803444,0.60682213306427,-0.772793889045715,0.185893401503563,0.102685742080212,-0.954509735107422,-0.279940962791443,-0.093781977891922,-0.994987845420837,-0.0347020253539085,0.290745735168457,-0.916568696498871,0.274533659219742,0.455358922481537,-0.869095683097839,0.193186178803444,-0.093781977891922,-0.994987845420837,-0.0347020253539085,-0.0773351490497589,-0.989174664020538,0.124710224568844,0.20660699903965,-0.925181925296783,0.318358093500137,0.290745735168457,-0.916568696498871,0.274533659219742,-0.0773351490497589,-0.989174664020538,0.124710224568844,-0.146455511450768,-0.95370215177536,0.26268407702446,0.119040384888649,-0.926869869232178,0.356008052825928,0.20660699903965,-0.925181925296783,0.318358093500137,-0.327705591917038,-0.778845310211182,0.534798204898834,-0.163373842835426,-0.490520238876343,0.855978310108185, --0.0583271123468876,-0.42276069521904,0.904362440109253,-0.163064643740654,-0.776256620883942,0.608962655067444,0.622528374195099,0.171264365315437,0.763627588748932,0.875134229660034,-0.0694368183612823,0.478872209787369,0.777086198329926,-0.239047184586525,0.582231462001801,0.580475926399231,0.190929397940636,0.791576683521271,0.580475926399231,0.190929397940636,0.791576683521271,0.37968310713768,0.180394127964973,0.907358169555664,0.35932657122612,0.0683242455124855,0.930707454681396,0.622528374195099,0.171264365315437,0.763627588748932,0.37968310713768,0.180394127964973,0.907358169555664,-0.0583271123468876,-0.42276069521904,0.904362440109253,-0.163373842835426,-0.490520238876343,0.855978310108185,0.35932657122612,0.0683242455124855,0.930707454681396,0.984726369380951,-0.138775065541267,0.105145215988159,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.927510797977448,-0.340489387512207,0.154242485761642,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.850677847862244,-0.436320781707764,-0.293209046125412,0.850436449050903,-0.49777415394783,-0.170230999588966,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.850677847862244,-0.436320781707764,-0.293209046125412,0.725718796253204,-0.558084905147552,-0.402335107326508,0.74780684709549,-0.60307514667511,-0.277642726898193,0.850436449050903,-0.49777415394783,-0.170230999588966,0.725718796253204,-0.558084905147552,-0.402335107326508,0.417807519435883,-0.77439957857132,-0.475123256444931,0.427040368318558,-0.824204504489899,-0.371918737888336,0.74780684709549,-0.60307514667511,-0.277642726898193,0.417807519435883,-0.77439957857132,-0.475123256444931,0.0116367666050792,-0.906590223312378,-0.421851634979248,0.102685742080212,-0.954509735107422,-0.279940962791443,0.427040368318558,-0.824204504489899,-0.371918737888336,0.0116367666050792,-0.906590223312378,-0.421851634979248,-0.333319246768951,-0.913330435752869,-0.233935564756393,-0.093781977891922,-0.994987845420837,-0.0347020253539085, -0.102685742080212,-0.954509735107422,-0.279940962791443,-0.333319246768951,-0.913330435752869,-0.233935564756393,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.0773351490497589,-0.989174664020538,0.124710224568844,-0.093781977891922,-0.994987845420837,-0.0347020253539085,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.146455511450768,-0.95370215177536,0.26268407702446,-0.0773351490497589,-0.989174664020538,0.124710224568844,-0.414653658866882,-0.77838122844696,0.471365094184875,-0.144471272826195,-0.614518642425537,0.775560975074768,-0.163373842835426,-0.490520238876343,0.855978310108185,-0.327705591917038,-0.778845310211182,0.534798204898834,0.35932657122612,0.0683242455124855,0.930707454681396,-0.163373842835426,-0.490520238876343,0.855978310108185,-0.144471272826195,-0.614518642425537,0.775560975074768,0.412471860647202,-0.275771468877792,0.868226408958435,0.622528374195099,0.171264365315437,0.763627588748932,0.35932657122612,0.0683242455124855,0.930707454681396,0.412471860647202,-0.275771468877792,0.868226408958435,0.718403398990631,-0.0559571795165539,0.693372488021851,0.718403398990631,-0.0559571795165539,0.693372488021851,0.91557765007019,-0.0274116899818182,0.401205897331238,0.875134229660034,-0.0694368183612823,0.478872209787369,0.622528374195099,0.171264365315437,0.763627588748932,0.91557765007019,-0.0274116899818182,0.401205897331238,0.984726369380951,-0.138775065541267,0.105145215988159,0.927510797977448,-0.340489387512207,0.154242485761642,0.875134229660034,-0.0694368183612823,0.478872209787369,0.580475926399231,0.190929397940636,0.791576683521271,0.777086198329926,-0.239047184586525,0.582231462001801,0.585407078266144,-0.368175864219666,0.72231924533844,0.514495313167572,0.138729900121689,0.84619665145874,0.514495313167572,0.138729900121689,0.84619665145874,0.354051679372787,0.0453287661075592,0.934126675128937,0.37968310713768,0.180394127964973,0.907358169555664,0.580475926399231,0.190929397940636,0.791576683521271,0.0767992734909058,-0.458664745092392,0.88528436422348, --0.0583271123468876,-0.42276069521904,0.904362440109253,0.37968310713768,0.180394127964973,0.907358169555664,0.354051679372787,0.0453287661075592,0.934126675128937,-0.163064643740654,-0.776256620883942,0.608962655067444,-0.0583271123468876,-0.42276069521904,0.904362440109253,0.0767992734909058,-0.458664745092392,0.88528436422348,0.119363464415073,-0.78466010093689,0.608326315879822,0.20660699903965,-0.925181925296783,0.318358093500137,0.119040384888649,-0.926869869232178,0.356008052825928,0.409424066543579,-0.816124379634857,0.407814919948578,0.43576592206955,-0.790265262126923,0.430800437927246,0.290745735168457,-0.916568696498871,0.274533659219742,0.20660699903965,-0.925181925296783,0.318358093500137,0.43576592206955,-0.790265262126923,0.430800437927246,0.490964144468307,-0.740018129348755,0.459703654050827,0.455358922481537,-0.869095683097839,0.193186178803444,0.290745735168457,-0.916568696498871,0.274533659219742,0.490964144468307,-0.740018129348755,0.459703654050827,0.598784744739532,-0.646725416183472,0.472443729639053,0.60682213306427,-0.772793889045715,0.185893401503563,0.455358922481537,-0.869095683097839,0.193186178803444,0.598784744739532,-0.646725416183472,0.472443729639053,0.522891402244568,-0.60482931137085,0.600638091564178,0.628254175186157,-0.761968374252319,0.157165363430977,0.60682213306427,-0.772793889045715,0.185893401503563,0.522891402244568,-0.60482931137085,0.600638091564178,0.341883778572083,-0.734208166599274,0.586560904979706,0.590460956096649,-0.803650557994843,0.0741726160049438,0.628254175186157,-0.761968374252319,0.157165363430977,0.341883778572083,-0.734208166599274,0.586560904979706,0.236640840768814,-0.924676120281219,0.298287391662598,0.612375855445862,-0.789205431938171,0.0463740564882755,0.590460956096649,-0.803650557994843,0.0741726160049438,0.236640840768814,-0.924676120281219,0.298287391662598,0.261747181415558,-0.960836589336395,0.0910022258758545,0.688236832618713,-0.710206925868988,0.148108795285225,0.612375855445862,-0.789205431938171,0.0463740564882755,0.261747181415558,-0.960836589336395,0.0910022258758545, -0.37528383731842,-0.912664949893951,0.161879166960716,0.777086198329926,-0.239047184586525,0.582231462001801,0.688236832618713,-0.710206925868988,0.148108795285225,0.37528383731842,-0.912664949893951,0.161879166960716,0.585407078266144,-0.368175864219666,0.72231924533844,0.661726534366608,-0.164393022656441,0.731500446796417,0.433876276016235,-0.198224097490311,0.878896176815033,0.43048819899559,-0.478489816188812,0.765328288078308,0.646702706813812,-0.405708491802216,0.645891785621643,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,0.43048819899559,-0.478489816188812,0.765328288078308,0.433876276016235,-0.198224097490311,0.878896176815033,-1.02184486650003e-07,-0.267218768596649,0.963635861873627,1.21897315352726e-07,-0.995536208152771,0.0943798571825027,0.261747181415558,-0.960836589336395,0.0910022258758545,0.236640840768814,-0.924676120281219,0.298287391662598,1.51484229604648e-07,-0.925182104110718,0.379523366689682,0.261747181415558,-0.960836589336395,0.0910022258758545,1.21897315352726e-07,-0.995536208152771,0.0943798571825027,4.73723360983058e-07,-0.98859578371048,0.150593131780624,0.37528383731842,-0.912664949893951,0.161879166960716,0.37528383731842,-0.912664949893951,0.161879166960716,4.73723360983058e-07,-0.98859578371048,0.150593131780624,1.41866473768459e-06,-0.879385590553284,0.476110249757767,0.29126363992691,-0.854885935783386,0.429343044757843,0.354051679372787,0.0453287661075592,0.934126675128937,0.514495313167572,0.138729900121689,0.84619665145874,0.353732585906982,0.185769870877266,0.916713058948517,0.444391846656799,0.232243061065674,0.865204691886902,0.0779157355427742,0.0047886953689158,0.99694836139679,0.353732585906982,0.185769870877266,0.916713058948517,0.514495313167572,0.138729900121689,0.84619665145874,0.585407078266144,-0.368175864219666,0.72231924533844,0.29126363992691,-0.854885935783386,0.429343044757843,1.41866473768459e-06,-0.879385590553284,0.476110249757767,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,0.0779157355427742,0.0047886953689158,0.99694836139679, -0.0779157355427742,0.0047886953689158,0.99694836139679,0.585407078266144,-0.368175864219666,0.72231924533844,0.37528383731842,-0.912664949893951,0.161879166960716,0.29126363992691,-0.854885935783386,0.429343044757843,0.522891402244568,-0.60482931137085,0.600638091564178,0.43048819899559,-0.478489816188812,0.765328288078308,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,0.341883778572083,-0.734208166599274,0.586560904979706,0.646702706813812,-0.405708491802216,0.645891785621643,0.43048819899559,-0.478489816188812,0.765328288078308,0.522891402244568,-0.60482931137085,0.600638091564178,0.598784744739532,-0.646725416183472,0.472443729639053,0.341883778572083,-0.734208166599274,0.586560904979706,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,1.51484229604648e-07,-0.925182104110718,0.379523366689682,0.236640840768814,-0.924676120281219,0.298287391662598,0.671664416790009,0.138539895415306,0.727786839008331,0.440599530935287,0.18112014234066,0.879242599010468,0.433876276016235,-0.198224097490311,0.878896176815033,0.661726534366608,-0.164393022656441,0.731500446796417,-1.02184486650003e-07,-0.267218768596649,0.963635861873627,0.433876276016235,-0.198224097490311,0.878896176815033,0.440599530935287,0.18112014234066,0.879242599010468,-4.4512784569406e-08,0.194622755050659,0.980878174304962,0.661726534366608,-0.164393022656441,0.731500446796417,0.694607734680176,-0.274156808853149,0.66510021686554,0.737070381641388,0.114106610417366,0.666113376617432,0.671664416790009,0.138539895415306,0.727786839008331,0.646702706813812,-0.405708491802216,0.645891785621643,0.623622715473175,-0.512402594089508,0.590371370315552,0.694607734680176,-0.274156808853149,0.66510021686554,0.661726534366608,-0.164393022656441,0.731500446796417,0.598784744739532,-0.646725416183472,0.472443729639053,0.490964144468307,-0.740018129348755,0.459703654050827,0.623622715473175,-0.512402594089508,0.590371370315552,0.646702706813812,-0.405708491802216,0.645891785621643,0.490964144468307,-0.740018129348755,0.459703654050827,0.43576592206955,-0.790265262126923,0.430800437927246, -0.633802711963654,-0.588700532913208,0.501722812652588,0.623622715473175,-0.512402594089508,0.590371370315552,0.623622715473175,-0.512402594089508,0.590371370315552,0.633802711963654,-0.588700532913208,0.501722812652588,0.769342362880707,-0.367450356483459,0.522582530975342,0.694607734680176,-0.274156808853149,0.66510021686554,0.694607734680176,-0.274156808853149,0.66510021686554,0.769342362880707,-0.367450356483459,0.522582530975342,0.845844030380249,0.0282919183373451,0.532679498195648,0.737070381641388,0.114106610417366,0.666113376617432,-0.270437955856323,-0.90808367729187,0.319761455059052,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.414653658866882,-0.77838122844696,0.471365094184875,-0.327705591917038,-0.778845310211182,0.534798204898834,0.0116014555096626,-0.911236226558685,0.41172069311142,-0.270437955856323,-0.90808367729187,0.319761455059052,-0.327705591917038,-0.778845310211182,0.534798204898834,-0.163064643740654,-0.776256620883942,0.608962655067444,0.353555947542191,-0.819660186767578,0.450727581977844,0.0116014555096626,-0.911236226558685,0.41172069311142,-0.163064643740654,-0.776256620883942,0.608962655067444,0.119363464415073,-0.78466010093689,0.608326315879822,0.43576592206955,-0.790265262126923,0.430800437927246,0.409424066543579,-0.816124379634857,0.407814919948578,0.669928908348083,-0.61884069442749,0.410160273313522,0.633802711963654,-0.588700532913208,0.501722812652588,0.633802711963654,-0.588700532913208,0.501722812652588,0.669928908348083,-0.61884069442749,0.410160273313522,0.830590486526489,-0.410075843334198,0.37677213549614,0.769342362880707,-0.367450356483459,0.522582530975342,0.769342362880707,-0.367450356483459,0.522582530975342,0.830590486526489,-0.410075843334198,0.37677213549614,0.946663558483124,-0.0758194178342819,0.313176423311234,0.845844030380249,0.0282919183373451,0.532679498195648,0.651707649230957,-0.634582698345184,0.41542986035347,0.353555947542191,-0.819660186767578,0.450727581977844,0.119363464415073,-0.78466010093689,0.608326315879822,0.51049530506134,-0.677704572677612,0.529255270957947, -0.852545559406281,-0.416287839412689,0.316022753715515,0.651707649230957,-0.634582698345184,0.41542986035347,0.51049530506134,-0.677704572677612,0.529255270957947,0.853867530822754,-0.395726025104523,0.338099449872971,0.985133230686188,-0.123099699616432,0.119829945266247,0.852545559406281,-0.416287839412689,0.316022753715515,0.853867530822754,-0.395726025104523,0.338099449872971,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.0767992734909058,-0.458664745092392,0.88528436422348,0.306425333023071,-0.565001308917999,0.766079008579254,0.51049530506134,-0.677704572677612,0.529255270957947,0.119363464415073,-0.78466010093689,0.608326315879822,0.306425333023071,-0.565001308917999,0.766079008579254,0.765478253364563,-0.352242708206177,0.538486957550049,0.853867530822754,-0.395726025104523,0.338099449872971,0.51049530506134,-0.677704572677612,0.529255270957947,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.853867530822754,-0.395726025104523,0.338099449872971,0.765478253364563,-0.352242708206177,0.538486957550049,0.959196865558624,0.117164917290211,0.257320284843445,0.354051679372787,0.0453287661075592,0.934126675128937,0.395902693271637,-0.106055751442909,0.912147641181946,0.306425333023071,-0.565001308917999,0.766079008579254,0.0767992734909058,-0.458664745092392,0.88528436422348,0.395902693271637,-0.106055751442909,0.912147641181946,0.354051679372787,0.0453287661075592,0.934126675128937,0.444391846656799,0.232243061065674,0.865204691886902,0.48136180639267,0.151183158159256,0.863385498523712,0.765478253364563,-0.352242708206177,0.538486957550049,0.306425333023071,-0.565001308917999,0.766079008579254,0.395902693271637,-0.106055751442909,0.912147641181946,0.646521508693695,0.0286233704537153,0.762358546257019,0.430175453424454,0.17557030916214,0.885507822036743,0.675791025161743,0.246512725949287,0.694649577140808,0.573613166809082,0.148596376180649,0.805535316467285,0.445871531963348,0.0744199678301811,0.891997873783112,0.959196865558624,0.117164917290211,0.257320284843445,0.765478253364563,-0.352242708206177,0.538486957550049, -0.646521508693695,0.0286233704537153,0.762358546257019,0.675791025161743,0.246512725949287,0.694649577140808,0.646521508693695,0.0286233704537153,0.762358546257019,0.395902693271637,-0.106055751442909,0.912147641181946,0.48136180639267,0.151183158159256,0.863385498523712,0.581029832363129,0.153055608272552,0.799361109733582,0.581029832363129,0.153055608272552,0.799361109733582,0.573613166809082,0.148596376180649,0.805535316467285,0.675791025161743,0.246512725949287,0.694649577140808,0.646521508693695,0.0286233704537153,0.762358546257019,0.985133230686188,-0.123099699616432,0.119829945266247,0.982687652111053,0.148474961519241,-0.110816136002541,0.96488744020462,0.141046658158302,0.221580728888512,0.946663558483124,-0.0758194178342819,0.313176423311234,0.830590486526489,-0.410075843334198,0.37677213549614,0.852545559406281,-0.416287839412689,0.316022753715515,0.985133230686188,-0.123099699616432,0.119829945266247,0.946663558483124,-0.0758194178342819,0.313176423311234,0.669928908348083,-0.61884069442749,0.410160273313522,0.651707649230957,-0.634582698345184,0.41542986035347,0.852545559406281,-0.416287839412689,0.316022753715515,0.830590486526489,-0.410075843334198,0.37677213549614,0.409424066543579,-0.816124379634857,0.407814919948578,0.353555947542191,-0.819660186767578,0.450727581977844,0.651707649230957,-0.634582698345184,0.41542986035347,0.669928908348083,-0.61884069442749,0.410160273313522,0.409424066543579,-0.816124379634857,0.407814919948578,0.119040384888649,-0.926869869232178,0.356008052825928,0.0116014555096626,-0.911236226558685,0.41172069311142,0.353555947542191,-0.819660186767578,0.450727581977844,0.119040384888649,-0.926869869232178,0.356008052825928,-0.146455511450768,-0.95370215177536,0.26268407702446,-0.270437955856323,-0.90808367729187,0.319761455059052,0.0116014555096626,-0.911236226558685,0.41172069311142,-0.146455511450768,-0.95370215177536,0.26268407702446,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.270437955856323,-0.90808367729187,0.319761455059052, --3.07718238445887e-07,0.537297904491425,0.843392491340637,1.07731224829877e-07,0.511693179607391,0.859168291091919,0.722416758537292,0.37959811091423,0.577943980693817,0.704671382904053,0.35111403465271,0.616568863391876,0.704671382904053,0.35111403465271,0.616568863391876,0.722416758537292,0.37959811091423,0.577943980693817,0.825799107551575,0.314353972673416,0.468227863311768,0.759655237197876,0.268870264291763,0.592142403125763,0.759655237197876,0.268870264291763,0.592142403125763,0.825799107551575,0.314353972673416,0.468227863311768,0.708128273487091,0.243512466549873,0.662764012813568,0.575288236141205,0.238595768809319,0.782378077507019,0.537846744060516,0.52482008934021,0.659761130809784,6.63047643456594e-08,0.56467217206955,0.825315177440643,2.69245763462322e-08,0.599188029766083,0.800608277320862,0.436625868082047,0.575780928134918,0.691255569458008,0.746444165706635,0.517271220684052,0.418630808591843,0.537846744060516,0.52482008934021,0.659761130809784,0.436625868082047,0.575780928134918,0.691255569458008,0.679213106632233,0.566016435623169,0.467220544815063,0.770220816135406,0.564943134784698,0.295971602201462,0.746444165706635,0.517271220684052,0.418630808591843,0.679213106632233,0.566016435623169,0.467220544815063,0.68751060962677,0.627668857574463,0.365186214447021,0.609346985816956,0.46362692117691,0.643231153488159,1.66158670822369e-07,0.537752687931061,0.843102693557739,6.63047643456594e-08,0.56467217206955,0.825315177440643,0.537846744060516,0.52482008934021,0.659761130809784,0.809419810771942,0.419161260128021,0.411270409822464,0.609346985816956,0.46362692117691,0.643231153488159,0.537846744060516,0.52482008934021,0.659761130809784,0.746444165706635,0.517271220684052,0.418630808591843,0.838650524616241,0.449791878461838,0.307168394327164,0.809419810771942,0.419161260128021,0.411270409822464,0.746444165706635,0.517271220684052,0.418630808591843,0.770220816135406,0.564943134784698,0.295971602201462,0.674133837223053,0.417697876691818,0.609156847000122,2.19163851511439e-07,0.528520941734314,0.848920106887817, -1.66158670822369e-07,0.537752687931061,0.843102693557739,0.609346985816956,0.46362692117691,0.643231153488159,0.841250956058502,0.345796376466751,0.41559824347496,0.674133837223053,0.417697876691818,0.609156847000122,0.609346985816956,0.46362692117691,0.643231153488159,0.809419810771942,0.419161260128021,0.411270409822464,0.8535395860672,0.35643681883812,0.380030274391174,0.841250956058502,0.345796376466751,0.41559824347496,0.809419810771942,0.419161260128021,0.411270409822464,0.838650524616241,0.449791878461838,0.307168394327164,0.436625868082047,0.575780928134918,0.691255569458008,2.69245763462322e-08,0.599188029766083,0.800608277320862,1.62401178727123e-07,0.593734920024872,0.804660618305206,0.400272339582443,0.566744387149811,0.720126926898956,0.679213106632233,0.566016435623169,0.467220544815063,0.436625868082047,0.575780928134918,0.691255569458008,0.400272339582443,0.566744387149811,0.720126926898956,0.648093104362488,0.533102750778198,0.543853759765625,0.68751060962677,0.627668857574463,0.365186214447021,0.679213106632233,0.566016435623169,0.467220544815063,0.648093104362488,0.533102750778198,0.543853759765625,0.674750208854675,0.57069194316864,0.467998772859573,0.936773419380188,0.209211736917496,-0.280510157346725,0.891604006290436,0.423940151929855,0.159113571047783,0.886474132537842,0.40906697511673,0.21639758348465,0.822638630867004,0.344727039337158,-0.452138125896454,0.822638630867004,0.344727039337158,-0.452138125896454,0.886474132537842,0.40906697511673,0.21639758348465,0.894167304039001,0.312801688909531,0.320343464612961,0.773216545581818,0.455902576446533,-0.440782129764557,0.773216545581818,0.455902576446533,-0.440782129764557,0.894167304039001,0.312801688909531,0.320343464612961,0.845461905002594,0.421230375766754,0.328267008066177,0.696303486824036,0.685827970504761,-0.21166355907917,0.696303486824036,0.685827970504761,-0.21166355907917,0.845461905002594,0.421230375766754,0.328267008066177,0.775935471057892,0.592566728591919,0.21630722284317,0.562135756015778,0.826298296451569,0.0351339690387249, -0.562135756015778,0.826298296451569,0.0351339690387249,0.775935471057892,0.592566728591919,0.21630722284317,0.657711923122406,0.706774234771729,0.260547816753387,0.571992695331573,0.750736892223358,0.330482065677643,0.571992695331573,0.750736892223358,0.330482065677643,0.657711923122406,0.706774234771729,0.260547816753387,0.770220816135406,0.564943134784698,0.295971602201462,0.68751060962677,0.627668857574463,0.365186214447021,0.571992695331573,0.750736892223358,0.330482065677643,0.68751060962677,0.627668857574463,0.365186214447021,0.674750208854675,0.57069194316864,0.467998772859573,0.626188337802887,0.621568083763123,0.470681697130203,0.649192214012146,0.707068502902985,-0.280363410711288,0.772835493087769,0.523139595985413,-0.359235644340515,0.773216545581818,0.455902576446533,-0.440782129764557,0.696303486824036,0.685827970504761,-0.21166355907917,0.772835493087769,0.523139595985413,-0.359235644340515,0.876489520072937,0.36823508143425,-0.310111284255981,0.822638630867004,0.344727039337158,-0.452138125896454,0.773216545581818,0.455902576446533,-0.440782129764557,0.876489520072937,0.36823508143425,-0.310111284255981,0.982687652111053,0.148474961519241,-0.110816136002541,0.936773419380188,0.209211736917496,-0.280510157346725,0.822638630867004,0.344727039337158,-0.452138125896454,0.96488744020462,0.141046658158302,0.221580728888512,0.982687652111053,0.148474961519241,-0.110816136002541,0.876489520072937,0.36823508143425,-0.310111284255981,0.922215342521667,0.384585827589035,0.0401565171778202,0.772835493087769,0.523139595985413,-0.359235644340515,0.805653154850006,0.589774489402771,-0.0555788688361645,0.922215342521667,0.384585827589035,0.0401565171778202,0.876489520072937,0.36823508143425,-0.310111284255981,0.649192214012146,0.707068502902985,-0.280363410711288,0.633098959922791,0.772678554058075,-0.0464056208729744,0.805653154850006,0.589774489402771,-0.0555788688361645,0.772835493087769,0.523139595985413,-0.359235644340515,0.633098959922791,0.772678554058075,-0.0464056208729744,0.649192214012146,0.707068502902985,-0.280363410711288, -0.696303486824036,0.685827970504761,-0.21166355907917,0.562135756015778,0.826298296451569,0.0351339690387249,0.574078142642975,0.780576169490814,0.247255012392998,0.633098959922791,0.772678554058075,-0.0464056208729744,0.562135756015778,0.826298296451569,0.0351339690387249,0.571992695331573,0.750736892223358,0.330482065677643,0.626188337802887,0.621568083763123,0.470681697130203,0.698592841625214,0.632910013198853,0.333756148815155,0.574078142642975,0.780576169490814,0.247255012392998,0.571992695331573,0.750736892223358,0.330482065677643,0.839187681674957,0.434261173009872,0.327385693788528,0.805711448192596,0.292258203029633,0.515183746814728,0.96488744020462,0.141046658158302,0.221580728888512,0.922215342521667,0.384585827589035,0.0401565171778202,0.400272339582443,0.566744387149811,0.720126926898956,1.62401178727123e-07,0.593734920024872,0.804660618305206,-9.54276870857029e-08,0.46919858455658,0.883092641830444,0.427030682563782,0.423026651144028,0.799182832241058,0.648093104362488,0.533102750778198,0.543853759765625,0.400272339582443,0.566744387149811,0.720126926898956,0.427030682563782,0.423026651144028,0.799182832241058,0.654905915260315,0.354517191648483,0.667394876480103,0.674750208854675,0.57069194316864,0.467998772859573,0.648093104362488,0.533102750778198,0.543853759765625,0.654905915260315,0.354517191648483,0.667394876480103,0.715191185474396,0.34563997387886,0.607482135295868,0.626188337802887,0.621568083763123,0.470681697130203,0.674750208854675,0.57069194316864,0.467998772859573,0.715191185474396,0.34563997387886,0.607482135295868,0.805711448192596,0.292258203029633,0.515183746814728,0.839187681674957,0.434261173009872,0.327385693788528,0.698592841625214,0.632910013198853,0.333756148815155,0.626188337802887,0.621568083763123,0.470681697130203,0.805711448192596,0.292258203029633,0.515183746814728,0.698592841625214,0.632910013198853,0.333756148815155,0.805653154850006,0.589774489402771,-0.0555788688361645,0.633098959922791,0.772678554058075,-0.0464056208729744,0.574078142642975,0.780576169490814,0.247255012392998, -0.839187681674957,0.434261173009872,0.327385693788528,0.922215342521667,0.384585827589035,0.0401565171778202,0.805653154850006,0.589774489402771,-0.0555788688361645,0.698592841625214,0.632910013198853,0.333756148815155,0.657711923122406,0.706774234771729,0.260547816753387,0.775935471057892,0.592566728591919,0.21630722284317,0.838650524616241,0.449791878461838,0.307168394327164,0.770220816135406,0.564943134784698,0.295971602201462,0.838650524616241,0.449791878461838,0.307168394327164,0.775935471057892,0.592566728591919,0.21630722284317,0.845461905002594,0.421230375766754,0.328267008066177,0.8535395860672,0.35643681883812,0.380030274391174,0.886474132537842,0.40906697511673,0.21639758348465,0.891604006290436,0.423940151929855,0.159113571047783,0.430175453424454,0.17557030916214,0.885507822036743,0.251340836286545,0.0682772397994995,0.965487420558929,0.894167304039001,0.312801688909531,0.320343464612961,0.886474132537842,0.40906697511673,0.21639758348465,0.251340836286545,0.0682772397994995,0.965487420558929,0.31952691078186,0.0421200059354305,0.946640610694885,0.31952691078186,0.0421200059354305,0.946640610694885,0.530382215976715,0.125614479184151,0.838400721549988,0.845461905002594,0.421230375766754,0.328267008066177,0.894167304039001,0.312801688909531,0.320343464612961,0.530382215976715,0.125614479184151,0.838400721549988,0.708128273487091,0.243512466549873,0.662764012813568,0.8535395860672,0.35643681883812,0.380030274391174,0.845461905002594,0.421230375766754,0.328267008066177,0.722416758537292,0.37959811091423,0.577943980693817,1.07731224829877e-07,0.511693179607391,0.859168291091919,2.19163851511439e-07,0.528520941734314,0.848920106887817,0.674133837223053,0.417697876691818,0.609156847000122,0.825799107551575,0.314353972673416,0.468227863311768,0.722416758537292,0.37959811091423,0.577943980693817,0.674133837223053,0.417697876691818,0.609156847000122,0.841250956058502,0.345796376466751,0.41559824347496,0.708128273487091,0.243512466549873,0.662764012813568,0.825799107551575,0.314353972673416,0.468227863311768,0.841250956058502,0.345796376466751,0.41559824347496, -0.8535395860672,0.35643681883812,0.380030274391174,0.342850595712662,0.149466872215271,0.927422881126404,0.575288236141205,0.238595768809319,0.782378077507019,0.708128273487091,0.243512466549873,0.662764012813568,0.530382215976715,0.125614479184151,0.838400721549988,0.261312931776047,0.0473015941679478,0.964094460010529,0.342850595712662,0.149466872215271,0.927422881126404,0.530382215976715,0.125614479184151,0.838400721549988,0.31952691078186,0.0421200059354305,0.946640610694885,0.305485814809799,0.0270282868295908,0.951812922954559,0.261312931776047,0.0473015941679478,0.964094460010529,0.31952691078186,0.0421200059354305,0.946640610694885,0.251340836286545,0.0682772397994995,0.965487420558929,0.430175453424454,0.17557030916214,0.885507822036743,0.445871531963348,0.0744199678301811,0.891997873783112,0.305485814809799,0.0270282868295908,0.951812922954559,0.251340836286545,0.0682772397994995,0.965487420558929,0.297811090946198,0.113282963633537,0.947879493236542,0.342850595712662,0.149466872215271,0.927422881126404,0.261312931776047,0.0473015941679478,0.964094460010529,0.342262268066406,0.0191853549331427,0.939408481121063,0.445871531963348,0.0744199678301811,0.891997873783112,0.485416024923325,0.00731630343943834,0.874252736568451,0.414848268032074,-0.0309714749455452,0.909363329410553,0.305485814809799,0.0270282868295908,0.951812922954559,0.342262268066406,0.0191853549331427,0.939408481121063,0.261312931776047,0.0473015941679478,0.964094460010529,0.305485814809799,0.0270282868295908,0.951812922954559,0.414848268032074,-0.0309714749455452,0.909363329410553,0.422675728797913,0.0540579818189144,0.904667377471924,0.297811090946198,0.113282963633537,0.947879493236542,0.342262268066406,0.0191853549331427,0.939408481121063,0.460432887077332,-0.0457998625934124,0.886512219905853,0.414848268032074,-0.0309714749455452,0.909363329410553,0.518751204013824,-0.0781070739030838,0.851349830627441,0.460432887077332,-0.0457998625934124,0.886512219905853,0.342262268066406,0.0191853549331427,0.939408481121063,0.485416024923325,0.00731630343943834,0.874252736568451, -0.595667898654938,-0.0288832504302263,0.802711367607117,0.518751204013824,-0.0781070739030838,0.851349830627441,0.414848268032074,-0.0309714749455452,0.909363329410553,0.581657826900482,-0.0957741364836693,0.807775676250458,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.422675728797913,0.0540579818189144,0.904667377471924,0.460432887077332,-0.0457998625934124,0.886512219905853,0.460432887077332,-0.0457998625934124,0.886512219905853,0.518751204013824,-0.0781070739030838,0.851349830627441,0.641083240509033,-0.126405671238899,0.756990015506744,0.581657826900482,-0.0957741364836693,0.807775676250458,0.719404995441437,-0.100821502506733,0.687234699726105,0.641083240509033,-0.126405671238899,0.756990015506744,0.518751204013824,-0.0781070739030838,0.851349830627441,0.595667898654938,-0.0288832504302263,0.802711367607117,0.581657826900482,-0.0957741364836693,0.807775676250458,0.641083240509033,-0.126405671238899,0.756990015506744,0.762171685695648,-0.197300627827644,0.616576731204987,0.690808594226837,-0.146260052919388,0.708090007305145,0.690808594226837,-0.146260052919388,0.708090007305145,0.762171685695648,-0.197300627827644,0.616576731204987,0.837839484214783,-0.268815159797668,0.475145727396011,0.788548588752747,-0.194663256406784,0.583350002765656,0.788548588752747,-0.194663256406784,0.583350002765656,0.837839484214783,-0.268815159797668,0.475145727396011,0.893116891384125,-0.272431463003159,0.357943087816238,0.876360058784485,-0.195948749780655,0.439996868371964,0.876360058784485,-0.195948749780655,0.439996868371964,0.893116891384125,-0.272431463003159,0.357943087816238,0.937765836715698,-0.196240931749344,0.286504596471786,0.937622249126434,-0.122151620686054,0.325489401817322,0.937622249126434,-0.122151620686054,0.325489401817322,0.937765836715698,-0.196240931749344,0.286504596471786,0.965821146965027,-0.0894738808274269,0.243277609348297,0.961383700370789,-0.0141447344794869,0.274847626686096,0.581657826900482,-0.0957741364836693,0.807775676250458,0.690808594226837,-0.146260052919388,0.708090007305145, -0.628640949726105,-0.0453776307404041,0.776370704174042,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.690808594226837,-0.146260052919388,0.708090007305145,0.788548588752747,-0.194663256406784,0.583350002765656,0.723528265953064,-0.0745095536112785,0.686261653900146,0.628640949726105,-0.0453776307404041,0.776370704174042,0.822252213954926,-0.0876014456152916,0.562340915203094,0.723528265953064,-0.0745095536112785,0.686261653900146,0.788548588752747,-0.194663256406784,0.583350002765656,0.876360058784485,-0.195948749780655,0.439996868371964,0.902409493923187,-0.047013234347105,0.428307056427002,0.822252213954926,-0.0876014456152916,0.562340915203094,0.876360058784485,-0.195948749780655,0.439996868371964,0.937622249126434,-0.122151620686054,0.325489401817322,0.937622249126434,-0.122151620686054,0.325489401817322,0.961383700370789,-0.0141447344794869,0.274847626686096,0.937009036540985,0.0365108624100685,0.347391545772552,0.902409493923187,-0.047013234347105,0.428307056427002,0.641083240509033,-0.126405671238899,0.756990015506744,0.719404995441437,-0.100821502506733,0.687234699726105,0.837325751781464,-0.176072046160698,0.517575263977051,0.762171685695648,-0.197300627827644,0.616576731204987,0.88021332025528,-0.256134212017059,0.399524450302124,0.898356378078461,-0.281534463167191,0.337185859680176,0.893116891384125,-0.272431463003159,0.357943087816238,0.837839484214783,-0.268815159797668,0.475145727396011,0.937765836715698,-0.196240931749344,0.286504596471786,0.893116891384125,-0.272431463003159,0.357943087816238,0.898356378078461,-0.281534463167191,0.337185859680176,0.930274307727814,-0.232484877109528,0.283796668052673,0.837325751781464,-0.176072046160698,0.517575263977051,0.88021332025528,-0.256134212017059,0.399524450302124,0.837839484214783,-0.268815159797668,0.475145727396011,0.762171685695648,-0.197300627827644,0.616576731204987,0.804519951343536,-0.100884638726711,0.585294842720032,0.719404995441437,-0.100821502506733,0.687234699726105,0.595667898654938,-0.0288832504302263,0.802711367607117,0.728366792201996,-0.0401403270661831,0.684010624885559, -0.906593561172485,-0.205873534083366,0.368380606174469,0.903943419456482,-0.244961753487587,0.350542455911636,0.898356378078461,-0.281534463167191,0.337185859680176,0.88021332025528,-0.256134212017059,0.399524450302124,0.887425124645233,-0.148617312312126,0.436336398124695,0.906593561172485,-0.205873534083366,0.368380606174469,0.88021332025528,-0.256134212017059,0.399524450302124,0.837325751781464,-0.176072046160698,0.517575263977051,0.804519951343536,-0.100884638726711,0.585294842720032,0.887425124645233,-0.148617312312126,0.436336398124695,0.837325751781464,-0.176072046160698,0.517575263977051,0.719404995441437,-0.100821502506733,0.687234699726105,0.903943419456482,-0.244961753487587,0.350542455911636,0.906593561172485,-0.205873534083366,0.368380606174469,0.915621399879456,-0.171829804778099,0.363472074270248,0.91042959690094,-0.203642472624779,0.36006623506546,0.906593561172485,-0.205873534083366,0.368380606174469,0.887425124645233,-0.148617312312126,0.436336398124695,0.915488481521606,-0.136658504605293,0.37842458486557,0.915621399879456,-0.171829804778099,0.363472074270248,0.915488481521606,-0.136658504605293,0.37842458486557,0.887425124645233,-0.148617312312126,0.436336398124695,0.804519951343536,-0.100884638726711,0.585294842720032,0.865198731422424,-0.128182396292686,0.484768360853195,0.865198731422424,-0.128182396292686,0.484768360853195,0.804519951343536,-0.100884638726711,0.585294842720032,0.728366792201996,-0.0401403270661831,0.684010624885559,0.809467434883118,-0.120740197598934,0.574616611003876,0.908130645751953,-0.144282877445221,0.393040865659714,0.865198731422424,-0.128182396292686,0.484768360853195,0.809467434883118,-0.120740197598934,0.574616611003876,0.859193027019501,-0.181860834360123,0.47824040055275,0.865198731422424,-0.128182396292686,0.484768360853195,0.908130645751953,-0.144282877445221,0.393040865659714,0.924329221248627,-0.124014526605606,0.360882163047791,0.915488481521606,-0.136658504605293,0.37842458486557,0.924329221248627,-0.124014526605606,0.360882163047791,0.915054202079773,-0.143812745809555,0.376820623874664, -0.915621399879456,-0.171829804778099,0.363472074270248,0.915488481521606,-0.136658504605293,0.37842458486557,0.774750411510468,-0.225245609879494,0.590784311294556,0.81378036737442,-0.240548461675644,0.529053747653961,0.859193027019501,-0.181860834360123,0.47824040055275,0.809467434883118,-0.120740197598934,0.574616611003876,0.81378036737442,-0.240548461675644,0.529053747653961,0.830139815807343,-0.25204735994339,0.49733293056488,0.882710337638855,-0.197786077857018,0.426266610622406,0.859193027019501,-0.181860834360123,0.47824040055275,0.879793643951416,-0.306445717811584,0.363392621278763,0.882710337638855,-0.197786077857018,0.426266610622406,0.830139815807343,-0.25204735994339,0.49733293056488,0.833478033542633,-0.379800826311111,0.401329815387726,0.81378036737442,-0.240548461675644,0.529053747653961,0.748553276062012,-0.274503976106644,0.603585660457611,0.776309669017792,-0.276962965726852,0.566246330738068,0.830139815807343,-0.25204735994339,0.49733293056488,0.748553276062012,-0.274503976106644,0.603585660457611,0.81378036737442,-0.240548461675644,0.529053747653961,0.774750411510468,-0.225245609879494,0.590784311294556,0.686697602272034,-0.282533258199692,0.669791877269745,0.830139815807343,-0.25204735994339,0.49733293056488,0.776309669017792,-0.276962965726852,0.566246330738068,0.78462290763855,-0.433153241872787,0.443559587001801,0.833478033542633,-0.379800826311111,0.401329815387726,0.683599233627319,-0.708920001983643,0.173564046621323,0.641319572925568,-0.740115821361542,0.20233079791069,0.489590495824814,-0.871388077735901,0.0313687920570374,0.560462832450867,-0.828098118305206,0.0116214090958238,0.750535011291504,-0.466074794530869,0.4684779047966,0.641319572925568,-0.740115821361542,0.20233079791069,0.683599233627319,-0.708920001983643,0.173564046621323,0.78462290763855,-0.433153241872787,0.443559587001801,0.719575762748718,-0.229525774717331,0.655384361743927,0.748553276062012,-0.274503976106644,0.603585660457611,0.686697602272034,-0.282533258199692,0.669791877269745,0.656148910522461,-0.210049197077751,0.724808871746063, -0.751667439937592,-0.270470201969147,0.601533055305481,0.776309669017792,-0.276962965726852,0.566246330738068,0.748553276062012,-0.274503976106644,0.603585660457611,0.719575762748718,-0.229525774717331,0.655384361743927,0.750535011291504,-0.466074794530869,0.4684779047966,0.78462290763855,-0.433153241872787,0.443559587001801,0.776309669017792,-0.276962965726852,0.566246330738068,0.751667439937592,-0.270470201969147,0.601533055305481,0.745798587799072,-0.149605080485344,0.649155378341675,0.719575762748718,-0.229525774717331,0.655384361743927,0.656148910522461,-0.210049197077751,0.724808871746063,0.695716381072998,-0.086280569434166,0.713115930557251,0.719575762748718,-0.229525774717331,0.655384361743927,0.745798587799072,-0.149605080485344,0.649155378341675,0.774708449840546,-0.24588668346405,0.582551896572113,0.751667439937592,-0.270470201969147,0.601533055305481,0.751667439937592,-0.270470201969147,0.601533055305481,0.774708449840546,-0.24588668346405,0.582551896572113,0.75903993844986,-0.468803286552429,0.451754212379456,0.750535011291504,-0.466074794530869,0.4684779047966,0.634543776512146,-0.742676556110382,0.213975921273232,0.603131353855133,-0.763180196285248,0.231923550367355,0.362132221460342,-0.931851267814636,0.0226623974740505,0.424411624670029,-0.905128479003906,0.0248428620398045,0.739822447299957,-0.494534075260162,0.45617863535881,0.603131353855133,-0.763180196285248,0.231923550367355,0.634543776512146,-0.742676556110382,0.213975921273232,0.75903993844986,-0.468803286552429,0.451754212379456,0.764699459075928,-0.238976553082466,0.598435521125793,0.739822447299957,-0.494534075260162,0.45617863535881,0.75903993844986,-0.468803286552429,0.451754212379456,0.774708449840546,-0.24588668346405,0.582551896572113,0.764699459075928,-0.238976553082466,0.598435521125793,0.774708449840546,-0.24588668346405,0.582551896572113,0.745798587799072,-0.149605080485344,0.649155378341675,0.723881185054779,-0.0956509634852409,0.68326199054718,0.695716381072998,-0.086280569434166,0.713115930557251,0.66613382101059,-0.0218829568475485,0.745511174201965, -0.723881185054779,-0.0956509634852409,0.68326199054718,0.745798587799072,-0.149605080485344,0.649155378341675,0.66613382101059,-0.0218829568475485,0.745511174201965,0.574376583099365,0.0246292874217033,0.818220555782318,0.635141849517822,-0.0666265115141869,0.76951664686203,0.723881185054779,-0.0956509634852409,0.68326199054718,0.723881185054779,-0.0956509634852409,0.68326199054718,0.635141849517822,-0.0666265115141869,0.76951664686203,0.670140743255615,-0.268748909235001,0.691870987415314,0.764699459075928,-0.238976553082466,0.598435521125793,0.764699459075928,-0.238976553082466,0.598435521125793,0.670140743255615,-0.268748909235001,0.691870987415314,0.634809195995331,-0.558387041091919,0.534061014652252,0.739822447299957,-0.494534075260162,0.45617863535881,0.508506715297699,-0.815533101558685,0.276272922754288,0.380801498889923,-0.863352537155151,0.331078112125397,0.235530734062195,-0.971323013305664,0.0325096696615219,0.298353463411331,-0.954143464565277,0.0243995748460293,0.478834360837936,-0.613580346107483,0.627882719039917,0.380801498889923,-0.863352537155151,0.331078112125397,0.508506715297699,-0.815533101558685,0.276272922754288,0.634809195995331,-0.558387041091919,0.534061014652252,0.235530734062195,-0.971323013305664,0.0325096696615219,0.380801498889923,-0.863352537155151,0.331078112125397,0.248282060027122,-0.893886089324951,0.373260855674744,0.172015935182571,-0.984178006649017,0.0424752794206142,0.31335386633873,-0.66547167301178,0.677463471889496,0.248282060027122,-0.893886089324951,0.373260855674744,0.380801498889923,-0.863352537155151,0.331078112125397,0.478834360837936,-0.613580346107483,0.627882719039917,0.344552159309387,0.08065065741539,0.935296416282654,0.369722604751587,-0.0735579207539558,0.926225900650024,0.507166147232056,-0.0646189451217651,0.859422445297241,0.461474180221558,0.0598365068435669,0.885133445262909,0.635141849517822,-0.0666265115141869,0.76951664686203,0.574376583099365,0.0246292874217033,0.818220555782318,0.461474180221558,0.0598365068435669,0.885133445262909,0.507166147232056,-0.0646189451217651,0.859422445297241, -0.670140743255615,-0.268748909235001,0.691870987415314,0.635141849517822,-0.0666265115141869,0.76951664686203,0.507166147232056,-0.0646189451217651,0.859422445297241,0.518171727657318,-0.310628473758698,0.796873927116394,0.518171727657318,-0.310628473758698,0.796873927116394,0.507166147232056,-0.0646189451217651,0.859422445297241,0.369722604751587,-0.0735579207539558,0.926225900650024,0.360987424850464,-0.35328596830368,0.863062560558319,0.478834360837936,-0.613580346107483,0.627882719039917,0.518171727657318,-0.310628473758698,0.796873927116394,0.360987424850464,-0.35328596830368,0.863062560558319,0.31335386633873,-0.66547167301178,0.677463471889496,0.634809195995331,-0.558387041091919,0.534061014652252,0.670140743255615,-0.268748909235001,0.691870987415314,0.518171727657318,-0.310628473758698,0.796873927116394,0.478834360837936,-0.613580346107483,0.627882719039917,0.172015935182571,-0.984178006649017,0.0424752794206142,0.248282060027122,-0.893886089324951,0.373260855674744,0.114588350057602,-0.912775337696075,0.392059504985809,0.0893126279115677,-0.993775486946106,0.066584125161171,0.149707362055779,-0.694378197193146,0.703865468502045,0.114588350057602,-0.912775337696075,0.392059504985809,0.248282060027122,-0.893886089324951,0.373260855674744,0.31335386633873,-0.66547167301178,0.677463471889496,0.369722604751587,-0.0735579207539558,0.926225900650024,0.344552159309387,0.08065065741539,0.935296416282654,0.188998714089394,0.0825605019927025,0.978500485420227,0.203462436795235,-0.0831982791423798,0.975541412830353,0.203462436795235,-0.0831982791423798,0.975541412830353,0.196311578154564,-0.379952698945999,0.903934597969055,0.360987424850464,-0.35328596830368,0.863062560558319,0.369722604751587,-0.0735579207539558,0.926225900650024,0.196311578154564,-0.379952698945999,0.903934597969055,0.149707362055779,-0.694378197193146,0.703865468502045,0.31335386633873,-0.66547167301178,0.677463471889496,0.360987424850464,-0.35328596830368,0.863062560558319,0.203462436795235,-0.0831982791423798,0.975541412830353,0.188998714089394,0.0825605019927025,0.978500485420227, --2.20459881461466e-07,0.0764520391821861,0.997073292732239,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,0.196311578154564,-0.379952698945999,0.903934597969055,0.203462436795235,-0.0831982791423798,0.975541412830353,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,0.149707362055779,-0.694378197193146,0.703865468502045,0.196311578154564,-0.379952698945999,0.903934597969055,0.913659393787384,-0.138570725917816,0.38213175535202,0.908130645751953,-0.144282877445221,0.393040865659714,0.859193027019501,-0.181860834360123,0.47824040055275,0.882710337638855,-0.197786077857018,0.426266610622406,0.908130645751953,-0.144282877445221,0.393040865659714,0.913659393787384,-0.138570725917816,0.38213175535202,0.919660210609436,-0.112061873078346,0.37638720870018,0.924329221248627,-0.124014526605606,0.360882163047791,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.823865830898285,-0.564590632915497,0.0498245023190975,0.677948117256165,-0.71640682220459,-0.164764940738678,0.700287818908691,-0.696540117263794,-0.156297460198402,0.911567687988281,-0.228366628289223,0.341896325349808,0.823865830898285,-0.564590632915497,0.0498245023190975,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.930331110954285,-0.186108112335205,0.315986633300781,0.882710337638855,-0.197786077857018,0.426266610622406,0.879793643951416,-0.306445717811584,0.363392621278763,0.911567687988281,-0.228366628289223,0.341896325349808,0.913659393787384,-0.138570725917816,0.38213175535202,0.913659393787384,-0.138570725917816,0.38213175535202,0.911567687988281,-0.228366628289223,0.341896325349808,0.930331110954285,-0.186108112335205,0.315986633300781,0.919660210609436,-0.112061873078346,0.37638720870018,0.915054202079773,-0.143812745809555,0.376820623874664,0.924329221248627,-0.124014526605606,0.360882163047791,0.919660210609436,-0.112061873078346,0.37638720870018, -0.921531438827515,-0.125053957104683,0.367615789175034,0.888480961322784,-0.454339295625687,-0.064633846282959,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.745865523815155,-0.66082090139389,-0.0836689472198486,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.93603527545929,-0.181322798132896,0.301595836877823,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.888480961322784,-0.454339295625687,-0.064633846282959,0.939025521278381,-0.179977178573608,0.292983204126358,0.919660210609436,-0.112061873078346,0.37638720870018,0.930331110954285,-0.186108112335205,0.315986633300781,0.93603527545929,-0.181322798132896,0.301595836877823,0.921531438827515,-0.125053957104683,0.367615789175034,0.915054202079773,-0.143812745809555,0.376820623874664,0.921531438827515,-0.125053957104683,0.367615789175034,0.926973879337311,-0.145165294408798,0.345899522304535,0.91846889257431,-0.167402893304825,0.358317226171494,0.91042959690094,-0.203642472624779,0.36006623506546,0.915621399879456,-0.171829804778099,0.363472074270248,0.915054202079773,-0.143812745809555,0.376820623874664,0.91846889257431,-0.167402893304825,0.358317226171494,0.921531438827515,-0.125053957104683,0.367615789175034,0.93603527545929,-0.181322798132896,0.301595836877823,0.939025521278381,-0.179977178573608,0.292983204126358,0.926973879337311,-0.145165294408798,0.345899522304535,0.91846889257431,-0.167402893304825,0.358317226171494,0.926973879337311,-0.145165294408798,0.345899522304535,0.94092857837677,-0.141944065690041,0.307417243719101,0.936245381832123,-0.177437111735344,0.303250223398209,0.903943419456482,-0.244961753487587,0.350542455911636,0.91042959690094,-0.203642472624779,0.36006623506546,0.929949820041656,-0.214140594005585,0.298893451690674,0.92530220746994,-0.235561564564705,0.297197818756104,0.930274307727814,-0.232484877109528,0.283796668052673,0.898356378078461,-0.281534463167191,0.337185859680176,0.903943419456482,-0.244961753487587,0.350542455911636,0.92530220746994,-0.235561564564705,0.297197818756104,0.929949820041656,-0.214140594005585,0.298893451690674, -0.91042959690094,-0.203642472624779,0.36006623506546,0.91846889257431,-0.167402893304825,0.358317226171494,0.936245381832123,-0.177437111735344,0.303250223398209,0.94092857837677,-0.141944065690041,0.307417243719101,0.926973879337311,-0.145165294408798,0.345899522304535,0.939025521278381,-0.179977178573608,0.292983204126358,0.958406686782837,-0.153457835316658,0.240639463067055,0.936245381832123,-0.177437111735344,0.303250223398209,0.94092857837677,-0.141944065690041,0.307417243719101,0.967040598392487,-0.115117870271206,0.227112993597984,0.95965588092804,-0.171769678592682,0.222611382603645,0.92530220746994,-0.235561564564705,0.297197818756104,0.929949820041656,-0.214140594005585,0.298893451690674,0.955960512161255,-0.197021514177322,0.217535957694054,0.956452369689941,-0.186609178781509,0.224445641040802,0.937765836715698,-0.196240931749344,0.286504596471786,0.930274307727814,-0.232484877109528,0.283796668052673,0.958805739879608,-0.162935703992844,0.232687652111053,0.965821146965027,-0.0894738808274269,0.243277609348297,0.967040598392487,-0.115117870271206,0.227112993597984,0.94092857837677,-0.141944065690041,0.307417243719101,0.958406686782837,-0.153457835316658,0.240639463067055,0.984486639499664,-0.103614754974842,0.141597986221313,0.955960512161255,-0.197021514177322,0.217535957694054,0.929949820041656,-0.214140594005585,0.298893451690674,0.936245381832123,-0.177437111735344,0.303250223398209,0.95965588092804,-0.171769678592682,0.222611382603645,0.92530220746994,-0.235561564564705,0.297197818756104,0.956452369689941,-0.186609178781509,0.224445641040802,0.958805739879608,-0.162935703992844,0.232687652111053,0.930274307727814,-0.232484877109528,0.283796668052673,0.274986296892166,-0.651024580001831,0.707495212554932,0.383882284164429,-0.603094279766083,0.699222147464752,0.64949357509613,-0.740117192268372,0.174311548471451,0.507421135902405,-0.808788597583771,0.297295808792114,0.275654345750809,-0.681295096874237,0.678123593330383,0.274986296892166,-0.651024580001831,0.707495212554932,0.507421135902405,-0.808788597583771,0.297295808792114, -0.353579491376877,-0.879789888858795,0.317728191614151,0.147971019148827,-0.704563796520233,0.694042086601257,0.275654345750809,-0.681295096874237,0.678123593330383,0.353579491376877,-0.879789888858795,0.317728191614151,0.142130747437477,-0.918823480606079,0.368187576532364,0.0575017705559731,-0.60280305147171,0.795815229415894,0.147971019148827,-0.704563796520233,0.694042086601257,0.142130747437477,-0.918823480606079,0.368187576532364,-0.0265892222523689,-0.900146484375,0.434774845838547,0.134694382548332,-0.463504552841187,0.87579733133316,0.0575017705559731,-0.60280305147171,0.795815229415894,-0.0265892222523689,-0.900146484375,0.434774845838547,-0.106808699667454,-0.887159824371338,0.448931515216827,0.295082241296768,-0.404272556304932,0.865731000900269,0.134694382548332,-0.463504552841187,0.87579733133316,-0.106808699667454,-0.887159824371338,0.448931515216827,-0.15303398668766,-0.885538697242737,0.438636392354965,0.346632272005081,-0.449827909469604,0.823104381561279,0.295082241296768,-0.404272556304932,0.865731000900269,-0.15303398668766,-0.885538697242737,0.438636392354965,-0.155293375253677,-0.884754359722137,0.439424335956573,0.370025664567947,-0.503738164901733,0.780595183372498,0.346632272005081,-0.449827909469604,0.823104381561279,-0.155293375253677,-0.884754359722137,0.439424335956573,-0.216106951236725,-0.874920010566711,0.433373659849167,0.380609661340714,-0.54610675573349,0.746259808540344,0.370025664567947,-0.503738164901733,0.780595183372498,-0.216106951236725,-0.874920010566711,0.433373659849167,-0.326960325241089,-0.825367987155914,0.460287511348724,0.323241502046585,-0.60172700881958,0.730369389057159,0.380609661340714,-0.54610675573349,0.746259808540344,-0.326960325241089,-0.825367987155914,0.460287511348724,-0.321650743484497,-0.862662851810455,0.390324980020523,0.356094896793365,-0.327478647232056,0.875188052654266,0.323241502046585,-0.60172700881958,0.730369389057159,-0.321650743484497,-0.862662851810455,0.390324980020523,-0.339530318975449,-0.611383974552155,0.714792907238007,0.217262208461761,0.57354336977005,0.78983873128891, -0.487023502588272,0.129526108503342,0.86373096704483,0.356094896793365,-0.327478647232056,0.875188052654266,-0.339530318975449,-0.611383974552155,0.714792907238007,0.316681206226349,0.610929429531097,0.725588202476501,0.578737139701843,0.225207775831223,0.7838014960289,0.487023502588272,0.129526108503342,0.86373096704483,0.217262208461761,0.57354336977005,0.78983873128891,0.395166456699371,0.556572616100311,0.730801165103912,0.616995334625244,0.248676180839539,0.746643781661987,0.578737139701843,0.225207775831223,0.7838014960289,0.316681206226349,0.610929429531097,0.725588202476501,0.315014570951462,0.551133930683136,0.772668898105621,0.552578508853912,0.248528689146042,0.795544147491455,0.616995334625244,0.248676180839539,0.746643781661987,0.395166456699371,0.556572616100311,0.730801165103912,0.269765794277191,0.544586539268494,0.794135928153992,0.434168308973312,0.253190070390701,0.864518761634827,0.552578508853912,0.248528689146042,0.795544147491455,0.315014570951462,0.551133930683136,0.772668898105621,0.169712319970131,0.514092206954956,0.840777516365051,0.244830623269081,0.239294216036797,0.939572274684906,0.434168308973312,0.253190070390701,0.864518761634827,0.269765794277191,0.544586539268494,0.794135928153992,0.0438507162034512,0.491777509450912,0.869616031646729,0.0321443751454353,0.215293377637863,0.976020216941833,0.244830623269081,0.239294216036797,0.939572274684906,0.169712319970131,0.514092206954956,0.840777516365051,-0.017424713820219,0.492136418819427,0.870343685150146,-0.0863350555300713,0.219253152608871,0.971840679645538,0.0321443751454353,0.215293377637863,0.976020216941833,0.0438507162034512,0.491777509450912,0.869616031646729,-0.0876083523035049,0.564424693584442,0.820822536945343,-0.199233904480934,0.285865694284439,0.937329471111298,-0.0863350555300713,0.219253152608871,0.971840679645538,-0.017424713820219,0.492136418819427,0.870343685150146,-0.0876083523035049,0.564424693584442,0.820822536945343,-0.138553112745285,0.691621780395508,0.708845794200897,-0.190354779362679,0.393678396940231,0.899323225021362, --0.199233904480934,0.285865694284439,0.937329471111298,0.15533983707428,0.678589880466461,0.717903316020966,0.154182031750679,0.399146050214767,0.903830885887146,-0.190354779362679,0.393678396940231,0.899323225021362,-0.138553112745285,0.691621780395508,0.708845794200897,0.809510111808777,0.027190363034606,0.586475968360901,0.613759577274323,-0.0553232282400131,0.787552237510681,0.154182031750679,0.399146050214767,0.903830885887146,0.15533983707428,0.678589880466461,0.717903316020966,0.809510111808777,0.027190363034606,0.586475968360901,0.857804179191589,-0.476948946714401,0.191551223397255,0.575852811336517,-0.486751854419708,0.656860768795013,0.613759577274323,-0.0553232282400131,0.787552237510681,0.383882284164429,-0.603094279766083,0.699222147464752,0.575852811336517,-0.486751854419708,0.656860768795013,0.857804179191589,-0.476948946714401,0.191551223397255,0.64949357509613,-0.740117192268372,0.174311548471451,0.347748458385468,0.297606498003006,0.889101445674896,0.632292747497559,0.0173319820314646,0.774535715579987,0.595863163471222,0.0579257197678089,0.800994217395782,0.466446876525879,0.281457275152206,0.838575720787048,-0.0414680913090706,0.321205735206604,0.946101069450378,0.347748458385468,0.297606498003006,0.889101445674896,0.466446876525879,0.281457275152206,0.838575720787048,0.178019285202026,0.335278123617172,0.925147414207458,-0.130271911621094,0.17735555768013,0.975486636161804,-0.0414680913090706,0.321205735206604,0.946101069450378,0.178019285202026,0.335278123617172,0.925147414207458,0.0284491945058107,0.192290708422661,0.980925500392914,-0.076492615044117,-0.000426677463110536,0.997070133686066,-0.130271911621094,0.17735555768013,0.975486636161804,0.0284491945058107,0.192290708422661,0.980925500392914,0.013372597284615,0.029881190508604,0.999463975429535,0.0484236851334572,-0.126815900206566,0.990743577480316,-0.076492615044117,-0.000426677463110536,0.997070133686066,0.013372597284615,0.029881190508604,0.999463975429535,0.123857423663139,-0.118740007281303,0.985170066356659,0.290365815162659,-0.138251453638077,0.946876108646393, -0.0484236851334572,-0.126815900206566,0.990743577480316,0.123857423663139,-0.118740007281303,0.985170066356659,0.303152203559875,-0.182029992341995,0.935395061969757,0.501423418521881,-0.0618657283484936,0.862987399101257,0.290365815162659,-0.138251453638077,0.946876108646393,0.303152203559875,-0.182029992341995,0.935395061969757,0.495574027299881,-0.0890679284930229,0.863986849784851,0.591036200523376,0.0579320266842842,0.804562151432037,0.501423418521881,-0.0618657283484936,0.862987399101257,0.495574027299881,-0.0890679284930229,0.863986849784851,0.572860300540924,0.00523662939667702,0.819636225700378,0.60392564535141,0.156122982501984,0.781600594520569,0.591036200523376,0.0579320266842842,0.804562151432037,0.572860300540924,0.00523662939667702,0.819636225700378,0.602928280830383,0.102335661649704,0.791204750537872,0.57700127363205,0.190487146377563,0.794219255447388,0.60392564535141,0.156122982501984,0.781600594520569,0.602928280830383,0.102335661649704,0.791204750537872,0.603891491889954,0.107950486242771,0.789722621440887,0.487047553062439,0.000498084060382098,0.873375296592712,0.57700127363205,0.190487146377563,0.794219255447388,0.603891491889954,0.107950486242771,0.789722621440887,0.584524750709534,-0.00934458523988724,0.811322152614594,0.615728855133057,-0.118637032806873,0.77897584438324,0.420201629400253,-0.298252731561661,0.8570157289505,0.487047553062439,0.000498084060382098,0.873375296592712,0.584524750709534,-0.00934458523988724,0.811322152614594,0.510514736175537,-0.163281068205833,0.844223916530609,0.491462111473083,-0.292720168828964,0.82023161649704,0.187886357307434,-0.371577531099319,0.909191310405731,0.302163988351822,-0.272076666355133,0.91360342502594,0.632292747497559,0.0173319820314646,0.774535715579987,0.491462111473083,-0.292720168828964,0.82023161649704,0.510514736175537,-0.163281068205833,0.844223916530609,0.595863163471222,0.0579257197678089,0.800994217395782,0.101175136864185,-0.185597360134125,0.977403283119202,0.302163988351822,-0.272076666355133,0.91360342502594,0.187886357307434,-0.371577531099319,0.909191310405731, -0.0368634201586246,-0.304008036851883,0.95195597410202,0.0350082777440548,-0.172622829675674,0.98436564207077,0.0401498712599277,-0.017599456012249,0.999038636684418,0.101175136864185,-0.185597360134125,0.977403283119202,0.0368634201586246,-0.304008036851883,0.95195597410202,0.0501973144710064,-0.124382235109806,0.990963816642761,0.0377981849014759,0.105484418570995,0.993702352046967,0.0401498712599277,-0.017599456012249,0.999038636684418,0.0350082777440548,-0.172622829675674,0.98436564207077,0.134436830878258,-0.039139598608017,0.990148901939392,0.159239947795868,0.20620696246624,0.965464353561401,0.0377981849014759,0.105484418570995,0.993702352046967,0.0501973144710064,-0.124382235109806,0.990963816642761,0.290516257286072,0.00602072011679411,0.956851124763489,0.315484464168549,0.231521591544151,0.920253872871399,0.159239947795868,0.20620696246624,0.965464353561401,0.134436830878258,-0.039139598608017,0.990148901939392,0.433234065771103,-0.0361165516078472,0.900557518005371,0.47037798166275,0.179700747132301,0.863974571228027,0.315484464168549,0.231521591544151,0.920253872871399,0.290516257286072,0.00602072011679411,0.956851124763489,0.499967753887177,-0.163535639643669,0.850463688373566,0.618443191051483,0.0514630191028118,0.78414249420166,0.47037798166275,0.179700747132301,0.863974571228027,0.433234065771103,-0.0361165516078472,0.900557518005371,0.521048605442047,-0.286888778209686,0.803867697715759,0.661520719528198,-0.052353672683239,0.74809718132019,0.618443191051483,0.0514630191028118,0.78414249420166,0.499967753887177,-0.163535639643669,0.850463688373566,0.483332127332687,-0.396166235208511,0.780667901039124,0.650227129459381,-0.101999774575233,0.752861678600311,0.661520719528198,-0.052353672683239,0.74809718132019,0.521048605442047,-0.286888778209686,0.803867697715759,0.395630598068237,-0.462299972772598,0.7935711145401,0.648258328437805,-0.140316858887672,0.748379826545715,0.650227129459381,-0.101999774575233,0.752861678600311,0.483332127332687,-0.396166235208511,0.780667901039124,0.615728855133057,-0.118637032806873,0.77897584438324, -0.648258328437805,-0.140316858887672,0.748379826545715,0.395630598068237,-0.462299972772598,0.7935711145401,0.420201629400253,-0.298252731561661,0.8570157289505,0.270612746477127,-0.422039151191711,0.865246593952179,0.380699098110199,-0.54412055015564,0.747663736343384,0.399061352014542,-0.637620508670807,0.658931016921997,0.32490462064743,-0.418022364377975,0.848347902297974,0.264760106801987,-0.358458042144775,0.895215034484863,0.442050814628601,-0.355755299329758,0.823425233364105,0.380699098110199,-0.54412055015564,0.747663736343384,0.270612746477127,-0.422039151191711,0.865246593952179,0.44531324505806,-0.0220793299376965,0.895102560520172,0.62228399515152,-0.106441542506218,0.775520920753479,0.442050814628601,-0.355755299329758,0.823425233364105,0.264760106801987,-0.358458042144775,0.895215034484863,0.654486119747162,0.191098988056183,0.731525182723999,0.699977993965149,0.105198934674263,0.706373870372772,0.62228399515152,-0.106441542506218,0.775520920753479,0.44531324505806,-0.0220793299376965,0.895102560520172,0.635390818119049,0.277111440896988,0.720755100250244,0.699977993965149,0.105198934674263,0.706373870372772,0.654486119747162,0.191098988056183,0.731525182723999,0.724071383476257,0.254366815090179,0.641106963157654,0.537453949451447,0.309819549322128,0.784318149089813,0.483116030693054,0.378075450658798,0.789720058441162,0.635390818119049,0.277111440896988,0.720755100250244,0.724071383476257,0.254366815090179,0.641106963157654,0.327629417181015,0.327735424041748,0.886142432689667,0.295458763837814,0.40319499373436,0.866105020046234,0.483116030693054,0.378075450658798,0.789720058441162,0.537453949451447,0.309819549322128,0.784318149089813,0.282756716012955,0.29180508852005,0.913727760314941,0.241420090198517,0.347718894481659,0.905984401702881,0.295458763837814,0.40319499373436,0.866105020046234,0.327629417181015,0.327735424041748,0.886142432689667,0.375233739614487,0.190444394946098,0.907155156135559,0.300739198923111,0.219192713499069,0.928175926208496,0.241420090198517,0.347718894481659,0.905984401702881, -0.282756716012955,0.29180508852005,0.913727760314941,0.475327998399734,0.0613102093338966,0.877669811248779,0.386915534734726,0.0745876654982567,0.919093608856201,0.300739198923111,0.219192713499069,0.928175926208496,0.375233739614487,0.190444394946098,0.907155156135559,0.582253575325012,-0.0373691320419312,0.812147974967957,0.524923145771027,-0.0342899076640606,0.850458741188049,0.386915534734726,0.0745876654982567,0.919093608856201,0.475327998399734,0.0613102093338966,0.877669811248779,0.694853246212006,-0.0758795365691185,0.715137243270874,0.657937824726105,-0.0946975871920586,0.747094452381134,0.524923145771027,-0.0342899076640606,0.850458741188049,0.582253575325012,-0.0373691320419312,0.812147974967957,0.784411549568176,-0.0817646682262421,0.614827632904053,0.743377506732941,-0.0995368584990501,0.661424338817596,0.657937824726105,-0.0946975871920586,0.747094452381134,0.694853246212006,-0.0758795365691185,0.715137243270874,0.863092243671417,-0.040555365383625,0.50341534614563,0.819737493991852,-0.0587895140051842,0.569714248180389,0.743377506732941,-0.0995368584990501,0.661424338817596,0.784411549568176,-0.0817646682262421,0.614827632904053,0.906984090805054,0.066459633409977,0.415888011455536,0.88086724281311,0.0466531366109848,0.471058756113052,0.819737493991852,-0.0587895140051842,0.569714248180389,0.863092243671417,-0.040555365383625,0.50341534614563,0.906198561191559,0.170440301299095,0.386980891227722,0.891719162464142,0.173081129789352,0.418186485767365,0.88086724281311,0.0466531366109848,0.471058756113052,0.906984090805054,0.066459633409977,0.415888011455536,0.889109969139099,0.168669983744621,0.425480663776398,0.875358283519745,0.225787833333015,0.427513301372528,0.891719162464142,0.173081129789352,0.418186485767365,0.906198561191559,0.170440301299095,0.386980891227722,0.873242199420929,0.179084986448288,0.453185141086578,0.875358283519745,0.225787833333015,0.427513301372528,0.889109969139099,0.168669983744621,0.425480663776398,0.88187563419342,0.0824778228998184,0.464212000370026,0.844126224517822,0.131717905402184,0.519712865352631, -0.873242199420929,0.179084986448288,0.453185141086578,0.88187563419342,0.0824778228998184,0.464212000370026,0.865444779396057,0.0103214215487242,0.500897884368896,0.766587615013123,0.116328589618206,0.631514847278595,0.844126224517822,0.131717905402184,0.519712865352631,0.865444779396057,0.0103214215487242,0.500897884368896,0.804570019245148,-0.0346855819225311,0.592843890190125,0.609998941421509,0.0694049596786499,0.789356827735901,0.766587615013123,0.116328589618206,0.631514847278595,0.804570019245148,-0.0346855819225311,0.592843890190125,0.668119072914124,-0.078662782907486,0.739884495735168,0.475756406784058,-0.124915234744549,0.870661854743958,0.609998941421509,0.0694049596786499,0.789356827735901,0.668119072914124,-0.078662782907486,0.739884495735168,0.546013355255127,-0.156816154718399,0.822969079017639,0.374557584524155,-0.459309250116348,0.805444955825806,0.475756406784058,-0.124915234744549,0.870661854743958,0.546013355255127,-0.156816154718399,0.822969079017639,0.451805233955383,-0.258582532405853,0.853819131851196,0.365272045135498,-0.644276142120361,0.671926021575928,0.374557584524155,-0.459309250116348,0.805444955825806,0.451805233955383,-0.258582532405853,0.853819131851196,0.377237468957901,-0.36413711309433,0.851525783538818,0.399061352014542,-0.637620508670807,0.658931016921997,0.365272045135498,-0.644276142120361,0.671926021575928,0.377237468957901,-0.36413711309433,0.851525783538818,0.32490462064743,-0.418022364377975,0.848347902297974,0.0377981849014759,0.105484418570995,0.993702352046967,0.159239947795868,0.20620696246624,0.965464353561401,0.223360776901245,-0.0399122983217239,0.973918259143829,0.19048398733139,-0.248873218894005,0.949619889259338,0.159239947795868,0.20620696246624,0.965464353561401,0.315484464168549,0.231521591544151,0.920253872871399,0.370503127574921,0.147420585155487,0.917057633399963,0.223360776901245,-0.0399122983217239,0.973918259143829,0.315484464168549,0.231521591544151,0.920253872871399,0.47037798166275,0.179700747132301,0.863974571228027,0.528425633907318,0.181496202945709,0.829352378845215, -0.370503127574921,0.147420585155487,0.917057633399963,0.47037798166275,0.179700747132301,0.863974571228027,0.618443191051483,0.0514630191028118,0.78414249420166,0.699494361877441,0.129322603344917,0.702839374542236,0.528425633907318,0.181496202945709,0.829352378845215,0.618443191051483,0.0514630191028118,0.78414249420166,0.661520719528198,-0.052353672683239,0.74809718132019,0.768238186836243,0.109362043440342,0.630753576755524,0.699494361877441,0.129322603344917,0.702839374542236,0.661520719528198,-0.052353672683239,0.74809718132019,0.650227129459381,-0.101999774575233,0.752861678600311,0.80785346031189,0.132812395691872,0.574224293231964,0.768238186836243,0.109362043440342,0.630753576755524,0.650227129459381,-0.101999774575233,0.752861678600311,0.648258328437805,-0.140316858887672,0.748379826545715,0.820026814937592,0.130921140313148,0.557149529457092,0.80785346031189,0.132812395691872,0.574224293231964,0.648258328437805,-0.140316858887672,0.748379826545715,0.615728855133057,-0.118637032806873,0.77897584438324,0.795642733573914,0.111423671245575,0.595430374145508,0.820026814937592,0.130921140313148,0.557149529457092,0.615728855133057,-0.118637032806873,0.77897584438324,0.584524750709534,-0.00934458523988724,0.811322152614594,0.741437256336212,0.0652128756046295,0.667845726013184,0.795642733573914,0.111423671245575,0.595430374145508,0.584524750709534,-0.00934458523988724,0.811322152614594,0.603891491889954,0.107950486242771,0.789722621440887,0.69052255153656,0.0553218685090542,0.721192121505737,0.741437256336212,0.0652128756046295,0.667845726013184,0.603891491889954,0.107950486242771,0.789722621440887,0.602928280830383,0.102335661649704,0.791204750537872,0.643218159675598,0.0473933406174183,0.764214813709259,0.69052255153656,0.0553218685090542,0.721192121505737,0.602928280830383,0.102335661649704,0.791204750537872,0.572860300540924,0.00523662939667702,0.819636225700378,0.580971300601959,0.000804972019977868,0.81392377614975,0.643218159675598,0.0473933406174183,0.764214813709259,0.572860300540924,0.00523662939667702,0.819636225700378, -0.495574027299881,-0.0890679284930229,0.863986849784851,0.47223624587059,-0.0109372045844793,0.881404221057892,0.580971300601959,0.000804972019977868,0.81392377614975,0.495574027299881,-0.0890679284930229,0.863986849784851,0.303152203559875,-0.182029992341995,0.935395061969757,0.321686059236526,0.00443004816770554,0.946836054325104,0.47223624587059,-0.0109372045844793,0.881404221057892,0.303152203559875,-0.182029992341995,0.935395061969757,0.123857423663139,-0.118740007281303,0.985170066356659,0.226750269532204,0.0926256477832794,0.969538450241089,0.321686059236526,0.00443004816770554,0.946836054325104,0.123857423663139,-0.118740007281303,0.985170066356659,0.013372597284615,0.029881190508604,0.999463975429535,0.149907752871513,0.22834187746048,0.961970686912537,0.226750269532204,0.0926256477832794,0.969538450241089,0.013372597284615,0.029881190508604,0.999463975429535,0.0284491945058107,0.192290708422661,0.980925500392914,0.192397087812424,0.309196352958679,0.931332886219025,0.149907752871513,0.22834187746048,0.961970686912537,0.0284491945058107,0.192290708422661,0.980925500392914,0.178019285202026,0.335278123617172,0.925147414207458,0.387087315320969,0.35172712802887,0.852321207523346,0.192397087812424,0.309196352958679,0.931332886219025,0.178019285202026,0.335278123617172,0.925147414207458,0.466446876525879,0.281457275152206,0.838575720787048,0.545160353183746,0.28033983707428,0.790069401264191,0.387087315320969,0.35172712802887,0.852321207523346,0.466446876525879,0.281457275152206,0.838575720787048,0.595863163471222,0.0579257197678089,0.800994217395782,0.625528752803802,0.0949555560946465,0.774401128292084,0.545160353183746,0.28033983707428,0.790069401264191,0.595863163471222,0.0579257197678089,0.800994217395782,0.510514736175537,-0.163281068205833,0.844223916530609,0.579374969005585,-0.130316764116287,0.804575800895691,0.625528752803802,0.0949555560946465,0.774401128292084,0.510514736175537,-0.163281068205833,0.844223916530609,0.302163988351822,-0.272076666355133,0.91360342502594,0.477636814117432,-0.315843403339386,0.819820702075958, -0.579374969005585,-0.130316764116287,0.804575800895691,0.302163988351822,-0.272076666355133,0.91360342502594,0.101175136864185,-0.185597360134125,0.977403283119202,0.334927916526794,-0.421966195106506,0.842477142810822,0.477636814117432,-0.315843403339386,0.819820702075958,0.101175136864185,-0.185597360134125,0.977403283119202,0.0401498712599277,-0.017599456012249,0.999038636684418,0.255181282758713,-0.350356936454773,0.90118396282196,0.334927916526794,-0.421966195106506,0.842477142810822,0.19048398733139,-0.248873218894005,0.949619889259338,0.255181282758713,-0.350356936454773,0.90118396282196,0.0401498712599277,-0.017599456012249,0.999038636684418,0.0377981849014759,0.105484418570995,0.993702352046967,3.63054823537823e-07,0.15388910472393,0.988088130950928,4.9137469204652e-07,-0.177478060126305,0.984124779701233,0.0868292823433876,-0.237600713968277,0.967474281787872,0.0126644959673285,0.124740086495876,0.992108643054962,0.171102255582809,-0.241622537374496,0.955166220664978,0.0606001727283001,0.145944327116013,0.987435102462769,0.0126644959673285,0.124740086495876,0.992108643054962,0.0868292823433876,-0.237600713968277,0.967474281787872,0.212696671485901,-0.165409192442894,0.963016033172607,0.127829760313034,0.190948247909546,0.973241150379181,0.0606001727283001,0.145944327116013,0.987435102462769,0.171102255582809,-0.241622537374496,0.955166220664978,0.274903774261475,-0.0619128942489624,0.959476232528687,0.224436596035957,0.21460622549057,0.95056426525116,0.127829760313034,0.190948247909546,0.973241150379181,0.212696671485901,-0.165409192442894,0.963016033172607,0.353909879922867,-0.00241755158640444,0.935276448726654,0.34012496471405,0.232896134257317,0.911084234714508,0.224436596035957,0.21460622549057,0.95056426525116,0.274903774261475,-0.0619128942489624,0.959476232528687,0.450483679771423,0.0697160139679909,0.890058517456055,0.470622628927231,0.244484126567841,0.847786426544189,0.34012496471405,0.232896134257317,0.911084234714508,0.353909879922867,-0.00241755158640444,0.935276448726654,0.450483679771423,0.0697160139679909,0.890058517456055, -0.569105446338654,0.102337956428528,0.815871298313141,0.605829894542694,0.242477983236313,0.757743120193481,0.470622628927231,0.244484126567841,0.847786426544189,0.569105446338654,0.102337956428528,0.815871298313141,0.722112476825714,0.0751197412610054,0.687684893608093,0.787121653556824,0.192846432328224,0.58587521314621,0.605829894542694,0.242477983236313,0.757743120193481,0.722112476825714,0.0751197412610054,0.687684893608093,0.864901006221771,0.0519208051264286,0.499249815940857,0.911959171295166,0.113065786659718,0.394393920898438,0.787121653556824,0.192846432328224,0.58587521314621,0.864901006221771,0.0519208051264286,0.499249815940857,0.906421720981598,0.0424889847636223,0.420231252908707,0.932954430580139,0.0962190106511116,0.346897512674332,0.911959171295166,0.113065786659718,0.394393920898438,0.942768275737762,0.0841220244765282,0.322663217782974,0.932954430580139,0.0962190106511116,0.346897512674332,0.906421720981598,0.0424889847636223,0.420231252908707,0.914319574832916,0.0844556987285614,0.39608958363533,0.914319574832916,0.0844556987285614,0.39608958363533,0.923866987228394,0.119930803775787,0.363437175750732,0.952221989631653,0.0937439054250717,0.290663540363312,0.942768275737762,0.0841220244765282,0.322663217782974,0.952221989631653,0.0937439054250717,0.290663540363312,0.923866987228394,0.119930803775787,0.363437175750732,0.935607671737671,0.127907514572144,0.329056054353714,0.958870708942413,0.0859369188547134,0.270521432161331,0.961383700370789,-0.0141447344794869,0.274847626686096,0.958870708942413,0.0859369188547134,0.270521432161331,0.935607671737671,0.127907514572144,0.329056054353714,0.937009036540985,0.0365108624100685,0.347391545772552,0.865864813327789,-0.244937121868134,0.436215370893478,0.728446424007416,0.0299061667174101,0.684449672698975,0.693493843078613,0.0652938857674599,0.717497706413269,0.922428011894226,-0.117696180939674,0.367796540260315,0.693493843078613,0.0652938857674599,0.717497706413269,0.728446424007416,0.0299061667174101,0.684449672698975,0.670880019664764,0.222317710518837,0.707456588745117, -0.506538450717926,0.35728532075882,0.784707605838776,0.506538450717926,0.35728532075882,0.784707605838776,0.670880019664764,0.222317710518837,0.707456588745117,0.635132551193237,0.263100773096085,0.726212561130524,0.303445369005203,0.533744275569916,0.789327561855316,0.303445369005203,0.533744275569916,0.789327561855316,0.635132551193237,0.263100773096085,0.726212561130524,0.640452027320862,0.263455778360367,0.721396088600159,0.137337356805801,0.722086846828461,0.678033173084259,-0.0297253429889679,0.909728527069092,0.41413825750351,0.625394225120544,0.404965937137604,0.666996717453003,0.622280716896057,0.667579412460327,0.408784151077271,-0.06700499355793,0.994928181171417,0.0750212520360947,-0.0590334795415401,0.956456422805786,-0.285842895507813,0.618020355701447,0.785884976387024,-0.0208719410002232,0.593331158161163,0.705877184867859,-0.386905193328857,-0.0566010028123856,0.79650491476059,-0.601976931095123,-0.0566010028123856,0.79650491476059,-0.601976931095123,0.593331158161163,0.705877184867859,-0.386905193328857,0.562604904174805,0.47051990032196,-0.6797696352005,-0.0279301386326551,0.524339079856873,-0.851051330566406,0.00497608492150903,0.23583111166954,-0.971781313419342,0.561478435993195,0.156363993883133,-0.812583804130554,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.00314091914333403,0.0235500894486904,-0.999717712402344,0.00314091914333403,0.0235500894486904,-0.999717712402344,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.629554569721222,-0.156398087739944,-0.761052370071411,-0.0376804433763027,-0.112856008112431,-0.992896676063538,-0.0376804433763027,-0.112856008112431,-0.992896676063538,0.629554569721222,-0.156398087739944,-0.761052370071411,0.560076117515564,-0.328557282686234,-0.760502934455872,0.0169326551258564,-0.267134785652161,-0.963510394096375,0.0169326551258564,-0.267134785652161,-0.963510394096375,0.560076117515564,-0.328557282686234,-0.760502934455872,0.569199740886688,-0.610584735870361,-0.550634264945984,0.137499734759331,-0.576561152935028,-0.805401206016541, -0.137499734759331,-0.576561152935028,-0.805401206016541,0.569199740886688,-0.610584735870361,-0.550634264945984,0.650948166847229,-0.721578299999237,-0.235778078436852,0.18784736096859,-0.823827624320984,-0.534809589385986,0.18784736096859,-0.823827624320984,-0.534809589385986,0.650948166847229,-0.721578299999237,-0.235778078436852,0.832132518291473,-0.552799046039581,0.0443682745099068,0.214595526456833,-0.886546909809113,-0.409857720136642,0.214595526456833,-0.886546909809113,-0.409857720136642,0.832132518291473,-0.552799046039581,0.0443682745099068,0.859106063842773,-0.322601586580276,0.397322475910187,0.290042757987976,-0.933156549930573,-0.212353453040123,0.290042757987976,-0.933156549930573,-0.212353453040123,0.859106063842773,-0.322601586580276,0.397322475910187,0.654786825180054,-0.314872235059738,0.687102377414703,0.308196067810059,-0.929700613021851,0.201672926545143,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.914259970188141,-0.121510900557041,0.386476278305054,0.902530372142792,-0.35335385799408,0.246129766106606,0.921344876289368,-0.0625667944550514,0.383678495883942,0.914259970188141,-0.121510900557041,0.386476278305054,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.951263964176178,-0.308376729488373,0.000831042882055044,0.901318550109863,-0.0963632464408875,0.422301977872849,0.921344876289368,-0.0625667944550514,0.383678495883942,0.951263964176178,-0.308376729488373,0.000831042882055044,0.904256820678711,-0.421132415533066,0.0704780519008636,0.781028568744659,-0.59827983379364,0.179041042923927,0.84453934431076,-0.210837811231613,0.492240488529205,0.901318550109863,-0.0963632464408875,0.422301977872849,0.904256820678711,-0.421132415533066,0.0704780519008636,0.640131115913391,-0.681664824485779,0.354351758956909,0.857174754142761,0.043364193290472,0.513196885585785,0.803415179252625,-0.116373643279076,0.583935976028442,0.671599566936493,-0.681275546550751,0.291234880685806,0.974750101566315,-0.045559749007225,0.218601688742638, -0.939677953720093,0.0602788403630257,0.336707323789597,0.62893533706665,-0.667118549346924,0.399240911006927,0.643931031227112,-0.56351912021637,0.51749324798584,0.634391725063324,-0.482863157987595,0.603647530078888,0.963482141494751,-0.171603187918663,0.205558836460114,0.974750101566315,-0.045559749007225,0.218601688742638,0.643931031227112,-0.56351912021637,0.51749324798584,0.924330651760101,-0.0850117579102516,0.372002333402634,0.946859240531921,-0.191882118582726,0.258145034313202,0.641735076904297,-0.278842389583588,0.71443897485733,0.65424245595932,-0.0184063781052828,0.756060779094696,0.947714447975159,-0.0529348738491535,0.314698785543442,0.924330651760101,-0.0850117579102516,0.372002333402634,0.65424245595932,-0.0184063781052828,0.756060779094696,0.70997554063797,0.0398490242660046,0.703098118305206,0.952737152576447,-0.0828121080994606,0.292290896177292,0.947714447975159,-0.0529348738491535,0.314698785543442,0.70997554063797,0.0398490242660046,0.703098118305206,0.762000799179077,0.0454963818192482,0.645975947380066,0.936217725276947,-0.111827485263348,0.333153009414673,0.952737152576447,-0.0828121080994606,0.292290896177292,0.762000799179077,0.0454963818192482,0.645975947380066,0.801447927951813,0.0991645157337189,0.589785993099213,0.924568891525269,-0.0491753444075584,0.377828150987625,0.936217725276947,-0.111827485263348,0.333153009414673,0.801447927951813,0.0991645157337189,0.589785993099213,0.824441313743591,0.217866167426109,0.522332072257996,0.917489290237427,0.0241320412606001,0.397027730941772,0.924568891525269,-0.0491753444075584,0.377828150987625,0.824441313743591,0.217866167426109,0.522332072257996,0.824443161487579,0.300075590610504,0.479841858148575,0.84398627281189,0.0889337509870529,0.528940320014954,0.917489290237427,0.0241320412606001,0.397027730941772,0.824443161487579,0.300075590610504,0.479841858148575,0.809130072593689,0.28206992149353,0.515504598617554,0.704593360424042,0.0669577419757843,0.706445336341858,0.84398627281189,0.0889337509870529,0.528940320014954,0.809130072593689,0.28206992149353,0.515504598617554, -0.780444979667664,0.102822296321392,0.616711437702179,0.945193707942963,-0.0446834750473499,0.323438256978989,0.887743651866913,-0.0200925394892693,0.459899425506592,0.948820292949677,0.0114547479897738,0.315608501434326,0.97018700838089,-0.0247758682817221,0.241087809205055,0.887743651866913,-0.0200925394892693,0.459899425506592,0.864185392856598,0.167587146162987,0.474445015192032,0.943103075027466,0.0936429277062416,0.319041430950165,0.948820292949677,0.0114547479897738,0.315608501434326,0.943103075027466,0.0936429277062416,0.319041430950165,0.864185392856598,0.167587146162987,0.474445015192032,0.763710796833038,0.452770233154297,0.460157662630081,0.951627790927887,0.163443192839622,0.260174661874771,0.951627790927887,0.163443192839622,0.260174661874771,0.763710796833038,0.452770233154297,0.460157662630081,0.250713855028152,0.911273539066315,0.326684862375259,0.973378658294678,0.186897665262222,0.132677718997002,0.971945106983185,0.2304517775774,0.047060638666153,-0.372783452272415,0.926246881484985,0.0556701570749283,-0.463998109102249,0.878996551036835,-0.109867215156555,0.963071823120117,0.266878843307495,0.035615399479866,0.952061474323273,0.305601835250854,-0.0136559177190065,-0.389676988124847,0.859412610530853,-0.331001073122025,-0.226254805922508,0.785781145095825,-0.575636088848114,0.930095791816711,0.342338055372238,-0.133141040802002,0.930095791816711,0.342338055372238,-0.133141040802002,-0.226254805922508,0.785781145095825,-0.575636088848114,-0.0176147297024727,0.596212863922119,-0.802633166313171,0.929100692272186,0.20589192211628,-0.307213842868805,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.111689388751984,0.199150756001472,-0.973583281040192,0.102727375924587,-0.0390267632901669,-0.993943750858307,0.798786997795105,-0.165355756878853,-0.57844352722168,0.798786997795105,-0.165355756878853,-0.57844352722168,0.102727375924587,-0.0390267632901669,-0.993943750858307,0.0498217418789864,-0.1882054656744,-0.980865120887756,0.758833229541779,-0.263335734605789,-0.595673024654388,0.758833229541779,-0.263335734605789,-0.595673024654388, -0.0498217418789864,-0.1882054656744,-0.980865120887756,-0.061635535210371,-0.241510957479477,-0.968438744544983,0.716414868831635,-0.323539286851883,-0.618119895458221,0.716414868831635,-0.323539286851883,-0.618119895458221,-0.061635535210371,-0.241510957479477,-0.968438744544983,-0.107462324202061,-0.419666409492493,-0.901294589042664,0.702991306781769,-0.382353067398071,-0.599674344062805,0.702991306781769,-0.382353067398071,-0.599674344062805,-0.107462324202061,-0.419666409492493,-0.901294589042664,-0.0494586639106274,-0.758598744869232,-0.649678111076355,0.685542404651642,-0.561854779720306,-0.462980389595032,0.685542404651642,-0.561854779720306,-0.462980389595032,-0.0494586639106274,-0.758598744869232,-0.649678111076355,-0.0597462244331837,-0.903311491012573,-0.424804270267487,0.634013175964355,-0.754983603954315,-0.167412519454956,0.634013175964355,-0.754983603954315,-0.167412519454956,-0.0597462244331837,-0.903311491012573,-0.424804270267487,-0.108800806105137,-0.916919946670532,-0.383953273296356,0.687629699707031,-0.708999276161194,-0.156478196382523,0.799663960933685,-0.564416527748108,-0.204869613051414,0.687629699707031,-0.708999276161194,-0.156478196382523,-0.108800806105137,-0.916919946670532,-0.383953273296356,-0.0492255687713623,-0.998270094394684,0.0321501307189465,-0.0492255687713623,-0.998270094394684,0.0321501307189465,0.534100592136383,-0.534268260002136,0.655205249786377,0.949510335922241,-0.313602358102798,0.00914688967168331,0.799663960933685,-0.564416527748108,-0.204869613051414,0.91729736328125,-0.0667859390377998,0.392562180757523,0.88076651096344,-0.065249428153038,0.469034016132355,0.887743651866913,-0.0200925394892693,0.459899425506592,0.945193707942963,-0.0446834750473499,0.323438256978989,0.88076651096344,-0.065249428153038,0.469034016132355,0.871415734291077,0.104148454964161,0.479361802339554,0.864185392856598,0.167587146162987,0.474445015192032,0.887743651866913,-0.0200925394892693,0.459899425506592,0.763710796833038,0.452770233154297,0.460157662630081,0.864185392856598,0.167587146162987,0.474445015192032, -0.871415734291077,0.104148454964161,0.479361802339554,0.550086200237274,0.511288642883301,0.660294711589813,0.550086200237274,0.511288642883301,0.660294711589813,-0.220280572772026,0.837858080863953,0.49947002530098,0.250713855028152,0.911273539066315,0.326684862375259,0.763710796833038,0.452770233154297,0.460157662630081,-0.401779115200043,0.893144249916077,0.202155500650406,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.463998109102249,0.878996551036835,-0.109867215156555,-0.372783452272415,0.926246881484985,0.0556701570749283,-0.226254805922508,0.785781145095825,-0.575636088848114,-0.389676988124847,0.859412610530853,-0.331001073122025,-0.39429759979248,0.850684344768524,-0.347657203674316,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.0176147297024727,0.596212863922119,-0.802633166313171,-0.226254805922508,0.785781145095825,-0.575636088848114,0.102727375924587,-0.0390267632901669,-0.993943750858307,0.111689388751984,0.199150756001472,-0.973583281040192,-0.148644089698792,0.235805153846741,-0.960364937782288,-0.130063101649284,0.00817450508475304,-0.991471946239471,0.0498217418789864,-0.1882054656744,-0.980865120887756,0.102727375924587,-0.0390267632901669,-0.993943750858307,-0.130063101649284,0.00817450508475304,-0.991471946239471,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.061635535210371,-0.241510957479477,-0.968438744544983,0.0498217418789864,-0.1882054656744,-0.980865120887756,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.195894375443459,-0.191160574555397,-0.961812376976013,-0.107462324202061,-0.419666409492493,-0.901294589042664,-0.061635535210371,-0.241510957479477,-0.968438744544983,-0.195894375443459,-0.191160574555397,-0.961812376976013,-0.143866658210754,-0.477115094661713,-0.866985380649567,-0.0494586639106274,-0.758598744869232,-0.649678111076355,-0.107462324202061,-0.419666409492493,-0.901294589042664,-0.143866658210754,-0.477115094661713,-0.866985380649567, --0.112310647964478,-0.781480193138123,-0.613738477230072,-0.0597462244331837,-0.903311491012573,-0.424804270267487,-0.0494586639106274,-0.758598744869232,-0.649678111076355,-0.112310647964478,-0.781480193138123,-0.613738477230072,-0.178519800305367,-0.850810825824738,-0.494218230247498,-0.108800806105137,-0.916919946670532,-0.383953273296356,-0.0597462244331837,-0.903311491012573,-0.424804270267487,-0.178519800305367,-0.850810825824738,-0.494218230247498,-0.2487733066082,-0.868550360202789,-0.42863991856575,-0.0492255687713623,-0.998270094394684,0.0321501307189465,-0.108800806105137,-0.916919946670532,-0.383953273296356,-0.2487733066082,-0.868550360202789,-0.42863991856575,-0.112244084477425,-0.986817300319672,0.116588704288006,-0.112244084477425,-0.986817300319672,0.116588704288006,0.282774657011032,-0.492954045534134,0.822821259498596,0.534100592136383,-0.534268260002136,0.655205249786377,-0.0492255687713623,-0.998270094394684,0.0321501307189465,0.946859240531921,-0.191882118582726,0.258145034313202,0.963482141494751,-0.171603187918663,0.205558836460114,0.634391725063324,-0.482863157987595,0.603647530078888,0.641735076904297,-0.278842389583588,0.71443897485733,-0.0279301386326551,0.524339079856873,-0.851051330566406,0.562604904174805,0.47051990032196,-0.6797696352005,0.561478435993195,0.156363993883133,-0.812583804130554,0.00497608492150903,0.23583111166954,-0.971781313419342,0.111689388751984,0.199150756001472,-0.973583281040192,-0.0176147297024727,0.596212863922119,-0.802633166313171,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.148644089698792,0.235805153846741,-0.960364937782288,0.929100692272186,0.20589192211628,-0.307213842868805,-0.0176147297024727,0.596212863922119,-0.802633166313171,0.111689388751984,0.199150756001472,-0.973583281040192,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.803415179252625,-0.116373643279076,0.583935976028442,0.84453934431076,-0.210837811231613,0.492240488529205,0.781028568744659,-0.59827983379364,0.179041042923927,0.671599566936493,-0.681275546550751,0.291234880685806, -0.137337356805801,0.722086846828461,0.678033173084259,0.640452027320862,0.263455778360367,0.721396088600159,0.625394225120544,0.404965937137604,0.666996717453003,-0.0297253429889679,0.909728527069092,0.41413825750351,-0.372783452272415,0.926246881484985,0.0556701570749283,0.250713855028152,0.911273539066315,0.326684862375259,-0.220280572772026,0.837858080863953,0.49947002530098,-0.401779115200043,0.893144249916077,0.202155500650406,0.973378658294678,0.186897665262222,0.132677718997002,0.250713855028152,0.911273539066315,0.326684862375259,-0.372783452272415,0.926246881484985,0.0556701570749283,0.971945106983185,0.2304517775774,0.047060638666153,0.939677953720093,0.0602788403630257,0.336707323789597,0.857174754142761,0.043364193290472,0.513196885585785,0.640131115913391,-0.681664824485779,0.354351758956909,0.62893533706665,-0.667118549346924,0.399240911006927,-0.06700499355793,0.994928181171417,0.0750212520360947,0.622280716896057,0.667579412460327,0.408784151077271,0.618020355701447,0.785884976387024,-0.0208719410002232,-0.0590334795415401,0.956456422805786,-0.285842895507813,-0.389676988124847,0.859412610530853,-0.331001073122025,-0.463998109102249,0.878996551036835,-0.109867215156555,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.39429759979248,0.850684344768524,-0.347657203674316,0.963071823120117,0.266878843307495,0.035615399479866,-0.463998109102249,0.878996551036835,-0.109867215156555,-0.389676988124847,0.859412610530853,-0.331001073122025,0.952061474323273,0.305601835250854,-0.0136559177190065,0.902530372142792,-0.35335385799408,0.246129766106606,0.914259970188141,-0.121510900557041,0.386476278305054,0.728446424007416,0.0299061667174101,0.684449672698975,0.865864813327789,-0.244937121868134,0.436215370893478,0.670880019664764,0.222317710518837,0.707456588745117,0.728446424007416,0.0299061667174101,0.684449672698975,0.914259970188141,-0.121510900557041,0.386476278305054,0.921344876289368,-0.0625667944550514,0.383678495883942,0.635132551193237,0.263100773096085,0.726212561130524,0.670880019664764,0.222317710518837,0.707456588745117, -0.921344876289368,-0.0625667944550514,0.383678495883942,0.901318550109863,-0.0963632464408875,0.422301977872849,0.640452027320862,0.263455778360367,0.721396088600159,0.635132551193237,0.263100773096085,0.726212561130524,0.901318550109863,-0.0963632464408875,0.422301977872849,0.84453934431076,-0.210837811231613,0.492240488529205,0.625394225120544,0.404965937137604,0.666996717453003,0.640452027320862,0.263455778360367,0.721396088600159,0.84453934431076,-0.210837811231613,0.492240488529205,0.803415179252625,-0.116373643279076,0.583935976028442,0.622280716896057,0.667579412460327,0.408784151077271,0.625394225120544,0.404965937137604,0.666996717453003,0.803415179252625,-0.116373643279076,0.583935976028442,0.857174754142761,0.043364193290472,0.513196885585785,0.618020355701447,0.785884976387024,-0.0208719410002232,0.622280716896057,0.667579412460327,0.408784151077271,0.857174754142761,0.043364193290472,0.513196885585785,0.939677953720093,0.0602788403630257,0.336707323789597,0.593331158161163,0.705877184867859,-0.386905193328857,0.618020355701447,0.785884976387024,-0.0208719410002232,0.939677953720093,0.0602788403630257,0.336707323789597,0.974750101566315,-0.045559749007225,0.218601688742638,0.562604904174805,0.47051990032196,-0.6797696352005,0.593331158161163,0.705877184867859,-0.386905193328857,0.974750101566315,-0.045559749007225,0.218601688742638,0.963482141494751,-0.171603187918663,0.205558836460114,0.561478435993195,0.156363993883133,-0.812583804130554,0.562604904174805,0.47051990032196,-0.6797696352005,0.963482141494751,-0.171603187918663,0.205558836460114,0.946859240531921,-0.191882118582726,0.258145034313202,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.561478435993195,0.156363993883133,-0.812583804130554,0.946859240531921,-0.191882118582726,0.258145034313202,0.924330651760101,-0.0850117579102516,0.372002333402634,0.629554569721222,-0.156398087739944,-0.761052370071411,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.924330651760101,-0.0850117579102516,0.372002333402634,0.947714447975159,-0.0529348738491535,0.314698785543442, -0.560076117515564,-0.328557282686234,-0.760502934455872,0.629554569721222,-0.156398087739944,-0.761052370071411,0.947714447975159,-0.0529348738491535,0.314698785543442,0.952737152576447,-0.0828121080994606,0.292290896177292,0.569199740886688,-0.610584735870361,-0.550634264945984,0.560076117515564,-0.328557282686234,-0.760502934455872,0.952737152576447,-0.0828121080994606,0.292290896177292,0.936217725276947,-0.111827485263348,0.333153009414673,0.650948166847229,-0.721578299999237,-0.235778078436852,0.569199740886688,-0.610584735870361,-0.550634264945984,0.936217725276947,-0.111827485263348,0.333153009414673,0.924568891525269,-0.0491753444075584,0.377828150987625,0.832132518291473,-0.552799046039581,0.0443682745099068,0.650948166847229,-0.721578299999237,-0.235778078436852,0.924568891525269,-0.0491753444075584,0.377828150987625,0.917489290237427,0.0241320412606001,0.397027730941772,0.859106063842773,-0.322601586580276,0.397322475910187,0.832132518291473,-0.552799046039581,0.0443682745099068,0.917489290237427,0.0241320412606001,0.397027730941772,0.84398627281189,0.0889337509870529,0.528940320014954,0.654786825180054,-0.314872235059738,0.687102377414703,0.859106063842773,-0.322601586580276,0.397322475910187,0.84398627281189,0.0889337509870529,0.528940320014954,0.704593360424042,0.0669577419757843,0.706445336341858,0.534100592136383,-0.534268260002136,0.655205249786377,0.282774657011032,-0.492954045534134,0.822821259498596,0.399955660104752,-0.122806280851364,0.908269882202148,0.777473151683807,-0.164916008710861,0.606908798217773,0.922428011894226,-0.117696180939674,0.367796540260315,0.693493843078613,0.0652938857674599,0.717497706413269,0.88076651096344,-0.065249428153038,0.469034016132355,0.91729736328125,-0.0667859390377998,0.392562180757523,0.693493843078613,0.0652938857674599,0.717497706413269,0.506538450717926,0.35728532075882,0.784707605838776,0.871415734291077,0.104148454964161,0.479361802339554,0.88076651096344,-0.065249428153038,0.469034016132355,0.550086200237274,0.511288642883301,0.660294711589813,0.871415734291077,0.104148454964161,0.479361802339554, -0.506538450717926,0.35728532075882,0.784707605838776,0.303445369005203,0.533744275569916,0.789327561855316,0.137337356805801,0.722086846828461,0.678033173084259,-0.220280572772026,0.837858080863953,0.49947002530098,0.550086200237274,0.511288642883301,0.660294711589813,0.303445369005203,0.533744275569916,0.789327561855316,-0.401779115200043,0.893144249916077,0.202155500650406,-0.220280572772026,0.837858080863953,0.49947002530098,0.137337356805801,0.722086846828461,0.678033173084259,-0.0297253429889679,0.909728527069092,0.41413825750351,-0.06700499355793,0.994928181171417,0.0750212520360947,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.401779115200043,0.893144249916077,0.202155500650406,-0.0297253429889679,0.909728527069092,0.41413825750351,-0.39429759979248,0.850684344768524,-0.347657203674316,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.06700499355793,0.994928181171417,0.0750212520360947,-0.0590334795415401,0.956456422805786,-0.285842895507813,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.39429759979248,0.850684344768524,-0.347657203674316,-0.0590334795415401,0.956456422805786,-0.285842895507813,-0.0566010028123856,0.79650491476059,-0.601976931095123,-0.0279301386326551,0.524339079856873,-0.851051330566406,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.0566010028123856,0.79650491476059,-0.601976931095123,-0.148644089698792,0.235805153846741,-0.960364937782288,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.0279301386326551,0.524339079856873,-0.851051330566406,0.00497608492150903,0.23583111166954,-0.971781313419342,-0.130063101649284,0.00817450508475304,-0.991471946239471,-0.148644089698792,0.235805153846741,-0.960364937782288,0.00497608492150903,0.23583111166954,-0.971781313419342,0.00314091914333403,0.0235500894486904,-0.999717712402344,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.130063101649284,0.00817450508475304,-0.991471946239471,0.00314091914333403,0.0235500894486904,-0.999717712402344, --0.0376804433763027,-0.112856008112431,-0.992896676063538,-0.195894375443459,-0.191160574555397,-0.961812376976013,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.0376804433763027,-0.112856008112431,-0.992896676063538,0.0169326551258564,-0.267134785652161,-0.963510394096375,-0.143866658210754,-0.477115094661713,-0.866985380649567,-0.195894375443459,-0.191160574555397,-0.961812376976013,0.0169326551258564,-0.267134785652161,-0.963510394096375,0.137499734759331,-0.576561152935028,-0.805401206016541,-0.112310647964478,-0.781480193138123,-0.613738477230072,-0.143866658210754,-0.477115094661713,-0.866985380649567,0.137499734759331,-0.576561152935028,-0.805401206016541,0.18784736096859,-0.823827624320984,-0.534809589385986,-0.178519800305367,-0.850810825824738,-0.494218230247498,-0.112310647964478,-0.781480193138123,-0.613738477230072,0.18784736096859,-0.823827624320984,-0.534809589385986,0.214595526456833,-0.886546909809113,-0.409857720136642,-0.2487733066082,-0.868550360202789,-0.42863991856575,-0.178519800305367,-0.850810825824738,-0.494218230247498,0.214595526456833,-0.886546909809113,-0.409857720136642,0.290042757987976,-0.933156549930573,-0.212353453040123,-0.112244084477425,-0.986817300319672,0.116588704288006,-0.2487733066082,-0.868550360202789,-0.42863991856575,0.290042757987976,-0.933156549930573,-0.212353453040123,0.308196067810059,-0.929700613021851,0.201672926545143,0.308196067810059,-0.929700613021851,0.201672926545143,0.654786825180054,-0.314872235059738,0.687102377414703,0.282774657011032,-0.492954045534134,0.822821259498596,-0.112244084477425,-0.986817300319672,0.116588704288006,0.399955660104752,-0.122806280851364,0.908269882202148,0.282774657011032,-0.492954045534134,0.822821259498596,0.654786825180054,-0.314872235059738,0.687102377414703,0.704593360424042,0.0669577419757843,0.706445336341858,0.780444979667664,0.102822296321392,0.616711437702179,0.777473151683807,-0.164916008710861,0.606908798217773,0.399955660104752,-0.122806280851364,0.908269882202148,0.704593360424042,0.0669577419757843,0.706445336341858, -0.946084856987,-0.140076950192451,0.292064756155014,0.966974794864655,-0.204627946019173,0.151944443583488,0.777473151683807,-0.164916008710861,0.606908798217773,0.780444979667664,0.102822296321392,0.616711437702179,0.780444979667664,0.102822296321392,0.616711437702179,0.809130072593689,0.28206992149353,0.515504598617554,0.849553465843201,0.330861002206802,0.410840421915054,0.946084856987,-0.140076950192451,0.292064756155014,0.727731168270111,0.510997116565704,0.457481563091278,0.849553465843201,0.330861002206802,0.410840421915054,0.809130072593689,0.28206992149353,0.515504598617554,0.824443161487579,0.300075590610504,0.479841858148575,0.727731168270111,0.510997116565704,0.457481563091278,0.824443161487579,0.300075590610504,0.479841858148575,0.824441313743591,0.217866167426109,0.522332072257996,0.69241726398468,0.398123800754547,0.601710796356201,0.801447927951813,0.0991645157337189,0.589785993099213,0.712208926677704,0.203920528292656,0.671695649623871,0.69241726398468,0.398123800754547,0.601710796356201,0.824441313743591,0.217866167426109,0.522332072257996,0.775300860404968,0.0572843737900257,0.628988981246948,0.712208926677704,0.203920528292656,0.671695649623871,0.801447927951813,0.0991645157337189,0.589785993099213,0.762000799179077,0.0454963818192482,0.645975947380066,0.70997554063797,0.0398490242660046,0.703098118305206,0.819959878921509,0.00309151108376682,0.572412669658661,0.775300860404968,0.0572843737900257,0.628988981246948,0.762000799179077,0.0454963818192482,0.645975947380066,0.65424245595932,-0.0184063781052828,0.756060779094696,0.849036872386932,-0.0140870260074735,0.528145670890808,0.819959878921509,0.00309151108376682,0.572412669658661,0.70997554063797,0.0398490242660046,0.703098118305206,0.83646947145462,-0.198363229632378,0.510853052139282,0.641735076904297,-0.278842389583588,0.71443897485733,0.634391725063324,-0.482863157987595,0.603647530078888,0.821050524711609,-0.34096160531044,0.457844227552414,0.641735076904297,-0.278842389583588,0.71443897485733,0.83646947145462,-0.198363229632378,0.510853052139282, -0.849036872386932,-0.0140870260074735,0.528145670890808,0.65424245595932,-0.0184063781052828,0.756060779094696,0.821050524711609,-0.34096160531044,0.457844227552414,0.634391725063324,-0.482863157987595,0.603647530078888,0.643931031227112,-0.56351912021637,0.51749324798584,0.745959103107452,-0.528664886951447,0.405041337013245,0.62893533706665,-0.667118549346924,0.399240911006927,0.640131115913391,-0.681664824485779,0.354351758956909,0.745959103107452,-0.528664886951447,0.405041337013245,0.643931031227112,-0.56351912021637,0.51749324798584,0.671599566936493,-0.681275546550751,0.291234880685806,0.781028568744659,-0.59827983379364,0.179041042923927,0.745959103107452,-0.528664886951447,0.405041337013245,0.640131115913391,-0.681664824485779,0.354351758956909,0.781028568744659,-0.59827983379364,0.179041042923927,0.904256820678711,-0.421132415533066,0.0704780519008636,0.911594092845917,-0.365250021219254,0.18864980340004,0.745959103107452,-0.528664886951447,0.405041337013245,0.95483011007309,-0.288762539625168,0.070111446082592,0.911594092845917,-0.365250021219254,0.18864980340004,0.904256820678711,-0.421132415533066,0.0704780519008636,0.951263964176178,-0.308376729488373,0.000831042882055044,0.959436595439911,-0.277830600738525,0.0478714220225811,0.95483011007309,-0.288762539625168,0.070111446082592,0.951263964176178,-0.308376729488373,0.000831042882055044,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.923373401165009,-0.348017007112503,0.162066772580147,0.959436595439911,-0.277830600738525,0.0478714220225811,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.911594092845917,-0.365250021219254,0.18864980340004,0.930769860744476,-0.145906195044518,0.335229486227036,0.821050524711609,-0.34096160531044,0.457844227552414,0.745959103107452,-0.528664886951447,0.405041337013245,0.929600656032562,-0.0477374866604805,0.365463882684708,0.83646947145462,-0.198363229632378,0.510853052139282,0.821050524711609,-0.34096160531044,0.457844227552414,0.930769860744476,-0.145906195044518,0.335229486227036, -0.894357562065125,-0.110856242477894,0.433399796485901,0.849036872386932,-0.0140870260074735,0.528145670890808,0.83646947145462,-0.198363229632378,0.510853052139282,0.929600656032562,-0.0477374866604805,0.365463882684708,0.819959878921509,0.00309151108376682,0.572412669658661,0.849036872386932,-0.0140870260074735,0.528145670890808,0.894357562065125,-0.110856242477894,0.433399796485901,0.824273407459259,-0.163596123456955,0.542042136192322,0.775300860404968,0.0572843737900257,0.628988981246948,0.819959878921509,0.00309151108376682,0.572412669658661,0.824273407459259,-0.163596123456955,0.542042136192322,0.736697912216187,0.0184263195842505,0.675970911979675,0.736697912216187,0.0184263195842505,0.675970911979675,0.737134635448456,-0.0549518167972565,0.673507928848267,0.712208926677704,0.203920528292656,0.671695649623871,0.775300860404968,0.0572843737900257,0.628988981246948,0.830455124378204,0.126324638724327,0.542573690414429,0.69241726398468,0.398123800754547,0.601710796356201,0.712208926677704,0.203920528292656,0.671695649623871,0.737134635448456,-0.0549518167972565,0.673507928848267,0.909037172794342,-0.204508885741234,0.363080441951752,0.930769860744476,-0.145906195044518,0.335229486227036,0.911594092845917,-0.365250021219254,0.18864980340004,0.95483011007309,-0.288762539625168,0.070111446082592,0.959436595439911,-0.277830600738525,0.0478714220225811,0.89477813243866,-0.148949444293976,0.420934796333313,0.909037172794342,-0.204508885741234,0.363080441951752,0.95483011007309,-0.288762539625168,0.070111446082592,0.89477813243866,-0.148949444293976,0.420934796333313,0.929600656032562,-0.0477374866604805,0.365463882684708,0.930769860744476,-0.145906195044518,0.335229486227036,0.909037172794342,-0.204508885741234,0.363080441951752,0.89477813243866,-0.148949444293976,0.420934796333313,0.959436595439911,-0.277830600738525,0.0478714220225811,0.923373401165009,-0.348017007112503,0.162066772580147,0.850171804428101,-0.27052628993988,0.451689451932907,0.850171804428101,-0.27052628993988,0.451689451932907,0.894357562065125,-0.110856242477894,0.433399796485901, -0.929600656032562,-0.0477374866604805,0.365463882684708,0.89477813243866,-0.148949444293976,0.420934796333313,0.819830298423767,-0.322179704904556,0.473369419574738,0.824273407459259,-0.163596123456955,0.542042136192322,0.894357562065125,-0.110856242477894,0.433399796485901,0.850171804428101,-0.27052628993988,0.451689451932907,0.819830298423767,-0.322179704904556,0.473369419574738,0.737134635448456,-0.0549518167972565,0.673507928848267,0.736697912216187,0.0184263195842505,0.675970911979675,0.824273407459259,-0.163596123456955,0.542042136192322,0.878611743450165,-0.381455481052399,0.287285715341568,0.819830298423767,-0.322179704904556,0.473369419574738,0.850171804428101,-0.27052628993988,0.451689451932907,0.923373401165009,-0.348017007112503,0.162066772580147,0.737134635448456,-0.0549518167972565,0.673507928848267,0.819830298423767,-0.322179704904556,0.473369419574738,0.878611743450165,-0.381455481052399,0.287285715341568,0.830455124378204,0.126324638724327,0.542573690414429,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.923127830028534,-0.383502662181854,-0.027582885697484,0.878611743450165,-0.381455481052399,0.287285715341568,0.923373401165009,-0.348017007112503,0.162066772580147,0.923127830028534,-0.383502662181854,-0.027582885697484,0.988159596920013,0.0504882745444775,0.144884407520294,0.830455124378204,0.126324638724327,0.542573690414429,0.878611743450165,-0.381455481052399,0.287285715341568,0.830455124378204,0.126324638724327,0.542573690414429,0.988159596920013,0.0504882745444775,0.144884407520294,0.727731168270111,0.510997116565704,0.457481563091278,0.69241726398468,0.398123800754547,0.601710796356201,0.992866992950439,0.118977770209312,-0.00771740125492215,0.849553465843201,0.330861002206802,0.410840421915054,0.727731168270111,0.510997116565704,0.457481563091278,0.988159596920013,0.0504882745444775,0.144884407520294,0.923127830028534,-0.383502662181854,-0.027582885697484,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.902530372142792,-0.35335385799408,0.246129766106606,0.922197282314301,-0.365359276533127,-0.126746743917465, -0.988159596920013,0.0504882745444775,0.144884407520294,0.923127830028534,-0.383502662181854,-0.027582885697484,0.922197282314301,-0.365359276533127,-0.126746743917465,0.992866992950439,0.118977770209312,-0.00771740125492215,0.922197282314301,-0.365359276533127,-0.126746743917465,0.902530372142792,-0.35335385799408,0.246129766106606,0.865864813327789,-0.244937121868134,0.436215370893478,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.992866992950439,0.118977770209312,-0.00771740125492215,0.922197282314301,-0.365359276533127,-0.126746743917465,0.652465879917145,-0.309646725654602,-0.691669821739197,0.842729508876801,0.0403632298111916,-0.536822021007538,0.875657081604004,-0.0230466760694981,0.482383280992508,0.811973512172699,-0.313396215438843,0.492424458265305,0.842729508876801,0.0403632298111916,-0.536822021007538,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.938480615615845,-0.0792247131466866,0.336121410131454,0.875657081604004,-0.0230466760694981,0.482383280992508,0.914948642253876,-0.273785412311554,-0.296497106552124,0.652465879917145,-0.309646725654602,-0.691669821739197,0.811973512172699,-0.313396215438843,0.492424458265305,0.926337361335754,-0.258206903934479,0.274277895689011,0.914948642253876,-0.273785412311554,-0.296497106552124,0.926337361335754,-0.258206903934479,0.274277895689011,0.946084856987,-0.140076950192451,0.292064756155014,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.811973512172699,-0.313396215438843,0.492424458265305,0.875657081604004,-0.0230466760694981,0.482383280992508,0.938480615615845,-0.0792247131466866,0.336121410131454,0.926337361335754,-0.258206903934479,0.274277895689011,0.842729508876801,0.0403632298111916,-0.536822021007538,0.652465879917145,-0.309646725654602,-0.691669821739197,0.914948642253876,-0.273785412311554,-0.296497106552124,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.989428877830505,-0.105288341641426,-0.0997243225574493, -0.914948642253876,-0.273785412311554,-0.296497106552124,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.865864813327789,-0.244937121868134,0.436215370893478,0.922428011894226,-0.117696180939674,0.367796540260315,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.922428011894226,-0.117696180939674,0.367796540260315,0.91729736328125,-0.0667859390377998,0.392562180757523,0.938480615615845,-0.0792247131466866,0.336121410131454,0.926337361335754,-0.258206903934479,0.274277895689011,0.938480615615845,-0.0792247131466866,0.336121410131454,0.968835592269897,-0.0854190215468407,0.232510715723038,0.966275095939636,-0.204047128558159,0.157090455293655,0.938480615615845,-0.0792247131466866,0.336121410131454,0.91729736328125,-0.0667859390377998,0.392562180757523,0.945193707942963,-0.0446834750473499,0.323438256978989,0.968835592269897,-0.0854190215468407,0.232510715723038,0.946084856987,-0.140076950192451,0.292064756155014,0.926337361335754,-0.258206903934479,0.274277895689011,0.966275095939636,-0.204047128558159,0.157090455293655,0.966974794864655,-0.204627946019173,0.151944443583488,0.946084856987,-0.140076950192451,0.292064756155014,0.849553465843201,0.330861002206802,0.410840421915054,0.992866992950439,0.118977770209312,-0.00771740125492215,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.93919163942337,-0.289291888475418,-0.185011476278305,0.970032155513763,-0.168102562427521,-0.175439640879631,0.938031852245331,-0.247648492455482,-0.242418184876442,0.955960512161255,-0.197021514177322,0.217535957694054,0.975469470024109,-0.177975580096245,0.129553586244583,0.978523850440979,-0.125670671463013,0.163395091891289,0.956452369689941,-0.186609178781509,0.224445641040802,0.979095160961151,-0.175281122326851,0.103194668889046,0.975469470024109,-0.177975580096245,0.129553586244583, -0.955960512161255,-0.197021514177322,0.217535957694054,0.95965588092804,-0.171769678592682,0.222611382603645,0.97018700838089,-0.0247758682817221,0.241087809205055,0.985617160797119,-0.0366762354969978,0.164965406060219,0.968835592269897,-0.0854190215468407,0.232510715723038,0.945193707942963,-0.0446834750473499,0.323438256978989,0.978523850440979,-0.125670671463013,0.163395091891289,0.981810450553894,-0.0882908776402473,0.168086409568787,0.958805739879608,-0.162935703992844,0.232687652111053,0.956452369689941,-0.186609178781509,0.224445641040802,0.961383700370789,-0.0141447344794869,0.274847626686096,0.965821146965027,-0.0894738808274269,0.243277609348297,0.974596858024597,0.0424520932137966,0.219906210899353,0.958870708942413,0.0859369188547134,0.270521432161331,0.972173810005188,0.0678136348724365,0.224230602383614,0.952221989631653,0.0937439054250717,0.290663540363312,0.958870708942413,0.0859369188547134,0.270521432161331,0.974596858024597,0.0424520932137966,0.219906210899353,0.987412750720978,-0.0044169332832098,0.158103331923485,0.982922613620758,0.0160325933247805,0.183319360017776,0.972173810005188,0.0678136348724365,0.224230602383614,0.974596858024597,0.0424520932137966,0.219906210899353,0.952221989631653,0.0937439054250717,0.290663540363312,0.972173810005188,0.0678136348724365,0.224230602383614,0.966921269893646,0.0556005649268627,0.248941779136658,0.942768275737762,0.0841220244765282,0.322663217782974,0.982922613620758,0.0160325933247805,0.183319360017776,0.974100351333618,0.0250669457018375,0.22472271323204,0.966921269893646,0.0556005649268627,0.248941779136658,0.972173810005188,0.0678136348724365,0.224230602383614,0.966275095939636,-0.204047128558159,0.157090455293655,0.975469470024109,-0.177975580096245,0.129553586244583,0.979095160961151,-0.175281122326851,0.103194668889046,0.966974794864655,-0.204627946019173,0.151944443583488,0.978523850440979,-0.125670671463013,0.163395091891289,0.975469470024109,-0.177975580096245,0.129553586244583,0.966275095939636,-0.204047128558159,0.157090455293655,0.968835592269897,-0.0854190215468407,0.232510715723038, -0.985617160797119,-0.0366762354969978,0.164965406060219,0.981810450553894,-0.0882908776402473,0.168086409568787,0.978523850440979,-0.125670671463013,0.163395091891289,0.968835592269897,-0.0854190215468407,0.232510715723038,0.981810450553894,-0.0882908776402473,0.168086409568787,0.982539415359497,-0.0605739802122116,0.17591817677021,0.965821146965027,-0.0894738808274269,0.243277609348297,0.958805739879608,-0.162935703992844,0.232687652111053,0.97018700838089,-0.0247758682817221,0.241087809205055,0.982922613620758,0.0160325933247805,0.183319360017776,0.987412750720978,-0.0044169332832098,0.158103331923485,0.985617160797119,-0.0366762354969978,0.164965406060219,0.948820292949677,0.0114547479897738,0.315608501434326,0.974100351333618,0.0250669457018375,0.22472271323204,0.982922613620758,0.0160325933247805,0.183319360017776,0.97018700838089,-0.0247758682817221,0.241087809205055,0.965821146965027,-0.0894738808274269,0.243277609348297,0.982539415359497,-0.0605739802122116,0.17591817677021,0.987412750720978,-0.0044169332832098,0.158103331923485,0.974596858024597,0.0424520932137966,0.219906210899353,0.985617160797119,-0.0366762354969978,0.164965406060219,0.987412750720978,-0.0044169332832098,0.158103331923485,0.982539415359497,-0.0605739802122116,0.17591817677021,0.981810450553894,-0.0882908776402473,0.168086409568787,0.970032155513763,-0.168102562427521,-0.175439640879631,0.93919163942337,-0.289291888475418,-0.185011476278305,0.799663960933685,-0.564416527748108,-0.204869613051414,0.949510335922241,-0.313602358102798,0.00914688967168331,0.990661561489105,-0.0985424667596817,0.0942294076085091,0.967040598392487,-0.115117870271206,0.227112993597984,0.984486639499664,-0.103614754974842,0.141597986221313,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.970032155513763,-0.168102562427521,-0.175439640879631,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.984486639499664,-0.103614754974842,0.141597986221313,0.938031852245331,-0.247648492455482,-0.242418184876442,0.967040598392487,-0.115117870271206,0.227112993597984, -0.990661561489105,-0.0985424667596817,0.0942294076085091,0.979095160961151,-0.175281122326851,0.103194668889046,0.95965588092804,-0.171769678592682,0.222611382603645,0.966974794864655,-0.204627946019173,0.151944443583488,0.979095160961151,-0.175281122326851,0.103194668889046,0.990661561489105,-0.0985424667596817,0.0942294076085091,0.982503831386566,-0.137144461274147,0.126006171107292,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.993854641914368,-0.0928921699523926,0.060199610888958,0.982503831386566,-0.137144461274147,0.126006171107292,0.990661561489105,-0.0985424667596817,0.0942294076085091,0.970032155513763,-0.168102562427521,-0.175439640879631,0.949510335922241,-0.313602358102798,0.00914688967168331,0.993854641914368,-0.0928921699523926,0.060199610888958,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.534100592136383,-0.534268260002136,0.655205249786377,0.982503831386566,-0.137144461274147,0.126006171107292,0.993854641914368,-0.0928921699523926,0.060199610888958,0.949510335922241,-0.313602358102798,0.00914688967168331,0.982503831386566,-0.137144461274147,0.126006171107292,0.534100592136383,-0.534268260002136,0.655205249786377,0.777473151683807,-0.164916008710861,0.606908798217773,0.966974794864655,-0.204627946019173,0.151944443583488,0.93919163942337,-0.289291888475418,-0.185011476278305,0.926034092903137,-0.373746484518051,0.0526725798845291,0.687629699707031,-0.708999276161194,-0.156478196382523,0.799663960933685,-0.564416527748108,-0.204869613051414,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.972091734409332,-0.19378337264061,0.132233992218971,0.926034092903137,-0.373746484518051,0.0526725798845291,0.93919163942337,-0.289291888475418,-0.185011476278305,0.926034092903137,-0.373746484518051,0.0526725798845291,0.936240255832672,-0.34966179728508,-0.0345064513385296,0.634013175964355,-0.754983603954315,-0.167412519454956,0.687629699707031,-0.708999276161194,-0.156478196382523,0.972091734409332,-0.19378337264061,0.132233992218971,0.985939145088196,-0.159022495150566,-0.051341850310564, -0.936240255832672,-0.34966179728508,-0.0345064513385296,0.926034092903137,-0.373746484518051,0.0526725798845291,0.685542404651642,-0.561854779720306,-0.462980389595032,0.634013175964355,-0.754983603954315,-0.167412519454956,0.936240255832672,-0.34966179728508,-0.0345064513385296,0.938230693340302,-0.262705355882645,-0.225186720490456,0.985939145088196,-0.159022495150566,-0.051341850310564,0.97196090221405,-0.152993887662888,-0.178563609719276,0.938230693340302,-0.262705355882645,-0.225186720490456,0.936240255832672,-0.34966179728508,-0.0345064513385296,0.702991306781769,-0.382353067398071,-0.599674344062805,0.685542404651642,-0.561854779720306,-0.462980389595032,0.938230693340302,-0.262705355882645,-0.225186720490456,0.933903932571411,-0.245449021458626,-0.25995796918869,0.933903932571411,-0.245449021458626,-0.25995796918869,0.938230693340302,-0.262705355882645,-0.225186720490456,0.97196090221405,-0.152993887662888,-0.178563609719276,0.957486629486084,-0.184700474143028,-0.221596762537956,0.716414868831635,-0.323539286851883,-0.618119895458221,0.702991306781769,-0.382353067398071,-0.599674344062805,0.933903932571411,-0.245449021458626,-0.25995796918869,0.93233996629715,-0.243075132369995,-0.267687529325485,0.944222986698151,-0.212333366274834,-0.251709252595901,0.93233996629715,-0.243075132369995,-0.267687529325485,0.933903932571411,-0.245449021458626,-0.25995796918869,0.957486629486084,-0.184700474143028,-0.221596762537956,0.940533101558685,-0.199141666293144,-0.275209188461304,0.930727899074554,-0.228274136781693,-0.285721004009247,0.93233996629715,-0.243075132369995,-0.267687529325485,0.944222986698151,-0.212333366274834,-0.251709252595901,0.758833229541779,-0.263335734605789,-0.595673024654388,0.716414868831635,-0.323539286851883,-0.618119895458221,0.93233996629715,-0.243075132369995,-0.267687529325485,0.930727899074554,-0.228274136781693,-0.285721004009247,0.798786997795105,-0.165355756878853,-0.57844352722168,0.758833229541779,-0.263335734605789,-0.595673024654388,0.930727899074554,-0.228274136781693,-0.285721004009247, -0.939685344696045,-0.176109403371811,-0.293217957019806,0.945234417915344,-0.137335374951363,-0.296092659235001,0.939685344696045,-0.176109403371811,-0.293217957019806,0.930727899074554,-0.228274136781693,-0.285721004009247,0.940533101558685,-0.199141666293144,-0.275209188461304,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.798786997795105,-0.165355756878853,-0.57844352722168,0.939685344696045,-0.176109403371811,-0.293217957019806,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.939685344696045,-0.176109403371811,-0.293217957019806,0.945234417915344,-0.137335374951363,-0.296092659235001,0.955026984214783,-0.051256325095892,-0.292055010795593,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.970383882522583,0.0250233355909586,-0.24026857316494,0.985621094703674,0.0365986451506615,-0.164959043264389,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.955026984214783,-0.051256325095892,-0.292055010795593,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.985621094703674,0.0365986451506615,-0.164959043264389,0.929100692272186,0.20589192211628,-0.307213842868805,0.970383882522583,0.0250233355909586,-0.24026857316494,0.988576829433441,0.0620807446539402,-0.137338176369667,0.996430158615112,0.0729457512497902,-0.042496208101511,0.985621094703674,0.0365986451506615,-0.164959043264389,0.930095791816711,0.342338055372238,-0.133141040802002,0.929100692272186,0.20589192211628,-0.307213842868805,0.985621094703674,0.0365986451506615,-0.164959043264389,0.996430158615112,0.0729457512497902,-0.042496208101511,0.952061474323273,0.305601835250854,-0.0136559177190065,0.930095791816711,0.342338055372238,-0.133141040802002,0.996430158615112,0.0729457512497902,-0.042496208101511,0.997910022735596,0.0556039623916149,0.0329231843352318,0.976938724517822,0.019720233976841,0.212607473134995,0.970829784870148,0.0159736219793558,0.239236995577812,0.943103075027466,0.0936429277062416,0.319041430950165,0.951627790927887,0.163443192839622,0.260174661874771, -0.988910734653473,0.0384650677442551,0.143442898988724,0.976938724517822,0.019720233976841,0.212607473134995,0.951627790927887,0.163443192839622,0.260174661874771,0.973378658294678,0.186897665262222,0.132677718997002,0.973378658294678,0.186897665262222,0.132677718997002,0.971945106983185,0.2304517775774,0.047060638666153,0.996085703372955,0.0419612489640713,0.0777981355786324,0.988910734653473,0.0384650677442551,0.143442898988724,0.971945106983185,0.2304517775774,0.047060638666153,0.963071823120117,0.266878843307495,0.035615399479866,0.997484982013702,0.0432191453874111,0.0561778098344803,0.996085703372955,0.0419612489640713,0.0777981355786324,0.963071823120117,0.266878843307495,0.035615399479866,0.952061474323273,0.305601835250854,-0.0136559177190065,0.997910022735596,0.0556039623916149,0.0329231843352318,0.997484982013702,0.0432191453874111,0.0561778098344803,0.974100351333618,0.0250669457018375,0.22472271323204,0.948820292949677,0.0114547479897738,0.315608501434326,0.943103075027466,0.0936429277062416,0.319041430950165,0.970829784870148,0.0159736219793558,0.239236995577812,0.970829784870148,0.0159736219793558,0.239236995577812,0.949044108390808,0.0498211532831192,0.31118032336235,0.966921269893646,0.0556005649268627,0.248941779136658,0.974100351333618,0.0250669457018375,0.22472271323204,0.949044108390808,0.0498211532831192,0.31118032336235,0.970829784870148,0.0159736219793558,0.239236995577812,0.976938724517822,0.019720233976841,0.212607473134995,0.960659623146057,0.0338883921504021,0.275653272867203,0.960659623146057,0.0338883921504021,0.275653272867203,0.976938724517822,0.019720233976841,0.212607473134995,0.988910734653473,0.0384650677442551,0.143442898988724,0.977930426597595,0.0641225203871727,0.198847070336342,0.977930426597595,0.0641225203871727,0.198847070336342,0.988910734653473,0.0384650677442551,0.143442898988724,0.996085703372955,0.0419612489640713,0.0777981355786324,0.989530563354492,0.0796420350670815,0.120359174907207,0.989530563354492,0.0796420350670815,0.120359174907207,0.996085703372955,0.0419612489640713,0.0777981355786324, -0.997484982013702,0.0432191453874111,0.0561778098344803,0.996394753456116,0.0641462877392769,0.0555225983262062,0.996394753456116,0.0641462877392769,0.0555225983262062,0.997484982013702,0.0432191453874111,0.0561778098344803,0.997910022735596,0.0556039623916149,0.0329231843352318,0.997803330421448,0.0609460808336735,-0.0259629245847464,0.997803330421448,0.0609460808336735,-0.0259629245847464,0.997910022735596,0.0556039623916149,0.0329231843352318,0.996430158615112,0.0729457512497902,-0.042496208101511,0.988576829433441,0.0620807446539402,-0.137338176369667,0.942768275737762,0.0841220244765282,0.322663217782974,0.966921269893646,0.0556005649268627,0.248941779136658,0.949044108390808,0.0498211532831192,0.31118032336235,0.932954430580139,0.0962190106511116,0.346897512674332,0.949044108390808,0.0498211532831192,0.31118032336235,0.921738266944885,0.0887763872742653,0.377514630556107,0.911959171295166,0.113065786659718,0.394393920898438,0.932954430580139,0.0962190106511116,0.346897512674332,0.787121653556824,0.192846432328224,0.58587521314621,0.911959171295166,0.113065786659718,0.394393920898438,0.921738266944885,0.0887763872742653,0.377514630556107,0.845208823680878,0.180517926812172,0.503026068210602,0.605829894542694,0.242477983236313,0.757743120193481,0.787121653556824,0.192846432328224,0.58587521314621,0.845208823680878,0.180517926812172,0.503026068210602,0.675026774406433,0.278837263584137,0.683072924613953,0.470622628927231,0.244484126567841,0.847786426544189,0.605829894542694,0.242477983236313,0.757743120193481,0.675026774406433,0.278837263584137,0.683072924613953,0.525900959968567,0.292911231517792,0.798518180847168,0.34012496471405,0.232896134257317,0.911084234714508,0.470622628927231,0.244484126567841,0.847786426544189,0.525900959968567,0.292911231517792,0.798518180847168,0.378590941429138,0.300119280815125,0.875555515289307,0.224436596035957,0.21460622549057,0.95056426525116,0.34012496471405,0.232896134257317,0.911084234714508,0.378590941429138,0.300119280815125,0.875555515289307,0.237685114145279,0.303838759660721,0.922598421573639, -0.127829760313034,0.190948247909546,0.973241150379181,0.224436596035957,0.21460622549057,0.95056426525116,0.237685114145279,0.303838759660721,0.922598421573639,0.125087037682533,0.303321987390518,0.944642245769501,0.0606001727283001,0.145944327116013,0.987435102462769,0.127829760313034,0.190948247909546,0.973241150379181,0.125087037682533,0.303321987390518,0.944642245769501,0.0415279157459736,0.30098682641983,0.952723741531372,0.0126644959673285,0.124740086495876,0.992108643054962,0.0606001727283001,0.145944327116013,0.987435102462769,0.0415279157459736,0.30098682641983,0.952723741531372,0.0110976947471499,0.29407525062561,0.955717861652374,3.63054823537823e-07,0.15388910472393,0.988088130950928,0.0126644959673285,0.124740086495876,0.992108643054962,0.0110976947471499,0.29407525062561,0.955717861652374,3.70331861176965e-07,0.294343143701553,0.955699801445007,3.78939120082578e-07,0.396793782711029,0.91790771484375,0.0258950460702181,0.398819148540497,0.916663944721222,0.058110199868679,0.588280439376831,0.806566417217255,8.38516669432465e-08,0.584491431713104,0.811399877071381,0.0258950460702181,0.398819148540497,0.916663944721222,0.0572113655507565,0.412366420030594,0.909219980239868,0.0703990161418915,0.603085041046143,0.794564366340637,0.058110199868679,0.588280439376831,0.806566417217255,0.0572113655507565,0.412366420030594,0.909219980239868,0.1373071372509,0.425327479839325,0.894563257694244,0.156789556145668,0.606592118740082,0.779399156570435,0.0703990161418915,0.603085041046143,0.794564366340637,0.1373071372509,0.425327479839325,0.894563257694244,0.2657470703125,0.42672210931778,0.864457488059998,0.289225488901138,0.599415242671967,0.746357798576355,0.156789556145668,0.606592118740082,0.779399156570435,0.2657470703125,0.42672210931778,0.864457488059998,0.416861593723297,0.41656681895256,0.807897686958313,0.437061607837677,0.57153731584549,0.694494187831879,0.289225488901138,0.599415242671967,0.746357798576355,0.416861593723297,0.41656681895256,0.807897686958313,0.576666712760925,0.384265273809433,0.72096860408783, -0.602753698825836,0.505191385746002,0.617632329463959,0.437061607837677,0.57153731584549,0.694494187831879,0.576666712760925,0.384265273809433,0.72096860408783,0.726795554161072,0.320454448461533,0.607517182826996,0.751825571060181,0.405794024467468,0.519701361656189,0.602753698825836,0.505191385746002,0.617632329463959,0.726795554161072,0.320454448461533,0.607517182826996,0.867741763591766,0.189786493778229,0.459352970123291,0.891626000404358,0.245754688978195,0.380273312330246,0.751825571060181,0.405794024467468,0.519701361656189,0.867741763591766,0.189786493778229,0.459352970123291,0.9303337931633,0.0937245115637779,0.354534506797791,0.954199731349945,0.131023362278938,0.268953144550323,0.891626000404358,0.245754688978195,0.380273312330246,3.70331861176965e-07,0.294343143701553,0.955699801445007,0.0110976947471499,0.29407525062561,0.955717861652374,0.0258950460702181,0.398819148540497,0.916663944721222,3.78939120082578e-07,0.396793782711029,0.91790771484375,0.0110976947471499,0.29407525062561,0.955717861652374,0.0415279157459736,0.30098682641983,0.952723741531372,0.0572113655507565,0.412366420030594,0.909219980239868,0.0258950460702181,0.398819148540497,0.916663944721222,0.0415279157459736,0.30098682641983,0.952723741531372,0.125087037682533,0.303321987390518,0.944642245769501,0.1373071372509,0.425327479839325,0.894563257694244,0.0572113655507565,0.412366420030594,0.909219980239868,0.125087037682533,0.303321987390518,0.944642245769501,0.237685114145279,0.303838759660721,0.922598421573639,0.2657470703125,0.42672210931778,0.864457488059998,0.1373071372509,0.425327479839325,0.894563257694244,0.237685114145279,0.303838759660721,0.922598421573639,0.378590941429138,0.300119280815125,0.875555515289307,0.416861593723297,0.41656681895256,0.807897686958313,0.2657470703125,0.42672210931778,0.864457488059998,0.378590941429138,0.300119280815125,0.875555515289307,0.525900959968567,0.292911231517792,0.798518180847168,0.576666712760925,0.384265273809433,0.72096860408783,0.416861593723297,0.41656681895256,0.807897686958313,0.525900959968567,0.292911231517792,0.798518180847168, -0.675026774406433,0.278837263584137,0.683072924613953,0.726795554161072,0.320454448461533,0.607517182826996,0.576666712760925,0.384265273809433,0.72096860408783,0.675026774406433,0.278837263584137,0.683072924613953,0.845208823680878,0.180517926812172,0.503026068210602,0.867741763591766,0.189786493778229,0.459352970123291,0.726795554161072,0.320454448461533,0.607517182826996,0.845208823680878,0.180517926812172,0.503026068210602,0.921738266944885,0.0887763872742653,0.377514630556107,0.9303337931633,0.0937245115637779,0.354534506797791,0.867741763591766,0.189786493778229,0.459352970123291,0.960659623146057,0.0338883921504021,0.275653272867203,0.9303337931633,0.0937245115637779,0.354534506797791,0.921738266944885,0.0887763872742653,0.377514630556107,0.949044108390808,0.0498211532831192,0.31118032336235,0.9303337931633,0.0937245115637779,0.354534506797791,0.960659623146057,0.0338883921504021,0.275653272867203,0.977930426597595,0.0641225203871727,0.198847070336342,0.954199731349945,0.131023362278938,0.268953144550323,0.989530563354492,0.0796420350670815,0.120359174907207,0.971547603607178,0.182237073779106,0.151277899742126,0.954199731349945,0.131023362278938,0.268953144550323,0.977930426597595,0.0641225203871727,0.198847070336342,0.971547603607178,0.182237073779106,0.151277899742126,0.90499746799469,0.313914448022842,0.287118971347809,0.891626000404358,0.245754688978195,0.380273312330246,0.954199731349945,0.131023362278938,0.268953144550323,0.751825571060181,0.405794024467468,0.519701361656189,0.891626000404358,0.245754688978195,0.380273312330246,0.90499746799469,0.313914448022842,0.287118971347809,0.762992441654205,0.522242665290833,0.380926609039307,0.751825571060181,0.405794024467468,0.519701361656189,0.762992441654205,0.522242665290833,0.380926609039307,0.622123301029205,0.643279433250427,0.446267068386078,0.602753698825836,0.505191385746002,0.617632329463959,0.602753698825836,0.505191385746002,0.617632329463959,0.622123301029205,0.643279433250427,0.446267068386078,0.464312165975571,0.728468775749207,0.503733694553375, -0.437061607837677,0.57153731584549,0.694494187831879,0.328172475099564,0.76567405462265,0.553214311599731,0.289225488901138,0.599415242671967,0.746357798576355,0.437061607837677,0.57153731584549,0.694494187831879,0.464312165975571,0.728468775749207,0.503733694553375,0.289225488901138,0.599415242671967,0.746357798576355,0.328172475099564,0.76567405462265,0.553214311599731,0.200046196579933,0.78645932674408,0.584348678588867,0.156789556145668,0.606592118740082,0.779399156570435,0.156789556145668,0.606592118740082,0.779399156570435,0.200046196579933,0.78645932674408,0.584348678588867,0.0968291908502579,0.78747296333313,0.608695685863495,0.0703990161418915,0.603085041046143,0.794564366340637,0.0703990161418915,0.603085041046143,0.794564366340637,0.0968291908502579,0.78747296333313,0.608695685863495,0.0651870667934418,0.788389921188354,0.611712276935577,0.058110199868679,0.588280439376831,0.806566417217255,0.058110199868679,0.588280439376831,0.806566417217255,0.0651870667934418,0.788389921188354,0.611712276935577,-3.37651790971449e-08,0.775006294250488,0.631953537464142,8.38516669432465e-08,0.584491431713104,0.811399877071381,0.944222986698151,-0.212333366274834,-0.251709252595901,0.957486629486084,-0.184700474143028,-0.221596762537956,0.92917388677597,-0.180594369769096,-0.322523593902588,0.904424250125885,-0.21146722137928,-0.370537936687469,0.904424250125885,-0.21146722137928,-0.370537936687469,0.92917388677597,-0.180594369769096,-0.322523593902588,0.838658630847931,-0.203891068696976,-0.505054593086243,0.807295143604279,-0.229477018117905,-0.543704748153687,0.689217746257782,-0.248354837298393,-0.680660486221313,0.714498579502106,-0.221778824925423,-0.663555502891541,0.570639073848724,-0.235795319080353,-0.786620318889618,0.561252772808075,-0.260013580322266,-0.785740613937378,0.471044212579727,-0.273908972740173,-0.838505327701569,0.450328022241592,-0.24593797326088,-0.858323454856873,0.368643432855606,-0.262233227491379,-0.891816020011902,0.406798601150513,-0.29585188627243,-0.864283800125122,0.561252772808075,-0.260013580322266,-0.785740613937378, -0.570639073848724,-0.235795319080353,-0.786620318889618,0.450328022241592,-0.24593797326088,-0.858323454856873,0.471044212579727,-0.273908972740173,-0.838505327701569,0.807295143604279,-0.229477018117905,-0.543704748153687,0.838658630847931,-0.203891068696976,-0.505054593086243,0.714498579502106,-0.221778824925423,-0.663555502891541,0.689217746257782,-0.248354837298393,-0.680660486221313,0.534115433692932,-0.164715558290482,-0.829210162162781,0.471044212579727,-0.273908972740173,-0.838505327701569,0.406798601150513,-0.29585188627243,-0.864283800125122,0.475787192583084,-0.178060233592987,-0.861348450183868,0.593405485153198,-0.153525665402412,-0.790126383304596,0.561252772808075,-0.260013580322266,-0.785740613937378,0.471044212579727,-0.273908972740173,-0.838505327701569,0.534115433692932,-0.164715558290482,-0.829210162162781,0.561252772808075,-0.260013580322266,-0.785740613937378,0.593405485153198,-0.153525665402412,-0.790126383304596,0.701683819293976,-0.147749245166779,-0.697000682353973,0.689217746257782,-0.248354837298393,-0.680660486221313,0.908635377883911,-0.173304617404938,-0.379930704832077,0.904424250125885,-0.21146722137928,-0.370537936687469,0.807295143604279,-0.229477018117905,-0.543704748153687,0.81737619638443,-0.15200386941433,-0.555689573287964,0.81737619638443,-0.15200386941433,-0.555689573287964,0.807295143604279,-0.229477018117905,-0.543704748153687,0.689217746257782,-0.248354837298393,-0.680660486221313,0.701683819293976,-0.147749245166779,-0.697000682353973,0.944222986698151,-0.212333366274834,-0.251709252595901,0.904424250125885,-0.21146722137928,-0.370537936687469,0.908635377883911,-0.173304617404938,-0.379930704832077,0.940533101558685,-0.199141666293144,-0.275209188461304,0.475787192583084,-0.178060233592987,-0.861348450183868,0.52644681930542,0.0210285410284996,-0.849947988986969,0.588890314102173,0.00803658273071051,-0.808173000812531,0.534115433692932,-0.164715558290482,-0.829210162162781,0.534115433692932,-0.164715558290482,-0.829210162162781,0.588890314102173,0.00803658273071051,-0.808173000812531, -0.643712341785431,-0.0050167734734714,-0.765251040458679,0.593405485153198,-0.153525665402412,-0.790126383304596,0.593405485153198,-0.153525665402412,-0.790126383304596,0.643712341785431,-0.0050167734734714,-0.765251040458679,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.701683819293976,-0.147749245166779,-0.697000682353973,0.701683819293976,-0.147749245166779,-0.697000682353973,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.831664323806763,-0.0509964860975742,-0.55293196439743,0.81737619638443,-0.15200386941433,-0.555689573287964,0.908635377883911,-0.173304617404938,-0.379930704832077,0.81737619638443,-0.15200386941433,-0.555689573287964,0.831664323806763,-0.0509964860975742,-0.55293196439743,0.914027333259583,-0.0927668064832687,-0.39490270614624,0.940533101558685,-0.199141666293144,-0.275209188461304,0.908635377883911,-0.173304617404938,-0.379930704832077,0.914027333259583,-0.0927668064832687,-0.39490270614624,0.945234417915344,-0.137335374951363,-0.296092659235001,0.52644681930542,0.0210285410284996,-0.849947988986969,0.546258211135864,0.170718178153038,-0.820034921169281,0.622180461883545,0.141736105084419,-0.769936621189117,0.588890314102173,0.00803658273071051,-0.808173000812531,0.688102960586548,0.117322869598866,-0.716065406799316,0.643712341785431,-0.0050167734734714,-0.765251040458679,0.588890314102173,0.00803658273071051,-0.808173000812531,0.622180461883545,0.141736105084419,-0.769936621189117,0.643712341785431,-0.0050167734734714,-0.765251040458679,0.688102960586548,0.117322869598866,-0.716065406799316,0.770941257476807,0.0789640098810196,-0.631992220878601,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.856478810310364,0.0379295870661736,-0.514786779880524,0.831664323806763,-0.0509964860975742,-0.55293196439743,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.770941257476807,0.0789640098810196,-0.631992220878601,0.856478810310364,0.0379295870661736,-0.514786779880524,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.914027333259583,-0.0927668064832687,-0.39490270614624, -0.831664323806763,-0.0509964860975742,-0.55293196439743,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.955026984214783,-0.051256325095892,-0.292055010795593,0.945234417915344,-0.137335374951363,-0.296092659235001,0.914027333259583,-0.0927668064832687,-0.39490270614624,0.546258211135864,0.170718178153038,-0.820034921169281,0.566569268703461,0.356520175933838,-0.742894768714905,0.660623550415039,0.295197755098343,-0.69024246931076,0.622180461883545,0.141736105084419,-0.769936621189117,0.622180461883545,0.141736105084419,-0.769936621189117,0.660623550415039,0.295197755098343,-0.69024246931076,0.731676697731018,0.238973557949066,-0.638389229774475,0.688102960586548,0.117322869598866,-0.716065406799316,0.688102960586548,0.117322869598866,-0.716065406799316,0.731676697731018,0.238973557949066,-0.638389229774475,0.815724313259125,0.170847624540329,-0.552634537220001,0.770941257476807,0.0789640098810196,-0.631992220878601,0.770941257476807,0.0789640098810196,-0.631992220878601,0.815724313259125,0.170847624540329,-0.552634537220001,0.893019199371338,0.102401807904243,-0.438212871551514,0.856478810310364,0.0379295870661736,-0.514786779880524,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.856478810310364,0.0379295870661736,-0.514786779880524,0.893019199371338,0.102401807904243,-0.438212871551514,0.943421423435211,0.0523654744029045,-0.327435225248337,0.955026984214783,-0.051256325095892,-0.292055010795593,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.943421423435211,0.0523654744029045,-0.327435225248337,0.970383882522583,0.0250233355909586,-0.24026857316494,0.566569268703461,0.356520175933838,-0.742894768714905,0.565610706806183,0.583545327186584,-0.582717299461365,0.671949446201324,0.496658146381378,-0.549376606941223,0.660623550415039,0.295197755098343,-0.69024246931076,0.660623550415039,0.295197755098343,-0.69024246931076,0.671949446201324,0.496658146381378,-0.549376606941223,0.767210483551025,0.393296152353287,-0.506662011146545,0.731676697731018,0.238973557949066,-0.638389229774475,0.731676697731018,0.238973557949066,-0.638389229774475, -0.767210483551025,0.393296152353287,-0.506662011146545,0.859392285346985,0.279522657394409,-0.428149461746216,0.815724313259125,0.170847624540329,-0.552634537220001,0.815724313259125,0.170847624540329,-0.552634537220001,0.859392285346985,0.279522657394409,-0.428149461746216,0.930336058139801,0.167347609996796,-0.326296627521515,0.893019199371338,0.102401807904243,-0.438212871551514,0.943421423435211,0.0523654744029045,-0.327435225248337,0.893019199371338,0.102401807904243,-0.438212871551514,0.930336058139801,0.167347609996796,-0.326296627521515,0.968808591365814,0.0964464396238327,-0.228271663188934,0.970383882522583,0.0250233355909586,-0.24026857316494,0.943421423435211,0.0523654744029045,-0.327435225248337,0.968808591365814,0.0964464396238327,-0.228271663188934,0.988576829433441,0.0620807446539402,-0.137338176369667,0.565610706806183,0.583545327186584,-0.582717299461365,0.544627547264099,0.749089062213898,-0.377155691385269,0.659332871437073,0.658399403095245,-0.363029420375824,0.671949446201324,0.496658146381378,-0.549376606941223,0.781218111515045,0.528859853744507,-0.331670761108398,0.767210483551025,0.393296152353287,-0.506662011146545,0.671949446201324,0.496658146381378,-0.549376606941223,0.659332871437073,0.658399403095245,-0.363029420375824,0.767210483551025,0.393296152353287,-0.506662011146545,0.781218111515045,0.528859853744507,-0.331670761108398,0.892427146434784,0.365392863750458,-0.264692217111588,0.859392285346985,0.279522657394409,-0.428149461746216,0.859392285346985,0.279522657394409,-0.428149461746216,0.892427146434784,0.365392863750458,-0.264692217111588,0.957009434700012,0.223830491304398,-0.184480234980583,0.930336058139801,0.167347609996796,-0.326296627521515,0.930336058139801,0.167347609996796,-0.326296627521515,0.957009434700012,0.223830491304398,-0.184480234980583,0.987574636936188,0.121956363320351,-0.0991108566522598,0.968808591365814,0.0964464396238327,-0.228271663188934,0.968808591365814,0.0964464396238327,-0.228271663188934,0.987574636936188,0.121956363320351,-0.0991108566522598,0.997803330421448,0.0609460808336735,-0.0259629245847464, -0.988576829433441,0.0620807446539402,-0.137338176369667,0.544627547264099,0.749089062213898,-0.377155691385269,0.521591365337372,0.839731931686401,-0.150972828269005,0.63557767868042,0.756734430789948,-0.152951136231422,0.659332871437073,0.658399403095245,-0.363029420375824,0.659332871437073,0.658399403095245,-0.363029420375824,0.63557767868042,0.756734430789948,-0.152951136231422,0.770054936408997,0.622105002403259,-0.141424030065536,0.781218111515045,0.528859853744507,-0.331670761108398,0.781218111515045,0.528859853744507,-0.331670761108398,0.770054936408997,0.622105002403259,-0.141424030065536,0.897646903991699,0.429799139499664,-0.0974820926785469,0.892427146434784,0.365392863750458,-0.264692217111588,0.892427146434784,0.365392863750458,-0.264692217111588,0.897646903991699,0.429799139499664,-0.0974820926785469,0.963172733783722,0.2657470703125,-0.0409478284418583,0.957009434700012,0.223830491304398,-0.184480234980583,0.957009434700012,0.223830491304398,-0.184480234980583,0.963172733783722,0.2657470703125,-0.0409478284418583,0.99001944065094,0.138423517346382,0.0264663714915514,0.987574636936188,0.121956363320351,-0.0991108566522598,0.987574636936188,0.121956363320351,-0.0991108566522598,0.99001944065094,0.138423517346382,0.0264663714915514,0.996394753456116,0.0641462877392769,0.0555225983262062,0.997803330421448,0.0609460808336735,-0.0259629245847464,0.971547603607178,0.182237073779106,0.151277899742126,0.989530563354492,0.0796420350670815,0.120359174907207,0.996394753456116,0.0641462877392769,0.0555225983262062,0.99001944065094,0.138423517346382,0.0264663714915514,0.963172733783722,0.2657470703125,-0.0409478284418583,0.952902376651764,0.297708421945572,0.0578522533178329,0.971547603607178,0.182237073779106,0.151277899742126,0.99001944065094,0.138423517346382,0.0264663714915514,0.521591365337372,0.839731931686401,-0.150972828269005,0.492445111274719,0.868746936321259,0.05269430950284,0.610087811946869,0.791172444820404,0.0428828708827496,0.63557767868042,0.756734430789948,-0.152951136231422,0.63557767868042,0.756734430789948,-0.152951136231422, -0.610087811946869,0.791172444820404,0.0428828708827496,0.743669152259827,0.667196214199066,0.0424903333187103,0.770054936408997,0.622105002403259,-0.141424030065536,0.770054936408997,0.622105002403259,-0.141424030065536,0.743669152259827,0.667196214199066,0.0424903333187103,0.883939743041992,0.464299023151398,0.0554694533348083,0.897646903991699,0.429799139499664,-0.0974820926785469,0.897646903991699,0.429799139499664,-0.0974820926785469,0.883939743041992,0.464299023151398,0.0554694533348083,0.952902376651764,0.297708421945572,0.0578522533178329,0.963172733783722,0.2657470703125,-0.0409478284418583,0.882412493228912,0.439034909009933,0.169104903936386,0.746327102184296,0.630759358406067,0.212458118796349,0.762992441654205,0.522242665290833,0.380926609039307,0.90499746799469,0.313914448022842,0.287118971347809,0.762992441654205,0.522242665290833,0.380926609039307,0.746327102184296,0.630759358406067,0.212458118796349,0.613025426864624,0.755100071430206,0.23243023455143,0.622123301029205,0.643279433250427,0.446267068386078,0.743669152259827,0.667196214199066,0.0424903333187103,0.746327102184296,0.630759358406067,0.212458118796349,0.882412493228912,0.439034909009933,0.169104903936386,0.883939743041992,0.464299023151398,0.0554694533348083,0.613025426864624,0.755100071430206,0.23243023455143,0.746327102184296,0.630759358406067,0.212458118796349,0.743669152259827,0.667196214199066,0.0424903333187103,0.610087811946869,0.791172444820404,0.0428828708827496,0.952902376651764,0.297708421945572,0.0578522533178329,0.883939743041992,0.464299023151398,0.0554694533348083,0.882412493228912,0.439034909009933,0.169104903936386,0.971547603607178,0.182237073779106,0.151277899742126,0.971547603607178,0.182237073779106,0.151277899742126,0.882412493228912,0.439034909009933,0.169104903936386,0.90499746799469,0.313914448022842,0.287118971347809,0.129164814949036,-0.339349329471588,-0.931750297546387,0.122248478233814,-0.293943494558334,-0.94797283411026,0.0509440563619137,-0.305600732564926,-0.950795948505402,0.0510413609445095,-0.341072261333466,-0.938650369644165, -0.161409333348274,-0.199696838855743,-0.966472029685974,0.129164814949036,-0.339349329471588,-0.931750297546387,0.0510413609445095,-0.341072261333466,-0.938650369644165,0.0610240995883942,-0.198125913739204,-0.978275060653687,0.0610240995883942,-0.198125913739204,-0.978275060653687,0.0826811119914055,0.0399862043559551,-0.995773553848267,0.198316425085068,0.0361166931688786,-0.979472398757935,0.161409333348274,-0.199696838855743,-0.966472029685974,0.0826811119914055,0.0399862043559551,-0.995773553848267,0.126609787344933,0.235696777701378,-0.963544011116028,0.244097381830215,0.233473435044289,-0.941226124763489,0.198316425085068,0.0361166931688786,-0.979472398757935,0.126609787344933,0.235696777701378,-0.963544011116028,0.151392564177513,0.496224284172058,-0.85489284992218,0.275048971176147,0.476537972688675,-0.83502072095871,0.244097381830215,0.233473435044289,-0.941226124763489,0.151392564177513,0.496224284172058,-0.85489284992218,0.116176649928093,0.761918485164642,-0.637168228626251,0.243173062801361,0.732398867607117,-0.635970711708069,0.275048971176147,0.476537972688675,-0.83502072095871,0.116176649928093,0.761918485164642,-0.637168228626251,0.0712970197200775,0.915923714637756,-0.394968926906586,0.175521597266197,0.900466620922089,-0.397934854030609,0.243173062801361,0.732398867607117,-0.635970711708069,0.0712970197200775,0.915923714637756,-0.394968926906586,0.0529426261782646,0.98890095949173,-0.138823136687279,0.121498480439186,0.982229888439178,-0.143046751618385,0.175521597266197,0.900466620922089,-0.397934854030609,0.0529426261782646,0.98890095949173,-0.138823136687279,0.0526714846491814,0.995817303657532,0.0746564269065857,0.107867777347565,0.9911749958992,0.0770491063594818,0.121498480439186,0.982229888439178,-0.143046751618385,0.957486629486084,-0.184700474143028,-0.221596762537956,0.97196090221405,-0.152993887662888,-0.178563609719276,0.973700821399689,-0.071295864880085,-0.216387867927551,0.92917388677597,-0.180594369769096,-0.322523593902588,0.997006714344025,-0.0554611533880234,-0.0538670271635056, -0.973700821399689,-0.071295864880085,-0.216387867927551,0.97196090221405,-0.152993887662888,-0.178563609719276,0.985939145088196,-0.159022495150566,-0.051341850310564,0.985939145088196,-0.159022495150566,-0.051341850310564,0.972091734409332,-0.19378337264061,0.132233992218971,0.976261258125305,-0.124434128403664,0.177285045385361,0.997006714344025,-0.0554611533880234,-0.0538670271635056,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.976261258125305,-0.124434128403664,0.177285045385361,0.972091734409332,-0.19378337264061,0.132233992218971,0.0510413609445095,-0.341072261333466,-0.938650369644165,0.0509440563619137,-0.305600732564926,-0.950795948505402,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,0.0610240995883942,-0.198125913739204,-0.978275060653687,0.0510413609445095,-0.341072261333466,-0.938650369644165,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,0.0826811119914055,0.0399862043559551,-0.995773553848267,0.0610240995883942,-0.198125913739204,-0.978275060653687,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,1.21700082900134e-07,0.228037610650063,-0.973652303218842,0.126609787344933,0.235696777701378,-0.963544011116028,0.0826811119914055,0.0399862043559551,-0.995773553848267,1.21700082900134e-07,0.228037610650063,-0.973652303218842,1.34849686972416e-08,0.484101951122284,-0.875011622905731,0.151392564177513,0.496224284172058,-0.85489284992218,0.126609787344933,0.235696777701378,-0.963544011116028,1.34849686972416e-08,0.484101951122284,-0.875011622905731,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,0.116176649928093,0.761918485164642,-0.637168228626251,0.151392564177513,0.496224284172058,-0.85489284992218,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,4.49168147120815e-10,0.921280324459076,-0.388899117708206, -0.0712970197200775,0.915923714637756,-0.394968926906586,0.116176649928093,0.761918485164642,-0.637168228626251,4.49168147120815e-10,0.921280324459076,-0.388899117708206,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,0.0529426261782646,0.98890095949173,-0.138823136687279,0.0712970197200775,0.915923714637756,-0.394968926906586,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,6.42563158237408e-09,0.997556865215302,0.0698588863015175,0.0526714846491814,0.995817303657532,0.0746564269065857,0.0529426261782646,0.98890095949173,-0.138823136687279,0.324406921863556,-0.316661387681961,-0.891339302062988,0.288819521665573,-0.280606746673584,-0.915337681770325,0.202779173851013,-0.294267237186432,-0.933963239192963,0.227135673165321,-0.331290990114212,-0.915781378746033,0.384839802980423,-0.188032418489456,-0.903627216815948,0.324406921863556,-0.316661387681961,-0.891339302062988,0.227135673165321,-0.331290990114212,-0.915781378746033,0.276372581720352,-0.195106968283653,-0.94103741645813,0.276372581720352,-0.195106968283653,-0.94103741645813,0.325351297855377,0.0389973521232605,-0.944788753986359,0.438093543052673,0.0334425382316113,-0.898307085037231,0.384839802980423,-0.188032418489456,-0.903627216815948,0.325351297855377,0.0389973521232605,-0.944788753986359,0.354934900999069,0.22577092051506,-0.907220244407654,0.454845368862152,0.202356606721878,-0.867275893688202,0.438093543052673,0.0334425382316113,-0.898307085037231,0.354934900999069,0.22577092051506,-0.907220244407654,0.371971487998962,0.448436200618744,-0.81273740530014,0.463001251220703,0.409111261367798,-0.786293745040894,0.454845368862152,0.202356606721878,-0.867275893688202,0.371971487998962,0.448436200618744,-0.81273740530014,0.353156596422195,0.693709373474121,-0.627732276916504,0.457464814186096,0.645764946937561,-0.611321091651917,0.463001251220703,0.409111261367798,-0.786293745040894,0.353156596422195,0.693709373474121,-0.627732276916504,0.295826852321625,0.866319239139557,-0.402464419603348,0.429483592510223,0.812928259372711,-0.39330843091011, -0.457464814186096,0.645764946937561,-0.611321091651917,0.295826852321625,0.866319239139557,-0.402464419603348,0.234079614281654,0.959807932376862,-0.154840379953384,0.394857794046402,0.906209409236908,-0.151234298944473,0.429483592510223,0.812928259372711,-0.39330843091011,0.234079614281654,0.959807932376862,-0.154840379953384,0.206910818815231,0.975700557231903,0.072085328400135,0.366548269987106,0.927925705909729,0.0677956789731979,0.394857794046402,0.906209409236908,-0.151234298944473,3.01379898814957e-08,0.939260125160217,0.343206197023392,-3.37651790971449e-08,0.775006294250488,0.631953537464142,0.0651870667934418,0.788389921188354,0.611712276935577,0.0593210831284523,0.942984998226166,0.327506184577942,0.0593210831284523,0.942984998226166,0.327506184577942,0.0526714846491814,0.995817303657532,0.0746564269065857,6.42563158237408e-09,0.997556865215302,0.0698588863015175,3.01379898814957e-08,0.939260125160217,0.343206197023392,0.0593210831284523,0.942984998226166,0.327506184577942,0.0651870667934418,0.788389921188354,0.611712276935577,0.0968291908502579,0.78747296333313,0.608695685863495,0.113730780780315,0.936106860637665,0.33282008767128,0.113730780780315,0.936106860637665,0.33282008767128,0.107867777347565,0.9911749958992,0.0770491063594818,0.0526714846491814,0.995817303657532,0.0746564269065857,0.0593210831284523,0.942984998226166,0.327506184577942,0.406798601150513,-0.29585188627243,-0.864283800125122,0.368643432855606,-0.262233227491379,-0.891816020011902,0.288819521665573,-0.280606746673584,-0.915337681770325,0.324406921863556,-0.316661387681961,-0.891339302062988,0.475787192583084,-0.178060233592987,-0.861348450183868,0.406798601150513,-0.29585188627243,-0.864283800125122,0.324406921863556,-0.316661387681961,-0.891339302062988,0.384839802980423,-0.188032418489456,-0.903627216815948,0.384839802980423,-0.188032418489456,-0.903627216815948,0.438093543052673,0.0334425382316113,-0.898307085037231,0.52644681930542,0.0210285410284996,-0.849947988986969,0.475787192583084,-0.178060233592987,-0.861348450183868,0.438093543052673,0.0334425382316113,-0.898307085037231, -0.454845368862152,0.202356606721878,-0.867275893688202,0.546258211135864,0.170718178153038,-0.820034921169281,0.52644681930542,0.0210285410284996,-0.849947988986969,0.454845368862152,0.202356606721878,-0.867275893688202,0.463001251220703,0.409111261367798,-0.786293745040894,0.566569268703461,0.356520175933838,-0.742894768714905,0.546258211135864,0.170718178153038,-0.820034921169281,0.463001251220703,0.409111261367798,-0.786293745040894,0.457464814186096,0.645764946937561,-0.611321091651917,0.565610706806183,0.583545327186584,-0.582717299461365,0.566569268703461,0.356520175933838,-0.742894768714905,0.457464814186096,0.645764946937561,-0.611321091651917,0.429483592510223,0.812928259372711,-0.39330843091011,0.544627547264099,0.749089062213898,-0.377155691385269,0.565610706806183,0.583545327186584,-0.582717299461365,0.429483592510223,0.812928259372711,-0.39330843091011,0.394857794046402,0.906209409236908,-0.151234298944473,0.521591365337372,0.839731931686401,-0.150972828269005,0.544627547264099,0.749089062213898,-0.377155691385269,0.394857794046402,0.906209409236908,-0.151234298944473,0.366548269987106,0.927925705909729,0.0677956789731979,0.492445111274719,0.868746936321259,0.05269430950284,0.521591365337372,0.839731931686401,-0.150972828269005,0.613025426864624,0.755100071430206,0.23243023455143,0.610087811946869,0.791172444820404,0.0428828708827496,0.492445111274719,0.868746936321259,0.05269430950284,0.478356897830963,0.839772462844849,0.256820857524872,0.622123301029205,0.643279433250427,0.446267068386078,0.613025426864624,0.755100071430206,0.23243023455143,0.478356897830963,0.839772462844849,0.256820857524872,0.464312165975571,0.728468775749207,0.503733694553375,0.478356897830963,0.839772462844849,0.256820857524872,0.492445111274719,0.868746936321259,0.05269430950284,0.366548269987106,0.927925705909729,0.0677956789731979,0.35340291261673,0.888349592685699,0.293157488107681,0.35340291261673,0.888349592685699,0.293157488107681,0.328172475099564,0.76567405462265,0.553214311599731,0.464312165975571,0.728468775749207,0.503733694553375, -0.478356897830963,0.839772462844849,0.256820857524872,0.227135673165321,-0.331290990114212,-0.915781378746033,0.202779173851013,-0.294267237186432,-0.933963239192963,0.122248478233814,-0.293943494558334,-0.94797283411026,0.129164814949036,-0.339349329471588,-0.931750297546387,0.276372581720352,-0.195106968283653,-0.94103741645813,0.227135673165321,-0.331290990114212,-0.915781378746033,0.129164814949036,-0.339349329471588,-0.931750297546387,0.161409333348274,-0.199696838855743,-0.966472029685974,0.161409333348274,-0.199696838855743,-0.966472029685974,0.198316425085068,0.0361166931688786,-0.979472398757935,0.325351297855377,0.0389973521232605,-0.944788753986359,0.276372581720352,-0.195106968283653,-0.94103741645813,0.198316425085068,0.0361166931688786,-0.979472398757935,0.244097381830215,0.233473435044289,-0.941226124763489,0.354934900999069,0.22577092051506,-0.907220244407654,0.325351297855377,0.0389973521232605,-0.944788753986359,0.244097381830215,0.233473435044289,-0.941226124763489,0.275048971176147,0.476537972688675,-0.83502072095871,0.371971487998962,0.448436200618744,-0.81273740530014,0.354934900999069,0.22577092051506,-0.907220244407654,0.275048971176147,0.476537972688675,-0.83502072095871,0.243173062801361,0.732398867607117,-0.635970711708069,0.353156596422195,0.693709373474121,-0.627732276916504,0.371971487998962,0.448436200618744,-0.81273740530014,0.243173062801361,0.732398867607117,-0.635970711708069,0.175521597266197,0.900466620922089,-0.397934854030609,0.295826852321625,0.866319239139557,-0.402464419603348,0.353156596422195,0.693709373474121,-0.627732276916504,0.175521597266197,0.900466620922089,-0.397934854030609,0.121498480439186,0.982229888439178,-0.143046751618385,0.234079614281654,0.959807932376862,-0.154840379953384,0.295826852321625,0.866319239139557,-0.402464419603348,0.121498480439186,0.982229888439178,-0.143046751618385,0.107867777347565,0.9911749958992,0.0770491063594818,0.206910818815231,0.975700557231903,0.072085328400135,0.234079614281654,0.959807932376862,-0.154840379953384,0.113730780780315,0.936106860637665,0.33282008767128, -0.0968291908502579,0.78747296333313,0.608695685863495,0.200046196579933,0.78645932674408,0.584348678588867,0.215742841362953,0.92498242855072,0.312829822301865,0.215742841362953,0.92498242855072,0.312829822301865,0.200046196579933,0.78645932674408,0.584348678588867,0.328172475099564,0.76567405462265,0.553214311599731,0.35340291261673,0.888349592685699,0.293157488107681,0.35340291261673,0.888349592685699,0.293157488107681,0.366548269987106,0.927925705909729,0.0677956789731979,0.206910818815231,0.975700557231903,0.072085328400135,0.215742841362953,0.92498242855072,0.312829822301865,0.107867777347565,0.9911749958992,0.0770491063594818,0.113730780780315,0.936106860637665,0.33282008767128,0.215742841362953,0.92498242855072,0.312829822301865,0.206910818815231,0.975700557231903,0.072085328400135,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,0.0509440563619137,-0.305600732564926,-0.950795948505402,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.0509440563619137,-0.305600732564926,-0.950795948505402,0.122248478233814,-0.293943494558334,-0.94797283411026,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.122248478233814,-0.293943494558334,-0.94797283411026,0.202779173851013,-0.294267237186432,-0.933963239192963,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.202779173851013,-0.294267237186432,-0.933963239192963,0.288819521665573,-0.280606746673584,-0.915337681770325,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.368643432855606,-0.262233227491379,-0.891816020011902,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.288819521665573,-0.280606746673584,-0.915337681770325,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.368643432855606,-0.262233227491379,-0.891816020011902, -0.450328022241592,-0.24593797326088,-0.858323454856873,0.482255846261978,-0.066649928689003,-0.873491406440735,0.570639073848724,-0.235795319080353,-0.786620318889618,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.482255846261978,-0.066649928689003,-0.873491406440735,0.450328022241592,-0.24593797326088,-0.858323454856873,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.570639073848724,-0.235795319080353,-0.786620318889618,0.714498579502106,-0.221778824925423,-0.663555502891541,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.838658630847931,-0.203891068696976,-0.505054593086243,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.714498579502106,-0.221778824925423,-0.663555502891541,0.92917388677597,-0.180594369769096,-0.322523593902588,0.973700821399689,-0.071295864880085,-0.216387867927551,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.838658630847931,-0.203891068696976,-0.505054593086243,0.791593611240387,0.609075665473938,-0.0490551590919495,0.847042262554169,0.502337276935577,0.17371392250061,0.728694081306458,0.622112631797791,0.286322861909866,0.684308230876923,0.728986501693726,0.0173510164022446,0.713612794876099,0.623848557472229,-0.31870025396347,0.791593611240387,0.609075665473938,-0.0490551590919495,0.684308230876923,0.728986501693726,0.0173510164022446,0.61449933052063,0.733339667320251,-0.290866613388062,0.61800092458725,0.585912346839905,-0.524195969104767,0.713612794876099,0.623848557472229,-0.31870025396347,0.61449933052063,0.733339667320251,-0.290866613388062,0.541614294052124,0.677623510360718,-0.497473806142807,0.496927082538605,0.529703319072723,-0.687370359897614,0.61800092458725,0.585912346839905,-0.524195969104767,0.541614294052124,0.677623510360718,-0.497473806142807,0.444960027933121,0.612611889839172,-0.653236031532288,0.390261352062225,0.479690968990326,-0.785870671272278,0.496927082538605,0.529703319072723,-0.687370359897614,0.444960027933121,0.612611889839172,-0.653236031532288,0.351476818323135,0.553170502185822,-0.755292236804962, -0.298471510410309,0.447797685861588,-0.842847466468811,0.390261352062225,0.479690968990326,-0.785870671272278,0.351476818323135,0.553170502185822,-0.755292236804962,0.270358949899673,0.506686329841614,-0.818642139434814,0.213099837303162,0.426459789276123,-0.879045188426971,0.298471510410309,0.447797685861588,-0.842847466468811,0.270358949899673,0.506686329841614,-0.818642139434814,0.199552863836288,0.471701383590698,-0.858880877494812,0.131308406591415,0.415217936038971,-0.90019565820694,0.213099837303162,0.426459789276123,-0.879045188426971,0.199552863836288,0.471701383590698,-0.858880877494812,0.128462344408035,0.454629868268967,-0.881367683410645,0.0545922704041004,0.413853853940964,-0.908704876899719,0.131308406591415,0.415217936038971,-0.90019565820694,0.128462344408035,0.454629868268967,-0.881367683410645,0.053086057305336,0.451810449361801,-0.890533089637756,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,0.0545922704041004,0.413853853940964,-0.908704876899719,0.053086057305336,0.451810449361801,-0.890533089637756,1.98165164277952e-08,0.454084575176239,-0.890958487987518,0.847042262554169,0.502337276935577,0.17371392250061,0.852592647075653,0.35051029920578,0.387592852115631,0.726916015148163,0.446397542953491,0.521845161914825,0.728694081306458,0.622112631797791,0.286322861909866,0.852592647075653,0.35051029920578,0.387592852115631,0.776590049266815,0.159818038344383,0.609398126602173,0.656375765800476,0.277168691158295,0.701675295829773,0.726916015148163,0.446397542953491,0.521845161914825,0.776590049266815,0.159818038344383,0.609398126602173,0.757037222385406,0.0738626793026924,0.64918327331543,0.631248354911804,0.231331542134285,0.740277767181396,0.656375765800476,0.277168691158295,0.701675295829773,0.757037222385406,0.0738626793026924,0.64918327331543,0.755365908145905,0.0489600449800491,0.653471648693085,0.599312424659729,0.227614343166351,0.767473995685577,0.631248354911804,0.231331542134285,0.740277767181396,0.755365908145905,0.0489600449800491,0.653471648693085,0.729918420314789,0.0392020680010319,0.682409167289734, -0.565814912319183,0.248613759875298,0.786158204078674,0.599312424659729,0.227614343166351,0.767473995685577,0.729918420314789,0.0392020680010319,0.682409167289734,0.715418756008148,0.062575489282608,0.695888221263885,0.54840475320816,0.272784531116486,0.790468811988831,0.565814912319183,0.248613759875298,0.786158204078674,0.715418756008148,0.062575489282608,0.695888221263885,0.691517293453217,0.0937235057353973,0.716254055500031,0.563102543354034,0.29641380906105,0.771397650241852,0.54840475320816,0.272784531116486,0.790468811988831,0.691517293453217,0.0937235057353973,0.716254055500031,0.670894861221313,0.136083349585533,0.728959083557129,0.582047462463379,0.326349675655365,0.744793057441711,0.563102543354034,0.29641380906105,0.771397650241852,0.670894861221313,0.136083349585533,0.728959083557129,0.610976219177246,0.186938166618347,0.769260764122009,0.566551983356476,0.371688485145569,0.735436320304871,0.582047462463379,0.326349675655365,0.744793057441711,0.610976219177246,0.186938166618347,0.769260764122009,0.511263847351074,0.229410201311111,0.828239262104034,0.395315796136856,0.400195598602295,0.8267822265625,0.566551983356476,0.371688485145569,0.735436320304871,0.511263847351074,0.229410201311111,0.828239262104034,0.347370386123657,0.231676712632179,0.90865820646286,0.213978260755539,0.364422589540482,0.906316459178925,0.395315796136856,0.400195598602295,0.8267822265625,0.347370386123657,0.231676712632179,0.90865820646286,0.271949172019958,0.202169090509415,0.940835416316986,0.150779962539673,0.331106156110764,0.931468784809113,0.213978260755539,0.364422589540482,0.906316459178925,0.271949172019958,0.202169090509415,0.940835416316986,0.119281567633152,0.172357618808746,0.977785646915436,0.0205325204879045,0.307831823825836,0.951219201087952,0.150779962539673,0.331106156110764,0.931468784809113,0.119281567633152,0.172357618808746,0.977785646915436,-0.0153793310746551,0.136903032660484,0.990465044975281,-0.10297329723835,0.31115859746933,0.944762766361237,0.0205325204879045,0.307831823825836,0.951219201087952,-0.0153793310746551,0.136903032660484,0.990465044975281, --0.0923509448766708,0.110743053257465,0.989548921585083,-0.225802198052406,0.312988340854645,0.922524571418762,-0.10297329723835,0.31115859746933,0.944762766361237,-0.0923509448766708,0.110743053257465,0.989548921585083,-0.168494194746017,0.0982578322291374,0.980793058872223,-0.310137897729874,0.293953686952591,0.904104828834534,-0.225802198052406,0.312988340854645,0.922524571418762,-0.168494194746017,0.0982578322291374,0.980793058872223,-0.126774668693542,0.124518774449825,0.984084963798523,-0.184753134846687,0.297427535057068,0.936697959899902,-0.310137897729874,0.293953686952591,0.904104828834534,-0.126774668693542,0.124518774449825,0.984084963798523,-1.18681050764735e-07,0.127460151910782,0.99184376001358,-1.5048020429731e-07,0.302467465400696,0.953159689903259,-0.184753134846687,0.297427535057068,0.936697959899902,1.68667515509924e-08,0.135232120752335,-0.990813970565796,0.051322091370821,0.132161125540733,-0.989898800849915,0.0452923849225044,0.231373652815819,-0.971809983253479,1.48528812360382e-07,0.231706529855728,-0.972785711288452,0.051322091370821,0.132161125540733,-0.989898800849915,0.124153949320316,0.138728275895119,-0.98251736164093,0.121118932962418,0.239042401313782,-0.963425636291504,0.0452923849225044,0.231373652815819,-0.971809983253479,0.124153949320316,0.138728275895119,-0.98251736164093,0.207228168845177,0.132792174816132,-0.96923816204071,0.211852118372917,0.243508473038673,-0.94647890329361,0.121118932962418,0.239042401313782,-0.963425636291504,0.207228168845177,0.132792174816132,-0.96923816204071,0.285574346780777,0.125350192189217,-0.950123429298401,0.295085906982422,0.239659816026688,-0.924925684928894,0.211852118372917,0.243508473038673,-0.94647890329361,0.285574346780777,0.125350192189217,-0.950123429298401,0.382903873920441,0.11644995957613,-0.916419148445129,0.403909951448441,0.225777745246887,-0.886499404907227,0.295085906982422,0.239659816026688,-0.924925684928894,0.382903873920441,0.11644995957613,-0.916419148445129,0.515001833438873,0.100842840969563,-0.851236581802368,0.550428926944733,0.196756899356842,-0.811365962028503, -0.403909951448441,0.225777745246887,-0.886499404907227,0.515001833438873,0.100842840969563,-0.851236581802368,0.682427048683167,0.0771266594529152,-0.726873219013214,0.716842949390411,0.155831933021545,-0.679597437381744,0.550428926944733,0.196756899356842,-0.811365962028503,0.682427048683167,0.0771266594529152,-0.726873219013214,0.819998681545258,0.045666616410017,-0.5705406665802,0.841564297676086,0.11118533462286,-0.528589963912964,0.716842949390411,0.155831933021545,-0.679597437381744,0.819998681545258,0.045666616410017,-0.5705406665802,0.91990327835083,0.0356822051107883,-0.390518635511398,0.920960783958435,0.0725642070174217,-0.382839053869247,0.841564297676086,0.11118533462286,-0.528589963912964,0.91990327835083,0.0356822051107883,-0.390518635511398,0.981304347515106,0.0225162170827389,-0.191140815615654,0.982601165771484,0.0331035405397415,-0.182754442095757,0.920960783958435,0.0725642070174217,-0.382839053869247,0.981304347515106,0.0225162170827389,-0.191140815615654,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.982601165771484,0.0331035405397415,-0.182754442095757,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.981986045837402,-0.0894603356719017,0.166434153914452,0.983570635318756,-0.0811970829963684,0.161232128739357,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.981986045837402,-0.0894603356719017,0.166434153914452,0.925318956375122,-0.192561462521553,0.326657146215439,0.912356376647949,-0.141616880893707,0.384123086929321,0.983570635318756,-0.0811970829963684,0.161232128739357,0.925318956375122,-0.192561462521553,0.326657146215439,0.872414112091064,-0.313628375530243,0.374874293804169,0.819408297538757,-0.17691445350647,0.545225739479065,0.912356376647949,-0.141616880893707,0.384123086929321,0.872414112091064,-0.313628375530243,0.374874293804169,0.808891654014587,-0.467697739601135,0.35630464553833,0.732613146305084,-0.22996623814106,0.640619695186615,0.819408297538757,-0.17691445350647,0.545225739479065, -0.808891654014587,-0.467697739601135,0.35630464553833,0.801254034042358,-0.551589131355286,0.231821820139885,0.734038114547729,-0.289851725101471,0.614144802093506,0.732613146305084,-0.22996623814106,0.640619695186615,0.801254034042358,-0.551589131355286,0.231821820139885,0.802000761032104,-0.590044140815735,0.0929659008979797,0.788692355155945,-0.369454503059387,0.491393715143204,0.734038114547729,-0.289851725101471,0.614144802093506,0.802000761032104,-0.590044140815735,0.0929659008979797,0.770902872085571,-0.63339626789093,0.0672165155410767,0.820944428443909,-0.437150865793228,0.367354601621628,0.788692355155945,-0.369454503059387,0.491393715143204,0.770902872085571,-0.63339626789093,0.0672165155410767,0.713757395744324,-0.691259980201721,0.11273805052042,0.805763602256775,-0.495398193597794,0.32453915476799,0.820944428443909,-0.437150865793228,0.367354601621628,0.713757395744324,-0.691259980201721,0.11273805052042,0.643780946731567,-0.742869079113007,0.18355256319046,0.75371903181076,-0.530059397220612,0.388516068458557,0.805763602256775,-0.495398193597794,0.32453915476799,0.643780946731567,-0.742869079113007,0.18355256319046,0.557880580425262,-0.793857216835022,0.241991847753525,0.693555176258087,-0.548085689544678,0.467528879642487,0.75371903181076,-0.530059397220612,0.388516068458557,0.557880580425262,-0.793857216835022,0.241991847753525,0.475072354078293,-0.843028664588928,0.252208232879639,0.638139426708221,-0.555814921855927,0.532773792743683,0.693555176258087,-0.548085689544678,0.467528879642487,0.475072354078293,-0.843028664588928,0.252208232879639,0.406699240207672,-0.884667217731476,0.22794634103775,0.592932999134064,-0.562746107578278,0.575975060462952,0.638139426708221,-0.555814921855927,0.532773792743683,0.406699240207672,-0.884667217731476,0.22794634103775,0.322932422161102,-0.926151096820831,0.194830387830734,0.51042777299881,-0.590444564819336,0.625171065330505,0.592932999134064,-0.562746107578278,0.575975060462952,0.322932422161102,-0.926151096820831,0.194830387830734,0.258645862340927,-0.948392689228058,0.183449625968933, -0.386757254600525,-0.659731805324554,0.644338965415955,0.51042777299881,-0.590444564819336,0.625171065330505,0.258645862340927,-0.948392689228058,0.183449625968933,0.164125263690948,-0.975613594055176,0.145743101835251,0.235601052641869,-0.715268850326538,0.657938182353973,0.386757254600525,-0.659731805324554,0.644338965415955,0.164125263690948,-0.975613594055176,0.145743101835251,0.0629032179713249,-0.980971693992615,0.183677971363068,0.0898829028010368,-0.720666646957397,0.687430441379547,0.235601052641869,-0.715268850326538,0.657938182353973,0.0629032179713249,-0.980971693992615,0.183677971363068,1.42591204621567e-07,-0.984854400157928,0.173383504152298,6.02130469928852e-08,-0.702668070793152,0.711517870426178,0.0898829028010368,-0.720666646957397,0.687430441379547,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.051322091370821,0.132161125540733,-0.989898800849915,1.68667515509924e-08,0.135232120752335,-0.990813970565796,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.124153949320316,0.138728275895119,-0.98251736164093,0.051322091370821,0.132161125540733,-0.989898800849915,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.207228168845177,0.132792174816132,-0.96923816204071,0.124153949320316,0.138728275895119,-0.98251736164093,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.285574346780777,0.125350192189217,-0.950123429298401,0.207228168845177,0.132792174816132,-0.96923816204071,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.382903873920441,0.11644995957613,-0.916419148445129,0.285574346780777,0.125350192189217,-0.950123429298401,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.482255846261978,-0.066649928689003,-0.873491406440735,0.515001833438873,0.100842840969563,-0.851236581802368, -0.382903873920441,0.11644995957613,-0.916419148445129,0.482255846261978,-0.066649928689003,-0.873491406440735,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.682427048683167,0.0771266594529152,-0.726873219013214,0.515001833438873,0.100842840969563,-0.851236581802368,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.819998681545258,0.045666616410017,-0.5705406665802,0.682427048683167,0.0771266594529152,-0.726873219013214,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.91990327835083,0.0356822051107883,-0.390518635511398,0.819998681545258,0.045666616410017,-0.5705406665802,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.973700821399689,-0.071295864880085,-0.216387867927551,0.981304347515106,0.0225162170827389,-0.191140815615654,0.91990327835083,0.0356822051107883,-0.390518635511398,0.973700821399689,-0.071295864880085,-0.216387867927551,0.997006714344025,-0.0554611533880234,-0.0538670271635056,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.981304347515106,0.0225162170827389,-0.191140815615654,0.997006714344025,-0.0554611533880234,-0.0538670271635056,0.976261258125305,-0.124434128403664,0.177285045385361,0.981986045837402,-0.0894603356719017,0.166434153914452,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.976261258125305,-0.124434128403664,0.177285045385361,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.925318956375122,-0.192561462521553,0.326657146215439,0.981986045837402,-0.0894603356719017,0.166434153914452,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.872414112091064,-0.313628375530243,0.374874293804169,0.925318956375122,-0.192561462521553,0.326657146215439,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.745865523815155,-0.66082090139389,-0.0836689472198486,0.808891654014587,-0.467697739601135,0.35630464553833,0.872414112091064,-0.313628375530243,0.374874293804169, -0.745865523815155,-0.66082090139389,-0.0836689472198486,0.700287818908691,-0.696540117263794,-0.156297460198402,0.801254034042358,-0.551589131355286,0.231821820139885,0.808891654014587,-0.467697739601135,0.35630464553833,0.700287818908691,-0.696540117263794,-0.156297460198402,0.677948117256165,-0.71640682220459,-0.164764940738678,0.802000761032104,-0.590044140815735,0.0929659008979797,0.801254034042358,-0.551589131355286,0.231821820139885,0.677948117256165,-0.71640682220459,-0.164764940738678,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.770902872085571,-0.63339626789093,0.0672165155410767,0.802000761032104,-0.590044140815735,0.0929659008979797,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.713757395744324,-0.691259980201721,0.11273805052042,0.770902872085571,-0.63339626789093,0.0672165155410767,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.560462832450867,-0.828098118305206,0.0116214090958238,0.643780946731567,-0.742869079113007,0.18355256319046,0.713757395744324,-0.691259980201721,0.11273805052042,0.560462832450867,-0.828098118305206,0.0116214090958238,0.489590495824814,-0.871388077735901,0.0313687920570374,0.557880580425262,-0.793857216835022,0.241991847753525,0.643780946731567,-0.742869079113007,0.18355256319046,0.489590495824814,-0.871388077735901,0.0313687920570374,0.424411624670029,-0.905128479003906,0.0248428620398045,0.475072354078293,-0.843028664588928,0.252208232879639,0.557880580425262,-0.793857216835022,0.241991847753525,0.424411624670029,-0.905128479003906,0.0248428620398045,0.362132221460342,-0.931851267814636,0.0226623974740505,0.406699240207672,-0.884667217731476,0.22794634103775,0.475072354078293,-0.843028664588928,0.252208232879639,0.362132221460342,-0.931851267814636,0.0226623974740505,0.298353463411331,-0.954143464565277,0.0243995748460293,0.322932422161102,-0.926151096820831,0.194830387830734,0.406699240207672,-0.884667217731476,0.22794634103775,0.298353463411331,-0.954143464565277,0.0243995748460293, -0.235530734062195,-0.971323013305664,0.0325096696615219,0.258645862340927,-0.948392689228058,0.183449625968933,0.322932422161102,-0.926151096820831,0.194830387830734,0.235530734062195,-0.971323013305664,0.0325096696615219,0.172015935182571,-0.984178006649017,0.0424752794206142,0.164125263690948,-0.975613594055176,0.145743101835251,0.258645862340927,-0.948392689228058,0.183449625968933,0.172015935182571,-0.984178006649017,0.0424752794206142,0.0893126279115677,-0.993775486946106,0.066584125161171,0.0629032179713249,-0.980971693992615,0.183677971363068,0.164125263690948,-0.975613594055176,0.145743101835251,0.0893126279115677,-0.993775486946106,0.066584125161171,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,1.42591204621567e-07,-0.984854400157928,0.173383504152298,0.0629032179713249,-0.980971693992615,0.183677971363068,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,0.0421977154910564,0.266968548297882,-0.962780892848969,0.0524306744337082,0.265829473733902,-0.96259331703186,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,0.0421977154910564,0.266968548297882,-0.962780892848969,0.122906930744648,0.26610940694809,-0.956075072288513,0.134599775075912,0.262850016355515,-0.955401837825775,0.0524306744337082,0.265829473733902,-0.96259331703186,0.122906930744648,0.26610940694809,-0.956075072288513,0.221275642514229,0.262335985898972,-0.939263999462128,0.235504284501076,0.261066734790802,-0.936152696609497,0.134599775075912,0.262850016355515,-0.955401837825775,0.221275642514229,0.262335985898972,-0.939263999462128,0.315801113843918,0.251591563224792,-0.914861261844635,0.338841140270233,0.254985928535461,-0.90563178062439,0.235504284501076,0.261066734790802,-0.936152696609497,0.315801113843918,0.251591563224792,-0.914861261844635,0.436506778001785,0.233594134449959,-0.868847250938416,0.458467990159988,0.245376154780388,-0.854164838790894,0.338841140270233,0.254985928535461,-0.90563178062439,0.436506778001785,0.233594134449959,-0.868847250938416,0.591074645519257,0.207417994737625,-0.779492437839508, -0.611029326915741,0.235729455947876,-0.755694925785065,0.458467990159988,0.245376154780388,-0.854164838790894,0.591074645519257,0.207417994737625,-0.779492437839508,0.751979172229767,0.168086364865303,-0.637396395206451,0.769784390926361,0.213163912296295,-0.601658582687378,0.611029326915741,0.235729455947876,-0.755694925785065,0.751979172229767,0.168086364865303,-0.637396395206451,0.861584186553955,0.120209991931915,-0.493175595998764,0.876713633537292,0.173148706555367,-0.448768049478531,0.769784390926361,0.213163912296295,-0.601658582687378,0.861584186553955,0.120209991931915,-0.493175595998764,0.930044949054718,0.0694594234228134,-0.360821127891541,0.9448481798172,0.109976790845394,-0.3084916472435,0.876713633537292,0.173148706555367,-0.448768049478531,0.930044949054718,0.0694594234228134,-0.360821127891541,0.983544290065765,0.0161068383604288,-0.179947376251221,0.98707389831543,0.0412889309227467,-0.154855474829674,0.9448481798172,0.109976790845394,-0.3084916472435,0.983544290065765,0.0161068383604288,-0.179947376251221,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.98707389831543,0.0412889309227467,-0.154855474829674,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.980292320251465,-0.109852708876133,0.16419281065464,0.969928443431854,-0.11350966989994,0.215300664305687,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.980292320251465,-0.109852708876133,0.16419281065464,0.927649080753326,-0.173086896538734,0.33092001080513,0.923851847648621,-0.198669716715813,0.327151536941528,0.969928443431854,-0.11350966989994,0.215300664305687,0.927649080753326,-0.173086896538734,0.33092001080513,0.849539875984192,-0.187142178416252,0.49321374297142,0.891455054283142,-0.223491296172142,0.394156754016876,0.923851847648621,-0.198669716715813,0.327151536941528,0.849539875984192,-0.187142178416252,0.49321374297142,0.730802416801453,-0.185328125953674,0.656948506832123,0.808399438858032,-0.223824366927147,0.544419825077057,0.891455054283142,-0.223491296172142,0.394156754016876, -0.730802416801453,-0.185328125953674,0.656948506832123,0.651494562625885,-0.183251723647118,0.736188590526581,0.72381603717804,-0.197181031107903,0.661218702793121,0.808399438858032,-0.223824366927147,0.544419825077057,0.651494562625885,-0.183251723647118,0.736188590526581,0.646958231925964,-0.200475201010704,0.735700070858002,0.650437474250793,-0.166883558034897,0.74099999666214,0.72381603717804,-0.197181031107903,0.661218702793121,0.646958231925964,-0.200475201010704,0.735700070858002,0.699751615524292,-0.23775677382946,0.673661172389984,0.596126854419708,-0.161018744111061,0.786578476428986,0.650437474250793,-0.166883558034897,0.74099999666214,0.699751615524292,-0.23775677382946,0.673661172389984,0.743825554847717,-0.307951986789703,0.593202531337738,0.569577872753143,-0.188596680760384,0.80000764131546,0.596126854419708,-0.161018744111061,0.786578476428986,0.743825554847717,-0.307951986789703,0.593202531337738,0.745765566825867,-0.369670927524567,0.554235637187958,0.597430288791656,-0.226283758878708,0.769332706928253,0.569577872753143,-0.188596680760384,0.80000764131546,0.745765566825867,-0.369670927524567,0.554235637187958,0.735174715518951,-0.408614665269852,0.540880978107452,0.643063962459564,-0.269981235265732,0.716644108295441,0.597430288791656,-0.226283758878708,0.769332706928253,0.735174715518951,-0.408614665269852,0.540880978107452,0.7086101770401,-0.435911774635315,0.554844617843628,0.639258861541748,-0.313730597496033,0.70208340883255,0.643063962459564,-0.269981235265732,0.716644108295441,0.7086101770401,-0.435911774635315,0.554844617843628,0.652298331260681,-0.457809060811996,0.604084253311157,0.592115879058838,-0.369304567575455,0.716249227523804,0.639258861541748,-0.313730597496033,0.70208340883255,0.652298331260681,-0.457809060811996,0.604084253311157,0.526753902435303,-0.501215815544128,0.686522364616394,0.488597840070724,-0.427408516407013,0.760653734207153,0.592115879058838,-0.369304567575455,0.716249227523804,0.526753902435303,-0.501215815544128,0.686522364616394,0.365993618965149,-0.541276335716248,0.757013022899628, -0.358592480421066,-0.481893211603165,0.799493789672852,0.488597840070724,-0.427408516407013,0.760653734207153,0.365993618965149,-0.541276335716248,0.757013022899628,0.206913620233536,-0.568290770053864,0.796387135982513,0.184067040681839,-0.514875173568726,0.837271094322205,0.358592480421066,-0.481893211603165,0.799493789672852,0.206913620233536,-0.568290770053864,0.796387135982513,0.113816358149052,-0.566020905971527,0.816496253013611,0.0849984884262085,-0.517168939113617,0.851652264595032,0.184067040681839,-0.514875173568726,0.837271094322205,0.113816358149052,-0.566020905971527,0.816496253013611,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,0.0849984884262085,-0.517168939113617,0.851652264595032,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,0.0524306744337082,0.265829473733902,-0.96259331703186,0.0570282526314259,0.324915558099747,-0.944022119045258,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,0.0524306744337082,0.265829473733902,-0.96259331703186,0.134599775075912,0.262850016355515,-0.955401837825775,0.137655287981033,0.326971292495728,-0.93495500087738,0.0570282526314259,0.324915558099747,-0.944022119045258,0.134599775075912,0.262850016355515,-0.955401837825775,0.235504284501076,0.261066734790802,-0.936152696609497,0.232782930135727,0.329060286283493,-0.915167391300201,0.137655287981033,0.326971292495728,-0.93495500087738,0.235504284501076,0.261066734790802,-0.936152696609497,0.338841140270233,0.254985928535461,-0.90563178062439,0.336353063583374,0.334030866622925,-0.880505561828613,0.232782930135727,0.329060286283493,-0.915167391300201,0.338841140270233,0.254985928535461,-0.90563178062439,0.458467990159988,0.245376154780388,-0.854164838790894,0.445274382829666,0.345922291278839,-0.825874388217926,0.336353063583374,0.334030866622925,-0.880505561828613,0.458467990159988,0.245376154780388,-0.854164838790894,0.611029326915741,0.235729455947876,-0.755694925785065,0.580357730388641,0.37090077996254,-0.724994778633118, -0.445274382829666,0.345922291278839,-0.825874388217926,0.611029326915741,0.235729455947876,-0.755694925785065,0.769784390926361,0.213163912296295,-0.601658582687378,0.729940891265869,0.388568073511124,-0.562317669391632,0.580357730388641,0.37090077996254,-0.724994778633118,0.769784390926361,0.213163912296295,-0.601658582687378,0.876713633537292,0.173148706555367,-0.448768049478531,0.846309304237366,0.373374283313751,-0.37993723154068,0.729940891265869,0.388568073511124,-0.562317669391632,0.876713633537292,0.173148706555367,-0.448768049478531,0.9448481798172,0.109976790845394,-0.3084916472435,0.931367695331573,0.311559587717056,-0.188374474644661,0.846309304237366,0.373374283313751,-0.37993723154068,0.9448481798172,0.109976790845394,-0.3084916472435,0.98707389831543,0.0412889309227467,-0.154855474829674,0.977538585662842,0.204975366592407,-0.0490257479250431,0.931367695331573,0.311559587717056,-0.188374474644661,0.98707389831543,0.0412889309227467,-0.154855474829674,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.987321078777313,0.106447570025921,0.117754034698009,0.977538585662842,0.204975366592407,-0.0490257479250431,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.969928443431854,-0.11350966989994,0.215300664305687,0.931344091892242,-0.0584721118211746,0.359415024518967,0.987321078777313,0.106447570025921,0.117754034698009,0.969928443431854,-0.11350966989994,0.215300664305687,0.923851847648621,-0.198669716715813,0.327151536941528,0.88810271024704,-0.162031665444374,0.430138915777206,0.931344091892242,-0.0584721118211746,0.359415024518967,0.923851847648621,-0.198669716715813,0.327151536941528,0.891455054283142,-0.223491296172142,0.394156754016876,0.888332843780518,-0.206319883465767,0.410239905118942,0.88810271024704,-0.162031665444374,0.430138915777206,0.891455054283142,-0.223491296172142,0.394156754016876,0.808399438858032,-0.223824366927147,0.544419825077057,0.848279416561127,-0.236357644200325,0.473874539136887,0.888332843780518,-0.206319883465767,0.410239905118942,0.808399438858032,-0.223824366927147,0.544419825077057, -0.72381603717804,-0.197181031107903,0.661218702793121,0.817796945571899,-0.229442059993744,0.527792096138,0.848279416561127,-0.236357644200325,0.473874539136887,0.72381603717804,-0.197181031107903,0.661218702793121,0.650437474250793,-0.166883558034897,0.74099999666214,0.763032972812653,-0.203145816922188,0.613606035709381,0.817796945571899,-0.229442059993744,0.527792096138,0.650437474250793,-0.166883558034897,0.74099999666214,0.596126854419708,-0.161018744111061,0.786578476428986,0.691356778144836,-0.166961759328842,0.702957689762115,0.763032972812653,-0.203145816922188,0.613606035709381,0.596126854419708,-0.161018744111061,0.786578476428986,0.569577872753143,-0.188596680760384,0.80000764131546,0.601956248283386,-0.126981973648071,0.788368165493011,0.691356778144836,-0.166961759328842,0.702957689762115,0.569577872753143,-0.188596680760384,0.80000764131546,0.597430288791656,-0.226283758878708,0.769332706928253,0.539924502372742,-0.0975309163331985,0.836043834686279,0.601956248283386,-0.126981973648071,0.788368165493011,0.597430288791656,-0.226283758878708,0.769332706928253,0.643063962459564,-0.269981235265732,0.716644108295441,0.530532360076904,-0.0813628435134888,0.843750834465027,0.539924502372742,-0.0975309163331985,0.836043834686279,0.643063962459564,-0.269981235265732,0.716644108295441,0.639258861541748,-0.313730597496033,0.70208340883255,0.493387967348099,-0.0896371454000473,0.865178287029266,0.530532360076904,-0.0813628435134888,0.843750834465027,0.639258861541748,-0.313730597496033,0.70208340883255,0.592115879058838,-0.369304567575455,0.716249227523804,0.373312830924988,-0.131910309195518,0.918279409408569,0.493387967348099,-0.0896371454000473,0.865178287029266,0.592115879058838,-0.369304567575455,0.716249227523804,0.488597840070724,-0.427408516407013,0.760653734207153,0.249244153499603,-0.19804185628891,0.947975099086761,0.373312830924988,-0.131910309195518,0.918279409408569,0.488597840070724,-0.427408516407013,0.760653734207153,0.358592480421066,-0.481893211603165,0.799493789672852,0.176319494843483,-0.24019680917263,0.954576790332794, -0.249244153499603,-0.19804185628891,0.947975099086761,0.358592480421066,-0.481893211603165,0.799493789672852,0.184067040681839,-0.514875173568726,0.837271094322205,0.106686748564243,-0.267717808485031,0.957572519779205,0.176319494843483,-0.24019680917263,0.954576790332794,0.184067040681839,-0.514875173568726,0.837271094322205,0.0849984884262085,-0.517168939113617,0.851652264595032,0.0603145211935043,-0.268659979104996,0.961344838142395,0.106686748564243,-0.267717808485031,0.957572519779205,0.0849984884262085,-0.517168939113617,0.851652264595032,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,0.0603145211935043,-0.268659979104996,0.961344838142395,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,0.0570282526314259,0.324915558099747,-0.944022119045258,0.0545922704041004,0.413853853940964,-0.908704876899719,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,0.0570282526314259,0.324915558099747,-0.944022119045258,0.137655287981033,0.326971292495728,-0.93495500087738,0.131308406591415,0.415217936038971,-0.90019565820694,0.0545922704041004,0.413853853940964,-0.908704876899719,0.137655287981033,0.326971292495728,-0.93495500087738,0.232782930135727,0.329060286283493,-0.915167391300201,0.213099837303162,0.426459789276123,-0.879045188426971,0.131308406591415,0.415217936038971,-0.90019565820694,0.232782930135727,0.329060286283493,-0.915167391300201,0.336353063583374,0.334030866622925,-0.880505561828613,0.298471510410309,0.447797685861588,-0.842847466468811,0.213099837303162,0.426459789276123,-0.879045188426971,0.336353063583374,0.334030866622925,-0.880505561828613,0.445274382829666,0.345922291278839,-0.825874388217926,0.390261352062225,0.479690968990326,-0.785870671272278,0.298471510410309,0.447797685861588,-0.842847466468811,0.445274382829666,0.345922291278839,-0.825874388217926,0.580357730388641,0.37090077996254,-0.724994778633118,0.496927082538605,0.529703319072723,-0.687370359897614,0.390261352062225,0.479690968990326,-0.785870671272278, -0.580357730388641,0.37090077996254,-0.724994778633118,0.729940891265869,0.388568073511124,-0.562317669391632,0.61800092458725,0.585912346839905,-0.524195969104767,0.496927082538605,0.529703319072723,-0.687370359897614,0.729940891265869,0.388568073511124,-0.562317669391632,0.846309304237366,0.373374283313751,-0.37993723154068,0.713612794876099,0.623848557472229,-0.31870025396347,0.61800092458725,0.585912346839905,-0.524195969104767,0.846309304237366,0.373374283313751,-0.37993723154068,0.931367695331573,0.311559587717056,-0.188374474644661,0.791593611240387,0.609075665473938,-0.0490551590919495,0.713612794876099,0.623848557472229,-0.31870025396347,0.931367695331573,0.311559587717056,-0.188374474644661,0.977538585662842,0.204975366592407,-0.0490257479250431,0.847042262554169,0.502337276935577,0.17371392250061,0.791593611240387,0.609075665473938,-0.0490551590919495,0.977538585662842,0.204975366592407,-0.0490257479250431,0.987321078777313,0.106447570025921,0.117754034698009,0.852592647075653,0.35051029920578,0.387592852115631,0.847042262554169,0.502337276935577,0.17371392250061,0.987321078777313,0.106447570025921,0.117754034698009,0.931344091892242,-0.0584721118211746,0.359415024518967,0.776590049266815,0.159818038344383,0.609398126602173,0.852592647075653,0.35051029920578,0.387592852115631,0.931344091892242,-0.0584721118211746,0.359415024518967,0.88810271024704,-0.162031665444374,0.430138915777206,0.757037222385406,0.0738626793026924,0.64918327331543,0.776590049266815,0.159818038344383,0.609398126602173,0.88810271024704,-0.162031665444374,0.430138915777206,0.888332843780518,-0.206319883465767,0.410239905118942,0.755365908145905,0.0489600449800491,0.653471648693085,0.757037222385406,0.0738626793026924,0.64918327331543,0.888332843780518,-0.206319883465767,0.410239905118942,0.848279416561127,-0.236357644200325,0.473874539136887,0.729918420314789,0.0392020680010319,0.682409167289734,0.755365908145905,0.0489600449800491,0.653471648693085,0.848279416561127,-0.236357644200325,0.473874539136887,0.817796945571899,-0.229442059993744,0.527792096138, -0.715418756008148,0.062575489282608,0.695888221263885,0.729918420314789,0.0392020680010319,0.682409167289734,0.817796945571899,-0.229442059993744,0.527792096138,0.763032972812653,-0.203145816922188,0.613606035709381,0.691517293453217,0.0937235057353973,0.716254055500031,0.715418756008148,0.062575489282608,0.695888221263885,0.763032972812653,-0.203145816922188,0.613606035709381,0.691356778144836,-0.166961759328842,0.702957689762115,0.670894861221313,0.136083349585533,0.728959083557129,0.691517293453217,0.0937235057353973,0.716254055500031,0.691356778144836,-0.166961759328842,0.702957689762115,0.601956248283386,-0.126981973648071,0.788368165493011,0.610976219177246,0.186938166618347,0.769260764122009,0.670894861221313,0.136083349585533,0.728959083557129,0.601956248283386,-0.126981973648071,0.788368165493011,0.539924502372742,-0.0975309163331985,0.836043834686279,0.511263847351074,0.229410201311111,0.828239262104034,0.610976219177246,0.186938166618347,0.769260764122009,0.539924502372742,-0.0975309163331985,0.836043834686279,0.530532360076904,-0.0813628435134888,0.843750834465027,0.347370386123657,0.231676712632179,0.90865820646286,0.511263847351074,0.229410201311111,0.828239262104034,0.530532360076904,-0.0813628435134888,0.843750834465027,0.493387967348099,-0.0896371454000473,0.865178287029266,0.271949172019958,0.202169090509415,0.940835416316986,0.347370386123657,0.231676712632179,0.90865820646286,0.493387967348099,-0.0896371454000473,0.865178287029266,0.373312830924988,-0.131910309195518,0.918279409408569,0.119281567633152,0.172357618808746,0.977785646915436,0.271949172019958,0.202169090509415,0.940835416316986,0.373312830924988,-0.131910309195518,0.918279409408569,0.249244153499603,-0.19804185628891,0.947975099086761,-0.0153793310746551,0.136903032660484,0.990465044975281,0.119281567633152,0.172357618808746,0.977785646915436,0.249244153499603,-0.19804185628891,0.947975099086761,0.176319494843483,-0.24019680917263,0.954576790332794,-0.0923509448766708,0.110743053257465,0.989548921585083,-0.0153793310746551,0.136903032660484,0.990465044975281, -0.176319494843483,-0.24019680917263,0.954576790332794,0.106686748564243,-0.267717808485031,0.957572519779205,-0.168494194746017,0.0982578322291374,0.980793058872223,-0.0923509448766708,0.110743053257465,0.989548921585083,0.106686748564243,-0.267717808485031,0.957572519779205,0.0603145211935043,-0.268659979104996,0.961344838142395,-0.126774668693542,0.124518774449825,0.984084963798523,-0.168494194746017,0.0982578322291374,0.980793058872223,0.0603145211935043,-0.268659979104996,0.961344838142395,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,-1.18681050764735e-07,0.127460151910782,0.99184376001358,-0.126774668693542,0.124518774449825,0.984084963798523,1.48528812360382e-07,0.231706529855728,-0.972785711288452,0.0452923849225044,0.231373652815819,-0.971809983253479,0.0421977154910564,0.266968548297882,-0.962780892848969,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,0.0452923849225044,0.231373652815819,-0.971809983253479,0.121118932962418,0.239042401313782,-0.963425636291504,0.122906930744648,0.26610940694809,-0.956075072288513,0.0421977154910564,0.266968548297882,-0.962780892848969,0.121118932962418,0.239042401313782,-0.963425636291504,0.211852118372917,0.243508473038673,-0.94647890329361,0.221275642514229,0.262335985898972,-0.939263999462128,0.122906930744648,0.26610940694809,-0.956075072288513,0.211852118372917,0.243508473038673,-0.94647890329361,0.295085906982422,0.239659816026688,-0.924925684928894,0.315801113843918,0.251591563224792,-0.914861261844635,0.221275642514229,0.262335985898972,-0.939263999462128,0.295085906982422,0.239659816026688,-0.924925684928894,0.403909951448441,0.225777745246887,-0.886499404907227,0.436506778001785,0.233594134449959,-0.868847250938416,0.315801113843918,0.251591563224792,-0.914861261844635,0.403909951448441,0.225777745246887,-0.886499404907227,0.550428926944733,0.196756899356842,-0.811365962028503,0.591074645519257,0.207417994737625,-0.779492437839508,0.436506778001785,0.233594134449959,-0.868847250938416,0.550428926944733,0.196756899356842,-0.811365962028503, -0.716842949390411,0.155831933021545,-0.679597437381744,0.751979172229767,0.168086364865303,-0.637396395206451,0.591074645519257,0.207417994737625,-0.779492437839508,0.716842949390411,0.155831933021545,-0.679597437381744,0.841564297676086,0.11118533462286,-0.528589963912964,0.861584186553955,0.120209991931915,-0.493175595998764,0.751979172229767,0.168086364865303,-0.637396395206451,0.841564297676086,0.11118533462286,-0.528589963912964,0.920960783958435,0.0725642070174217,-0.382839053869247,0.930044949054718,0.0694594234228134,-0.360821127891541,0.861584186553955,0.120209991931915,-0.493175595998764,0.920960783958435,0.0725642070174217,-0.382839053869247,0.982601165771484,0.0331035405397415,-0.182754442095757,0.983544290065765,0.0161068383604288,-0.179947376251221,0.930044949054718,0.0694594234228134,-0.360821127891541,0.982601165771484,0.0331035405397415,-0.182754442095757,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.983544290065765,0.0161068383604288,-0.179947376251221,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.983570635318756,-0.0811970829963684,0.161232128739357,0.980292320251465,-0.109852708876133,0.16419281065464,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.983570635318756,-0.0811970829963684,0.161232128739357,0.912356376647949,-0.141616880893707,0.384123086929321,0.927649080753326,-0.173086896538734,0.33092001080513,0.980292320251465,-0.109852708876133,0.16419281065464,0.912356376647949,-0.141616880893707,0.384123086929321,0.819408297538757,-0.17691445350647,0.545225739479065,0.849539875984192,-0.187142178416252,0.49321374297142,0.927649080753326,-0.173086896538734,0.33092001080513,0.819408297538757,-0.17691445350647,0.545225739479065,0.732613146305084,-0.22996623814106,0.640619695186615,0.730802416801453,-0.185328125953674,0.656948506832123,0.849539875984192,-0.187142178416252,0.49321374297142,0.732613146305084,-0.22996623814106,0.640619695186615,0.734038114547729,-0.289851725101471,0.614144802093506,0.651494562625885,-0.183251723647118,0.736188590526581, -0.730802416801453,-0.185328125953674,0.656948506832123,0.734038114547729,-0.289851725101471,0.614144802093506,0.788692355155945,-0.369454503059387,0.491393715143204,0.646958231925964,-0.200475201010704,0.735700070858002,0.651494562625885,-0.183251723647118,0.736188590526581,0.788692355155945,-0.369454503059387,0.491393715143204,0.820944428443909,-0.437150865793228,0.367354601621628,0.699751615524292,-0.23775677382946,0.673661172389984,0.646958231925964,-0.200475201010704,0.735700070858002,0.820944428443909,-0.437150865793228,0.367354601621628,0.805763602256775,-0.495398193597794,0.32453915476799,0.743825554847717,-0.307951986789703,0.593202531337738,0.699751615524292,-0.23775677382946,0.673661172389984,0.805763602256775,-0.495398193597794,0.32453915476799,0.75371903181076,-0.530059397220612,0.388516068458557,0.745765566825867,-0.369670927524567,0.554235637187958,0.743825554847717,-0.307951986789703,0.593202531337738,0.75371903181076,-0.530059397220612,0.388516068458557,0.693555176258087,-0.548085689544678,0.467528879642487,0.735174715518951,-0.408614665269852,0.540880978107452,0.745765566825867,-0.369670927524567,0.554235637187958,0.693555176258087,-0.548085689544678,0.467528879642487,0.638139426708221,-0.555814921855927,0.532773792743683,0.7086101770401,-0.435911774635315,0.554844617843628,0.735174715518951,-0.408614665269852,0.540880978107452,0.638139426708221,-0.555814921855927,0.532773792743683,0.592932999134064,-0.562746107578278,0.575975060462952,0.652298331260681,-0.457809060811996,0.604084253311157,0.7086101770401,-0.435911774635315,0.554844617843628,0.592932999134064,-0.562746107578278,0.575975060462952,0.51042777299881,-0.590444564819336,0.625171065330505,0.526753902435303,-0.501215815544128,0.686522364616394,0.652298331260681,-0.457809060811996,0.604084253311157,0.51042777299881,-0.590444564819336,0.625171065330505,0.386757254600525,-0.659731805324554,0.644338965415955,0.365993618965149,-0.541276335716248,0.757013022899628,0.526753902435303,-0.501215815544128,0.686522364616394,0.386757254600525,-0.659731805324554,0.644338965415955, -0.235601052641869,-0.715268850326538,0.657938182353973,0.206913620233536,-0.568290770053864,0.796387135982513,0.365993618965149,-0.541276335716248,0.757013022899628,0.235601052641869,-0.715268850326538,0.657938182353973,0.0898829028010368,-0.720666646957397,0.687430441379547,0.113816358149052,-0.566020905971527,0.816496253013611,0.206913620233536,-0.568290770053864,0.796387135982513,0.0898829028010368,-0.720666646957397,0.687430441379547,6.02130469928852e-08,-0.702668070793152,0.711517870426178,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,0.113816358149052,-0.566020905971527,0.816496253013611,0.0116367666050792,-0.906590223312378,-0.421851634979248,0.417807519435883,-0.77439957857132,-0.475123256444931,0.35174748301506,-0.851853489875793,-0.388097107410431,0.0238891579210758,-0.954553842544556,-0.297079294919968,-0.333319246768951,-0.913330435752869,-0.233935564756393,0.0116367666050792,-0.906590223312378,-0.421851634979248,0.0238891579210758,-0.954553842544556,-0.297079294919968,-0.254802078008652,-0.952636897563934,-0.166008740663528,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.333319246768951,-0.913330435752869,-0.233935564756393,-0.254802078008652,-0.952636897563934,-0.166008740663528,-0.37261837720871,-0.925204694271088,-0.0717765539884567,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.37261837720871,-0.925204694271088,-0.0717765539884567,-0.414683878421783,-0.906807661056519,0.0757431983947754,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.414683878421783,-0.906807661056519,0.0757431983947754,-0.458042323589325,-0.860918879508972,0.221395075321198,0.417807519435883,-0.77439957857132,-0.475123256444931,0.725718796253204,-0.558084905147552,-0.402335107326508,0.684054017066956,-0.637334167957306,-0.354789137840271,0.35174748301506,-0.851853489875793,-0.388097107410431,0.725718796253204,-0.558084905147552,-0.402335107326508,0.850677847862244,-0.436320781707764,-0.293209046125412, -0.822762727737427,-0.500288605690002,-0.269764274358749,0.684054017066956,-0.637334167957306,-0.354789137840271,0.850677847862244,-0.436320781707764,-0.293209046125412,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.940793573856354,-0.326468676328659,-0.0912444517016411,0.822762727737427,-0.500288605690002,-0.269764274358749,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.984726369380951,-0.138775065541267,0.105145215988159,0.946296751499176,-0.288656741380692,0.145600974559784,0.940793573856354,-0.326468676328659,-0.0912444517016411,0.984726369380951,-0.138775065541267,0.105145215988159,0.91557765007019,-0.0274116899818182,0.401205897331238,0.844117999076843,-0.344405055046082,0.410913676023483,0.946296751499176,-0.288656741380692,0.145600974559784,0.91557765007019,-0.0274116899818182,0.401205897331238,0.718403398990631,-0.0559571795165539,0.693372488021851,0.64731228351593,-0.47042915225029,0.599735856056213,0.844117999076843,-0.344405055046082,0.410913676023483,0.718403398990631,-0.0559571795165539,0.693372488021851,0.412471860647202,-0.275771468877792,0.868226408958435,0.420693814754486,-0.588744878768921,0.690214514732361,0.64731228351593,-0.47042915225029,0.599735856056213,0.412471860647202,-0.275771468877792,0.868226408958435,-0.144471272826195,-0.614518642425537,0.775560975074768,-0.0455766431987286,-0.779709339141846,0.624480664730072,0.420693814754486,-0.588744878768921,0.690214514732361,-0.144471272826195,-0.614518642425537,0.775560975074768,-0.414653658866882,-0.77838122844696,0.471365094184875,-0.374406605958939,-0.792443752288818,0.481510788202286,-0.0455766431987286,-0.779709339141846,0.624480664730072,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.458042323589325,-0.860918879508972,0.221395075321198,-0.374406605958939,-0.792443752288818,0.481510788202286,-0.414653658866882,-0.77838122844696,0.471365094184875,0.0238891579210758,-0.954553842544556,-0.297079294919968,0.370583802461624,-0.924903988838196,0.0849721506237984,0.236197903752327,-0.958470165729523,0.159829750657082, --0.254802078008652,-0.952636897563934,-0.166008740663528,0.0845369845628738,-0.970243990421295,0.226892158389091,-0.37261837720871,-0.925204694271088,-0.0717765539884567,-0.254802078008652,-0.952636897563934,-0.166008740663528,0.236197903752327,-0.958470165729523,0.159829750657082,-0.117940910160542,-0.94948011636734,0.290821850299835,-0.414683878421783,-0.906807661056519,0.0757431983947754,-0.37261837720871,-0.925204694271088,-0.0717765539884567,0.0845369845628738,-0.970243990421295,0.226892158389091,0.420693814754486,-0.588744878768921,0.690214514732361,0.0845369845628738,-0.970243990421295,0.226892158389091,0.236197903752327,-0.958470165729523,0.159829750657082,0.64731228351593,-0.47042915225029,0.599735856056213,0.0845369845628738,-0.970243990421295,0.226892158389091,0.420693814754486,-0.588744878768921,0.690214514732361,-0.0455766431987286,-0.779709339141846,0.624480664730072,-0.117940910160542,-0.94948011636734,0.290821850299835,0.64731228351593,-0.47042915225029,0.599735856056213,0.236197903752327,-0.958470165729523,0.159829750657082,0.370583802461624,-0.924903988838196,0.0849721506237984,0.844117999076843,-0.344405055046082,0.410913676023483,0.370583802461624,-0.924903988838196,0.0849721506237984,0.0238891579210758,-0.954553842544556,-0.297079294919968,0.35174748301506,-0.851853489875793,-0.388097107410431,0.503159940242767,-0.864180982112885,0.00460274610668421,0.844117999076843,-0.344405055046082,0.410913676023483,0.370583802461624,-0.924903988838196,0.0849721506237984,0.503159940242767,-0.864180982112885,0.00460274610668421,0.946296751499176,-0.288656741380692,0.145600974559784,0.822762727737427,-0.500288605690002,-0.269764274358749,0.940793573856354,-0.326468676328659,-0.0912444517016411,0.946296751499176,-0.288656741380692,0.145600974559784,0.503159940242767,-0.864180982112885,0.00460274610668421,0.684054017066956,-0.637334167957306,-0.354789137840271,0.822762727737427,-0.500288605690002,-0.269764274358749,0.503159940242767,-0.864180982112885,0.00460274610668421,0.35174748301506,-0.851853489875793,-0.388097107410431, --0.458042323589325,-0.860918879508972,0.221395075321198,-0.117940910160542,-0.94948011636734,0.290821850299835,-0.0455766431987286,-0.779709339141846,0.624480664730072,-0.374406605958939,-0.792443752288818,0.481510788202286,-0.117940910160542,-0.94948011636734,0.290821850299835,-0.458042323589325,-0.860918879508972,0.221395075321198,-0.414683878421783,-0.906807661056519,0.0757431983947754,0.0650140419602394,-0.929289102554321,0.363586246967316,-2.19972790205247e-07,-0.946157574653625,0.323706299066544,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,0.0247087012976408,-0.976878941059113,-0.21236078441143,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,0.0700248181819916,-0.992533087730408,0.0998731777071953,-0.41677713394165,-0.760090947151184,-0.498556435108185,-0.331994891166687,-0.770820498466492,-0.543704926967621,0.0177787970751524,-0.991293430328369,0.13046595454216,0.0102759916335344,-0.987158536911011,0.159412860870361,-0.377735555171967,-0.830142617225647,-0.410096436738968,-0.401315242052078,-0.798839449882507,-0.448108941316605,0.0102759916335344,-0.987158536911011,0.159412860870361,0.0467730760574341,-0.957661151885986,0.28407296538353,-0.251897215843201,-0.911083340644836,-0.326304823160172,-0.377735555171967,-0.830142617225647,-0.410096436738968,0.0467730760574341,-0.957661151885986,0.28407296538353,0.0574995428323746,-0.920222818851471,0.38714811205864,-0.105126559734344,-0.962312459945679,-0.250805199146271,-0.251897215843201,-0.911083340644836,-0.326304823160172,0.0574995428323746,-0.920222818851471,0.38714811205864,0.0700104087591171,-0.918607831001282,0.388919323682785,-0.0360655821859837,-0.971361935138702,-0.234851464629173,-0.105126559734344,-0.962312459945679,-0.250805199146271,0.0700104087591171,-0.918607831001282,0.388919323682785,0.0650140419602394,-0.929289102554321,0.363586246967316,0.0247087012976408,-0.976878941059113,-0.21236078441143,-0.0360655821859837,-0.971361935138702,-0.234851464629173,0.0700248181819916,-0.992533087730408,0.0998731777071953,0.0177787970751524,-0.991293430328369,0.13046595454216, --0.401315242052078,-0.798839449882507,-0.448108941316605,-0.41677713394165,-0.760090947151184,-0.498556435108185,-0.114908866584301,-0.963067054748535,-0.243511691689491,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,-0.331994891166687,-0.770820498466492,-0.543704926967621,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.786457419395447,-0.152120247483253,-0.598618507385254,-0.114908866584301,-0.963067054748535,-0.243511691689491,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.193546488881111,0.969683647155762,-0.149175480008125,-0.786457419395447,-0.152120247483253,-0.598618507385254,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.417963266372681,0.837518990039825,-0.351949870586395,0.369951128959656,0.895375072956085,0.24787038564682,-0.193546488881111,0.969683647155762,-0.149175480008125,-0.417963266372681,0.837518990039825,-0.351949870586395,-0.300644010305405,0.812015652656555,-0.500243484973907,0.334255218505859,0.900808334350586,0.277160137891769,0.369951128959656,0.895375072956085,0.24787038564682,-0.300644010305405,0.812015652656555,-0.500243484973907,-0.262743830680847,0.836696147918701,-0.480525940656662,0.31908592581749,0.899403631687164,0.298759669065475,0.334255218505859,0.900808334350586,0.277160137891769,-0.262743830680847,0.836696147918701,-0.480525940656662,-0.344586104154587,0.805059552192688,-0.48284524679184,0.345288544893265,0.87969571352005,0.326972752809525,0.31908592581749,0.899403631687164,0.298759669065475,-0.344586104154587,0.805059552192688,-0.48284524679184,-0.257836908102036,0.862873613834381,-0.434705972671509,0.343751341104507,0.84628164768219,0.40699166059494,0.345288544893265,0.87969571352005,0.326972752809525,-0.257836908102036,0.862873613834381,-0.434705972671509,-0.11381696164608,0.917827963829041,-0.380312442779541,0.203538671135902,0.867182433605194,0.454496145248413,0.343751341104507,0.84628164768219,0.40699166059494,-0.11381696164608,0.917827963829041,-0.380312442779541,-0.04775520414114,0.912685573101044,-0.405862778425217, -0.0728881284594536,0.860819280147552,0.503664135932922,0.203538671135902,0.867182433605194,0.454496145248413,-0.04775520414114,0.912685573101044,-0.405862778425217,-0.0447621680796146,0.905397295951843,-0.422199219465256,0.0103098433464766,0.82647317647934,0.562881708145142,0.0728881284594536,0.860819280147552,0.503664135932922,-0.0447621680796146,0.905397295951843,-0.422199219465256,-0.0501138232648373,0.917617499828339,-0.394292742013931,-4.3436074292913e-07,0.799352884292603,0.60086190700531,0.0103098433464766,0.82647317647934,0.562881708145142,-0.0501138232648373,0.917617499828339,-0.394292742013931,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,0.0247087012976408,-0.976878941059113,-0.21236078441143,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,-0.0360571295022964,-0.259087026119232,-0.965180695056915,-0.0360655821859837,-0.971361935138702,-0.234851464629173,0.0247087012976408,-0.976878941059113,-0.21236078441143,-0.0360571295022964,-0.259087026119232,-0.965180695056915,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.105126559734344,-0.962312459945679,-0.250805199146271,-0.0360655821859837,-0.971361935138702,-0.234851464629173,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.251897215843201,-0.911083340644836,-0.326304823160172,-0.105126559734344,-0.962312459945679,-0.250805199146271,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.377735555171967,-0.830142617225647,-0.410096436738968,-0.251897215843201,-0.911083340644836,-0.326304823160172,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.401315242052078,-0.798839449882507,-0.448108941316605,-0.377735555171967,-0.830142617225647,-0.410096436738968,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.41677713394165,-0.760090947151184,-0.498556435108185, --0.401315242052078,-0.798839449882507,-0.448108941316605,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.331994891166687,-0.770820498466492,-0.543704926967621,-0.41677713394165,-0.760090947151184,-0.498556435108185,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.331994891166687,-0.770820498466492,-0.543704926967621,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.417963266372681,0.837518990039825,-0.351949870586395,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.300644010305405,0.812015652656555,-0.500243484973907,-0.417963266372681,0.837518990039825,-0.351949870586395,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.262743830680847,0.836696147918701,-0.480525940656662,-0.300644010305405,0.812015652656555,-0.500243484973907,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.344586104154587,0.805059552192688,-0.48284524679184,-0.262743830680847,0.836696147918701,-0.480525940656662,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.257836908102036,0.862873613834381,-0.434705972671509,-0.344586104154587,0.805059552192688,-0.48284524679184,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.587400138378143,0.257034242153168,-0.767394661903381,-0.11381696164608,0.917827963829041,-0.380312442779541,-0.257836908102036,0.862873613834381,-0.434705972671509, --0.587400138378143,0.257034242153168,-0.767394661903381,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.04775520414114,0.912685573101044,-0.405862778425217,-0.11381696164608,0.917827963829041,-0.380312442779541,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.0447621680796146,0.905397295951843,-0.422199219465256,-0.04775520414114,0.912685573101044,-0.405862778425217,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.112730614840984,0.375972807407379,-0.919747889041901,-0.0501138232648373,0.917617499828339,-0.394292742013931,-0.0447621680796146,0.905397295951843,-0.422199219465256,-0.112730614840984,0.375972807407379,-0.919747889041901,-0.0816358551383018,0.384825438261032,-0.919372141361237,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,-0.0501138232648373,0.917617499828339,-0.394292742013931,-0.0816358551383018,0.384825438261032,-0.919372141361237,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,-0.0360571295022964,-0.259087026119232,-0.965180695056915,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,0.02859559468925,-0.448204517364502,-0.893473565578461,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.0360571295022964,-0.259087026119232,-0.965180695056915,0.02859559468925,-0.448204517364502,-0.893473565578461,-0.154668197035789,-0.442441701889038,-0.883358955383301,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.154668197035789,-0.442441701889038,-0.883358955383301,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.544105172157288,-0.371156364679337,-0.752457618713379,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.544105172157288,-0.371156364679337,-0.752457618713379, --0.627916693687439,-0.361263155937195,-0.689354360103607,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.627916693687439,-0.361263155937195,-0.689354360103607,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.778241693973541,0.403277724981308,-0.481359481811523,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.778241693973541,0.403277724981308,-0.481359481811523,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.56823742389679,0.494539827108383,-0.657675206661224, --0.587400138378143,0.257034242153168,-0.767394661903381,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.56823742389679,0.494539827108383,-0.657675206661224,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.587400138378143,0.257034242153168,-0.767394661903381,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.00850863195955753,0.627050459384918,-0.778932213783264,-0.112730614840984,0.375972807407379,-0.919747889041901,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.00850863195955753,0.627050459384918,-0.778932213783264,0.020904216915369,0.648062169551849,-0.761300444602966,-0.0816358551383018,0.384825438261032,-0.919372141361237,-0.112730614840984,0.375972807407379,-0.919747889041901,0.020904216915369,0.648062169551849,-0.761300444602966,-0.0730486586689949,0.663973748683929,-0.744179308414459,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,-0.0816358551383018,0.384825438261032,-0.919372141361237,-0.0730486586689949,0.663973748683929,-0.744179308414459,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,0.02859559468925,-0.448204517364502,-0.893473565578461,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,0.142273634672165,-0.833896279335022,-0.533268332481384,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.627916693687439,-0.361263155937195,-0.689354360103607,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.627916693687439,-0.361263155937195,-0.689354360103607, --0.544105172157288,-0.371156364679337,-0.752457618713379,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.544105172157288,-0.371156364679337,-0.752457618713379,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.154668197035789,-0.442441701889038,-0.883358955383301,-0.118109680712223,-0.840319991111755,-0.52906745672226,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.154668197035789,-0.442441701889038,-0.883358955383301,0.02859559468925,-0.448204517364502,-0.893473565578461,0.142273634672165,-0.833896279335022,-0.533268332481384,-0.118109680712223,-0.840319991111755,-0.52906745672226,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.778241693973541,0.403277724981308,-0.481359481811523,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.857928216457367,0.377771228551865,-0.34820693731308,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.778241693973541,0.403277724981308,-0.481359481811523, --0.857928216457367,0.377771228551865,-0.34820693731308,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.56823742389679,0.494539827108383,-0.657675206661224,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.56823742389679,0.494539827108383,-0.657675206661224,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.029377855360508,0.820863842964172,-0.570367813110352,-0.00850863195955753,0.627050459384918,-0.778932213783264,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.029377855360508,0.820863842964172,-0.570367813110352,0.31808939576149,0.821739256381989,-0.472825199365616,0.020904216915369,0.648062169551849,-0.761300444602966,-0.00850863195955753,0.627050459384918,-0.778932213783264,0.31808939576149,0.821739256381989,-0.472825199365616,0.214610382914543,0.864416182041168,-0.454672455787659,-0.0730486586689949,0.663973748683929,-0.744179308414459,0.020904216915369,0.648062169551849,-0.761300444602966,0.214610382914543,0.864416182041168,-0.454672455787659,-0.0425950326025486,0.888552010059357,-0.456794291734695,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,-0.0730486586689949,0.663973748683929,-0.744179308414459,-0.0425950326025486,0.888552010059357,-0.456794291734695,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,0.142273634672165,-0.833896279335022,-0.533268332481384,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,0.234723672270775,-0.972029030323029,-0.00802461709827185,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.81127405166626,-0.551212430000305,0.194934114813805, --0.86515998840332,-0.455062538385391,0.210751459002495,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.118109680712223,-0.840319991111755,-0.52906745672226,-0.0856686979532242,-0.996267199516296,0.0106057208031416,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.118109680712223,-0.840319991111755,-0.52906745672226,0.142273634672165,-0.833896279335022,-0.533268332481384,0.234723672270775,-0.972029030323029,-0.00802461709827185,-0.0856686979532242,-0.996267199516296,0.0106057208031416,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.81127405166626,-0.551212430000305,0.194934114813805,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.86515998840332,-0.455062538385391,0.210751459002495,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.97174334526062,0.236035600304604,0.00144337257370353, --0.857928216457367,0.377771228551865,-0.34820693731308,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.97174334526062,0.236035600304604,0.00144337257370353,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.857928216457367,0.377771228551865,-0.34820693731308,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.139661610126495,0.872599363327026,-0.468043655157089,-0.029377855360508,0.820863842964172,-0.570367813110352,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.139661610126495,0.872599363327026,-0.468043655157089,0.217602804303169,0.862489104270935,-0.456904381513596,0.31808939576149,0.821739256381989,-0.472825199365616,-0.029377855360508,0.820863842964172,-0.570367813110352,0.217602804303169,0.862489104270935,-0.456904381513596,0.506362557411194,0.78184312582016,-0.363755792379379,0.214610382914543,0.864416182041168,-0.454672455787659,0.31808939576149,0.821739256381989,-0.472825199365616,0.506362557411194,0.78184312582016,-0.363755792379379,0.349090427160263,0.866576611995697,-0.356624364852905,-0.0425950326025486,0.888552010059357,-0.456794291734695,0.214610382914543,0.864416182041168,-0.454672455787659,0.349090427160263,0.866576611995697,-0.356624364852905,-0.0188643857836723,0.933145046234131,-0.359004735946655,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,-0.0425950326025486,0.888552010059357,-0.456794291734695,-0.0188643857836723,0.933145046234131,-0.359004735946655,2.52106922005169e-08,0.935736477375031,-0.352700024843216,0.271395593881607,-0.894916951656342,0.35421484708786, --3.02580502875571e-08,-0.923264861106873,0.384164065122604,0,-0.464990794658661,0.885315537452698,0.264075130224228,-0.547405004501343,0.794110834598541,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.826429128646851,-0.469586193561554,0.310650527477264,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.762011051177979,-0.166618511080742,0.62576150894165,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.0720962658524513,-0.922054409980774,0.380286395549774,-0.0131181916221976,-0.542192041873932,0.840152204036713,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.0720962658524513,-0.922054409980774,0.380286395549774,0.271395593881607,-0.894916951656342,0.35421484708786,0.264075130224228,-0.547405004501343,0.794110834598541,-0.0131181916221976,-0.542192041873932,0.840152204036713,-0.826429128646851,-0.469586193561554,0.310650527477264,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.949438035488129,-0.21503758430481,0.228749454021454,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.762011051177979,-0.166618511080742,0.62576150894165,-0.875040590763092,-0.0363670960068703,0.482681691646576,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.949438035488129,-0.21503758430481,0.228749454021454, --0.875040590763092,-0.0363670960068703,0.482681691646576,-0.931641817092896,0.146454632282257,0.332557588815689,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.931641817092896,0.146454632282257,0.332557588815689,-0.939383208751678,0.307013422250748,0.152649462223053,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.939383208751678,0.307013422250748,0.152649462223053,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.400419503450394,0.853491127490997,-0.333492338657379,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.395730197429657,0.839276790618896,-0.372843116521835,0.10107010602951,0.919841766357422,-0.379046142101288,-0.400419503450394,0.853491127490997,-0.333492338657379,-0.395730197429657,0.839276790618896,-0.372843116521835,0.128467231988907,0.860839128494263,-0.492394089698792,0.456542015075684,0.826078951358795,-0.330398410558701,0.10107010602951,0.919841766357422,-0.379046142101288,0.128467231988907,0.860839128494263,-0.492394089698792,0.460331499576569,0.759512424468994,-0.459603935480118,0.61537104845047,0.732699990272522,-0.290635854005814,0.456542015075684,0.826078951358795,-0.330398410558701,0.460331499576569,0.759512424468994,-0.459603935480118,0.625189602375031,0.655075073242188,-0.424281090497971,0.41922864317894,0.851044833660126,-0.316180557012558,0.61537104845047,0.732699990272522,-0.290635854005814,0.625189602375031,0.655075073242188,-0.424281090497971,0.430703580379486,0.765645563602448,-0.47778794169426,0.000692487927153707,0.942585110664368,-0.333965301513672,0.41922864317894,0.851044833660126,-0.316180557012558,0.430703580379486,0.765645563602448,-0.47778794169426,0.00734899286180735,0.859205365180969,-0.511577963829041, --3.55305864729871e-08,0.944239854812622,-0.329258650541306,0.000692487927153707,0.942585110664368,-0.333965301513672,0.00734899286180735,0.859205365180969,-0.511577963829041,1.56375783433305e-08,0.863422572612762,-0.504481375217438,0.264075130224228,-0.547405004501343,0.794110834598541,0,-0.464990794658661,0.885315537452698,3.17806012617439e-08,-0.0365307778120041,0.99933248758316,0.183962553739548,-0.0350325554609299,0.982308685779572,-0.0131181916221976,-0.542192041873932,0.840152204036713,0.264075130224228,-0.547405004501343,0.794110834598541,0.183962553739548,-0.0350325554609299,0.982308685779572,0.0766317471861839,-0.0284375138580799,0.996653854846954,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.0131181916221976,-0.542192041873932,0.840152204036713,0.0766317471861839,-0.0284375138580799,0.996653854846954,-0.0148816062137485,-0.0208520703017712,0.999671876430511,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.0148816062137485,-0.0208520703017712,0.999671876430511,-0.0173269808292389,-0.0208762809634209,0.999631941318512,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.0173269808292389,-0.0208762809634209,0.999631941318512,-0.0708390027284622,-0.00593735836446285,0.997470021247864,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.0708390027284622,-0.00593735836446285,0.997470021247864,-0.132609471678734,0.0103374812752008,0.991114377975464,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.132609471678734,0.0103374812752008,0.991114377975464,-0.250808537006378,0.0652036741375923,0.965838313102722,-0.762011051177979,-0.166618511080742,0.62576150894165,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.250808537006378,0.0652036741375923,0.965838313102722,-0.371559023857117,0.120893567800522,0.920504570007324,-0.875040590763092,-0.0363670960068703,0.482681691646576, --0.762011051177979,-0.166618511080742,0.62576150894165,-0.371559023857117,0.120893567800522,0.920504570007324,-0.50362890958786,0.228875413537025,0.833050966262817,-0.931641817092896,0.146454632282257,0.332557588815689,-0.875040590763092,-0.0363670960068703,0.482681691646576,-0.50362890958786,0.228875413537025,0.833050966262817,-0.645216703414917,0.364714354276657,0.671326220035553,-0.939383208751678,0.307013422250748,0.152649462223053,-0.931641817092896,0.146454632282257,0.332557588815689,-0.645216703414917,0.364714354276657,0.671326220035553,-0.708086788654327,0.491774052381516,0.506726205348969,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.939383208751678,0.307013422250748,0.152649462223053,-0.708086788654327,0.491774052381516,0.506726205348969,-0.701581537723541,0.661462485790253,0.2650485932827,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.701581537723541,0.661462485790253,0.2650485932827,-0.57687121629715,0.815990269184113,-0.0371436290442944,-0.395730197429657,0.839276790618896,-0.372843116521835,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.57687121629715,0.815990269184113,-0.0371436290442944,-0.238391101360321,0.898508012294769,-0.368582278490067,0.128467231988907,0.860839128494263,-0.492394089698792,-0.395730197429657,0.839276790618896,-0.372843116521835,-0.238391101360321,0.898508012294769,-0.368582278490067,0.1374371945858,0.811269164085388,-0.568289756774902,0.460331499576569,0.759512424468994,-0.459603935480118,0.128467231988907,0.860839128494263,-0.492394089698792,0.1374371945858,0.811269164085388,-0.568289756774902,0.440458655357361,0.664715468883514,-0.603448033332825,0.625189602375031,0.655075073242188,-0.424281090497971,0.460331499576569,0.759512424468994,-0.459603935480118,0.440458655357361,0.664715468883514,-0.603448033332825,0.56741863489151,0.567031860351563,-0.597085475921631,0.430703580379486,0.765645563602448,-0.47778794169426,0.625189602375031,0.655075073242188,-0.424281090497971,0.56741863489151,0.567031860351563,-0.597085475921631, -0.368260353803635,0.667870342731476,-0.646787166595459,0.00734899286180735,0.859205365180969,-0.511577963829041,0.430703580379486,0.765645563602448,-0.47778794169426,0.368260353803635,0.667870342731476,-0.646787166595459,-0.00923370569944382,0.746861457824707,-0.664915561676025,1.56375783433305e-08,0.863422572612762,-0.504481375217438,0.00734899286180735,0.859205365180969,-0.511577963829041,-0.00923370569944382,0.746861457824707,-0.664915561676025,6.30018490710427e-08,0.75485759973526,-0.655888676643372,0.234723672270775,-0.972029030323029,-0.00802461709827185,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,-3.02580502875571e-08,-0.923264861106873,0.384164065122604,0.271395593881607,-0.894916951656342,0.35421484708786,-0.0856686979532242,-0.996267199516296,0.0106057208031416,0.234723672270775,-0.972029030323029,-0.00802461709827185,0.271395593881607,-0.894916951656342,0.35421484708786,-0.0720962658524513,-0.922054409980774,0.380286395549774,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.0856686979532242,-0.996267199516296,0.0106057208031416,-0.0720962658524513,-0.922054409980774,0.380286395549774,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.81127405166626,-0.551212430000305,0.194934114813805,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.826429128646851,-0.469586193561554,0.310650527477264, --0.86515998840332,-0.455062538385391,0.210751459002495,-0.81127405166626,-0.551212430000305,0.194934114813805,-0.826429128646851,-0.469586193561554,0.310650527477264,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.86515998840332,-0.455062538385391,0.210751459002495,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.949438035488129,-0.21503758430481,0.228749454021454,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.949438035488129,-0.21503758430481,0.228749454021454,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.97174334526062,0.236035600304604,0.00144337257370353,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.97174334526062,0.236035600304604,0.00144337257370353,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.400419503450394,0.853491127490997,-0.333492338657379,-0.139661610126495,0.872599363327026,-0.468043655157089,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.400419503450394,0.853491127490997,-0.333492338657379,0.10107010602951,0.919841766357422,-0.379046142101288,0.217602804303169,0.862489104270935,-0.456904381513596,-0.139661610126495,0.872599363327026,-0.468043655157089,0.10107010602951,0.919841766357422,-0.379046142101288,0.456542015075684,0.826078951358795,-0.330398410558701,0.506362557411194,0.78184312582016,-0.363755792379379, -0.217602804303169,0.862489104270935,-0.456904381513596,0.456542015075684,0.826078951358795,-0.330398410558701,0.61537104845047,0.732699990272522,-0.290635854005814,0.349090427160263,0.866576611995697,-0.356624364852905,0.506362557411194,0.78184312582016,-0.363755792379379,0.61537104845047,0.732699990272522,-0.290635854005814,0.41922864317894,0.851044833660126,-0.316180557012558,-0.0188643857836723,0.933145046234131,-0.359004735946655,0.349090427160263,0.866576611995697,-0.356624364852905,0.41922864317894,0.851044833660126,-0.316180557012558,0.000692487927153707,0.942585110664368,-0.333965301513672,2.52106922005169e-08,0.935736477375031,-0.352700024843216,-0.0188643857836723,0.933145046234131,-0.359004735946655,0.000692487927153707,0.942585110664368,-0.333965301513672,-3.55305864729871e-08,0.944239854812622,-0.329258650541306,-0.808505594730377,0.0228019841015339,0.588046431541443,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.978504598140717,-0.204393237829208,0.0274245422333479,-0.940490007400513,0.115987449884415,0.319414436817169,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.598716080188751,-0.723723530769348,-0.343166559934616,-0.778936147689819,-0.548393428325653,-0.304175943136215,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.598716080188751,-0.723723530769348,-0.343166559934616,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.14347305893898,-0.928959310054779,0.341247856616974,-0.117516413331032,-0.920788824558258,-0.371937990188599,-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.14347305893898,-0.928959310054779,0.341247856616974,0.0295972488820553,-0.913982093334198,0.404673606157303,0.133332267403603,-0.951204597949982,-0.278266400098801,-0.117516413331032,-0.920788824558258,-0.371937990188599,0.0295972488820553,-0.913982093334198,0.404673606157303,0.106425814330578,-0.897813558578491,0.427322268486023, -0.345595240592957,-0.910361468791962,-0.227608993649483,0.133332267403603,-0.951204597949982,-0.278266400098801,0.118810221552849,-0.894129753112793,0.431759297847748,0.0746587365865707,-0.878905773162842,0.471116334199905,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.426962554454803,-0.885034561157227,-0.185518205165863,0.0746587365865707,-0.878905773162842,0.471116334199905,0.173959538340569,-0.84886234998703,0.499170124530792,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.173959538340569,-0.84886234998703,0.499170124530792,0.345366597175598,-0.783761382102966,0.516178250312805,0.773769915103912,-0.63150417804718,0.0498255901038647,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.345366597175598,-0.783761382102966,0.516178250312805,0.318178653717041,-0.851679027080536,0.416419565677643,0.650882303714752,-0.758415997028351,0.0340208187699318,0.773769915103912,-0.63150417804718,0.0498255901038647,0.106425814330578,-0.897813558578491,0.427322268486023,0.118810221552849,-0.894129753112793,0.431759297847748,0.426962554454803,-0.885034561157227,-0.185518205165863,0.345595240592957,-0.910361468791962,-0.227608993649483,0.113456606864929,0.663541316986084,0.739486753940582,-0.235429763793945,0.630609333515167,0.739530086517334,-0.822156250476837,0.554513931274414,-0.128737255930901,-0.545703768730164,0.694533884525299,-0.468860477209091,0.141706243157387,0.545924186706543,0.825763881206512,0.113456606864929,0.663541316986084,0.739486753940582,-0.545703768730164,0.694533884525299,-0.468860477209091,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.235429763793945,0.630609333515167,0.739530086517334,-0.808505594730377,0.0228019841015339,0.588046431541443,-0.940490007400513,0.115987449884415,0.319414436817169,-0.822156250476837,0.554513931274414,-0.128737255930901,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.778936147689819,-0.548393428325653,-0.304175943136215, --0.978504598140717,-0.204393237829208,0.0274245422333479,0.0423764511942863,0.502885341644287,0.863313615322113,0.141706243157387,0.545924186706543,0.825763881206512,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.0434524118900299,0.491198420524597,0.8699631690979,0.0423764511942863,0.502885341644287,0.863313615322113,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.00238645845092833,0.970765769481659,-0.240017145872116,-0.16955578327179,0.51304018497467,0.841451466083527,-0.0434524118900299,0.491198420524597,0.8699631690979,-0.00238645845092833,0.970765769481659,-0.240017145872116,0.177071169018745,0.962892293930054,-0.203676700592041,-0.269040018320084,0.544349014759064,0.794544875621796,-0.16955578327179,0.51304018497467,0.841451466083527,0.177071169018745,0.962892293930054,-0.203676700592041,0.444350570440292,0.854668080806732,-0.268504947423935,-0.31505212187767,0.551100432872772,0.772677481174469,-0.269040018320084,0.544349014759064,0.794544875621796,0.444350570440292,0.854668080806732,-0.268504947423935,0.618921399116516,0.756513297557831,-0.211244150996208,-0.395117282867432,0.556619703769684,0.730792045593262,-0.31505212187767,0.551100432872772,0.772677481174469,0.618921399116516,0.756513297557831,-0.211244150996208,0.687528967857361,0.7027268409729,-0.182972609996796,-0.316639393568039,0.610971570014954,0.725570917129517,-0.395117282867432,0.556619703769684,0.730792045593262,0.687528967857361,0.7027268409729,-0.182972609996796,0.674415171146393,0.721393287181854,-0.157339408993721,-0.217264279723167,0.573543012142181,0.789838373661041,-0.316639393568039,0.610971570014954,0.725570917129517,0.674415171146393,0.721393287181854,-0.157339408993721,0.71202152967453,0.687812209129333,-0.141207948327065,0.340116590261459,-0.61156165599823,0.714361965656281,-0.217264279723167,0.573543012142181,0.789838373661041,0.71202152967453,0.687812209129333,-0.141207948327065,0.907970368862152,-0.418885231018066,0.0111750448122621,0.318178653717041,-0.851679027080536,0.416419565677643, -0.340116590261459,-0.61156165599823,0.714361965656281,0.907970368862152,-0.418885231018066,0.0111750448122621,0.650882303714752,-0.758415997028351,0.0340208187699318,0.857804179191589,-0.476948946714401,0.191551223397255,0.809510111808777,0.027190363034606,0.586475968360901,0.940669000148773,0.120691485702991,0.317136079072952,0.977952122688293,-0.207108452916145,0.0267505515366793,0.507421135902405,-0.808788597583771,0.297295808792114,0.64949357509613,-0.740117192268372,0.174311548471451,0.781899452209473,-0.546732068061829,-0.299528658390045,0.60230165719986,-0.723518788814545,-0.337273120880127,0.353579491376877,-0.879789888858795,0.317728191614151,0.507421135902405,-0.808788597583771,0.297295808792114,0.60230165719986,-0.723518788814545,-0.337273120880127,0.384255915880203,-0.842719793319702,-0.377055495977402,0.142130747437477,-0.918823480606079,0.368187576532364,0.353579491376877,-0.879789888858795,0.317728191614151,0.384255915880203,-0.842719793319702,-0.377055495977402,0.108780093491077,-0.930140674114227,-0.350721210241318,-0.0265892222523689,-0.900146484375,0.434774845838547,0.142130747437477,-0.918823480606079,0.368187576532364,0.108780093491077,-0.930140674114227,-0.350721210241318,-0.13128699362278,-0.959209144115448,-0.250362604856491,-0.106808699667454,-0.887159824371338,0.448931515216827,-0.0265892222523689,-0.900146484375,0.434774845838547,-0.13128699362278,-0.959209144115448,-0.250362604856491,-0.345629841089249,-0.91473114490509,-0.20930090546608,-0.155293375253677,-0.884754359722137,0.439424335956573,-0.15303398668766,-0.885538697242737,0.438636392354965,-0.451789170503616,-0.871648609638214,-0.190039783716202,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.216106951236725,-0.874920010566711,0.433373659849167,-0.155293375253677,-0.884754359722137,0.439424335956573,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.326960325241089,-0.825367987155914,0.460287511348724,-0.216106951236725,-0.874920010566711,0.433373659849167, --0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.321650743484497,-0.862662851810455,0.390324980020523,-0.326960325241089,-0.825367987155914,0.460287511348724,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.15303398668766,-0.885538697242737,0.438636392354965,-0.106808699667454,-0.887159824371338,0.448931515216827,-0.345629841089249,-0.91473114490509,-0.20930090546608,-0.451789170503616,-0.871648609638214,-0.190039783716202,0.15533983707428,0.678589880466461,0.717903316020966,-0.138553112745285,0.691621780395508,0.708845794200897,0.528435289859772,0.652045547962189,-0.543684482574463,0.787477970123291,0.587750554084778,-0.185547024011612,-0.138553112745285,0.691621780395508,0.708845794200897,-0.0876083523035049,0.564424693584442,0.820822536945343,0.345102220773697,0.764186024665833,-0.544907510280609,0.528435289859772,0.652045547962189,-0.543684482574463,0.809510111808777,0.027190363034606,0.586475968360901,0.15533983707428,0.678589880466461,0.717903316020966,0.787477970123291,0.587750554084778,-0.185547024011612,0.940669000148773,0.120691485702991,0.317136079072952,0.64949357509613,-0.740117192268372,0.174311548471451,0.857804179191589,-0.476948946714401,0.191551223397255,0.977952122688293,-0.207108452916145,0.0267505515366793,0.781899452209473,-0.546732068061829,-0.299528658390045,-0.0876083523035049,0.564424693584442,0.820822536945343,-0.017424713820219,0.492136418819427,0.870343685150146,0.151894584298134,0.909278869628906,-0.387478977441788,0.345102220773697,0.764186024665833,-0.544907510280609,-0.017424713820219,0.492136418819427,0.870343685150146,0.0438507162034512,0.491777509450912,0.869616031646729,0.0033106142655015,0.970250010490417,-0.2420824021101,0.151894584298134,0.909278869628906,-0.387478977441788,0.0438507162034512,0.491777509450912,0.869616031646729,0.169712319970131,0.514092206954956,0.840777516365051,-0.176840782165527,0.962587714195251,-0.205310121178627,0.0033106142655015,0.970250010490417,-0.2420824021101, -0.169712319970131,0.514092206954956,0.840777516365051,0.269765794277191,0.544586539268494,0.794135928153992,-0.443993210792542,0.854627668857574,-0.269223988056183,-0.176840782165527,0.962587714195251,-0.205310121178627,0.269765794277191,0.544586539268494,0.794135928153992,0.315014570951462,0.551133930683136,0.772668898105621,-0.618931233882904,0.756517469882965,-0.211200311779976,-0.443993210792542,0.854627668857574,-0.269223988056183,0.315014570951462,0.551133930683136,0.772668898105621,0.395166456699371,0.556572616100311,0.730801165103912,-0.687529325485229,0.702727138996124,-0.182969659566879,-0.618931233882904,0.756517469882965,-0.211200311779976,0.395166456699371,0.556572616100311,0.730801165103912,0.316681206226349,0.610929429531097,0.725588202476501,-0.674412310123444,0.721396505832672,-0.157337516546249,-0.687529325485229,0.702727138996124,-0.182969659566879,0.316681206226349,0.610929429531097,0.725588202476501,0.217262208461761,0.57354336977005,0.78983873128891,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.674412310123444,0.721396505832672,-0.157337516546249,0.217262208461761,0.57354336977005,0.78983873128891,-0.339530318975449,-0.611383974552155,0.714792907238007,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.339530318975449,-0.611383974552155,0.714792907238007,-0.321650743484497,-0.862662851810455,0.390324980020523,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.940490007400513,0.115987449884415,0.319414436817169,-0.978504598140717,-0.204393237829208,0.0274245422333479,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.778936147689819,-0.548393428325653,-0.304175943136215,-0.598716080188751,-0.723723530769348,-0.343166559934616,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.598716080188751,-0.723723530769348,-0.343166559934616, --0.388200342655182,-0.838193953037262,-0.383055180311203,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.117516413331032,-0.920788824558258,-0.371937990188599,-0.131656393408775,-0.966851711273193,0.218778967857361,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.117516413331032,-0.920788824558258,-0.371937990188599,0.133332267403603,-0.951204597949982,-0.278266400098801,0.128061220049858,-0.96899151802063,0.211319416761398,-0.131656393408775,-0.966851711273193,0.218778967857361,0.133332267403603,-0.951204597949982,-0.278266400098801,0.345595240592957,-0.910361468791962,-0.227608993649483,0.237983629107475,-0.931620180606842,0.274677366018295,0.128061220049858,-0.96899151802063,0.211319416761398,0.426962554454803,-0.885034561157227,-0.185518205165863,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.29324072599411,-0.889165163040161,0.351276397705078,0.251219034194946,-0.908994376659393,0.33259329199791,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.328634530305862,-0.844697952270508,0.422474563121796,0.29324072599411,-0.889165163040161,0.351276397705078,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.773769915103912,-0.63150417804718,0.0498255901038647,0.309246808290482,-0.813580274581909,0.4923956990242,0.328634530305862,-0.844697952270508,0.422474563121796,0.773769915103912,-0.63150417804718,0.0498255901038647,0.650882303714752,-0.758415997028351,0.0340208187699318,0.281215906143188,-0.870656669139862,0.403577208518982,0.309246808290482,-0.813580274581909,0.4923956990242,0.345595240592957,-0.910361468791962,-0.227608993649483,0.426962554454803,-0.885034561157227,-0.185518205165863,0.251219034194946,-0.908994376659393,0.33259329199791,0.237983629107475,-0.931620180606842,0.274677366018295,-0.545703768730164,0.694533884525299,-0.468860477209091,-0.822156250476837,0.554513931274414,-0.128737255930901, --0.803932726383209,0.179387986660004,0.56702047586441,-0.535514771938324,0.709998667240143,0.457302868366241,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.545703768730164,0.694533884525299,-0.468860477209091,-0.535514771938324,0.709998667240143,0.457302868366241,-0.121377855539322,0.987778186798096,0.097783550620079,-0.822156250476837,0.554513931274414,-0.128737255930901,-0.940490007400513,0.115987449884415,0.319414436817169,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.803932726383209,0.179387986660004,0.56702047586441,-0.978504598140717,-0.204393237829208,0.0274245422333479,-0.778936147689819,-0.548393428325653,-0.304175943136215,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.121377855539322,0.987778186798096,0.097783550620079,-0.00962313264608383,0.994076430797577,0.108256317675114,-0.00238645845092833,0.970765769481659,-0.240017145872116,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.00962313264608383,0.994076430797577,0.108256317675114,0.0122653981670737,0.990436851978302,0.137420937418938,0.177071169018745,0.962892293930054,-0.203676700592041,-0.00238645845092833,0.970765769481659,-0.240017145872116,0.0122653981670737,0.990436851978302,0.137420937418938,0.063245914876461,0.992519915103912,0.104422770440578,0.444350570440292,0.854668080806732,-0.268504947423935,0.177071169018745,0.962892293930054,-0.203676700592041,0.063245914876461,0.992519915103912,0.104422770440578,0.129967212677002,0.980889797210693,0.144788861274719,0.618921399116516,0.756513297557831,-0.211244150996208,0.444350570440292,0.854668080806732,-0.268504947423935,0.129967212677002,0.980889797210693,0.144788861274719,0.267897844314575,0.917610108852386,0.293636858463287,0.687528967857361,0.7027268409729,-0.182972609996796,0.618921399116516,0.756513297557831,-0.211244150996208,0.267897844314575,0.917610108852386,0.293636858463287, -0.398748338222504,0.839199781417847,0.369788587093353,0.674415171146393,0.721393287181854,-0.157339408993721,0.687528967857361,0.7027268409729,-0.182972609996796,0.398748338222504,0.839199781417847,0.369788587093353,0.288282722234726,0.88777357339859,0.35881894826889,0.71202152967453,0.687812209129333,-0.141207948327065,0.674415171146393,0.721393287181854,-0.157339408993721,0.288282722234726,0.88777357339859,0.35881894826889,0.280293792486191,0.902267336845398,0.327641576528549,0.907970368862152,-0.418885231018066,0.0111750448122621,0.71202152967453,0.687812209129333,-0.141207948327065,0.280293792486191,0.902267336845398,0.327641576528549,0.40091934800148,0.279312282800674,0.872495532035828,0.650882303714752,-0.758415997028351,0.0340208187699318,0.907970368862152,-0.418885231018066,0.0111750448122621,0.40091934800148,0.279312282800674,0.872495532035828,0.281215906143188,-0.870656669139862,0.403577208518982,0.977952122688293,-0.207108452916145,0.0267505515366793,0.940669000148773,0.120691485702991,0.317136079072952,0.800122380256653,-0.0497160330414772,0.59777307510376,0.823051929473877,-0.0730400457978249,0.563250243663788,0.60230165719986,-0.723518788814545,-0.337273120880127,0.781899452209473,-0.546732068061829,-0.299528658390045,0.69629830121994,-0.591785550117493,0.406150937080383,0.569242238998413,-0.778901755809784,0.263202279806137,0.384255915880203,-0.842719793319702,-0.377055495977402,0.60230165719986,-0.723518788814545,-0.337273120880127,0.569242238998413,-0.778901755809784,0.263202279806137,0.396028101444244,-0.893289387226105,0.212592795491219,0.108780093491077,-0.930140674114227,-0.350721210241318,0.384255915880203,-0.842719793319702,-0.377055495977402,0.396028101444244,-0.893289387226105,0.212592795491219,0.124722667038441,-0.967377960681915,0.220508724451065,-0.13128699362278,-0.959209144115448,-0.250362604856491,0.108780093491077,-0.930140674114227,-0.350721210241318,0.124722667038441,-0.967377960681915,0.220508724451065,-0.12577448785305,-0.969340980052948,0.211090013384819,-0.345629841089249,-0.91473114490509,-0.20930090546608, --0.13128699362278,-0.959209144115448,-0.250362604856491,-0.12577448785305,-0.969340980052948,0.211090013384819,-0.229873493313789,-0.934829354286194,0.270651876926422,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.451789170503616,-0.871648609638214,-0.190039783716202,-0.254147201776505,-0.911695897579193,0.322830975055695,-0.306607842445374,-0.890947222709656,0.334969818592072,-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.306607842445374,-0.890947222709656,0.334969818592072,-0.325139492750168,-0.850846469402313,0.412728160619736,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.325139492750168,-0.850846469402313,0.412728160619736,-0.306984275579453,-0.815310060977936,0.490948140621185,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.306984275579453,-0.815310060977936,0.490948140621185,-0.280955612659454,-0.870750963687897,0.403555154800415,-0.451789170503616,-0.871648609638214,-0.190039783716202,-0.345629841089249,-0.91473114490509,-0.20930090546608,-0.229873493313789,-0.934829354286194,0.270651876926422,-0.254147201776505,-0.911695897579193,0.322830975055695,0.787477970123291,0.587750554084778,-0.185547024011612,0.528435289859772,0.652045547962189,-0.543684482574463,0.548014461994171,0.716788947582245,0.431154042482376,0.805688381195068,0.182572737336159,0.563500881195068,0.528435289859772,0.652045547962189,-0.543684482574463,0.345102220773697,0.764186024665833,-0.544907510280609,0.142034143209457,0.98800665140152,0.0605735071003437,0.548014461994171,0.716788947582245,0.431154042482376,0.940669000148773,0.120691485702991,0.317136079072952,0.787477970123291,0.587750554084778,-0.185547024011612,0.805688381195068,0.182572737336159,0.563500881195068,0.800122380256653,-0.0497160330414772,0.59777307510376,0.781899452209473,-0.546732068061829,-0.299528658390045,0.977952122688293,-0.207108452916145,0.0267505515366793, -0.823051929473877,-0.0730400457978249,0.563250243663788,0.69629830121994,-0.591785550117493,0.406150937080383,0.345102220773697,0.764186024665833,-0.544907510280609,0.151894584298134,0.909278869628906,-0.387478977441788,0.0197281949222088,0.995517432689667,0.0924965441226959,0.142034143209457,0.98800665140152,0.0605735071003437,0.151894584298134,0.909278869628906,-0.387478977441788,0.0033106142655015,0.970250010490417,-0.2420824021101,-0.0119735728949308,0.990600645542145,0.136260956525803,0.0197281949222088,0.995517432689667,0.0924965441226959,0.0033106142655015,0.970250010490417,-0.2420824021101,-0.176840782165527,0.962587714195251,-0.205310121178627,-0.0631091594696045,0.992591083049774,0.103827908635139,-0.0119735728949308,0.990600645542145,0.136260956525803,-0.176840782165527,0.962587714195251,-0.205310121178627,-0.443993210792542,0.854627668857574,-0.269223988056183,-0.129930645227432,0.980921268463135,0.144607678055763,-0.0631091594696045,0.992591083049774,0.103827908635139,-0.443993210792542,0.854627668857574,-0.269223988056183,-0.618931233882904,0.756517469882965,-0.211200311779976,-0.267864286899567,0.917622327804565,0.293628811836243,-0.129930645227432,0.980921268463135,0.144607678055763,-0.618931233882904,0.756517469882965,-0.211200311779976,-0.687529325485229,0.702727138996124,-0.182969659566879,-0.398750096559525,0.839197754859924,0.369791120290756,-0.267864286899567,0.917622327804565,0.293628811836243,-0.687529325485229,0.702727138996124,-0.182969659566879,-0.674412310123444,0.721396505832672,-0.157337516546249,-0.288278460502625,0.887776076793671,0.358816206455231,-0.398750096559525,0.839197754859924,0.369791120290756,-0.674412310123444,0.721396505832672,-0.157337516546249,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.280291855335236,0.902268290519714,0.32764059305191,-0.288278460502625,0.887776076793671,0.358816206455231,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.400918304920197,0.279313176870346,0.872495651245117, --0.280291855335236,0.902268290519714,0.32764059305191,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.280955612659454,-0.870750963687897,0.403555154800415,-0.400918304920197,0.279313176870346,0.872495651245117,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.131656393408775,-0.966851711273193,0.218778967857361,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.131656393408775,-0.966851711273193,0.218778967857361,0.128061220049858,-0.96899151802063,0.211319416761398,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.128061220049858,-0.96899151802063,0.211319416761398,0.237983629107475,-0.931620180606842,0.274677366018295,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.251219034194946,-0.908994376659393,0.33259329199791,0.29324072599411,-0.889165163040161,0.351276397705078,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.29324072599411,-0.889165163040161,0.351276397705078,0.328634530305862,-0.844697952270508,0.422474563121796,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.328634530305862,-0.844697952270508,0.422474563121796,0.309246808290482,-0.813580274581909,0.4923956990242,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.309246808290482,-0.813580274581909,0.4923956990242,0.281215906143188,-0.870656669139862,0.403577208518982,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.237983629107475,-0.931620180606842,0.274677366018295,0.251219034194946,-0.908994376659393,0.33259329199791, --0.194968432188034,-0.00419577397406101,0.980800628662109,-0.535514771938324,0.709998667240143,0.457302868366241,-0.803932726383209,0.179387986660004,0.56702047586441,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.121377855539322,0.987778186798096,0.097783550620079,-0.535514771938324,0.709998667240143,0.457302868366241,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.803932726383209,0.179387986660004,0.56702047586441,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.00962313264608383,0.994076430797577,0.108256317675114,-0.121377855539322,0.987778186798096,0.097783550620079,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.0122653981670737,0.990436851978302,0.137420937418938,-0.00962313264608383,0.994076430797577,0.108256317675114,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.063245914876461,0.992519915103912,0.104422770440578,0.0122653981670737,0.990436851978302,0.137420937418938,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.129967212677002,0.980889797210693,0.144788861274719,0.063245914876461,0.992519915103912,0.104422770440578,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.267897844314575,0.917610108852386,0.293636858463287,0.129967212677002,0.980889797210693,0.144788861274719,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.398748338222504,0.839199781417847,0.369788587093353,0.267897844314575,0.917610108852386,0.293636858463287,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.288282722234726,0.88777357339859,0.35881894826889,0.398748338222504,0.839199781417847,0.369788587093353,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.280293792486191,0.902267336845398,0.327641576528549,0.288282722234726,0.88777357339859,0.35881894826889,-0.194968432188034,-0.00419577397406101,0.980800628662109, -0.40091934800148,0.279312282800674,0.872495532035828,0.280293792486191,0.902267336845398,0.327641576528549,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.281215906143188,-0.870656669139862,0.403577208518982,0.40091934800148,0.279312282800674,0.872495532035828,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.823051929473877,-0.0730400457978249,0.563250243663788,0.800122380256653,-0.0497160330414772,0.59777307510376,0.196013137698174,-0.00617906451225281,0.980581760406494,0.569242238998413,-0.778901755809784,0.263202279806137,0.69629830121994,-0.591785550117493,0.406150937080383,0.196013137698174,-0.00617906451225281,0.980581760406494,0.396028101444244,-0.893289387226105,0.212592795491219,0.569242238998413,-0.778901755809784,0.263202279806137,0.196013137698174,-0.00617906451225281,0.980581760406494,0.124722667038441,-0.967377960681915,0.220508724451065,0.396028101444244,-0.893289387226105,0.212592795491219,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.12577448785305,-0.969340980052948,0.211090013384819,0.124722667038441,-0.967377960681915,0.220508724451065,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.229873493313789,-0.934829354286194,0.270651876926422,-0.12577448785305,-0.969340980052948,0.211090013384819,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.306607842445374,-0.890947222709656,0.334969818592072,-0.254147201776505,-0.911695897579193,0.322830975055695,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.325139492750168,-0.850846469402313,0.412728160619736,-0.306607842445374,-0.890947222709656,0.334969818592072,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.306984275579453,-0.815310060977936,0.490948140621185,-0.325139492750168,-0.850846469402313,0.412728160619736,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.280955612659454,-0.870750963687897,0.403555154800415,-0.306984275579453,-0.815310060977936,0.490948140621185,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.254147201776505,-0.911695897579193,0.322830975055695, --0.229873493313789,-0.934829354286194,0.270651876926422,0.196013137698174,-0.00617906451225281,0.980581760406494,0.805688381195068,0.182572737336159,0.563500881195068,0.548014461994171,0.716788947582245,0.431154042482376,0.196013137698174,-0.00617906451225281,0.980581760406494,0.548014461994171,0.716788947582245,0.431154042482376,0.142034143209457,0.98800665140152,0.0605735071003437,0.196013137698174,-0.00617906451225281,0.980581760406494,0.800122380256653,-0.0497160330414772,0.59777307510376,0.805688381195068,0.182572737336159,0.563500881195068,0.196013137698174,-0.00617906451225281,0.980581760406494,0.69629830121994,-0.591785550117493,0.406150937080383,0.823051929473877,-0.0730400457978249,0.563250243663788,0.196013137698174,-0.00617906451225281,0.980581760406494,0.142034143209457,0.98800665140152,0.0605735071003437,0.0197281949222088,0.995517432689667,0.0924965441226959,0.196013137698174,-0.00617906451225281,0.980581760406494,0.0197281949222088,0.995517432689667,0.0924965441226959,-0.0119735728949308,0.990600645542145,0.136260956525803,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.0119735728949308,0.990600645542145,0.136260956525803,-0.0631091594696045,0.992591083049774,0.103827908635139,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.0631091594696045,0.992591083049774,0.103827908635139,-0.129930645227432,0.980921268463135,0.144607678055763,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.129930645227432,0.980921268463135,0.144607678055763,-0.267864286899567,0.917622327804565,0.293628811836243,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.267864286899567,0.917622327804565,0.293628811836243,-0.398750096559525,0.839197754859924,0.369791120290756,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.398750096559525,0.839197754859924,0.369791120290756,-0.288278460502625,0.887776076793671,0.358816206455231,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.288278460502625,0.887776076793671,0.358816206455231,-0.280291855335236,0.902268290519714,0.32764059305191, -0.196013137698174,-0.00617906451225281,0.980581760406494,-0.280291855335236,0.902268290519714,0.32764059305191,-0.400918304920197,0.279313176870346,0.872495651245117,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.400918304920197,0.279313176870346,0.872495651245117,-0.280955612659454,-0.870750963687897,0.403555154800415,0.196013137698174,-0.00617906451225281,0.980581760406494 - } - NormalsW: *33849 { - a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, -1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - } - } - LayerElementUV: 0 { - Version: 101 - Name: "map1" - MappingInformationType: "ByPolygonVertex" - ReferenceInformationType: "IndexToDirect" - UV: *18870 { - a: 0.599494993686676,0.436589986085892,0.614665031433105,0.406969994306564,0.700070023536682,0.462534993886948,0.642899990081787,0.360805004835129,0.58271998167038,0.424589991569519,0.706595003604889,0.484149992465973,0.556320011615753,0.431515008211136,0.561424970626831,0.421719998121262,0.569755017757416,0.429755002260208,0.679275035858154,0.488074988126755,0.679740011692047,0.491369992494583,0.680209994316101,0.494664996862411,0.587324976921082,0.442880004644394,0.739920020103455,0.393550008535385,0.59512996673584,0.415060013532639,0.607424974441528,0.419450014829636,0.732299983501434,0.308129996061325,0.692245006561279,0.30460000038147,0.763355016708374,0.427450001239777,0.747439980506897,0.372229993343353,0.603460013866425,0.428020000457764,0.654365003108978,0.418534994125366,0.658910036087036,0.306659996509552,0.609740018844604,0.442539989948273,0.694530010223389,0.379530012607574,0.682950019836426,0.342485010623932,0.667275011539459,0.287304997444153,0.631789982318878,0.304084986448288,0.657729983329773,0.490940004587173,0.666370034217834,0.496740013360977,0.743385016918182,0.370539993047714,0.63808000087738,0.416860014200211,0.622004985809326,0.364969998598099,0.66347998380661,0.491165012121201,0.681609988212585,0.294649988412857,0.616739988327026,0.322064995765686,0.662365019321442,0.282389998435974,0.5918949842453,0.367579996585846,0.633109986782074,0.342965006828308,0.724184989929199,0.281295001506805,0.711144983768463,0.380315005779266,0.618605017662048,0.312254995107651,0.772655010223389,0.433299988508224,0.674305021762848,0.496825009584427,0.703999996185303,0.408275008201599,0.731855034828186,0.369029998779297,0.663810014724731,0.374199986457825,0.641730010509491,0.494769990444183,0.741490006446838,0.430130004882813,0.611050009727478,0.431710004806519,0.603044986724854,0.375789999961853,0.556789994239807,0.434920012950897,0.733325004577637,0.451119989156723,0.640169978141785,0.375910013914108,0.608235001564026,0.284965008497238,0.658580005168915,0.290885001420975,0.701049983501434, -0.299490004777908,0.620944976806641,0.458860009908676,0.663659989833832,0.46908500790596,0.664470016956329,0.433185011148453,0.587064981460571,0.384415000677109,0.621625006198883,0.378924995660782,0.744159996509552,0.460435003042221,0.628809988498688,0.392024993896484,0.669799983501434,0.306789994239807,0.710685014724731,0.365034997463226,0.685949981212616,0.377555012702942,0.722490012645721,0.441805005073547,0.745095014572144,0.396109998226166,0.689390003681183,0.323345005512238,0.615705013275146,0.476889997720718,0.661800026893616,0.359355002641678,0.621240019798279,0.392884999513626,0.663839995861053,0.447010010480881,0.654330015182495,0.404204994440079,0.694830000400543,0.314440011978149,0.672895014286041,0.40496501326561,0.649590015411377,0.29958501458168,0.61317503452301,0.392654985189438,0.665580034255981,0.321819990873337,0.671329975128174,0.321954995393753,0.637435019016266,0.391019999980927,0.637759983539581,0.403939992189407,0.701484978199005,0.366840004920959,0.762264966964722,0.377745002508163,0.675069987773895,0.289974987506866,0.616680026054382,0.473219990730286,0.669650018215179,0.433245003223419,0.590690016746521,0.315230011940002,0.674300014972687,0.468625009059906,0.718540012836456,0.45754998922348,0.766885042190552,0.444525003433228,0.571659982204437,0.370909988880157,0.679820001125336,0.314565002918243,0.77878999710083,0.383605003356934,0.658744990825653,0.298770010471344,0.670845031738281,0.341140002012253,0.704859972000122,0.42119500041008,0.613059997558594,0.36327001452446,0.696219980716705,0.447474986314774,0.62417995929718,0.344209998846054,0.724415004253387,0.301335006952286,0.703785002231598,0.346015006303787,0.66509997844696,0.419355005025864,0.670565009117126,0.314375013113022,0.726019978523254,0.31734499335289,0.614730000495911,0.480560004711151,0.591760039329529,0.463869988918304,0.736800014972687,0.386685013771057,0.647960007190704,0.306450009346008,0.615079998970032,0.291310012340546,0.59927499294281,0.300599992275238,0.658329963684082,0.3142049908638,0.730494976043701,0.28999999165535, -0.588925004005432,0.419824987649918,0.636099994182587,0.430770009756088,0.635159969329834,0.322670012712479,0.737614989280701,0.365399986505508,0.696815013885498,0.30333998799324,0.631595015525818,0.299214988946915,0.666830003261566,0.29101499915123,0.667720019817352,0.283589988946915,0.566249966621399,0.425029993057251,0.665825009346008,0.389045000076294,0.67936497926712,0.447820007801056,0.629130005836487,0.415035009384155,0.703604996204376,0.303149998188019,0.760264992713928,0.429960012435913,0.658164978027344,0.446909993886948,0.657750010490417,0.321745008230209,0.730024993419647,0.358240008354187,0.733020007610321,0.315925002098083,0.610210001468658,0.301899999380112,0.62897002696991,0.40353000164032,0.671469986438751,0.419384986162186,0.654299974441528,0.38986998796463,0.673444986343384,0.292784988880157,0.665459990501404,0.404199987649918,0.621405005455017,0.323810011148453,0.705280005931854,0.295635014772415,0.613115012645721,0.377959996461868,0.707120001316071,0.322914987802505,0.647589981555939,0.496194988489151,0.730480015277863,0.475845009088516,0.620140016078949,0.405180007219315,0.63916003704071,0.297255009412766,0.625209987163544,0.444505006074905,0.642359972000122,0.491219997406006,0.5640549659729,0.395395010709763,0.715579986572266,0.319920003414154,0.642989993095398,0.487664997577667,0.687059998512268,0.314734995365143,0.674019992351532,0.489910006523132,0.580260038375854,0.369610011577606,0.719884991645813,0.432704985141754,0.567494988441467,0.417439997196198,0.656804978847504,0.340674996376038,0.618404984474182,0.294905006885529,0.683750033378601,0.419225007295609,0.681964993476868,0.301245003938675,0.639914989471436,0.292544990777969,0.586960017681122,0.356054991483688,0.649294972419739,0.289819985628128,0.573925018310547,0.394724994897842,0.662930011749268,0.290244996547699,0.707729995250702,0.395900011062622,0.766945004463196,0.404060006141663,0.687564969062805,0.392634987831116,0.672340035438538,0.375434994697571,0.77572500705719,0.408455014228821,0.617370009422302,0.379114985466003,0.714680016040802, -0.294120013713837,0.593670010566711,0.357185006141663,0.639980018138885,0.305900007486343,0.666885018348694,0.49379500746727,0.71160501241684,0.395599991083145,0.648900032043457,0.468244999647141,0.728259980678558,0.472079992294312,0.700540006160736,0.434334993362427,0.734920024871826,0.336329996585846,0.651219964027405,0.292715013027191,0.636245012283325,0.295780003070831,0.657124996185303,0.493815004825592,0.717575013637543,0.340595006942749,0.691510021686554,0.344190001487732,0.643034994602203,0.467085003852844,0.667829990386963,0.44710499048233,0.552145004272461,0.375220000743866,0.556784987449646,0.398470014333725,0.737214982509613,0.361065000295639,0.644469976425171,0.321960002183914,0.643530011177063,0.431769996881485,0.68648499250412,0.433050006628036,0.601729989051819,0.391739994287491,0.662665009498596,0.493930011987686,0.679194986820221,0.296369999647141,0.713824987411499,0.30265000462532,0.626950025558472,0.30265000462532,0.647364974021912,0.286929994821548,0.593044996261597,0.460020005702972,0.771479964256287,0.436500012874603,0.719569981098175,0.361270010471344,0.592114984989166,0.299650013446808,0.629074990749359,0.313769996166229,0.664080023765564,0.298465013504028,0.674319982528687,0.390545010566711,0.575960040092468,0.370260000228882,0.64621502161026,0.3142049908638,0.679165005683899,0.433279991149902,0.71553498506546,0.285594999790192,0.619589984416962,0.344489991664886,0.684984982013702,0.29763999581337,0.667609989643097,0.468980014324188,0.726034998893738,0.46832001209259,0.62417995929718,0.313230007886887,0.616964995861053,0.393054991960526,0.692274987697601,0.299834996461868,0.684334993362427,0.362480014562607,0.702099978923798,0.324759989976883,0.73545503616333,0.424789994955063,0.578970015048981,0.392789989709854,0.722609996795654,0.394775003194809,0.687735021114349,0.296324998140335,0.681559979915619,0.322490006685257,0.643074989318848,0.446505010128021,0.626354992389679,0.323455005884171,0.736814975738525,0.356734991073608,0.758159995079041,0.399670004844666,0.543675005435944,0.377090007066727, -0.729420006275177,0.279670000076294,0.69362998008728,0.365034997463226,0.648824989795685,0.48981499671936,0.661849975585938,0.49669998884201,0.708904981613159,0.343975007534027,0.55535501241684,0.425999999046326,0.598430037498474,0.403400003910065,0.702314972877502,0.381099998950958,0.69945502281189,0.345560014247894,0.725215017795563,0.309340000152588,0.697420001029968,0.324279993772507,0.591400027275085,0.307440012693405,0.592944979667664,0.289294987916946,0.612365007400513,0.420879989862442,0.694514989852905,0.406150013208389,0.61489999294281,0.342664986848831,0.583209991455078,0.367164999246597,0.751495003700256,0.373919993638992,0.645144999027252,0.296315014362335,0.705365002155304,0.313035011291504,0.695429980754852,0.394019991159439,0.714704990386963,0.311284989118576,0.586165010929108,0.364719986915588,0.731575012207031,0.300334990024567,0.635474979877472,0.300669997930527,0.590115010738373,0.377974987030029,0.770529985427856,0.380674988031387,0.754055023193359,0.421600013971329,0.70525997877121,0.480874985456467,0.724300026893616,0.291314989328384,0.714444994926453,0.409604996442795,0.617774963378906,0.296880006790161,0.740499973297119,0.367969989776611,0.61904501914978,0.417474985122681,0.620469987392426,0.302450001239777,0.60139000415802,0.451279997825623,0.665405035018921,0.314254999160767,0.684729993343353,0.306124985218048,0.629935026168823,0.377640008926392,0.643684983253479,0.341380000114441,0.754189968109131,0.437325000762939,0.609295010566711,0.310499995946884,0.642565011978149,0.301104992628098,0.604359984397888,0.359840005636215,0.642529964447021,0.294429987668991,0.67576003074646,0.299715012311935,0.670355021953583,0.360325008630753,0.622680008411407,0.298774987459183,0.549515008926392,0.401544988155365,0.648975014686584,0.446675002574921,0.584015011787415,0.390855014324188,0.656265020370483,0.432725012302399,0.693599998950958,0.418285012245178,0.599259972572327,0.290589988231659,0.586560010910034,0.360385000705719,0.588824987411499,0.335640013217926,0.595674991607666,0.336870014667511,0.70660001039505, -0.381590008735657,0.657665014266968,0.287180006504059,0.593780040740967,0.278934985399246,0.703925013542175,0.477595001459122,0.711040019989014,0.446774989366531,0.66523003578186,0.306690007448196,0.69945502281189,0.314049988985062,0.678080022335052,0.30663999915123,0.608375012874603,0.319094985723495,0.679319977760315,0.467945009469986,0.711614966392517,0.435815006494522,0.728025019168854,0.337794989347458,0.733680009841919,0.379824995994568,0.709959983825684,0.410380005836487,0.712185025215149,0.42485499382019,0.663689970970154,0.340590000152588,0.575155019760132,0.449169993400574,0.657945036888123,0.468924999237061,0.674574971199036,0.447335004806519,0.721090018749237,0.378019988536835,0.703140020370483,0.395359992980957,0.617779970169067,0.365170001983643,0.667394995689392,0.490855008363724,0.590474963188171,0.467720001935959,0.637570023536682,0.314285010099411,0.685654997825623,0.405930012464523,0.706155002117157,0.297549992799759,0.656520009040833,0.496690005064011,0.597679972648621,0.316554993391037,0.688614964485168,0.301120012998581,0.610300004482269,0.406055003404617,0.631060004234314,0.363254994153976,0.655860006809235,0.359609991312027,0.606364965438843,0.339469999074936,0.708705008029938,0.291949987411499,0.655080020427704,0.37474000453949,0.674160003662109,0.493369996547699,0.749045014381409,0.423420011997223,0.676689982414246,0.287164986133575,0.68402498960495,0.292930006980896,0.560615003108978,0.373349994421005,0.598479986190796,0.308575004339218,0.656754970550537,0.283470004796982,0.622125029563904,0.430990010499954,0.71728503704071,0.423604995012283,0.599250018596649,0.280575007200241,0.726014971733093,0.407115012407303,0.648204982280731,0.493005007505417,0.609225034713745,0.293435007333755,0.662649989128113,0.286314994096756,0.6683149933815,0.298904985189438,0.750270009040833,0.398669987916946,0.705474972724915,0.36727499961853,0.729414999485016,0.419454991817474,0.576184988021851,0.418540000915527,0.402938723564148,0.0219092443585396,0.403812795877457,0.0277214460074902,0.408011436462402,0.0230553075671196, -0.408095359802246,0.0172273479402065,0.414887964725494,0.0202267356216908,0.41511669754982,0.0115994708612561,0.424735695123672,0.0204264856874943,0.425503522157669,0.00795878376811743,0.43552303314209,0.0224140696227551,0.437830895185471,0.00482531217858195,0.446914374828339,0.0276715345680714,0.449745804071426,0.00661841919645667,0.457981318235397,0.0346410945057869,0.461966067552567,0.0144519936293364,0.46610763669014,0.0421995669603348,0.471010684967041,0.0227081291377544,0.47228878736496,0.0496696308255196,0.479503929615021,0.0331420823931694,0.477875888347626,0.0579458326101303,0.485966920852661,0.043541394174099,0.483209908008575,0.06786098331213,0.491942018270493,0.057019054889679,0.488052099943161,0.079984724521637,0.49472314119339,0.073886975646019,0.490634858608246,0.0894224345684052,0.494954824447632,0.0846675559878349,0.491060465574265,0.100401788949966,0.494429379701614,0.0964860394597054,0.485964328050613,0.0983584895730019,0.48801577091217,0.104184702038765,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629,0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343,0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.433449387550354,0.0440797172486782,0.434733867645264,0.0469887256622314,0.432869553565979,0.0544224828481674,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734, -0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536,0.344609946012497,0.03502357006073,0.341523259878159,0.0291850678622723,0.343071222305298,0.0244707502424717,0.435818761587143,0.0491218417882919,0.433857172727585,0.0591713413596153,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.402938723564148,0.0219092443585396,0.408095359802246,0.0172273479402065,0.408011436462402,0.0230553075671196,0.403812795877457,0.0277214460074902,0.41511669754982,0.0115994708612561,0.414887964725494,0.0202267356216908,0.425503522157669,0.00795878376811743,0.424735695123672,0.0204264856874943,0.437830895185471,0.00482531217858195,0.43552303314209,0.0224140696227551,0.449745804071426,0.00661841919645667,0.446914374828339,0.0276715345680714,0.461966067552567,0.0144519936293364,0.457981318235397,0.0346410945057869,0.471010684967041,0.0227081291377544,0.46610763669014,0.0421995669603348,0.479503929615021,0.0331420823931694,0.47228878736496,0.0496696308255196,0.485966920852661,0.043541394174099,0.477875888347626,0.0579458326101303,0.491942018270493,0.057019054889679,0.483209908008575,0.06786098331213,0.49472314119339,0.073886975646019,0.488052099943161,0.079984724521637,0.494954824447632,0.0846675559878349,0.490634858608246,0.0894224345684052,0.494429379701614,0.0964860394597054,0.491060465574265,0.100401788949966,0.48801577091217,0.104184702038765,0.485964328050613,0.0983584895730019,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629, -0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343,0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.432869553565979,0.0544224828481674,0.434733867645264,0.0469887256622314,0.433449387550354,0.0440797172486782,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734,0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536,0.344609946012497,0.03502357006073,0.343071222305298,0.0244707502424717,0.341523259878159,0.0291850678622723,0.433857172727585,0.0591713413596153,0.435818761587143,0.0491218417882919,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.402938723564148,0.0219092443585396,0.403812795877457,0.0277214460074902,0.408011436462402,0.0230553075671196,0.408095359802246,0.0172273479402065,0.414887964725494,0.0202267356216908,0.41511669754982,0.0115994708612561,0.424735695123672,0.0204264856874943,0.425503522157669,0.00795878376811743,0.43552303314209,0.0224140696227551, -0.437830895185471,0.00482531217858195,0.446914374828339,0.0276715345680714,0.449745804071426,0.00661841919645667,0.457981318235397,0.0346410945057869,0.461966067552567,0.0144519936293364,0.46610763669014,0.0421995669603348,0.471010684967041,0.0227081291377544,0.47228878736496,0.0496696308255196,0.479503929615021,0.0331420823931694,0.477875888347626,0.0579458326101303,0.485966920852661,0.043541394174099,0.483209908008575,0.06786098331213,0.491942018270493,0.057019054889679,0.488052099943161,0.079984724521637,0.49472314119339,0.073886975646019,0.490634858608246,0.0894224345684052,0.494954824447632,0.0846675559878349,0.491060465574265,0.100401788949966,0.494429379701614,0.0964860394597054,0.485964328050613,0.0983584895730019,0.48801577091217,0.104184702038765,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629,0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343,0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.433449387550354,0.0440797172486782,0.434733867645264,0.0469887256622314,0.432869553565979,0.0544224828481674,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734,0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536, -0.344609946012497,0.03502357006073,0.341523259878159,0.0291850678622723,0.343071222305298,0.0244707502424717,0.435818761587143,0.0491218417882919,0.433857172727585,0.0591713413596153,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.402938723564148,0.0219092443585396,0.408095359802246,0.0172273479402065,0.408011436462402,0.0230553075671196,0.403812795877457,0.0277214460074902,0.41511669754982,0.0115994708612561,0.414887964725494,0.0202267356216908,0.425503522157669,0.00795878376811743,0.424735695123672,0.0204264856874943,0.437830895185471,0.00482531217858195,0.43552303314209,0.0224140696227551,0.449745804071426,0.00661841919645667,0.446914374828339,0.0276715345680714,0.461966067552567,0.0144519936293364,0.457981318235397,0.0346410945057869,0.471010684967041,0.0227081291377544,0.46610763669014,0.0421995669603348,0.479503929615021,0.0331420823931694,0.47228878736496,0.0496696308255196,0.485966920852661,0.043541394174099,0.477875888347626,0.0579458326101303,0.491942018270493,0.057019054889679,0.483209908008575,0.06786098331213,0.49472314119339,0.073886975646019,0.488052099943161,0.079984724521637,0.494954824447632,0.0846675559878349,0.490634858608246,0.0894224345684052,0.494429379701614,0.0964860394597054,0.491060465574265,0.100401788949966,0.48801577091217,0.104184702038765,0.485964328050613,0.0983584895730019,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629,0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343, -0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.432869553565979,0.0544224828481674,0.434733867645264,0.0469887256622314,0.433449387550354,0.0440797172486782,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734,0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536,0.344609946012497,0.03502357006073,0.343071222305298,0.0244707502424717,0.341523259878159,0.0291850678622723,0.433857172727585,0.0591713413596153,0.435818761587143,0.0491218417882919,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.812229990959167,0.096900001168251,0.804239988327026,0.0964849963784218,0.803764998912811,0.0804449990391731,0.811839997768402,0.0805099979043007,0.82022500038147,0.0973199978470802,0.819914996623993,0.0805699974298477,0.818165004253387,0.107299998402596,0.811434984207153,0.106370002031326,0.804710030555725,0.105439998209476,0.877550005912781,0.0953850001096725,0.872815012931824,0.094760000705719,0.87348997592926,0.080875001847744,0.878000020980835,0.080935001373291,0.882290005683899,0.0960099995136261,0.882510006427765,0.0809900015592575,0.881919980049133, -0.105195000767708,0.876950025558472,0.103814996778965,0.871980011463165,0.102435000240803,0.926169991493225,0.0947699993848801,0.922729969024658,0.0944000035524368,0.923014998435974,0.0799399986863136,0.926310002803802,0.0805699974298477,0.929615020751953,0.0951400026679039,0.92960000038147,0.0812000036239624,0.929175019264221,0.104354999959469,0.925650000572205,0.103780001401901,0.922124981880188,0.103205002844334,0.96978497505188,0.105855002999306,0.967664957046509,0.101680003106594,0.967615008354187,0.100259996950626,0.969835042953491,0.103639997541904,0.965544998645782,0.0974999964237213,0.965394973754883,0.0968749970197678,0.964784979820251,0.093249998986721,0.967404961585999,0.0936549976468086,0.97002500295639,0.0940599963068962,0.841094970703125,0.0635349974036217,0.846119999885559,0.064410001039505,0.846065044403076,0.0674699991941452,0.840839982032776,0.0667399987578392,0.851150035858154,0.0652799978852272,0.851284980773926,0.0681950002908707,0.851770043373108,0.0809149965643883,0.846439957618713,0.0803550034761429,0.841109991073608,0.0797950029373169,0.513844966888428,0.216784998774529,0.51385498046875,0.214454993605614,0.517204999923706,0.21713000535965,0.518499970436096,0.219449996948242,0.513870000839233,0.21212500333786,0.515915036201477,0.214809998869896,0.508435010910034,0.195944994688034,0.508435010910034,0.192855000495911,0.513830006122589,0.192839995026588,0.513830006122589,0.195299997925758,0.513830006122589,0.197760000824928,0.508435010910034,0.199039995670319,0.900215029716492,0.0685850009322166,0.9028599858284,0.0676899999380112,0.902880012989044,0.0699549987912178,0.899955034255981,0.0704400017857552,0.905510008335114,0.0667949989438057,0.905804991722107,0.0694750025868416,0.906440019607544,0.0798449963331223,0.902915000915527,0.0796400010585785,0.89938497543335,0.0794349983334541,0.513830006122589,0.249160006642342,0.513159990310669,0.246765002608299,0.517235040664673,0.247490003705025,0.519805014133453,0.250544995069504,0.512495040893555,0.244375005364418,0.514660000801086,0.244434997439384, -0.508435010910034,0.233380004763603,0.508435010910034,0.231480002403259,0.513759970664978,0.229285001754761,0.513774991035461,0.231189996004105,0.513790011405945,0.23309999704361,0.508435010910034,0.235280007123947,0.94648003578186,0.0701349973678589,0.949315011501312,0.0691599994897842,0.949299991130829,0.0717649981379509,0.946280002593994,0.0722099989652634,0.952154994010925,0.0681900009512901,0.952319979667664,0.0713149979710579,0.952894985675812,0.0814850032329559,0.949380040168762,0.080985002219677,0.945870041847229,0.080485001206398,0.513805031776428,0.292760014533997,0.513844966888428,0.288314998149872,0.516420006752014,0.292185008525848,0.517865002155304,0.297919988632202,0.513885021209717,0.283870011568069,0.514975011348724,0.286449998617172,0.508435010910034,0.268005013465881,0.508435010910034,0.265554994344711,0.513814985752106,0.264064997434616,0.513819992542267,0.266544997692108,0.513830006122589,0.2690249979496,0.508435010910034,0.27046000957489,0.978529989719391,0.0814900025725365,0.981289982795715,0.0811149999499321,0.98165500164032,0.0939399972558022,0.978614985942841,0.0949449986219406,0.975769996643066,0.0818599984049797,0.9755699634552,0.0959499999880791,0.976014971733093,0.0726549997925758,0.978644967079163,0.0729900002479553,0.981274962425232,0.0733200013637543,0.521664977073669,0.33636999130249,0.519865036010742,0.333689987659454,0.521090030670166,0.333745002746582,0.522899985313416,0.336380004882813,0.518064975738525,0.33101499080658,0.519275009632111,0.331115007400513,0.513650000095367,0.313654989004135,0.513674974441528,0.319144994020462,0.508435010910034,0.319059997797012,0.508435010910034,0.313594996929169,0.508435010910034,0.308135002851486,0.513625025749207,0.308165013790131,0.803930044174194,0.0654750019311905,0.811839997768402,0.0656950026750565,0.811779975891113,0.0687000006437302,0.80374002456665,0.0685900002717972,0.819754958152771,0.0659150034189224,0.819819986820221,0.0688150003552437,0.825994968414307,0.0653949975967407,0.829069972038269,0.0630050003528595,0.829874992370605,0.0664649978280067, -0.826879978179932,0.0681499987840652,0.832144975662231,0.060614999383688,0.832870006561279,0.0647749975323677,0.834394991397858,0.0790150016546249,0.831719994544983,0.0795449987053871,0.829039990901947,0.0800699964165688,0.832370042800903,0.0940200015902519,0.82950496673584,0.0962250009179115,0.835229992866516,0.0918200016021729,0.835260033607483,0.0952050015330315,0.83175003528595,0.100194998085499,0.828240036964417,0.105185002088547,0.874899983406067,0.0681499987840652,0.878674983978271,0.0685800015926361,0.8784099817276,0.0707100033760071,0.874334990978241,0.0703800022602081,0.882449984550476,0.0690049976110458,0.882490038871765,0.0710399970412254,0.887295007705688,0.068060003221035,0.890205025672913,0.0661050006747246,0.890484988689423,0.0688749998807907,0.887789964675903,0.0702050030231476,0.893110036849976,0.0641549974679947,0.893175005912781,0.0675449967384338,0.893424987792969,0.0803550034761429,0.891165018081665,0.0806149989366531,0.8889000415802,0.080875001847744,0.891929984092712,0.0935249999165535,0.890105009078979,0.0941200032830238,0.893759965896606,0.0929299965500832,0.893929958343506,0.0970349982380867,0.892410039901733,0.0987650007009506,0.89088499546051,0.100489996373653,0.923869967460632,0.0678000003099442,0.926589965820313,0.0686199963092804,0.926344990730286,0.0709550008177757,0.923395037651062,0.0700350031256676,0.929309964179993,0.0694399997591972,0.929295003414154,0.0718749985098839,0.936604976654053,0.0698200017213821,0.939045011997223,0.0680750012397766,0.939170002937317,0.0705099999904633,0.936930000782013,0.0719899982213974,0.941480040550232,0.0663300007581711,0.941410005092621,0.0690300017595291,0.941390037536621,0.0811349973082542,0.939504981040955,0.0811450034379959,0.937624990940094,0.081155002117157,0.939985036849976,0.0936100035905838,0.938239991664886,0.09408999979496,0.94173002243042,0.093129999935627,0.942090034484863,0.0962599962949753,0.940325021743774,0.0991349965333939,0.938555002212524,0.102009996771812,0.967314958572388,0.0813599973917007,0.970229983329773,0.0813150033354759, -0.964399993419647,0.0814049988985062,0.964529991149902,0.0700350031256676,0.967519998550415,0.0717699974775314,0.970515012741089,0.0735049992799759,0.970739960670471,0.0710799992084503,0.973444998264313,0.0701450034976006,0.973264992237091,0.0730800032615662,0.976150035858154,0.0692100003361702,0.97299998998642,0.0815899968147278,0.972800016403198,0.0950049981474876,0.97539496421814,0.106885001063347,0.972615003585815,0.105259999632835,0.860059976577759,0.065420001745224,0.862985014915466,0.0639299973845482,0.863304972648621,0.0673149973154068,0.860635042190552,0.0682699978351593,0.865909993648529,0.0624350011348724,0.865975022315979,0.0663599967956543,0.866605043411255,0.0800449997186661,0.864324986934662,0.0804999992251396,0.862044990062714,0.0809549987316132,0.865854978561401,0.094990000128746,0.864094972610474,0.096160002052784,0.867609977722168,0.0938149988651276,0.868160009384155,0.0988949984312057,0.866890013217926,0.101039998233318,0.865615010261536,0.10317999869585,0.848520040512085,0.0973149985074997,0.842469990253448,0.0959649980068207,0.854575037956238,0.0986699983477592,0.857235014438629,0.1083599999547,0.850404977798462,0.106114998459816,0.843575000762939,0.103869996964931,0.508435010910034,0.216305002570152,0.508435010910034,0.214094996452332,0.508435010910034,0.218510001897812,0.508435010910034,0.207524999976158,0.508435010910034,0.205349996685982,0.51383501291275,0.202769994735718,0.513844966888428,0.205094993114471,0.51385498046875,0.207420006394386,0.508435010910034,0.209700003266335,0.520349979400635,0.205229997634888,0.518209993839264,0.207609996199608,0.52249002456665,0.202855005860329,0.508404970169067,0.18299999833107,0.508435010910034,0.18155500292778,0.513830006122589,0.18155500292778,0.513819992542267,0.183005005121231,0.508404970169067,0.185969993472099,0.513819992542267,0.185980007052422,0.519474983215332,0.183025002479553,0.520084977149963,0.18155500292778,0.522125005722046,0.18155500292778,0.521224975585938,0.183019995689392,0.51942503452301,0.185949996113777,0.518164992332458,0.186014994978905, -0.516955018043518,0.195849999785423,0.517454981803894,0.198789998888969,0.516454994678497,0.192904993891716,0.910444974899292,0.066100001335144,0.914080023765564,0.0650599971413612,0.914415001869202,0.0677450001239777,0.911239981651306,0.068680003285408,0.917715013027191,0.0640249997377396,0.917595028877258,0.0668099969625473,0.91777503490448,0.0802949965000153,0.915274977684021,0.0798700004816055,0.912779986858368,0.0794449970126152,0.916000008583069,0.0925349965691566,0.913830041885376,0.0931750014424324,0.918164968490601,0.091889999806881,0.918274998664856,0.0929900035262108,0.916314959526062,0.0966650024056435,0.914350032806396,0.100340001285076,0.902424991130829,0.0953100025653839,0.898294985294342,0.0930450037121773,0.906554996967316,0.09757000207901,0.906229972839355,0.109729997813702,0.901679992675781,0.105669997632504,0.897125005722046,0.101604998111725,0.508435010910034,0.247940003871918,0.508435010910034,0.245794996619225,0.508435010910034,0.250079989433289,0.508435010910034,0.240700006484985,0.508435010910034,0.238995000720024,0.513814985752106,0.23691500723362,0.513819992542267,0.23870000243187,0.513819992542267,0.24049000442028,0.508435010910034,0.242404997348785,0.520274996757507,0.238010004162788,0.519005000591278,0.239109992980957,0.521544992923737,0.236904993653297,0.508435010910034,0.225264996290207,0.508435010910034,0.222929999232292,0.513819992542267,0.221235007047653,0.513805031776428,0.223269999027252,0.513790011405945,0.225299999117851,0.508435010910034,0.227605000138283,0.519649982452393,0.222499996423721,0.518635034561157,0.223914995789528,0.520664989948273,0.221090003848076,0.518535017967224,0.232115000486374,0.519675016403198,0.234935000538826,0.51739501953125,0.229289993643761,0.959370017051697,0.0689499974250793,0.96197497844696,0.0682249963283539,0.96212500333786,0.0708350017666817,0.959720015525818,0.0716399997472763,0.964579999446869,0.0675050020217896,0.96220999956131,0.0814799964427948,0.960020005702972,0.0815500020980835,0.962584972381592,0.0944250002503395,0.960384964942932,0.095600001513958, -0.963135004043579,0.100649997591972,0.960880041122437,0.104429997503757,0.949249982833862,0.0958449989557266,0.945259988307953,0.093860000371933,0.953240036964417,0.0978299975395203,0.953374981880188,0.109624996781349,0.94897997379303,0.106509998440742,0.944584965705872,0.103399999439716,0.508435010910034,0.288765013217926,0.508435010910034,0.284664988517761,0.508435010910034,0.292865008115768,0.508435010910034,0.277619987726212,0.508435010910034,0.275310009717941,0.513844966888428,0.27395498752594,0.51385498046875,0.276394993066788,0.513870000839233,0.278834998607635,0.508435010910034,0.279929995536804,0.520159959793091,0.277384996414185,0.518195033073425,0.278659999370575,0.522125005722046,0.276115000247955,0.508435010910034,0.257454991340637,0.508435010910034,0.254819989204407,0.513819992542267,0.254065006971359,0.513819992542267,0.256550014019012,0.513819992542267,0.259030014276505,0.508435010910034,0.260089993476868,0.521044969558716,0.255825012922287,0.518370032310486,0.257719993591309,0.523720026016235,0.253924995660782,0.518305003643036,0.26868999004364,0.51885998249054,0.273245006799698,0.517750024795532,0.264135003089905,0.983214974403381,0.0819049999117851,0.985139966011047,0.0826949998736382,0.984609961509705,0.0954850018024445,0.983134984970093,0.0947149991989136,0.983464956283569,0.0707800015807152,0.985659956932068,0.0682400017976761,0.984835028648376,0.0987249985337257,0.983479976654053,0.101125001907349,0.982129991054535,0.103529997169971,0.982244968414307,0.105784997344017,0.978775024414063,0.107639998197556,0.97876501083374,0.105204999446869,0.97530996799469,0.109494999051094,0.515390038490295,0.334719985723495,0.517040014266968,0.338330000638962,0.513715028762817,0.340404987335205,0.511075019836426,0.335610002279282,0.508435010910034,0.330814987421036,0.513740003108978,0.331115007400513,0.508435010910034,0.324934989213943,0.513710021972656,0.325129985809326,0.517235040664673,0.325085014104843,0.51639997959137,0.319160014390945,0.508435010910034,0.304984986782074,0.513674974441528,0.305364996194839, -0.508435010910034,0.301829993724823,0.513729989528656,0.302565008401871,0.520349979400635,0.305285006761551,0.517955005168915,0.308279991149902,0.522740006446838,0.302289992570877,0.519129991531372,0.308369994163513,0.518149971961975,0.31378498673439,0.5171799659729,0.313719987869263,0.517165005207062,0.319195002317429,0.793545007705688,0.0676150023937225,0.796005010604858,0.0680800005793571,0.795949995517731,0.0807449966669083,0.793545007705688,0.0810249969363213,0.793545007705688,0.0633300021290779,0.796079993247986,0.0643950030207634,0.801270008087158,0.0654650032520294,0.801100015640259,0.0685650035738945,0.80105996131897,0.0804549977183342,0.513830006122589,0.190170004963875,0.508435010910034,0.190174996852875,0.508435010910034,0.1875,0.513830006122589,0.187505006790161,0.518530011177063,0.18741500377655,0.517875015735626,0.190109997987747,0.516960024833679,0.19021999835968,0.517470002174377,0.187529996037483,0.517215013504028,0.192809998989105,0.793560028076172,0.0943299978971481,0.796030044555664,0.0946049988269806,0.796254992485046,0.100934997200966,0.793570041656494,0.0996600016951561,0.801824986934662,0.103825002908707,0.801370024681091,0.0956849977374077,0.51383501291275,0.200265005230904,0.508435010910034,0.202195003628731,0.824479997158051,0.0803200006484985,0.824864983558655,0.0967700034379959,0.823350012302399,0.0684849992394447,0.518489956855774,0.198935002088547,0.521719992160797,0.200870007276535,0.519969999790192,0.200819998979568,0.524955034255981,0.202800005674362,0.827785015106201,0.107160001993179,0.821810007095337,0.108280003070831,0.823199987411499,0.106245003640652,0.815829992294312,0.109394997358322,0.837754964828491,0.0794050022959709,0.838850021362305,0.0938950031995773,0.836854994297028,0.0657550022006035,0.513859987258911,0.209769994020462,0.508435010910034,0.211895003914833,0.843845009803772,0.105460003018379,0.839550018310547,0.100660003721714,0.839419960975647,0.0995350033044815,0.835250020027161,0.0958599969744682,0.519469976425171,0.207524999976158,0.518139958381653,0.211060002446175, -0.517060041427612,0.211209997534752,0.516815006732941,0.214595004916191,0.51383501291275,0.21900999546051,0.508435010910034,0.220719993114471,0.856909990310669,0.080935001373291,0.859335005283356,0.0974150002002716,0.855960011482239,0.0682350024580956,0.865925014019012,0.104835003614426,0.861685037612915,0.107469998300076,0.861425042152405,0.105769999325275,0.857445001602173,0.110105000436306,0.519824981689453,0.220050007104874,0.521214962005615,0.220565006136894,0.519580006599426,0.220269992947578,0.522605001926422,0.221080005168915,0.870050013065338,0.0804599970579147,0.870214998722076,0.0942900031805038,0.870154976844788,0.0683699995279312,0.513774991035461,0.227294996380806,0.508435010910034,0.229544997215271,0.520015001296997,0.223309993743896,0.519225001335144,0.226160004734993,0.518015027046204,0.226600006222725,0.51842999458313,0.229010000824928,0.871540009975433,0.104500003159046,0.8699049949646,0.102229997515678,0.870069980621338,0.100665003061295,0.868270039558411,0.0999649986624718,0.513805031776428,0.235005006194115,0.508435010910034,0.237139999866486,0.88570499420166,0.080935001373291,0.886195003986359,0.0950649976730347,0.885140001773834,0.0706200003623962,0.521360039710999,0.235369995236397,0.522549986839294,0.236139997839928,0.520609974861145,0.235919997096062,0.523739993572235,0.236904993653297,0.891080021858215,0.10215499997139,0.886415004730225,0.104719996452332,0.886399984359741,0.102844998240471,0.881749987602234,0.107280001044273,0.896404981613159,0.0798949971795082,0.896025002002716,0.0929900035262108,0.896564960479736,0.0689899995923042,0.513159990310669,0.242434993386269,0.508435010910034,0.244100004434586,0.896735012531281,0.103694997727871,0.895344972610474,0.100840002298355,0.895524978637695,0.0993200019001961,0.893954992294312,0.0979800000786781,0.520475029945374,0.238529995083809,0.518139958381653,0.241384997963905,0.516829967498779,0.241775006055832,0.515805006027222,0.244240000844002,0.513824999332428,0.25161001086235,0.508435010910034,0.252449989318848,0.909610033035278,0.079645000398159, -0.910194993019104,0.0953750014305115,0.908524990081787,0.0690750032663345,0.914555013179779,0.101954996585846,0.910344958305359,0.10690999776125,0.910290002822876,0.105034999549389,0.906134963035583,0.111859999597073,0.521465003490448,0.250775009393692,0.523975014686584,0.252254992723465,0.521759986877441,0.252234995365143,0.526479959487915,0.25373500585556,0.920395016670227,0.0801199972629547,0.92044997215271,0.0931449979543686,0.92049503326416,0.0684249997138977,0.513819992542267,0.261550009250641,0.508435010910034,0.262825012207031,0.519630014896393,0.257225006818771,0.519245028495789,0.260630011558533,0.518059968948364,0.260924994945526,0.51885998249054,0.264034986495972,0.921905040740967,0.105219997465611,0.92010498046875,0.0992050021886826,0.920199990272522,0.0980999991297722,0.918300032615662,0.093189999461174,0.51383501291275,0.271490007638931,0.508435010910034,0.272884994745255,0.933609962463379,0.0811799988150597,0.933925032615662,0.0946149975061417,0.933115005493164,0.0719299986958504,0.520305037498474,0.2742800116539,0.522379994392395,0.275415003299713,0.520489990711212,0.274679988622665,0.5244500041008,0.276549994945526,0.938624978065491,0.103995002806187,0.933835029602051,0.105259999632835,0.933865010738373,0.103184998035431,0.929044961929321,0.106524996459484,0.94362998008728,0.0808100029826164,0.943495035171509,0.0934949964284897,0.94384503364563,0.0706200003623962,0.513875007629395,0.281354993581772,0.508435010910034,0.282294988632202,0.944310009479523,0.105755001306534,0.943230032920837,0.101279996335506,0.943340003490448,0.0998300015926361,0.942149996757507,0.0967999994754791,0.519340038299561,0.278470009565353,0.517504990100861,0.28277999162674,0.516584992408752,0.282555013895035,0.515670001506805,0.287090003490448,0.5137699842453,0.297659993171692,0.508435010910034,0.297349989414215,0.956454992294312,0.0815149992704391,0.956815004348755,0.0967150032520294,0.956019997596741,0.0714799985289574,0.960950016975403,0.106435000896454,0.957260012626648,0.109274998307228,0.957125008106232,0.107024997472763, -0.953565001487732,0.112109996378422,0.518875002861023,0.297580003738403,0.521749973297119,0.299924999475479,0.520305037498474,0.300105005502701,0.52462500333786,0.302264988422394,0.981269955635071,0.0710199996829033,0.983449995517731,0.0675399973988533,0.985630035400391,0.0640600025653839,0.836619973182678,0.0620750002563,0.855605006217957,0.0653500035405159,0.822875022888184,0.0656550005078316,0.870404958724976,0.0652950033545494,0.884874999523163,0.0685350000858307,0.896659970283508,0.066370002925396,0.9079749584198,0.0664450004696846,0.92079496383667,0.0659099966287613,0.932960033416748,0.0696299970149994,0.943979978561401,0.068230003118515,0.955765008926392,0.068570002913475,0.967660009860992,0.0692899972200394,0.978709995746613,0.0701150000095367,0.80859500169754,0.0222050007432699,0.814445018768311,0.0215799994766712,0.814854979515076,0.0495649985969067,0.807469964027405,0.0496699996292591,0.873365044593811,0.0212799999862909,0.878054976463318,0.0207749996334314,0.876914978027344,0.0481700003147125,0.872385025024414,0.048930000513792,0.926620006561279,0.0233800001442432,0.930005013942719,0.0230749994516373,0.928099989891052,0.0463699996471405,0.924885034561157,0.0472100004553795,0.970219969749451,0.0186299998313189,0.972465038299561,0.0155250001698732,0.970860004425049,0.0234999991953373,0.969259977340698,0.0226700007915497,0.97470498085022,0.012419999577105,0.972460031509399,0.0243299994617701,0.836035013198853,0.0573799982666969,0.836329996585846,0.0533449985086918,0.842290043830872,0.0531600005924702,0.84197998046875,0.0572649985551834,0.836629986763,0.0493150018155575,0.842599987983704,0.0490599982440472,0.848569989204407,0.0488049983978271,0.848245024681091,0.0529749989509583,0.847920000553131,0.0571499988436699,0.876235008239746,0.377559989690781,0.877315044403076,0.377855002880096,0.878520011901855,0.375950008630753,0.876754999160767,0.376255005598068,0.878394961357117,0.37814998626709,0.880285024642944,0.375640004873276,0.860724985599518,0.376484990119934,0.860724985599518,0.377404987812042,0.861530005931854, -0.377395004034042,0.8612300157547,0.376489996910095,0.860729992389679,0.37832498550415,0.86183500289917,0.37830001115799,0.864024996757507,0.378259986639023,0.86312997341156,0.377389997243881,0.862239956855774,0.376515001058578,0.895680010318756,0.0520300008356571,0.895660042762756,0.0489749982953072,0.899150013923645,0.0487949997186661,0.899024963378906,0.0517800003290176,0.895635008811951,0.0459199994802475,0.8992800116539,0.0458149984478951,0.902920007705688,0.0457150004804134,0.902644991874695,0.0486200004816055,0.90236496925354,0.0515250004827976,0.890235006809235,0.386319994926453,0.891290009021759,0.387124985456467,0.892804980278015,0.384350001811981,0.891425013542175,0.384389996528625,0.892345011234283,0.387930005788803,0.8941850066185,0.384305000305176,0.88434499502182,0.384665012359619,0.882584989070892,0.383410006761551,0.871399998664856,0.386119991540909,0.872390031814575,0.387549996376038,0.880825042724609,0.382155001163483,0.870404958724976,0.384694993495941,0.947924971580505,0.0518600009381771,0.947735011577606,0.0491200014948845,0.950255036354065,0.0490499995648861,0.950185000896454,0.0522500015795231,0.947539985179901,0.046374998986721,0.950325012207031,0.0458500012755394,0.953104972839355,0.0453249998390675,0.952775001525879,0.048980001360178,0.952445030212402,0.0526399984955788,0.90769499540329,0.405925005674362,0.909635007381439,0.408259987831116,0.911080002784729,0.406794995069504,0.908939957618713,0.40514999628067,0.911574959754944,0.410589993000031,0.9132199883461,0.408434987068176,0.899814963340759,0.403254985809326,0.897605001926422,0.399645000696182,0.882264971733093,0.407584995031357,0.884024977684021,0.411830008029938,0.895390033721924,0.396030008792877,0.880504965782166,0.403335005044937,0.983700037002563,0.0444400012493134,0.980430006980896,0.0441650003194809,0.982499957084656,0.0233399998396635,0.985790014266968,0.0242500007152557,0.977154970169067,0.0438899993896484,0.979215025901794,0.022435000166297,0.934499979019165,0.421389997005463,0.933174967765808,0.422399997711182,0.932734966278076, -0.424789994955063,0.934424996376038,0.424430012702942,0.931849956512451,0.42340499162674,0.93104499578476,0.425155013799667,0.860759973526001,0.442519992589951,0.860780000686646,0.452834993600845,0.872159957885742,0.45151498913765,0.87171995639801,0.441289991140366,0.86080002784729,0.46314999461174,0.872595012187958,0.461735010147095,0.893265008926392,0.45346000790596,0.892064988613129,0.443819999694824,0.890864968299866,0.434179991483688,0.801394999027252,0.0574299991130829,0.800740003585815,0.0535999983549118,0.807794988155365,0.0537200011312962,0.808120012283325,0.0577699989080429,0.800085008144379,0.049770001322031,0.814849972724915,0.0538350008428097,0.814849972724915,0.0581049993634224,0.826779961585999,0.0589749999344349,0.827995002269745,0.0551300011575222,0.830304980278015,0.0548150017857552,0.829599976539612,0.0588250011205673,0.829214990139008,0.05129000172019,0.831004977226257,0.0508100017905235,0.832800030708313,0.050330001860857,0.832610011100769,0.0544999986886978,0.832419991493225,0.0586749985814095,0.831679999828339,0.0241299998015165,0.834985017776489,0.0266350004822016,0.870045006275177,0.0576400011777878,0.868950009346008,0.0536650009453297,0.873205006122589,0.0529300011694431,0.874024987220764,0.0569350011646748,0.86785501241684,0.0496900007128716,0.87746000289917,0.0522000007331371,0.878005027770996,0.0562350004911423,0.885635018348694,0.0553499981760979,0.885235011577606,0.0514199994504452,0.887775003910065,0.0518999993801117,0.888220012187958,0.0557250007987022,0.884829998016357,0.0474900007247925,0.88732498884201,0.0480750016868114,0.889819979667664,0.0486599989235401,0.890314996242523,0.0523749999701977,0.890805006027222,0.0560950003564358,0.8889000415802,0.0239199995994568,0.890585005283356,0.0251650009304285,0.922680020332336,0.0533099994063377,0.922174990177155,0.0506800003349781,0.925240039825439,0.0500649996101856,0.925599992275238,0.0529250018298626,0.921665012836456,0.0480500012636185,0.928310036659241,0.0494499988853931,0.92851996421814,0.0525350011885166,0.936375021934509,0.0526850000023842, -0.936720013618469,0.0496550016105175,0.939759969711304,0.0509149990975857,0.939589977264404,0.0540499985218048,0.937065005302429,0.04662000015378,0.939929962158203,0.0477849990129471,0.942795038223267,0.0489500015974045,0.942799985408783,0.0521799996495247,0.942809998989105,0.0554100014269352,0.943204998970032,0.024660000577569,0.945814967155457,0.0252749994397163,0.970309972763062,0.044454999268055,0.968194961547852,0.045669998973608,0.966075003147125,0.0468900017440319,0.970290005207062,0.0511000007390976,0.970299959182739,0.047775000333786,0.973685026168823,0.0478699989616871,0.973639965057373,0.0515649989247322,0.973734974861145,0.0441699996590614,0.977069973945618,0.0479599982500076,0.976984977722168,0.0520300008356571,0.975834965705872,0.0233800001442432,0.858520030975342,0.0575699992477894,0.859215021133423,0.0536950007081032,0.861464977264404,0.0533250011503696,0.861189961433411,0.0571449995040894,0.859905004501343,0.0498250015079975,0.861739993095398,0.0495099984109402,0.863574981689453,0.0491899996995926,0.863719999790192,0.0529550015926361,0.86386501789093,0.0567199997603893,0.86319500207901,0.0226099994033575,0.865215003490448,0.0238850004971027,0.844839990139008,0.0213249996304512,0.849689960479736,0.0204050000756979,0.877510011196136,0.380035012960434,0.875290036201477,0.37932500243187,0.867455005645752,0.381350010633469,0.868589997291565,0.382515013217926,0.873075008392334,0.378619998693466,0.8663250207901,0.380185008049011,0.870604991912842,0.378109991550446,0.865175008773804,0.379224985837936,0.868129968643188,0.377600014209747,0.871580004692078,0.376080006361008,0.872759997844696,0.376439988613129,0.873820006847382,0.371764987707138,0.873129963874817,0.369509994983673,0.873944997787476,0.376800000667572,0.874509990215302,0.374015003442764,0.860724985599518,0.375110000371933,0.860724985599518,0.375800013542175,0.86114501953125,0.375820010900497,0.861065030097961,0.375149995088577,0.861989974975586,0.375880002975464,0.861739993095398,0.375245004892349,0.861544966697693,0.370045006275177,0.860724985599518, -0.369365006685257,0.860724985599518,0.373629987239838,0.861479997634888,0.373755007982254,0.863014996051788,0.37406998872757,0.863160014152527,0.371504992246628,0.866549968719482,0.375189989805222,0.867805004119873,0.37542000412941,0.868364989757538,0.37406000494957,0.866795003414154,0.374204993247986,0.869055032730103,0.375654995441437,0.869930028915405,0.373914986848831,0.908580005168915,0.0528399981558323,0.909179985523224,0.0489749982953072,0.91298496723175,0.0507650002837181,0.912620007991791,0.0539649985730648,0.909780025482178,0.045109998434782,0.913344979286194,0.0475649982690811,0.916914999485016,0.050025001168251,0.916790008544922,0.0525549985468388,0.916660010814667,0.0550899989902973,0.915454983711243,0.0255050007253885,0.917834997177124,0.0268050003796816,0.899984955787659,0.0230849999934435,0.904839992523193,0.0224549993872643,0.89131498336792,0.391799986362457,0.889445006847382,0.389910012483597,0.875654995441437,0.394179999828339,0.876960039138794,0.396614998579025,0.887570023536682,0.388020008802414,0.874350011348724,0.391745001077652,0.885954976081848,0.386344999074936,0.873369991779327,0.389645010232925,0.886839985847473,0.383139997720718,0.887624979019165,0.383910000324249,0.889240026473999,0.379404991865158,0.889235019683838,0.377730011940002,0.888409972190857,0.38468000292778,0.889240026473999,0.381080001592636,0.87916499376297,0.381094992160797,0.869495034217834,0.383605003356934,0.880185008049011,0.378684997558594,0.881060004234314,0.379229992628098,0.882290005683899,0.375539988279343,0.882174968719482,0.374484986066818,0.881935000419617,0.379779994487762,0.882405042648315,0.376590013504028,0.883639991283417,0.380995005369186,0.88442999124527,0.381505012512207,0.886070013046265,0.379105001688004,0.884665012359619,0.379390001296997,0.885215044021606,0.382014989852905,0.887480020523071,0.37882000207901,0.959304988384247,0.0517150014638901,0.959890007972717,0.048385001718998,0.962934970855713,0.0490700006484985,0.962594985961914,0.0521700009703636,0.960474967956543,0.0450549982488155,0.963274955749512, -0.0459700003266335,0.965979993343353,0.0497549995779991,0.965885043144226,0.0526250004768372,0.966639995574951,0.0222600009292364,0.953760027885437,0.0221449993550777,0.957035005092621,0.0212799999862909,0.908599972724915,0.421359986066818,0.905589997768402,0.415919989347458,0.888355016708374,0.426815003156662,0.90258002281189,0.410479992628098,0.885845005512238,0.419450014829636,0.901194989681244,0.406870007514954,0.884935021400452,0.415639996528625,0.903545022010803,0.399419993162155,0.904365003108978,0.400790005922318,0.906515002250671,0.396919995546341,0.906374990940094,0.393570005893707,0.905179977416992,0.402159988880157,0.906650006771088,0.400274991989136,0.893355011940002,0.393914997577667,0.878729999065399,0.399975001811981,0.89444500207901,0.38944000005722,0.895509958267212,0.390320003032684,0.898460030555725,0.384974986314774,0.89835000038147,0.381384998559952,0.896574974060059,0.391194999217987,0.898564994335175,0.388570010662079,0.898594975471497,0.393099993467331,0.899535000324249,0.394084990024567,0.902155041694641,0.392289996147156,0.90016496181488,0.391090005636215,0.900470018386841,0.395065009593964,0.904139995574951,0.393489986658096,0.989179968833923,0.0457499995827675,0.986440002918243,0.0450950004160404,0.987565040588379,0.0235600005835295,0.989340007305145,0.0228749997913837,0.981085002422333,0.0091150002554059,0.984120011329651,0.0109550002962351,0.987154960632324,0.0127999996766448,0.923915028572083,0.455175012350082,0.919999957084656,0.445264995098114,0.894805014133453,0.465474992990494,0.896345019340515,0.477485001087189,0.916079998016357,0.435355007648468,0.9235600233078,0.424800008535385,0.926120042800903,0.427664995193481,0.927860021591187,0.423139989376068,0.92467999458313,0.421124994754791,0.928685009479523,0.430525004863739,0.914744973182678,0.414424985647202,0.916319966316223,0.416249990463257,0.918624997138977,0.410670012235641,0.917685031890869,0.407590001821518,0.917899966239929,0.418074995279312,0.919559955596924,0.413744986057281,0.925260007381439,0.419779986143112,0.922724962234497, -0.416034996509552,0.922119975090027,0.417434990406036,0.920184969902039,0.412290006875992,0.793545007705688,0.0596349984407425,0.793540000915527,0.0552799999713898,0.795469999313354,0.0547700002789497,0.795675039291382,0.0589249990880489,0.793529987335205,0.050925001502037,0.795264959335327,0.0506200008094311,0.798539996147156,0.0500449985265732,0.799070000648499,0.0539299994707108,0.799600005149841,0.0578199997544289,0.866925001144409,0.37389999628067,0.865499973297119,0.372734993696213,0.86537504196167,0.373245000839233,0.864069998264313,0.371569991111755,0.863960027694702,0.37228000164032,0.796229958534241,0.016245000064373,0.795979976654053,0.0245999991893768,0.793509960174561,0.0251650009304285,0.793494999408722,0.0178100001066923,0.800599992275238,0.0234350003302097,0.801750004291534,0.0131149999797344,0.828369975090027,0.021619999781251,0.822035014629364,0.0504299998283386,0.821410000324249,0.0216000005602837,0.873484969139099,0.366759985685349,0.871860027313232,0.369980007410049,0.871529996395111,0.371715009212494,0.870229959487915,0.373205006122589,0.814664959907532,0.00925000011920929,0.820304989814758,0.0103649999946356,0.825950026512146,0.0114799998700619,0.839985013008118,0.0222449991852045,0.834715008735657,0.0498199984431267,0.837484955787659,0.024439999833703,0.835384964942932,0.0227700006216764,0.838325023651123,0.0179750006645918,0.841259956359863,0.013175000436604,0.876980006694794,0.375914990901947,0.875890016555786,0.374525010585785,0.875630021095276,0.375135004520416,0.874799966812134,0.3731350004673,0.861175000667572,0.0213350001722574,0.854240000247955,0.0493150018155575,0.855435013771057,0.0208700001239777,0.849895000457764,0.0103150000795722,0.856109976768494,0.0120500000193715,0.862325012683868,0.0137900002300739,0.883074998855591,0.372334986925125,0.882014989852905,0.373620003461838,0.881229996681213,0.375064998865128,0.88095498085022,0.374904990196228,0.868674993515015,0.0217850003391504,0.865715026855469,0.0494400002062321,0.866945028305054,0.022834999486804,0.885074973106384,0.378995001316071, -0.883795022964478,0.377259999513626,0.883535027503967,0.377990007400513,0.882515013217926,0.375524997711182,0.865920007228851,0.017340000718832,0.866940021514893,0.0157299991697073,0.86796498298645,0.0141200004145503,0.887210011482239,0.0226750001311302,0.88086998462677,0.0478300005197525,0.882634997367859,0.0217250008136034,0.890105009078979,0.374989986419678,0.889165043830872,0.376255005598068,0.888355016708374,0.378275007009506,0.888224959373474,0.377514988183975,0.8785400390625,0.0113350003957748,0.883455038070679,0.0138950003311038,0.888370037078857,0.0164550002664328,0.895130038261414,0.0237150005996227,0.892729997634888,0.047290001064539,0.892859995365143,0.024439999833703,0.891240000724792,0.0206300001591444,0.892865002155304,0.017765000462532,0.894490003585815,0.0149050001055002,0.89183497428894,0.3838250041008,0.890655040740967,0.381839990615845,0.890334963798523,0.382735013961792,0.889469981193542,0.379850000143051,0.9130699634552,0.0241999998688698,0.906350016593933,0.0454099997878075,0.908954977989197,0.0233299992978573,0.905155003070831,0.0124399997293949,0.90974497795105,0.0145300002768636,0.914335012435913,0.0166200008243322,0.899405002593994,0.377654999494553,0.897094964981079,0.380529999732971,0.896270036697388,0.382845014333725,0.89478999376297,0.38340499997139,0.923240005970001,0.0236850008368492,0.919290006160736,0.0490350015461445,0.92053496837616,0.0252449996769428,0.900714993476868,0.390439987182617,0.89998996257782,0.389025002717972,0.89936500787735,0.389829993247986,0.8992600440979,0.387609988451004,0.917719960212708,0.0254100002348423,0.921124994754791,0.0194150004535913,0.924530029296875,0.0134199997410178,0.940595030784607,0.0240499991923571,0.93257999420166,0.0464950017631054,0.93529999256134,0.02356499992311,0.906560003757477,0.390879988670349,0.905954957008362,0.39172500371933,0.905259966850281,0.393530011177063,0.90534496307373,0.392569988965988,0.930500030517578,0.0120599996298552,0.935899972915649,0.0133199999108911,0.941295027732849,0.0145850004628301,0.950484991073608,0.0230100005865097, -0.945165038108826,0.0476600006222725,0.948150038719177,0.0241400003433228,0.947539985179901,0.0216600000858307,0.949985027313232,0.016584999859333,0.952430009841919,0.0115099996328354,0.909375011920929,0.404875010251999,0.908224999904633,0.402240008115768,0.907795011997223,0.402709990739822,0.90707004070282,0.399610012769699,0.964020013809204,0.0218449998646975,0.956789970397949,0.0451899990439415,0.960525035858154,0.0215600002557039,0.959110021591187,0.00844500027596951,0.962904989719391,0.00968500040471554,0.966704964637756,0.0109299998730421,0.918300032615662,0.404949992895126,0.916064977645874,0.406314998865128,0.915454983711243,0.408015012741089,0.913830041885376,0.407680004835129,0.80274498462677,0.022834999486804,0.982815027236938,0.0516999997198582,0.983260035514832,0.0480699986219406,0.985710024833679,0.0495399981737137,0.98497998714447,0.0539849996566772,0.988160014152527,0.0510100014507771,0.987139999866486,0.0562650002539158,0.83447003364563,0.0539250001311302,0.834224998950958,0.0580249987542629,0.853729963302612,0.0533349998295307,0.853219985961914,0.0573600009083748,0.821424961090088,0.0544850006699562,0.820814967155457,0.0585400015115738,0.866335034370422,0.0533099994063377,0.866955041885376,0.0571799986064434,0.88134503364563,0.0518100000917912,0.8818199634552,0.0557899996638298,0.892984986305237,0.0506750009953976,0.893244981765747,0.0540650002658367,0.905910015106201,0.0487949997186661,0.90547502040863,0.0521849989891052,0.919479966163635,0.0516199991106987,0.919669985771179,0.0542000010609627,0.932515025138855,0.0495549999177456,0.932444989681244,0.0526099987328053,0.945264995098114,0.0506500005722046,0.945365011692047,0.0536350011825562,0.956335008144379,0.0486849993467331,0.955875039100647,0.0521799996495247,0.968140006065369,0.0487649999558926,0.968089997768402,0.0518600009381771,0.980165004730225,0.0480149984359741,0.979900002479553,0.0518650002777576,0.793545007705688,0.0613150000572205,0.793545007705688,0.0604749992489815,0.795894980430603,0.060454998165369,0.796115040779114,0.06199000030756, -0.800074994564056,0.060394998639822,0.80054497718811,0.0629699975252151,0.808319985866547,0.0608600005507469,0.801905035972595,0.0603550001978874,0.814734995365143,0.0613650009036064,0.814620018005371,0.0646250024437904,0.808515012264252,0.0639500021934509,0.802410006523132,0.0632750019431114,0.820675015449524,0.0610250011086464,0.826609969139099,0.0606900006532669,0.826444983482361,0.0624050013720989,0.820529997348785,0.0635150000452995,0.829479992389679,0.0599550008773804,0.832350015640259,0.0592150017619133,0.832280039787292,0.0597600005567074,0.829365015029907,0.0610800012946129,0.834879994392395,0.0590949989855289,0.837409973144531,0.0589749999344349,0.838789999485016,0.0605750009417534,0.835534989833832,0.060164999216795,0.843119978904724,0.0592550002038479,0.848824977874756,0.0595300011336803,0.849730014801025,0.0619099996984005,0.844259977340698,0.0612450018525124,0.853914976119995,0.059604998677969,0.859004974365234,0.0596799999475479,0.859485030174255,0.0617900006473064,0.854609966278076,0.0618500001728535,0.861714959144592,0.0590500012040138,0.864430010318756,0.0584199987351894,0.864995002746582,0.060114998370409,0.862239956855774,0.060954999178648,0.86796498298645,0.0595999993383884,0.87150502204895,0.060784999281168,0.872959971427917,0.0639299973845482,0.86897999048233,0.062024999409914,0.875414967536926,0.0604000017046928,0.879330039024353,0.0600150004029274,0.880659997463226,0.0637950003147125,0.876810014247894,0.0638649985194206,0.882950007915497,0.0595850013196468,0.886564970016479,0.0591600015759468,0.887495040893555,0.0629699975252151,0.884074985980988,0.0633850023150444,0.888965010643005,0.0585299991071224,0.891369998455048,0.0579049997031689,0.891934990882874,0.059714999049902,0.889714956283569,0.0613400004804134,0.893530011177063,0.0575749985873699,0.895684957504272,0.0572400018572807,0.895689964294434,0.062449999153614,0.893810033798218,0.0610800012946129,0.899340033531189,0.0562250018119812,0.902994990348816,0.0552100017666817,0.903625011444092,0.0588899999856949,0.899654984474182,0.0606699995696545, -0.906374990940094,0.0555850006639957,0.909759998321533,0.0559649989008904,0.910939991474152,0.0590850003063679,0.907279968261719,0.0589900016784668,0.913334965705872,0.0566600002348423,0.916914999485016,0.0573550015687943,0.917165040969849,0.0596200004220009,0.914054989814758,0.0593549981713295,0.919450044631958,0.0573399998247623,0.921985030174255,0.0573300011456013,0.921285033226013,0.061344999819994,0.919224977493286,0.0604850016534328,0.925255000591278,0.0570949986577034,0.928529977798462,0.0568599998950958,0.928539991378784,0.061184998601675,0.924914956092834,0.0612649992108345,0.932729959487915,0.0570550002157688,0.936935007572174,0.0572549998760223,0.937489986419678,0.06182000041008,0.933014988899231,0.0615000016987324,0.939695000648499,0.0576299987733364,0.942454993724823,0.0580100007355213,0.942104995250702,0.0606050007045269,0.939800024032593,0.061209999024868,0.944739997386932,0.0573650002479553,0.947025001049042,0.0567199997603893,0.946125030517578,0.0615799985826015,0.944115042686462,0.0610949993133545,0.949689984321594,0.0566399991512299,0.952355027198792,0.0565599985420704,0.952270030975342,0.0604749992489815,0.949195027351379,0.0610300004482269,0.955924987792969,0.0564199984073639,0.959495007991791,0.0562799982726574,0.959689974784851,0.0608399994671345,0.955980002880096,0.0606600008904934,0.962514996528625,0.0562000013887882,0.965530037879944,0.0561150014400482,0.9651700258255,0.059604998677969,0.962430000305176,0.060224998742342,0.967785000801086,0.0563750006258488,0.970034956932068,0.0566349998116493,0.96978497505188,0.062169998884201,0.96747499704361,0.0608900003135204,0.973425030708313,0.0565650016069412,0.976809978485107,0.0564949996769428,0.976634979248047,0.0609650015830994,0.973209977149963,0.0615650005638599,0.979770004749298,0.0568200014531612,0.982730031013489,0.0571400001645088,0.9826500415802,0.0625749975442886,0.979645013809204,0.061769999563694,0.984849989414215,0.0576499998569489,0.986965000629425,0.0581599995493889,0.986790001392365,0.060054998844862,0.98471999168396,0.0613150000572205, -0.803169965744019,0.0643749982118607,0.800909996032715,0.0642199963331223,0.796095013618469,0.0631899982690811,0.810180008411407,0.0648249983787537,0.817185044288635,0.0652699992060661,0.821704983711243,0.0645850002765656,0.826220035552979,0.063900001347065,0.829214990139008,0.0620450004935265,0.832210004329681,0.0601850003004074,0.836075007915497,0.0611199997365475,0.839940011501312,0.0620549991726875,0.845189988613129,0.0628250017762184,0.85044002532959,0.0635949969291687,0.855105042457581,0.0636000037193298,0.859775006771088,0.0636050030589104,0.862614989280701,0.062440000474453,0.865455031394958,0.0612750016152859,0.869690001010895,0.0636600032448769,0.873929977416992,0.066040001809597,0.877740025520325,0.0662200003862381,0.881554961204529,0.0663999989628792,0.884474992752075,0.0659599974751472,0.887395024299622,0.0655149966478348,0.889959990978241,0.0637250021100044,0.892520010471344,0.0619350001215935,0.895235002040863,0.0637250021100044,0.897949993610382,0.0655200034379959,0.901260018348694,0.064180001616478,0.9045649766922,0.06283999979496,0.90762996673584,0.0627150014042854,0.910690009593964,0.0625950023531914,0.914065003395081,0.0622100010514259,0.917439997196198,0.0618249997496605,0.920009970664978,0.0631999969482422,0.922580003738403,0.0645750015974045,0.925750017166138,0.0649449974298477,0.928925037384033,0.0653150007128716,0.932985007762909,0.0655649974942207,0.937049984931946,0.065820001065731,0.939419984817505,0.0646449998021126,0.941794991493225,0.0634649991989136,0.944050014019012,0.0646649971604347,0.946300029754639,0.0658600032329559,0.949254989624023,0.0650949999690056,0.952210009098053,0.0643350034952164,0.955870032310486,0.0646149963140488,0.959529995918274,0.0648949965834618,0.962204992771149,0.0642250031232834,0.964874982833862,0.0635550022125244,0.967570006847382,0.065090000629425,0.97026002407074,0.0666249990463257,0.97332501411438,0.0658549964427948,0.97639000415802,0.065090000629425,0.979174971580505,0.0659400001168251,0.981959998607635,0.0667949989438057,0.984084963798523,0.0644299983978271, -0.986209988594055,0.0620599985122681,0.863234996795654,0.370559990406036,0.861564993858337,0.368640005588531,0.518319964408875,0.217325001955032,0.521309971809387,0.222194999456406,0.522210001945496,0.20516499876976,0.519894957542419,0.232189998030663,0.517854988574982,0.195869997143745,0.522109985351563,0.237719997763634,0.518635034561157,0.247504994273186,0.523054957389832,0.255479991436005,0.519580006599426,0.269160002470016,0.521894991397858,0.277509987354279,0.517269968986511,0.292335003614426,0.521880030632019,0.305319994688034,0.518220007419586,0.325154989957809,0.930159986019135,0.431845009326935,0.93163001537323,0.433165013790131,0.928555011749268,0.421595007181168,0.920729994773865,0.421440005302429,0.919245004653931,0.408619999885559,0.913159966468811,0.412510007619858,0.911605000495911,0.406280010938644,0.906440019607544,0.404044985771179,0.906814992427826,0.395244985818863,0.902009963989258,0.39724001288414,0.903030037879944,0.391505002975464,0.897585034370422,0.392150014638901,0.899330019950867,0.382629990577698,0.893395006656647,0.388684988021851,0.893310010433197,0.383614987134933,0.889320015907288,0.385500013828278,0.88978499174118,0.377420008182526,0.886025011539459,0.382580012083054,0.886649966239929,0.378255009651184,0.882784962654114,0.380389988422394,0.882794976234436,0.373930007219315,0.879289984703064,0.378414988517761,0.87897002696991,0.375409990549088,0.875090003013611,0.377180010080338,0.874145030975342,0.369944989681244,0.870314955711365,0.375869989395142,0.868579983711243,0.373549997806549,0.863790035247803,0.374264985322952,0.865170001983643,0.374725013971329,0.804919958114624,0.107100002467632,0.802089989185333,0.105530001223087,0.796414971351624,0.102389998733997,0.810374975204468,0.108245000243187,0.831519961357117,0.101510003209114,0.850645005702972,0.107780002057552,0.86710000038147,0.102399997413158,0.876644968986511,0.105889998376369,0.892520010471344,0.100069999694824,0.901435017585754,0.107780002057552,0.916429996490479,0.0975750014185905,0.925475001335144,0.105875000357628,0.94038999080658, -0.100395001471043,0.94894003868103,0.108934998512268,0.963245034217834,0.101970002055168,0.972545027732849,0.1076750010252,0.985044956207275,0.0994549989700317,0.983644962310791,0.102619998157024,0.98819500207901,0.01596499979496,0.989235043525696,0.0191300008445978,0.977895021438599,0.0107650002464652,0.968459963798523,0.0147799998521805,0.955770015716553,0.00997500028461218,0.944419980049133,0.0181200001388788,0.927515029907227,0.0127400001510978,0.916029989719391,0.0210149995982647,0.899824976921082,0.0136749995872378,0.88980495929718,0.0185400005429983,0.873250007629395,0.012725000269711,0.864120006561279,0.0155649995431304,0.845579981803894,0.0117450002580881,0.830664992332458,0.0171249993145466,0.804540038108826,0.0115499999374151,0.809599995613098,0.0104000000283122,0.921555042266846,0.427190005779266,0.916990041732788,0.426714986562729,0.922384977340698,0.432940006256104,0.907074987888336,0.410535007715225,0.906754970550537,0.407290011644363,0.903880000114441,0.406320005655289,0.897930026054382,0.395550012588501,0.897760033607483,0.39384999871254,0.895980000495911,0.393615007400513,0.889959990978241,0.387975007295609,0.889639973640442,0.386734992265701,0.88798999786377,0.386350005865097,0.883020043373108,0.382084995508194,0.882905006408691,0.381235003471375,0.881379961967468,0.380970001220703,0.87573504447937,0.378385007381439,0.875409960746765,0.377779990434647,0.873510003089905,0.37771001458168,0.864279985427856,0.376239985227585,0.866665005683899,0.375950008630753,0.865920007228851,0.37533500790596,0.86403501033783,0.375254988670349,0.927775025367737,0.444169998168945,0.925080001354218,0.438555002212524,0.912339985370636,0.428359985351563,0.914330005645752,0.42230498790741,0.911669969558716,0.41789498925209,0.909375011920929,0.414214998483658,0.902779996395111,0.403829991817474,0.901679992675781,0.401340007781982,0.899805009365082,0.398445010185242,0.894430041313171,0.392114996910095,0.892879962921143,0.390619993209839,0.891420006752014,0.389295011758804,0.886790037155151,0.385125011205673,0.885589957237244, -0.383899986743927,0.884305000305176,0.382995009422302,0.880115032196045,0.380165010690689,0.878844976425171,0.379359990358353,0.877290010452271,0.378870010375977,0.871685028076172,0.377274990081787,0.869854986667633,0.376839995384216,0.868260025978088,0.376394987106323,0.866204977035522,0.376920014619827,0.873039960861206,0.473360002040863,0.873484969139099,0.484984993934631,0.860729992389679,0.379485011100769,0.862219989299774,0.379400014877319,0.860729992389679,0.380645006895065,0.862604975700378,0.380499988794327,0.860729992389679,0.381980001926422,0.862990021705627,0.381790012121201,0.860729992389679,0.383314996957779,0.863380014896393,0.383080005645752,0.860729992389679,0.384350001811981,0.863695025444031,0.384144991636276,0.860729992389679,0.385379999876022,0.864009976387024,0.385205000638962,0.860729992389679,0.38679501414299,0.864359974861145,0.386640012264252,0.860729992389679,0.388204991817474,0.864714980125427,0.388069987297058,0.860729992389679,0.390495002269745,0.865054965019226,0.390334993600845,0.860729992389679,0.392789989709854,0.865399956703186,0.392594993114471,0.860729992389679,0.395689994096756,0.865835011005402,0.395390003919601,0.860729992389679,0.398595005273819,0.866264998912811,0.398185014724731,0.860729992389679,0.402934998273849,0.866909980773926,0.402260005474091,0.860729992389679,0.407270014286041,0.867550015449524,0.406329989433289,0.86073499917984,0.412070006132126,0.8681800365448,0.411065012216568,0.860740005970001,0.41686999797821,0.86880499124527,0.415794998407364,0.860740005970001,0.420794993638992,0.869140028953552,0.419725000858307,0.860740005970001,0.424719989299774,0.869480013847351,0.42365500330925,0.860749959945679,0.433620005846024,0.870599985122681,0.432469993829727,0.78288996219635,0.0964849963784218,0.774899959564209,0.096900001168251,0.775274991989136,0.0805099979043007,0.783349990844727,0.0804449990391731,0.782424986362457,0.105439998209476,0.775694966316223,0.106370002031326,0.766905009746552,0.0973199978470802,0.768970012664795,0.107299998402596,0.767199993133545,0.0805749967694283, -0.714314997196198,0.0947749987244606,0.70958000421524,0.0954049974679947,0.709120035171509,0.0809800028800964,0.713625013828278,0.0809099972248077,0.715160012245178,0.102439999580383,0.710189998149872,0.103820003569126,0.704845011234283,0.0960350036621094,0.705219984054565,0.105200000107288,0.704614996910095,0.0810500010848045,0.664520025253296,0.0951149985194206,0.661035001277924,0.0952799990773201,0.660884976387024,0.0811249986290932,0.664205014705658,0.0806500017642975,0.665050029754639,0.103450000286102,0.661509990692139,0.103945001959801,0.657554984092712,0.0954499989748001,0.657970011234283,0.104434996843338,0.657559990882874,0.08160500228405,0.619040012359619,0.10614500194788,0.618685007095337,0.103804998099804,0.620209991931915,0.0999199971556664,0.620319962501526,0.101345002651215,0.617720007896423,0.0940200015902519,0.619915008544922,0.0933799967169762,0.621739983558655,0.0960400030016899,0.62211000919342,0.0927349999547005,0.621605038642883,0.0965500026941299,0.745989978313446,0.0635500028729439,0.746250033378601,0.0667549967765808,0.741029977798462,0.0674849972128868,0.740970015525818,0.0644299983978271,0.746004998683929,0.079805001616478,0.74067497253418,0.0803700014948845,0.735809981822968,0.0682199969887733,0.735339999198914,0.0809300020337105,0.735944986343384,0.0653050020337105,0.51385498046875,0.148654997348785,0.513844966888428,0.146320000290871,0.518499970436096,0.143649995326996,0.517204999923706,0.14597499370575,0.515915036201477,0.148300006985664,0.513870000839233,0.1509850025177,0.508435010910034,0.170249998569489,0.508435010910034,0.167160004377365,0.513830006122589,0.167809993028641,0.513830006122589,0.170269995927811,0.508435010910034,0.164069995284081,0.513830006122589,0.165350005030632,0.686919987201691,0.0688050016760826,0.687179982662201,0.0706750005483627,0.68426501750946,0.0702399984002113,0.684275031089783,0.0679450035095215,0.687770009040833,0.0797149986028671,0.684260010719299,0.0800150036811829,0.681344985961914,0.0698050037026405,0.680750012397766,0.080315001308918,0.68163001537323, -0.0670849978923798,0.513159990310669,0.1163399964571,0.513830006122589,0.113944999873638,0.519805014133453,0.112559996545315,0.517235040664673,0.115615002810955,0.514660000801086,0.118665002286434,0.512495040893555,0.118735000491142,0.508435010910034,0.13162000477314,0.508435010910034,0.129720002412796,0.513774991035461,0.131919994950294,0.513759970664978,0.1338250041008,0.508435010910034,0.127820000052452,0.513790011405945,0.130009993910789,0.640560030937195,0.0702349990606308,0.640765011310577,0.0723000019788742,0.63773500919342,0.0718400031328201,0.637714982032776,0.0692550018429756,0.641189992427826,0.0805500000715256,0.637665033340454,0.0810199975967407,0.634705007076263,0.0713799968361855,0.634135007858276,0.0814850032329559,0.634869992733002,0.0682799965143204,0.513844966888428,0.0747900009155273,0.513805031776428,0.0703400000929832,0.517865002155304,0.065190002322197,0.516420006752014,0.0709199979901314,0.514975011348724,0.0766500011086464,0.513885021209717,0.0792350023984909,0.508435010910034,0.0975549966096878,0.508435010910034,0.095100000500679,0.513819992542267,0.0965550020337105,0.513814985752106,0.0990350022912025,0.508435010910034,0.0926499962806702,0.513830006122589,0.0940750017762184,0.605719983577728,0.0810699984431267,0.60853499174118,0.081445001065731,0.608569979667664,0.0949150025844574,0.605464994907379,0.0939050018787384,0.605695009231567,0.0732700005173683,0.608370006084442,0.072954997420311,0.611349999904633,0.081825003027916,0.611039996147156,0.0726400017738342,0.611670017242432,0.0959250032901764,0.521090030670166,0.0298100002110004,0.519275009632111,0.0319899991154671,0.518064975738525,0.0320850014686584,0.519479990005493,0.0297699999064207,0.520895004272461,0.0274550002068281,0.522899985313416,0.0276299994438887,0.513674974441528,0.0439650006592274,0.513650000095367,0.0494499988853931,0.508435010910034,0.0495099984109402,0.508435010910034,0.044039998203516,0.513625025749207,0.0549350008368492,0.508435010910034,0.0549749992787838,0.783164978027344,0.0654750019311905,0.783354997634888,0.0685900002717972, -0.775319993495941,0.0687049999833107,0.77524995803833,0.065700002014637,0.767279982566833,0.0688249990344048,0.767340004444122,0.0659250020980835,0.761099994182587,0.0654049962759018,0.760215044021606,0.0681599974632263,0.757215023040771,0.0664749965071678,0.758020043373108,0.0630149990320206,0.758074998855591,0.0800750032067299,0.755394995212555,0.0795499980449677,0.754215002059937,0.0647900030016899,0.752714991569519,0.079025000333786,0.754940032958984,0.0606300011277199,0.757624983787537,0.0962250009179115,0.754765033721924,0.0940250009298325,0.758895039558411,0.105185002088547,0.755389988422394,0.100194998085499,0.75189995765686,0.0918250009417534,0.751879990100861,0.0952050015330315,0.712199985980988,0.0681950002908707,0.712769985198975,0.070424996316433,0.708694994449615,0.0707700029015541,0.708429992198944,0.0686400011181831,0.704620003700256,0.0711100026965141,0.70465499162674,0.0690800026059151,0.699819982051849,0.0681499987840652,0.69932496547699,0.0702999979257584,0.696630001068115,0.0689899995923042,0.69691002368927,0.0662200003862381,0.698225021362305,0.0809649974107742,0.695964992046356,0.0807299986481667,0.693939983844757,0.0676850005984306,0.693709969520569,0.0804900005459785,0.694000005722046,0.0642900019884109,0.697030007839203,0.0941649973392487,0.695204973220825,0.0935899987816811,0.696245014667511,0.100500002503395,0.694725036621094,0.0987749993801117,0.693385004997253,0.0930150002241135,0.693204998970032,0.0970550030469894,0.663259983062744,0.0681750029325485,0.663754999637604,0.0704649984836578,0.660794973373413,0.0713350027799606,0.660529971122742,0.0689650028944016,0.657829999923706,0.0722049996256828,0.6578049659729,0.0697550028562546,0.650480031967163,0.0700149983167648,0.650160014629364,0.0721800029277802,0.647904992103577,0.0706750005483627,0.648025035858154,0.0682400017976761,0.649489998817444,0.0813400000333786,0.647589981555939,0.0812949985265732,0.645645022392273,0.0691649988293648,0.645694971084595,0.0812449976801872,0.645574986934662,0.0664649978280067,0.648895025253296,0.0942049995064735, -0.647140026092529,0.0936949998140335,0.648580014705658,0.102035000920296,0.646809995174408,0.0991550013422966,0.645385026931763,0.0931850001215935,0.645044982433319,0.0962750017642975,0.616970002651215,0.0812449976801872,0.619709968566895,0.0812600031495094,0.616580009460449,0.0734900012612343,0.619539976119995,0.0717649981379509,0.62245500087738,0.0812800005078316,0.622505009174347,0.0700400024652481,0.616330027580261,0.0710749998688698,0.613810002803802,0.073064997792244,0.613610029220581,0.0701399967074394,0.614160001277924,0.0815349966287613,0.610890030860901,0.0692100003361702,0.614695012569427,0.0949750021100044,0.615254998207092,0.105345003306866,0.611824989318848,0.106885001063347,0.727034986019135,0.0654449984431267,0.726459980010986,0.068290002644062,0.723789989948273,0.0673400014638901,0.724105000495911,0.0639550015330315,0.725064992904663,0.0809699967503548,0.722790002822876,0.0805199965834618,0.721114993095398,0.0663900002837181,0.720510005950928,0.0800699964165688,0.721175014972687,0.062465000897646,0.723034977912903,0.096170000731945,0.721274971961975,0.0949949994683266,0.721520006656647,0.103184998035431,0.720245003700256,0.101039998233318,0.719519972801208,0.0938249975442886,0.718975007534027,0.0988949984312057,0.744665026664734,0.0959649980068207,0.738610029220581,0.0973199978470802,0.743560016155243,0.103869996964931,0.736729979515076,0.106114998459816,0.732555031776428,0.0986749976873398,0.729900002479553,0.1083599999547,0.508435010910034,0.149014994502068,0.508435010910034,0.146805003285408,0.508435010910034,0.144600003957748,0.508435010910034,0.157759994268417,0.508435010910034,0.155585005879402,0.513844966888428,0.158010005950928,0.51383501291275,0.16032999753952,0.508435010910034,0.153410002589226,0.51385498046875,0.155689999461174,0.518209993839264,0.155499994754791,0.520349979400635,0.157875001430511,0.52249002456665,0.160254999995232,0.508399963378906,0.1771399974823,0.508435010910034,0.17561000585556,0.513830006122589,0.175595000386238,0.513819992542267,0.177129998803139,0.508399963378906, -0.180109992623329,0.513819992542267,0.180109992623329,0.521224975585938,0.180089995265007,0.519474983215332,0.180079996585846,0.518164992332458,0.177090004086494,0.51942503452301,0.177159994840622,0.517454981803894,0.164309993386269,0.516955018043518,0.167254999279976,0.516454994678497,0.170200005173683,0.676699995994568,0.0664400011301041,0.675920009613037,0.0690800026059151,0.672734975814819,0.0681649968028069,0.673065006732941,0.065420001745224,0.674459993839264,0.0801799967885017,0.671994984149933,0.0807999968528748,0.669555008411407,0.0672449991106987,0.669525027275085,0.0814199969172478,0.669425010681152,0.0643950030207634,0.6734299659729,0.0939349979162216,0.671365022659302,0.0938450023531914,0.67282497882843,0.100594997406006,0.671029984951019,0.0978450030088425,0.669304966926575,0.0937599986791611,0.669234991073608,0.0950950011610985,0.688865005970001,0.0932350009679794,0.684745013713837,0.095550000667572,0.690015017986298,0.101635001599789,0.685464978218079,0.105690002441406,0.680625021457672,0.0978699997067451,0.680909991264343,0.109745003283024,0.508435010910034,0.117315001785755,0.508435010910034,0.115170001983643,0.508435010910034,0.11302500218153,0.508435010910034,0.124114997684956,0.508435010910034,0.122409999370575,0.513819992542267,0.12440499663353,0.513814985752106,0.126194998621941,0.508435010910034,0.120700001716614,0.513819992542267,0.122615002095699,0.519005000591278,0.123999997973442,0.520274996757507,0.125100001692772,0.521544992923737,0.126204997301102,0.508435010910034,0.140174999833107,0.508435010910034,0.137840002775192,0.513805031776428,0.139835000038147,0.513819992542267,0.141874998807907,0.508435010910034,0.135505005717278,0.513790011405945,0.137799993157387,0.518635034561157,0.139190003275871,0.519649982452393,0.140605002641678,0.520664989948273,0.142020002007484,0.519675016403198,0.128169998526573,0.518535017967224,0.130995005369186,0.51739501953125,0.133815005421638,0.627619981765747,0.069020003080368,0.627285003662109,0.0716850012540817,0.624894976615906,0.0708599984645844,0.625029981136322, -0.0682450011372566,0.626680016517639,0.0814699977636337,0.62457001209259,0.0813750028610229,0.622434973716736,0.0674649998545647,0.625914990901947,0.0954549983143806,0.624014973640442,0.0940949991345406,0.625069975852966,0.104434996843338,0.623404979705811,0.100235000252724,0.641829967498779,0.0938849970698357,0.637794971466064,0.0958449989557266,0.642534971237183,0.103399999439716,0.638109982013702,0.106504999101162,0.63375997543335,0.0978050008416176,0.633684992790222,0.109614998102188,0.508435010910034,0.0784349963068962,0.508435010910034,0.0743400007486343,0.508435010910034,0.0702399984002113,0.508435010910034,0.0877949967980385,0.508435010910034,0.0854900032281876,0.51385498046875,0.0867149978876114,0.513844966888428,0.0891550034284592,0.508435010910034,0.0831800028681755,0.513870000839233,0.0842700004577637,0.518195033073425,0.0844400003552437,0.520159959793091,0.0857150033116341,0.522125005722046,0.0869899988174438,0.508435010910034,0.108290001749992,0.508435010910034,0.105650000274181,0.513819992542267,0.106554999947548,0.513819992542267,0.10903500020504,0.508435010910034,0.10300999879837,0.513819992542267,0.104070000350475,0.518370032310486,0.10538499802351,0.521044969558716,0.107280001044273,0.523720026016235,0.109174996614456,0.51885998249054,0.0898550003767014,0.518305003643036,0.0944150015711784,0.517750024795532,0.0989750027656555,0.601760029792786,0.0826499983668327,0.603739976882935,0.0818599984049797,0.604099988937378,0.0947149991989136,0.60273003578186,0.0955249965190887,0.601199984550476,0.0681499987840652,0.603444993495941,0.0707100033760071,0.605024993419647,0.103505000472069,0.603900015354156,0.101115003228188,0.602774977684021,0.0987199991941452,0.60488498210907,0.105784997344017,0.60842502117157,0.105195000767708,0.608354985713959,0.107639998197556,0.611819982528687,0.109494999051094,0.513754963874817,0.0276299994438887,0.513745009899139,0.0298100002110004,0.508435010910034,0.0301649998873472,0.508435010910034,0.0280450005084276,0.513740003108978,0.0319899991154671,0.508435010910034,0.032285001128912, -0.508435010910034,0.0381649993360043,0.513710021972656,0.0379749983549118,0.517235040664673,0.0380199998617172,0.51639997959137,0.0439499989151955,0.508435010910034,0.0581250004470348,0.513674974441528,0.0577349998056889,0.513729989528656,0.0605349987745285,0.508435010910034,0.0612750016152859,0.517955005168915,0.0548250004649162,0.520349979400635,0.0578150004148483,0.522740006446838,0.060809999704361,0.518144965171814,0.049320001155138,0.519124984741211,0.0547400005161762,0.5171799659729,0.0493850000202656,0.517165005207062,0.0439050011336803,0.791079998016357,0.0680800005793571,0.791010022163391,0.0643950030207634,0.791144967079163,0.0807500034570694,0.785989999771118,0.0685650035738945,0.785820007324219,0.0654650032520294,0.513830006122589,0.172934994101524,0.508435010910034,0.172930002212524,0.517875015735626,0.172999992966652,0.518530011177063,0.17569500207901,0.517470002174377,0.175575003027916,0.516960024833679,0.172885000705719,0.517215013504028,0.170300006866455,0.791085004806519,0.0946099981665611,0.790879964828491,0.100934997200966,0.786045014858246,0.0804599970579147,0.785750031471252,0.0956899970769882,0.51383501291275,0.162839993834496,0.508435010910034,0.16091500222683,0.762634992599487,0.0803249999880791,0.762264966964722,0.0967700034379959,0.763749957084656,0.0684899985790253,0.521719992160797,0.162235006690025,0.518489956855774,0.164165005087852,0.519969999790192,0.162285000085831,0.524955034255981,0.160300001502037,0.759350001811981,0.107160001993179,0.763934969902039,0.106245003640652,0.765325009822845,0.108280003070831,0.771299958229065,0.109394997358322,0.749359965324402,0.079415000975132,0.748284995555878,0.0938950031995773,0.750234961509705,0.0657749995589256,0.513859987258911,0.153335005044937,0.508435010910034,0.151209995150566,0.74329000711441,0.105460003018379,0.747720003128052,0.0995350033044815,0.747590005397797,0.100660003721714,0.751890003681183,0.0958599969744682,0.518139958381653,0.152044996619225,0.519469976425171,0.155575007200241,0.517060041427612,0.151899993419647,0.516815006732941, -0.148509994149208,0.51383501291275,0.144099995493889,0.508435010910034,0.142385005950928,0.730204999446869,0.0809499993920326,0.727795004844666,0.0974199995398521,0.731135010719299,0.0682549998164177,0.72121000289917,0.104835003614426,0.725710034370422,0.105774998664856,0.725454986095428,0.107469998300076,0.729695022106171,0.110105000436306,0.521214962005615,0.142539992928505,0.519824981689453,0.143055006861687,0.519580006599426,0.142835006117821,0.522605001926422,0.142024993896484,0.7170649766922,0.0804900005459785,0.716915011405945,0.0943000018596649,0.716944992542267,0.0684050023555756,0.513774991035461,0.135810002684593,0.508435010910034,0.133560001850128,0.519225001335144,0.136940002441406,0.520015001296997,0.139789998531342,0.518015027046204,0.136504992842674,0.51842999458313,0.134090006351471,0.715595006942749,0.104500003159046,0.7170649766922,0.100665003061295,0.717234969139099,0.102229997515678,0.718869984149933,0.0999649986624718,0.513805031776428,0.128104999661446,0.508435010910034,0.125964999198914,0.7014200091362,0.0810049995779991,0.700940012931824,0.095100000500679,0.701974987983704,0.0707049965858459,0.522549986839294,0.126965001225471,0.521360039710999,0.127735003829002,0.520609974861145,0.127185001969337,0.523739993572235,0.126194998621941,0.696049988269806,0.10215499997139,0.700734972953796,0.102849997580051,0.700720012187958,0.104719996452332,0.705389976501465,0.107280001044273,0.690739989280701,0.0801049992442131,0.69112503528595,0.0931250005960464,0.690559983253479,0.0691799968481064,0.513159990310669,0.12067499756813,0.508435010910034,0.119010001420975,0.690394997596741,0.103694997727871,0.691609978675842,0.0993449985980988,0.691784977912903,0.100840002298355,0.69317501783371,0.0979800000786781,0.518139958381653,0.121725000441074,0.520475029945374,0.124580003321171,0.516829967498779,0.121330000460148,0.515805006027222,0.118869997560978,0.513824999332428,0.111489996314049,0.508435010910034,0.110660001635551,0.677605032920837,0.0802500024437904,0.677029967308044,0.0958999991416931,0.678629994392395, -0.0694449990987778,0.672574996948242,0.101954996585846,0.676869988441467,0.105169996619225,0.676789999008179,0.10690999776125,0.681005001068115,0.111859999597073,0.523975014686584,0.110849998891354,0.521465003490448,0.112334996461868,0.521759986877441,0.110870003700256,0.526479959487915,0.109365001320839,0.666864991188049,0.0810350030660629,0.666909992694855,0.0944349989295006,0.666655004024506,0.0688550025224686,0.513819992542267,0.101554997265339,0.508435010910034,0.100280001759529,0.519245028495789,0.102475002408028,0.519630014896393,0.105879999697208,0.518059968948364,0.102179996669292,0.51885998249054,0.0990749970078468,0.66523003578186,0.105219997465611,0.667145013809204,0.0992750003933907,0.667230010032654,0.100325003266335,0.669234991073608,0.0954250022768974,0.51383501291275,0.0916149988770485,0.508435010910034,0.0902250036597252,0.653524994850159,0.0814749971032143,0.653225004673004,0.0948249995708466,0.653995037078857,0.0721950009465218,0.522379994392395,0.0876849964261055,0.520305037498474,0.0888200029730797,0.520489990711212,0.0884200036525726,0.5244500041008,0.0865549966692924,0.648504972457886,0.103995002806187,0.653275012969971,0.103234998881817,0.653299987316132,0.105259999632835,0.658095002174377,0.106524996459484,0.643445014953613,0.0808949992060661,0.643610000610352,0.0935349985957146,0.643204987049103,0.0707350000739098,0.513875007629395,0.0817549973726273,0.508435010910034,0.0808100029826164,0.642830014228821,0.105755001306534,0.643790006637573,0.0998350009322166,0.643904983997345,0.101279996335506,0.644985020160675,0.0967999994754791,0.517504990100861,0.0803249999880791,0.519340038299561,0.0846299976110458,0.516584992408752,0.080545000731945,0.515670001506805,0.0760150030255318,0.5137699842453,0.0654399991035461,0.508435010910034,0.065760001540184,0.630405008792877,0.0814799964427948,0.629840016365051,0.0966299995779991,0.630995035171509,0.0715299993753433,0.624714970588684,0.106550000607967,0.629374980926514,0.107024997472763,0.62914502620697,0.109329998493195,0.633575022220612,0.112109996378422, -0.521749973297119,0.06317999958992,0.518875002861023,0.0655250027775764,0.520305037498474,0.063000001013279,0.52462500333786,0.0608350001275539,0.605719983577728,0.0709900036454201,0.603550016880035,0.0675249993801117,0.601374983787537,0.0640600025653839,0.750465035438538,0.0620899982750416,0.731490015983582,0.0653750002384186,0.764219999313354,0.0656649991869926,0.716690003871918,0.0653299987316132,0.702239990234375,0.0686149969696999,0.690459966659546,0.066550001502037,0.679165005683899,0.0667650029063225,0.666339993476868,0.0662849992513657,0.654139995574951,0.0698850005865097,0.643069982528687,0.0683500021696091,0.631245017051697,0.0686499997973442,0.619385004043579,0.0692699998617172,0.608304977416992,0.0701000019907951,0.772204995155334,0.049575001001358,0.772560000419617,0.021594999358058,0.778409957885742,0.0222200006246567,0.779595017433167,0.0496749989688396,0.777379989624023,0.010414999909699,0.77231502532959,0.00926500000059605,0.784260034561157,0.0228400006890297,0.786985039710999,0.0497800000011921,0.710150003433228,0.0482299998402596,0.708949983119965,0.0208550002425909,0.713639974594116,0.0213549993932247,0.714680016040802,0.0489850006997585,0.713734984397888,0.012810000218451,0.708450019359589,0.0114200003445148,0.718330025672913,0.0218550004065037,0.719215035438538,0.0497400015592575,0.658949971199036,0.0465749986469746,0.657000005245209,0.0232100002467632,0.660385012626648,0.0235149990767241,0.662174999713898,0.0474250018596649,0.659470021724701,0.0128699997439981,0.656485021114349,0.0121950004249811,0.663765013217926,0.0238249991089106,0.665405035018921,0.048275001347065,0.614529967308044,0.0157050006091595,0.616775035858154,0.0188100002706051,0.617694973945618,0.022834999486804,0.615975022315979,0.02364999987185,0.614255011081696,0.024465000256896,0.612285017967224,0.0126000000163913,0.751049995422363,0.0573999993503094,0.745105028152466,0.0572849996387959,0.744785010814667,0.0531850010156631,0.750739991664886,0.0533699989318848,0.739154994487762,0.0571699999272823,0.738824963569641,0.0530049987137318, -0.738494992256165,0.0488349981606007,0.744464993476868,0.0490849986672401,0.750434994697571,0.0493349991738796,0.844139993190765,0.377855002880096,0.845219969749451,0.377559989690781,0.84469997882843,0.376255005598068,0.842934966087341,0.375950008630753,0.841170012950897,0.375640004873276,0.84306001663208,0.37814998626709,0.859920024871826,0.377395004034042,0.859624981880188,0.37830001115799,0.860219955444336,0.376489996910095,0.859215021133423,0.376515001058578,0.858319997787476,0.377389997243881,0.857424974441528,0.378259986639023,0.69140499830246,0.0521499998867512,0.688059985637665,0.0519249998033047,0.687924981117249,0.0489349998533726,0.691415011882782,0.0490950010716915,0.684719979763031,0.0516950003802776,0.68443500995636,0.0487699992954731,0.684149980545044,0.0458500012755394,0.687790036201477,0.0459400005638599,0.691424965858459,0.046034999191761,0.830165028572083,0.387120008468628,0.831220030784607,0.386310011148453,0.830029964447021,0.384380012750626,0.828649997711182,0.384339988231659,0.827270030975342,0.384299993515015,0.829105019569397,0.387930005788803,0.838869988918304,0.383410006761551,0.837110042572021,0.384665012359619,0.845364987850189,0.387160003185272,0.846644997596741,0.385760009288788,0.847930014133453,0.384359985589981,0.840624988079071,0.382155001163483,0.639090001583099,0.0519700013101101,0.63682496547699,0.0523450002074242,0.636749982833862,0.049150001257658,0.639280021190643,0.0492299981415272,0.634554982185364,0.0527249984443188,0.634220004081726,0.0490749999880791,0.633885025978088,0.0454250015318394,0.636680006980896,0.0459549985826015,0.639469981193542,0.0464899986982346,0.811845004558563,0.408179998397827,0.813780009746552,0.405889987945557,0.812579989433289,0.405205011367798,0.810519993305206,0.407050013542175,0.808459997177124,0.40889498591423,0.809909999370575,0.410465002059937,0.823855042457581,0.39963498711586,0.821640014648438,0.403234988451004,0.830280005931854,0.408935010433197,0.83254998922348,0.405099987983704,0.83481502532959,0.401264995336533,0.826070010662079,0.396030008792877, -0.601199984550476,0.0244350004941225,0.604489982128143,0.0235249996185303,0.606580018997192,0.0443050004541874,0.603299975395203,0.0445850007236004,0.607779979705811,0.0226150006055832,0.609860002994537,0.0440250001847744,0.788280010223389,0.422399997711182,0.786954998970032,0.421389997005463,0.787029981613159,0.424434989690781,0.788715004920959,0.424789994955063,0.790395021438599,0.425145000219345,0.789600014686584,0.42340499162674,0.849339962005615,0.451624989509583,0.848950028419495,0.461955010890961,0.849730014801025,0.441300004720688,0.830534994602203,0.43417501449585,0.829370021820068,0.443919986486435,0.828199982643127,0.453660011291504,0.785679996013641,0.0574299991130829,0.778954982757568,0.0577699989080429,0.779275000095367,0.0537250004708767,0.786334991455078,0.0536050014197826,0.77223002910614,0.0581099987030029,0.772220015525818,0.0538400001823902,0.760304987430573,0.0589900016784668,0.757480025291443,0.0588399991393089,0.756770014762878,0.0548299998044968,0.759074985980988,0.0551449991762638,0.75466001033783,0.0586900003254414,0.754459977149963,0.0545150004327297,0.754265010356903,0.0503449998795986,0.756054997444153,0.0508249998092651,0.757849991321564,0.0513049997389317,0.752025008201599,0.0266699995845556,0.755329966545105,0.02415999956429,0.756325006484985,0.0171649996191263,0.751610040664673,0.0228150002658367,0.7586350440979,0.0216550007462502,0.717029988765717,0.0576849989593029,0.713055014610291,0.0569849982857704,0.713869988918304,0.0529850013554096,0.718119978904724,0.0537150017917156,0.70907998085022,0.0562850013375282,0.709614992141724,0.0522600002586842,0.701449990272522,0.0554350018501282,0.698870003223419,0.0558199994266033,0.69930499792099,0.0519899986684322,0.701839983463287,0.0515000000596046,0.696285009384155,0.0562050007283688,0.696765005588531,0.0524800010025501,0.697250008583069,0.0487550012767315,0.699739992618561,0.0481600016355515,0.702229976654053,0.0475649982690811,0.696425020694733,0.0252599995583296,0.698109984397888,0.024015000090003,0.697184979915619,0.0186400003731251, -0.695755004882813,0.0207250006496906,0.699795007705688,0.0227700006216764,0.664404988288879,0.0534950010478497,0.661480009555817,0.0531149990856647,0.661825001239777,0.0502699986100197,0.6649050116539,0.0508849993348122,0.658550024032593,0.0527300015091896,0.658749997615814,0.0496550016105175,0.650680005550385,0.0528399981558323,0.647449970245361,0.0541899986565113,0.647274971008301,0.0510549992322922,0.650325000286102,0.0498050004243851,0.644225001335144,0.0555399991571903,0.644225001335144,0.0523100011050701,0.644225001335144,0.0490799993276596,0.647094964981079,0.0479249991476536,0.64996999502182,0.0467749983072281,0.641194999217987,0.0254250001162291,0.643800020217896,0.0248099993914366,0.642575025558472,0.0182799994945526,0.639464974403381,0.0218199994415045,0.64640998840332,0.0241950005292892,0.618799984455109,0.0457750000059605,0.616680026054382,0.0446150004863739,0.620914995670319,0.046934999525547,0.616659998893738,0.0512199997901917,0.61334502696991,0.0516749992966652,0.613309979438782,0.0480000004172325,0.61667001247406,0.047919999808073,0.610029995441437,0.0521299988031387,0.609944999217987,0.048080001026392,0.613269984722137,0.044319998472929,0.611019968986511,0.023539999499917,0.609094977378845,0.0109550002962351,0.60589998960495,0.00930500030517578,0.728564977645874,0.0575999990105629,0.725889980792999,0.0571799986064434,0.725610017776489,0.0533649995923042,0.727864980697632,0.0537299998104572,0.723209977149963,0.0567599982023239,0.723349988460541,0.0529999993741512,0.723495006561279,0.0492400005459785,0.725329995155334,0.0495500005781651,0.72716498374939,0.0498649999499321,0.721790015697479,0.023955000564456,0.723810017108917,0.0226799994707108,0.722869992256165,0.0156350005418062,0.721074998378754,0.0174100007861853,0.725830018520355,0.0214000009000301,0.737309992313385,0.0204550009220839,0.742160022258759,0.0213699992746115,0.741405010223389,0.0117950001731515,0.737089991569519,0.0103649999946356,0.747014999389648,0.0222849994897842,0.846159994602203,0.37932500243187,0.843945026397705,0.380035012960434, -0.850300014019012,0.382185012102127,0.851794958114624,0.381094992160797,0.853285014629364,0.38000500202179,0.848379969596863,0.378619998693466,0.850849986076355,0.378109991550446,0.854809999465942,0.379119992256165,0.856335043907166,0.378239989280701,0.853325009346008,0.377600014209747,0.848690032958984,0.376439988613129,0.849874973297119,0.376080006361008,0.84832501411438,0.369509994983673,0.84763503074646,0.371764987707138,0.846944987773895,0.374015003442764,0.847509980201721,0.376800000667572,0.86030501127243,0.375820010900497,0.860385000705719,0.375149995088577,0.859709978103638,0.375245004892349,0.859465003013611,0.375880002975464,0.859969973564148,0.373750001192093,0.859905004501343,0.370045006275177,0.85829496383667,0.371504992246628,0.858440041542053,0.374065011739731,0.853649973869324,0.37542000412941,0.854900002479553,0.375189989805222,0.854660034179688,0.374204993247986,0.853089988231659,0.37406000494957,0.851520001888275,0.373914986848831,0.852400004863739,0.375654995441437,0.678510010242462,0.0530299991369247,0.674459993839264,0.0541950017213821,0.674099981784821,0.0509800016880035,0.677900016307831,0.0491550005972385,0.67041003704071,0.0553550012409687,0.670295000076294,0.0528049990534782,0.670184969902039,0.0502550005912781,0.673740029335022,0.0477650016546249,0.677289962768555,0.045279998332262,0.669170022010803,0.0269349999725819,0.671554982662201,0.0256299991160631,0.67096996307373,0.021144999191165,0.669279992580414,0.025535000488162,0.673940002918243,0.0243250001221895,0.682165026664734,0.0225750003010035,0.687020003795624,0.0231950003653765,0.687160015106201,0.0137849999591708,0.681829988956451,0.012555000372231,0.691874980926514,0.02381999976933,0.83201003074646,0.389905005693436,0.830134987831116,0.391790002584457,0.839339971542358,0.395444989204407,0.841080009937286,0.393265008926392,0.842824995517731,0.391090005636215,0.833885014057159,0.388020008802414,0.835494995117188,0.386344999074936,0.84409499168396,0.389124989509583,0.833829998970032,0.383910000324249,0.834614992141724,0.383139997720718, -0.832219958305359,0.377730011940002,0.832215011119843,0.379404991865158,0.832210004329681,0.381080001592636,0.83304500579834,0.38468000292778,0.84228503704071,0.381094992160797,0.849115014076233,0.383269995450974,0.840394973754883,0.379229992628098,0.841269969940186,0.378684997558594,0.839275002479553,0.374484986066818,0.839159965515137,0.375539988279343,0.839049994945526,0.376590013504028,0.83951997756958,0.379779994487762,0.837024986743927,0.381500005722046,0.837810039520264,0.380995005369186,0.836789965629578,0.379390001296997,0.835379958152771,0.379105001688004,0.833974957466125,0.37882000207901,0.836239993572235,0.382010012865067,0.627669990062714,0.0517649985849857,0.62439501285553,0.0522349998354912,0.624055027961731,0.0491300001740456,0.627089977264404,0.0484399981796741,0.621119976043701,0.0527100004255772,0.621019959449768,0.0498199984431267,0.623710036277771,0.0460250005125999,0.62651002407074,0.0451200008392334,0.620175004005432,0.0224200002849102,0.618530035018921,0.0149600002914667,0.622655034065247,0.0220100004225969,0.629960000514984,0.0214300006628036,0.633234977722168,0.0222950000315905,0.63121497631073,0.0101399999111891,0.627874970436096,0.00860999990254641,0.636515021324158,0.0231599994003773,0.815860033035278,0.415885001420975,0.812834978103638,0.421330004930496,0.822380006313324,0.428265005350113,0.825174987316132,0.422284990549088,0.827970027923584,0.416305005550385,0.818884968757629,0.410445004701614,0.820259988307953,0.406839996576309,0.829124987125397,0.412620007991791,0.817095041275024,0.400770008563995,0.817905008792877,0.399405002593994,0.815075039863586,0.393570005893707,0.815034985542297,0.397109985351563,0.814994990825653,0.40064999461174,0.816280007362366,0.402135014533997,0.828104972839355,0.393909990787506,0.837074995040894,0.398355007171631,0.825945019721985,0.390320003032684,0.827010035514832,0.38944000005722,0.823104977607727,0.381384998559952,0.822995007038116,0.384974986314774,0.822890043258667,0.388570010662079,0.824880003929138,0.391194999217987,0.821920037269592,0.394080013036728, -0.8228600025177,0.393099993467331,0.821285009384155,0.391090005636215,0.8192999958992,0.392289996147156,0.817309975624084,0.393489986658096,0.82098001241684,0.395054996013641,0.597660005092621,0.0230749994516373,0.599429965019226,0.0237550009042025,0.6005699634552,0.0452650003135204,0.597835004329681,0.045949999243021,0.598800003528595,0.0161649994552135,0.597759962081909,0.0193300005048513,0.602869987487793,0.0111499996855855,0.59983503818512,0.0130000002682209,0.801445007324219,0.445244997739792,0.797535002231598,0.45516499876976,0.815029978752136,0.471309989690781,0.817165017127991,0.458934992551804,0.819294989109039,0.446559995412827,0.805350005626678,0.435324996709824,0.795295000076294,0.427635014057159,0.797850012779236,0.42476499080658,0.796895027160645,0.421359986066818,0.793645024299622,0.423254996538162,0.792744994163513,0.430510014295578,0.805094957351685,0.416209995746613,0.806684970855713,0.414389997720718,0.803775012493134,0.407514989376068,0.802994966506958,0.410984992980957,0.802214980125427,0.414454996585846,0.803510010242462,0.418029993772507,0.7987300157547,0.416034996509552,0.796195030212402,0.419779986143112,0.799555003643036,0.417910009622574,0.801265001296997,0.412290006875992,0.791604995727539,0.0547749996185303,0.791800022125244,0.0506250001490116,0.791409969329834,0.0589249990880489,0.787474989891052,0.0578199997544289,0.787999987602234,0.0539349988102913,0.788524985313416,0.050050001591444,0.855955004692078,0.372734993696213,0.854529976844788,0.37389999628067,0.85607498884201,0.373245000839233,0.857495009899139,0.37228000164032,0.857380032539368,0.371569991111755,0.790760040283203,0.0162499994039536,0.791025042533875,0.0246050003916025,0.765599966049194,0.0216249991208315,0.765030026435852,0.0504399985074997,0.849595010280609,0.369980007410049,0.847965002059937,0.366759985685349,0.84992504119873,0.371715009212494,0.851225018501282,0.373205006122589,0.766674995422363,0.0103900004178286,0.761034965515137,0.0115099996328354,0.749520003795624,0.0244800001382828,0.752349972724915,0.0498399995267391, -0.748664975166321,0.0180200003087521,0.745725035667419,0.0132200000807643,0.845564961433411,0.374525010585785,0.844475030899048,0.375914990901947,0.845824956893921,0.375135004520416,0.846655011177063,0.3731350004673,0.73157000541687,0.0209299996495247,0.732829988002777,0.0493500009179115,0.730875015258789,0.0121149998158216,0.724659979343414,0.0138600002974272,0.83943498134613,0.373620003461838,0.838374972343445,0.372334986925125,0.840224981307983,0.375064998865128,0.840499997138977,0.374904990196228,0.720059990882874,0.0229049995541573,0.721355020999908,0.049490001052618,0.837660014629364,0.377259999513626,0.836380004882813,0.378995001316071,0.837920010089874,0.377990007400513,0.838940024375916,0.375524997711182,0.720049977302551,0.0157999992370605,0.719020009040833,0.0141949998214841,0.704370021820068,0.0218100007623434,0.70618999004364,0.0478999987244606,0.83228999376297,0.376255005598068,0.831349968910217,0.374989986419678,0.833095014095306,0.378275007009506,0.833225011825562,0.377514988183975,0.703530013561249,0.0139849996194243,0.69861501455307,0.0165550000965595,0.694149971008301,0.0245399996638298,0.694339990615845,0.0473949983716011,0.69412499666214,0.0178699996322393,0.692494988441467,0.0150100002065301,0.830799996852875,0.381839990615845,0.829620003700256,0.3838250041008,0.831120014190674,0.382730007171631,0.831984996795654,0.379850000143051,0.678054988384247,0.0234500002115965,0.680719971656799,0.0455650016665459,0.677245020866394,0.0146549995988607,0.672659993171692,0.0167500004172325,0.824360013008118,0.380529999732971,0.822049975395203,0.377654999494553,0.825185000896454,0.382840007543564,0.826665043830872,0.38340499997139,0.666469991207123,0.0253800004720688,0.66779500246048,0.0492650009691715,0.821465015411377,0.389025002717972,0.820734977722168,0.390439987182617,0.822090029716492,0.389829993247986,0.822194993495941,0.387609988451004,0.665870010852814,0.0195400007069111,0.662459969520569,0.0135500002652407,0.651705026626587,0.023700000718236,0.65446001291275,0.0466750003397465,0.815500020980835,0.39172500371933, -0.814895033836365,0.390879988670349,0.816195011138916,0.393530011177063,0.816105008125305,0.392569988965988,0.651085019111633,0.0134650003165007,0.645689964294434,0.0147399995476007,0.63885498046875,0.024295000359416,0.641844987869263,0.0477849990129471,0.637009978294373,0.0167449992150068,0.634554982185364,0.0116699999198318,0.813230037689209,0.402240008115768,0.812080025672913,0.404875010251999,0.813784956932068,0.40292501449585,0.814379990100861,0.399610012769699,0.626309990882874,0.0217199996113777,0.630195021629333,0.045269999653101,0.624080002307892,0.00985999964177608,0.620285034179688,0.0111050000414252,0.805384993553162,0.406314998865128,0.803149998188019,0.404949992895126,0.806120038032532,0.40820500254631,0.807624995708466,0.407680004835129,0.786404967308044,0.0234399996697903,0.604210019111633,0.0518000014126301,0.602050006389618,0.0540699996054173,0.601310014724731,0.0496699996292591,0.603754997253418,0.0481950007379055,0.599895000457764,0.0563400015234947,0.598865032196045,0.0511449985206127,0.752855002880096,0.0580449998378754,0.752600014209747,0.0539450012147427,0.733860015869141,0.0573850013315678,0.733345031738281,0.0533649995923042,0.766265034675598,0.0585500001907349,0.765650033950806,0.0544949993491173,0.720120012760162,0.0572200007736683,0.720735013484955,0.0533550009131432,0.705264985561371,0.0558600015938282,0.705730020999908,0.0518799982964993,0.69384503364563,0.0541799999773502,0.694090008735657,0.0507850013673306,0.681614995002747,0.0523599982261658,0.681164979934692,0.0489649996161461,0.667405009269714,0.0544250011444092,0.667600035667419,0.0518449991941452,0.654614984989166,0.0527850016951561,0.654534995555878,0.0497299991548061,0.641654968261719,0.0537550002336502,0.641749978065491,0.0507699996232986,0.631115019321442,0.0522449985146523,0.630654990673065,0.0487550012767315,0.618889987468719,0.0519649982452393,0.618844985961914,0.048870000988245,0.607120037078857,0.0519649982452393,0.606850028038025,0.0481350012123585,0.791195034980774,0.060454998165369,0.790979981422424,0.0619850009679794, -0.786545038223267,0.0629649981856346,0.787010014057159,0.060394998639822,0.785174965858459,0.0603550001978874,0.778764963150024,0.0608649998903275,0.784675002098083,0.0632750019431114,0.778575003147125,0.0639550015330315,0.772475004196167,0.0646350011229515,0.772350013256073,0.061370000243187,0.766414999961853,0.0610349997878075,0.766559958457947,0.0635249987244606,0.760650038719177,0.06241500005126,0.760475039482117,0.060699999332428,0.757604956626892,0.0599649995565414,0.75772500038147,0.0610949993133545,0.754804968833923,0.059774998575449,0.754729986190796,0.0592299997806549,0.752205014228821,0.0591150000691414,0.751549959182739,0.0601800009608269,0.7482950091362,0.060589998960495,0.749675035476685,0.0589950010180473,0.743965029716492,0.0592750012874603,0.742825031280518,0.061259999871254,0.73735499382019,0.0619350001215935,0.738255023956299,0.0595550015568733,0.733170032501221,0.059629999101162,0.732474982738495,0.0618750005960464,0.72759997844696,0.06182000041008,0.728080034255981,0.0597099997103214,0.725364983081818,0.0590800009667873,0.724844992160797,0.0609849989414215,0.722090005874634,0.0601500011980534,0.722649991512299,0.0584550015628338,0.719115018844604,0.0596400015056133,0.718109965324402,0.0620650015771389,0.714129984378815,0.0639799982309341,0.715579986572266,0.0608300007879734,0.711669981479645,0.0604499988257885,0.710285007953644,0.0639149993658066,0.706434965133667,0.0638549998402596,0.707759976387024,0.0600700005888939,0.704145014286041,0.0596599988639355,0.703019976615906,0.063459999859333,0.699604988098145,0.063060000538826,0.700529992580414,0.0592500008642673,0.698125004768372,0.0586300007998943,0.697385013103485,0.0614450015127659,0.695164978504181,0.0598249994218349,0.695724964141846,0.0580150000751019,0.693570017814636,0.0576950013637543,0.693289995193481,0.061209999024868,0.691420018672943,0.0625950023531914,0.691410005092621,0.0573749989271164,0.687754988670349,0.0563849993050098,0.687449991703033,0.0608399994671345,0.68348503112793,0.0590850003063679,0.684104979038239,0.0553900003433228, -0.68072497844696,0.0557850003242493,0.679830014705658,0.0592099986970425,0.676174998283386,0.0593300014734268,0.677344977855682,0.0561800003051758,0.673765003681183,0.0569100007414818,0.673070013523102,0.059629999101162,0.669965028762817,0.0599250011146069,0.670184969902039,0.0576400011777878,0.667649984359741,0.0576049983501434,0.667895019054413,0.0607899986207485,0.665825009346008,0.0616500005125999,0.665114998817444,0.0575749985873699,0.661830008029938,0.0573300011456013,0.66218501329422,0.061549998819828,0.658550024032593,0.0614450015127659,0.658550024032593,0.0570899993181229,0.654340028762817,0.0572549998760223,0.654060006141663,0.061719998717308,0.649569988250732,0.0619949996471405,0.650125026702881,0.0574150010943413,0.647355020046234,0.0577800013124943,0.647255003452301,0.061370000243187,0.64494001865387,0.0607450008392334,0.644580006599426,0.0581399984657764,0.642289996147156,0.0574849992990494,0.642925024032593,0.0612149983644485,0.640905022621155,0.0616899989545345,0.639994978904724,0.0568300001323223,0.63732498884201,0.0567350015044212,0.637825012207031,0.061124999076128,0.634739995002747,0.0605599991977215,0.634649991989136,0.0566399991512299,0.631060004234314,0.0564850009977818,0.631009995937347,0.060724999755621,0.627279996871948,0.0608900003135204,0.627475023269653,0.0563249997794628,0.624475002288818,0.0562499985098839,0.624559998512268,0.0602600015699863,0.621840000152588,0.0596349984407425,0.621479988098145,0.0561750009655952,0.619204998016357,0.0564399994909763,0.619525015354156,0.0609200000762939,0.617210030555725,0.0621999986469746,0.616935014724731,0.0567100010812283,0.613574981689453,0.0566399991512299,0.61379998922348,0.061599999666214,0.610395014286041,0.0610000006854534,0.610210001468658,0.0565650016069412,0.607249975204468,0.0568850003182888,0.607380032539368,0.0617999993264675,0.60436999797821,0.0625950023531914,0.604290008544922,0.0571999996900558,0.602180004119873,0.0577099993824959,0.602304995059967,0.061344999819994,0.600239992141724,0.0600950010120869,0.600069999694824,0.0582199990749359, -0.783919990062714,0.0643749982118607,0.786180019378662,0.0642149969935417,0.790995001792908,0.0631899982690811,0.769904971122742,0.0652799978852272,0.776910006999969,0.0648249983787537,0.76087498664856,0.063910000026226,0.765390038490295,0.0645949989557266,0.754875004291534,0.060199998319149,0.757874965667725,0.0620549991726875,0.747144997119904,0.0620700009167194,0.751010000705719,0.0611350014805794,0.736649990081787,0.063620001077652,0.741895020008087,0.0628449991345406,0.727315008640289,0.063629999756813,0.731984972953796,0.0636250004172325,0.721629977226257,0.0613100007176399,0.724475026130676,0.0624700002372265,0.713164985179901,0.0660850033164024,0.717400014400482,0.0636949986219406,0.705545008182526,0.0664699971675873,0.709354996681213,0.0662799999117851,0.699710011482239,0.0656049996614456,0.70262998342514,0.066040001809597,0.694580018520355,0.0620599985122681,0.697144985198975,0.0638350024819374,0.689170002937317,0.065700002014637,0.691874980926514,0.0638799965381622,0.682559967041016,0.0630849972367287,0.685864984989166,0.0643950030207634,0.676440000534058,0.0628850013017654,0.679499983787537,0.0629850029945374,0.669695019721985,0.06216000020504,0.673065006732941,0.0625249966979027,0.664539992809296,0.064910002052784,0.667119979858398,0.0635349974036217,0.658179998397827,0.0656000003218651,0.661360025405884,0.0652550011873245,0.650025010108948,0.0660049989819527,0.654100000858307,0.0658000037074089,0.645259976387024,0.0636050030589104,0.647639989852905,0.0648050010204315,0.640735030174255,0.0659599974751472,0.642994999885559,0.0647850036621094,0.634804964065552,0.0644199997186661,0.637769997119904,0.065190002322197,0.627449989318848,0.0649550035595894,0.63112998008728,0.0646850019693375,0.622134983539581,0.0635500028729439,0.624794960021973,0.0642549991607666,0.616770029067993,0.0666349977254868,0.619454979896545,0.0650949999690056,0.610644996166229,0.0651049986481667,0.613705039024353,0.065870001912117,0.605044960975647,0.0667949989438057,0.60784500837326,0.0659499987959862,0.600809991359711,0.0620799995958805, -0.602925002574921,0.0644349977374077,0.858214974403381,0.370559990406036,0.859889984130859,0.368640005588531,0.518319964408875,0.145785003900528,0.521309971809387,0.140909999608994,0.522210001945496,0.157940000295639,0.519894957542419,0.130915001034737,0.517854988574982,0.167235001921654,0.522109985351563,0.125385001301765,0.518635034561157,0.115599997341633,0.523054957389832,0.107620000839233,0.519580006599426,0.0939449965953827,0.521894991397858,0.0855899974703789,0.517269968986511,0.0707700029015541,0.521875023841858,0.0577850006520748,0.518220007419586,0.0379449985921383,0.791280031204224,0.431834995746613,0.789815008640289,0.433155000209808,0.792899966239929,0.421595007181168,0.800680041313171,0.421395003795624,0.802209973335266,0.408619999885559,0.808300018310547,0.412429988384247,0.809849977493286,0.406280010938644,0.815029978752136,0.404009997844696,0.814639985561371,0.395244985818863,0.819445013999939,0.397229999303818,0.818419992923737,0.391505002975464,0.823870003223419,0.392150014638901,0.822120010852814,0.382629990577698,0.828060030937195,0.388684988021851,0.828140020370483,0.383614987134933,0.832130014896393,0.385495007038116,0.8316650390625,0.377420008182526,0.835430026054382,0.382575005292892,0.834800004959106,0.378255009651184,0.838665008544922,0.380389988422394,0.838660001754761,0.373930007219315,0.842164993286133,0.378414988517761,0.842485010623932,0.375409990549088,0.846364974975586,0.377180010080338,0.8473100066185,0.369944989681244,0.851135015487671,0.375869989395142,0.852874994277954,0.373549997806549,0.856284976005554,0.374725013971329,0.857665002346039,0.374264985322952,0.782209992408752,0.107100002467632,0.785305023193359,0.103825002908707,0.785045027732849,0.105530001223087,0.790724992752075,0.102389998733997,0.782445013523102,0.0115649998188019,0.785234987735748,0.0131249995902181,0.776754975318909,0.108245000243187,0.755620002746582,0.101510003209114,0.736495018005371,0.107780002057552,0.720039963722229,0.102399997413158,0.710494995117188,0.105889998376369,0.694609999656677,0.100069999694824, -0.685699999332428,0.107780002057552,0.670904994010925,0.098690003156662,0.661660015583038,0.105875000357628,0.646744966506958,0.100395001471043,0.638199985027313,0.108934998512268,0.623160004615784,0.101549997925758,0.615429997444153,0.107819996774197,0.60259997844696,0.0994549989700317,0.603739976882935,0.102619998157024,0.799865007400513,0.427154988050461,0.799044966697693,0.43291500210762,0.80443000793457,0.426674991846085,0.817584991455078,0.406289994716644,0.814715027809143,0.407234996557236,0.814395010471344,0.410454988479614,0.825474977493286,0.393615007400513,0.82370001077652,0.393844991922379,0.823525011539459,0.39554500579834,0.833464980125427,0.386350005865097,0.831815004348755,0.386734992265701,0.831494987010956,0.387975007295609,0.840075016021729,0.380970001220703,0.838549971580505,0.381235003471375,0.838434994220734,0.382079988718033,0.847944974899292,0.37771001458168,0.846040010452271,0.377779990434647,0.845719993114471,0.378385007381439,0.85717499256134,0.376239985227585,0.857419967651367,0.375254988670349,0.85553503036499,0.37533500790596,0.854784965515137,0.375950008630753,0.796360015869141,0.438540011644363,0.793675005435944,0.444160014390945,0.809759974479675,0.417860001325607,0.807094991207123,0.422269999980927,0.8090900182724,0.428324997425079,0.812080025672913,0.414160013198853,0.819769978523254,0.40132001042366,0.818679988384247,0.403804987668991,0.82165002822876,0.398429989814758,0.828575015068054,0.390614986419678,0.82702499628067,0.392114996910095,0.830034971237183,0.389295011758804,0.835865020751953,0.383899986743927,0.83466500043869,0.385125011205673,0.837149977684021,0.382990002632141,0.842604994773865,0.379359990358353,0.841340005397797,0.380165010690689,0.844164967536926,0.378870010375977,0.851599991321564,0.376839995384216,0.84977000951767,0.377274990081787,0.853195011615753,0.376394987106323,0.855250000953674,0.376920014619827,0.857524991035461,0.377389997243881,0.858714997768402,0.376540005207062,0.86071503162384,0.486319988965988,0.86075496673584,0.474734991788864,0.848415017127991, -0.473520010709763,0.847880005836487,0.485089987516403,0.826619982719421,0.465624988079071,0.825034976005554,0.477584987878799,0.859234988689423,0.379400014877319,0.858850002288818,0.380499988794327,0.856274962425232,0.379220008850098,0.85512501001358,0.38018000125885,0.858464956283569,0.381785005331039,0.85808002948761,0.383074998855591,0.853994965553284,0.381345003843307,0.852864980697632,0.382510006427765,0.857764959335327,0.384135007858276,0.857445001602173,0.385199993848801,0.851954996585846,0.383599996566772,0.85104501247406,0.384685009717941,0.857089996337891,0.386629998683929,0.856734991073608,0.388060003519058,0.85004997253418,0.386110007762909,0.849054992198944,0.387535005807877,0.85639500617981,0.390325009822845,0.85605001449585,0.392585009336472,0.848075032234192,0.389634996652603,0.847095012664795,0.39173498749733,0.855615019798279,0.395379990339279,0.855185031890869,0.398175001144409,0.845790028572083,0.394169986248016,0.844489991664886,0.396600008010864,0.85453999042511,0.402244985103607,0.853895008563995,0.406314998865128,0.842710018157959,0.399955004453659,0.840934991836548,0.403315007686615,0.853269994258881,0.411049991846085,0.852645039558411,0.415789991617203,0.83917498588562,0.407570004463196,0.837414979934692,0.411819994449615,0.852304995059967,0.419719994068146,0.851965010166168,0.423649996519089,0.836499989032745,0.415630012750626,0.835579991340637,0.419445008039474,0.850844979286194,0.432475000619888,0.833060026168823,0.426809996366501,0.820834994316101,0.43741500377655,0.859045028686523,0.375919997692108,0.859375,0.375304996967316,0.793570041656494,0.100814998149872,0.793545007705688,0.0623200014233589,0.860729992389679,0.367734998464584,0.987125039100647,0.0653650015592575,0.986410021781921,0.0691900029778481,0.988620042800903,0.0666650012135506,0.987164974212646,0.0701399967074394,0.985450029373169,0.0838600024580956,0.985294997692108,0.0832749977707863,0.935325026512146,0.421635001897812,0.935099959373474,0.42425999045372,0.9357750415802,0.424095004796982,0.936154961585999,0.421880006790161, -0.935485005378723,0.401279985904694,0.934834957122803,0.401324987411499,0.934514999389648,0.418870002031326,0.935360014438629,0.41899499297142,0.936200022697449,0.419120013713837,0.936129987239838,0.401235014200211,0.90007495880127,0.485724985599518,0.929319977760315,0.461010009050369,0.989239990711212,0.0507050007581711,0.989014983177185,0.0552150011062622,0.989459991455078,0.0461900010704994,0.989745020866394,0.0466299988329411,0.990314960479736,0.0504000000655651,0.990890026092529,0.0541649982333183,0.989405035972595,0.0579949989914894,0.989794969558716,0.0607750006020069,0.991840004920959,0.0578299984335899,0.992794990539551,0.0615000016987324,0.988460004329681,0.0630699992179871,0.990710020065308,0.0640799999237061,0.938459992408752,0.430364996194839,0.939059972763062,0.428274989128113,0.937855005264282,0.432455003261566,0.932720005512238,0.449600011110306,0.936115026473999,0.438185006380081,0.874954998493195,0.494010001420975,0.601599991321564,0.0832300037145615,0.601435005664825,0.0838050022721291,0.599645018577576,0.0704850032925606,0.600419998168945,0.0693200007081032,0.602535009384155,0.0959549993276596,0.60233998298645,0.0963800027966499,0.786350011825562,0.424264997243881,0.786125004291534,0.421635001897812,0.785290002822876,0.421880006790161,0.78567498922348,0.424095004796982,0.786939978599548,0.418870002031326,0.786620020866394,0.401324987411499,0.785969972610474,0.401279985904694,0.786095023155212,0.41899499297142,0.785320043563843,0.401235014200211,0.785255014896393,0.419120013713837,0.792135000228882,0.461010009050369,0.810485005378723,0.479084998369217,0.597805023193359,0.0508450008928776,0.597559988498688,0.0463900007307529,0.598044991493225,0.0553050003945827,0.596194982528687,0.0542649999260902,0.596740007400513,0.0505449995398521,0.597280025482178,0.046824999153614,0.597665011882782,0.0580499991774559,0.5972900390625,0.0607950016856194,0.594334959983826,0.0615000016987324,0.595265030860901,0.0578799992799759,0.598614990711212,0.0630799978971481,0.59994500875473,0.0653650015592575,0.598510026931763, -0.0666650012135506,0.596419990062714,0.0640799999237061,0.783764958381653,0.433025002479553,0.785335004329681,0.438185006380081,0.788735032081604,0.449600011110306,0.846419990062714,0.494109988212585,0.860729992389679,0.495665013790131,0.821295022964478,0.48581999540329,0.518020033836365,0.0225900001823902,0.514315009117126,0.0211900006979704,0.939895033836365,0.42493999004364,0.939915001392365,0.422315001487732,0.781560003757477,0.42493999004364,0.782389998435974,0.428274989128113,0.781540036201477,0.422315001487732,0.523645043373108,0.337060004472733,0.520319998264313,0.340689986944199,0.524425029754639,0.336620002985001,0.984865009784698,0.0961299985647202,0.985119998455048,0.096780002117157,0.517650008201599,0.344235002994537,0.523620009422302,0.0266650002449751,0.524659991264343,0.0271600000560284,0.783079981803894,0.430649995803833,0.85842502117157,0.293294996023178,0.887984991073608,0.287075012922287,0.888119995594025,0.275034993886948,0.858269989490509,0.284579992294312,0.917540013790131,0.280860006809235,0.917964994907379,0.265495002269745,0.918395042419434,0.250124990940094,0.888255000114441,0.262995004653931,0.858114957809448,0.275860011577606,0.798770010471344,0.255560010671616,0.790464997291565,0.253529995679855,0.783004999160767,0.266714990139008,0.798830032348633,0.269885003566742,0.775539994239807,0.279895007610321,0.798884987831116,0.284209996461868,0.771865010261536,0.26426500082016,0.766065001487732,0.275855004787445,0.777665019035339,0.252680003643036,0.755985021591187,0.250299990177155,0.752869963645935,0.258834987878799,0.749755024909973,0.267369985580444,0.975865006446838,0.256339997053146,0.973235011100769,0.248524993658066,0.964509963989258,0.252249985933304,0.968394994735718,0.26155498623848,0.970600008964539,0.240714997053146,0.960619986057281,0.242939993739128,0.937579989433289,0.246724992990494,0.944509983062744,0.258940011262894,0.951444983482361,0.271154999732971,0.924515008926392,0.248280003666878,0.933234989643097,0.261905014514923,0.941959977149963,0.275534987449646,0.747105002403259, -0.248769998550415,0.745010018348694,0.255849987268448,0.742919981479645,0.262930005788803,0.785679996013641,0.138769999146461,0.779884994029999,0.138655006885529,0.77961003780365,0.125970005989075,0.785174965858459,0.126629993319511,0.774089992046356,0.138539999723434,0.774044990539551,0.125310003757477,0.736204981803894,0.139424994587898,0.732859969139099,0.139400005340576,0.734149992465973,0.128240004181862,0.738065004348755,0.129344999790192,0.729519963264465,0.139369994401932,0.73022997379303,0.127134993672371,0.692534983158112,0.139514997601509,0.687884986400604,0.139235004782677,0.689625024795532,0.127670004963875,0.694485008716583,0.127935007214546,0.683239996433258,0.138950005173683,0.684759974479675,0.127409994602203,0.632189989089966,0.134574994444847,0.626204967498779,0.129659995436668,0.627035021781921,0.12593500316143,0.632080018520355,0.133705005049706,0.758795022964478,0.158924996852875,0.755120038986206,0.158344998955727,0.755275011062622,0.156084999442101,0.759095013141632,0.156474992632866,0.75144499540329,0.157765001058578,0.751459956169128,0.155695006251335,0.751469969749451,0.153624996542931,0.755434989929199,0.153824999928474,0.759395003318787,0.154029995203018,0.573024988174438,0.15072500705719,0.573014974594116,0.152565002441406,0.569864988327026,0.150285005569458,0.568645000457764,0.148359999060631,0.573004961013794,0.154400005936623,0.571079969406128,0.152209997177124,0.578114986419678,0.16839000582695,0.578114986419678,0.171214997768402,0.573040008544922,0.171200007200241,0.573040008544922,0.168950006365776,0.573035001754761,0.166700005531311,0.578114986419678,0.165564998984337,0.716529965400696,0.156010001897812,0.713789999485016,0.156729996204376,0.713620007038116,0.155019998550415,0.716580033302307,0.154770001769066,0.711054980754852,0.157454997301102,0.710654973983765,0.155265003442764,0.710255026817322,0.153080001473427,0.713445007801056,0.153304994106293,0.71663498878479,0.15353000164032,0.573040008544922,0.122550003230572,0.573670029640198,0.124669998884201,0.569840013980865,0.123975001275539, -0.56742000579834,0.121234998106956,0.574299991130829,0.126790001988411,0.572265028953552,0.126715004444122,0.578114986419678,0.136840000748634,0.578114986419678,0.138144999742508,0.573104977607727,0.139719992876053,0.573090016841888,0.13816000521183,0.573080003261566,0.136600002646446,0.578114986419678,0.135535001754761,0.6579350233078,0.154915004968643,0.653689980506897,0.155285000801086,0.653840005397797,0.152960002422333,0.658439993858337,0.152820006012917,0.6494500041008,0.15565499663353,0.649240016937256,0.153095006942749,0.649029970169067,0.150539994239807,0.653990030288696,0.150635004043579,0.658949971199036,0.15072999894619,0.573009967803955,0.0732000023126602,0.572990000247955,0.0786599963903427,0.570360004901886,0.0739500001072884,0.568840026855469,0.0670849978923798,0.572965025901794,0.0841199979186058,0.571879982948303,0.080815002322197,0.578114986419678,0.104120001196861,0.578114986419678,0.106770001351833,0.573055028915405,0.108290001749992,0.573050022125244,0.105625003576279,0.573040008544922,0.102964997291565,0.578114986419678,0.101470001041889,0.608160018920898,0.14190499484539,0.612424969673157,0.141735002398491,0.612855017185211,0.150279998779297,0.608955025672913,0.150454998016357,0.616690039634705,0.14156000316143,0.616760015487671,0.150099992752075,0.567295014858246,0.033415000885725,0.565510034561157,0.0312200002372265,0.567165017127991,0.0311799999326468,0.568554997444153,0.0335050001740456,0.563719987869263,0.0290300007909536,0.565770030021667,0.0288500003516674,0.573104977607727,0.0509000010788441,0.573064982891083,0.0454250015318394,0.578114986419678,0.0454550012946129,0.578114986419678,0.0509099997580051,0.578114986419678,0.0563649982213974,0.573150038719177,0.0563799999654293,0.785430014133453,0.1581149995327,0.779744982719421,0.157839998602867,0.779844999313354,0.155534997582436,0.785665035247803,0.155680000782013,0.774060010910034,0.157570004463196,0.774024963378906,0.155395001173019,0.773985028266907,0.153219997882843,0.779945015907288,0.153229996562004,0.785899996757507,0.153239995241165, -0.769734978675842,0.157859995961189,0.767605006694794,0.159205004572868,0.766990005970001,0.156560003757477,0.769039988517761,0.155729994177818,0.765480041503906,0.160549998283386,0.76493501663208,0.157389998435974,0.764394998550415,0.154235005378723,0.766369998455048,0.153915002942085,0.76834499835968,0.153600007295609,0.766584992408752,0.138455003499985,0.764994978904724,0.138290002942085,0.765765011310577,0.130174994468689,0.768110036849976,0.126719996333122,0.763409972190857,0.138129994273186,0.763419985771179,0.133625000715256,0.733940005302429,0.156139999628067,0.731500029563904,0.156020000576973,0.731774985790253,0.154569998383522,0.734425008296967,0.154620006680489,0.729065001010895,0.155894994735718,0.729130029678345,0.154520004987717,0.729189991950989,0.153145000338554,0.732055008411407,0.153119996190071,0.734915018081665,0.153095006942749,0.726135015487671,0.156344994902611,0.723479986190796,0.157285004854202,0.723179996013641,0.155300006270409,0.725520014762878,0.154799997806549,0.720825016498566,0.158224999904633,0.720839977264404,0.155794993042946,0.720860004425049,0.15336500108242,0.722885012626648,0.153310000896454,0.724905014038086,0.153255000710487,0.724020004272461,0.138614997267723,0.722514986991882,0.138339996337891,0.722289979457855,0.131585001945496,0.72341001033783,0.130370005965233,0.721014976501465,0.138060003519058,0.721175014972687,0.132805004715919,0.690625011920929,0.156910002231598,0.687030017375946,0.15650500357151,0.687394976615906,0.154414996504784,0.691290020942688,0.155025005340576,0.683430016040802,0.156104996800423,0.683499991893768,0.153805002570152,0.683570027351379,0.151500001549721,0.68775999546051,0.152319997549057,0.691954970359802,0.153145000338554,0.671895027160645,0.155715003609657,0.669009983539581,0.156650006771088,0.668784976005554,0.154499992728233,0.671405017375946,0.153630003333092,0.666119992733002,0.157584995031357,0.666170001029968,0.155365005135536,0.666220009326935,0.153150007128716,0.668565034866333,0.15234999358654,0.670910000801086,0.151549994945526,0.670444965362549, -0.138815000653267,0.668565034866333,0.137830004096031,0.668304979801178,0.130989998579025,0.670444965362549,0.12924000620842,0.666684985160828,0.136844992637634,0.666164994239807,0.132740005850792,0.632335007190704,0.151769995689392,0.624485015869141,0.149700000882149,0.624729990959167,0.141849994659424,0.632274985313416,0.139060005545616,0.623889982700348,0.153290003538132,0.620265007019043,0.15412500500679,0.620445013046265,0.152015000581741,0.624189972877502,0.15149499475956,0.616634964942932,0.154964998364449,0.616694986820221,0.152529999613762,0.620620012283325,0.149900004267693,0.620710015296936,0.141705006361008,0.621484994888306,0.128490000963211,0.616765022277832,0.127314999699593,0.745460033416748,0.157374992966652,0.743484973907471,0.158244997262955,0.74326503276825,0.155900001525879,0.745114982128143,0.155499994754791,0.741514980792999,0.159109994769096,0.741415023803711,0.156299993395805,0.741315007209778,0.153494998812675,0.743044972419739,0.153559997677803,0.744769990444183,0.153624996542931,0.74439001083374,0.138174995779991,0.742815017700195,0.138180002570152,0.742470026016235,0.1300999969244,0.743640005588531,0.128700003027916,0.74124002456665,0.138190001249313,0.741299986839294,0.131500005722046,0.75891500711441,0.138280004262924,0.755154967308044,0.13816000521183,0.753715038299561,0.12610000371933,0.758044958114624,0.127845004200935,0.751394987106323,0.138034999370575,0.749379992485046,0.124355003237724,0.578114986419678,0.150519996881485,0.578114986419678,0.152319997549057,0.578114986419678,0.148719996213913,0.578114986419678,0.157879993319511,0.578114986419678,0.159795001149178,0.573035001754761,0.162204995751381,0.573024988174438,0.160245001316071,0.573019981384277,0.15828500688076,0.578114986419678,0.155965000391006,0.566910028457642,0.159834995865822,0.568920016288757,0.157824993133545,0.564895033836365,0.16185000538826,0.578145027160645,0.180230006575584,0.578114986419678,0.18155500292778,0.573040008544922,0.18155500292778,0.573050022125244,0.180224999785423,0.573055028915405,0.178890004754066, -0.578175008296967,0.178904995322227,0.567730009555817,0.18019500374794,0.56716001033783,0.18155500292778,0.565235018730164,0.18155500292778,0.566084980964661,0.18019999563694,0.566929996013641,0.178845003247261,0.568305015563965,0.178829997777939,0.570100009441376,0.168404996395111,0.569630026817322,0.165694996714592,0.57056999206543,0.17111499607563,0.705550014972687,0.158040001988411,0.701314985752106,0.158684998750687,0.700904965400696,0.156444996595383,0.70456999540329,0.155849993228912,0.697080016136169,0.159329995512962,0.697234988212585,0.157039999961853,0.697394967079163,0.154750004410744,0.70048999786377,0.154204994440079,0.703590035438538,0.153659999370575,0.702620029449463,0.139675006270409,0.700425028800964,0.138290002942085,0.700209975242615,0.132935002446175,0.702014982700348,0.130514994263649,0.698230028152466,0.136899992823601,0.698400020599365,0.1353600025177,0.717234969139099,0.141065001487732,0.713365018367767,0.140530005097389,0.714744985103607,0.12652499973774,0.718874990940094,0.129775002598763,0.709495007991791,0.139994993805885,0.71061497926712,0.123280003666878,0.578114986419678,0.124080002307892,0.578114986419678,0.126190006732941,0.578114986419678,0.121969997882843,0.578114986419678,0.13128499686718,0.578114986419678,0.132660001516342,0.573055028915405,0.1338250041008,0.573055028915405,0.13230499625206,0.573050022125244,0.13077999651432,0.578114986419678,0.129910007119179,0.566980004310608,0.13272500038147,0.56817501783371,0.131995007395744,0.565784990787506,0.133450001478195,0.578114986419678,0.143364995718002,0.578114986419678,0.145174995064735,0.573050022125244,0.14708499610424,0.573060035705566,0.145235002040863,0.573069989681244,0.143384993076324,0.578114986419678,0.141554996371269,0.567564964294434,0.145675003528595,0.568515002727509,0.14444500207901,0.566619992256165,0.14690999686718,0.568614959716797,0.137325003743172,0.567539989948273,0.13510499894619,0.569689989089966,0.139544993638992,0.638029992580414,0.154624998569489,0.635120034217834,0.155029997229576,0.634975016117096,0.15310500562191, -0.637674987316132,0.152600005269051,0.632215023040771,0.155440002679825,0.632274985313416,0.153604999184608,0.634829998016357,0.151175007224083,0.637319982051849,0.150580003857613,0.637099981307983,0.139819994568825,0.634684979915619,0.13944000005722,0.634760022163391,0.131595000624657,0.63732498884201,0.128615006804466,0.659950017929077,0.139624997973442,0.654240012168884,0.139404997229576,0.655939996242523,0.126110002398491,0.662190020084381,0.128344997763634,0.648535013198853,0.139190003275871,0.649685025215149,0.123870000243187,0.578114986419678,0.0782549977302551,0.578114986419678,0.0833100005984306,0.578114986419678,0.0732000023126602,0.578114986419678,0.092289999127388,0.578114986419678,0.095260001718998,0.573024988174438,0.0966999977827072,0.573009967803955,0.09358000010252,0.572995007038116,0.0904600024223328,0.578114986419678,0.0893250033259392,0.567070007324219,0.092229999601841,0.568899989128113,0.0906350016593933,0.565245032310486,0.0938249975442886,0.578114986419678,0.114904999732971,0.578114986419678,0.117514997720718,0.573040008544922,0.118029996752739,0.573045015335083,0.115649998188019,0.573050022125244,0.113265000283718,0.578114986419678,0.112295001745224,0.566249966621399,0.116274997591972,0.568769991397858,0.114514999091625,0.563735008239746,0.118040002882481,0.568830013275146,0.102964997291565,0.568310022354126,0.0977149978280067,0.569350004196167,0.108214996755123,0.602620005607605,0.136830002069473,0.605390012264252,0.139369994401932,0.605645000934601,0.151899993419647,0.60233998298645,0.153339996933937,0.604910016059875,0.131109997630119,0.606624960899353,0.129720002412796,0.603195011615753,0.132495000958443,0.606169998645782,0.12593500316143,0.611469984054565,0.124459996819496,0.611694991588593,0.128519997000694,0.616775035858154,0.122984997928143,0.573040008544922,0.0312200002372265,0.573040008544922,0.0290300007909536,0.578114986419678,0.0294100008904934,0.578114986419678,0.0315449982881546,0.578114986419678,0.0336799994111061,0.573040008544922,0.033415000885725,0.578114986419678,0.0395700000226498, -0.573055028915405,0.0394200012087822,0.569324970245361,0.0394500009715557,0.570095002651215,0.0453950017690659,0.578114986419678,0.0626749992370605,0.573050022125244,0.0619699992239475,0.563679993152618,0.062270000576973,0.568549990653992,0.0562550015747547,0.567295014858246,0.0561800003051758,0.56828498840332,0.0507699996232986,0.5693199634552,0.0508249998092651,0.56927502155304,0.0453599989414215,0.792719960212708,0.152639999985695,0.792719960212708,0.156025007367134,0.790955007076263,0.15591000020504,0.791059970855713,0.152875006198883,0.792715013027191,0.159404993057251,0.79085499048233,0.158950001001358,0.788990020751953,0.158490002155304,0.789195001125336,0.155799999833107,0.789394974708557,0.15310999751091,0.573040008544922,0.173645004630089,0.578114986419678,0.173665001988411,0.578114986419678,0.17611500620842,0.573040008544922,0.176090002059937,0.568614959716797,0.176155000925064,0.56923496723175,0.173675000667572,0.570095002651215,0.173580005764961,0.569615006446838,0.176045000553131,0.569849967956543,0.171200007200241,0.791020035743713,0.130030006170273,0.792739987373352,0.130805000662804,0.792739987373352,0.13756999373436,0.791054964065552,0.137950003147125,0.789375007152557,0.138335004448891,0.789304971694946,0.129254996776581,0.573035001754761,0.164454996585846,0.578114986419678,0.162680000066757,0.770339965820313,0.13850000500679,0.771165013313293,0.153410002589226,0.568655014038086,0.165549993515015,0.565614998340607,0.163690000772476,0.567260026931763,0.163770005106926,0.562574982643127,0.161829993128777,0.768985033035278,0.123839996755123,0.773259997367859,0.122974999248981,0.771080017089844,0.126014992594719,0.777530014514923,0.12211500108242,0.761165022850037,0.138205006718636,0.761895000934601,0.15412999689579,0.573009967803955,0.156344994902611,0.578114986419678,0.154139995574951,0.75798499584198,0.125269994139671,0.760715007781982,0.128889992833138,0.760730028152466,0.130734995007515,0.763450026512146,0.132504999637604,0.567739963531494,0.15786500275135,0.568984985351563,0.155169993638992,0.569999992847443, -0.155019998550415,0.570235013961792,0.152469992637634,0.573040008544922,0.148904994130135,0.578114986419678,0.146950006484985,0.747889995574951,0.138105005025864,0.748120009899139,0.153624996542931,0.743214964866638,0.125784993171692,0.746474981307983,0.123664997518063,0.746510028839111,0.12652499973774,0.74974000453949,0.121550001204014,0.567394971847534,0.147880002856255,0.566089987754822,0.147320002317429,0.567629992961884,0.147634997963905,0.564785003662109,0.146754994988441,0.738719999790192,0.138805001974106,0.738115012645721,0.153294995427132,0.573085010051727,0.141554996371269,0.578114986419678,0.139850005507469,0.567219972610474,0.144940003752708,0.567970037460327,0.142344996333122,0.56910502910614,0.141994997859001,0.56871497631073,0.139754995703697,0.738849997520447,0.126049995422363,0.740100026130676,0.12780499458313,0.739684998989105,0.130419999361038,0.741355001926422,0.129559993743896,0.573069989681244,0.135214999318123,0.578114986419678,0.134094998240471,0.726769983768463,0.138995006680489,0.727050006389618,0.153200000524521,0.565959990024567,0.13459500670433,0.564839959144592,0.133904993534088,0.56666499376297,0.134279996156693,0.563719987869263,0.133214995265007,0.722904980182648,0.127859994769096,0.726925015449524,0.125835001468658,0.72681999206543,0.128749996423721,0.730944991111755,0.12381500005722,0.719125032424927,0.139559999108315,0.71875,0.15344999730587,0.573675036430359,0.128784999251366,0.578114986419678,0.128049999475479,0.719579994678497,0.126684993505478,0.720470011234283,0.128979995846748,0.72002500295639,0.131290003657341,0.721355020999908,0.131274998188019,0.566794991493225,0.132349997758865,0.568984985351563,0.129600003361702,0.570219993591309,0.129354998469353,0.571179986000061,0.126849994063377,0.573040008544922,0.120290003716946,0.578114986419678,0.119740001857281,0.706054985523224,0.139835000038147,0.706920027732849,0.15336999297142,0.701690018177032,0.128154993057251,0.706310033798218,0.124145001173019,0.706314980983734,0.126894995570183,0.710934996604919,0.120140001177788,0.565855026245117, -0.120975002646446,0.56349503993988,0.119575001299381,0.565575003623962,0.119640000164509,0.56114000082016,0.118170000612736,0.695384979248047,0.138209998607635,0.694674968719482,0.153944998979568,0.573055028915405,0.110775001347065,0.578114986419678,0.109535001218319,0.567584991455078,0.114990003407001,0.567950010299683,0.111654996871948,0.56905996799469,0.111364997923374,0.568310022354126,0.108319997787476,0.564365029335022,0.116580002009869,0.563464999198914,0.116539999842644,0.565954983234406,0.114964999258518,0.560979962348938,0.118115000426769,0.573035001754761,0.0998300015926361,0.578114986419678,0.0983650013804436,0.676845014095306,0.138885006308556,0.677240014076233,0.151525005698204,0.566954970359802,0.0963649973273277,0.564999997615814,0.094760000705719,0.566779971122742,0.095770001411438,0.563045024871826,0.0931600034236908,0.670554995536804,0.12644499540329,0.677860021591187,0.125434994697571,0.677600026130676,0.128325000405312,0.685169994831085,0.124420002102852,0.663314998149872,0.138235002756119,0.662585020065308,0.151940003037453,0.572979986667633,0.087289996445179,0.578114986419678,0.0863149985671043,0.662954986095428,0.125165000557899,0.664550006389618,0.128490000963211,0.664179980754852,0.130545005202293,0.666149973869324,0.131819993257523,0.567809998989105,0.0908199995756149,0.569499969482422,0.0854000002145767,0.570389986038208,0.0857250019907951,0.571195006370544,0.079985000193119,0.5730299949646,0.0675849989056587,0.578114986419678,0.0679399967193604,0.642814993858337,0.139504998922348,0.643175005912781,0.15056000649929,0.637099981307983,0.125165000557899,0.643615007400513,0.122634999454021,0.643504977226257,0.126240000128746,0.650134980678558,0.120104998350143,0.567809998989105,0.0674500018358231,0.564759969711304,0.0648799985647202,0.566259980201721,0.0646750032901764,0.561710000038147,0.0623149983584881,0.787649989128113,0.153174996376038,0.787524998188019,0.138549998402596,0.609420001506805,0.153929993510246,0.606364965438843,0.156705006957054,0.606005012989044,0.154300004243851,0.609184980392456, -0.152195006608963,0.603314995765686,0.159484997391701,0.602824985980988,0.156409993767738,0.762135028839111,0.159740000963211,0.762014985084534,0.156935006380081,0.748454988002777,0.157570004463196,0.748284995555878,0.155595004558563,0.771899998188019,0.157714992761612,0.771530032157898,0.155560001730919,0.737725019454956,0.157625004649162,0.737919986248016,0.155460000038147,0.72759997844696,0.156120002269745,0.727325022220612,0.154660001397133,0.718675017356873,0.157120004296303,0.718710005283356,0.155285000801086,0.70830500125885,0.157745003700256,0.70761501789093,0.155560001730919,0.693854987621307,0.158120006322861,0.694265007972717,0.156035006046295,0.677664995193481,0.15591000020504,0.677450001239777,0.153714999556541,0.662024974822998,0.15625,0.662304997444153,0.154094994068146,0.643739998340607,0.155139997601509,0.643455028533936,0.1528500020504,0.613025009632111,0.154445007443428,0.612940013408661,0.152360007166862,0.778180003166199,0.185324996709824,0.782979965209961,0.185320004820824,0.781960010528564,0.197595000267029,0.778759956359863,0.198410004377365,0.787779986858368,0.185314998030663,0.785160005092621,0.196785002946854,0.734395027160645,0.187069997191429,0.737945020198822,0.18716000020504,0.739435017108917,0.196869999170303,0.735920011997223,0.197764992713928,0.741490006446838,0.187254995107651,0.742950022220612,0.195975005626678,0.686794996261597,0.185100004076958,0.690945029258728,0.185004994273186,0.692004978656769,0.196050003170967,0.68896496295929,0.196459993720055,0.695095002651215,0.184909999370575,0.695044994354248,0.195639997720718,0.628489971160889,0.192770004272461,0.622045040130615,0.19811999797821,0.622825026512146,0.194564998149872,0.628889977931976,0.191654995083809,0.762775003910065,0.16287000477314,0.762674987316132,0.166229993104935,0.758249998092651,0.166240006685257,0.758360028266907,0.162939995527267,0.762570023536682,0.169589996337891,0.758139967918396,0.169540002942085,0.753715038299561,0.169485002756119,0.753829956054688,0.166244998574257,0.753939986228943,0.163004994392395, -0.84512996673584,0.352299988269806,0.844220042228699,0.352189987897873,0.843620002269745,0.353165000677109,0.84486997127533,0.352894991636276,0.843315005302429,0.35207998752594,0.84237003326416,0.353435009717941,0.859295010566711,0.352344989776611,0.859284996986389,0.351545006036758,0.858539998531342,0.351554989814758,0.858819961547852,0.352344989776611,0.859274983406067,0.350744992494583,0.858265042304993,0.350764989852905,0.857249975204468,0.350789994001389,0.857795000076294,0.351570010185242,0.858345031738281,0.352344989776611,0.717435002326965,0.166119992733002,0.717620015144348,0.168795004487038,0.71424001455307,0.169129997491837,0.714164972305298,0.166604995727539,0.71780002117157,0.171470001339912,0.714314997196198,0.171660006046295,0.710829973220825,0.171849995851517,0.710865020751953,0.169469997286797,0.710895001888275,0.167089998722076,0.831679999828339,0.347000002861023,0.830754995346069,0.346455007791519,0.829975008964539,0.347925007343292,0.831075012683868,0.347954988479614,0.8298299908638,0.345914989709854,0.828875005245209,0.347894996404648,0.83746999502182,0.3473199903965,0.839190006256104,0.348159998655319,0.845999956130981,0.346029996871948,0.844825029373169,0.344994992017746,0.840909957885742,0.3490050137043,0.847175002098083,0.347065001726151,0.853444993495941,0.345120012760162,0.852810025215149,0.343894988298416,0.852180004119873,0.342669993638992,0.658850014209747,0.167239993810654,0.659714996814728,0.169455006718636,0.655884981155396,0.169485002756119,0.655330002307892,0.166995003819466,0.660579979419708,0.171664997935295,0.656440019607544,0.171969994902611,0.652294993400574,0.172275006771088,0.652050018310547,0.169510006904602,0.651804983615875,0.166745007038116,0.809504985809326,0.33144998550415,0.806429982185364,0.329899996519089,0.805705010890961,0.330904990434647,0.808925032615662,0.33195498585701,0.80334997177124,0.328350007534027,0.80248498916626,0.329860001802444,0.819959998130798,0.332870006561279,0.82328999042511,0.335880011320114,0.834095001220703,0.330029994249344,0.831584990024567, -0.326375007629395,0.826619982719421,0.338894993066788,0.83660501241684,0.333680003881454,0.846594989299774,0.328465014696121,0.844905018806458,0.324175000190735,0.843214988708496,0.319884985685349,0.61004501581192,0.182310000061989,0.604645013809204,0.182325005531311,0.60639500617981,0.172515004873276,0.611289978027344,0.172600001096725,0.616180002689362,0.172690004110336,0.615445017814636,0.182294994592667,0.775754988193512,0.327244997024536,0.777339994907379,0.324519991874695,0.778050005435944,0.320760011672974,0.776120007038116,0.322355002164841,0.778919994831085,0.321790009737015,0.779980003833771,0.319164991378784,0.787274956703186,0.163344994187355,0.787729978561401,0.166380003094673,0.782750010490417,0.166219994425774,0.782530009746552,0.163055002689362,0.788185000419617,0.16941499710083,0.782970011234283,0.169385001063347,0.777760028839111,0.169355005025864,0.77777498960495,0.166065007448196,0.777785003185272,0.162770003080368,0.769544959068298,0.161779999732971,0.768620014190674,0.164869993925095,0.766914963722229,0.165010005235672,0.767439961433411,0.161829993128777,0.767699956893921,0.167960003018379,0.766384959220886,0.168194994330406,0.765074968338013,0.168430000543594,0.765205025672913,0.165154993534088,0.765339970588684,0.161880001425743,0.764150023460388,0.185469999909401,0.765689969062805,0.186010003089905,0.767359972000122,0.193605005741119,0.763904988765717,0.189869999885559,0.767225027084351,0.186550006270409,0.770820021629333,0.197339996695518,0.738584995269775,0.162235006690025,0.739700019359589,0.165515005588531,0.736374974250793,0.165940001606941,0.735489964485168,0.162654995918274,0.740810036659241,0.168799996376038,0.737254977226257,0.169225007295609,0.733700037002563,0.169654995203018,0.733049988746643,0.166364997625351,0.732394993305206,0.163075000047684,0.72623997926712,0.163564994931221,0.726795017719269,0.166969999670982,0.724759995937347,0.166390001773834,0.724234998226166,0.163200005888939,0.727344989776611,0.170375004410744,0.725284993648529,0.16957999765873,0.723224997520447,0.168785005807877, -0.722725033760071,0.165810003876686,0.72222501039505,0.162839993834496,0.724629998207092,0.185774996876717,0.726040005683899,0.18656499683857,0.726209998130798,0.192809998989105,0.724545001983643,0.191200003027916,0.727445006370544,0.187360003590584,0.727874994277954,0.194419994950294,0.691565036773682,0.166179999709129,0.692555010318756,0.1684750020504,0.688955008983612,0.169310003519058,0.688109993934631,0.167080000042915,0.693549990653992,0.170764997601509,0.689805030822754,0.171544998884201,0.686065018177032,0.172325000166893,0.685360014438629,0.170149996876717,0.684650003910065,0.16797499358654,0.674515008926392,0.167380005121231,0.674480020999908,0.169715002179146,0.670114994049072,0.168775007128716,0.669905006885529,0.166345000267029,0.674449980258942,0.172049999237061,0.670329988002777,0.171204999089241,0.666204988956451,0.170359998941422,0.665750026702881,0.167834997177124,0.665295004844666,0.165309995412827,0.667034983634949,0.187095001339912,0.67010498046875,0.186104997992516,0.669200003147125,0.192894995212555,0.6650750041008,0.190809994935989,0.67316997051239,0.185114994645119,0.673330008983612,0.19497999548912,0.626044988632202,0.172354996204376,0.6319699883461,0.170634999871254,0.630039989948273,0.187285006046295,0.625265002250671,0.181785002350807,0.625455021858215,0.167594999074936,0.625750005245209,0.169974997639656,0.620934963226318,0.16991999745369,0.620764970779419,0.167319998145103,0.621109962463379,0.172519996762276,0.616124987602234,0.169864997267723,0.616070032119751,0.167044997215271,0.620355010032654,0.182040005922318,0.617684960365295,0.195759996771812,0.612545013427734,0.196960002183914,0.746845006942749,0.162404999136925,0.746644973754883,0.165484994649887,0.745064973831177,0.165700003504753,0.745074987411499,0.162774994969368,0.7464399933815,0.168569996953011,0.745059967041016,0.168630003929138,0.743680000305176,0.168689996004105,0.743489980697632,0.165920004248619,0.743300020694733,0.163145005702972,0.743965029716492,0.185819998383522,0.745540022850037,0.186704993247986,0.745939970016479, -0.194690003991127,0.74413001537323,0.193130001425743,0.747115015983582,0.187590003013611,0.747745037078857,0.196250006556511,0.754170000553131,0.186979994177818,0.757804989814758,0.186804994940758,0.758525013923645,0.197369992733002,0.756110012531281,0.198424994945526,0.76144003868103,0.186629995703697,0.760944962501526,0.196315005421638,0.844130039215088,0.350394994020462,0.846099972724915,0.350780010223389,0.850669980049133,0.349379986524582,0.849354982376099,0.348659992218018,0.848075032234192,0.351164996623993,0.851984977722168,0.350095003843307,0.85589998960495,0.349025011062622,0.855239987373352,0.347979992628098,0.854579985141754,0.346929997205734,0.850250005722046,0.351424992084503,0.853410005569458,0.350665003061295,0.852419972419739,0.351680010557175,0.854835033416748,0.351235002279282,0.856575012207031,0.349909991025925,0.849135041236877,0.35317000746727,0.848105013370514,0.352934986352921,0.847494959831238,0.355549991130829,0.848255038261414,0.35691499710083,0.84707498550415,0.352694988250732,0.846735000610352,0.354184985160828,0.858709990978241,0.353574991226196,0.859315037727356,0.353630006313324,0.858105003833771,0.353520005941391,0.857869982719421,0.354694992303848,0.85860002040863,0.354804992675781,0.859335005283356,0.354914993047714,0.859354972839355,0.357210010290146,0.858590006828308,0.356765002012253,0.857829988002777,0.356325000524521,0.858569979667664,0.36039999127388,0.85775500535965,0.359250009059906,0.853749990463257,0.353574991226196,0.852584958076477,0.353469997644424,0.852304995059967,0.354095011949539,0.853630006313324,0.353974997997284,0.851415038108826,0.353370010852814,0.850984990596771,0.354220002889633,0.705404996871948,0.166669994592667,0.705080032348633,0.16957999765873,0.701640009880066,0.168430000543594,0.701719999313354,0.166065007448196,0.704755008220673,0.172490000724792,0.701560020446777,0.170790001749992,0.698359966278076,0.169090002775192,0.698199987411499,0.167274996638298,0.698035001754761,0.165464997291565,0.699644982814789,0.186880007386208,0.70217502117157,0.186234995722771, -0.703334987163544,0.191194996237755,0.69999498128891,0.188549995422363,0.704710006713867,0.185589998960495,0.706669986248016,0.193839997053146,0.712080001831055,0.185644999146461,0.716189980506897,0.185414999723434,0.718535006046295,0.195775002241135,0.714484989643097,0.196559995412827,0.720295011997223,0.185185000300407,0.722584962844849,0.194989994168282,0.830765008926392,0.3420549929142,0.832390010356903,0.343529999256134,0.841135025024414,0.340184986591339,0.839839994907379,0.338380008935928,0.834020018577576,0.345005005598068,0.842429995536804,0.341989994049072,0.850834965705872,0.338970005512238,0.84987998008728,0.336840003728867,0.848919987678528,0.334704995155334,0.835744976997375,0.346159994602203,0.843625009059906,0.34349000453949,0.851505041122437,0.340820014476776,0.834995031356812,0.349155008792877,0.834205031394958,0.348639994859695,0.833410024642944,0.351074993610382,0.833790004253387,0.352209985256195,0.833410024642944,0.348125010728836,0.833029985427856,0.34994500875473,0.842519998550415,0.349700003862381,0.848264992237091,0.347860008478165,0.854014992713928,0.346024990081787,0.841580033302307,0.351875007152557,0.840719997882843,0.351534992456436,0.840099990367889,0.353410005569458,0.840595006942749,0.354065001010895,0.839854955673218,0.351200014352798,0.83960497379303,0.352755010128021,0.838155031204224,0.350354999303818,0.837360024452209,0.350104987621307,0.836534976959229,0.351404994726181,0.837650001049042,0.351114988327026,0.836570024490356,0.349860012531281,0.83542001247406,0.351695001125336,0.64155501127243,0.166834995150566,0.641205012798309,0.169455006718636,0.636520028114319,0.168960005044937,0.636619985103607,0.166569992899895,0.640860021114349,0.172069996595383,0.636415004730225,0.171354994177818,0.631829977035522,0.168469995260239,0.63169002532959,0.166305005550385,0.634440004825592,0.185955002903938,0.632655024528503,0.194140002131462,0.63883501291275,0.184630006551743,0.636420011520386,0.196624994277954,0.650694966316223,0.184689998626709,0.655939996242523,0.184514999389648,0.654034972190857, -0.197510004043579,0.649075031280518,0.198500007390976,0.661185026168823,0.184340000152588,0.658995032310486,0.196524992585182,0.828655004501343,0.288749992847443,0.828249990940094,0.304064989089966,0.849560022354126,0.302625000476837,0.806939959526062,0.305510014295578,0.814994990825653,0.326810002326965,0.827839970588684,0.31938499212265,0.840690016746521,0.311955004930496,0.817474961280823,0.329840004444122,0.829715013504028,0.322879999876022,0.841949999332428,0.315919995307922,0.81623500585556,0.337150007486343,0.814880013465881,0.335895001888275,0.813905000686646,0.338425010442734,0.814915001392365,0.340950012207031,0.813520014286041,0.334639996290207,0.812894999980927,0.335900008678436,0.828689992427826,0.340474992990494,0.83822500705719,0.336030006408691,0.847755014896393,0.331584990024567,0.827849984169006,0.34468001127243,0.826775014400482,0.344049990177155,0.825444996356964,0.347130000591278,0.826065003871918,0.349449992179871,0.825704991817474,0.343419998884201,0.82482498884201,0.344805002212524,0.823554992675781,0.3420549929142,0.822345018386841,0.341380000114441,0.820994973182678,0.342460006475449,0.822899997234344,0.343075007200241,0.821139991283417,0.340705007314682,0.819095015525818,0.341850012540817,0.601260006427765,0.18486000597477,0.597874999046326,0.187399998307228,0.597835004329681,0.17093500494957,0.602115035057068,0.171725004911423,0.599855005741119,0.193230003118515,0.597594976425171,0.191754996776581,0.602115035057068,0.194710001349449,0.611670017242432,0.20108500123024,0.606539964675903,0.199615001678467,0.607329964637756,0.195834994316101,0.601410031318665,0.198149994015694,0.789075016975403,0.316175013780594,0.786195039749146,0.313654989004135,0.784974992275238,0.316864997148514,0.788295030593872,0.318574994802475,0.783315002918243,0.31114000082016,0.781650006771088,0.315154999494553,0.797450006008148,0.330390006303787,0.798925042152405,0.325374990701675,0.795340001583099,0.322124987840652,0.794445037841797,0.325255006551743,0.786814987659454,0.322670012712479,0.789875030517578,0.326550006866455, -0.791370034217834,0.321915000677109,0.792930006980896,0.330435007810593,0.792715013027191,0.161695003509521,0.79271000623703,0.165010005235672,0.791384994983673,0.16541500389576,0.79126501083374,0.162220001220703,0.792704999446869,0.168325006961823,0.791509985923767,0.168614998459816,0.790310025215149,0.168905004858971,0.790064990520477,0.165824994444847,0.789815008640289,0.162740007042885,0.853384971618652,0.354589998722076,0.854764997959137,0.355729997158051,0.85496997833252,0.354629993438721,0.856145024299622,0.356869995594025,0.856315016746521,0.355284988880157,0.79069995880127,0.19378000497818,0.792744994163513,0.192770004272461,0.792755007743835,0.194845005869865,0.790884971618652,0.196105003356934,0.789020001888275,0.197365000844002,0.788655042648315,0.194790005683899,0.77270495891571,0.185939997434616,0.772729992866516,0.16865499317646,0.846904993057251,0.36421000957489,0.848574995994568,0.360035002231598,0.84961998462677,0.355569988489151,0.850239992141724,0.355865001678467,0.778645038604736,0.201719999313354,0.774899959564209,0.20082999765873,0.774789988994598,0.197874993085861,0.771154999732971,0.199939996004105,0.762794971466064,0.186049997806549,0.763819992542267,0.169009998440742,0.76385498046875,0.190885007381439,0.762485027313232,0.194739997386932,0.762425005435944,0.193094998598099,0.761119961738586,0.198589995503426,0.844359993934631,0.353720009326935,0.84521496295929,0.35513499379158,0.845800042152405,0.353540003299713,0.846074998378754,0.356550008058548,0.750640034675598,0.187285006046295,0.750079989433289,0.169025003910065,0.756404995918274,0.200884997844696,0.751994967460632,0.199495002627373,0.751929998397827,0.197335004806519,0.747579991817474,0.198105007410049,0.838719964027405,0.35869500041008,0.839740037918091,0.357179999351501,0.841480016708374,0.353749990463257,0.840764999389648,0.355664998292923,0.742725014686584,0.186535000801086,0.742245018482208,0.168744996190071,0.83671498298645,0.352180004119873,0.837975025177002,0.353799998760223,0.838629961013794,0.351934999227524,0.83924001455307, -0.355419993400574,0.743780016899109,0.195264995098114,0.743900001049042,0.196539998054504,0.743539988994598,0.19454999268055,0.744024991989136,0.197819992899895,0.730920016765594,0.187215000391006,0.730525016784668,0.170015007257462,0.831694960594177,0.358550012111664,0.832574963569641,0.356889992952347,0.834604978561401,0.351949989795685,0.833454966545105,0.355230003595352,0.736104965209961,0.200084999203682,0.731954991817474,0.198035001754761,0.731894969940186,0.196089997887611,0.727805018424988,0.195979997515678,0.722464978694916,0.185479998588562,0.720515012741089,0.170124992728233,0.724444985389709,0.192640006542206,0.724164962768555,0.194934993982315,0.723564982414246,0.193094998598099,0.723879992961884,0.197235003113747,0.830039978027344,0.349440008401871,0.831245005130768,0.351235002279282,0.832049965858459,0.348949998617172,0.832450032234192,0.353035002946854,0.708395004272461,0.185615003108978,0.707790017127991,0.172169998288155,0.71525502204895,0.199210003018379,0.711130023002625,0.197530001401901,0.710574984550476,0.195199996232986,0.707005023956299,0.195849999785423,0.823439955711365,0.358585000038147,0.825439989566803,0.354965001344681,0.827470004558563,0.348675012588501,0.827445030212402,0.351339995861053,0.697369992733002,0.185894995927811,0.695954978466034,0.169925004243851,0.821789979934692,0.344714999198914,0.822564959526062,0.345939993858337,0.823859989643097,0.343939989805222,0.823339998722076,0.347164988517761,0.700039982795715,0.188834995031357,0.697740018367767,0.193639993667603,0.697520017623901,0.192094996571541,0.695439994335175,0.198445007205009,0.679984986782074,0.185110002756119,0.680254995822906,0.172185003757477,0.813400030136108,0.348340004682541,0.814604997634888,0.346244990825653,0.817005038261414,0.341399997472763,0.815814971923828,0.344144999980927,0.689445018768311,0.199544996023178,0.681415021419525,0.19854000210762,0.681145012378693,0.195720002055168,0.673390030860901,0.197540000081062,0.664110004901886,0.18571500480175,0.66339498758316,0.171014994382858,0.664600014686584,0.191725000739098, -0.661639988422394,0.195769995450974,0.66203498840332,0.193664997816086,0.658675014972687,0.199819996953011,0.807895004749298,0.332754999399185,0.809880018234253,0.335314989089966,0.810909986495972,0.333929985761642,0.811864972114563,0.337879985570908,0.644765019416809,0.184660002589226,0.646574974060059,0.172175005078316,0.648395001888275,0.202215000987053,0.641955018043518,0.201030001044273,0.642750024795532,0.197559997439384,0.635509967803955,0.199849992990494,0.79534500837326,0.339415013790131,0.798144996166229,0.335904985666275,0.799965023994446,0.330125004053116,0.800940036773682,0.332394987344742,0.788954973220825,0.18529999256134,0.789245009422302,0.16915999352932,0.790130019187927,0.185285001993179,0.607885003089905,0.167510002851486,0.607140004634857,0.1700100004673,0.603349983692169,0.168889999389648,0.604579985141754,0.166050001978874,0.599560022354126,0.167765006422997,0.601279973983765,0.164594992995262,0.7639399766922,0.165694996714592,0.764060020446777,0.162375003099442,0.750234961509705,0.165865004062653,0.750394999980927,0.16270500421524,0.773195028305054,0.165464997291565,0.773665010929108,0.16227500140667,0.741595029830933,0.165720000863075,0.740939974784851,0.162689998745918,0.729920029640198,0.166669994592667,0.729319989681244,0.163320004940033,0.72017502784729,0.167304992675781,0.71983003616333,0.164480000734329,0.707970023155212,0.169524997472763,0.708150029182434,0.166879996657372,0.695374965667725,0.16787500679493,0.694800019264221,0.165824994444847,0.679920017719269,0.169929996132851,0.679579973220825,0.167675003409386,0.662734985351563,0.168644994497299,0.662074983119965,0.16627499461174,0.646629989147186,0.169485002756119,0.646679997444153,0.166789993643761,0.611634969711304,0.169939994812012,0.611979961395264,0.167274996638298,0.792715013027191,0.160634994506836,0.792715013027191,0.161164999008179,0.791105031967163,0.161235004663467,0.790944993495941,0.160254999995232,0.78949499130249,0.161304995417595,0.789175033569336,0.159869998693466,0.782339990139008,0.161029994487762,0.786895036697388, -0.161424994468689,0.777785003185272,0.160640001296997,0.777785003185272,0.158504992723465,0.782150030136108,0.159005001187325,0.786509990692139,0.159504994750023,0.773684978485107,0.160655006766319,0.769585013389587,0.16066999733448,0.769630014896393,0.159559994935989,0.773705005645752,0.159030005335808,0.7674800157547,0.16109499335289,0.765375018119812,0.161520004272461,0.765410006046295,0.161160007119179,0.767520010471344,0.160359993577003,0.763499975204468,0.161654993891716,0.761624991893768,0.161789998412132,0.760475039482117,0.160710006952286,0.762939989566803,0.160934999585152,0.757429957389832,0.161589995026588,0.75323498249054,0.161394998431206,0.752524971961975,0.159779995679855,0.756500005722046,0.160245001316071,0.749799966812134,0.161129996180534,0.746370017528534,0.160864993929863,0.745895028114319,0.159329995512962,0.749210000038147,0.159555003046989,0.744585037231445,0.161404997110367,0.742794990539551,0.161945000290871,0.742290019989014,0.160740002989769,0.744094967842102,0.160034999251366,0.740034997463226,0.161149993538857,0.737269997596741,0.160359993577003,0.735960006713867,0.158484995365143,0.73912501335144,0.159610003232956,0.734300017356873,0.160545006394386,0.731325030326843,0.160730004310608,0.730255007743835,0.158384993672371,0.733105003833771,0.158435001969337,0.728609979152679,0.160885006189346,0.72589498758316,0.161035001277924,0.725555002689362,0.158504992723465,0.727905035018921,0.158445000648499,0.723890006542206,0.161455005407333,0.72188001871109,0.161874994635582,0.721530020236969,0.160909995436668,0.723545014858246,0.159710004925728,0.71991503238678,0.162424996495247,0.717944979667664,0.162974998354912,0.718459963798523,0.159824997186661,0.719995021820068,0.160370007157326,0.714450001716614,0.163804993033409,0.710950016975403,0.164629995822906,0.711004972457886,0.162174999713898,0.714730024337769,0.160999998450279,0.707844972610474,0.16457000374794,0.70474499464035,0.164505004882813,0.704084992408752,0.162345007061958,0.707544982433319,0.162259995937347,0.701254963874817,0.164210006594658, -0.697764992713928,0.163914993405342,0.697499990463257,0.16236500442028,0.700789988040924,0.162355005741119,0.694975018501282,0.163855001330376,0.69218498468399,0.163794994354248,0.692809998989105,0.161404997110367,0.695155024528503,0.161884993314743,0.688315033912659,0.164425000548363,0.684445023536682,0.165055006742477,0.684239983558655,0.162139996886253,0.688525021076202,0.16177000105381,0.67891001701355,0.164755001664162,0.673375010490417,0.164454996585846,0.672240018844604,0.161534994840622,0.67824000120163,0.161834999918938,0.669444978237152,0.163939997553825,0.665515005588531,0.163424998521805,0.665740013122559,0.161544993519783,0.668990015983582,0.161540001630783,0.662284970283508,0.16372999548912,0.659049987792969,0.164035007357597,0.659245014190674,0.160824999213219,0.662490010261536,0.161184996366501,0.655115008354187,0.163994997739792,0.651185035705566,0.163955003023148,0.650565028190613,0.16117000579834,0.654905021190643,0.160995006561279,0.64580500125885,0.163829997181892,0.640429973602295,0.163699999451637,0.639304995536804,0.160565003752708,0.644935011863708,0.160864993929863,0.636150002479553,0.163660004734993,0.631870031356812,0.163619995117188,0.632045030593872,0.160929992794991,0.635675013065338,0.16075000166893,0.625465035438538,0.163599997758865,0.625469982624054,0.159604996442795,0.620805025100708,0.163770005106926,0.616145014762878,0.163939997553825,0.616214990615845,0.16083499789238,0.620844960212708,0.160219997167587,0.612069964408875,0.163884997367859,0.60799503326416,0.163829997181892,0.608105003833771,0.160144999623299,0.612159967422485,0.16049000620842,0.604844987392426,0.163619995117188,0.601689994335175,0.163409993052483,0.602100014686584,0.162220001220703,0.605104982852936,0.161184996366501,0.785969972610474,0.158810004591942,0.787524998188019,0.158995002508163,0.787845015525818,0.159689992666245,0.787209987640381,0.158305004239082,0.789085030555725,0.159180000424385,0.780945003032684,0.158425003290176,0.775920033454895,0.15803499519825,0.772799968719482,0.15837499499321,0.769680023193359, -0.15871000289917,0.767565011978149,0.159779995679855,0.765444993972778,0.160854995250702,0.762539982795715,0.160335004329681,0.759634971618652,0.159820005297661,0.755810022354126,0.159294992685318,0.751985013484955,0.158775001764297,0.748830020427704,0.158564999699593,0.745674967765808,0.158354997634888,0.743790030479431,0.159140005707741,0.741904973983765,0.159924998879433,0.738425016403198,0.158619999885559,0.734950006008148,0.157309994101524,0.732304990291595,0.157224997878075,0.729660034179688,0.157140001654625,0.72775000333786,0.157285004854202,0.725844979286194,0.157425001263618,0.723510026931763,0.158494994044304,0.721180021762848,0.159565001726151,0.71933501958847,0.158745005726814,0.717494964599609,0.157920002937317,0.71425998210907,0.158865004777908,0.711030006408691,0.1598149985075,0.707925021648407,0.160005003213882,0.704815030097961,0.160190001130104,0.701054990291595,0.160520002245903,0.697290003299713,0.160850003361702,0.694504976272583,0.160005003213882,0.691715002059937,0.159160003066063,0.687775015830994,0.159140005707741,0.683835029602051,0.159119993448257,0.677950024604797,0.158869996666908,0.672065019607544,0.15862500667572,0.669000029563904,0.159095004200935,0.665930032730103,0.159565001726151,0.662259995937347,0.15871499478817,0.658590018749237,0.15786999464035,0.654299974441528,0.158140003681183,0.650004982948303,0.158409997820854,0.644335031509399,0.158004999160767,0.638665020465851,0.157594993710518,0.635399997234344,0.157890006899834,0.632130026817322,0.158185005187988,0.624679982662201,0.156444996595383,0.620554983615875,0.157175004482269,0.616425037384033,0.157900005578995,0.612594962120056,0.157470002770424,0.608759999275208,0.157034993171692,0.605735003948212,0.158944994211197,0.602710008621216,0.160850003361702,0.568960011005402,0.177440002560616,0.573050022125244,0.177489995956421,0.856950044631958,0.358060002326965,0.857069969177246,0.3558050096035,0.568814992904663,0.150175005197525,0.566004991531372,0.145850002765656,0.565155029296875,0.159850001335144,0.567340016365051,0.137174993753433, -0.569254994392395,0.168375000357628,0.565254986286163,0.132785007357597,0.568515002727509,0.123915001749992,0.567629992961884,0.102339997887611,0.565425038337708,0.0919900014996529,0.569499969482422,0.0737150013446808,0.56828498840332,0.0393900014460087,0.77477502822876,0.317414999008179,0.774425029754639,0.321119993925095,0.77512001991272,0.313710004091263,0.78286999464035,0.322230011224747,0.792204976081848,0.319150000810623,0.801140010356903,0.326864987611771,0.804419994354248,0.332574993371964,0.811514973640442,0.33304500579834,0.812629997730255,0.343109995126724,0.818690001964569,0.338925004005432,0.818804979324341,0.34442999958992,0.82463002204895,0.34273499250412,0.823390007019043,0.352874994277954,0.828840017318726,0.345295011997223,0.828740000724792,0.350389987230301,0.832545042037964,0.347559988498688,0.832069993019104,0.355789989233017,0.835785031318665,0.349510014057159,0.835085034370422,0.353704988956451,0.839004993438721,0.350780010223389,0.838979959487915,0.357055008411407,0.842445015907288,0.351974993944168,0.842559993267059,0.354689985513687,0.846099972724915,0.35249999165535,0.846490025520325,0.360379993915558,0.850275039672852,0.353269994258881,0.851809978485107,0.355224996805191,0.856389999389648,0.354355007410049,0.855069994926453,0.353965014219284,0.787240028381348,0.127945005893707,0.784865021705627,0.123960003256798,0.786830008029938,0.125220000743866,0.788800001144409,0.126479998230934,0.786909997463226,0.195785000920296,0.781199991703033,0.123034998774529,0.766219973564148,0.128169998526573,0.753859996795654,0.123410001397133,0.742285013198853,0.127670004963875,0.734899997711182,0.124935001134872,0.722130000591278,0.129570007324219,0.71525502204895,0.123410001397133,0.698395013809204,0.134709998965263,0.700039982795715,0.131435006856918,0.696444988250732,0.131644994020462,0.689570009708405,0.124959997832775,0.693965017795563,0.125499993562698,0.668349981307983,0.129134997725487,0.656544983386993,0.122634999454021,0.634590029716492,0.129435002803802,0.621904969215393,0.124459996819496,0.602530002593994, -0.131274998188019,0.604349970817566,0.128604993224144,0.599645018577576,0.19548000395298,0.597885012626648,0.192815005779266,0.616855025291443,0.199599996209145,0.631999969482422,0.196309998631477,0.653535008430481,0.201014995574951,0.668995022773743,0.194629997014999,0.692440032958984,0.198994994163513,0.703525006771088,0.19234000146389,0.719569981098175,0.198219999670982,0.726125001907349,0.194309994578362,0.740064978599548,0.198954999446869,0.745679974555969,0.196685001254082,0.758764982223511,0.199739992618561,0.767504990100861,0.195415005087852,0.785269975662231,0.199874997138977,0.781955003738403,0.200794994831085,0.789860010147095,0.312139987945557,0.793524980545044,0.310624986886978,0.791710019111633,0.299124985933304,0.78751003742218,0.305130004882813,0.809170007705688,0.327580004930496,0.810339987277985,0.330309987068176,0.814254999160767,0.330725014209747,0.823879957199097,0.339800000190735,0.824254989624023,0.341269999742508,0.82616001367569,0.341159999370575,0.83192503452301,0.345459997653961,0.832234978675842,0.346509993076324,0.833714962005615,0.346565008163452,0.838739991188049,0.349429994821548,0.838874995708466,0.350104987621307,0.840384960174561,0.350104987621307,0.845695018768311,0.351619988679886,0.845894992351532,0.352059990167618,0.847575008869171,0.351929992437363,0.855939984321594,0.352649986743927,0.853675007820129,0.35300999879837,0.854375004768372,0.353484988212585,0.856164991855621,0.353500008583069,0.787765026092529,0.293749988079071,0.776645004749298,0.303290009498596,0.79890501499176,0.304789990186691,0.804040014743805,0.316184997558594,0.816174983978271,0.332864999771118,0.818099975585938,0.33500999212265,0.820989966392517,0.337404996156693,0.827735006809235,0.342260003089905,0.829304993152618,0.343365013599396,0.830615043640137,0.344415009021759,0.834975004196167,0.347400009632111,0.836234986782074,0.348239988088608,0.837484955787659,0.348834991455078,0.841619968414307,0.350620001554489,0.842854976654053,0.351134985685349,0.844274997711182,0.351375013589859,0.849174976348877,0.352180004119873, -0.850780010223389,0.352425009012222,0.85223001241684,0.352719992399216,0.854179978370667,0.352165013551712,0.855989992618561,0.351864993572235,0.857140004634857,0.35249999165535,0.859259963035583,0.349750012159348,0.857915043830872,0.349830001592636,0.859245002269745,0.348760008811951,0.857569992542267,0.348895013332367,0.859225034713745,0.347609996795654,0.857235014438629,0.347795009613037,0.859205007553101,0.346464991569519,0.856894969940186,0.346695005893707,0.859194993972778,0.345580011606216,0.856604993343353,0.345800012350082,0.859179973602295,0.344695001840591,0.856315016746521,0.344904989004135,0.859160006046295,0.343475013971329,0.8559849858284,0.343685001134872,0.859135031700134,0.342260003089905,0.855655014514923,0.34246501326561,0.859104990959167,0.340330004692078,0.855304956436157,0.340575009584427,0.859075009822845,0.33840000629425,0.854954957962036,0.338685005903244,0.859035015106201,0.335960000753403,0.85445499420166,0.336400002241135,0.858990013599396,0.333514988422394,0.853955030441284,0.334109991788864,0.858950018882751,0.3298299908638,0.85335499048233,0.330709993839264,0.858904957771301,0.326144993305206,0.85275000333786,0.327304989099503,0.850975036621094,0.31768000125885,0.850265026092529,0.310155004262924,0.858739972114563,0.31547999382019,0.858585000038147,0.304390013217926,0.805564999580383,0.138659998774529,0.799769997596741,0.138769999146461,0.800305008888245,0.126629993319511,0.805869996547699,0.125970005989075,0.811434984207153,0.125310003757477,0.811360001564026,0.138549998402596,0.852519989013672,0.139394998550415,0.849179983139038,0.13944000005722,0.847350001335144,0.129374995827675,0.851240038871765,0.128260001540184,0.855129957199097,0.127140000462532,0.855854988098145,0.13934999704361,0.89770495891571,0.138954997062683,0.893095016479492,0.139135003089905,0.89191997051239,0.128254994750023,0.896399974822998,0.127845004200935,0.900884985923767,0.127440005540848,0.902310013771057,0.138775005936623,0.953189969062805,0.134525001049042,0.953274965286255,0.133650004863739,0.958449959754944, -0.12593500316143,0.959264993667603,0.129659995436668,0.82659500837326,0.158920004963875,0.826300024986267,0.156470000743866,0.830119967460632,0.156079992651939,0.830274999141693,0.158340007066727,0.825999975204468,0.154019996523857,0.829964995384216,0.153819993138313,0.833930015563965,0.15361499786377,0.833940029144287,0.155684992671013,0.833950042724609,0.157759994268417,0.573014974594116,0.210539996623993,0.573024988174438,0.212375000119209,0.568645000457764,0.21475000679493,0.569864988327026,0.212825000286102,0.571079969406128,0.210895001888275,0.573004961013794,0.208700001239777,0.578114986419678,0.191884994506836,0.578114986419678,0.194710001349449,0.573040008544922,0.194154992699623,0.573040008544922,0.191899999976158,0.578114986419678,0.197540000081062,0.573035001754761,0.196410000324249,0.868900001049042,0.155890002846718,0.868849992752075,0.154644995927811,0.871814966201782,0.154874995350838,0.871644973754883,0.15658999979496,0.868795037269592,0.153400003910065,0.871984958648682,0.153154999017715,0.875174999237061,0.152905002236366,0.874779999256134,0.155100002884865,0.874384999275208,0.157295003533363,0.573670029640198,0.238429993391037,0.573040008544922,0.240555003285408,0.56742000579834,0.241870000958443,0.569840013980865,0.23913000524044,0.572265028953552,0.236385002732277,0.574299991130829,0.236310005187988,0.578114986419678,0.224965006113052,0.578114986419678,0.226270005106926,0.573090016841888,0.224944993853569,0.573104977607727,0.223379999399185,0.578114986419678,0.2275750041008,0.573080003261566,0.226504996418953,0.927184998989105,0.154964998364449,0.926769971847534,0.152899995446205,0.931504964828491,0.153040006756783,0.931599974632263,0.155155003070831,0.926360011100769,0.150839999318123,0.931410014629364,0.150920003652573,0.936460018157959,0.151004999876022,0.936239957809448,0.153174996376038,0.936020016670227,0.155340000987053,0.572990000247955,0.284444987773895,0.573009967803955,0.2899050116539,0.568840026855469,0.296025007963181,0.570360004901886,0.289155006408691,0.571879982948303,0.282285004854202, -0.572965025901794,0.278979986906052,0.578114986419678,0.256330013275146,0.578114986419678,0.258980005979538,0.573050022125244,0.25747999548912,0.573055028915405,0.254819989204407,0.578114986419678,0.261635005474091,0.573040008544922,0.260145008563995,0.973100006580353,0.141800001263618,0.9773850440979,0.141910001635551,0.976585030555725,0.150435000658035,0.972674965858459,0.15047000348568,0.968765020370483,0.150505006313324,0.968814969062805,0.141690000891685,0.565510034561157,0.331880003213882,0.567295014858246,0.329685002565384,0.568554997444153,0.329594999551773,0.567165017127991,0.331919997930527,0.565770030021667,0.334250003099442,0.563719987869263,0.334075003862381,0.573069989681244,0.317685008049011,0.573109984397888,0.312204986810684,0.578114986419678,0.312195003032684,0.578114986419678,0.317649990320206,0.573150038719177,0.306719988584518,0.578114986419678,0.306739985942841,0.799995005130768,0.158109992742538,0.799754977226257,0.155674993991852,0.805570006370544,0.155530005693436,0.805665016174316,0.157824993133545,0.799520015716553,0.153239995241165,0.805469989776611,0.153229996562004,0.81141996383667,0.153219997882843,0.81138002872467,0.155379995703697,0.811339974403381,0.157545000314713,0.815654993057251,0.157859995961189,0.816354990005493,0.155725002288818,0.818405032157898,0.156560003757477,0.817780017852783,0.159209996461868,0.817049980163574,0.153595000505447,0.819029986858368,0.153915002942085,0.821004986763,0.154235005378723,0.820455014705658,0.157395005226135,0.819905042648315,0.160559996962547,0.820450007915497,0.138319998979568,0.818859994411469,0.138479992747307,0.817375004291534,0.126735001802444,0.819705009460449,0.130199998617172,0.822035014629364,0.1336649954319,0.822035014629364,0.13816000521183,0.85147500038147,0.156104996800423,0.850984990596771,0.154585003852844,0.853635013103485,0.154524996876717,0.853919982910156,0.155974999070168,0.850489974021912,0.153064996004105,0.85335499048233,0.153080001473427,0.856220006942749,0.153090000152588,0.856289982795715,0.15446500480175,0.856359958648682, -0.155845001339912,0.85929000377655,0.156279996037483,0.859905004501343,0.154734998941422,0.862244963645935,0.155214995145798,0.861950039863586,0.157199993729591,0.860514998435974,0.15319000184536,0.862545013427734,0.153229996562004,0.864570021629333,0.15327000617981,0.864589989185333,0.155695006251335,0.864614963531494,0.1581149995327,0.862879991531372,0.138284996151924,0.861355006694794,0.138579994440079,0.861755013465881,0.130390003323555,0.863014996051788,0.131589993834496,0.864279985427856,0.132785007357597,0.864400029182434,0.13798999786377,0.894840002059937,0.156700000166893,0.8941850066185,0.15480500459671,0.898064970970154,0.15421000123024,0.898424983024597,0.156305000185966,0.893530011177063,0.152915000915527,0.897709965705872,0.152115002274513,0.90189003944397,0.151309996843338,0.901950001716614,0.15361000597477,0.902004957199097,0.15591000020504,0.91346001625061,0.155575007200241,0.913954973220825,0.153504997491837,0.916540026664734,0.1543850004673,0.916305005550385,0.156515002250671,0.914454996585846,0.151435002684593,0.9167799949646,0.152260005474091,0.919104993343353,0.153080001473427,0.919124960899353,0.155265003442764,0.919149994850159,0.157454997301102,0.916914999485016,0.137755006551743,0.915030002593994,0.138730004429817,0.915050029754639,0.129209995269775,0.917194962501526,0.130924999713898,0.919340014457703,0.13264000415802,0.918799996376038,0.136779993772507,0.953155040740967,0.151679992675781,0.953155040740967,0.139045000076294,0.960714995861053,0.141894996166229,0.960875034332275,0.149755001068115,0.961310029029846,0.153205007314682,0.961089968681335,0.151480004191399,0.96494996547699,0.152034997940063,0.96508002281189,0.153940007090569,0.964820027351379,0.15013000369072,0.968804955482483,0.15259000658989,0.968845009803772,0.154675006866455,0.964765012264252,0.141794994473457,0.963994979858398,0.128494992852211,0.968724966049194,0.127330005168915,0.839940011501312,0.157360002398491,0.840285003185272,0.15548999607563,0.842139959335327,0.155884996056557,0.841920018196106,0.158224999904633,0.840624988079071, -0.15361499786377,0.842360019683838,0.153545007109642,0.844089984893799,0.153479993343353,0.843994975090027,0.156279996037483,0.843899965286255,0.159085005521774,0.842570006847382,0.138209998607635,0.840999960899353,0.138194993138313,0.841769993305206,0.12873500585556,0.84290999174118,0.130154997110367,0.844045042991638,0.131575003266335,0.844134986400604,0.138219997286797,0.830269992351532,0.138180002570152,0.826514959335327,0.138304993510246,0.827430009841919,0.127859994769096,0.831759989261627,0.126110002398491,0.836094975471497,0.124365001916885,0.834030032157898,0.138060003519058,0.578114986419678,0.210785001516342,0.578114986419678,0.212585002183914,0.578114986419678,0.214385002851486,0.578114986419678,0.203315004706383,0.578114986419678,0.205225005745888,0.573024988174438,0.202859997749329,0.573035001754761,0.200904995203018,0.578114986419678,0.207135006785393,0.573019981384277,0.204815000295639,0.568920016288757,0.205280005931854,0.566910028457642,0.203270003199577,0.564895033836365,0.201254993677139,0.578150033950806,0.185585007071495,0.578114986419678,0.186985000967979,0.573040008544922,0.187014997005463,0.573050022125244,0.185615003108978,0.573055028915405,0.184210002422333,0.578184962272644,0.184184998273849,0.566084980964661,0.182905003428459,0.567730009555817,0.182909995317459,0.568305015563965,0.184269994497299,0.566929996013641,0.184255003929138,0.569630026817322,0.197414994239807,0.570100009441376,0.194704994559288,0.57056999206543,0.191990002989769,0.879894971847534,0.157849997282028,0.880874991416931,0.155640006065369,0.884549975395203,0.156230002641678,0.884140014648438,0.158484995365143,0.881855010986328,0.153435006737709,0.884965002536774,0.153974995017052,0.888074994087219,0.154514998197556,0.888224959373474,0.156815007328987,0.888379991054535,0.159115001559258,0.885060012340546,0.137724995613098,0.882809996604919,0.139235004782677,0.882950007915497,0.130325004458427,0.885055005550385,0.132434993982315,0.887165009975433,0.134540006518364,0.887310028076172,0.136219993233681,0.872030019760132,0.140349999070168, -0.868185043334961,0.140945002436638,0.866575002670288,0.129749998450279,0.870649993419647,0.126505002379417,0.874724984169006,0.123259998857975,0.875874996185303,0.139760002493858,0.578114986419678,0.23691999912262,0.578114986419678,0.239024996757507,0.578114986419678,0.241129994392395,0.578114986419678,0.230444997549057,0.578114986419678,0.231820002198219,0.573055028915405,0.230804994702339,0.573055028915405,0.229285001754761,0.578114986419678,0.233199998736382,0.573050022125244,0.232329994440079,0.56817501783371,0.231114998459816,0.566980004310608,0.230385005474091,0.565784990787506,0.229660004377365,0.578114986419678,0.217924997210503,0.578114986419678,0.219734996557236,0.573060035705566,0.217869997024536,0.573050022125244,0.216014996170998,0.578114986419678,0.22155000269413,0.573069989681244,0.219724997878075,0.568515002727509,0.218655005097389,0.567564964294434,0.217429995536804,0.566619992256165,0.216199994087219,0.567539989948273,0.228000000119209,0.568614959716797,0.225779995322227,0.569689989089966,0.223554998636246,0.947764992713928,0.154445007443428,0.948019981384277,0.152500003576279,0.950614988803864,0.152989998459816,0.950515031814575,0.154864996671677,0.948269963264465,0.150549992918968,0.950709998607635,0.151115000247955,0.95320999622345,0.153479993343353,0.953269958496094,0.155285000801086,0.950760006904602,0.139445006847382,0.948369979858398,0.139844998717308,0.948140025138855,0.128604993224144,0.95066499710083,0.131565004587173,0.931214988231659,0.139479994773865,0.925490021705627,0.139644995331764,0.92330002784729,0.128315001726151,0.929549992084503,0.126094996929169,0.9357950091362,0.123874999582767,0.936940014362335,0.139320001006126,0.578114986419678,0.279790014028549,0.578114986419678,0.284844994544983,0.578114986419678,0.289900004863739,0.578114986419678,0.267850011587143,0.578114986419678,0.270815014839172,0.573009967803955,0.26952001452446,0.573024988174438,0.266400009393692,0.578114986419678,0.273779988288879,0.572995007038116,0.272639989852905,0.568899989128113,0.272464990615845,0.567070007324219, -0.270870000123978,0.565245032310486,0.269275009632111,0.578114986419678,0.245594993233681,0.578114986419678,0.248199999332428,0.573045015335083,0.24745500087738,0.573040008544922,0.24507500231266,0.578114986419678,0.250804990530014,0.573050022125244,0.249840006232262,0.568769991397858,0.248585000634193,0.566249966621399,0.246830001473427,0.563735008239746,0.245069995522499,0.568310022354126,0.265385001897812,0.568830013275146,0.260140001773834,0.569350004196167,0.254895001649857,0.980175018310547,0.13934999704361,0.982969999313354,0.136794999241829,0.983029961585999,0.153145000338554,0.979804992675781,0.151789993047714,0.978870034217834,0.129720002412796,0.980625033378601,0.131095007061958,0.982380032539368,0.132475003600121,0.974020004272461,0.124459996819496,0.979319989681244,0.12593500316143,0.973800003528595,0.128525003790855,0.968715012073517,0.122984997928143,0.573040008544922,0.334075003862381,0.573040008544922,0.331880003213882,0.578114986419678,0.331559985876083,0.578114986419678,0.333689987659454,0.573040008544922,0.329685002565384,0.578114986419678,0.329425007104874,0.578114986419678,0.323534995317459,0.573055028915405,0.323684990406036,0.569324970245361,0.323650002479553,0.570095002651215,0.317710012197495,0.578114986419678,0.300429999828339,0.573050022125244,0.301140010356903,0.568549990653992,0.306845009326935,0.563679993152618,0.300830006599426,0.56828498840332,0.312330007553101,0.567295014858246,0.306919991970062,0.5693199634552,0.312274992465973,0.56927502155304,0.317739993333817,0.794479966163635,0.15591000020504,0.794574975967407,0.158950001001358,0.794384956359863,0.152869999408722,0.796050012111664,0.15310500562191,0.796244978904724,0.155799999833107,0.796440005302429,0.158490002155304,0.573040008544922,0.18945999443531,0.578114986419678,0.189435005187988,0.56923496723175,0.189429998397827,0.568614959716797,0.186955004930496,0.569615006446838,0.187065005302429,0.570095002651215,0.189524993300438,0.569849967956543,0.191899999976158,0.79441499710083,0.137950003147125,0.794459998607635,0.130030006170273, -0.796180009841919,0.129254996776581,0.796095013618469,0.13832500576973,0.573035001754761,0.198654994368553,0.578114986419678,0.200424998998642,0.815109968185425,0.138514995574951,0.814234972000122,0.153404995799065,0.565614998340607,0.199420005083084,0.568655014038086,0.197559997439384,0.567260026931763,0.199334993958473,0.562574982643127,0.201275005936623,0.812224984169006,0.122974999248981,0.816505014896393,0.123839996755123,0.814404964447021,0.126025006175041,0.807950019836426,0.12211500108242,0.824275016784668,0.138229995965958,0.823505043983459,0.15412500500679,0.573009967803955,0.206760004162788,0.578114986419678,0.208959996700287,0.824759960174561,0.128910005092621,0.827504992485046,0.125269994139671,0.824730038642883,0.130759999155998,0.822010040283203,0.132550001144409,0.568984985351563,0.207939997315407,0.567739963531494,0.20524500310421,0.569999992847443,0.208090007305145,0.570235013961792,0.210639998316765,0.573040008544922,0.214194998145103,0.578114986419678,0.216154992580414,0.837514996528625,0.138129994273186,0.837280035018921,0.15361499786377,0.839010000228882,0.123664997518063,0.842270016670227,0.125784993171692,0.838935017585754,0.126550003886223,0.835749983787537,0.121550001204014,0.566089987754822,0.215784996747971,0.567394971847534,0.215224996209145,0.567629992961884,0.215474992990494,0.564785003662109,0.216344997286797,0.846660017967224,0.138830006122589,0.8472900390625,0.15327000617981,0.573085010051727,0.22155000269413,0.578114986419678,0.22325499355793,0.567970037460327,0.220760002732277,0.567219972610474,0.218170002102852,0.56910502910614,0.221104994416237,0.56871497631073,0.223350003361702,0.845290005207062,0.127865001559258,0.846629977226257,0.126049995422363,0.845695018768311,0.130474999547005,0.843945026397705,0.129679992794991,0.573069989681244,0.227895006537437,0.578114986419678,0.229010000824928,0.858605027198792,0.138964995741844,0.858370006084442,0.153139993548393,0.564839959144592,0.229204997420311,0.565959990024567,0.22851499915123,0.56666499376297,0.228829994797707,0.563719987869263, -0.229894995689392,0.858280003070831,0.125870004296303,0.862015008926392,0.127924993634224,0.858440041542053,0.128765001893044,0.854544997215271,0.12381500005722,0.866294980049133,0.139465004205704,0.866680026054382,0.153335005044937,0.573675036430359,0.234319999814034,0.578114986419678,0.235060006380081,0.865020036697388,0.128979995846748,0.865904986858368,0.126684993505478,0.865424990653992,0.131270006299019,0.864135026931763,0.131274998188019,0.568984985351563,0.233504995703697,0.566794991493225,0.230755001306534,0.570219993591309,0.233750000596046,0.571179986000061,0.236255005002022,0.573040008544922,0.242815002799034,0.578114986419678,0.243365004658699,0.879344999790192,0.139495000243187,0.878515005111694,0.153170004487038,0.878790020942688,0.124109998345375,0.883029997348785,0.128079995512962,0.878834962844849,0.126790001988411,0.874549984931946,0.120140001177788,0.56349503993988,0.243530005216599,0.565855026245117,0.242125004529953,0.565575003623962,0.243469998240471,0.56114000082016,0.244939997792244,0.890205025672913,0.137679994106293,0.890799999237061,0.153714999556541,0.573055028915405,0.252330005168915,0.578114986419678,0.2535699903965,0.567950010299683,0.251455008983612,0.567584991455078,0.248119994997978,0.56905996799469,0.251740008592606,0.568310022354126,0.254790008068085,0.889315009117126,0.129824995994568,0.891515016555786,0.125499993562698,0.88954496383667,0.131400004029274,0.887115001678467,0.134155005216599,0.573035001754761,0.263274997472763,0.578114986419678,0.264739990234375,0.908670008182526,0.138754993677139,0.908174991607666,0.151374995708466,0.564999997615814,0.26834499835968,0.566954970359802,0.26673498749733,0.566779971122742,0.2673299908638,0.563045024871826,0.26995000243187,0.90762996673584,0.125434994697571,0.914939999580383,0.12644499540329,0.907970011234283,0.128325000405312,0.900319993495941,0.124420002102852,0.922145009040833,0.138209998607635,0.922729969024658,0.151960000395775,0.572979986667633,0.27581000328064,0.578114986419678,0.276784986257553,0.920949995517731,0.128425002098083, -0.922529995441437,0.125165000557899,0.921319961547852,0.130480006337166,0.919369995594025,0.131689995527267,0.569499969482422,0.277705013751984,0.567809998989105,0.272285014390945,0.570389986038208,0.277375012636185,0.571195006370544,0.283125013113022,0.5730299949646,0.295520007610321,0.578114986419678,0.295165002346039,0.942654967308044,0.139579996466637,0.942364990711212,0.150775000452995,0.941869974136353,0.122634999454021,0.948395013809204,0.125165000557899,0.941969990730286,0.126240000128746,0.935344994068146,0.120104998350143,0.564759969711304,0.298220008611679,0.567809998989105,0.295650005340576,0.566259980201721,0.298429995775223,0.561710000038147,0.300785005092621,0.797935009002686,0.138549998402596,0.797785043716431,0.153174996376038,0.976240038871765,0.153815001249313,0.976410031318665,0.152125000953674,0.979490041732788,0.154174998402596,0.979169964790344,0.156554996967316,0.982564985752106,0.156220003962517,0.982100009918213,0.159299999475479,0.82337498664856,0.15692999958992,0.823249995708466,0.159740000963211,0.837110042572021,0.155589997768402,0.836944997310638,0.157560005784035,0.813865005970001,0.155554994940758,0.81349503993988,0.157700002193451,0.847490012645721,0.155434995889664,0.847689986228943,0.157594993710518,0.858094990253448,0.154599994421005,0.857825040817261,0.156059995293617,0.866719961166382,0.155169993638992,0.866760015487671,0.157004997134209,0.877830028533936,0.155369997024536,0.877139985561371,0.157570004463196,0.891205012798309,0.155809998512268,0.891610026359558,0.157904997467995,0.9079549908638,0.153559997677803,0.907729983329773,0.155744999647141,0.922950029373169,0.154084995388985,0.923164963722229,0.156210005283356,0.942129969596863,0.152834996581078,0.941890001296997,0.15489499270916,0.972609996795654,0.152355000376701,0.972545027732849,0.154245004057884,0.802489995956421,0.18529500067234,0.807285010814667,0.18529500067234,0.806755006313324,0.19836999475956,0.803550004959106,0.197569996118546,0.800345003604889,0.196765005588531,0.797690033912659,0.18529999256134,0.847559988498688, -0.187034994363785,0.851099967956543,0.186934992671013,0.849599957466125,0.197614997625351,0.84612500667572,0.196730002760887,0.84264999628067,0.195844992995262,0.844020009040833,0.187140002846718,0.894520044326782,0.184744998812675,0.898669958114624,0.184825003147125,0.896544992923737,0.196180000901222,0.893499970436096,0.195775002241135,0.890455007553101,0.195370003581047,0.890370011329651,0.184660002589226,0.956595003604889,0.191200003027916,0.962674975395203,0.194079995155334,0.963469982147217,0.197650000452995,0.957000017166138,0.192320004105568,0.822620034217834,0.162845000624657,0.827039957046509,0.162915006279945,0.827160000801086,0.166209995746613,0.822735011577606,0.166199997067451,0.831454992294312,0.162984997034073,0.831584990024567,0.166215002536774,0.831709980964661,0.169444993138313,0.827275037765503,0.16949999332428,0.822844982147217,0.169554993510246,0.873450040817261,0.352064996957779,0.873730003833771,0.352660000324249,0.874974966049194,0.35291001200676,0.874350011348724,0.351940006017685,0.876075029373169,0.354429990053177,0.874279975891113,0.353484988212585,0.876219987869263,0.353159993886948,0.875249981880188,0.35181000828743,0.860029995441437,0.351545006036758,0.860289990901947,0.350749999284744,0.859775006771088,0.352340012788773,0.860249996185303,0.35232999920845,0.860774993896484,0.351545006036758,0.861304998397827,0.350760012865067,0.868014991283417,0.165999993681908,0.871289968490601,0.166464999318123,0.871214985847473,0.168984994292259,0.867834985256195,0.168665006756783,0.874565005302429,0.166934996843338,0.874594986438751,0.169310003519058,0.874629974365234,0.171680003404617,0.871140003204346,0.171505004167557,0.867650032043457,0.171330004930496,0.886669993400574,0.346450001001358,0.88730001449585,0.347404986619949,0.888384997844696,0.347350001335144,0.887580037117004,0.345880001783371,0.889660000801086,0.349815011024475,0.888384997844696,0.348890006542206,0.889464974403381,0.347294986248016,0.888485014438629,0.345310002565384,0.87754499912262,0.34867000579834,0.87923002243042,0.347779989242554, -0.872380018234253,0.345779985189438,0.871240019798279,0.346839994192123,0.880919992923737,0.34689000248909,0.873520016670227,0.344714999198914,0.866124987602234,0.342539995908737,0.865530014038086,0.343780010938644,0.864935040473938,0.345014989376068,0.92619001865387,0.166834995150566,0.929854989051819,0.1667799949646,0.929360032081604,0.169064998626709,0.9254350066185,0.169009998440742,0.933524966239929,0.166724994778633,0.933284997940063,0.169119998812675,0.933040022850037,0.171515002846718,0.928860008716583,0.171350002288818,0.92467999458313,0.171185001730919,0.908470034599304,0.330105006694794,0.909029960632324,0.330540001392365,0.912189960479736,0.329230010509491,0.911509990692139,0.328455001115799,0.913609981536865,0.331030011177063,0.910130023956299,0.331335008144379,0.91535496711731,0.327915012836456,0.914550006389618,0.326804995536804,0.891515016555786,0.338109999895096,0.894775032997131,0.334950000047684,0.883810043334961,0.329355001449585,0.881389975547791,0.333119988441467,0.898030042648315,0.331790000200272,0.886224985122681,0.325585007667542,0.874419987201691,0.319379985332489,0.872839987277985,0.323754996061325,0.87126499414444,0.328130006790161,0.980669975280762,0.181700006127357,0.975304961204529,0.181690007448196,0.97393000125885,0.172049999237061,0.978749990463257,0.172195002436638,0.969940006732941,0.181675001978874,0.969105005264282,0.171904996037483,0.940760016441345,0.321635007858276,0.942364990711212,0.324355006217957,0.941959977149963,0.319335013628006,0.940010011196136,0.317784994840622,0.938055038452148,0.31623500585556,0.939154982566833,0.318915009498596,0.798155009746552,0.163330003619194,0.802890002727509,0.163039997220039,0.802664995193481,0.166205003857613,0.79769504070282,0.166364997625351,0.807624995708466,0.162754997611046,0.807639956474304,0.166044995188713,0.807654976844788,0.16933000087738,0.802444994449615,0.169365003705025,0.797240018844604,0.169400006532669,0.815855026245117,0.161764994263649,0.817950010299683,0.161819994449615,0.818485021591187,0.16499499976635,0.816779971122742, -0.164849996566772,0.820044994354248,0.161880001425743,0.820190012454987,0.165144994854927,0.820340037345886,0.168410003185272,0.819025039672852,0.168170005083084,0.817710041999817,0.167934998869896,0.819784998893738,0.185945004224777,0.8213250041008,0.185399994254112,0.82158499956131,0.18979500234127,0.818140029907227,0.193535000085831,0.814695000648499,0.197280004620552,0.818244993686676,0.186489999294281,0.846840023994446,0.16219000518322,0.849934995174408,0.162605002522469,0.849059998989105,0.165879994630814,0.845730006694794,0.165464997291565,0.853034973144531,0.163014993071556,0.852389991283417,0.166290000081062,0.851745009422302,0.169569998979568,0.848185002803802,0.16915500164032,0.844624996185303,0.16873499751091,0.859194993972778,0.163475006818771,0.861204981803894,0.163104996085167,0.860684990882874,0.166290000081062,0.858654975891113,0.166875004768372,0.863209962844849,0.162735000252724,0.862720012664795,0.165700003504753,0.862224996089935,0.168669998645782,0.860170006752014,0.169475004076958,0.858114957809448,0.170279994606972,0.859454989433289,0.186405003070831,0.860859990119934,0.185615003108978,0.860944986343384,0.191015005111694,0.85929000377655,0.192629992961884,0.857635021209717,0.194240003824234,0.858044981956482,0.187199994921684,0.893880009651184,0.165969997644424,0.897325038909912,0.166855007410049,0.896479964256287,0.169084995985031,0.892889976501465,0.168255001306534,0.900770008563995,0.167744994163513,0.900070011615753,0.169909998774529,0.89936500787735,0.172079995274544,0.89563000202179,0.171309992671013,0.891894996166229,0.170544996857643,0.910849988460541,0.167135000228882,0.915395021438599,0.166085004806519,0.915199995040894,0.168485000729561,0.910884976387024,0.169449999928474,0.919945001602173,0.165034994482994,0.919515013694763,0.167524993419647,0.919090032577515,0.1700100004673,0.914999961853027,0.170890003442764,0.910915017127991,0.171764999628067,0.915345013141632,0.185764998197556,0.918415009975433,0.18673500418663,0.92041003704071,0.190449997782707,0.916289985179901,0.192550003528595, -0.912169992923737,0.194655001163483,0.912274956703186,0.184795007109642,0.960150003433228,0.181264996528625,0.955410003662109,0.186810001730919,0.953449964523315,0.170184999704361,0.959280014038086,0.171849995851517,0.959715008735657,0.167160004377365,0.96450001001358,0.167074993252754,0.96434497833252,0.169475004076958,0.959495007991791,0.169505000114441,0.969280004501343,0.166989997029305,0.969195008277893,0.169444993138313,0.964195013046265,0.171875,0.965044975280762,0.18147000670433,0.972949981689453,0.196439996361732,0.967815041542053,0.195260003209114,0.838564991950989,0.162375003099442,0.840345025062561,0.162740007042885,0.8403599858284,0.165659993886948,0.838775038719177,0.165450006723404,0.842124998569489,0.163104996085167,0.841939985752106,0.165869995951653,0.841755032539368,0.168640002608299,0.840369999408722,0.168579995632172,0.838984966278076,0.168524995446205,0.839969992637634,0.186599999666214,0.841544985771179,0.185709998011589,0.841430008411407,0.193000003695488,0.839599967002869,0.194564998149872,0.837774991989136,0.196125000715256,0.83840000629425,0.187490001320839,0.827674984931946,0.186725005507469,0.831310033798218,0.186894997954369,0.829405009746552,0.198324993252754,0.826979994773865,0.197280004620552,0.824559986591339,0.196235001087189,0.824034988880157,0.18656000494957,0.870480000972748,0.350975006818771,0.872434973716736,0.3505499958992,0.867830038070679,0.349229991436005,0.866535007953644,0.349970012903214,0.874384999275208,0.350125014781952,0.869120001792908,0.348484992980957,0.863849997520447,0.346845000982285,0.863219976425171,0.34790500998497,0.862589955329895,0.348964989185333,0.866155028343201,0.35157498717308,0.868319988250732,0.351274996995926,0.865135014057159,0.350569993257523,0.863730013370514,0.351164996623993,0.861950039863586,0.349864989519119,0.869480013847351,0.352999985218048,0.870409965515137,0.356750011444092,0.871150016784668,0.355365008115768,0.870504975318909,0.35275000333786,0.872215032577515,0.360199987888336,0.871824979782104,0.364050000905991,0.871894955635071, -0.353985011577606,0.87152498960495,0.35249999165535,0.859920024871826,0.353565007448196,0.860520005226135,0.353500008583069,0.86006498336792,0.354795008897781,0.860790014266968,0.354674994945526,0.86011004447937,0.356754988431931,0.859380006790161,0.361544996500015,0.860190033912659,0.360385000705719,0.860870003700256,0.356299996376038,0.864894986152649,0.353484988212585,0.865040004253387,0.353884994983673,0.866355001926422,0.353985011577606,0.866055011749268,0.353365004062653,0.866885006427765,0.355109989643097,0.865314960479736,0.354499995708466,0.867669999599457,0.354090005159378,0.867215037345886,0.353244990110397,0.880055010318756,0.166484996676445,0.88374000787735,0.165875002741814,0.8838250041008,0.168235003948212,0.880385041236877,0.169394999742508,0.887425005435944,0.165264993906021,0.887259960174561,0.167074993252754,0.887099981307983,0.168880000710487,0.883904993534088,0.170589998364449,0.880710005760193,0.17229999601841,0.883309960365295,0.186000004410744,0.885839998722076,0.186629995703697,0.885490000247955,0.188299998641014,0.882160007953644,0.190954998135567,0.878829956054688,0.193609997630119,0.880779981613159,0.185369998216629,0.869295001029968,0.185230001807213,0.873404979705811,0.185444995760918,0.871024966239929,0.196355000138283,0.866970002651215,0.195580005645752,0.8629150390625,0.19480499625206,0.865185022354126,0.185010001063347,0.884299993515015,0.344489991664886,0.885879993438721,0.342960000038147,0.877065002918243,0.339794993400574,0.875824987888336,0.341639995574951,0.887465000152588,0.341430008411407,0.878304958343506,0.337949991226196,0.869145035743713,0.334470003843307,0.868250012397766,0.336629986763,0.867354989051819,0.338789999485016,0.882609963417053,0.345690011978149,0.874675035476685,0.343174993991852,0.866739988327026,0.340665012598038,0.883430004119873,0.348699986934662,0.88468998670578,0.351759999990463,0.885049998760223,0.350609987974167,0.884204983711243,0.348159998655319,0.88646000623703,0.355349987745285,0.886875033378601,0.358119994401932,0.885405004024506,0.349454998970032, -0.884984970092773,0.347624987363815,0.875964999198914,0.349395006895065,0.870180010795593,0.347665011882782,0.864395022392273,0.345930010080338,0.876960039138794,0.351570010185242,0.877990007400513,0.353760004043579,0.878470003604889,0.353089988231659,0.877810001373291,0.351215004920959,0.87966001033783,0.356745004653931,0.879949986934662,0.358390003442764,0.878944993019104,0.352420002222061,0.878659963607788,0.350865006446838,0.880339980125427,0.349979996681213,0.880864977836609,0.350735008716583,0.8819699883461,0.351004987955093,0.881114959716797,0.349709987640381,0.883469998836517,0.353300005197525,0.881850004196167,0.351794987916946,0.883074998855591,0.351269990205765,0.881895005702972,0.349440008401871,0.94410502910614,0.166409999132156,0.948915004730225,0.166170001029968,0.94897997379303,0.168524995446205,0.944375038146973,0.16899000108242,0.953724980354309,0.16593000292778,0.953590035438538,0.168060004711151,0.949050009250641,0.170874997973442,0.94464498758316,0.171570003032684,0.951020002365112,0.185479998588562,0.952834963798523,0.193694993853569,0.949079990386963,0.196189999580383,0.946630001068115,0.184149995446205,0.929494976997375,0.184055000543594,0.934749960899353,0.184184998273849,0.936429977416992,0.198084995150566,0.931470036506653,0.197119995951653,0.926509976387024,0.196150004863739,0.924239993095398,0.183925002813339,0.902845025062561,0.325475007295609,0.910189986228943,0.30316498875618,0.888885021209717,0.302729994058609,0.88978499174118,0.318390011787415,0.867574989795685,0.302294999361038,0.876720011234283,0.311300009489059,0.900439977645874,0.328635007143021,0.888005018234253,0.321985006332397,0.875569999217987,0.315340012311935,0.901875019073486,0.335990011692047,0.903205037117004,0.339884996414185,0.904124975204468,0.337179988622665,0.903174996376038,0.33474999666214,0.905485033988953,0.342009991407394,0.904744982719421,0.347339987754822,0.905045032501221,0.334470003843307,0.90447998046875,0.333510011434555,0.889490008354187,0.33976998925209,0.879850029945374,0.335534989833832,0.870204985141754, -0.331299990415573,0.890429973602295,0.344015002250671,0.892274975776672,0.348805010318756,0.892865002155304,0.346439987421036,0.89148998260498,0.343349993228912,0.894999980926514,0.352219998836517,0.894999980926514,0.358000010251999,0.893455028533936,0.344074994325638,0.892544984817505,0.342685014009476,0.894659996032715,0.341239988803864,0.895339965820313,0.342265009880066,0.897220015525818,0.341585010290146,0.895850002765656,0.340514987707138,0.8994500041008,0.343544989824295,0.89649498462677,0.343914985656738,0.89910501241684,0.340909987688065,0.897040009498596,0.339789986610413,0.987455010414124,0.186924993991852,0.984064996242523,0.184310004115105,0.98275500535965,0.171389997005463,0.986760020256042,0.170585006475449,0.987900018692017,0.191214993596077,0.985630035400391,0.192699998617172,0.98335999250412,0.194189995527267,0.978974997997284,0.199104994535446,0.9738450050354,0.200589999556541,0.978155016899109,0.195315003395081,0.984104990959167,0.197620004415512,0.928784966468811,0.313594996929169,0.92951500415802,0.315845012664795,0.932900011539459,0.314004987478256,0.931650042533875,0.310849994421005,0.935180008411407,0.319559991359711,0.931205034255981,0.320205003023148,0.936285018920898,0.312169998884201,0.934514999389648,0.308104991912842,0.918995022773743,0.323415011167526,0.920539975166321,0.328579992055893,0.923295021057129,0.322569996118546,0.922544956207275,0.319950014352798,0.92510998249054,0.328420013189316,0.922760009765625,0.337700009346008,0.92815500497818,0.324310004711151,0.926405012607574,0.31920999288559,0.794034957885742,0.16541500389576,0.793910026550293,0.168610006570816,0.794165015220642,0.162220001220703,0.795614957809448,0.162750005722046,0.795359969139099,0.165824994444847,0.795109987258911,0.16889500617981,0.863955020904541,0.355659991502762,0.863700032234192,0.354559987783432,0.862365007400513,0.355239987373352,0.862589955329895,0.356824994087219,0.794620037078857,0.196095004677773,0.794795036315918,0.193774998188019,0.796840012073517,0.194775000214577,0.796490013599396,0.19734500348568, -0.812765002250671,0.185890004038811,0.812680006027222,0.168634995818138,0.870139956474304,0.359890013933182,0.869040012359619,0.355419993400574,0.868449985980988,0.355724990367889,0.810615003108978,0.200780004262924,0.806874990463257,0.20168000459671,0.810724973678589,0.197824999690056,0.814360022544861,0.199880003929138,0.822679996490479,0.185980007052422,0.821590006351471,0.168980002403259,0.823014974594116,0.194649994373322,0.821640014648438,0.190799996256828,0.823069989681244,0.193014994263649,0.82438999414444,0.198500007390976,0.8734450340271,0.354914993047714,0.872810006141663,0.353325009346008,0.872609972953796,0.356350004673004,0.834854960441589,0.187195003032684,0.835350036621094,0.168984994292259,0.833519995212555,0.19938500225544,0.829115033149719,0.200790002942085,0.833590030670166,0.197225004434586,0.837924957275391,0.197980001568794,0.878910005092621,0.356880009174347,0.877104997634888,0.353460013866425,0.877864956855774,0.355374991893768,0.842785000801086,0.186425000429153,0.843190014362335,0.168685004115105,0.88060998916626,0.353450000286102,0.879904985427856,0.351579993963242,0.879369974136353,0.355100005865097,0.841704964637756,0.196410000324249,0.841794967651367,0.195124998688698,0.842040002346039,0.194419994950294,0.841619968414307,0.19768999516964,0.854575037956238,0.187065005302429,0.85493004322052,0.169925004243851,0.885985016822815,0.356460005044937,0.883880019187927,0.351514995098114,0.885089993476868,0.354804992675781,0.853559970855713,0.1978649944067,0.849415004253387,0.199925005435944,0.853614985942841,0.195930004119873,0.857699990272522,0.195804998278618,0.863025009632111,0.185310006141663,0.864939987659454,0.170000001788139,0.861335039138794,0.194749996066093,0.861050009727478,0.192450001835823,0.861930012702942,0.192910000681877,0.861624956130981,0.197050005197525,0.8872150182724,0.350730001926422,0.886350035667419,0.348430007696152,0.886044979095459,0.3525750041008,0.877089977264404,0.185405001044273,0.877669990062714,0.171990007162094,0.874369978904724,0.197304993867874,0.87024998664856, -0.198994994163513,0.874925017356873,0.19497999548912,0.878489971160889,0.195614993572235,0.892969965934753,0.35436999797821,0.890869975090027,0.348049998283386,0.890935003757477,0.350744992494583,0.888105034828186,0.185644999146461,0.889495015144348,0.169715002179146,0.895745038986206,0.345180004835129,0.894394993782043,0.343169987201691,0.894994974136353,0.346439987421036,0.887755036354065,0.193375006318092,0.885439991950989,0.188574999570847,0.887969970703125,0.191835001111031,0.890065014362335,0.198180004954338,0.90547502040863,0.184809997677803,0.905140042304993,0.171920001506805,0.903575003147125,0.345259994268417,0.9011549949646,0.340400010347366,0.902405023574829,0.343174993991852,0.904089987277985,0.198235005140305,0.896070003509521,0.199259996414185,0.904354989528656,0.195415005087852,0.912114977836609,0.197209998965263,0.921324968338013,0.185330003499985,0.921885013580322,0.17059999704361,0.923864960670471,0.195409998297691,0.920889973640442,0.191365003585815,0.923460006713867,0.193299993872643,0.926840007305145,0.199454993009567,0.908179998397827,0.334010004997253,0.907034993171692,0.332504987716675,0.906224966049194,0.336685001850128,0.940690040588379,0.184169992804527,0.938845038414001,0.171540006995201,0.943565011024475,0.200619995594025,0.937124967575073,0.201820001006126,0.942754983901978,0.197135001420975,0.949999988079071,0.199420005083084,0.919924974441528,0.334210008382797,0.917945027351379,0.328249990940094,0.917089998722076,0.330725014209747,0.796175003051758,0.169149994850159,0.796519994735718,0.185285001993179,0.79534500837326,0.185269996523857,0.977499961853027,0.167190000414848,0.980744957923889,0.165769994258881,0.981750011444092,0.168579995632172,0.978124976158142,0.169689998030663,0.983990013599396,0.164350003004074,0.985374987125397,0.167465001344681,0.821334958076477,0.16236500442028,0.821460008621216,0.165669992566109,0.83500999212265,0.162680000066757,0.835180044174194,0.165830001235008,0.811740040779114,0.162259995937347,0.812209963798523,0.165444999933243,0.844480037689209,0.162650004029274, -0.84383499622345,0.165669992566109,0.856114983558655,0.163245007395744,0.855520009994507,0.166584998369217,0.865615010261536,0.164364993572235,0.865275025367737,0.167184993624687,0.877310037612915,0.166710004210472,0.877490043640137,0.169349998235703,0.890655040740967,0.165615007281303,0.890074968338013,0.167665004730225,0.905809998512268,0.167439997196198,0.90547502040863,0.169679999351501,0.923065006732941,0.16593499481678,0.922474980354309,0.168270006775856,0.938814997673035,0.166565001010895,0.938830018043518,0.169054999947548,0.973389983177185,0.167089998722076,0.973659992218018,0.169569998979568,0.794324994087219,0.161235004663467,0.794484972953796,0.16024999320507,0.796254992485046,0.159865006804466,0.795935034751892,0.161304995417595,0.798534989356995,0.161414995789528,0.803079962730408,0.161025002598763,0.798915028572083,0.159500002861023,0.803269982337952,0.159005001187325,0.807624995708466,0.158515006303787,0.807624995708466,0.160634994506836,0.811720013618469,0.160644993185997,0.811694979667664,0.159030005335808,0.815770030021667,0.159545004367828,0.815814971923828,0.160655006766319,0.817914962768555,0.161074995994568,0.817875027656555,0.16032999753952,0.819980025291443,0.161115005612373,0.820015013217926,0.161495000123978,0.821889996528625,0.161634996533394,0.822450041770935,0.160905003547668,0.824919998645782,0.160695001482964,0.823769986629486,0.16177000105381,0.827970027923584,0.161575004458427,0.828894972801208,0.160229995846748,0.83287501335144,0.159765005111694,0.832165002822876,0.161375001072884,0.835605025291443,0.161109998822212,0.83619499206543,0.159535005688667,0.839514970779419,0.15930500626564,0.839040040969849,0.160840004682541,0.840829968452454,0.161375001072884,0.841320037841797,0.160009995102882,0.843119978904724,0.160710006952286,0.842620015144348,0.161909997463226,0.845384955406189,0.161115005612373,0.846289992332458,0.159580007195473,0.849460005760193,0.158445000648499,0.848150014877319,0.160319998860359,0.851125001907349,0.16049499809742,0.852315008640289,0.158384993672371,0.855170011520386, -0.158325001597404,0.854099988937378,0.16066999733448,0.856814980506897,0.160809993743896,0.8575199842453,0.15837499499321,0.859869956970215,0.158429995179176,0.859534978866577,0.160950005054474,0.861544966697693,0.161359995603561,0.861885011196136,0.159620001912117,0.863894999027252,0.160809993743896,0.863555014133453,0.16177000105381,0.865525007247925,0.162314996123314,0.865440011024475,0.160260006785393,0.866979956626892,0.159710004925728,0.867500007152557,0.162854999303818,0.870999991893768,0.163664996623993,0.870710015296936,0.160864993929863,0.874440014362335,0.16202500462532,0.874500036239624,0.164480000734329,0.877604961395264,0.164399996399879,0.877905011177063,0.162090003490448,0.881370007991791,0.162159994244576,0.880710005760193,0.164324998855591,0.884199976921082,0.164014995098114,0.884660005569458,0.162155002355576,0.887950003147125,0.162155002355576,0.887690007686615,0.163709998130798,0.890475034713745,0.163644999265671,0.890300035476685,0.161675006151199,0.892645001411438,0.161200001835823,0.893265008926392,0.163585007190704,0.897119998931885,0.164210006594658,0.896914958953857,0.161559998989105,0.901180028915405,0.161925002932549,0.900974988937378,0.164835005998611,0.906475007534027,0.164535000920296,0.907135009765625,0.161630004644394,0.913089990615845,0.161335006356239,0.911970019340515,0.16423499584198,0.915845036506653,0.163715004920959,0.916299998760223,0.1613450050354,0.919510006904602,0.1613499969244,0.919725000858307,0.163194999098778,0.922865033149719,0.163479998707771,0.922659993171692,0.161025002598763,0.925809979438782,0.160695001482964,0.925999999046326,0.163764998316765,0.930070042610168,0.163800001144409,0.930279970169067,0.160820007324219,0.934749960899353,0.160944998264313,0.934134960174561,0.163835003972054,0.939674973487854,0.163580000400543,0.940539956092834,0.160594999790192,0.9463250041008,0.160239994525909,0.945214986801147,0.163324996829033,0.94938999414444,0.163310006260872,0.949864983558655,0.160449996590614,0.953405022621155,0.16066500544548,0.953565001487732,0.16329500079155, -0.959755003452301,0.163279995322227,0.959789991378784,0.159404993057251,0.964455008506775,0.163534998893738,0.964410006999969,0.159995004534721,0.969030022621155,0.160579994320869,0.969155013561249,0.163784995675087,0.973280012607574,0.163674995303154,0.97317498922348,0.160260006785393,0.977315008640289,0.159940004348755,0.9774050116539,0.163564994931221,0.980509996414185,0.163375005125999,0.980280041694641,0.160980001091957,0.983245015144348,0.162015005946159,0.983615040779114,0.163185000419617,0.799454987049103,0.158804997801781,0.797899961471558,0.158989995718002,0.79821503162384,0.158299997448921,0.797585010528564,0.159679993987083,0.796344995498657,0.159174993634224,0.809480011463165,0.15803000330925,0.804470002651215,0.158415004611015,0.815714955329895,0.158700004220009,0.812595009803772,0.158364996314049,0.819944977760315,0.16083499789238,0.817829966545105,0.159769997000694,0.825760006904602,0.159804999828339,0.822849988937378,0.160319998860359,0.833415031433105,0.158759996294975,0.829584956169128,0.159284994006157,0.839725017547607,0.158335000276566,0.836570024490356,0.15854999423027,0.843510031700134,0.159899994730949,0.841619968414307,0.159115001559258,0.850470006465912,0.157275006175041,0.846989989280701,0.158584997057915,0.855764985084534,0.157085001468658,0.85311496257782,0.157179996371269,0.859580039978027,0.15735499560833,0.8576700091362,0.157220005989075,0.864255011081696,0.159465000033379,0.861914992332458,0.158409997820854,0.867940008640289,0.157800003886223,0.866100013256073,0.15862999856472,0.874415040016174,0.159659996628761,0.871174991130829,0.158730000257492,0.880630016326904,0.160005003213882,0.877524971961975,0.159830003976822,0.88816499710083,0.160634994506836,0.884400010108948,0.160319998860359,0.893745005130768,0.158950001001358,0.890954971313477,0.159789994359016,0.901594996452332,0.158920004963875,0.897670030593872,0.158934995532036,0.913275003433228,0.15845499932766,0.90743499994278,0.158684998750687,0.91933000087738,0.159404993057251,0.916299998760223,0.158930003643036,0.926494956016541, -0.157829999923706,0.92290997505188,0.158614993095398,0.93538498878479,0.158144995570183,0.93094003200531,0.157985001802444,0.947044968605042,0.157344996929169,0.941215038299561,0.157745003700256,0.953334987163544,0.157975003123283,0.950190007686615,0.157659992575645,0.960550010204315,0.156305000185966,0.968940019607544,0.157629996538162,0.964744985103607,0.156965002417564,0.976779997348785,0.156874999403954,0.972859978675842,0.157254993915558,0.9826700091362,0.160659998655319,0.979725003242493,0.158765003085136,0.568960011005402,0.185664996504784,0.861795008182526,0.358025014400482,0.861620008945465,0.355769991874695,0.861000001430511,0.359230011701584,0.568814992904663,0.212929993867874,0.566004991531372,0.217254996299744,0.565155029296875,0.203260004520416,0.567340016365051,0.225930005311966,0.569254994392395,0.194729998707771,0.565254986286163,0.230324998497963,0.568515002727509,0.239189997315407,0.564365029335022,0.246529996395111,0.567629992961884,0.260764986276627,0.565425038337708,0.271115005016327,0.569499969482422,0.289389997720718,0.56828498840332,0.323715001344681,0.94192498922348,0.30401998758316,0.941205024719238,0.299704998731613,0.942649960517883,0.308340013027191,0.925665020942688,0.316774994134903,0.916769981384277,0.325109988451004,0.906475007534027,0.331809997558594,0.899459958076477,0.33788999915123,0.893599987030029,0.34196001291275,0.88945996761322,0.344664990901947,0.885829985141754,0.347034990787506,0.882660031318665,0.349070012569427,0.879500031471252,0.350425004959106,0.876105010509491,0.351689994335175,0.872489988803864,0.352279990911484,0.868350028991699,0.353125005960464,0.86226499080658,0.354304999113083,0.863579988479614,0.353895008563995,0.798655033111572,0.125220000743866,0.800619959831238,0.123960003256798,0.798240005970001,0.127945005893707,0.796689987182617,0.126479998230934,0.798595011234283,0.195769995450974,0.804284989833832,0.123034998774529,0.819254994392395,0.128195002675056,0.831629991531372,0.123410001397133,0.843104958534241,0.127735003829002,0.850589990615845,0.124935001134872, -0.863075017929077,0.129600003361702,0.870225012302399,0.123410001397133,0.885069966316223,0.13111500442028,0.895920038223267,0.124959997832775,0.917155027389526,0.129069998860359,0.928939998149872,0.122634999454021,0.950834989547729,0.129409998655319,0.963585019111633,0.124459996819496,0.98114001750946,0.128604993224144,0.982959985733032,0.131274998188019,0.985859990119934,0.194949999451637,0.987614989280701,0.192279994487762,0.968654990196228,0.199120000004768,0.953500032424927,0.195869997143745,0.931980013847351,0.200635001063347,0.916499972343445,0.194289997220039,0.893069982528687,0.198719993233681,0.881965041160583,0.192094996571541,0.865939974784851,0.198019996285439,0.859375,0.194130003452301,0.84552001953125,0.198809996247292,0.839859962463379,0.196555003523827,0.826754987239838,0.19964499771595,0.817999958992004,0.195339992642403,0.803560018539429,0.200764998793602,0.800244987010956,0.199849992990494,0.927865028381348,0.309419989585876,0.930065035820007,0.302069991827011,0.92561000585556,0.29603499174118,0.924080014228821,0.307994991540909,0.903659999370575,0.329490005970001,0.907585024833679,0.328974992036819,0.908694982528687,0.326139986515045,0.892030000686646,0.340400010347366,0.893939971923828,0.340454995632172,0.894275009632111,0.338950008153915,0.884639978408813,0.346055001020432,0.886110007762909,0.345970004796982,0.886389970779419,0.344900012016296,0.878105044364929,0.349765002727509,0.879610002040863,0.349739998579025,0.879719972610474,0.349054992198944,0.871004998683929,0.35173499584198,0.872675001621246,0.351835012435913,0.872864961624146,0.35139000415802,0.862670004367828,0.352600008249283,0.862465023994446,0.353450000286102,0.864259958267212,0.353410005569458,0.864939987659454,0.35291999578476,0.929369986057281,0.290280014276505,0.918269991874695,0.302134990692139,0.913480043411255,0.314139991998672,0.899955034255981,0.333889991044998,0.90180504322052,0.331690013408661,0.897114992141724,0.336419999599457,0.888949990272522,0.342720001935959,0.890489995479584,0.341560006141663,0.887670040130615, -0.343809992074966,0.882174968719482,0.347795009613037,0.883404970169067,0.346924990415573,0.880944967269897,0.348425000905991,0.875674962997437,0.350845009088516,0.876890003681183,0.350304991006851,0.874269962310791,0.351119995117188,0.867820024490356,0.352290004491806,0.869410037994385,0.352010011672974,0.866379976272583,0.352604985237122,0.864410042762756,0.352084994316101,0.862594962120056,0.351814985275269,0.861459970474243,0.352465003728867,0.860605001449585,0.349804997444153,0.860920011997223,0.348865002393723,0.861225008964539,0.347759991884232,0.861530005931854,0.346655011177063,0.861795008182526,0.345755010843277,0.862060010433197,0.344855010509491,0.862344980239868,0.343629986047745,0.862630009651184,0.342400014400482,0.862919986248016,0.340499997138977,0.86321496963501,0.338595002889633,0.863640010356903,0.336295008659363,0.864069998264313,0.333995014429092,0.864580035209656,0.330565005540848,0.865085005760193,0.327140003442764,0.867074966430664,0.30986499786377,0.866580009460449,0.31742998957634,0.573050022125244,0.182879999279976,0.578150033950806,0.182870000600815,0.567775011062622,0.185605004429817,0.792739987373352,0.129004999995232,0.794714987277985,0.127739995718002,0.797999978065491,0.155735000967979,0.792715013027191,0.160019993782043,0.794530034065247,0.159600004553795,0.797235012054443,0.161359995603561,0.796885013580322,0.163039997220039,0.79653000831604,0.16609500348568,0.794039964675903,0.185214996337891,0.79272997379303,0.185165002942085,0.798370003700256,0.198599994182587,0.861530005931854,0.354490011930466,0.861495018005371,0.353475004434586,0.578145027160645,0.177509993314743,0.567775011062622,0.177499994635582,0.790769994258881,0.127739995718002,0.787429988384247,0.155739992856979,0.790899991989136,0.159600004553795,0.788195013999939,0.161365002393723,0.78854501247406,0.163039997220039,0.788895010948181,0.16609999537468,0.791429996490479,0.185224995017052,0.787145018577576,0.19862000644207,0.857129991054535,0.354524999856949,0.857134997844696,0.353509992361069,0.600324988365173,0.155365005135536, -0.600685000419617,0.152529999613762,0.59996497631073,0.158199995756149,0.77403998374939,0.325969994068146,0.775409996509552,0.359250009059906,0.775754988193512,0.334800004959106,0.77386999130249,0.33372500538826,0.773725032806396,0.358480006456375,0.775685012340546,0.328519999980927,0.773810029029846,0.327374994754791,0.596570014953613,0.168365001678467,0.597625017166138,0.165839999914169,0.59552001953125,0.170890003442764,0.59791499376297,0.164425000548363,0.598209977149963,0.163004994392395,0.599089980125427,0.160604998469353,0.983985006809235,0.136230006814003,0.984215021133423,0.154424995183945,0.984860002994537,0.156269997358322,0.985509991645813,0.1581149995327,0.944074988365173,0.322925001382828,0.943645000457764,0.317975014448166,0.989910006523132,0.170330002903938,0.989989995956421,0.186839997768402,0.990200042724609,0.191204994916916,0.988844990730286,0.167899996042252,0.9877849817276,0.165470004081726,0.987495005130768,0.164155006408691,0.987205028533936,0.162839993834496,0.986355006694794,0.160479992628098,0.942425012588501,0.325650006532669,0.944290041923523,0.324324995279312,0.788275003433228,0.388610005378723,0.785964965820313,0.392870008945465,0.789209961891174,0.388675004243851,0.789799988269806,0.387405008077621,0.77197003364563,0.332585006952286,0.771719992160797,0.357699990272522,0.771865010261536,0.326155006885529,0.771939992904663,0.324849992990494,0.772655010223389,0.319875001907349,0.772799968719482,0.311199992895126,0.772729992866516,0.315539985895157,0.7742800116539,0.289115011692047,0.773025035858154,0.298330008983612,0.944885015487671,0.294454991817474,0.943419992923737,0.28499498963356,0.945160031318665,0.305189996957779,0.945019960403442,0.299820005893707,0.94622004032135,0.321734994649887,0.945430040359497,0.316619992256165,0.946285009384155,0.323065012693405,0.946179986000061,0.329679995775223,0.944095015525818,0.330785006284714,0.946444988250732,0.355610013008118,0.944409966468811,0.356460005044937,0.94863498210907,0.364809989929199,0.944914996623993,0.360300004482269,0.601109981536865, -0.138565003871918,0.943145036697388,0.313160002231598,0.945294976234436,0.310905009508133,0.775884985923767,0.308499991893768,0.772915005683899,0.304764986038208,0.828549981117249,0.277229994535446,0.828444957733154,0.26570999622345,0.858824968338013,0.320814996957779,0.851864993572235,0.322495013475418,0.865835011005402,0.322284996509552,0.23148250579834,0.678007006645203,0.232232496142387,0.677661001682281,0.232195496559143,0.679141998291016,0.231427505612373,0.679188013076782,0.229972004890442,0.684697985649109,0.229305505752563,0.683929979801178,0.230847492814064,0.681357979774475,0.231582492589951,0.681928992271423,0.22791700065136,0.687390983104706,0.227409496903419,0.686519980430603,0.225589007139206,0.689502000808716,0.225178495049477,0.688367009162903,0.223306998610497,0.690620005130768,0.223010495305061,0.689427971839905,0.221006497740746,0.690850019454956,0.220934495329857,0.689400970935822,0.216090500354767,0.689061999320984,0.21645000576973,0.687600016593933,0.218846499919891,0.688832998275757,0.218633502721786,0.690470993518829,0.213679000735283,0.68700897693634,0.214068502187729,0.685658991336823,0.211177006363869,0.684942007064819,0.211801007390022,0.683786988258362,0.209864005446434,0.683737993240356,0.210727497935295,0.682951986789703,0.230874001979828,0.677134990692139,0.231443494558334,0.676401972770691,0.227523505687714,0.674995005130768,0.227686002850533,0.673577010631561,0.229836001992226,0.674776017665863,0.229462996125221,0.676073014736176,0.225320503115654,0.674197971820831,0.22536900639534,0.672625005245209,0.22282050549984,0.673902988433838,0.222837492823601,0.672173023223877,0.219953998923302,0.673933982849121,0.219660997390747,0.672169029712677,0.217121496796608,0.674444019794464,0.216927498579025,0.672717988491058,0.214729994535446,0.675631999969482,0.214306995272636,0.674197971820831,0.212510496377945,0.67724198102951,0.211886003613472,0.676163017749786,0.210988506674767,0.679737985134125,0.210216507315636,0.678965985774994,0.210142999887466,0.681222975254059,0.209190994501114,0.681392014026642, -0.209860503673553,0.682318985462189,0.208994492888451,0.682816028594971,0.236314997076988,0.677541971206665,0.239196494221687,0.677887976169586,0.239480003714561,0.682703018188477,0.236450001597404,0.681168019771576,0.239152505993843,0.687357008457184,0.235953003168106,0.685195982456207,0.235945492982864,0.69309002161026,0.233606994152069,0.689689993858337,0.204294994473457,0.687599003314972,0.20099550485611,0.690186023712158,0.200314000248909,0.685625970363617,0.203568994998932,0.684522986412048,0.206084504723549,0.690859019756317,0.202896997332573,0.69486802816391,0.209636002779007,0.694480001926422,0.207076504826546,0.699047982692719,0.213550493121147,0.697690010070801,0.211968004703522,0.703015029430389,0.217249497771263,0.699571013450623,0.216230496764183,0.70525598526001,0.221438005566597,0.699576020240784,0.221580997109413,0.705039978027344,0.225159004330635,0.698164999485016,0.226188004016876,0.702767014503479,0.228403493762016,0.695996999740601,0.23012800514698,0.699850976467133,0.233134999871254,0.696591019630432,0.231129005551338,0.693080008029938,0.200815498828888,0.680114984512329,0.203941494226456,0.680772006511688,0.203017503023148,0.672922015190125,0.205800995230675,0.675302982330322,0.206167504191399,0.66687798500061,0.208353504538536,0.670499980449677,0.209784999489784,0.66278600692749,0.211529493331909,0.667187988758087,0.213829502463341,0.660113990306854,0.215075001120567,0.664921998977661,0.217673495411873,0.659030020236969,0.218445494771004,0.664043009281158,0.221386507153511,0.659018993377686,0.222009494900703,0.664000988006592,0.225152999162674,0.659940004348755,0.225249007344246,0.66472202539444,0.22910350561142,0.662168025970459,0.228476494550705,0.666337013244629,0.233138501644135,0.665677011013031,0.231774494051933,0.668940007686615,0.234901994466782,0.672973990440369,0.23751500248909,0.671261012554169,0.25,0.642305016517639,0.246733993291855,0.641874015331268,0.246739506721497,0.637311995029449,0.25,0.637634992599487,0.25,0.601683020591736,0.248081505298615,0.602962017059326,0.247816503047943, -0.598667979240417,0.25,0.597940027713776,0.229083001613617,0.594515979290009,0.228662505745888,0.596074998378754,0.225737497210503,0.59434700012207,0.226119995117188,0.593367993831635,0.235028505325317,0.596450984477997,0.234754502773285,0.599307000637054,0.231674998998642,0.597681999206543,0.231979995965958,0.5954629778862,0.238833993673325,0.597675979137421,0.238372996449471,0.601287007331848,0.241980001330376,0.598832011222839,0.241640999913216,0.60308301448822,0.24515500664711,0.599058985710144,0.245171502232552,0.603631973266602,0.225284993648529,0.593650996685028,0.225772500038147,0.593118011951447,0.224963501095772,0.59263801574707,0.225489005446434,0.592612981796265,0.225309506058693,0.591578006744385,0.225762501358986,0.592019975185394,0.22596450150013,0.590891003608704,0.226236000657082,0.591609001159668,0.22784349322319,0.589281022548676,0.22868449985981,0.591120004653931,0.230673000216484,0.588001012802124,0.231379002332687,0.590686976909637,0.234172493219376,0.587580978870392,0.234721496701241,0.590695977210999,0.237893998622894,0.587463974952698,0.238714993000031,0.590893983840942,0.241402000188828,0.587311029434204,0.242022499442101,0.59103798866272,0.244543001055717,0.586847007274628,0.24482449889183,0.590771019458771,0.247511506080627,0.586405992507935,0.247548505663872,0.590354025363922,0.25,0.585901021957397,0.25,0.589679002761841,0.247748494148254,0.596296012401581,0.25,0.595818996429443,0.245214998722076,0.596482992172241,0.242188006639481,0.596482992172241,0.239083006978035,0.595708012580872,0.235175997018814,0.594874024391174,0.232154503464699,0.594214022159576,0.229311496019363,0.593648016452789,0.226330503821373,0.59281200170517,0.226037994027138,0.592805981636047,0.225780501961708,0.592585027217865,0.226015001535416,0.592254996299744,0.226386502385139,0.592009007930756,0.229187503457069,0.592145979404449,0.23190750181675,0.592424988746643,0.235061004757881,0.592633008956909,0.239043995738029,0.593106985092163,0.242200002074242,0.593533992767334,0.245092496275902,0.593418002128601,0.247685000300407, -0.593101024627686,0.25,0.592752993106842,0.247727006673813,0.595018982887268,0.25,0.59467601776123,0.245282500982285,0.595120012760162,0.242307499051094,0.595220029354095,0.23921500146389,0.594660997390747,0.235254496335983,0.594027996063232,0.23224849998951,0.593531012535095,0.229435995221138,0.593177974224091,0.226440995931625,0.592504978179932,0.226178005337715,0.592629015445709,0.225937500596046,0.59256500005722,0.226152494549751,0.59237802028656,0.226465493440628,0.592226028442383,0.229459494352341,0.592697978019714,0.232211500406265,0.593284010887146,0.235254004597664,0.59366101026535,0.239238500595093,0.59427797794342,0.242321506142616,0.59485000371933,0.245260000228882,0.594802975654602,0.247764006257057,0.594551026821136,0.25,0.594308972358704,0.25,0.603130996227264,0.25,0.609678983688354,0.247780501842499,0.61032098531723,0.248049005866051,0.604043006896973,0.244535505771637,0.610827028751373,0.245049506425858,0.604794979095459,0.240213498473167,0.611298978328705,0.241449505090714,0.604331016540527,0.236705496907234,0.611374020576477,0.23810650408268,0.602584004402161,0.232843995094299,0.609912991523743,0.234501495957375,0.6007199883461,0.230239003896713,0.607876002788544,0.231415495276451,0.598962008953094,0.227020502090454,0.604767978191376,0.228478506207466,0.5971599817276,0.223014503717422,0.600821018218994,0.225343003869057,0.595264971256256,0.221612498164177,0.596342027187347,0.224618002772331,0.594045996665955,0.221557006239891,0.592276990413666,0.224126502871513,0.592555999755859,0.222124993801117,0.588696002960205,0.224325999617577,0.590658009052277,0.22333799302578,0.585014998912811,0.225195497274399,0.589277029037476,0.225479006767273,0.581761002540588,0.22682249546051,0.587218999862671,0.228464499115944,0.579315006732941,0.229772999882698,0.585219025611877,0.25,0.579469978809357,0.25,0.582952976226807,0.247403994202614,0.583424985408783,0.247216999530792,0.579308986663818,0.244378998875618,0.583813011646271,0.24405500292778,0.579176008701324,0.241062000393867,0.583796977996826,0.240803003311157, -0.579384028911591,0.237354502081871,0.583950996398926,0.236901000142097,0.579171001911163,0.233560502529144,0.584311008453369,0.232719495892525,0.578882992267609,0.25,0.615543007850647,0.247547000646591,0.616023004055023,0.243839994072914,0.615952014923096,0.239776000380516,0.617043018341064,0.23556099832058,0.618956029415131,0.232122004032135,0.618898987770081,0.229349493980408,0.620015978813171,0.224889993667603,0.613606989383698,0.220763996243477,0.60724800825119,0.220893993973732,0.580806016921997,0.223837494850159,0.575870990753174,0.218426004052162,0.585878014564514,0.216954499483109,0.591584026813507,0.218563497066498,0.59961199760437,0.246737003326416,0.571956992149353,0.25,0.571963012218475,0.243151992559433,0.572125017642975,0.240192994475365,0.571740984916687,0.236643001437187,0.570940971374512,0.232298493385315,0.570738017559052,0.22749499976635,0.572777986526489,0.246852993965149,0.689513027667999,0.25,0.690757989883423,0.25,0.699401021003723,0.247242495417595,0.699307978153229,0.243566498160362,0.700468003749847,0.242230504751205,0.689710974693298,0.240201503038406,0.70378702878952,0.237784504890442,0.69651198387146,0.23293699324131,0.710861027240753,0.231374993920326,0.702733993530273,0.23463000357151,0.699509978294373,0.23691600561142,0.707126975059509,0.228161498904228,0.715264022350311,0.226822003722191,0.706314980983734,0.221596494317055,0.709230005741119,0.222359001636505,0.719031989574432,0.214753001928329,0.719705998897552,0.215396001935005,0.709547996520996,0.20754699409008,0.717562019824982,0.210923001170158,0.707231998443604,0.195893004536629,0.704264998435974,0.200449496507645,0.698040008544922,0.205394506454468,0.702552020549774,0.201147004961967,0.711933970451355,0.192473992705345,0.688401997089386,0.197730004787445,0.686505973339081,0.198391005396843,0.692193984985352,0.192974001169205,0.695398986339569,0.193382993340492,0.679045021533966,0.198251500725746,0.679637014865875,0.200929000973701,0.656919002532959,0.204428002238274,0.663896024227142,0.200721994042397,0.670966029167175,0.196295499801636, -0.666728019714355,0.211328506469727,0.648299992084503,0.212833493947983,0.656138002872467,0.20847299695015,0.659080982208252,0.206397503614426,0.651454985141754,0.220252007246017,0.647098004817963,0.220934495329857,0.654888987541199,0.217048496007919,0.65489000082016,0.216067001223564,0.646941006183624,0.231470495462418,0.650889992713928,0.22970449924469,0.658908009529114,0.225158497691154,0.656044006347656,0.22528700530529,0.648256003856659,0.236325994133949,0.657415986061096,0.234538495540619,0.663025975227356,0.241214007139206,0.6632000207901,0.239991992712021,0.670140027999878,0.246006995439529,0.667208015918732,0.246409997344017,0.675769984722137,0.25,0.675399005413055,0.25,0.666682004928589,0.246865496039391,0.685486972332001,0.25,0.686214983463287,0.242430001497269,0.684403002262115,0.246625006198883,0.680257022380829,0.25,0.680321991443634,0.241955503821373,0.678373992443085,0.25,0.543444991111755,0.246996507048607,0.543537020683289,0.247106999158859,0.532805979251862,0.25,0.532652974128723,0.237197995185852,0.543029010295868,0.232544496655464,0.543129026889801,0.233335494995117,0.531359016895294,0.237846001982689,0.531849026679993,0.227487996220589,0.543704986572266,0.222037002444267,0.545228004455566,0.222532004117966,0.532041013240814,0.228420004248619,0.531226992607117,0.215878993272781,0.548631012439728,0.208088994026184,0.554489016532898,0.206503003835678,0.54000198841095,0.21543100476265,0.534622013568878,0.20100499689579,0.56004399061203,0.194337502121925,0.566084980964661,0.189594000577927,0.554175019264221,0.197510495781898,0.546697020530701,0.187859505414963,0.572755992412567,0.181595996022224,0.580623984336853,0.176300495862961,0.569526016712189,0.182790502905846,0.561106026172638,0.169286504387856,0.60308301448822,0.164131999015808,0.615545988082886,0.158380001783371,0.611509025096893,0.163328006863594,0.594973027706146,0.175562500953674,0.590399980545044,0.169893503189087,0.579847991466522,0.24737249314785,0.519586980342865,0.25,0.519474983215332,0.234394505620003,0.517499983310699,0.238166496157646, -0.518832981586456,0.223011001944542,0.516753971576691,0.22944800555706,0.516331017017365,0.205700501799583,0.52447098493576,0.215059995651245,0.519223988056183,0.195944502949715,0.531010985374451,0.186970993876457,0.53905200958252,0.171039998531342,0.556565999984741,0.179033994674683,0.547242999076843,0.154505506157875,0.586471974849701,0.163234993815422,0.567400991916656,0.149356499314308,0.607343018054962,0.232742995023727,0.62863701581955,0.234182506799698,0.629212975502014,0.233768492937088,0.633083999156952,0.232289493083954,0.632243990898132,0.238185003399849,0.63680100440979,0.235714495182037,0.634500026702881,0.235940992832184,0.631012976169586,0.238287001848221,0.632534027099609,0.241217494010925,0.634279012680054,0.241332992911339,0.638463020324707,0.243835002183914,0.635500013828278,0.24422849714756,0.640491008758545,0.231598004698753,0.632293999195099,0.232305005192757,0.627960979938507,0.231144994497299,0.631389021873474,0.231670498847961,0.627907991409302,0.223801001906395,0.621504008769989,0.228241503238678,0.626318991184235,0.218191996216774,0.615463018417358,0.215055495500565,0.602765023708344,0.213545992970467,0.591053009033203,0.215625002980232,0.582903981208801,0.2187460064888,0.575617015361786,0.223059505224228,0.570559024810791,0.227304503321648,0.567174971103668,0.23207700252533,0.565322995185852,0.236608505249023,0.564988017082214,0.240205004811287,0.565100014209747,0.243450000882149,0.56530100107193,0.246714994311333,0.565268993377686,0.25,0.565019011497498,0.245395496487617,0.6178839802742,0.245579496026039,0.617473006248474,0.246927499771118,0.618520021438599,0.246674999594688,0.619180977344513,0.247606992721558,0.620648980140686,0.247228503227234,0.620926022529602,0.247552007436752,0.62322199344635,0.247291505336761,0.623124003410339,0.246901497244835,0.626078009605408,0.246625497937202,0.626138985157013,0.2457544952631,0.628264009952545,0.245658501982689,0.627753973007202,0.243847995996475,0.629705011844635,0.243788003921509,0.629208981990814,0.241620004177094,0.629899024963379,0.241776496171951, -0.629247009754181,0.239140003919601,0.628371000289917,0.239424005150795,0.627852022647858,0.237794995307922,0.626573979854584,0.238340497016907,0.626362025737762,0.237882003188133,0.623908996582031,0.237286493182182,0.623982012271881,0.238719493150711,0.621195018291473,0.239178001880646,0.621317982673645,0.24312150478363,0.618089020252228,0.243064999580383,0.617698013782501,0.240563005208969,0.619687974452972,0.240316495299339,0.619268000125885,0.246274501085281,0.619821012020111,0.246699497103691,0.621360003948212,0.24677050113678,0.623236000537872,0.24625700712204,0.625726997852325,0.245518505573273,0.626850008964539,0.24372099339962,0.628174006938934,0.241963997483253,0.628427982330322,0.239572495222092,0.627265989780426,0.238884493708611,0.626416981220245,0.238550499081612,0.623872995376587,0.239697992801666,0.621461987495422,0.240838497877121,0.620235979557037,0.243164002895355,0.618591010570526,0.245170995593071,0.618393003940582,0.242961004376411,0.617226004600525,0.246068507432938,0.617040991783142,0.239319995045662,0.619002997875214,0.238121002912521,0.621071994304657,0.236476495862007,0.624145984649658,0.238931998610497,0.629050016403198,0.237276494503021,0.627052009105682,0.241450503468513,0.630515992641449,0.243930995464325,0.630411028862,0.246037006378174,0.628947019577026,0.247786998748779,0.626435995101929,0.248420506715775,0.6233189702034,0.248404994606972,0.620082020759583,0.247447997331619,0.617654979228973,0.243939995765686,0.633359014987946,0.244001001119614,0.631502985954285,0.246566504240036,0.630352020263672,0.246737003326416,0.63325297832489,0.25,0.627920985221863,0.25,0.632269024848938,0.25,0.619400978088379,0.25,0.623710989952087,0.25,0.616976022720337,0.247843995690346,0.616743981838226,0.25,0.616083025932312,0.241312503814697,0.632697999477386,0.241387501358986,0.631448984146118,0.238756999373436,0.629890024662018,0.238510996103287,0.631026029586792,0.238027006387711,0.625086009502411,0.238675996661186,0.625113010406494,0.23734849691391,0.625141978263855,0.236570000648499,0.625455975532532, -0.236822500824928,0.627781987190247,0.236377000808716,0.629011988639832,0.235744506120682,0.625981986522675,0.235325500369072,0.62456202507019,0.234888002276421,0.627296984195709,0.23394800722599,0.626025974750519,0.23573499917984,0.622452974319458,0.233658000826836,0.624786972999573,0.235728994011879,0.62119597196579,0.233281493186951,0.624116003513336,0.245945006608963,0.662506997585297,0.25,0.662616014480591,0.241734504699707,0.659588992595673,0.237495496869087,0.654349029064178,0.246291995048523,0.650106012821198,0.246612995862961,0.646946012973785,0.25,0.646813988685608,0.25,0.649990022182465,0.243593007326126,0.64828097820282,0.243772506713867,0.645528018474579,0.240756496787071,0.646856009960175,0.241191998124123,0.643661975860596,0.246205493807793,0.654905021190643,0.25,0.654480993747711,0.242890000343323,0.653129994869232,0.239610001444817,0.650086998939514,0.24600750207901,0.65903502702713,0.25,0.658900022506714,0.242201998829842,0.656493008136749,0.238291993737221,0.65216600894928,0.246761992573738,0.644419014453888,0.25,0.644720017910004,0.243988499045372,0.643065989017487,0.241327494382858,0.641404986381531,0.232519000768661,0.636408984661102,0.231891006231308,0.63636302947998,0.233331993222237,0.641023993492126,0.232971996068954,0.641964018344879,0.234354004263878,0.643495976924896,0.234436497092247,0.645573973655701,0.23658150434494,0.644125998020172,0.237118005752563,0.646453022956848,0.238610506057739,0.64317399263382,0.238662004470825,0.645662009716034,0.238830506801605,0.64038097858429,0.234654992818832,0.64205002784729,0.234282001852989,0.640097975730896,0.233883500099182,0.637256026268005,0.235572502017021,0.637435019016266,0.235679998993874,0.639678001403809,0.236038997769356,0.641844987869263,0.237292006611824,0.641686022281647,0.237202495336533,0.639894008636475,0.236982002854347,0.638015985488892,0.231360495090485,0.636339008808136,0.232550993561745,0.642177999019623,0.233971998095512,0.647141993045807,0.229697003960609,0.642379999160767,0.228165507316589,0.632983982563019,0.224577993154526, -0.63995498418808,0.223816499114037,0.631178975105286,0.219535499811172,0.638759016990662,0.21883450448513,0.629393994808197,0.214827492833138,0.638364017009735,0.213615000247955,0.628085970878601,0.21204499900341,0.616245985031128,0.209462001919746,0.639819025993347,0.207698002457619,0.629316985607147,0.20379950106144,0.64377897977829,0.201359495520592,0.633620977401733,0.197869494557381,0.650924026966095,0.194711998105049,0.641750991344452,0.192324995994568,0.662361979484558,0.188535004854202,0.654627978801727,0.18817549943924,0.678201973438263,0.183665499091148,0.671262979507446,0.205461993813515,0.618248999118805,0.198431506752968,0.62286901473999,0.191199004650116,0.630940020084381,0.184085503220558,0.643794000148773,0.21016600728035,0.604362010955811,0.19582399725914,0.612201988697052,0.188130006194115,0.621967971324921,0.203445002436638,0.60701197385788,0.185900002717972,0.613864004611969,0.19361799955368,0.603460013866425,0.201228499412537,0.597557008266449,0.208187997341156,0.5937380194664,0.203776493668556,0.586039006710052,0.20975549519062,0.584069013595581,0.197288006544113,0.590184986591339,0.190661504864693,0.596347987651825,0.212577506899834,0.57763797044754,0.204765498638153,0.571559011936188,0.20983749628067,0.566488981246948,0.216183498501778,0.560257971286774,0.217155992984772,0.569773018360138,0.222246006131172,0.563971996307373,0.221863493323326,0.555671989917755,0.227037504315376,0.560878992080688,0.22706550359726,0.553191006183624,0.232027500867844,0.551856994628906,0.231955006718636,0.559246003627777,0.236511498689651,0.558661997318268,0.236618995666504,0.551401019096375,0.241605997085571,0.519731998443604,0.241218999028206,0.532539010047913,0.241108000278473,0.54338800907135,0.24465249478817,0.519771993160248,0.244340494275093,0.5329509973526,0.244103506207466,0.543422996997833,0.240274503827095,0.558526992797852,0.243654996156693,0.55843198299408,0.240672498941422,0.551403999328613,0.244017496705055,0.551428020000458,0.246703505516052,0.558350026607513,0.246756494045258,0.55178701877594,0.25, -0.55814802646637,0.25,0.551741003990173,0.199158996343613,0.576371014118195,0.192835003137589,0.581894993782043,0.186854004859924,0.588701009750366,0.183408498764038,0.606471002101898,0.180134996771812,0.598315000534058,0.176640495657921,0.618417978286743,0.173478499054909,0.610565006732941,0.181705504655838,0.635037004947662,0.179281994700432,0.626676023006439,0.17025600373745,0.629589021205902,0.167733505368233,0.621692001819611,0.175936505198479,0.648527026176453,0.172919496893883,0.639936983585358,0.179758995771408,0.658675014972687,0.228917002677917,0.683443009853363,0.230394005775452,0.680939972400665,0.227049499750137,0.685809016227722,0.224895000457764,0.687537014484406,0.22282050549984,0.688637018203735,0.220888495445251,0.688528001308441,0.218962505459785,0.687940001487732,0.216655999422073,0.686775982379913,0.214288994669914,0.684930980205536,0.212145999073982,0.683189988136292,0.211202502250671,0.68249899148941,0.210354998707771,0.682123005390167,0.210704997181892,0.681248009204865,0.211427003145218,0.680213987827301,0.212869003415108,0.677859008312225,0.214997500181198,0.676594018936157,0.217245995998383,0.675486981868744,0.220134496688843,0.675007998943329,0.222815498709679,0.674902975559235,0.225296005606651,0.675092995166779,0.227439001202583,0.675810992717743,0.229257494211197,0.67687201499939,0.23055000603199,0.677703976631165,0.231068000197411,0.678207993507385,0.230924502015114,0.679086029529572,0.232830494642258,0.674535989761353,0.233979001641273,0.677214026451111,0.230706498026848,0.67180198431015,0.228016495704651,0.669854998588562,0.225320503115654,0.668690979480743,0.222504496574402,0.668106019496918,0.21908800303936,0.668150007724762,0.21611699461937,0.668860971927643,0.212985500693321,0.670785009860992,0.21017399430275,0.673429012298584,0.208117499947548,0.677178978919983,0.206550493836403,0.681286990642548,0.206284001469612,0.683623015880585,0.234035506844521,0.679718017578125,0.233358502388,0.683211982250214,0.231691494584084,0.686703979969025,0.229473993182182,0.690023005008698,0.226947501301765, -0.692709028720856,0.224256500601768,0.694281995296478,0.221260502934456,0.695034027099609,0.218024507164955,0.694850981235504,0.214809998869896,0.693260014057159,0.211765006184578,0.690825998783112,0.208719506859779,0.687843024730682,0.20703150331974,0.685572028160095,0.25,0.712056994438171,0.247161000967026,0.711372017860413,0.244990006089211,0.712368011474609,0.242048993706703,0.715638995170593,0.238214001059532,0.719727993011475,0.233028993010521,0.724563002586365,0.227173000574112,0.728500008583069,0.220492497086525,0.730798006057739,0.212735995650291,0.730233013629913,0.203511506319046,0.726180016994476,0.195324495434761,0.717763006687164,0.190972506999969,0.707280993461609,0.188960492610931,0.697210013866425,0.188579499721527,0.68885600566864,0.164438992738724,0.684818029403687,0.165140494704247,0.683960974216461,0.164931505918503,0.699361026287079,0.164308995008469,0.69904500246048,0.163568496704102,0.710555016994476,0.163026496767998,0.709533989429474,0.160483494400978,0.720905005931854,0.160210505127907,0.718923985958099,0.157958999276161,0.724470973014832,0.15777750313282,0.722626984119415,0.156051993370056,0.726215004920959,0.153824999928474,0.727302014827728,0.153750002384186,0.725319027900696,0.155874505639076,0.724402010440826,0.150885000824928,0.728120982646942,0.14750400185585,0.727824985980988,0.148258000612259,0.723958015441895,0.151068493723869,0.725127995014191,0.144413992762566,0.724830985069275,0.145582497119904,0.721653997898102,0.141721993684769,0.718698978424072,0.139942497014999,0.710052013397217,0.140991494059563,0.708867013454437,0.142974495887756,0.716693997383118,0.138659507036209,0.699388980865479,0.139765501022339,0.698789000511169,0.137900501489639,0.686106026172638,0.139400005340576,0.686114013195038,0.138753995299339,0.671783983707428,0.140327498316765,0.672501027584076,0.141614496707916,0.658016979694366,0.142913997173309,0.658876001834869,0.14614999294281,0.647036015987396,0.147606000304222,0.648041009902954,0.149577006697655,0.641663014888763,0.151129499077797,0.642625987529755, -0.151656001806259,0.639186024665833,0.153344005346298,0.639491021633148,0.162081494927406,0.687475979328156,0.163410499691963,0.686262011528015,0.163267999887466,0.698045015335083,0.16185949742794,0.696547985076904,0.162000507116318,0.707889020442963,0.160833492875099,0.706075012683868,0.159703493118286,0.716183006763458,0.158761993050575,0.714221000671387,0.156500995159149,0.717194974422455,0.157423004508018,0.720022976398468,0.153246000409126,0.719498991966248,0.154690995812416,0.719304978847504,0.155474007129669,0.721879005432129,0.1535315066576,0.722527027130127,0.148854494094849,0.721343994140625,0.149475499987602,0.718209981918335,0.151479005813599,0.719434022903442,0.151231005787849,0.722437024116516,0.147174999117851,0.715839982032776,0.146533995866776,0.719156980514526,0.142436996102333,0.706915974617004,0.144384995102882,0.704366981983185,0.145434007048607,0.710958003997803,0.143962502479553,0.714897990226746,0.141574993729591,0.697179973125458,0.143756493926048,0.695710003376007,0.140930503606796,0.685953974723816,0.14368000626564,0.685365974903107,0.141455501317978,0.673548996448517,0.144658505916595,0.674036026000977,0.144241496920586,0.659720003604889,0.147052004933357,0.662419974803925,0.149234995245934,0.649464011192322,0.151255995035172,0.654572010040283,0.152973502874374,0.645757019519806,0.154749497771263,0.648810029029846,0.155568495392799,0.642207980155945,0.158122003078461,0.644677996635437,0.167225494980812,0.685694992542267,0.169089496135712,0.69151097536087,0.167355492711067,0.703450977802277,0.165965005755424,0.699806988239288,0.165493994951248,0.713212013244629,0.164331004023552,0.711165010929108,0.162821993231773,0.722571015357971,0.16185100376606,0.720894992351532,0.160257503390312,0.730373024940491,0.159716993570328,0.72768098115921,0.158280998468399,0.734544992446899,0.155157998204231,0.738358974456787,0.15429599583149,0.734993994235992,0.15727099776268,0.731962025165558,0.150794997811317,0.741217970848083,0.145951494574547,0.740378022193909,0.146492004394531,0.735184013843536,0.150591999292374, -0.736535012722015,0.140224501490593,0.734953999519348,0.14223949611187,0.731007993221283,0.137546494603157,0.728004992008209,0.134655997157097,0.71798700094223,0.136442497372627,0.713930010795593,0.139072999358177,0.7238450050354,0.13238200545311,0.704949975013733,0.134688496589661,0.701385021209717,0.131663501262665,0.688691973686218,0.134136006236076,0.686616003513336,0.132593005895615,0.670822978019714,0.13493150472641,0.670449018478394,0.136342003941536,0.652957022190094,0.13842299580574,0.654453992843628,0.140762493014336,0.642186999320984,0.143773004412651,0.642094016075134,0.147091001272202,0.63119500875473,0.148478493094444,0.635042011737823,0.152528494596481,0.62780100107193,0.153054505586624,0.632304012775421,0.157176494598389,0.629534006118774,0.157142996788025,0.632498025894165,0.166023999452591,0.68468302488327,0.16533599793911,0.699162006378174,0.163861498236656,0.710608005523682,0.161330506205559,0.720176994800568,0.158933505415916,0.725978970527649,0.156578004360199,0.729179978370667,0.153911992907524,0.731458008289337,0.146929502487183,0.731702983379364,0.150654494762421,0.732445001602173,0.143423497676849,0.72790801525116,0.138226002454758,0.711615025997162,0.140423998236656,0.721179008483887,0.136635005474091,0.699881970882416,0.135932996869087,0.686004996299744,0.136979505419731,0.670898973941803,0.140140503644943,0.656540989875793,0.144839495420456,0.645199000835419,0.148571997880936,0.639316022396088,0.152410507202148,0.635657012462616,0.155108004808426,0.636730015277863,0.159215003252029,0.641454994678497,0.156522005796432,0.639162003993988,0.160872995853424,0.65182101726532,0.161528006196022,0.641333997249603,0.157417505979538,0.654372990131378,0.155029505491257,0.657455027103424,0.151057004928589,0.665699005126953,0.148856997489929,0.672671973705292,0.146768003702164,0.683127999305725,0.146270006895065,0.693700015544891,0.147947505116463,0.700196981430054,0.149045005440712,0.704815983772278,0.151259005069733,0.708702027797699,0.152995496988297,0.713590025901794,0.156394496560097,0.709571003913879, -0.158761993050575,0.703607022762299,0.159339502453804,0.695272982120514,0.15837650001049,0.688121974468231,0.15361100435257,0.705268025398254,0.151886001229286,0.69991797208786,0.151105493307114,0.6960129737854,0.149699494242668,0.689943015575409,0.14971250295639,0.682478010654449,0.152242004871368,0.67595100402832,0.154242500662804,0.669170022010803,0.15600149333477,0.702445983886719,0.155464500188828,0.696621000766754,0.155364006757736,0.689944982528687,0.153987005352974,0.68502002954483,0.157407000660896,0.67907702922821,0.159896999597549,0.677219986915588,0.157937005162239,0.664397001266479,0.158547505736351,0.660126984119415,0.16176749765873,0.676135003566742,0.162585496902466,0.673040986061096,0.160290494561195,0.658972978591919,0.162665501236916,0.663551986217499,0.163358002901077,0.662747025489807,0.163697004318237,0.66534298658371,0.163066506385803,0.666604995727539,0.164699494838715,0.670818984508514,0.163276493549347,0.67179399728775,0.161944001913071,0.661297976970673,0.163562998175621,0.659175992012024,0.164866000413895,0.654704988002777,0.167162001132965,0.670987010002136,0.157177999615669,0.622817993164063,0.151161998510361,0.619410991668701,0.171560496091843,0.658200979232788,0.168750002980232,0.647451996803284,0.166118502616882,0.637403011322021,0.171430498361588,0.677619993686676,0.175133496522903,0.666863977909088,0.182874500751495,0.684961020946503,0.182734996080399,0.697009027004242,0.177105501294136,0.682823002338409,0.175900995731354,0.694773972034454,0.183531492948532,0.709517002105713,0.174844995141029,0.707311987876892,0.178513005375862,0.673511981964111,0.163657993078232,0.631030023097992,0.161392003297806,0.625512003898621,0.160364001989365,0.634810984134674,0.159259498119354,0.631102979183197,0.144785493612289,0.625465989112854,0.141412496566772,0.613906979560852,0.137588992714882,0.637790977954865,0.132337003946304,0.627372980117798,0.131641998887062,0.651889979839325,0.123351000249386,0.650075018405914,0.127168506383896,0.672699987888336,0.11634249985218,0.677537977695465,0.126214504241943, -0.694980025291443,0.1163375005126,0.707063019275665,0.11973249912262,0.729928970336914,0.127915993332863,0.713593006134033,0.130796507000923,0.728820025920868,0.124167501926422,0.747359991073608,0.134533002972603,0.740676999092102,0.129339993000031,0.759661018848419,0.135723501443863,0.770138025283813,0.138568997383118,0.749882996082306,0.144648998975754,0.756501019001007,0.143574506044388,0.777002990245819,0.151801496744156,0.758723974227905,0.170790493488312,0.732671976089478,0.173362493515015,0.720230996608734,0.167594000697136,0.743242025375366,0.163784995675087,0.751172006130219,0.158303499221802,0.756188988685608,0.18597300350666,0.726146996021271,0.180737495422363,0.744009017944336,0.176588505506516,0.75915801525116,0.170964494347572,0.772433996200562,0.162719994783401,0.777197003364563,0.153314501047134,0.778910994529724,0.198089495301247,0.739360988140106,0.209140494465828,0.746022999286652,0.218138501048088,0.747789978981018,0.226029500365257,0.746074974536896,0.232149496674538,0.743619024753571,0.237443000078201,0.739817976951599,0.241269499063492,0.736837029457092,0.24448250234127,0.734260976314545,0.247316002845764,0.730440974235535,0.25,0.729717016220093,0.250000506639481,0.759752988815308,0.250000506639481,0.788128018379211,0.246919497847557,0.788484990596771,0.246991500258446,0.759733021259308,0.243491500616074,0.789866983890533,0.243908494710922,0.760792970657349,0.239488497376442,0.791312992572784,0.240473002195358,0.763137996196747,0.234935000538826,0.793214976787567,0.236175000667572,0.765802025794983,0.228755503892899,0.79524302482605,0.230559498071671,0.76843398809433,0.221909493207932,0.795612990856171,0.223689004778862,0.770296990871429,0.212032005190849,0.793654024600983,0.215160995721817,0.770415008068085,0.201482996344566,0.789752006530762,0.205462500452995,0.767175018787384,0.188425496220589,0.777140021324158,0.193584501743317,0.758190989494324,0.182433992624283,0.802133977413177,0.196764498949051,0.808032989501953,0.20719949901104,0.814252018928528,0.217664003372192,0.819706976413727,0.224965497851372, -0.822198987007141,0.231674507260323,0.822997987270355,0.237019494175911,0.823148012161255,0.24176099896431,0.822463989257813,0.245968505740166,0.821981012821198,0.250000506639481,0.820546984672546,0.105515003204346,0.716189026832581,0.105020999908447,0.683304011821747,0.0989779978990555,0.724618971347809,0.09740349650383,0.69055300951004,0.0928030014038086,0.733285009860992,0.0870499983429909,0.743138015270233,0.0825750008225441,0.706144988536835,0.0902199968695641,0.697610974311829,0.0816825032234192,0.753113985061646,0.0765995010733604,0.762757003307343,0.0705024972558022,0.721827983856201,0.076263003051281,0.714052021503448,0.0891050025820732,0.790364980697632,0.0847610011696815,0.802123010158539,0.0932295024394989,0.778509974479675,0.0977305024862289,0.766220986843109,0.1110730022192,0.740418016910553,0.103903003036976,0.752821028232574,0.0995455011725426,0.824270009994507,0.0962644964456558,0.83831799030304,0.102386496961117,0.810236990451813,0.105493001639843,0.79553097486496,0.110926002264023,0.777723014354706,0.117201000452042,0.761461973190308,0.113477997481823,0.852636992931366,0.111800000071526,0.868556976318359,0.115345999598503,0.835386991500854,0.116959996521473,0.81844699382782,0.120031997561455,0.798521995544434,0.124194502830505,0.778967022895813,0.130872502923012,0.873153984546661,0.130747497081757,0.891665995121002,0.130785003304482,0.854588985443115,0.13069050014019,0.836076974868774,0.131375506520271,0.813932001590729,0.132951006293297,0.791935980319977,0.150295495986938,0.885852992534637,0.152467504143715,0.905018985271454,0.148001000285149,0.867054998874664,0.145961001515388,0.848433017730713,0.143838003277779,0.82506400346756,0.143058001995087,0.800518989562988,0.169357001781464,0.886282026767731,0.174600005149841,0.906624019145966,0.165177002549171,0.867833018302917,0.161626502871513,0.849443018436432,0.158127993345261,0.827071011066437,0.155857503414154,0.802380979061127,0.187283501029015,0.878715991973877,0.195156499743462,0.896408021450043,0.180729493498802,0.861216008663177,0.176076501607895, -0.845561027526855,0.1708614975214,0.824672996997833,0.167162001132965,0.801982998847961,0.181019499897957,0.821599006652832,0.202058002352715,0.864486992359161,0.211709499359131,0.877291023731232,0.193933501839638,0.850961029529572,0.188159003853798,0.838521003723145,0.193729996681213,0.82234799861908,0.202231004834175,0.834074020385742,0.211807504296303,0.844137012958527,0.0634139999747276,0.785771012306213,0.0597570016980171,0.791978001594543,0.0534695014357567,0.748189985752106,0.0569849982857704,0.740921020507813,0.0728859975934029,0.829854011535645,0.0690840035676956,0.837323009967804,0.0864000022411346,0.871577978134155,0.0832215026021004,0.881271004676819,0.105091497302055,0.908693015575409,0.103001996874809,0.920516014099121,0.129405498504639,0.937354028224945,0.128442496061325,0.95108300447464,0.157395496964455,0.952054977416992,0.15837949514389,0.967024028301239,0.186444997787476,0.950406014919281,0.189701497554779,0.963099002838135,0.213673502206802,0.931747019290924,0.218482494354248,0.940652012825012,0.234748005867004,0.898443996906281,0.241920500993729,0.903298020362854,0.114230997860432,0.645931005477905,0.127952501177788,0.614723026752472,0.14079050719738,0.596768021583557,0.0559424981474876,0.797038018703461,0.0498929992318153,0.751492977142334,0.065030001103878,0.843414008617401,0.0796670019626617,0.890286982059479,0.0999474972486496,0.931587994098663,0.126377493143082,0.96465402841568,0.158252999186516,0.980697989463806,0.192948505282402,0.97511100769043,0.222944006323814,0.950178027153015,0.250000506639481,0.908200979232788,0.0717860013246536,0.771519005298615,0.0673979967832565,0.779102027416229,0.0612509995698929,0.735078990459442,0.0655094981193542,0.728775978088379,0.0806765034794807,0.812656998634338,0.0766505002975464,0.82192999124527,0.0930714979767799,0.850854992866516,0.0898159965872765,0.862030982971191,0.109736502170563,0.883710980415344,0.107437498867512,0.897137999534607,0.130496993660927,0.90836501121521,0.130144506692886,0.923110008239746,0.154372006654739,0.922034025192261,0.156065493822098, -0.937072992324829,0.17909799516201,0.923816025257111,0.182834506034851,0.937286019325256,0.202640503644943,0.911638975143433,0.207950994372368,0.922021985054016,0.22053000330925,0.886916995048523,0.227437496185303,0.893523991107941,0.250000506639481,0.860507011413574,0.244890496134758,0.860984027385712,0.23955899477005,0.859512984752655,0.220098495483398,0.850739002227783,0.227456003427505,0.855126023292542,0.23378349840641,0.858202993869781,0.0462919995188713,0.722594022750854,0.0499089993536472,0.718142986297607,0.0539849996566772,0.713423013687134,0.0588539987802505,0.708451986312866,0.0640269964933395,0.702616989612579,0.0696780011057854,0.695756018161774,0.0759755000472069,0.688005983829498,0.083066999912262,0.679361999034882,0.0913800001144409,0.669619977474213,0.101020999252796,0.659130990505219,0.0934899970889091,0.519122004508972,0.0878745019435883,0.489726006984711,0.0999765023589134,0.476042002439499,0.105192996561527,0.506344974040985,0.0835885033011436,0.530094027519226,0.0778874978423119,0.505092024803162,0.0729464963078499,0.542212009429932,0.0677015036344528,0.519025027751923,0.0627769976854324,0.556128978729248,0.0582975000143051,0.53234201669693,0.0553149990737438,0.567529022693634,0.0501280017197132,0.543956995010376,0.0481544993817806,0.577172994613647,0.0425065010786057,0.554328978061676,0.0411750003695488,0.586803019046783,0.0349470004439354,0.56446897983551,0.0338734984397888,0.597931981086731,0.0270594991743565,0.575416028499603,0.0270319990813732,0.607370018959045,0.0194370001554489,0.586987018585205,0.022061500698328,0.61710399389267,0.0135855004191399,0.596203029155731,0.114845000207424,0.456126987934113,0.119153000414371,0.488985002040863,0.128491505980492,0.436037003993988,0.132314994931221,0.473091006278992,0.142981499433517,0.418662995100021,0.145963996648788,0.458761990070343,0.156642496585846,0.399926006793976,0.15854500234127,0.44387099146843,0.166008502244949,0.387816995382309,0.169446006417274,0.42985200881958,0.174190998077393,0.375959008932114,0.179324492812157,0.417605996131897, -0.183479994535446,0.366019010543823,0.188372999429703,0.406976997852325,0.193704500794411,0.355248004198074,0.197726994752884,0.397399008274078,0.204514503479004,0.34400200843811,0.208305492997169,0.386786997318268,0.212596505880356,0.336160987615585,0.215454503893852,0.378697007894516,0.218298003077507,0.328873991966248,0.220979496836662,0.371917992830276,0.223559498786926,0.323924988508224,0.226837500929832,0.366432994604111,0.22800549864769,0.31988400220871,0.231684505939484,0.362533986568451,0.233498498797417,0.315714985132217,0.23675049841404,0.360572993755341,0.238482505083084,0.313300013542175,0.240895003080368,0.358741998672485,0.241972997784615,0.311381995677948,0.244217500090599,0.356312990188599,0.246765002608299,0.308966010808945,0.247849494218826,0.354259014129639,0.249999493360519,0.307610988616943,0.249999493360519,0.353895008563995,0.0434884987771511,0.703356981277466,0.0399994999170303,0.683440029621124,0.0444414988160133,0.678448021411896,0.0474255010485649,0.698552012443542,0.0493899993598461,0.671938002109528,0.0518569983541965,0.691501975059509,0.0547235012054443,0.664390981197357,0.0569199994206429,0.685558974742889,0.0605775006115437,0.656601011753082,0.0624770000576973,0.678893983364105,0.066991999745369,0.648504018783569,0.0685544982552528,0.671589970588684,0.0741195008158684,0.640241980552673,0.075312502682209,0.663658022880554,0.0821380019187927,0.631862998008728,0.0829034969210625,0.654686987400055,0.0909949988126755,0.621719002723694,0.0915485024452209,0.644504010677338,0.100892998278141,0.609959006309509,0.101421497762203,0.63262802362442,0.11209449917078,0.596439003944397,0.113091498613358,0.6180499792099,0.124053500592709,0.580781996250153,0.125674992799759,0.598574995994568,0.136151999235153,0.565002977848053,0.138091996312141,0.581547021865845,0.147902995347977,0.549691021442413,0.15022699534893,0.566964983940125,0.158629506826401,0.534767985343933,0.160375505685806,0.551744997501373,0.168670505285263,0.521241009235382,0.169477000832558,0.539543986320496,0.178488001227379,0.509459972381592, -0.178453996777534,0.528941988945007,0.18843649327755,0.500063002109528,0.187601506710052,0.519914984703064,0.198615998029709,0.49235400557518,0.197221502661705,0.512548983097076,0.207257002592087,0.487381011247635,0.207062005996704,0.50748598575592,0.215982005000114,0.482816010713577,0.216848492622375,0.502579987049103,0.22282400727272,0.480066001415253,0.224664002656937,0.498928993940353,0.228955507278442,0.47885000705719,0.231195494532585,0.497940003871918,0.234635502099991,0.478329986333847,0.236266493797302,0.498605012893677,0.238666504621506,0.478255987167358,0.240121006965637,0.500127017498016,0.241926997900009,0.478487014770508,0.243398994207382,0.501514971256256,0.245121493935585,0.47852098941803,0.246353507041931,0.502633988857269,0.247758492827415,0.478413999080658,0.248767495155334,0.502528011798859,0.25,0.478276997804642,0.25,0.502520978450775,0.0373109988868237,0.670383989810944,0.0336454994976521,0.65463000535965,0.0385985001921654,0.647734999656677,0.041533000767231,0.663551986217499,0.0438739992678165,0.638821005821228,0.0468824990093708,0.656570971012115,0.0499179996550083,0.630541026592255,0.0525914989411831,0.64860200881958,0.0564855001866817,0.623157978057861,0.0587265007197857,0.640600979328156,0.0634170025587082,0.614502012729645,0.0653384998440742,0.631838977336884,0.0709209963679314,0.603717982769012,0.0726490020751953,0.622732996940613,0.0794380009174347,0.592592000961304,0.0809115022420883,0.613146007061005,0.0886680036783218,0.581062972545624,0.0899249985814095,0.603043019771576,0.098692998290062,0.569411993026733,0.0997380018234253,0.590409994125366,0.109762497246265,0.558337986469269,0.111001498997211,0.578034996986389,0.121630996465683,0.544848024845123,0.12287200242281,0.564064979553223,0.133880496025085,0.529474973678589,0.135024502873421,0.548695981502533,0.146055996417999,0.51434201002121,0.146922498941422,0.532931983470917,0.15769450366497,0.499204009771347,0.15820300579071,0.517866015434265,0.168596997857094,0.485123991966248,0.168747499585152,0.504132986068726,0.179123505949974, -0.472485989332199,0.178968995809555,0.492008000612259,0.189557000994682,0.461879998445511,0.189184993505478,0.48199799656868,0.199980497360229,0.453519999980927,0.199345499277115,0.47368198633194,0.207699492573738,0.448334991931915,0.206911996006966,0.468136012554169,0.215326502919197,0.443996995687485,0.214441999793053,0.463878005743027,0.22367849946022,0.441112995147705,0.222109004855156,0.460864007472992,0.22885949909687,0.439925998449326,0.228594496846199,0.459838002920151,0.233922496438026,0.43987300992012,0.23446249961853,0.45924299955368,0.237991005182266,0.43970999121666,0.238336995244026,0.458990007638931,0.241474002599716,0.439754009246826,0.242733001708984,0.458988010883331,0.244669497013092,0.439722001552582,0.245084002614021,0.459336012601852,0.248030006885529,0.439152002334595,0.248018994927406,0.459881991147995,0.249999493360519,0.438924998044968,0.249999493360519,0.459986001253128,0.0289625003933907,0.637512981891632,0.0337079986929893,0.628104984760284,0.0396265015006065,0.619463980197906,0.0463760010898113,0.611436009407043,0.0532450005412102,0.603170990943909,0.060284499078989,0.59340101480484,0.0679704993963242,0.582121014595032,0.0770910009741783,0.570087015628815,0.0867939963936806,0.558493971824646,0.0968040004372597,0.546187996864319,0.108005501329899,0.534763991832733,0.120257496833801,0.519141972064972,0.132907494902611,0.504770994186401,0.145692005753517,0.490296006202698,0.158261999487877,0.477093011140823,0.169056504964828,0.461760014295578,0.179379999637604,0.447988986968994,0.189514502882957,0.437285989522934,0.199697494506836,0.428146004676819,0.208100497722626,0.421151012182236,0.217013999819756,0.414761006832123,0.223182499408722,0.411134004592896,0.228802502155304,0.408091992139816,0.234164506196976,0.40540400147438,0.238958492875099,0.404060989618301,0.242877498269081,0.403203010559082,0.245533496141434,0.403140991926193,0.248509004712105,0.402945011854172,0.249999493360519,0.403014004230499,0.243132993578911,0.625388979911804,0.243861496448517,0.624855995178223,0.242130994796753, -0.625514984130859,0.241181492805481,0.625185012817383,0.240621000528336,0.62465900182724,0.240101993083954,0.624071002006531,0.244186505675316,0.624108016490936,0.244500994682312,0.623088002204895,0.244413495063782,0.622242987155914,0.244325995445251,0.621499001979828,0.243621006608009,0.620976984500885,0.242579996585846,0.621088981628418,0.241469502449036,0.621725022792816,0.240680992603302,0.622406005859375,0.239985004067421,0.623223006725311,0.242365002632141,0.623413980007172,0.243228495121002,0.623327970504761,0.241552501916885,0.623471975326538,0.240803003311157,0.623520016670227,0.243920505046844,0.623219013214111,0.253775000572205,0.00916699972003698,0.25374099612236,0.013760999776423,0.249999493360519,0.0137679995968938,0.2499990016222,0.00930199958384037,0.288064509630203,0.0499380007386208,0.287978500127792,0.0541080012917519,0.284202009439468,0.0453570000827312,0.282831013202667,0.0382900014519691,0.278423488140106,0.0300290007144213,0.27963450551033,0.0360630005598068,0.274251013994217,0.0282290000468493,0.273660510778427,0.0229320004582405,0.267677485942841,0.0206799991428852,0.267435997724533,0.0157880000770092,0.262668490409851,0.0168469995260239,0.262594014406204,0.0121130002662539,0.257770508527756,0.0148590002208948,0.257759988307953,0.0102340001612902,0.288953512907028,0.0513279996812344,0.288916498422623,0.0570509992539883,0.289581000804901,0.0524230003356934,0.289817988872528,0.0583509989082813,0.290255010128021,0.0525970011949539,0.290398985147476,0.0582000017166138,0.291162014007568,0.052726998925209,0.291606485843658,0.0574310012161732,0.29491600394249,0.0479759983718395,0.294400990009308,0.0514830015599728,0.297522485256195,0.04254499822855,0.297876000404358,0.0461070016026497,0.300255507230759,0.0367729999125004,0.300957500934601,0.0402610003948212,0.303610503673553,0.029602000489831,0.304365009069443,0.0329990014433861,0.306464493274689,0.0251659993082285,0.307139009237289,0.0278639998286963,0.309383511543274,0.0218690000474453,0.3099485039711,0.0240630004554987,0.311895996332169,0.0192820001393557, -0.312407493591309,0.0214360002428293,0.314121514558792,0.0171230006963015,0.314583003520966,0.0192900002002716,0.25373300909996,0.0183579996228218,0.25,0.0181009992957115,0.257738500833511,0.0193879995495081,0.262575507164001,0.0214970000088215,0.267462998628616,0.0255159996449947,0.273750990629196,0.0334779992699623,0.278981000185013,0.0417370013892651,0.283349990844727,0.0502180010080338,0.286578506231308,0.057472001761198,0.288070499897003,0.0611880011856556,0.289858013391495,0.0630429983139038,0.291059494018555,0.0631510019302368,0.292901009321213,0.0623660013079643,0.295561999082565,0.0561130009591579,0.298896491527557,0.05027199909091,0.301847994327545,0.0442770011723042,0.305135488510132,0.0367750003933907,0.308017492294312,0.0317890010774136,0.310871005058289,0.0279840007424355,0.313324987888336,0.0253180004656315,0.315489500761032,0.0231849998235703,0.25280749797821,0.0370140001177788,0.250000506639481,0.0362839996814728,0.255756497383118,0.0381200015544891,0.259390503168106,0.039292998611927,0.263280004262924,0.0412359982728958,0.268957495689392,0.0458119995892048,0.274455487728119,0.0512799993157387,0.279112488031387,0.0575769990682602,0.283425003290176,0.0622680000960827,0.286483496427536,0.0667940005660057,0.290285497903824,0.0690340027213097,0.292822003364563,0.0703879967331886,0.296824514865875,0.0720200017094612,0.301694989204407,0.0690599977970123,0.306177496910095,0.0647870004177094,0.309123009443283,0.0594520010054111,0.312103003263474,0.0532689988613129,0.314103990793228,0.0481010004878044,0.316334009170532,0.0438759997487068,0.318561494350433,0.0412620007991791,0.32074499130249,0.039547998458147,0.252478986978531,0.0601590014994144,0.250001013278961,0.0596110001206398,0.281388491392136,0.0824949964880943,0.276330500841141,0.0781219974160194,0.271798998117447,0.072722002863884,0.266542494297028,0.0681570023298264,0.261505991220474,0.0639130026102066,0.258064985275269,0.062135998159647,0.254970014095306,0.0611659996211529,0.28523451089859,0.0868119969964027,0.291494011878967,0.0908150002360344,0.295722991228104, -0.0938849970698357,0.301519513130188,0.098302997648716,0.307836502790451,0.097680002450943,0.313024997711182,0.095051996409893,0.316005498170853,0.0898410007357597,0.318894505500793,0.0833360031247139,0.320995002985001,0.0771899968385696,0.323419988155365,0.0724449977278709,0.325695008039474,0.0700440034270287,0.327984511852264,0.068912997841835,0.252398490905762,0.0922560021281242,0.250001013278961,0.0920369997620583,0.282324492931366,0.115411996841431,0.27649050951004,0.110587000846863,0.271573513746262,0.105089999735355,0.266024500131607,0.100317001342773,0.260924488306046,0.0958520025014877,0.257557511329651,0.0939420014619827,0.254689514636993,0.0930659994482994,0.286777496337891,0.120013996958733,0.294308990240097,0.125056996941566,0.299391001462936,0.12881800532341,0.306196004152298,0.134130999445915,0.312771499156952,0.133130997419357,0.317647486925125,0.129636004567146,0.3203204870224,0.124003000557423,0.322979003190994,0.116860002279282,0.326033502817154,0.111621998250484,0.329241007566452,0.108232997357845,0.331681996583939,0.106462001800537,0.33398848772049,0.105475999414921,0.252286493778229,0.134829998016357,0.252152502536774,0.187565997242928,0.25,0.188407003879547,0.250000506639481,0.135050997138023,0.280548989772797,0.160683006048203,0.276706010103226,0.211282998323441,0.272090494632721,0.206022992730141,0.275031507015228,0.155542999505997,0.270433485507965,0.149569004774094,0.268196493387222,0.200765997171402,0.263888001441956,0.195595994591713,0.265215992927551,0.144084006547928,0.259893000125885,0.190832003951073,0.260423988103867,0.138815999031067,0.257048010826111,0.188546001911163,0.257229000329971,0.13646100461483,0.254357010126114,0.187792003154755,0.254485011100769,0.135500997304916,0.284750491380692,0.16541999578476,0.280443012714386,0.215644001960754,0.292028486728668,0.170021995902061,0.286953002214432,0.220558002591133,0.297046512365341,0.173270002007484,0.291620999574661,0.223859995603561,0.304004013538361,0.177453994750977,0.298297494649887,0.227788001298904,0.311096489429474,0.174827992916107, -0.305756509304047,0.226172000169754,0.316608488559723,0.170242995023727,0.311753511428833,0.222894996404648,0.320198506116867,0.164484992623329,0.315779507160187,0.218349993228912,0.324084013700485,0.157567992806435,0.320095986127853,0.21306100487709,0.328327000141144,0.154756993055344,0.324404507875443,0.21076899766922,0.332129508256912,0.153687998652458,0.328221499919891,0.210207998752594,0.334742993116379,0.153013005852699,0.330895006656647,0.210409000515938,0.337074488401413,0.152537003159523,0.333224505186081,0.211089000105858,0.252874493598938,0.290405005216599,0.249998494982719,0.290491014719009,0.255905985832214,0.290452003479004,0.25959300994873,0.29033300280571,0.263314485549927,0.290428996086121,0.2683424949646,0.290832996368408,0.273405492305756,0.290619999170303,0.277743995189667,0.290300011634827,0.28201299905777,0.289038002490997,0.285344511270523,0.287936985492706,0.289576500654221,0.28514900803566,0.292396992444992,0.283071011304855,0.296651512384415,0.279991000890732,0.30180698633194,0.274892002344131,0.306793004274368,0.270987987518311,0.310433506965637,0.268990010023117,0.3142069876194,0.267343014478683,0.317375987768173,0.268292009830475,0.320425003767014,0.26996898651123,0.322996497154236,0.271084010601044,0.325310498476028,0.271862000226974,0.268518000841141,0.678007006645203,0.268572509288788,0.679188013076782,0.267804503440857,0.679141998291016,0.267767995595932,0.677661001682281,0.270027995109558,0.684696972370148,0.26841801404953,0.681928992271423,0.269152998924255,0.681357979774475,0.270695000886917,0.683929979801178,0.272083014249802,0.687390983104706,0.2725909948349,0.686519026756287,0.274411499500275,0.689500987529755,0.274821996688843,0.688367009162903,0.276693493127823,0.690618991851807,0.276989996433258,0.689427971839905,0.278993487358093,0.690850019454956,0.279065489768982,0.689400017261505,0.283910006284714,0.689061999320984,0.281367003917694,0.690469980239868,0.281153500080109,0.688832998275757,0.283550500869751,0.687600016593933,0.286321491003036,0.687008023262024,0.285932004451752, -0.685658991336823,0.288823485374451,0.684942007064819,0.288199007511139,0.683786988258362,0.290136486291885,0.683737993240356,0.289272487163544,0.682951986789703,0.269126504659653,0.677134990692139,0.268556505441666,0.676401019096375,0.272476494312286,0.674995005130768,0.270536988973618,0.676073014736176,0.270164012908936,0.674776017665863,0.272314488887787,0.673577010631561,0.274679988622665,0.674197971820831,0.27463099360466,0.672625005245209,0.27717998623848,0.673902988433838,0.277162998914719,0.672172009944916,0.280046492815018,0.673933982849121,0.280339002609253,0.672169029712677,0.282878488302231,0.674444019794464,0.283072501420975,0.672717988491058,0.285270005464554,0.675630986690521,0.285692989826202,0.674197018146515,0.287490010261536,0.677241027355194,0.288114011287689,0.676163017749786,0.289011508226395,0.679736971855164,0.289783507585526,0.678965985774994,0.289857000112534,0.681222021579742,0.290809512138367,0.681391000747681,0.290139496326447,0.682317972183228,0.291005998849869,0.682816028594971,0.263684988021851,0.677541971206665,0.263550013303757,0.681168019771576,0.260520488023758,0.682703018188477,0.260803997516632,0.677887976169586,0.264046996831894,0.685195982456207,0.260847985744476,0.687357008457184,0.266393512487411,0.689688980579376,0.264055013656616,0.69309002161026,0.295704990625381,0.687597990036011,0.296431511640549,0.684521973133087,0.299686014652252,0.685625016689301,0.29900449514389,0.690186023712158,0.293915510177612,0.690859019756317,0.297102987766266,0.694867014884949,0.290364503860474,0.694478988647461,0.292923986911774,0.699047982692719,0.286449491977692,0.69768899679184,0.288032501935959,0.703014016151428,0.282750993967056,0.699570000171661,0.283769994974136,0.70525598526001,0.278562486171722,0.699575006961823,0.278418987989426,0.705039978027344,0.274841487407684,0.698164999485016,0.273811995983124,0.702767014503479,0.271596997976303,0.695995986461639,0.269872486591339,0.699850976467133,0.266865491867065,0.696591019630432,0.268871486186981,0.693080008029938,0.296058505773544,0.680770993232727, -0.299184501171112,0.680113971233368,0.294199496507645,0.675302028656006,0.296982496976852,0.672922015190125,0.291646987199783,0.670499980449677,0.293832987546921,0.666876971721649,0.288471013307571,0.667187988758087,0.290214985609055,0.662784993648529,0.284925490617752,0.6649209856987,0.28617051243782,0.660112977027893,0.281554996967316,0.664043009281158,0.282326489686966,0.659030020236969,0.277990490198135,0.664000988006592,0.278614014387131,0.659018993377686,0.274751007556915,0.66472202539444,0.274847507476807,0.659940004348755,0.271523505449295,0.666335999965668,0.27089649438858,0.662168025970459,0.268225997686386,0.668938994407654,0.266862004995346,0.66567599773407,0.265098512172699,0.672973990440369,0.26248499751091,0.671259999275208,0.253260493278503,0.637311995029449,0.253266006708145,0.641873002052307,0.252183496952057,0.598667979240417,0.251918494701385,0.602962017059326,0.270916998386383,0.594515025615692,0.273880004882813,0.593367993831635,0.274262487888336,0.59434700012207,0.271337509155273,0.596074998378754,0.264971494674683,0.596450984477997,0.268020004034042,0.5954629778862,0.268325001001358,0.597681999206543,0.265245497226715,0.599307000637054,0.261166006326675,0.597675025463104,0.261626988649368,0.601287007331848,0.258020013570786,0.598832011222839,0.258358985185623,0.60308301448822,0.25484499335289,0.599058985710144,0.25482851266861,0.603631973266602,0.274227499961853,0.593116998672485,0.274715006351471,0.593649983406067,0.274511009454727,0.592612028121948,0.275036513805389,0.59263801574707,0.274237513542175,0.592019021511078,0.274690508842468,0.591578006744385,0.27376401424408,0.591607987880707,0.274035513401031,0.590889990329742,0.272156000137329,0.589281022548676,0.271315485239029,0.591118991374969,0.268620997667313,0.590686976909637,0.269327014684677,0.587999999523163,0.265278488397598,0.590695977210999,0.265827506780624,0.587580978870392,0.261285006999969,0.590893983840942,0.262105494737625,0.587463974952698,0.257977485656738,0.59103798866272,0.258597999811172,0.587311029434204,0.25517550110817, -0.590771019458771,0.255457013845444,0.586847007274628,0.252451509237289,0.590354025363922,0.252487987279892,0.586405992507935,0.252251505851746,0.596296012401581,0.254785001277924,0.596482992172241,0.257811993360519,0.596482992172241,0.260917007923126,0.595708012580872,0.264824002981186,0.594874024391174,0.267845511436462,0.594214022159576,0.270687997341156,0.593648016452789,0.273669511079788,0.592810988426208,0.273961991071701,0.592805981636047,0.274219512939453,0.592585027217865,0.273984998464584,0.592253983020782,0.273613512516022,0.592009007930756,0.270812511444092,0.592145979404449,0.268092513084412,0.592424988746643,0.26493901014328,0.592633008956909,0.260955989360809,0.593106985092163,0.25780001282692,0.593533992767334,0.254907488822937,0.593418002128601,0.252315014600754,0.593101024627686,0.252272993326187,0.595018982887268,0.254717499017715,0.595120012760162,0.257692486047745,0.595220029354095,0.260785013437271,0.594659984111786,0.264745503664017,0.594027996063232,0.267751485109329,0.593531012535095,0.270563989877701,0.593177974224091,0.273559004068375,0.592504024505615,0.273822009563446,0.592629015445709,0.274062514305115,0.59256500005722,0.273847490549088,0.59237802028656,0.273534506559372,0.592226028442383,0.270539999008179,0.592697978019714,0.267788499593735,0.593284010887146,0.264746010303497,0.59366101026535,0.260761499404907,0.594277024269104,0.257678508758545,0.59485000371933,0.254739999771118,0.594802975654602,0.252236008644104,0.594551026821136,0.25195100903511,0.604043006896973,0.252219498157501,0.61032098531723,0.254950493574142,0.604794979095459,0.255464494228363,0.610826015472412,0.258550494909286,0.604331016540527,0.259786486625671,0.611298978328705,0.261893510818481,0.602584004402161,0.263294488191605,0.611374020576477,0.265498489141464,0.6007199883461,0.267156004905701,0.609911978244781,0.268584489822388,0.598962008953094,0.269760996103287,0.607876002788544,0.271521508693695,0.597159028053284,0.272979497909546,0.604767978191376,0.276985496282578,0.600820004940033,0.274657011032104,0.595264971256256, -0.27538201212883,0.594045996665955,0.278387486934662,0.596342027187347,0.275873512029648,0.592554986476898,0.27844250202179,0.592276990413666,0.275673985481262,0.590658009052277,0.277875006198883,0.588696002960205,0.274804502725601,0.589276015758514,0.276661485433578,0.585014998912811,0.27317750453949,0.58721798658371,0.274520993232727,0.581761002540588,0.270226508378983,0.585218012332916,0.271535485982895,0.579315006732941,0.252783000469208,0.579308986663818,0.252595990896225,0.583424985408783,0.255620986223221,0.583813011646271,0.25594499707222,0.579176008701324,0.258938014507294,0.583796977996826,0.259196996688843,0.579384028911591,0.263099014759064,0.579171001911163,0.26264551281929,0.583950996398926,0.266439497470856,0.584309995174408,0.267280489206314,0.578882992267609,0.252452999353409,0.616021990776062,0.256159991025925,0.615952014923096,0.260224014520645,0.617043018341064,0.264438986778259,0.618956029415131,0.267877995967865,0.618898987770081,0.270650506019592,0.620015978813171,0.275110006332397,0.613606989383698,0.279235988855362,0.60724800825119,0.279105514287949,0.580805003643036,0.276162505149841,0.575869977474213,0.281574010848999,0.585878014564514,0.283044993877411,0.591584026813507,0.281436502933502,0.59961199760437,0.253262996673584,0.571956992149353,0.256848007440567,0.572124004364014,0.259806990623474,0.571740984916687,0.263356506824493,0.570940971374512,0.267701506614685,0.570738017559052,0.272504985332489,0.572777986526489,0.253147512674332,0.689513027667999,0.252757996320724,0.699307978153229,0.257770001888275,0.689710974693298,0.256433486938477,0.700468003749847,0.262215495109558,0.69651198387146,0.259799003601074,0.70378702878952,0.267063498497009,0.710861027240753,0.263084501028061,0.707126975059509,0.265370011329651,0.699509024620056,0.268625497817993,0.702733993530273,0.271838992834091,0.715264022350311,0.27317801117897,0.706314980983734,0.278403997421265,0.709228992462158,0.277640998363495,0.719030976295471,0.284604489803314,0.709546983242035,0.285247504711151,0.719704985618591,0.292453497648239, -0.717562019824982,0.289077490568161,0.707230985164642,0.304107487201691,0.704264998435974,0.298853486776352,0.711933016777039,0.294606000185013,0.702551007270813,0.299551010131836,0.698038995265961,0.307526499032974,0.688400983810425,0.307026505470276,0.695397973060608,0.301609486341476,0.69219297170639,0.302270501852036,0.686505019664764,0.301748991012573,0.679636001586914,0.306617498397827,0.679045021533966,0.29907101392746,0.656917989253998,0.303704500198364,0.666727006435394,0.299277991056442,0.670965015888214,0.295572012662888,0.663895010948181,0.288671493530273,0.648298978805542,0.293602496385574,0.651453971862793,0.29152700304985,0.659080982208252,0.287166506052017,0.656138002872467,0.279747992753983,0.647096991539001,0.283933490514755,0.646941006183624,0.282951503992081,0.654888987541199,0.279065996408463,0.654887974262238,0.268530011177063,0.650889992713928,0.274713009595871,0.648256003856659,0.274841994047165,0.656042993068695,0.27029550075531,0.658908009529114,0.26367449760437,0.657415986061096,0.265461504459381,0.663025975227356,0.258786499500275,0.6632000207901,0.26000851392746,0.670140027999878,0.253993004560471,0.667208015918732,0.253590494394302,0.675769984722137,0.253134995698929,0.685486972332001,0.257570505142212,0.684401988983154,0.253374993801117,0.680257022380829,0.258044511079788,0.678373992443085,0.252893000841141,0.532805979251862,0.253003507852554,0.543537020683289,0.262801498174667,0.543027997016907,0.262153506278992,0.531848013401031,0.266663998365402,0.531359016895294,0.267455011606216,0.543129026889801,0.27251198887825,0.543704986572266,0.271580010652542,0.531226992607117,0.277467489242554,0.532039999961853,0.277963012456894,0.545226991176605,0.284121006727219,0.548629999160767,0.28456848859787,0.534622013568878,0.293496996164322,0.540000975131989,0.291911005973816,0.554488003253937,0.298994988203049,0.560042977333069,0.30248948931694,0.54669600725174,0.310405492782593,0.55417400598526,0.305662512779236,0.566084027290344,0.312140494585037,0.572754979133606,0.317209511995316,0.561105012893677, -0.323698997497559,0.569525003433228,0.318403512239456,0.580622971057892,0.330713510513306,0.603082001209259,0.336672008037567,0.594972014427185,0.341619998216629,0.611508011817932,0.335868000984192,0.615544974803925,0.324437499046326,0.590399026870728,0.330106496810913,0.579846978187561,0.252626985311508,0.519586980342865,0.265605509281158,0.517499983310699,0.261833012104034,0.51883202791214,0.276988506317139,0.516753017902374,0.27055150270462,0.516331017017365,0.284939497709274,0.519222974777222,0.294299513101578,0.524469971656799,0.304055511951447,0.53100997209549,0.313028991222382,0.539050996303558,0.328959494829178,0.55656498670578,0.320966005325317,0.547241985797882,0.336764991283417,0.567399978637695,0.345494508743286,0.586471021175385,0.350643992424011,0.607342004776001,0.267257004976273,0.628636002540588,0.267710506916046,0.632243990898132,0.266231507062912,0.633083999156952,0.265817493200302,0.629212975502014,0.261815011501312,0.63680100440979,0.26171350479126,0.632533013820648,0.264059513807297,0.631012976169586,0.264285504817963,0.63449901342392,0.2586669921875,0.638463020324707,0.258782505989075,0.634279012680054,0.255771487951279,0.640491008758545,0.256165504455566,0.635500013828278,0.267695009708405,0.627960979938507,0.268402487039566,0.632292985916138,0.268329501152039,0.627907991409302,0.268855512142181,0.631389021873474,0.276199012994766,0.621504008769989,0.271758496761322,0.626318991184235,0.281807988882065,0.615463018417358,0.284944504499435,0.602765023708344,0.286453992128372,0.591053009033203,0.284375011920929,0.582903981208801,0.281253486871719,0.575616002082825,0.276940494775772,0.57055801153183,0.272695511579514,0.567174971103668,0.26792299747467,0.565322995185852,0.263391494750977,0.564988017082214,0.259795010089874,0.565100014209747,0.256550014019012,0.56530100107193,0.253284990787506,0.565268993377686,0.254604488611221,0.6178839802742,0.25332498550415,0.619180977344513,0.253072500228882,0.618520021438599,0.2544204890728,0.617473006248474,0.252771496772766,0.620926022529602,0.252393007278442, -0.620648980140686,0.252708494663239,0.623124003410339,0.252447992563248,0.62322199344635,0.253374487161636,0.626138985157013,0.253098487854004,0.626078009605408,0.254341512918472,0.627753973007202,0.254245489835739,0.628264009952545,0.256211996078491,0.629208981990814,0.256152004003525,0.629703998565674,0.258223503828049,0.629247009754181,0.258379995822906,0.629899024963379,0.260576009750366,0.627852022647858,0.260859996080399,0.628371000289917,0.261659502983093,0.626362025737762,0.262205004692078,0.626573979854584,0.262118488550186,0.623908996582031,0.260821998119354,0.621317028999329,0.261280506849289,0.621195018291473,0.262713491916656,0.62398099899292,0.25687849521637,0.618089020252228,0.256935000419617,0.617698013782501,0.25968399643898,0.619268000125885,0.259436994791031,0.619687974452972,0.253725498914719,0.619821012020111,0.253300487995148,0.621360003948212,0.253230005502701,0.623236000537872,0.25374299287796,0.625726997852325,0.254481494426727,0.626850008964539,0.256278991699219,0.628174006938934,0.258035987615585,0.628427982330322,0.260428011417389,0.627265989780426,0.261115491390228,0.626416981220245,0.261449486017227,0.623872995376587,0.260302007198334,0.621461987495422,0.259161502122879,0.620235979557037,0.256836503744125,0.618589997291565,0.254828989505768,0.618393003940582,0.253931492567062,0.617040991783142,0.25703901052475,0.617226004600525,0.260679990053177,0.619002997875214,0.261878997087479,0.621071994304657,0.263523489236832,0.624145984649658,0.262723505496979,0.627052009105682,0.261067986488342,0.629050016403198,0.258549511432648,0.630515992641449,0.256069511175156,0.630411028862,0.253962993621826,0.628947019577026,0.252213001251221,0.626435995101929,0.251579493284225,0.6233189702034,0.251594990491867,0.620082020759583,0.252552509307861,0.617654979228973,0.256060510873795,0.633359014987946,0.253262996673584,0.63325297832489,0.253433495759964,0.630351006984711,0.255998998880386,0.631502985954285,0.252156496047974,0.61674302816391,0.258687496185303,0.632697999477386,0.258612513542175,0.631448984146118, -0.261242985725403,0.629889011383057,0.261489003896713,0.631026029586792,0.261972993612289,0.625086009502411,0.261323988437653,0.625113010406494,0.26265150308609,0.625141978263855,0.263429999351501,0.625455975532532,0.263177514076233,0.627781987190247,0.263622999191284,0.629011988639832,0.264256000518799,0.625981986522675,0.264674514532089,0.624561011791229,0.265112489461899,0.627295970916748,0.266052007675171,0.626025021076202,0.26426500082016,0.622452974319458,0.266342490911484,0.624786972999573,0.26427149772644,0.62119597196579,0.266718506813049,0.624116003513336,0.254055500030518,0.662506997585297,0.258266001939774,0.659588992595673,0.262504488229752,0.654349029064178,0.253708004951477,0.650106012821198,0.253387004137039,0.646946012973785,0.256406992673874,0.64828097820282,0.256227493286133,0.645528018474579,0.259243488311768,0.646856009960175,0.258807986974716,0.643661975860596,0.253794491291046,0.654904007911682,0.257110506296158,0.653129994869232,0.260390013456345,0.650086998939514,0.25399249792099,0.65903502702713,0.257798492908478,0.656493008136749,0.261707991361618,0.65216600894928,0.253238499164581,0.644419014453888,0.256011486053467,0.643065989017487,0.258672505617142,0.641404986381531,0.268108993768692,0.63636302947998,0.267480999231339,0.636408984661102,0.267028003931046,0.641964018344879,0.266667991876602,0.641023993492126,0.265563488006592,0.645573973655701,0.265646487474442,0.643495976924896,0.262881994247437,0.646453022956848,0.26341849565506,0.644124984741211,0.261337995529175,0.645662009716034,0.261389493942261,0.643172979354858,0.261169493198395,0.64038097858429,0.265345007181168,0.64205002784729,0.265718013048172,0.640097975730896,0.266116499900818,0.637256026268005,0.26442751288414,0.637435019016266,0.264319986104965,0.639678001403809,0.263961493968964,0.641844987869263,0.262708008289337,0.641686022281647,0.262797504663467,0.639894008636475,0.263018488883972,0.638015985488892,0.268639504909515,0.636339008808136,0.267449498176575,0.642177999019623,0.266027987003326,0.647140979766846,0.27030348777771, -0.642378985881805,0.271834492683411,0.632983982563019,0.275422513484955,0.63995498418808,0.276183485984802,0.631178975105286,0.280464500188828,0.638759016990662,0.281165510416031,0.629393994808197,0.285172492265701,0.638364017009735,0.286384999752045,0.628085970878601,0.287954986095428,0.616244971752167,0.292302012443542,0.629316985607147,0.290538012981415,0.639819025993347,0.298640489578247,0.633620977401733,0.296200513839722,0.643778026103973,0.30528798699379,0.641750991344452,0.302130490541458,0.650923013687134,0.311465501785278,0.654627025127411,0.307675004005432,0.662361025810242,0.31633448600769,0.67126202583313,0.311825007200241,0.678201019763947,0.294538497924805,0.618247985839844,0.301569014787674,0.622868001461029,0.308800995349884,0.63093900680542,0.315914988517761,0.643792986869812,0.28983399271965,0.604360997676849,0.30417600274086,0.612200975418091,0.311870008707047,0.621967017650604,0.296555012464523,0.607011020183563,0.30638200044632,0.603459000587463,0.314099997282028,0.613862991333008,0.298771500587463,0.597555994987488,0.291812002658844,0.593737006187439,0.296223491430283,0.586037993431091,0.290244489908218,0.58406800031662,0.302711993455887,0.590183973312378,0.309338510036469,0.596346974372864,0.287422001361847,0.577637016773224,0.29016250371933,0.566488981246948,0.295234501361847,0.571559011936188,0.282844007015228,0.569772005081177,0.283816486597061,0.560257971286774,0.277754008769989,0.563971996307373,0.278136491775513,0.555670976638794,0.272962003946304,0.560878992080688,0.27293449640274,0.553191006183624,0.267972499132156,0.551856994628906,0.268044501543045,0.559246003627777,0.263488501310349,0.558660984039307,0.263380497694016,0.551401019096375,0.258780509233475,0.532539010047913,0.258393496274948,0.519730985164642,0.258891493082047,0.54338800907135,0.255659013986588,0.532949984073639,0.255347013473511,0.519771993160248,0.255896508693695,0.543422996997833,0.256345003843307,0.55843198299408,0.259725511074066,0.558526992797852,0.259326994419098,0.551403999328613,0.255982488393784,0.551428020000458, -0.253296494483948,0.558350026607513,0.253242999315262,0.55178701877594,0.300841003656387,0.576370000839233,0.307164996862411,0.581893980503082,0.313145995140076,0.588699996471405,0.319864988327026,0.598313987255096,0.316591501235962,0.606469988822937,0.32652148604393,0.610563993453979,0.323359489440918,0.618417024612427,0.320717990398407,0.626675009727478,0.318294495344162,0.635035991668701,0.332266509532928,0.621690988540649,0.329744011163712,0.629588007926941,0.327080488204956,0.639935970306396,0.324063986539841,0.648526012897491,0.320241004228592,0.658674001693726,0.269605994224548,0.680939972400665,0.271083503961563,0.683443009853363,0.272950500249863,0.685809016227722,0.275104999542236,0.687537014484406,0.27717998623848,0.688637018203735,0.279112011194229,0.68852698802948,0.281037509441376,0.687940001487732,0.283344507217407,0.686775028705597,0.285710990428925,0.684930980205536,0.287853986024857,0.683189988136292,0.288798004388809,0.68249899148941,0.289645493030548,0.682121992111206,0.289295494556427,0.681246995925903,0.288572996854782,0.680213987827301,0.287131011486053,0.677857995033264,0.285003006458282,0.676594018936157,0.282754510641098,0.675486981868744,0.279866009950638,0.675007998943329,0.277184993028641,0.674902975559235,0.274704486131668,0.675091981887817,0.272561490535736,0.675809979438782,0.270743012428284,0.67687201499939,0.269450008869171,0.677703022956848,0.268932491540909,0.678207993507385,0.269075989723206,0.67908501625061,0.266021013259888,0.677214026451111,0.267169505357742,0.674534976482391,0.269293993711472,0.671800971031189,0.27198401093483,0.669854998588562,0.274679988622665,0.668690979480743,0.277495503425598,0.668105006217957,0.280912011861801,0.668148994445801,0.283883512020111,0.668860971927643,0.28701451420784,0.670783996582031,0.289826512336731,0.673427999019623,0.291882991790771,0.677178978919983,0.293449491262436,0.681286990642548,0.293716013431549,0.683622002601624,0.265964508056641,0.679718017578125,0.266641497612,0.683211028575897,0.268308997154236,0.686703026294708,0.270525991916656, -0.690023005008698,0.273052990436554,0.692709028720856,0.275743514299393,0.694281995296478,0.278739988803864,0.695034027099609,0.281976014375687,0.694850981235504,0.285189986228943,0.693259000778198,0.288235485553741,0.690825998783112,0.291281014680862,0.687843024730682,0.292968511581421,0.685572028160095,0.252839505672455,0.711372017860413,0.255010008811951,0.712368011474609,0.257951498031616,0.715638995170593,0.261786490678787,0.719727993011475,0.266971498727798,0.724563002586365,0.272827506065369,0.728500008583069,0.279507994651794,0.730798006057739,0.287264496088028,0.730232000350952,0.296489000320435,0.726179003715515,0.304675996303558,0.717763006687164,0.309027493000031,0.707279980182648,0.311040014028549,0.697210013866425,0.311421006917953,0.68885600566864,0.335561513900757,0.684817016124725,0.335691511631012,0.699043989181519,0.335069000720978,0.699360013008118,0.334859997034073,0.683960020542145,0.336973994970322,0.709532976150513,0.336432009935379,0.710552990436554,0.339789986610413,0.718922972679138,0.339516997337341,0.720903992652893,0.342222988605499,0.722625970840454,0.342041492462158,0.724469006061554,0.343948513269424,0.726213991641998,0.344125986099243,0.724400997161865,0.346250504255295,0.725318014621735,0.346175491809845,0.727301001548767,0.349115490913391,0.728120028972626,0.34893199801445,0.725126981735229,0.351742506027222,0.723957002162933,0.35249650478363,0.72782301902771,0.354418009519577,0.721651971340179,0.355586498975754,0.724829971790314,0.358278512954712,0.718697011470795,0.357026010751724,0.716692984104156,0.359008997678757,0.708866000175476,0.360058009624481,0.710051000118256,0.360234498977661,0.698786973953247,0.361340492963791,0.699388027191162,0.360599994659424,0.686112999916077,0.362100005149841,0.686103999614716,0.359672993421555,0.672499001026154,0.3612459897995,0.671782970428467,0.357086002826691,0.658874988555908,0.358385503292084,0.65801602602005,0.352394014596939,0.648038983345032,0.35385000705719,0.647033989429474,0.348870992660522,0.642624020576477,0.350423008203506,0.641662001609802, -0.346656501293182,0.639490008354187,0.348343998193741,0.63918399810791,0.337918996810913,0.687475025653839,0.338140994310379,0.696546971797943,0.336732000112534,0.698044002056122,0.336589485406876,0.686260998249054,0.337999999523163,0.707888007164001,0.33916649222374,0.706073999404907,0.340297013521194,0.716181993484497,0.341238498687744,0.714219987392426,0.343499511480331,0.717193007469177,0.342577487230301,0.720022022724152,0.346754491329193,0.71949702501297,0.346468508243561,0.722526013851166,0.344526499509811,0.721877992153168,0.345309495925903,0.719303011894226,0.351146012544632,0.721342027187347,0.34876948595047,0.722436010837555,0.348521500825882,0.71943199634552,0.350524991750717,0.718208014965057,0.352825492620468,0.715838015079498,0.353466510772705,0.71915602684021,0.357563495635986,0.706914007663727,0.356038004159927,0.714896976947784,0.354566514492035,0.710956990718842,0.355615496635437,0.704366028308868,0.358425498008728,0.697179019451141,0.356243997812271,0.695707976818085,0.359070003032684,0.685952007770538,0.35632050037384,0.685364007949829,0.358545005321503,0.673547029495239,0.355342000722885,0.674033999443054,0.355758488178253,0.659717977046967,0.352948009967804,0.662418007850647,0.350765496492386,0.649461984634399,0.348744004964828,0.654570996761322,0.347026497125626,0.645754992961884,0.345250487327576,0.648808002471924,0.34443199634552,0.642207026481628,0.34187850356102,0.644676983356476,0.332774996757507,0.685693979263306,0.334035485982895,0.699805974960327,0.332644492387772,0.703449010848999,0.330910503864288,0.691510021686554,0.335669010877609,0.711163997650146,0.334506511688232,0.713210999965668,0.338149011135101,0.720893025398254,0.337178498506546,0.72257000207901,0.340283513069153,0.727679014205933,0.339742988348007,0.730370998382568,0.341719508171082,0.734543979167938,0.342729508876801,0.731959998607635,0.34570449590683,0.734992980957031,0.344842493534088,0.738358020782471,0.349205493927002,0.741217017173767,0.349408507347107,0.736533999443054,0.353508502244949,0.735183000564575,0.354048997163773, -0.740377008914948,0.35776099562645,0.731006026268005,0.359775990247726,0.734951972961426,0.362453997135162,0.728003025054932,0.360927492380142,0.723843991756439,0.363557994365692,0.713927984237671,0.365344494581223,0.717984974384308,0.36531201004982,0.701382994651794,0.36761799454689,0.704948008060455,0.365864485502243,0.686614990234375,0.368337005376816,0.688691020011902,0.365069001913071,0.670446991920471,0.367407500743866,0.670822024345398,0.36157700419426,0.654452979564667,0.363658010959625,0.652954995632172,0.356227487325668,0.642093002796173,0.359237998723984,0.642184972763062,0.351521492004395,0.635040998458862,0.352908998727798,0.631193995475769,0.347471505403519,0.627799987792969,0.346945494413376,0.63230299949646,0.342857003211975,0.632497012615204,0.342823505401611,0.629531979560852,0.33397650718689,0.684682011604309,0.33466449379921,0.699160993099213,0.336138486862183,0.71060699224472,0.338669985532761,0.720175981521606,0.341066986322403,0.725978016853333,0.343422502279282,0.72917902469635,0.346088498830795,0.731456995010376,0.34934601187706,0.732443988323212,0.353071004152298,0.731702029705048,0.356577008962631,0.727905988693237,0.359576493501663,0.721177995204926,0.361774504184723,0.71161299943924,0.36336550116539,0.699881017208099,0.364066988229752,0.686003983020782,0.36302050948143,0.670897006988525,0.359859496355057,0.656539976596832,0.355160504579544,0.645197987556458,0.351428002119064,0.639313995838165,0.347589492797852,0.635655999183655,0.344891995191574,0.636729001998901,0.343478500843048,0.639159977436066,0.340784996747971,0.641453981399536,0.339127004146576,0.651820003986359,0.338472008705139,0.641332983970642,0.342582494020462,0.654371976852417,0.344970494508743,0.657454013824463,0.348942995071411,0.665696978569031,0.351143002510071,0.672670006752014,0.353232502937317,0.683126986026764,0.353730499744415,0.69369900226593,0.352052509784698,0.700195014476776,0.350955009460449,0.704814970493317,0.348741501569748,0.708700001239777,0.347005009651184,0.713589012622833,0.343605995178223,0.709569990634918, -0.341238498687744,0.703606009483337,0.340660989284515,0.695272028446198,0.341623991727829,0.688120007514954,0.346389502286911,0.705267012119293,0.348114490509033,0.699916005134583,0.348895013332367,0.696011006832123,0.350300997495651,0.689942002296448,0.35028749704361,0.682476997375488,0.347757995128632,0.675949990749359,0.345757991075516,0.669167995452881,0.343998491764069,0.702444970607758,0.344536006450653,0.696618974208832,0.344636499881744,0.689943015575409,0.346013486385345,0.685019016265869,0.342593491077423,0.679075002670288,0.340103507041931,0.677218019962311,0.34206348657608,0.664395987987518,0.34145250916481,0.660125970840454,0.338232487440109,0.676133990287781,0.337414503097534,0.673039019107819,0.339709997177124,0.658972024917603,0.337334990501404,0.663550972938538,0.336933493614197,0.666603982448578,0.336303502321243,0.665341973304749,0.336641997098923,0.662744998931885,0.336723506450653,0.671791970729828,0.335300505161285,0.670817971229553,0.338055998086929,0.661297023296356,0.336436986923218,0.659174978733063,0.332838505506516,0.670985996723175,0.335133999586105,0.654703974723816,0.348838001489639,0.61940997838974,0.34282198548317,0.622816026210785,0.331250488758087,0.647450983524323,0.328440010547638,0.65819901227951,0.333881497383118,0.63740199804306,0.328570008277893,0.677618026733398,0.324867010116577,0.666863024234772,0.317126005887985,0.684960007667542,0.317265003919601,0.697008013725281,0.322894990444183,0.682821989059448,0.324099510908127,0.694773018360138,0.316469013690948,0.709517002105713,0.32515549659729,0.707310974597931,0.321487486362457,0.673511028289795,0.336342513561249,0.631029009819031,0.338607996702194,0.625510990619659,0.339635998010635,0.634809970855713,0.340741008520126,0.631102025508881,0.355214506387711,0.625464975833893,0.358587503433228,0.613905012607574,0.362410992383957,0.637789011001587,0.367662996053696,0.62737101316452,0.368358492851257,0.651888012886047,0.376649498939514,0.650072991847992,0.372832000255585,0.672698974609375,0.383657485246658,0.677536010742188,0.373785495758057, -0.694979012012482,0.3836629986763,0.707062005996704,0.380268007516861,0.729927003383636,0.372084498405457,0.713590979576111,0.369204014539719,0.728817999362946,0.375833004713058,0.747358977794647,0.365467488765717,0.74067497253418,0.37066051363945,0.759658992290497,0.364277005195618,0.770135998725891,0.361431509256363,0.749881029129028,0.356426000595093,0.777001976966858,0.355351507663727,0.756498992443085,0.348199486732483,0.758722007274628,0.329210013151169,0.732671022415161,0.326638013124466,0.720229029655457,0.332406491041183,0.743241012096405,0.336215496063232,0.751170992851257,0.341697007417679,0.756187975406647,0.314027488231659,0.72614598274231,0.319262504577637,0.744008004665375,0.323412001132965,0.759157001972198,0.329035997390747,0.7724329829216,0.337280511856079,0.777195990085602,0.346686005592346,0.778909027576447,0.301910996437073,0.739359974861145,0.290859997272491,0.746022999286652,0.281861990690231,0.747789025306702,0.273970991373062,0.746074974536896,0.267850995063782,0.743619024753571,0.262557506561279,0.739817976951599,0.258731007575989,0.736837029457092,0.255517989397049,0.734260976314545,0.252684503793716,0.730440974235535,0.253008991479874,0.759733021259308,0.253081500530243,0.788484990596771,0.256092011928558,0.760792970657349,0.256509512662888,0.789866983890533,0.259527504444122,0.763137996196747,0.260511994361877,0.791312992572784,0.263825505971909,0.765802025794983,0.265065997838974,0.793214976787567,0.26944100856781,0.76843398809433,0.271245002746582,0.79524302482605,0.276311486959457,0.770296990871429,0.278091490268707,0.795611977577209,0.284839987754822,0.770413994789124,0.28796848654747,0.793654024600983,0.294537991285324,0.767175018787384,0.298517495393753,0.789752006530762,0.306416004896164,0.758189976215363,0.311574995517731,0.777139008045197,0.317566514015198,0.802133023738861,0.30323600769043,0.808032989501953,0.29280149936676,0.814251005649567,0.282337009906769,0.819706976413727,0.275034993886948,0.822198987007141,0.268326014280319,0.822997987270355,0.262980997562408,0.823148012161255, -0.258239507675171,0.822463989257813,0.254031985998154,0.821981012821198,0.394979000091553,0.683301985263824,0.394485503435135,0.716187000274658,0.402597010135651,0.690550982952118,0.401022493839264,0.724617004394531,0.407197505235672,0.73328298330307,0.409780502319336,0.69760799407959,0.417425513267517,0.706143021583557,0.412950485944748,0.743135988712311,0.418318003416061,0.753111004829407,0.423737496137619,0.714048981666565,0.429497987031937,0.721826016902924,0.42340099811554,0.76275497674942,0.410896003246307,0.790363013744354,0.41523951292038,0.802120983600616,0.406771510839462,0.778508007526398,0.40226998925209,0.766219019889832,0.388927489519119,0.740415990352631,0.396097511053085,0.752819001674652,0.403736501932144,0.838316023349762,0.400455504655838,0.824267983436584,0.397614002227783,0.810235023498535,0.394507497549057,0.795529007911682,0.389074504375458,0.777720987796783,0.382799506187439,0.76146000623703,0.388200998306274,0.868555009365082,0.386523008346558,0.852635025978088,0.384654998779297,0.835385978221893,0.383040994405746,0.818445026874542,0.379968494176865,0.798520028591156,0.375806510448456,0.778964996337891,0.369253486394882,0.891664028167725,0.369128495454788,0.873152017593384,0.369215488433838,0.854587018489838,0.369309991598129,0.836075007915497,0.368624985218048,0.813930988311768,0.367049992084503,0.791934013366699,0.347533494234085,0.905017971992493,0.3497054874897,0.885851979255676,0.351999998092651,0.867053985595703,0.354039490222931,0.848430991172791,0.356162488460541,0.825061976909637,0.356943011283875,0.800517022609711,0.32540100812912,0.906623005867004,0.330644011497498,0.88628101348877,0.334823489189148,0.867832005023956,0.338373988866806,0.849442005157471,0.341872990131378,0.827069997787476,0.344143003225327,0.802379012107849,0.304844498634338,0.896407008171082,0.312717497348785,0.878714978694916,0.319271504878998,0.861214995384216,0.323924511671066,0.845560014247894,0.3291395008564,0.824671983718872,0.332839012145996,0.801981985569,0.318980991840363,0.821599006652832,0.28829151391983, -0.877290010452271,0.297942996025085,0.8644859790802,0.306067496538162,0.85096001625061,0.311841487884521,0.838519990444183,0.306270509958267,0.822346985340118,0.297769993543625,0.834074020385742,0.288193494081497,0.844135999679565,0.436586499214172,0.78576797246933,0.443015486001968,0.740917980670929,0.446530997753143,0.748187005519867,0.440243989229202,0.791975021362305,0.427114993333817,0.829850971698761,0.430916994810104,0.837320029735565,0.416779488325119,0.881268978118896,0.413600504398346,0.871576011180878,0.396999001502991,0.920513987541199,0.394909501075745,0.908690989017487,0.371558487415314,0.951081991195679,0.370595514774323,0.937353014945984,0.341621994972229,0.967023015022278,0.342605501413345,0.952053010463715,0.31029999256134,0.963097989559174,0.313556492328644,0.95040500164032,0.281518489122391,0.940652012825012,0.286327987909317,0.931746006011963,0.258080512285233,0.903298020362854,0.265253007411957,0.898443996906281,0.385769009590149,0.645928978919983,0.372047513723373,0.61472100019455,0.359209507703781,0.596767008304596,0.450107991695404,0.751489996910095,0.444058507680893,0.797034978866577,0.434970498085022,0.843411028385162,0.420334011316299,0.890285015106201,0.400054007768631,0.931586027145386,0.373623490333557,0.964652001857758,0.341748505830765,0.980696976184845,0.307052999734879,0.975109994411469,0.277057498693466,0.950177013874054,0.428214490413666,0.771516978740692,0.434491008520126,0.728774011135101,0.438749492168427,0.735076010227203,0.432603001594543,0.779098987579346,0.419324487447739,0.812654972076416,0.423350512981415,0.821928024291992,0.410185009241104,0.862029016017914,0.406929492950439,0.850852012634277,0.392563492059708,0.897135972976685,0.390264511108398,0.883709013462067,0.369856506586075,0.923107981681824,0.369504004716873,0.908362984657288,0.343935489654541,0.937071979045868,0.345629006624222,0.9220330119133,0.31716650724411,0.937285006046295,0.32090350985527,0.923815011978149,0.292050004005432,0.922020971775055,0.297360509634018,0.911638021469116,0.272563993930817,0.893523991107941, -0.279471009969711,0.886916995048523,0.255110502243042,0.860984027385712,0.260441988706589,0.859512984752655,0.27990248799324,0.850737988948822,0.272545009851456,0.85512501001358,0.26621749997139,0.858202993869781,0.453708499670029,0.722590982913971,0.450091511011124,0.718140006065369,0.446015506982803,0.71341997385025,0.441146492958069,0.708449006080627,0.43597349524498,0.702615022659302,0.430322498083115,0.695753991603851,0.424024492502213,0.68800300359726,0.416933506727219,0.679359972476959,0.408619999885559,0.669618010520935,0.398979008197784,0.659129023551941,0.40650948882103,0.519119024276733,0.394807010889053,0.506343007087708,0.400023013353348,0.476040005683899,0.412124991416931,0.489724010229111,0.416411489248276,0.530090987682343,0.422111988067627,0.505088984966278,0.427053511142731,0.542209029197693,0.432298004627228,0.519021987915039,0.437222987413406,0.55612701177597,0.441702008247375,0.532338976860046,0.444685012102127,0.567526996135712,0.449871987104416,0.543954014778137,0.451844990253448,0.577170014381409,0.457493007183075,0.554325997829437,0.458824992179871,0.5867999792099,0.465052992105484,0.564465999603271,0.466126501560211,0.597927987575531,0.472940504550934,0.57541298866272,0.472968012094498,0.607366979122162,0.480563014745712,0.586983978748322,0.477939009666443,0.617101013660431,0.48641449213028,0.596199989318848,0.380846500396729,0.488983988761902,0.385154485702515,0.456124991178513,0.36768451333046,0.473089009523392,0.371508002281189,0.436035007238388,0.354035496711731,0.458761006593704,0.357017487287521,0.418662011623383,0.34145450592041,0.443870007991791,0.343356996774673,0.399924993515015,0.330552995204926,0.429850995540619,0.33399099111557,0.387814998626709,0.320674985647202,0.417605012655258,0.325808495283127,0.375957012176514,0.311626493930817,0.406976014375687,0.316519498825073,0.366017997264862,0.302272498607635,0.397397994995117,0.30629500746727,0.355246990919113,0.291693985462189,0.386786997318268,0.295484513044357,0.344000995159149,0.284545004367828,0.378695994615555,0.287402510643005, -0.336160987615585,0.279019504785538,0.371917992830276,0.281700998544693,0.328873991966248,0.273161500692368,0.366432994604111,0.276439487934113,0.323924988508224,0.268314510583878,0.362533986568451,0.271993488073349,0.31988400220871,0.26324850320816,0.360572993755341,0.266500502824783,0.315714985132217,0.259104013442993,0.358741998672485,0.261516511440277,0.313299000263214,0.255781501531601,0.356312990188599,0.258026003837585,0.311381995677948,0.252149492502213,0.354259014129639,0.253233999013901,0.308966010808945,0.456511497497559,0.703354001045227,0.452574491500854,0.698548972606659,0.455558508634567,0.678444981575012,0.460000991821289,0.683436989784241,0.448143512010574,0.691498994827271,0.450610488653183,0.671935021877289,0.443080514669418,0.685555994510651,0.445276498794556,0.664388000965118,0.437523007392883,0.678891003131866,0.439422994852066,0.656597971916199,0.431445509195328,0.671586990356445,0.43300849199295,0.648500978946686,0.424687504768372,0.663655996322632,0.425880491733551,0.640239000320435,0.417096495628357,0.654685020446777,0.417861998081207,0.631860971450806,0.40845200419426,0.644500970840454,0.409004986286163,0.621716976165771,0.398578494787216,0.632625997066498,0.39910700917244,0.609956979751587,0.386908501386642,0.618048012256622,0.3879055082798,0.596437990665436,0.374325007200241,0.59857302904129,0.37594598531723,0.580780029296875,0.361907988786697,0.581546008586884,0.363848000764847,0.565002024173737,0.34977251291275,0.566963016986847,0.352097004652023,0.549688994884491,0.339623987674713,0.551743984222412,0.341370493173599,0.534766018390656,0.330523014068604,0.539542973041534,0.331328988075256,0.521239995956421,0.321545988321304,0.528940975666046,0.321511507034302,0.509459018707275,0.312398493289948,0.519913971424103,0.311562985181808,0.500061988830566,0.302778512239456,0.51254802942276,0.301384001970291,0.492352992296219,0.292937994003296,0.507484972476959,0.292742490768433,0.487379997968674,0.283151000738144,0.502578973770142,0.284017503261566,0.482816010713577,0.275335997343063,0.498928993940353, -0.277175486087799,0.480066001415253,0.268804013729095,0.497940003871918,0.271043986082077,0.478848993778229,0.263733506202698,0.498605012893677,0.265363991260529,0.478329986333847,0.259878486394882,0.500127017498016,0.261332988739014,0.478255987167358,0.256601005792618,0.50151401758194,0.25807249546051,0.478487014770508,0.253646492958069,0.502633988857269,0.254878014326096,0.47852098941803,0.251231998205185,0.502528011798859,0.252240985631943,0.478413999080658,0.462689489126205,0.670381009578705,0.45846700668335,0.66354900598526,0.461401998996735,0.647732019424438,0.466354489326477,0.654627025127411,0.453117996454239,0.656567990779877,0.456126004457474,0.638818025588989,0.447408497333527,0.648599028587341,0.450082004070282,0.630537986755371,0.441273510456085,0.640597999095917,0.443514496088028,0.623154997825623,0.434661507606506,0.631835997104645,0.436583012342453,0.614498972892761,0.427350997924805,0.622730016708374,0.429078996181488,0.603716015815735,0.419088512659073,0.613143980503082,0.420561999082565,0.592589974403381,0.410075008869171,0.603039979934692,0.411332011222839,0.581061005592346,0.400261998176575,0.590408027172089,0.401306986808777,0.569409012794495,0.388998001813889,0.578032970428467,0.390237510204315,0.558336019515991,0.377128005027771,0.564064025878906,0.378369003534317,0.544845998287201,0.36497551202774,0.548694014549255,0.366119503974915,0.529473006725311,0.353077501058578,0.5329310297966,0.35394349694252,0.514340996742249,0.341796487569809,0.517865002155304,0.34230500459671,0.499202996492386,0.331252485513687,0.504131972789764,0.331402987241745,0.485123008489609,0.321030497550964,0.492006987333298,0.320876002311707,0.47248500585556,0.310814499855042,0.48199799656868,0.310442507266998,0.46187898516655,0.300654500722885,0.473681002855301,0.30001899600029,0.453518986701965,0.293087512254715,0.468136012554169,0.29229998588562,0.448334008455276,0.285557508468628,0.463878005743027,0.284673005342484,0.443996995687485,0.277890503406525,0.460862994194031,0.276320993900299,0.441112995147705,0.271405011415482, -0.459838002920151,0.27114000916481,0.439925998449326,0.265536993741989,0.459241986274719,0.266077011823654,0.43987300992012,0.261662513017654,0.458990007638931,0.262008488178253,0.43970999121666,0.257266491651535,0.458988010883331,0.258525490760803,0.439754009246826,0.254915505647659,0.459336012601852,0.255329489707947,0.439722001552582,0.251980513334274,0.459881991147995,0.251969486474991,0.439152002334595,0.46629199385643,0.628102004528046,0.47103750705719,0.637510001659393,0.460373491048813,0.619460999965668,0.45362401008606,0.611433029174805,0.446754992008209,0.60316801071167,0.439715504646301,0.593398988246918,0.432029485702515,0.582118988037109,0.422908514738083,0.570083975791931,0.4132060110569,0.558492004871368,0.403196007013321,0.546185970306396,0.391993999481201,0.534762024879456,0.379741996526718,0.519140005111694,0.367092490196228,0.504769027233124,0.354307502508163,0.490294992923737,0.341737508773804,0.477091997861862,0.330942988395691,0.461757987737656,0.320619493722916,0.447986990213394,0.310485005378723,0.437285006046295,0.300301998853683,0.428144991397858,0.291898995637894,0.421149998903275,0.282985508441925,0.414759993553162,0.276816993951797,0.411132991313934,0.271196991205215,0.408091008663177,0.265834987163544,0.40540400147438,0.261040985584259,0.404060989618301,0.257121503353119,0.403203010559082,0.254465997219086,0.403140991926193,0.251489996910095,0.402945011854172,0.256138503551483,0.624855995178223,0.256867498159409,0.625388979911804,0.257869005203247,0.625514984130859,0.258819013834,0.625185012817383,0.259379506111145,0.62465900182724,0.259898006916046,0.624071002006531,0.255813509225845,0.624108016490936,0.255499005317688,0.623088002204895,0.255586504936218,0.622242987155914,0.255674511194229,0.621499001979828,0.256379008293152,0.620976984500885,0.257420003414154,0.621088981628418,0.258530497550964,0.621725022792816,0.259319007396698,0.622406005859375,0.26001501083374,0.623223006725311,0.256771504878998,0.623327970504761,0.257634997367859,0.623413980007172,0.258447498083115,0.623471975326538, -0.259197503328323,0.623519003391266,0.256079494953156,0.623219013214111,0.246223002672195,0.00916799996048212,0.24625800549984,0.0137620000168681,0.211936995387077,0.0499389991164207,0.217170000076294,0.0382919982075691,0.215799495577812,0.0453590005636215,0.212023004889488,0.0541080012917519,0.221577003598213,0.0300309993326664,0.226339995861053,0.0229349993169308,0.225749492645264,0.0282320007681847,0.22036649286747,0.0360650010406971,0.232564002275467,0.0157919991761446,0.232322499155998,0.0206829998642206,0.237405002117157,0.0121160000562668,0.237331002950668,0.0168500002473593,0.242238506674767,0.010236999951303,0.242228493094444,0.0148620000109076,0.211048007011414,0.0513290017843246,0.211085006594658,0.0570509992539883,0.210420504212379,0.0524239987134933,0.210183501243591,0.0583520010113716,0.209746494889259,0.0525970011949539,0.209602504968643,0.0582000017166138,0.208839505910873,0.052726998925209,0.208395004272461,0.0574310012161732,0.20508599281311,0.0479749999940395,0.205601006746292,0.0514819994568825,0.202480003237724,0.04254399985075,0.202126502990723,0.0461059994995594,0.199746996164322,0.0367709994316101,0.19904500246048,0.0402589999139309,0.196392506361008,0.0296000000089407,0.195637494325638,0.0329970009624958,0.193538501858711,0.0251630004495382,0.192863494157791,0.027861999347806,0.190620005130768,0.0218659993261099,0.190054506063461,0.0240609999746084,0.188107505440712,0.0192789994180202,0.187595993280411,0.0214329995214939,0.18588200211525,0.017119999974966,0.185420498251915,0.0192859992384911,0.24626649916172,0.0183589998632669,0.242261007428169,0.0193900000303984,0.237424492835999,0.0215000007301569,0.232537001371384,0.0255190003663301,0.226249992847443,0.0334799997508526,0.221020504832268,0.041737999767065,0.216650992631912,0.0502189993858337,0.213422507047653,0.057472001761198,0.211930498480797,0.0611889995634556,0.210143506526947,0.0630429983139038,0.208941996097565,0.0631510019302368,0.207100495696068,0.0623660013079643,0.204439997673035,0.0561119988560677,0.201105505228043,0.05027100071311, -0.198154494166374,0.0442750006914139,0.194866999983788,0.0367720015347004,0.191985502839088,0.0317870005965233,0.189132004976273,0.0279810000211,0.186678498983383,0.0253149997442961,0.184513494372368,0.0231810007244349,0.24719350039959,0.0370149984955788,0.244244500994682,0.0381209999322891,0.240610495209694,0.0392940007150173,0.236721500754356,0.0412370003759861,0.231043994426727,0.0458140000700951,0.225546002388,0.051281001418829,0.220889002084732,0.0575780011713505,0.216576501727104,0.0622689984738827,0.213517501950264,0.0667949989438057,0.209716007113457,0.0690340027213097,0.207179501652718,0.0703879967331886,0.203177005052567,0.0720190033316612,0.198306992650032,0.0690580010414124,0.193823993206024,0.0647850036621094,0.190879002213478,0.0594500005245209,0.187899500131607,0.0532660000026226,0.185898497700691,0.0480980016291142,0.183668494224548,0.0438730008900166,0.181440994143486,0.0412579998373985,0.179257497191429,0.0395440012216568,0.247522503137589,0.0601590014994144,0.22367100417614,0.0781219974160194,0.218612998723984,0.0824949964880943,0.233458995819092,0.0681570023298264,0.228202506899834,0.072723001241684,0.238495498895645,0.0639140009880066,0.241936504840851,0.062135998159647,0.245031997561455,0.0611659996211529,0.21476699411869,0.0868119969964027,0.208507001399994,0.0908140018582344,0.204278007149696,0.0938839986920357,0.198481500148773,0.098301000893116,0.192164495587349,0.0976779982447624,0.186976507306099,0.0950490012764931,0.183995500206947,0.0898379981517792,0.181106999516487,0.0833320021629333,0.17900650203228,0.0771860033273697,0.176581501960754,0.0724399983882904,0.174307003617287,0.0700389966368675,0.172017499804497,0.0689070001244545,0.247602999210358,0.0922560021281242,0.22351099550724,0.110586002469063,0.217676505446434,0.115411996841431,0.233976498246193,0.100317001342773,0.2284274995327,0.105089999735355,0.239077001810074,0.0958520025014877,0.24244399368763,0.0939420014619827,0.245312005281448,0.0930659994482994,0.213223502039909,0.120012000203133,0.205691993236542,0.125055000185966,0.200609505176544, -0.128815993666649,0.193803995847702,0.134128004312515,0.187228500843048,0.133127003908157,0.182353004813194,0.129631996154785,0.179680004715919,0.123998001217842,0.177021503448486,0.116855002939701,0.173967495560646,0.111616998910904,0.170760005712509,0.108227998018265,0.168319001793861,0.106455996632576,0.166012495756149,0.10547000169754,0.247714504599571,0.134829998016357,0.247847005724907,0.187565997242928,0.219451501965523,0.160680994391441,0.224968999624252,0.155542001128197,0.227908506989479,0.206021994352341,0.223293006420135,0.211281001567841,0.229567006230354,0.149568006396294,0.234784498810768,0.144084006547928,0.236111506819725,0.195594996213913,0.231802999973297,0.200764998793602,0.239576995372772,0.138815000653267,0.240106999874115,0.190831005573273,0.242771998047829,0.13646100461483,0.24295149743557,0.188545003533363,0.245516002178192,0.135499998927116,0.245643004775047,0.187792003154755,0.215249493718147,0.16541799902916,0.219556003808975,0.215642005205154,0.207971498370171,0.170019999146461,0.213045492768288,0.220556005835533,0.20295350253582,0.173267006874084,0.208377495408058,0.223857000470161,0.19599549472332,0.177450999617577,0.201701000332832,0.227783992886543,0.188903003931046,0.174823999404907,0.194241493940353,0.226168006658554,0.183391004800797,0.170238003134727,0.188244998455048,0.222890004515648,0.179801002144814,0.164480000734329,0.184218496084213,0.218345001339912,0.175916001200676,0.157563000917435,0.179902493953705,0.213054999709129,0.171672999858856,0.154751002788544,0.175594002008438,0.21076300740242,0.167870506644249,0.153680995106697,0.171776995062828,0.210200995206833,0.165257006883621,0.153006002306938,0.169103503227234,0.210401996970177,0.162925496697426,0.152529999613762,0.1667740046978,0.211081996560097,0.247122004628181,0.290405005216599,0.244090497493744,0.290452003479004,0.24040350317955,0.290331989526749,0.236682504415512,0.290428012609482,0.23165400326252,0.290832012891769,0.226591497659683,0.290618002414703,0.222252503037453,0.290298014879227,0.21798400580883,0.289034992456436, -0.214652001857758,0.287934005260468,0.210420504212379,0.28514501452446,0.207599997520447,0.283066987991333,0.203345507383347,0.279987007379532,0.198190003633499,0.274888008832932,0.193204000592232,0.270983994007111,0.189563497900963,0.268985003232956,0.185790002346039,0.267338007688522,0.182621002197266,0.268287003040314,0.179571494460106,0.269962996244431,0.177000492811203,0.271077990531921,0.174685999751091,0.271856009960175,0.156146496534348,0.239429995417595,0.155618995428085,0.252270996570587,0.150794997811317,0.253084003925323,0.150694504380226,0.240614995360374,0.155846506357193,0.280452013015747,0.14665499329567,0.321505010128021,0.143745496869087,0.314678996801376,0.152372494339943,0.274102002382278,0.13179250061512,0.359162986278534,0.129641503095627,0.350767999887466,0.111511997878551,0.384279012680054,0.109813496470451,0.375063985586166,0.0915089994668961,0.398795992136002,0.0900015011429787,0.389194995164871,0.072734497487545,0.396634995937347,0.0714014992117882,0.386768013238907,0.0541315004229546,0.38604199886322,0.0329264998435974,0.364432990550995,0.0330930016934872,0.354633003473282,0.0533744990825653,0.376049995422363,0.015650499612093,0.328956007957458,0.0168869998306036,0.319781005382538,0.00562949990853667,0.289213985204697,0.00782450009137392,0.281073004007339,0.00385349988937378,0.269057989120483,0.00716699985787272,0.262295991182327,0.150294497609138,0.194004997611046,0.152974501252174,0.226457998156548,0.149192497134209,0.232985004782677,0.147326499223709,0.201903998851776,0.140702500939369,0.158309996128082,0.138294503092766,0.166930004954338,0.125611007213593,0.125975996255875,0.123635500669479,0.135138005018234,0.103102497756481,0.106472998857498,0.101600997149944,0.115962997078896,0.076553501188755,0.101204000413418,0.0756020024418831,0.111189000308514,0.0486700013279915,0.115264996886253,0.0482980012893677,0.125551998615265,0.0287165008485317,0.140649005770683,0.0289949998259544,0.150933995842934,0.0125569999217987,0.173455998301506,0.0136209996417165,0.183633998036385,0.00605450011789799, -0.210445001721382,0.00784299988299608,0.219707995653152,0.00403399998322129,0.230351999402046,0.00701999990269542,0.237773001194,0.00500199990347028,0.24702300131321,0.00840049982070923,0.247357994318008,0.339388996362686,0.252285003662109,0.338849008083344,0.239460006356239,0.344311505556107,0.24065600335598,0.344210505485535,0.253089994192123,0.348354488611221,0.32150000333786,0.339163988828659,0.280456990003586,0.342638492584229,0.274105995893478,0.351263999938965,0.314673006534576,0.363213509321213,0.359153002500534,0.365364998579025,0.350758999586105,0.383489489555359,0.384270012378693,0.38518899679184,0.375054985284805,0.403489500284195,0.398791998624802,0.404998004436493,0.389191001653671,0.422263503074646,0.396636992692947,0.423597514629364,0.386770993471146,0.462072491645813,0.364446014165878,0.440867006778717,0.386049002408981,0.441624492406845,0.376055985689163,0.461906999349594,0.354645013809204,0.479350507259369,0.328972995281219,0.478114485740662,0.31979700922966,0.489373505115509,0.28923299908638,0.487179011106491,0.281091004610062,0.491151005029678,0.269077003002167,0.487838000059128,0.262313991785049,0.342024505138397,0.226497992873192,0.344698488712311,0.19403700530529,0.34766748547554,0.201933994889259,0.345809996128082,0.23301799595356,0.354289501905441,0.158327996730804,0.356697499752045,0.16694800555706,0.36938551068306,0.125986993312836,0.37136098742485,0.135149002075195,0.39189800620079,0.106480002403259,0.393399506807327,0.115969002246857,0.418449997901917,0.101208001375198,0.419401496648788,0.111192002892494,0.446337997913361,0.115266002714634,0.446709513664246,0.125552996993065,0.466292500495911,0.140658006072044,0.466013491153717,0.150942996144295,0.482452005147934,0.173470005393028,0.481387495994568,0.183648005127907,0.48895400762558,0.210462003946304,0.487165510654449,0.219724997878075,0.490973502397537,0.230370000004768,0.487986505031586,0.237790003418922,0.490004003047943,0.247041001915932,0.486605495214462,0.247373998165131,0.140318498015404,0.251702010631561,0.139705002307892,0.243966996669769, -0.132634997367859,0.294811010360718,0.140524506568909,0.261436998844147,0.12075749784708,0.326454013586044,0.103136502206326,0.348645985126495,0.0849959999322891,0.360168009996414,0.0684774965047836,0.356258004903793,0.0416814982891083,0.326178997755051,0.0531144998967648,0.345178008079529,0.0343824997544289,0.301809012889862,0.0307055003941059,0.274619996547699,0.0285310000181198,0.260906010866165,0.139108002185822,0.239068001508713,0.135672003030777,0.219095006585121,0.128242999315262,0.188227996230125,0.117190003395081,0.163330003619194,0.0959305018186569,0.144117996096611,0.0759859979152679,0.140663996338844,0.0539775006473064,0.152985006570816,0.0397889986634254,0.176363006234169,0.0299210008233786,0.193390995264053,0.0264950003474951,0.210960000753403,0.0248429998755455,0.238290995359421,0.0286615006625652,0.249566003680229,0.35530099272728,0.24397699534893,0.354687005281448,0.251706004142761,0.354480504989624,0.261411011219025,0.362372994422913,0.294800013303757,0.374249011278152,0.326444000005722,0.391867995262146,0.348639011383057,0.410006493330002,0.360166013240814,0.426524013280869,0.356260001659393,0.441886991262436,0.345183998346329,0.453321009874344,0.326187014579773,0.460620999336243,0.301818013191223,0.464298993349075,0.274628013372421,0.466473489999771,0.260915011167526,0.359326511621475,0.219123005867004,0.355897009372711,0.239078998565674,0.366760492324829,0.188243001699448,0.37781149148941,0.163332998752594,0.399069994688034,0.144122004508972,0.419016510248184,0.140667006373405,0.441027998924255,0.152995005249977,0.455220013856888,0.17637799680233,0.465086996555328,0.193406999111176,0.468513995409012,0.210957005620003,0.470162510871887,0.238299995660782,0.466343492269516,0.24957400560379,0.0854189991950989,0.253161996603012,0.409586995840073,0.253159999847412 - } - UVIndex: *33849 { - a: 309,107,70,106,107,199,86,70,70,86,150,147,47,106,70,147,147,150,231,333,142,47,147,333,182,313,142,333,231,28,182,333,182,28,33,194,313,182,194,232,232,194,174,29,194,33,308,174,174,308,152,322,43,29,174,322,322,152,9,10,11,43,322,10,257,5,11,10,289,257,10,9,257,289,213,177,5,257,177,143,42,18,166,169,18,256,227,166,166,227,84,255,169,166,255,94,6,234,7,122,7,155,340,122,6,122,8,51,122,340,4,8,8,4,0,12,302,51,8,12,199,264,57,86,264,23,146,57,57,146,224,185,150,86,57,185,185,224,278,176,231,150,185,176,303,28,231,176,128,303,176,278,303,128,73,58,28,303,58,33,33,58,212,308,58,73,186,212,212,186,304,89,152,308,212,89,89,304,124,295,152,89,295,9,2,289,9,295,99,2,295,124,2,99,290,90,289,2,90,213,213,90,52,62,90,290,67,52,52,67,48,269,91,62,52,269,68,323,219,13,68,219,339,68,13,30,19,337,68,19,246,92,206,220,163,206,153,279,220,220,279,14,114,340,220,114,114,14,15,20,4,114,20,0,23,49,329,146,49,242,262,329,329,262,125,115,224,146,329,115,115,125,31,191,224,115,191,278,280,128,278,191,21,280,191,31,280,21,103,59,128,280,59,73,73,59,87,186,59,103,134,87,87,134,158,208,304,186,87,208,208,158,281,192,304,208,192,124,178,99,124,192,97,178,192,281,178,97,300,296,99,178,296,290,290,296,154,67,296,300,330,154,154,330,339,219,67,154,219,48,108,13,339,332,298,108,332,221,108,298,117,261,13,108,261,30,153,245,60,279,245,251,254,60,60,254,193,235,14,279,60,235,235,193,78,316,14,235,316,15,242,1,144,262,1,215,72,144,144,72,63,133,125,262,144,133,133,63,81,82,125,133,82,31,74,21,31,82,135,74,82,81,74,135,123,137,21,74,137,103,103,137,76,134,137,123,205,76,76,205,167,311,158,134,76,311,311,167,249,243,158,311,243,281,44,97,281,243,306,44,243,249,44,306,165,299,97,44,299,300,300,299,259,330,299,165,175,259,259,175,221,332,330,259,332,339,45,298,221,305,130,45,305,201,45,130,226,189,298,45,189,117,251,283,37,254,283,161,172,37,37,172,272,50,193,254,37,50,50,272,98,140,193,50,140,78,215,170,61,72,170,307,32,61,61,32,317,267,63,72,61,267,267,317,3,53,63,267,53,81,321,135,81,53,318,321,53,3,321,318,71,46,135,321, -46,123,123,46,168,205,46,71,275,168,168,275,217,66,167,205,168,66,66,217,230,24,167,66,24,249,236,306,249,24,83,236,24,230,236,83,338,286,306,236,286,165,165,286,40,175,286,338,65,40,40,65,201,305,175,40,305,221,297,130,201,183,105,297,183,149,297,105,131,179,130,297,179,226,161,284,285,172,284,88,314,285,285,314,294,319,272,172,285,319,319,294,35,244,272,319,244,98,307,210,100,32,210,138,225,100,100,225,116,38,317,32,100,38,38,116,190,268,317,38,268,3,156,318,3,268,129,156,268,190,156,129,79,301,318,156,301,71,71,301,96,275,301,79,80,96,96,80,223,25,217,275,96,25,25,223,69,184,217,25,184,230,237,83,230,184,239,237,184,69,237,239,218,102,83,237,102,338,338,102,233,65,102,218,141,233,233,141,149,183,65,233,183,201,238,105,149,250,101,238,250,196,238,101,252,16,105,238,16,131,88,240,327,314,240,202,111,327,327,111,132,270,294,314,327,270,270,132,263,41,294,270,41,35,138,214,203,225,214,197,27,203,203,27,173,310,116,225,203,310,310,173,109,207,116,310,207,190,112,129,190,207,22,112,207,109,112,22,291,265,129,112,265,79,79,265,104,80,265,291,64,104,104,64,293,93,223,80,104,93,93,293,266,151,223,93,151,69,75,239,69,151,17,75,151,266,75,17,118,292,239,75,292,218,218,292,248,141,292,118,126,248,248,126,196,250,141,248,250,149,258,101,196,171,39,258,171,209,258,39,229,113,101,258,113,252,202,241,282,111,241,288,331,282,282,331,54,334,132,111,282,334,334,54,110,260,132,334,260,263,197,119,253,27,119,181,145,253,253,145,247,271,173,27,253,271,271,247,180,77,173,271,77,109,95,22,109,77,55,95,77,180,95,55,164,204,22,95,204,291,291,204,336,64,204,164,120,336,336,120,136,274,293,64,336,274,274,136,195,159,293,274,159,266,315,17,266,159,211,315,159,195,315,211,222,216,17,315,216,118,118,56,312,126,56,139,320,312,312,320,209,171,126,312,171,196,164,55,287,335,287,55,180,162,198,328,287,162,335,287,328,36,162,180,247,273,198,162,273,160,136,120,26,85,120,164,335,26,26,335,36,121,26,121,324,85,222,211,34,325,211,195,34,34,195,136,85,325,34,85,324,323,127,269,48,127,200,91,269,23,264,12,0,264,199,302,12,242,49,20,15,49,23,0,20,215,1, -316,78,1,242,15,316,307,170,140,98,170,215,78,140,138,210,244,35,210,307,98,244,197,214,41,263,214,138,35,41,157,276,260,110,276,197,263,260,145,273,247,145,181,160,273,228,187,188,277,187,326,148,188,188,148,155,7,277,188,7,234,42,200,127,18,127,323,256,18,84,227,337,246,227,256,323,337,340,155,148,163,148,326,92,163,340,114,4,340,163,220,68,337,323,219,323,48,341,342,343,344,344,343,345,346,346,345,347,348,348,347,349,350,350,349,351,352,352,351,353,354,354,353,355,356,356,355,357,358,358,357,359,360,360,359,361,362,362,361,363,364,364,363,365,366,366,365,367,368,365,369,370,367,363,371,369,365,361,372,371,363,359,373,372,361,357,374,373,359,355,375,374,357,353,376,375,355,351,377,376,353,349,378,377,351,347,379,378,349,345,380,379,347,343,381,380,345,342,382,381,343,383,384,385,386,387,383,386,388,389,387,388,390,391,389,390,392,393,391,392,394,395,393,394,396,397,395,396,398,399,397,398,400,401,399,400,402,403,401,402,404,405,403,404,406,406,407,408,405,386,385,409,410,388,386,410,411,390,388,411,412,392,390,412,413,394,392,413,414,396,394,414,415,398,396,415,416,400,398,416,417,402,400,417,418,404,402,418,419,406,404,419,420,421,407,406,420,422,423,424,425,423,426,427,424,426,428,429,427,428,430,431,429,430,432,433,431,432,434,435,433,434,436,437,435,436,438,439,437,438,440,441,439,440,442,443,441,442,444,445,443,444,446,447,445,446,448,449,447,447,449,450,451,445,447,451,452,443,445,452,453,441,443,453,454,439,441,454,455,437,439,455,456,435,437,456,457,433,435,457,458,431,433,458,459,429,431,459,460,427,429,460,461,424,427,461,462,425,424,462,463,464,465,466,467,468,469,465,464,470,471,469,468,472,473,471,470,474,475,473,472,476,477,475,474,478,479,477,476,480,481,479,478,482,483,481,480,484,485,483,482,486,487,485,484,487,486,488,489,465,490,491,466,469,492,490,465,471,493,492,469,473,494,493,471,475,495,494,473,477,496,495,475,479,497,496,477,481,498,497,479,483,499,498,481,485,500,499,483,487,501,500,485,502,501,487,489,503,504,505,506,506,505,507,508,508,507,509,510,510,509,511,512,512,511,513,514,514,513, -515,516,516,515,517,518,518,517,519,520,520,519,521,522,522,521,523,524,524,523,525,526,526,525,527,528,528,527,529,530,527,531,532,529,525,533,531,527,523,534,533,525,521,535,534,523,519,536,535,521,517,537,536,519,515,538,537,517,513,539,538,515,511,540,539,513,509,541,540,511,507,542,541,509,505,543,542,507,504,544,543,505,545,546,547,548,549,545,548,550,551,549,550,552,553,551,552,554,555,553,554,556,557,555,556,558,559,557,558,560,561,559,560,562,563,561,562,564,565,563,564,566,567,565,566,568,568,569,570,567,548,547,571,572,550,548,572,573,552,550,573,574,554,552,574,575,556,554,575,576,558,556,576,577,560,558,577,578,562,560,578,579,564,562,579,580,566,564,580,581,568,566,581,582,583,569,568,582,584,585,586,587,585,588,589,586,588,590,591,589,590,592,593,591,592,594,595,593,594,596,597,595,596,598,599,597,598,600,601,599,600,602,603,601,602,604,605,603,604,606,607,605,606,608,609,607,608,610,611,609,609,611,612,613,607,609,613,614,605,607,614,615,603,605,615,616,601,603,616,617,599,601,617,618,597,599,618,619,595,597,619,620,593,595,620,621,591,593,621,622,589,591,622,623,586,589,623,624,587,586,624,625,626,627,628,629,630,631,627,626,632,633,631,630,634,635,633,632,636,637,635,634,638,639,637,636,640,641,639,638,642,643,641,640,644,645,643,642,646,647,645,644,648,649,647,646,649,648,650,651,627,652,653,628,631,654,652,627,633,655,654,631,635,656,655,633,637,657,656,635,639,658,657,637,641,659,658,639,643,660,659,641,645,661,660,643,647,662,661,645,649,663,662,647,664,663,649,651,665,666,667,668,669,665,668,670,665,669,671,672,666,665,672,673,674,675,676,677,678,674,677,679,674,678,680,681,675,674,681,682,683,684,685,686,687,683,686,688,683,687,689,690,684,683,690,691,692,693,694,695,693,696,697,694,694,697,698,699,695,694,699,700,701,702,703,704,702,705,706,703,703,706,707,708,704,703,708,709,710,711,712,713,711,714,715,712,716,717,718,719,716,719,720,721,722,723,724,725,723,726,727,724,724,727,728,729,725,724,729,730,731,732,733,734,732,735,736,733,737,738,739,740,737,740,741,742,743,744,745,746,744,747,748, -745,745,748,749,750,746,745,750,751,752,753,754,755,753,756,757,754,758,759,760,761,758,761,762,763,764,765,766,767,768,764,767,769,764,768,770,771,765,764,771,772,773,774,775,776,774,777,778,775,779,780,781,782,779,782,783,784,785,786,787,788,786,789,790,787,787,790,670,668,788,787,668,667,791,792,793,794,792,795,796,793,793,796,797,798,794,793,798,799,800,801,799,798,802,800,798,797,800,802,803,804,801,800,804,805,806,807,808,809,807,810,811,808,808,811,679,677,809,808,677,676,812,813,814,815,813,816,817,814,814,817,818,819,815,814,819,820,821,822,820,819,823,821,819,818,821,823,824,825,822,821,825,826,827,828,829,830,828,831,832,829,829,832,688,686,830,829,686,685,833,834,835,836,834,837,838,835,835,838,839,840,836,835,840,841,842,843,841,840,844,842,840,839,842,844,845,846,843,842,846,847,848,849,700,699,850,848,699,698,848,850,851,852,849,848,852,853,854,855,856,853,855,857,770,856,856,770,768,858,849,853,856,858,859,700,849,858,768,769,859,858,859,769,860,861,695,700,859,861,862,863,864,865,863,866,867,864,864,867,868,869,865,864,869,870,871,872,870,869,873,871,869,868,871,873,874,875,872,871,875,876,877,878,709,708,879,877,708,707,877,879,880,881,878,877,881,882,883,884,714,711,883,711,710,885,886,887,888,889,886,889,890,891,890,889,892,893,889,888,894,892,895,896,897,898,899,895,898,900,901,902,903,904,901,904,905,906,720,719,907,908,719,718,909,907,910,911,912,913,911,914,915,912,912,915,916,917,913,912,917,918,919,920,918,917,921,919,917,916,919,921,922,923,920,919,923,924,925,926,730,729,927,925,729,728,925,927,928,929,926,925,929,930,931,932,735,732,931,732,731,933,934,935,936,937,934,937,938,939,938,937,940,941,937,936,942,940,943,944,945,946,943,946,947,948,947,946,949,950,946,945,951,949,741,740,952,953,740,739,954,952,955,956,957,958,956,959,851,957,957,851,850,960,958,957,960,961,962,963,961,960,850,698,962,960,962,698,697,964,963,962,964,965,966,967,751,750,968,966,750,749,966,968,969,970,967,966,970,971,972,973,756,753,972,753,752,974,975,976,977,978,975,978,979,980,979,978,981,982,978,977,983,981, -984,985,986,987,984,987,988,989,988,987,990,991,987,986,992,990,762,761,993,994,761,760,995,993,996,997,998,999,765,996,999,766,996,765,772,1000,997,996,1000,1001,999,998,1002,1003,766,999,1003,1004,1005,1006,1007,1004,1006,1008,860,1007,1007,860,769,767,766,1004,1007,767,1009,1010,1011,1012,1009,1012,1013,1014,1014,1013,1015,1016,1015,781,780,1016,1014,1016,1017,777,1016,780,1018,1017,784,783,1019,1020,1019,1021,1022,1020,784,1020,1023,1024,1020,1022,1025,1023,1026,1027,1028,1024,1027,1029,1018,1028,1030,1031,1032,1033,1030,1034,1035,1031,1031,1035,1036,1037,1038,1032,1031,1037,1039,718,717,1040,1039,1040,1041,1042,1043,1044,1045,1046,1044,1047,909,1045,1048,1049,1050,1051,1049,1048,1033,1032,1052,1050,1049,1053,1054,888,887,1055,1054,1055,721,720,1056,799,801,1057,669,670,1056,1057,1056,670,790,1058,794,799,1056,1058,1059,1060,1061,908,1060,1062,894,1061,1063,1064,1065,805,1064,1066,671,1065,1065,671,669,1057,801,805,1065,1057,1067,709,878,1068,802,797,1067,1068,1067,797,796,1069,704,709,1067,1069,1070,714,884,1071,1070,1071,891,890,1072,1073,1074,882,1073,1075,803,1074,1074,803,802,1068,878,882,1074,1068,1076,1077,1078,893,1077,1079,715,1078,1080,945,944,1081,1080,1081,885,710,1082,870,872,1083,879,707,1082,1083,1082,707,706,1084,865,870,1082,1084,1085,1086,1087,876,1086,1088,880,1087,1087,880,879,1083,872,876,1087,1083,1089,1090,1091,713,1090,1092,951,1091,1093,676,675,1094,873,868,1093,1094,1093,868,867,1095,809,676,1093,1095,1096,739,738,1097,1096,1097,948,947,1098,1099,1100,950,1099,1101,954,1100,1102,1103,1104,682,1103,1105,874,1104,1104,874,873,1094,675,682,1104,1094,1106,936,935,1107,1106,1107,742,741,1108,820,822,1109,678,679,1108,1109,1108,679,811,1110,815,820,1108,1110,1111,1112,1113,953,1112,1114,942,1113,1115,1116,1117,826,1116,1118,680,1117,1117,680,678,1109,822,826,1117,1109,1119,730,926,1120,823,818,1119,1120,1119,818,817,1121,725,730,1119,1121,1122,735,932,1123,1122,1123,939,938,1124,1125,1126,930,1125,1127,824,1126,1126,824,823,1120,926,930,1126,1120,1128,1129,1130,941,1129,1131,736,1130,1132,986, -985,1133,1132,1133,933,731,1134,918,920,1135,927,728,1134,1135,1134,728,727,1136,913,918,1134,1136,1137,1138,1139,924,1138,1140,928,1139,1139,928,927,1135,920,924,1139,1135,1141,1142,1143,734,1142,1144,992,1143,1145,685,684,1146,921,916,1145,1146,1145,916,915,1147,830,685,1145,1147,1148,760,759,1149,1148,1149,989,988,1150,1151,1152,991,1151,1153,995,1152,1154,1155,1156,691,1155,1157,922,1156,1156,922,921,1146,684,691,1156,1146,1158,977,976,1159,1158,1159,763,762,1160,841,843,1161,687,688,1160,1161,1160,688,832,1162,836,841,1160,1162,1163,1164,1165,994,1164,1166,983,1165,1167,1168,1169,847,1168,1170,689,1169,1169,689,687,1161,843,847,1169,1161,1171,751,967,1172,844,839,1171,1172,1171,839,838,1173,746,751,1171,1173,1174,756,973,1175,1174,1175,980,979,1176,1177,1178,971,1177,1179,845,1178,1178,845,844,1172,967,971,1178,1172,1180,1181,1182,982,1181,1183,757,1182,1184,1022,1021,1185,1184,1185,974,752,1186,961,963,1187,968,749,1186,1187,1186,749,748,1188,958,961,1186,1188,1189,1190,1191,965,1190,1192,969,1191,1191,969,968,1187,963,965,1191,1187,1193,1194,1195,755,1194,1196,1025,1195,788,667,1038,1037,1038,667,666,1053,1038,1053,1049,1032,1197,1198,1000,772,1198,1199,1001,1000,795,1200,1069,796,1200,701,704,1069,705,1201,1084,706,1201,862,865,1084,789,1202,1058,790,1202,791,794,1058,866,1203,1095,867,1203,806,809,1095,810,1204,1110,811,1204,812,815,1110,816,1205,1121,817,1205,722,725,1121,726,1206,1136,727,1206,910,913,1136,914,1207,1147,915,1207,827,830,1147,831,1208,1162,832,1208,833,836,1162,837,1209,1173,838,1209,743,746,1173,747,1210,1188,748,1210,955,958,1188,959,1211,852,851,1211,854,853,852,857,1212,771,770,1212,1197,772,771,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1226,1229,1230,1227,1231,1232,1233,1234,1232,1235,1236,1233,1233,1236,1237,1238,1234,1233,1238,1239,1240,1241,1242,1243,1241,1244,1245,1242,1246,1247,1248,1249,1247,1250,1251,1248,1248,1251,1252,1253,1249,1248,1253,1254,1255,1256,1257,1258,1256,1259,1260,1257,1257,1260,1261,1262,1258,1257,1262,1263,1264,1265,1266, -1267,1265,1268,1269,1266,1270,1271,1272,1273,1271,1274,1275,1272,1276,1277,1278,1279,1277,1280,1281,1278,1278,1281,1282,1283,1279,1278,1283,1284,1285,1286,1287,1288,1286,1289,1290,1287,1291,1292,1293,1294,1292,1295,1296,1293,1297,1298,1299,1300,1298,1301,1302,1299,1303,1304,1305,1306,1304,1307,1308,1305,1309,1310,1311,1312,1310,1313,1314,1311,1311,1314,1315,1316,1312,1311,1316,1317,1318,1319,1320,1321,1319,1322,1216,1320,1320,1216,1215,1323,1321,1320,1323,1324,1325,1326,1327,1328,1326,1329,1330,1327,1327,1330,1331,1332,1328,1327,1332,1333,1334,1335,1331,1330,1336,1337,1338,1339,1337,1340,1220,1338,1338,1220,1219,1341,1339,1338,1341,1342,1343,1344,1345,1346,1344,1347,1348,1345,1345,1348,1349,1350,1346,1345,1350,1351,1352,1353,1349,1348,1354,1355,1356,1357,1355,1358,1224,1356,1356,1224,1223,1359,1357,1356,1359,1360,1361,1362,1363,1364,1362,1365,1366,1363,1363,1366,1367,1368,1364,1363,1368,1369,1370,1371,1367,1366,1372,1373,1227,1230,1373,1374,1228,1227,1375,1376,1377,1378,1376,1372,1379,1377,1377,1379,1301,1380,1378,1377,1380,1381,1382,1302,1301,1379,1383,1384,1385,1386,1384,1387,1388,1385,1385,1388,1389,1390,1386,1385,1390,1391,1392,1393,1389,1388,1394,1395,1237,1236,1396,1397,1398,1399,1397,1400,1401,1398,1400,1402,1403,1401,1402,1404,1252,1403,1405,1406,1407,1408,1406,1409,1410,1407,1411,1412,1413,1414,1412,1246,1249,1413,1413,1249,1254,1415,1414,1413,1415,1416,1417,1418,1419,1420,1417,1420,1421,1422,1423,1424,1425,1426,1424,1427,1428,1425,1429,1430,1431,1432,1430,1433,1434,1431,1431,1434,1435,1436,1432,1431,1436,1437,1438,1439,1435,1434,1440,1441,1261,1260,1442,1443,1444,1445,1443,1446,1447,1444,1446,1448,1449,1447,1448,1270,1273,1449,1450,1451,1452,1453,1451,1454,1455,1452,1274,1456,1457,1275,1456,1396,1399,1457,1458,1459,1460,1461,1459,1462,1463,1460,1464,1465,1466,1467,1465,1468,1469,1466,1470,1471,1472,1473,1471,1474,1475,1472,1472,1475,1374,1476,1473,1472,1476,1477,1478,1228,1374,1475,1479,1480,1282,1281,1481,1482,1483,1317,1482,1484,1485,1483,1484,1486,1487,1485,1486,1291,1294,1487,1488,1489,1490,1491,1489, -1492,1493,1490,1295,1494,1495,1296,1494,1442,1445,1495,1496,1497,1498,1499,1497,1500,1501,1498,1502,1503,1504,1505,1503,1506,1507,1504,1508,1509,1510,1511,1509,1297,1300,1510,1512,1513,1299,1302,1513,1514,1300,1299,1515,1516,1517,1518,1516,1519,1315,1517,1520,1521,1522,1523,1521,1524,1308,1522,1525,1526,1527,1528,1526,1529,1530,1527,1531,1532,1533,1523,1532,1534,1530,1533,1535,1536,1537,1538,1536,1539,1540,1537,1537,1540,1541,1542,1538,1537,1542,1543,1544,1545,1546,1426,1545,1547,1548,1546,1549,1550,1551,1552,1553,1550,1549,1554,1555,1329,1556,1557,1556,1215,1214,1557,1558,1559,1560,1408,1559,1561,1428,1560,1562,1563,1557,1214,1563,1564,1555,1557,1565,1235,1566,1567,1566,1331,1335,1567,1568,1569,1567,1335,1569,1570,1565,1567,1571,1572,1573,1243,1572,1574,1410,1573,1575,1387,1576,1577,1576,1237,1395,1577,1578,1579,1577,1395,1579,1580,1575,1577,1581,1582,1583,1461,1582,1584,1245,1583,1585,1340,1586,1587,1586,1389,1393,1587,1588,1589,1590,1467,1589,1591,1463,1590,1592,1593,1587,1393,1593,1594,1585,1587,1595,1347,1596,1597,1596,1219,1218,1597,1598,1599,1600,1453,1599,1601,1469,1600,1602,1603,1597,1218,1603,1604,1595,1597,1605,1259,1606,1607,1606,1349,1353,1607,1608,1609,1607,1353,1609,1610,1605,1607,1611,1612,1613,1267,1612,1614,1455,1613,1615,1433,1616,1617,1616,1261,1441,1617,1618,1619,1617,1441,1619,1620,1615,1617,1621,1622,1623,1499,1622,1624,1269,1623,1625,1358,1626,1627,1626,1435,1439,1627,1628,1629,1630,1505,1629,1631,1501,1630,1632,1633,1627,1439,1633,1634,1625,1627,1635,1365,1636,1637,1636,1223,1222,1637,1638,1639,1640,1491,1639,1641,1507,1640,1642,1643,1637,1222,1643,1644,1635,1637,1645,1280,1646,1647,1646,1367,1371,1647,1648,1649,1647,1371,1649,1650,1645,1647,1651,1652,1653,1288,1652,1654,1493,1653,1655,1474,1656,1657,1656,1282,1480,1657,1658,1659,1657,1480,1659,1660,1655,1657,1661,1662,1663,1528,1662,1664,1290,1663,1665,1322,1541,1553,1553,1541,1540,1550,1666,1667,1668,1669,1667,1297,1509,1668,1668,1509,1508,1670,1669,1668,1670,1671,1333,1332,1672,1673,1332,1331,1566,1672,1672,1566,1235,1232,1673,1672,1232, -1231,1239,1238,1674,1675,1238,1237,1576,1674,1674,1576,1387,1384,1675,1674,1384,1383,1394,1236,1235,1565,1334,1330,1329,1555,1392,1388,1387,1575,1324,1323,1676,1677,1323,1215,1556,1676,1676,1556,1329,1326,1677,1676,1326,1325,1391,1390,1678,1679,1390,1389,1586,1678,1678,1586,1340,1337,1679,1678,1337,1336,1213,1216,1322,1665,1217,1220,1340,1585,1342,1341,1680,1681,1341,1219,1596,1680,1680,1596,1347,1344,1681,1680,1344,1343,1352,1348,1347,1595,1351,1350,1682,1683,1350,1349,1606,1682,1682,1606,1259,1256,1683,1682,1256,1255,1440,1260,1259,1605,1263,1262,1684,1685,1262,1261,1616,1684,1684,1616,1433,1430,1685,1684,1430,1429,1438,1434,1433,1615,1437,1436,1686,1687,1436,1435,1626,1686,1686,1626,1358,1355,1687,1686,1355,1354,1221,1224,1358,1625,1360,1359,1688,1689,1359,1223,1636,1688,1688,1636,1365,1362,1689,1688,1362,1361,1370,1366,1365,1635,1369,1368,1690,1691,1368,1367,1646,1690,1690,1646,1280,1277,1691,1690,1277,1276,1479,1281,1280,1645,1284,1283,1692,1693,1283,1282,1656,1692,1692,1656,1474,1471,1693,1692,1471,1470,1478,1475,1474,1655,1477,1476,1694,1695,1476,1374,1373,1694,1694,1373,1372,1376,1695,1694,1376,1375,1382,1379,1372,1230,1381,1380,1696,1697,1380,1301,1298,1696,1696,1298,1297,1667,1697,1696,1667,1666,1698,1699,1700,1701,1699,1535,1538,1700,1700,1538,1543,1702,1701,1700,1702,1703,1318,1321,1704,1705,1321,1324,1706,1704,1704,1706,1707,1708,1705,1704,1708,1709,1324,1677,1710,1706,1677,1325,1711,1710,1710,1711,1712,1713,1706,1710,1713,1707,1325,1328,1714,1711,1328,1333,1715,1714,1714,1715,1716,1717,1711,1714,1717,1712,1333,1673,1718,1715,1673,1231,1719,1718,1718,1719,1720,1721,1715,1718,1721,1716,1231,1234,1722,1719,1234,1239,1723,1722,1722,1723,1724,1725,1719,1722,1725,1720,1239,1675,1726,1723,1675,1383,1727,1726,1726,1727,1728,1729,1723,1726,1729,1724,1383,1386,1730,1727,1386,1391,1731,1730,1730,1731,1732,1733,1727,1730,1733,1728,1391,1679,1734,1731,1679,1336,1735,1734,1734,1735,1736,1737,1731,1734,1737,1732,1336,1339,1738,1735,1339,1342,1739,1738,1738,1739,1740,1741,1735,1738,1741,1736,1342,1681,1742,1739,1681, -1343,1743,1742,1742,1743,1744,1745,1739,1742,1745,1740,1343,1346,1746,1743,1346,1351,1747,1746,1746,1747,1748,1749,1743,1746,1749,1744,1351,1683,1750,1747,1683,1255,1751,1750,1750,1751,1752,1753,1747,1750,1753,1748,1255,1258,1754,1751,1258,1263,1755,1754,1754,1755,1756,1757,1751,1754,1757,1752,1263,1685,1758,1755,1685,1429,1759,1758,1758,1759,1760,1761,1755,1758,1761,1756,1429,1432,1762,1759,1432,1437,1763,1762,1762,1763,1764,1765,1759,1762,1765,1760,1437,1687,1766,1763,1687,1354,1767,1766,1766,1767,1768,1769,1763,1766,1769,1764,1354,1357,1770,1767,1357,1360,1771,1770,1770,1771,1772,1773,1767,1770,1773,1768,1360,1689,1774,1771,1689,1361,1775,1774,1774,1775,1776,1777,1771,1774,1777,1772,1361,1364,1778,1775,1364,1369,1779,1778,1778,1779,1780,1781,1775,1778,1781,1776,1369,1691,1782,1779,1691,1276,1783,1782,1782,1783,1784,1785,1779,1782,1785,1780,1276,1279,1786,1783,1279,1284,1787,1786,1786,1787,1788,1789,1783,1786,1789,1784,1284,1693,1790,1787,1693,1470,1791,1790,1790,1791,1792,1793,1787,1790,1793,1788,1470,1473,1794,1791,1473,1477,1795,1794,1794,1795,1796,1797,1791,1794,1797,1792,1477,1695,1798,1795,1695,1375,1799,1798,1798,1799,1800,1801,1795,1798,1801,1796,1375,1378,1802,1799,1378,1381,1803,1802,1802,1803,1804,1805,1799,1802,1805,1800,1381,1697,1806,1803,1697,1666,1807,1806,1806,1807,1808,1809,1803,1806,1809,1804,1666,1669,1810,1807,1669,1671,1811,1810,1810,1811,1812,1813,1807,1810,1813,1808,1709,1814,1815,1703,1814,785,1036,1815,1815,1036,1035,1816,1701,1703,1815,1816,789,786,1817,1818,786,785,1814,1817,1817,1814,1709,1708,1818,1817,1708,1707,791,1202,1819,1820,1202,789,1818,1819,1819,1818,1707,1713,1820,1819,1713,1712,795,792,1821,1822,792,791,1820,1821,1821,1820,1712,1717,1822,1821,1717,1716,701,1200,1823,1824,1200,795,1822,1823,1823,1822,1716,1721,1824,1823,1721,1720,705,702,1825,1826,702,701,1824,1825,1825,1824,1720,1725,1826,1825,1725,1724,862,1201,1827,1828,1201,705,1826,1827,1827,1826,1724,1729,1828,1827,1729,1728,866,863,1829,1830,863,862,1828,1829,1829,1828,1728,1733,1830,1829,1733,1732,806,1203,1831,1832, -1203,866,1830,1831,1831,1830,1732,1737,1832,1831,1737,1736,810,807,1833,1834,807,806,1832,1833,1833,1832,1736,1741,1834,1833,1741,1740,812,1204,1835,1836,1204,810,1834,1835,1835,1834,1740,1745,1836,1835,1745,1744,816,813,1837,1838,813,812,1836,1837,1837,1836,1744,1749,1838,1837,1749,1748,722,1205,1839,1840,1205,816,1838,1839,1839,1838,1748,1753,1840,1839,1753,1752,726,723,1841,1842,723,722,1840,1841,1841,1840,1752,1757,1842,1841,1757,1756,910,1206,1843,1844,1206,726,1842,1843,1843,1842,1756,1761,1844,1843,1761,1760,914,911,1845,1846,911,910,1844,1845,1845,1844,1760,1765,1846,1845,1765,1764,827,1207,1847,1848,1207,914,1846,1847,1847,1846,1764,1769,1848,1847,1769,1768,831,828,1849,1850,828,827,1848,1849,1849,1848,1768,1773,1850,1849,1773,1772,833,1208,1851,1852,1208,831,1850,1851,1851,1850,1772,1777,1852,1851,1777,1776,837,834,1853,1854,834,833,1852,1853,1853,1852,1776,1781,1854,1853,1781,1780,743,1209,1855,1856,1209,837,1854,1855,1855,1854,1780,1785,1856,1855,1785,1784,747,744,1857,1858,744,743,1856,1857,1857,1856,1784,1789,1858,1857,1789,1788,955,1210,1859,1860,1210,747,1858,1859,1859,1858,1788,1793,1860,1859,1793,1792,959,956,1861,1862,956,955,1860,1861,1861,1860,1792,1797,1862,1861,1797,1796,854,1211,1863,1864,1211,959,1862,1863,1863,1862,1796,1801,1864,1863,1801,1800,857,855,1865,1866,855,854,1864,1865,1865,1864,1800,1805,1866,1865,1805,1804,1197,1212,1867,1868,1212,857,1866,1867,1867,1866,1804,1809,1868,1867,1809,1808,1199,1198,1869,1870,1198,1197,1868,1869,1869,1868,1808,1813,1870,1869,1813,1812,906,1046,1042,900,901,906,900,898,1422,1548,1547,1871,1417,1422,1871,1872,951,945,1080,1091,1080,710,713,1091,715,714,1070,1078,1070,890,893,1078,715,1079,1873,712,1873,1089,713,712,951,1092,1874,949,1874,1098,950,949,894,1062,1875,892,1875,1076,893,892,954,739,1096,1100,1096,947,950,1100,894,888,1054,1061,1054,720,908,1061,954,1101,1876,952,1876,1111,953,952,909,1047,1877,907,1877,1059,908,907,942,936,1106,1113,1106,741,953,1113,909,718,1039,1045,1039,1042,1046,1045,942,1114,1878,940,1878,1128,941,940,736,735,1122,1130, -1122,938,941,1130,736,1131,1879,733,1879,1141,734,733,992,986,1132,1143,1132,731,734,1143,992,1144,1880,990,1880,1150,991,990,995,760,1148,1152,1148,988,991,1152,995,1153,1881,993,1881,1163,994,993,983,977,1158,1165,1158,762,994,1165,983,1166,1882,981,1882,1180,982,981,757,756,1174,1182,1174,979,982,1182,757,1183,1883,754,1883,1193,755,754,1025,1022,1184,1195,1184,752,755,1195,1025,1196,1884,1023,1884,1026,1024,1023,1018,780,779,1028,779,784,1024,1028,1018,1029,1885,1017,1885,778,777,1017,1010,1009,774,773,1009,1014,777,774,1308,1524,1886,1305,1886,1887,1306,1305,1308,1307,1888,1522,1888,1531,1523,1522,1530,1529,1889,1533,1889,1520,1523,1533,1530,1534,1890,1527,1890,1661,1528,1527,1290,1289,1891,1663,1891,1525,1528,1663,1290,1664,1892,1287,1892,1651,1288,1287,1493,1492,1893,1653,1893,1285,1288,1653,1493,1654,1894,1490,1894,1638,1491,1490,1507,1506,1895,1640,1895,1488,1491,1640,1507,1641,1896,1504,1896,1628,1505,1504,1501,1500,1897,1630,1897,1502,1505,1630,1501,1631,1898,1498,1898,1621,1499,1498,1269,1268,1899,1623,1899,1496,1499,1623,1269,1624,1900,1266,1900,1611,1267,1266,1455,1454,1901,1613,1901,1264,1267,1613,1455,1614,1902,1452,1902,1598,1453,1452,1469,1468,1903,1600,1903,1450,1453,1600,1469,1601,1904,1466,1904,1588,1467,1466,1463,1462,1905,1590,1905,1464,1467,1590,1463,1591,1906,1460,1906,1581,1461,1460,1245,1244,1907,1583,1907,1458,1461,1583,1245,1584,1908,1242,1908,1571,1243,1242,1410,1409,1909,1573,1909,1240,1243,1573,1410,1574,1910,1407,1910,1558,1408,1407,1428,1427,1911,1560,1911,1405,1408,1560,1428,1561,1912,1425,1912,1544,1426,1425,1913,1914,1546,1548,1914,1423,1426,1546,666,673,1052,1053,673,1915,1916,1052,1052,1916,1917,1050,1066,1918,672,671,1918,1915,673,672,1075,1919,804,803,1919,1063,805,804,1088,1920,881,880,1920,1072,882,881,1105,1921,875,874,1921,1085,876,875,1118,1922,681,680,1922,1102,682,681,1127,1923,825,824,1923,1115,826,825,1140,1924,929,928,1924,1124,930,929,1157,1925,923,922,1925,1137,924,923,1170,1926,690,689,1926,1154,691,690,1179,1927,846,845,1927,1167,847,846,1192,1928,970,969,1928, -1176,971,970,696,1929,964,697,1929,1189,965,964,1008,1930,861,860,1930,692,695,861,1931,1932,1003,1002,1932,1005,1004,1003,1300,1514,1933,1510,1933,1934,1511,1510,1230,1229,1935,1382,1935,1512,1302,1382,1655,1660,1936,1478,1936,1225,1228,1478,1645,1650,1937,1479,1937,1658,1480,1479,1635,1644,1938,1370,1938,1648,1371,1370,1625,1634,1939,1221,1939,1642,1222,1221,1615,1620,1940,1438,1940,1632,1439,1438,1605,1610,1941,1440,1941,1618,1441,1440,1595,1604,1942,1352,1942,1608,1353,1352,1585,1594,1943,1217,1943,1602,1218,1217,1575,1580,1944,1392,1944,1592,1393,1392,1565,1570,1945,1394,1945,1578,1395,1394,1555,1564,1946,1334,1946,1568,1335,1334,1947,1948,1213,1665,1948,1562,1214,1213,1520,1889,1949,1521,1889,1529,1950,1949,1949,1950,1519,1951,1521,1949,1951,1524,1484,1952,1953,1954,1952,1289,1286,1953,1953,1286,1285,1893,1954,1953,1893,1492,1295,1955,1956,1957,1955,1506,1503,1956,1956,1503,1502,1897,1957,1956,1897,1500,1446,1958,1959,1960,1958,1268,1265,1959,1959,1265,1264,1901,1960,1959,1901,1454,1274,1961,1962,1963,1961,1468,1465,1962,1962,1465,1464,1905,1963,1962,1905,1462,1400,1964,1965,1966,1964,1244,1241,1965,1965,1241,1240,1909,1966,1965,1909,1409,1967,1968,1969,1970,1968,1427,1424,1969,1969,1424,1423,1914,1970,1969,1914,1913,1515,1971,1972,1516,1971,1887,1886,1972,1972,1886,1524,1951,1516,1972,1951,1519,1481,1973,1974,1975,1973,1519,1950,1974,1974,1950,1529,1526,1975,1974,1526,1525,1289,1952,1976,1891,1952,1484,1482,1976,1976,1482,1481,1975,1891,1976,1975,1525,1291,1486,1977,1978,1486,1484,1954,1977,1977,1954,1492,1489,1978,1977,1489,1488,1506,1955,1979,1895,1955,1295,1292,1979,1979,1292,1291,1978,1895,1979,1978,1488,1442,1494,1980,1981,1494,1295,1957,1980,1980,1957,1500,1497,1981,1980,1497,1496,1268,1958,1982,1899,1958,1446,1443,1982,1982,1443,1442,1981,1899,1982,1981,1496,1270,1448,1983,1984,1448,1446,1960,1983,1983,1960,1454,1451,1984,1983,1451,1450,1468,1961,1985,1903,1961,1274,1271,1985,1985,1271,1270,1984,1903,1985,1984,1450,1396,1456,1986,1987,1456,1274,1963,1986,1986,1963,1462,1459,1987,1986,1459,1458,1244,1964, -1988,1907,1964,1400,1397,1988,1988,1397,1396,1987,1907,1988,1987,1458,1404,1402,1989,1990,1402,1400,1966,1989,1989,1966,1409,1406,1990,1989,1406,1405,1427,1968,1991,1911,1968,1967,1992,1991,1991,1992,1404,1990,1911,1991,1990,1405,1404,1992,1253,1252,1992,1967,1254,1253,1517,1315,1314,1993,1518,1517,1993,1994,1250,1995,1996,1251,1995,1997,1998,1996,1996,1998,1401,1403,1251,1996,1403,1252,1997,1999,2000,1998,1999,2001,2002,2000,2000,2002,1399,1398,1998,2000,1398,1401,2001,2003,2004,2002,2003,2005,2006,2004,2004,2006,1275,1457,2002,2004,1457,1399,2005,2007,2008,2006,2007,2009,2010,2008,2008,2010,1273,1272,2006,2008,1272,1275,2009,2011,2012,2010,2011,2013,2014,2012,2012,2014,1447,1449,2010,2012,1449,1273,2013,2015,2016,2014,2015,2017,2018,2016,2016,2018,1445,1444,2014,2016,1444,1447,2017,2019,2020,2018,2019,2021,2022,2020,2020,2022,1296,1495,2018,2020,1495,1445,2021,2023,2024,2022,2023,2025,2026,2024,2024,2026,1294,1293,2022,2024,1293,1296,2025,2027,2028,2026,2027,2029,2030,2028,2028,2030,1485,1487,2026,2028,1487,1294,2029,2031,2032,2030,2031,1309,1312,2032,2032,1312,1317,1483,2030,2032,1483,1485,1315,1519,1973,1316,1973,1481,1317,1316,1970,1913,1416,1415,1970,1415,1254,1967,1420,1419,1411,1414,1420,1414,1416,1421,2033,2034,2035,2036,2034,2033,2037,2038,2039,2034,2038,2040,2034,2039,2041,2035,2042,2043,2044,2045,2043,2042,2046,2047,2048,2043,2047,2049,2043,2048,2050,2044,2051,2052,2053,2054,2052,2051,2055,2056,2057,2052,2056,2058,2052,2057,2059,2053,2060,2061,2062,2063,2062,2061,2064,2065,2066,2062,2065,2067,2063,2062,2066,2068,2069,2070,2071,2072,2071,2070,2073,2074,2075,2071,2074,2076,2072,2071,2075,2077,2078,2079,2080,2081,2078,2081,2082,2083,2084,2085,2086,2087,2085,2088,2089,2086,2090,2091,2092,2093,2092,2091,2094,2095,2096,2092,2095,2097,2093,2092,2096,2098,2099,2100,2101,2102,2099,2102,2103,2104,2105,2106,2107,2108,2106,2109,2110,2107,2111,2112,2113,2114,2113,2112,2115,2116,2117,2113,2116,2118,2114,2113,2117,2119,2120,2121,2122,2123,2120,2123,2124,2125,2126,2127,2128,2129,2127,2130,2131,2128,2132,2133,2134,2135, -2133,2132,2136,2137,2138,2133,2137,2139,2133,2138,2140,2134,2141,2142,2143,2144,2141,2144,2145,2146,2147,2148,2149,2150,2148,2151,2152,2149,2153,2154,2155,2156,2155,2154,2036,2035,2157,2155,2035,2041,2156,2155,2157,2158,2159,2160,2161,2162,2161,2160,2163,2164,2165,2161,2164,2166,2162,2161,2165,2167,2168,2169,2164,2163,2169,2168,2170,2171,2172,2169,2171,2173,2169,2172,2166,2164,2174,2175,2176,2177,2176,2175,2045,2044,2178,2176,2044,2050,2177,2176,2178,2179,2180,2181,2182,2183,2182,2181,2184,2185,2186,2182,2185,2187,2183,2182,2186,2188,2189,2190,2185,2184,2190,2189,2191,2192,2193,2190,2192,2194,2190,2193,2187,2185,2195,2196,2197,2198,2197,2196,2054,2053,2199,2197,2053,2059,2198,2197,2199,2200,2201,2202,2203,2204,2203,2202,2205,2206,2207,2203,2206,2208,2204,2203,2207,2209,2210,2211,2206,2205,2211,2210,2212,2213,2214,2211,2213,2215,2211,2214,2208,2206,2216,2217,2065,2064,2217,2216,2218,2219,2220,2217,2219,2221,2217,2220,2067,2065,2222,2218,2223,2224,2223,2218,2216,2225,2138,2139,2223,2225,2224,2223,2139,2226,2216,2064,2227,2225,2227,2064,2061,2228,2140,2227,2228,2229,2227,2140,2138,2225,2230,2231,2232,2233,2232,2231,2234,2235,2236,2232,2235,2237,2233,2232,2236,2238,2239,2240,2235,2234,2240,2239,2241,2242,2243,2240,2242,2244,2240,2243,2237,2235,2245,2246,2074,2073,2246,2245,2247,2248,2249,2246,2248,2250,2246,2249,2076,2074,2251,2252,2078,2083,2252,2253,2079,2078,2254,2255,2256,2257,2255,2258,2259,2256,2256,2259,2260,2261,2256,2261,2262,2257,2263,2264,2265,2266,2267,2263,2266,2268,2269,903,902,2270,2269,2270,2271,2272,2086,2089,2273,2274,2086,2274,2275,2087,2276,2277,2278,2279,2278,2277,2280,2281,2282,2278,2281,2283,2279,2278,2282,2284,2285,2286,2281,2280,2286,2285,2287,2288,2289,2286,2288,2290,2286,2289,2283,2281,2291,2292,2095,2094,2292,2291,2293,2294,2295,2292,2294,2296,2292,2295,2097,2095,2297,2298,2099,2104,2298,2299,2100,2099,2300,2301,2302,2303,2301,2304,2305,2302,2302,2305,2306,2307,2302,2307,2308,2303,2309,2310,2311,2312,2310,2313,2314,2311,2311,2314,2315,2316,2311,2316,2317,2312,2107,2110,2318,2319,2107,2319,2320, -2108,2321,2322,2323,2324,2323,2322,2325,2326,2220,2221,2323,2326,2324,2323,2221,2327,2328,2329,2326,2325,2329,2328,2330,2331,2066,2067,2329,2331,2329,2067,2220,2326,2332,2333,2116,2115,2333,2332,2334,2335,2336,2333,2335,2337,2333,2336,2118,2116,2338,2339,2120,2125,2339,2340,2121,2120,2341,2342,2343,2344,2342,2345,2346,2343,2343,2346,2347,2348,2343,2348,2349,2344,2350,2351,2352,2353,2351,2354,2355,2352,2352,2355,2356,2357,2352,2357,2358,2353,2128,2131,2359,2360,2128,2360,2361,2129,2362,2363,2364,2365,2363,2362,2366,2367,2132,2363,2367,2136,2363,2132,2135,2364,2364,2135,2368,2369,2365,2364,2369,2370,2371,2368,2372,2373,2372,2368,2135,2134,2140,2229,2372,2134,2373,2372,2229,2374,2375,2376,2377,2378,2376,2379,2380,2377,2381,2380,2379,2382,2381,2382,2147,2150,2382,2379,2143,2383,2382,2383,2384,2147,2385,2152,2151,2386,2385,2386,2387,2388,2386,2151,2389,2390,2386,2390,2391,2387,2392,2393,2389,2394,2392,2394,2384,2395,1034,1030,2396,2397,2396,1030,1033,2398,2397,2396,2399,2400,2084,2087,2401,2402,2401,2265,2264,2402,2403,2404,2405,2406,2403,2406,2275,2407,1048,2408,2398,1033,2408,1048,1051,2409,2410,2398,2408,2411,2254,2257,2412,2413,2412,2089,2088,2413,2168,2163,2414,2415,2414,2163,2160,2416,2157,2041,2414,2416,2414,2041,2039,2415,2417,2418,2273,2419,2417,2419,2262,2420,2421,2170,2422,2423,2422,2170,2168,2415,2039,2040,2422,2415,2423,2422,2040,2424,2245,2073,2425,2426,2425,2073,2070,2427,2165,2166,2425,2427,2425,2166,2172,2426,2251,2083,2428,2429,2428,2259,2258,2429,2430,2247,2431,2432,2431,2247,2245,2426,2172,2173,2431,2426,2432,2431,2173,2433,2434,2435,2260,2436,2434,2436,2082,2437,2309,2312,2438,2439,2438,2079,2253,2439,2239,2234,2440,2441,2440,2234,2231,2442,2075,2076,2440,2442,2440,2076,2249,2441,2443,2241,2444,2445,2444,2241,2239,2441,2249,2250,2444,2441,2445,2444,2250,2446,2447,2448,2080,2449,2447,2449,2317,2450,2042,2045,2451,2452,2451,2045,2175,2453,2236,2237,2451,2453,2451,2237,2243,2452,2105,2108,2454,2455,2454,2314,2313,2455,2456,2457,2315,2458,2456,2458,2320,2459,2460,2046,2461,2462,2461,2046,2042,2452,2243, -2244,2461,2452,2462,2461,2244,2463,2300,2303,2464,2465,2464,2110,2109,2465,2189,2184,2466,2467,2466,2184,2181,2468,2178,2050,2466,2468,2466,2050,2048,2467,2469,2470,2318,2471,2469,2471,2308,2472,2473,2191,2474,2475,2474,2191,2189,2467,2048,2049,2474,2467,2475,2474,2049,2476,2291,2094,2477,2478,2477,2094,2091,2479,2186,2187,2477,2479,2477,2187,2193,2478,2297,2104,2480,2481,2480,2305,2304,2481,2482,2293,2483,2484,2483,2293,2291,2478,2193,2194,2483,2478,2484,2483,2194,2485,2486,2487,2306,2488,2486,2488,2103,2489,2350,2353,2490,2491,2490,2100,2299,2491,2285,2280,2492,2493,2492,2280,2277,2494,2096,2097,2492,2494,2492,2097,2295,2493,2495,2287,2496,2497,2496,2287,2285,2493,2295,2296,2496,2493,2497,2496,2296,2498,2499,2500,2101,2501,2499,2501,2358,2502,2051,2054,2503,2504,2503,2054,2196,2505,2282,2283,2503,2505,2503,2283,2289,2504,2126,2129,2506,2507,2506,2355,2354,2507,2508,2509,2356,2510,2508,2510,2361,2511,2512,2055,2513,2514,2513,2055,2051,2504,2289,2290,2513,2504,2514,2513,2290,2515,2341,2344,2516,2517,2516,2131,2130,2517,2210,2205,2518,2519,2518,2205,2202,2520,2199,2059,2518,2520,2518,2059,2057,2519,2521,2522,2359,2523,2521,2523,2349,2524,2525,2212,2526,2527,2526,2212,2210,2519,2057,2058,2526,2519,2527,2526,2058,2528,2332,2115,2529,2530,2529,2115,2112,2531,2207,2208,2529,2531,2529,2208,2214,2530,2338,2125,2532,2533,2532,2346,2345,2533,2534,2334,2535,2536,2535,2334,2332,2530,2214,2215,2535,2530,2536,2535,2215,2537,2538,2539,2347,2540,2538,2540,2124,2541,2388,2387,2542,2543,2542,2121,2340,2543,2328,2325,2544,2545,2544,2325,2322,2546,2117,2118,2544,2546,2544,2118,2336,2545,2547,2330,2548,2549,2548,2330,2328,2545,2336,2337,2548,2545,2549,2548,2337,2550,2551,2552,2122,2553,2551,2553,2391,2554,2033,2036,2410,2411,2410,2036,2154,2399,2410,2399,2396,2398,2555,2136,2367,2556,2556,2367,2366,2557,2167,2165,2427,2558,2558,2427,2070,2069,2077,2075,2442,2559,2559,2442,2231,2230,2158,2157,2416,2560,2560,2416,2160,2159,2238,2236,2453,2561,2561,2453,2175,2174,2179,2178,2468,2562,2562,2468,2181,2180,2188,2186,2479,2563,2563,2479,2091, -2090,2098,2096,2494,2564,2564,2494,2277,2276,2284,2282,2505,2565,2565,2505,2196,2195,2200,2199,2520,2566,2566,2520,2202,2201,2209,2207,2531,2567,2567,2531,2112,2111,2119,2117,2546,2568,2568,2546,2322,2321,2327,2221,2219,2569,2569,2219,2218,2222,2226,2139,2137,2570,2570,2137,2136,2555,2571,2572,2573,2574,2575,2573,2572,2576,2573,2577,2578,2574,2579,2580,2581,2582,2583,2581,2580,2584,2581,2585,2586,2582,2587,2588,2589,2590,2591,2589,2588,2592,2589,2593,2594,2590,2595,2596,2597,2598,2595,2598,2599,2600,2601,2602,2603,2604,2602,2605,2606,2603,2603,2606,2607,2608,2604,2603,2608,2609,2610,2611,2612,2613,2610,2613,2614,2615,1250,1247,2616,2617,1247,1246,2618,2616,2616,2618,2619,2620,2617,2616,2620,2621,2622,2623,2624,2625,2623,2626,2627,2624,2624,2627,2628,2629,2625,2624,2629,2630,2631,2632,2633,2634,2631,2634,2635,2636,2637,2638,2639,2640,2637,2640,2641,2642,2643,2644,2645,2646,2644,2647,2648,2645,2645,2648,2649,2650,2646,2645,2650,2651,2652,2653,2654,2655,2652,2655,2656,2657,2658,2659,2660,2661,2658,2661,2662,2663,2664,2665,2666,2667,2665,2668,2669,2666,2670,2671,2672,2673,2670,2673,2674,2675,1313,1310,2676,2677,1310,1309,2678,2676,2676,2678,2679,2680,2677,2676,2680,2681,2682,2683,2684,2685,2683,2686,2687,2684,2684,2687,2571,2574,2685,2684,2574,2578,2688,2689,2690,2691,2689,2692,2693,2690,2690,2693,2694,2695,2691,2690,2695,2696,2694,2697,2698,2695,2699,2698,2697,2700,2698,2701,2696,2695,2702,2703,2704,2705,2703,2706,2707,2704,2704,2707,2579,2582,2705,2704,2582,2586,2708,2709,2710,2711,2709,2712,2713,2710,2710,2713,2714,2715,2711,2710,2715,2716,2714,2717,2718,2715,2719,2718,2717,2720,2718,2721,2716,2715,2722,2723,2724,2725,2723,2726,2727,2724,2724,2727,2587,2590,2725,2724,2590,2594,2728,2729,2730,2731,2729,2732,2733,2730,2730,2733,2734,2735,2731,2730,2735,2736,2734,2737,2738,2735,2739,2738,2737,2740,2738,2741,2736,2735,2599,2598,2742,2743,2598,2597,2744,2742,2745,2746,2747,2748,2746,2749,2750,2747,2747,2750,2669,2751,2748,2747,2751,2743,2669,2668,2752,2751,2753,2752,2668,2754,2752,2599,2743,2751,2755,2756,2757,2758,2756, -2759,2760,2757,2757,2760,2761,2762,2758,2757,2762,2763,2761,2764,2765,2762,2766,2765,2764,2767,2765,2768,2763,2762,2607,2769,2770,2608,2771,2770,2769,2772,2770,2773,2609,2608,2774,2775,2776,2777,2774,2777,2778,2779,2780,2779,2778,2781,2780,2781,2782,2783,2784,2785,2786,2787,2784,2787,2788,2789,1246,1412,2790,2618,1412,1411,2791,2790,2790,2791,2792,2793,2618,2790,2793,2619,2794,1419,1418,2795,2794,2795,2796,2797,2798,2799,2800,2801,2798,2801,2802,2803,2804,2805,2806,2807,2805,2808,2809,2806,2806,2809,2810,2811,2807,2806,2811,2812,2810,2813,2814,2811,2815,2814,2813,2816,2814,2817,2812,2811,2628,2818,2819,2629,2820,2819,2818,2821,2819,2822,2630,2629,2823,2824,2825,2826,2823,2826,2827,2828,2829,2828,2827,2830,2829,2830,2639,2638,2831,2832,2833,2834,2831,2834,2835,2836,2837,2642,2641,2838,2837,2838,2776,2775,2839,2840,2841,2842,2839,2842,2843,2844,2845,2846,2847,2848,2845,2848,2849,2850,2851,2852,2853,2854,2852,2855,2856,2853,2853,2856,2744,2857,2854,2853,2857,2858,2744,2597,2859,2857,2860,2859,2597,2596,2859,2861,2858,2857,2649,2862,2863,2650,2864,2863,2862,2865,2863,2866,2651,2650,2867,2868,2869,2870,2867,2870,2871,2872,2873,2872,2871,2874,2873,2874,2660,2659,2875,2876,2877,2878,2875,2878,2879,2880,2881,2663,2662,2882,2881,2882,2825,2824,2883,2884,2885,2886,2883,2886,2887,2888,2889,2890,2891,2892,2889,2892,2893,2894,2895,2896,2897,2898,2896,2664,2667,2897,2899,2896,2895,2900,2901,2754,2668,2665,2901,2665,2664,2902,2903,2904,2905,2906,2903,2906,2907,2908,2909,2910,2911,2912,2909,2912,2674,2913,2914,2915,2916,2917,2914,2917,2918,2919,2920,2921,2911,2922,2920,2922,2918,2923,1539,1536,2924,2925,1536,1535,2926,2924,2924,2926,2927,2928,2925,2924,2928,2929,2930,2931,2800,2932,2930,2932,2933,2934,2935,1552,1551,2936,2701,2937,2938,2696,2937,2572,2571,2938,2939,2940,2786,2941,2939,2941,2802,2942,2943,2576,2572,2937,2943,2937,2701,2944,2773,2945,2946,2609,2945,2697,2694,2946,2947,2700,2697,2945,2947,2945,2773,2948,2949,2950,2612,2951,2949,2951,2788,2952,2768,2953,2954,2763,2953,2769,2607,2954,2955,2772,2769,2953,2955,2953,2768, -2956,2957,2958,2841,2959,2957,2959,2614,2960,2585,2961,2962,2586,2961,2764,2761,2962,2963,2964,2847,2965,2963,2965,2843,2966,2967,2767,2764,2961,2967,2961,2585,2968,2721,2969,2970,2716,2969,2580,2579,2970,2971,2972,2833,2973,2971,2973,2849,2974,2975,2584,2580,2969,2975,2969,2721,2976,2822,2977,2978,2630,2977,2717,2714,2978,2979,2720,2717,2977,2979,2977,2822,2980,2981,2982,2633,2983,2981,2983,2835,2984,2817,2985,2986,2812,2985,2818,2628,2986,2987,2821,2818,2985,2987,2985,2817,2988,2989,2990,2885,2991,2989,2991,2635,2992,2593,2993,2994,2594,2993,2813,2810,2994,2995,2996,2891,2997,2995,2997,2887,2998,2999,2816,2813,2993,2999,2993,2593,3000,2741,3001,3002,2736,3001,2588,2587,3002,3003,3004,2877,3005,3003,3005,2893,3006,3007,2592,2588,3001,3007,3001,2741,3008,2866,3009,3010,2651,3009,2737,2734,3010,3011,2740,2737,3009,3011,3009,2866,3012,3013,3014,2654,3015,3013,3015,2879,3016,2861,3017,3018,2858,3017,2862,2649,3018,3019,2865,2862,3017,3019,3017,2861,3020,3021,3022,2916,3023,3021,3023,2656,3024,2929,2578,2577,3025,2925,2929,3025,2936,3026,3027,3028,3029,3027,3030,3031,3028,3028,3031,2898,2897,3029,3028,2897,2667,2692,3032,3033,2693,3032,2601,2604,3033,3033,2604,2609,2946,2693,3033,2946,2694,2605,3034,3035,2606,3034,2755,2758,3035,3035,2758,2763,2954,2606,3035,2954,2607,2686,3036,3037,2687,3036,2688,2691,3037,3037,2691,2696,2938,2687,3037,2938,2571,2759,3038,3039,2760,3038,2702,2705,3039,3039,2705,2586,2962,2760,3039,2962,2761,2706,3040,3041,2707,3040,2708,2711,3041,3041,2711,2716,2970,2707,3041,2970,2579,2712,3042,3043,2713,3042,2622,2625,3043,3043,2625,2630,2978,2713,3043,2978,2714,2626,3044,3045,2627,3044,2804,2807,3045,3045,2807,2812,2986,2627,3045,2986,2628,2808,3046,3047,2809,3046,2722,2725,3047,3047,2725,2594,2994,2809,3047,2994,2810,2726,3048,3049,2727,3048,2728,2731,3049,3049,2731,2736,3002,2727,3049,3002,2587,2732,3050,3051,2733,3050,2643,2646,3051,3051,2646,2651,3010,2733,3051,3010,2734,2647,3052,3053,2648,3052,2851,2854,3053,3053,2854,2858,3018,2648,3053,3018,2649,2855,3054,3055,2856,3054,2745,2748,3055,3055, -2748,2743,2742,2856,3055,2742,2744,2749,3056,3057,2750,3056,3026,3029,3057,3057,3029,2667,2666,2750,3057,2666,2669,1535,1699,3058,2926,1699,1698,3059,3058,3058,3059,3060,3061,2926,3058,3061,2927,2682,3062,3063,2683,3062,3064,3065,3063,3063,3065,3066,3067,2683,3063,3067,2686,2686,3067,3068,3036,3067,3066,3069,3068,3068,3069,3070,3071,3036,3068,3071,2688,2688,3071,3072,2689,3071,3070,3073,3072,3072,3073,3074,3075,2689,3072,3075,2692,2692,3075,3076,3032,3075,3074,3077,3076,3076,3077,3078,3079,3032,3076,3079,2601,2601,3079,3080,2602,3079,3078,3081,3080,3080,3081,3082,3083,2602,3080,3083,2605,2605,3083,3084,3034,3083,3082,3085,3084,3084,3085,3086,3087,3034,3084,3087,2755,2755,3087,3088,2756,3087,3086,3089,3088,3088,3089,3090,3091,2756,3088,3091,2759,2759,3091,3092,3038,3091,3090,3093,3092,3092,3093,3094,3095,3038,3092,3095,2702,2702,3095,3096,2703,3095,3094,3097,3096,3096,3097,3098,3099,2703,3096,3099,2706,2706,3099,3100,3040,3099,3098,3101,3100,3100,3101,3102,3103,3040,3100,3103,2708,2708,3103,3104,2709,3103,3102,3105,3104,3104,3105,3106,3107,2709,3104,3107,2712,2712,3107,3108,3042,3107,3106,3109,3108,3108,3109,3110,3111,3042,3108,3111,2622,2622,3111,3112,2623,3111,3110,3113,3112,3112,3113,3114,3115,2623,3112,3115,2626,2626,3115,3116,3044,3115,3114,3117,3116,3116,3117,3118,3119,3044,3116,3119,2804,2804,3119,3120,2805,3119,3118,3121,3120,3120,3121,3122,3123,2805,3120,3123,2808,2808,3123,3124,3046,3123,3122,3125,3124,3124,3125,3126,3127,3046,3124,3127,2722,2722,3127,3128,2723,3127,3126,3129,3128,3128,3129,3130,3131,2723,3128,3131,2726,2726,3131,3132,3048,3131,3130,3133,3132,3132,3133,3134,3135,3048,3132,3135,2728,2728,3135,3136,2729,3135,3134,3137,3136,3136,3137,3138,3139,2729,3136,3139,2732,2732,3139,3140,3050,3139,3138,3141,3140,3140,3141,3142,3143,3050,3140,3143,2643,2643,3143,3144,2644,3143,3142,3145,3144,3144,3145,3146,3147,2644,3144,3147,2647,2647,3147,3148,3052,3147,3146,3149,3148,3148,3149,3150,3151,3052,3148,3151,2851,2851,3151,3152,2852,3151,3150,3153,3152,3152,3153,3154,3155,2852,3152,3155,2855,2855,3155,3156, -3054,3155,3154,3157,3156,3156,3157,3158,3159,3054,3156,3159,2745,2745,3159,3160,2746,3159,3158,3161,3160,3160,3161,3162,3163,2746,3160,3163,2749,2749,3163,3164,3056,3163,3162,3165,3164,3164,3165,3166,3167,3056,3164,3167,3026,3026,3167,3168,3027,3167,3166,3169,3168,3168,3169,3170,3171,3027,3168,3171,3030,2153,3172,3173,2400,3172,3064,3060,3173,3173,3060,3059,3174,2397,2400,3173,3174,2158,3175,3176,2156,3175,3066,3065,3176,3176,3065,3064,3172,2156,3176,3172,2153,2159,3177,3178,2560,3177,3070,3069,3178,3178,3069,3066,3175,2560,3178,3175,2158,2167,3179,3180,2162,3179,3074,3073,3180,3180,3073,3070,3177,2162,3180,3177,2159,2069,3181,3182,2558,3181,3078,3077,3182,3182,3077,3074,3179,2558,3182,3179,2167,2077,3183,3184,2072,3183,3082,3081,3184,3184,3081,3078,3181,2072,3184,3181,2069,2230,3185,3186,2559,3185,3086,3085,3186,3186,3085,3082,3183,2559,3186,3183,2077,2238,3187,3188,2233,3187,3090,3089,3188,3188,3089,3086,3185,2233,3188,3185,2230,2174,3189,3190,2561,3189,3094,3093,3190,3190,3093,3090,3187,2561,3190,3187,2238,2179,3191,3192,2177,3191,3098,3097,3192,3192,3097,3094,3189,2177,3192,3189,2174,2180,3193,3194,2562,3193,3102,3101,3194,3194,3101,3098,3191,2562,3194,3191,2179,2188,3195,3196,2183,3195,3106,3105,3196,3196,3105,3102,3193,2183,3196,3193,2180,2090,3197,3198,2563,3197,3110,3109,3198,3198,3109,3106,3195,2563,3198,3195,2188,2098,3199,3200,2093,3199,3114,3113,3200,3200,3113,3110,3197,2093,3200,3197,2090,2276,3201,3202,2564,3201,3118,3117,3202,3202,3117,3114,3199,2564,3202,3199,2098,2284,3203,3204,2279,3203,3122,3121,3204,3204,3121,3118,3201,2279,3204,3201,2276,2195,3205,3206,2565,3205,3126,3125,3206,3206,3125,3122,3203,2565,3206,3203,2284,2200,3207,3208,2198,3207,3130,3129,3208,3208,3129,3126,3205,2198,3208,3205,2195,2201,3209,3210,2566,3209,3134,3133,3210,3210,3133,3130,3207,2566,3210,3207,2200,2209,3211,3212,2204,3211,3138,3137,3212,3212,3137,3134,3209,2204,3212,3209,2201,2111,3213,3214,2567,3213,3142,3141,3214,3214,3141,3138,3211,2567,3214,3211,2209,2119,3215,3216,2114,3215,3146,3145,3216,3216,3145,3142,3213,2114, -3216,3213,2111,2321,3217,3218,2568,3217,3150,3149,3218,3218,3149,3146,3215,2568,3218,3215,2119,2327,3219,3220,2324,3219,3154,3153,3220,3220,3153,3150,3217,2324,3220,3217,2321,2222,3221,3222,2569,3221,3158,3157,3222,3222,3157,3154,3219,2569,3222,3219,2327,2226,3223,3224,2224,3223,3162,3161,3224,3224,3161,3158,3221,2224,3224,3221,2222,2555,3225,3226,2570,3225,3166,3165,3226,3226,3165,3162,3223,2570,3226,3223,2226,2557,3227,3228,2556,3227,3170,3169,3228,3228,3169,3166,3225,2556,3228,3225,2555,2266,2265,2405,2271,2266,2271,2270,2268,3229,2934,2933,2796,3229,2796,2795,3230,2438,2312,2317,2449,2438,2449,2080,2079,2428,2083,2082,2436,2428,2436,2260,2259,3231,2437,2082,2081,3231,2081,2080,2448,3232,2450,2317,2316,3232,2316,2315,2457,3233,2420,2262,2261,3233,2261,2260,2435,2454,2108,2320,2458,2454,2458,2315,2314,2412,2257,2262,2419,2412,2419,2273,2089,3234,2459,2320,2319,3234,2319,2318,2470,3235,2407,2275,2274,3235,2274,2273,2418,2464,2303,2308,2471,2464,2471,2318,2110,2401,2087,2275,2406,2401,2406,2405,2265,3236,2472,2308,2307,3236,2307,2306,2487,2480,2104,2103,2488,2480,2488,2306,2305,3237,2489,2103,2102,3237,2102,2101,2500,2490,2353,2358,2501,2490,2501,2101,2100,3238,2502,2358,2357,3238,2357,2356,2509,2506,2129,2361,2510,2506,2510,2356,2355,3239,2511,2361,2360,3239,2360,2359,2522,2516,2344,2349,2523,2516,2523,2359,2131,3240,2524,2349,2348,3240,2348,2347,2539,2532,2125,2124,2540,2532,2540,2347,2346,3241,2541,2124,2123,3241,2123,2122,2552,2542,2387,2391,2553,2542,2553,2122,2121,3242,2554,2391,2390,3242,2390,2389,2393,2148,2147,2384,2394,2148,2394,2389,2151,3243,2395,2384,2383,3243,2383,2143,2142,2376,2375,2145,2144,2376,2144,2143,2379,3244,2913,2674,2673,3244,2673,2672,3245,3246,2675,2674,2912,3246,2912,2911,2921,3247,2919,2918,2922,3247,2922,2911,2910,3248,2923,2918,2917,3248,2917,2916,3022,3249,2657,2656,3023,3249,3023,2916,2915,3250,3024,2656,2655,3250,2655,2654,3014,3251,2880,2879,3015,3251,3015,2654,2653,3252,3016,2879,2878,3252,2878,2877,3004,3253,2894,2893,3005,3253,3005,2877,2876,3254,3006,2893,2892,3254,2892,2891, -2996,3255,2888,2887,2997,3255,2997,2891,2890,3256,2998,2887,2886,3256,2886,2885,2990,3257,2636,2635,2991,3257,2991,2885,2884,3258,2992,2635,2634,3258,2634,2633,2982,3259,2836,2835,2983,3259,2983,2633,2632,3260,2984,2835,2834,3260,2834,2833,2972,3261,2850,2849,2973,3261,2973,2833,2832,3262,2974,2849,2848,3262,2848,2847,2964,3263,2844,2843,2965,3263,2965,2847,2846,3264,2966,2843,2842,3264,2842,2841,2958,3265,2615,2614,2959,3265,2959,2841,2840,3266,2960,2614,2613,3266,2613,2612,2950,3267,2789,2788,2951,3267,2951,2612,2611,3268,2952,2788,2787,3268,2787,2786,2940,3269,2803,2802,2941,3269,2941,2786,2785,3270,2942,2802,2801,3270,2801,2800,2931,3271,3272,2933,2932,3271,2932,2800,2799,3273,2037,3274,3275,3274,2037,2033,2411,3274,2411,2408,2409,3276,3275,3274,2409,3025,2577,3277,3278,2424,2040,2038,3279,3279,2038,2037,3273,2433,2173,2171,3280,3280,2171,2170,2421,2446,2250,2248,3281,3281,2248,2247,2430,2463,2244,2242,3282,3282,2242,2241,2443,2476,2049,2047,3283,3283,2047,2046,2460,2485,2194,2192,3284,3284,2192,2191,2473,2498,2296,2294,3285,3285,2294,2293,2482,2515,2290,2288,3286,3286,2288,2287,2495,2528,2058,2056,3287,3287,2056,2055,2512,2537,2215,2213,3288,3288,2213,2212,2525,2550,2337,2335,3289,3289,2335,2334,2534,2068,2066,2331,3290,3290,2331,2330,2547,2374,2229,2228,3291,3291,2228,2061,2060,3292,2370,2369,3293,3293,2369,2368,2371,2899,2902,2664,2896,2753,2600,2599,2752,2860,3020,2861,2859,2864,3012,2866,2863,2739,3008,2741,2738,2591,3000,2593,2589,2815,2988,2817,2814,2820,2980,2822,2819,2719,2976,2721,2718,2583,2968,2585,2581,2766,2956,2768,2765,2771,2948,2773,2770,2699,2944,2701,2698,2575,3277,2577,2573,2910,2909,3294,3247,2909,2913,3295,3294,3294,3295,2908,3296,3247,3294,3296,2919,2872,3297,3298,3299,3297,2880,3251,3298,3298,3251,2653,2652,3299,3298,2652,2657,2663,3300,3301,3302,3300,2888,3255,3301,3301,3255,2890,2889,3302,3301,2889,2894,2828,3303,3304,3305,3303,2836,3259,3304,3304,3259,2632,2631,3305,3304,2631,2636,2642,3306,3307,3308,3306,2844,3263,3307,3307,3263,2846,2845,3308,3307,2845,2850,2779,3309,3310,3311,3309, -2789,3267,3310,3310,3267,2611,2610,3311,3310,2610,2615,3312,3313,3314,3315,3313,3272,3271,3314,3314,3271,2799,2798,3315,3314,2798,2803,2904,2903,3316,3317,2903,2908,3295,3316,3316,3295,2913,3244,3317,3316,3244,3245,2868,3318,3319,3320,3318,2915,2914,3319,3319,2914,2919,3296,3320,3319,3296,2908,2657,3249,3321,3299,3249,2915,3318,3321,3321,3318,2868,2867,3299,3321,2867,2872,2659,3322,3323,2873,3322,2876,2875,3323,3323,2875,2880,3297,2873,3323,3297,2872,2894,3253,3324,3302,3253,2876,3322,3324,3324,3322,2659,2658,3302,3324,2658,2663,2824,3325,3326,2881,3325,2884,2883,3326,3326,2883,2888,3300,2881,3326,3300,2663,2636,3257,3327,3305,3257,2884,3325,3327,3327,3325,2824,2823,3305,3327,2823,2828,2638,3328,3329,2829,3328,2832,2831,3329,3329,2831,2836,3303,2829,3329,3303,2828,2850,3261,3330,3308,3261,2832,3328,3330,3330,3328,2638,2637,3308,3330,2637,2642,2775,3331,3332,2837,3331,2840,2839,3332,3332,2839,2844,3306,2837,3332,3306,2642,2615,3265,3333,3311,3265,2840,3331,3333,3333,3331,2775,2774,3311,3333,2774,2779,2783,3334,3335,2780,3334,2785,2784,3335,3335,2784,2789,3309,2780,3335,3309,2779,2803,3269,3336,3315,3269,2785,3334,3336,3336,3334,2783,3337,3315,3336,3337,3312,3337,2783,2782,3338,3337,3338,3339,3312,3340,3341,3342,3343,3341,1313,2677,3342,3342,2677,2681,3344,3343,3342,3344,3345,1997,1995,3346,3347,1995,1250,2617,3346,3346,2617,2621,3348,3347,3346,3348,3349,2001,1999,3350,3351,1999,1997,3347,3350,3350,3347,3349,3352,3351,3350,3352,3353,2005,2003,3354,3355,2003,2001,3351,3354,3354,3351,3353,3356,3355,3354,3356,3357,2009,2007,3358,3359,2007,2005,3355,3358,3358,3355,3357,3360,3359,3358,3360,3361,2013,2011,3362,3363,2011,2009,3359,3362,3362,3359,3361,3364,3363,3362,3364,3365,2017,2015,3366,3367,2015,2013,3363,3366,3366,3363,3365,3368,3367,3366,3368,3369,2021,2019,3370,3371,2019,2017,3367,3370,3370,3367,3369,3372,3371,3370,3372,3373,2025,2023,3374,3375,2023,2021,3371,3374,3374,3371,3373,3376,3375,3374,3376,3377,2029,2027,3378,3379,2027,2025,3375,3378,3378,3375,3377,3380,3379,3378,3380,3381,1309,2031,3382,2678,2031,2029,3379, -3382,3382,3379,3381,3383,2678,3382,3383,2679,3320,2908,2907,3384,3320,3384,2869,2868,3272,3313,3385,3386,3313,3312,3339,3385,2791,1411,1419,2794,2791,2794,2797,2792,2268,897,896,2267,2907,2906,3344,2681,2906,2905,3345,3344,2270,902,897,2268,2271,2405,2404,2272,1051,3387,3276,2409,2154,2153,2400,2399,1698,3388,3174,3059,3388,1034,2397,3174,3064,3062,3061,3060,3062,2682,2927,3061,2682,2685,2928,2927,2685,2578,2929,2928,1539,2925,2936,1551,3025,3278,2935,2936,2795,1418,3389,3230,2796,2933,3272,2797,2797,3272,3386,2792,3386,3385,2793,2792,3385,3339,2619,2793,3339,3338,2620,2619,3338,2782,2621,2620,2782,2781,3348,2621,2781,2778,3349,3348,2778,2777,3352,3349,2777,2776,3353,3352,2776,2838,3356,3353,2838,2641,3357,3356,2641,2640,3360,3357,2640,2639,3361,3360,2639,2830,3364,3361,2830,2827,3365,3364,2827,2826,3368,3365,2826,2825,3369,3368,2825,2882,3372,3369,2882,2662,3373,3372,2662,2661,3376,3373,2661,2660,3377,3376,2660,2874,3380,3377,2874,2871,3381,3380,2871,2870,3383,3381,2870,2869,2679,3383,2869,3384,2680,2679,3384,2907,2681,2680,900,1042,1041,899,1313,3341,1993,1314,3341,3340,1994,1993,898,897,902,901,905,1043,1046,906,3387,1051,1050,1917,785,788,1037,1036,1034,3388,1816,1035,3388,1698,1701,1816,1318,1705,1702,1543,1705,1709,1703,1702,1322,1319,1542,1541,1319,1318,1543,1542,1540,1539,1551,1550,1554,1947,1665,1553,1872,3389,1418,1417,1421,1913,1548,1422,1416,1913,1421,1199,3390,3391,1001,3390,3392,3393,3391,3391,3393,3394,3395,997,1001,3391,3395,3396,1303,1306,3397,3396,3397,3398,3399,3400,3401,3402,3403,3400,3403,3404,3405,3403,3402,1303,3396,1515,1518,3406,3407,1671,1670,3408,3409,1670,1508,3410,3408,3408,3410,3411,3412,3409,3408,3412,3413,1812,1811,3414,3415,1811,1671,3409,3414,3414,3409,3413,3416,3415,3414,3416,3417,1199,1870,3418,3390,1870,1812,3415,3418,3418,3415,3417,3419,3390,3418,3419,3392,3398,3397,3420,3421,3397,1306,3422,3420,3403,3396,3399,3404,1887,1971,3423,3424,1971,1515,3407,3423,3425,3406,1518,1994,3426,3427,3428,3429,2366,2362,3426,3429,3426,2362,2365,3430,3427,3426,3430,3431,3430,2365,2370,3431,3430, -2370,3292,3432,2672,2671,3433,3432,3433,3434,3435,3436,3437,3438,3439,3438,3440,3441,3439,3433,3439,3441,3434,2905,2904,3442,3443,2898,3031,3444,3445,3031,3030,3446,3444,3444,3446,3447,3448,3445,3444,3448,3449,3030,3171,3450,3446,3171,3170,3451,3450,3450,3451,3452,3453,3446,3450,3453,3447,3170,3227,3454,3451,3227,2557,3455,3454,3454,3455,3456,3457,3451,3454,3457,3452,3458,3459,3245,2672,3433,2671,3436,3439,3442,2904,3317,3460,3317,3245,3459,3460,3340,3343,3461,3462,3463,3461,3343,3345,3345,2905,3443,3463,1994,3340,3462,3425,3464,2375,2378,3465,3466,3467,3404,3399,3421,3466,3399,3398,3468,3469,3435,3434,3470,3468,3434,3441,1010,773,3471,3472,3471,773,776,3473,1931,1002,3474,3475,1002,998,3474,3474,998,997,3395,3475,3474,3395,3394,3476,1011,1010,3472,3477,2145,2375,3464,2146,2145,3477,3478,3456,3455,3429,3428,3455,2557,2366,3429,3458,2672,3432,3479,3432,3435,3469,3479,1306,1887,3424,3422,3480,3481,3482,3483,3481,3484,3485,3482,3482,3485,3486,3487,3483,3482,3487,3488,3489,3490,3491,3492,3491,3493,3494,3492,3493,3491,3495,3496,3491,3490,3497,3495,3495,3497,3498,3499,3500,3496,3495,3499,3501,3502,3503,3504,3502,3505,3506,3503,3503,3506,3507,3508,3509,3504,3503,3508,3510,3511,3508,3507,3511,3512,3509,3508,3513,3514,3499,3498,3514,3515,3500,3499,3516,3517,3518,3519,3517,3520,3521,3518,3522,3523,3524,3525,3523,3526,3527,3524,3528,3529,3530,3531,3529,3532,3533,3530,3534,3535,3536,3537,3538,3539,3540,3541,3539,3542,3543,3540,3540,3543,3544,3545,3541,3540,3545,3546,3547,3548,3549,3550,3548,3551,3552,3549,3553,3554,3555,3556,3553,3556,3557,3558,3559,3560,3561,3562,3560,3563,3564,3561,3561,3564,3565,3566,3562,3561,3566,3567,3568,3569,3570,3571,3569,3572,3573,3570,3574,3575,3576,3577,3574,3577,3578,3579,3580,3581,3582,3583,3581,3584,3585,3582,3582,3585,3586,3587,3583,3582,3587,3588,3589,3590,3591,3592,3590,3593,3594,3591,3595,3596,3597,3598,3595,3598,3599,3600,3601,3602,3603,3604,3602,3605,3606,3603,3607,3608,3609,3610,3608,3611,3612,3609,3613,3614,3615,3616,3613,3616,3617,3618,3619,3620,3621,3622,3620,3623,3624,3621,3621,3624, -3625,3626,3622,3621,3626,3627,3628,3629,3630,3631,3629,3632,3633,3630,3630,3633,3634,3635,3631,3630,3635,3636,3637,3638,3639,3640,3638,3641,3642,3639,3643,3644,3645,3646,3644,3647,3648,3645,3645,3648,3649,3650,3646,3645,3650,3651,3652,3653,3654,3655,3653,3656,3657,3654,3654,3657,3658,3659,3655,3654,3659,3660,3661,3662,3663,3664,3662,3665,3666,3663,3667,3668,3669,3670,3668,3671,3672,3669,3669,3672,3673,3674,3670,3669,3674,3675,3676,3677,3678,3679,3677,3680,3681,3678,3678,3681,3682,3683,3679,3678,3683,3684,3685,3686,3687,3688,3686,3689,3690,3687,3691,3692,3693,3694,3695,3696,3697,3698,3696,3699,3700,3697,3697,3700,3606,3701,3698,3697,3701,3692,3693,3702,3703,3535,3702,3605,3704,3703,3705,3706,3707,3708,3706,3709,3710,3707,3707,3710,3711,3712,3708,3707,3712,3713,3714,3715,3716,3717,3715,3718,3719,3716,3720,3721,3722,3723,3721,3724,3725,3722,3726,3727,3551,3548,3726,3548,3547,3728,3729,3730,3731,3732,3729,3732,3733,3734,3733,3732,3735,3736,3732,3731,3737,3735,3738,3739,3740,3741,3738,3741,3742,3743,3744,3745,3746,3747,3744,3747,3748,3749,3557,3556,3750,3751,3556,3555,3752,3750,3753,3754,3755,3756,3754,3757,3758,3755,3755,3758,3759,3760,3756,3755,3760,3761,3762,3763,3764,3765,3763,3766,3767,3764,3768,3769,3770,3771,3769,3772,3773,3770,3774,3775,3572,3569,3774,3569,3568,3776,3777,3778,3779,3780,3777,3780,3781,3782,3781,3780,3783,3784,3780,3779,3785,3783,3786,3787,3788,3789,3786,3789,3790,3791,3790,3789,3792,3793,3789,3788,3794,3792,3578,3577,3795,3796,3577,3576,3797,3795,3798,3799,3800,3801,3799,3802,3803,3800,3800,3803,3691,3804,3801,3800,3804,3805,3806,3807,3808,3809,3807,3694,3534,3808,3810,3811,3812,3813,3811,3814,3815,3812,3816,3817,3593,3590,3816,3590,3589,3818,3819,3820,3821,3822,3819,3822,3823,3824,3823,3822,3825,3826,3822,3821,3827,3825,3828,3829,3830,3831,3828,3831,3832,3833,3832,3831,3834,3835,3831,3830,3836,3834,3599,3598,3837,3838,3598,3597,3839,3837,3840,3841,3842,3843,3841,3601,3604,3842,3601,3841,3844,3845,3841,3840,3846,3844,3847,3848,3849,3845,3848,3850,3704,3849,3851,3852,3853,3854,3851,3854,3855,3856, -3856,3855,3857,3858,3857,3615,3614,3858,3856,3858,3859,3610,3858,3614,3860,3859,3617,3861,3862,3618,3618,3862,3863,3864,3865,3866,3867,3864,3866,3868,3860,3867,3869,3870,3871,3872,3870,3873,3874,3871,3871,3874,3875,3876,3872,3871,3876,3877,3878,3555,3554,3879,3878,3879,3880,3881,3882,3883,3884,3885,3883,3886,3752,3884,3887,3888,3889,3890,3887,3890,3891,3892,3893,3731,3730,3894,3893,3894,3558,3557,3637,3895,3896,3636,3895,3520,3625,3896,3897,3898,3899,3751,3898,3900,3737,3899,3901,3902,3903,3640,3902,3904,3521,3903,3720,3905,3906,3546,3905,3641,3634,3906,3907,3551,3727,3908,3907,3908,3734,3733,3909,3910,3911,3723,3910,3912,3642,3911,3913,3914,3915,3736,3914,3916,3552,3915,3917,3788,3787,3918,3917,3918,3728,3547,3714,3919,3920,3713,3919,3724,3544,3920,3921,3922,3923,3717,3922,3924,3725,3923,3925,3926,3927,3550,3926,3928,3794,3927,3522,3929,3930,3651,3929,3718,3711,3930,3931,3576,3575,3932,3931,3932,3791,3790,3933,3934,3935,3793,3934,3936,3797,3935,3937,3938,3939,3525,3938,3940,3719,3939,3941,3779,3778,3942,3941,3942,3579,3578,3661,3943,3944,3660,3943,3526,3649,3944,3945,3946,3947,3796,3946,3948,3785,3947,3949,3950,3951,3664,3950,3952,3527,3951,3768,3953,3954,3567,3953,3665,3658,3954,3955,3572,3775,3956,3955,3956,3782,3781,3957,3958,3959,3771,3958,3960,3666,3959,3961,3962,3963,3784,3962,3964,3573,3963,3965,3830,3829,3966,3965,3966,3776,3568,3762,3967,3968,3761,3967,3772,3565,3968,3969,3970,3971,3765,3970,3972,3773,3971,3973,3974,3975,3571,3974,3976,3836,3975,3528,3977,3978,3675,3977,3766,3759,3978,3979,3597,3596,3980,3979,3980,3833,3832,3981,3982,3983,3835,3982,3984,3839,3983,3981,3985,3986,3987,3985,3976,3988,3986,3989,3821,3820,3990,3989,3990,3600,3599,3685,3991,3992,3684,3991,3532,3673,3992,3993,3994,3995,3838,3994,3996,3827,3995,3997,3998,3999,3688,3998,4000,3533,3999,3810,4001,4002,3588,4001,3689,3682,4002,4003,3593,3817,4004,4003,4004,3824,3823,4005,4006,4007,3813,4006,4008,3690,4007,4009,4010,4011,3826,4010,4012,3594,4011,4013,3862,3861,4014,4013,4014,3818,3589,3806,4015,4016,3805,4015,3814,3586,4016,4017,4018, -4019,3809,4018,4020,3815,4019,4021,4022,4023,3592,4022,4024,3863,4023,4025,3627,3516,4026,4025,4026,3891,3877,4027,4028,4029,4030,4028,4031,4032,4029,4029,4032,3843,3842,4030,4029,3842,3604,3632,4033,4034,3633,4033,3538,3541,4034,4034,3541,3546,3906,3633,4034,3906,3634,3542,4035,4036,3543,4035,3705,3708,4036,4036,3708,3713,3920,3543,4036,3920,3544,3544,3724,3721,3545,3721,3720,3546,3545,3634,3641,3638,3635,3638,3637,3636,3635,3711,3718,3715,3712,3715,3714,3713,3712,3623,4037,4038,3624,4037,3628,3631,4038,4038,3631,3636,3896,3624,4038,3896,3625,3709,4039,4040,3710,4039,3643,3646,4040,4040,3646,3651,3930,3710,4040,3930,3711,3625,3520,3517,3626,3517,3516,3627,3626,3649,3526,3523,3650,3523,3522,3651,3650,3647,4041,4042,3648,4041,3652,3655,4042,4042,3655,3660,3944,3648,4042,3944,3649,3658,3665,3662,3659,3662,3661,3660,3659,3656,4043,4044,3657,4043,3559,3562,4044,4044,3562,3567,3954,3657,4044,3954,3658,3565,3772,3769,3566,3769,3768,3567,3566,3563,4045,4046,3564,4045,3753,3756,4046,4046,3756,3761,3968,3564,4046,3968,3565,3759,3766,3763,3760,3763,3762,3761,3760,3757,4047,4048,3758,4047,3667,3670,4048,4048,3670,3675,3978,3758,4048,3978,3759,3673,3532,3529,3674,3529,3528,3675,3674,3671,4049,4050,3672,4049,3676,3679,4050,4050,3679,3684,3992,3672,4050,3992,3673,3682,3689,3686,3683,3686,3685,3684,3683,3680,4051,4052,3681,4051,3580,3583,4052,4052,3583,3588,4002,3681,4052,4002,3682,3586,3814,3811,3587,3811,3810,3588,3587,3584,4053,4054,3585,4053,3798,3801,4054,4054,3801,3805,4016,3585,4054,4016,3586,3691,3694,3807,3804,3807,3806,3805,3804,3803,3802,3695,3698,3803,3698,3692,3691,3606,3605,3702,3701,3702,3693,3692,3701,3699,4055,4056,3700,4055,4027,4030,4056,4056,4030,3604,3603,3700,4056,3603,3606,4057,4058,4059,4060,4058,4061,4062,4059,4063,4064,4065,4066,4064,4067,4068,4065,4069,4070,4071,4072,4070,4073,4074,4071,4075,4076,4077,4078,4079,4080,4081,4082,4080,4083,4084,4081,4081,4084,4085,4086,4082,4081,4086,4087,4088,4089,4090,4091,4089,4092,4093,4090,4094,4095,4096,4097,4095,4098,4099,4096,4096,4099,4100,4101,4097,4096,4101,4102, -4103,4104,4105,4106,4104,4107,4108,4105,4105,4108,4109,4110,4106,4105,4110,4111,4112,4113,4114,4115,4113,4116,4117,4114,4118,4119,4120,4121,4119,4122,4123,4120,4120,4123,4124,4125,4121,4120,4125,4126,4127,4128,4129,4130,4128,4131,4132,4129,4129,4132,4133,4134,4130,4129,4134,4135,4136,4137,4138,4139,4137,4140,4141,4138,4142,4143,4144,4145,4143,4146,4147,4144,4144,4147,4148,4149,4145,4144,4149,4150,4151,4152,4153,4154,4151,4154,4155,4156,4157,4158,4159,4160,4158,4161,4162,4159,4163,4164,4165,4166,4164,4167,4168,4165,4165,4168,4169,4170,4166,4165,4170,4171,4172,4173,4174,4175,4173,4176,4177,4174,4174,4177,4178,4179,4175,4174,4179,4180,4181,4182,4183,4184,4182,4185,4186,4183,4187,4188,4189,4190,4188,4191,4192,4189,4189,4192,4193,4194,4190,4189,4194,4195,4196,4197,4198,4199,4197,4200,4201,4198,4198,4201,4202,4203,4199,4198,4203,4204,4205,4206,4207,4208,4206,4209,4210,4207,4211,4212,4213,4214,4212,4215,4216,4213,4213,4216,4217,4218,4214,4213,4218,4219,4220,4221,4222,4223,4221,4224,4225,4222,4222,4225,4226,4227,4223,4222,4227,4228,4229,4230,4231,4232,4230,4233,4234,4231,4235,4236,4237,4238,4239,4240,4241,4242,4240,4235,4243,4241,4241,4243,4155,4244,4242,4241,4244,4245,4156,4246,4247,4248,4246,4238,4077,4247,4249,4250,4251,4252,4250,4253,4254,4251,4251,4254,4255,4256,4252,4251,4256,4257,4258,4259,4260,4261,4259,4262,4263,4260,4264,4265,4266,4267,4265,4268,4269,4266,4270,4271,4272,4273,4271,4274,4275,4272,4272,4275,4276,4277,4273,4272,4277,4278,4274,4279,4280,4275,4279,4281,4282,4280,4280,4282,4100,4283,4275,4280,4283,4276,4284,4285,4286,4287,4285,4288,4289,4286,4094,4097,4290,4291,4097,4102,4292,4290,4290,4292,4293,4294,4291,4290,4294,4295,4296,4295,4294,4297,4297,4294,4293,4298,4299,4297,4298,4300,4301,4302,4303,4304,4302,4305,4306,4303,4307,4308,4309,4310,4308,4311,4312,4309,4309,4312,4313,4314,4310,4309,4314,4315,4316,4317,4318,4319,4317,4320,4321,4318,4322,4323,4324,4325,4323,4326,4327,4324,4328,4329,4330,4331,4329,4332,4333,4330,4330,4333,4334,4335,4331,4330,4335,4336,4332,4337,4338,4333,4337,4118,4121,4338,4338,4121, -4126,4339,4333,4338,4339,4334,4340,4341,4342,4343,4341,4344,4345,4342,4122,4346,4347,4123,4346,4270,4273,4347,4347,4273,4278,4348,4123,4347,4348,4124,4349,4350,4351,4352,4350,4353,4354,4351,4355,4356,4357,4358,4356,4359,4360,4357,4361,4362,4363,4364,4362,4365,4366,4363,4363,4366,4236,4367,4364,4363,4367,4368,4237,4369,4370,4078,4369,4371,4372,4370,4373,4374,4375,4376,4374,4377,4378,4375,3480,4379,4380,4381,4379,3494,4382,4380,4380,4382,4383,4384,4381,4380,4384,4385,4383,4386,4387,4384,4386,4142,4145,4387,4387,4145,4150,4388,4384,4387,4388,4385,4389,4390,4391,4392,4390,4393,4394,4391,4146,4395,4396,4147,4395,4328,4331,4396,4396,4331,4336,4397,4147,4396,4397,4148,4398,4399,4400,4401,4399,4402,4403,4400,4404,4405,4406,4407,4405,4408,4409,4406,4410,4411,4412,4413,4410,4413,4153,4152,4411,4410,4414,4415,4410,4152,4416,4414,4417,4418,4419,4248,4418,4420,4416,4419,4421,4422,4423,4424,4422,4425,4426,4423,4427,4428,4429,4430,4424,4431,4432,4433,4432,4434,4430,4433,4435,4436,4437,4438,4436,4439,4440,4437,4437,4440,4441,4442,4438,4437,4442,4443,4304,4444,4445,4446,4445,4447,4448,4446,4449,4450,4451,4452,4449,4452,4453,4454,4455,4185,4176,4456,4455,4456,4169,4057,4287,4457,4458,4459,4458,4460,4306,4459,4461,4462,4463,4060,4462,4464,4186,4463,4465,4268,4083,4466,4465,4466,4178,4181,4467,4468,4469,4184,4468,4470,4269,4469,4091,4471,4472,4473,4472,4474,4289,4473,4475,4262,4253,4476,4475,4476,4085,4264,4477,4478,4479,4267,4478,4480,4263,4479,4352,4481,4482,4483,4482,4484,4093,4483,4485,4067,4191,4486,4485,4486,4255,4258,4358,4487,4488,4489,4488,4490,4354,4489,4491,4492,4493,4261,4492,4494,4068,4493,4495,4209,4200,4496,4495,4496,4193,4063,4343,4497,4498,4499,4498,4500,4360,4499,4501,4502,4503,4066,4502,4504,4210,4503,4505,4326,4107,4506,4505,4506,4202,4205,4507,4508,4509,4208,4508,4510,4327,4509,4115,4511,4512,4513,4512,4514,4345,4513,4515,4320,4311,4516,4515,4516,4109,4322,4517,4518,4519,4325,4518,4520,4321,4519,4401,4521,4522,4523,4522,4524,4117,4523,4525,4073,4215,4526,4525,4526,4313,4316,4407,4527,4528,4529,4528,4530,4403,4529, -4531,4532,4533,4319,4532,4534,4074,4533,4535,4233,4224,4536,4535,4536,4217,4069,4392,4537,4538,4539,4538,4540,4409,4539,4541,4542,4543,4072,4542,4544,4234,4543,4545,4377,4131,4546,4545,4546,4226,4229,4547,4548,4549,4232,4548,4550,4378,4549,4139,4551,4552,4553,4552,4554,4394,4553,4555,4371,4365,4556,4555,4556,4133,4373,4557,4558,4559,4376,4558,4560,4372,4559,4427,4561,4562,4563,4562,4564,4141,4563,4565,4061,4167,4566,4565,4566,4441,4567,4568,4569,4570,4571,4569,4153,4413,4570,4570,4413,4412,4572,4571,4570,4572,4573,4180,4179,4574,4575,4179,4178,4466,4574,4574,4466,4083,4080,4575,4574,4080,4079,4087,4086,4576,4577,4086,4085,4476,4576,4576,4476,4253,4250,4577,4576,4250,4249,4265,4264,4085,4084,4265,4084,4083,4268,4182,4181,4178,4177,4182,4177,4176,4185,4259,4258,4255,4254,4259,4254,4253,4262,4171,4170,4578,4579,4170,4169,4456,4578,4578,4456,4176,4173,4579,4578,4173,4172,4257,4256,4580,4581,4256,4255,4486,4580,4580,4486,4191,4188,4581,4580,4188,4187,4058,4057,4169,4168,4058,4168,4167,4061,4064,4063,4193,4192,4064,4192,4191,4067,4195,4194,4582,4583,4194,4193,4496,4582,4582,4496,4200,4197,4583,4582,4197,4196,4206,4205,4202,4201,4206,4201,4200,4209,4204,4203,4584,4585,4203,4202,4506,4584,4584,4506,4107,4104,4585,4584,4104,4103,4323,4322,4109,4108,4323,4108,4107,4326,4111,4110,4586,4587,4110,4109,4516,4586,4586,4516,4311,4308,4587,4586,4308,4307,4317,4316,4313,4312,4317,4312,4311,4320,4315,4314,4588,4589,4314,4313,4526,4588,4588,4526,4215,4212,4589,4588,4212,4211,4070,4069,4217,4216,4070,4216,4215,4073,4219,4218,4590,4591,4218,4217,4536,4590,4590,4536,4224,4221,4591,4590,4221,4220,4230,4229,4226,4225,4230,4225,4224,4233,4228,4227,4592,4593,4227,4226,4546,4592,4592,4546,4131,4128,4593,4592,4128,4127,4374,4373,4133,4132,4374,4132,4131,4377,4135,4134,4594,4595,4134,4133,4556,4594,4594,4556,4365,4362,4595,4594,4362,4361,4369,4237,4236,4366,4369,4366,4365,4371,4368,4367,4240,4239,4367,4236,4235,4240,4246,4156,4155,4243,4246,4243,4235,4238,4245,4244,4596,4597,4244,4155,4154,4596,4596,4154,4153,4569,4597,4596,4569,4568,4598,4599, -4600,4601,4599,4435,4438,4600,4600,4438,4443,4602,4601,4600,4602,4603,4163,4166,4604,4605,4166,4171,4606,4604,4604,4606,4607,4608,4605,4604,4608,4609,4171,4579,4610,4606,4579,4172,4611,4610,4610,4611,4612,4613,4606,4610,4613,4607,4172,4175,4614,4611,4175,4180,4615,4614,4614,4615,4616,4617,4611,4614,4617,4612,4180,4575,4618,4615,4575,4079,4619,4618,4618,4619,4620,4621,4615,4618,4621,4616,4079,4082,4622,4619,4082,4087,4623,4622,4622,4623,4624,4625,4619,4622,4625,4620,4087,4577,4626,4623,4577,4249,4627,4626,4626,4627,4628,4629,4623,4626,4629,4624,4249,4252,4630,4627,4252,4257,4631,4630,4630,4631,4632,4633,4627,4630,4633,4628,4257,4581,4634,4631,4581,4187,4635,4634,4634,4635,4636,4637,4631,4634,4637,4632,4187,4190,4638,4635,4190,4195,4639,4638,4638,4639,4640,4641,4635,4638,4641,4636,4195,4583,4642,4639,4583,4196,4643,4642,4642,4643,4644,4645,4639,4642,4645,4640,4196,4199,4646,4643,4199,4204,4647,4646,4646,4647,4648,4649,4643,4646,4649,4644,4204,4585,4650,4647,4585,4103,4651,4650,4650,4651,4652,4653,4647,4650,4653,4648,4103,4106,4654,4651,4106,4111,4655,4654,4654,4655,4656,4657,4651,4654,4657,4652,4111,4587,4658,4655,4587,4307,4659,4658,4658,4659,4660,4661,4655,4658,4661,4656,4307,4310,4662,4659,4310,4315,4663,4662,4662,4663,4664,4665,4659,4662,4665,4660,4315,4589,4666,4663,4589,4211,4667,4666,4666,4667,4668,4669,4663,4666,4669,4664,4211,4214,4670,4667,4214,4219,4671,4670,4670,4671,4672,4673,4667,4670,4673,4668,4219,4591,4674,4671,4591,4220,4675,4674,4674,4675,4676,4677,4671,4674,4677,4672,4220,4223,4678,4675,4223,4228,4679,4678,4678,4679,4680,4681,4675,4678,4681,4676,4228,4593,4682,4679,4593,4127,4683,4682,4682,4683,4684,4685,4679,4682,4685,4680,4127,4130,4686,4683,4130,4135,4687,4686,4686,4687,4688,4689,4683,4686,4689,4684,4135,4595,4690,4687,4595,4361,4691,4690,4690,4691,4692,4693,4687,4690,4693,4688,4361,4364,4694,4691,4364,4368,4695,4694,4694,4695,4696,4697,4691,4694,4697,4692,4695,4368,4239,4698,4695,4698,4699,4696,4239,4242,4700,4698,4242,4245,4701,4700,4700,4701,4702,4703,4698,4700,4703,4699,4245,4597,4704,4701, -4597,4568,4705,4704,4704,4705,4706,4707,4701,4704,4707,4702,4568,4571,4708,4705,4571,4573,4709,4708,4708,4709,4710,4711,4705,4708,4711,4706,4609,4712,4713,4714,4712,3619,4715,4713,4713,4715,3875,4716,4714,4713,4716,4603,3623,3620,4717,4718,3620,3619,4712,4717,4717,4712,4609,4608,4718,4717,4608,4607,3628,4037,4719,4720,4037,3623,4718,4719,4719,4718,4607,4613,4720,4719,4613,4612,3632,3629,4721,4722,3629,3628,4720,4721,4721,4720,4612,4617,4722,4721,4617,4616,3538,4033,4723,4724,4033,3632,4722,4723,4723,4722,4616,4621,4724,4723,4621,4620,3542,3539,4725,4726,3539,3538,4724,4725,4725,4724,4620,4625,4726,4725,4625,4624,3705,4035,4727,4728,4035,3542,4726,4727,4727,4726,4624,4629,4728,4727,4629,4628,3709,3706,4729,4730,3706,3705,4728,4729,4729,4728,4628,4633,4730,4729,4633,4632,3643,4039,4731,4732,4039,3709,4730,4731,4731,4730,4632,4637,4732,4731,4637,4636,3647,3644,4733,4734,3644,3643,4732,4733,4733,4732,4636,4641,4734,4733,4641,4640,3652,4041,4735,4736,4041,3647,4734,4735,4735,4734,4640,4645,4736,4735,4645,4644,3656,3653,4737,4738,3653,3652,4736,4737,4737,4736,4644,4649,4738,4737,4649,4648,3559,4043,4739,4740,4043,3656,4738,4739,4739,4738,4648,4653,4740,4739,4653,4652,3563,3560,4741,4742,3560,3559,4740,4741,4741,4740,4652,4657,4742,4741,4657,4656,3753,4045,4743,4744,4045,3563,4742,4743,4743,4742,4656,4661,4744,4743,4661,4660,3757,3754,4745,4746,3754,3753,4744,4745,4745,4744,4660,4665,4746,4745,4665,4664,3667,4047,4747,4748,4047,3757,4746,4747,4747,4746,4664,4669,4748,4747,4669,4668,3671,3668,4749,4750,3668,3667,4748,4749,4749,4748,4668,4673,4750,4749,4673,4672,3676,4049,4751,4752,4049,3671,4750,4751,4751,4750,4672,4677,4752,4751,4677,4676,3680,3677,4753,4754,3677,3676,4752,4753,4753,4752,4676,4681,4754,4753,4681,4680,3580,4051,4755,4756,4051,3680,4754,4755,4755,4754,4680,4685,4756,4755,4685,4684,3584,3581,4757,4758,3581,3580,4756,4757,4757,4756,4684,4689,4758,4757,4689,4688,3798,4053,4759,4760,4053,3584,4758,4759,4759,4758,4688,4693,4760,4759,4693,4692,3802,3799,4761,4762,3799,3798,4760,4761,4761,4760,4692,4697,4762,4761, -4697,4696,4763,3695,3802,4762,4763,4762,4696,4699,3699,3696,4764,4765,3696,3695,4763,4764,4764,4763,4699,4703,4765,4764,4703,4702,4027,4055,4766,4767,4055,3699,4765,4766,4766,4765,4702,4707,4767,4766,4707,4706,4031,4028,4768,4769,4028,4027,4767,4768,4768,4767,4706,4711,4769,4768,4711,4710,4770,3885,3881,4771,4770,4771,3742,3749,4447,4772,4773,4448,4772,4300,4298,4773,3794,3788,3917,3927,3917,3547,3550,3927,3552,3551,3907,3915,3907,3733,3736,3915,3552,3916,4774,3549,4774,3925,3550,3549,3794,3928,4775,3792,4775,3933,3793,3792,3737,3900,4776,3735,4776,3913,3736,3735,3797,3576,3931,3935,3931,3790,3793,3935,3737,3731,3893,3899,3893,3557,3751,3899,3797,3936,4777,3795,4777,3945,3796,3795,3752,3886,4778,3750,4778,3897,3751,3750,3785,3779,3941,3947,3941,3578,3796,3947,3752,3555,3878,3884,3878,3881,3885,3884,3785,3948,4779,3783,4779,3961,3784,3783,3573,3572,3955,3963,3955,3781,3784,3963,3573,3964,4780,3570,4780,3973,3571,3570,3836,3830,3965,3975,3965,3568,3571,3975,3836,3976,3985,3834,3985,3981,3835,3834,3839,3597,3979,3983,3979,3832,3835,3983,3839,3984,4781,3837,4781,3993,3838,3837,3827,3821,3989,3995,3989,3599,3838,3995,3827,3996,4782,3825,4782,4009,3826,3825,3594,3593,4003,4011,4003,3823,3826,4011,3594,4012,4783,3591,4783,4021,3592,3591,3863,3862,4013,4023,4013,3589,3592,4023,4024,3865,3864,3863,3860,3614,3613,3867,3613,3618,3864,3867,3860,3868,4784,3859,4784,3607,3610,3859,3852,3851,3609,3612,3851,3856,3610,3609,4160,4159,4785,4786,4159,4162,4787,4785,4162,4788,4423,4426,4788,4431,4424,4423,4429,4789,4433,4430,4789,4421,4424,4433,4430,4434,4561,4427,4140,4790,4563,4141,4790,4428,4427,4563,4141,4564,4791,4138,4791,4551,4139,4138,4393,4792,4553,4394,4792,4136,4139,4553,4394,4554,4793,4391,4793,4537,4392,4391,4408,4794,4539,4409,4794,4389,4392,4539,4409,4540,4795,4406,4795,4527,4407,4406,4402,4796,4529,4403,4796,4404,4407,4529,4403,4530,4797,4400,4797,4521,4401,4400,4116,4798,4523,4117,4798,4398,4401,4523,4117,4524,4799,4114,4799,4511,4115,4114,4344,4800,4513,4345,4800,4112,4115,4513,4345,4514,4801,4342,4801,4497,4343,4342, -4359,4802,4499,4360,4802,4340,4343,4499,4360,4500,4803,4357,4803,4487,4358,4357,4353,4804,4489,4354,4804,4355,4358,4489,4354,4490,4805,4351,4805,4481,4352,4351,4092,4806,4483,4093,4806,4349,4352,4483,4093,4484,4807,4090,4807,4471,4091,4090,4288,4808,4473,4289,4808,4088,4091,4473,4289,4474,4809,4286,4809,4457,4287,4286,4305,4810,4459,4306,4810,4284,4287,4459,4306,4460,4811,4303,4811,4444,4304,4303,4812,4813,4446,4448,4813,4301,4304,4446,4814,3519,4815,4816,4814,4816,4817,3892,4818,4062,4061,4565,4818,4565,4567,4454,3521,3520,3895,3903,3895,3637,3640,3903,3521,3904,4819,3518,4819,4815,3519,3518,3642,3912,4820,3639,4820,3901,3640,3639,3642,3641,3905,3911,3905,3720,3723,3911,3725,3924,4821,3722,4821,3909,3723,3722,3725,3724,3919,3923,3919,3714,3717,3923,3719,3940,4822,3716,4822,3921,3717,3716,3719,3718,3929,3939,3929,3522,3525,3939,3527,3952,4823,3524,4823,3937,3525,3524,3527,3526,3943,3951,3943,3661,3664,3951,3666,3960,4824,3663,4824,3949,3664,3663,3666,3665,3953,3959,3953,3768,3771,3959,3773,3972,4825,3770,4825,3957,3771,3770,3773,3772,3967,3971,3967,3762,3765,3971,3767,4826,4827,3764,4827,3969,3765,3764,3767,3766,3977,4828,3977,3528,3531,4828,3533,4000,4829,3530,4829,4830,3531,3530,3533,3532,3991,3999,3991,3685,3688,3999,3690,4008,4831,3687,4831,3997,3688,3687,3690,3689,4001,4007,4001,3810,3813,4007,3815,4020,4832,3812,4832,4005,3813,3812,3815,3814,4015,4019,4015,3806,3809,4019,3534,3537,4833,3808,4833,4017,3809,3808,3693,3535,3534,3694,3704,3850,4834,3703,4834,3536,3535,3703,3704,3605,3602,3849,3602,3601,3845,3849,4835,4836,3844,3846,4836,3847,3845,3844,4416,4420,4837,4414,4837,4838,4415,4414,4416,4152,4151,4419,4151,4156,4248,4419,4077,4076,4839,4247,4839,4417,4248,4247,4077,4238,4237,4078,4372,4560,4840,4370,4840,4075,4078,4370,4372,4371,4555,4559,4555,4373,4376,4559,4378,4550,4841,4375,4841,4557,4376,4375,4378,4377,4545,4549,4545,4229,4232,4549,4234,4544,4842,4231,4842,4547,4232,4231,4234,4233,4535,4543,4535,4069,4072,4543,4074,4534,4843,4071,4843,4541,4072,4071,4074,4073,4525,4533,4525,4316,4319,4533,4321,4520, -4844,4318,4844,4531,4319,4318,4321,4320,4515,4519,4515,4322,4325,4519,4327,4510,4845,4324,4845,4517,4325,4324,4327,4326,4505,4509,4505,4205,4208,4509,4210,4504,4846,4207,4846,4507,4208,4207,4210,4209,4495,4503,4495,4063,4066,4503,4068,4494,4847,4065,4847,4501,4066,4065,4068,4067,4485,4493,4485,4258,4261,4493,4263,4480,4848,4260,4848,4491,4261,4260,4263,4262,4475,4479,4475,4264,4267,4479,4269,4470,4849,4266,4849,4477,4267,4266,4269,4268,4465,4469,4465,4181,4184,4469,4186,4464,4850,4183,4850,4467,4184,4183,4186,4185,4455,4463,4455,4057,4060,4463,4851,4852,4059,4062,4852,4461,4060,4059,4421,4789,4853,4422,4789,4429,4854,4853,4853,4854,4855,4856,4422,4853,4856,4425,4383,4857,4858,4859,4857,4140,4137,4858,4858,4137,4136,4792,4859,4858,4792,4393,4146,4860,4861,4862,4860,4408,4405,4861,4861,4405,4404,4796,4862,4861,4796,4402,4332,4863,4864,4865,4863,4116,4113,4864,4864,4113,4112,4800,4865,4864,4800,4344,4122,4866,4867,4868,4866,4359,4356,4867,4867,4356,4355,4804,4868,4867,4804,4353,4274,4869,4870,4871,4869,4092,4089,4870,4870,4089,4088,4808,4871,4870,4808,4288,4872,4873,4874,4875,4873,4305,4302,4874,4874,4302,4301,4813,4875,4874,4813,4812,4425,4856,4876,4877,4856,4855,3494,4876,4878,3494,4855,4854,4878,4854,4429,4428,4140,4857,4879,4790,4857,4383,4382,4879,4879,4382,3494,4878,4790,4879,4878,4428,4142,4386,4880,4881,4386,4383,4859,4880,4880,4859,4393,4390,4881,4880,4390,4389,4408,4860,4882,4794,4860,4146,4143,4882,4882,4143,4142,4881,4794,4882,4881,4389,4328,4395,4883,4884,4395,4146,4862,4883,4883,4862,4402,4399,4884,4883,4399,4398,4116,4863,4885,4798,4863,4332,4329,4885,4885,4329,4328,4884,4798,4885,4884,4398,4118,4337,4886,4887,4337,4332,4865,4886,4886,4865,4344,4341,4887,4886,4341,4340,4359,4866,4888,4802,4866,4122,4119,4888,4888,4119,4118,4887,4802,4888,4887,4340,4270,4346,4889,4890,4346,4122,4868,4889,4889,4868,4353,4350,4890,4889,4350,4349,4092,4869,4891,4806,4869,4274,4271,4891,4891,4271,4270,4890,4806,4891,4890,4349,4281,4279,4892,4893,4279,4274,4871,4892,4892,4871,4288,4285,4893,4892,4285,4284,4305,4873,4894,4810, -4873,4872,4895,4894,4894,4895,4281,4893,4810,4894,4893,4284,4281,4895,4896,4282,4895,4872,4897,4896,4896,4897,4102,4101,4282,4896,4101,4100,4098,4898,4899,4099,4898,4900,4901,4899,4899,4901,4276,4283,4099,4899,4283,4100,4900,4902,4903,4901,4902,4904,4905,4903,4903,4905,4278,4277,4901,4903,4277,4276,4904,4906,4907,4905,4906,4908,4909,4907,4907,4909,4124,4348,4905,4907,4348,4278,4908,4910,4911,4909,4910,4912,4913,4911,4911,4913,4126,4125,4909,4911,4125,4124,4912,4914,4915,4913,4914,4916,4917,4915,4915,4917,4334,4339,4913,4915,4339,4126,4916,4918,4919,4917,4918,4920,4921,4919,4919,4921,4336,4335,4917,4919,4335,4334,4920,4922,4923,4921,4922,4924,4925,4923,4923,4925,4148,4397,4921,4923,4397,4336,4150,4926,4927,4388,4926,4928,4929,4927,4927,4929,3480,4381,4388,4927,4381,4385,4930,4931,4932,4933,4930,4933,4934,4935,4936,4937,4938,4939,4936,4939,4940,4941,4942,4943,4944,4945,4942,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4953,4956,4957,4954,4954,4957,4958,4959,4955,4954,4959,4960,4961,4962,4963,4964,4961,4964,4965,4966,4967,4968,4969,4970,4968,4971,4972,4969,4973,4974,4975,4976,4974,4977,4978,4975,4975,4978,4979,4980,4976,4975,4980,4981,4982,4983,4984,4985,4982,4985,4986,4987,4988,4989,4990,4991,4989,4992,4993,4990,4994,4995,4996,4997,4995,4998,4999,4996,4996,4999,5000,5001,4997,4996,5001,5002,5003,5004,5005,5006,5003,5006,5007,5008,5009,5010,5011,5012,5010,5013,5014,5011,5015,5016,5017,5018,5015,5018,5019,5020,5021,5022,5023,5024,5021,5024,5025,5026,5027,5028,5029,5030,5028,5031,5032,5029,5033,5034,5035,5036,5034,5037,5038,5035,5035,5038,5039,5040,5036,5035,5040,5041,5042,5043,5044,5045,5043,5046,5047,5044,5044,5047,5048,5049,5045,5044,5049,5050,5051,5052,5053,5054,5051,5054,5055,5056,5057,5058,5059,5060,5058,5061,5062,5059,5059,5062,5063,5064,5060,5059,5064,5065,5066,5067,5068,5069,5067,5070,5071,5068,5068,5071,5072,5073,5069,5068,5073,5074,5075,5076,5077,5078,5075,5078,5079,5080,5081,5082,5083,5084,5082,5085,5086,5083,5083,5086,5087,5088,5084,5083,5088,5089,5090,5091,5092,5093,5091,5094,5095,5092,5092,5095, -5096,5097,5093,5092,5097,5098,5099,5100,5101,5102,5099,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5110,5108,5113,5111,5111,5113,5019,5114,5112,5111,5114,5115,5116,5107,4951,5117,5116,5117,5118,5020,5119,5120,5121,5122,5120,5123,5124,5121,5121,5124,5125,5126,5122,5121,5126,5127,5128,5129,5130,5131,5128,5131,5132,5133,5134,5135,5136,5137,5134,5137,5138,5139,5140,5141,4961,4966,5141,5142,4962,4961,5143,5144,5145,5146,5144,5147,5148,5145,5145,5148,5149,5150,5145,5150,5151,5146,5152,5153,5154,5155,5152,5155,5156,5157,5158,3746,3745,5159,5158,5159,5160,5161,4969,4972,5162,5163,4969,5163,5164,4970,5165,5166,5167,5168,5166,5169,5170,5167,5167,5170,5171,5172,5168,5167,5172,5173,5174,5175,5176,5177,5174,5177,5178,5179,5180,5181,5182,5183,5180,5183,5184,5185,5186,5187,4982,4987,5187,5188,4983,4982,5189,5190,5191,5192,5190,5193,5194,5191,5191,5194,5195,5196,5191,5196,5197,5192,5198,5199,5200,5201,5199,5202,5203,5200,5200,5203,5204,5205,5200,5205,5206,5201,4990,4993,5207,5208,4990,5208,5209,4991,5210,5211,5212,5213,5211,5214,5215,5212,5212,5215,5105,5216,5213,5212,5216,5217,5218,5219,5220,5221,5218,5221,4948,5106,5222,5223,5224,5225,5222,5225,5226,5227,5228,5229,5003,5008,5229,5230,5004,5003,5231,5232,5233,5234,5232,5235,5236,5233,5233,5236,5237,5238,5233,5238,5239,5234,5240,5241,5242,5243,5241,5244,5245,5242,5242,5245,5246,5247,5242,5247,5248,5243,5011,5014,5249,5250,5011,5250,5251,5012,5252,5253,5254,5255,5252,5255,5017,5016,5252,5016,5256,5257,5252,5257,5258,5253,5259,5260,5256,5261,5259,5261,5118,5262,5263,5264,5265,5266,5264,5267,5268,5265,5269,5268,5267,5270,5269,5270,5027,5030,5270,5267,5023,5271,5270,5271,5272,5027,5273,5032,5031,5274,5274,5031,5275,5276,5277,5278,5275,5279,5277,5279,5272,5280,3873,3870,5281,5282,3870,3869,5283,5281,5281,5283,5284,5285,5282,5281,5285,5286,4967,4970,5287,5288,5287,5154,5153,5288,5289,5290,5291,5292,5289,5292,5164,5293,5294,3889,3888,5295,5294,5295,5296,5297,5143,5146,5298,5299,5298,4972,4971,5299,5300,5052,5046,5301,5300,5301,5039,4935,5302,5303,5162,5304,5302,5304,5151,5305, -5306,5307,5053,5308,5306,5308,4934,5309,5310,5135,4956,5311,5310,5311,5048,5056,5140,4966,5312,5313,5312,5148,5147,5313,5314,5315,5136,5316,5314,5316,5055,5317,5318,5319,5149,5320,5318,5320,4965,5321,5198,5201,5322,5323,5322,4962,5142,5323,5324,5129,5123,5325,5324,5325,4958,5139,5326,5327,5130,5328,5326,5328,5138,5329,5330,5331,4963,5332,5330,5332,5206,5333,5334,4937,5061,5335,5334,5335,5125,5133,4988,4991,5336,5337,5336,5203,5202,5337,5338,5339,5204,5340,5338,5340,5209,5341,5342,5343,4938,5344,5342,5344,5132,5345,5189,5192,5346,5347,5346,4993,4992,5347,5348,5076,5070,5349,5348,5349,5063,4941,5350,5351,5207,5352,5350,5352,5197,5353,5354,5355,5077,5356,5354,5356,4940,5357,5358,5181,4977,5359,5358,5359,5072,5080,5186,4987,5360,5361,5360,5194,5193,5361,5362,5363,5182,5364,5362,5364,5079,5365,5366,5367,5195,5368,5366,5368,4986,5369,5240,5243,5370,5371,5370,4983,5188,5371,5372,5175,5169,5373,5372,5373,4979,5185,5374,5375,5176,5376,5374,5376,5184,5377,5378,5379,4984,5380,5378,5380,5248,5381,5382,4943,5085,5383,5382,5383,5171,5179,5009,5012,5384,5385,5384,5245,5244,5385,5386,5387,5246,5388,5386,5388,5251,5389,5390,5391,4944,5392,5390,5392,5178,5393,5231,5234,5394,5395,5394,5014,5013,5395,5396,5100,5094,5397,5396,5397,5087,4947,5398,5399,5249,5400,5398,5400,5239,5401,5402,5403,5101,5404,5402,5404,4946,5405,5406,5223,4998,5407,5406,5407,5096,5104,5228,5008,5408,5409,5408,5236,5235,5409,5410,5411,5224,5412,5410,5412,5103,5413,5414,5415,5237,5416,5414,5416,5007,5417,5273,5274,5418,5419,5418,5004,5230,5419,5420,5219,5214,5421,5420,5421,5000,5227,5422,5423,5220,5424,5422,5424,5226,5425,5426,5427,5005,5428,5426,5428,5276,5429,5430,4931,5037,5431,5430,5431,5284,5297,5432,5433,5434,5435,5433,5017,5255,5434,5434,5255,5254,5436,5435,5434,5436,5437,5050,5049,5438,5439,5049,5048,5311,5438,5438,5311,4956,4953,5439,5438,4953,4952,4960,4959,5440,5441,4959,4958,5325,5440,5440,5325,5123,5120,5441,5440,5120,5119,5134,5139,4958,4957,5134,4957,4956,5135,5051,5056,5048,5047,5051,5047,5046,5052,5128,5133,5125,5124,5128,5124,5123,5129,5041,5040, -5442,5443,5040,5039,5301,5442,5442,5301,5046,5043,5443,5442,5043,5042,5127,5126,5444,5445,5126,5125,5335,5444,5444,5335,5061,5058,5445,5444,5058,5057,4930,4935,5039,5038,4930,5038,5037,4931,4936,4941,5063,5062,4936,5062,5061,4937,5065,5064,5446,5447,5064,5063,5349,5446,5446,5349,5070,5067,5447,5446,5067,5066,5075,5080,5072,5071,5075,5071,5070,5076,5074,5073,5448,5449,5073,5072,5359,5448,5448,5359,4977,4974,5449,5448,4974,4973,5180,5185,4979,4978,5180,4978,4977,5181,4981,4980,5450,5451,4980,4979,5373,5450,5450,5373,5169,5166,5451,5450,5166,5165,5174,5179,5171,5170,5174,5170,5169,5175,5173,5172,5452,5453,5172,5171,5383,5452,5452,5383,5085,5082,5453,5452,5082,5081,4942,4947,5087,5086,4942,5086,5085,4943,5089,5088,5454,5455,5088,5087,5397,5454,5454,5397,5094,5091,5455,5454,5091,5090,5099,5104,5096,5095,5099,5095,5094,5100,5098,5097,5456,5457,5097,5096,5407,5456,5456,5407,4998,4995,5457,5456,4995,4994,5222,5227,5000,4999,5222,4999,4998,5223,5002,5001,5458,5459,5001,5000,5421,5458,5458,5421,5214,5211,5459,5458,5211,5210,5218,5106,5105,5215,5218,5215,5214,5219,5217,5216,5110,5109,5216,5105,5108,5110,5116,5020,5019,5113,5116,5113,5108,5107,5115,5114,5460,5461,5114,5019,5018,5460,5460,5018,5017,5433,5461,5460,5433,5432,5462,5463,5464,5465,5462,5465,5466,5467,5468,5469,5470,5471,5468,5471,5472,5473,5474,5475,5476,5477,5474,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5485,5488,5489,5486,5486,5489,5490,5491,5487,5486,5491,5492,5493,5494,5495,5496,5497,5495,5494,5498,5496,5495,5499,5500,4098,4095,5501,5502,4095,4094,5503,5501,5501,5503,5504,5505,5502,5501,5505,5506,5507,5508,5509,5510,5508,5511,5512,5509,5509,5512,5513,5514,5510,5509,5514,5515,5516,5517,5518,5519,5520,5518,5517,5521,5519,5518,5522,5523,5524,5525,5526,5527,5525,5528,5529,5526,5526,5529,5530,5531,5527,5526,5531,5532,5533,5534,5535,5536,5534,5537,5538,5535,5535,5538,5539,5540,5536,5535,5540,5541,5542,5543,5544,5545,5546,5544,5543,5547,5545,5544,5548,5549,5550,5551,5552,5553,5551,5554,5555,5552,5552,5555,5556,5557,5553,5552,5557,5558,5559,5560,5561,5562, -5560,5563,5564,5561,5565,5566,5567,5568,5565,5568,5569,5570,5571,5572,5573,5574,5572,5575,5576,5573,5573,5576,5577,5578,5574,5573,5578,5579,5580,5581,5582,5583,5581,5584,5585,5582,5582,5585,5586,5587,5583,5582,5587,5588,5589,5590,5591,5592,5589,5592,5593,5594,5595,5596,5597,5598,5596,5599,5600,5597,5597,5600,5601,5602,5598,5597,5602,5603,5604,5605,5606,5607,5605,5608,5609,5606,5606,5609,5610,5611,5607,5606,5611,5612,5613,5614,5615,5616,5613,5616,5617,5618,5619,5620,5621,5622,5620,5623,5624,5621,5621,5624,5625,5626,5622,5621,5626,5627,5628,5629,5630,5631,5629,5632,5633,5630,5630,5633,5634,5635,5631,5630,5635,5636,5637,5638,5639,5640,5637,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5648,5651,5652,5649,5649,5652,5564,5653,5650,5649,5653,5646,5654,5563,5655,5656,5654,5656,5481,5643,5657,5658,5659,5660,5658,5661,5662,5659,5659,5662,5663,5664,5660,5659,5664,5665,5666,5667,5668,5669,5666,5669,5670,5671,5672,5673,5674,5675,5672,5675,5676,5677,5678,5679,5680,5681,5679,5682,5683,5680,5680,5683,5684,5685,5681,5680,5685,5686,5687,5688,5689,5690,5688,5678,5681,5689,5689,5681,5686,5691,5690,5689,5691,5506,5692,5693,5694,5695,5696,5694,5693,5697,5695,5694,5698,5699,5504,5503,5700,5701,5503,4094,4291,5700,5700,4291,4295,5702,5701,5700,5702,5703,4295,4296,5704,5702,5704,4296,5705,5706,5702,5704,5707,5703,5708,5709,5710,5711,5712,5710,5709,5713,5711,5710,5714,5715,5716,5717,5718,5719,5717,5720,5721,5718,5718,5721,5722,5723,5719,5718,5723,5724,5725,5726,5727,5728,5725,5728,5729,5730,5731,5732,5733,5734,5731,5734,5735,5736,5737,5738,5739,5740,5738,5741,5742,5739,5739,5742,5743,5744,5740,5739,5744,5745,5528,5746,5747,5529,5746,5737,5740,5747,5747,5740,5745,5748,5529,5747,5748,5530,5749,5750,5751,5752,5753,5751,5750,5754,5752,5751,5755,5756,5682,5757,5758,5683,5757,5524,5527,5758,5758,5527,5532,5759,5683,5758,5759,5684,5760,5761,5762,5763,5764,5762,5761,5765,5763,5762,5766,5767,5768,5769,5770,5771,5772,5770,5769,5773,5771,5770,5774,5775,5776,5777,5778,5779,5777,5780,5781,5778,5778,5781,5645,5782,5779,5778,5782,5783,5784,5644, -5480,5785,5784,5785,5786,5787,5788,5789,5790,5791,5788,5791,5792,5793,5794,5795,5796,5797,5795,3484,3481,5796,5796,3481,3480,5798,5797,5796,5798,5799,5554,5800,5801,5555,5800,5794,5797,5801,5801,5797,5799,5802,5555,5801,5802,5556,5803,5804,5805,5806,5807,5805,5804,5808,5806,5805,5809,5810,5741,5811,5812,5742,5811,5550,5553,5812,5812,5553,5558,5813,5742,5812,5813,5743,5814,5815,5816,5817,5818,5816,5815,5819,5817,5816,5820,5821,5822,5823,5824,5825,5826,5824,5823,5827,5825,5824,5828,5829,5830,5831,5832,5833,5831,5559,5562,5832,5831,5830,5834,5835,5831,5835,5836,5559,5837,5838,5655,5839,5837,5839,5836,5840,5841,5842,5843,5844,5845,5843,5842,5846,5844,5843,5847,5848,5849,5850,5851,5852,5853,5851,5850,5854,5855,5846,5842,5856,5855,5856,5851,5853,4439,4436,5857,5858,4436,4435,5859,5857,5857,5859,5860,5861,5858,5857,5861,5862,5863,5713,5709,5864,5863,5864,5865,5866,5867,4451,4450,5868,5867,5868,5869,5870,5594,5871,5872,5588,5871,5463,5577,5872,5873,5697,5693,5874,5873,5874,5714,5875,5876,5877,5464,5878,5876,5878,5593,5879,5677,5880,5881,5492,5880,5590,5586,5881,5882,5883,5591,5884,5882,5884,5676,5885,5886,5498,5494,5887,5886,5887,5698,5888,5671,5889,5890,5665,5889,5673,5490,5890,5891,5892,5674,5893,5891,5893,5670,5894,5895,5765,5761,5896,5895,5896,5499,5897,5473,5898,5899,5603,5898,5667,5663,5899,5900,5773,5769,5901,5900,5901,5766,5902,5903,5904,5668,5905,5903,5905,5472,5906,5618,5907,5908,5612,5907,5469,5601,5908,5909,5754,5750,5910,5909,5910,5774,5911,5912,5913,5470,5914,5912,5914,5617,5915,5736,5916,5917,5515,5916,5614,5610,5917,5918,5919,5615,5920,5918,5920,5735,5921,5922,5521,5517,5923,5922,5923,5755,5924,5730,5925,5926,5724,5925,5732,5513,5926,5927,5928,5733,5929,5927,5929,5729,5930,5931,5819,5815,5932,5931,5932,5522,5933,5479,5934,5935,5627,5934,5726,5722,5935,5936,5827,5823,5937,5936,5937,5820,5938,5939,5940,5727,5941,5939,5941,5478,5942,5642,5943,5944,5636,5943,5475,5625,5944,5945,5808,5804,5946,5945,5946,5828,5947,5948,5949,5476,5950,5948,5950,5641,5951,5793,5952,5953,5541,5952,5638,5634,5953,5954,5955,5639,5956, -5954,5956,5792,5957,5958,5547,5543,5959,5958,5959,5809,5960,5787,5961,5962,5783,5961,5789,5539,5962,5963,5964,5790,5965,5963,5965,5786,5966,5967,5854,5850,5968,5967,5968,5548,5969,5970,5579,5467,5971,5970,5971,5972,5862,5973,5974,5975,5976,5974,5977,5978,5975,5975,5978,5833,5832,5976,5975,5832,5562,5584,5979,5980,5585,5979,5484,5487,5980,5980,5487,5492,5881,5585,5980,5881,5586,5488,5981,5982,5489,5981,5657,5660,5982,5982,5660,5665,5890,5489,5982,5890,5490,5490,5673,5672,5491,5672,5677,5492,5491,5586,5590,5589,5587,5589,5594,5588,5587,5663,5667,5666,5664,5666,5671,5665,5664,5575,5983,5984,5576,5983,5580,5583,5984,5984,5583,5588,5872,5576,5984,5872,5577,5661,5985,5986,5662,5985,5595,5598,5986,5986,5598,5603,5899,5662,5986,5899,5663,5577,5463,5462,5578,5462,5467,5579,5578,5601,5469,5468,5602,5468,5473,5603,5602,5599,5987,5988,5600,5987,5604,5607,5988,5988,5607,5612,5908,5600,5988,5908,5601,5610,5614,5613,5611,5613,5618,5612,5611,5608,5989,5990,5609,5989,5507,5510,5990,5990,5510,5515,5917,5609,5990,5917,5610,5513,5732,5731,5514,5731,5736,5515,5514,5511,5991,5992,5512,5991,5716,5719,5992,5992,5719,5724,5926,5512,5992,5926,5513,5722,5726,5725,5723,5725,5730,5724,5723,5720,5993,5994,5721,5993,5619,5622,5994,5994,5622,5627,5935,5721,5994,5935,5722,5625,5475,5474,5626,5474,5479,5627,5626,5623,5995,5996,5624,5995,5628,5631,5996,5996,5631,5636,5944,5624,5996,5944,5625,5634,5638,5637,5635,5637,5642,5636,5635,5632,5997,5998,5633,5997,5533,5536,5998,5998,5536,5541,5953,5633,5998,5953,5634,5539,5789,5788,5540,5788,5793,5541,5540,5537,5999,6000,5538,5999,5776,5779,6000,6000,5779,5783,5962,5538,6000,5962,5539,5645,5644,5784,5782,5784,5787,5783,5782,5781,5780,5647,5650,5781,5650,5646,5645,5564,5563,5654,5653,5654,5643,5646,5653,5651,6001,6002,5652,6001,5973,5976,6002,6002,5976,5562,5561,5652,6002,5561,5564,4435,4599,6003,5859,4599,4598,6004,6003,6003,6004,6005,6006,5859,6003,6006,5860,5571,6007,6008,5572,6007,6009,6010,6008,6008,6010,6011,6012,5572,6008,6012,5575,5575,6012,6013,5983,6012,6011,6014,6013,6013,6014,6015,6016,5983,6013, -6016,5580,5580,6016,6017,5581,6016,6015,6018,6017,6017,6018,6019,6020,5581,6017,6020,5584,5584,6020,6021,5979,6020,6019,6022,6021,6021,6022,6023,6024,5979,6021,6024,5484,5484,6024,6025,5485,6024,6023,6026,6025,6025,6026,6027,6028,5485,6025,6028,5488,5488,6028,6029,5981,6028,6027,6030,6029,6029,6030,6031,6032,5981,6029,6032,5657,5657,6032,6033,5658,6032,6031,6034,6033,6033,6034,6035,6036,5658,6033,6036,5661,5661,6036,6037,5985,6036,6035,6038,6037,6037,6038,6039,6040,5985,6037,6040,5595,5595,6040,6041,5596,6040,6039,6042,6041,6041,6042,6043,6044,5596,6041,6044,5599,5599,6044,6045,5987,6044,6043,6046,6045,6045,6046,6047,6048,5987,6045,6048,5604,5604,6048,6049,5605,6048,6047,6050,6049,6049,6050,6051,6052,5605,6049,6052,5608,5608,6052,6053,5989,6052,6051,6054,6053,6053,6054,6055,6056,5989,6053,6056,5507,5507,6056,6057,5508,6056,6055,6058,6057,6057,6058,6059,6060,5508,6057,6060,5511,5511,6060,6061,5991,6060,6059,6062,6061,6061,6062,6063,6064,5991,6061,6064,5716,5716,6064,6065,5717,6064,6063,6066,6065,6065,6066,6067,6068,5717,6065,6068,5720,5720,6068,6069,5993,6068,6067,6070,6069,6069,6070,6071,6072,5993,6069,6072,5619,5619,6072,6073,5620,6072,6071,6074,6073,6073,6074,6075,6076,5620,6073,6076,5623,5623,6076,6077,5995,6076,6075,6078,6077,6077,6078,6079,6080,5995,6077,6080,5628,5628,6080,6081,5629,6080,6079,6082,6081,6081,6082,6083,6084,5629,6081,6084,5632,5632,6084,6085,5997,6084,6083,6086,6085,6085,6086,6087,6088,5997,6085,6088,5533,5533,6088,6089,5534,6088,6087,6090,6089,6089,6090,6091,6092,5534,6089,6092,5537,5537,6092,6093,5999,6092,6091,6094,6093,6093,6094,6095,6096,5999,6093,6096,5776,5776,6096,6097,5777,6096,6095,6098,6097,6097,6098,6099,6100,5777,6097,6100,5780,5647,5780,6100,6101,6100,6099,6102,6101,5647,6101,6103,5648,6101,6102,6104,6103,6103,6104,6105,6106,5648,6103,6106,5651,5651,6106,6107,6001,6106,6105,6108,6107,6107,6108,6109,6110,6001,6107,6110,5973,5973,6110,6111,5974,6110,6109,6112,6111,6111,6112,6113,6114,5974,6111,6114,5977,5033,6115,6116,6117,6115,6009,6118,6116,6116,6118,6005,6119,6117,6116,6119,5286, -5041,6120,6121,5036,6120,6011,6010,6121,6121,6010,6009,6115,5036,6121,6115,5033,5042,6122,6123,5443,6122,6015,6014,6123,6123,6014,6011,6120,5443,6123,6120,5041,5050,6124,6125,5045,6124,6019,6018,6125,6125,6018,6015,6122,5045,6125,6122,5042,4952,6126,6127,5439,6126,6023,6022,6127,6127,6022,6019,6124,5439,6127,6124,5050,4960,6128,6129,4955,6128,6027,6026,6129,6129,6026,6023,6126,4955,6129,6126,4952,5119,6130,6131,5441,6130,6031,6030,6131,6131,6030,6027,6128,5441,6131,6128,4960,5127,6132,6133,5122,6132,6035,6034,6133,6133,6034,6031,6130,5122,6133,6130,5119,5057,6134,6135,5445,6134,6039,6038,6135,6135,6038,6035,6132,5445,6135,6132,5127,5065,6136,6137,5060,6136,6043,6042,6137,6137,6042,6039,6134,5060,6137,6134,5057,5066,6138,6139,5447,6138,6047,6046,6139,6139,6046,6043,6136,5447,6139,6136,5065,5074,6140,6141,5069,6140,6051,6050,6141,6141,6050,6047,6138,5069,6141,6138,5066,4973,6142,6143,5449,6142,6055,6054,6143,6143,6054,6051,6140,5449,6143,6140,5074,4981,6144,6145,4976,6144,6059,6058,6145,6145,6058,6055,6142,4976,6145,6142,4973,5165,6146,6147,5451,6146,6063,6062,6147,6147,6062,6059,6144,5451,6147,6144,4981,5173,6148,6149,5168,6148,6067,6066,6149,6149,6066,6063,6146,5168,6149,6146,5165,5081,6150,6151,5453,6150,6071,6070,6151,6151,6070,6067,6148,5453,6151,6148,5173,5089,6152,6153,5084,6152,6075,6074,6153,6153,6074,6071,6150,5084,6153,6150,5081,5090,6154,6155,5455,6154,6079,6078,6155,6155,6078,6075,6152,5455,6155,6152,5089,5098,6156,6157,5093,6156,6083,6082,6157,6157,6082,6079,6154,5093,6157,6154,5090,4994,6158,6159,5457,6158,6087,6086,6159,6159,6086,6083,6156,5457,6159,6156,5098,5002,6160,6161,4997,6160,6091,6090,6161,6161,6090,6087,6158,4997,6161,6158,4994,5210,6162,6163,5459,6162,6095,6094,6163,6163,6094,6091,6160,5459,6163,6160,5002,5217,6164,6165,5213,6164,6099,6098,6165,6165,6098,6095,6162,5213,6165,6162,5210,5217,5109,6166,6164,6166,6102,6099,6164,5115,6167,6168,5112,6167,6105,6104,6168,6168,6104,6102,6166,5112,6168,6166,5109,5432,6169,6170,5461,6169,6109,6108,6170,6170,6108,6105,6167,5461,6170,6167,5115,5437,6171, -6172,5435,6171,6113,6112,6172,6172,6112,6109,6169,5435,6172,6169,5432,5155,5154,5291,6173,5155,6173,5160,5156,6174,5866,5865,6175,6174,6175,5707,6176,5322,5201,5206,5332,5322,5332,4963,4962,5312,4966,4965,5320,5312,5320,5149,5148,6177,5321,4965,4964,6177,4964,4963,5331,6178,5333,5206,5205,6178,5205,5204,5339,6179,5305,5151,5150,6179,5150,5149,5319,5336,4991,5209,5340,5336,5340,5204,5203,5298,5146,5151,5304,5298,5304,5162,4972,6180,5341,5209,5208,6180,5208,5207,5351,6181,5293,5164,5163,6181,5163,5162,5303,5346,5192,5197,5352,5346,5352,5207,4993,5287,4970,5164,5292,5287,5292,5291,5154,6182,5353,5197,5196,6182,5196,5195,5367,5360,4987,4986,5368,5360,5368,5195,5194,6183,5369,4986,4985,6183,4985,4984,5379,5370,5243,5248,5380,5370,5380,4984,4983,6184,5381,5248,5247,6184,5247,5246,5387,5384,5012,5251,5388,5384,5388,5246,5245,6185,5389,5251,5250,6185,5250,5249,5399,5394,5234,5239,5400,5394,5400,5249,5014,6186,5401,5239,5238,6186,5238,5237,5415,5408,5008,5007,5416,5408,5416,5237,5236,6187,5417,5007,5006,6187,5006,5005,5427,5418,5274,5276,5428,5418,5428,5005,5004,5278,5429,5276,5275,5028,5027,5272,5279,5028,5279,5275,5031,6188,5280,5272,5271,6188,5271,5023,5022,5264,5263,5025,5024,5264,5024,5023,5267,6189,6190,5848,5847,6189,5847,5569,6191,5845,5570,5569,5852,5851,5856,6192,6192,5856,5842,5841,5549,5548,5968,6193,6193,5968,5850,5849,5546,5969,5548,5544,5810,5809,5959,6194,6194,5959,5543,5542,5807,5960,5809,5805,5829,5828,5946,6195,6195,5946,5804,5803,5826,5947,5828,5824,5821,5820,5937,6196,6196,5937,5823,5822,5818,5938,5820,5816,5523,5522,5932,6197,6197,5932,5815,5814,5520,5933,5522,5518,5756,5755,5923,6198,6198,5923,5517,5516,5753,5924,5755,5751,5775,5774,5910,6199,6199,5910,5750,5749,5772,5911,5774,5770,5767,5766,5901,6200,6200,5901,5769,5768,5764,5902,5766,5762,5500,5499,5896,6201,6201,5896,5761,5760,5497,5897,5499,5495,5699,5698,5887,6202,6202,5887,5494,5493,5696,5888,5698,5694,5715,5714,5874,6203,6203,5874,5693,5692,5712,5875,5714,5710,6204,5865,5864,6205,6205,5864,5709,5708,6206,6207,4932,6208,6206,6208,5296,6209,5971, -5467,5466,6210,5971,6210,5869,5972,5300,4935,4934,5308,5300,5308,5053,5052,6211,5309,4934,4933,6211,4933,4932,6207,6212,5317,5055,5054,6212,5054,5053,5307,5310,5056,5055,5316,5310,5316,5136,5135,6213,5329,5138,5137,6213,5137,5136,5315,5324,5139,5138,5328,5324,5328,5130,5129,6214,5345,5132,5131,6214,5131,5130,5327,5334,5133,5132,5344,5334,5344,4938,4937,6215,5357,4940,4939,6215,4939,4938,5343,5348,4941,4940,5356,5348,5356,5077,5076,6216,5365,5079,5078,6216,5078,5077,5355,5358,5080,5079,5364,5358,5364,5182,5181,6217,5377,5184,5183,6217,5183,5182,5363,5372,5185,5184,5376,5372,5376,5176,5175,6218,5393,5178,5177,6218,5177,5176,5375,5382,5179,5178,5392,5382,5392,4944,4943,6219,5405,4946,4945,6219,4945,4944,5391,5396,4947,4946,5404,5396,5404,5101,5100,6220,5413,5103,5102,6220,5102,5101,5403,5406,5104,5103,5412,5406,5412,5224,5223,6221,5425,5226,5225,6221,5225,5224,5411,5420,5227,5226,5424,5420,5424,5220,5219,6222,4949,4948,5221,6222,5221,5220,5423,4948,4951,5107,5106,6223,5262,5118,5117,6223,5117,4951,4950,5015,5020,5118,5261,5015,5261,5256,5016,6224,6225,5258,5257,6224,5257,5256,5260,6226,5840,5836,5835,6226,5835,5834,6227,5560,5559,5836,5839,5560,5839,5655,5563,6228,5482,5481,5656,6228,5656,5655,5838,5643,5481,5480,5644,6229,5966,5786,5785,6229,5785,5480,5483,5961,5787,5786,5965,5961,5965,5790,5789,6230,5957,5792,5791,6230,5791,5790,5964,5952,5793,5792,5956,5952,5956,5639,5638,6231,5951,5641,5640,6231,5640,5639,5955,5943,5642,5641,5950,5943,5950,5476,5475,6232,5942,5478,5477,6232,5477,5476,5949,5934,5479,5478,5941,5934,5941,5727,5726,6233,5930,5729,5728,6233,5728,5727,5940,5925,5730,5729,5929,5925,5929,5733,5732,6234,5921,5735,5734,6234,5734,5733,5928,5916,5736,5735,5920,5916,5920,5615,5614,6235,5915,5617,5616,6235,5616,5615,5919,5907,5618,5617,5914,5907,5914,5470,5469,6236,5906,5472,5471,6236,5471,5470,5913,5898,5473,5472,5905,5898,5905,5668,5667,6237,5894,5670,5669,6237,5669,5668,5904,5889,5671,5670,5893,5889,5893,5674,5673,6238,5885,5676,5675,6238,5675,5674,5892,5880,5677,5676,5884,5880,5884,5591,5590,6239,5879,5593, -5592,6239,5592,5591,5883,5871,5594,5593,5878,5871,5878,5464,5463,6240,6241,5466,5465,6240,5465,5464,5877,5841,5844,6242,6192,5844,5848,6243,6242,6242,6243,6244,6245,6192,6242,6245,5852,5794,6246,6247,6248,6246,5810,6194,6247,6247,6194,5542,5545,6248,6247,5545,5549,5550,6249,6250,6251,6249,5821,6196,6250,6250,6196,5822,5825,6251,6250,5825,5829,5737,6252,6253,6254,6252,5756,6198,6253,6253,6198,5516,5519,6254,6253,5519,5523,5524,6255,6256,6257,6255,5767,6200,6256,6256,6200,5768,5771,6257,6256,5771,5775,5678,6258,6259,6260,6258,5699,6202,6259,6259,6202,5493,5496,6260,6259,5496,5500,6261,6262,6263,6264,6262,6204,6205,6263,6263,6205,5708,5711,6264,6263,5711,5715,6244,6243,6265,3484,6243,5848,6190,6265,6244,3484,6266,6245,6266,5849,5852,6245,5549,6193,6267,6248,6193,5849,6266,6267,6267,6266,3484,5795,6248,6267,5795,5794,5554,6268,6269,5800,6268,5803,5806,6269,6269,5806,5810,6246,5800,6269,6246,5794,5829,6195,6270,6251,6195,5803,6268,6270,6270,6268,5554,5551,6251,6270,5551,5550,5741,6271,6272,5811,6271,5814,5817,6272,6272,5817,5821,6249,5811,6272,6249,5550,5523,6197,6273,6254,6197,5814,6271,6273,6273,6271,5741,5738,6254,6273,5738,5737,5528,6274,6275,5746,6274,5749,5752,6275,6275,5752,5756,6252,5746,6275,6252,5737,5775,6199,6276,6257,6199,5749,6274,6276,6276,6274,5528,5525,6257,6276,5525,5524,5682,6277,6278,5757,6277,5760,5763,6278,6278,5763,5767,6255,5757,6278,6255,5524,5500,6201,6279,6260,6201,5760,6277,6279,6279,6277,5682,5679,6260,6279,5679,5678,5687,6280,6281,5688,6280,5692,5695,6281,6281,5695,5699,6258,5688,6281,6258,5678,5715,6203,6282,6264,6203,5692,6280,6282,6282,6280,5687,6283,6264,6282,6283,6261,6261,6283,6284,6285,6283,5687,5690,6284,6284,5690,5506,5505,6285,6284,5505,5504,4900,4898,6286,6287,4898,4098,5502,6286,6286,5502,5506,5691,6287,6286,5691,5686,4904,4902,6288,6289,4902,4900,6287,6288,6288,6287,5686,5685,6289,6288,5685,5684,4908,4906,6290,6291,4906,4904,6289,6290,6290,6289,5684,5759,6291,6290,5759,5532,4912,4910,6292,6293,4910,4908,6291,6292,6292,6291,5532,5531,6293,6292,5531,5530,4916,4914,6294,6295,4914, -4912,6293,6294,6294,6293,5530,5748,6295,6294,5748,5745,4920,4918,6296,6297,4918,4916,6295,6296,6296,6295,5745,5744,6297,6296,5744,5743,4924,4922,6298,6299,4922,4920,6297,6298,6298,6297,5743,5813,6299,6298,5813,5558,3480,4929,6300,5798,4929,4928,6301,6300,6300,6301,5556,5802,5798,6300,5802,5799,6302,3740,3739,6303,6302,6303,5157,5156,5159,3745,3740,6302,5159,6302,5156,5160,6173,5291,5290,6304,6173,6304,5161,5160,5295,3888,6305,6306,5295,6306,6209,5296,6208,4932,4931,5430,6208,5430,5297,5296,5283,3869,3889,5294,5283,5294,5297,5284,5037,5034,6307,5431,5034,5033,6117,6307,6307,6117,5286,5285,5431,6307,5285,5284,4598,6308,6309,6004,6308,3873,5282,6309,6309,5282,5286,6119,6004,6309,6119,6005,6009,6007,6310,6118,6007,5571,6311,6310,6310,6311,5860,6006,6118,6310,6006,6005,5571,5574,6312,6311,5574,5579,5970,6312,6312,5970,5862,5861,6311,6312,5861,5860,6313,6314,4439,5858,6313,5858,5862,5972,5868,4450,6314,6313,5868,6313,5972,5869,6210,5466,6241,6315,6210,6315,5870,5869,5704,5706,6176,5707,5865,6204,6316,6175,6175,6316,5703,5707,5504,5701,6317,6285,5701,5703,6316,6317,6317,6316,6204,6262,6285,6317,6262,6261,4771,3881,3880,6318,4771,6318,3743,3742,3741,3740,3745,3744,3741,3744,3749,3742,6319,3882,3885,4770,6319,4770,3749,3748,6320,6305,3888,3887,6320,3887,3892,4817,4026,3516,3519,4814,4026,4814,3892,3891,3890,3889,3869,3872,3890,3872,3877,3891,3619,3622,6321,4715,3622,3627,4025,6321,6321,4025,3877,3876,4715,6321,3876,3875,3873,6308,6322,3874,6308,4598,4601,6322,6322,4601,4603,4716,3874,6322,4716,3875,4163,4605,6323,6324,4605,4609,4714,6323,6323,4714,4603,4602,6324,6323,4602,4443,4167,4164,6325,4566,4164,4163,6324,6325,6325,6324,4443,4442,4566,6325,4442,4441,4440,4439,6314,6326,4440,6326,4567,4441,6326,6314,4450,4449,6326,4449,4454,4567,6327,4851,4062,4818,6327,4818,4454,4453,4299,5705,4296,4297,4812,4448,4773,6328,6328,4773,4298,4293,4812,6328,6329,4875,6328,4293,4292,6329,6329,4292,4102,4897,4875,6329,4897,4872,3843,4032,6330,6331,4032,4031,6332,6330,4157,4160,4786,6333,6334,6335,6336,6337,6335,6338,6339,6336,4573,4572,6340, -6341,4572,4412,6342,6340,4710,4709,6343,6344,4709,4573,6341,6343,6332,4031,4769,6345,4769,4710,6344,6345,6338,4157,6333,6339,6346,6347,5254,5253,6346,5253,5258,6225,5437,5436,6348,6349,5436,5254,6347,6348,5567,5566,6350,6351,5830,5833,6352,6353,5834,5830,6353,6354,6352,5833,5978,6355,5978,5977,6356,6355,6356,5977,6114,6357,6114,6113,6358,6357,6358,6113,6171,6359,6171,5437,6349,6359,5566,6360,6361,6350,6362,6363,6364,6365,6366,6367,6337,6336,6368,6366,6336,6339,6369,6368,6339,6333,6370,6369,6333,4786,6371,6372,4785,4787,6372,6370,4786,4785,3494,3493,6373,4876,6373,6374,4877,4876,6375,6376,6265,6190,6376,3512,3484,6265,6377,6378,6189,6191,6378,6375,6190,6189,6379,6380,6351,6350,6381,6379,6350,6361,6382,6381,6361,6383,6384,6382,6383,6385,6386,6384,6385,6387,6388,4835,3846,3840,3843,6331,6388,3840,6191,5569,5568,6389,5568,5567,6351,6389,6351,6380,6390,6389,6390,6377,6191,6389,4787,4162,4426,6391,4426,4425,4877,6391,4877,6374,6392,6391,6392,6371,4787,6391,3494,4379,6393,3492,4379,3480,3483,6393,6393,3483,3488,6394,3492,6393,6394,3489,3511,3510,3486,3485,3511,3485,3484,3512,4924,6395,6396,4925,6395,4928,4926,6396,6396,4926,4150,4149,4925,6396,4149,4148,5556,6301,6397,5557,6301,4928,6395,6397,6397,6395,4924,6299,5557,6397,6299,5558,5845,5569,5847,5843,4162,4161,4788,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6403,6402,6408,6409,6407,6406,6410,6411,6409,6408,6412,6413,6411,6410,6414,6415,6416,6417,6418,6419,6415,6414,6420,6421,6419,6418,6422,6423,6421,6420,6417,6416,6413,6412,6424,6425,6399,6398,6426,6427,6428,6429,6429,6428,6425,6424,6405,6404,6401,6400,6430,6431,6427,6426,6432,6433,6431,6430,6434,6435,6433,6432,6436,6437,6435,6434,6438,6439,6437,6436,6440,6441,6439,6438,6442,6443,6441,6440,6444,6445,6443,6442,6446,6447,6445,6444,6447,6446,6423,6422,6448,6449,6450,6451,6451,6450,6452,6453,6453,6452,6454,6455,6456,6457,6458,6459,6460,6461,6457,6456,6462,6463,6461,6460,6464,6465,6463,6462,6466,6467,6465,6464,6468,6469,6467,6466,6470,6471,6469,6468,6472,6473,6471,6470,6474,6473,6472,6475,6455,6454,6474,6475,6459,6458, -6476,6477,6477,6476,6478,6479,6479,6478,6480,6481,6481,6480,6482,6483,6483,6482,6484,6485,6485,6484,6486,6487,6487,6486,6488,6489,6489,6488,6490,6491,6491,6490,6492,6493,6493,6492,6494,6495,6496,6497,6449,6448,6495,6494,6497,6496,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6511,6510,6516,6517,6515,6514,6518,6519,6517,6516,6503,6519,6518,6504,6512,6507,6506,6513,6509,6508,6520,6521,6521,6520,6522,6523,6523,6522,6524,6525,6525,6524,6526,6527,6528,6529,6527,6526,6528,6530,6531,6529,6531,6530,6532,6533,6533,6532,6534,6535,6535,6534,6536,6537,6537,6536,6538,6539,6539,6538,6540,6541,6541,6540,6542,6543,6504,6544,6545,6505,6518,6546,6544,6504,6546,6518,6516,6547,6547,6516,6514,6548,6548,6514,6510,6549,6549,6510,6513,6550,6506,6551,6550,6513,6551,6506,6509,6552,6552,6509,6521,6553,6553,6521,6523,6554,6554,6523,6525,6555,6555,6525,6527,6556,6529,6557,6556,6527,6531,6558,6557,6529,6558,6531,6533,6559,6559,6533,6535,6560,6560,6535,6537,6561,6561,6537,6539,6562,6562,6539,6541,6563,6563,6541,6543,6564,6544,6565,6566,6545,6546,6567,6565,6544,6568,6567,6546,6547,6569,6568,6547,6548,6569,6548,6549,6570,6570,6549,6550,6571,6551,6572,6571,6550,6572,6551,6552,6573,6574,6573,6552,6553,6575,6574,6553,6554,6576,6575,6554,6555,6577,6576,6555,6556,6557,6578,6577,6556,6558,6579,6578,6557,6580,6579,6558,6559,6581,6580,6559,6560,6582,6581,6560,6561,6583,6582,6561,6562,6584,6583,6562,6563,6585,6584,6563,6564,6586,6587,6588,6589,6588,6590,6591,6589,6590,6592,6593,6591,6592,6594,6595,6593,6594,6596,6597,6595,6596,6598,6599,6597,6598,6600,6601,6599,6602,6603,6601,6600,6603,6602,6604,6605,6604,6606,6607,6605,6606,6608,6609,6607,6609,6608,6610,6611,6610,6612,6613,6611,6612,6614,6615,6613,6616,6617,6618,6619,6620,6621,6619,6618,6622,6623,6621,6620,6623,6622,6624,6625,6626,6627,6625,6624,6615,6614,6627,6626,6503,6502,6586,6589,6591,6519,6503,6589,6593,6517,6519,6591,6595,6515,6517,6593,6597,6511,6515,6595,6599,6512,6511,6597,6601,6507,6512,6599,6603,6508,6507,6601,6520,6508,6603,6605,6607,6522,6520,6605, -6609,6524,6522,6607,6526,6524,6609,6611,6613,6528,6526,6611,6615,6530,6528,6613,6532,6530,6615,6626,6534,6532,6626,6624,6622,6536,6534,6624,6538,6536,6622,6620,6540,6538,6620,6618,6617,6542,6540,6618,6628,6629,6588,6587,6590,6588,6629,6630,6630,6631,6592,6590,6631,6632,6594,6592,6632,6633,6596,6594,6633,6634,6598,6596,6600,6598,6634,6635,6602,6600,6635,6636,6637,6638,6612,6610,6610,6608,6639,6637,6608,6606,6640,6639,6606,6604,6641,6640,6604,6602,6636,6641,6642,6643,6616,6619,6644,6642,6619,6621,6621,6623,6645,6644,6646,6645,6623,6625,6625,6627,6647,6646,6648,6647,6627,6614,6612,6638,6648,6614,6649,6650,6651,6652,6652,6653,6654,6649,6653,6655,6656,6654,6657,6658,6659,6660,6661,6662,6658,6657,6663,6662,6661,6664,6663,6664,6665,6666,6667,6668,6666,6665,6669,6670,6671,6672,6673,6674,6675,6676,6674,6673,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6692,6691,6697,6698,6696,6695,6699,6700,6698,6697,6701,6700,6699,6702,6650,6649,6703,6704,6649,6654,6705,6703,6671,6668,6667,6672,6675,6670,6669,6676,6677,6682,6681,6678,6685,6680,6679,6686,6689,6684,6683,6690,6693,6688,6687,6694,6706,6700,6701,6707,6700,6706,6708,6698,6703,6706,6707,6704,6708,6706,6703,6705,6659,6656,6655,6660,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6722,6725,6728,6723,6737,6733,6736,6738,6739,6740,6712,6711,6741,6742,6716,6715,6743,6744,6720,6719,6723,6745,6746,6724,6728,6747,6745,6723,6748,6747,6728,6727,6749,6750,6732,6731,6736,6751,6752,6738,6735,6753,6751,6736,6754,6755,6756,6757,6758,6759,6760,6761,6761,6762,6763,6758,6762,6764,6765,6763,6499,6765,6764,6500,6757,6766,6767,6754,6767,6766,6768,6769,6770,6635,6634,6771,6772,6636,6635,6770,6773,6641,6636,6772,6774,6640,6641,6773,6774,6775,6639,6640,6775,6776,6637,6639,6776,6777,6638,6637,6777,6778,6648,6638,6778,6779,6647,6648,6779,6780,6646,6647,6780,6781,6645,6646,6781,6782,6644,6645,6782,6783,6642,6644,6783,6784,6643,6642,6785,6786,6787,6788,6788,6787, -6789,6790,6790,6789,6791,6792,6792,6791,6793,6794,6794,6793,6795,6796,6796,6795,6797,6798,6798,6797,6799,6800,6800,6799,6801,6802,6802,6801,6803,6804,6805,6806,6807,6808,6809,6810,6786,6785,6810,6809,6811,6812,6812,6811,6808,6807,6813,6788,6790,6814,6814,6790,6792,6815,6815,6792,6794,6816,6816,6794,6796,6817,6817,6796,6798,6818,6818,6798,6800,6819,6819,6800,6802,6820,6820,6802,6804,6821,6822,6805,6808,6823,6811,6824,6823,6808,6809,6825,6824,6811,6825,6809,6785,6826,6826,6785,6788,6813,6810,6827,6828,6786,6827,6810,6812,6829,6830,6829,6812,6807,6806,6831,6830,6807,6801,6832,6833,6803,6799,6834,6832,6801,6797,6835,6834,6799,6795,6836,6835,6797,6793,6837,6836,6795,6791,6838,6837,6793,6789,6839,6838,6791,6787,6840,6839,6789,6786,6828,6840,6787,6841,6842,6843,6844,6845,6846,6844,6843,6847,6848,6838,6839,6839,6840,6849,6847,6840,6850,6851,6849,6829,6631,6630,6827,6629,6828,6827,6630,6850,6629,6628,6851,6629,6850,6840,6828,6836,6837,6845,6843,6842,6835,6836,6843,6837,6838,6848,6845,6764,6841,6844,6500,6846,6501,6500,6844,6841,6764,6762,6852,6842,6841,6852,6853,6835,6842,6853,6834,6834,6853,6854,6832,6853,6852,6855,6854,6852,6762,6761,6855,6856,6805,6822,6857,6858,6806,6805,6856,6859,6831,6806,6858,6832,6854,6860,6833,6854,6855,6861,6860,6855,6761,6760,6861,6862,6863,6831,6859,6864,6865,6863,6862,6755,6754,6865,6864,6830,6831,6863,6866,6866,6863,6865,6867,6754,6767,6867,6865,6829,6830,6866,6868,6868,6632,6631,6829,6867,6869,6868,6866,6768,6771,6634,6769,6767,6769,6869,6867,6869,6633,6632,6868,6633,6869,6769,6634,6755,6760,6759,6756,6861,6760,6755,6864,6860,6861,6864,6862,6833,6860,6862,6859,6833,6859,6858,6803,6803,6858,6856,6804,6804,6856,6857,6821,6702,6699,6870,6871,6699,6697,6872,6870,6697,6695,6873,6872,6874,6875,6876,6877,6878,6879,6875,6874,6880,6881,6879,6878,6882,6874,6877,6883,6884,6878,6874,6882,6885,6880,6878,6884,6886,6882,6883,6887,6888,6884,6882,6886,6889,6885,6884,6888,6875,6890,6891,6876,6879,6892,6890,6875,6881,6893,6892,6879,6757,6894,6895,6766,6894,6896,6897,6895,6896,6898,6899,6897,6898,6900,6901,6899, -6900,6902,6903,6901,6902,6881,6880,6903,6902,6904,6893,6881,6905,6898,6896,6906,6906,6896,6894,6907,6907,6894,6757,6756,6759,6908,6907,6756,6906,6907,6908,6909,6905,6906,6909,6910,6910,6900,6898,6905,6911,6902,6900,6910,6904,6902,6911,6912,6913,6908,6759,6758,6890,6499,6498,6891,6892,6765,6499,6890,6893,6763,6765,6892,6904,6758,6763,6893,6913,6758,6904,6912,6912,6911,6910,6909,6913,6912,6909,6908,6903,6880,6885,6901,6885,6889,6899,6901,6895,6914,6768,6766,6897,6915,6914,6895,6915,6897,6899,6916,6916,6899,6889,6873,6870,6886,6887,6871,6872,6888,6886,6870,6873,6889,6888,6872,6691,6916,6873,6695,6917,6915,6916,6691,6918,6914,6915,6917,6768,6914,6918,6771,6694,6919,6917,6691,6771,6918,6920,6770,6919,6920,6918,6917,6687,6921,6919,6694,6920,6919,6921,6922,6770,6920,6922,6772,6923,6921,6687,6690,6921,6923,6924,6922,6925,6772,6922,6924,6923,6926,6927,6924,6926,6928,6929,6927,6928,6930,6931,6929,6930,6932,6933,6931,6932,6934,6935,6933,6923,6690,6683,6926,6926,6683,6686,6928,6679,6930,6928,6686,6682,6932,6930,6679,6932,6682,6677,6934,6924,6927,6936,6925,6937,6929,6931,6938,6933,6939,6938,6931,6936,6927,6929,6937,6940,6773,6772,6925,6941,6937,6938,6942,6943,6936,6937,6941,6940,6925,6936,6943,6942,6944,6945,6941,6941,6945,6946,6943,6946,6947,6940,6943,6947,6774,6773,6940,6948,6949,6774,6947,6947,6946,6950,6948,6950,6946,6945,6951,6775,6774,6949,6952,6952,6949,6953,6954,6725,6722,6954,6953,6952,6954,6955,6956,6956,6776,6775,6952,6954,6722,6721,6955,6724,6746,6743,6719,6718,6721,6724,6719,6957,6777,6776,6956,6958,6957,6956,6955,6718,6958,6955,6721,6959,6778,6777,6957,6957,6958,6960,6959,6958,6718,6717,6960,6720,6744,6741,6715,6714,6717,6720,6715,6961,6960,6717,6714,6961,6962,6959,6960,6778,6959,6962,6779,6779,6962,6963,6780,6962,6961,6964,6963,6961,6714,6713,6964,6716,6742,6965,6966,6967,6713,6716,6966,6965,6968,6969,6966,6970,6967,6966,6969,6782,6781,6971,6972,6963,6971,6781,6780,6964,6973,6971,6963,6973,6974,6972,6971,6967,6970,6974,6973,6713,6967,6973,6964,6968,6739,6711,6969,6710,6970,6969,6711,6972,6975,6783,6782,6975,6972, -6974,6976,6976,6974,6970,6710,6975,6977,6784,6783,6976,6978,6977,6975,6978,6976,6710,6709,6979,6953,6949,6948,6948,6950,6980,6979,6732,6750,6748,6727,6726,6729,6732,6727,6953,6979,6726,6725,6979,6980,6729,6726,6951,6981,6980,6950,6738,6752,6749,6731,6730,6737,6738,6731,6980,6981,6730,6729,6951,6982,6983,6981,6944,6982,6951,6945,6981,6983,6737,6730,6982,6984,6985,6983,6942,6986,6987,6944,6939,6986,6942,6938,6987,6984,6982,6944,6985,6733,6737,6983,6984,6988,6989,6985,6986,6990,6991,6987,6933,6935,6992,6939,6989,6734,6733,6985,6991,6988,6984,6987,6986,6939,6992,6990,6403,6993,6994,6404,6407,6995,6993,6403,6409,6996,6995,6407,6411,6997,6996,6409,6413,6998,6997,6411,6416,6999,6998,6413,6415,7000,6999,6416,6419,7001,7000,6415,6421,7002,7001,6419,6423,7003,7002,6421,6446,7004,7003,6423,7005,7004,6446,6444,7006,7005,6444,6442,7007,7006,6442,6440,7008,7007,6440,6438,7009,7008,6438,6436,7010,7009,6436,6434,7011,7010,6434,6432,7012,7011,6432,6430,7013,7012,6430,6426,7013,6426,6429,7014,7015,7014,6429,6424,7016,7015,6424,6398,7016,6398,6401,7017,6404,6994,7017,6401,6425,7018,7019,6399,6428,7020,7018,6425,6427,7021,7020,6428,6431,7022,7021,6427,6433,7023,7022,6431,6435,7024,7023,6433,6437,7025,7024,6435,6439,7026,7025,6437,6441,7027,7026,6439,6443,7028,7027,6441,6445,7029,7028,6443,7030,7029,6445,6447,7031,7032,6405,6400,6399,7019,7031,6400,7033,6402,6405,7032,6406,6402,7033,7034,6408,6406,7034,7035,6410,6408,7035,7036,6412,6410,7036,7037,6417,6412,7037,7038,6414,6417,7038,7039,6418,6414,7039,7040,6420,6418,7040,7041,6422,6420,7041,7042,7030,6447,6422,7042,6656,6659,6474,6454,6654,6656,6454,6452,6705,6654,6452,6450,6708,6705,6450,6449,6497,6698,6708,6449,6696,6698,6497,6494,6692,6696,6494,6492,6693,6692,6492,6490,6688,6693,6490,6488,6689,6688,6488,6486,6684,6689,6486,6484,6685,6684,6484,6482,6680,6685,6482,6480,6681,6680,6480,6478,6678,6681,6478,6476,6674,6678,6476,6458,6675,6674,6458,6457,6461,6670,6675,6457,6463,6671,6670,6461,6465,6668,6671,6463,6467,6666,6668,6465,6469,6663,6666,6467,6471,6662,6663,6469,6473,6658,6662,6471, -6474,6659,6658,6473,7035,6472,6470,7036,7036,6470,6468,7037,7037,6468,6466,7038,7038,6466,6464,7039,7039,6464,6462,7040,7040,6462,6460,7041,7041,6460,6456,7042,7042,6456,6459,7030,7030,6459,6477,7029,7029,6477,6479,7028,7028,6479,6481,7027,7027,6481,6483,7026,7026,6483,6485,7025,7025,6485,6487,7024,7024,6487,6489,7023,7023,6489,6491,7022,7022,6491,6493,7021,7021,6493,6495,7020,7020,6495,6496,7018,7018,6496,6448,7019,7019,6448,6451,7031,7031,6451,6453,7032,7032,6453,6455,7033,7033,6455,6475,7034,6472,7035,7034,6475,7043,7044,6652,6651,6653,6652,7044,7045,6655,6653,7045,7046,6660,6655,7046,7047,6657,6660,7047,7048,6661,6657,7048,7049,6661,7049,7050,6664,6664,7050,7051,6665,6665,7051,7052,6667,6667,7052,7053,6672,7054,6669,6672,7053,6669,7054,7055,6676,7055,7056,6673,6676,6934,6677,6673,7056,7057,7058,7059,7060,7059,7061,7062,7060,7061,7063,7064,7062,7063,7065,7066,7064,7067,7068,7069,7070,7071,7072,7073,7074,7072,7075,7076,7073,7077,7078,7079,7080,7078,7081,7082,7079,7081,7083,7084,7082,7083,7085,7086,7084,7085,7087,7088,7086,7087,7089,7090,7088,7089,7091,7092,7090,7091,7093,7094,7092,7095,7096,7097,7098,7099,7100,7098,7097,7101,7102,7100,7099,7103,7102,7101,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7110,7109,7114,7115,7116,7117,7118,7119,7120,7116,7115,7121,7122,7120,7119,7123,7124,7122,7121,7125,7126,7124,7123,7127,7128,7126,7125,7129,7130,7128,7127,7131,7132,7130,7129,7133,7134,7135,7136,7136,7135,7137,7138,7137,7139,7140,7138,7139,7141,7142,7140,7143,7144,7145,7146,7147,7148,7149,7150,7148,7151,7152,7149,7153,7154,7155,7156,7154,7157,7158,7155,7157,7159,7160,7158,7159,7161,7162,7160,7161,7163,7164,7162,7163,7165,7166,7164,7165,7167,7168,7166,7169,7170,7168,7167,7170,7169,7171,7172,7173,7133,7136,7174,7174,7136,7138,7175,7140,7176,7175,7138,7176,7140,7142,7177,7178,7146,7145,7179,7149,7180,7181,7150,7180,7149,7152,7182,7155,7183,7184,7156,7158,7185,7183,7155,7160,7186,7185,7158,7162,7187,7186,7160,7164,7188,7187,7162,7166,7189,7188,7164,7168,7190,7189,7166,7170,7191,7190,7168,7191,7170,7172,7192,7118,7117, -7113,7114,7075,7077,7080,7076,7156,7184,7182,7152,7151,7153,7156,7152,7107,7106,7103,7104,7065,7067,7070,7066,7146,7178,7177,7142,7141,7143,7146,7142,7112,7111,7105,7108,7068,7071,7074,7069,7150,7181,7179,7145,7144,7147,7150,7145,7096,7057,7060,7097,7062,7099,7097,7060,7064,7101,7099,7062,7066,7104,7101,7064,7070,7107,7104,7066,7069,7108,7107,7070,7074,7112,7108,7069,7073,7109,7112,7074,7076,7114,7109,7073,7080,7118,7114,7076,7079,7115,7118,7080,7082,7119,7115,7079,7084,7121,7119,7082,7086,7123,7121,7084,7088,7125,7123,7086,7090,7127,7125,7088,7092,7129,7127,7090,7094,7131,7129,7092,7172,7193,7194,7192,7058,7173,7174,7059,7059,7174,7175,7061,7176,7063,7061,7175,7065,7063,7176,7177,7178,7067,7065,7177,7068,7067,7178,7179,7181,7071,7068,7179,7180,7072,7071,7181,7075,7072,7180,7182,7184,7077,7075,7182,7183,7078,7077,7184,7185,7081,7078,7183,7186,7083,7081,7185,7187,7085,7083,7186,7188,7087,7085,7187,7189,7089,7087,7188,7190,7091,7089,7189,7191,7093,7091,7190,7093,7191,7192,7094,7194,7131,7094,7192,7132,7131,7194,7193,7195,7132,7193,7196,7132,7195,7197,7130,7198,7128,7130,7197,7198,7199,7126,7128,7124,7126,7199,7200,7201,7122,7124,7200,7120,7122,7201,7202,7116,7120,7202,7203,7204,7205,7113,7117,7117,7116,7203,7204,7205,7206,7110,7113,7111,7110,7206,7105,7106,7105,7206,7103,7103,7206,7207,7102,7208,7100,7102,7207,7209,7098,7100,7208,7210,7095,7098,7209,7207,7206,7205,7211,7212,7211,7205,7204,7213,7212,7204,7203,7202,7214,7213,7203,7201,7215,7214,7202,7215,7201,7200,7216,7217,7216,7200,7199,7218,7208,7207,7211,7209,7208,7218,7219,7219,7218,7211,7212,7219,7220,7210,7209,7220,7219,7212,7213,7221,7220,7213,7214,7221,7214,7215,7216,7222,7210,7220,7221,7216,7217,7222,7221,7095,7210,7222,7223,7223,7222,7217,7224,7217,7199,7198,7224,7225,7224,7198,7197,7223,7226,7096,7095,7224,7225,7226,7223,7226,7227,7057,7096,7227,7226,7225,7228,7229,7230,7231,7232,7232,7231,7233,7234,7235,7236,7230,7229,7235,7228,7195,7236,7230,7236,7233,7231,7232,7234,7235,7229,7234,7227,7228,7235,7227,7234,7058,7057,7234,7233,7173,7058,7236,7237,7238,7233, -7233,7238,7133,7173,7195,7196,7237,7236,7195,7228,7225,7197,6753,6735,7239,7240,6991,6990,7241,7242,7243,6988,6991,7242,7134,7133,7238,7244,7241,6990,6992,7245,6934,7056,7246,6935,7247,7246,7056,7055,7248,7246,7247,7249,7055,7054,7250,7247,7249,7247,7250,7251,7237,7196,7243,7242,7241,7238,7237,7242,7244,7238,7241,7245,7245,6992,6935,7252,7134,7244,7248,7249,7135,7134,7249,7251,6935,7246,7248,7252,7244,7245,7252,7248,7239,7171,7169,7240,7253,7254,6734,6989,7239,6735,6734,7254,6989,6988,7243,7253,7196,7255,7253,7243,7254,7253,7255,7256,7239,7254,7256,7171,7172,7171,7256,7255,7255,7196,7193,7172,7240,7169,7167,7257,6753,7240,7257,7258,7257,7167,7165,7259,7258,7257,7259,7260,7163,7261,7259,7165,7260,7259,7261,7262,7161,7263,7261,7163,7263,7264,7262,7261,7159,7265,7263,7161,7266,7264,7263,7265,7267,7266,7265,7268,7157,7268,7265,7159,7154,7269,7268,7157,7270,7267,7268,7269,7153,7271,7269,7154,7269,7271,7272,7270,7273,7272,7271,7274,7153,7151,7274,7271,7273,7274,7275,7276,7148,7275,7274,7151,7147,7277,7275,7148,7278,7139,7137,7279,7280,7141,7139,7278,7141,7280,7281,7143,7143,7281,7282,7144,7144,7282,7277,7147,7251,7279,7137,7135,7279,7251,7250,7283,7283,7284,7278,7279,7284,7285,7280,7278,7285,7286,7281,7280,7286,7287,7282,7281,7287,7288,7277,7282,7288,7276,7275,7277,7054,7053,7283,7250,7283,7053,7052,7289,7051,7290,7289,7052,7050,7291,7290,7051,7049,7292,7291,7050,7048,7293,7292,7049,7047,7294,7293,7048,7046,7295,7294,7047,7045,7296,7295,7046,7044,7297,7296,7045,7043,7298,7297,7044,7299,7300,7301,7302,7302,7301,7303,7304,7304,7303,7305,7306,7306,7305,7307,7308,7308,7307,7309,7310,7310,7309,7311,7312,7312,7311,7313,7314,7314,7313,7315,7316,7316,7315,7317,7318,7298,7299,7302,7297,7297,7302,7304,7296,7296,7304,7306,7295,7295,7306,7308,7294,7294,7308,7310,7293,7293,7310,7312,7292,7292,7312,7314,7291,7291,7314,7316,7290,7290,7316,7318,7289,7284,7283,7289,7318,7318,7317,7285,7284,7286,7285,7317,7319,7319,7317,7315,7320,7313,7321,7320,7315,7313,7311,7322,7321,7311,7309,7323,7322,7324,7323,7309,7307,7307,7305,7325,7324,7305,7303, -7326,7325,7303,7301,7327,7326,7301,7300,7328,7327,7266,7329,7330,7264,7329,7331,7332,7330,7333,7334,7335,7336,7337,7338,7339,7340,7334,7337,7340,7335,7331,7333,7336,7332,7341,7342,7338,7337,7343,7341,7337,7334,7334,7333,7344,7343,7345,7346,7331,7329,7346,7344,7333,7331,7266,7267,7345,7329,7342,7341,7347,7348,7341,7343,7349,7347,7343,7344,7350,7349,7344,7346,7351,7350,7345,7352,7351,7346,7267,7270,7352,7345,7348,7347,7353,7354,7355,7353,7347,7349,7349,7350,7356,7355,7357,7356,7350,7351,7357,7351,7352,7358,7358,7352,7270,7272,7354,7353,7359,7360,7353,7355,7361,7359,7355,7356,7362,7361,7356,7357,7363,7362,7358,7364,7363,7357,7272,7273,7364,7358,7360,7359,7365,7366,7359,7361,7367,7365,7361,7362,7368,7367,7362,7363,7369,7368,7364,7370,7369,7363,7273,7276,7370,7364,7366,7365,7371,7372,7373,7371,7365,7367,7367,7368,7374,7373,7368,7369,7375,7374,7369,7370,7376,7375,7370,7276,7288,7376,7372,7371,7377,7378,7371,7373,7379,7377,7373,7374,7380,7379,7374,7375,7381,7380,7375,7376,7382,7381,7376,7288,7287,7382,7319,7382,7287,7286,7381,7382,7319,7383,7378,7377,7384,7385,7377,7379,7386,7384,7379,7380,7387,7386,7380,7381,7383,7387,7388,7320,7321,7389,7321,7322,7390,7389,7386,7387,7388,7389,7390,7384,7386,7389,7383,7319,7388,7387,7319,7320,7388,7391,7392,7393,7394,7395,7396,7392,7391,7396,7395,7397,7398,7398,7397,7399,7400,7400,7399,7401,7402,7402,7401,7403,7404,7404,7403,7405,7406,7406,7405,7407,7408,7408,7407,7409,7410,7264,7330,7411,7262,7412,7260,7262,7411,7260,7412,7413,7258,6753,7258,7413,6751,7392,7414,7415,7393,7396,7416,7414,7392,7416,7396,7398,7417,7417,7398,7400,7418,7418,7400,7402,7419,7419,7402,7404,7420,7420,7404,7406,7421,7421,7406,7408,7422,7422,7408,7410,7423,7424,7425,7426,7427,7428,7429,7425,7424,7429,7428,7430,7431,7431,7430,7432,7433,7433,7432,7434,7435,7435,7434,7436,7437,7437,7436,7438,7439,7439,7438,7440,7441,7441,7440,7442,7443,7444,7445,7327,7328,7445,7444,7423,7410,7445,7446,7326,7327,7446,7445,7410,7409,7338,7424,7427,7339,7342,7428,7424,7338,7428,7342,7348,7430,7430,7348,7354,7432,7432,7354,7360,7434,7434, -7360,7366,7436,7436,7366,7372,7438,7438,7372,7378,7440,7440,7378,7385,7442,7390,7447,7385,7384,7322,7323,7447,7390,7447,7448,7442,7385,7448,7447,7323,7324,7425,7391,7394,7426,7429,7395,7391,7425,7395,7429,7431,7397,7397,7431,7433,7399,7399,7433,7435,7401,7401,7435,7437,7403,7403,7437,7439,7405,7405,7439,7441,7407,7407,7441,7443,7409,7446,7449,7325,7326,7449,7448,7324,7325,7448,7449,7443,7442,7409,7443,7449,7446,7450,7451,7393,7415,7451,7452,7394,7393,7452,7453,7426,7394,7453,7454,7427,7426,7339,7427,7454,7455,7455,7456,7340,7339,7335,7340,7456,7457,7457,7458,7336,7335,7332,7336,7458,7459,7330,7332,7459,7411,7460,7461,7462,7463,7464,7465,7461,7460,7466,7467,7465,7464,7468,7469,7467,7466,7470,7471,7469,7468,7472,7473,7471,7470,7474,7475,7473,7472,7476,7477,7475,7474,7478,7479,7477,7476,7480,7481,7479,7478,7463,7462,7482,7483,7483,7482,7484,7485,7485,7484,7486,7487,7487,7486,7488,7489,7489,7488,7490,7491,7491,7490,7492,7493,7493,7492,7494,7495,7495,7494,7496,7497,7497,7496,7498,7499,7499,7498,7500,7501,7501,7500,7502,7503,7503,7502,7504,7505,7505,7504,7506,7507,7507,7506,7508,7509,7509,7508,7510,7511,7511,7510,7512,7513,7513,7512,7514,7515,7515,7514,7516,7517,7518,7519,7520,7521,7521,7520,7522,7523,7523,7522,7524,7525,7525,7524,7526,7527,7527,7526,7528,7529,7529,7528,7530,7531,7531,7530,7532,7533,7533,7532,7534,7535,7535,7534,7536,7537,7537,7536,7538,7539,7539,7538,7540,7541,7541,7540,7542,7543,7543,7542,7544,7545,7545,7544,7546,7547,7547,7546,7548,7549,7549,7548,7550,7551,7551,7550,7552,7553,7553,7552,7554,7555,7555,7554,7556,7557,7557,7556,7558,7559,7559,7558,7560,7561,7561,7560,7562,7563,7563,7562,7564,7565,7565,7564,7566,7567,7567,7566,7568,7569,7569,7568,7570,7571,7571,7570,7572,7573,7573,7572,7574,7575,7450,7518,7521,7451,7451,7521,7523,7452,7452,7523,7525,7453,7453,7525,7527,7454,7454,7527,7529,7455,7455,7529,7531,7456,7456,7531,7533,7457,7457,7533,7535,7458,7458,7535,7537,7459,7459,7537,7539,7411,7411,7539,7541,7412,7412,7541,7543,7413,7413,7543,7545,6751,6751,7545,7547,6752,6752,7547,7549,6749,6749,7549,7551, -6750,6750,7551,7553,6748,6748,7553,7555,6747,6747,7555,7557,6745,6745,7557,7559,6746,6746,7559,7561,6743,6743,7561,7563,6744,6744,7563,7565,6741,6741,7565,7567,6742,6742,7567,7569,6965,6965,7569,7571,6968,6968,7571,7573,6739,6739,7573,7575,6740,7576,7577,7578,7579,7579,7578,7580,7581,7581,7580,7582,7583,7583,7582,7584,7585,7585,7584,7586,7587,7587,7586,7588,7589,7589,7588,7590,7591,7591,7590,7592,7593,7593,7592,7594,7595,7595,7594,7596,7597,7597,7596,7598,7599,7599,7598,7600,7601,7601,7600,7602,7603,7603,7602,7604,7605,7605,7604,7606,7607,7607,7606,7608,7609,7609,7608,7610,7611,7611,7610,7612,7613,7613,7612,7614,7615,7615,7614,7616,7617,7617,7616,7618,7619,7619,7618,7620,7621,7621,7620,7622,7623,7623,7622,7624,7625,7625,7624,7626,7627,7627,7626,7628,7629,7629,7628,7630,7631,7631,7630,7632,7633,7577,7634,7635,7578,7578,7635,7636,7580,7580,7636,7637,7582,7582,7637,7638,7584,7584,7638,7639,7586,7586,7639,7640,7588,7588,7640,7641,7590,7590,7641,7642,7592,7592,7642,7643,7594,7594,7643,7644,7596,7596,7644,7645,7598,7598,7645,7646,7600,7600,7646,7647,7602,7602,7647,7648,7604,7604,7648,7649,7606,7606,7649,7650,7608,7608,7650,7651,7610,7610,7651,7652,7612,7612,7652,7653,7614,7614,7653,7654,7616,7616,7654,7655,7618,7618,7655,7656,7620,7620,7656,7657,7622,7622,7657,7658,7624,7624,7658,7659,7626,7626,7659,7660,7628,7628,7660,7661,7630,7630,7661,7662,7632,7634,7480,7478,7635,7635,7478,7476,7636,7636,7476,7474,7637,7637,7474,7472,7638,7638,7472,7470,7639,7639,7470,7468,7640,7640,7468,7466,7641,7641,7466,7464,7642,7642,7464,7460,7643,7643,7460,7463,7644,7644,7463,7483,7645,7645,7483,7485,7646,7646,7485,7487,7647,7647,7487,7489,7648,7648,7489,7491,7649,7649,7491,7493,7650,7650,7493,7495,7651,7651,7495,7497,7652,7652,7497,7499,7653,7653,7499,7501,7654,7654,7501,7503,7655,7655,7503,7505,7656,7656,7505,7507,7657,7657,7507,7509,7658,7658,7509,7511,7659,7659,7511,7513,7660,7660,7513,7515,7661,7661,7515,7517,7662,7519,7576,7579,7520,7520,7579,7581,7522,7522,7581,7583,7524,7524,7583,7585,7526,7526,7585,7587,7528,7528,7587,7589,7530,7530, -7589,7591,7532,7532,7591,7593,7534,7534,7593,7595,7536,7536,7595,7597,7538,7538,7597,7599,7540,7540,7599,7601,7542,7542,7601,7603,7544,7544,7603,7605,7546,7546,7605,7607,7548,7548,7607,7609,7550,7550,7609,7611,7552,7552,7611,7613,7554,7554,7613,7615,7556,7556,7615,7617,7558,7558,7617,7619,7560,7560,7619,7621,7562,7562,7621,7623,7564,7564,7623,7625,7566,7566,7625,7627,7568,7568,7627,7629,7570,7570,7629,7631,7572,7572,7631,7633,7574,6818,7663,7664,6817,6819,7665,7663,6818,6820,7666,7665,6819,6821,7667,7666,6820,6857,7668,7667,6821,6817,7664,7669,6816,6816,7669,7670,6815,6815,7670,7671,6814,6814,7671,7672,6813,6813,7672,7673,6826,6826,7673,7674,6825,6825,7674,7675,6824,6824,7675,7676,6823,6823,7676,7677,6822,6857,6822,7677,7668,7663,7665,7678,7679,7680,7678,7665,7666,7681,7680,7666,7667,7675,7674,7678,7680,7680,7681,7676,7675,7674,7673,7679,7678,7679,7682,7664,7663,7673,7672,7682,7679,7670,7682,7672,7671,7669,7664,7682,7670,7668,7677,7676,7681,7681,7667,7668,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7694,7693,7695,7696,7696,7695,7697,7698,7698,7697,7699,7700,7700,7699,7684,7683,7690,7689,7692,7691,7701,7702,7688,7687,7703,7704,7702,7701,7705,7706,7704,7703,7707,7708,7706,7705,7709,7710,7708,7707,7711,7712,7710,7709,7713,7714,7712,7711,7715,7716,7714,7713,7717,7718,7716,7715,7719,7720,7718,7717,7721,7722,7720,7719,7723,7724,7722,7721,7684,7725,7726,7685,7699,7727,7725,7684,7697,7728,7727,7699,7695,7729,7728,7697,7693,7730,7729,7695,7692,7731,7730,7693,7689,7732,7731,7692,7688,7733,7732,7689,7702,7734,7733,7688,7704,7735,7734,7702,7706,7736,7735,7704,7708,7737,7736,7706,7710,7738,7737,7708,7712,7739,7738,7710,7714,7740,7739,7712,7716,7741,7740,7714,7718,7742,7741,7716,7720,7743,7742,7718,7722,7744,7743,7720,7724,7745,7744,7722,7725,7746,7747,7726,7727,7748,7746,7725,7728,7749,7748,7727,7729,7750,7749,7728,7730,7751,7750,7729,7731,7752,7751,7730,7732,7753,7752,7731,7733,7754,7753,7732,7734,7755,7754,7733,7735,7756,7755,7734,7736,7757,7756,7735,7737,7758,7757,7736,7738,7759,7758,7737,7739,7760,7759,7738, -7740,7761,7760,7739,7741,7762,7761,7740,7742,7763,7762,7741,7743,7764,7763,7742,7744,7765,7764,7743,7745,7766,7765,7744,7746,7767,7768,7747,7754,7769,7770,7753,7752,7771,7772,7751,7751,7772,7773,7750,7750,7773,7774,7749,7749,7774,7775,7748,7748,7775,7767,7746,7753,7770,7771,7752,7755,7776,7769,7754,7756,7777,7776,7755,7757,7778,7777,7756,7758,7779,7778,7757,7759,7780,7779,7758,7760,7781,7780,7759,7761,7782,7781,7760,7762,7783,7782,7761,7763,7784,7783,7762,7764,7785,7784,7763,7765,7786,7785,7764,7766,7787,7786,7765,7767,7788,7789,7768,7769,7790,7791,7770,7771,7792,7793,7772,7772,7793,7794,7773,7773,7794,7795,7774,7774,7795,7796,7775,7775,7796,7788,7767,7770,7791,7792,7771,7776,7797,7790,7769,7777,7798,7797,7776,7778,7799,7798,7777,7779,7800,7799,7778,7780,7801,7800,7779,7781,7802,7801,7780,7782,7803,7802,7781,7783,7804,7803,7782,7784,7805,7804,7783,7785,7806,7805,7784,7786,7807,7806,7785,7787,7808,7807,7786,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7820,7819,7821,7822,7822,7821,7823,7824,7824,7823,7825,7826,7826,7825,7810,7809,7816,7815,7818,7817,7827,7828,7814,7813,7829,7830,7828,7827,7831,7832,7830,7829,7833,7834,7832,7831,7835,7836,7834,7833,7837,7838,7836,7835,7839,7840,7838,7837,7841,7842,7840,7839,7843,7844,7842,7841,7845,7846,7844,7843,7847,7848,7846,7845,7849,7850,7848,7847,7810,7851,7852,7811,7825,7853,7851,7810,7823,7854,7853,7825,7821,7855,7854,7823,7819,7856,7855,7821,7818,7857,7856,7819,7815,7858,7857,7818,7814,7859,7858,7815,7828,7860,7859,7814,7830,7861,7860,7828,7832,7862,7861,7830,7834,7863,7862,7832,7836,7864,7863,7834,7838,7865,7864,7836,7840,7866,7865,7838,7842,7867,7866,7840,7844,7868,7867,7842,7846,7869,7868,7844,7848,7870,7869,7846,7850,7871,7870,7848,7788,7809,7812,7789,7796,7826,7809,7788,7795,7824,7826,7796,7794,7822,7824,7795,7793,7820,7822,7794,7792,7817,7820,7793,7791,7816,7817,7792,7790,7813,7816,7791,7797,7827,7813,7790,7798,7829,7827,7797,7799,7831,7829,7798,7800,7833,7831,7799,7801,7835,7833,7800,7802,7837,7835,7801,7803,7839,7837,7802,7804,7841,7839,7803,7805,7843, -7841,7804,7806,7845,7843,7805,7807,7847,7845,7806,7808,7849,7847,7807,7872,7873,7874,7875,7876,7877,7878,7879,7880,7876,7879,7881,7882,7880,7881,7883,7884,7882,7883,7885,7886,7884,7885,7887,7888,7889,7890,7891,7892,7888,7891,7893,7894,7892,7893,7895,7896,7894,7895,7897,7889,7886,7887,7890,7898,7872,7875,7899,7900,7901,7902,7903,7901,7898,7899,7902,7877,7874,7873,7878,7904,7900,7903,7905,7906,7904,7905,7907,7908,7906,7907,7909,7910,7908,7909,7911,7912,7910,7911,7913,7914,7912,7913,7915,7916,7914,7915,7917,7918,7916,7917,7919,7920,7918,7919,7921,7921,7896,7897,7920,7922,7923,7924,7925,7923,7926,7927,7924,7926,7928,7929,7927,7930,7931,7932,7933,7934,7930,7933,7935,7936,7934,7935,7937,7938,7936,7937,7939,7940,7938,7939,7941,7942,7940,7941,7943,7944,7942,7943,7945,7946,7944,7945,7947,7948,7949,7946,7947,7928,7949,7948,7929,7931,7950,7951,7932,7950,7952,7953,7951,7952,7954,7955,7953,7954,7956,7957,7955,7956,7958,7959,7957,7958,7960,7961,7959,7960,7962,7963,7961,7962,7964,7965,7963,7964,7966,7967,7965,7966,7968,7969,7967,7970,7922,7925,7971,7968,7970,7971,7969,6498,6501,7972,7973,6502,6505,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7980,7983,7985,7986,7984,7985,7987,7988,7986,7987,7989,7975,7974,7988,7989,7982,7981,7976,7979,7977,7990,7991,7978,7990,7992,7993,7991,7992,7994,7995,7993,7994,7996,7997,7995,7998,7997,7996,7999,7998,7999,8000,8001,8000,8002,8003,8001,8002,8004,8005,8003,8004,8006,8007,8005,8006,8008,8009,8007,8008,8010,8011,8009,8010,6543,6542,8011,7974,6505,6545,8012,7988,7974,8012,8013,8013,8014,7986,7988,8014,8015,7984,7986,8015,8016,7980,7984,8016,8017,7981,7980,7976,7981,8017,8018,8018,8019,7977,7976,8019,8020,7990,7977,8020,8021,7992,7990,8021,8022,7994,7992,8022,8023,7996,7994,7999,7996,8023,8024,8000,7999,8024,8025,8025,8026,8002,8000,8026,8027,8004,8002,8027,8028,8006,8004,8028,8029,8008,8006,8029,8030,8010,8008,8030,6564,6543,8010,8012,6545,6566,8031,8013,8012,8031,8032,8033,8014,8013,8032,8034,8015,8014,8033,8034,8035,8016,8015,8035,8036,8017,8016,8018,8017,8036,8037,8037,8038,8019,8018, -8039,8020,8019,8038,8040,8021,8020,8039,8041,8022,8021,8040,8042,8023,8022,8041,8024,8023,8042,8043,8025,8024,8043,8044,8045,8026,8025,8044,8046,8027,8026,8045,8047,8028,8027,8046,8048,8029,8028,8047,8049,8030,8029,8048,6585,6564,8030,8049,6586,8050,8051,6587,8051,8050,8052,8053,8053,8052,8054,8055,8055,8054,8056,8057,8057,8056,8058,8059,8059,8058,8060,8061,8061,8060,8062,8063,8064,8063,8062,8065,8065,8066,8067,8064,8067,8066,8068,8069,8069,8068,8070,8071,8070,8072,8073,8071,8073,8072,8074,8075,8075,8074,8076,8077,6616,8078,8079,6617,8080,8079,8078,8081,8082,8080,8081,8083,8083,8084,8085,8082,8086,8085,8084,8087,8076,8086,8087,8077,7975,8050,6586,6502,8052,8050,7975,7989,8054,8052,7989,7987,8056,8054,7987,7985,8058,8056,7985,7983,8060,8058,7983,7982,8062,8060,7982,7979,8065,8062,7979,7978,7991,8066,8065,7978,8068,8066,7991,7993,8070,8068,7993,7995,7997,8072,8070,7995,8074,8072,7997,7998,8076,8074,7998,8001,8003,8086,8076,8001,8005,8085,8086,8003,8082,8085,8005,8007,8009,8080,8082,8007,8011,8079,8080,8009,6617,8079,8011,6542,6628,6587,8051,8088,8053,8089,8088,8051,8089,8053,8055,8090,8090,8055,8057,8091,8091,8057,8059,8092,8092,8059,8061,8093,8063,8094,8093,8061,8064,8095,8094,8063,8096,8073,8075,8097,8073,8096,8098,8071,8071,8098,8099,8069,8069,8099,8100,8067,8067,8100,8095,8064,8101,8078,6616,6643,8102,8081,8078,8101,8081,8102,8103,8083,8104,8084,8083,8103,8084,8104,8105,8087,8106,8077,8087,8105,8075,8077,8106,8097,8107,8108,6651,6650,8108,8107,8109,8110,8110,8109,8111,8112,8113,8114,8115,8116,8117,8113,8116,8118,8119,8120,8117,8118,8119,8121,8122,8120,8123,8122,8121,8124,8125,8126,8127,8128,8129,8130,8131,8132,8132,8133,8134,8129,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8147,8150,8152,8153,8151,8152,8154,8155,8153,8154,8156,6701,6702,8155,8156,6650,6704,8157,8107,8107,8157,8158,8109,8127,8126,8123,8124,8131,8130,8125,8128,8134,8133,8137,8136,8141,8140,8135,8138,8145,8144,8139,8142,8149,8148,8143,8146,8159,6707,6701,8156,8156,8154,8160,8159,8157,6704,6707,8159,8160,8158, -8157,8159,8115,8114,8112,8111,6709,6712,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8174,8173,8176,8175,8187,8188,8184,8183,8189,8161,6712,6740,8190,8165,8164,8191,8192,8169,8168,8193,8173,8172,8194,8195,8176,8173,8195,8196,8197,8177,8176,8196,8198,8181,8180,8199,8184,8188,8200,8201,8185,8184,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8208,8207,8211,8212,8212,8211,8213,8214,7973,7972,8214,8213,8204,8203,8215,8216,8215,8217,8218,8216,8219,8220,8093,8094,8221,8219,8094,8095,8222,8221,8095,8100,8223,8222,8100,8099,8223,8099,8098,8224,8224,8098,8096,8225,8225,8096,8097,8226,8226,8097,8106,8227,8227,8106,8105,8228,8228,8105,8104,8229,8229,8104,8103,8230,8230,8103,8102,8231,8231,8102,8101,8232,8232,8101,6643,6784,8233,8234,8235,8236,8234,8237,8238,8235,8237,8239,8240,8238,8239,8241,8242,8240,8241,8243,8244,8242,8243,8245,8246,8244,8245,8247,8248,8246,8247,8249,8250,8248,8249,8251,8252,8250,8253,8254,8255,8256,8257,8233,8236,8258,8258,8259,8260,8257,8259,8255,8254,8260,8261,8262,8237,8234,8262,8263,8239,8237,8263,8264,8241,8239,8264,8265,8243,8241,8265,8266,8245,8243,8266,8267,8247,8245,8267,8268,8249,8247,8268,8269,8251,8249,8270,8271,8254,8253,8260,8254,8271,8272,8257,8260,8272,8273,8273,8274,8233,8257,8274,8261,8234,8233,8258,8236,8275,8276,8276,8277,8259,8258,8278,8255,8259,8277,8256,8255,8278,8279,8250,8252,8280,8281,8248,8250,8281,8282,8246,8248,8282,8283,8244,8246,8283,8284,8242,8244,8284,8285,8240,8242,8285,8286,8238,8240,8286,8287,8235,8238,8287,8288,8236,8235,8288,8275,8289,8290,8291,8292,6845,8291,8290,6846,6847,8287,8286,6848,8287,6847,6849,8288,8288,6849,6851,8293,8277,8276,8089,8090,8088,8089,8276,8275,8293,6851,6628,8088,8088,8275,8288,8293,8284,8291,6845,8285,8292,8291,8284,8283,8285,6845,6848,8286,8214,7972,8290,8289,6846,8290,7972,6501,8289,8294,8212,8214,8292,8295,8294,8289,8283,8282,8295,8292,8282,8281,8296,8295,8295,8296,8297,8294,8294,8297,8208,8212,8298,8299,8270,8253,8300,8298,8253,8256,8301,8300,8256,8279, -8281,8280,8302,8296,8296,8302,8303,8297,8297,8303,8209,8208,8304,8301,8279,8305,8306,8304,8305,8307,8206,8306,8307,8203,8278,8308,8305,8279,8308,8309,8307,8305,8203,8307,8309,8215,8277,8310,8308,8278,8310,8277,8090,8091,8309,8308,8310,8311,8218,8217,8093,8220,8215,8309,8311,8217,8311,8310,8091,8092,8092,8093,8217,8311,8206,8205,8210,8209,8303,8306,8206,8209,8302,8304,8306,8303,8280,8301,8304,8302,8280,8252,8300,8301,8252,8251,8298,8300,8251,8269,8299,8298,6702,6871,8312,8155,8155,8312,8313,8153,8153,8313,8314,8151,8315,6877,6876,8316,8317,8315,8316,8318,8319,8317,8318,8320,8321,6883,6877,8315,8322,8321,8315,8317,8323,8322,8317,8319,8324,6887,6883,8321,8325,8324,8321,8322,8326,8325,8322,8323,8316,6876,6891,8327,8318,8316,8327,8328,8320,8318,8328,8329,8204,8216,8330,8331,8331,8330,8332,8333,8333,8332,8334,8335,8335,8334,8336,8337,8337,8336,8338,8339,8339,8338,8319,8320,8339,8320,8329,8340,8341,8342,8333,8335,8342,8343,8331,8333,8343,8205,8204,8331,8210,8205,8343,8344,8342,8345,8344,8343,8341,8346,8345,8342,8346,8341,8335,8337,8347,8346,8337,8339,8340,8348,8347,8339,8349,8207,8210,8344,8327,6891,6498,7973,8328,8327,7973,8213,8329,8328,8213,8211,8340,8329,8211,8207,8349,8348,8340,8207,8348,8345,8346,8347,8349,8344,8345,8348,8338,8336,8323,8319,8323,8336,8334,8326,8330,8216,8218,8350,8332,8330,8350,8351,8351,8352,8334,8332,8352,8314,8326,8334,8312,6871,6887,8324,8313,8312,8324,8325,8314,8313,8325,8326,8147,8151,8314,8352,8353,8147,8352,8351,8354,8353,8351,8350,8218,8220,8354,8350,8148,8147,8353,8355,8220,8219,8356,8354,8355,8353,8354,8356,8143,8148,8355,8357,8356,8358,8357,8355,8219,8221,8358,8356,8359,8144,8143,8357,8357,8358,8360,8359,8361,8360,8358,8221,8359,8360,8362,8363,8363,8362,8364,8365,8365,8364,8366,8367,8367,8366,8368,8369,8369,8368,8370,8371,8359,8363,8139,8144,8363,8365,8140,8139,8135,8140,8365,8367,8136,8135,8367,8369,8369,8371,8134,8136,8360,8361,8372,8362,8373,8374,8366,8364,8368,8366,8374,8375,8372,8373,8364,8362,8376,8361,8221,8222,8377,8378,8374,8373,8379,8377,8373,8372,8376,8379,8372,8361,8378,8377, -8380,8381,8377,8379,8382,8380,8382,8379,8376,8383,8383,8376,8222,8223,8384,8383,8223,8385,8383,8384,8386,8382,8386,8387,8380,8382,8224,8388,8385,8223,8388,8389,8390,8385,8175,8390,8389,8174,8388,8391,8392,8389,8391,8388,8224,8225,8389,8392,8171,8174,8172,8169,8192,8194,8170,8169,8172,8171,8393,8391,8225,8226,8394,8392,8391,8393,8170,8171,8392,8394,8395,8393,8226,8227,8393,8395,8396,8394,8394,8396,8167,8170,8168,8165,8190,8193,8166,8165,8168,8167,8397,8166,8167,8396,8397,8396,8395,8398,8227,8228,8398,8395,8228,8229,8399,8398,8398,8399,8400,8397,8397,8400,8163,8166,8164,8401,8402,8191,8403,8401,8164,8163,8402,8401,8404,8405,8406,8404,8401,8403,8231,8407,8408,8230,8399,8229,8230,8408,8400,8399,8408,8409,8409,8408,8407,8410,8403,8409,8410,8406,8163,8400,8409,8403,8405,8404,8161,8189,8162,8161,8404,8406,8407,8231,8232,8411,8411,8412,8410,8407,8412,8162,8406,8410,8411,8232,6784,6977,8412,8411,6977,6978,6978,6709,8162,8412,8413,8384,8385,8390,8384,8413,8414,8386,8180,8177,8197,8199,8178,8177,8180,8179,8390,8175,8178,8413,8413,8178,8179,8414,8387,8386,8414,8415,8188,8181,8198,8200,8182,8181,8188,8187,8414,8179,8182,8415,8387,8415,8416,8417,8381,8380,8387,8417,8415,8182,8187,8416,8417,8416,8418,8419,8378,8381,8420,8421,8375,8374,8378,8421,8420,8381,8417,8419,8418,8416,8187,8183,8419,8418,8422,8423,8421,8420,8424,8425,8368,8375,8426,8370,8422,8418,8183,8186,8424,8420,8419,8423,8421,8425,8426,8375,7879,7878,8427,8428,7881,7879,8428,8429,7883,7881,8429,8430,7885,7883,8430,8431,7887,7885,8431,8432,7890,7887,8432,8433,7891,7890,8433,8434,7893,7891,8434,8435,7895,7893,8435,8436,7897,7895,8436,8437,7920,7897,8437,8438,8439,7918,7920,8438,8440,7916,7918,8439,8441,7914,7916,8440,8442,7912,7914,8441,8443,7910,7912,8442,8444,7908,7910,8443,8445,7906,7908,8444,8446,7904,7906,8445,8447,7900,7904,8446,8447,8448,7901,7900,8449,7898,7901,8448,8450,7872,7898,8449,8450,8451,7873,7872,7878,7873,8451,8427,7899,7875,8452,8453,7902,7899,8453,8454,7903,7902,8454,8455,7905,7903,8455,8456,7907,7905,8456,8457,7909,7907,8457,8458,7911,7909,8458,8459, -7913,7911,8459,8460,7915,7913,8460,8461,7917,7915,8461,8462,7919,7917,8462,8463,8464,7921,7919,8463,8465,7874,7877,8466,7875,7874,8465,8452,8467,8466,7877,7876,7880,8468,8467,7876,7882,8469,8468,7880,7884,8470,8469,7882,7886,8471,8470,7884,7889,8472,8471,7886,7888,8473,8472,7889,7892,8474,8473,7888,7894,8475,8474,7892,7896,8476,8475,7894,8464,8476,7896,7921,8111,7929,7948,8115,8109,7927,7929,8111,8158,7924,7927,8109,8160,7925,7924,8158,7971,7925,8160,8154,8152,7969,7971,8154,8150,7967,7969,8152,8149,7965,7967,8150,8146,7963,7965,8149,8145,7961,7963,8146,8142,7959,7961,8145,8141,7957,7959,8142,8138,7955,7957,8141,8137,7953,7955,8138,8133,7951,7953,8137,8132,7932,7951,8133,8131,7933,7932,8132,7935,7933,8131,8128,7937,7935,8128,8127,7939,7937,8127,8124,7941,7939,8124,8121,7943,7941,8121,8119,7945,7943,8119,8118,7947,7945,8118,8116,7948,7947,8116,8115,8469,8470,7944,7946,8470,8471,7942,7944,8471,8472,7940,7942,8472,8473,7938,7940,8473,8474,7936,7938,8474,8475,7934,7936,8475,8476,7930,7934,8476,8464,7931,7930,8464,8463,7950,7931,8463,8462,7952,7950,8462,8461,7954,7952,8461,8460,7956,7954,8460,8459,7958,7956,8459,8458,7960,7958,8458,8457,7962,7960,8457,8456,7964,7962,8456,8455,7966,7964,8455,8454,7968,7966,8454,8453,7970,7968,8453,8452,7922,7970,8452,8465,7923,7922,8465,8466,7926,7923,8466,8467,7928,7926,8467,8468,7949,7928,7946,7949,8468,8469,7043,6651,8108,8477,8110,8478,8477,8108,8112,8479,8478,8110,8114,8480,8479,8112,8113,8481,8480,8114,8117,8482,8481,8113,8117,8120,8483,8482,8120,8122,8484,8483,8122,8123,8485,8484,8123,8126,8486,8485,8487,8486,8126,8125,8125,8130,8488,8487,8488,8130,8129,8489,8371,8489,8129,8134,8490,8491,8492,8493,8492,8491,8494,8495,8495,8494,8496,8497,8497,8496,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8507,8506,8508,8509,8510,8511,8512,8513,8513,8512,8514,8515,8515,8514,8516,8517,8517,8516,8518,8519,8519,8518,8520,8521,8521,8520,8522,8523,8523,8522,8524,8525,8525,8524,8526,8527,8528,8529,8530,8531,8532,8530,8529,8533,8534,8532,8533,8535,8536,8537,8534,8535,8538,8539,8540,8541,8542,8543, -8544,8545,8546,8547,8542,8545,8548,8549,8550,8551,8552,8548,8551,8553,8554,8552,8553,8555,8556,8554,8555,8557,8558,8556,8557,8559,8560,8558,8559,8561,8562,8560,8561,8563,8564,8562,8563,8565,8566,8567,8568,8569,8567,8570,8571,8568,8571,8570,8572,8573,8573,8572,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8583,8582,8584,8585,8586,8587,8588,8589,8589,8588,8590,8591,8591,8590,8592,8593,8593,8592,8594,8595,8595,8594,8596,8597,8597,8596,8598,8599,8599,8598,8600,8601,8602,8601,8600,8603,8603,8604,8605,8602,8606,8607,8567,8566,8607,8608,8570,8567,8572,8570,8608,8609,8609,8610,8574,8572,8611,8612,8578,8577,8582,8581,8613,8614,8614,8615,8584,8582,8588,8587,8616,8617,8590,8588,8617,8618,8592,8590,8618,8619,8594,8592,8619,8620,8596,8594,8620,8621,8598,8596,8621,8622,8600,8598,8622,8623,8603,8600,8623,8624,8624,8625,8604,8603,8549,8547,8546,8550,8509,8508,8511,8510,8587,8584,8615,8616,8585,8584,8587,8586,8540,8537,8536,8541,8499,8498,8501,8500,8577,8574,8610,8611,8575,8574,8577,8576,8543,8539,8538,8544,8503,8502,8505,8504,8581,8578,8612,8613,8579,8578,8581,8580,8531,8530,8491,8490,8494,8491,8530,8532,8496,8494,8532,8534,8498,8496,8534,8537,8501,8498,8537,8540,8502,8501,8540,8539,8505,8502,8539,8543,8506,8505,8543,8542,8508,8506,8542,8547,8511,8508,8547,8549,8512,8511,8549,8548,8514,8512,8548,8552,8516,8514,8552,8554,8518,8516,8554,8556,8520,8518,8556,8558,8522,8520,8558,8560,8524,8522,8560,8562,8526,8524,8562,8564,8604,8625,8626,8627,8493,8492,8607,8606,8492,8495,8608,8607,8609,8608,8495,8497,8499,8610,8609,8497,8611,8610,8499,8500,8503,8612,8611,8500,8613,8612,8503,8504,8614,8613,8504,8507,8509,8615,8614,8507,8616,8615,8509,8510,8617,8616,8510,8513,8618,8617,8513,8515,8619,8618,8515,8517,8620,8619,8517,8519,8621,8620,8519,8521,8622,8621,8521,8523,8623,8622,8523,8525,8624,8623,8525,8527,8527,8526,8625,8624,8626,8625,8526,8564,8565,8627,8626,8564,8628,8629,8627,8565,8565,8563,8630,8628,8631,8630,8563,8561,8631,8561,8559,8632,8557,8633,8632,8559,8634,8633,8557,8555,8553,8635,8634,8555,8551,8636,8635,8553,8637,8550,8546,8638, -8550,8637,8636,8551,8638,8546,8545,8639,8544,8538,8639,8545,8541,8536,8639,8538,8536,8535,8640,8639,8641,8640,8535,8533,8642,8641,8533,8529,8643,8642,8529,8528,8640,8644,8638,8639,8645,8637,8638,8644,8646,8636,8637,8645,8635,8636,8646,8647,8634,8635,8647,8648,8648,8649,8633,8634,8650,8632,8633,8649,8651,8644,8640,8641,8642,8652,8651,8641,8652,8645,8644,8651,8652,8642,8643,8653,8653,8646,8645,8652,8654,8647,8646,8653,8654,8649,8648,8647,8655,8654,8653,8643,8649,8654,8655,8650,8528,8656,8655,8643,8656,8657,8650,8655,8650,8657,8631,8632,8658,8630,8631,8657,8656,8528,8531,8659,8657,8656,8659,8658,8659,8531,8490,8660,8660,8661,8658,8659,8662,8663,8664,8665,8663,8666,8667,8664,8668,8662,8665,8669,8668,8669,8628,8661,8665,8664,8667,8669,8663,8662,8668,8666,8666,8668,8661,8660,8660,8490,8493,8666,8666,8493,8606,8667,8669,8667,8670,8671,8667,8606,8566,8670,8628,8669,8671,8629,8628,8630,8658,8661,8202,8672,8673,8185,8424,8674,8675,8425,8676,8674,8424,8423,8569,8677,8670,8566,8675,8678,8426,8425,8371,8370,8679,8489,8680,8488,8489,8679,8681,8682,8680,8679,8488,8680,8683,8487,8682,8684,8683,8680,8671,8674,8676,8629,8675,8674,8671,8670,8677,8678,8675,8670,8678,8685,8370,8426,8569,8682,8681,8677,8568,8684,8682,8569,8370,8685,8681,8679,8677,8681,8685,8678,8673,8672,8602,8605,8686,8422,8186,8687,8673,8687,8186,8185,8422,8686,8676,8423,8629,8676,8686,8688,8687,8689,8688,8686,8673,8605,8689,8687,8604,8688,8689,8605,8688,8604,8627,8629,8672,8690,8601,8602,8202,8691,8690,8672,8690,8692,8599,8601,8691,8693,8692,8690,8597,8599,8692,8694,8693,8695,8694,8692,8595,8597,8694,8696,8696,8694,8695,8697,8593,8595,8696,8698,8699,8698,8696,8697,8700,8701,8698,8699,8591,8593,8698,8701,8589,8591,8701,8702,8703,8702,8701,8700,8586,8589,8702,8704,8702,8703,8705,8704,8706,8707,8704,8705,8586,8704,8707,8585,8706,8708,8709,8707,8583,8585,8707,8709,8580,8583,8709,8710,8711,8712,8571,8573,8713,8711,8573,8575,8575,8576,8714,8713,8576,8579,8715,8714,8579,8580,8710,8715,8684,8568,8571,8712,8712,8716,8683,8684,8716,8712,8711,8717,8717,8711,8713,8718,8718,8713, -8714,8719,8719,8714,8715,8720,8720,8715,8710,8721,8721,8710,8709,8708,8487,8683,8716,8486,8716,8722,8485,8486,8484,8485,8722,8723,8483,8484,8723,8724,8482,8483,8724,8725,8481,8482,8725,8726,8480,8481,8726,8727,8479,8480,8727,8728,8478,8479,8728,8729,8477,8478,8729,8730,7043,8477,8730,7298,7299,8731,8732,7300,8731,8733,8734,8732,8733,8735,8736,8734,8735,8737,8738,8736,8737,8739,8740,8738,8739,8741,8742,8740,8741,8743,8744,8742,8743,8745,8746,8744,8745,8747,8748,8746,7298,8730,8731,7299,8730,8729,8733,8731,8729,8728,8735,8733,8728,8727,8737,8735,8727,8726,8739,8737,8726,8725,8741,8739,8725,8724,8743,8741,8724,8723,8745,8743,8723,8722,8747,8745,8717,8747,8722,8716,8747,8717,8718,8748,8719,8749,8748,8718,8749,8750,8746,8748,8744,8746,8750,8751,8744,8751,8752,8742,8742,8752,8753,8740,8754,8738,8740,8753,8738,8754,8755,8736,8736,8755,8756,8734,8734,8756,8757,8732,8732,8757,7328,7300,8699,8697,8758,8759,8759,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8765,8764,8767,8766,8761,8760,8763,8762,8770,8766,8769,8771,8772,8765,8766,8770,8765,8772,8773,8762,8774,8759,8761,8775,8775,8761,8762,8773,8699,8759,8774,8700,8771,8776,8777,8770,8770,8777,8778,8772,8772,8778,8779,8773,8773,8779,8780,8775,8774,8775,8780,8781,8700,8774,8781,8703,8776,8782,8783,8777,8784,8778,8777,8783,8778,8784,8785,8779,8786,8780,8779,8785,8786,8787,8781,8780,8787,8705,8703,8781,8782,8788,8789,8783,8783,8789,8790,8784,8784,8790,8791,8785,8785,8791,8792,8786,8787,8786,8792,8793,8705,8787,8793,8706,8788,8794,8795,8789,8789,8795,8796,8790,8790,8796,8797,8791,8791,8797,8798,8792,8793,8792,8798,8799,8706,8793,8799,8708,8794,8800,8801,8795,8802,8796,8795,8801,8796,8802,8803,8797,8797,8803,8804,8798,8798,8804,8805,8799,8799,8805,8721,8708,8800,8806,8807,8801,8801,8807,8808,8802,8802,8808,8809,8803,8803,8809,8810,8804,8804,8810,8811,8805,8805,8811,8720,8721,8749,8719,8720,8811,8810,8812,8749,8811,8806,8813,8814,8807,8807,8814,8815,8808,8808,8815,8816,8809,8809,8816,8812,8810,8817,8818,8751,8750,8751,8818,8819,8752,8815,8818,8817,8816,8819,8818,8815,8814, -8812,8816,8817,8749,8749,8817,8750,8820,8821,8822,8823,8824,8820,8823,8825,8825,8826,8827,8824,8826,8828,8829,8827,8828,8830,8831,8829,8830,8832,8833,8831,8832,8834,8835,8833,8834,8836,8837,8835,8836,8838,8839,8837,8697,8695,8840,8758,8841,8840,8695,8693,8693,8691,8842,8841,8202,8201,8842,8691,8823,8822,8843,8844,8825,8823,8844,8845,8845,8846,8826,8825,8846,8847,8828,8826,8847,8848,8830,8828,8848,8849,8832,8830,8849,8850,8834,8832,8850,8851,8836,8834,8851,7423,8838,8836,8852,8853,8854,8855,8856,8852,8855,8857,8857,8858,8859,8856,8858,8860,8861,8859,8860,8862,8863,8861,8862,8864,8865,8863,8864,8866,8867,8865,8866,8868,8869,8867,8868,8870,8871,8869,7444,7328,8757,8872,8872,8838,7423,7444,8872,8757,8756,8873,8873,8839,8838,8872,8769,8768,8853,8852,8771,8769,8852,8856,8856,8859,8776,8771,8859,8861,8782,8776,8861,8863,8788,8782,8863,8865,8794,8788,8865,8867,8800,8794,8867,8869,8806,8800,8869,8871,8813,8806,8819,8814,8813,8874,8752,8819,8874,8753,8874,8813,8871,8875,8875,8754,8753,8874,8855,8854,8821,8820,8857,8855,8820,8824,8824,8827,8858,8857,8827,8829,8860,8858,8829,8831,8862,8860,8831,8833,8864,8862,8833,8835,8866,8864,8835,8837,8868,8866,8837,8839,8870,8868,8873,8756,8755,8876,8876,8755,8754,8875,8875,8871,8870,8876,8839,8873,8876,8870,8877,8843,8822,8878,8878,8822,8821,8879,8879,8821,8854,8880,8880,8854,8853,8881,8768,8882,8881,8853,8882,8768,8767,8883,8764,8884,8883,8767,8884,8764,8763,8885,8760,8886,8885,8763,8758,8840,8886,8760,8887,8888,8889,8890,8891,8887,8890,8892,8893,8891,8892,8894,8895,8893,8894,8896,8897,8895,8896,8898,8899,8897,8898,8900,8901,8899,8900,8902,8903,8901,8902,8904,8905,8903,8904,8906,8907,8905,8906,8908,8888,8909,8910,8889,8909,8911,8912,8910,8911,8913,8914,8912,8913,8915,8916,8914,8915,8917,8918,8916,8917,8919,8920,8918,8919,8921,8922,8920,8921,8923,8924,8922,8923,8925,8926,8924,8925,8927,8928,8926,8927,8929,8930,8928,8929,8931,8932,8930,8931,8933,8934,8932,8933,8935,8936,8934,8935,8937,8938,8936,8937,8939,8940,8938,8939,8941,8942,8940,8941,7517,7516,8942,8943,8944,8945,8946,8944,8947,8948, -8945,8947,8949,8950,8948,8949,8951,8952,8950,8951,8953,8954,8952,8953,8955,8956,8954,8955,8957,8958,8956,8957,8959,8960,8958,8959,8961,8962,8960,8961,8963,8964,8962,8963,8965,8966,8964,8965,8967,8968,8966,8967,8969,8970,8968,8969,8971,8972,8970,8971,8973,8974,8972,8973,8975,8976,8974,8975,8977,8978,8976,8977,8979,8980,8978,8979,8981,8982,8980,8981,8983,8984,8982,8983,8985,8986,8984,8985,8987,8988,8986,8987,8989,8990,8988,8989,8991,8992,8990,8991,8993,8994,8992,8993,8995,8996,8994,8995,8997,8998,8996,8997,7575,7574,8998,8877,8878,8944,8943,8878,8879,8947,8944,8879,8880,8949,8947,8880,8881,8951,8949,8881,8882,8953,8951,8882,8883,8955,8953,8883,8884,8957,8955,8884,8885,8959,8957,8885,8886,8961,8959,8886,8840,8963,8961,8840,8841,8965,8963,8841,8842,8967,8965,8842,8201,8969,8967,8201,8200,8971,8969,8200,8198,8973,8971,8198,8199,8975,8973,8199,8197,8977,8975,8197,8196,8979,8977,8196,8195,8981,8979,8195,8194,8983,8981,8194,8192,8985,8983,8192,8193,8987,8985,8193,8190,8989,8987,8190,8191,8991,8989,8191,8402,8993,8991,8402,8405,8995,8993,8405,8189,8997,8995,8189,6740,7575,8997,8999,9000,9001,9002,9000,9003,9004,9001,9003,9005,9006,9004,9005,9007,9008,9006,9007,9009,9010,9008,9009,9011,9012,9010,9011,9013,9014,9012,9013,9015,9016,9014,9015,9017,9018,9016,9017,9019,9020,9018,9019,9021,9022,9020,9021,9023,9024,9022,9023,9025,9026,9024,9025,9027,9028,9026,9027,9029,9030,9028,9029,9031,9032,9030,9031,9033,9034,9032,9033,9035,9036,9034,9035,9037,9038,9036,9037,9039,9040,9038,9039,9041,9042,9040,9041,9043,9044,9042,9043,9045,9046,9044,9045,9047,9048,9046,9047,9049,9050,9048,9049,9051,9052,9050,9051,9053,9054,9052,9053,7633,7632,9054,9002,9001,9055,9056,9001,9004,9057,9055,9004,9006,9058,9057,9006,9008,9059,9058,9008,9010,9060,9059,9010,9012,9061,9060,9012,9014,9062,9061,9014,9016,9063,9062,9016,9018,9064,9063,9018,9020,9065,9064,9020,9022,9066,9065,9022,9024,9067,9066,9024,9026,9068,9067,9026,9028,9069,9068,9028,9030,9070,9069,9030,9032,9071,9070,9032,9034,9072,9071,9034,9036,9073,9072,9036,9038,9074,9073,9038,9040,9075,9074,9040, -9042,9076,9075,9042,9044,9077,9076,9044,9046,9078,9077,9046,9048,9079,9078,9048,9050,9080,9079,9050,9052,9081,9080,9052,9054,9082,9081,9054,7632,7662,9082,9056,9055,8905,8907,9055,9057,8903,8905,9057,9058,8901,8903,9058,9059,8899,8901,9059,9060,8897,8899,9060,9061,8895,8897,9061,9062,8893,8895,9062,9063,8891,8893,9063,9064,8887,8891,9064,9065,8888,8887,9065,9066,8909,8888,9066,9067,8911,8909,9067,9068,8913,8911,9068,9069,8915,8913,9069,9070,8917,8915,9070,9071,8919,8917,9071,9072,8921,8919,9072,9073,8923,8921,9073,9074,8925,8923,9074,9075,8927,8925,9075,9076,8929,8927,9076,9077,8931,8929,9077,9078,8933,8931,9078,9079,8935,8933,9079,9080,8937,8935,9080,9081,8939,8937,9081,9082,8941,8939,9082,7662,7517,8941,8946,8945,9000,8999,8945,8948,9003,9000,8948,8950,9005,9003,8950,8952,9007,9005,8952,8954,9009,9007,8954,8956,9011,9009,8956,8958,9013,9011,8958,8960,9015,9013,8960,8962,9017,9015,8962,8964,9019,9017,8964,8966,9021,9019,8966,8968,9023,9021,8968,8970,9025,9023,8970,8972,9027,9025,8972,8974,9029,9027,8974,8976,9031,9029,8976,8978,9033,9031,8978,8980,9035,9033,8980,8982,9037,9035,8982,8984,9039,9037,8984,8986,9041,9039,8986,8988,9043,9041,8988,8990,9045,9043,8990,8992,9047,9045,8992,8994,9049,9047,8994,8996,9051,9049,8996,8998,9053,9051,8998,7574,7633,9053,8266,8265,9083,9084,8267,8266,9084,9085,8268,8267,9085,9086,8269,8268,9086,9087,8299,8269,9087,9088,8265,8264,9089,9083,8264,8263,9090,9089,8263,8262,9091,9090,8262,8261,9092,9091,8261,8274,9093,9092,8274,8273,9094,9093,8273,8272,9095,9094,8272,8271,9096,9095,8271,8270,9097,9096,8299,9088,9097,8270,9084,9098,9099,9085,9100,9086,9085,9099,9101,9087,9086,9100,9095,9100,9099,9094,9100,9095,9096,9101,9094,9099,9098,9093,9098,9084,9083,9102,9093,9098,9102,9092,9090,9091,9092,9102,9089,9090,9102,9083,9088,9101,9096,9097,9101,9088,9087,9103,7686,7685,9104,9105,9106,9107,9108,9109,9110,9111,9112,9110,9113,9114,9111,9113,9115,9116,9114,9115,9117,9118,9116,9117,9103,9104,9118,9106,9109,9112,9107,9119,9105,9108,9120,9121,9119,9120,9122,9123,9121,9122,9124,9125,9123,9124,9126, -9127,9125,9126,9128,9129,9127,9128,9130,9131,9129,9130,9132,9133,9131,9132,9134,9135,9133,9134,9136,9137,9135,9136,9138,9139,9137,9138,9140,9141,9139,9140,9142,9104,7685,7726,9143,9118,9104,9143,9144,9116,9118,9144,9145,9114,9116,9145,9146,9111,9114,9146,9147,9112,9111,9147,9148,9107,9112,9148,9149,9108,9107,9149,9150,9120,9108,9150,9151,9122,9120,9151,9152,9124,9122,9152,9153,9126,9124,9153,9154,9128,9126,9154,9155,9130,9128,9155,9156,9132,9130,9156,9157,9134,9132,9157,9158,9136,9134,9158,9159,9138,9136,9159,9160,9140,9138,9160,9161,9142,9140,9161,9162,9143,7726,7747,9163,9144,9143,9163,9164,9145,9144,9164,9165,9146,9145,9165,9166,9147,9146,9166,9167,9148,9147,9167,9168,9149,9148,9168,9169,9150,9149,9169,9170,9151,9150,9170,9171,9152,9151,9171,9172,9153,9152,9172,9173,9154,9153,9173,9174,9155,9154,9174,9175,9156,9155,9175,9176,9157,9156,9176,9177,9158,9157,9177,9178,9159,9158,9178,9179,9160,9159,9179,9180,9161,9160,9180,9181,9162,9161,9181,9182,9163,7747,7768,9183,9170,9169,9184,9185,9168,9167,9186,9187,9167,9166,9188,9186,9166,9165,9189,9188,9165,9164,9190,9189,9164,9163,9183,9190,9169,9168,9187,9184,9171,9170,9185,9191,9172,9171,9191,9192,9173,9172,9192,9193,9174,9173,9193,9194,9175,9174,9194,9195,9176,9175,9195,9196,9177,9176,9196,9197,9178,9177,9197,9198,9179,9178,9198,9199,9180,9179,9199,9200,9181,9180,9200,9201,9182,9181,9201,9202,9183,7768,7789,9203,9185,9184,9204,9205,9187,9186,9206,9207,9186,9188,9208,9206,9188,9189,9209,9208,9189,9190,9210,9209,9190,9183,9203,9210,9184,9187,9207,9204,9191,9185,9205,9211,9192,9191,9211,9212,9193,9192,9212,9213,9194,9193,9213,9214,9195,9194,9214,9215,9196,9195,9215,9216,9197,9196,9216,9217,9198,9197,9217,9218,9199,9198,9218,9219,9200,9199,9219,9220,9201,9200,9220,9221,9202,9201,9221,9222,9223,7812,7811,9224,9225,9226,9227,9228,9229,9230,9231,9232,9230,9233,9234,9231,9233,9235,9236,9234,9235,9237,9238,9236,9237,9223,9224,9238,9226,9229,9232,9227,9239,9225,9228,9240,9241,9239,9240,9242,9243,9241,9242,9244,9245,9243,9244,9246,9247,9245,9246,9248,9249,9247,9248,9250,9251,9249, -9250,9252,9253,9251,9252,9254,9255,9253,9254,9256,9257,9255,9256,9258,9259,9257,9258,9260,9261,9259,9260,9262,9224,7811,7852,9263,9238,9224,9263,9264,9236,9238,9264,9265,9234,9236,9265,9266,9231,9234,9266,9267,9232,9231,9267,9268,9227,9232,9268,9269,9228,9227,9269,9270,9240,9228,9270,9271,9242,9240,9271,9272,9244,9242,9272,9273,9246,9244,9273,9274,9248,9246,9274,9275,9250,9248,9275,9276,9252,9250,9276,9277,9254,9252,9277,9278,9256,9254,9278,9279,9258,9256,9279,9280,9260,9258,9280,9281,9262,9260,9281,9282,9203,7789,7812,9223,9210,9203,9223,9237,9209,9210,9237,9235,9208,9209,9235,9233,9206,9208,9233,9230,9207,9206,9230,9229,9204,9207,9229,9226,9205,9204,9226,9225,9211,9205,9225,9239,9212,9211,9239,9241,9213,9212,9241,9243,9214,9213,9243,9245,9215,9214,9245,9247,9216,9215,9247,9249,9217,9216,9249,9251,9218,9217,9251,9253,9219,9218,9253,9255,9220,9219,9255,9257,9221,9220,9257,9259,9222,9221,9259,9261,9283,9284,9285,9286,9287,9288,9289,9290,9288,9291,9292,9289,9291,9293,9294,9292,9293,9295,9296,9294,9295,9297,9298,9296,9299,9300,9301,9302,9300,9303,9304,9301,9303,9305,9306,9304,9305,9307,9308,9306,9297,9299,9302,9298,9309,9310,9311,9312,9313,9309,9312,9314,9310,9283,9286,9311,9284,9287,9290,9285,9315,9313,9314,9316,9317,9315,9316,9318,9319,9317,9318,9320,9321,9319,9320,9322,9323,9321,9322,9324,9325,9323,9324,9326,9327,9325,9326,9328,9329,9327,9328,9330,9331,9329,9330,9332,9307,9331,9332,9308,9333,9334,9335,9336,9337,9338,9339,9340,9341,9337,9340,9342,9343,9341,9342,9344,9345,9343,9344,9346,9347,9345,9346,9348,9349,9350,9351,9352,9353,9349,9352,9354,9355,9353,9354,9356,9357,9355,9356,9358,9350,9347,9348,9351,9359,9360,9361,9362,9360,9363,9364,9361,9334,9359,9362,9335,9338,9333,9336,9339,9363,9365,9366,9364,9365,9367,9368,9366,9367,9369,9370,9368,9369,9371,9372,9370,9371,9373,9374,9372,9373,9375,9376,9374,9375,9377,9378,9376,9377,9379,9380,9378,9379,9381,9382,9380,9381,9357,9358,9382,9286,9285,9383,9384,9290,9289,9385,9386,9289,9292,9387,9385,9292,9294,9388,9387,9294,9296,9389,9388,9296,9298,9390,9389,9302,9301,9391,9392, -9301,9304,9393,9391,9304,9306,9394,9393,9306,9308,9395,9394,9298,9302,9392,9390,9312,9311,9396,9397,9314,9312,9397,9398,9311,9286,9384,9396,9285,9290,9386,9383,9316,9314,9398,9399,9318,9316,9399,9400,9320,9318,9400,9401,9322,9320,9401,9402,9324,9322,9402,9403,9326,9324,9403,9404,9328,9326,9404,9405,9330,9328,9405,9406,9332,9330,9406,9407,9308,9332,9407,9395,9336,9335,9408,9409,9340,9339,9410,9411,9342,9340,9411,9412,9344,9342,9412,9413,9346,9344,9413,9414,9348,9346,9414,9415,9352,9351,9416,9417,9354,9352,9417,9418,9356,9354,9418,9419,9358,9356,9419,9420,9351,9348,9415,9416,9362,9361,9421,9422,9361,9364,9423,9421,9335,9362,9422,9408,9339,9336,9409,9410,9364,9366,9424,9423,9366,9368,9425,9424,9368,9370,9426,9425,9370,9372,9427,9426,9372,9374,9428,9427,9374,9376,9429,9428,9376,9378,9430,9429,9378,9380,9431,9430,9380,9382,9432,9431,9382,9358,9420,9432,9384,9383,9433,9386,9385,9433,9385,9387,9433,9387,9388,9433,9388,9389,9433,9389,9390,9433,9392,9391,9433,9391,9393,9433,9393,9394,9433,9394,9395,9433,9390,9392,9433,9397,9396,9433,9398,9397,9433,9396,9384,9433,9383,9386,9433,9399,9398,9433,9400,9399,9433,9401,9400,9433,9402,9401,9433,9403,9402,9433,9404,9403,9433,9405,9404,9433,9406,9405,9433,9407,9406,9433,9395,9407,9433,9409,9408,9434,9411,9410,9434,9412,9411,9434,9413,9412,9434,9414,9413,9434,9415,9414,9434,9417,9416,9434,9418,9417,9434,9419,9418,9434,9420,9419,9434,9416,9415,9434,9422,9421,9434,9421,9423,9434,9408,9422,9434,9410,9409,9434,9423,9424,9434,9424,9425,9434,9425,9426,9434,9426,9427,9434,9427,9428,9434,9428,9429,9434,9429,9430,9434,9430,9431,9434,9431,9432,9434,9432,9420,9434 - } - } - LayerElementMaterial: 0 { - Version: 101 - Name: "" - MappingInformationType: "ByPolygon" - ReferenceInformationType: "IndexToDirect" - Materials: *8479 { - a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - } - } - Layer: 0 { - Version: 100 - LayerElement: { - Type: "LayerElementNormal" - TypedIndex: 0 - } - LayerElement: { - Type: "LayerElementMaterial" - TypedIndex: 0 - } - LayerElement: { - Type: "LayerElementUV" - TypedIndex: 0 - } - } - } - Geometry: 2807092190992, "Geometry::", "Mesh" { - Vertices: *543 { - a: 3.94270324707031,0.984960973262787,6.30861520767212,3.8688268661499,1.12995374202728,6.30861520767212,3.75375866889954,1.24502003192902,6.30861520767212,3.60876607894897,1.31889688968658,6.30861520767212,3.44804000854492,1.34435558319092,6.30861520767212,3.28731417655945,1.31889688968658,6.30861520767212,3.14232063293457,1.24502003192902,6.30861520767212,3.0272536277771,1.12995374202728,6.30861520767212,2.95337772369385,0.984960973262787,6.30861520767212,2.92791962623596,0.824233412742615,6.30861377716064,2.95337772369385,0.663508296012878,6.30861377716064,3.0272536277771,0.518515288829803,6.30861377716064,3.14232063293457,0.40344712138176,6.30861330032349,3.28731417655945,0.329570770263672,6.30861330032349,3.44804000854492,0.304113954305649,6.30861330032349,3.60876607894897,0.329570770263672,6.30861330032349,3.75375866889954,0.40344712138176,6.30861330032349,3.86882638931274,0.518515288829803,6.30861377716064,3.94270253181458,0.663508296012878,6.30861377716064,3.9681601524353,0.824233412742615,6.30861377716064,4.23847150802612,1.08106231689453,6.66223573684692,4.12042188644409,1.31274831295013,6.66223669052124,3.93655300140381,1.49661481380463,6.6622371673584,3.70486879348755,1.61466646194458,6.6622371673584,3.4480402469635,1.65534234046936,6.6622371673584,3.19121336936951,1.61466646194458,6.6622371673584,2.95952677726746,1.49661481380463,6.6622371673584,2.77565860748291,1.31274831295013,6.66223669052124,2.65760970115662,1.08106231689453,6.66223573684692,2.61692976951599,0.824232459068298,6.66223573684692,2.65760946273804,0.567407190799713,6.66223573684692,2.77565860748291,0.335720062255859,6.66223573684692,2.95952677726746,0.151854574680328,6.66223573684692,3.19121336936951,0.0338031575083733,6.66223573684692,3.4480402469635,-0.00687737017869949,6.66223573684692,3.70486664772034,0.0338031575083733,6.66223573684692,3.93655276298523,0.151854574680328,6.66223573684692,4.12042140960693,0.335720062255859,6.66223573684692,4.23847103118896,0.567407190799713,6.66223573684692,4.27914953231812,0.824232459068298,6.66223573684692, -4.56127405166626,1.18594372272491,7.19025087356567,4.39501333236694,1.51225435733795,7.19025135040283,4.13605690002441,1.77120959758759,7.19025230407715,3.8097517490387,1.93747043609619,7.19025230407715,3.4480402469635,1.99475741386414,7.19025230407715,3.08632826805115,1.93747043609619,7.19025230407715,2.76002359390259,1.77120959758759,7.19025230407715,2.50106716156006,1.51224780082703,7.19025135040283,2.33480739593506,1.18594372272491,7.19025087356567,2.27751708030701,0.82423198223114,7.19025087356567,2.33480715751648,0.462520331144333,7.19025087356567,2.50106763839722,0.13621611893177,7.19025087356567,2.76002430915833,-0.12273907661438,7.19025087356567,3.08632874488831,-0.28899958729744,7.19024991989136,3.4480402469635,-0.346286863088608,7.19024991989136,3.80975532531738,-0.28899958729744,7.19024991989136,4.13605642318726,-0.12273907661438,7.19025087356567,4.39501237869263,0.13621611893177,7.19025087356567,4.56127309799194,0.462520360946655,7.19025087356567,4.6185622215271,0.82423198223114,7.19025087356567,4.69135141372681,1.22820687294006,7.68679094314575,4.50566387176514,1.59264314174652,7.68679094314575,4.21644878387451,1.88186001777649,7.68679094314575,3.85201644897461,2.06754326820374,7.68679094314575,3.4480402469635,2.13152956962585,7.68679094314575,3.04406356811523,2.06754326820374,7.68679094314575,2.67963194847107,1.88186013698578,7.68679094314575,2.39041447639465,1.59264314174652,7.68679094314575,2.20472931861877,1.22820699214935,7.68679094314575,2.1407458782196,0.824231028556824,7.68679094314575,2.20472931861877,0.420255422592163,7.68679094314575,2.39041447639465,0.0558271631598473,7.68679094314575,2.67963194847107,-0.233390092849731,7.68679094314575,3.04406428337097,-0.419072926044464,7.68679094314575,3.4480402469635,-0.483059585094452,7.68679094314575,3.85201644897461,-0.419072926044464,7.68679094314575,4.2164478302002,-0.233390092849731,7.68679094314575,4.50566291809082,0.0558271296322346,7.68679094314575,4.69135093688965,0.420255422592163,7.68679094314575,4.7553334236145,0.824231147766113,7.68679094314575, -4.75599431991577,1.23296236991882,8.12961673736572,4.56065225601196,1.60167920589447,8.12961673736572,4.2564001083374,1.89430201053619,8.12961673736572,3.8730206489563,2.08216762542725,8.12961673736572,3.44804048538208,2.14691019058228,8.12961673736572,3.02306008338928,2.08216762542725,8.12961673736572,2.63968062400818,1.89430201053619,8.12961673736572,2.33542823791504,1.60167920589447,8.12961673736572,2.14008688926697,1.23296236991882,8.12961673736572,2.07277703285217,0.824230432510376,8.12961673736572,2.14008665084839,0.415507793426514,8.12961673736572,2.33542823791504,0.0467815771698952,8.12961673736572,2.63968062400818,-0.245831966400146,8.12961673736572,3.02306008338928,-0.433706909418106,8.12961673736572,3.44804048538208,-0.498439908027649,8.12961673736572,3.87301993370056,-0.433706909418106,8.12961673736572,4.25639963150024,-0.245831966400146,8.12961673736572,4.5606517791748,0.046781562268734,8.12961673736572,4.75599431991577,0.415507793426514,8.12961673736572,4.82330417633057,0.824230432510376,8.12961673736572,4.66095590591431,1.21833789348602,8.50782489776611,4.47980833053589,1.57385313510895,8.50782489776611,4.19766330718994,1.85600197315216,8.50782489776611,3.84214043617249,2.0371515750885,8.50782489776611,3.44804048538208,2.09956884384155,8.50782489776611,3.05394053459167,2.0371515750885,8.50782489776611,2.6984167098999,1.85600197315216,8.50782489776611,2.41627287864685,1.57385313510895,8.50782489776611,2.23512554168701,1.21833789348602,8.50782489776611,2.17270612716675,0.824229538440704,8.50782489776611,2.23512554168701,0.430132180452347,8.50782489776611,2.41627287864685,0.0746059566736221,8.50782489776611,2.69841742515564,-0.207532078027725,8.50782489776611,3.05394053459167,-0.388681590557098,8.50782489776611,3.44804048538208,-0.451098889112473,8.50782489776611,3.84214043617249,-0.388681590557098,8.50782489776611,4.19766902923584,-0.207532078027725,8.50782489776611,4.47980690002441,0.0746059417724609,8.50782489776611,4.66095542907715,0.430132180452347,8.50782489776611,4.72337436676025,0.824229538440704,8.50782489776611, -4.42636632919312,1.14210712909698,8.81210517883301,4.28025388717651,1.42886829376221,8.81210517883301,4.05268478393555,1.65644681453705,8.81210517883301,3.76591753959656,1.80256164073944,8.81210517883301,3.44804048538208,1.8529087305069,8.81210517883301,3.13016295433044,1.80256164073944,8.81210517883301,2.84340190887451,1.65644681453705,8.81210517883301,2.61582684516907,1.42886829376221,8.81210517883301,2.46971487998962,1.14210712909698,8.81210517883301,2.41936850547791,0.82422924041748,8.81210517883301,2.46971487998962,0.50635153055191,8.81210517883301,2.61582684516907,0.219590350985527,8.81210517883301,2.84340190887451,-0.00797693431377411,8.81210517883301,3.13016295433044,-0.154091775417328,8.81210517883301,3.44804048538208,-0.204438805580139,8.81210517883301,3.76591753959656,-0.154091775417328,8.81210517883301,4.05267858505249,-0.00797693431377411,8.81210517883301,4.28025341033936,0.219590350985527,8.81210517883301,4.42636585235596,0.50635153055191,8.81210517883301,4.47671175003052,0.82422924041748,8.81210517883301,4.12684679031372,1.04478597640991,9.03496265411377,4.02546262741089,1.24375951290131,9.03496265411377,3.86756205558777,1.40165042877197,9.03496265411377,3.66859579086304,1.50303769111633,9.03496265411377,3.44804048538208,1.53796970844269,9.03496265411377,3.22748422622681,1.50303769111633,9.03496265411377,3.02851867675781,1.40165042877197,9.03496265411377,2.87061738967896,1.24375951290131,9.03496265411377,2.76923966407776,1.04478597640991,9.03496265411377,2.73430776596069,0.824229061603546,9.03496265411377,2.76923966407776,0.603683769702911,9.03496265411377,2.87061834335327,0.404710233211517,9.03496265411377,3.02851867675781,0.24680757522583,9.03496265411377,3.22748470306396,0.14543205499649,9.03496265411377,3.44804048538208,0.110499948263168,9.03496265411377,3.66859579086304,0.14543205499649,9.03496265411377,3.86756205558777,0.24680757522583,9.03496265411377,4.02546262741089,0.404710233211517,9.03496265411377,4.12684011459351,0.603683769702911,9.03496265411377,4.16177320480347,0.824229061603546,9.03496265411377, -3.79221773147583,0.936067044734955,9.17091178894043,3.74081492424011,1.03694641590118,9.17091178894043,3.66075396537781,1.11700367927551,9.17091178894043,3.55987048149109,1.16840648651123,9.17091178894043,3.44804048538208,1.18612539768219,9.17091178894043,3.33620977401733,1.16840648651123,9.17091178894043,3.23532676696777,1.11700367927551,9.17091178894043,3.15526580810547,1.03694641590118,9.17091178894043,3.10386323928833,0.936067044734955,9.17091178894043,3.0861508846283,0.824229001998901,9.17091178894043,3.10386323928833,0.712402522563934,9.17091178894043,3.15526580810547,0.611523270606995,9.17091178894043,3.23532676696777,0.53145432472229,9.17091178894043,3.33620977401733,0.480051517486572,9.17091178894043,3.44804048538208,0.462344348430634,9.17091178894043,3.55987048149109,0.480051517486572,9.17091178894043,3.66075325012207,0.53145432472229,9.17091178894043,3.74081492424011,0.611523270606995,9.17091178894043,3.79221701622009,0.712402522563934,9.17091178894043,3.80992913246155,0.824229001998901,9.17091178894043,3.44804048538208,0.824229001998901,9.21660232543945 - } - PolygonVertexIndex: *700 { - a: 0,1,21,-21,1,2,22,-22,2,3,23,-23,3,4,24,-24,4,5,25,-25,5,6,26,-26,6,7,27,-27,7,8,28,-28,8,9,29,-29,9,10,30,-30,10,11,31,-31,11,12,32,-32,12,13,33,-33,13,14,34,-34,14,15,35,-35,15,16,36,-36,16,17,37,-37,17,18,38,-38,18,19,39,-39,19,0,20,-40,20,21,41,-41,21,22,42,-42,22,23,43,-43,23,24,44,-44,24,25,45,-45,25,26,46,-46,26,27,47,-47,27,28,48,-48,28,29,49,-49,29,30,50,-50,30,31,51,-51,31,32,52,-52,32,33,53,-53,33,34,54,-54,34,35,55,-55,35,36,56,-56,36,37,57,-57,37,38,58,-58,38,39,59,-59,39,20,40,-60,40,41,61,-61,41,42,62,-62,42,43,63,-63,43,44,64,-64,44,45,65,-65,45,46,66,-66,46,47,67,-67,47,48,68,-68,48,49,69,-69,49,50,70,-70,50,51,71,-71,51,52,72,-72,52,53,73,-73,53,54,74,-74,54,55,75,-75,55,56,76,-76,56,57,77,-77,57,58,78,-78,58,59,79,-79,59,40,60,-80,60,61,81,-81,61,62,82,-82,62,63,83,-83,63,64,84,-84,64,65,85,-85,65,66,86,-86,66,67,87,-87,67,68,88,-88,68,69,89,-89,69,70,90,-90,70,71,91,-91,71,72,92,-92,72,73,93,-93,73,74,94,-94,74,75,95,-95,75,76,96,-96,76,77,97,-97,77,78,98,-98,78,79,99,-99,79,60,80,-100,80,81,101,-101,81,82,102,-102,82,83,103,-103,83,84,104,-104,84,85,105,-105,85,86,106,-106,86,87,107,-107,87,88,108,-108,88,89,109,-109,89,90,110,-110,90,91,111,-111,91,92,112,-112,92,93,113,-113,93,94,114,-114,94,95,115,-115,95,96,116,-116,96,97,117,-117,97,98,118,-118,98,99,119,-119,99,80,100,-120,100,101,121,-121,101,102,122,-122,102,103,123,-123,103,104,124,-124,104,105,125,-125,105,106,126,-126,106,107,127,-127,107,108,128,-128,108,109,129,-129,109,110,130,-130,110,111,131,-131,111,112,132,-132,112,113,133,-133,113,114,134,-134,114,115,135,-135,115,116,136,-136,116,117,137,-137,117,118,138,-138,118,119,139,-139,119,100,120,-140,120,121,141,-141,121,122,142,-142,122,123,143,-143,123,124,144,-144,124,125,145,-145,125,126,146,-146,126,127,147,-147,127,128,148,-148,128,129,149,-149,129,130,150,-150,130,131,151,-151,131,132,152,-152,132,133,153,-153,133,134,154,-154,134,135,155,-155,135,136,156,-156,136,137,157,-157,137,138,158,-158,138,139,159,-159,139,120,140,-160,140,141,161,-161,141,142,162,-162, -142,143,163,-163,143,144,164,-164,144,145,165,-165,145,146,166,-166,146,147,167,-167,147,148,168,-168,148,149,169,-169,149,150,170,-170,150,151,171,-171,151,152,172,-172,152,153,173,-173,153,154,174,-174,154,155,175,-175,155,156,176,-176,156,157,177,-177,157,158,178,-178,158,159,179,-179,159,140,160,-180,160,161,-181,161,162,-181,162,163,-181,163,164,-181,164,165,-181,165,166,-181,166,167,-181,167,168,-181,168,169,-181,169,170,-181,170,171,-181,171,172,-181,172,173,-181,173,174,-181,174,175,-181,175,176,-181,176,177,-181,177,178,-181,178,179,-181,179,160,-181 - } - Edges: *360 { - a: 0,1,2,3,4,5,6,8,9,10,12,13,14,16,17,18,20,21,22,24,25,26,28,29,30,32,33,34,36,37,38,40,41,42,44,45,46,48,49,50,52,53,54,56,57,58,60,61,62,64,65,66,68,69,70,72,73,74,76,78,81,82,83,85,86,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,118,121,122,125,126,129,130,133,134,137,138,141,142,145,146,149,150,153,154,158,161,162,163,165,166,169,170,173,174,177,178,181,182,185,186,189,190,193,194,197,198,201,202,205,206,209,210,213,214,217,218,221,222,225,226,229,230,233,234,238,241,242,243,245,246,249,250,253,254,257,258,261,262,265,266,269,270,273,274,277,278,281,282,285,286,289,290,293,294,297,298,301,302,305,306,309,310,313,314,318,321,322,323,325,326,329,330,333,334,337,338,341,342,345,346,349,350,353,354,357,358,361,362,365,366,369,370,373,374,377,378,381,382,385,386,389,390,393,394,398,401,402,403,405,406,409,410,413,414,417,418,421,422,425,426,429,430,433,434,437,438,441,442,445,446,449,450,453,454,457,458,461,462,465,466,469,470,473,474,478,481,482,483,485,486,489,490,493,494,497,498,501,502,505,506,509,510,513,514,517,518,521,522,525,526,529,530,533,534,537,538,541,542,545,546,549,550,553,554,558,561,562,563,565,566,569,570,573,574,577,578,581,582,585,586,589,590,593,594,597,598,601,602,605,606,609,610,613,614,617,618,621,622,625,626,629,630,633,634,638,641,642,644,647,650,653,656,659,662,665,668,671,674,677,680,683,686,689,692,695 - } - GeometryVersion: 124 - LayerElementNormal: 0 { - Version: 102 - Name: "" - MappingInformationType: "ByVertice" - ReferenceInformationType: "Direct" - Normals: *543 { - a: 0.946585834026337,0.307561695575714,0.0968568623065948,0.80521160364151,0.585023880004883,0.0968571305274963,0.585020005702972,0.805214643478394,0.0968552455306053,0.307567179203033,0.946584105491638,0.0968551188707352,-5.52816548093915e-09,0.995298266410828,0.0968575179576874,-0.307566672563553,0.946584105491638,0.0968570038676262,-0.585019767284393,0.805214643478394,0.0968569368124008,-0.805212020874023,0.585023283958435,0.0968573167920113,-0.946585595607758,0.307562351226807,0.096857100725174,-0.995298266410828,-1.57552278778894e-07,0.0968573242425919,-0.946584522724152,-0.307565331459045,0.0968570858240128,-0.805212736129761,-0.585022330284119,0.0968572571873665,-0.585022330284119,-0.805212676525116,0.0968585982918739,-0.307564616203308,-0.946584641933441,0.0968587026000023,-2.48767015875728e-08,-0.995298326015472,0.0968577787280083,0.307564616203308,-0.946584641933441,0.0968587920069695,0.585022330284119,-0.805212676525116,0.096858449280262,0.805212914943695,-0.585022270679474,0.0968567803502083,0.946584761142731,-0.307565122842789,0.0968565493822098,0.995298326015472,-9.50842149904929e-07,0.0968568176031113,0.932681202888489,0.30304491519928,0.195626199245453,0.79338538646698,0.576429605484009,0.195624053478241,0.576429128646851,0.793386518955231,0.195620492100716,0.303047776222229,0.932681143283844,0.195621937513351,-6.44935056470786e-08,0.980678975582123,0.195624396204948,-0.303045928478241,0.932681798934937,0.195622026920319,-0.576429307460785,0.793385982513428,0.195622310042381,-0.793384790420532,0.576429486274719,0.195626556873322,-0.932680726051331,0.303045958280563,0.195626944303513,-0.980678677558899,-1.31918994838998e-07,0.195625588297844,-0.932680904865265,-0.303047120571136,0.195624589920044,-0.793385207653046,-0.576429426670074,0.195624783635139,-0.576429426670074,-0.793384552001953,0.19562703371048,-0.303048074245453,-0.93267959356308,0.195628836750984,-1.3191912273669e-07,-0.980678081512451,0.195628821849823,0.303047150373459,-0.932680130004883,0.195628061890602,0.576430439949036,-0.79338413476944,0.195626094937325, -0.793385565280914,-0.576429069042206,0.195624649524689,0.932680904865265,-0.30304691195488,0.195624709129333,0.980678737163544,-1.00258421298349e-06,0.195625752210617,0.907803356647491,0.294958770275116,0.298148274421692,0.772223234176636,0.561052203178406,0.298147320747375,0.561052024364471,0.772223472595215,0.298146694898605,0.294959723949432,0.907803297042847,0.298147559165955,6.47930491481929e-08,0.954520225524902,0.298146486282349,-0.294960349798203,0.907803416252136,0.298146545886993,-0.561054527759552,0.772221982479095,0.298145949840546,-0.772225260734558,0.56104964017868,0.298146963119507,-0.907803118228912,0.29496031999588,0.298147648572922,-0.954520225524902,-2.91568049703983e-08,0.298146486282349,-0.907802820205688,-0.294963389635086,0.29814538359642,-0.772221684455872,-0.561055779457092,0.298144370317459,-0.5610511302948,-0.772225081920624,0.298144727945328,-0.294962406158447,-0.90780234336853,0.298147916793823,-2.20295135022752e-07,-0.954518914222717,0.298150420188904,0.294963806867599,-0.907801866531372,0.298147737979889,0.561052978038788,-0.77222353219986,0.298145115375519,0.772221803665161,-0.56105500459671,0.298145622014999,0.907802224159241,-0.294964164495468,0.298146575689316,0.954519927501678,-1.34769152282388e-06,0.298147082328796,0.869140982627869,0.28239718079567,0.406012088060379,0.739335834980011,0.537154257297516,0.406014651060104,0.537155270576477,0.739334285259247,0.406016200780869,0.282398760318756,0.869138956069946,0.406015396118164,1.94592232105606e-07,0.913866400718689,0.406015038490295,-0.282398402690887,0.869139134883881,0.406015485525131,-0.537156581878662,0.739334225654602,0.406014412641525,-0.739336490631104,0.53715592622757,0.406011253595352,-0.869141399860382,0.282397836446762,0.406010806560516,-0.913867950439453,2.80662035834212e-08,0.406011551618576,-0.869139969348907,-0.282400369644165,0.406012058258057,-0.739335000514984,-0.537157297134399,0.406012088060379,-0.537155568599701,-0.739336788654327,0.406011044979095,-0.282399475574493,-0.869141280651093,0.406010031700134,-1.49686201211807e-08,-0.913868963718414,0.40600922703743, -0.282398968935013,-0.869140923023224,0.40601122379303,0.537156939506531,-0.739335238933563,0.406012147665024,0.739334523677826,-0.537157714366913,0.406012415885925,0.869139432907104,-0.282402068376541,0.4060118496418,0.913868129253387,-9.67348228186893e-07,0.406011193990707,0.81230640411377,0.263933122158051,0.520094096660614,0.690989434719086,0.502030551433563,0.52009528875351,0.502031564712524,0.690987944602966,0.520096063613892,0.263934135437012,0.812306106090546,0.52009391784668,0,0.854109346866608,0.520093679428101,-0.263934016227722,0.81230628490448,0.52009379863739,-0.502030789852142,0.69098836183548,0.520096302032471,-0.690988421440125,0.502030372619629,0.520096659660339,-0.812305927276611,0.263932406902313,0.520095109939575,-0.854108333587646,1.27386621661444e-16,0.52009528875351,-0.812305748462677,-0.263931840658188,0.520095646381378,-0.690987884998322,-0.502032995223999,0.520094931125641,-0.502031207084656,-0.690990388393402,0.520093262195587,-0.263933449983597,-0.812307238578796,0.520092487335205,6.56266308851627e-07,-0.854110181331635,0.520092308521271,0.263934075832367,-0.812307238578796,0.520092070102692,0.502031803131104,-0.690990924835205,0.520091891288757,0.690989375114441,-0.502033352851868,0.520092666149139,0.812306046485901,-0.26393324136734,0.520094335079193,0.85410875082016,-4.54163426866216e-07,0.520094394683838,0.731152355670929,0.237566396594048,0.639514207839966,0.621956706047058,0.451876580715179,0.639513432979584,0.451880097389221,0.621954143047333,0.639513373374939,0.237566515803337,0.731154680252075,0.63951164484024,2.92101254295574e-09,0.76878148317337,0.63951164484024,-0.237566277384758,0.731154441833496,0.639511942863464,-0.451879650354385,0.621953725814819,0.639514207839966,-0.621955513954163,0.451876759529114,0.639514446258545,-0.731152355670929,0.237566292285919,0.639514327049255,-0.768779933452606,-2.19074767215943e-08,0.639513492584229,-0.731153845787048,-0.237565606832504,0.639512836933136,-0.62195497751236,-0.451878190040588,0.639514029026031,-0.451874554157257,-0.621956408023834,0.639515280723572, --0.237566396594048,-0.731150567531586,0.639516294002533,9.05510120219333e-08,-0.768777966499329,0.63951575756073,0.237566262483597,-0.73115074634552,0.639516174793243,0.451875865459442,-0.621955752372742,0.639514863491058,0.6219562292099,-0.451876938343048,0.639513611793518,0.731153607368469,-0.237565964460373,0.63951301574707,0.768779397010803,-3.70966660057093e-07,0.639514088630676,0.618456065654755,0.200946286320686,0.759692490100861,0.526091277599335,0.382224977016449,0.759692132472992,0.382231265306473,0.526086568832397,0.759692251682281,0.2009506970644,0.618454158306122,0.759692907333374,1.01257890960937e-09,0.650283455848694,0.759691774845123,-0.200949907302856,0.618453979492188,0.759693384170532,-0.382229059934616,0.526086986064911,0.759693086147308,-0.526090204715729,0.382225424051285,0.759692490100861,-0.618455529212952,0.200946062803268,0.759693026542664,-0.650282144546509,1.01257724427484e-09,0.759692788124084,-0.618454217910767,-0.200949013233185,0.759693384170532,-0.526086628437042,-0.382227838039398,0.75969386100769,-0.382224887609482,-0.526091635227203,0.759692013263702,-0.20095083117485,-0.618455946445465,0.759691417217255,-8.63730178934929e-07,-0.650283575057983,0.759691596031189,0.200948759913445,-0.61845600605011,0.759692013263702,0.38222336769104,-0.526090800762177,0.759693324565887,0.526087701320648,-0.382226139307022,0.75969409942627,0.61845451593399,-0.200948774814606,0.759693205356598,0.650282621383667,-1.47532728078659e-06,0.759692490100861,0.46950551867485,0.152548640966415,0.869651436805725,0.399382591247559,0.290172070264816,0.86965149641037,0.290168792009354,0.399380445480347,0.869653701782227,0.15255731344223,0.469500154256821,0.86965274810791,1.26180408344112e-08,0.493663489818573,0.869653046131134,-0.15255668759346,0.469500035047531,0.869652986526489,-0.290170013904572,0.399381577968597,0.869652628898621,-0.399385035037994,0.290171593427658,0.869650542736053,-0.469504237174988,0.152548342943192,0.869652092456818,-0.493664622306824,-5.67817934893355e-08,0.869652330875397,-0.469501912593842,-0.152550026774406,0.869653105735779, --0.399383395910263,-0.290166676044464,0.869652986526489,-0.290169805288315,-0.399385392665863,0.869650959968567,-0.15255069732666,-0.469505697488785,0.869650900363922,7.09769309992225e-09,-0.493666470050812,0.869651317596436,0.152549505233765,-0.469505935907364,0.869650959968567,0.29016900062561,-0.39938560128212,0.869651138782501,0.399384707212448,-0.290165901184082,0.869652688503265,0.46950176358223,-0.152549609541893,0.869653224945068,0.493664473295212,-4.42347572970903e-06,0.869652509689331,0.296473741531372,0.0963291004300117,0.950170636177063,0.252193808555603,0.183235913515091,0.950169920921326,0.183229193091393,0.252197831869125,0.95017021894455,0.0963359251618385,0.296469688415527,0.950171172618866,1.85327593271722e-08,0.311731696128845,0.950170278549194,-0.0963359028100967,0.296469748020172,0.950171113014221,-0.18323190510273,0.252197653055191,0.950169682502747,-0.252198219299316,0.183234259486198,0.950169086456299,-0.296476989984512,0.0963293835520744,0.950169563293457,-0.31173250079155,-1.85135135666314e-07,0.950169920921326,-0.296476036310196,-0.0963337644934654,0.950169384479523,-0.252199441194534,-0.183228343725204,0.950169920921326,-0.183234229683876,-0.252195328474045,0.950169920921326,-0.0963263064622879,-0.296479374170303,0.950169146060944,1.69394400728606e-08,-0.311733394861221,0.950169622898102,0.0963264852762222,-0.296479284763336,0.950169086456299,0.183233708143234,-0.252195358276367,0.950170040130615,0.252198874950409,-0.183228239417076,0.95017009973526,0.296474993228912,-0.0963335409760475,0.950169682502747,0.31173038482666,-3.4822935504053e-06,0.950170695781708,-4.87677311866719e-07,-6.28609598152252e-07,1 - } - NormalsW: *181 { - a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - } - } - LayerElementUV: 0 { - Version: 101 - Name: "map1" - MappingInformationType: "ByPolygonVertex" - ReferenceInformationType: "IndexToDirect" - UV: *1400 { - a: 0.97025203704834,0.821563959121704,0.937357485294342,0.88612300157547,0.930409014225006,0.881074488162994,0.962083458900452,0.818910002708435,0.937357485294342,0.88612300157547,0.886123538017273,0.937357485294342,0.881075024604797,0.930409014225006,0.930409014225006,0.881074488162994,0.886123538017273,0.937357485294342,0.821564495563507,0.97025203704834,0.818910002708435,0.962082982063293,0.881075024604797,0.930409014225006,0.821564495563507,0.97025203704834,0.75,0.981586456298828,0.75,0.972997486591339,0.818910002708435,0.962082982063293,0.75,0.981586456298828,0.678435981273651,0.97025203704834,0.681089997291565,0.962082982063293,0.75,0.972997486591339,0.678435981273651,0.97025203704834,0.613876461982727,0.937357485294342,0.618925511837006,0.930409014225006,0.681089997291565,0.962082982063293,0.613876461982727,0.937357485294342,0.562642514705658,0.88612300157547,0.569590985774994,0.881074488162994,0.618925511837006,0.930409014225006,0.562642514705658,0.88612300157547,0.52974796295166,0.821563959121704,0.537916541099548,0.818910002708435,0.569590985774994,0.881074488162994,0.52974796295166,0.821563959121704,0.518413543701172,0.75,0.527002513408661,0.75,0.537916541099548,0.818910002708435,0.518413543701172,0.75,0.52974796295166,0.678435504436493,0.537916541099548,0.681089997291565,0.527002513408661,0.75,0.52974796295166,0.678435504436493,0.562642514705658,0.613876461982727,0.569590985774994,0.618924975395203,0.537916541099548,0.681089997291565,0.562642514705658,0.613876461982727,0.613876461982727,0.562642514705658,0.618925511837006,0.569590985774994,0.569590985774994,0.618924975395203,0.613876461982727,0.562642514705658,0.678435981273651,0.52974796295166,0.681089997291565,0.537916541099548,0.618925511837006,0.569590985774994,0.678435981273651,0.52974796295166,0.75,0.518413007259369,0.75,0.527002513408661,0.681089997291565,0.537916541099548,0.75,0.518413007259369,0.821564495563507,0.52974796295166,0.818910002708435,0.537916541099548,0.75,0.527002513408661,0.821564495563507,0.52974796295166,0.886123538017273, -0.562642514705658,0.881074488162994,0.569590985774994,0.818910002708435,0.537916541099548,0.886123538017273,0.562642514705658,0.937357485294342,0.613876461982727,0.930409014225006,0.618924975395203,0.881074488162994,0.569590985774994,0.937357485294342,0.613876461982727,0.97025203704834,0.678435504436493,0.962083458900452,0.681089997291565,0.930409014225006,0.618924975395203,0.97025203704834,0.678435504436493,0.981586456298828,0.75,0.972997486591339,0.75,0.962083458900452,0.681089997291565,0.981586456298828,0.75,0.97025203704834,0.821563959121704,0.962083458900452,0.818910002708435,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.930409014225006,0.881074488162994,0.919018030166626,0.872798502445221,0.948692500591278,0.814558982849121,0.930409014225006,0.881074488162994,0.881075024604797,0.930409014225006,0.872798502445221,0.919017493724823,0.919018030166626,0.872798502445221,0.881075024604797,0.930409014225006,0.818910002708435,0.962082982063293,0.814558982849121,0.948692500591278,0.872798502445221,0.919017493724823,0.818910002708435,0.962082982063293,0.75,0.972997486591339,0.75,0.958917498588562,0.814558982849121,0.948692500591278,0.75,0.972997486591339,0.681089997291565,0.962082982063293,0.685441017150879,0.948692500591278,0.75,0.958917498588562,0.681089997291565,0.962082982063293,0.618925511837006,0.930409014225006,0.627201497554779,0.919017493724823,0.685441017150879,0.948692500591278,0.618925511837006,0.930409014225006,0.569590985774994,0.881074488162994,0.580982506275177,0.872798502445221,0.627201497554779,0.919017493724823,0.569590985774994,0.881074488162994,0.537916541099548,0.818910002708435,0.551307499408722,0.814558982849121,0.580982506275177,0.872798502445221,0.537916541099548,0.818910002708435,0.527002513408661,0.75,0.541082501411438,0.75,0.551307499408722,0.814558982849121,0.527002513408661,0.75,0.537916541099548,0.681089997291565,0.551307499408722,0.685441017150879,0.541082501411438,0.75,0.537916541099548,0.681089997291565,0.569590985774994,0.618924975395203,0.580982506275177,0.627201497554779, -0.551307499408722,0.685441017150879,0.569590985774994,0.618924975395203,0.618925511837006,0.569590985774994,0.627201497554779,0.580981969833374,0.580982506275177,0.627201497554779,0.618925511837006,0.569590985774994,0.681089997291565,0.537916541099548,0.685441017150879,0.551307499408722,0.627201497554779,0.580981969833374,0.681089997291565,0.537916541099548,0.75,0.527002513408661,0.75,0.541082501411438,0.685441017150879,0.551307499408722,0.75,0.527002513408661,0.818910002708435,0.537916541099548,0.814558982849121,0.551307499408722,0.75,0.541082501411438,0.818910002708435,0.537916541099548,0.881074488162994,0.569590985774994,0.872798502445221,0.580981969833374,0.814558982849121,0.551307499408722,0.881074488162994,0.569590985774994,0.930409014225006,0.618924975395203,0.919017493724823,0.627201497554779,0.872798502445221,0.580981969833374,0.930409014225006,0.618924975395203,0.962083458900452,0.681089997291565,0.948692500591278,0.685441017150879,0.919017493724823,0.627201497554779,0.962083458900452,0.681089997291565,0.972997486591339,0.75,0.958917498588562,0.75,0.948692500591278,0.685441017150879,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.948692500591278,0.814558982849121,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.919018030166626,0.872798502445221,0.903465032577515,0.861498475074768,0.930409014225006,0.808618485927582,0.919018030166626,0.872798502445221,0.872798502445221,0.919017493724823,0.861499011516571,0.903465032577515,0.903465032577515,0.861498475074768,0.872798502445221,0.919017493724823,0.814558982849121,0.948692500591278,0.808618485927582,0.930409014225006,0.861499011516571,0.903465032577515,0.814558982849121,0.948692500591278,0.75,0.958917498588562,0.75,0.939692974090576,0.808618485927582,0.930409014225006,0.75,0.958917498588562,0.685441017150879,0.948692500591278,0.691381514072418,0.930409014225006,0.75,0.939692974090576,0.685441017150879,0.948692500591278,0.627201497554779,0.919017493724823,0.638500988483429,0.903465032577515,0.691381514072418,0.930409014225006,0.627201497554779, -0.919017493724823,0.580982506275177,0.872798502445221,0.596534967422485,0.861498475074768,0.638500988483429,0.903465032577515,0.580982506275177,0.872798502445221,0.551307499408722,0.814558982849121,0.569590985774994,0.808618485927582,0.596534967422485,0.861498475074768,0.551307499408722,0.814558982849121,0.541082501411438,0.75,0.560307025909424,0.75,0.569590985774994,0.808618485927582,0.541082501411438,0.75,0.551307499408722,0.685441017150879,0.569590985774994,0.691381514072418,0.560307025909424,0.75,0.551307499408722,0.685441017150879,0.580982506275177,0.627201497554779,0.596534967422485,0.638500988483429,0.569590985774994,0.691381514072418,0.580982506275177,0.627201497554779,0.627201497554779,0.580981969833374,0.638500988483429,0.596534967422485,0.596534967422485,0.638500988483429,0.627201497554779,0.580981969833374,0.685441017150879,0.551307499408722,0.691381514072418,0.569590985774994,0.638500988483429,0.596534967422485,0.685441017150879,0.551307499408722,0.75,0.541082501411438,0.75,0.560307025909424,0.691381514072418,0.569590985774994,0.75,0.541082501411438,0.814558982849121,0.551307499408722,0.808618485927582,0.569590985774994,0.75,0.560307025909424,0.814558982849121,0.551307499408722,0.872798502445221,0.580981969833374,0.861499011516571,0.596534967422485,0.808618485927582,0.569590985774994,0.872798502445221,0.580981969833374,0.919017493724823,0.627201497554779,0.903465032577515,0.638500988483429,0.861499011516571,0.596534967422485,0.919017493724823,0.627201497554779,0.948692500591278,0.685441017150879,0.930409014225006,0.691381514072418,0.903465032577515,0.638500988483429,0.948692500591278,0.685441017150879,0.958917498588562,0.75,0.939692974090576,0.75,0.930409014225006,0.691381514072418,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.930409014225006,0.808618485927582,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.903465032577515,0.861498475074768,0.884133458137512,0.847453474998474,0.90768301486969,0.801234483718872,0.903465032577515,0.861498475074768,0.861499011516571,0.903465032577515, -0.847453474998474,0.884132981300354,0.884133458137512,0.847453474998474,0.861499011516571,0.903465032577515,0.808618485927582,0.930409014225006,0.801234483718872,0.90768301486969,0.847453474998474,0.884132981300354,0.808618485927582,0.930409014225006,0.75,0.939692974090576,0.75,0.915798008441925,0.801234483718872,0.90768301486969,0.75,0.939692974090576,0.691381514072418,0.930409014225006,0.698765516281128,0.90768301486969,0.75,0.915798008441925,0.691381514072418,0.930409014225006,0.638500988483429,0.903465032577515,0.652546525001526,0.884132981300354,0.698765516281128,0.90768301486969,0.638500988483429,0.903465032577515,0.596534967422485,0.861498475074768,0.615867018699646,0.847453474998474,0.652546525001526,0.884132981300354,0.596534967422485,0.861498475074768,0.569590985774994,0.808618485927582,0.59231698513031,0.801234006881714,0.615867018699646,0.847453474998474,0.569590985774994,0.808618485927582,0.560307025909424,0.75,0.584201991558075,0.75,0.59231698513031,0.801234006881714,0.560307025909424,0.75,0.569590985774994,0.691381514072418,0.59231698513031,0.698765516281128,0.584201991558075,0.75,0.569590985774994,0.691381514072418,0.596534967422485,0.638500988483429,0.615867018699646,0.652546525001526,0.59231698513031,0.698765516281128,0.596534967422485,0.638500988483429,0.638500988483429,0.596534967422485,0.652546525001526,0.615866482257843,0.615867018699646,0.652546525001526,0.638500988483429,0.596534967422485,0.691381514072418,0.569590985774994,0.698765516281128,0.59231698513031,0.652546525001526,0.615866482257843,0.691381514072418,0.569590985774994,0.75,0.560307025909424,0.75,0.584201991558075,0.698765516281128,0.59231698513031,0.75,0.560307025909424,0.808618485927582,0.569590985774994,0.801234483718872,0.59231698513031,0.75,0.584201991558075,0.808618485927582,0.569590985774994,0.861499011516571,0.596534967422485,0.847453474998474,0.615866482257843,0.801234483718872,0.59231698513031,0.861499011516571,0.596534967422485,0.903465032577515,0.638500988483429,0.884132981300354,0.652546525001526,0.847453474998474,0.615866482257843, -0.903465032577515,0.638500988483429,0.930409014225006,0.691381514072418,0.90768301486969,0.698765516281128,0.884132981300354,0.652546525001526,0.930409014225006,0.691381514072418,0.939692974090576,0.75,0.915798008441925,0.75,0.90768301486969,0.698765516281128,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.90768301486969,0.801234483718872,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.884133458137512,0.847453474998474,0.861499011516571,0.831008493900299,0.881075024604797,0.792588472366333,0.884133458137512,0.847453474998474,0.847453474998474,0.884132981300354,0.831008493900299,0.861498475074768,0.861499011516571,0.831008493900299,0.847453474998474,0.884132981300354,0.801234483718872,0.90768301486969,0.792588472366333,0.881074488162994,0.831008493900299,0.861498475074768,0.801234483718872,0.90768301486969,0.75,0.915798008441925,0.75,0.88782000541687,0.792588472366333,0.881074488162994,0.75,0.915798008441925,0.698765516281128,0.90768301486969,0.707411527633667,0.881074488162994,0.75,0.88782000541687,0.698765516281128,0.90768301486969,0.652546525001526,0.884132981300354,0.668991506099701,0.861498475074768,0.707411527633667,0.881074488162994,0.652546525001526,0.884132981300354,0.615867018699646,0.847453474998474,0.638500988483429,0.831008493900299,0.668991506099701,0.861498475074768,0.615867018699646,0.847453474998474,0.59231698513031,0.801234006881714,0.618925511837006,0.792588472366333,0.638500988483429,0.831008493900299,0.59231698513031,0.801234006881714,0.584201991558075,0.75,0.61217999458313,0.75,0.618925511837006,0.792588472366333,0.584201991558075,0.75,0.59231698513031,0.698765516281128,0.618925511837006,0.707410991191864,0.61217999458313,0.75,0.59231698513031,0.698765516281128,0.615867018699646,0.652546525001526,0.638500988483429,0.668991506099701,0.618925511837006,0.707410991191864,0.615867018699646,0.652546525001526,0.652546525001526,0.615866482257843,0.668991506099701,0.638500988483429,0.638500988483429,0.668991506099701,0.652546525001526,0.615866482257843,0.698765516281128,0.59231698513031, -0.707411527633667,0.618924975395203,0.668991506099701,0.638500988483429,0.698765516281128,0.59231698513031,0.75,0.584201991558075,0.75,0.61217999458313,0.707411527633667,0.618924975395203,0.75,0.584201991558075,0.801234483718872,0.59231698513031,0.792588472366333,0.618924975395203,0.75,0.61217999458313,0.801234483718872,0.59231698513031,0.847453474998474,0.615866482257843,0.831008493900299,0.638500988483429,0.792588472366333,0.618924975395203,0.847453474998474,0.615866482257843,0.884132981300354,0.652546525001526,0.861499011516571,0.668991506099701,0.831008493900299,0.638500988483429,0.884132981300354,0.652546525001526,0.90768301486969,0.698765516281128,0.881074488162994,0.707410991191864,0.861499011516571,0.668991506099701,0.90768301486969,0.698765516281128,0.915798008441925,0.75,0.88782000541687,0.75,0.881074488162994,0.707410991191864,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.881075024604797,0.792588472366333,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.861499011516571,0.831008493900299,0.836118996143341,0.81256902217865,0.851238965988159,0.782894492149353,0.861499011516571,0.831008493900299,0.831008493900299,0.861498475074768,0.81256902217865,0.836118996143341,0.836118996143341,0.81256902217865,0.831008493900299,0.861498475074768,0.792588472366333,0.881074488162994,0.782894492149353,0.851238489151001,0.81256902217865,0.836118996143341,0.792588472366333,0.881074488162994,0.75,0.88782000541687,0.75,0.856448531150818,0.782894492149353,0.851238489151001,0.75,0.88782000541687,0.707411527633667,0.881074488162994,0.717105507850647,0.851238489151001,0.75,0.856448531150818,0.707411527633667,0.881074488162994,0.668991506099701,0.861498475074768,0.68743097782135,0.836118996143341,0.717105507850647,0.851238489151001,0.668991506099701,0.861498475074768,0.638500988483429,0.831008493900299,0.663881003856659,0.81256902217865,0.68743097782135,0.836118996143341,0.638500988483429,0.831008493900299,0.618925511837006,0.792588472366333,0.648761034011841,0.782894492149353,0.663881003856659,0.81256902217865, -0.618925511837006,0.792588472366333,0.61217999458313,0.75,0.643551468849182,0.75,0.648761034011841,0.782894492149353,0.61217999458313,0.75,0.618925511837006,0.707410991191864,0.648761034011841,0.717105507850647,0.643551468849182,0.75,0.618925511837006,0.707410991191864,0.638500988483429,0.668991506099701,0.663881003856659,0.68743097782135,0.648761034011841,0.717105507850647,0.638500988483429,0.668991506099701,0.668991506099701,0.638500988483429,0.68743097782135,0.663881003856659,0.663881003856659,0.68743097782135,0.668991506099701,0.638500988483429,0.707411527633667,0.618924975395203,0.717105507850647,0.648761034011841,0.68743097782135,0.663881003856659,0.707411527633667,0.618924975395203,0.75,0.61217999458313,0.75,0.643550992012024,0.717105507850647,0.648761034011841,0.75,0.61217999458313,0.792588472366333,0.618924975395203,0.782894492149353,0.648761034011841,0.75,0.643550992012024,0.792588472366333,0.618924975395203,0.831008493900299,0.638500988483429,0.81256902217865,0.663881003856659,0.782894492149353,0.648761034011841,0.831008493900299,0.638500988483429,0.861499011516571,0.668991506099701,0.836118996143341,0.68743097782135,0.81256902217865,0.663881003856659,0.861499011516571,0.668991506099701,0.881074488162994,0.707410991191864,0.851238965988159,0.717105507850647,0.836118996143341,0.68743097782135,0.881074488162994,0.707410991191864,0.88782000541687,0.75,0.856449007987976,0.75,0.851238965988159,0.717105507850647,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.851238965988159,0.782894492149353,0.856449007987976,0.75,0.851238965988159,0.782894492149353,0.836118996143341,0.81256902217865,0.808618485927582,0.792588472366333,0.818910002708435,0.772390007972717,0.836118996143341,0.81256902217865,0.81256902217865,0.836118996143341,0.792588472366333,0.808618485927582,0.808618485927582,0.792588472366333,0.81256902217865,0.836118996143341,0.782894492149353,0.851238489151001,0.772390484809875,0.818910002708435,0.792588472366333,0.808618485927582,0.782894492149353,0.851238489151001,0.75,0.856448531150818,0.75, -0.822456002235413,0.772390484809875,0.818910002708435,0.75,0.856448531150818,0.717105507850647,0.851238489151001,0.727609992027283,0.818910002708435,0.75,0.822456002235413,0.717105507850647,0.851238489151001,0.68743097782135,0.836118996143341,0.707411527633667,0.808618485927582,0.727609992027283,0.818910002708435,0.68743097782135,0.836118996143341,0.663881003856659,0.81256902217865,0.691381514072418,0.792588472366333,0.707411527633667,0.808618485927582,0.663881003856659,0.81256902217865,0.648761034011841,0.782894492149353,0.681089997291565,0.772390007972717,0.691381514072418,0.792588472366333,0.648761034011841,0.782894492149353,0.643551468849182,0.75,0.677543520927429,0.75,0.681089997291565,0.772390007972717,0.643551468849182,0.75,0.648761034011841,0.717105507850647,0.681089997291565,0.727609515190125,0.677543520927429,0.75,0.648761034011841,0.717105507850647,0.663881003856659,0.68743097782135,0.691381514072418,0.707410991191864,0.681089997291565,0.727609515190125,0.663881003856659,0.68743097782135,0.68743097782135,0.663881003856659,0.707411527633667,0.691381514072418,0.691381514072418,0.707410991191864,0.68743097782135,0.663881003856659,0.717105507850647,0.648761034011841,0.727609992027283,0.681089997291565,0.707411527633667,0.691381514072418,0.717105507850647,0.648761034011841,0.75,0.643550992012024,0.75,0.677543520927429,0.727609992027283,0.681089997291565,0.75,0.643550992012024,0.782894492149353,0.648761034011841,0.772390484809875,0.681089997291565,0.75,0.677543520927429,0.782894492149353,0.648761034011841,0.81256902217865,0.663881003856659,0.792588472366333,0.691381514072418,0.772390484809875,0.681089997291565,0.81256902217865,0.663881003856659,0.836118996143341,0.68743097782135,0.808618485927582,0.707410991191864,0.792588472366333,0.691381514072418,0.836118996143341,0.68743097782135,0.851238965988159,0.717105507850647,0.818910002708435,0.727609515190125,0.808618485927582,0.707410991191864,0.851238965988159,0.717105507850647,0.856449007987976,0.75,0.822456479072571,0.75,0.818910002708435,0.727609515190125,0.856449007987976, -0.75,0.851238965988159,0.782894492149353,0.818910002708435,0.772390007972717,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.808618485927582,0.792588472366333,0.779674530029297,0.771559476852417,0.784884512424469,0.761334538459778,0.808618485927582,0.792588472366333,0.792588472366333,0.808618485927582,0.77156001329422,0.779674530029297,0.779674530029297,0.771559476852417,0.792588472366333,0.808618485927582,0.772390484809875,0.818910002708435,0.761334538459778,0.784884512424469,0.77156001329422,0.779674530029297,0.772390484809875,0.818910002708435,0.75,0.822456002235413,0.75,0.78667950630188,0.761334538459778,0.784884512424469,0.75,0.822456002235413,0.727609992027283,0.818910002708435,0.738665521144867,0.784884512424469,0.75,0.78667950630188,0.727609992027283,0.818910002708435,0.707411527633667,0.808618485927582,0.72843998670578,0.779674530029297,0.738665521144867,0.784884512424469,0.707411527633667,0.808618485927582,0.691381514072418,0.792588472366333,0.720325469970703,0.771559476852417,0.72843998670578,0.779674530029297,0.691381514072418,0.792588472366333,0.681089997291565,0.772390007972717,0.715115487575531,0.761334538459778,0.720325469970703,0.771559476852417,0.681089997291565,0.772390007972717,0.677543520927429,0.75,0.71332049369812,0.75,0.715115487575531,0.761334538459778,0.677543520927429,0.75,0.681089997291565,0.727609515190125,0.715115487575531,0.738665521144867,0.71332049369812,0.75,0.681089997291565,0.727609515190125,0.691381514072418,0.707410991191864,0.720325469970703,0.72843998670578,0.715115487575531,0.738665521144867,0.691381514072418,0.707410991191864,0.707411527633667,0.691381514072418,0.72843998670578,0.720325469970703,0.720325469970703,0.72843998670578,0.707411527633667,0.691381514072418,0.727609992027283,0.681089997291565,0.738665521144867,0.715115487575531,0.72843998670578,0.720325469970703,0.727609992027283,0.681089997291565,0.75,0.677543520927429,0.75,0.713320016860962,0.738665521144867,0.715115487575531,0.75,0.677543520927429,0.772390484809875,0.681089997291565,0.761334538459778, -0.715115487575531,0.75,0.713320016860962,0.772390484809875,0.681089997291565,0.792588472366333,0.691381514072418,0.77156001329422,0.720325469970703,0.761334538459778,0.715115487575531,0.792588472366333,0.691381514072418,0.808618485927582,0.707410991191864,0.779674530029297,0.72843998670578,0.77156001329422,0.720325469970703,0.808618485927582,0.707410991191864,0.818910002708435,0.727609515190125,0.784884512424469,0.738665521144867,0.779674530029297,0.72843998670578,0.818910002708435,0.727609515190125,0.822456479072571,0.75,0.78667950630188,0.75,0.784884512424469,0.738665521144867,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.784884512424469,0.761334538459778,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.779674530029297,0.771559476852417,0.75,0.75,0.779674530029297,0.771559476852417,0.77156001329422,0.779674530029297,0.75,0.75,0.77156001329422,0.779674530029297,0.761334538459778,0.784884512424469,0.75,0.75,0.761334538459778,0.784884512424469,0.75,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.738665521144867,0.784884512424469,0.75,0.75,0.738665521144867,0.784884512424469,0.72843998670578,0.779674530029297,0.75,0.75,0.72843998670578,0.779674530029297,0.720325469970703,0.771559476852417,0.75,0.75,0.720325469970703,0.771559476852417,0.715115487575531,0.761334538459778,0.75,0.75,0.715115487575531,0.761334538459778,0.71332049369812,0.75,0.75,0.75,0.71332049369812,0.75,0.715115487575531,0.738665521144867,0.75,0.75,0.715115487575531,0.738665521144867,0.720325469970703,0.72843998670578,0.75,0.75,0.720325469970703,0.72843998670578,0.72843998670578,0.720325469970703,0.75,0.75,0.72843998670578,0.720325469970703,0.738665521144867,0.715115487575531,0.75,0.75,0.738665521144867,0.715115487575531,0.75,0.713320016860962,0.75,0.75,0.75,0.713320016860962,0.761334538459778,0.715115487575531,0.75,0.75,0.761334538459778,0.715115487575531,0.77156001329422,0.720325469970703,0.75,0.75,0.77156001329422,0.720325469970703,0.779674530029297,0.72843998670578,0.75,0.75,0.779674530029297,0.72843998670578,0.784884512424469, -0.738665521144867,0.75,0.75,0.784884512424469,0.738665521144867,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.75,0.75 - } - UVIndex: *700 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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 - } - } - LayerElementMaterial: 0 { - Version: 101 - Name: "" - MappingInformationType: "AllSame" - ReferenceInformationType: "IndexToDirect" - Materials: *1 { - a: 0 - } - } - Layer: 0 { - Version: 100 - LayerElement: { - Type: "LayerElementNormal" - TypedIndex: 0 - } - LayerElement: { - Type: "LayerElementMaterial" - TypedIndex: 0 - } - LayerElement: { - Type: "LayerElementUV" - TypedIndex: 0 - } - } - } - Geometry: 2807092192528, "Geometry::", "Mesh" { - Vertices: *543 { - a: -3.94270277023315,0.984960973262787,6.30861520767212,-3.86882734298706,1.12995374202728,6.30861520767212,-3.75375819206238,1.24502003192902,6.30861520767212,-3.60876607894897,1.31889688968658,6.30861520767212,-3.44804000854492,1.34435558319092,6.30861520767212,-3.28731393814087,1.31889688968658,6.30861520767212,-3.14232063293457,1.24502003192902,6.30861520767212,-3.0272536277771,1.12995374202728,6.30861520767212,-2.95337796211243,0.984960973262787,6.30861520767212,-2.92791962623596,0.824233412742615,6.30861377716064,-2.95337796211243,0.663508296012878,6.30861377716064,-3.0272536277771,0.518515288829803,6.30861377716064,-3.14232063293457,0.40344712138176,6.30861330032349,-3.28731393814087,0.329570770263672,6.30861330032349,-3.44804000854492,0.304113954305649,6.30861330032349,-3.60876607894897,0.329570770263672,6.30861330032349,-3.75375819206238,0.40344712138176,6.30861330032349,-3.86882638931274,0.518515288829803,6.30861377716064,-3.942702293396,0.663508296012878,6.30861377716064,-3.9681601524353,0.824233412742615,6.30861377716064,-4.23847150802612,1.08106231689453,6.66223573684692,-4.12042188644409,1.31274831295013,6.66223669052124,-3.93655300140381,1.49661481380463,6.6622371673584,-3.70486879348755,1.61466646194458,6.6622371673584,-3.44804048538208,1.65534234046936,6.6622371673584,-3.19121336936951,1.61466646194458,6.6622371673584,-2.95952701568604,1.49661481380463,6.6622371673584,-2.77565860748291,1.31274831295013,6.66223669052124,-2.6576099395752,1.08106231689453,6.66223573684692,-2.61692953109741,0.824232459068298,6.66223573684692,-2.65760946273804,0.567407190799713,6.66223573684692,-2.77565860748291,0.335720062255859,6.66223573684692,-2.95952701568604,0.151854574680328,6.66223573684692,-3.19121336936951,0.0338031575083733,6.66223573684692,-3.44804048538208,-0.00687737017869949,6.66223573684692,-3.70486664772034,0.0338031575083733,6.66223573684692,-3.93655252456665,0.151854574680328,6.66223573684692,-4.12042188644409,0.335720062255859,6.66223573684692,-4.23847055435181,0.567407190799713,6.66223573684692, --4.27915048599243,0.824232459068298,6.66223573684692,-4.5612735748291,1.18594372272491,7.19025087356567,-4.39501333236694,1.51225435733795,7.19025135040283,-4.13605737686157,1.77120959758759,7.19025230407715,-3.80975151062012,1.93747043609619,7.19025230407715,-3.44804000854492,1.99475741386414,7.19025230407715,-3.08632850646973,1.93747043609619,7.19025230407715,-2.76002335548401,1.77120959758759,7.19025230407715,-2.50106716156006,1.51224780082703,7.19025135040283,-2.33480715751648,1.18594372272491,7.19025087356567,-2.27751708030701,0.82423198223114,7.19025087356567,-2.33480715751648,0.462520331144333,7.19025087356567,-2.5010678768158,0.13621611893177,7.19025087356567,-2.76002430915833,-0.12273907661438,7.19025087356567,-3.08632898330688,-0.28899958729744,7.19024991989136,-3.44804000854492,-0.346286863088608,7.19024991989136,-3.80975556373596,-0.28899958729744,7.19024991989136,-4.13605690002441,-0.12273907661438,7.19025087356567,-4.39501237869263,0.13621611893177,7.19025087356567,-4.56127309799194,0.462520360946655,7.19025087356567,-4.6185622215271,0.82423198223114,7.19025087356567,-4.69135093688965,1.22820687294006,7.68679094314575,-4.50566387176514,1.59264314174652,7.68679094314575,-4.21644878387451,1.88186001777649,7.68679094314575,-3.85201668739319,2.06754326820374,7.68679094314575,-3.44804000854492,2.13152956962585,7.68679094314575,-3.04406380653381,2.06754326820374,7.68679094314575,-2.67963171005249,1.88186013698578,7.68679094314575,-2.39041447639465,1.59264314174652,7.68679094314575,-2.20472931861877,1.22820699214935,7.68679094314575,-2.1407458782196,0.824231028556824,7.68679094314575,-2.20472931861877,0.420255422592163,7.68679094314575,-2.39041447639465,0.0558271631598473,7.68679094314575,-2.67963171005249,-0.233390092849731,7.68679094314575,-3.04406428337097,-0.419072926044464,7.68679094314575,-3.44804000854492,-0.483059585094452,7.68679094314575,-3.85201668739319,-0.419072926044464,7.68679094314575,-4.2164478302002,-0.233390092849731,7.68679094314575,-4.50566291809082,0.0558271296322346,7.68679094314575,-4.69135093688965,0.420255422592163,7.68679094314575, --4.7553334236145,0.824231147766113,7.68679094314575,-4.75599479675293,1.23296236991882,8.12961673736572,-4.56065225601196,1.60167920589447,8.12961673736572,-4.25640106201172,1.89430201053619,8.12961673736572,-3.8730206489563,2.08216762542725,8.12961673736572,-3.44804048538208,2.14691019058228,8.12961673736572,-3.02306008338928,2.08216762542725,8.12961673736572,-2.63968062400818,1.89430201053619,8.12961673736572,-2.33542823791504,1.60167920589447,8.12961673736572,-2.14008665084839,1.23296236991882,8.12961673736572,-2.07277727127075,0.824230432510376,8.12961673736572,-2.14008665084839,0.415507793426514,8.12961673736572,-2.33542823791504,0.0467815771698952,8.12961673736572,-2.63968062400818,-0.245831966400146,8.12961673736572,-3.02306008338928,-0.433706909418106,8.12961673736572,-3.44804048538208,-0.498439908027649,8.12961673736572,-3.87301993370056,-0.433706909418106,8.12961673736572,-4.2564001083374,-0.245831966400146,8.12961673736572,-4.5606517791748,0.046781562268734,8.12961673736572,-4.75599479675293,0.415507793426514,8.12961673736572,-4.82330417633057,0.824230432510376,8.12961673736572,-4.66095542907715,1.21833789348602,8.50782489776611,-4.47980880737305,1.57385313510895,8.50782489776611,-4.1976637840271,1.85600197315216,8.50782489776611,-3.84214043617249,2.0371515750885,8.50782489776611,-3.44804048538208,2.09956884384155,8.50782489776611,-3.05394053459167,2.0371515750885,8.50782489776611,-2.6984167098999,1.85600197315216,8.50782489776611,-2.41627287864685,1.57385313510895,8.50782489776611,-2.23512578010559,1.21833789348602,8.50782489776611,-2.17270612716675,0.824229538440704,8.50782489776611,-2.23512578010559,0.430132180452347,8.50782489776611,-2.41627287864685,0.0746059566736221,8.50782489776611,-2.69841742515564,-0.207532078027725,8.50782489776611,-3.05394053459167,-0.388681590557098,8.50782489776611,-3.44804048538208,-0.451098889112473,8.50782489776611,-3.84214043617249,-0.388681590557098,8.50782489776611,-4.19766902923584,-0.207532078027725,8.50782489776611,-4.47980785369873,0.0746059417724609,8.50782489776611, --4.66095495223999,0.430132180452347,8.50782489776611,-4.72337436676025,0.824229538440704,8.50782489776611,-4.42636632919312,1.14210712909698,8.81210517883301,-4.28025388717651,1.42886829376221,8.81210517883301,-4.05268526077271,1.65644681453705,8.81210517883301,-3.76591753959656,1.80256164073944,8.81210517883301,-3.44804048538208,1.8529087305069,8.81210517883301,-3.13016295433044,1.80256164073944,8.81210517883301,-2.84340190887451,1.65644681453705,8.81210517883301,-2.61582684516907,1.42886829376221,8.81210517883301,-2.46971487998962,1.14210712909698,8.81210517883301,-2.41936850547791,0.82422924041748,8.81210517883301,-2.46971487998962,0.50635153055191,8.81210517883301,-2.61582684516907,0.219590350985527,8.81210517883301,-2.84340190887451,-0.00797693431377411,8.81210517883301,-3.13016295433044,-0.154091775417328,8.81210517883301,-3.44804048538208,-0.204438805580139,8.81210517883301,-3.76591753959656,-0.154091775417328,8.81210517883301,-4.05267906188965,-0.00797693431377411,8.81210517883301,-4.28025341033936,0.219590350985527,8.81210517883301,-4.42636585235596,0.50635153055191,8.81210517883301,-4.47671175003052,0.82422924041748,8.81210517883301,-4.12684679031372,1.04478597640991,9.03496265411377,-4.02546310424805,1.24375951290131,9.03496265411377,-3.86756205558777,1.40165042877197,9.03496265411377,-3.66859579086304,1.50303769111633,9.03496265411377,-3.44804048538208,1.53796970844269,9.03496265411377,-3.22748422622681,1.50303769111633,9.03496265411377,-3.02851867675781,1.40165042877197,9.03496265411377,-2.87061715126038,1.24375951290131,9.03496265411377,-2.76923942565918,1.04478597640991,9.03496265411377,-2.73430752754211,0.824229061603546,9.03496265411377,-2.76923942565918,0.603683769702911,9.03496265411377,-2.87061810493469,0.404710233211517,9.03496265411377,-3.02851867675781,0.24680757522583,9.03496265411377,-3.22748470306396,0.14543205499649,9.03496265411377,-3.44804048538208,0.110499948263168,9.03496265411377,-3.66859579086304,0.14543205499649,9.03496265411377,-3.86756205558777,0.24680757522583,9.03496265411377, --4.02546310424805,0.404710233211517,9.03496265411377,-4.12684011459351,0.603683769702911,9.03496265411377,-4.16177320480347,0.824229061603546,9.03496265411377,-3.79221773147583,0.936067044734955,9.17091178894043,-3.74081492424011,1.03694641590118,9.17091178894043,-3.66075396537781,1.11700367927551,9.17091178894043,-3.55987048149109,1.16840648651123,9.17091178894043,-3.44804048538208,1.18612539768219,9.17091178894043,-3.33620977401733,1.16840648651123,9.17091178894043,-3.23532676696777,1.11700367927551,9.17091178894043,-3.15526580810547,1.03694641590118,9.17091178894043,-3.10386323928833,0.936067044734955,9.17091178894043,-3.0861508846283,0.824229001998901,9.17091178894043,-3.10386323928833,0.712402522563934,9.17091178894043,-3.15526580810547,0.611523270606995,9.17091178894043,-3.23532676696777,0.53145432472229,9.17091178894043,-3.33620977401733,0.480051517486572,9.17091178894043,-3.44804048538208,0.462344348430634,9.17091178894043,-3.55987048149109,0.480051517486572,9.17091178894043,-3.66075325012207,0.53145432472229,9.17091178894043,-3.74081492424011,0.611523270606995,9.17091178894043,-3.79221701622009,0.712402522563934,9.17091178894043,-3.80992913246155,0.824229001998901,9.17091178894043,-3.44804048538208,0.824229001998901,9.21660232543945 - } - PolygonVertexIndex: *700 { - a: 0,20,21,-2,1,21,22,-3,2,22,23,-4,3,23,24,-5,4,24,25,-6,5,25,26,-7,6,26,27,-8,7,27,28,-9,8,28,29,-10,9,29,30,-11,10,30,31,-12,11,31,32,-13,12,32,33,-14,13,33,34,-15,14,34,35,-16,15,35,36,-17,16,36,37,-18,17,37,38,-19,18,38,39,-20,19,39,20,-1,20,40,41,-22,21,41,42,-23,22,42,43,-24,23,43,44,-25,24,44,45,-26,25,45,46,-27,26,46,47,-28,27,47,48,-29,28,48,49,-30,29,49,50,-31,30,50,51,-32,31,51,52,-33,32,52,53,-34,33,53,54,-35,34,54,55,-36,35,55,56,-37,36,56,57,-38,37,57,58,-39,38,58,59,-40,39,59,40,-21,40,60,61,-42,41,61,62,-43,42,62,63,-44,43,63,64,-45,44,64,65,-46,45,65,66,-47,46,66,67,-48,47,67,68,-49,48,68,69,-50,49,69,70,-51,50,70,71,-52,51,71,72,-53,52,72,73,-54,53,73,74,-55,54,74,75,-56,55,75,76,-57,56,76,77,-58,57,77,78,-59,58,78,79,-60,59,79,60,-41,60,80,81,-62,61,81,82,-63,62,82,83,-64,63,83,84,-65,64,84,85,-66,65,85,86,-67,66,86,87,-68,67,87,88,-69,68,88,89,-70,69,89,90,-71,70,90,91,-72,71,91,92,-73,72,92,93,-74,73,93,94,-75,74,94,95,-76,75,95,96,-77,76,96,97,-78,77,97,98,-79,78,98,99,-80,79,99,80,-61,80,100,101,-82,81,101,102,-83,82,102,103,-84,83,103,104,-85,84,104,105,-86,85,105,106,-87,86,106,107,-88,87,107,108,-89,88,108,109,-90,89,109,110,-91,90,110,111,-92,91,111,112,-93,92,112,113,-94,93,113,114,-95,94,114,115,-96,95,115,116,-97,96,116,117,-98,97,117,118,-99,98,118,119,-100,99,119,100,-81,100,120,121,-102,101,121,122,-103,102,122,123,-104,103,123,124,-105,104,124,125,-106,105,125,126,-107,106,126,127,-108,107,127,128,-109,108,128,129,-110,109,129,130,-111,110,130,131,-112,111,131,132,-113,112,132,133,-114,113,133,134,-115,114,134,135,-116,115,135,136,-117,116,136,137,-118,117,137,138,-119,118,138,139,-120,119,139,120,-101,120,140,141,-122,121,141,142,-123,122,142,143,-124,123,143,144,-125,124,144,145,-126,125,145,146,-127,126,146,147,-128,127,147,148,-129,128,148,149,-130,129,149,150,-131,130,150,151,-132,131,151,152,-133,132,152,153,-134,133,153,154,-135,134,154,155,-136,135,155,156,-137,136,156,157,-138,137,157,158,-139,138,158,159,-140,139,159,140,-121,140,160,161,-142,141,161,162, --143,142,162,163,-144,143,163,164,-145,144,164,165,-146,145,165,166,-147,146,166,167,-148,147,167,168,-149,148,168,169,-150,149,169,170,-151,150,170,171,-152,151,171,172,-153,152,172,173,-154,153,173,174,-155,154,174,175,-156,155,175,176,-157,156,176,177,-158,157,177,178,-159,158,178,179,-160,159,179,160,-141,160,180,-162,161,180,-163,162,180,-164,163,180,-165,164,180,-166,165,180,-167,166,180,-168,167,180,-169,168,180,-170,169,180,-171,170,180,-172,171,180,-173,172,180,-174,173,180,-175,174,180,-176,175,180,-177,176,180,-178,177,180,-179,178,180,-180,179,180,-161 - } - Edges: *360 { - a: 0,1,2,3,5,6,7,9,10,11,13,14,15,17,18,19,21,22,23,25,26,27,29,30,31,33,34,35,37,38,39,41,42,43,45,46,47,49,50,51,53,54,55,57,58,59,61,62,63,65,66,67,69,70,71,73,74,75,77,79,80,81,82,85,86,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,118,121,122,125,126,129,130,133,134,137,138,141,142,145,146,149,150,153,154,157,160,161,162,165,166,169,170,173,174,177,178,181,182,185,186,189,190,193,194,197,198,201,202,205,206,209,210,213,214,217,218,221,222,225,226,229,230,233,234,237,240,241,242,245,246,249,250,253,254,257,258,261,262,265,266,269,270,273,274,277,278,281,282,285,286,289,290,293,294,297,298,301,302,305,306,309,310,313,314,317,320,321,322,325,326,329,330,333,334,337,338,341,342,345,346,349,350,353,354,357,358,361,362,365,366,369,370,373,374,377,378,381,382,385,386,389,390,393,394,397,400,401,402,405,406,409,410,413,414,417,418,421,422,425,426,429,430,433,434,437,438,441,442,445,446,449,450,453,454,457,458,461,462,465,466,469,470,473,474,477,480,481,482,485,486,489,490,493,494,497,498,501,502,505,506,509,510,513,514,517,518,521,522,525,526,529,530,533,534,537,538,541,542,545,546,549,550,553,554,557,560,561,562,565,566,569,570,573,574,577,578,581,582,585,586,589,590,593,594,597,598,601,602,605,606,609,610,613,614,617,618,621,622,625,626,629,630,633,634,637,640,641,644,647,650,653,656,659,662,665,668,671,674,677,680,683,686,689,692,695 - } - GeometryVersion: 124 - LayerElementNormal: 0 { - Version: 102 - Name: "" - MappingInformationType: "ByVertice" - ReferenceInformationType: "Direct" - Normals: *543 { - a: -0.946585834026337,0.307561695575714,0.0968568623065948,-0.80521160364151,0.585023880004883,0.0968571305274963,-0.585020005702972,0.805214643478394,0.0968552455306053,-0.307567179203033,0.946584105491638,0.0968551188707352,5.52816548093915e-09,0.995298266410828,0.0968575179576874,0.307566672563553,0.946584105491638,0.0968570038676262,0.585019767284393,0.805214643478394,0.0968569368124008,0.805212020874023,0.585023283958435,0.0968573167920113,0.946585595607758,0.307562351226807,0.096857100725174,0.995298266410828,-1.57552278778894e-07,0.0968573242425919,0.946584522724152,-0.307565331459045,0.0968570858240128,0.805212736129761,-0.585022330284119,0.0968572571873665,0.585022330284119,-0.805212676525116,0.0968585982918739,0.307564616203308,-0.946584641933441,0.0968587026000023,2.48767015875728e-08,-0.995298326015472,0.0968577787280083,-0.307564616203308,-0.946584641933441,0.0968587920069695,-0.585022330284119,-0.805212676525116,0.096858449280262,-0.805212914943695,-0.585022270679474,0.0968567803502083,-0.946584761142731,-0.307565122842789,0.0968565493822098,-0.995298326015472,-9.50842149904929e-07,0.0968568176031113,-0.932681202888489,0.30304491519928,0.195626199245453,-0.79338538646698,0.576429605484009,0.195624053478241,-0.576429128646851,0.793386518955231,0.195620492100716,-0.303047776222229,0.932681143283844,0.195621937513351,6.44935056470786e-08,0.980678975582123,0.195624396204948,0.303045928478241,0.932681798934937,0.195622026920319,0.576429307460785,0.793385982513428,0.195622310042381,0.793384790420532,0.576429486274719,0.195626556873322,0.932680726051331,0.303045958280563,0.195626944303513,0.980678677558899,-1.31918994838998e-07,0.195625588297844,0.932680904865265,-0.303047120571136,0.195624589920044,0.793385207653046,-0.576429426670074,0.195624783635139,0.576429426670074,-0.793384552001953,0.19562703371048,0.303048074245453,-0.93267959356308,0.195628836750984,1.3191912273669e-07,-0.980678081512451,0.195628821849823,-0.303047150373459,-0.932680130004883,0.195628061890602,-0.576430439949036,-0.79338413476944,0.195626094937325, --0.793385565280914,-0.576429069042206,0.195624649524689,-0.932680904865265,-0.30304691195488,0.195624709129333,-0.980678737163544,-1.00258421298349e-06,0.195625752210617,-0.907803356647491,0.294958770275116,0.298148274421692,-0.772223234176636,0.561052203178406,0.298147320747375,-0.561052024364471,0.772223472595215,0.298146694898605,-0.294959723949432,0.907803297042847,0.298147559165955,-6.47930491481929e-08,0.954520225524902,0.298146486282349,0.294960349798203,0.907803416252136,0.298146545886993,0.561054527759552,0.772221982479095,0.298145949840546,0.772225260734558,0.56104964017868,0.298146963119507,0.907803118228912,0.29496031999588,0.298147648572922,0.954520225524902,-2.91568049703983e-08,0.298146486282349,0.907802820205688,-0.294963389635086,0.29814538359642,0.772221684455872,-0.561055779457092,0.298144370317459,0.5610511302948,-0.772225081920624,0.298144727945328,0.294962406158447,-0.90780234336853,0.298147916793823,2.20295135022752e-07,-0.954518914222717,0.298150420188904,-0.294963806867599,-0.907801866531372,0.298147737979889,-0.561052978038788,-0.77222353219986,0.298145115375519,-0.772221803665161,-0.56105500459671,0.298145622014999,-0.907802224159241,-0.294964164495468,0.298146575689316,-0.954519927501678,-1.34769152282388e-06,0.298147082328796,-0.869140982627869,0.28239718079567,0.406012088060379,-0.739335834980011,0.537154257297516,0.406014651060104,-0.537155270576477,0.739334285259247,0.406016200780869,-0.282398760318756,0.869138956069946,0.406015396118164,-1.94592232105606e-07,0.913866400718689,0.406015038490295,0.282398402690887,0.869139134883881,0.406015485525131,0.537156581878662,0.739334225654602,0.406014412641525,0.739336490631104,0.53715592622757,0.406011253595352,0.869141399860382,0.282397836446762,0.406010806560516,0.913867950439453,2.80662035834212e-08,0.406011551618576,0.869139969348907,-0.282400369644165,0.406012058258057,0.739335000514984,-0.537157297134399,0.406012088060379,0.537155568599701,-0.739336788654327,0.406011044979095,0.282399475574493,-0.869141280651093,0.406010031700134,1.49686201211807e-08,-0.913868963718414,0.40600922703743, --0.282398968935013,-0.869140923023224,0.40601122379303,-0.537156939506531,-0.739335238933563,0.406012147665024,-0.739334523677826,-0.537157714366913,0.406012415885925,-0.869139432907104,-0.282402068376541,0.4060118496418,-0.913868129253387,-9.67348228186893e-07,0.406011193990707,-0.81230640411377,0.263933122158051,0.520094096660614,-0.690989434719086,0.502030551433563,0.52009528875351,-0.502031564712524,0.690987944602966,0.520096063613892,-0.263934135437012,0.812306106090546,0.52009391784668,-6.36931189248199e-17,0.854109346866608,0.520093679428101,0.263934016227722,0.81230628490448,0.52009379863739,0.502030789852142,0.69098836183548,0.520096302032471,0.690988421440125,0.502030372619629,0.520096659660339,0.812305927276611,0.263932406902313,0.520095109939575,0.854108333587646,1.27386621661444e-16,0.52009528875351,0.812305748462677,-0.263931840658188,0.520095646381378,0.690987884998322,-0.502032995223999,0.520094931125641,0.502031207084656,-0.690990388393402,0.520093262195587,0.263933449983597,-0.812307238578796,0.520092487335205,-6.56266308851627e-07,-0.854110181331635,0.520092308521271,-0.263934075832367,-0.812307238578796,0.520092070102692,-0.502031803131104,-0.690990924835205,0.520091891288757,-0.690989375114441,-0.502033352851868,0.520092666149139,-0.812306046485901,-0.26393324136734,0.520094335079193,-0.85410875082016,-4.54163426866216e-07,0.520094394683838,-0.731152355670929,0.237566396594048,0.639514207839966,-0.621956706047058,0.451876580715179,0.639513432979584,-0.451880097389221,0.621954143047333,0.639513373374939,-0.237566515803337,0.731154680252075,0.63951164484024,-2.92101254295574e-09,0.76878148317337,0.63951164484024,0.237566277384758,0.731154441833496,0.639511942863464,0.451879650354385,0.621953725814819,0.639514207839966,0.621955513954163,0.451876759529114,0.639514446258545,0.731152355670929,0.237566292285919,0.639514327049255,0.768779933452606,-2.19074767215943e-08,0.639513492584229,0.731153845787048,-0.237565606832504,0.639512836933136,0.62195497751236,-0.451878190040588,0.639514029026031,0.451874554157257,-0.621956408023834,0.639515280723572, -0.237566396594048,-0.731150567531586,0.639516294002533,-9.05510120219333e-08,-0.768777966499329,0.63951575756073,-0.237566262483597,-0.73115074634552,0.639516174793243,-0.451875865459442,-0.621955752372742,0.639514863491058,-0.6219562292099,-0.451876938343048,0.639513611793518,-0.731153607368469,-0.237565964460373,0.63951301574707,-0.768779397010803,-3.70966660057093e-07,0.639514088630676,-0.618456065654755,0.200946286320686,0.759692490100861,-0.526091277599335,0.382224977016449,0.759692132472992,-0.382231265306473,0.526086568832397,0.759692251682281,-0.2009506970644,0.618454158306122,0.759692907333374,-1.01257890960937e-09,0.650283455848694,0.759691774845123,0.200949907302856,0.618453979492188,0.759693384170532,0.382229059934616,0.526086986064911,0.759693086147308,0.526090204715729,0.382225424051285,0.759692490100861,0.618455529212952,0.200946062803268,0.759693026542664,0.650282144546509,1.01257724427484e-09,0.759692788124084,0.618454217910767,-0.200949013233185,0.759693384170532,0.526086628437042,-0.382227838039398,0.75969386100769,0.382224887609482,-0.526091635227203,0.759692013263702,0.20095083117485,-0.618455946445465,0.759691417217255,8.63730178934929e-07,-0.650283575057983,0.759691596031189,-0.200948759913445,-0.61845600605011,0.759692013263702,-0.38222336769104,-0.526090800762177,0.759693324565887,-0.526087701320648,-0.382226139307022,0.75969409942627,-0.61845451593399,-0.200948774814606,0.759693205356598,-0.650282621383667,-1.47532728078659e-06,0.759692490100861,-0.46950551867485,0.152548640966415,0.869651436805725,-0.399382591247559,0.290172070264816,0.86965149641037,-0.290168792009354,0.399380445480347,0.869653701782227,-0.15255731344223,0.469500154256821,0.86965274810791,-1.26180408344112e-08,0.493663489818573,0.869653046131134,0.15255668759346,0.469500035047531,0.869652986526489,0.290170013904572,0.399381577968597,0.869652628898621,0.399385035037994,0.290171593427658,0.869650542736053,0.469504237174988,0.152548342943192,0.869652092456818,0.493664622306824,-5.67817934893355e-08,0.869652330875397,0.469501912593842,-0.152550026774406,0.869653105735779, -0.399383395910263,-0.290166676044464,0.869652986526489,0.290169805288315,-0.399385392665863,0.869650959968567,0.15255069732666,-0.469505697488785,0.869650900363922,-7.09769309992225e-09,-0.493666470050812,0.869651317596436,-0.152549505233765,-0.469505935907364,0.869650959968567,-0.29016900062561,-0.39938560128212,0.869651138782501,-0.399384707212448,-0.290165901184082,0.869652688503265,-0.46950176358223,-0.152549609541893,0.869653224945068,-0.493664473295212,-4.42347572970903e-06,0.869652509689331,-0.296473741531372,0.0963291004300117,0.950170636177063,-0.252193808555603,0.183235913515091,0.950169920921326,-0.183229193091393,0.252197831869125,0.95017021894455,-0.0963359251618385,0.296469688415527,0.950171172618866,-1.85327593271722e-08,0.311731696128845,0.950170278549194,0.0963359028100967,0.296469748020172,0.950171113014221,0.18323190510273,0.252197653055191,0.950169682502747,0.252198219299316,0.183234259486198,0.950169086456299,0.296476989984512,0.0963293835520744,0.950169563293457,0.31173250079155,-1.85135135666314e-07,0.950169920921326,0.296476036310196,-0.0963337644934654,0.950169384479523,0.252199441194534,-0.183228343725204,0.950169920921326,0.183234229683876,-0.252195328474045,0.950169920921326,0.0963263064622879,-0.296479374170303,0.950169146060944,-1.69394400728606e-08,-0.311733394861221,0.950169622898102,-0.0963264852762222,-0.296479284763336,0.950169086456299,-0.183233708143234,-0.252195358276367,0.950170040130615,-0.252198874950409,-0.183228239417076,0.95017009973526,-0.296474993228912,-0.0963335409760475,0.950169682502747,-0.31173038482666,-3.4822935504053e-06,0.950170695781708,4.87677311866719e-07,-6.28609598152252e-07,1 - } - NormalsW: *181 { - a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 - } - } - LayerElementUV: 0 { - Version: 101 - Name: "map1" - MappingInformationType: "ByPolygonVertex" - ReferenceInformationType: "IndexToDirect" - UV: *1400 { - a: 0.97025203704834,0.821563959121704,0.937357485294342,0.88612300157547,0.930409014225006,0.881074488162994,0.962083458900452,0.818910002708435,0.937357485294342,0.88612300157547,0.886123538017273,0.937357485294342,0.881075024604797,0.930409014225006,0.930409014225006,0.881074488162994,0.886123538017273,0.937357485294342,0.821564495563507,0.97025203704834,0.818910002708435,0.962082982063293,0.881075024604797,0.930409014225006,0.821564495563507,0.97025203704834,0.75,0.981586456298828,0.75,0.972997486591339,0.818910002708435,0.962082982063293,0.75,0.981586456298828,0.678435981273651,0.97025203704834,0.681089997291565,0.962082982063293,0.75,0.972997486591339,0.678435981273651,0.97025203704834,0.613876461982727,0.937357485294342,0.618925511837006,0.930409014225006,0.681089997291565,0.962082982063293,0.613876461982727,0.937357485294342,0.562642514705658,0.88612300157547,0.569590985774994,0.881074488162994,0.618925511837006,0.930409014225006,0.562642514705658,0.88612300157547,0.52974796295166,0.821563959121704,0.537916541099548,0.818910002708435,0.569590985774994,0.881074488162994,0.52974796295166,0.821563959121704,0.518413543701172,0.75,0.527002513408661,0.75,0.537916541099548,0.818910002708435,0.518413543701172,0.75,0.52974796295166,0.678435504436493,0.537916541099548,0.681089997291565,0.527002513408661,0.75,0.52974796295166,0.678435504436493,0.562642514705658,0.613876461982727,0.569590985774994,0.618924975395203,0.537916541099548,0.681089997291565,0.562642514705658,0.613876461982727,0.613876461982727,0.562642514705658,0.618925511837006,0.569590985774994,0.569590985774994,0.618924975395203,0.613876461982727,0.562642514705658,0.678435981273651,0.52974796295166,0.681089997291565,0.537916541099548,0.618925511837006,0.569590985774994,0.678435981273651,0.52974796295166,0.75,0.518413007259369,0.75,0.527002513408661,0.681089997291565,0.537916541099548,0.75,0.518413007259369,0.821564495563507,0.52974796295166,0.818910002708435,0.537916541099548,0.75,0.527002513408661,0.821564495563507,0.52974796295166,0.886123538017273, -0.562642514705658,0.881074488162994,0.569590985774994,0.818910002708435,0.537916541099548,0.886123538017273,0.562642514705658,0.937357485294342,0.613876461982727,0.930409014225006,0.618924975395203,0.881074488162994,0.569590985774994,0.937357485294342,0.613876461982727,0.97025203704834,0.678435504436493,0.962083458900452,0.681089997291565,0.930409014225006,0.618924975395203,0.97025203704834,0.678435504436493,0.981586456298828,0.75,0.972997486591339,0.75,0.962083458900452,0.681089997291565,0.981586456298828,0.75,0.97025203704834,0.821563959121704,0.962083458900452,0.818910002708435,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.930409014225006,0.881074488162994,0.919018030166626,0.872798502445221,0.948692500591278,0.814558982849121,0.930409014225006,0.881074488162994,0.881075024604797,0.930409014225006,0.872798502445221,0.919017493724823,0.919018030166626,0.872798502445221,0.881075024604797,0.930409014225006,0.818910002708435,0.962082982063293,0.814558982849121,0.948692500591278,0.872798502445221,0.919017493724823,0.818910002708435,0.962082982063293,0.75,0.972997486591339,0.75,0.958917498588562,0.814558982849121,0.948692500591278,0.75,0.972997486591339,0.681089997291565,0.962082982063293,0.685441017150879,0.948692500591278,0.75,0.958917498588562,0.681089997291565,0.962082982063293,0.618925511837006,0.930409014225006,0.627201497554779,0.919017493724823,0.685441017150879,0.948692500591278,0.618925511837006,0.930409014225006,0.569590985774994,0.881074488162994,0.580982506275177,0.872798502445221,0.627201497554779,0.919017493724823,0.569590985774994,0.881074488162994,0.537916541099548,0.818910002708435,0.551307499408722,0.814558982849121,0.580982506275177,0.872798502445221,0.537916541099548,0.818910002708435,0.527002513408661,0.75,0.541082501411438,0.75,0.551307499408722,0.814558982849121,0.527002513408661,0.75,0.537916541099548,0.681089997291565,0.551307499408722,0.685441017150879,0.541082501411438,0.75,0.537916541099548,0.681089997291565,0.569590985774994,0.618924975395203,0.580982506275177,0.627201497554779, -0.551307499408722,0.685441017150879,0.569590985774994,0.618924975395203,0.618925511837006,0.569590985774994,0.627201497554779,0.580981969833374,0.580982506275177,0.627201497554779,0.618925511837006,0.569590985774994,0.681089997291565,0.537916541099548,0.685441017150879,0.551307499408722,0.627201497554779,0.580981969833374,0.681089997291565,0.537916541099548,0.75,0.527002513408661,0.75,0.541082501411438,0.685441017150879,0.551307499408722,0.75,0.527002513408661,0.818910002708435,0.537916541099548,0.814558982849121,0.551307499408722,0.75,0.541082501411438,0.818910002708435,0.537916541099548,0.881074488162994,0.569590985774994,0.872798502445221,0.580981969833374,0.814558982849121,0.551307499408722,0.881074488162994,0.569590985774994,0.930409014225006,0.618924975395203,0.919017493724823,0.627201497554779,0.872798502445221,0.580981969833374,0.930409014225006,0.618924975395203,0.962083458900452,0.681089997291565,0.948692500591278,0.685441017150879,0.919017493724823,0.627201497554779,0.962083458900452,0.681089997291565,0.972997486591339,0.75,0.958917498588562,0.75,0.948692500591278,0.685441017150879,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.948692500591278,0.814558982849121,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.919018030166626,0.872798502445221,0.903465032577515,0.861498475074768,0.930409014225006,0.808618485927582,0.919018030166626,0.872798502445221,0.872798502445221,0.919017493724823,0.861499011516571,0.903465032577515,0.903465032577515,0.861498475074768,0.872798502445221,0.919017493724823,0.814558982849121,0.948692500591278,0.808618485927582,0.930409014225006,0.861499011516571,0.903465032577515,0.814558982849121,0.948692500591278,0.75,0.958917498588562,0.75,0.939692974090576,0.808618485927582,0.930409014225006,0.75,0.958917498588562,0.685441017150879,0.948692500591278,0.691381514072418,0.930409014225006,0.75,0.939692974090576,0.685441017150879,0.948692500591278,0.627201497554779,0.919017493724823,0.638500988483429,0.903465032577515,0.691381514072418,0.930409014225006,0.627201497554779, -0.919017493724823,0.580982506275177,0.872798502445221,0.596534967422485,0.861498475074768,0.638500988483429,0.903465032577515,0.580982506275177,0.872798502445221,0.551307499408722,0.814558982849121,0.569590985774994,0.808618485927582,0.596534967422485,0.861498475074768,0.551307499408722,0.814558982849121,0.541082501411438,0.75,0.560307025909424,0.75,0.569590985774994,0.808618485927582,0.541082501411438,0.75,0.551307499408722,0.685441017150879,0.569590985774994,0.691381514072418,0.560307025909424,0.75,0.551307499408722,0.685441017150879,0.580982506275177,0.627201497554779,0.596534967422485,0.638500988483429,0.569590985774994,0.691381514072418,0.580982506275177,0.627201497554779,0.627201497554779,0.580981969833374,0.638500988483429,0.596534967422485,0.596534967422485,0.638500988483429,0.627201497554779,0.580981969833374,0.685441017150879,0.551307499408722,0.691381514072418,0.569590985774994,0.638500988483429,0.596534967422485,0.685441017150879,0.551307499408722,0.75,0.541082501411438,0.75,0.560307025909424,0.691381514072418,0.569590985774994,0.75,0.541082501411438,0.814558982849121,0.551307499408722,0.808618485927582,0.569590985774994,0.75,0.560307025909424,0.814558982849121,0.551307499408722,0.872798502445221,0.580981969833374,0.861499011516571,0.596534967422485,0.808618485927582,0.569590985774994,0.872798502445221,0.580981969833374,0.919017493724823,0.627201497554779,0.903465032577515,0.638500988483429,0.861499011516571,0.596534967422485,0.919017493724823,0.627201497554779,0.948692500591278,0.685441017150879,0.930409014225006,0.691381514072418,0.903465032577515,0.638500988483429,0.948692500591278,0.685441017150879,0.958917498588562,0.75,0.939692974090576,0.75,0.930409014225006,0.691381514072418,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.930409014225006,0.808618485927582,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.903465032577515,0.861498475074768,0.884133458137512,0.847453474998474,0.90768301486969,0.801234483718872,0.903465032577515,0.861498475074768,0.861499011516571,0.903465032577515, -0.847453474998474,0.884132981300354,0.884133458137512,0.847453474998474,0.861499011516571,0.903465032577515,0.808618485927582,0.930409014225006,0.801234483718872,0.90768301486969,0.847453474998474,0.884132981300354,0.808618485927582,0.930409014225006,0.75,0.939692974090576,0.75,0.915798008441925,0.801234483718872,0.90768301486969,0.75,0.939692974090576,0.691381514072418,0.930409014225006,0.698765516281128,0.90768301486969,0.75,0.915798008441925,0.691381514072418,0.930409014225006,0.638500988483429,0.903465032577515,0.652546525001526,0.884132981300354,0.698765516281128,0.90768301486969,0.638500988483429,0.903465032577515,0.596534967422485,0.861498475074768,0.615867018699646,0.847453474998474,0.652546525001526,0.884132981300354,0.596534967422485,0.861498475074768,0.569590985774994,0.808618485927582,0.59231698513031,0.801234006881714,0.615867018699646,0.847453474998474,0.569590985774994,0.808618485927582,0.560307025909424,0.75,0.584201991558075,0.75,0.59231698513031,0.801234006881714,0.560307025909424,0.75,0.569590985774994,0.691381514072418,0.59231698513031,0.698765516281128,0.584201991558075,0.75,0.569590985774994,0.691381514072418,0.596534967422485,0.638500988483429,0.615867018699646,0.652546525001526,0.59231698513031,0.698765516281128,0.596534967422485,0.638500988483429,0.638500988483429,0.596534967422485,0.652546525001526,0.615866482257843,0.615867018699646,0.652546525001526,0.638500988483429,0.596534967422485,0.691381514072418,0.569590985774994,0.698765516281128,0.59231698513031,0.652546525001526,0.615866482257843,0.691381514072418,0.569590985774994,0.75,0.560307025909424,0.75,0.584201991558075,0.698765516281128,0.59231698513031,0.75,0.560307025909424,0.808618485927582,0.569590985774994,0.801234483718872,0.59231698513031,0.75,0.584201991558075,0.808618485927582,0.569590985774994,0.861499011516571,0.596534967422485,0.847453474998474,0.615866482257843,0.801234483718872,0.59231698513031,0.861499011516571,0.596534967422485,0.903465032577515,0.638500988483429,0.884132981300354,0.652546525001526,0.847453474998474,0.615866482257843, -0.903465032577515,0.638500988483429,0.930409014225006,0.691381514072418,0.90768301486969,0.698765516281128,0.884132981300354,0.652546525001526,0.930409014225006,0.691381514072418,0.939692974090576,0.75,0.915798008441925,0.75,0.90768301486969,0.698765516281128,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.90768301486969,0.801234483718872,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.884133458137512,0.847453474998474,0.861499011516571,0.831008493900299,0.881075024604797,0.792588472366333,0.884133458137512,0.847453474998474,0.847453474998474,0.884132981300354,0.831008493900299,0.861498475074768,0.861499011516571,0.831008493900299,0.847453474998474,0.884132981300354,0.801234483718872,0.90768301486969,0.792588472366333,0.881074488162994,0.831008493900299,0.861498475074768,0.801234483718872,0.90768301486969,0.75,0.915798008441925,0.75,0.88782000541687,0.792588472366333,0.881074488162994,0.75,0.915798008441925,0.698765516281128,0.90768301486969,0.707411527633667,0.881074488162994,0.75,0.88782000541687,0.698765516281128,0.90768301486969,0.652546525001526,0.884132981300354,0.668991506099701,0.861498475074768,0.707411527633667,0.881074488162994,0.652546525001526,0.884132981300354,0.615867018699646,0.847453474998474,0.638500988483429,0.831008493900299,0.668991506099701,0.861498475074768,0.615867018699646,0.847453474998474,0.59231698513031,0.801234006881714,0.618925511837006,0.792588472366333,0.638500988483429,0.831008493900299,0.59231698513031,0.801234006881714,0.584201991558075,0.75,0.61217999458313,0.75,0.618925511837006,0.792588472366333,0.584201991558075,0.75,0.59231698513031,0.698765516281128,0.618925511837006,0.707410991191864,0.61217999458313,0.75,0.59231698513031,0.698765516281128,0.615867018699646,0.652546525001526,0.638500988483429,0.668991506099701,0.618925511837006,0.707410991191864,0.615867018699646,0.652546525001526,0.652546525001526,0.615866482257843,0.668991506099701,0.638500988483429,0.638500988483429,0.668991506099701,0.652546525001526,0.615866482257843,0.698765516281128,0.59231698513031, -0.707411527633667,0.618924975395203,0.668991506099701,0.638500988483429,0.698765516281128,0.59231698513031,0.75,0.584201991558075,0.75,0.61217999458313,0.707411527633667,0.618924975395203,0.75,0.584201991558075,0.801234483718872,0.59231698513031,0.792588472366333,0.618924975395203,0.75,0.61217999458313,0.801234483718872,0.59231698513031,0.847453474998474,0.615866482257843,0.831008493900299,0.638500988483429,0.792588472366333,0.618924975395203,0.847453474998474,0.615866482257843,0.884132981300354,0.652546525001526,0.861499011516571,0.668991506099701,0.831008493900299,0.638500988483429,0.884132981300354,0.652546525001526,0.90768301486969,0.698765516281128,0.881074488162994,0.707410991191864,0.861499011516571,0.668991506099701,0.90768301486969,0.698765516281128,0.915798008441925,0.75,0.88782000541687,0.75,0.881074488162994,0.707410991191864,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.881075024604797,0.792588472366333,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.861499011516571,0.831008493900299,0.836118996143341,0.81256902217865,0.851238965988159,0.782894492149353,0.861499011516571,0.831008493900299,0.831008493900299,0.861498475074768,0.81256902217865,0.836118996143341,0.836118996143341,0.81256902217865,0.831008493900299,0.861498475074768,0.792588472366333,0.881074488162994,0.782894492149353,0.851238489151001,0.81256902217865,0.836118996143341,0.792588472366333,0.881074488162994,0.75,0.88782000541687,0.75,0.856448531150818,0.782894492149353,0.851238489151001,0.75,0.88782000541687,0.707411527633667,0.881074488162994,0.717105507850647,0.851238489151001,0.75,0.856448531150818,0.707411527633667,0.881074488162994,0.668991506099701,0.861498475074768,0.68743097782135,0.836118996143341,0.717105507850647,0.851238489151001,0.668991506099701,0.861498475074768,0.638500988483429,0.831008493900299,0.663881003856659,0.81256902217865,0.68743097782135,0.836118996143341,0.638500988483429,0.831008493900299,0.618925511837006,0.792588472366333,0.648761034011841,0.782894492149353,0.663881003856659,0.81256902217865, -0.618925511837006,0.792588472366333,0.61217999458313,0.75,0.643551468849182,0.75,0.648761034011841,0.782894492149353,0.61217999458313,0.75,0.618925511837006,0.707410991191864,0.648761034011841,0.717105507850647,0.643551468849182,0.75,0.618925511837006,0.707410991191864,0.638500988483429,0.668991506099701,0.663881003856659,0.68743097782135,0.648761034011841,0.717105507850647,0.638500988483429,0.668991506099701,0.668991506099701,0.638500988483429,0.68743097782135,0.663881003856659,0.663881003856659,0.68743097782135,0.668991506099701,0.638500988483429,0.707411527633667,0.618924975395203,0.717105507850647,0.648761034011841,0.68743097782135,0.663881003856659,0.707411527633667,0.618924975395203,0.75,0.61217999458313,0.75,0.643550992012024,0.717105507850647,0.648761034011841,0.75,0.61217999458313,0.792588472366333,0.618924975395203,0.782894492149353,0.648761034011841,0.75,0.643550992012024,0.792588472366333,0.618924975395203,0.831008493900299,0.638500988483429,0.81256902217865,0.663881003856659,0.782894492149353,0.648761034011841,0.831008493900299,0.638500988483429,0.861499011516571,0.668991506099701,0.836118996143341,0.68743097782135,0.81256902217865,0.663881003856659,0.861499011516571,0.668991506099701,0.881074488162994,0.707410991191864,0.851238965988159,0.717105507850647,0.836118996143341,0.68743097782135,0.881074488162994,0.707410991191864,0.88782000541687,0.75,0.856449007987976,0.75,0.851238965988159,0.717105507850647,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.851238965988159,0.782894492149353,0.856449007987976,0.75,0.851238965988159,0.782894492149353,0.836118996143341,0.81256902217865,0.808618485927582,0.792588472366333,0.818910002708435,0.772390007972717,0.836118996143341,0.81256902217865,0.81256902217865,0.836118996143341,0.792588472366333,0.808618485927582,0.808618485927582,0.792588472366333,0.81256902217865,0.836118996143341,0.782894492149353,0.851238489151001,0.772390484809875,0.818910002708435,0.792588472366333,0.808618485927582,0.782894492149353,0.851238489151001,0.75,0.856448531150818,0.75, -0.822456002235413,0.772390484809875,0.818910002708435,0.75,0.856448531150818,0.717105507850647,0.851238489151001,0.727609992027283,0.818910002708435,0.75,0.822456002235413,0.717105507850647,0.851238489151001,0.68743097782135,0.836118996143341,0.707411527633667,0.808618485927582,0.727609992027283,0.818910002708435,0.68743097782135,0.836118996143341,0.663881003856659,0.81256902217865,0.691381514072418,0.792588472366333,0.707411527633667,0.808618485927582,0.663881003856659,0.81256902217865,0.648761034011841,0.782894492149353,0.681089997291565,0.772390007972717,0.691381514072418,0.792588472366333,0.648761034011841,0.782894492149353,0.643551468849182,0.75,0.677543520927429,0.75,0.681089997291565,0.772390007972717,0.643551468849182,0.75,0.648761034011841,0.717105507850647,0.681089997291565,0.727609515190125,0.677543520927429,0.75,0.648761034011841,0.717105507850647,0.663881003856659,0.68743097782135,0.691381514072418,0.707410991191864,0.681089997291565,0.727609515190125,0.663881003856659,0.68743097782135,0.68743097782135,0.663881003856659,0.707411527633667,0.691381514072418,0.691381514072418,0.707410991191864,0.68743097782135,0.663881003856659,0.717105507850647,0.648761034011841,0.727609992027283,0.681089997291565,0.707411527633667,0.691381514072418,0.717105507850647,0.648761034011841,0.75,0.643550992012024,0.75,0.677543520927429,0.727609992027283,0.681089997291565,0.75,0.643550992012024,0.782894492149353,0.648761034011841,0.772390484809875,0.681089997291565,0.75,0.677543520927429,0.782894492149353,0.648761034011841,0.81256902217865,0.663881003856659,0.792588472366333,0.691381514072418,0.772390484809875,0.681089997291565,0.81256902217865,0.663881003856659,0.836118996143341,0.68743097782135,0.808618485927582,0.707410991191864,0.792588472366333,0.691381514072418,0.836118996143341,0.68743097782135,0.851238965988159,0.717105507850647,0.818910002708435,0.727609515190125,0.808618485927582,0.707410991191864,0.851238965988159,0.717105507850647,0.856449007987976,0.75,0.822456479072571,0.75,0.818910002708435,0.727609515190125,0.856449007987976, -0.75,0.851238965988159,0.782894492149353,0.818910002708435,0.772390007972717,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.808618485927582,0.792588472366333,0.779674530029297,0.771559476852417,0.784884512424469,0.761334538459778,0.808618485927582,0.792588472366333,0.792588472366333,0.808618485927582,0.77156001329422,0.779674530029297,0.779674530029297,0.771559476852417,0.792588472366333,0.808618485927582,0.772390484809875,0.818910002708435,0.761334538459778,0.784884512424469,0.77156001329422,0.779674530029297,0.772390484809875,0.818910002708435,0.75,0.822456002235413,0.75,0.78667950630188,0.761334538459778,0.784884512424469,0.75,0.822456002235413,0.727609992027283,0.818910002708435,0.738665521144867,0.784884512424469,0.75,0.78667950630188,0.727609992027283,0.818910002708435,0.707411527633667,0.808618485927582,0.72843998670578,0.779674530029297,0.738665521144867,0.784884512424469,0.707411527633667,0.808618485927582,0.691381514072418,0.792588472366333,0.720325469970703,0.771559476852417,0.72843998670578,0.779674530029297,0.691381514072418,0.792588472366333,0.681089997291565,0.772390007972717,0.715115487575531,0.761334538459778,0.720325469970703,0.771559476852417,0.681089997291565,0.772390007972717,0.677543520927429,0.75,0.71332049369812,0.75,0.715115487575531,0.761334538459778,0.677543520927429,0.75,0.681089997291565,0.727609515190125,0.715115487575531,0.738665521144867,0.71332049369812,0.75,0.681089997291565,0.727609515190125,0.691381514072418,0.707410991191864,0.720325469970703,0.72843998670578,0.715115487575531,0.738665521144867,0.691381514072418,0.707410991191864,0.707411527633667,0.691381514072418,0.72843998670578,0.720325469970703,0.720325469970703,0.72843998670578,0.707411527633667,0.691381514072418,0.727609992027283,0.681089997291565,0.738665521144867,0.715115487575531,0.72843998670578,0.720325469970703,0.727609992027283,0.681089997291565,0.75,0.677543520927429,0.75,0.713320016860962,0.738665521144867,0.715115487575531,0.75,0.677543520927429,0.772390484809875,0.681089997291565,0.761334538459778, -0.715115487575531,0.75,0.713320016860962,0.772390484809875,0.681089997291565,0.792588472366333,0.691381514072418,0.77156001329422,0.720325469970703,0.761334538459778,0.715115487575531,0.792588472366333,0.691381514072418,0.808618485927582,0.707410991191864,0.779674530029297,0.72843998670578,0.77156001329422,0.720325469970703,0.808618485927582,0.707410991191864,0.818910002708435,0.727609515190125,0.784884512424469,0.738665521144867,0.779674530029297,0.72843998670578,0.818910002708435,0.727609515190125,0.822456479072571,0.75,0.78667950630188,0.75,0.784884512424469,0.738665521144867,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.784884512424469,0.761334538459778,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.779674530029297,0.771559476852417,0.75,0.75,0.779674530029297,0.771559476852417,0.77156001329422,0.779674530029297,0.75,0.75,0.77156001329422,0.779674530029297,0.761334538459778,0.784884512424469,0.75,0.75,0.761334538459778,0.784884512424469,0.75,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.738665521144867,0.784884512424469,0.75,0.75,0.738665521144867,0.784884512424469,0.72843998670578,0.779674530029297,0.75,0.75,0.72843998670578,0.779674530029297,0.720325469970703,0.771559476852417,0.75,0.75,0.720325469970703,0.771559476852417,0.715115487575531,0.761334538459778,0.75,0.75,0.715115487575531,0.761334538459778,0.71332049369812,0.75,0.75,0.75,0.71332049369812,0.75,0.715115487575531,0.738665521144867,0.75,0.75,0.715115487575531,0.738665521144867,0.720325469970703,0.72843998670578,0.75,0.75,0.720325469970703,0.72843998670578,0.72843998670578,0.720325469970703,0.75,0.75,0.72843998670578,0.720325469970703,0.738665521144867,0.715115487575531,0.75,0.75,0.738665521144867,0.715115487575531,0.75,0.713320016860962,0.75,0.75,0.75,0.713320016860962,0.761334538459778,0.715115487575531,0.75,0.75,0.761334538459778,0.715115487575531,0.77156001329422,0.720325469970703,0.75,0.75,0.77156001329422,0.720325469970703,0.779674530029297,0.72843998670578,0.75,0.75,0.779674530029297,0.72843998670578,0.784884512424469, -0.738665521144867,0.75,0.75,0.784884512424469,0.738665521144867,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.75,0.75 - } - UVIndex: *700 { - a: 0,3,2,1,4,7,6,5,8,11,10,9,12,15,14,13,16,19,18,17,20,23,22,21,24,27,26,25,28,31,30,29,32,35,34,33,36,39,38,37,40,43,42,41,44,47,46,45,48,51,50,49,52,55,54,53,56,59,58,57,60,63,62,61,64,67,66,65,68,71,70,69,72,75,74,73,76,79,78,77,80,83,82,81,84,87,86,85,88,91,90,89,92,95,94,93,96,99,98,97,100,103,102,101,104,107,106,105,108,111,110,109,112,115,114,113,116,119,118,117,120,123,122,121,124,127,126,125,128,131,130,129,132,135,134,133,136,139,138,137,140,143,142,141,144,147,146,145,148,151,150,149,152,155,154,153,156,159,158,157,160,163,162,161,164,167,166,165,168,171,170,169,172,175,174,173,176,179,178,177,180,183,182,181,184,187,186,185,188,191,190,189,192,195,194,193,196,199,198,197,200,203,202,201,204,207,206,205,208,211,210,209,212,215,214,213,216,219,218,217,220,223,222,221,224,227,226,225,228,231,230,229,232,235,234,233,236,239,238,237,240,243,242,241,244,247,246,245,248,251,250,249,252,255,254,253,256,259,258,257,260,263,262,261,264,267,266,265,268,271,270,269,272,275,274,273,276,279,278,277,280,283,282,281,284,287,286,285,288,291,290,289,292,295,294,293,296,299,298,297,300,303,302,301,304,307,306,305,308,311,310,309,312,315,314,313,316,319,318,317,320,323,322,321,324,327,326,325,328,331,330,329,332,335,334,333,336,339,338,337,340,343,342,341,344,347,346,345,348,351,350,349,352,355,354,353,356,359,358,357,360,363,362,361,364,367,366,365,368,371,370,369,372,375,374,373,376,379,378,377,380,383,382,381,384,387,386,385,388,391,390,389,392,395,394,393,396,399,398,397,400,403,402,401,404,407,406,405,408,411,410,409,412,415,414,413,416,419,418,417,420,423,422,421,424,427,426,425,428,431,430,429,432,435,434,433,436,439,438,437,440,443,442,441,444,447,446,445,448,451,450,449,452,455,454,453,456,459,458,457,460,463,462,461,464,467,466,465,468,471,470,469,472,475,474,473,476,479,478,477,480,483,482,481,484,487,486,485,488,491,490,489,492,495,494,493,496,499,498,497,500,503,502,501,504,507,506,505,508,511,510,509,512,515,514,513,516,519,518,517,520,523,522,521,524,527,526,525,528,531,530,529,532,535, -534,533,536,539,538,537,540,543,542,541,544,547,546,545,548,551,550,549,552,555,554,553,556,559,558,557,560,563,562,561,564,567,566,565,568,571,570,569,572,575,574,573,576,579,578,577,580,583,582,581,584,587,586,585,588,591,590,589,592,595,594,593,596,599,598,597,600,603,602,601,604,607,606,605,608,611,610,609,612,615,614,613,616,619,618,617,620,623,622,621,624,627,626,625,628,631,630,629,632,635,634,633,636,639,638,637,640,642,641,643,645,644,646,648,647,649,651,650,652,654,653,655,657,656,658,660,659,661,663,662,664,666,665,667,669,668,670,672,671,673,675,674,676,678,677,679,681,680,682,684,683,685,687,686,688,690,689,691,693,692,694,696,695,697,699,698 - } - } - LayerElementMaterial: 0 { - Version: 101 - Name: "" - MappingInformationType: "AllSame" - ReferenceInformationType: "IndexToDirect" - Materials: *1 { - a: 0 - } - } - Layer: 0 { - Version: 100 - LayerElement: { - Type: "LayerElementNormal" - TypedIndex: 0 - } - LayerElement: { - Type: "LayerElementMaterial" - TypedIndex: 0 - } - LayerElement: { - Type: "LayerElementUV" - TypedIndex: 0 - } - } - } - Geometry: 2807563820512, "Geometry::Jaw_Left", "Shape" { - Version: 100 - Indexes: *5114 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, -3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, -3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, -4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, -4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, -5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, -5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, -5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6193,6195,6196,6198,6199,6200,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6238,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6289,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335, -6336,6338,6339,6340,6341,6343,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826, -6836,6837,6838,6839,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7146,7147,7156,7157,7159,7160,7161,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474, -7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7575,7577,7578,7580,7581,7582,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7620,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7671,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980, -7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8528,8529,8538,8539,8541,8542,8543,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669, -8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *15342 { - a: 1.3649650812149,-0.000192165374755859,-0.000145912170410156,1.36496507003903,-0.000127792358398438,-0.000138759613037109,1.36496543884277,-0.000192165374755859,-0.000145912170410156,1.36496472358704,-0.000224590301513672,-0.000141143798828125,1.36496503278613,-0.000304698944091797,-0.000152587890625,1.36496496200562,-0.000224590301513672,-0.000141143798828125,1.3649650812149,-0.000175952911376953,-0.000134706497192383,1.36496507003903,-0.000128269195556641,-0.000123023986816406,1.36496484279633,-0.000175952911376953,-0.000134706497192383,1.36496496200562,-0.000240325927734375,-0.000120162963867188,1.36496507003903,-0.000304698944091797,-0.000130653381347656,1.36496496200562,-0.000240325927734375,-0.000119209289550781,1.36496496200562,-0.000192642211914063,-0.000104427337646484,1.36496507003903,-0.00016021728515625,-6.22272491455078e-05,1.36496472358704,-0.000192642211914063,-0.000104427337646484,1.36496507003903,-0.000304222106933594,-0.000125885009765625,1.3649650812149,-0.000223636627197266,-9.25064086914063e-05,1.36496507003903,-0.000207901000976563,-5.00679016113281e-05,1.36496472358704,-0.000223636627197266,-9.25064086914063e-05,1.36496511101723,-0.0003204345703125,-0.000124454498291016,1.36496520042419,-0.000288963317871094,-9.87052917480469e-05,1.36496510915458,-0.000288009643554688,-6.29425048828125e-05,1.36496496200562,-0.000288963317871094,-9.87052917480469e-05,1.36496513523161,-0.000352859497070313,-0.0001220703125,1.3649650812149,-0.000352382659912109,-0.000112056732177734,1.36496513709426,-0.000352859497070313,-8.86917114257813e-05,1.36496496200562,-0.000352382659912109,-0.000112056732177734,1.36496506817639,-0.000416278839111328,-0.000121116638183594,1.36496496200562,-0.000417232513427734,-0.000117301940917969,1.36496506258845,-0.000417232513427734,-9.44137573242188e-05,1.36496496200562,-0.000417232513427734,-0.000117301940917969,1.36496501229703,-0.000448226928710938,-0.000116348266601563,1.36496496200562,-0.000449180603027344,-0.000108718872070313,1.36496505513787,-0.000448226928710938, --9.5367431640625e-05,1.36496460437775,-0.000449180603027344,-0.000108718872070313,1.36496493965387,-0.00048065185546875,-0.000111579895019531,1.36496496200562,-0.000464916229248047,-0.000104904174804688,1.36496507376432,-0.00048065185546875,-0.000102996826171875,1.36496531963348,-0.000464916229248047,-0.000104904174804688,1.3649650812149,-0.000256061553955078,-0.000145912170410156,1.36496496200562,-0.000256061553955078,-0.000131607055664063,1.36496484279633,-0.000256061553955078,-0.000145912170410156,1.36496496200562,-0.000256061553955078,-0.000131607055664063,1.36496505700052,-0.000304222106933594,-0.000138759613037109,1.36496514081955,-0.000288009643554688,-0.000150203704833984,1.3649650812149,-0.000224590301513672,-0.000137805938720703,1.3649650812149,-0.000192642211914063,-0.000142812728881836,1.36496496200562,-0.00016021728515625,-0.000130891799926758,1.36496496200562,-0.00016021728515625,-0.000143527984619141,1.36496496200562,-0.00016021728515625,-0.000140905380249023,1.3649650812149,-0.000144481658935547,-0.00012516975402832,1.36496496200562,-0.000143527984619141,-0.00014042854309082,1.3649650812149,-0.000144481658935547,-0.000138282775878906,1.36496499180794,-0.000128269195556641,-0.000123023986816406,1.36496507003903,-0.000127792358398438,-0.000136375427246094,1.36496520042419,-0.000127792358398438,-0.000138998031616211,1.36496493220329,-0.000128269195556641,-0.000136613845825195,1.36496502161026,-0.000128269195556641,-0.000123023986816406,1.36496490240097,-0.000127792358398438,-0.000138998031616211,1.36496511101723,-0.000128269195556641,-0.000136613845825195,1.3649650812149,-0.000128746032714844,-0.000123739242553711,1.36496472358704,-0.000128269195556641,-0.000139474868774414,1.3649650812149,-0.000128269195556641,-0.000136852264404297,1.36496496200562,-0.00016021728515625,-0.000130891799926758,1.36496520042419,-0.000192642211914063,-0.000142812728881836,1.3649650812149,-0.00016021728515625,-0.000143527984619141,1.36496496200562,-0.00016021728515625,-0.000140905380249023,1.36496484279633,-0.000192165374755859, --0.000136375427246094,1.36496460437775,-0.000256061553955078,-0.000136375427246094,1.36496514081955,-0.000288009643554688,-0.000134468078613281,1.36496495828032,-0.000303745269775391,-0.000145435333251953,1.36496478319168,-0.000288486480712891,-0.000141620635986328,1.36496496200562,-0.000257015228271484,-0.000136375427246094,1.3649650812149,-0.000224590301513672,-0.000129222869873047,1.3649650812149,-0.000207901000976563,-0.000116825103759766,1.3649650812149,-0.000208854675292969,-0.000127315521240234,1.36496496200562,-0.000175952911376953,-0.000119924545288086,1.3649650812149,-0.000175952911376953,-8.96453857421875e-05,1.36496496200562,-0.00016021728515625,-0.000110387802124023,1.36496496200562,-0.00016021728515625,-6.77108764648438e-05,1.36496496200562,-0.000144481658935547,-9.72747802734375e-05,1.3649650812149,-0.00016021728515625,-6.22272491455078e-05,1.36496507003903,-0.000127792358398438,-9.27448272705078e-05,1.3649650812149,-0.000128269195556641,-9.27448272705078e-05,1.36496484279633,-0.00016021728515625,-6.22272491455078e-05,1.36496499180794,-0.000128269195556641,-9.27448272705078e-05,1.36496490240097,-0.00016021728515625,-6.34193420410156e-05,1.36496478319168,-0.000144481658935547,-9.41753387451172e-05,1.36496484279633,-0.000175952911376953,-8.96453857421875e-05,1.3649650812149,-0.000175952911376953,-0.000119924545288086,1.36496484279633,-0.00016021728515625,-0.000110387802124023,1.36496472358704,-0.000192642211914063,-0.000110626220703125,1.36496472358704,-0.000192165374755859,-0.000123023986816406,1.36496514081955,-0.000288009643554688,-0.000123023986816406,1.36496507003903,-0.000304698944091797,-0.000127792358398438,1.36496502161026,-0.000272274017333984,-0.000126361846923828,1.3649650812149,-0.000272274017333984,-0.000123977661132813,1.36496496200562,-0.000288009643554688,-0.000123023986816406,1.36496499180794,-0.000272274017333984,-0.000126361846923828,1.36496496200562,-0.000272274017333984,-0.000123977661132813,1.36496496200562,-0.000240325927734375,-0.000113487243652344,1.36496496200562,-0.000224590301513672, --0.000112533569335938,1.3649650812149,-0.000192165374755859,-9.48905944824219e-05,1.3649650812149,-0.000208377838134766,-7.29560852050781e-05,1.3649650812149,-0.000192642211914063,-7.72476196289063e-05,1.36496520042419,-0.000207901000976563,-4.43458557128906e-05,1.3649650812149,-0.000175952911376953,-5.03063201904297e-05,1.36496520042419,-0.000207901000976563,-4.57763671875e-05,1.36496507003903,-0.000175952911376953,-5.00679016113281e-05,1.36496499180794,-0.000175952911376953,-4.86373901367188e-05,1.36496484279633,-0.000207901000976563,-4.57763671875e-05,1.36496493220329,-0.000175952911376953,-4.86373901367188e-05,1.36496484279633,-0.000207901000976563,-4.10079956054688e-05,1.36496531963348,-0.000175952911376953,-4.60147857666016e-05,1.36496472358704,-0.000208377838134766,-7.29560852050781e-05,1.36496496200562,-0.000192165374755859,-9.48905944824219e-05,1.36496460437775,-0.000192642211914063,-7.72476196289063e-05,1.36496543884277,-0.000224590301513672,-0.000102996826171875,1.36496460437775,-0.000208377838134766,-0.000104427337646484,1.36496496200562,-0.000304222106933594,-0.000123977661132813,1.36496507003903,-0.0003204345703125,-0.000124931335449219,1.36496490240097,-0.000288963317871094,-0.000123977661132813,1.36496496200562,-0.000304222106933594,-0.000123977661132813,1.36496496200562,-0.000288963317871094,-0.000123977661132813,1.3649650812149,-0.000288486480712891,-0.000118732452392578,1.36496496200562,-0.000256538391113281,-0.000115871429443359,1.3649650812149,-0.000240325927734375,-9.34600830078125e-05,1.36496520042419,-0.000288009643554688,-8.44001770019531e-05,1.36496520042419,-0.000256061553955078,-7.53402709960938e-05,1.36496520042419,-0.000288963317871094,-6.00814819335938e-05,1.3649650812149,-0.000256061553955078,-4.91142272949219e-05,1.36496496200562,-0.000288963317871094,-6.00814819335938e-05,1.36496507003903,-0.000256061553955078,-5.43594360351563e-05,1.36496496200562,-0.000256538391113281,-5.05447387695313e-05,1.3649650812149,-0.000288963317871094,-6.00814819335938e-05,1.36496484279633,-0.000256538391113281, --5.05447387695313e-05,1.36496472358704,-0.000288009643554688,-5.340576171875e-05,1.36496484279633,-0.000256061553955078,-4.33921813964844e-05,1.36496520042419,-0.000288009643554688,-8.44001770019531e-05,1.36496496200562,-0.000240325927734375,-9.34600830078125e-05,1.36496472358704,-0.000256061553955078,-7.53402709960938e-05,1.36496520042419,-0.000288963317871094,-0.000108242034912109,1.36496543884277,-0.000256061553955078,-0.000104427337646484,1.36496526002884,-0.000352859497070313,-0.000119209289550781,1.36496507376432,-0.000336170196533203,-0.000123977661132813,1.3649650812149,-0.000336170196533203,-0.000121593475341797,1.36496496200562,-0.000352859497070313,-0.000119209289550781,1.36496496200562,-0.000336170196533203,-0.000121593475341797,1.36496496200562,-0.000352859497070313,-0.000115871429443359,1.36496496200562,-0.0003204345703125,-0.000116348266601563,1.36496484279633,-0.0003204345703125,-0.000106334686279297,1.36496520042419,-0.000352859497070313,-0.000102043151855469,1.3649650812149,-0.0003204345703125,-9.34600830078125e-05,1.36496496200562,-0.000352859497070313,-8.67843627929688e-05,1.3649650812149,-0.0003204345703125,-7.34329223632813e-05,1.36496496200562,-0.000351905822753906,-8.58306884765625e-05,1.36496507003903,-0.0003204345703125,-7.58171081542969e-05,1.36496496200562,-0.0003204345703125,-7.43865966796875e-05,1.36496475338936,-0.000351905822753906,-8.58306884765625e-05,1.36496520042419,-0.0003204345703125,-7.43865966796875e-05,1.36496520042419,-0.000352859497070313,-8.29696655273438e-05,1.36496484279633,-0.0003204345703125,-6.91413879394531e-05,1.36496543884277,-0.000352859497070313,-0.000102043151855469,1.36496543884277,-0.0003204345703125,-0.000106334686279297,1.36496496200562,-0.0003204345703125,-9.34600830078125e-05,1.36496484279633,-0.000352382659912109,-0.000116825103759766,1.36496472358704,-0.0003204345703125,-0.000113010406494141,1.36496499180794,-0.000416755676269531,-0.000117301940917969,1.36496504582465,-0.000384807586669922,-0.000122547149658203,1.36496496200562,-0.000384330749511719,-0.000118255615234375, -1.3649650812149,-0.000416755676269531,-0.000117301940917969,1.36496493220329,-0.000384330749511719,-0.000118255615234375,1.36496496200562,-0.000416278839111328,-0.000116348266601563,1.36496496200562,-0.000384330749511719,-0.000115871429443359,1.3649650812149,-0.000384807586669922,-0.000115871429443359,1.36496496200562,-0.000416278839111328,-0.000108718872070313,1.3649650812149,-0.000384807586669922,-0.000107288360595703,1.36496496200562,-0.000416278839111328,-9.1552734375e-05,1.36496496200562,-0.000384807586669922,-9.1552734375e-05,1.36496496200562,-0.000417232513427734,-9.34600830078125e-05,1.364965043962,-0.000384807586669922,-9.29832458496094e-05,1.36496496200562,-0.000384330749511719,-9.1552734375e-05,1.36496499180794,-0.000417232513427734,-9.34600830078125e-05,1.36496493220329,-0.000384330749511719,-9.1552734375e-05,1.36496484279633,-0.000416755676269531,-8.67843627929688e-05,1.36496460437775,-0.000384807586669922,-8.63075256347656e-05,1.36496472358704,-0.000416278839111328,-0.000108718872070313,1.36496484279633,-0.000384807586669922,-0.000115871429443359,1.36496496200562,-0.000384807586669922,-0.000107288360595703,1.36496496200562,-0.000417232513427734,-0.000120162963867188,1.36496472358704,-0.000384807586669922,-0.000120162963867188,1.3649650812149,-0.000448703765869141,-0.000112533569335938,1.36496501788497,-0.000432014465332031,-0.000118255615234375,1.36496499180794,-0.000432968139648438,-0.000116348266601563,1.36496493220329,-0.000448703765869141,-0.000112533569335938,1.36496511101723,-0.000432968139648438,-0.000116348266601563,1.36496496200562,-0.000448226928710938,-0.000111579895019531,1.36496496200562,-0.000432491302490234,-0.000115394592285156,1.3649650812149,-0.000432491302490234,-0.00011444091796875,1.3649650812149,-0.000448226928710938,-0.000102996826171875,1.3649650812149,-0.000448703765869141,-0.000105857849121094,1.36496496200562,-0.000449180603027344,-9.25064086914063e-05,1.36496496200562,-0.000448226928710938,-9.25064086914063e-05,1.36496493220329,-0.000448703765869141,-9.63211059570313e-05,1.3649650812149, --0.000448226928710938,-9.5367431640625e-05,1.36496484279633,-0.000449180603027344,-9.34600830078125e-05,1.36496493220329,-0.000448703765869141,-9.63211059570313e-05,1.36496490240097,-0.000449180603027344,-9.34600830078125e-05,1.3649650812149,-0.000448703765869141,-9.1552734375e-05,1.36496537923813,-0.000448226928710938,-8.96453857421875e-05,1.36496496200562,-0.000448226928710938,-0.000102996826171875,1.36496472358704,-0.000432491302490234,-0.00011444091796875,1.36496460437775,-0.000448703765869141,-0.000105857849121094,1.36496472358704,-0.000448226928710938,-0.000111579895019531,1.36496472358704,-0.000432968139648438,-0.000115394592285156,1.36496493220329,-0.00048065185546875,-0.000111579895019531,1.3649650067091,-0.00048065185546875,-0.00011444091796875,1.36496493220329,-0.00048065185546875,-0.000112533569335938,1.36496493220329,-0.00048065185546875,-0.000111579895019531,1.36496505141258,-0.00048065185546875,-0.000112533569335938,1.36496496200562,-0.00048065185546875,-0.000108718872070313,1.36496496200562,-0.000464916229248047,-0.000111579895019531,1.36496496200562,-0.000464916229248047,-0.000107765197753906,1.36496496200562,-0.000463962554931641,-0.000102043151855469,1.36496496200562,-0.000464916229248047,-0.000102043151855469,1.36496496200562,-0.00048065185546875,-9.918212890625e-05,1.3649650812149,-0.000463962554931641,-9.63211059570313e-05,1.3649650812149,-0.00048065185546875,-0.000101089477539063,1.36496506631374,-0.000464916229248047,-9.82284545898438e-05,1.36496499180794,-0.000463962554931641,-9.72747802734375e-05,1.3649650812149,-0.00048065185546875,-0.000101089477539063,1.36496490240097,-0.000463962554931641,-9.72747802734375e-05,1.3649650812149,-0.00048065185546875,-9.918212890625e-05,1.36496514081955,-0.000464439392089844,-9.44137573242188e-05,1.36496472358704,-0.000463962554931641,-0.000102043151855469,1.36496472358704,-0.000464916229248047,-0.000107765197753906,1.36496460437775,-0.000464916229248047,-0.000102043151855469,1.36496460437775,-0.000464439392089844,-0.0001068115234375,1.3649650812149,-0.000464916229248047, --0.000110626220703125,1.3649650812149,-0.000496387481689453,-0.000107765197753906,1.36496505141258,-0.00048065185546875,-0.000107765197753906,1.36496496200562,-0.00048065185546875,-9.918212890625e-05,1.36496520042419,-0.00048065185546875,-0.000102996826171875,1.36496502161026,-0.00048065185546875,-0.000107765197753906,1.3649650812149,-0.00048065185546875,-9.918212890625e-05,1.36496472358704,-0.00048065185546875,-0.000102996826171875,1.36496472358704,-0.000143527984619141,-0.00014042854309082,1.36496531963348,-0.000144481658935547,-0.00012516975402832,1.36496496200562,-0.000144481658935547,-0.000138282775878906,1.36496460437775,-0.000224590301513672,-0.000138759613037109,1.36496496200562,-0.00016021728515625,-6.77108764648438e-05,1.3649650812149,-0.000144481658935547,-9.72747802734375e-05,1.36496496200562,-0.000207901000976563,-4.43458557128906e-05,1.36496460437775,-0.000175952911376953,-5.03063201904297e-05,1.36496567726135,-0.000288963317871094,-6.00814819335938e-05,1.36496543884277,-0.000256061553955078,-4.91142272949219e-05,1.3649650812149,-0.000352859497070313,-8.67843627929688e-05,1.36496520042419,-0.0003204345703125,-7.34329223632813e-05,1.36496531963348,-0.000416278839111328,-9.1552734375e-05,1.36496484279633,-0.000384807586669922,-9.1552734375e-05,1.36496496200562,-0.000449180603027344,-9.25064086914063e-05,1.36496496200562,-0.000448226928710938,-9.25064086914063e-05,1.3649650812149,-0.000463962554931641,-9.63211059570313e-05,1.3649650812149,-0.00048065185546875,-0.000108718872070313,1.3649650812149,-0.00048065185546875,-0.000102996826171875,1.36496496200562,-0.000448226928710938,-0.000111579895019531,1.36496537923813,-0.000464916229248047,-0.000111579895019531,1.36496472358704,-0.000416278839111328,-0.000116348266601563,1.3649650812149,-0.000432491302490234,-0.000115394592285156,1.3649650812149,-0.000352859497070313,-0.000115871429443359,1.36496543884277,-0.000384330749511719,-0.000115871429443359,1.3649650812149,-0.000288486480712891,-0.000118732452392578,1.36496496200562,-0.0003204345703125,-0.000116348266601563, -1.36496531963348,-0.000240325927734375,-0.000113487243652344,1.36496460437775,-0.000256538391113281,-0.000115871429443359,1.36496460437775,-0.000207901000976563,-0.000116825103759766,1.36496496200562,-0.000224590301513672,-0.000112533569335938,1.36496472358704,-0.000224113464355469,-0.000129222869873047,1.36496496200562,-0.000208854675292969,-0.000127315521240234,1.36496496200562,-0.000192165374755859,-0.000136375427246094,1.36496496200562,-0.000128269195556641,-0.000139474868774414,1.36496496200562,-0.000128746032714844,-0.000123739242553711,1.36496496200562,-0.000128269195556641,-0.000136852264404297,1.36496496200562,-0.000192642211914063,-0.000110626220703125,1.36496496200562,-0.000192165374755859,-0.000123023986816406,1.36496520042419,-0.000224590301513672,-0.000102996826171875,1.36496496200562,-0.000208377838134766,-0.000104427337646484,1.3649650812149,-0.000288963317871094,-0.000108242034912109,1.36496484279633,-0.000256061553955078,-0.000104427337646484,1.36496496200562,-0.000352382659912109,-0.000116825103759766,1.3649650812149,-0.0003204345703125,-0.000113010406494141,1.36496496200562,-0.000417232513427734,-0.000120162963867188,1.3649650812149,-0.000384807586669922,-0.000120162963867188,1.36496496200562,-0.000448226928710938,-0.000111579895019531,1.36496496200562,-0.000432968139648438,-0.000115394592285156,1.3649650812149,-0.000464439392089844,-0.0001068115234375,1.36496496200562,-0.000464916229248047,-0.000110626220703125,1.36496496200562,-0.00048065185546875,-0.000102996826171875,1.36496496200562,-0.000448703765869141,-9.1552734375e-05,1.36496520042419,-0.000464439392089844,-9.44137573242188e-05,1.36496496200562,-0.000416755676269531,-8.67843627929688e-05,1.36496496200562,-0.000448226928710938,-8.96453857421875e-05,1.3649650812149,-0.000352859497070313,-8.29696655273438e-05,1.36496496200562,-0.000384807586669922,-8.63075256347656e-05,1.3649650812149,-0.000288009643554688,-5.340576171875e-05,1.36496496200562,-0.0003204345703125,-6.91413879394531e-05,1.36496496200562,-0.000207901000976563,-4.10079956054688e-05, -1.36496496200562,-0.000256061553955078,-4.33921813964844e-05,1.36496496200562,-0.00016021728515625,-6.34193420410156e-05,1.36496496200562,-0.000175952911376953,-4.60147857666016e-05,1.36496496200562,-0.000144481658935547,-9.41753387451172e-05,1.36496496200562,-0.000288963317871094,-0.000150203704833984,1.36496496200562,-0.000288009643554688,-0.000134468078613281,1.36496496200562,-0.000288486480712891,-0.000142097473144531,1.22847032546997,-0.000173091888427734,-0.000131607055664063,1.228471159935,-0.000173091888427734,-0.000131607055664063,1.22847068309784,-0.000202178955078125,-0.000126361846923828,1.22847064770758,-0.000274181365966797,-0.000136852264404297,1.22847068309784,-0.000202178955078125,-0.000126361846923828,1.22847068309784,-0.000158786773681641,-0.000121116638183594,1.22847092151642,-0.000158786773681641,-0.000121116638183594,1.22847068309784,-0.000231266021728516,-0.000131607055664063,1.22847104072571,-0.000230312347412109,-0.000131130218505859,1.22847056388855,-0.000258922576904297,-0.000134944915771484,1.22847068309784,-0.000202655792236328,-0.000123977661132813,1.22847068309784,-0.000173568725585938,-0.000128269195556641,1.22847068309784,-0.000173568725585938,-0.000128269195556641,1.22847092151642,-0.000173091888427734,-0.000123023986816406,1.22847092151642,-0.000202178955078125,-0.000125408172607422,1.22847068309784,-0.000173091888427734,-0.000123023986816406,1.22847068309784,-0.000259876251220703,-0.000135421752929688,1.22840416431427,-0.000216007232666016,-0.000131607055664063,1.22847064211965,-0.000303268432617188,-0.000156402587890625,1.22853767871857,-0.000216007232666016,-0.000132083892822266,1.22847064398229,-0.000461578369140625,-8.20159912109375e-05,1.22852694988251,-0.000447273254394531,-8.10623168945313e-05,1.22854840755463,-0.00038909912109375,-7.82012939453125e-05,1.22857689857483,-0.000303268432617188,-6.96182250976563e-05,1.22857856750488,-0.000245094299316406,-6.19888305664063e-05,1.22847064398229,-0.000447273254394531,-0.000149726867675781,1.22852408885956,-0.000432968139648438,-0.000147819519042969, -1.22854864597321,-0.00037384033203125,-0.000144004821777344,1.22857975959778,-0.000303268432617188,-0.000134944915771484,1.22858262062073,-0.000246047973632813,-0.000126361846923828,1.22850143909454,-0.000447273254394531,-0.000121116638183594,1.22850167751312,-0.000447273254394531,-8.10623168945313e-05,1.22852170467377,-0.000432491302490234,-0.000123023986816406,1.22850322723389,-0.000432014465332031,-0.000149726867675781,1.22847064398229,-0.000446796417236328,-0.000123977661132813,1.22853577136993,-0.000403404235839844,-0.000118255615234375,1.22854340076447,-0.000418663024902344,-8.0108642578125e-05,1.22854650020599,-0.000374794006347656,-0.000111579895019531,1.22853672504425,-0.00040435791015625,-0.000146865844726563,1.22856187820435,-0.000346183776855469,-0.000112533569335938,1.22856068611145,-0.000345706939697266,-7.34329223632813e-05,1.22857332229614,-0.000302791595458984,-0.000104904174804688,1.22856378555298,-0.000347137451171875,-0.000140190124511719,1.2285795211792,-0.000274181365966797,-0.000115394592285156,1.22858309745789,-0.000274181365966797,-6.53266906738281e-05,1.22858047485352,-0.000244617462158203,-0.000101566314697266,1.22858119010925,-0.000274658203125,-0.000133037567138672,1.22849333286285,-0.000462055206298828,-0.000113487243652344,1.22847064398229,-0.000461578369140625,-0.000110626220703125,1.22849440574646,-0.000461578369140625,-8.10623168945313e-05,1.22850275039673,-0.000447750091552734,-0.000108718872070313,1.22848761081696,-0.000446796417236328,-0.000133514404296875,1.22853791713715,-0.000418663024902344,-0.000109672546386719,1.22852504253387,-0.000432491302490234,-0.000109672546386719,1.22854483127594,-0.000432968139648438,-7.72476196289063e-05,1.2285395860672,-0.000403881072998047,-0.000105857849121094,1.2285293340683,-0.000418663024902344,-0.000127792358398438,1.22855949401855,-0.000361442565917969,-0.000102043151855469,1.22854769229889,-0.000374794006347656,-0.000102996826171875,1.22855710983276,-0.000375270843505859,-7.34329223632813e-05,1.22856450080872,-0.000346660614013672,-9.918212890625e-05, -1.22855424880981,-0.000361442565917969,-0.000120162963867188,1.22858500480652,-0.000288486480712891,-8.96453857421875e-05,1.22857809066772,-0.000302314758300781,-9.20295715332031e-05,1.22858357429504,-0.000288486480712891,-6.67572021484375e-05,1.22858715057373,-0.000273227691650391,-8.7738037109375e-05,1.22857785224915,-0.000288963317871094,-0.000112533569335938,1.22851765155792,-0.000447750091552734,-0.000113487243652344,1.22851884365082,-0.000446796417236328,-8.20159912109375e-05,1.22851383686066,-0.000432491302490234,-0.000130653381347656,1.2285121679306,-0.000432491302490234,-0.000141143798828125,1.22852146625519,-0.000418186187744141,-0.000138282775878906,1.22851431369781,-0.000432968139648438,-0.000147819519042969,1.22850096225739,-0.000432491302490234,-0.000140190124511719,1.22848716378212,-0.000447750091552734,-0.000142097473144531,1.22848734259605,-0.000447273254394531,-0.000149726867675781,1.22847064398229,-0.000446796417236328,-0.000142097473144531,1.22854673862457,-0.000403881072998047,-0.000105857849121094,1.22854888439178,-0.000403404235839844,-7.72476196289063e-05,1.22853982448578,-0.000389575958251953,-0.000128746032714844,1.22854006290436,-0.00038909912109375,-0.000138282775878906,1.22854673862457,-0.000374794006347656,-0.000133514404296875,1.22854173183441,-0.00038909912109375,-0.000145912170410156,1.22853481769562,-0.00040435791015625,-0.000136375427246094,1.22852957248688,-0.000418186187744141,-0.000138282775878906,1.22853195667267,-0.000418663024902344,-0.000146865844726563,1.2285737991333,-0.000318050384521484,-9.77516174316406e-05,1.22857069969177,-0.000331878662109375,-6.96182250976563e-05,1.22856712341309,-0.000318050384521484,-0.000123500823974609,1.22856783866882,-0.000332355499267578,-0.000130653381347656,1.22857642173767,-0.000303745269775391,-0.000125885009765625,1.22857022285461,-0.000332832336425781,-0.000139236450195313,1.22856140136719,-0.000346660614013672,-0.000131607055664063,1.22855401039124,-0.000360965728759766,-0.000134468078613281,1.22855591773987,-0.000361442565917969,-0.000142097473144531, -1.22858667373657,-0.0002593994140625,-8.72611999511719e-05,1.22858548164368,-0.000258922576904297,-6.34193420410156e-05,1.22858142852783,-0.000245094299316406,-9.05990600585938e-05,1.22858023643494,-0.000245094299316406,-0.000110149383544922,1.22857999801636,-0.000245094299316406,-0.000123977661132813,1.22858071327209,-0.000245571136474609,-0.000118732452392578,1.22858190536499,-0.000245094299316406,-0.000131607055664063,1.2285795211792,-0.000274181365966797,-0.000124454498291016,1.2285783290863,-0.000288486480712891,-0.000125885009765625,1.22858047485352,-0.000288009643554688,-0.000133991241455078,1.22848019003868,-0.000461578369140625,-0.000110626220703125,1.22848057746887,-0.000476360321044922,-8.29696655273438e-05,1.22847962379456,-0.000447750091552734,-0.000142097473144531,1.2284799516201,-0.000446319580078125,-0.000149726867675781,1.22847962379456,-0.000447750091552734,-0.000131607055664063,1.22849404811859,-0.000446796417236328,-0.000142097473144531,1.22849524021149,-0.000447273254394531,-0.000148773193359375,1.22850143909454,-0.000446796417236328,-0.000110626220703125,1.22850108146667,-0.000462055206298828,-8.29696655273438e-05,1.22849535942078,-0.000446796417236328,-0.00012969970703125,1.22850823402405,-0.000447750091552734,-0.000111579895019531,1.22850799560547,-0.000461578369140625,-8.20159912109375e-05,1.22850668430328,-0.000432491302490234,-0.000140190124511719,1.22850906848907,-0.000432014465332031,-0.000147819519042969,1.22850704193115,-0.000432968139648438,-0.000128746032714844,1.22851717472076,-0.000432968139648438,-0.000140190124511719,1.22851955890656,-0.000432968139648438,-0.000148773193359375,1.22852456569672,-0.000433444976806641,-0.000111579895019531,1.22852671146393,-0.000447273254394531,-8.0108642578125e-05,1.22851979732513,-0.000432491302490234,-0.000127792358398438,1.22853124141693,-0.000432491302490234,-0.000108718872070313,1.22853648662567,-0.000446796417236328,-7.82012939453125e-05,1.22852551937103,-0.000417709350585938,-0.000139236450195313,1.22852838039398,-0.000417709350585938,-0.000147819519042969, -1.22852456569672,-0.000418663024902344,-0.000124931335449219,1.22853267192841,-0.000403404235839844,-0.000138282775878906,1.22853457927704,-0.000403404235839844,-0.00014495849609375,1.22854030132294,-0.000417232513427734,-0.000108718872070313,1.22854673862457,-0.000418663024902344,-7.82012939453125e-05,1.22853434085846,-0.000403881072998047,-0.000123023986816406,1.2285441160202,-0.00040435791015625,-0.000105857849121094,1.22854840755463,-0.000418186187744141,-7.82012939453125e-05,1.22853672504425,-0.000403881072998047,-0.0001373291015625,1.22853863239288,-0.00040435791015625,-0.000144004821777344,1.22853624820709,-0.000403881072998047,-0.000123977661132813,1.22854340076447,-0.00038909912109375,-0.000134468078613281,1.22854506969452,-0.00038909912109375,-0.000144004821777344,1.22854864597321,-0.000389575958251953,-0.000102996826171875,1.22854971885681,-0.00038909912109375,-7.53402709960938e-05,1.22854387760162,-0.000389575958251953,-0.000119209289550781,1.22855305671692,-0.000375270843505859,-0.000102043151855469,1.22855257987976,-0.00038909912109375,-7.2479248046875e-05,1.22855043411255,-0.000374794006347656,-0.000134468078613281,1.2285521030426,-0.00037384033203125,-0.000144004821777344,1.2285487651825,-0.000374317169189453,-0.000121116638183594,1.2285578250885,-0.000360965728759766,-0.000132560729980469,1.22855973243713,-0.000361442565917969,-0.000142097473144531,1.22856521606445,-0.000346660614013672,-9.918212890625e-05,1.22856163978577,-0.000345706939697266,-7.2479248046875e-05,1.22856140136719,-0.000346660614013672,-0.000118255615234375,1.22856974601746,-0.000346660614013672,-9.72747802734375e-05,1.22856664657593,-0.000346660614013672,-7.15255737304688e-05,1.22856473922729,-0.000331401824951172,-0.000131607055664063,1.22856712341309,-0.000331878662109375,-0.000139236450195313,1.2285635471344,-0.000331878662109375,-0.000119209289550781,1.22857213020325,-0.000318050384521484,-0.000128746032714844,1.22857451438904,-0.000316619873046875,-0.000136852264404297,1.22857880592346,-0.000302791595458984,-9.44137573242188e-05, -1.22857666015625,-0.000302791595458984,-6.77108764648438e-05,1.22857165336609,-0.000302791595458984,-0.000115394592285156,1.2284804880619,-0.000461578369140625,-9.1552734375e-05,1.22847064398229,-0.000462055206298828,-9.25064086914063e-05,1.22858738899231,-0.000258922576904297,-7.10487365722656e-05,1.22858071327209,-0.000245094299316406,-7.10487365722656e-05,1.22850251197815,-0.000447273254394531,-9.1552734375e-05,1.22850847244263,-0.000446796417236328,-9.1552734375e-05,1.22851932048798,-0.000447273254394531,-8.96453857421875e-05,1.22852718830109,-0.000446796417236328,-8.7738037109375e-05,1.22850263118744,-0.000461578369140625,-8.96453857421875e-05,1.22852742671967,-0.000432491302490234,-8.7738037109375e-05,1.22849524021149,-0.000461101531982422,-9.1552734375e-05,1.22853577136993,-0.000432968139648438,-8.86917114257813e-05,1.2285441160202,-0.000432491302490234,-8.86917114257813e-05,1.22854578495026,-0.000418186187744141,-8.96453857421875e-05,1.22854316234589,-0.000418186187744141,-8.7738037109375e-05,1.22854793071747,-0.000418186187744141,-8.67843627929688e-05,1.22854948043823,-0.00040435791015625,-8.48770141601563e-05,1.22855019569397,-0.00038909912109375,-8.392333984375e-05,1.22854864597321,-0.00038909912109375,-8.48770141601563e-05,1.22855401039124,-0.000389575958251953,-8.29696655273438e-05,1.22855949401855,-0.000374794006347656,-8.20159912109375e-05,1.22856378555298,-0.000346660614013672,-8.10623168945313e-05,1.2285623550415,-0.000345706939697266,-8.10623168945313e-05,1.22856903076172,-0.000346660614013672,-7.91549682617188e-05,1.2285737991333,-0.000331878662109375,-7.82012939453125e-05,1.22857928276062,-0.000303268432617188,-7.72476196289063e-05,1.2285783290863,-0.000302791595458984,-7.53402709960938e-05,1.22858548164368,-0.000288963317871094,-7.43865966796875e-05,1.22858643531799,-0.000274181365966797,-7.2479248046875e-05,1.22847064398229,-0.000461578369140625,-8.10623168945313e-05,1.22852289676666,-0.000432968139648438,-8.10623168945313e-05,1.2285441160202,-0.00038909912109375,-7.82012939453125e-05,1.22856640815735, --0.000302791595458984,-6.91413879394531e-05,1.22857165336609,-0.000245094299316406,-6.19888305664063e-05,1.22847064211965,-0.000417232513427734,-0.000153541564941406,1.22847064398229,-0.000374794006347656,-0.000164985656738281,1.22849988937378,-0.000447273254394531,-0.000120162963867188,1.22850072383881,-0.000446796417236328,-8.10623168945313e-05,1.22851812839508,-0.000418186187744141,-0.000123977661132813,1.22847064398229,-0.000432491302490234,-0.000147819519042969,1.22847064398229,-0.000447273254394531,-0.000123977661132813,1.22853076457977,-0.000403881072998047,-0.000119209289550781,1.2285383939743,-0.000418186187744141,-7.72476196289063e-05,1.22854197025299,-0.000374317169189453,-0.000111579895019531,1.22847064398229,-0.000403881072998047,-0.000161170959472656,1.22855019569397,-0.000331878662109375,-0.000111579895019531,1.22855305671692,-0.000346660614013672,-7.34329223632813e-05,1.22856426239014,-0.000288486480712891,-0.000108718872070313,1.22856593132019,-0.000259876251220703,-0.00011444091796875,1.22856712341309,-0.000274181365966797,-6.38961791992188e-05,1.22856855392456,-0.000245094299316406,-0.000102519989013672,1.22848692536354,-0.000446796417236328,-0.000110626220703125,1.22847064398229,-0.000446796417236328,-0.000110626220703125,1.22848853468895,-0.000461578369140625,-8.20159912109375e-05,1.22850120067596,-0.000446796417236328,-0.000110626220703125,1.22848534584045,-0.000447750091552734,-0.000132560729980469,1.2285248041153,-0.000418186187744141,-0.000109672546386719,1.22852003574371,-0.000432491302490234,-0.000111579895019531,1.22853267192841,-0.000432491302490234,-7.91549682617188e-05,1.22853267192841,-0.00040435791015625,-0.0001068115234375,1.22852146625519,-0.000417709350585938,-0.000125885009765625,1.22853982448578,-0.000360965728759766,-0.000100135803222656,1.22854244709015,-0.000375270843505859,-0.000102996826171875,1.22854173183441,-0.000360488891601563,-7.34329223632813e-05,1.22854864597321,-0.000346660614013672,-0.000101089477539063,1.22854292392731,-0.000360965728759766,-0.0001220703125,1.22856187820435, --0.000288486480712891,-8.96453857421875e-05,1.22856402397156,-0.000288486480712891,-9.48905944824219e-05,1.22856569290161,-0.000288963317871094,-6.67572021484375e-05,1.22856307029724,-0.000274181365966797,-8.82148742675781e-05,1.22856497764587,-0.000288486480712891,-0.000112533569335938,1.22851002216339,-0.000432491302490234,-0.000111579895019531,1.22851312160492,-0.000447750091552734,-8.0108642578125e-05,1.2285064458847,-0.000432491302490234,-0.00012969970703125,1.22850573062897,-0.000432968139648438,-0.000136375427246094,1.22851383686066,-0.000418186187744141,-0.0001373291015625,1.22847064398229,-0.000432968139648438,-0.000150680541992188,1.22849595546722,-0.000432491302490234,-0.000138282775878906,1.22848495841026,-0.000447273254394531,-0.000139236450195313,1.22847064398229,-0.000432968139648438,-0.000145912170410156,1.22847064398229,-0.000447273254394531,-0.000138282775878906,1.22853314876556,-0.000389575958251953,-0.000102996826171875,1.22853672504425,-0.000403881072998047,-7.43865966796875e-05,1.22853171825409,-0.00038909912109375,-0.000123023986816406,1.22853171825409,-0.00038909912109375,-0.000132560729980469,1.22853720188141,-0.000374794006347656,-0.000132560729980469,1.22847064398229,-0.000389575958251953,-0.000162124633789063,1.22852694988251,-0.000403881072998047,-0.000134468078613281,1.22852122783661,-0.000418663024902344,-0.000135421752929688,1.22847064398229,-0.000418186187744141,-0.000155448913574219,1.22855257987976,-0.000317573547363281,-9.48905944824219e-05,1.22855639457703,-0.000317573547363281,-6.96182250976563e-05,1.22855401039124,-0.000317573547363281,-0.000120639801025391,1.22855472564697,-0.000317573547363281,-0.000126838684082031,1.22855806350708,-0.000288486480712891,-0.000125885009765625,1.22854948043823,-0.000346660614013672,-0.000128746032714844,1.22854244709015,-0.000360965728759766,-0.000130653381347656,1.22847064398229,-0.000360965728759766,-0.000165939331054688,1.22856521606445,-0.0002593994140625,-8.72611999511719e-05,1.22856855392456,-0.000259876251220703,-6.29425048828125e-05,1.22856855392456, --0.000244617462158203,-9.05990600585938e-05,1.22856783866882,-0.000245094299316406,-0.000109195709228516,1.22856092453003,-0.000244617462158203,-0.000120639801025391,1.22856211662292,-0.000259876251220703,-0.0001220703125,1.22856044769287,-0.000274181365966797,-0.000124454498291016,1.22847732901573,-0.000447750091552734,-0.000110626220703125,1.22847779095173,-0.000462055206298828,-8.20159912109375e-05,1.22847901284695,-0.000446796417236328,-0.000139236450195313,1.22847872972488,-0.000447750091552734,-0.000131607055664063,1.22848987579346,-0.000432968139648438,-0.000139236450195313,1.22849655151367,-0.000447273254394531,-0.000110626220703125,1.22849702835083,-0.000461101531982422,-8.0108642578125e-05,1.2284928560257,-0.000432491302490234,-0.000128746032714844,1.2285031080246,-0.000447750091552734,-0.000110626220703125,1.22850382328033,-0.000447273254394531,-8.0108642578125e-05,1.22850108146667,-0.000432968139648438,-0.0001373291015625,1.22850263118744,-0.000432968139648438,-0.000127792358398438,1.22850930690765,-0.000418663024902344,-0.000136375427246094,1.22851669788361,-0.000432491302490234,-0.000109672546386719,1.22851979732513,-0.000447750091552734,-7.91549682617188e-05,1.2285133600235,-0.000418663024902344,-0.000126838684082031,1.22852003574371,-0.000418186187744141,-0.000108718872070313,1.22852671146393,-0.000432491302490234,-7.91549682617188e-05,1.22851765155792,-0.000418186187744141,-0.000136375427246094,1.22851765155792,-0.000417232513427734,-0.000126838684082031,1.2285236120224,-0.000403404235839844,-0.000136375427246094,1.22852957248688,-0.000403404235839844,-0.000107765197753906,1.22853648662567,-0.000417709350585938,-7.91549682617188e-05,1.22852742671967,-0.000403881072998047,-0.0001220703125,1.22853052616119,-0.000403881072998047,-0.000105857849121094,1.22853577136993,-0.000403404235839844,-7.82012939453125e-05,1.2285293340683,-0.00038909912109375,-0.000133514404296875,1.2285293340683,-0.000403881072998047,-0.000123023986816406,1.2285338640213,-0.00038909912109375,-0.000132560729980469,1.22853744029999, --0.000389575958251953,-0.000102996826171875,1.22854006290436,-0.00038909912109375,-7.62939453125e-05,1.22853577136993,-0.000375747680664063,-0.000118255615234375,1.22854030132294,-0.000375270843505859,-0.000102043151855469,1.22854220867157,-0.000374317169189453,-7.43865966796875e-05,1.22854006290436,-0.000374794006347656,-0.000132560729980469,1.22854173183441,-0.000375270843505859,-0.000118255615234375,1.2285453081131,-0.000360965728759766,-0.000131607055664063,1.22854483127594,-0.000346183776855469,-0.000100135803222656,1.22854697704315,-0.000346660614013672,-7.15255737304688e-05,1.22854864597321,-0.000346660614013672,-0.000118255615234375,1.22854912281036,-0.000332355499267578,-9.67979431152344e-05,1.22855257987976,-0.000332355499267578,-7.00950622558594e-05,1.22855186462402,-0.000331878662109375,-0.00012969970703125,1.22855114936829,-0.000331878662109375,-0.000118732452392578,1.22855687141418,-0.000302791595458984,-0.000126361846923828,1.22855854034424,-0.000302314758300781,-9.48905944824219e-05,1.22856163978577,-0.000302791595458984,-6.81877136230469e-05,1.22855949401855,-0.000302791595458984,-0.000117301940917969,1.22847694158554,-0.000462055206298828,-9.1552734375e-05,1.22847064398229,-0.000461578369140625,-9.25064086914063e-05,1.22856521606445,-0.000259876251220703,-7.00950622558594e-05,1.22856903076172,-0.000245571136474609,-7.05718994140625e-05,1.22850120067596,-0.000446796417236328,-8.96453857421875e-05,1.22850334644318,-0.000447273254394531,-9.05990600585938e-05,1.22851192951202,-0.000447750091552734,-9.1552734375e-05,1.22851884365082,-0.000432968139648438,-8.7738037109375e-05,1.22849726676941,-0.000447750091552734,-8.7738037109375e-05,1.22852218151093,-0.000432491302490234,-9.05990600585938e-05,1.22848784923553,-0.000461578369140625,-9.1552734375e-05,1.22852265834808,-0.000432491302490234,-8.7738037109375e-05,1.2285281419754,-0.000418663024902344,-8.86917114257813e-05,1.22853243350983,-0.000418663024902344,-8.67843627929688e-05,1.22853577136993,-0.000418663024902344,-8.67843627929688e-05,1.22853243350983, --0.000403404235839844,-8.58306884765625e-05,1.2285338640213,-0.00038909912109375,-8.48770141601563e-05,1.22853767871857,-0.000389575958251953,-8.48770141601563e-05,1.22854363918304,-0.00038909912109375,-8.48770141601563e-05,1.2285407781601,-0.000375270843505859,-8.29696655273438e-05,1.22853934764862,-0.000360965728759766,-8.0108642578125e-05,1.2285441160202,-0.000346660614013672,-8.0108642578125e-05,1.22855019569397,-0.000346183776855469,-7.91549682617188e-05,1.22855019569397,-0.000331401824951172,-8.0108642578125e-05,1.22855305671692,-0.000317096710205078,-7.86781311035156e-05,1.22855854034424,-0.000303745269775391,-7.62939453125e-05,1.22856402397156,-0.000302314758300781,-7.62939453125e-05,1.22856187820435,-0.000288486480712891,-7.48634338378906e-05,1.22856330871582,-0.000274181365966797,-7.2479248046875e-05,1.22847899794579,-0.000461578369140625,-8.10623168945313e-05,1.22847064398229,-0.000461101531982422,-7.91549682617188e-05,1.22849059104919,-0.000462055206298828,-8.0108642578125e-05,1.22849893569946,-0.000462055206298828,-7.72476196289063e-05,1.22850120067596,-0.000446796417236328,-8.10623168945313e-05,1.22850596904755,-0.000446796417236328,-8.0108642578125e-05,1.22851622104645,-0.000447750091552734,-8.0108642578125e-05,1.22852337360382,-0.000446796417236328,-7.72476196289063e-05,1.22852504253387,-0.000432968139648438,-7.91549682617188e-05,1.22853195667267,-0.000432491302490234,-7.72476196289063e-05,1.2285395860672,-0.000432491302490234,-7.62939453125e-05,1.22854244709015,-0.000418186187744141,-7.53402709960938e-05,1.22854125499725,-0.000418186187744141,-7.72476196289063e-05,1.22854220867157,-0.000418186187744141,-7.72476196289063e-05,1.22854292392731,-0.000403881072998047,-7.43865966796875e-05,1.22854506969452,-0.00038909912109375,-7.62939453125e-05,1.22854626178741,-0.000389575958251953,-7.62939453125e-05,1.22854745388031,-0.000375270843505859,-7.43865966796875e-05,1.22854924201965,-0.000375747680664063,-7.43865966796875e-05,1.22855424880981,-0.000345706939697266,-7.2479248046875e-05,1.22855639457703,-0.000346660614013672, --7.2479248046875e-05,1.22855997085571,-0.000331878662109375,-6.96182250976563e-05,1.22856378555298,-0.000317096710205078,-6.96182250976563e-05,1.22856950759888,-0.000302314758300781,-6.72340393066406e-05,1.22857189178467,-0.000302314758300781,-6.866455078125e-05,1.22857475280762,-0.000288486480712891,-6.4849853515625e-05,1.22857522964478,-0.000274181365966797,-6.62803649902344e-05,1.22857713699341,-0.000259876251220703,-6.19888305664063e-05,1.22857522964478,-0.000245094299316406,-6.103515625e-05,1.2284799516201,-0.000447750091552734,-0.000134468078613281,1.22847064398229,-0.000447273254394531,-0.000130653381347656,1.22852146625519,-0.000418186187744141,-0.000127792358398438,1.22851884365082,-0.000432968139648438,-0.00012969970703125,1.22851359844208,-0.000432968139648438,-0.000134468078613281,1.22850692272186,-0.000432491302490234,-0.000131607055664063,1.2285248041153,-0.000418663024902344,-0.000130653381347656,1.22850108146667,-0.000446796417236328,-0.000125885009765625,1.2285293340683,-0.000418663024902344,-0.000130653381347656,1.22849500179291,-0.000447750091552734,-0.000133514404296875,1.22853362560272,-0.00040435791015625,-0.000125885009765625,1.22848716378212,-0.000447273254394531,-0.000136375427246094,1.2285350561142,-0.000403881072998047,-0.0001220703125,1.22853624820709,-0.000403881072998047,-0.000126838684082031,1.22853982448578,-0.000389575958251953,-0.000132560729980469,1.22854363918304,-0.000389575958251953,-0.000125885009765625,1.22854626178741,-0.000375270843505859,-0.000117301940917969,1.22854924201965,-0.000374317169189453,-0.000123023986816406,1.22855424880981,-0.000360965728759766,-0.000125885009765625,1.22856044769287,-0.000346660614013672,-0.0001220703125,1.22856187820435,-0.000346660614013672,-0.000117301940917969,1.22856378555298,-0.000331878662109375,-0.0001220703125,1.22856760025024,-0.000317573547363281,-0.000125885009765625,1.22857189178467,-0.000302791595458984,-0.000118732452392578,1.22857451438904,-0.000302791595458984,-0.000110626220703125,1.22857785224915,-0.000288486480712891,-0.000116348266601563, -1.2285795211792,-0.000274181365966797,-0.000117778778076172,1.22857999801636,-0.000245094299316406,-0.000113010406494141,1.22858047485352,-0.000244617462158203,-0.000106334686279297,1.22856760025024,-0.000245094299316406,-0.000105857849121094,1.22856616973877,-0.000244617462158203,-0.000113487243652344,1.2284799516201,-0.000446796417236328,-0.000128746032714844,1.22847064398229,-0.000446796417236328,-0.000121116638183594,1.22847826778889,-0.000447273254394531,-0.000123977661132813,1.22847064398229,-0.000446796417236328,-0.000120162963867188,1.2284904718399,-0.000447750091552734,-0.000127792358398438,1.22849762439728,-0.000447273254394531,-0.000124931335449219,1.22850179672241,-0.000447273254394531,-0.000118255615234375,1.22850751876831,-0.000433444976806641,-0.000125885009765625,1.22851502895355,-0.000432491302490234,-0.000126838684082031,1.22852146625519,-0.000432491302490234,-0.000123023986816406,1.22852265834808,-0.000432968139648438,-0.000120162963867188,1.22852623462677,-0.000418663024902344,-0.0001220703125,1.22853195667267,-0.000418663024902344,-0.000123977661132813,1.22853624820709,-0.000403404235839844,-0.000118255615234375,1.22853696346283,-0.000403881072998047,-0.000115394592285156,1.22853863239288,-0.000403404235839844,-0.000119209289550781,1.22854197025299,-0.000389575958251953,-0.000123977661132813,1.2285453081131,-0.00038909912109375,-0.000116348266601563,1.22854673862457,-0.000374317169189453,-0.000108718872070313,1.22855043411255,-0.000374794006347656,-0.000115394592285156,1.22855639457703,-0.000360965728759766,-0.000116348266601563,1.22856330871582,-0.000346183776855469,-0.000112533569335938,1.22856307029724,-0.000346660614013672,-0.000108718872070313,1.22856545448303,-0.000332355499267578,-0.000113487243652344,1.22856974601746,-0.000317096710205078,-0.000117301940917969,1.22857403755188,-0.000302791595458984,-0.000110626220703125,1.22857522964478,-0.000302314758300781,-0.000102996826171875,1.22858023643494,-0.000288486480712891,-0.0001068115234375,1.22858309745789,-0.000274181365966797,-0.000107765197753906, -1.22858285903931,-0.000245571136474609,-0.000103950500488281,1.22858071327209,-0.000244617462158203,-0.000100135803222656,1.22856855392456,-0.000245571136474609,-9.918212890625e-05,1.22856616973877,-0.000244617462158203,-0.000102996826171875,1.22856378555298,-0.000274181365966797,-0.000107288360595703,1.22856283187866,-0.000288963317871094,-0.000107765197753906,1.22856378555298,-0.000288963317871094,-0.000105857849121094,1.22855854034424,-0.000303745269775391,-0.000110626220703125,1.22855281829834,-0.000317096710205078,-0.000115394592285156,1.22854971885681,-0.000331878662109375,-0.000113010406494141,1.22854971885681,-0.000346660614013672,-0.000108718872070313,1.22854697704315,-0.000346183776855469,-0.000112533569335938,1.22854149341583,-0.000360488891601563,-0.000117301940917969,1.22854101657867,-0.000374794006347656,-0.000117301940917969,1.22854220867157,-0.000374317169189453,-0.000110626220703125,1.22853624820709,-0.000375270843505859,-0.000113487243652344,1.22853171825409,-0.000389575958251953,-0.000118255615234375,1.2285293340683,-0.000403404235839844,-0.000117301940917969,1.22853100299835,-0.000403404235839844,-0.00011444091796875,1.22852742671967,-0.000403404235839844,-0.000119209289550781,1.22852170467377,-0.000418663024902344,-0.0001220703125,1.2285178899765,-0.000418663024902344,-0.000121116638183594,1.22851860523224,-0.000432491302490234,-0.000118255615234375,1.22851407527924,-0.000432968139648438,-0.0001220703125,1.22850692272186,-0.000432968139648438,-0.000123977661132813,1.22850239276886,-0.000432491302490234,-0.000123023986816406,1.22850036621094,-0.000447273254394531,-0.000117301940917969,1.22849380970001,-0.000433444976806641,-0.000123023986816406,1.22848543524742,-0.000447273254394531,-0.000127792358398438,1.2285521030426,-0.000258922576904297,-0.000128269195556641,1.22853481769562,-0.000244617462158203,-0.000138759613037109,1.22854387760162,-0.000317573547363281,-0.000141620635986328,1.22853982448578,-0.000346660614013672,-0.000143051147460938,1.22853600978851,-0.000360965728759766,-0.000142097473144531, -1.22852861881256,-0.000374794006347656,-0.000144004821777344,1.22852599620819,-0.00038909912109375,-0.000142097473144531,1.22851860523224,-0.000403881072998047,-0.00014495849609375,1.22851407527924,-0.000417709350585938,-0.000142097473144531,1.22850561141968,-0.000417232513427734,-0.000143051147460938,1.22849833965302,-0.000432968139648438,-0.000141143798828125,1.22848811745644,-0.000432968139648438,-0.000143051147460938,1.22848090529442,-0.000432491302490234,-0.000142097473144531,1.22841465473175,-0.000447273254394531,-8.10623168945313e-05,1.22839343547821,-0.00038909912109375,-7.82012939453125e-05,1.22836399078369,-0.000303268432617188,-6.96182250976563e-05,1.22836256027222,-0.000245094299316406,-6.19888305664063e-05,1.22841739654541,-0.000432968139648438,-0.000147819519042969,1.22839272022247,-0.00037384033203125,-0.000144004821777344,1.22836184501648,-0.000303268432617188,-0.000134944915771484,1.22835898399353,-0.000246047973632813,-0.000126361846923828,1.22844016551971,-0.000447273254394531,-0.000121116638183594,1.22843968868256,-0.000447273254394531,-8.10623168945313e-05,1.22841966152191,-0.000432491302490234,-0.000123023986816406,1.22843825817108,-0.000432014465332031,-0.000149726867675781,1.22840571403503,-0.000403404235839844,-0.000118255615234375,1.22839784622192,-0.000418663024902344,-8.0108642578125e-05,1.22839498519897,-0.000374794006347656,-0.000111579895019531,1.22840464115143,-0.00040435791015625,-0.000146865844726563,1.22837924957275,-0.000346183776855469,-0.000112533569335938,1.22838091850281,-0.000345706939697266,-7.34329223632813e-05,1.22836804389954,-0.000302791595458984,-0.000104904174804688,1.22837734222412,-0.000347137451171875,-0.000140190124511719,1.22836184501648,-0.000274181365966797,-0.000115394592285156,1.22835779190063,-0.000274181365966797,-6.53266906738281e-05,1.22836112976074,-0.000244617462158203,-0.000101566314697266,1.22835898399353,-0.000274658203125,-0.000133037567138672,1.22844779491425,-0.000462055206298828,-0.000113487243652344,1.22844707965851,-0.000461578369140625,-8.10623168945313e-05, -1.22843861579895,-0.000447750091552734,-0.000108718872070313,1.22845351696014,-0.000446796417236328,-0.000133514404296875,1.22840356826782,-0.000418663024902344,-0.000109672546386719,1.2284163236618,-0.000432491302490234,-0.000109672546386719,1.22839665412903,-0.000432968139648438,-7.72476196289063e-05,1.22840178012848,-0.000403881072998047,-0.000105857849121094,1.22841203212738,-0.000418663024902344,-0.000127792358398438,1.22838163375854,-0.000361442565917969,-0.000102043151855469,1.22839403152466,-0.000374794006347656,-0.000102996826171875,1.22838425636292,-0.000375270843505859,-7.34329223632813e-05,1.22837710380554,-0.000346660614013672,-9.918212890625e-05,1.22838687896729,-0.000361442565917969,-0.000120162963867188,1.22835636138916,-0.000288486480712891,-8.96453857421875e-05,1.22836303710938,-0.000302314758300781,-9.20295715332031e-05,1.22835803031921,-0.000288486480712891,-6.67572021484375e-05,1.22835421562195,-0.000273227691650391,-8.7738037109375e-05,1.22836351394653,-0.000288963317871094,-0.000112533569335938,1.22842383384705,-0.000447750091552734,-0.000113487243652344,1.22842276096344,-0.000446796417236328,-8.20159912109375e-05,1.22842752933502,-0.000432491302490234,-0.000130653381347656,1.22842943668365,-0.000432491302490234,-0.000141143798828125,1.22842001914978,-0.000418186187744141,-0.000138282775878906,1.22842681407928,-0.000432968139648438,-0.000147819519042969,1.22844076156616,-0.000432491302490234,-0.000140190124511719,1.22845405340195,-0.000447750091552734,-0.000142097473144531,1.2284542620182,-0.000447273254394531,-0.000149726867675781,1.22839426994324,-0.000403881072998047,-0.000105857849121094,1.22839283943176,-0.000403404235839844,-7.72476196289063e-05,1.22840166091919,-0.000389575958251953,-0.000128746032714844,1.2284015417099,-0.00038909912109375,-0.000138282775878906,1.22839510440826,-0.000374794006347656,-0.000133514404296875,1.22840023040771,-0.00038909912109375,-0.000145912170410156,1.22840654850006,-0.00040435791015625,-0.000136375427246094,1.22841143608093,-0.000418186187744141,-0.000138282775878906, -1.22840929031372,-0.000418663024902344,-0.000146865844726563,1.22836780548096,-0.000318050384521484,-9.77516174316406e-05,1.22837042808533,-0.000331878662109375,-6.96182250976563e-05,1.22837352752686,-0.000318050384521484,-0.000123500823974609,1.2283730506897,-0.000332355499267578,-0.000130653381347656,1.22836470603943,-0.000303745269775391,-0.000125885009765625,1.22837114334106,-0.000332832336425781,-0.000139236450195313,1.22837972640991,-0.000346660614013672,-0.000131607055664063,1.22838735580444,-0.000360965728759766,-0.000134468078613281,1.22838521003723,-0.000361442565917969,-0.000142097473144531,1.22835493087769,-0.0002593994140625,-8.72611999511719e-05,1.228355884552,-0.000258922576904297,-6.34193420410156e-05,1.22836017608643,-0.000245094299316406,-9.05990600585938e-05,1.22836136817932,-0.000245094299316406,-0.000110149383544922,1.22836089134216,-0.000245094299316406,-0.000123977661132813,1.22836065292358,-0.000245571136474609,-0.000118732452392578,1.22835946083069,-0.000245094299316406,-0.000131607055664063,1.22836208343506,-0.000274181365966797,-0.000124454498291016,1.22836256027222,-0.000288486480712891,-0.000125885009765625,1.228360414505,-0.000288009643554688,-0.000133991241455078,1.22846135497093,-0.000461578369140625,-0.000110626220703125,1.22846081852913,-0.000476360321044922,-8.29696655273438e-05,1.22846162319183,-0.000447750091552734,-0.000142097473144531,1.22846162319183,-0.000446319580078125,-0.000149726867675781,1.22846162319183,-0.000447750091552734,-0.000131607055664063,1.22844731807709,-0.000446796417236328,-0.000142097473144531,1.22844588756561,-0.000447273254394531,-0.000148773193359375,1.22843980789185,-0.000446796417236328,-0.000110626220703125,1.22844004631042,-0.000462055206298828,-8.29696655273438e-05,1.22844588756561,-0.000446796417236328,-0.00012969970703125,1.22843325138092,-0.000447750091552734,-0.000111579895019531,1.22843325138092,-0.000461578369140625,-8.20159912109375e-05,1.22843456268311,-0.000432491302490234,-0.000140190124511719,1.2284322977066,-0.000432014465332031,-0.000147819519042969, -1.22843420505524,-0.000432968139648438,-0.000128746032714844,1.22842490673065,-0.000432968139648438,-0.000140190124511719,1.2284220457077,-0.000432968139648438,-0.000148773193359375,1.22841680049896,-0.000433444976806641,-0.000111579895019531,1.22841465473175,-0.000447273254394531,-8.0108642578125e-05,1.22842192649841,-0.000432491302490234,-0.000127792358398438,1.22841048240662,-0.000432491302490234,-0.000108718872070313,1.2284049987793,-0.000446796417236328,-7.82012939453125e-05,1.22841608524323,-0.000417709350585938,-0.000139236450195313,1.2284129858017,-0.000417709350585938,-0.000147819519042969,1.22841715812683,-0.000418663024902344,-0.000124931335449219,1.22840845584869,-0.000403404235839844,-0.000138282775878906,1.22840690612793,-0.000403404235839844,-0.00014495849609375,1.22840130329132,-0.000417232513427734,-0.000108718872070313,1.22839450836182,-0.000418663024902344,-7.82012939453125e-05,1.22840678691864,-0.000403881072998047,-0.000123023986816406,1.22839772701263,-0.00040435791015625,-0.000105857849121094,1.22839319705963,-0.000418186187744141,-7.82012939453125e-05,1.22840487957001,-0.000403881072998047,-0.0001373291015625,1.22840297222137,-0.00040435791015625,-0.000144004821777344,1.22840523719788,-0.000403881072998047,-0.000123977661132813,1.22839820384979,-0.00038909912109375,-0.000134468078613281,1.22839593887329,-0.00038909912109375,-0.000144004821777344,1.22839272022247,-0.000389575958251953,-0.000102996826171875,1.22839140892029,-0.00038909912109375,-7.53402709960938e-05,1.22839736938477,-0.000389575958251953,-0.000119209289550781,1.2283878326416,-0.000375270843505859,-0.000102043151855469,1.22838878631592,-0.00038909912109375,-7.2479248046875e-05,1.22839164733887,-0.000374794006347656,-0.000134468078613281,1.22838926315308,-0.00037384033203125,-0.000144004821777344,1.22839212417603,-0.000374317169189453,-0.000121116638183594,1.22838377952576,-0.000360965728759766,-0.000132560729980469,1.22838091850281,-0.000361442565917969,-0.000142097473144531,1.22837591171265,-0.000346660614013672,-9.918212890625e-05, -1.22837948799133,-0.000345706939697266,-7.2479248046875e-05,1.22837948799133,-0.000346660614013672,-0.000118255615234375,1.2283718585968,-0.000346660614013672,-9.72747802734375e-05,1.22837471961975,-0.000346660614013672,-7.15255737304688e-05,1.2283763885498,-0.000331401824951172,-0.000131607055664063,1.22837424278259,-0.000331878662109375,-0.000139236450195313,1.22837781906128,-0.000331878662109375,-0.000119209289550781,1.22836923599243,-0.000318050384521484,-0.000128746032714844,1.22836661338806,-0.000316619873046875,-0.000136852264404297,1.22836232185364,-0.000302791595458984,-9.44137573242188e-05,1.22836446762085,-0.000302791595458984,-6.77108764648438e-05,1.22836971282959,-0.000302791595458984,-0.000115394592285156,1.22846081852913,-0.000461578369140625,-9.1552734375e-05,1.22835397720337,-0.000258922576904297,-7.10487365722656e-05,1.22836065292358,-0.000245094299316406,-7.10487365722656e-05,1.22843861579895,-0.000447273254394531,-9.1552734375e-05,1.22843289375305,-0.000446796417236328,-9.1552734375e-05,1.22842156887054,-0.000447273254394531,-8.96453857421875e-05,1.22841465473175,-0.000446796417236328,-8.7738037109375e-05,1.22843873500824,-0.000461578369140625,-8.96453857421875e-05,1.22841393947601,-0.000432491302490234,-8.7738037109375e-05,1.22844636440277,-0.000461101531982422,-9.1552734375e-05,1.22840583324432,-0.000432968139648438,-8.86917114257813e-05,1.22839772701263,-0.000432491302490234,-8.86917114257813e-05,1.22839593887329,-0.000418186187744141,-8.96453857421875e-05,1.22839879989624,-0.000418186187744141,-8.7738037109375e-05,1.22839319705963,-0.000418186187744141,-8.67843627929688e-05,1.22839176654816,-0.00040435791015625,-8.48770141601563e-05,1.22839069366455,-0.00038909912109375,-8.392333984375e-05,1.2283923625946,-0.00038909912109375,-8.48770141601563e-05,1.22838759422302,-0.000389575958251953,-8.29696655273438e-05,1.22838139533997,-0.000374794006347656,-8.20159912109375e-05,1.22837710380554,-0.000346660614013672,-8.10623168945313e-05,1.22837901115417,-0.000345706939697266,-8.10623168945313e-05,1.22837233543396, --0.000346660614013672,-7.91549682617188e-05,1.22836756706238,-0.000331878662109375,-7.82012939453125e-05,1.22836232185364,-0.000303268432617188,-7.72476196289063e-05,1.22836303710938,-0.000302791595458984,-7.53402709960938e-05,1.22835540771484,-0.000288963317871094,-7.43865966796875e-05,1.22835493087769,-0.000274181365966797,-7.2479248046875e-05,1.22841882705688,-0.000432968139648438,-8.10623168945313e-05,1.22839725017548,-0.00038909912109375,-7.82012939453125e-05,1.22837471961975,-0.000302791595458984,-6.91413879394531e-05,1.22836923599243,-0.000245094299316406,-6.19888305664063e-05,1.22844135761261,-0.000447273254394531,-0.000120162963867188,1.22844064235687,-0.000446796417236328,-8.10623168945313e-05,1.22842347621918,-0.000418186187744141,-0.000123977661132813,1.22841060161591,-0.000403881072998047,-0.000119209289550781,1.22840321063995,-0.000418186187744141,-7.72476196289063e-05,1.22839903831482,-0.000374317169189453,-0.000111579895019531,1.22839117050171,-0.000331878662109375,-0.000111579895019531,1.22838830947876,-0.000346660614013672,-7.34329223632813e-05,1.22837686538696,-0.000288486480712891,-0.000108718872070313,1.22837471961975,-0.000259876251220703,-0.00011444091796875,1.22837424278259,-0.000274181365966797,-6.38961791992188e-05,1.22837209701538,-0.000245094299316406,-0.000102519989013672,1.22845441102982,-0.000446796417236328,-0.000110626220703125,1.22845262289047,-0.000461578369140625,-8.20159912109375e-05,1.22843992710114,-0.000446796417236328,-0.000110626220703125,1.22845605015755,-0.000447750091552734,-0.000132560729980469,1.22841644287109,-0.000418186187744141,-0.000109672546386719,1.22842109203339,-0.000432491302490234,-0.000111579895019531,1.22840905189514,-0.000432491302490234,-7.91549682617188e-05,1.22840893268585,-0.00040435791015625,-0.0001068115234375,1.22842001914978,-0.000417709350585938,-0.000125885009765625,1.2284015417099,-0.000360965728759766,-0.000100135803222656,1.22839915752411,-0.000375270843505859,-0.000102996826171875,1.22839939594269,-0.000360488891601563,-7.34329223632813e-05, -1.22839283943176,-0.000346660614013672,-0.000101089477539063,1.22839832305908,-0.000360965728759766,-0.0001220703125,1.22837972640991,-0.000288486480712891,-8.96453857421875e-05,1.2283775806427,-0.000288486480712891,-9.48905944824219e-05,1.22837591171265,-0.000288963317871094,-6.67572021484375e-05,1.22837829589844,-0.000274181365966797,-8.82148742675781e-05,1.22837686538696,-0.000288486480712891,-0.000112533569335938,1.22843146324158,-0.000432491302490234,-0.000111579895019531,1.22842848300934,-0.000447750091552734,-8.0108642578125e-05,1.22843480110168,-0.000432491302490234,-0.00012969970703125,1.22843563556671,-0.000432968139648438,-0.000136375427246094,1.22842729091644,-0.000418186187744141,-0.0001373291015625,1.22844564914703,-0.000432491302490234,-0.000138282775878906,1.22845655679703,-0.000447273254394531,-0.000139236450195313,1.2284083366394,-0.000389575958251953,-0.000102996826171875,1.22840476036072,-0.000403881072998047,-7.43865966796875e-05,1.22840988636017,-0.00038909912109375,-0.000123023986816406,1.22840940952301,-0.00038909912109375,-0.000132560729980469,1.22840404510498,-0.000374794006347656,-0.000132560729980469,1.22841441631317,-0.000403881072998047,-0.000134468078613281,1.22842049598694,-0.000418663024902344,-0.000135421752929688,1.22838830947876,-0.000317573547363281,-9.48905944824219e-05,1.22838473320007,-0.000317573547363281,-6.96182250976563e-05,1.22838687896729,-0.000317573547363281,-0.000120639801025391,1.22838687896729,-0.000317573547363281,-0.000126838684082031,1.22838282585144,-0.000288486480712891,-0.000125885009765625,1.22839176654816,-0.000346660614013672,-0.000128746032714844,1.22839832305908,-0.000360965728759766,-0.000130653381347656,1.2283763885498,-0.0002593994140625,-8.72611999511719e-05,1.22837328910828,-0.000259876251220703,-6.29425048828125e-05,1.22837281227112,-0.000244617462158203,-9.05990600585938e-05,1.22837328910828,-0.000245094299316406,-0.000109195709228516,1.22838044166565,-0.000244617462158203,-0.000120639801025391,1.2283787727356,-0.000259876251220703,-0.0001220703125, -1.22838091850281,-0.000274181365966797,-0.000124454498291016,1.2284642457962,-0.000447750091552734,-0.000110626220703125,1.22846354544163,-0.000462055206298828,-8.20159912109375e-05,1.22846233844757,-0.000446796417236328,-0.000139236450195313,1.22846257686615,-0.000447750091552734,-0.000131607055664063,1.22845160961151,-0.000432968139648438,-0.000139236450195313,1.2284449338913,-0.000447273254394531,-0.000110626220703125,1.22844409942627,-0.000461101531982422,-8.0108642578125e-05,1.22844851016998,-0.000432491302490234,-0.000128746032714844,1.22843837738037,-0.000447750091552734,-0.000110626220703125,1.22843754291534,-0.000447273254394531,-8.0108642578125e-05,1.22844016551971,-0.000432968139648438,-0.0001373291015625,1.22843861579895,-0.000432968139648438,-0.000127792358398438,1.22843205928802,-0.000418663024902344,-0.000136375427246094,1.22842514514923,-0.000432491302490234,-0.000109672546386719,1.22842156887054,-0.000447750091552734,-7.91549682617188e-05,1.22842764854431,-0.000418663024902344,-0.000126838684082031,1.22842109203339,-0.000418186187744141,-0.000108718872070313,1.22841453552246,-0.000432491302490234,-7.91549682617188e-05,1.22842359542847,-0.000418186187744141,-0.000136375427246094,1.22842359542847,-0.000417232513427734,-0.000126838684082031,1.22841775417328,-0.000403404235839844,-0.000136375427246094,1.2284117937088,-0.000403404235839844,-0.000107765197753906,1.22840535640717,-0.000417709350585938,-7.91549682617188e-05,1.22841393947601,-0.000403881072998047,-0.0001220703125,1.22841095924377,-0.000403881072998047,-0.000105857849121094,1.22840571403503,-0.000403404235839844,-7.82012939453125e-05,1.22841215133667,-0.00038909912109375,-0.000133514404296875,1.22841215133667,-0.000403881072998047,-0.000123023986816406,1.22840714454651,-0.00038909912109375,-0.000132560729980469,1.22840404510498,-0.000389575958251953,-0.000102996826171875,1.2284015417099,-0.00038909912109375,-7.62939453125e-05,1.22840523719788,-0.000375747680664063,-0.000118255615234375,1.22840118408203,-0.000375270843505859,-0.000102043151855469, -1.22839951515198,-0.000374317169189453,-7.43865966796875e-05,1.22840178012848,-0.000374794006347656,-0.000132560729980469,1.22839987277985,-0.000375270843505859,-0.000118255615234375,1.22839570045471,-0.000360965728759766,-0.000131607055664063,1.22839665412903,-0.000346183776855469,-0.000100135803222656,1.22839462757111,-0.000346660614013672,-7.15255737304688e-05,1.2283923625946,-0.000346660614013672,-0.000118255615234375,1.22839272022247,-0.000332355499267578,-9.67979431152344e-05,1.22838830947876,-0.000332355499267578,-7.00950622558594e-05,1.2283890247345,-0.000331878662109375,-0.00012969970703125,1.22839045524597,-0.000331878662109375,-0.000118732452392578,1.22838425636292,-0.000302791595458984,-0.000126361846923828,1.22838258743286,-0.000302314758300781,-9.48905944824219e-05,1.22837948799133,-0.000302791595458984,-6.81877136230469e-05,1.22838163375854,-0.000302791595458984,-0.000117301940917969,1.22846451401711,-0.000462055206298828,-9.1552734375e-05,1.2283763885498,-0.000259876251220703,-7.00950622558594e-05,1.2283718585968,-0.000245571136474609,-7.05718994140625e-05,1.228440284729,-0.000446796417236328,-8.96453857421875e-05,1.22843825817108,-0.000447273254394531,-9.05990600585938e-05,1.22842967510223,-0.000447750091552734,-9.1552734375e-05,1.22842288017273,-0.000432968139648438,-8.7738037109375e-05,1.22844409942627,-0.000447750091552734,-8.7738037109375e-05,1.22841954231262,-0.000432491302490234,-9.05990600585938e-05,1.22845369577408,-0.000461578369140625,-9.1552734375e-05,1.22841918468475,-0.000432491302490234,-8.7738037109375e-05,1.22841346263885,-0.000418663024902344,-8.86917114257813e-05,1.22840893268585,-0.000418663024902344,-8.67843627929688e-05,1.22840559482574,-0.000418663024902344,-8.67843627929688e-05,1.22840905189514,-0.000403404235839844,-8.58306884765625e-05,1.22840797901154,-0.00038909912109375,-8.48770141601563e-05,1.22840368747711,-0.000389575958251953,-8.48770141601563e-05,1.22839784622192,-0.00038909912109375,-8.48770141601563e-05,1.22840070724487,-0.000375270843505859,-8.29696655273438e-05, -1.22840201854706,-0.000360965728759766,-8.0108642578125e-05,1.22839713096619,-0.000346660614013672,-8.0108642578125e-05,1.22839140892029,-0.000346183776855469,-7.91549682617188e-05,1.22839152812958,-0.000331401824951172,-8.0108642578125e-05,1.2283878326416,-0.000317096710205078,-7.86781311035156e-05,1.22838282585144,-0.000303745269775391,-7.62939453125e-05,1.22837686538696,-0.000302314758300781,-7.62939453125e-05,1.22837901115417,-0.000288486480712891,-7.48634338378906e-05,1.22837805747986,-0.000274181365966797,-7.2479248046875e-05,1.22846232354641,-0.000461578369140625,-8.10623168945313e-05,1.22845104336739,-0.000462055206298828,-8.0108642578125e-05,1.22844254970551,-0.000462055206298828,-7.72476196289063e-05,1.22844040393829,-0.000446796417236328,-8.10623168945313e-05,1.22843551635742,-0.000446796417236328,-8.0108642578125e-05,1.22842562198639,-0.000447750091552734,-8.0108642578125e-05,1.22841835021973,-0.000446796417236328,-7.72476196289063e-05,1.22841584682465,-0.000432968139648438,-7.91549682617188e-05,1.2284095287323,-0.000432491302490234,-7.72476196289063e-05,1.22840178012848,-0.000432491302490234,-7.62939453125e-05,1.22839903831482,-0.000418186187744141,-7.53402709960938e-05,1.228400349617,-0.000418186187744141,-7.72476196289063e-05,1.22839915752411,-0.000418186187744141,-7.72476196289063e-05,1.22839903831482,-0.000403881072998047,-7.43865966796875e-05,1.22839641571045,-0.00038909912109375,-7.62939453125e-05,1.22839534282684,-0.000389575958251953,-7.62939453125e-05,1.22839391231537,-0.000375270843505859,-7.43865966796875e-05,1.22839200496674,-0.000375747680664063,-7.43865966796875e-05,1.22838711738586,-0.000345706939697266,-7.2479248046875e-05,1.22838473320007,-0.000346660614013672,-7.2479248046875e-05,1.2283821105957,-0.000331878662109375,-6.96182250976563e-05,1.2283775806427,-0.000317096710205078,-6.96182250976563e-05,1.2283718585968,-0.000302314758300781,-6.72340393066406e-05,1.22836971282959,-0.000302314758300781,-6.866455078125e-05,1.22836661338806,-0.000288486480712891,-6.4849853515625e-05,1.22836589813232, --0.000274181365966797,-6.62803649902344e-05,1.22836422920227,-0.000259876251220703,-6.19888305664063e-05,1.22836589813232,-0.000245094299316406,-6.103515625e-05,1.22846138477325,-0.000447750091552734,-0.000134468078613281,1.22842037677765,-0.000418186187744141,-0.000127792358398438,1.2284232378006,-0.000432968139648438,-0.00012969970703125,1.22842800617218,-0.000432968139648438,-0.000134468078613281,1.22843420505524,-0.000432491302490234,-0.000131607055664063,1.22841680049896,-0.000418663024902344,-0.000130653381347656,1.228440284729,-0.000446796417236328,-0.000125885009765625,1.22841215133667,-0.000418663024902344,-0.000130653381347656,1.22844660282135,-0.000447750091552734,-0.000133514404296875,1.22840821743011,-0.00040435791015625,-0.000125885009765625,1.2284542620182,-0.000447273254394531,-0.000136375427246094,1.22840654850006,-0.000403881072998047,-0.0001220703125,1.22840523719788,-0.000403881072998047,-0.000126838684082031,1.22840178012848,-0.000389575958251953,-0.000132560729980469,1.22839772701263,-0.000389575958251953,-0.000125885009765625,1.22839534282684,-0.000375270843505859,-0.000117301940917969,1.22839176654816,-0.000374317169189453,-0.000123023986816406,1.22838735580444,-0.000360965728759766,-0.000125885009765625,1.22838091850281,-0.000346660614013672,-0.0001220703125,1.22837948799133,-0.000346660614013672,-0.000117301940917969,1.22837734222412,-0.000331878662109375,-0.0001220703125,1.22837376594543,-0.000317573547363281,-0.000125885009765625,1.22836899757385,-0.000302791595458984,-0.000118732452392578,1.22836685180664,-0.000302791595458984,-0.000110626220703125,1.22836303710938,-0.000288486480712891,-0.000116348266601563,1.22836184501648,-0.000274181365966797,-0.000117778778076172,1.22836112976074,-0.000245094299316406,-0.000113010406494141,1.228360414505,-0.000244617462158203,-0.000106334686279297,1.22837448120117,-0.000245094299316406,-0.000105857849121094,1.22837471961975,-0.000244617462158203,-0.000113487243652344,1.22846139967442,-0.000446796417236328,-0.000128746032714844,1.22846300899982,-0.000447273254394531, --0.000123977661132813,1.22845086455345,-0.000447750091552734,-0.000127792358398438,1.2284437417984,-0.000447273254394531,-0.000124931335449219,1.22843945026398,-0.000447273254394531,-0.000118255615234375,1.22843384742737,-0.000433444976806641,-0.000125885009765625,1.22842645645142,-0.000432491302490234,-0.000126838684082031,1.22842037677765,-0.000432491302490234,-0.000123023986816406,1.22841835021973,-0.000432968139648438,-0.000120162963867188,1.22841513156891,-0.000418663024902344,-0.0001220703125,1.2284095287323,-0.000418663024902344,-0.000123977661132813,1.22840547561646,-0.000403404235839844,-0.000118255615234375,1.22840428352356,-0.000403881072998047,-0.000115394592285156,1.22840285301208,-0.000403404235839844,-0.000119209289550781,1.22839987277985,-0.000389575958251953,-0.000123977661132813,1.22839522361755,-0.00038909912109375,-0.000116348266601563,1.22839426994324,-0.000374317169189453,-0.000108718872070313,1.22839140892029,-0.000374794006347656,-0.000115394592285156,1.22838473320007,-0.000360965728759766,-0.000116348266601563,1.22837853431702,-0.000346183776855469,-0.000112533569335938,1.22837829589844,-0.000346660614013672,-0.000108718872070313,1.22837543487549,-0.000332355499267578,-0.000113487243652344,1.2283718585968,-0.000317096710205078,-0.000117301940917969,1.22836661338806,-0.000302791595458984,-0.000110626220703125,1.22836637496948,-0.000302314758300781,-0.000102996826171875,1.22836017608643,-0.000288486480712891,-0.0001068115234375,1.22835803031921,-0.000274181365966797,-0.000107765197753906,1.22835803031921,-0.000245571136474609,-0.000103950500488281,1.22836065292358,-0.000244617462158203,-0.000100135803222656,1.2283730506897,-0.000245571136474609,-9.918212890625e-05,1.22837543487549,-0.000244617462158203,-0.000102996826171875,1.22837734222412,-0.000274181365966797,-0.000107288360595703,1.22837829589844,-0.000288963317871094,-0.000107765197753906,1.2283775806427,-0.000288963317871094,-0.000105857849121094,1.22838258743286,-0.000303745269775391,-0.000110626220703125,1.2283878326416,-0.000317096710205078, --0.000115394592285156,1.22839117050171,-0.000331878662109375,-0.000113010406494141,1.22839152812958,-0.000346660614013672,-0.000108718872070313,1.22839367389679,-0.000346183776855469,-0.000112533569335938,1.22839975357056,-0.000360488891601563,-0.000117301940917969,1.22840070724487,-0.000374794006347656,-0.000117301940917969,1.22839879989624,-0.000374317169189453,-0.000110626220703125,1.22840487957001,-0.000375270843505859,-0.000113487243652344,1.22841012477875,-0.000389575958251953,-0.000118255615234375,1.22841227054596,-0.000403404235839844,-0.000117301940917969,1.2284107208252,-0.000403404235839844,-0.00011444091796875,1.2284140586853,-0.000403404235839844,-0.000119209289550781,1.22841989994049,-0.000418663024902344,-0.0001220703125,1.22842347621918,-0.000418663024902344,-0.000121116638183594,1.22842264175415,-0.000432491302490234,-0.000118255615234375,1.22842717170715,-0.000432968139648438,-0.0001220703125,1.2284346818924,-0.000432968139648438,-0.000123977661132813,1.22843909263611,-0.000432491302490234,-0.000123023986816406,1.22844088077545,-0.000447273254394531,-0.000117301940917969,1.22844755649567,-0.000433444976806641,-0.000123023986816406,1.22845616936684,-0.000447273254394531,-0.000127792358398438,1.22838926315308,-0.000258922576904297,-0.000128269195556641,1.22840654850006,-0.000244617462158203,-0.000138759613037109,1.2283980846405,-0.000317573547363281,-0.000141620635986328,1.2284015417099,-0.000346660614013672,-0.000143051147460938,1.22840535640717,-0.000360965728759766,-0.000142097473144531,1.22841274738312,-0.000374794006347656,-0.000144004821777344,1.22841536998749,-0.00038909912109375,-0.000142097473144531,1.22842216491699,-0.000403881072998047,-0.00014495849609375,1.22842752933502,-0.000417709350585938,-0.000142097473144531,1.228435754776,-0.000417232513427734,-0.000143051147460938,1.22844314575195,-0.000432968139648438,-0.000141143798828125,1.22845327854156,-0.000432968139648438,-0.000143051147460938,1.22846019268036,-0.000432491302490234,-0.000142097473144531,1.22846655547619,-0.000447273254394531, --0.000142097473144531,1.22846641391516,-0.000446319580078125,-0.000150680541992188,1.22846616059542,-0.000446796417236328,-0.000131607055664063,1.22846655547619,-0.000446796417236328,-0.000126838684082031,1.22846709936857,-0.000447273254394531,-0.000123977661132813,1.22846712172031,-0.000461578369140625,-0.000110626220703125,1.22846688330173,-0.000462055206298828,-9.1552734375e-05,1.22846710681915,-0.000461578369140625,-8.20159912109375e-05,1.22846710681915,-0.000462055206298828,-8.20159912109375e-05,1.22846764326096,-0.000461101531982422,-8.20159912109375e-05,1.22846806794405,-0.000461101531982422,-9.34600830078125e-05,1.22846779227257,-0.000447273254394531,-0.000110626220703125,1.22846734523773,-0.000447750091552734,-0.000123023986816406,1.22846658527851,-0.000446796417236328,-0.000127792358398438,1.22846683114767,-0.000447750091552734,-0.000139236450195313,1.22846711426973,-0.000432968139648438,-0.000144004821777344,1.2284642457962,-0.000432968139648438,-0.000146865844726563,1.22846066951752,-0.000432491302490234,-0.000149726867675781,1.22845667600632,-0.000418663024902344,-0.000152587890625,1.2284542620182,-0.000417709350585938,-0.000153541564941406,1.22845095396042,-0.000403881072998047,-0.000157356262207031,1.22844851016998,-0.00038909912109375,-0.000159263610839844,1.22844564914703,-0.000375270843505859,-0.00016021728515625,1.22844254970551,-0.000360965728759766,-0.000163078308105469,1.22843945026398,-0.000346660614013672,-0.000162124633789063,1.22843658924103,-0.000317573547363281,-0.000158309936523438,1.22847490012646,-0.000447273254394531,-0.000142097473144531,1.22847491502762,-0.000446319580078125,-0.000150680541992188,1.2284749224782,-0.000446796417236328,-0.000131607055664063,1.22847498953342,-0.000446796417236328,-0.000126838684082031,1.22847447544336,-0.000447273254394531,-0.000123977661132813,1.2284741923213,-0.000461578369140625,-0.000110626220703125,1.22847421467304,-0.000462055206298828,-9.1552734375e-05,1.22847422212362,-0.000461578369140625,-8.20159912109375e-05,1.22847418487072,-0.000462055206298828, --8.20159912109375e-05,1.22847379744053,-0.000461101531982422,-8.20159912109375e-05,1.22847326844931,-0.000461101531982422,-9.34600830078125e-05,1.22847352176905,-0.000447273254394531,-0.000110626220703125,1.2284742295742,-0.000447750091552734,-0.000123023986816406,1.22847450524569,-0.000446796417236328,-0.000127792358398438,1.22847447544336,-0.000447750091552734,-0.000139236450195313,1.22847422212362,-0.000432968139648438,-0.000144004821777344,1.22847694158554,-0.000432968139648438,-0.000146865844726563,1.22848057746887,-0.000432491302490234,-0.000149726867675781,1.22848430275917,-0.000418663024902344,-0.000152587890625,1.22848734259605,-0.000417709350585938,-0.000153541564941406,1.2284904718399,-0.000403881072998047,-0.000157356262207031,1.2284928560257,-0.00038909912109375,-0.000159263610839844,1.22849595546722,-0.000375270843505859,-0.00016021728515625,1.22849905490875,-0.000360965728759766,-0.000163078308105469,1.22850179672241,-0.000346660614013672,-0.000162124633789063,1.22850489616394,-0.000317573547363281,-0.000158309936523438,1.22856688499451,-0.000230312347412109,-0.000105857849121094,1.22856831550598,-0.000231266021728516,-0.000100612640380859,1.22856903076172,-0.000230312347412109,-9.01222229003906e-05,1.22856974601746,-0.000245571136474609,-7.00950622558594e-05,1.22856879234314,-0.000230789184570313,-9.77516174316406e-05,1.2285590171814,-0.000231266021728516,-0.000123500823974609,1.22837281227112,-0.000231266021728516,-0.000100612640380859,1.22837448120117,-0.000230312347412109,-0.000105857849121094,1.22837090492249,-0.000245571136474609,-7.00950622558594e-05,1.22837233543396,-0.000230312347412109,-9.01222229003906e-05,1.22837281227112,-0.000230789184570313,-9.77516174316406e-05,1.2283821105957,-0.000230789184570313,-0.000123023986816406,1.22858095169067,-0.000245094299316406,-7.15255737304688e-05,1.22857928276062,-0.000245094299316406,-6.24656677246094e-05,1.22857594490051,-0.000245571136474609,-6.15119934082031e-05,1.22857284545898,-0.000245571136474609,-6.29425048828125e-05,1.22856974601746,-0.000245094299316406, --7.15255737304688e-05,1.22856879234314,-0.000245094299316406,-9.05990600585938e-05,1.22856879234314,-0.000245571136474609,-9.918212890625e-05,1.22856831550598,-0.000245571136474609,-0.000101089477539063,1.22856712341309,-0.000245571136474609,-0.000105381011962891,1.2285590171814,-0.000230312347412109,-0.000122547149658203,1.22838163375854,-0.000230312347412109,-0.000122547149658203,1.22837448120117,-0.000245571136474609,-0.000105381011962891,1.22837233543396,-0.000245571136474609,-0.000101089477539063,1.22837209701538,-0.000245571136474609,-9.918212890625e-05,1.22837233543396,-0.000245094299316406,-9.05990600585938e-05,1.22837114334106,-0.000245094299316406,-7.15255737304688e-05,1.22836852073669,-0.000245571136474609,-6.29425048828125e-05,1.22836542129517,-0.000245571136474609,-6.15119934082031e-05,1.22836184501648,-0.000245094299316406,-6.24656677246094e-05,1.22836017608643,-0.000245094299316406,-7.15255737304688e-05,1.22836017608643,-0.000244617462158203,-9.05990600585938e-05,1.22858071327209,-0.000244617462158203,-9.05990600585938e-05,1.2283763885498,-0.000230789184570313,-0.000113487243652344,1.2283763885498,-0.000231266021728516,-0.00011444091796875,1.22856473922729,-0.000230789184570313,-0.000113487243652344,1.22856521606445,-0.000231266021728516,-0.00011444091796875,1.22847064398229,-0.000332355499267578,-0.000165939331054688,1.22843599319458,-0.000273227691650391,-0.000149250030517578,1.22841536998749,-0.000230312347412109,-0.0001373291015625,1.228470640257,-0.000274181365966797,-0.000145912170410156,1.22843873500824,-0.0002593994140625,-0.000142097473144531,1.22853100299835,-0.000216484069824219,-0.000131130218505859,1.22852575778961,-0.000231266021728516,-0.000136375427246094,1.22854173183441,-0.000201702117919922,-0.000131130218505859,1.22853648662567,-0.000202178955078125,-0.000131130218505859,1.22838926315308,-0.000187397003173828,-0.000131130218505859,1.22839510440826,-0.000173568725585938,-0.000128269195556641,1.22841024398804,-0.000216484069824219,-0.000131607055664063,1.22839987277985,-0.000201702117919922, --0.000131607055664063,1.22840535640717,-0.000202655792236328,-0.000130653381347656,1.22855162620544,-0.000187397003173828,-0.000131130218505859,1.22854602336884,-0.000173568725585938,-0.000128269195556641,1.22848638892174,-0.000461578369140625,-0.000112533569335938,1.22848525643349,-0.000447273254394531,-0.000126838684082031,1.22853481769562,-0.000432491302490234,-0.000108718872070313,1.22852909564972,-0.000418186187744141,-0.000123977661132813,1.22855615615845,-0.000374794006347656,-0.000102043151855469,1.22855305671692,-0.000374317169189453,-0.000117301940917969,1.2285133600235,-0.000461101531982422,-8.10623168945313e-05,1.22851955890656,-0.000447273254394531,-8.392333984375e-05,1.22851383686066,-0.000447273254394531,-9.1552734375e-05,1.22850835323334,-0.000461578369140625,-8.29696655273438e-05,1.22851383686066,-0.000461578369140625,-8.48770141601563e-05,1.22851455211639,-0.000432491302490234,-0.000140190124511719,1.22851645946503,-0.000432491302490234,-0.000134468078613281,1.22849071025848,-0.000446796417236328,-0.000142097473144531,1.22849118709564,-0.000447273254394531,-0.000148773193359375,1.22854912281036,-0.000403404235839844,-7.62939453125e-05,1.22854995727539,-0.00040435791015625,-7.91549682617188e-05,1.22854924201965,-0.000403881072998047,-8.58306884765625e-05,1.22854912281036,-0.000418186187744141,-8.0108642578125e-05,1.22854995727539,-0.00040435791015625,-8.0108642578125e-05,1.22854149341583,-0.00038909912109375,-0.000138282775878906,1.22854197025299,-0.000389575958251953,-0.000128746032714844,1.22853124141693,-0.000418663024902344,-0.000139236450195313,1.22853338718414,-0.000417709350585938,-0.000146865844726563,1.22856831550598,-0.000331878662109375,-7.05718994140625e-05,1.22857260704041,-0.000332355499267578,-7.20024108886719e-05,1.22857141494751,-0.000332355499267578,-7.91549682617188e-05,1.2285680770874,-0.000346660614013672,-7.43865966796875e-05,1.22857046127319,-0.000331878662109375,-7.29560852050781e-05,1.22857022285461,-0.000317096710205078,-0.000129222869873047,1.22856974601746,-0.000317096710205078, --0.000123023986816406,1.22855639457703,-0.000360965728759766,-0.000132560729980469,1.2285578250885,-0.000360488891601563,-0.000142097473144531,1.22858738899231,-0.000259876251220703,-8.7738037109375e-05,1.22858738899231,-0.000259876251220703,-7.20024108886719e-05,1.22858047485352,-0.000245094299316406,-0.000105857849121094,1.22858047485352,-0.000245571136474609,-0.000111103057861328,1.22858142852783,-0.000274658203125,-0.000134944915771484,1.22857904434204,-0.000274658203125,-0.000125885009765625,1.22848749160767,-0.000462055206298828,-8.29696655273438e-05,1.2284951210022,-0.000461578369140625,-8.67843627929688e-05,1.22848758101463,-0.000461578369140625,-9.25064086914063e-05,1.22848066687584,-0.000475883483886719,-8.48770141601563e-05,1.22848787903786,-0.000461101531982422,-8.48770141601563e-05,1.22850143909454,-0.000461578369140625,-8.20159912109375e-05,1.22850215435028,-0.000447750091552734,-8.48770141601563e-05,1.22850251197815,-0.000447750091552734,-8.96453857421875e-05,1.22850215435028,-0.000461578369140625,-8.48770141601563e-05,1.22850215435028,-0.000462055206298828,-8.48770141601563e-05,1.22850215435028,-0.000447273254394531,-0.000111579895019531,1.2284996509552,-0.000446796417236328,-0.000121116638183594,1.22854125499725,-0.000432491302490234,-7.82012939453125e-05,1.22854506969452,-0.000432491302490234,-8.29696655273438e-05,1.22854030132294,-0.000432491302490234,-8.86917114257813e-05,1.22853672504425,-0.000446796417236328,-8.29696655273438e-05,1.22854149341583,-0.000432968139648438,-8.20159912109375e-05,1.22854483127594,-0.000417709350585938,-7.91549682617188e-05,1.22854387760162,-0.000418186187744141,-8.29696655273438e-05,1.2285441160202,-0.000418186187744141,-8.7738037109375e-05,1.22854697704315,-0.000418663024902344,-8.20159912109375e-05,1.22854483127594,-0.000418186187744141,-8.29696655273438e-05,1.22853982448578,-0.000418663024902344,-0.000108718872070313,1.22853672504425,-0.000403881072998047,-0.000116348266601563,1.22855520248413,-0.000375270843505859,-7.2479248046875e-05,1.22855877876282,-0.000375270843505859, --7.62939453125e-05,1.22855687141418,-0.000375747680664063,-8.20159912109375e-05,1.22855401039124,-0.00038909912109375,-7.82012939453125e-05,1.22855663299561,-0.000374794006347656,-7.72476196289063e-05,1.22856092453003,-0.000346660614013672,-7.2479248046875e-05,1.22856163978577,-0.000346660614013672,-7.53402709960938e-05,1.22856330871582,-0.000346660614013672,-8.10623168945313e-05,1.22856330871582,-0.000346660614013672,-7.43865966796875e-05,1.22856211662292,-0.000346660614013672,-7.53402709960938e-05,1.22856473922729,-0.000346183776855469,-0.000100135803222656,1.22856330871582,-0.000346660614013672,-0.000110626220703125,1.22858357429504,-0.000288486480712891,-6.58035278320313e-05,1.22858548164368,-0.000273704528808594,-6.72340393066406e-05,1.22858643531799,-0.000288009643554688,-7.2479248046875e-05,1.22858476638794,-0.000288486480712891,-6.91413879394531e-05,1.22858572006226,-0.000288009643554688,-6.77108764648438e-05,1.22858667373657,-0.000274181365966797,-8.86917114257813e-05,1.22858190536499,-0.000274658203125,-0.000108242034912109,1.22852647304535,-0.000447750091552734,-8.0108642578125e-05,1.22852742671967,-0.000433444976806641,-8.20159912109375e-05,1.22852742671967,-0.000432491302490234,-9.1552734375e-05,1.22852742671967,-0.000447273254394531,-8.29696655273438e-05,1.22852718830109,-0.000447750091552734,-8.29696655273438e-05,1.22852504253387,-0.000432491302490234,-0.000110626220703125,1.22852218151093,-0.000432491302490234,-0.000121116638183594,1.22851264476776,-0.000447750091552734,-0.000111579895019531,1.22851121425629,-0.000432491302490234,-0.000125885009765625,1.22851693630219,-0.000432014465332031,-0.000147819519042969,1.22850370407104,-0.000432491302490234,-0.000139236450195313,1.22850632667542,-0.000432968139648438,-0.000149726867675781,1.22850406169891,-0.000432491302490234,-0.000128746032714844,1.22847273945808,-0.000447750091552734,-0.000142097473144531,1.22847284376621,-0.000447273254394531,-0.000149726867675781,1.22847261279821,-0.000447750091552734,-0.000126838684082031,1.22847282886505,-0.000446796417236328, --0.000130653381347656,1.22849118709564,-0.000446796417236328,-0.000134468078613281,1.22854888439178,-0.00038909912109375,-7.72476196289063e-05,1.22854888439178,-0.00038909912109375,-7.91549682617188e-05,1.22854948043823,-0.00038909912109375,-8.29696655273438e-05,1.22855067253113,-0.000389575958251953,-7.91549682617188e-05,1.22854948043823,-0.00038909912109375,-8.0108642578125e-05,1.22854793071747,-0.00038909912109375,-0.000102996826171875,1.22854602336884,-0.000374317169189453,-0.000110626220703125,1.22854554653168,-0.000403404235839844,-0.000105857849121094,1.22854006290436,-0.000403881072998047,-0.000123023986816406,1.22854340076447,-0.00038909912109375,-0.00014495849609375,1.22853577136993,-0.000403881072998047,-0.000136375427246094,1.22853767871857,-0.00040435791015625,-0.00014495849609375,1.22853577136993,-0.000403404235839844,-0.000123977661132813,1.22852337360382,-0.000417232513427734,-0.000139236450195313,1.22852647304535,-0.000418663024902344,-0.000148773193359375,1.22852289676666,-0.000418186187744141,-0.000127792358398438,1.22853171825409,-0.000417709350585938,-0.000128746032714844,1.22857642173767,-0.000302791595458984,-6.91413879394531e-05,1.22857809066772,-0.000302791595458984,-7.20024108886719e-05,1.22857904434204,-0.000303268432617188,-7.62939453125e-05,1.22857856750488,-0.000303268432617188,-7.15255737304688e-05,1.22857809066772,-0.000303268432617188,-7.15255737304688e-05,1.22857809066772,-0.000302314758300781,-9.34600830078125e-05,1.22857451438904,-0.000302791595458984,-0.000104904174804688,1.22857189178467,-0.000331878662109375,-9.67979431152344e-05,1.22856783866882,-0.000331878662109375,-0.000115871429443359,1.22857213020325,-0.000317573547363281,-0.000138282775878906,1.22856330871582,-0.000346660614013672,-0.000130653381347656,1.22856545448303,-0.000346183776855469,-0.000140190124511719,1.22856283187866,-0.000345230102539063,-0.000119209289550781,1.22854864597321,-0.000375270843505859,-0.000133514404296875,1.22855043411255,-0.000375747680664063,-0.000143051147460938,1.22854793071747,-0.000374794006347656, --0.000120162963867188,1.22855758666992,-0.000360488891601563,-0.000123023986816406,1.2285840511322,-0.000244617462158203,-8.91685485839844e-05,1.22858428955078,-0.000245094299316406,-7.10487365722656e-05,1.22858142852783,-0.000245094299316406,-0.000101566314697266,1.22858023643494,-0.0002593994140625,-0.000112056732177734,1.22858285903931,-0.0002593994140625,-0.000105857849121094,1.22858262062073,-0.000245094299316406,-0.000130653381347656,1.22858023643494,-0.000245094299316406,-0.0001220703125,1.22858166694641,-0.0002593994140625,-0.000131130218505859,1.22857999801636,-0.000259876251220703,-0.000124454498291016,1.2285795211792,-0.000259876251220703,-0.000115871429443359,1.22857880592346,-0.000273227691650391,-0.000113487243652344,1.22857904434204,-0.000274181365966797,-0.000117778778076172,1.22847064398229,-0.000461101531982422,-8.67843627929688e-05,1.22847229987383,-0.000461578369140625,-8.20159912109375e-05,1.22847422212362,-0.000462055206298828,-8.48770141601563e-05,1.22847228497267,-0.000461578369140625,-9.05990600585938e-05,1.22847253829241,-0.000461578369140625,-8.67843627929688e-05,1.22848320007324,-0.000447273254394531,-0.000148773193359375,1.22848334908485,-0.000447273254394531,-0.000142097473144531,1.22848320007324,-0.000446796417236328,-0.000131607055664063,1.22848331928253,-0.000447750091552734,-0.000135421752929688,1.22847217321396,-0.000461578369140625,-0.000110626220703125,1.22847232222557,-0.000446796417236328,-0.000121116638183594,1.22849953174591,-0.000447273254394531,-0.000148773193359375,1.22849762439728,-0.000447750091552734,-0.000139236450195313,1.22849822044373,-0.000447750091552734,-0.000111579895019531,1.22849988937378,-0.000461578369140625,-9.1552734375e-05,1.22849857807159,-0.000446796417236328,-0.000124931335449219,1.22849798202515,-0.000446796417236328,-0.000128746032714844,1.2284916639328,-0.000446796417236328,-0.000131607055664063,1.22849476337433,-0.000447750091552734,-0.000126838684082031,1.22850477695465,-0.000446796417236328,-0.000109672546386719,1.22850441932678,-0.000446796417236328, --9.25064086914063e-05,1.22851169109344,-0.000432968139648438,-0.000149726867675781,1.22850930690765,-0.000432968139648438,-0.000141143798828125,1.22850430011749,-0.000447273254394531,-0.000123977661132813,1.22850441932678,-0.000447750091552734,-0.000119209289550781,1.22851049900055,-0.000432491302490234,-0.000131607055664063,1.22851026058197,-0.000432968139648438,-0.000134468078613281,1.22852194309235,-0.000432014465332031,-0.000148773193359375,1.22851932048798,-0.000432968139648438,-0.000139236450195313,1.22852170467377,-0.000432491302490234,-0.000112533569335938,1.22852432727814,-0.000446796417236328,-8.86917114257813e-05,1.22851693630219,-0.000432968139648438,-0.000128746032714844,1.22851836681366,-0.000432491302490234,-0.000125885009765625,1.22852098941803,-0.000432968139648438,-0.000123977661132813,1.22852027416229,-0.000432491302490234,-0.000128746032714844,1.22852766513824,-0.000432491302490234,-0.000109672546386719,1.22853076457977,-0.000432968139648438,-8.7738037109375e-05,1.22853052616119,-0.000417709350585938,-0.00014495849609375,1.22852790355682,-0.000417232513427734,-0.000139236450195313,1.22852671146393,-0.000417232513427734,-0.000126838684082031,1.22852694988251,-0.000418663024902344,-0.00012969970703125,1.22852265834808,-0.000418186187744141,-0.000123977661132813,1.22852408885956,-0.000432491302490234,-0.000121116638183594,1.22853577136993,-0.000403404235839844,-0.000146865844726563,1.2285338640213,-0.000403881072998047,-0.0001373291015625,1.22854006290436,-0.000418186187744141,-0.000108718872070313,1.22854578495026,-0.000432491302490234,-8.7738037109375e-05,1.22853577136993,-0.000403881072998047,-0.000119209289550781,1.22853457927704,-0.00040435791015625,-0.000123977661132813,1.22853243350983,-0.000418663024902344,-0.000124931335449219,1.22853434085846,-0.000418663024902344,-0.000123023986816406,1.22854125499725,-0.000403881072998047,-0.000105857849121094,1.2285453081131,-0.000418663024902344,-8.67843627929688e-05,1.22854006290436,-0.000390052795410156,-0.00014495849609375,1.2285383939743,-0.00038909912109375, --0.000138282775878906,1.22853600978851,-0.000403881072998047,-0.000120162963867188,1.22853744029999,-0.00040435791015625,-0.000118255615234375,1.22853767871857,-0.000389575958251953,-0.000126838684082031,1.22853791713715,-0.000389575958251953,-0.00012969970703125,1.22854721546173,-0.000374794006347656,-0.000144004821777344,1.22854506969452,-0.000374317169189453,-0.000134468078613281,1.22854793071747,-0.000389575958251953,-0.000103950500488281,1.22855019569397,-0.000403404235839844,-8.48770141601563e-05,1.22854197025299,-0.00038909912109375,-0.000123977661132813,1.22854387760162,-0.00038909912109375,-0.000119209289550781,1.22854506969452,-0.000375270843505859,-0.00011444091796875,1.2285453081131,-0.000374317169189453,-0.000119209289550781,1.22854995727539,-0.000375270843505859,-0.000103950500488281,1.22855114936829,-0.00038909912109375,-8.29696655273438e-05,1.22855448722839,-0.000361442565917969,-0.000143051147460938,1.2285521030426,-0.000360965728759766,-0.000134468078613281,1.22855114936829,-0.000375270843505859,-0.000123023986816406,1.22855138778687,-0.000374317169189453,-0.000125885009765625,1.22854769229889,-0.000374317169189453,-0.000115394592285156,1.22854816913605,-0.000374794006347656,-0.000111579895019531,1.22856187820435,-0.000346183776855469,-0.000141143798828125,1.22855997085571,-0.000346183776855469,-0.000131607055664063,1.22856330871582,-0.000360965728759766,-0.000101089477539063,1.22856259346008,-0.000360965728759766,-8.20159912109375e-05,1.22856187820435,-0.000346660614013672,-0.00011444091796875,1.22856140136719,-0.000346660614013672,-0.000119209289550781,1.22855806350708,-0.000360965728759766,-0.000121116638183594,1.22855997085571,-0.000360965728759766,-0.000115394592285156,1.22856664657593,-0.000346660614013672,-9.918212890625e-05,1.22856545448303,-0.000346660614013672,-8.0108642578125e-05,1.22856831550598,-0.000331878662109375,-0.000138282775878906,1.22856616973877,-0.000332355499267578,-0.000131130218505859,1.22856259346008,-0.000345706939697266,-0.000113487243652344,1.22856402397156,-0.000346660614013672, --0.000110626220703125,1.22856545448303,-0.000331401824951172,-0.000122547149658203,1.22856545448303,-0.000332355499267578,-0.000124931335449219,1.22857737541199,-0.000302314758300781,-0.000135898590087891,1.22857451438904,-0.000303745269775391,-0.000126838684082031,1.22857689857483,-0.000317096710205078,-9.5367431640625e-05,1.22857689857483,-0.000317096710205078,-7.77244567871094e-05,1.22856974601746,-0.000317573547363281,-0.000120162963867188,1.22857236862183,-0.000317573547363281,-0.000115394592285156,1.22857213020325,-0.000302791595458984,-0.000109672546386719,1.22857308387756,-0.000303268432617188,-0.00011444091796875,1.22847637534142,-0.000461101531982422,-0.000112533569335938,1.22847664356232,-0.000462055206298828,-9.05990600585938e-05,1.22858214378357,-0.0002593994140625,-6.24656677246094e-05,1.22857999801636,-0.000245094299316406,-6.43730163574219e-05,1.22858715057373,-0.000259876251220703,-6.53266906738281e-05,1.22858357429504,-0.000244617462158203,-6.53266906738281e-05,1.22850406169891,-0.000447273254394531,-8.20159912109375e-05,1.2285041809082,-0.000447750091552734,-8.29696655273438e-05,1.2285236120224,-0.000446796417236328,-8.0108642578125e-05,1.22852432727814,-0.000446796417236328,-8.29696655273438e-05,1.22849893569946,-0.000461578369140625,-8.29696655273438e-05,1.22849977016449,-0.000461578369140625,-8.48770141601563e-05,1.22853100299835,-0.000447273254394531,-8.10623168945313e-05,1.22853147983551,-0.000447273254394531,-8.392333984375e-05,1.22854673862457,-0.000432491302490234,-7.91549682617188e-05,1.22854697704315,-0.000432491302490234,-8.29696655273438e-05,1.22854578495026,-0.000418663024902344,-7.82012939453125e-05,1.22854602336884,-0.000418186187744141,-8.10623168945313e-05,1.22854948043823,-0.000403881072998047,-7.43865966796875e-05,1.22855043411255,-0.000403881072998047,-7.91549682617188e-05,1.22854995727539,-0.000389575958251953,-7.72476196289063e-05,1.22855067253113,-0.00038909912109375,-7.72476196289063e-05,1.22855973243713,-0.000360488891601563,-7.34329223632813e-05,1.22856163978577,-0.000360965728759766, --7.53402709960938e-05,1.22856330871582,-0.000346183776855469,-7.34329223632813e-05,1.22856450080872,-0.000345706939697266,-7.53402709960938e-05,1.2285737991333,-0.000317573547363281,-6.91413879394531e-05,1.22857570648193,-0.000317573547363281,-7.15255737304688e-05,1.2285852432251,-0.000259876251220703,-6.38961791992188e-05,1.22858667373657,-0.0002593994140625,-6.62803649902344e-05,1.22848162055016,-0.000446796417236328,-0.000111579895019531,1.22848153114319,-0.000447750091552734,-0.000126838684082031,1.22852194309235,-0.000418663024902344,-0.000108718872070313,1.22851932048798,-0.000417232513427734,-0.0001220703125,1.2285395860672,-0.000374317169189453,-0.000102996826171875,1.2285407781601,-0.000360965728759766,-0.000116348266601563,1.22850334644318,-0.000447273254394531,-8.392333984375e-05,1.22850728034973,-0.000446796417236328,-9.25064086914063e-05,1.22851240634918,-0.000446796417236328,-8.48770141601563e-05,1.22850811481476,-0.000447750091552734,-7.91549682617188e-05,1.2285076379776,-0.000447750091552734,-8.48770141601563e-05,1.22850739955902,-0.000432491302490234,-0.000138282775878906,1.22851145267487,-0.000418186187744141,-0.000133514404296875,1.22850608825684,-0.000432491302490234,-0.000134468078613281,1.22850871086121,-0.000432968139648438,-0.000134468078613281,1.22847064211965,-0.000432968139648438,-0.000145912170410156,1.22847350686789,-0.000432968139648438,-0.000146865844726563,1.22847519814968,-0.000432491302490234,-0.000145912170410156,1.22847193479538,-0.000432491302490234,-0.000145912170410156,1.22847259789705,-0.000432491302490234,-0.000146865844726563,1.22853362560272,-0.00040435791015625,-8.0108642578125e-05,1.22853243350983,-0.000403404235839844,-8.67843627929688e-05,1.2285350561142,-0.000389575958251953,-7.82012939453125e-05,1.22853577136993,-0.000403404235839844,-7.72476196289063e-05,1.2285338640213,-0.000403404235839844,-8.0108642578125e-05,1.22853267192841,-0.000389575958251953,-0.000134468078613281,1.22853481769562,-0.000374794006347656,-0.000128746032714844,1.22853171825409,-0.00038909912109375, --0.000131607055664063,1.22853314876556,-0.000389575958251953,-0.000128746032714844,1.22851598262787,-0.000403404235839844,-0.000143051147460938,1.22850048542023,-0.000418663024902344,-0.000148773193359375,1.22848880290985,-0.000403404235839844,-0.000156402587890625,1.22850525379181,-0.000403881072998047,-0.000149726867675781,1.22850275039673,-0.000403881072998047,-0.000148773193359375,1.22855067253113,-0.000332355499267578,-7.34329223632813e-05,1.22855091094971,-0.000332355499267578,-7.82012939453125e-05,1.22855424880981,-0.000318050384521484,-7.2479248046875e-05,1.22855401039124,-0.000331401824951172,-7.00950622558594e-05,1.2285521030426,-0.000332355499267578,-7.20024108886719e-05,1.22855591773987,-0.000317573547363281,-0.000127315521240234,1.2285590171814,-0.000302791595458984,-0.000123500823974609,1.22855472564697,-0.000317573547363281,-0.000125885009765625,1.22855687141418,-0.000317096710205078,-0.000123977661132813,1.22853744029999,-0.000345706939697266,-0.000144004821777344,1.2285178899765,-0.000360965728759766,-0.000153541564941406,1.22850072383881,-0.000346660614013672,-0.000163078308105469,1.2285224199295,-0.000346660614013672,-0.000153541564941406,1.22852051258087,-0.000346660614013672,-0.000154495239257813,1.22856402397156,-0.0002593994140625,-7.20024108886719e-05,1.22856378555298,-0.0002593994140625,-8.72611999511719e-05,1.2285680770874,-0.000245094299316406,-0.000105857849121094,1.22856664657593,-0.000245571136474609,-0.000107765197753906,1.22847734391689,-0.000461578369140625,-8.58306884765625e-05,1.22848188877106,-0.000461578369140625,-9.25064086914063e-05,1.22848796844482,-0.000461578369140625,-8.48770141601563e-05,1.22848284244537,-0.000461101531982422,-8.20159912109375e-05,1.22848224639893,-0.000461578369140625,-8.48770141601563e-05,1.22849702835083,-0.000447273254394531,-8.29696655273438e-05,1.22849988937378,-0.000447750091552734,-8.96453857421875e-05,1.22850096225739,-0.000446796417236328,-8.392333984375e-05,1.22849917411804,-0.000447273254394531,-8.10623168945313e-05,1.22849977016449,-0.000447750091552734, --8.392333984375e-05,1.2284996509552,-0.000447273254394531,-0.000108718872070313,1.22849762439728,-0.000447750091552734,-0.000119209289550781,1.22852456569672,-0.000432491302490234,-8.29696655273438e-05,1.22852528095245,-0.000432491302490234,-8.67843627929688e-05,1.22853004932404,-0.000432968139648438,-8.10623168945313e-05,1.22852957248688,-0.000432968139648438,-7.72476196289063e-05,1.22852694988251,-0.000432968139648438,-8.10623168945313e-05,1.22853434085846,-0.000418186187744141,-8.10623168945313e-05,1.22853457927704,-0.000417709350585938,-8.7738037109375e-05,1.22853720188141,-0.000418186187744141,-8.0108642578125e-05,1.22853791713715,-0.000418663024902344,-7.91549682617188e-05,1.22853624820709,-0.000418186187744141,-8.0108642578125e-05,1.22853171825409,-0.00040435791015625,-0.000105857849121094,1.22853004932404,-0.00040435791015625,-0.000118255615234375,1.22854101657867,-0.000375747680664063,-7.72476196289063e-05,1.2285395860672,-0.000374317169189453,-8.29696655273438e-05,1.22854030132294,-0.000360965728759766,-7.53402709960938e-05,1.22854149341583,-0.000374317169189453,-7.2479248046875e-05,1.22854006290436,-0.000375270843505859,-7.72476196289063e-05,1.22854506969452,-0.000346183776855469,-7.53402709960938e-05,1.22854769229889,-0.000346660614013672,-8.10623168945313e-05,1.22855138778687,-0.000346660614013672,-7.62939453125e-05,1.22855043411255,-0.000346183776855469,-7.34329223632813e-05,1.22854864597321,-0.000346660614013672,-7.62939453125e-05,1.22854721546173,-0.000346183776855469,-0.000100135803222656,1.22854888439178,-0.000346660614013672,-0.000110626220703125,1.22856330871582,-0.000288009643554688,-6.91413879394531e-05,1.2285623550415,-0.000288486480712891,-7.34329223632813e-05,1.22856497764587,-0.000274181365966797,-6.72340393066406e-05,1.22856616973877,-0.000288963317871094,-6.53266906738281e-05,1.22856378555298,-0.000288009643554688,-6.77108764648438e-05,1.22856211662292,-0.000273227691650391,-8.91685485839844e-05,1.22856330871582,-0.000274181365966797,-0.000107765197753906,1.22851932048798,-0.000432491302490234, --8.20159912109375e-05,1.22852075099945,-0.000432968139648438,-8.7738037109375e-05,1.22852265834808,-0.000432491302490234,-8.29696655273438e-05,1.22852146625519,-0.000432968139648438,-8.10623168945313e-05,1.22852122783661,-0.000432968139648438,-8.29696655273438e-05,1.22851884365082,-0.000432491302490234,-0.000109672546386719,1.22851693630219,-0.000432491302490234,-0.000121116638183594,1.22850620746613,-0.000432491302490234,-0.000110626220703125,1.2285041809082,-0.000432491302490234,-0.000124931335449219,1.22850179672241,-0.000418663024902344,-0.000142097473144531,1.22848930954933,-0.000432968139648438,-0.000146865844726563,1.22848263382912,-0.000418186187744141,-0.000149726867675781,1.2284951210022,-0.000417232513427734,-0.000146865844726563,1.22849237918854,-0.000418186187744141,-0.000146865844726563,1.22849225997925,-0.000432491302490234,-0.000143051147460938,1.22848239541054,-0.000432491302490234,-0.00014495849609375,1.22847874462605,-0.000432491302490234,-0.000148773193359375,1.22848570346832,-0.000432491302490234,-0.00014495849609375,1.2284984588623,-0.000432491302490234,-0.000139236450195313,1.2285019159317,-0.000432491302490234,-0.000133514404296875,1.22849774360657,-0.000432491302490234,-0.000132560729980469,1.22849988937378,-0.000432491302490234,-0.000133514404296875,1.22847420722246,-0.000447273254394531,-0.000142097473144531,1.22847256809473,-0.000447750091552734,-0.000139236450195313,1.22847064398229,-0.000447750091552734,-0.000143051147460938,1.22847230732441,-0.000447273254394531,-0.000141143798828125,1.22847064398229,-0.000447750091552734,-0.000132560729980469,1.2284744977951,-0.000447273254394531,-0.000136375427246094,1.22847281396389,-0.000447273254394531,-0.000134468078613281,1.22848716378212,-0.000432491302490234,-0.000138282775878906,1.22849154472351,-0.000432968139648438,-0.000135421752929688,1.22848525643349,-0.000446796417236328,-0.000136375427246094,1.22848859429359,-0.000432491302490234,-0.000138282775878906,1.2285383939743,-0.00038909912109375,-7.91549682617188e-05,1.22854125499725,-0.000389575958251953, --8.29696655273438e-05,1.22854387760162,-0.00038909912109375,-7.91549682617188e-05,1.22854244709015,-0.00038909912109375,-7.82012939453125e-05,1.22854149341583,-0.00038909912109375,-7.91549682617188e-05,1.22854053974152,-0.000375270843505859,-0.000102996826171875,1.22853982448578,-0.000374794006347656,-0.000110626220703125,1.22853147983551,-0.000403881072998047,-0.000103950500488281,1.22853004932404,-0.00038909912109375,-0.000118255615234375,1.22852671146393,-0.000389575958251953,-0.000144004821777344,1.22850954532623,-0.00038909912109375,-0.000153541564941406,1.22849440574646,-0.00038909912109375,-0.000162124633789063,1.22851359844208,-0.000375270843505859,-0.000152587890625,1.22851145267487,-0.00038909912109375,-0.000151634216308594,1.22852146625519,-0.00038909912109375,-0.000144004821777344,1.22849154472351,-0.000403881072998047,-0.000158309936523438,1.22850739955902,-0.000403404235839844,-0.000151634216308594,1.22852790355682,-0.000403881072998047,-0.000135421752929688,1.22852909564972,-0.00038909912109375,-0.000131607055664063,1.2285281419754,-0.000403881072998047,-0.000128746032714844,1.22852861881256,-0.000403404235839844,-0.00012969970703125,1.22850871086121,-0.000418186187744141,-0.000144004821777344,1.22848570346832,-0.000418663024902344,-0.000152587890625,1.22849774360657,-0.000418186187744141,-0.000147819519042969,1.22851574420929,-0.000417232513427734,-0.0001373291015625,1.22851765155792,-0.000417709350585938,-0.000131607055664063,1.22851550579071,-0.000417709350585938,-0.000133514404296875,1.22851645946503,-0.000418663024902344,-0.000133514404296875,1.2285224199295,-0.000403881072998047,-0.000135421752929688,1.22852528095245,-0.000403881072998047,-0.00012969970703125,1.22852146625519,-0.000417232513427734,-0.000133514404296875,1.22852337360382,-0.000403881072998047,-0.000133514404296875,1.22855973243713,-0.000302791595458984,-7.00950622558594e-05,1.22856211662292,-0.000303268432617188,-7.58171081542969e-05,1.22856521606445,-0.000302314758300781,-7.05718994140625e-05,1.22856450080872,-0.000302791595458984, --6.866455078125e-05,1.22856283187866,-0.000302314758300781,-7.10487365722656e-05,1.22856211662292,-0.000303268432617188,-9.48905944824219e-05,1.22856187820435,-0.000302791595458984,-0.000108242034912109,1.22855019569397,-0.000331401824951172,-9.67979431152344e-05,1.22855091094971,-0.000331878662109375,-0.000114917755126953,1.22850513458252,-0.000274181365966797,-0.000148296356201172,1.22853624820709,-0.000288963317871094,-0.000141143798828125,1.22852170467377,-0.000317096710205078,-0.000152587890625,1.2284928560257,-0.000317096710205078,-0.000160694122314453,1.2285133600235,-0.000302791595458984,-0.000151157379150391,1.22854149341583,-0.000331401824951172,-0.000143051147460938,1.22850275039673,-0.000331401824951172,-0.000162124633789063,1.2285236120224,-0.000331878662109375,-0.000152111053466797,1.22855067253113,-0.000331401824951172,-0.00012969970703125,1.22855162620544,-0.000332355499267578,-0.000124454498291016,1.22854995727539,-0.000345706939697266,-0.0001220703125,1.22855091094971,-0.000331878662109375,-0.000124454498291016,1.22853124141693,-0.000374794006347656,-0.000144004821777344,1.22849726676941,-0.000375270843505859,-0.000162124633789063,1.22851574420929,-0.000374317169189453,-0.000154495239257813,1.2285383939743,-0.000375270843505859,-0.000133514404296875,1.22854030132294,-0.000374794006347656,-0.000127792358398438,1.22853910923004,-0.000375270843505859,-0.000125885009765625,1.22853982448578,-0.000375270843505859,-0.000125885009765625,1.22854363918304,-0.000360965728759766,-0.000130653381347656,1.22854673862457,-0.000345706939697266,-0.000125885009765625,1.22854292392731,-0.000360488891601563,-0.000128746032714844,1.22854483127594,-0.000361442565917969,-0.000128746032714844,1.22856712341309,-0.000245571136474609,-7.10487365722656e-05,1.22856688499451,-0.000245094299316406,-8.91685485839844e-05,1.22856783866882,-0.000245094299316406,-0.000101089477539063,1.22856712341309,-0.0002593994140625,-0.000112533569335938,1.22856521606445,-0.000259876251220703,-0.000105857849121094,1.22856163978577,-0.000259876251220703, --0.000121116638183594,1.22856426239014,-0.000245094299316406,-0.000116825103759766,1.22856330871582,-0.000258922576904297,-0.000119209289550781,1.22856378555298,-0.000259876251220703,-0.000118732452392578,1.22856283187866,-0.000273227691650391,-0.000119209289550781,1.22856211662292,-0.000288963317871094,-0.000118255615234375,1.22856521606445,-0.000274181365966797,-0.000113487243652344,1.22847064398229,-0.000461101531982422,-8.48770141601563e-05,1.22847189754248,-0.000462055206298828,-8.96453857421875e-05,1.22847375273705,-0.000461578369140625,-8.48770141601563e-05,1.22847228497267,-0.000462055206298828,-8.29696655273438e-05,1.22847203910351,-0.000462055206298828,-8.48770141601563e-05,1.22848185896873,-0.000446796417236328,-0.000132560729980469,1.22847259044647,-0.000447273254394531,-0.000126838684082031,1.22847232967615,-0.000447750091552734,-0.000123977661132813,1.22849333286285,-0.000447750091552734,-9.1552734375e-05,1.22849225997925,-0.000447273254394531,-0.000112533569335938,1.22849678993225,-0.000447750091552734,-0.000123977661132813,1.22848883271217,-0.000432491302490234,-0.000131607055664063,1.22848951816559,-0.000447750091552734,-0.000125885009765625,1.22850167751312,-0.000446796417236328,-9.1552734375e-05,1.2285019159317,-0.000446796417236328,-0.000109672546386719,1.22850155830383,-0.000432968139648438,-0.000123977661132813,1.22850167751312,-0.000432491302490234,-0.000120162963867188,1.22850406169891,-0.000432491302490234,-0.000130653381347656,1.22851598262787,-0.000447273254394531,-8.96453857421875e-05,1.22851359844208,-0.000432491302490234,-0.000110626220703125,1.22850978374481,-0.000432968139648438,-0.000128746032714844,1.22851049900055,-0.000432491302490234,-0.000123977661132813,1.22851645946503,-0.000418663024902344,-0.000123977661132813,1.22852218151093,-0.000432491302490234,-8.86917114257813e-05,1.22852003574371,-0.000432491302490234,-0.000108718872070313,1.2285190820694,-0.000418186187744141,-0.000127792358398438,1.2285178899765,-0.000418663024902344,-0.000123023986816406,1.22851836681366,-0.000418186187744141, --0.000121116638183594,1.22853052616119,-0.000418663024902344,-8.7738037109375e-05,1.22852718830109,-0.000418186187744141,-0.000108718872070313,1.22852957248688,-0.000403404235839844,-0.000119209289550781,1.22852456569672,-0.000403881072998047,-0.000126838684082031,1.2285248041153,-0.000403404235839844,-0.000121116638183594,1.22853434085846,-0.000403881072998047,-8.67843627929688e-05,1.22853171825409,-0.00040435791015625,-0.0001068115234375,1.22853004932404,-0.000403404235839844,-0.000120162963867188,1.22853052616119,-0.00040435791015625,-0.000115394592285156,1.22853004932404,-0.000389575958251953,-0.000123977661132813,1.22853553295135,-0.000389575958251953,-8.48770141601563e-05,1.2285350561142,-0.00038909912109375,-0.000102996826171875,1.22853338718414,-0.00038909912109375,-0.0001220703125,1.22853362560272,-0.000389575958251953,-0.000117301940917969,1.22853934764862,-0.000374317169189453,-0.000112533569335938,1.22854268550873,-0.000375270843505859,-8.29696655273438e-05,1.22854197025299,-0.000375270843505859,-0.000102043151855469,1.22854197025299,-0.000360488891601563,-0.000121116638183594,1.22854220867157,-0.000374317169189453,-0.000115394592285156,1.22854173183441,-0.000374794006347656,-0.000110626220703125,1.22854125499725,-0.000360488891601563,-8.0108642578125e-05,1.22854220867157,-0.000360965728759766,-0.000100135803222656,1.22854995727539,-0.000346660614013672,-0.000113487243652344,1.22854602336884,-0.000360488891601563,-0.000121116638183594,1.2285441160202,-0.000360965728759766,-0.000115394592285156,1.22855043411255,-0.000332355499267578,-8.0108642578125e-05,1.22854888439178,-0.000332355499267578,-9.918212890625e-05,1.22855067253113,-0.000332355499267578,-0.000113487243652344,1.22854971885681,-0.000332355499267578,-0.000110149383544922,1.22855234146118,-0.000318050384521484,-0.000121116638183594,1.22855591773987,-0.000317573547363281,-7.72476196289063e-05,1.22855544090271,-0.000317096710205078,-9.48905944824219e-05,1.22855687141418,-0.000318050384521484,-0.000119686126708984,1.22855567932129,-0.000317573547363281, --0.000113487243652344,1.22856259346008,-0.000303268432617188,-0.000112056732177734,1.22847449034452,-0.000461578369140625,-9.1552734375e-05,1.22847490012646,-0.000447273254394531,-0.000110626220703125,1.22856593132019,-0.000259876251220703,-6.58035278320313e-05,1.22857022285461,-0.000245094299316406,-6.58035278320313e-05,1.22857022285461,-0.000258922576904297,-6.19888305664063e-05,1.2285680770874,-0.000245094299316406,-6.58035278320313e-05,1.22850167751312,-0.000447750091552734,-8.20159912109375e-05,1.22850155830383,-0.000446796417236328,-8.29696655273438e-05,1.22851693630219,-0.000447750091552734,-8.10623168945313e-05,1.22851622104645,-0.000446796417236328,-8.29696655273438e-05,1.22849345207214,-0.000461578369140625,-8.10623168945313e-05,1.22849309444427,-0.000461578369140625,-8.48770141601563e-05,1.22852456569672,-0.000432491302490234,-7.91549682617188e-05,1.22852313518524,-0.000432968139648438,-8.29696655273438e-05,1.22853481769562,-0.000418186187744141,-7.72476196289063e-05,1.22853243350983,-0.000418663024902344,-8.20159912109375e-05,1.22853720188141,-0.000418186187744141,-7.91549682617188e-05,1.22853553295135,-0.000418663024902344,-8.10623168945313e-05,1.22853815555573,-0.00038909912109375,-7.43865966796875e-05,1.22853648662567,-0.00038909912109375,-7.82012939453125e-05,1.22854340076447,-0.000374317169189453,-7.53402709960938e-05,1.22854292392731,-0.000375270843505859,-8.0108642578125e-05,1.2285441160202,-0.000360965728759766,-7.2479248046875e-05,1.22854197025299,-0.000360488891601563,-7.53402709960938e-05,1.22855305671692,-0.000331878662109375,-7.15255737304688e-05,1.22855091094971,-0.000331878662109375,-7.43865966796875e-05,1.2285590171814,-0.000317096710205078,-6.81877136230469e-05,1.22855687141418,-0.000317096710205078,-7.15255737304688e-05,1.22856760025024,-0.0002593994140625,-6.43730163574219e-05,1.22856545448303,-0.000260353088378906,-6.53266906738281e-05,1.22847064398229,-0.000461101531982422,-8.10623168945313e-05,1.22847393155098,-0.000462055206298828,-8.0108642578125e-05,1.22847230732441,-0.000462055206298828, --8.10623168945313e-05,1.22847253829241,-0.000461101531982422,-8.20159912109375e-05,1.22848924994469,-0.000461101531982422,-8.0108642578125e-05,1.2284844815731,-0.000461578369140625,-8.10623168945313e-05,1.22847846150398,-0.000461578369140625,-8.10623168945313e-05,1.22848343849182,-0.000461101531982422,-8.10623168945313e-05,1.22849786281586,-0.000461101531982422,-7.82012939453125e-05,1.22849535942078,-0.000461101531982422,-8.0108642578125e-05,1.22849428653717,-0.000461578369140625,-7.82012939453125e-05,1.2285008430481,-0.000447750091552734,-8.10623168945313e-05,1.22850024700165,-0.000462055206298828,-7.82012939453125e-05,1.2284996509552,-0.000447273254394531,-7.91549682617188e-05,1.22850465774536,-0.000447273254394531,-8.20159912109375e-05,1.22850286960602,-0.000447750091552734,-8.0108642578125e-05,1.22850215435028,-0.000447750091552734,-8.0108642578125e-05,1.22851431369781,-0.000447273254394531,-8.0108642578125e-05,1.22851073741913,-0.000447750091552734,-7.72476196289063e-05,1.22850930690765,-0.000446796417236328,-7.91549682617188e-05,1.22852146625519,-0.000447750091552734,-7.82012939453125e-05,1.22852051258087,-0.000447750091552734,-7.72476196289063e-05,1.22851860523224,-0.000447273254394531,-7.72476196289063e-05,1.22852385044098,-0.000432968139648438,-7.91549682617188e-05,1.22852408885956,-0.000446796417236328,-7.82012939453125e-05,1.22852265834808,-0.000447750091552734,-7.91549682617188e-05,1.2285293340683,-0.000432968139648438,-7.72476196289063e-05,1.2285281419754,-0.000432491302490234,-7.91549682617188e-05,1.22852623462677,-0.000432491302490234,-7.72476196289063e-05,1.22853577136993,-0.000432968139648438,-7.72476196289063e-05,1.22853600978851,-0.000432491302490234,-7.53402709960938e-05,1.22853291034698,-0.000432491302490234,-7.62939453125e-05,1.2285395860672,-0.000418663024902344,-7.62939453125e-05,1.22854149341583,-0.000432491302490234,-7.62939453125e-05,1.22853815555573,-0.000418186187744141,-7.62939453125e-05,1.2285395860672,-0.000417232513427734,-7.91549682617188e-05,1.22854220867157,-0.000418663024902344, --7.72476196289063e-05,1.22853982448578,-0.000418186187744141,-7.72476196289063e-05,1.22853910923004,-0.000403881072998047,-7.72476196289063e-05,1.22854149341583,-0.000418663024902344,-7.82012939453125e-05,1.22853934764862,-0.000418186187744141,-7.82012939453125e-05,1.2285395860672,-0.000403404235839844,-7.62939453125e-05,1.22854244709015,-0.000403881072998047,-7.72476196289063e-05,1.22853863239288,-0.00040435791015625,-7.62939453125e-05,1.22854220867157,-0.000389575958251953,-7.34329223632813e-05,1.22854387760162,-0.00038909912109375,-7.53402709960938e-05,1.2285407781601,-0.00038909912109375,-7.62939453125e-05,1.22854459285736,-0.000389575958251953,-7.72476196289063e-05,1.22854578495026,-0.000389575958251953,-7.72476196289063e-05,1.22854363918304,-0.000389575958251953,-7.62939453125e-05,1.22854435443878,-0.000375747680664063,-7.43865966796875e-05,1.22854673862457,-0.00038909912109375,-7.62939453125e-05,1.22854483127594,-0.00038909912109375,-7.62939453125e-05,1.2285453081131,-0.000360965728759766,-7.43865966796875e-05,1.22854816913605,-0.000374317169189453,-7.43865966796875e-05,1.2285441160202,-0.000374317169189453,-7.34329223632813e-05,1.22855019569397,-0.000345706939697266,-7.15255737304688e-05,1.22855162620544,-0.000360965728759766,-7.2479248046875e-05,1.22854769229889,-0.000360965728759766,-7.15255737304688e-05,1.22855472564697,-0.000346660614013672,-7.2479248046875e-05,1.22855544090271,-0.000346660614013672,-7.2479248046875e-05,1.22855305671692,-0.000346660614013672,-7.2479248046875e-05,1.22855567932129,-0.000331878662109375,-7.00950622558594e-05,1.22855806350708,-0.000346660614013672,-7.05718994140625e-05,1.22855520248413,-0.000346660614013672,-7.15255737304688e-05,1.22855997085571,-0.000317573547363281,-6.96182250976563e-05,1.22856163978577,-0.000331401824951172,-6.96182250976563e-05,1.22855758666992,-0.000331878662109375,-6.866455078125e-05,1.22856497764587,-0.000302791595458984,-6.72340393066406e-05,1.22856664657593,-0.000317573547363281,-6.81877136230469e-05,1.2285623550415,-0.000318050384521484,-6.77108764648438e-05, -1.22856903076172,-0.000302791595458984,-6.96182250976563e-05,1.22857069969177,-0.000303268432617188,-6.77108764648438e-05,1.22856712341309,-0.000303745269775391,-6.77108764648438e-05,1.2285692691803,-0.000288486480712891,-6.4849853515625e-05,1.22857093811035,-0.000274181365966797,-6.38961791992188e-05,1.22857522964478,-0.000288486480712891,-6.58035278320313e-05,1.22857022285461,-0.000288486480712891,-6.43730163574219e-05,1.22857236862183,-0.000259876251220703,-6.15119934082031e-05,1.22857642173767,-0.0002593994140625,-6.34193420410156e-05,1.22857141494751,-0.000259876251220703,-6.43730163574219e-05,1.22857356071472,-0.000245094299316406,-6.05583190917969e-05,1.22857618331909,-0.0002593994140625,-6.103515625e-05,1.22857284545898,-0.000259876251220703,-6.103515625e-05,1.2284799516201,-0.000476360321044922,-8.10623168945313e-05,1.22847665846348,-0.000476360321044922,-8.20159912109375e-05,1.22847419977188,-0.000461101531982422,-8.10623168945313e-05,1.22847574949265,-0.000461578369140625,-7.91549682617188e-05,1.22847637534142,-0.000475883483886719,-8.10623168945313e-05,1.22849249839783,-0.000461578369140625,-7.91549682617188e-05,1.22848606109619,-0.000461578369140625,-8.10623168945313e-05,1.22849988937378,-0.000461101531982422,-8.0108642578125e-05,1.22849726676941,-0.000461101531982422,-8.0108642578125e-05,1.22850143909454,-0.000446796417236328,-7.91549682617188e-05,1.2285008430481,-0.000461578369140625,-8.0108642578125e-05,1.22850728034973,-0.000461578369140625,-7.91549682617188e-05,1.22850358486176,-0.000447750091552734,-8.20159912109375e-05,1.22851765155792,-0.000446796417236328,-7.82012939453125e-05,1.22851240634918,-0.000447750091552734,-8.0108642578125e-05,1.22852504253387,-0.000447750091552734,-7.91549682617188e-05,1.2285224199295,-0.000446796417236328,-7.82012939453125e-05,1.22852623462677,-0.000432491302490234,-7.82012939453125e-05,1.22852551937103,-0.000447750091552734,-7.91549682617188e-05,1.22853457927704,-0.000446796417236328,-7.72476196289063e-05,1.22852981090546,-0.000446796417236328,-8.0108642578125e-05, -1.22854268550873,-0.000432968139648438,-7.72476196289063e-05,1.22853910923004,-0.000432491302490234,-7.72476196289063e-05,1.22854506969452,-0.000418186187744141,-7.72476196289063e-05,1.22854459285736,-0.000432491302490234,-7.62939453125e-05,1.22854268550873,-0.000418186187744141,-7.72476196289063e-05,1.22854387760162,-0.000418663024902344,-7.72476196289063e-05,1.22854578495026,-0.000417709350585938,-7.72476196289063e-05,1.2285441160202,-0.000418186187744141,-7.62939453125e-05,1.22854650020599,-0.00040435791015625,-7.43865966796875e-05,1.22854626178741,-0.00040435791015625,-7.72476196289063e-05,1.22854793071747,-0.000389575958251953,-7.53402709960938e-05,1.22854745388031,-0.000403881072998047,-7.53402709960938e-05,1.22854769229889,-0.000389575958251953,-7.62939453125e-05,1.22854745388031,-0.000389575958251953,-7.62939453125e-05,1.22855043411255,-0.000374317169189453,-7.43865966796875e-05,1.22854864597321,-0.00038909912109375,-7.62939453125e-05,1.22855353355408,-0.000375270843505859,-7.2479248046875e-05,1.22855186462402,-0.000374794006347656,-7.34329223632813e-05,1.22855830192566,-0.000346183776855469,-7.15255737304688e-05,1.22855615615845,-0.000360965728759766,-7.2479248046875e-05,1.22855877876282,-0.000346183776855469,-7.2479248046875e-05,1.22855854034424,-0.000346660614013672,-7.2479248046875e-05,1.22856378555298,-0.000331878662109375,-6.96182250976563e-05,1.22856092453003,-0.000346660614013672,-7.15255737304688e-05,1.22856712341309,-0.000332355499267578,-7.00950622558594e-05,1.22856545448303,-0.000331878662109375,-7.00950622558594e-05,1.22857308387756,-0.000302314758300781,-6.72340393066406e-05,1.22857046127319,-0.000317573547363281,-6.81877136230469e-05,1.22857475280762,-0.000303268432617188,-6.91413879394531e-05,1.2285737991333,-0.000303268432617188,-6.866455078125e-05,1.2285795211792,-0.000288486480712891,-6.4849853515625e-05,1.22857999801636,-0.000273227691650391,-6.43730163574219e-05,1.22857999801636,-0.000288486480712891,-6.43730163574219e-05,1.22858166694641,-0.000259876251220703,-6.103515625e-05,1.22858119010925, --0.000259876251220703,-6.34193420410156e-05,1.22857761383057,-0.000245571136474609,-6.103515625e-05,1.22857975959778,-0.000259876251220703,-6.103515625e-05,1.22847710549831,-0.000447750091552734,-0.000140190124511719,1.22847734391689,-0.000446796417236328,-0.000132560729980469,1.22847656905651,-0.000447750091552734,-0.00012969970703125,1.22856593132019,-0.000230312347412109,-0.000109195709228516,1.22856140136719,-0.000274181365966797,-0.000123023986816406,1.22856283187866,-0.000273227691650391,-0.000121116638183594,1.2285578250885,-0.000288486480712891,-0.000125408172607422,1.22856068611145,-0.000302791595458984,-0.000121116638183594,1.2285532951355,-0.000318050384521484,-0.000128746032714844,1.22855305671692,-0.000331878662109375,-0.000125885009765625,1.22854769229889,-0.000346183776855469,-0.00012969970703125,1.22854888439178,-0.000346660614013672,-0.000124931335449219,1.22854149341583,-0.000360488891601563,-0.000132560729980469,1.22854149341583,-0.000361442565917969,-0.000128746032714844,1.22853577136993,-0.000374317169189453,-0.000133514404296875,1.22853720188141,-0.000375270843505859,-0.000125885009765625,1.22853076457977,-0.00038909912109375,-0.000134468078613281,1.22853028774261,-0.00038909912109375,-0.00012969970703125,1.22852528095245,-0.000403404235839844,-0.000135421752929688,1.22852694988251,-0.000403881072998047,-0.000130653381347656,1.22851955890656,-0.000418663024902344,-0.000136375427246094,1.22851932048798,-0.000418186187744141,-0.000132560729980469,1.22851145267487,-0.000418186187744141,-0.000138282775878906,1.22851383686066,-0.000417232513427734,-0.000133514404296875,1.22850382328033,-0.000432968139648438,-0.000138282775878906,1.22850370407104,-0.000432491302490234,-0.000133514404296875,1.22849249839783,-0.000432491302490234,-0.000138282775878906,1.22849500179291,-0.000432491302490234,-0.000134468078613281,1.22848239541054,-0.000447273254394531,-0.000139236450195313,1.22847871482372,-0.000446796417236328,-0.000135421752929688,1.22848185896873,-0.000447750091552734,-0.000136375427246094,1.22847710549831, --0.000446796417236328,-0.00012969970703125,1.22847640514374,-0.000447750091552734,-0.000124931335449219,1.22847609221935,-0.000447750091552734,-0.000123977661132813,1.22855544090271,-0.000259876251220703,-0.000128269195556641,1.22855544090271,-0.000245094299316406,-0.000126361846923828,1.22855877876282,-0.0002593994140625,-0.000125885009765625,1.22855257987976,-0.000302791595458984,-0.000133991241455078,1.22855067253113,-0.000331878662109375,-0.000134468078613281,1.22855353355408,-0.000317573547363281,-0.000131130218505859,1.22854292392731,-0.000360965728759766,-0.000135421752929688,1.2285395860672,-0.000361442565917969,-0.000136375427246094,1.22854197025299,-0.000361442565917969,-0.000134468078613281,1.22853195667267,-0.00038909912109375,-0.000136375427246094,1.22852909564972,-0.00038909912109375,-0.000138282775878906,1.22853124141693,-0.000389575958251953,-0.0001373291015625,1.22852051258087,-0.000403404235839844,-0.000139236450195313,1.22851669788361,-0.000418663024902344,-0.000141143798828125,1.22851979732513,-0.000418663024902344,-0.000138282775878906,1.2285053730011,-0.000432491302490234,-0.000139236450195313,1.22850012779236,-0.000432491302490234,-0.000139236450195313,1.22850430011749,-0.000432968139648438,-0.000141143798828125,1.22848570346832,-0.000432968139648438,-0.000139236450195313,1.22847943007946,-0.000446796417236328,-0.000142097473144531,1.22848355770111,-0.000432491302490234,-0.000141143798828125,1.22854900360107,-0.000245094299316406,-0.000128746032714844,1.22854948043823,-0.000274181365966797,-0.000131130218505859,1.22855043411255,-0.000288486480712891,-0.000133514404296875,1.22854745388031,-0.000346660614013672,-0.000136375427246094,1.2285487651825,-0.000332355499267578,-0.000135421752929688,1.2285453081131,-0.000346660614013672,-0.000135421752929688,1.22853529453278,-0.000374794006347656,-0.0001373291015625,1.22853720188141,-0.000375270843505859,-0.000138282775878906,1.22853314876556,-0.000374794006347656,-0.000139236450195313,1.2285248041153,-0.000403404235839844,-0.000139236450195313,1.22852671146393, --0.00038909912109375,-0.0001373291015625,1.22852265834808,-0.000403881072998047,-0.000140190124511719,1.22851121425629,-0.000418186187744141,-0.000141143798828125,1.22851407527924,-0.000417232513427734,-0.000139236450195313,1.22850787639618,-0.000418663024902344,-0.000139236450195313,1.22849249839783,-0.000432968139648438,-0.000140190124511719,1.22849631309509,-0.000432491302490234,-0.000140190124511719,1.22848379611969,-0.000432968139648438,-0.00014495849609375,1.22848868370056,-0.000432968139648438,-0.000140190124511719,1.22847732901573,-0.000432968139648438,-0.000144004821777344,1.22847926616669,-0.000432491302490234,-0.000144004821777344,1.22847064398229,-0.000432968139648438,-0.000149726867675781,1.22847513854504,-0.000432968139648438,-0.000150680541992188,1.22847420722246,-0.000432491302490234,-0.000149726867675781,1.22847064211965,-0.000418663024902344,-0.000152587890625,1.22847664356232,-0.000418663024902344,-0.000155448913574219,1.22847585380077,-0.000418663024902344,-0.000151634216308594,1.22847064211965,-0.000418663024902344,-0.000156402587890625,1.22847789525986,-0.000418186187744141,-0.000157356262207031,1.22847732901573,-0.000418663024902344,-0.000154495239257813,1.22847064398229,-0.000403881072998047,-0.00016021728515625,1.2284794151783,-0.000403881072998047,-0.00016021728515625,1.22847869992256,-0.000403404235839844,-0.000157356262207031,1.22847064211965,-0.000403404235839844,-0.00016021728515625,1.22848090529442,-0.00038909912109375,-0.000162124633789063,1.22848019003868,-0.000403881072998047,-0.000161170959472656,1.22847064398229,-0.000389575958251953,-0.000164985656738281,1.22848236560822,-0.000375747680664063,-0.000164031982421875,1.2284816801548,-0.00038909912109375,-0.000163078308105469,1.22847064398229,-0.000374794006347656,-0.000166893005371094,1.22848403453827,-0.000360965728759766,-0.000166893005371094,1.22848305106163,-0.000374317169189453,-0.000165939331054688,1.22848534584045,-0.000332355499267578,-0.000165939331054688,1.22847064398229,-0.000317573547363281,-0.000164031982421875,1.228485673666, --0.000332355499267578,-0.000164031982421875,1.22845619916916,-0.000447273254394531,-0.000126838684082031,1.22845515608788,-0.000461578369140625,-0.000112533569335938,1.22841262817383,-0.000418186187744141,-0.000123977661132813,1.22840666770935,-0.000432491302490234,-0.000108718872070313,1.22838854789734,-0.000374317169189453,-0.000117301940917969,1.22838473320007,-0.000374794006347656,-0.000102043151855469,1.22843313217163,-0.000461578369140625,-8.29696655273438e-05,1.22842800617218,-0.000447273254394531,-9.1552734375e-05,1.22842228412628,-0.000447273254394531,-8.392333984375e-05,1.22842824459076,-0.000461101531982422,-8.10623168945313e-05,1.22842764854431,-0.000461578369140625,-8.48770141601563e-05,1.22842514514923,-0.000432491302490234,-0.000134468078613281,1.22842681407928,-0.000432491302490234,-0.000140190124511719,1.22845017910004,-0.000447273254394531,-0.000148773193359375,1.22845041751862,-0.000446796417236328,-0.000142097473144531,1.22839272022247,-0.000418186187744141,-8.0108642578125e-05,1.22839248180389,-0.000403881072998047,-8.58306884765625e-05,1.228391289711,-0.00040435791015625,-7.91549682617188e-05,1.22839272022247,-0.000403404235839844,-7.62939453125e-05,1.22839152812958,-0.00040435791015625,-8.0108642578125e-05,1.22839999198914,-0.000389575958251953,-0.000128746032714844,1.22839939594269,-0.00038909912109375,-0.000138282775878906,1.22840809822083,-0.000417709350585938,-0.000146865844726563,1.22841024398804,-0.000418663024902344,-0.000139236450195313,1.22837328910828,-0.000346660614013672,-7.43865966796875e-05,1.22836947441101,-0.000332355499267578,-7.91549682617188e-05,1.22836852073669,-0.000332355499267578,-7.20024108886719e-05,1.22837281227112,-0.000331878662109375,-7.05718994140625e-05,1.22837090492249,-0.000331878662109375,-7.29560852050781e-05,1.2283718585968,-0.000317096710205078,-0.000123023986816406,1.22837114334106,-0.000317096710205078,-0.000129222869873047,1.22838354110718,-0.000360488891601563,-0.000142097473144531,1.22838544845581,-0.000360965728759766,-0.000132560729980469,1.22835397720337, --0.000259876251220703,-7.20024108886719e-05,1.22835302352905,-0.000259876251220703,-8.7738037109375e-05,1.22836065292358,-0.000245571136474609,-0.000111103057861328,1.22836089134216,-0.000245094299316406,-0.000105857849121094,1.22836256027222,-0.000274658203125,-0.000125885009765625,1.228360414505,-0.000274658203125,-0.000134944915771484,1.22846066951752,-0.000475883483886719,-8.48770141601563e-05,1.22845375537872,-0.000461578369140625,-9.25064086914063e-05,1.2284460067749,-0.000461578369140625,-8.67843627929688e-05,1.22845375537872,-0.000462055206298828,-8.29696655273438e-05,1.22845342755318,-0.000461101531982422,-8.48770141601563e-05,1.22843909263611,-0.000461578369140625,-8.48770141601563e-05,1.22843897342682,-0.000447750091552734,-8.96453857421875e-05,1.22843885421753,-0.000447750091552734,-8.48770141601563e-05,1.22844016551971,-0.000461578369140625,-8.20159912109375e-05,1.2284392118454,-0.000462055206298828,-8.48770141601563e-05,1.22844159603119,-0.000446796417236328,-0.000121116638183594,1.22843945026398,-0.000447273254394531,-0.000111579895019531,1.22840452194214,-0.000446796417236328,-8.29696655273438e-05,1.22840130329132,-0.000432491302490234,-8.86917114257813e-05,1.22839617729187,-0.000432491302490234,-8.29696655273438e-05,1.22840011119843,-0.000432491302490234,-7.82012939453125e-05,1.22839975357056,-0.000432968139648438,-8.20159912109375e-05,1.2283947467804,-0.000418663024902344,-8.20159912109375e-05,1.22839725017548,-0.000418186187744141,-8.7738037109375e-05,1.22839760780334,-0.000418186187744141,-8.29696655273438e-05,1.22839665412903,-0.000417709350585938,-7.91549682617188e-05,1.22839653491974,-0.000418186187744141,-8.29696655273438e-05,1.22840428352356,-0.000403881072998047,-0.000116348266601563,1.22840166091919,-0.000418663024902344,-0.000108718872070313,1.22838735580444,-0.00038909912109375,-7.82012939453125e-05,1.22838473320007,-0.000375747680664063,-8.20159912109375e-05,1.22838258743286,-0.000375270843505859,-7.62939453125e-05,1.22838640213013,-0.000375270843505859,-7.2479248046875e-05,1.22838497161865, --0.000374794006347656,-7.72476196289063e-05,1.22837829589844,-0.000346660614013672,-7.43865966796875e-05,1.22837781906128,-0.000346660614013672,-8.10623168945313e-05,1.22837948799133,-0.000346660614013672,-7.53402709960938e-05,1.22838044166565,-0.000346660614013672,-7.2479248046875e-05,1.22837948799133,-0.000346660614013672,-7.53402709960938e-05,1.22837829589844,-0.000346660614013672,-0.000110626220703125,1.22837662696838,-0.000346183776855469,-0.000100135803222656,1.22835636138916,-0.000288486480712891,-6.91413879394531e-05,1.22835516929626,-0.000288009643554688,-7.2479248046875e-05,1.22835540771484,-0.000273704528808594,-6.72340393066406e-05,1.22835755348206,-0.000288486480712891,-6.58035278320313e-05,1.22835540771484,-0.000288009643554688,-6.77108764648438e-05,1.22835898399353,-0.000274658203125,-0.000108242034912109,1.22835493087769,-0.000274181365966797,-8.86917114257813e-05,1.22841358184814,-0.000447273254394531,-8.29696655273438e-05,1.22841417789459,-0.000432491302490234,-9.1552734375e-05,1.2284140586853,-0.000433444976806641,-8.20159912109375e-05,1.22841513156891,-0.000447750091552734,-8.0108642578125e-05,1.22841393947601,-0.000447750091552734,-8.29696655273438e-05,1.22841906547546,-0.000432491302490234,-0.000121116638183594,1.22841703891754,-0.000432491302490234,-0.000110626220703125,1.2284300327301,-0.000432491302490234,-0.000125885009765625,1.22842872142792,-0.000447750091552734,-0.000111579895019531,1.2284243106842,-0.000432014465332031,-0.000147819519042969,1.22843515872955,-0.000432968139648438,-0.000149726867675781,1.22843778133392,-0.000432491302490234,-0.000139236450195313,1.22843730449677,-0.000432491302490234,-0.000128746032714844,1.2284642457962,-0.000447750091552734,-0.000140190124511719,1.22846423089504,-0.000447273254394531,-0.000149726867675781,1.22846847400069,-0.000446796417236328,-0.000130653381347656,1.22846859693527,-0.000447750091552734,-0.000126838684082031,1.22844994068146,-0.000446796417236328,-0.000134468078613281,1.22839093208313,-0.000389575958251953,-7.91549682617188e-05,1.22839248180389, --0.00038909912109375,-8.29696655273438e-05,1.22839212417603,-0.00038909912109375,-7.91549682617188e-05,1.22839260101318,-0.00038909912109375,-7.72476196289063e-05,1.22839224338531,-0.00038909912109375,-8.0108642578125e-05,1.22839534282684,-0.000374317169189453,-0.000110626220703125,1.22839367389679,-0.00038909912109375,-0.000102996826171875,1.22840142250061,-0.000403881072998047,-0.000123023986816406,1.22839617729187,-0.000403404235839844,-0.000105857849121094,1.22839796543121,-0.00038909912109375,-0.00014495849609375,1.2284038066864,-0.00040435791015625,-0.00014495849609375,1.22840595245361,-0.000403881072998047,-0.000136375427246094,1.22840583324432,-0.000403404235839844,-0.000123977661132813,1.22841501235962,-0.000418663024902344,-0.000148773193359375,1.22841787338257,-0.000417232513427734,-0.000139236450195313,1.22841894626617,-0.000418186187744141,-0.000127792358398438,1.22840976715088,-0.000417709350585938,-0.000128746032714844,1.2283627986908,-0.000303268432617188,-7.15255737304688e-05,1.22836256027222,-0.000303268432617188,-7.62939453125e-05,1.22836327552795,-0.000302791595458984,-7.20024108886719e-05,1.22836446762085,-0.000302791595458984,-6.91413879394531e-05,1.22836303710938,-0.000303268432617188,-7.15255737304688e-05,1.22836661338806,-0.000302791595458984,-0.000104904174804688,1.22836351394653,-0.000302314758300781,-9.34600830078125e-05,1.22837328910828,-0.000331878662109375,-0.000115871429443359,1.22836923599243,-0.000331878662109375,-9.67979431152344e-05,1.22836899757385,-0.000317573547363281,-0.000138282775878906,1.22837591171265,-0.000346183776855469,-0.000140190124511719,1.22837829589844,-0.000346660614013672,-0.000130653381347656,1.22837853431702,-0.000345230102539063,-0.000119209289550781,1.22839069366455,-0.000375747680664063,-0.000143051147460938,1.22839272022247,-0.000375270843505859,-0.000133514404296875,1.22839319705963,-0.000374794006347656,-0.000120162963867188,1.22838401794434,-0.000360488891601563,-0.000123023986816406,1.22835683822632,-0.000245094299316406,-7.10487365722656e-05,1.22835755348206, --0.000244617462158203,-8.91685485839844e-05,1.22835946083069,-0.000245094299316406,-0.000101566314697266,1.22835850715637,-0.0002593994140625,-0.000105857849121094,1.2283616065979,-0.0002593994140625,-0.000112056732177734,1.22836089134216,-0.000245094299316406,-0.0001220703125,1.22835874557495,-0.000245094299316406,-0.000130653381347656,1.2283616065979,-0.000259876251220703,-0.000124454498291016,1.22835993766785,-0.0002593994140625,-0.000131130218505859,1.22836136817932,-0.000259876251220703,-0.000115871429443359,1.22836256027222,-0.000274181365966797,-0.000117778778076172,1.22836232185364,-0.000273227691650391,-0.000113487243652344,1.22846926003695,-0.000461578369140625,-9.05990600585938e-05,1.22846709191799,-0.000462055206298828,-8.48770141601563e-05,1.22846902161837,-0.000461578369140625,-8.20159912109375e-05,1.22846876829863,-0.000461578369140625,-8.67843627929688e-05,1.22845819592476,-0.000447273254394531,-0.000142097473144531,1.22845831513405,-0.000447273254394531,-0.000148773193359375,1.22845819592476,-0.000447750091552734,-0.000135421752929688,1.22845795750618,-0.000446796417236328,-0.000131607055664063,1.22846899926662,-0.000446796417236328,-0.000121116638183594,1.22846901416779,-0.000461578369140625,-0.000110626220703125,1.22844362258911,-0.000447750091552734,-0.000139236450195313,1.22844159603119,-0.000447273254394531,-0.000148773193359375,1.22844135761261,-0.000461578369140625,-9.1552734375e-05,1.22844290733337,-0.000447750091552734,-0.000111579895019531,1.22844326496124,-0.000446796417236328,-0.000128746032714844,1.22844254970551,-0.000446796417236328,-0.000124931335449219,1.22844660282135,-0.000447750091552734,-0.000126838684082031,1.22844958305359,-0.000446796417236328,-0.000131607055664063,1.22843670845032,-0.000446796417236328,-9.25064086914063e-05,1.22843682765961,-0.000446796417236328,-0.000109672546386719,1.22843205928802,-0.000432968139648438,-0.000141143798828125,1.22842991352081,-0.000432968139648438,-0.000149726867675781,1.2284369468689,-0.000447750091552734,-0.000119209289550781,1.2284369468689, --0.000447273254394531,-0.000123977661132813,1.22843110561371,-0.000432968139648438,-0.000134468078613281,1.22843098640442,-0.000432491302490234,-0.000131607055664063,1.22842228412628,-0.000432968139648438,-0.000139236450195313,1.22841966152191,-0.000432014465332031,-0.000148773193359375,1.22841715812683,-0.000446796417236328,-8.86917114257813e-05,1.2284197807312,-0.000432491302490234,-0.000112533569335938,1.22842264175415,-0.000432491302490234,-0.000125885009765625,1.22842442989349,-0.000432968139648438,-0.000128746032714844,1.22842156887054,-0.000432491302490234,-0.000128746032714844,1.22842061519623,-0.000432968139648438,-0.000123977661132813,1.2284107208252,-0.000432968139648438,-8.7738037109375e-05,1.22841382026672,-0.000432491302490234,-0.000109672546386719,1.22841393947601,-0.000417232513427734,-0.000139236450195313,1.22841119766235,-0.000417709350585938,-0.00014495849609375,1.22841429710388,-0.000418663024902344,-0.00012969970703125,1.22841453552246,-0.000417232513427734,-0.000126838684082031,1.22841715812683,-0.000432491302490234,-0.000121116638183594,1.22841882705688,-0.000418186187744141,-0.000123977661132813,1.22840738296509,-0.000403881072998047,-0.0001373291015625,1.22840583324432,-0.000403404235839844,-0.000146865844726563,1.22839522361755,-0.000432491302490234,-8.7738037109375e-05,1.2284015417099,-0.000418186187744141,-0.000108718872070313,1.22840690612793,-0.00040435791015625,-0.000123977661132813,1.22840619087219,-0.000403881072998047,-0.000119209289550781,1.22840702533722,-0.000418663024902344,-0.000123023986816406,1.22840929031372,-0.000418663024902344,-0.000124931335449219,1.22839641571045,-0.000418663024902344,-8.67843627929688e-05,1.22839999198914,-0.000403881072998047,-0.000105857849121094,1.22840321063995,-0.00038909912109375,-0.000138282775878906,1.2284015417099,-0.000390052795410156,-0.00014495849609375,1.22840416431427,-0.00040435791015625,-0.000118255615234375,1.22840547561646,-0.000403881072998047,-0.000120162963867188,1.22840368747711,-0.000389575958251953,-0.00012969970703125,1.22840332984924, --0.000389575958251953,-0.000126838684082031,1.22839605808258,-0.000374317169189453,-0.000134468078613281,1.22839426994324,-0.000374794006347656,-0.000144004821777344,1.22839093208313,-0.000403404235839844,-8.48770141601563e-05,1.22839391231537,-0.000389575958251953,-0.000103950500488281,1.22839760780334,-0.00038909912109375,-0.000119209289550781,1.2283992767334,-0.00038909912109375,-0.000123977661132813,1.22839605808258,-0.000374317169189453,-0.000119209289550781,1.22839641571045,-0.000375270843505859,-0.00011444091796875,1.22839069366455,-0.00038909912109375,-8.29696655273438e-05,1.22839212417603,-0.000375270843505859,-0.000103950500488281,1.22838926315308,-0.000360965728759766,-0.000134468078613281,1.22838735580444,-0.000361442565917969,-0.000143051147460938,1.22838950157166,-0.000374317169189453,-0.000125885009765625,1.22839045524597,-0.000375270843505859,-0.000123023986816406,1.22839343547821,-0.000374794006347656,-0.000111579895019531,1.22839379310608,-0.000374317169189453,-0.000115394592285156,1.22838139533997,-0.000346183776855469,-0.000131607055664063,1.22837948799133,-0.000346183776855469,-0.000141143798828125,1.2283787727356,-0.000360965728759766,-8.20159912109375e-05,1.22837829589844,-0.000360965728759766,-0.000101089477539063,1.22838020324707,-0.000346660614013672,-0.000119209289550781,1.22837972640991,-0.000346660614013672,-0.00011444091796875,1.22838091850281,-0.000360965728759766,-0.000115394592285156,1.22838282585144,-0.000360965728759766,-0.000121116638183594,1.22837615013123,-0.000346660614013672,-8.0108642578125e-05,1.22837471961975,-0.000346660614013672,-9.918212890625e-05,1.22837495803833,-0.000332355499267578,-0.000131130218505859,1.22837328910828,-0.000331878662109375,-0.000138282775878906,1.22837710380554,-0.000346660614013672,-0.000110626220703125,1.2283787727356,-0.000345706939697266,-0.000113487243652344,1.22837543487549,-0.000332355499267578,-0.000124931335449219,1.2283763885498,-0.000331401824951172,-0.000122547149658203,1.22836685180664,-0.000303745269775391,-0.000126838684082031,1.22836399078369, --0.000302314758300781,-0.000135898590087891,1.22836446762085,-0.000317096710205078,-7.77244567871094e-05,1.22836470603943,-0.000317096710205078,-9.5367431640625e-05,1.22836852073669,-0.000317573547363281,-0.000115394592285156,1.22837162017822,-0.000317573547363281,-0.000120162963867188,1.22836852073669,-0.000303268432617188,-0.00011444091796875,1.22836828231812,-0.000302791595458984,-0.000109672546386719,1.22846467792988,-0.000462055206298828,-9.05990600585938e-05,1.22846469283104,-0.000461101531982422,-0.000112533569335938,1.22835397720337,-0.000259876251220703,-6.53266906738281e-05,1.22836136817932,-0.000245094299316406,-6.43730163574219e-05,1.22835874557495,-0.0002593994140625,-6.24656677246094e-05,1.22835803031921,-0.000244617462158203,-6.53266906738281e-05,1.22843718528748,-0.000447273254394531,-8.20159912109375e-05,1.2284369468689,-0.000447750091552734,-8.29696655273438e-05,1.22841787338257,-0.000446796417236328,-8.0108642578125e-05,1.22841691970825,-0.000446796417236328,-8.29696655273438e-05,1.22844231128693,-0.000461578369140625,-8.29696655273438e-05,1.22844159603119,-0.000461578369140625,-8.48770141601563e-05,1.22841060161591,-0.000447273254394531,-8.10623168945313e-05,1.22841000556946,-0.000447273254394531,-8.392333984375e-05,1.22839462757111,-0.000432491302490234,-7.91549682617188e-05,1.22839462757111,-0.000432491302490234,-8.29696655273438e-05,1.228395819664,-0.000418663024902344,-7.82012939453125e-05,1.22839558124542,-0.000418186187744141,-8.10623168945313e-05,1.22839140892029,-0.000403881072998047,-7.43865966796875e-05,1.22839093208313,-0.000403881072998047,-7.91549682617188e-05,1.22839069366455,-0.000389575958251953,-7.72476196289063e-05,1.22839069366455,-0.00038909912109375,-7.72476196289063e-05,1.22838139533997,-0.000360488891601563,-7.34329223632813e-05,1.22837972640991,-0.000360965728759766,-7.53402709960938e-05,1.2283775806427,-0.000346183776855469,-7.34329223632813e-05,1.2283763885498,-0.000345706939697266,-7.53402709960938e-05,1.22836709022522,-0.000317573547363281,-6.91413879394531e-05,1.22836542129517, --0.000317573547363281,-7.15255737304688e-05,1.22835659980774,-0.000259876251220703,-6.38961791992188e-05,1.22835397720337,-0.0002593994140625,-6.62803649902344e-05,1.22845977544785,-0.000447750091552734,-0.000126838684082031,1.22845989465714,-0.000446796417236328,-0.000111579895019531,1.22842216491699,-0.000417232513427734,-0.0001220703125,1.22841954231262,-0.000418663024902344,-0.000108718872070313,1.22840070724487,-0.000360965728759766,-0.000116348266601563,1.22840166091919,-0.000374317169189453,-0.000102996826171875,1.22843360900879,-0.000447750091552734,-7.91549682617188e-05,1.22842872142792,-0.000446796417236328,-8.48770141601563e-05,1.22843408584595,-0.000446796417236328,-9.25064086914063e-05,1.2284380197525,-0.000447273254394531,-8.392333984375e-05,1.22843372821808,-0.000447750091552734,-8.48770141601563e-05,1.22843551635742,-0.000432491302490234,-0.000134468078613281,1.22842979431152,-0.000418186187744141,-0.000133514404296875,1.22843444347382,-0.000432491302490234,-0.000138282775878906,1.22843253612518,-0.000432968139648438,-0.000134468078613281,1.22846917062998,-0.000432491302490234,-0.000145912170410156,1.22846587002277,-0.000432491302490234,-0.000145912170410156,1.22846803069115,-0.000432968139648438,-0.000146865844726563,1.22846872732043,-0.000432491302490234,-0.000146865844726563,1.22840523719788,-0.000403404235839844,-7.72476196289063e-05,1.22840631008148,-0.000389575958251953,-7.82012939453125e-05,1.22840905189514,-0.000403404235839844,-8.67843627929688e-05,1.22840774059296,-0.00040435791015625,-8.0108642578125e-05,1.22840774059296,-0.000403404235839844,-8.0108642578125e-05,1.2284095287323,-0.00038909912109375,-0.000131607055664063,1.22840678691864,-0.000374794006347656,-0.000128746032714844,1.22840881347656,-0.000389575958251953,-0.000134468078613281,1.22840821743011,-0.000389575958251953,-0.000128746032714844,1.22842562198639,-0.000403404235839844,-0.000143051147460938,1.22843611240387,-0.000403881072998047,-0.000149726867675781,1.22845274209976,-0.000403404235839844,-0.000156402587890625,1.22844099998474, --0.000418663024902344,-0.000148773193359375,1.22843837738037,-0.000403881072998047,-0.000148773193359375,1.22838735580444,-0.000331401824951172,-7.00950622558594e-05,1.22838664054871,-0.000318050384521484,-7.2479248046875e-05,1.22838973999023,-0.000332355499267578,-7.82012939453125e-05,1.22839021682739,-0.000332355499267578,-7.34329223632813e-05,1.2283890247345,-0.000332355499267578,-7.20024108886719e-05,1.22838664054871,-0.000317573547363281,-0.000125885009765625,1.2283821105957,-0.000302791595458984,-0.000123500823974609,1.22838521003723,-0.000317573547363281,-0.000127315521240234,1.22838425636292,-0.000317096710205078,-0.000123977661132813,1.22840404510498,-0.000345706939697266,-0.000144004821777344,1.22841918468475,-0.000346660614013672,-0.000153541564941406,1.22844064235687,-0.000346660614013672,-0.000163078308105469,1.22842347621918,-0.000360965728759766,-0.000153541564941406,1.22842085361481,-0.000346660614013672,-0.000154495239257813,1.22837734222412,-0.0002593994140625,-8.72611999511719e-05,1.22837734222412,-0.0002593994140625,-7.20024108886719e-05,1.22837448120117,-0.000245571136474609,-0.000107765197753906,1.22837328910828,-0.000245094299316406,-0.000105857849121094,1.22845852375031,-0.000461101531982422,-8.20159912109375e-05,1.22845304012299,-0.000461578369140625,-8.48770141601563e-05,1.2284594476223,-0.000461578369140625,-9.25064086914063e-05,1.22846396267414,-0.000461578369140625,-8.58306884765625e-05,1.2284591794014,-0.000461578369140625,-8.48770141601563e-05,1.22844207286835,-0.000447273254394531,-8.10623168945313e-05,1.22844088077545,-0.000446796417236328,-8.392333984375e-05,1.22844159603119,-0.000447750091552734,-8.96453857421875e-05,1.22844409942627,-0.000447273254394531,-8.29696655273438e-05,1.22844183444977,-0.000447750091552734,-8.392333984375e-05,1.22844398021698,-0.000447750091552734,-0.000119209289550781,1.22844207286835,-0.000447273254394531,-0.000108718872070313,1.22841143608093,-0.000432968139648438,-7.72476196289063e-05,1.22841131687164,-0.000432968139648438,-8.10623168945313e-05,1.2284163236618, --0.000432491302490234,-8.67843627929688e-05,1.22841703891754,-0.000432491302490234,-8.29696655273438e-05,1.22841465473175,-0.000432968139648438,-8.10623168945313e-05,1.22840332984924,-0.000418663024902344,-7.91549682617188e-05,1.22840404510498,-0.000418186187744141,-8.0108642578125e-05,1.22840666770935,-0.000417709350585938,-8.7738037109375e-05,1.2284072637558,-0.000418186187744141,-8.10623168945313e-05,1.22840523719788,-0.000418186187744141,-8.0108642578125e-05,1.22841084003448,-0.00040435791015625,-0.000118255615234375,1.22840976715088,-0.00040435791015625,-0.000105857849121094,1.22840011119843,-0.000374317169189453,-7.2479248046875e-05,1.22840094566345,-0.000360965728759766,-7.53402709960938e-05,1.22840225696564,-0.000374317169189453,-8.29696655273438e-05,1.228400349617,-0.000375747680664063,-7.72476196289063e-05,1.2284015417099,-0.000375270843505859,-7.72476196289063e-05,1.22839069366455,-0.000346183776855469,-7.34329223632813e-05,1.22838973999023,-0.000346660614013672,-7.62939453125e-05,1.22839415073395,-0.000346660614013672,-8.10623168945313e-05,1.22839713096619,-0.000346183776855469,-7.53402709960938e-05,1.22839283943176,-0.000346660614013672,-7.62939453125e-05,1.22839260101318,-0.000346660614013672,-0.000110626220703125,1.22839462757111,-0.000346183776855469,-0.000100135803222656,1.22837519645691,-0.000288963317871094,-6.53266906738281e-05,1.2283763885498,-0.000274181365966797,-6.72340393066406e-05,1.22837901115417,-0.000288486480712891,-7.34329223632813e-05,1.22837829589844,-0.000288009643554688,-6.91413879394531e-05,1.2283775806427,-0.000288009643554688,-6.77108764648438e-05,1.22837829589844,-0.000274181365966797,-0.000107765197753906,1.22837948799133,-0.000273227691650391,-8.91685485839844e-05,1.22842037677765,-0.000432968139648438,-8.10623168945313e-05,1.2284187078476,-0.000432491302490234,-8.29696655273438e-05,1.22842073440552,-0.000432968139648438,-8.7738037109375e-05,1.22842228412628,-0.000432491302490234,-8.20159912109375e-05,1.22842025756836,-0.000432968139648438,-8.29696655273438e-05,1.22842478752136, --0.000432491302490234,-0.000121116638183594,1.22842264175415,-0.000432491302490234,-0.000109672546386719,1.22843754291534,-0.000432491302490234,-0.000124931335449219,1.22843539714813,-0.000432491302490234,-0.000110626220703125,1.22843956947327,-0.000418663024902344,-0.000142097473144531,1.22844636440277,-0.000417232513427734,-0.000146865844726563,1.22845897078514,-0.000418186187744141,-0.000149726867675781,1.22845208644867,-0.000432968139648438,-0.000146865844726563,1.22844898700714,-0.000418186187744141,-0.000146865844726563,1.22844922542572,-0.000432491302490234,-0.000143051147460938,1.22846248745918,-0.000432491302490234,-0.000148773193359375,1.22845926880836,-0.000432491302490234,-0.00014495849609375,1.22845566272736,-0.000432491302490234,-0.00014495849609375,1.2284437417984,-0.000432491302490234,-0.000132560729980469,1.22843968868256,-0.000432491302490234,-0.000133514404296875,1.22844278812408,-0.000432491302490234,-0.000139236450195313,1.22844135761261,-0.000432491302490234,-0.000133514404296875,1.2284687384963,-0.000447750091552734,-0.000139236450195313,1.22846710681915,-0.000447273254394531,-0.000142097473144531,1.22846901789308,-0.000447273254394531,-0.000141143798828125,1.22846657782793,-0.000447273254394531,-0.000136375427246094,1.22846875339746,-0.000447273254394531,-0.000134468078613281,1.22845631837845,-0.000446796417236328,-0.000136375427246094,1.22844994068146,-0.000432968139648438,-0.000135421752929688,1.22845429182053,-0.000432491302490234,-0.000138282775878906,1.22845304012299,-0.000432491302490234,-0.000138282775878906,1.22839879989624,-0.00038909912109375,-7.82012939453125e-05,1.22839796543121,-0.00038909912109375,-7.91549682617188e-05,1.22840058803558,-0.000389575958251953,-8.29696655273438e-05,1.22840285301208,-0.00038909912109375,-7.91549682617188e-05,1.22839987277985,-0.00038909912109375,-7.91549682617188e-05,1.22840189933777,-0.000374794006347656,-0.000110626220703125,1.22840106487274,-0.000375270843505859,-0.000102996826171875,1.2284117937088,-0.00038909912109375,-0.000118255615234375,1.22841012477875, --0.000403881072998047,-0.000103950500488281,1.2284152507782,-0.000389575958251953,-0.000144004821777344,1.22842800617218,-0.000375270843505859,-0.000152587890625,1.22844707965851,-0.00038909912109375,-0.000162124633789063,1.22843182086945,-0.00038909912109375,-0.000153541564941406,1.2284300327301,-0.00038909912109375,-0.000151634216308594,1.22842001914978,-0.00038909912109375,-0.000144004821777344,1.22844994068146,-0.000403881072998047,-0.000158309936523438,1.22843396663666,-0.000403404235839844,-0.000151634216308594,1.22841322422028,-0.000403881072998047,-0.000128746032714844,1.22841215133667,-0.00038909912109375,-0.000131607055664063,1.22841310501099,-0.000403881072998047,-0.000135421752929688,1.22841274738312,-0.000403404235839844,-0.00012969970703125,1.22843241691589,-0.000418186187744141,-0.000144004821777344,1.22845560312271,-0.000418663024902344,-0.000152587890625,1.22844338417053,-0.000418186187744141,-0.000147819519042969,1.22842609882355,-0.000417709350585938,-0.000133514404296875,1.22842383384705,-0.000417709350585938,-0.000131607055664063,1.22842597961426,-0.000417232513427734,-0.0001373291015625,1.22842490673065,-0.000418663024902344,-0.000133514404296875,1.22841989994049,-0.000417232513427734,-0.000133514404296875,1.22841596603394,-0.000403881072998047,-0.00012969970703125,1.22841906547546,-0.000403881072998047,-0.000135421752929688,1.22841799259186,-0.000403881072998047,-0.000133514404296875,1.22837710380554,-0.000302791595458984,-6.866455078125e-05,1.22837591171265,-0.000302314758300781,-7.05718994140625e-05,1.22837901115417,-0.000303268432617188,-7.58171081542969e-05,1.2283821105957,-0.000302791595458984,-7.00950622558594e-05,1.22837829589844,-0.000302314758300781,-7.10487365722656e-05,1.22837924957275,-0.000302791595458984,-0.000108242034912109,1.22837972640991,-0.000303268432617188,-9.48905944824219e-05,1.22838997840881,-0.000331878662109375,-0.000114917755126953,1.22839069366455,-0.000331401824951172,-9.67979431152344e-05,1.22840535640717,-0.000288963317871094,-0.000141143798828125,1.22844862937927, --0.000317096710205078,-0.000160694122314453,1.22841989994049,-0.000317096710205078,-0.000152587890625,1.22842800617218,-0.000302791595458984,-0.000151157379150391,1.22840011119843,-0.000331401824951172,-0.000143051147460938,1.22843885421753,-0.000331401824951172,-0.000162124633789063,1.22841787338257,-0.000331878662109375,-0.000152111053466797,1.22839117050171,-0.000345706939697266,-0.0001220703125,1.2283890247345,-0.000332355499267578,-0.000124454498291016,1.22839117050171,-0.000331401824951172,-0.00012969970703125,1.22838997840881,-0.000331878662109375,-0.000124454498291016,1.22841000556946,-0.000374794006347656,-0.000144004821777344,1.22844421863556,-0.000375270843505859,-0.000162124633789063,1.22842586040497,-0.000374317169189453,-0.000154495239257813,1.22840297222137,-0.000375270843505859,-0.000125885009765625,1.22840106487274,-0.000374794006347656,-0.000127792358398438,1.22840309143066,-0.000375270843505859,-0.000133514404296875,1.22840142250061,-0.000375270843505859,-0.000125885009765625,1.22839891910553,-0.000360488891601563,-0.000128746032714844,1.22839462757111,-0.000345706939697266,-0.000125885009765625,1.22839772701263,-0.000360965728759766,-0.000130653381347656,1.22839665412903,-0.000361442565917969,-0.000128746032714844,1.22837471961975,-0.000245094299316406,-8.91685485839844e-05,1.22837448120117,-0.000245571136474609,-7.10487365722656e-05,1.2283730506897,-0.000245094299316406,-0.000101089477539063,1.22837662696838,-0.000259876251220703,-0.000105857849121094,1.22837448120117,-0.0002593994140625,-0.000112533569335938,1.22837710380554,-0.000258922576904297,-0.000119209289550781,1.22837710380554,-0.000245094299316406,-0.000116825103759766,1.22837972640991,-0.000259876251220703,-0.000121116638183594,1.22837734222412,-0.000259876251220703,-0.000118732452392578,1.22837924957275,-0.000288963317871094,-0.000118255615234375,1.2283787727356,-0.000273227691650391,-0.000119209289550781,1.22837591171265,-0.000274181365966797,-0.000113487243652344,1.22846926376224,-0.000462055206298828,-8.29696655273438e-05,1.22846779227257, --0.000461578369140625,-8.48770141601563e-05,1.22846940904856,-0.000462055206298828,-8.96453857421875e-05,1.2284692786634,-0.000462055206298828,-8.48770141601563e-05,1.2284594476223,-0.000446796417236328,-0.000132560729980469,1.22846875339746,-0.000447750091552734,-0.000123977661132813,1.22846874594688,-0.000447273254394531,-0.000126838684082031,1.22844922542572,-0.000447273254394531,-0.000112533569335938,1.22844803333282,-0.000447750091552734,-9.1552734375e-05,1.22844445705414,-0.000447750091552734,-0.000123977661132813,1.22845202684402,-0.000447750091552734,-0.000125885009765625,1.22845208644867,-0.000432491302490234,-0.000131607055664063,1.22843945026398,-0.000446796417236328,-0.000109672546386719,1.22843992710114,-0.000446796417236328,-9.1552734375e-05,1.22843992710114,-0.000432491302490234,-0.000120162963867188,1.22843956947327,-0.000432968139648438,-0.000123977661132813,1.22843730449677,-0.000432491302490234,-0.000130653381347656,1.22842800617218,-0.000432491302490234,-0.000110626220703125,1.22842538356781,-0.000447273254394531,-8.96453857421875e-05,1.22843110561371,-0.000432491302490234,-0.000123977661132813,1.22843170166016,-0.000432968139648438,-0.000128746032714844,1.22842538356781,-0.000418663024902344,-0.000123977661132813,1.22842109203339,-0.000432491302490234,-0.000108718872070313,1.22841942310333,-0.000432491302490234,-8.86917114257813e-05,1.22842228412628,-0.000418186187744141,-0.000127792358398438,1.22842299938202,-0.000418186187744141,-0.000121116638183594,1.22842335700989,-0.000418663024902344,-0.000123023986816406,1.22841429710388,-0.000418186187744141,-0.000108718872070313,1.22841119766235,-0.000418663024902344,-8.7738037109375e-05,1.22841203212738,-0.000403404235839844,-0.000119209289550781,1.22841656208038,-0.000403404235839844,-0.000121116638183594,1.22841691970825,-0.000403881072998047,-0.000126838684082031,1.22840940952301,-0.00040435791015625,-0.0001068115234375,1.22840702533722,-0.000403881072998047,-8.67843627929688e-05,1.22841095924377,-0.00040435791015625,-0.000115394592285156,1.22841095924377, --0.000403404235839844,-0.000120162963867188,1.22841119766235,-0.000389575958251953,-0.000123977661132813,1.22840595245361,-0.00038909912109375,-0.000102996826171875,1.2284060716629,-0.000389575958251953,-8.48770141601563e-05,1.22840797901154,-0.000389575958251953,-0.000117301940917969,1.22840750217438,-0.00038909912109375,-0.0001220703125,1.22840201854706,-0.000374317169189453,-0.000112533569335938,1.22839939594269,-0.000375270843505859,-0.000102043151855469,1.22839868068695,-0.000375270843505859,-8.29696655273438e-05,1.22839951515198,-0.000360488891601563,-0.000121116638183594,1.22839951515198,-0.000374794006347656,-0.000110626220703125,1.22839903831482,-0.000374317169189453,-0.000115394592285156,1.22839903831482,-0.000360965728759766,-0.000100135803222656,1.22840011119843,-0.000360488891601563,-8.0108642578125e-05,1.22839117050171,-0.000346660614013672,-0.000113487243652344,1.22839725017548,-0.000360965728759766,-0.000115394592285156,1.22839558124542,-0.000360488891601563,-0.000121116638183594,1.22839248180389,-0.000332355499267578,-9.918212890625e-05,1.22839140892029,-0.000332355499267578,-8.0108642578125e-05,1.228391289711,-0.000332355499267578,-0.000110149383544922,1.22839069366455,-0.000332355499267578,-0.000113487243652344,1.22838878631592,-0.000318050384521484,-0.000121116638183594,1.22838592529297,-0.000317096710205078,-9.48905944824219e-05,1.22838544845581,-0.000317573547363281,-7.72476196289063e-05,1.22838568687439,-0.000317573547363281,-0.000113487243652344,1.22838497161865,-0.000318050384521484,-0.000119686126708984,1.22837901115417,-0.000303268432617188,-0.000112056732177734,1.22846632450819,-0.000447273254394531,-0.000110626220703125,1.22846682369709,-0.000461578369140625,-9.1552734375e-05,1.22837114334106,-0.000258922576904297,-6.19888305664063e-05,1.22837090492249,-0.000245094299316406,-6.58035278320313e-05,1.22837495803833,-0.000259876251220703,-6.58035278320313e-05,1.22837328910828,-0.000245094299316406,-6.58035278320313e-05,1.22843992710114,-0.000447750091552734,-8.20159912109375e-05,1.22843945026398, --0.000446796417236328,-8.29696655273438e-05,1.22842466831207,-0.000447750091552734,-8.10623168945313e-05,1.22842538356781,-0.000446796417236328,-8.29696655273438e-05,1.2284482717514,-0.000461578369140625,-8.10623168945313e-05,1.22844803333282,-0.000461578369140625,-8.48770141601563e-05,1.22841680049896,-0.000432491302490234,-7.91549682617188e-05,1.22841835021973,-0.000432968139648438,-8.29696655273438e-05,1.22840654850006,-0.000418186187744141,-7.72476196289063e-05,1.22840893268585,-0.000418663024902344,-8.20159912109375e-05,1.22840452194214,-0.000418186187744141,-7.91549682617188e-05,1.22840559482574,-0.000418663024902344,-8.10623168945313e-05,1.22840344905853,-0.00038909912109375,-7.43865966796875e-05,1.2284049987793,-0.00038909912109375,-7.82012939453125e-05,1.2283980846405,-0.000374317169189453,-7.53402709960938e-05,1.22839844226837,-0.000375270843505859,-8.0108642578125e-05,1.22839772701263,-0.000360965728759766,-7.2479248046875e-05,1.22839975357056,-0.000360488891601563,-7.53402709960938e-05,1.22838807106018,-0.000331878662109375,-7.15255737304688e-05,1.22838973999023,-0.000331878662109375,-7.43865966796875e-05,1.2283821105957,-0.000317096710205078,-6.81877136230469e-05,1.22838473320007,-0.000317096710205078,-7.15255737304688e-05,1.22837328910828,-0.0002593994140625,-6.43730163574219e-05,1.2283763885498,-0.000260353088378906,-6.53266906738281e-05,1.22846878319979,-0.000462055206298828,-8.10623168945313e-05,1.22846737504005,-0.000462055206298828,-8.0108642578125e-05,1.22846876829863,-0.000461101531982422,-8.20159912109375e-05,1.22846275568008,-0.000461578369140625,-8.10623168945313e-05,1.22845682501793,-0.000461578369140625,-8.10623168945313e-05,1.22845235466957,-0.000461101531982422,-8.0108642578125e-05,1.22845783829689,-0.000461101531982422,-8.10623168945313e-05,1.22844588756561,-0.000461101531982422,-8.0108642578125e-05,1.22844350337982,-0.000461101531982422,-7.82012939453125e-05,1.2284471988678,-0.000461578369140625,-7.82012939453125e-05,1.22844123840332,-0.000462055206298828,-7.82012939453125e-05,1.22844088077545, --0.000447750091552734,-8.10623168945313e-05,1.22844207286835,-0.000447273254394531,-7.91549682617188e-05,1.22843861579895,-0.000447750091552734,-8.0108642578125e-05,1.22843658924103,-0.000447273254394531,-8.20159912109375e-05,1.2284392118454,-0.000447750091552734,-8.0108642578125e-05,1.22843086719513,-0.000447750091552734,-7.72476196289063e-05,1.22842717170715,-0.000447273254394531,-8.0108642578125e-05,1.2284322977066,-0.000446796417236328,-7.91549682617188e-05,1.2284209728241,-0.000447750091552734,-7.72476196289063e-05,1.22842025756836,-0.000447750091552734,-7.82012939453125e-05,1.22842288017273,-0.000447273254394531,-7.72476196289063e-05,1.22841727733612,-0.000446796417236328,-7.82012939453125e-05,1.22841763496399,-0.000432968139648438,-7.91549682617188e-05,1.2284187078476,-0.000447750091552734,-7.91549682617188e-05,1.22841358184814,-0.000432491302490234,-7.91549682617188e-05,1.22841238975525,-0.000432968139648438,-7.72476196289063e-05,1.22841477394104,-0.000432491302490234,-7.72476196289063e-05,1.22840559482574,-0.000432491302490234,-7.53402709960938e-05,1.22840559482574,-0.000432968139648438,-7.72476196289063e-05,1.22840881347656,-0.000432491302490234,-7.62939453125e-05,1.22839987277985,-0.000432491302490234,-7.62939453125e-05,1.22840178012848,-0.000418663024902344,-7.62939453125e-05,1.22840285301208,-0.000418186187744141,-7.62939453125e-05,1.22839951515198,-0.000418663024902344,-7.72476196289063e-05,1.22840166091919,-0.000417232513427734,-7.91549682617188e-05,1.2284015417099,-0.000418186187744141,-7.72476196289063e-05,1.22839963436127,-0.000418663024902344,-7.82012939453125e-05,1.22840297222137,-0.000403881072998047,-7.72476196289063e-05,1.22840166091919,-0.000418186187744141,-7.82012939453125e-05,1.22839903831482,-0.000403881072998047,-7.72476196289063e-05,1.22840225696564,-0.000403404235839844,-7.62939453125e-05,1.22840309143066,-0.00040435791015625,-7.62939453125e-05,1.22839748859406,-0.00038909912109375,-7.53402709960938e-05,1.22839915752411,-0.000389575958251953,-7.34329223632813e-05,1.22840106487274,-0.00038909912109375, --7.62939453125e-05,1.22839593887329,-0.000389575958251953,-7.72476196289063e-05,1.22839641571045,-0.000389575958251953,-7.72476196289063e-05,1.22839796543121,-0.000389575958251953,-7.62939453125e-05,1.22839510440826,-0.00038909912109375,-7.62939453125e-05,1.2283970117569,-0.000375747680664063,-7.43865966796875e-05,1.22839665412903,-0.00038909912109375,-7.62939453125e-05,1.22839260101318,-0.000374317169189453,-7.43865966796875e-05,1.22839629650116,-0.000360965728759766,-7.43865966796875e-05,1.22839677333832,-0.000374317169189453,-7.34329223632813e-05,1.2283890247345,-0.000360965728759766,-7.2479248046875e-05,1.22839117050171,-0.000345706939697266,-7.15255737304688e-05,1.22839391231537,-0.000360965728759766,-7.15255737304688e-05,1.22838592529297,-0.000346660614013672,-7.2479248046875e-05,1.22838616371155,-0.000346660614013672,-7.2479248046875e-05,1.22838830947876,-0.000346660614013672,-7.2479248046875e-05,1.2283833026886,-0.000346660614013672,-7.05718994140625e-05,1.22838544845581,-0.000331878662109375,-7.00950622558594e-05,1.22838568687439,-0.000346660614013672,-7.15255737304688e-05,1.22837948799133,-0.000331401824951172,-6.96182250976563e-05,1.22838091850281,-0.000317573547363281,-6.96182250976563e-05,1.22838377952576,-0.000331878662109375,-6.866455078125e-05,1.22837424278259,-0.000317573547363281,-6.81877136230469e-05,1.22837615013123,-0.000302791595458984,-6.72340393066406e-05,1.2283787727356,-0.000318050384521484,-6.77108764648438e-05,1.22837042808533,-0.000303268432617188,-6.77108764648438e-05,1.22837233543396,-0.000302791595458984,-6.96182250976563e-05,1.22837376594543,-0.000303745269775391,-6.77108764648438e-05,1.22837162017822,-0.000288486480712891,-6.4849853515625e-05,1.22836661338806,-0.000288486480712891,-6.58035278320313e-05,1.22837066650391,-0.000274181365966797,-6.38961791992188e-05,1.22837066650391,-0.000288486480712891,-6.43730163574219e-05,1.22836494445801,-0.0002593994140625,-6.34193420410156e-05,1.22836899757385,-0.000259876251220703,-6.15119934082031e-05,1.22836995124817,-0.000259876251220703,-6.43730163574219e-05, -1.22836494445801,-0.0002593994140625,-6.103515625e-05,1.22836804389954,-0.000245094299316406,-6.05583190917969e-05,1.22836804389954,-0.000259876251220703,-6.103515625e-05,1.22846138477325,-0.000476360321044922,-8.10623168945313e-05,1.2284654378891,-0.000461578369140625,-7.91549682617188e-05,1.22846710681915,-0.000461101531982422,-8.10623168945313e-05,1.22846466302872,-0.000476360321044922,-8.20159912109375e-05,1.22846493124962,-0.000475883483886719,-8.10623168945313e-05,1.22844862937927,-0.000461578369140625,-7.91549682617188e-05,1.22845560312271,-0.000461578369140625,-8.10623168945313e-05,1.22844111919403,-0.000461101531982422,-8.0108642578125e-05,1.22844398021698,-0.000461101531982422,-8.0108642578125e-05,1.22844016551971,-0.000446796417236328,-7.91549682617188e-05,1.22844076156616,-0.000461578369140625,-8.0108642578125e-05,1.22843408584595,-0.000461578369140625,-7.91549682617188e-05,1.22843790054321,-0.000447750091552734,-8.20159912109375e-05,1.22842395305634,-0.000446796417236328,-7.82012939453125e-05,1.22842931747437,-0.000447750091552734,-8.0108642578125e-05,1.22841644287109,-0.000447750091552734,-7.91549682617188e-05,1.22841918468475,-0.000446796417236328,-7.82012939453125e-05,1.2284152507782,-0.000432491302490234,-7.82012939453125e-05,1.22841608524323,-0.000447750091552734,-7.91549682617188e-05,1.22840678691864,-0.000446796417236328,-7.72476196289063e-05,1.22841143608093,-0.000446796417236328,-8.0108642578125e-05,1.22839879989624,-0.000432968139648438,-7.72476196289063e-05,1.22840237617493,-0.000432491302490234,-7.72476196289063e-05,1.22839665412903,-0.000418186187744141,-7.72476196289063e-05,1.22839677333832,-0.000432491302490234,-7.62939453125e-05,1.22839868068695,-0.000418186187744141,-7.72476196289063e-05,1.22839760780334,-0.000418663024902344,-7.72476196289063e-05,1.22839570045471,-0.000417709350585938,-7.72476196289063e-05,1.22839736938477,-0.000418186187744141,-7.62939453125e-05,1.22839486598969,-0.00040435791015625,-7.43865966796875e-05,1.228395819664,-0.00040435791015625,-7.72476196289063e-05,1.22839367389679, --0.000389575958251953,-7.53402709960938e-05,1.22839426994324,-0.000403881072998047,-7.53402709960938e-05,1.22839391231537,-0.000389575958251953,-7.62939453125e-05,1.22839331626892,-0.000389575958251953,-7.62939453125e-05,1.22839117050171,-0.000374317169189453,-7.43865966796875e-05,1.22839272022247,-0.00038909912109375,-7.62939453125e-05,1.22838735580444,-0.000375270843505859,-7.2479248046875e-05,1.22838878631592,-0.000374794006347656,-7.34329223632813e-05,1.22838306427002,-0.000346183776855469,-7.15255737304688e-05,1.22838497161865,-0.000360965728759766,-7.2479248046875e-05,1.22838234901428,-0.000346183776855469,-7.2479248046875e-05,1.22838282585144,-0.000346660614013672,-7.2479248046875e-05,1.22837734222412,-0.000331878662109375,-6.96182250976563e-05,1.22838044166565,-0.000346660614013672,-7.15255737304688e-05,1.22837352752686,-0.000332355499267578,-7.00950622558594e-05,1.22837519645691,-0.000331878662109375,-7.00950622558594e-05,1.22836756706238,-0.000302314758300781,-6.72340393066406e-05,1.22837066650391,-0.000317573547363281,-6.81877136230469e-05,1.22836661338806,-0.000303268432617188,-6.91413879394531e-05,1.22836756706238,-0.000303268432617188,-6.866455078125e-05,1.22836184501648,-0.000288486480712891,-6.4849853515625e-05,1.22836136817932,-0.000273227691650391,-6.43730163574219e-05,1.2283616065979,-0.000288486480712891,-6.43730163574219e-05,1.22835946083069,-0.000259876251220703,-6.103515625e-05,1.22836017608643,-0.000259876251220703,-6.34193420410156e-05,1.22836351394653,-0.000245571136474609,-6.103515625e-05,1.2283616065979,-0.000259876251220703,-6.103515625e-05,1.2284642457962,-0.000446796417236328,-0.000132560729980469,1.22846478223801,-0.000447750091552734,-0.00012969970703125,1.2283775806427,-0.000230312347412109,-0.000117301940917969,1.22837972640991,-0.000274181365966797,-0.000123023986816406,1.22837829589844,-0.000273227691650391,-0.000121116638183594,1.22838354110718,-0.000288486480712891,-0.000125408172607422,1.22838020324707,-0.000302791595458984,-0.000121116638183594,1.22838759422302,-0.000318050384521484, --0.000128746032714844,1.22838830947876,-0.000331878662109375,-0.000125885009765625,1.22839391231537,-0.000346183776855469,-0.00012969970703125,1.22839260101318,-0.000346660614013672,-0.000124931335449219,1.22839987277985,-0.000360488891601563,-0.000132560729980469,1.22839999198914,-0.000361442565917969,-0.000128746032714844,1.22840619087219,-0.000374317169189453,-0.000133514404296875,1.22840464115143,-0.000375270843505859,-0.000125885009765625,1.22841084003448,-0.00038909912109375,-0.000134468078613281,1.2284107208252,-0.00038909912109375,-0.00012969970703125,1.22841620445251,-0.000403404235839844,-0.000135421752929688,1.22841429710388,-0.000403881072998047,-0.000130653381347656,1.22842144966125,-0.000418663024902344,-0.000136375427246094,1.2284220457077,-0.000418186187744141,-0.000132560729980469,1.22842991352081,-0.000418186187744141,-0.000138282775878906,1.22842741012573,-0.000417232513427734,-0.000133514404296875,1.22843718528748,-0.000432968139648438,-0.000138282775878906,1.22843754291534,-0.000432491302490234,-0.000133514404296875,1.22844839096069,-0.000432491302490234,-0.000138282775878906,1.22844660282135,-0.000432491302490234,-0.000134468078613281,1.22846259176731,-0.000446796417236328,-0.000135421752929688,1.22845906019211,-0.000447273254394531,-0.000139236450195313,1.2284594476223,-0.000447750091552734,-0.000136375427246094,1.22846454381943,-0.000447750091552734,-0.000124931335449219,1.22846426069736,-0.000446796417236328,-0.00012969970703125,1.22846521437168,-0.000447750091552734,-0.000123977661132813,1.22838592529297,-0.000245094299316406,-0.000126361846923828,1.22838616371155,-0.000259876251220703,-0.000128269195556641,1.22838234901428,-0.0002593994140625,-0.000125885009765625,1.22839069366455,-0.000331878662109375,-0.000134468078613281,1.22838878631592,-0.000302791595458984,-0.000133991241455078,1.22838807106018,-0.000317573547363281,-0.000131130218505859,1.22840225696564,-0.000361442565917969,-0.000136375427246094,1.22839832305908,-0.000360965728759766,-0.000135421752929688,1.22839975357056,-0.000361442565917969, --0.000134468078613281,1.22841250896454,-0.00038909912109375,-0.000138282775878906,1.22840976715088,-0.00038909912109375,-0.000136375427246094,1.22841000556946,-0.000389575958251953,-0.0001373291015625,1.22842490673065,-0.000418663024902344,-0.000141143798828125,1.22842109203339,-0.000403404235839844,-0.000139236450195313,1.22842168807983,-0.000418663024902344,-0.000138282775878906,1.22844099998474,-0.000432491302490234,-0.000139236450195313,1.22843623161316,-0.000432491302490234,-0.000139236450195313,1.22843730449677,-0.000432968139648438,-0.000141143798828125,1.22846178710461,-0.000446796417236328,-0.000142097473144531,1.22845563292503,-0.000432968139648438,-0.000139236450195313,1.22845757007599,-0.000432491302490234,-0.000141143798828125,1.22839248180389,-0.000245094299316406,-0.000130176544189453,1.22839176654816,-0.000274181365966797,-0.000131130218505859,1.22839117050171,-0.000288486480712891,-0.000133514404296875,1.22839391231537,-0.000346660614013672,-0.000136375427246094,1.2283923625946,-0.000332355499267578,-0.000135421752929688,1.22839665412903,-0.000346660614013672,-0.000135421752929688,1.22840631008148,-0.000374794006347656,-0.0001373291015625,1.22840452194214,-0.000375270843505859,-0.000138282775878906,1.22840821743011,-0.000374794006347656,-0.000139236450195313,1.22841656208038,-0.000403404235839844,-0.000139236450195313,1.22841465473175,-0.00038909912109375,-0.0001373291015625,1.22841906547546,-0.000403881072998047,-0.000140190124511719,1.2284300327301,-0.000418186187744141,-0.000141143798828125,1.22842741012573,-0.000417232513427734,-0.000139236450195313,1.22843337059021,-0.000418663024902344,-0.000139236450195313,1.22844898700714,-0.000432968139648438,-0.000140190124511719,1.22844505310059,-0.000432491302490234,-0.000140190124511719,1.22845754027367,-0.000432968139648438,-0.00014495849609375,1.22845250368118,-0.000432968139648438,-0.000140190124511719,1.2284642457962,-0.000432968139648438,-0.000144004821777344,1.22846205532551,-0.000432491302490234,-0.000144004821777344,1.228466399014,-0.000432968139648438, --0.000150680541992188,1.22846736013889,-0.000432491302490234,-0.000149726867675781,1.22846467792988,-0.000418663024902344,-0.000155448913574219,1.22846534848213,-0.000418663024902344,-0.000151634216308594,1.22846327722073,-0.000418186187744141,-0.000157356262207031,1.22846399247646,-0.000418663024902344,-0.000154495239257813,1.22846205532551,-0.000403881072998047,-0.00016021728515625,1.22846274077892,-0.000403404235839844,-0.000157356262207031,1.22846066951752,-0.00038909912109375,-0.000162124633789063,1.22846111655235,-0.000403881072998047,-0.000161170959472656,1.22845906019211,-0.000375747680664063,-0.000164031982421875,1.22846010327339,-0.00038909912109375,-0.000163078308105469,1.22845751047134,-0.000360965728759766,-0.000166893005371094,1.22845822572708,-0.000374317169189453,-0.000165939331054688,1.22845640778542,-0.000332355499267578,-0.000165939331054688,1.22845563292503,-0.000332355499267578,-0.000164031982421875,1.22846850007772,-0.000447273254394531,-0.000149726867675781,1.22846850007772,-0.000447750091552734,-0.000142097473144531,1.22846463322639,-0.000475883483886719,-8.48770141601563e-05,1.22847064211965,-0.000461101531982422,-8.20159912109375e-05,1.22846899926662,-0.000461578369140625,-7.91549682617188e-05,1.22846592217684,-0.000461578369140625,-8.20159912109375e-05,1.22846573591232,-0.000461101531982422,-8.10623168945313e-05,1.22846655547619,-0.000461578369140625,-8.48770141601563e-05,1.22846928238869,-0.000447273254394531,-0.000110626220703125,1.22846478223801,-0.000446796417236328,-0.000140190124511719,1.2284649014473,-0.000447750091552734,-0.000136375427246094,1.22846466302872,-0.000447750091552734,-0.000142097473144531,1.22847731411457,-0.000447273254394531,-0.000149726867675781,1.22847664356232,-0.000475883483886719,-8.48770141601563e-05,1.22847231477499,-0.000461578369140625,-7.91549682617188e-05,1.22847518324852,-0.000461578369140625,-8.20159912109375e-05,1.22847570478916,-0.000461101531982422,-8.10623168945313e-05,1.22847490012646,-0.000461578369140625,-8.48770141601563e-05,1.22847203165293,-0.000447273254394531, --0.000110626220703125,1.22847664356232,-0.000446796417236328,-0.000140190124511719,1.22847662866116,-0.000447750091552734,-0.000136375427246094,1.22847640514374,-0.000447750091552734,-0.000142097473144531,1.22858071327209,-0.000245094299316406,-6.53266906738281e-05,1.22857117652893,-0.000245094299316406,-6.4849853515625e-05,1.22857451438904,-0.000245094299316406,-6.103515625e-05,1.22857737541199,-0.000244617462158203,-6.24656677246094e-05,1.22836065292358,-0.000245094299316406,-6.53266906738281e-05,1.22836995124817,-0.000245094299316406,-6.4849853515625e-05,1.22836661338806,-0.000245094299316406,-6.103515625e-05,1.22836375236511,-0.000244617462158203,-6.24656677246094e-05,1.22857236862183,-0.000230312347412109,-6.15119934082031e-05,1.22856593132019,-0.000231266021728516,-0.000109672546386719,1.22854864597321,-0.000230789184570313,-0.000129222869873047,1.22839260101318,-0.000230312347412109,-0.00012969970703125,1.22837781906128,-0.000231266021728516,-0.000118255615234375,1.22836899757385,-0.000230312347412109,-6.15119934082031e-05,1.22837495803833,-0.000230312347412109,-0.000109195709228516,1.22837567329407,-0.000231266021728516,-0.000109672546386719,1.2285635471344,-0.000230312347412109,-0.000117301940917969,1.2285635471344,-0.000231266021728516,-0.000118255615234375,1.22850251197815,-0.000259876251220703,-0.000142574310302734,1.22847064211965,-0.000347137451171875,-0.0001678466796875,1.22848474979401,-0.000346183776855469,-0.000165939331054688,1.22845682501793,-0.000346183776855469,-0.000165939331054688,0,8.82148742675781e-06,0,0.0830608457545168,-3.4332275390625e-05,-4.76837158203125e-06,0.0703143030477804,-2.81333923339844e-05,0,0.757855892254156,-0.000270366668701172,-6.38961791992188e-05,0.660627305529488,-0.000274658203125,-4.29153442382813e-05,0.0760002583483583,-4.14848327636719e-05,-4.76837158203125e-06,0.730143427834264,-0.000274658203125,-5.53131103515625e-05,0.0804990381147945,-2.288818359375e-05,-5.7220458984375e-06,0.741256594679726,-0.000268936157226563,-4.86373901367188e-05,0.0503747090697289,-2.288818359375e-05, -0,0.830882787680821,-0.000258922576904297,-7.82012939453125e-05,0.0672357082330564,-4.14848327636719e-05,0,0.763880133526982,-0.000267505645751953,-6.96182250976563e-05,0.0234380979090929,-7.15255737304688e-06,0,0.881245017051697,-0.000260353088378906,-9.72747802734375e-05,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,2.32458114624023e-06,0,0,4.64916229248047e-06,0,1.33459436893463,-0.00038909912109375,-0.000383377075195313,1.34670233726501,-0.0005035400390625,-0.000340461730957031,1.3470778465271,-0.000487327575683594,-0.000371932983398438,0.893698930740356,-0.000263214111328125,-0.000116348266601563,0,6.91413879394531e-06,0,0,9.05990600585938e-06,0,0.0116154262796044,9.05990600585938e-06,0,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.17911529541016e-06,0,0,-4.64916229248047e-06,0,0,-2.32458114624023e-06,0,0,6.79492950439453e-06,0,0,4.58955764770508e-06,0,1.05825936794281,-0.000519752502441406,-0.000269889831542969,1.28174698352814,-0.000525474548339844,-0.000304222106933594,0,9.05990600585938e-06,0,0,6.79492950439453e-06,0,0,6.88433647155762e-06,0,0,9.29832458496094e-06,0,0,9.05990600585938e-06,0,1.02680432796478,-0.000166893005371094,-0.000330448150634766,1.30457663536072,-0.000304222106933594,-0.000363349914550781,0.999523639678955,-9.44137573242188e-05,-0.000414609909057617,0.896050035953521,-7.05718994140625e-05,-0.000446677207946777,0.0259927213191977,1.1444091796875e-05,-1.59740447998047e-05,0.949190318584442,-0.000132560729980469,-0.000354528427124023,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.88433647155762e-06, -0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0.102785736322403,-5.10215759277344e-05,-7.62939453125e-06,0.0768131911754608,-3.67164611816406e-05,0,0.491778135299683,-0.000203609466552734,0.0274524688720703,0.482111930847168,-0.000213146209716797,0.0524778366088867,0.483032941818237,-0.00018310546875,-3.4332275390625e-05,0.45543360710144,-0.000178813934326172,-3.4332275390625e-05,0.346761345863342,-0.000144481658935547,-1.71661376953125e-05,0.365082621574402,-0.0001373291015625,-2.38418579101563e-05,0.235384941101074,-0.000102996826171875,-9.5367431640625e-06,0.258294105529785,-9.87052917480469e-05,-1.71661376953125e-05,0.152963757514954,-5.48362731933594e-05,-5.7220458984375e-06,0.186163187026978,-7.58171081542969e-05,-1.1444091796875e-05,0.099475085735321,-5.29289245605469e-05,-4.76837158203125e-06,0.135049223899841,-5.29289245605469e-05,-8.58306884765625e-06,0.421441316604614,-0.00016021728515625,-3.0517578125e-05,0.42161750793457,-0.000169277191162109,-2.38418579101563e-05,0.424224615097046,-0.0156350135803223,0.0274534225463867,0.56117057800293,-0.0002288818359375,-4.57763671875e-05,0.344980001449585,-0.000120162963867188,-2.47955322265625e-05,0.351723670959473,-0.000127315521240234,-2.47955322265625e-05,0.400705337524414,-0.000146865844726563,-3.0517578125e-05,0.40894079208374,-0.000147342681884766,-2.95639038085938e-05,0.45334267616272,-0.00016021728515625,-3.52859497070313e-05,0.431637525558472,-0.000150203704833984,-3.14712524414063e-05,0.522329807281494,-0.000186920166015625,-3.71932983398438e-05,0.541519165039063,-0.000194549560546875,-4.38690185546875e-05,0.55851674079895,-0.000210285186767578,-3.814697265625e-05,0.560335636138916,-0.000208377838134766,-4.9591064453125e-05,0.58084237575531,-0.000225543975830078,-5.340576171875e-05,0.58714234828949,-0.000226974487304688,-4.10079956054688e-05,0.671184420585632,-0.000238895416259766,-5.7220458984375e-05,0.626863777637482,-0.000244140625,-4.29153442382813e-05,0.692663729190826, --0.000253200531005859,-5.91278076171875e-05,0.648530185222626,-0.000261306762695313,-4.1961669921875e-05,0.748779058456421,-0.000259876251220703,-6.103515625e-05,0.658923029899597,-0.000277042388916016,-4.10079956054688e-05,0.755280137062073,-0.000263214111328125,-6.19888305664063e-05,0.662555932998657,-0.000276088714599609,-4.29153442382813e-05,0.0891851484775543,-4.33921813964844e-05,-4.76837158203125e-06,0.117345690727234,-5.48362731933594e-05,-5.7220458984375e-06,0.171438574790955,-6.62803649902344e-05,-8.58306884765625e-06,0.250651717185974,-9.1552734375e-05,-1.23977661132813e-05,0.369745492935181,-0.000148773193359375,-2.288818359375e-05,0.45048987865448,-0.00018310546875,-2.95639038085938e-05,0.48127007484436,-0.000190258026123047,-3.52859497070313e-05,0.484103202819824,-0.000208377838134766,0.0524759292602539,0.412964344024658,-0.0146751403808594,0.0274524688720703,0.349689245223999,-0.000118732452392578,-2.57492065429688e-05,0.404040098190308,-0.000139713287353516,-3.0517578125e-05,0.443905353546143,-0.000156879425048828,-3.33786010742188e-05,0.526261568069458,-0.000196933746337891,-4.10079956054688e-05,0.55199134349823,-0.000207424163818359,-4.38690185546875e-05,0.592066049575806,-0.000227451324462891,-4.67300415039063e-05,0.650171101093292,-0.00025177001953125,-5.05447387695313e-05,0.671900689601898,-0.000265598297119141,-5.14984130859375e-05,0.685556173324585,-0.000270366668701172,-5.24520874023438e-05,0.690571784973145,-0.000277042388916016,-5.43594360351563e-05,0.0982866287231445,-4.81605529785156e-05,-5.7220458984375e-06,0.128800928592682,-5.48362731933594e-05,-8.58306884765625e-06,0.180914998054504,-7.77244567871094e-05,-1.1444091796875e-05,0.256503582000732,-9.87052917480469e-05,-1.52587890625e-05,0.368706345558167,-0.000154018402099609,-2.47955322265625e-05,0.434292078018188,-0.000165462493896484,-3.0517578125e-05,0.466396570205688,-0.000194549560546875,-3.4332275390625e-05,0.490866899490356,-0.000211238861083984,0.0524740219116211,0.440650463104248,-0.0188703536987305,0.0274486541748047,0.35479474067688, --0.000130176544189453,-2.57492065429688e-05,0.408038139343262,-0.000144481658935547,-3.0517578125e-05,0.428120374679565,-0.000152587890625,-3.14712524414063e-05,0.521356105804443,-0.000193119049072266,-3.814697265625e-05,0.554143190383911,-0.000204086303710938,-4.10079956054688e-05,0.581949949264526,-0.000225543975830078,-4.29153442382813e-05,0.619668543338776,-0.000242710113525391,-4.38690185546875e-05,0.644409537315369,-0.000270366668701172,-4.57763671875e-05,0.663944959640503,-0.000270366668701172,-4.67300415039063e-05,0.667629837989807,-0.000274658203125,-4.76837158203125e-05,0.0561977922916412,-1.85966491699219e-05,0,0.0762875080108643,-2.81333923339844e-05,0,0.112181782722473,-3.95774841308594e-05,0,0.161702036857605,-7.58171081542969e-05,-2.86102294921875e-06,0.218079805374146,-7.77244567871094e-05,-4.76837158203125e-06,0.275912761688232,-0.000100612640380859,-5.7220458984375e-06,0.356832504272461,-0.000133037567138672,-1.23977661132813e-05,0.45018458366394,-0.000148773193359375,-2.09808349609375e-05,0.470242261886597,-0.000190258026123047,-3.4332275390625e-05,0.385592937469482,-0.000116825103759766,-2.57492065429688e-05,0.395714282989502,-0.000133037567138672,-3.33786010742188e-05,0.464385509490967,-0.000158309936523438,-4.38690185546875e-05,0.537501811981201,-0.000188827514648438,-5.7220458984375e-05,0.536719799041748,-0.000187397003173828,-6.19888305664063e-05,0.770329833030701,-0.000261783599853516,-7.72476196289063e-05,0.730189502239227,-0.000253200531005859,-7.62939453125e-05,0.694950342178345,-0.000244140625,-7.43865966796875e-05,0.604317188262939,-0.000227451324462891,-7.15255737304688e-05,0.575654983520508,-0.000213146209716797,-6.96182250976563e-05,0.0744514614343643,-3.67164611816406e-05,0,0.0984735488891602,-4.33921813964844e-05,0,0.144206404685974,-5.48362731933594e-05,-4.76837158203125e-06,0.210955381393433,-7.77244567871094e-05,-6.67572021484375e-06,0.359201788902283,-0.000133037567138672,-1.71661376953125e-05,0.451842784881592,-0.000185489654541016,-2.288818359375e-05,0.500880002975464,-0.000196933746337891, --3.14712524414063e-05,0.499831199645996,-0.000226497650146484,0.0524768829345703,0.431340217590332,-0.000391483306884766,0.0274534225463867,0.336514472961426,-0.000121593475341797,-2.38418579101563e-05,0.39201807975769,-0.000133037567138672,-3.14712524414063e-05,0.477706670761108,-0.000167369842529297,-4.00543212890625e-05,0.55807089805603,-0.000204563140869141,-4.9591064453125e-05,0.564189791679382,-0.000207424163818359,-5.43594360351563e-05,0.576846122741699,-0.000218868255615234,-5.81741333007813e-05,0.662659049034119,-0.000230312347412109,-6.29425048828125e-05,0.745554327964783,-0.000249862670898438,-6.58035278320313e-05,0.761156320571899,-0.000261783599853516,-6.67572021484375e-05,0.7668616771698,-0.000267505645751953,-6.866455078125e-05,0.0261162221431732,-5.24520874023438e-06,0,0.0414824485778809,-9.05990600585938e-06,0,0.0675036907196045,-3.95774841308594e-05,0,0.099582314491272,-4.14848327636719e-05,0,0.127595543861389,-5.10215759277344e-05,0,0.146854877471924,-3.95774841308594e-05,0,0.254952669143677,-8.53538513183594e-05,0,0.379336595535278,-0.000123500823974609,-1.04904174804688e-05,0.684795379638672,-0.00017547607421875,-6.58035278320313e-05,0.643939018249512,-0.000155925750732422,-5.340576171875e-05,0.568763732910156,-0.000135421752929688,-3.71932983398438e-05,0.55784273147583,-0.000108718872070313,-2.57492065429688e-05,0.445690870285034,-0.000167369842529297,-2.57492065429688e-05,0.800117492675781,-0.000262260437011719,-9.63211059570313e-05,0.791603446006775,-0.000253677368164063,-9.44137573242188e-05,0.77684497833252,-0.000237464904785156,-9.25064086914063e-05,0.755624175071716,-0.000222206115722656,-8.86917114257813e-05,0.728229999542236,-0.000207901000976563,-8.392333984375e-05,0.695577621459961,-0.000188827514648438,-7.2479248046875e-05,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06, -0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-8.82148742675781e-06,0,1.30375850200653,-0.000359535217285156,-0.000359058380126953,1.33131122589111,-0.000479698181152344,-0.000323295593261719,1.25121927261353,-0.000311851501464844,-0.000330448150634766,1.30131840705872,-0.000428199768066406,-0.000287055969238281,1.16104674339294,-0.000245094299316406,-0.000276088714599609,1.24565887451172,-0.000338554382324219,-0.000240802764892578,1.01190710067749,-0.000151634216308594,-0.000200271606445313,1.14684581756592,-0.000262260437011719,-0.000174522399902344,0.77003812789917,-6.866455078125e-05,-0.000120401382446289,0.977339267730713,-0.000165462493896484,-0.000110626220703125,0.173465728759766,0,-1.29938125610352e-05,0.570259094238281,-3.95774841308594e-05,-2.26497650146484e-05,0.444470882415771,-3.4332275390625e-05,-4.64916229248047e-06,1.09560298919678,-0.000189781188964844,-0.000240325927734375,1.20303726196289,-0.000313758850097656,-0.000205039978027344,0.410212993621826,-7.15255737304688e-06,-4.66108322143555e-05,0.715891361236572,-7.77244567871094e-05,-4.91142272949219e-05,1.33021640777588,-0.000439643859863281,-0.000353813171386719,1.29689526557922,-0.000372886657714844,-0.000320911407470703,1.23435950279236,-0.000313758850097656,-0.000275611877441406,1.18571376800537,-0.000263214111328125,-0.000240325927734375,1.11981058120728, --0.000205039978027344,-0.000203132629394531,0.915144920349121,-0.000105857849121094,-0.000129938125610352,0.603090286254883,-5.10215759277344e-05,-5.79357147216797e-05,0.426719188690186,-2.52723693847656e-05,-2.62260437011719e-05,0.288735866546631,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,0.0756633281707764,-2.55107879638672e-05,0,0.157494306564331,-5.10215759277344e-05,2.86102294921875e-06,0.306370496749878,-0.000102996826171875,0,0.443500995635986,-0.000178813934326172,-2.19345092773438e-05,0.569231510162354,-0.000118255615234375,-2.86102294921875e-05,0.69504714012146,-0.000150203704833984,-4.48226928710938e-05,0.743502616882324,-0.000164508819580078,-6.103515625e-05,0.781400203704834,-0.000171661376953125,-7.53402709960938e-05,0.812712907791138,-0.00020599365234375,-8.67843627929688e-05,0.838680744171143,-0.000213623046875,-9.918212890625e-05,0.859451770782471,-0.000233650207519531,-0.000105857849121094,0.875101208686829,-0.00025177001953125,-0.000110626220703125,0.885751008987427,-0.000253677368164063,-0.000112533569335938,0.891781449317932,-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,0.0213689804077148,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06, -0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.0121298730373383,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0.0103045701980591,1.1444091796875e-05,0,0.0426156520843506,-1.1444091796875e-05,0,0.0424262285232544,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06,0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0.125698328018188,-3.69548797607422e-05,5.7220458984375e-06,0.0750446319580078,-3.88622283935547e-05,4.76837158203125e-06,0.194816112518311,-6.866455078125e-05,7.62939453125e-06,0.3502197265625,-0.000116825103759766,0,0.219695568084717,-7.31945037841797e-05,1.04904174804688e-05,0.099637508392334,-2.07424163818359e-05,8.58306884765625e-06,0.209419727325439,-7.31945037841797e-05,1.09672546386719e-05,0.0960636138916016,-4.12464141845703e-05,8.10623168945313e-06,0.167927265167236,-2.98023223876953e-05,1.23977661132813e-05,0.0673513412475586,-1.60932540893555e-05,5.7220458984375e-06,0.0955123901367188,-1.1444091796875e-05, -1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,0.360369682312012,-0.000105381011962891,3.814697265625e-06,0.287108898162842,-5.98430633544922e-05,1.23977661132813e-05,0.339129447937012,-7.31945037841797e-05,7.15255737304688e-06,0.20779275894165,-3.88622283935547e-05,1.47819519042969e-05,0.531244277954102,-0.000171661376953125,-1.71661376953125e-05,0.415458202362061,-8.24928283691406e-05,6.19888305664063e-06,0.479450702667236,-0.000119686126708984,-4.29153442382813e-06,0.517007350921631,-0.000139713287353516,-1.38282775878906e-05,0.622618675231934,-0.000119686126708984,-2.00271606445313e-05,0.544069766998291,-9.67979431152344e-05,-2.86102294921875e-06,0.679069519042969,-0.000174045562744141,-3.4332275390625e-05,0.720271110534668,-0.000196933746337891,-4.62532043457031e-05,0.689748764038086,-0.000263214111328125,-8.7738037109375e-05,0.892221927642822,-0.000231266021728516,-7.43865966796875e-05,0.830560684204102,-0.000190258026123047,-5.62667846679688e-05,0.753755569458008,-0.000142574310302734,-3.76701354980469e-05,0.771912574768066,-0.000302791595458984,-0.000115394592285156,1.08034944534302,-0.000296592712402344,-0.000161170959472656,1.01996612548828,-0.000263214111328125,-0.000134468078613281,0.843175411224365,-0.000330924987792969,-0.000151634216308594,1.13101506233215,-0.000365257263183594,-0.000195026397705078,1.21189785003662,-0.000274658203125,-0.00030517578125,1.2703857421875,-0.000334739685058594,-0.000300884246826172,1.27754426002502,-0.000372886657714844,-0.000267982482910156,0.901171684265137,-0.0003662109375,-0.00018310546875,1.17170143127441,-0.00038909912109375,-0.000225067138671875,0.948055267333984,-0.000426292419433594,-0.000208854675292969,1.20341920852661,-0.000414848327636719,-0.000247001647949219,1.28122329711914,-0.00034332275390625,-0.000346660614013672,1.31634414196014,-0.000418663024902344,-0.000339508056640625,1.31878316402435,-0.000452995300292969,-0.000306129455566406,1.22776365280151,-0.000456809997558594,-0.000268936157226563,0.985237121582031, --0.000439643859863281,-0.000229835510253906,1.01392495632172,-0.000475883483886719,-0.000246047973632813,1.22099769115448,-0.000491142272949219,-0.000284194946289063,1.31958293914795,-0.000388145446777344,-0.000369071960449219,1.33946204185486,-0.000473976135253906,-0.000361442565917969,1.33963811397552,-0.000487327575683594,-0.000330924987792969,1.32914090156555,-0.000407218933105469,-0.000376701354980469,1.34461450576782,-0.000460624694824219,-0.0003662109375,1.34433913230896,-0.000517845153808594,-0.000337600708007813,1.04853415489197,-0.000537872314453125,-0.000264167785644531,1.0348037481308,-0.000517845153808594,-0.000256538391113281,1.26894295215607,-0.000517845153808594,-0.000294685363769531,1.2767790555954,-0.000540733337402344,-0.000300407409667969,1.33350530266762,-0.000393867492675781,-0.000380516052246094,1.34665313363075,-0.000457763671875,-0.000369071960449219,1.34629634022713,-0.000506401062011719,-0.000338554382324219,1.05598545074463,-0.000537872314453125,-0.000267982482910156,1.28065371513367,-0.000531196594238281,-0.000304222106933594,1.02063226699829,-0.000222682952880859,-0.000109195709228516,0.942208766937256,-0.000194549560546875,-8.48770141601563e-05,0.904837131500244,-9.1552734375e-05,-0.000161409378051758,1.03130483627319,-0.000159263610839844,-0.000165939331054688,1.07346677780151,-0.000211238861083984,-0.000142574310302734,0.844156265258789,-0.000146389007568359,-6.05583190917969e-05,0.60545539855957,-3.33786010742188e-05,-8.16583633422852e-05,0.770670413970947,-8.24928283691406e-05,-9.27448272705078e-05,0.856390476226807,-0.000100612640380859,-7.93933868408203e-05,0.727402210235596,-8.72611999511719e-05,-3.48091125488281e-05,0.657641410827637,-0.000116825103759766,-1.62124633789063e-05,0.601768970489502,-7.39097595214844e-05,-1.07288360595703e-05,0.547848701477051,-7.10487365722656e-05,2.14576721191406e-06,0.446821689605713,-5.98430633544922e-05,1.1444091796875e-05,0.327988147735596,-4.57763671875e-05,1.57356262207031e-05,0.483216285705566,-5.96046447753906e-05,3.09944152832031e-06,0.436394691467285, --3.88622283935547e-05,1.21593475341797e-05,0.341680526733398,-3.21865081787109e-05,1.93119049072266e-05,0.226046085357666,-2.288818359375e-05,1.74045562744141e-05,0.109471321105957,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.91413879394531e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06,0,0,-2.29477882385254e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58210706710815e-06,0,0,2.29477882385254e-06,0,0,-6.86943531036377e-06,0,0,-4.57838177680969e-06,0,0,9.16421413421631e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06,0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0, -0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06,0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,0.0107431411743164,-9.17911529541016e-06,0,0.00806045532226563,6.79492950439453e-06,0,0.0271463394165039,-1.1444091796875e-05,2.38418579101563e-06,0.0213623046875,-9.29832458496094e-06,0,0.0521087646484375,-2.62260437011719e-06,3.27825546264648e-06,0.0436134338378906,2.14576721191406e-06,2.02655792236328e-06,0.0859479904174805,6.91413879394531e-06,4.72180545330048e-06,0.0752296447753906,8.82148742675781e-06,1.9073486328125e-06,0.126181125640869,2.14576721191406e-06,6.19888305664063e-06,0.111748695373535,-5.24520874023438e-06,1.65402889251709e-06,0.169600009918213,2.14576721191406e-06,8.40425491333008e-06,0.141875267028809,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06, -0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,0.0114669799804688,-4.64916229248047e-06,0,0.0287084579467773,0,2.14576721191406e-06,0.0551691055297852,4.52995300292969e-06,2.74181365966797e-06,0.0906467437744141,-6.91413879394531e-06,3.15159559249878e-06,0.131220817565918,4.52995300292969e-06,4.64916229248047e-06,0.169955253601074,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,0.00185728073120117,-4.64916229248047e-06,0,0.00609827041625977,6.91413879394531e-06,0,0.0152416229248047,-9.29832458496094e-06,0,0.0314812660217285,0,0,0.0579161643981934,2.14576721191406e-06,0,0.111053466796875,9.05990600585938e-06,1.78813934326172e-06,0.235386371612549,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06,0,0.00349617004394531,1.1444091796875e-05,0,0.0106906890869141,2.14576721191406e-06,0,0.0252981185913086,-1.1444091796875e-05,0,0.0505228042602539,2.14576721191406e-06,1.78813934326172e-06,0.0891180038452148,-4.52995300292969e-06,1.98930501937866e-06,0.145628929138184,1.1444091796875e-05,2.20537185668945e-06,0.21415901184082,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06, -0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,0.0102958679199219,-4.64916229248047e-06,0,0.0262269973754883,2.14576721191406e-06,1.78813934326172e-06,0.0513553619384766,-9.29832458496094e-06,2.50339508056641e-06,0.0855073928833008,0,2.29477882385254e-06,0.124117851257324,-4.52995300292969e-06,2.47359275817871e-06,0.159722328186035,8.82148742675781e-06,3.39746475219727e-06,0.222784042358398,-6.91413879394531e-06,5.48362731933594e-06,0.228226661682129,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,0.00562191009521484,2.26497650146484e-06,0,0.0158681869506836,8.82148742675781e-06,0,0.0346908569335938,-9.29832458496094e-06,1.66893005371094e-06,0.0640678405761719,6.91413879394531e-06,1.84774398803711e-06,0.10295295715332,-1.1444091796875e-05,1.83470547199249e-06,0.146941661834717,9.05990600585938e-06,1.78813934326172e-06,0.187146186828613,4.52995300292969e-06,4.35113906860352e-06,0.197600841522217,-1.1444091796875e-05,6.67572021484375e-06,0.142857551574707,4.52995300292969e-06,1.00135803222656e-05,0.101873874664307,-9.29832458496094e-06,7.09295272827148e-06,0.067927360534668,-9.29832458496094e-06,4.88758087158203e-06,0.040745735168457,4.52995300292969e-06,3.33786010742188e-06,0.0208044052124023,6.79492950439453e-06,1.96695327758789e-06,0.00742053985595703,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,0.0104684829711914,2.26497650146484e-06,0,0.0221433639526367,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06, -0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,0.0374631881713867,0,3.42726707458496e-06,0.0567011833190918,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,0.0322318077087402,2.26497650146484e-06,3.814697265625e-06,0.0803427696228027,-2.62260437011719e-06,6.9737434387207e-06,0.0639152526855469,2.26497650146484e-06,6.79492950439453e-06,0.0654335021972656,2.26497650146484e-06,6.79492950439453e-06,0.0840225219726563,0,7.98702239990234e-06,0.0774340629577637,-2.26497650146484e-06,7.74860382080078e-06,0.0447211265563965,-7.03334808349609e-06,5.36441802978516e-06,0.0436091423034668,9.17911529541016e-06,5.12599945068359e-06,0.102429389953613,2.14576721191406e-06,9.29832458496094e-06,0.0784506797790527,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,0.148072242736816,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,0.332592964172363,-2.74181365966797e-05,1.50203704833984e-05,0.238994121551514,-2.288818359375e-05,1.69277191162109e-05,0.117329597473145,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,4.64916229248047e-06,0,0.229795932769775,2.38418579101563e-06,0,0.358342170715332,-1.66893005371094e-05,4.52995300292969e-06,0.383089542388916,-9.29832458496094e-06,1.06096267700195e-05,0.300035953521729,-2.55107879638672e-05,1.01327896118164e-05,0.310536861419678,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,0.00850725173950195,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,0.00578451156616211,-9.29832458496094e-06,0,0.00125932693481445,-4.52995300292969e-06,0,0.00250673294067383,-4.52995300292969e-06,0,0.000705718994140625,-2.62260437011719e-06,0,0.000753402709960938,2.26497650146484e-06,0,0.000226497650146484,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06, -0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0.000125408172607422,8.82148742675781e-06,0,5.43594360351563e-05,4.41074371337891e-06,0,6.19888305664063e-06,6.91413879394531e-06,0,4.29153442382813e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,2.43186950683594e-05,8.82148742675781e-06,0,1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06,0,0,6.88433647155762e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0.197163581848145,8.58306884765625e-06,-4.21702861785889e-05,0.372637271881104,-1.81198120117188e-05,-8.70823860168457e-05,0.52381443977356,-2.95639038085938e-05,-0.000131726264953613,0.653875827789307,-6.00814819335938e-05,-0.000175952911376953,0.767556667327881,-5.24520874023438e-05,-0.000217676162719727,0.715638160705566,-7.15255737304688e-05,-0.000213384628295898,0.788506388664246,-0.000102996826171875,-0.000243186950683594,0.852230608463287,-0.000119209289550781,-0.000268220901489258, -0.906218290328979,-0.000125885009765625,-0.000288486480712891,0.950169861316681,-0.000151634216308594,-0.000303745269775391,0.985588252544403,-0.000148773193359375,-0.000314712524414063,1.01019749045372,-0.00016021728515625,-0.000323295593261719,1.02306029200554,-0.000151634216308594,-0.00032806396484375,0.208703517913818,8.58306884765625e-06,-3.090500831604e-05,0.405456066131592,-2.19345092773438e-05,-6.79492950439453e-05,0.578542470932007,-4.10079956054688e-05,-0.000106453895568848,0.725355863571167,-6.77108764648438e-05,-0.000148773193359375,0.847596168518066,-0.000107765197753906,-0.000191926956176758,0.949557065963745,-0.000136375427246094,-0.000230789184570313,1.03465247154236,-0.000155448913574219,-0.00026702880859375,1.1053215265274,-0.000201225280761719,-0.000295162200927734,1.16311705112457,-0.000222206115722656,-0.000317096710205078,1.21003556251526,-0.000256538391113281,-0.000332355499267578,1.24733281135559,-0.000273704528808594,-0.000343799591064453,1.27520394325256,-0.000277519226074219,-0.000354766845703125,1.29313948750496,-0.000313758850097656,-0.000360488891601563,1.30209344625473,-0.00029754638671875,-0.000363349914550781,0.0611886978149414,0,-2.02804803848267e-05,0.149044990539551,4.76837158203125e-06,-5.26309013366699e-05,0.259457111358643,6.67572021484375e-06,-9.59634780883789e-05,0.360846519470215,-1.1444091796875e-05,-0.000137686729431152,0.462302327156067,-1.04904174804688e-05,-0.00018155574798584,0.572170734405518,-4.10079956054688e-05,-0.000229954719543457,0.681912302970886,-4.10079956054688e-05,-0.000277280807495117,0.750664830207825,-6.38961791992188e-05,-0.000306844711303711,0.824874997138977,-7.53402709960938e-05,-0.000339031219482422,0.894773006439209,-9.1552734375e-05,-0.000368833541870117,0.97424852848053,-9.82284545898438e-05,-0.000402450561523438,1.0124564319849,-0.000105857849121094,-0.00041961669921875,0.302828311920166,4.76837158203125e-06,-0.000131845474243164,0.378895282745361,-5.7220458984375e-06,-0.000170886516571045,0.444914102554321,-1.1444091796875e-05,-0.000207424163818359, -0.550791382789612,-1.33514404296875e-05,-0.000261425971984863,0.683815240859985,-3.62396240234375e-05,-0.000330090522766113,0.677270531654358,-4.38690185546875e-05,-0.000331878662109375,0.728476703166962,-4.00543212890625e-05,-0.000360369682312012,0.785586297512054,-5.53131103515625e-05,-0.000390529632568359,0.843563437461853,-3.62396240234375e-05,-0.000419855117797852,0.889088280498981,-4.38690185546875e-05,-0.000443339347839355,0.0323586910963058,0,-1.96695327758789e-05,0.174976348876953,8.58306884765625e-06,-4.89950180053711e-05,0.325138092041016,-6.67572021484375e-06,-9.72747802734375e-05,0.454932928085327,-2.76565551757813e-05,-0.000144124031066895,0.571283102035522,-2.95639038085938e-05,-0.000189423561096191,0.678191542625427,-3.91006469726563e-05,-0.000232934951782227,0.777182102203369,-7.34329223632813e-05,-0.000274896621704102,0.707085728645325,-9.05990600585938e-05,-0.000255346298217773,0.774913609027863,-8.67843627929688e-05,-0.000284671783447266,0.836520195007324,-0.000113487243652344,-0.000311136245727539,0.887921333312988,-0.00011444091796875,-0.000332117080688477,0.923958659172058,-0.000140190124511719,-0.000345945358276367,0.943437516689301,-0.000128746032714844,-0.000352382659912109,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.0934806391505845,-3.67164611816406e-05,0,0.582627952095208,-0.00022125244140625,-6.38961791992188e-05,0.101718530058861,-4.14848327636719e-05,0,0.376977920532227,-0.000139713287353516,-1.23977661132813e-05,0.414340496063232,-0.0001373291015625,-1.81198120117188e-05,0.266873717308044,-8.72611999511719e-05,-5.7220458984375e-06,0.325498580932617,-0.000121593475341797,-8.58306884765625e-06,0.209143280982971,-7.39097595214844e-05,-2.86102294921875e-06,0.16087281703949,-7.58171081542969e-05,0,0.124556422233582,-4.33921813964844e-05,0,0.441892862319946,-0.000144481658935547,-2.38418579101563e-05,0.330294370651245,-0.000104427337646484,-2.38418579101563e-05, -0.333240509033203,-0.000115871429443359,-2.76565551757813e-05,0.291433811187744,-9.87052917480469e-05,-2.86102294921875e-05,0.347733974456787,-0.000124454498291016,-3.91006469726563e-05,0.389325141906738,-0.0001373291015625,-4.67300415039063e-05,0.432406544685364,-0.000164031982421875,-5.14984130859375e-05,0.482679605484009,-0.000188827514648438,-5.81741333007813e-05,0.524906635284424,-0.000194549560546875,-6.00814819335938e-05,0.556575894355774,-0.000218868255615234,-6.103515625e-05,0.576038241386414,-0.000221729278564453,-6.38961791992188e-05,0.0881219804505236,-2.52723693847656e-05,-6.67572021484375e-06,0.111991465091705,-5.7220458984375e-05,-6.67572021484375e-06,0.14850452542305,-7.39097595214844e-05,-8.58306884765625e-06,0.186945855617523,-8.72611999511719e-05,-1.1444091796875e-05,0.277098655700684,-0.000102996826171875,-1.81198120117188e-05,0.380880951881409,-0.000154018402099609,-2.76565551757813e-05,0.438390016555786,-0.000151157379150391,-2.95639038085938e-05,0.541717529296875,-0.000190258026123047,-3.814697265625e-05,0.576250314712524,-0.000217437744140625,-4.00543212890625e-05,0.659483194351196,-0.000234127044677734,-4.57763671875e-05,0.343156099319458,-0.000121593475341797,-2.47955322265625e-05,0.375573396682739,-0.000124454498291016,-2.6702880859375e-05,0.41280198097229,-0.000143051147460938,-3.0517578125e-05,0.519097566604614,-0.000185489654541016,-3.62396240234375e-05,0.552040576934814,-0.000200271606445313,-3.71932983398438e-05,0.584945440292358,-0.000218868255615234,-4.10079956054688e-05,0.633975386619568,-0.000249862670898438,-4.29153442382813e-05,0.645068764686584,-0.00025177001953125,-4.1961669921875e-05,0.660172760486603,-0.000265598297119141,-4.29153442382813e-05,0.663708925247192,-0.000267505645751953,-4.29153442382813e-05,0.659564793131722,-0.000261306762695313,-4.29153442382813e-05,0.102166682503594,-4.33921813964844e-05,-6.67572021484375e-06,0.114605695009232,-4.57763671875e-05,-6.67572021484375e-06,0.144515007734299,-5.7220458984375e-05,-8.58306884765625e-06,0.191801190376282,-8.53538513183594e-05, --1.1444091796875e-05,0.281798481941223,-0.000108242034912109,-1.62124633789063e-05,0.40507698059082,-0.000142574310302734,-2.38418579101563e-05,0.487721800804138,-0.000167369842529297,-2.86102294921875e-05,0.559443712234497,-0.00018310546875,-3.52859497070313e-05,0.633019924163818,-0.000203609466552734,-4.00543212890625e-05,0.694179773330688,-0.000234127044677734,-4.57763671875e-05,0.339361667633057,-0.000116825103759766,-2.38418579101563e-05,0.361016273498535,-0.000124454498291016,-2.6702880859375e-05,0.394493103027344,-0.000139713287353516,-3.14712524414063e-05,0.496936559677124,-0.000175952911376953,-4.00543212890625e-05,0.547789692878723,-0.000201702117919922,-4.29153442382813e-05,0.587801814079285,-0.000211715698242188,-4.48226928710938e-05,0.650454640388489,-0.000249862670898438,-4.86373901367188e-05,0.675729155540466,-0.00026702880859375,-4.86373901367188e-05,0.681689977645874,-0.000272750854492188,-4.76837158203125e-05,0.677414834499359,-0.000268936157226563,-4.67300415039063e-05,0.669478073737992,-0.000265598297119141,-4.67300415039063e-05,0.0730367079377174,-2.55107879638672e-05,4.76837158203125e-06,0.0786640048027039,-3.69548797607422e-05,4.76837158203125e-06,0.27056622505188,-7.39097595214844e-05,0,0.301513910293579,-8.72611999511719e-05,-5.24520874023438e-06,0.19356107711792,-7.12871551513672e-05,8.58306884765625e-06,0.233784675598145,-6.65187835693359e-05,4.76837158203125e-06,0.154376983642578,-5.26905059814453e-05,6.67572021484375e-06,0.120623350143433,-5.26905059814453e-05,7.62939453125e-06,0.0948883295059204,-4.12464141845703e-05,5.7220458984375e-06,0.329222202301025,-0.000100612640380859,-1.1444091796875e-05,0.18033242225647,-4.9591064453125e-05,-1.1444091796875e-05,0.201693296432495,-5.86509704589844e-05,-1.66893005371094e-05,0.245386600494385,-6.15119934082031e-05,-2.76565551757813e-05,0.2740318775177,-7.72476196289063e-05,-3.76701354980469e-05,0.324366092681885,-0.000100135803222656,-4.86373901367188e-05,0.378668904304504,-0.000125885009765625,-5.81741333007813e-05,0.431930541992188,-0.000140190124511719, --6.58035278320313e-05,0.479336202144623,-0.000157356262207031,-6.96182250976563e-05,0.516731679439545,-0.000180244445800781,-7.05718994140625e-05,0.540700495243073,-0.000185966491699219,-7.2479248046875e-05,0.548925220966339,-0.000185966491699219,-7.53402709960938e-05,0.0234642699360847,-6.91413879394531e-06,0,0.0251403748989105,2.14576721191406e-06,0,0.0826427936553955,-9.05990600585938e-06,-2.86102294921875e-06,0.0945982933044434,-1.66893005371094e-05,-6.91413879394531e-06,0.0589549541473389,-7.15255737304688e-06,0,0.0709023475646973,4.29153442382813e-06,0,0.0475742816925049,2.14576721191406e-06,0,0.0376660823822021,2.14576721191406e-06,2.14576721191406e-06,0.0300120115280151,-1.1444091796875e-05,1.9073486328125e-06,0.110206365585327,-9.05990600585938e-06,-1.07288360595703e-05,0.141508340835571,-2.19345092773438e-05,-1.88350677490234e-05,0.176405191421509,-1.04904174804688e-05,-2.83718109130859e-05,0.22304630279541,-2.288818359375e-05,-4.41074371337891e-05,0.290633678436279,-4.57763671875e-05,-6.43730163574219e-05,0.386872172355652,-6.00814819335938e-05,-9.01222229003906e-05,0.498671889305115,-8.67843627929688e-05,-0.000113964080810547,0.61747682094574,-0.000109672546386719,-0.000134944915771484,0.733282804489136,-0.000148773193359375,-0.000149250030517578,0.831969380378723,-0.000166893005371094,-0.00016021728515625,0.898578107357025,-0.000166893005371094,-0.000170707702636719,0.922046005725861,-0.000171661376953125,-0.000176906585693359,0.164752259850502,0,-5.71012496948242e-05,0.164752274751663,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341,0,-5.71608543395996e-05,0.16475248336792,0,-5.71608543395996e-05,0.164752244949341,0,-5.7220458984375e-05,0.164752244949341,0,-5.69820404052734e-05,0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,0.16475236415863,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,0.16475248336792,0,-5.71608543395996e-05,0.164752244949341,0,-5.71012496948242e-05,0.164752244949341,0,-5.71608543395996e-05,0.164752006530762, -0,-5.71012496948242e-05,0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,0.171116590499878,-1.9073486328125e-06,-5.93662261962891e-05,0.17587673664093,0,-6.09159469604492e-05,0.180306673049927,0,-6.25848770141602e-05,0.184573352336884,0,-6.41345977783203e-05,0.188271641731262,0,-6.53266906738281e-05,0.190809398889542,0,-6.61611557006836e-05,0.191712632775307,0,-6.63995742797852e-05,0,9.05990600585938e-06,0,0.0526230335235596,0,-1.05202198028564e-05,0.0804190635681152,-1.04904174804688e-05,-1.79409980773926e-05,0.110532760620117,0,-2.78949737548828e-05,0.1606764793396,-6.67572021484375e-06,-4.32729721069336e-05,0.269533753395081,-1.81198120117188e-05,-7.48634338378906e-05,0.388612866401672,-2.288818359375e-05,-0.000105142593383789,0.512962639331818,-5.62667846679688e-05,-0.000133752822875977,0.635793149471283,-4.48226928710938e-05,-0.00015711784362793,0.742478907108307,-7.34329223632813e-05,-0.000176191329956055,0.81542032957077,-6.866455078125e-05,-0.000190973281860352,0.841353297233582,-7.34329223632813e-05,-0.000198841094970703,0.0481942296028137,-1.40666961669922e-05,3.33786010742188e-06,0.0517162084579468,-1.59740447998047e-05,4.29153442382813e-06,0.0619155764579773,-1.40666961669922e-05,5.24520874023438e-06,0.0780516862869263,-1.83582305908203e-05,6.19888305664063e-06,0.0989878177642822,-1.1444091796875e-05,8.10623168945313e-06,0.123143434524536,-3.69548797607422e-05,8.10623168945313e-06,0.148154497146606,-2.98023223876953e-05,4.29153442382813e-06,0.172005891799927,-3.4332275390625e-05,0,0.194048881530762,-2.81333923339844e-05,-4.29153442382813e-06,0.21704363822937,-5.48362731933594e-05,-1.00135803222656e-05,0.123548030853271,-2.71797180175781e-05,-1.09672546386719e-05,0.143582344055176,-2.71797180175781e-05,-1.71661376953125e-05,0.171879768371582,-4.00543212890625e-05,-2.6702880859375e-05,0.210759162902832,-4.29153442382813e-05,-3.86238098144531e-05,0.259849309921265,-6.77108764648438e-05,-5.14984130859375e-05,0.314969658851624,-7.91549682617188e-05,-6.24656677246094e-05,0.371531009674072,-9.72747802734375e-05, --7.15255737304688e-05,0.4244544506073,-0.000107765197753906,-7.58171081542969e-05,0.468077838420868,-0.000123023986816406,-7.86781311035156e-05,0.496838957071304,-0.000131607055664063,-8.24928283691406e-05,0.506895244121552,-0.000140190124511719,-8.44001770019531e-05,0,-4.58955764770508e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.85453414916992e-06,0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0.102783769369125,-5.10215759277344e-05,-7.62939453125e-06,0.0768118798732758,-3.67164611816406e-05,0,0.603522062301636,-0.000203609466552734,-4.29153442382813e-05,0.59784722328186,-0.000213146209716797,-3.91006469726563e-05,0.523395538330078,-0.00018310546875,-3.4332275390625e-05,0.495804786682129,-0.000178813934326172,-3.4332275390625e-05,0.346720218658447,-0.000144481658935547,-1.71661376953125e-05,0.365042328834534,-0.0001373291015625,-2.38418579101563e-05,0.235363125801086,-0.000102996826171875,-9.5367431640625e-06,0.258273839950562,-9.87052917480469e-05,-1.71661376953125e-05,0.152953505516052,-5.48362731933594e-05,-5.7220458984375e-06,0.186152815818787,-7.58171081542969e-05,-1.1444091796875e-05,0.0994709730148315,-5.29289245605469e-05,-4.76837158203125e-06,0.135044395923615,-5.29289245605469e-05,-8.58306884765625e-06,0.421386957168579,-0.00016021728515625,-3.0517578125e-05,0.42155909538269,-0.000169277191162109,-2.38418579101563e-05,0.600241661071777,-0.000215053558349609,-4.1961669921875e-05,0.647118806838989,-0.0002288818359375,-4.57763671875e-05,0.689835071563721,-0.000240325927734375,-4.86373901367188e-05,0.703327417373657, --0.000254154205322266,-4.9591064453125e-05,0.801268815994263,-0.000293254852294922,-6.103515625e-05,0.817743301391602,-0.000295162200927734,-5.81741333007813e-05,0.906530618667603,-0.0003204345703125,-7.05718994140625e-05,0.863131999969482,-0.000299930572509766,-6.38961791992188e-05,1.04450726509094,-0.000373363494873047,-7.43865966796875e-05,1.08286929130554,-0.00038909912109375,-8.86917114257813e-05,1.11689877510071,0.00443935394287109,-7.72476196289063e-05,1.1205153465271,-0.000417232513427734,-9.918212890625e-05,0.968299388885498,-0.000451564788818359,-0.000105857849121094,0.911198496818542,0.074347972869873,-8.20159912109375e-05,0.812356233596802,-0.000238895416259766,-5.7220458984375e-05,0.824045658111572,0.0571374893188477,-0.0489835739135742,0.804297924041748,-0.000253200531005859,-5.91278076171875e-05,0.756246089935303,0.028691291809082,-4.1961669921875e-05,0.78317129611969,-0.000259876251220703,-6.103515625e-05,0.700903654098511,0.0126686096191406,-4.10079956054688e-05,0.755266666412354,-0.000263214111328125,-6.19888305664063e-05,0.662544220685959,-0.000276088714599609,-4.29153442382813e-05,0.0891833007335663,-4.33921813964844e-05,-4.76837158203125e-06,0.117341041564941,-5.48362731933594e-05,-5.7220458984375e-06,0.171426773071289,-6.62803649902344e-05,-8.58306884765625e-06,0.250630140304565,-9.1552734375e-05,-1.23977661132813e-05,0.369702219963074,-0.000148773193359375,-2.288818359375e-05,0.45042872428894,-0.00018310546875,-2.95639038085938e-05,0.521634578704834,-0.000190258026123047,-3.52859497070313e-05,0.599839925765991,-0.000208377838134766,-4.10079956054688e-05,0.608727216720581,-0.0002288818359375,-4.29153442382813e-05,0.699256181716919,-0.000237941741943359,-5.14984130859375e-05,0.807940721511841,-0.000279903411865234,-6.00814819335938e-05,0.887659549713135,-0.000314235687255859,-6.77108764648438e-05,1.05236220359802,-0.000394344329833984,-8.10623168945313e-05,1.10382986068726,0.000133514404296875,-8.7738037109375e-05,0.967616558074951,-0.000437259674072266,-9.44137573242188e-05,0.844596862792969, --0.00025177001953125,-5.05447387695313e-05,0.846054673194885,-0.000265598297119141,-5.14984130859375e-05,0.792774677276611,-0.000270366668701172,-5.24520874023438e-05,0.739719539880753,-0.000277042388916016,-5.43594360351563e-05,0.0982849597930908,-4.81605529785156e-05,-5.7220458984375e-06,0.128795921802521,-5.48362731933594e-05,-8.58306884765625e-06,0.180903673171997,-7.77244567871094e-05,-1.1444091796875e-05,0.256482243537903,-9.87052917480469e-05,-1.52587890625e-05,0.36866307258606,-0.000154018402099609,-2.47955322265625e-05,0.43423318862915,-0.000165462493896484,-3.0517578125e-05,0.506765127182007,-0.000194549560546875,-3.4332275390625e-05,0.606605291366577,-0.000211238861083984,-4.29153442382813e-05,0.649121284484863,-0.000217437744140625,-4.67300415039063e-05,0.709467172622681,-0.000260829925537109,-5.05447387695313e-05,0.815936088562012,-0.000288486480712891,-6.00814819335938e-05,0.856096506118774,-0.000304698944091797,-6.38961791992188e-05,1.04255843162537,-0.000386714935302734,-7.72476196289063e-05,1.10813856124878,0.015902042388916,-8.10623168945313e-05,0.947392463684082,0.0667223930358887,-8.58306884765625e-05,0.840033292770386,0.0598697662353516,-0.0250968933105469,0.792383193969727,0.0285000801086426,-4.57763671875e-05,0.782246470451355,0.0126757621765137,-4.67300415039063e-05,0.743937134742737,-0.000274658203125,-4.76837158203125e-05,0.056196928024292,-1.85966491699219e-05,0,0.0762843489646912,-2.81333923339844e-05,0,0.112174153327942,-3.95774841308594e-05,0,0.161687135696411,-7.58171081542969e-05,-2.86102294921875e-06,0.218053340911865,-7.77244567871094e-05,-4.76837158203125e-06,0.275873899459839,-0.000100612640380859,-5.7220458984375e-06,0.356773376464844,-0.000133037567138672,-1.23977661132813e-05,0.450096130371094,-0.000148773193359375,-2.09808349609375e-05,0.558565855026245,-0.000190258026123047,-3.4332275390625e-05,0.668161630630493,-0.000234127044677734,-5.05447387695313e-05,0.791267395019531,-0.000265598297119141,-6.77108764648438e-05,0.928593158721924,-0.000316143035888672,-8.86917114257813e-05, -1.07481741905212,-0.000377655029296875,-0.00011444091796875,1.0732753276825,-0.000375270843505859,-0.000124931335449219,0.827426850795746,-0.000261783599853516,-7.72476196289063e-05,0.851035714149475,-0.000253200531005859,-7.62939453125e-05,0.872035980224609,-0.000244140625,-7.43865966796875e-05,0.908223748207092,-0.000227451324462891,-7.15255737304688e-05,0.958134412765503,-0.000425815582275391,-0.000139236450195313,0.0744503140449524,-3.67164611816406e-05,0,0.0984694361686707,-4.33921813964844e-05,0,0.144196391105652,-5.48362731933594e-05,-4.76837158203125e-06,0.210935950279236,-7.77244567871094e-05,-6.67572021484375e-06,0.359158992767334,-0.000133037567138672,-1.71661376953125e-05,0.45177960395813,-0.000185489654541016,-2.288818359375e-05,0.541239261627197,-0.000196933746337891,-3.14712524414063e-05,0.615561723709106,-0.000226497650146484,-4.00543212890625e-05,0.603628635406494,-0.000199794769287109,-4.1961669921875e-05,0.672902345657349,-0.000242710113525391,-4.86373901367188e-05,0.783890962600708,-0.000265598297119141,-6.29425048828125e-05,0.955244064331055,-0.000334262847900391,-8.0108642578125e-05,1.11595940589905,-0.000409603118896484,-0.000100135803222656,1.12821793556213,-0.000414371490478516,-0.000108718872070313,0.983858823776245,-0.000437259674072266,-0.000115394592285156,0.836764931678772,-0.000230312347412109,-6.29425048828125e-05,0.823271751403809,-0.000249862670898438,-6.58035278320313e-05,0.795548260211945,-0.000261783599853516,-6.67572021484375e-05,0.766847789287567,-0.000267505645751953,-6.866455078125e-05,0.0261158645153046,-5.24520874023438e-06,0,0.0414807200431824,-9.05990600585938e-06,0,0.0674995183944702,-3.95774841308594e-05,0,0.099573016166687,-4.14848327636719e-05,0,0.127580404281616,-5.10215759277344e-05,0,0.146834135055542,-3.95774841308594e-05,0,0.254908323287964,-8.53538513183594e-05,0,0.379257917404175,-0.000123500823974609,-1.04904174804688e-05,1.04993438720703,-0.000350475311279297,-0.000130653381347656,0.968214511871338,-0.000311374664306641,-0.000105857849121094,0.817880630493164, --0.000270366668701172,-7.53402709960938e-05,0.693174362182617,-0.000217437744140625,-5.14984130859375e-05,0.534009695053101,-0.000167369842529297,-2.57492065429688e-05,0.878486692905426,-0.000262260437011719,-9.63211059570313e-05,0.869955480098724,-0.000253677368164063,-9.44137573242188e-05,0.916084289550781,-0.000237464904785156,-9.25064086914063e-05,0.944753170013428,-0.000222206115722656,-8.86917114257813e-05,0.943821668624878,-0.000414848327636719,-0.0001678466796875,1.07152104377747,-0.000377655029296875,-0.000145912170410156,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06,0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-8.82148742675781e-06,0,1.30364859104156,-0.000359535217285156,-0.000359058380126953,1.33116126060486,-0.000479698181152344,-0.000323295593261719,1.25105667114258,-0.000311851501464844,-0.000330448150634766,1.30109548568726,-0.000428199768066406,-0.000287055969238281,1.16082286834717,-0.000245094299316406,-0.000276088714599609,1.24536180496216,-0.000338554382324219,-0.000240802764892578,1.01164054870605,-0.000151634216308594,-0.000200271606445313,1.14649629592896,-0.000262260437011719, --0.000174522399902344,0.769798755645752,-6.866455078125e-05,-0.000120401382446289,0.976996421813965,-0.000165462493896484,-0.000110626220703125,0.173402309417725,0,-1.29938125610352e-05,0.570027351379395,-3.95774841308594e-05,-2.26497650146484e-05,0.444282531738281,-3.4332275390625e-05,-4.64916229248047e-06,1.0953516960144,-0.000189781188964844,-0.000240325927734375,1.20270538330078,-0.000313758850097656,-0.000205039978027344,0.410068988800049,-7.15255737304688e-06,-4.66108322143555e-05,0.715614795684814,-7.77244567871094e-05,-4.91142272949219e-05,1.33008217811584,-0.000439643859863281,-0.000353813171386719,1.29669070243835,-0.000372886657714844,-0.000320911407470703,1.23407912254333,-0.000313758850097656,-0.000275611877441406,1.18539524078369,-0.000263214111328125,-0.000240325927734375,1.11946678161621,-0.000205039978027344,-0.000203132629394531,0.914819717407227,-0.000105857849121094,-0.000129938125610352,0.602851867675781,-5.10215759277344e-05,-5.79357147216797e-05,0.426541805267334,-2.52723693847656e-05,-2.62260437011719e-05,0.288614273071289,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,0.0756523609161377,-2.55107879638672e-05,0,0.157466411590576,-5.10215759277344e-05,2.86102294921875e-06,0.306302547454834,-0.000102996826171875,0,0.53180980682373,-0.000178813934326172,-2.19345092773438e-05,0.761335372924805,-0.000236034393310547,-5.7220458984375e-05,0.905502796173096,-0.000299930572509766,-8.96453857421875e-05,1.00241041183472,-0.000329494476318359,-0.0001220703125,1.07822275161743,-0.00034332275390625,-0.000150680541992188,1.14086651802063,-0.0004119873046875,-0.000174522399902344,0.999799489974976,-0.000426292419433594,-0.000197410583496094,0.970189809799194,-0.000233650207519531,-0.000105857849121094,0.935951113700867,-0.00025177001953125,-0.000110626220703125,0.88571560382843,-0.000253677368164063,-0.000112533569335938,0.891763001680374, --0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,0.0213675498962402,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.0121296644210815,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0.0103033781051636,1.1444091796875e-05,0,0.042611837387085,-1.1444091796875e-05,0,0.0424216985702515,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06,0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06, -0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0.125670433044434,-3.69548797607422e-05,5.7220458984375e-06,0.0750255584716797,-3.88622283935547e-05,4.76837158203125e-06,0.194766998291016,-6.866455078125e-05,7.62939453125e-06,0.350126266479492,-0.000116825103759766,0,0.219629764556885,-7.31945037841797e-05,1.04904174804688e-05,0.0996079444885254,-2.07424163818359e-05,8.58306884765625e-06,0.209350109100342,-7.31945037841797e-05,1.09672546386719e-05,0.0960321426391602,-4.12464141845703e-05,8.10623168945313e-06,0.167864799499512,-2.98023223876953e-05,1.23977661132813e-05,0.0673270225524902,-1.60932540893555e-05,5.7220458984375e-06,0.0954747200012207,-1.1444091796875e-05,1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,0.360260963439941,-0.000105381011962891,3.814697265625e-06,0.287003040313721,-5.98430633544922e-05,1.23977661132813e-05,0.339015483856201,-7.31945037841797e-05,7.15255737304688e-06,0.207709789276123,-3.88622283935547e-05,1.47819519042969e-05,0.531097412109375,-0.000171661376953125,-1.71661376953125e-05,0.415305614471436,-8.24928283691406e-05,6.19888305664063e-06,0.47929048538208,-0.000119686126708984,-4.29153442382813e-06,0.516849994659424,-0.000139713287353516,-1.38282775878906e-05,0.622409820556641,-0.000119686126708984,-2.00271606445313e-05,0.543870449066162,-9.67979431152344e-05,-2.86102294921875e-06,0.678859233856201,-0.000174045562744141,-3.4332275390625e-05,0.720067501068115,-0.000196933746337891,-4.62532043457031e-05,0.952444553375244,-0.000263214111328125,-8.7738037109375e-05,0.891955375671387,-0.000231266021728516,-7.43865966796875e-05,0.830295562744141,-0.000190258026123047,-5.62667846679688e-05,0.753498077392578,-0.000142574310302734,-3.76701354980469e-05,1.03460168838501,-0.000302791595458984,-0.000115394592285156,1.1456995010376,-0.000296592712402344,-0.000161170959472656,1.08530855178833, --0.000263214111328125,-0.000134468078613281,1.105877161026,-0.000330924987792969,-0.000151634216308594,1.19639110565186,-0.000365257263183594,-0.000195026397705078,1.21170544624329,-0.000274658203125,-0.00030517578125,1.27014398574829,-0.000334739685058594,-0.000300884246826172,1.27728486061096,-0.000372886657714844,-0.000267982482910156,1.163898229599,-0.0003662109375,-0.00018310546875,1.23711037635803,-0.00038909912109375,-0.000225067138671875,1.21080565452576,-0.000426292419433594,-0.000208854675292969,1.26885962486267,-0.000414848327636719,-0.000247001647949219,1.28108739852905,-0.00034332275390625,-0.000346660614013672,1.31617259979248,-0.000418663024902344,-0.000339508056640625,1.31859469413757,-0.000452995300292969,-0.000306129455566406,1.29323649406433,-0.000456809997558594,-0.000268936157226563,1.11349630355835,-0.000439643859863281,-0.000229835510253906,1.12458574771881,-0.000475883483886719,-0.000246047973632813,1.31135630607605,-0.000491142272949219,-0.000284194946289063,1.31950092315674,-0.000388145446777344,-0.000369071960449219,1.33936011791229,-0.000473976135253906,-0.000361442565917969,1.33952820301056,-0.000487327575683594,-0.000330924987792969,1.32908695936203,-0.000407218933105469,-0.000376701354980469,1.344546854496,-0.000460624694824219,-0.0003662109375,1.34426432847977,-0.000517845153808594,-0.000337600708007813,1.04845947027206,-0.000537872314453125,-0.000264167785644531,1.09559416770935,-0.000517845153808594,-0.000256538391113281,1.32405984401703,-0.000517845153808594,-0.000294685363769531,1.33193349838257,-0.000540733337402344,-0.000300407409667969,1.33347842097282,-0.000393867492675781,-0.000380516052246094,1.34661826491356,-0.000457763671875,-0.000369071960449219,1.34625777602196,-0.000506401062011719,-0.000338554382324219,1.05594569444656,-0.000537872314453125,-0.000267982482910156,1.20751142501831,-0.000531196594238281,-0.000304222106933594,1.02031278610229,-0.000222682952880859,-0.000109195709228516,0.941895008087158,-0.000194549560546875,-8.48770141601563e-05,0.904573917388916,-9.1552734375e-05, --0.000161409378051758,1.03095817565918,-0.000159263610839844,-0.000165939331054688,1.07311391830444,-0.000211238861083984,-0.000142574310302734,0.843857288360596,-0.000146389007568359,-6.05583190917969e-05,0.6052565574646,-3.33786010742188e-05,-8.16583633422852e-05,0.770381450653076,-8.24928283691406e-05,-9.27448272705078e-05,0.856074810028076,-0.000100612640380859,-7.93933868408203e-05,0.727127552032471,-8.72611999511719e-05,-3.48091125488281e-05,0.65739631652832,-0.000116825103759766,-1.62124633789063e-05,0.601527690887451,-7.39097595214844e-05,-1.07288360595703e-05,0.54763126373291,-7.10487365722656e-05,2.14576721191406e-06,0.446645259857178,-5.98430633544922e-05,1.1444091796875e-05,0.327857494354248,-4.57763671875e-05,1.57356262207031e-05,0.483014106750488,-5.96046447753906e-05,3.09944152832031e-06,0.436212539672852,-3.88622283935547e-05,1.21593475341797e-05,0.341536045074463,-3.21865081787109e-05,1.93119049072266e-05,0.225949287414551,-2.288818359375e-05,1.74045562744141e-05,0.10942554473877,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.79492950439453e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.87316060066223e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06,0,0,-2.32458114624023e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58583235740662e-06,0,0,2.29477882385254e-06,0,0,-6.83963298797607e-06,0,0,-4.57838177680969e-06,0,0,9.17911529541016e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06, -0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06, -0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,0.0107383728027344,-9.17911529541016e-06,0,0.008056640625,6.79492950439453e-06,0,0.0271339416503906,-1.1444091796875e-05,2.38418579101563e-06,0.0213508605957031,-9.29832458496094e-06,0,0.0520849227905273,-2.62260437011719e-06,3.27825546264648e-06,0.0435924530029297,2.14576721191406e-06,2.02655792236328e-06,0.0859060287475586,6.91413879394531e-06,4.72180545330048e-06,0.0751914978027344,8.82148742675781e-06,1.9073486328125e-06,0.12612247467041,2.14576721191406e-06,6.19888305664063e-06,0.1116943359375,-5.24520874023438e-06,1.65402889251709e-06,0.169522762298584,2.14576721191406e-06,8.40425491333008e-06,0.141809463500977,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06,0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,0.0114612579345703,-4.64916229248047e-06,0,0.0286951065063477,0,2.14576721191406e-06,0.0551424026489258,4.52995300292969e-06,2.74181365966797e-06,0.0906009674072266,-6.91413879394531e-06,3.15159559249878e-06,0.131157875061035,4.52995300292969e-06,4.64916229248047e-06,0.169876098632813,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,0.00185632705688477,-4.64916229248047e-06,0,0.00609445571899414,6.91413879394531e-06,0,0.0152349472045898,-9.29832458496094e-06,0,0.031468391418457,0,0,0.0578923225402832,2.14576721191406e-06,0,0.111007213592529,9.05990600585938e-06,1.78813934326172e-06,0.235284805297852,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06, -0,0.00349330902099609,1.1444091796875e-05,0,0.010685920715332,2.14576721191406e-06,0,0.0252857208251953,-1.1444091796875e-05,0,0.0504999160766602,2.14576721191406e-06,1.78813934326172e-06,0.089078426361084,-4.52995300292969e-06,1.98930501937866e-06,0.145565986633301,1.1444091796875e-05,2.20537185668945e-06,0.214066028594971,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,0.0102910995483398,-4.64916229248047e-06,0,0.0262126922607422,2.14576721191406e-06,1.78813934326172e-06,0.0513277053833008,-9.29832458496094e-06,2.50339508056641e-06,0.0854644775390625,0,2.29477882385254e-06,0.124058723449707,-4.52995300292969e-06,2.47359275817871e-06,0.159650802612305,8.82148742675781e-06,3.39746475219727e-06,0.222687721252441,-6.91413879394531e-06,5.48362731933594e-06,0.228129386901855,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,0.00561904907226563,2.26497650146484e-06,0,0.0158615112304688,8.82148742675781e-06,0,0.0346755981445313,-9.29832458496094e-06,1.66893005371094e-06,0.0640392303466797,6.91413879394531e-06,1.84774398803711e-06,0.1029052734375,-1.1444091796875e-05,1.83470547199249e-06,0.146875858306885,9.05990600585938e-06,1.78813934326172e-06,0.187060832977295,4.52995300292969e-06,4.35113906860352e-06,0.197512149810791,-1.1444091796875e-05,6.67572021484375e-06, -0.142795085906982,4.52995300292969e-06,1.00135803222656e-05,0.101827621459961,-9.29832458496094e-06,7.09295272827148e-06,0.0678958892822266,-9.29832458496094e-06,4.88758087158203e-06,0.0407266616821289,4.52995300292969e-06,3.33786010742188e-06,0.0207939147949219,6.79492950439453e-06,1.96695327758789e-06,0.00741672515869141,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,0.0104646682739258,2.26497650146484e-06,0,0.0221343040466309,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06,0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,0.0374464988708496,0,3.42726707458496e-06,0.0566768646240234,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,0.0322175025939941,2.26497650146484e-06,3.814697265625e-06,0.0803065299987793,-2.62260437011719e-06,6.9737434387207e-06,0.0638866424560547,2.26497650146484e-06,6.79492950439453e-06,0.0654029846191406,2.26497650146484e-06,6.79492950439453e-06,0.0839853286743164,0,7.98702239990234e-06,0.0773978233337402,-2.26497650146484e-06,7.74860382080078e-06,0.0447006225585938,-7.03334808349609e-06,5.36441802978516e-06,0.0435891151428223,9.17911529541016e-06,5.12599945068359e-06,0.102383136749268,2.14576721191406e-06,9.29832458496094e-06,0.0784139633178711,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,0.148007869720459,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,0.332450866699219,-2.74181365966797e-05,1.50203704833984e-05,0.238889694213867,-2.288818359375e-05,1.69277191162109e-05,0.117278099060059,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05, -0,0,4.61935997009277e-06,0,0,4.64916229248047e-06,0,0.229700088500977,2.38418579101563e-06,0,0.35819149017334,-1.66893005371094e-05,4.52995300292969e-06,0.382926464080811,-9.29832458496094e-06,1.06096267700195e-05,0.299910068511963,-2.55107879638672e-05,1.01327896118164e-05,0.310403823852539,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,0.00850439071655273,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,0.0057826042175293,-9.29832458496094e-06,0,0.00125932693481445,-4.52995300292969e-06,0,0.00250673294067383,-4.52995300292969e-06,0,0.000705718994140625,-2.62260437011719e-06,0,0.000752449035644531,2.26497650146484e-06,0,0.000228404998779297,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0.000125408172607422,8.82148742675781e-06,0,5.57899475097656e-05,4.41074371337891e-06,0,5.7220458984375e-06,6.91413879394531e-06,0,5.7220458984375e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,2.43186950683594e-05,8.82148742675781e-06,0,1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06, -0,0,6.88433647155762e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0.197105407714844,8.58306884765625e-06,-4.21702861785889e-05,0.372541904449463,-1.81198120117188e-05,-8.70823860168457e-05,0.523701429367065,-2.95639038085938e-05,-0.000131726264953613,0.653756618499756,-6.00814819335938e-05,-0.000175952911376953,0.767434120178223,-5.24520874023438e-05,-0.000217676162719727,0.71554160118103,-7.15255737304688e-05,-0.000213384628295898,0.788416981697083,-0.000102996826171875,-0.000243186950683594,0.852152585983276,-0.000119209289550781,-0.000268220901489258,0.906155586242676,-0.000125885009765625,-0.000288486480712891,0.950120627880096,-0.000151634216308594,-0.000303745269775391,0.985551536083221,-0.000148773193359375,-0.000314712524414063,1.01017466187477,-0.00016021728515625,-0.000323295593261719,1.02304962277412,-0.000151634216308594,-0.00032806396484375,0.208634853363037,8.58306884765625e-06,-3.090500831604e-05,0.405336856842041,-2.19345092773438e-05,-6.79492950439453e-05,0.578392505645752,-4.10079956054688e-05,-0.000106453895568848,0.725183963775635,-6.77108764648438e-05,-0.000148773193359375,0.847414016723633,-0.000107765197753906,-0.000191926956176758,0.949378728866577,-0.000136375427246094,-0.000230789184570313,1.03449583053589,-0.000155448913574219,-0.00026702880859375,1.1051914691925,-0.000201225280761719,-0.000295162200927734,1.16301393508911,-0.000222206115722656,-0.000317096710205078,1.20995509624481,-0.000256538391113281,-0.000332355499267578,1.24727010726929,-0.000273704528808594,-0.000343799591064453,1.27515876293182,-0.000277519226074219,-0.000354766845703125,1.29311320185661,-0.000313758850097656,-0.000360488891601563,1.30208450555801,-0.00029754638671875,-0.000363349914550781,0.0611715316772461,0,-2.02804803848267e-05,0.149009227752686,4.76837158203125e-06, --5.26309013366699e-05,0.259407520294189,6.67572021484375e-06,-9.59634780883789e-05,0.360788106918335,-1.1444091796875e-05,-0.000137686729431152,0.462241172790527,-1.04904174804688e-05,-0.00018155574798584,0.572112321853638,-4.10079956054688e-05,-0.000229954719543457,0.681854248046875,-4.10079956054688e-05,-0.000277280807495117,0.750614523887634,-6.38961791992188e-05,-0.000306844711303711,0.824832916259766,-7.53402709960938e-05,-0.000339031219482422,0.894739508628845,-9.1552734375e-05,-0.000368833541870117,0.974225401878357,-9.82284545898438e-05,-0.000402450561523438,1.0124476402998,-0.000105857849121094,-0.00041961669921875,0.302764892578125,4.76837158203125e-06,-0.000131845474243164,0.378828525543213,-5.7220458984375e-06,-0.000170886516571045,0.444851160049438,-1.1444091796875e-05,-0.000207424163818359,0.550727725028992,-1.33514404296875e-05,-0.000261425971984863,0.683751583099365,-3.62396240234375e-05,-0.000330090522766113,0.677222967147827,-4.38690185546875e-05,-0.000331878662109375,0.72844010591507,-4.00543212890625e-05,-0.000360369682312012,0.785560607910156,-5.53131103515625e-05,-0.000390529632568359,0.843545824289322,-3.62396240234375e-05,-0.000419855117797852,0.889081947505474,-4.38690185546875e-05,-0.000443339347839355,0.0323583334684372,0,-1.96695327758789e-05,0.174931526184082,8.58306884765625e-06,-4.89950180053711e-05,0.325066566467285,-6.67572021484375e-06,-9.72747802734375e-05,0.4548499584198,-2.76565551757813e-05,-0.000144124031066895,0.571193933486938,-2.95639038085938e-05,-0.000189423561096191,0.678101778030396,-3.91006469726563e-05,-0.000232934951782227,0.777098178863525,-7.34329223632813e-05,-0.000274896621704102,0.707023859024048,-9.05990600585938e-05,-0.000255346298217773,0.77485990524292,-8.67843627929688e-05,-0.000284671783447266,0.836473643779755,-0.000113487243652344,-0.000311136245727539,0.887889266014099,-0.00011444091796875,-0.000332117080688477,0.923935800790787,-0.000140190124511719,-0.000345945358276367,0.943427979946136,-0.000128746032714844,-0.000352382659912109,0,-1.1444091796875e-05, -0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.101716846227646,-4.14848327636719e-05,0,0.376917600631714,-0.000139713287353516,-1.23977661132813e-05,0.414265871047974,-0.0001373291015625,-1.81198120117188e-05,0.266844987869263,-8.72611999511719e-05,-5.7220458984375e-06,0.325454235076904,-0.000121593475341797,-8.58306884765625e-06,0.209126830101013,-7.39097595214844e-05,-2.86102294921875e-06,0.16086357831955,-7.58171081542969e-05,0,0.124552011489868,-4.33921813964844e-05,0,0.441805601119995,-0.000144481658935547,-2.38418579101563e-05,0.660455465316772,-0.000208377838134766,-4.67300415039063e-05,0.666347742080688,-0.000231266021728516,-5.62667846679688e-05,0.582760334014893,-0.000196933746337891,-5.7220458984375e-05,0.695357799530029,-0.000249385833740234,-7.91549682617188e-05,0.778550148010254,-0.000274658203125,-9.25064086914063e-05,0.864722609519958,-0.000327587127685547,-0.000102996826171875,0.794760942459106,-0.000188827514648438,-5.81741333007813e-05,0.524876654148102,-0.000194549560546875,-6.00814819335938e-05,0.556556105613708,-0.000218868255615234,-6.103515625e-05,0.576028764247894,-0.000221729278564453,-6.38961791992188e-05,0.111989557743073,-5.7220458984375e-05,-6.67572021484375e-06,0.148498117923737,-7.39097595214844e-05,-8.58306884765625e-06,0.186934113502502,-8.72611999511719e-05,-1.1444091796875e-05,0.277076840400696,-0.000102996826171875,-1.81198120117188e-05,0.380840659141541,-0.000154018402099609,-2.76565551757813e-05,0.438331842422485,-0.000151157379150391,-2.95639038085938e-05,0.54163646697998,-0.000190258026123047,-3.814697265625e-05,0.576151132583618,-0.000217437744140625,-4.00543212890625e-05,0.659367799758911,-0.000234127044677734,-4.57763671875e-05,0.68618631362915,-0.000242710113525391,-4.86373901367188e-05,0.75101113319397,-0.000249385833740234,-5.43594360351563e-05,0.825459957122803,-0.000286102294921875,-6.00814819335938e-05,1.03803849220276,-0.000371456146240234,-7.15255737304688e-05, -1.1039400100708,-0.000400543212890625,-7.53402709960938e-05,0.906806945800781,0.044710636138916,-8.10623168945313e-05,0.730706214904785,0.0347747802734375,-4.29153442382813e-05,0.669278502464294,0.0287008285522461,-4.1961669921875e-05,0.660148561000824,0.0126800537109375,-4.29153442382813e-05,0.66369754076004,-0.000267505645751953,-4.29153442382813e-05,0.114603728055954,-4.57763671875e-05,-6.67572021484375e-06,0.14451003074646,-5.7220458984375e-05,-8.58306884765625e-06,0.191790342330933,-8.53538513183594e-05,-1.1444091796875e-05,0.281776428222656,-0.000108242034912109,-1.62124633789063e-05,0.405032277107239,-0.000142574310302734,-2.38418579101563e-05,0.487657070159912,-0.000167369842529297,-2.86102294921875e-05,0.559357881546021,-0.00018310546875,-3.52859497070313e-05,0.632908821105957,-0.000203609466552734,-4.00543212890625e-05,0.694051265716553,-0.000234127044677734,-4.57763671875e-05,0.678593158721924,-0.000234127044677734,-4.67300415039063e-05,0.721897602081299,-0.000249385833740234,-5.43594360351563e-05,0.788846254348755,-0.000279903411865234,-6.29425048828125e-05,0.993720054626465,-0.000352382659912109,-8.0108642578125e-05,1.09543895721436,-0.000402927398681641,-8.58306884765625e-05,0.912518858909607,-0.000423431396484375,-9.05990600585938e-05,0.74718451499939,-0.000249862670898438,-4.86373901367188e-05,0.675689458847046,-0.00026702880859375,-4.86373901367188e-05,0.681665182113647,-0.000272750854492188,-4.76837158203125e-05,0.67740336060524,-0.000268936157226563,-4.67300415039063e-05,0.0786625444889069,-3.69548797607422e-05,4.76837158203125e-06,0.270517587661743,-7.39097595214844e-05,0,0.301451921463013,-8.72611999511719e-05,-5.24520874023438e-06,0.193536996841431,-7.12871551513672e-05,8.58306884765625e-06,0.233748435974121,-6.65187835693359e-05,4.76837158203125e-06,0.15436327457428,-5.26905059814453e-05,6.67572021484375e-06,0.120615720748901,-5.26905059814453e-05,7.62939453125e-06,0.0948845148086548,-4.12464141845703e-05,5.7220458984375e-06,0.329148769378662,-0.000100612640380859,-1.1444091796875e-05,0.360581636428833, --9.87052917480469e-05,-2.288818359375e-05,0.403295278549194,-0.000116825103759766,-3.38554382324219e-05,0.490670204162598,-0.000123500823974609,-5.53131103515625e-05,0.547965288162231,-0.000155448913574219,-7.48634338378906e-05,0.648637294769287,-0.000201225280761719,-9.82284545898438e-05,0.757248401641846,-0.00025177001953125,-0.000117301940917969,0.431891679763794,-0.000140190124511719,-6.58035278320313e-05,0.479304909706116,-0.000157356262207031,-6.96182250976563e-05,0.516710877418518,-0.000180244445800781,-7.05718994140625e-05,0.540690332651138,-0.000185966491699219,-7.2479248046875e-05,0.0251399576663971,2.14576721191406e-06,0,0.0826292037963867,-9.05990600585938e-06,-2.86102294921875e-06,0.0945813655853271,-1.66893005371094e-05,-6.91413879394531e-06,0.0589487552642822,-7.15255737304688e-06,0,0.0708925724029541,4.29153442382813e-06,0,0.0475705862045288,2.14576721191406e-06,0,0.0376638770103455,2.14576721191406e-06,2.14576721191406e-06,0.0300108790397644,-1.1444091796875e-05,1.9073486328125e-06,0.110184907913208,-9.05990600585938e-06,-1.07288360595703e-05,0.141480207443237,-2.19345092773438e-05,-1.88350677490234e-05,0.176369428634644,-1.04904174804688e-05,-2.83718109130859e-05,0.223005294799805,-2.288818359375e-05,-4.41074371337891e-05,0.290587663650513,-4.57763671875e-05,-6.43730163574219e-05,0.386821985244751,-6.00814819335938e-05,-9.01222229003906e-05,0.498619675636292,-8.67843627929688e-05,-0.000113964080810547,0.617428064346313,-0.000109672546386719,-0.000134944915771484,0.733240902423859,-0.000148773193359375,-0.000149250030517578,0.831940054893494,-0.000166893005371094,-0.00016021728515625,0.898563206195831,-0.000166893005371094,-0.000170707702636719,0.164752259850502,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341,0,-5.71608543395996e-05,0.164752006530762,0,-5.71608543395996e-05,0.16475236415863,0,-5.7220458984375e-05,0.164752244949341,0,-5.69820404052734e-05,0.16475236415863,-1.9073486328125e-06,-5.71012496948242e-05,0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341, --1.9073486328125e-06,-5.71012496948242e-05,0.164752244949341,0,-5.71608543395996e-05,0.164752244949341,0,-5.71012496948242e-05,0.16475248336792,0,-5.71608543395996e-05,0.164752244949341,0,-5.71012496948242e-05,0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,0.171115636825562,-1.9073486328125e-06,-5.93662261962891e-05,0.175875425338745,0,-6.09159469604492e-05,0.180305600166321,0,-6.25848770141602e-05,0.184572279453278,0,-6.41345977783203e-05,0.188270688056946,0,-6.53266906738281e-05,0.190808907151222,0,-6.61611557006836e-05,0,9.05990600585938e-06,0,0.0526125431060791,0,-1.05202198028564e-05,0.0804030895233154,-1.04904174804688e-05,-1.79409980773926e-05,0.110512256622314,0,-2.78949737548828e-05,0.160651206970215,-6.67572021484375e-06,-4.32729721069336e-05,0.269499063491821,-1.81198120117188e-05,-7.48634338378906e-05,0.388572096824646,-2.288818359375e-05,-0.000105142593383789,0.512922048568726,-5.62667846679688e-05,-0.000133752822875977,0.63575679063797,-4.48226928710938e-05,-0.00015711784362793,0.742452621459961,-7.34329223632813e-05,-0.000176191329956055,0.815406739711761,-6.866455078125e-05,-0.000190973281860352,0.051715224981308,-1.59740447998047e-05,4.29153442382813e-06,0.061913013458252,-1.40666961669922e-05,5.24520874023438e-06,0.078046441078186,-1.83582305908203e-05,6.19888305664063e-06,0.0989785194396973,-1.1444091796875e-05,8.10623168945313e-06,0.123127460479736,-3.69548797607422e-05,8.10623168945313e-06,0.148130178451538,-2.98023223876953e-05,4.29153442382813e-06,0.171972990036011,-3.4332275390625e-05,0,0.194007396697998,-2.81333923339844e-05,-4.29153442382813e-06,0.216992855072021,-5.48362731933594e-05,-1.00135803222656e-05,0.247035503387451,-5.48362731933594e-05,-2.24113464355469e-05,0.287095546722412,-5.48362731933594e-05,-3.4332275390625e-05,0.34368371963501,-8.0108642578125e-05,-5.29289245605469e-05,0.421437740325928,-8.48770141601563e-05,-7.67707824707031e-05,0.519618988037109,-0.000136375427246094,-0.000102996826171875,0.629860401153564,-0.000159263610839844,-0.000125408172607422,0.371495723724365, --9.72747802734375e-05,-7.15255737304688e-05,0.42442524433136,-0.000107765197753906,-7.58171081542969e-05,0.468058049678802,-0.000123023986816406,-7.86781311035156e-05,0.496828973293304,-0.000131607055664063,-8.24928283691406e-05,0,-1.1444091796875e-05,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,4.64916229248047e-06,0,0,9.23871994018555e-06,0,0,-6.85453414916992e-06,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.58955764770508e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-2.20537185668945e-06,0,0,-4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,9.14931297302246e-06,0,0,-6.82473182678223e-06,0,0,-4.55975532531738e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06, -0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,-4.58955764770508e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,-9.13441181182861e-06,0,0,-6.82473182678223e-06,0,0,2.29477882385254e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-2.20537185668945e-06,0 - } - Normals: *15342 { - a: 1.19805335998535e-05,1.88946723937988e-05,7.80224800109863e-05,-0.614461195952437,0.749745225533843,0.814773395657539,-1.16590851545334,-0.240294694900513,-0.206867203116417,-0.913618355989456,0.0098986029624939,-0.584552064538002,-0.619066671002656,0.343794822692871,-1.09113328158855,-0.315515846014023,-0.17753529548645,-0.602287426590919,-0.023861825466156,-0.15188592672348,-0.212667301297188,-0.69493628081902,0.402802750468254,0.628791183233261,-1.5471442937851,0.132654160261154,-0.185470476746559,-1.63190490007401,0.721633225679398,-0.849049150943756,-0.567862928379327,0.406946957111359,-1.76065814495087,0.241949856281281,0.613293945789337,-1.06640541553497,0.315853178501129,0.74684401601553,-0.0226553976535797,-0.503562893545656,0.187537610530853,0.553376749157906,-1.58790630102158,0.707293130457401,0.0987792313098907,-0.638961130287498,1.34007716178894,-0.946060866117477,0.19638979434967,0.613596469163895,-0.173842936754227,-0.563044355901705,-0.687545478343964,-0.784781724214554,-1.07353590428829,0.400756120681763,-0.467526644468307,-0.262565977292468,1.13182666897774,-1.03471972048283,0.661275804042816,0.267492161132395,-0.971807699650526,-0.577145219711735,-0.250795185565948,-0.855060428380966,-1.61035192012787,0.635240375995636,-0.683768751099706,-0.262565495097746,1.13492992520332,-0.964947324246168,0.697275191545486,0.677596673369408,-1.17042575776577,-0.149451435305195,-0.976381419226527,-1.28964272141457,-1.12976706027985,0.546767042018473,-1.14108696579933,-0.262560766047955,1.1332531273365,-1.01409049332142,0.512480154633522,0.790262222290039,-1.19417808949947,-0.1192213770547,-0.824054062366486,-1.02769935131073,-0.872991770505905,0.766147598624229,-1.21789884567261,-0.262565093532643,1.1178991496563,-1.13944013416767,0.659998387098312,0.594193920493126,-1.40319219231606,-0.119221098150149,-0.818420767784119,-1.09465092420578,-0.786892170337596,0.678768739104271,-1.39529198408127,1.32694438077507e-05,0.794311374425888,-1.7628465294838,0.427553787827492,-0.00210999138653278,-1.80498433113098, --0.12688849921642,-0.560878708958626,-1.69106703996658,-0.576962461117764,0.184556446969509,-1.80296277999878,0.42637254048066,-0.785583509132266,-1.41663205623627,0.50694967556672,-0.713502241298556,-1.45706140995026,-0.42726277316,-0.638136595487595,-1.40347957611084,-0.402323126792908,-0.570511803030968,-1.43952152132988,0.132578037679195,-0.69389071688056,-1.72950613498688,-0.443712701443691,-0.487277179956436,-1.60197216272354,0.547586327167592,-0.404261544346809,-1.52141952514648,0.715978659689426,-0.551255136728287,-0.786042138934135,0.876180529594421,-0.355893686413765,-0.546769827604294,0.630455315113068,-0.695534810423851,-0.776312917470932,0.796452917158604,-0.415322214365005,-0.626322239637375,0.791548579931259,-0.10607847571373,-0.186290383338928,0.83967137336731,-0.535538703203201,-0.489223688840866,0.949243485927582,-0.366952742449939,-0.287920355796814,0.268663994967937,-0.19723216816783,-0.0111247301101685,0.126882781628628,-0.0203189998865128,0.00500339269638062,0.411970466375351,0.157771630212665,0.033059298992157,0.389412045478821,-0.00873894989490509,0.0260104537010193,0.126984424889088,-0.0094742476940155,0.0197185873985291,0.496665969491005,0.298256209120154,0.276770830154419,0.516594290733337,0.236893430352211,0.317298650741577,0.348438411951065,0.464752033352852,0.48555862903595,-4.05311584472656e-06,3.45809385180473e-05,-8.94069671630859e-07,5.96046447753906e-08,3.86536121368408e-05,5.54323196411133e-06,-0.173207879066467,0.00332286953926086,-0.227451354265213,0.0804459452629089,-0.135909020900726,-0.159753009676933,-9.29832458496094e-06,2.17556953430176e-05,6.63250684738159e-05,-0.11800342798233,0.039883553981781,-0.121078640222549,-0.0635483264923096,-0.166561871767044,-1.11222895979881,0.341134697198868,-0.396801382303238,-0.854643493890762,0.204598516225815,-0.0261932015419006,-0.917223453521729,0.634756972081959,-0.133726805448532,-1.52172952890396,0.215290099382401,-0.390380322933197,-1.32069915533066,1.16869965195656,-0.144410490989685,-0.762308120727539,1.3866383433342,-0.273424595594406, --0.938454657793045,1.6739130616188,0.725759521126747,-0.681906715035439,1.26531809568405,0.342954903841019,-0.814839690923691,1.4545174241066,0.608566671609879,0.00072866678237915,1.46635884046555,0.536587588489056,0.284489631652832,1.45164978504181,0.562011808156967,0.322154551744461,1.01493865251541,0.536588102579117,0.631569415330887,1.04565289616585,0.563178837299347,1.16570889949799,0.491110705770552,0.140282273292542,1.1913677752018,0.430817207052514,0.330282986164093,1.55096179246902,0.51448442786932,0.326831102371216,1.55878794193268,0.45997925568372,0.140275239944458,1.1913620531559,0.458443321287632,0.389693558216095,1.40134990215302,0.372921906411648,0.0549466609954834,1.36212199926376,0.246016144752502,0.361852437257767,1.54352629184723,-0.340577214956284,0.571555659174919,1.23830419778824,-0.460649967193604,0.426350325345993,0.778145372867584,-0.8202770575881,0.466259106993675,1.24817931652069,-0.9053242104128,0.871447652578354,0.665400505065918,-0.36499360203743,0.325618654489517,0.125734627246857,0.102074056863785,1.61026322841644,0.59308997541666,0.0265230042859912,1.40263855457306,0.398832380771637,-0.707817896734923,0.160422712564468,0.25533789396286,-0.817902475595474,1.73616242408752,0.277191340923309,-0.0872377157211304,1.74318224191666,0.391125233843923,0.22501003742218,0.498883694410324,-0.242220491170883,-0.136084526777267,1.54238575696945,0.373031690716743,-0.0377454459667206,1.6654344201088,0.550655797123909,-0.000225365161895752,1.59156328439713,0.503279779106379,-0.0967020988464355,-0.0127487033605576,0.976372957229614,0.300723791122437,0.479072391986847,0.962761104106903,0.344737887382507,0.738461822271347,1.03020831942558,0.0890980362892151,-0.0271859765052795,0.827658534049988,-0.0859224200248718,-0.101099103689194,1.26644784212112,-0.676518514752388,-0.35918790102005,0.551513653015718,-0.569949902855438,-0.296721816062927,0.821913063526154,-0.959419727325439,-1.16327004134655,0.76071771979332,-0.692789167165756,-1.21909683942795,0.526228637900203,-0.576848521828651,-0.5067078769207, -0.988256752490997,-0.684127759188414,-0.573804408311844,0.688364051282406,-0.86778212338686,-1.13127893209457,0.947958618402481,-1.7847473025322,-0.528813302516937,0.653028950095177,-1.59751522541046,0.545374557375908,1.06388258934021,-1.46186846494675,0.456285908818245,1.09793600440025,-1.14296972751617,1.36629772186279,0.874970555305481,-1.30513167381287,1.13226273655891,0.894683957099915,-0.94490721821785,1.31605017185211,0.47275074198842,-0.921604148367123,1.37235128879547,-0.125868823379278,-1.08429588377476,1.21031524240971,-0.0548489689826965,-0.701025202870369,1.19547052681446,-0.524187417700887,-0.722503036260605,1.26296648383141,-0.281986266374588,-0.637654572725296,1.17632813751698,-0.117699332535267,-0.542823672294617,0.840239137411118,-0.250452026724815,0.163792014122009,0.3245669901371,-0.36015397310257,0.0860353112220764,-0.115885123610497,-0.71885284781456,0.122333228588104,-0.0541491955518723,-0.396313205361366,-0.163210570812225,-0.606974974274635,-1.00093939900398,0.144031882286072,-0.387053787708282,-0.844490386545658,-0.745947822928429,-0.670133218169212,-1.14502868056297,-0.684338903146539,-0.712726354598999,-0.928996473550797,-0.996005356311798,-0.677097946405411,-0.673057392239571,-0.70960146188736,-0.704248175024986,-0.903550177812576,-0.47817362844944,-0.721485957503319,-0.988888025283813,-0.669079583138227,-0.666801556944847,-1.16919961571693,-0.592600151896477,-0.63711154460907,-0.999889522790909,-1.0406131669879,0.281390845775604,-1.00130029022694,-1.12001863121986,0.534276947379112,-0.665396749973297,-1.1850560605526,-0.0326533764600754,-0.836704678833485,-1.25743383169174,1.07246291637421,-0.607308931648731,-1.21464186906815,1.00047816336155,-0.494249224662781,-0.289910539984703,1.2982380092144,-0.961989985778928,-0.0707803728301997,1.31732052564621,-1.06310502439737,-0.22501590102911,1.21932585537434,-1.08550032228231,-0.120482064783573,1.22054098546505,-0.975003648549318,-0.0527753084897995,1.28835293650627,-1.05251803249121,0.204595293849707,1.60869938135147,-0.806260399520397,0.225163899362087, -1.2758761048317,-1.02902898937464,0.723317891359329,0.677013605833054,-1.12499786913395,0.758160121738911,0.279133141040802,-1.14873313903809,0.793804816901684,-0.0163709819316864,-1.31238168478012,0.508437987416983,-0.123723745346069,-1.16269084811211,0.53354468551877,-0.0476038455963135,-1.23404309153557,-0.0839923524401636,-0.612509191036224,-1.24818959832191,-0.0929894151935855,-0.663561329245567,-1.40609329938889,-0.172898396849632,-0.560912370681763,-1.39660909771919,0.0839898160554915,-0.612509965896606,-1.24818795919418,0.102113215001665,-0.657214120030403,-1.42698848247528,-0.0486114605046888,-0.711022153496742,-1.31336477398872,-0.0463057362578363,-0.536067485809326,-1.42962089180946,-0.804810009896755,0.0014420747756958,-1.30233728885651,-0.806609712541103,0.588519841432571,-1.16164687275887,-0.864582171394631,-0.00517293810844421,-1.31111738085747,-0.344773713672133,1.59009736776352,-0.784125957638025,-0.451375193893909,1.51647305488586,-0.826742004603148,-0.0448378399014473,1.31566751003265,-1.008719407022,0.0707739549373976,1.3235422372818,-0.898677408695221,-0.0897307172417641,1.6278777718544,-0.746525164693594,0.233062051236629,1.593357026577,-0.855151362717152,0.290108762681484,1.29824188351631,-0.907707141712308,0.427924871444702,1.18220722675323,-1.03834740072489,0.293757639825344,1.19700035452843,-0.966156662907451,0.841727413237095,0.931847810745239,-1.13506004214287,1.08922412991524,-0.0217037498950958,-1.20990145206451,1.08393153548241,0.000446110963821411,-1.24968007206917,0.661730274558067,-0.214332640171051,-0.981947496533394,1.08583974838257,-0.46688312292099,-1.02210065722466,0.522029913961887,-0.755191341042519,-0.794758483767509,0.228504940447749,-0.787134170532227,-1.06714576482773,0.0998842939734459,-0.686414569616318,-1.04196413606405,0.71472180634737,-0.755191937088966,-0.79475911706686,0.731020458042622,-0.71495133638382,-0.819183208048344,0.774802230298519,-0.790003582835197,-0.585125990211964,0.759312763810158,-0.611969023942947,-0.571365147829056,-0.258308529853821,-0.0502482056617737, --0.987126171588898,-0.152606189250946,0.846352204680443,-0.940489307045937,-0.127729594707489,-0.209277614951134,-0.944470882415771,0.544468641281128,1.1538891941309,-0.625224076211452,0.32863861322403,1.19601885974407,-0.766833499073982,0.38998407125473,1.29731202125549,-0.992359966039658,0.837134701031118,1.18807943165302,-0.690290436148643,0.647952675819397,1.06693275272846,-0.826881438493729,1.04698067903519,0.886314079165459,-0.66654135286808,1.07444582879543,1.20328670740128,-0.40324792265892,1.0629807561636,1.30360373854637,-0.721690833568573,1.05710589885712,1.15385122597218,-0.733600586652756,1.73909640312195,0.772481918334961,-0.498092904686928,1.62197369337082,-0.0592180192470551,-0.470108076930046,1.72107660770416,0.0587446987628937,-0.386969745159149,1.39415806531906,-0.630725383758545,-0.453460454940796,1.33088517189026,-0.504790514707565,0.295835077762604,0.606168493628502,-0.440513789653778,0.327914126217365,0.951014630314583,-0.767926454544067,-0.256121799349785,0.791722841560841,-1.06959487497807,-0.498976781964302,1.01488883048296,-1.34482190012932,0.0719733908772469,0.909936256706715,-0.667636781930923,0.434450548142195,0.750711694359779,-0.660647183656693,0.335591092705727,0.842631004750729,-1.34934976696968,0.0894445553421974,0.0518690943717957,-0.785460263490677,0.211865395307541,-0.137129247188568,0.965133219957352,0.337603181600571,-0.321407735347748,0.192963182926178,0.32014761865139,0.360508799552917,1.42194294929504,0.109611004590988,0.489457041025162,1.23811677098274,0.233808904886246,0.472425475716591,1.02153590321541,-0.151256442070007,0.407954760842586,-0.0117082595825195,-0.342038713395596,0.699224084615707,0.637722089886665,-0.0622754395008087,0.677316173911095,-0.267066419124603,-0.833370894193649,0.512101694941521,-0.0845235586166382,-0.460784433409572,0.703427016735077,-0.382542669773102,-0.695295266807079,0.772813111543655,-0.045377790927887,-0.554933220148087,1.13464736938477,-0.601798623800278,-0.785200074315071,0.925994396209717,-1.40034985542297,-0.595727734267712,0.967309832572937, --1.55423080921173,-0.453397272154689,0.296293341554701,-1.57731014490128,-0.44451242685318,0.337003856897354,-1.70815110206604,0.00911179184913635,0.69013899564743,-0.418024480342865,-0.0815294981002808,0.407966801362363,-1.80056393146515,-0.346113406121731,-0.0958046093583107,-1.77610170841217,0.00492480397224426,0.027110924012959,-0.775394350290298,0.2632155418396,0.0828115595504642,-0.98244372010231,0.541710257530212,-0.0918744951486588,-1.54516893625259,-0.291746377944946,-0.477058704942465,-1.78452861309052,-0.319686740636826,-1.21681600809097,-0.216683149337769,-0.0391174554824829,-0.722450852394104,-0.597853153944016,-0.188632428646088,-0.643091565929353,-1.5693251490593,-0.187399357557297,-0.75014653801918,-0.506005764007568,-0.77582579664886,-0.815785586833954,-0.13702517747879,-0.404701709747314,-0.433853837539914,-1.06840801239014,-0.855555832386017,-0.241924419999123,-1.10455398261547,-0.955979941412807,-0.361904934048653,-1.54678964614868,-0.883622020483017,-0.28200589120388,-1.02100266516209,-1.00726290047169,-0.982628457248211,-0.396796047687531,-0.579310417175293,-0.734690070152283,-1.50962823629379,-0.597724378108978,-0.896080255508423,-1.03759123384953,-0.950061038136482,-1.08367073535919,-1.53171628713608,0.419859811663628,-1.08210021257401,-1.16564199328423,0.578594654798508,-1.23884874582291,-1.11435216665268,0.336988866329193,-1.20173341035843,-1.34098291397095,-0.81265527009964,-1.36570978164673,-0.562139302492142,1.29199939966202,-1.12510097026825,-1.09993204474449,0.702553614974022,-1.31339883804321,-1.3861363530159,0.0609714090824127,-1.47894859313965,-0.882212400436401,0.828702136874199,-1.50122106075287,-0.777741104364395,-0.815136909484863,-1.47673213481903,-0.941686525940895,-0.649133458733559,-1.27865749597549,-0.666934549808502,-1.03918519616127,-1.30494368076324,-0.604939058423042,-1.10491979122162,-1.33306068181992,-1.03638924658298,-0.766406282782555,-1.3817378282547,-1.03450573980808,-0.742913901805878,-1.31385987997055,-0.689917325973511,-0.708672866225243,-1.2768412232399,-0.739897012710571, --0.843826413154602,-1.10947740077972,-0.729139387607574,-1.09945380687714,-1.16613912582397,0.696229457855225,-1.25936922430992,-0.883802935481071,0.517744109034538,-1.28699213266373,-0.811212211847305,1.45139068365097,-0.921561568975449,-0.818036377429962,1.1545392870903,-1.2722709774971,-0.970841273665428,1.07048557698727,-0.716168381273746,-0.974647492170334,1.03943079710007,-0.876310914754868,-0.785057067871094,1.49995905160904,-0.66947814822197,-0.757135927677155,1.50638604164124,-0.631551496684551,-0.972421556711197,1.62340557575226,-0.237842865288258,-0.329245883971453,1.94907879829407,-0.144248902797699,-0.476024217903614,1.79611510038376,-0.287537589669228,-0.894153296947479,1.25132101774216,-0.576339706778526,-1.38654768466949,0.752844631671906,-1.1590564250946,-0.544864811003208,1.76900523900986,-0.373342726379633,-0.688544921576977,-0.0469383001327515,-1.29204726219177,-0.576969921588898,0.50716170668602,-0.988381206989288,0.69165825471282,0.0869064331054688,-1.22139638662338,0.188148774206638,0.589339837431908,0.162438988685608,0.187553368508816,0.736048504710197,0.532366514205933,0.391488492488861,0.856711447238922,0.951823856914416,0.988034427165985,1.28782993555069,-0.55048568546772,0.762719742953777,0.578320264816284,-0.915151238441467,0.562068771570921,1.73156636953354,0.268702335655689,0.72830867767334,1.6389656662941,-0.0935294330120087,0.702015936374664,1.80767631530762,0.0716423208359629,0.596256361993776,1.76123237609863,0.274059204384685,0.344773926102205,1.88572573661804,-0.345780590549111,0.451372113078833,1.51646679639816,-0.826751582324505,0.36664542555809,1.87954115867615,-0.476456977427006,0.289740719162507,1.90432417392731,-0.33827087469399,0.346520926630525,1.52660447359085,-1.09691405296326,0.319237407124071,1.56420028209686,-1.01444271206856,0.410991318785234,1.38176828622818,-1.12157660722733,0.307928845286369,1.68537753820419,-0.891781955957413,0.40486665815115,0.457082450389862,-1.67734175920486,0.0579869414499239,-0.0389366149902344,-0.474326983094215,0.0432001032855371,0.107020258903503, --0.428724618628621,-0.066577073186636,-0.00335341691970825,-0.0816144510172307,-0.00255383551120758,-0.0614949464797974,-0.461074039340019,-0.0253404080867767,-0.00860351324081421,-0.698123574256897,-0.0715515129268169,0.00242060422897339,-0.138285317923874,0.0839811861515045,0.0918930768966675,-0.479019176214933,0.0923748388886452,0.0320449471473694,-0.91302827000618,0.150744948536158,-0.395505249500275,-0.731136076152325,0.0642054527997971,-0.338068127632141,-1.00379583239555,0.0434647276997566,0.328452885150909,0.431305319070816,0.0921502858400345,2.09212303161621e-05,4.43756580352783e-05,0.23088277131319,0.599731117486954,0.509171605110168,0.474539920687675,0.34639835357666,-0.675759684294462,1.12679672241211,-0.00705897808074951,-0.884495258331299,0.98780357837677,-0.147628486156464,-1.24374949932098,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058, --0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205, --0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954, -0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147, -0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484, --0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504, --0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959, -0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324, --0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084, -0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483, --0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209, --0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692, --1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943, --1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961, --1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232, --0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006, --1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167, --0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762, -0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532, -0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127, -0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114, --0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084, --1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146, --0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896, -0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445, --1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147, --0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068, --0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284, --0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004, --1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468, --0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305, -0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755, --0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633, --0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676, --0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546, --1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952, --1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239, --1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022, -0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618, --0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699, --1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399, --1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126, -0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522, --1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864, --1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498, --1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885, --1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959, --0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, --0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646, --0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465, --0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338, -0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533, --1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518, --0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037, --0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367, --0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105, --0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338, --0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593, -0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549, -0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146, -0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797, --1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809, --1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853, --0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836, -1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017, -0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293, -0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578, --0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408, --0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153, --0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908, --0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211, --0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163, -0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531, --0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041, --0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715, -0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714, -0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673, --0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024, -0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437, --0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443, --0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155, --1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036, -0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019, --0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159, -0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048, --0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721, -0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767, --1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871, --0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785, -0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454, -0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581, -0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148, -0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732, -0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323, -1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619, --0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641, --0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315, --1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213, --1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522, --0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043,0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664, --0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683, --1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989, -0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197, --1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522, -0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174, -0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189, --1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.936012446880341,0.940078016370535, -0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965, -0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257, --0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427, -0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759, --1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281, --0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435, --1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527, --1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817, --0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179, --0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062, -0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564, -0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438, --1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577, --0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337, -0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596, --0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578, -0.847917661070824,-1.04395531117916,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593, --0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596, -0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683, -0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305, --0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308, --1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388, -1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807563817632, "Geometry::Jaw_Right", "Shape" { - Version: 100 - Indexes: *5114 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, -3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, -3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, -4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, -4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, -5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, -5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, -5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6193,6195,6196,6198,6199,6200,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6238,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6289,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335, -6336,6338,6339,6340,6341,6343,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826, -6836,6837,6838,6839,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7146,7147,7156,7157,7159,7160,7161,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474, -7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7575,7577,7578,7580,7581,7582,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7620,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7671,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980, -7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8528,8529,8538,8539,8541,8542,8543,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669, -8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 - } - Vertices: *15342 { - a: -1.3649628162384,-0.000192165374755859,-0.000145912170410156,-1.3649625889957,-0.000127792358398438,-0.000138759613037109,-1.36496222019196,-0.000192165374755859,-0.000145912170410156,-1.3649628162384,-0.000224590301513672,-0.000141143798828125,-1.3649626262486,-0.000304698944091797,-0.000152587890625,-1.3649628162384,-0.000224590301513672,-0.000141143798828125,-1.36496257781982,-0.000175952911376953,-0.000134706497192383,-1.3649625889957,-0.000128269195556641,-0.000123023986816406,-1.36496269702911,-0.000175952911376953,-0.000134706497192383,-1.36496257781982,-0.000240325927734375,-0.000120162963867188,-1.3649625889957,-0.000304698944091797,-0.000130653381347656,-1.36496251821518,-0.000240325927734375,-0.000119209289550781,-1.3649628162384,-0.000192642211914063,-0.000104427337646484,-1.3649625889957,-0.00016021728515625,-6.22272491455078e-05,-1.36496257781982,-0.000192642211914063,-0.000104427337646484,-1.3649625889957,-0.000304222106933594,-0.000125885009765625,-1.36496257781982,-0.000223636627197266,-9.25064086914063e-05,-1.3649625889957,-0.000207901000976563,-5.00679016113281e-05,-1.36496245861053,-0.000223636627197266,-9.25064086914063e-05,-1.3649625480175,-0.0003204345703125,-0.000124454498291016,-1.36496257781982,-0.000288963317871094,-9.87052917480469e-05,-1.36496254988015,-0.000288009643554688,-6.29425048828125e-05,-1.36496269702911,-0.000288963317871094,-9.87052917480469e-05,-1.3649626430124,-0.000352859497070313,-0.0001220703125,-1.36496257781982,-0.000352382659912109,-0.000112056732177734,-1.36496264114976,-0.000352859497070313,-8.86917114257813e-05,-1.36496245861053,-0.000352382659912109,-0.000112056732177734,-1.36496259085834,-0.000416278839111328,-0.000121116638183594,-1.3649628162384,-0.000417232513427734,-0.000117301940917969,-1.36496259644628,-0.000417232513427734,-9.44137573242188e-05,-1.36496257781982,-0.000417232513427734,-0.000117301940917969,-1.36496276594698,-0.000448226928710938,-0.000116348266601563,-1.36496269702911,-0.000449180603027344,-0.000108718872070313,-1.36496260389686, --0.000448226928710938,-9.5367431640625e-05,-1.36496269702911,-0.000449180603027344,-0.000108718872070313,-1.36496260017157,-0.00048065185546875,-0.000111579895019531,-1.36496245861053,-0.000464916229248047,-0.000104904174804688,-1.3649625852704,-0.00048065185546875,-0.000102996826171875,-1.36496269702911,-0.000464916229248047,-0.000104904174804688,-1.3649628162384,-0.000256061553955078,-0.000145912170410156,-1.36496239900589,-0.000256061553955078,-0.000131607055664063,-1.3649628162384,-0.000256061553955078,-0.000145912170410156,-1.36496257781982,-0.000256061553955078,-0.000131607055664063,-1.36496248282492,-0.000304222106933594,-0.000138759613037109,-1.36496257781982,-0.000288009643554688,-0.000150203704833984,-1.3649628162384,-0.000224590301513672,-0.000137805938720703,-1.36496257781982,-0.000192642211914063,-0.000142812728881836,-1.36496269702911,-0.00016021728515625,-0.000130891799926758,-1.36496245861053,-0.00016021728515625,-0.000143527984619141,-1.3649628162384,-0.00016021728515625,-0.000140905380249023,-1.3649628162384,-0.000144481658935547,-0.00012516975402832,-1.36496257781982,-0.000143527984619141,-0.00014042854309082,-1.3649628162384,-0.000144481658935547,-0.000138282775878906,-1.36496278643608,-0.000128269195556641,-0.000123023986816406,-1.3649625889957,-0.000127792358398438,-0.000136375427246094,-1.36496251821518,-0.000127792358398438,-0.000138998031616211,-1.36496260762215,-0.000128269195556641,-0.000136613845825195,-1.36496251821518,-0.000128269195556641,-0.000123023986816406,-1.36496257781982,-0.000127792358398438,-0.000138998031616211,-1.36496266722679,-0.000128269195556641,-0.000136613845825195,-1.36496257781982,-0.000128746032714844,-0.000123739242553711,-1.36496257781982,-0.000128269195556641,-0.000139474868774414,-1.36496269702911,-0.000128269195556641,-0.000136852264404297,-1.36496257781982,-0.00016021728515625,-0.000130891799926758,-1.36496245861053,-0.000192642211914063,-0.000142812728881836,-1.36496257781982,-0.00016021728515625,-0.000143527984619141,-1.36496257781982,-0.00016021728515625, --0.000140905380249023,-1.36496269702911,-0.000192165374755859,-0.000136375427246094,-1.3649628162384,-0.000256061553955078,-0.000136375427246094,-1.36496257781982,-0.000288009643554688,-0.000134468078613281,-1.36496258154511,-0.000303745269775391,-0.000145435333251953,-1.3649628162384,-0.000288486480712891,-0.000141620635986328,-1.36496257781982,-0.000257015228271484,-0.000136375427246094,-1.36496257781982,-0.000224590301513672,-0.000129222869873047,-1.36496269702911,-0.000207901000976563,-0.000116825103759766,-1.3649628162384,-0.000208854675292969,-0.000127315521240234,-1.36496245861053,-0.000175952911376953,-0.000119924545288086,-1.36496245861053,-0.000175952911376953,-8.96453857421875e-05,-1.36496245861053,-0.00016021728515625,-0.000110387802124023,-1.36496269702911,-0.00016021728515625,-6.77108764648438e-05,-1.36496245861053,-0.000144481658935547,-9.72747802734375e-05,-1.36496257781982,-0.00016021728515625,-6.22272491455078e-05,-1.3649625889957,-0.000127792358398438,-9.27448272705078e-05,-1.36496257781982,-0.000128269195556641,-9.27448272705078e-05,-1.36496269702911,-0.00016021728515625,-6.22272491455078e-05,-1.36496266722679,-0.000128269195556641,-9.27448272705078e-05,-1.36496257781982,-0.00016021728515625,-6.34193420410156e-05,-1.36496257781982,-0.000144481658935547,-9.41753387451172e-05,-1.3649628162384,-0.000175952911376953,-8.96453857421875e-05,-1.36496257781982,-0.000175952911376953,-0.000119924545288086,-1.3649628162384,-0.00016021728515625,-0.000110387802124023,-1.36496269702911,-0.000192642211914063,-0.000110626220703125,-1.36496257781982,-0.000192165374755859,-0.000123023986816406,-1.36496257781982,-0.000288009643554688,-0.000123023986816406,-1.3649625889957,-0.000304698944091797,-0.000127792358398438,-1.3649628162384,-0.000272274017333984,-0.000126361846923828,-1.3649628162384,-0.000272274017333984,-0.000123977661132813,-1.36496239900589,-0.000288009643554688,-0.000123023986816406,-1.36496278643608,-0.000272274017333984,-0.000126361846923828,-1.36496269702911,-0.000272274017333984,-0.000123977661132813, --1.36496245861053,-0.000240325927734375,-0.000113487243652344,-1.3649628162384,-0.000224590301513672,-0.000112533569335938,-1.3649628162384,-0.000192165374755859,-9.48905944824219e-05,-1.3649628162384,-0.000208377838134766,-7.29560852050781e-05,-1.36496269702911,-0.000192642211914063,-7.72476196289063e-05,-1.36496257781982,-0.000207901000976563,-4.43458557128906e-05,-1.36496245861053,-0.000175952911376953,-5.03063201904297e-05,-1.36496251821518,-0.000207901000976563,-4.57763671875e-05,-1.3649625889957,-0.000175952911376953,-5.00679016113281e-05,-1.3649625480175,-0.000175952911376953,-4.86373901367188e-05,-1.36496269702911,-0.000207901000976563,-4.57763671875e-05,-1.36496260762215,-0.000175952911376953,-4.86373901367188e-05,-1.36496269702911,-0.000207901000976563,-4.10079956054688e-05,-1.36496257781982,-0.000175952911376953,-4.60147857666016e-05,-1.36496245861053,-0.000208377838134766,-7.29560852050781e-05,-1.36496269702911,-0.000192165374755859,-9.48905944824219e-05,-1.36496269702911,-0.000192642211914063,-7.72476196289063e-05,-1.36496269702911,-0.000224590301513672,-0.000102996826171875,-1.36496269702911,-0.000208377838134766,-0.000104427337646484,-1.36496257781982,-0.000304222106933594,-0.000123977661132813,-1.3649625889957,-0.0003204345703125,-0.000124931335449219,-1.36496257781982,-0.000288963317871094,-0.000123977661132813,-1.36496251821518,-0.000304222106933594,-0.000123977661132813,-1.36496275663376,-0.000288963317871094,-0.000123977661132813,-1.36496245861053,-0.000288486480712891,-0.000118732452392578,-1.36496269702911,-0.000256538391113281,-0.000115871429443359,-1.3649628162384,-0.000240325927734375,-9.34600830078125e-05,-1.36496233940125,-0.000288009643554688,-8.44001770019531e-05,-1.36496233940125,-0.000256061553955078,-7.53402709960938e-05,-1.36496233940125,-0.000288963317871094,-6.00814819335938e-05,-1.36496257781982,-0.000256061553955078,-4.91142272949219e-05,-1.36496239900589,-0.000288963317871094,-6.00814819335938e-05,-1.3649625889957,-0.000256061553955078,-5.43594360351563e-05,-1.36496251821518,-0.000256538391113281, --5.05447387695313e-05,-1.36496257781982,-0.000288963317871094,-6.00814819335938e-05,-1.36496257781982,-0.000256538391113281,-5.05447387695313e-05,-1.3649628162384,-0.000288009643554688,-5.340576171875e-05,-1.36496269702911,-0.000256061553955078,-4.33921813964844e-05,-1.36496269702911,-0.000288009643554688,-8.44001770019531e-05,-1.36496269702911,-0.000240325927734375,-9.34600830078125e-05,-1.36496269702911,-0.000256061553955078,-7.53402709960938e-05,-1.36496269702911,-0.000288963317871094,-0.000108242034912109,-1.36496245861053,-0.000256061553955078,-0.000104427337646484,-1.36496257781982,-0.000352859497070313,-0.000119209289550781,-1.3649625852704,-0.000336170196533203,-0.000123977661132813,-1.36496257781982,-0.000336170196533203,-0.000121593475341797,-1.36496245861053,-0.000352859497070313,-0.000119209289550781,-1.36496287584305,-0.000336170196533203,-0.000121593475341797,-1.36496269702911,-0.000352859497070313,-0.000115871429443359,-1.36496245861053,-0.0003204345703125,-0.000116348266601563,-1.3649628162384,-0.0003204345703125,-0.000106334686279297,-1.36496257781982,-0.000352859497070313,-0.000102043151855469,-1.36496233940125,-0.0003204345703125,-9.34600830078125e-05,-1.36496245861053,-0.000352859497070313,-8.67843627929688e-05,-1.36496233940125,-0.0003204345703125,-7.34329223632813e-05,-1.36496257781982,-0.000351905822753906,-8.58306884765625e-05,-1.3649625889957,-0.0003204345703125,-7.58171081542969e-05,-1.36496287584305,-0.0003204345703125,-7.43865966796875e-05,-1.36496278643608,-0.000351905822753906,-8.58306884765625e-05,-1.36496257781982,-0.0003204345703125,-7.43865966796875e-05,-1.3649628162384,-0.000352859497070313,-8.29696655273438e-05,-1.36496269702911,-0.0003204345703125,-6.91413879394531e-05,-1.36496245861053,-0.000352859497070313,-0.000102043151855469,-1.36496269702911,-0.0003204345703125,-0.000106334686279297,-1.36496269702911,-0.0003204345703125,-9.34600830078125e-05,-1.36496269702911,-0.000352382659912109,-0.000116825103759766,-1.36496269702911,-0.0003204345703125,-0.000113010406494141,-1.36496266722679, --0.000416755676269531,-0.000117301940917969,-1.36496261321008,-0.000384807586669922,-0.000122547149658203,-1.3649628162384,-0.000384330749511719,-0.000118255615234375,-1.36496257781982,-0.000416755676269531,-0.000117301940917969,-1.36496248841286,-0.000384330749511719,-0.000118255615234375,-1.36496257781982,-0.000416278839111328,-0.000116348266601563,-1.36496269702911,-0.000384330749511719,-0.000115871429443359,-1.36496269702911,-0.000384807586669922,-0.000115871429443359,-1.36496245861053,-0.000416278839111328,-0.000108718872070313,-1.36496222019196,-0.000384807586669922,-0.000107288360595703,-1.36496257781982,-0.000416278839111328,-9.1552734375e-05,-1.36496269702911,-0.000384807586669922,-9.1552734375e-05,-1.36496263742447,-0.000417232513427734,-9.34600830078125e-05,-1.36496261507273,-0.000384807586669922,-9.29832458496094e-05,-1.36496257781982,-0.000384330749511719,-9.1552734375e-05,-1.36496266722679,-0.000417232513427734,-9.34600830078125e-05,-1.36496272683144,-0.000384330749511719,-9.1552734375e-05,-1.3649628162384,-0.000416755676269531,-8.67843627929688e-05,-1.36496293544769,-0.000384807586669922,-8.63075256347656e-05,-1.36496257781982,-0.000416278839111328,-0.000108718872070313,-1.36496257781982,-0.000384807586669922,-0.000115871429443359,-1.3649628162384,-0.000384807586669922,-0.000107288360595703,-1.36496257781982,-0.000417232513427734,-0.000120162963867188,-1.36496269702911,-0.000384807586669922,-0.000120162963867188,-1.3649628162384,-0.000448703765869141,-0.000112533569335938,-1.36496276035905,-0.000432014465332031,-0.000118255615234375,-1.36496266722679,-0.000432968139648438,-0.000116348266601563,-1.36496260762215,-0.000448703765869141,-0.000112533569335938,-1.36496278643608,-0.000432968139648438,-0.000116348266601563,-1.36496263742447,-0.000448226928710938,-0.000111579895019531,-1.36496293544769,-0.000432491302490234,-0.000115394592285156,-1.36496245861053,-0.000432491302490234,-0.00011444091796875,-1.36496257781982,-0.000448226928710938,-0.000102996826171875,-1.36496269702911,-0.000448703765869141,-0.000105857849121094, --1.36496269702911,-0.000449180603027344,-9.25064086914063e-05,-1.36496269702911,-0.000448226928710938,-9.25064086914063e-05,-1.36496260762215,-0.000448703765869141,-9.63211059570313e-05,-1.36496257781982,-0.000448226928710938,-9.5367431640625e-05,-1.36496257781982,-0.000449180603027344,-9.34600830078125e-05,-1.36496260762215,-0.000448703765869141,-9.63211059570313e-05,-1.36496263742447,-0.000449180603027344,-9.34600830078125e-05,-1.36496257781982,-0.000448703765869141,-9.1552734375e-05,-1.36496257781982,-0.000448226928710938,-8.96453857421875e-05,-1.3649628162384,-0.000448226928710938,-0.000102996826171875,-1.36496269702911,-0.000432491302490234,-0.00011444091796875,-1.36496269702911,-0.000448703765869141,-0.000105857849121094,-1.36496269702911,-0.000448226928710938,-0.000111579895019531,-1.3649628162384,-0.000432968139648438,-0.000115394592285156,-1.36496260762215,-0.00048065185546875,-0.000111579895019531,-1.36496277153492,-0.00048065185546875,-0.00011444091796875,-1.36496260762215,-0.00048065185546875,-0.000112533569335938,-1.36496260762215,-0.00048065185546875,-0.000111579895019531,-1.36496248841286,-0.00048065185546875,-0.000112533569335938,-1.36496275663376,-0.00048065185546875,-0.000108718872070313,-1.3649622797966,-0.000464916229248047,-0.000111579895019531,-1.3649628162384,-0.000464916229248047,-0.000107765197753906,-1.3649628162384,-0.000463962554931641,-0.000102043151855469,-1.36496257781982,-0.000464916229248047,-0.000102043151855469,-1.36496257781982,-0.00048065185546875,-9.918212890625e-05,-1.36496245861053,-0.000463962554931641,-9.63211059570313e-05,-1.36496257781982,-0.00048065185546875,-0.000101089477539063,-1.36496259272099,-0.000464916229248047,-9.82284545898438e-05,-1.36496266722679,-0.000463962554931641,-9.72747802734375e-05,-1.36496257781982,-0.00048065185546875,-0.000101089477539063,-1.36496287584305,-0.000463962554931641,-9.72747802734375e-05,-1.36496257781982,-0.00048065185546875,-9.918212890625e-05,-1.36496257781982,-0.000464439392089844,-9.44137573242188e-05,-1.36496269702911,-0.000463962554931641, --0.000102043151855469,-1.3649628162384,-0.000464916229248047,-0.000107765197753906,-1.3649628162384,-0.000464916229248047,-0.000102043151855469,-1.3649628162384,-0.000464439392089844,-0.0001068115234375,-1.36496269702911,-0.000464916229248047,-0.000110626220703125,-1.36496257781982,-0.000496387481689453,-0.000107765197753906,-1.36496248841286,-0.00048065185546875,-0.000107765197753906,-1.36496245861053,-0.00048065185546875,-9.918212890625e-05,-1.36496251821518,-0.00048065185546875,-0.000102996826171875,-1.36496251821518,-0.00048065185546875,-0.000107765197753906,-1.36496257781982,-0.00048065185546875,-9.918212890625e-05,-1.36496257781982,-0.00048065185546875,-0.000102996826171875,-1.36496257781982,-0.000143527984619141,-0.00014042854309082,-1.36496269702911,-0.000144481658935547,-0.00012516975402832,-1.36496269702911,-0.000144481658935547,-0.000138282775878906,-1.3649628162384,-0.000224590301513672,-0.000138759613037109,-1.36496257781982,-0.00016021728515625,-6.77108764648438e-05,-1.36496257781982,-0.000144481658935547,-9.72747802734375e-05,-1.36496257781982,-0.000207901000976563,-4.43458557128906e-05,-1.3649628162384,-0.000175952911376953,-5.03063201904297e-05,-1.36496222019196,-0.000288963317871094,-6.00814819335938e-05,-1.36496245861053,-0.000256061553955078,-4.91142272949219e-05,-1.36496269702911,-0.000352859497070313,-8.67843627929688e-05,-1.36496269702911,-0.0003204345703125,-7.34329223632813e-05,-1.36496269702911,-0.000416278839111328,-9.1552734375e-05,-1.36496269702911,-0.000384807586669922,-9.1552734375e-05,-1.3649628162384,-0.000449180603027344,-9.25064086914063e-05,-1.36496257781982,-0.000448226928710938,-9.25064086914063e-05,-1.36496257781982,-0.000463962554931641,-9.63211059570313e-05,-1.36496257781982,-0.00048065185546875,-0.000108718872070313,-1.36496257781982,-0.00048065185546875,-0.000102996826171875,-1.36496257781982,-0.000448226928710938,-0.000111579895019531,-1.36496257781982,-0.000464916229248047,-0.000111579895019531,-1.36496269702911,-0.000416278839111328,-0.000116348266601563,-1.3649628162384, --0.000432491302490234,-0.000115394592285156,-1.3649628162384,-0.000352859497070313,-0.000115871429443359,-1.36496257781982,-0.000384330749511719,-0.000115871429443359,-1.36496269702911,-0.000288486480712891,-0.000118732452392578,-1.3649628162384,-0.0003204345703125,-0.000116348266601563,-1.36496269702911,-0.000240325927734375,-0.000113487243652344,-1.36496269702911,-0.000256538391113281,-0.000115871429443359,-1.36496269702911,-0.000207901000976563,-0.000116825103759766,-1.36496257781982,-0.000224590301513672,-0.000112533569335938,-1.3649628162384,-0.000224113464355469,-0.000129222869873047,-1.36496269702911,-0.000208854675292969,-0.000127315521240234,-1.36496245861053,-0.000192165374755859,-0.000136375427246094,-1.3649628162384,-0.000128269195556641,-0.000139474868774414,-1.3649628162384,-0.000128746032714844,-0.000123739242553711,-1.36496269702911,-0.000128269195556641,-0.000136852264404297,-1.3649628162384,-0.000192642211914063,-0.000110626220703125,-1.36496257781982,-0.000192165374755859,-0.000123023986816406,-1.3649628162384,-0.000224590301513672,-0.000102996826171875,-1.36496257781982,-0.000208377838134766,-0.000104427337646484,-1.36496305465698,-0.000288963317871094,-0.000108242034912109,-1.36496233940125,-0.000256061553955078,-0.000104427337646484,-1.36496317386627,-0.000352382659912109,-0.000116825103759766,-1.3649628162384,-0.0003204345703125,-0.000113010406494141,-1.3649628162384,-0.000417232513427734,-0.000120162963867188,-1.36496245861053,-0.000384807586669922,-0.000120162963867188,-1.3649628162384,-0.000448226928710938,-0.000111579895019531,-1.3649628162384,-0.000432968139648438,-0.000115394592285156,-1.36496257781982,-0.000464439392089844,-0.0001068115234375,-1.3649628162384,-0.000464916229248047,-0.000110626220703125,-1.36496269702911,-0.00048065185546875,-0.000102996826171875,-1.36496263742447,-0.000448703765869141,-9.1552734375e-05,-1.36496251821518,-0.000464439392089844,-9.44137573242188e-05,-1.36496245861053,-0.000416755676269531,-8.67843627929688e-05,-1.36496251821518,-0.000448226928710938,-8.96453857421875e-05, --1.36496245861053,-0.000352859497070313,-8.29696655273438e-05,-1.36496269702911,-0.000384807586669922,-8.63075256347656e-05,-1.36496269702911,-0.000288009643554688,-5.340576171875e-05,-1.36496245861053,-0.0003204345703125,-6.91413879394531e-05,-1.36496269702911,-0.000207901000976563,-4.10079956054688e-05,-1.36496257781982,-0.000256061553955078,-4.33921813964844e-05,-1.3649628162384,-0.00016021728515625,-6.34193420410156e-05,-1.36496257781982,-0.000175952911376953,-4.60147857666016e-05,-1.3649622797966,-0.000144481658935547,-9.41753387451172e-05,-1.36496245861053,-0.000288963317871094,-0.000150203704833984,-1.36496245861053,-0.000288009643554688,-0.000134468078613281,-1.36496245861053,-0.000288486480712891,-0.000142097473144531,-1.22846579551697,-0.000173091888427734,-0.000131607055664063,-1.22846472263336,-0.000173091888427734,-0.000131607055664063,-1.22846472263336,-0.000202178955078125,-0.000126361846923828,-1.22846475802362,-0.000274181365966797,-0.000136852264404297,-1.22846472263336,-0.000202178955078125,-0.000126361846923828,-1.22846472263336,-0.000158786773681641,-0.000121116638183594,-1.22846472263336,-0.000158786773681641,-0.000121116638183594,-1.22846484184265,-0.000231266021728516,-0.000131607055664063,-1.22846472263336,-0.000230312347412109,-0.000131130218505859,-1.22846484184265,-0.000258922576904297,-0.000134944915771484,-1.22846472263336,-0.000202655792236328,-0.000123977661132813,-1.22846472263336,-0.000173568725585938,-0.000128269195556641,-1.22846472263336,-0.000173568725585938,-0.000128269195556641,-1.22846472263336,-0.000173091888427734,-0.000123023986816406,-1.22846472263336,-0.000202178955078125,-0.000125408172607422,-1.22846472263336,-0.000173091888427734,-0.000123023986816406,-1.22846472263336,-0.000259876251220703,-0.000135421752929688,-1.22853147983551,-0.000216007232666016,-0.000131607055664063,-1.22846476361156,-0.000303268432617188,-0.000156402587890625,-1.22839796543121,-0.000216007232666016,-0.000132083892822266,-1.22846476174891,-0.000461578369140625,-8.20159912109375e-05,-1.22840845584869, --0.000447273254394531,-8.10623168945313e-05,-1.22838735580444,-0.00038909912109375,-7.82012939453125e-05,-1.22835898399353,-0.000303268432617188,-6.96182250976563e-05,-1.2283570766449,-0.000245094299316406,-6.19888305664063e-05,-1.22846476174891,-0.000447273254394531,-0.000149726867675781,-1.22841119766235,-0.000432968139648438,-0.000147819519042969,-1.22838759422302,-0.00037384033203125,-0.000144004821777344,-1.22835612297058,-0.000303268432617188,-0.000134944915771484,-1.22835326194763,-0.000246047973632813,-0.000126361846923828,-1.22843408584595,-0.000447273254394531,-0.000121116638183594,-1.22843432426453,-0.000447273254394531,-8.10623168945313e-05,-1.22841429710388,-0.000432491302490234,-0.000123023986816406,-1.22843241691589,-0.000432014465332031,-0.000149726867675781,-1.22846476174891,-0.000446796417236328,-0.000123977661132813,-1.22839999198914,-0.000403404235839844,-0.000118255615234375,-1.22839224338531,-0.000418663024902344,-8.0108642578125e-05,-1.22838950157166,-0.000374794006347656,-0.000111579895019531,-1.22839891910553,-0.00040435791015625,-0.000146865844726563,-1.22837328910828,-0.000346183776855469,-0.000112533569335938,-1.22837519645691,-0.000345706939697266,-7.34329223632813e-05,-1.22836184501648,-0.000302791595458984,-0.000104904174804688,-1.22837233543396,-0.000347137451171875,-0.000140190124511719,-1.22835612297058,-0.000274181365966797,-0.000115394592285156,-1.22835230827332,-0.000274181365966797,-6.53266906738281e-05,-1.22835516929626,-0.000244617462158203,-0.000101566314697266,-1.22835421562195,-0.000274658203125,-0.000133037567138672,-1.22844278812408,-0.000462055206298828,-0.000113487243652344,-1.22846476174891,-0.000461578369140625,-0.000110626220703125,-1.22844183444977,-0.000461578369140625,-8.10623168945313e-05,-1.22843325138092,-0.000447750091552734,-0.000108718872070313,-1.22844851016998,-0.000446796417236328,-0.000133514404296875,-1.22839796543121,-0.000418663024902344,-0.000109672546386719,-1.22841036319733,-0.000432491302490234,-0.000109672546386719,-1.228391289711,-0.000432968139648438, --7.72476196289063e-05,-1.22839593887329,-0.000403881072998047,-0.000105857849121094,-1.22840654850006,-0.000418663024902344,-0.000127792358398438,-1.22837615013123,-0.000361442565917969,-0.000102043151855469,-1.22838842868805,-0.000374794006347656,-0.000102996826171875,-1.22837901115417,-0.000375270843505859,-7.34329223632813e-05,-1.22837138175964,-0.000346660614013672,-9.918212890625e-05,-1.22838091850281,-0.000361442565917969,-0.000120162963867188,-1.22835111618042,-0.000288486480712891,-8.96453857421875e-05,-1.2283570766449,-0.000302314758300781,-9.20295715332031e-05,-1.22835230827332,-0.000288486480712891,-6.67572021484375e-05,-1.22834753990173,-0.000273227691650391,-8.7738037109375e-05,-1.22835803031921,-0.000288963317871094,-0.000112533569335938,-1.22841799259186,-0.000447750091552734,-0.000113487243652344,-1.22841715812683,-0.000446796417236328,-8.20159912109375e-05,-1.22842264175415,-0.000432491302490234,-0.000130653381347656,-1.22842371463776,-0.000432491302490234,-0.000141143798828125,-1.22841429710388,-0.000418186187744141,-0.000138282775878906,-1.22842085361481,-0.000432968139648438,-0.000147819519042969,-1.22843515872955,-0.000432491302490234,-0.000140190124511719,-1.22844848036766,-0.000447750091552734,-0.000142097473144531,-1.22844853997231,-0.000447273254394531,-0.000149726867675781,-1.22846476174891,-0.000446796417236328,-0.000142097473144531,-1.22838950157166,-0.000403881072998047,-0.000105857849121094,-1.22838640213013,-0.000403404235839844,-7.72476196289063e-05,-1.22839605808258,-0.000389575958251953,-0.000128746032714844,-1.22839605808258,-0.00038909912109375,-0.000138282775878906,-1.22838950157166,-0.000374794006347656,-0.000133514404296875,-1.22839426994324,-0.00038909912109375,-0.000145912170410156,-1.22840189933777,-0.00040435791015625,-0.000136375427246094,-1.22840642929077,-0.000418186187744141,-0.000138282775878906,-1.22840368747711,-0.000418663024902344,-0.000146865844726563,-1.22836184501648,-0.000318050384521484,-9.77516174316406e-05,-1.22836470603943,-0.000331878662109375,-6.96182250976563e-05, --1.22836852073669,-0.000318050384521484,-0.000123500823974609,-1.22836756706238,-0.000332355499267578,-0.000130653381347656,-1.22835898399353,-0.000303745269775391,-0.000125885009765625,-1.22836470603943,-0.000332832336425781,-0.000139236450195313,-1.22837424278259,-0.000346660614013672,-0.000131607055664063,-1.22838187217712,-0.000360965728759766,-0.000134468078613281,-1.22837996482849,-0.000361442565917969,-0.000142097473144531,-1.22834968566895,-0.0002593994140625,-8.72611999511719e-05,-1.22835040092468,-0.000258922576904297,-6.34193420410156e-05,-1.22835397720337,-0.000245094299316406,-9.05990600585938e-05,-1.22835612297058,-0.000245094299316406,-0.000110149383544922,-1.22835612297058,-0.000245094299316406,-0.000123977661132813,-1.22835397720337,-0.000245571136474609,-0.000118732452392578,-1.22835397720337,-0.000245094299316406,-0.000131607055664063,-1.22835612297058,-0.000274181365966797,-0.000124454498291016,-1.2283570766449,-0.000288486480712891,-0.000125885009765625,-1.22835540771484,-0.000288009643554688,-0.000133991241455078,-1.22845521569252,-0.000461578369140625,-0.000110626220703125,-1.22845536470413,-0.000476360321044922,-8.29696655273438e-05,-1.22845631837845,-0.000447750091552734,-0.000142097473144531,-1.22845616936684,-0.000446319580078125,-0.000149726867675781,-1.22845619916916,-0.000447750091552734,-0.000131607055664063,-1.22844183444977,-0.000446796417236328,-0.000142097473144531,-1.22844088077545,-0.000447273254394531,-0.000148773193359375,-1.22843408584595,-0.000446796417236328,-0.000110626220703125,-1.22843432426453,-0.000462055206298828,-8.29696655273438e-05,-1.22844004631042,-0.000446796417236328,-0.00012969970703125,-1.22842752933502,-0.000447750091552734,-0.000111579895019531,-1.22842752933502,-0.000461578369140625,-8.20159912109375e-05,-1.22842931747437,-0.000432491302490234,-0.000140190124511719,-1.22842645645142,-0.000432014465332031,-0.000147819519042969,-1.22842860221863,-0.000432968139648438,-0.000128746032714844,-1.22841906547546,-0.000432968139648438,-0.000140190124511719,-1.22841608524323, --0.000432968139648438,-0.000148773193359375,-1.22841131687164,-0.000433444976806641,-0.000111579895019531,-1.22840845584869,-0.000447273254394531,-8.0108642578125e-05,-1.22841596603394,-0.000432491302490234,-0.000127792358398438,-1.22840464115143,-0.000432491302490234,-0.000108718872070313,-1.22839891910553,-0.000446796417236328,-7.82012939453125e-05,-1.22841036319733,-0.000417709350585938,-0.000139236450195313,-1.22840750217438,-0.000417709350585938,-0.000147819519042969,-1.22841131687164,-0.000418663024902344,-0.000124931335449219,-1.22840261459351,-0.000403404235839844,-0.000138282775878906,-1.22840082645416,-0.000403404235839844,-0.00014495849609375,-1.22839510440826,-0.000417232513427734,-0.000108718872070313,-1.22838926315308,-0.000418663024902344,-7.82012939453125e-05,-1.22840178012848,-0.000403881072998047,-0.000123023986816406,-1.228391289711,-0.00040435791015625,-0.000105857849121094,-1.22838735580444,-0.000418186187744141,-7.82012939453125e-05,-1.22839879989624,-0.000403881072998047,-0.0001373291015625,-1.22839689254761,-0.00040435791015625,-0.000144004821777344,-1.22839879989624,-0.000403881072998047,-0.000123977661132813,-1.22839212417603,-0.00038909912109375,-0.000134468078613281,-1.22839033603668,-0.00038909912109375,-0.000144004821777344,-1.22838735580444,-0.000389575958251953,-0.000102996826171875,-1.22838664054871,-0.00038909912109375,-7.53402709960938e-05,-1.22839224338531,-0.000389575958251953,-0.000119209289550781,-1.22838282585144,-0.000375270843505859,-0.000102043151855469,-1.22838282585144,-0.00038909912109375,-7.2479248046875e-05,-1.22838473320007,-0.000374794006347656,-0.000134468078613281,-1.22838377952576,-0.00037384033203125,-0.000144004821777344,-1.22838664054871,-0.000374317169189453,-0.000121116638183594,-1.22837710380554,-0.000360965728759766,-0.000132560729980469,-1.22837615013123,-0.000361442565917969,-0.000142097473144531,-1.22837042808533,-0.000346660614013672,-9.918212890625e-05,-1.22837424278259,-0.000345706939697266,-7.2479248046875e-05,-1.22837424278259,-0.000346660614013672, --0.000118255615234375,-1.22836661338806,-0.000346660614013672,-9.72747802734375e-05,-1.22836947441101,-0.000346660614013672,-7.15255737304688e-05,-1.22837138175964,-0.000331401824951172,-0.000131607055664063,-1.22836852073669,-0.000331878662109375,-0.000139236450195313,-1.22837233543396,-0.000331878662109375,-0.000119209289550781,-1.22836375236511,-0.000318050384521484,-0.000128746032714844,-1.22836089134216,-0.000316619873046875,-0.000136852264404297,-1.2283570766449,-0.000302791595458984,-9.44137573242188e-05,-1.22835898399353,-0.000302791595458984,-6.77108764648438e-05,-1.22836470603943,-0.000302791595458984,-0.000115394592285156,-1.22845527529716,-0.000461578369140625,-9.1552734375e-05,-1.22846476174891,-0.000462055206298828,-9.25064086914063e-05,-1.22834753990173,-0.000258922576904297,-7.10487365722656e-05,-1.22835540771484,-0.000245094299316406,-7.10487365722656e-05,-1.22843325138092,-0.000447273254394531,-9.1552734375e-05,-1.22842752933502,-0.000446796417236328,-9.1552734375e-05,-1.22841608524323,-0.000447273254394531,-8.96453857421875e-05,-1.2284083366394,-0.000446796417236328,-8.7738037109375e-05,-1.22843325138092,-0.000461578369140625,-8.96453857421875e-05,-1.22840857505798,-0.000432491302490234,-8.7738037109375e-05,-1.22844088077545,-0.000461101531982422,-9.1552734375e-05,-1.22839987277985,-0.000432968139648438,-8.86917114257813e-05,-1.228391289711,-0.000432491302490234,-8.86917114257813e-05,-1.22839021682739,-0.000418186187744141,-8.96453857421875e-05,-1.22839224338531,-0.000418186187744141,-8.7738037109375e-05,-1.22838747501373,-0.000418186187744141,-8.67843627929688e-05,-1.22838664054871,-0.00040435791015625,-8.48770141601563e-05,-1.22838568687439,-0.00038909912109375,-8.392333984375e-05,-1.22838652133942,-0.00038909912109375,-8.48770141601563e-05,-1.22838091850281,-0.000389575958251953,-8.29696655273438e-05,-1.22837615013123,-0.000374794006347656,-8.20159912109375e-05,-1.22837138175964,-0.000346660614013672,-8.10623168945313e-05,-1.22837328910828,-0.000345706939697266,-8.10623168945313e-05,-1.22836661338806, --0.000346660614013672,-7.91549682617188e-05,-1.22836184501648,-0.000331878662109375,-7.82012939453125e-05,-1.2283570766449,-0.000303268432617188,-7.72476196289063e-05,-1.2283570766449,-0.000302791595458984,-7.53402709960938e-05,-1.2283501625061,-0.000288963317871094,-7.43865966796875e-05,-1.22834920883179,-0.000274181365966797,-7.2479248046875e-05,-1.22846476174891,-0.000461578369140625,-8.10623168945313e-05,-1.22841310501099,-0.000432968139648438,-8.10623168945313e-05,-1.228391289711,-0.00038909912109375,-7.82012939453125e-05,-1.22836947441101,-0.000302791595458984,-6.91413879394531e-05,-1.22836375236511,-0.000245094299316406,-6.19888305664063e-05,-1.22846476361156,-0.000417232513427734,-0.000153541564941406,-1.22846476174891,-0.000374794006347656,-0.000164985656738281,-1.22843527793884,-0.000447273254394531,-0.000120162963867188,-1.22843515872955,-0.000446796417236328,-8.10623168945313e-05,-1.22841787338257,-0.000418186187744141,-0.000123977661132813,-1.22846476174891,-0.000432491302490234,-0.000147819519042969,-1.22846476174891,-0.000447273254394531,-0.000123977661132813,-1.22840464115143,-0.000403881072998047,-0.000119209289550781,-1.2283970117569,-0.000418186187744141,-7.72476196289063e-05,-1.22839307785034,-0.000374317169189453,-0.000111579895019531,-1.22846476174891,-0.000403881072998047,-0.000161170959472656,-1.22838568687439,-0.000331878662109375,-0.000111579895019531,-1.22838282585144,-0.000346660614013672,-7.34329223632813e-05,-1.22837233543396,-0.000288486480712891,-0.000108718872070313,-1.22836947441101,-0.000259876251220703,-0.00011444091796875,-1.22836852073669,-0.000274181365966797,-6.38961791992188e-05,-1.22836661338806,-0.000245094299316406,-0.000102519989013672,-1.22844848036766,-0.000446796417236328,-0.000110626220703125,-1.22846476174891,-0.000446796417236328,-0.000110626220703125,-1.22844758629799,-0.000461578369140625,-8.20159912109375e-05,-1.22843515872955,-0.000446796417236328,-0.000110626220703125,-1.22845047712326,-0.000447750091552734,-0.000132560729980469,-1.22841143608093,-0.000418186187744141, --0.000109672546386719,-1.22841513156891,-0.000432491302490234,-0.000111579895019531,-1.2284038066864,-0.000432491302490234,-7.91549682617188e-05,-1.2284027338028,-0.00040435791015625,-0.0001068115234375,-1.22841429710388,-0.000417709350585938,-0.000125885009765625,-1.22839605808258,-0.000360965728759766,-0.000100135803222656,-1.22839319705963,-0.000375270843505859,-0.000102996826171875,-1.22839415073395,-0.000360488891601563,-7.34329223632813e-05,-1.22838747501373,-0.000346660614013672,-0.000101089477539063,-1.22839224338531,-0.000360965728759766,-0.0001220703125,-1.22837328910828,-0.000288486480712891,-8.96453857421875e-05,-1.22837138175964,-0.000288486480712891,-9.48905944824219e-05,-1.22837042808533,-0.000288963317871094,-6.67572021484375e-05,-1.22837233543396,-0.000274181365966797,-8.82148742675781e-05,-1.22837042808533,-0.000288486480712891,-0.000112533569335938,-1.22842562198639,-0.000432491302490234,-0.000111579895019531,-1.22842276096344,-0.000447750091552734,-8.0108642578125e-05,-1.22842943668365,-0.000432491302490234,-0.00012969970703125,-1.22843039035797,-0.000432968139648438,-0.000136375427246094,-1.22842264175415,-0.000418186187744141,-0.0001373291015625,-1.22846476174891,-0.000432968139648438,-0.000150680541992188,-1.22843992710114,-0.000432491302490234,-0.000138282775878906,-1.22845044732094,-0.000447273254394531,-0.000139236450195313,-1.22846476174891,-0.000432968139648438,-0.000145912170410156,-1.22846476174891,-0.000447273254394531,-0.000138282775878906,-1.2284027338028,-0.000389575958251953,-0.000102996826171875,-1.22839903831482,-0.000403881072998047,-7.43865966796875e-05,-1.22840476036072,-0.00038909912109375,-0.000123023986816406,-1.22840452194214,-0.00038909912109375,-0.000132560729980469,-1.22839891910553,-0.000374794006347656,-0.000132560729980469,-1.22846476174891,-0.000389575958251953,-0.000162124633789063,-1.2284095287323,-0.000403881072998047,-0.000134468078613281,-1.2284152507782,-0.000418663024902344,-0.000135421752929688,-1.22846476174891,-0.000418186187744141,-0.000155448913574219, --1.22838282585144,-0.000317573547363281,-9.48905944824219e-05,-1.22837901115417,-0.000317573547363281,-6.96182250976563e-05,-1.22838187217712,-0.000317573547363281,-0.000120639801025391,-1.22838091850281,-0.000317573547363281,-0.000126838684082031,-1.22837805747986,-0.000288486480712891,-0.000125885009765625,-1.22838664054871,-0.000346660614013672,-0.000128746032714844,-1.22839319705963,-0.000360965728759766,-0.000130653381347656,-1.22846476174891,-0.000360965728759766,-0.000165939331054688,-1.22837042808533,-0.0002593994140625,-8.72611999511719e-05,-1.22836756706238,-0.000259876251220703,-6.29425048828125e-05,-1.22836661338806,-0.000244617462158203,-9.05990600585938e-05,-1.22836756706238,-0.000245094299316406,-0.000109195709228516,-1.22837424278259,-0.000244617462158203,-0.000120639801025391,-1.22837328910828,-0.000259876251220703,-0.0001220703125,-1.22837519645691,-0.000274181365966797,-0.000124454498291016,-1.22845903038979,-0.000447750091552734,-0.000110626220703125,-1.22845809161663,-0.000462055206298828,-8.20159912109375e-05,-1.22845615446568,-0.000446796417236328,-0.000139236450195313,-1.22845715284348,-0.000447750091552734,-0.000131607055664063,-1.22844564914703,-0.000432968139648438,-0.000139236450195313,-1.22843909263611,-0.000447273254394531,-0.000110626220703125,-1.2284380197525,-0.000461101531982422,-8.0108642578125e-05,-1.22844278812408,-0.000432491302490234,-0.000128746032714844,-1.22843325138092,-0.000447750091552734,-0.000110626220703125,-1.228431224823,-0.000447273254394531,-8.0108642578125e-05,-1.22843432426453,-0.000432968139648438,-0.0001373291015625,-1.22843337059021,-0.000432968139648438,-0.000127792358398438,-1.22842657566071,-0.000418663024902344,-0.000136375427246094,-1.22841894626617,-0.000432491302490234,-0.000109672546386719,-1.22841620445251,-0.000447750091552734,-7.91549682617188e-05,-1.22842288017273,-0.000418663024902344,-0.000126838684082031,-1.22841513156891,-0.000418186187744141,-0.000108718872070313,-1.2284095287323,-0.000432491302490234,-7.91549682617188e-05,-1.22841799259186, --0.000418186187744141,-0.000136375427246094,-1.22841906547546,-0.000417232513427734,-0.000126838684082031,-1.22841227054596,-0.000403404235839844,-0.000136375427246094,-1.22840666770935,-0.000403404235839844,-0.000107765197753906,-1.22839975357056,-0.000417709350585938,-7.91549682617188e-05,-1.22840845584869,-0.000403881072998047,-0.0001220703125,-1.22840571403503,-0.000403881072998047,-0.000105857849121094,-1.22839987277985,-0.000403404235839844,-7.82012939453125e-05,-1.22840654850006,-0.00038909912109375,-0.000133514404296875,-1.22840642929077,-0.000403881072998047,-0.000123023986816406,-1.22840178012848,-0.00038909912109375,-0.000132560729980469,-1.2283980846405,-0.000389575958251953,-0.000102996826171875,-1.22839498519897,-0.00038909912109375,-7.62939453125e-05,-1.22839987277985,-0.000375747680664063,-0.000118255615234375,-1.22839510440826,-0.000375270843505859,-0.000102043151855469,-1.22839415073395,-0.000374317169189453,-7.43865966796875e-05,-1.22839593887329,-0.000374794006347656,-0.000132560729980469,-1.22839426994324,-0.000375270843505859,-0.000118255615234375,-1.22839021682739,-0.000360965728759766,-0.000131607055664063,-1.22839140892029,-0.000346183776855469,-0.000100135803222656,-1.22838854789734,-0.000346660614013672,-7.15255737304688e-05,-1.22838759422302,-0.000346660614013672,-0.000118255615234375,-1.22838664054871,-0.000332355499267578,-9.67979431152344e-05,-1.22838282585144,-0.000332355499267578,-7.00950622558594e-05,-1.22838377952576,-0.000331878662109375,-0.00012969970703125,-1.22838473320007,-0.000331878662109375,-0.000118732452392578,-1.22837901115417,-0.000302791595458984,-0.000126361846923828,-1.22837710380554,-0.000302314758300781,-9.48905944824219e-05,-1.22837424278259,-0.000302791595458984,-6.81877136230469e-05,-1.22837615013123,-0.000302791595458984,-0.000117301940917969,-1.2284591794014,-0.000462055206298828,-9.1552734375e-05,-1.22846476174891,-0.000461578369140625,-9.25064086914063e-05,-1.22837042808533,-0.000259876251220703,-7.00950622558594e-05,-1.22836565971375,-0.000245571136474609, --7.05718994140625e-05,-1.22843515872955,-0.000446796417236328,-8.96453857421875e-05,-1.22843313217163,-0.000447273254394531,-9.05990600585938e-05,-1.22842371463776,-0.000447750091552734,-9.1552734375e-05,-1.22841715812683,-0.000432968139648438,-8.7738037109375e-05,-1.22843813896179,-0.000447750091552734,-8.7738037109375e-05,-1.22841322422028,-0.000432491302490234,-9.05990600585938e-05,-1.22844755649567,-0.000461578369140625,-9.1552734375e-05,-1.22841322422028,-0.000432491302490234,-8.7738037109375e-05,-1.22840738296509,-0.000418663024902344,-8.86917114257813e-05,-1.22840368747711,-0.000418663024902344,-8.67843627929688e-05,-1.22839987277985,-0.000418663024902344,-8.67843627929688e-05,-1.22840368747711,-0.000403404235839844,-8.58306884765625e-05,-1.22840178012848,-0.00038909912109375,-8.48770141601563e-05,-1.22839796543121,-0.000389575958251953,-8.48770141601563e-05,-1.2283923625946,-0.00038909912109375,-8.48770141601563e-05,-1.22839510440826,-0.000375270843505859,-8.29696655273438e-05,-1.2283970117569,-0.000360965728759766,-8.0108642578125e-05,-1.22839212417603,-0.000346660614013672,-8.0108642578125e-05,-1.22838568687439,-0.000346183776855469,-7.91549682617188e-05,-1.22838568687439,-0.000331401824951172,-8.0108642578125e-05,-1.22838282585144,-0.000317096710205078,-7.86781311035156e-05,-1.22837710380554,-0.000303745269775391,-7.62939453125e-05,-1.22837233543396,-0.000302314758300781,-7.62939453125e-05,-1.22837424278259,-0.000288486480712891,-7.48634338378906e-05,-1.22837233543396,-0.000274181365966797,-7.2479248046875e-05,-1.22845712304115,-0.000461578369140625,-8.10623168945313e-05,-1.22846476174891,-0.000461101531982422,-7.91549682617188e-05,-1.22844481468201,-0.000462055206298828,-8.0108642578125e-05,-1.22843623161316,-0.000462055206298828,-7.72476196289063e-05,-1.22843515872955,-0.000446796417236328,-8.10623168945313e-05,-1.22842943668365,-0.000446796417236328,-8.0108642578125e-05,-1.2284197807312,-0.000447750091552734,-8.0108642578125e-05,-1.22841227054596,-0.000446796417236328,-7.72476196289063e-05,-1.22841131687164, --0.000432968139648438,-7.91549682617188e-05,-1.22840356826782,-0.000432491302490234,-7.72476196289063e-05,-1.22839605808258,-0.000432491302490234,-7.62939453125e-05,-1.22839307785034,-0.000418186187744141,-7.53402709960938e-05,-1.22839415073395,-0.000418186187744141,-7.72476196289063e-05,-1.22839307785034,-0.000418186187744141,-7.72476196289063e-05,-1.22839319705963,-0.000403881072998047,-7.43865966796875e-05,-1.22839140892029,-0.00038909912109375,-7.62939453125e-05,-1.22838938236237,-0.000389575958251953,-7.62939453125e-05,-1.22838830947876,-0.000375270843505859,-7.43865966796875e-05,-1.22838664054871,-0.000375747680664063,-7.43865966796875e-05,-1.22838187217712,-0.000345706939697266,-7.2479248046875e-05,-1.22837901115417,-0.000346660614013672,-7.2479248046875e-05,-1.22837615013123,-0.000331878662109375,-6.96182250976563e-05,-1.22837233543396,-0.000317096710205078,-6.96182250976563e-05,-1.22836565971375,-0.000302314758300781,-6.72340393066406e-05,-1.22836375236511,-0.000302314758300781,-6.866455078125e-05,-1.22836089134216,-0.000288486480712891,-6.4849853515625e-05,-1.22836089134216,-0.000274181365966797,-6.62803649902344e-05,-1.22835898399353,-0.000259876251220703,-6.19888305664063e-05,-1.22836089134216,-0.000245094299316406,-6.103515625e-05,-1.22845616936684,-0.000447750091552734,-0.000134468078613281,-1.22846476174891,-0.000447273254394531,-0.000130653381347656,-1.22841429710388,-0.000418186187744141,-0.000127792358398438,-1.22841703891754,-0.000432968139648438,-0.00012969970703125,-1.22842288017273,-0.000432968139648438,-0.000134468078613281,-1.22842836380005,-0.000432491302490234,-0.000131607055664063,-1.22841143608093,-0.000418663024902344,-0.000130653381347656,-1.22843420505524,-0.000446796417236328,-0.000125885009765625,-1.22840666770935,-0.000418663024902344,-0.000130653381347656,-1.22844088077545,-0.000447750091552734,-0.000133514404296875,-1.22840285301208,-0.00040435791015625,-0.000125885009765625,-1.22844859957695,-0.000447273254394531,-0.000136375427246094,-1.22840070724487,-0.000403881072998047,-0.0001220703125, --1.22839987277985,-0.000403881072998047,-0.000126838684082031,-1.22839605808258,-0.000389575958251953,-0.000132560729980469,-1.22839224338531,-0.000389575958251953,-0.000125885009765625,-1.22838938236237,-0.000375270843505859,-0.000117301940917969,-1.22838664054871,-0.000374317169189453,-0.000123023986816406,-1.22838091850281,-0.000360965728759766,-0.000125885009765625,-1.22837519645691,-0.000346660614013672,-0.0001220703125,-1.22837424278259,-0.000346660614013672,-0.000117301940917969,-1.22837138175964,-0.000331878662109375,-0.0001220703125,-1.22836852073669,-0.000317573547363281,-0.000125885009765625,-1.22836375236511,-0.000302791595458984,-0.000118732452392578,-1.22836089134216,-0.000302791595458984,-0.000110626220703125,-1.22835803031921,-0.000288486480712891,-0.000116348266601563,-1.22835612297058,-0.000274181365966797,-0.000117778778076172,-1.22835612297058,-0.000245094299316406,-0.000113010406494141,-1.22835516929626,-0.000244617462158203,-0.000106334686279297,-1.22836756706238,-0.000245094299316406,-0.000105857849121094,-1.22836947441101,-0.000244617462158203,-0.000113487243652344,-1.22845616936684,-0.000446796417236328,-0.000128746032714844,-1.22846476174891,-0.000446796417236328,-0.000121116638183594,-1.22845713794231,-0.000447273254394531,-0.000123977661132813,-1.22846476174891,-0.000446796417236328,-0.000120162963867188,-1.22844564914703,-0.000447750091552734,-0.000127792358398438,-1.2284380197525,-0.000447273254394531,-0.000124931335449219,-1.22843337059021,-0.000447273254394531,-0.000118255615234375,-1.22842860221863,-0.000433444976806641,-0.000125885009765625,-1.22842073440552,-0.000432491302490234,-0.000126838684082031,-1.2284152507782,-0.000432491302490234,-0.000123023986816406,-1.22841322422028,-0.000432968139648438,-0.000120162963867188,-1.2284095287323,-0.000418663024902344,-0.0001220703125,-1.2284038066864,-0.000418663024902344,-0.000123977661132813,-1.22839987277985,-0.000403404235839844,-0.000118255615234375,-1.22839891910553,-0.000403881072998047,-0.000115394592285156,-1.2283970117569,-0.000403404235839844, --0.000119209289550781,-1.22839319705963,-0.000389575958251953,-0.000123977661132813,-1.22839045524597,-0.00038909912109375,-0.000116348266601563,-1.22838938236237,-0.000374317169189453,-0.000108718872070313,-1.22838473320007,-0.000374794006347656,-0.000115394592285156,-1.22837901115417,-0.000360965728759766,-0.000116348266601563,-1.22837233543396,-0.000346183776855469,-0.000112533569335938,-1.22837233543396,-0.000346660614013672,-0.000108718872070313,-1.22837042808533,-0.000332355499267578,-0.000113487243652344,-1.22836565971375,-0.000317096710205078,-0.000117301940917969,-1.22836184501648,-0.000302791595458984,-0.000110626220703125,-1.22836089134216,-0.000302314758300781,-0.000102996826171875,-1.22835516929626,-0.000288486480712891,-0.0001068115234375,-1.22835230827332,-0.000274181365966797,-0.000107765197753906,-1.22835230827332,-0.000245571136474609,-0.000103950500488281,-1.22835421562195,-0.000244617462158203,-0.000100135803222656,-1.22836756706238,-0.000245571136474609,-9.918212890625e-05,-1.22836947441101,-0.000244617462158203,-0.000102996826171875,-1.22837138175964,-0.000274181365966797,-0.000107288360595703,-1.22837233543396,-0.000288963317871094,-0.000107765197753906,-1.22837233543396,-0.000288963317871094,-0.000105857849121094,-1.22837710380554,-0.000303745269775391,-0.000110626220703125,-1.22838282585144,-0.000317096710205078,-0.000115394592285156,-1.22838568687439,-0.000331878662109375,-0.000113010406494141,-1.22838568687439,-0.000346660614013672,-0.000108718872070313,-1.22838938236237,-0.000346183776855469,-0.000112533569335938,-1.22839415073395,-0.000360488891601563,-0.000117301940917969,-1.22839510440826,-0.000374794006347656,-0.000117301940917969,-1.22839331626892,-0.000374317169189453,-0.000110626220703125,-1.22839879989624,-0.000375270843505859,-0.000113487243652344,-1.22840368747711,-0.000389575958251953,-0.000118255615234375,-1.22840547561646,-0.000403404235839844,-0.000117301940917969,-1.22840464115143,-0.000403404235839844,-0.00011444091796875,-1.2284083366394,-0.000403404235839844,-0.000119209289550781, --1.22841429710388,-0.000418663024902344,-0.0001220703125,-1.22841799259186,-0.000418663024902344,-0.000121116638183594,-1.22841715812683,-0.000432491302490234,-0.000118255615234375,-1.22842168807983,-0.000432968139648438,-0.0001220703125,-1.22842860221863,-0.000432968139648438,-0.000123977661132813,-1.22843325138092,-0.000432491302490234,-0.000123023986816406,-1.22843515872955,-0.000447273254394531,-0.000117301940917969,-1.22844183444977,-0.000433444976806641,-0.000123023986816406,-1.22845044732094,-0.000447273254394531,-0.000127792358398438,-1.22838377952576,-0.000258922576904297,-0.000128269195556641,-1.22840189933777,-0.000244617462158203,-0.000138759613037109,-1.2283923625946,-0.000317573547363281,-0.000141620635986328,-1.22839605808258,-0.000346660614013672,-0.000143051147460938,-1.22839987277985,-0.000360965728759766,-0.000142097473144531,-1.22840642929077,-0.000374794006347656,-0.000144004821777344,-1.22840940952301,-0.00038909912109375,-0.000142097473144531,-1.22841715812683,-0.000403881072998047,-0.00014495849609375,-1.22842180728912,-0.000417709350585938,-0.000142097473144531,-1.22843039035797,-0.000417232513427734,-0.000143051147460938,-1.22843706607819,-0.000432968139648438,-0.000141143798828125,-1.22844764590263,-0.000432968139648438,-0.000143051147460938,-1.22845521569252,-0.000432491302490234,-0.000142097473144531,-1.22852098941803,-0.000447273254394531,-8.10623168945313e-05,-1.22854292392731,-0.00038909912109375,-7.82012939453125e-05,-1.22857165336609,-0.000303268432617188,-6.96182250976563e-05,-1.22857356071472,-0.000245094299316406,-6.19888305664063e-05,-1.22851812839508,-0.000432968139648438,-0.000147819519042969,-1.22854292392731,-0.00037384033203125,-0.000144004821777344,-1.22857356071472,-0.000303268432617188,-0.000134944915771484,-1.22857642173767,-0.000246047973632813,-0.000126361846923828,-1.2284961938858,-0.000447273254394531,-0.000121116638183594,-1.2284961938858,-0.000447273254394531,-8.10623168945313e-05,-1.22851622104645,-0.000432491302490234,-0.000123023986816406,-1.22849726676941,-0.000432014465332031, --0.000149726867675781,-1.22853052616119,-0.000403404235839844,-0.000118255615234375,-1.22853815555573,-0.000418663024902344,-8.0108642578125e-05,-1.22854101657867,-0.000374794006347656,-0.000111579895019531,-1.22853052616119,-0.00040435791015625,-0.000146865844726563,-1.22855639457703,-0.000346183776855469,-0.000112533569335938,-1.22855544090271,-0.000345706939697266,-7.34329223632813e-05,-1.22856783866882,-0.000302791595458984,-0.000104904174804688,-1.22855830192566,-0.000347137451171875,-0.000140190124511719,-1.22857451438904,-0.000274181365966797,-0.000115394592285156,-1.2285783290863,-0.000274181365966797,-6.53266906738281e-05,-1.22857451438904,-0.000244617462158203,-0.000101566314697266,-1.22857642173767,-0.000274658203125,-0.000133037567138672,-1.22848761081696,-0.000462055206298828,-0.000113487243652344,-1.22848868370056,-0.000461578369140625,-8.10623168945313e-05,-1.22849714756012,-0.000447750091552734,-0.000108718872070313,-1.22848188877106,-0.000446796417236328,-0.000133514404296875,-1.22853243350983,-0.000418663024902344,-0.000109672546386719,-1.2285190820694,-0.000432491302490234,-0.000109672546386719,-1.22853910923004,-0.000432968139648438,-7.72476196289063e-05,-1.22853434085846,-0.000403881072998047,-0.000105857849121094,-1.22852385044098,-0.000418663024902344,-0.000127792358398438,-1.22855448722839,-0.000361442565917969,-0.000102043151855469,-1.22854197025299,-0.000374794006347656,-0.000102996826171875,-1.22855162620544,-0.000375270843505859,-7.34329223632813e-05,-1.22855830192566,-0.000346660614013672,-9.918212890625e-05,-1.2285487651825,-0.000361442565917969,-0.000120162963867188,-1.22857928276062,-0.000288486480712891,-8.96453857421875e-05,-1.22857260704041,-0.000302314758300781,-9.20295715332031e-05,-1.2285783290863,-0.000288486480712891,-6.67572021484375e-05,-1.22858119010925,-0.000273227691650391,-8.7738037109375e-05,-1.22857260704041,-0.000288963317871094,-0.000112533569335938,-1.22851145267487,-0.000447750091552734,-0.000113487243652344,-1.2285133600235,-0.000446796417236328,-8.20159912109375e-05, --1.22850859165192,-0.000432491302490234,-0.000130653381347656,-1.22850668430328,-0.000432491302490234,-0.000141143798828125,-1.22851622104645,-0.000418186187744141,-0.000138282775878906,-1.22850859165192,-0.000432968139648438,-0.000147819519042969,-1.22849535942078,-0.000432491302490234,-0.000140190124511719,-1.22848105430603,-0.000447750091552734,-0.000142097473144531,-1.22848185896873,-0.000447273254394531,-0.000149726867675781,-1.22854101657867,-0.000403881072998047,-0.000105857849121094,-1.22854292392731,-0.000403404235839844,-7.72476196289063e-05,-1.22853434085846,-0.000389575958251953,-0.000128746032714844,-1.22853434085846,-0.00038909912109375,-0.000138282775878906,-1.22854101657867,-0.000374794006347656,-0.000133514404296875,-1.22853624820709,-0.00038909912109375,-0.000145912170410156,-1.22852861881256,-0.00040435791015625,-0.000136375427246094,-1.22852385044098,-0.000418186187744141,-0.000138282775878906,-1.22852671146393,-0.000418663024902344,-0.000146865844726563,-1.22856783866882,-0.000318050384521484,-9.77516174316406e-05,-1.22856593132019,-0.000331878662109375,-6.96182250976563e-05,-1.22856211662292,-0.000318050384521484,-0.000123500823974609,-1.22856307029724,-0.000332355499267578,-0.000130653381347656,-1.22857069969177,-0.000303745269775391,-0.000125885009765625,-1.22856497764587,-0.000332832336425781,-0.000139236450195313,-1.22855639457703,-0.000346660614013672,-0.000131607055664063,-1.2285487651825,-0.000360965728759766,-0.000134468078613281,-1.22855067253113,-0.000361442565917969,-0.000142097473144531,-1.22858119010925,-0.0002593994140625,-8.72611999511719e-05,-1.22858023643494,-0.000258922576904297,-6.34193420410156e-05,-1.22857546806335,-0.000245094299316406,-9.05990600585938e-05,-1.22857451438904,-0.000245094299316406,-0.000110149383544922,-1.22857451438904,-0.000245094299316406,-0.000123977661132813,-1.22857546806335,-0.000245571136474609,-0.000118732452392578,-1.22857642173767,-0.000245094299316406,-0.000131607055664063,-1.22857356071472,-0.000274181365966797,-0.000124454498291016,-1.22857356071472, --0.000288486480712891,-0.000125885009765625,-1.22857546806335,-0.000288009643554688,-0.000133991241455078,-1.22847428917885,-0.000461578369140625,-0.000110626220703125,-1.22847518324852,-0.000476360321044922,-8.29696655273438e-05,-1.22847425937653,-0.000447750091552734,-0.000142097473144531,-1.22847425937653,-0.000446319580078125,-0.000149726867675781,-1.22847425937653,-0.000447750091552734,-0.000131607055664063,-1.22848856449127,-0.000446796417236328,-0.000142097473144531,-1.22848963737488,-0.000447273254394531,-0.000148773193359375,-1.2284961938858,-0.000446796417236328,-0.000110626220703125,-1.22849535942078,-0.000462055206298828,-8.29696655273438e-05,-1.22848963737488,-0.000446796417236328,-0.00012969970703125,-1.22850298881531,-0.000447750091552734,-0.000111579895019531,-1.22850286960602,-0.000461578369140625,-8.20159912109375e-05,-1.22850108146667,-0.000432491302490234,-0.000140190124511719,-1.22850382328033,-0.000432014465332031,-0.000147819519042969,-1.2285019159317,-0.000432968139648438,-0.000128746032714844,-1.22851145267487,-0.000432968139648438,-0.000140190124511719,-1.2285133600235,-0.000432968139648438,-0.000148773193359375,-1.2285190820694,-0.000433444976806641,-0.000111579895019531,-1.22852098941803,-0.000447273254394531,-8.0108642578125e-05,-1.22851431369781,-0.000432491302490234,-0.000127792358398438,-1.22852575778961,-0.000432491302490234,-0.000108718872070313,-1.22853052616119,-0.000446796417236328,-7.82012939453125e-05,-1.22852003574371,-0.000417709350585938,-0.000139236450195313,-1.22852289676666,-0.000417709350585938,-0.000147819519042969,-1.2285190820694,-0.000418663024902344,-0.000124931335449219,-1.22852671146393,-0.000403404235839844,-0.000138282775878906,-1.22852861881256,-0.000403404235839844,-0.00014495849609375,-1.22853529453278,-0.000417232513427734,-0.000108718872070313,-1.22854101657867,-0.000418663024902344,-7.82012939453125e-05,-1.22852861881256,-0.000403881072998047,-0.000123023986816406,-1.22853815555573,-0.00040435791015625,-0.000105857849121094,-1.22854292392731,-0.000418186187744141, --7.82012939453125e-05,-1.22853147983551,-0.000403881072998047,-0.0001373291015625,-1.22853338718414,-0.00040435791015625,-0.000144004821777344,-1.22853052616119,-0.000403881072998047,-0.000123977661132813,-1.22853720188141,-0.00038909912109375,-0.000134468078613281,-1.22853910923004,-0.00038909912109375,-0.000144004821777344,-1.22854292392731,-0.000389575958251953,-0.000102996826171875,-1.22854387760162,-0.00038909912109375,-7.53402709960938e-05,-1.22853815555573,-0.000389575958251953,-0.000119209289550781,-1.22854781150818,-0.000375270843505859,-0.000102043151855469,-1.22854685783386,-0.00038909912109375,-7.2479248046875e-05,-1.22854471206665,-0.000374794006347656,-0.000134468078613281,-1.22854685783386,-0.00037384033203125,-0.000144004821777344,-1.22854387760162,-0.000374317169189453,-0.000121116638183594,-1.22855257987976,-0.000360965728759766,-0.000132560729980469,-1.22855448722839,-0.000361442565917969,-0.000142097473144531,-1.22856020927429,-0.000346660614013672,-9.918212890625e-05,-1.22855639457703,-0.000345706939697266,-7.2479248046875e-05,-1.22855544090271,-0.000346660614013672,-0.000118255615234375,-1.22856402397156,-0.000346660614013672,-9.72747802734375e-05,-1.22856116294861,-0.000346660614013672,-7.15255737304688e-05,-1.22855925559998,-0.000331401824951172,-0.000131607055664063,-1.22856116294861,-0.000331878662109375,-0.000139236450195313,-1.22855830192566,-0.000331878662109375,-0.000119209289550781,-1.22856688499451,-0.000318050384521484,-0.000128746032714844,-1.22856879234314,-0.000316619873046875,-0.000136852264404297,-1.22857356071472,-0.000302791595458984,-9.44137573242188e-05,-1.22857069969177,-0.000302791595458984,-6.77108764648438e-05,-1.22856593132019,-0.000302791595458984,-0.000115394592285156,-1.22847518324852,-0.000461578369140625,-9.1552734375e-05,-1.22858214378357,-0.000258922576904297,-7.10487365722656e-05,-1.22857451438904,-0.000245094299316406,-7.10487365722656e-05,-1.22849714756012,-0.000447273254394531,-9.1552734375e-05,-1.22850286960602,-0.000446796417236328,-9.1552734375e-05,-1.22851431369781, --0.000447273254394531,-8.96453857421875e-05,-1.22852194309235,-0.000446796417236328,-8.7738037109375e-05,-1.22849714756012,-0.000461578369140625,-8.96453857421875e-05,-1.22852194309235,-0.000432491302490234,-8.7738037109375e-05,-1.22848951816559,-0.000461101531982422,-9.1552734375e-05,-1.22853052616119,-0.000432968139648438,-8.86917114257813e-05,-1.22853815555573,-0.000432491302490234,-8.86917114257813e-05,-1.22854006290436,-0.000418186187744141,-8.96453857421875e-05,-1.22853720188141,-0.000418186187744141,-8.7738037109375e-05,-1.22854292392731,-0.000418186187744141,-8.67843627929688e-05,-1.22854387760162,-0.00040435791015625,-8.48770141601563e-05,-1.22854495048523,-0.00038909912109375,-8.392333984375e-05,-1.22854387760162,-0.00038909912109375,-8.48770141601563e-05,-1.22854781150818,-0.000389575958251953,-8.29696655273438e-05,-1.22855448722839,-0.000374794006347656,-8.20159912109375e-05,-1.22855830192566,-0.000346660614013672,-8.10623168945313e-05,-1.22855734825134,-0.000345706939697266,-8.10623168945313e-05,-1.22856402397156,-0.000346660614013672,-7.91549682617188e-05,-1.22856783866882,-0.000331878662109375,-7.82012939453125e-05,-1.22857356071472,-0.000303268432617188,-7.72476196289063e-05,-1.22857356071472,-0.000302791595458984,-7.53402709960938e-05,-1.22858023643494,-0.000288963317871094,-7.43865966796875e-05,-1.22858119010925,-0.000274181365966797,-7.2479248046875e-05,-1.22851717472076,-0.000432968139648438,-8.10623168945313e-05,-1.22853815555573,-0.00038909912109375,-7.82012939453125e-05,-1.22856116294861,-0.000302791595458984,-6.91413879394531e-05,-1.22856688499451,-0.000245094299316406,-6.19888305664063e-05,-1.22849440574646,-0.000447273254394531,-0.000120162963867188,-1.22849524021149,-0.000446796417236328,-8.10623168945313e-05,-1.22851240634918,-0.000418186187744141,-0.000123977661132813,-1.2285248041153,-0.000403881072998047,-0.000119209289550781,-1.22853243350983,-0.000418186187744141,-7.72476196289063e-05,-1.22853624820709,-0.000374317169189453,-0.000111579895019531,-1.22854495048523,-0.000331878662109375, --0.000111579895019531,-1.22854685783386,-0.000346660614013672,-7.34329223632813e-05,-1.22855925559998,-0.000288486480712891,-0.000108718872070313,-1.22856020927429,-0.000259876251220703,-0.00011444091796875,-1.22856116294861,-0.000274181365966797,-6.38961791992188e-05,-1.22856307029724,-0.000245094299316406,-0.000102519989013672,-1.22848105430603,-0.000446796417236328,-0.000110626220703125,-1.22848296165466,-0.000461578369140625,-8.20159912109375e-05,-1.22849535942078,-0.000446796417236328,-0.000110626220703125,-1.22847899794579,-0.000447750091552734,-0.000132560729980469,-1.2285190820694,-0.000418186187744141,-0.000109672546386719,-1.22851431369781,-0.000432491302490234,-0.000111579895019531,-1.22852671146393,-0.000432491302490234,-7.91549682617188e-05,-1.22852671146393,-0.00040435791015625,-0.0001068115234375,-1.22851622104645,-0.000417709350585938,-0.000125885009765625,-1.22853434085846,-0.000360965728759766,-0.000100135803222656,-1.22853720188141,-0.000375270843505859,-0.000102996826171875,-1.22853624820709,-0.000360488891601563,-7.34329223632813e-05,-1.22854292392731,-0.000346660614013672,-0.000101089477539063,-1.22853720188141,-0.000360965728759766,-0.0001220703125,-1.22855639457703,-0.000288486480712891,-8.96453857421875e-05,-1.22855830192566,-0.000288486480712891,-9.48905944824219e-05,-1.22856020927429,-0.000288963317871094,-6.67572021484375e-05,-1.22855734825134,-0.000274181365966797,-8.82148742675781e-05,-1.22855925559998,-0.000288486480712891,-0.000112533569335938,-1.22850489616394,-0.000432491302490234,-0.000111579895019531,-1.2285076379776,-0.000447750091552734,-8.0108642578125e-05,-1.22850096225739,-0.000432491302490234,-0.00012969970703125,-1.22850012779236,-0.000432968139648438,-0.000136375427246094,-1.2285076379776,-0.000418186187744141,-0.0001373291015625,-1.2284904718399,-0.000432491302490234,-0.000138282775878906,-1.2284791469574,-0.000447273254394531,-0.000139236450195313,-1.22852766513824,-0.000389575958251953,-0.000102996826171875,-1.22853052616119,-0.000403881072998047,-7.43865966796875e-05, --1.22852575778961,-0.00038909912109375,-0.000123023986816406,-1.22852575778961,-0.00038909912109375,-0.000132560729980469,-1.22853147983551,-0.000374794006347656,-0.000132560729980469,-1.22852098941803,-0.000403881072998047,-0.000134468078613281,-1.22851526737213,-0.000418663024902344,-0.000135421752929688,-1.22854781150818,-0.000317573547363281,-9.48905944824219e-05,-1.22855162620544,-0.000317573547363281,-6.96182250976563e-05,-1.2285487651825,-0.000317573547363281,-0.000120639801025391,-1.22854971885681,-0.000317573547363281,-0.000126838684082031,-1.22855257987976,-0.000288486480712891,-0.000125885009765625,-1.22854387760162,-0.000346660614013672,-0.000128746032714844,-1.22853720188141,-0.000360965728759766,-0.000130653381347656,-1.22855925559998,-0.0002593994140625,-8.72611999511719e-05,-1.22856307029724,-0.000259876251220703,-6.29425048828125e-05,-1.22856307029724,-0.000244617462158203,-9.05990600585938e-05,-1.22856211662292,-0.000245094299316406,-0.000109195709228516,-1.22855544090271,-0.000244617462158203,-0.000120639801025391,-1.22855734825134,-0.000259876251220703,-0.0001220703125,-1.22855544090271,-0.000274181365966797,-0.000124454498291016,-1.22847139835358,-0.000447750091552734,-0.000110626220703125,-1.22847233712673,-0.000462055206298828,-8.20159912109375e-05,-1.22847330570221,-0.000446796417236328,-0.000139236450195313,-1.22847330570221,-0.000447750091552734,-0.000131607055664063,-1.22848379611969,-0.000432968139648438,-0.000139236450195313,-1.22849154472351,-0.000447273254394531,-0.000110626220703125,-1.22849154472351,-0.000461101531982422,-8.0108642578125e-05,-1.22848761081696,-0.000432491302490234,-0.000128746032714844,-1.22849726676941,-0.000447750091552734,-0.000110626220703125,-1.22849822044373,-0.000447273254394531,-8.0108642578125e-05,-1.22849524021149,-0.000432968139648438,-0.0001373291015625,-1.22849714756012,-0.000432968139648438,-0.000127792358398438,-1.22850382328033,-0.000418663024902344,-0.000136375427246094,-1.22851049900055,-0.000432491302490234,-0.000109672546386719,-1.22851431369781, --0.000447750091552734,-7.91549682617188e-05,-1.2285076379776,-0.000418663024902344,-0.000126838684082031,-1.22851431369781,-0.000418186187744141,-0.000108718872070313,-1.22852098941803,-0.000432491302490234,-7.91549682617188e-05,-1.22851240634918,-0.000418186187744141,-0.000136375427246094,-1.22851240634918,-0.000417232513427734,-0.000126838684082031,-1.22851812839508,-0.000403404235839844,-0.000136375427246094,-1.22852385044098,-0.000403404235839844,-0.000107765197753906,-1.22853052616119,-0.000417709350585938,-7.91549682617188e-05,-1.22852194309235,-0.000403881072998047,-0.0001220703125,-1.2285248041153,-0.000403881072998047,-0.000105857849121094,-1.22853052616119,-0.000403404235839844,-7.82012939453125e-05,-1.22852385044098,-0.00038909912109375,-0.000133514404296875,-1.22852385044098,-0.000403881072998047,-0.000123023986816406,-1.22852861881256,-0.00038909912109375,-0.000132560729980469,-1.22853147983551,-0.000389575958251953,-0.000102996826171875,-1.22853434085846,-0.00038909912109375,-7.62939453125e-05,-1.22853052616119,-0.000375747680664063,-0.000118255615234375,-1.22853434085846,-0.000375270843505859,-0.000102043151855469,-1.22853624820709,-0.000374317169189453,-7.43865966796875e-05,-1.22853434085846,-0.000374794006347656,-0.000132560729980469,-1.22853624820709,-0.000375270843505859,-0.000118255615234375,-1.22853910923004,-0.000360965728759766,-0.000131607055664063,-1.22853910923004,-0.000346183776855469,-0.000100135803222656,-1.22854101657867,-0.000346660614013672,-7.15255737304688e-05,-1.22854292392731,-0.000346660614013672,-0.000118255615234375,-1.22854292392731,-0.000332355499267578,-9.67979431152344e-05,-1.22854781150818,-0.000332355499267578,-7.00950622558594e-05,-1.22854685783386,-0.000331878662109375,-0.00012969970703125,-1.22854590415955,-0.000331878662109375,-0.000118732452392578,-1.22855162620544,-0.000302791595458984,-0.000126361846923828,-1.22855353355408,-0.000302314758300781,-9.48905944824219e-05,-1.22855639457703,-0.000302791595458984,-6.81877136230469e-05,-1.22855448722839,-0.000302791595458984, --0.000117301940917969,-1.22847136855125,-0.000462055206298828,-9.1552734375e-05,-1.22855925559998,-0.000259876251220703,-7.00950622558594e-05,-1.22856402397156,-0.000245571136474609,-7.05718994140625e-05,-1.22849535942078,-0.000446796417236328,-8.96453857421875e-05,-1.22849726676941,-0.000447273254394531,-9.05990600585938e-05,-1.22850668430328,-0.000447750091552734,-9.1552734375e-05,-1.2285133600235,-0.000432968139648438,-8.7738037109375e-05,-1.22849154472351,-0.000447750091552734,-8.7738037109375e-05,-1.22851622104645,-0.000432491302490234,-9.05990600585938e-05,-1.22848200798035,-0.000461578369140625,-9.1552734375e-05,-1.22851717472076,-0.000432491302490234,-8.7738037109375e-05,-1.22852289676666,-0.000418663024902344,-8.86917114257813e-05,-1.22852671146393,-0.000418663024902344,-8.67843627929688e-05,-1.22853052616119,-0.000418663024902344,-8.67843627929688e-05,-1.22852671146393,-0.000403404235839844,-8.58306884765625e-05,-1.22852861881256,-0.00038909912109375,-8.48770141601563e-05,-1.22853243350983,-0.000389575958251953,-8.48770141601563e-05,-1.22853815555573,-0.00038909912109375,-8.48770141601563e-05,-1.22853529453278,-0.000375270843505859,-8.29696655273438e-05,-1.22853338718414,-0.000360965728759766,-8.0108642578125e-05,-1.22853910923004,-0.000346660614013672,-8.0108642578125e-05,-1.22854483127594,-0.000346183776855469,-7.91549682617188e-05,-1.22854387760162,-0.000331401824951172,-8.0108642578125e-05,-1.22854781150818,-0.000317096710205078,-7.86781311035156e-05,-1.22855353355408,-0.000303745269775391,-7.62939453125e-05,-1.22855830192566,-0.000302314758300781,-7.62939453125e-05,-1.22855639457703,-0.000288486480712891,-7.48634338378906e-05,-1.22855734825134,-0.000274181365966797,-7.2479248046875e-05,-1.22847332060337,-0.000461578369140625,-8.10623168945313e-05,-1.22848471999168,-0.000462055206298828,-8.0108642578125e-05,-1.22849333286285,-0.000462055206298828,-7.72476196289063e-05,-1.22849535942078,-0.000446796417236328,-8.10623168945313e-05,-1.22850012779236,-0.000446796417236328,-8.0108642578125e-05,-1.22851049900055, --0.000447750091552734,-8.0108642578125e-05,-1.22851812839508,-0.000446796417236328,-7.72476196289063e-05,-1.2285190820694,-0.000432968139648438,-7.91549682617188e-05,-1.22852671146393,-0.000432491302490234,-7.72476196289063e-05,-1.22853434085846,-0.000432491302490234,-7.62939453125e-05,-1.22853720188141,-0.000418186187744141,-7.53402709960938e-05,-1.22853529453278,-0.000418186187744141,-7.72476196289063e-05,-1.22853624820709,-0.000418186187744141,-7.72476196289063e-05,-1.22853720188141,-0.000403881072998047,-7.43865966796875e-05,-1.22853910923004,-0.00038909912109375,-7.62939453125e-05,-1.22854006290436,-0.000389575958251953,-7.62939453125e-05,-1.22854197025299,-0.000375270843505859,-7.43865966796875e-05,-1.22854387760162,-0.000375747680664063,-7.43865966796875e-05,-1.2285487651825,-0.000345706939697266,-7.2479248046875e-05,-1.22855162620544,-0.000346660614013672,-7.2479248046875e-05,-1.22855448722839,-0.000331878662109375,-6.96182250976563e-05,-1.22855830192566,-0.000317096710205078,-6.96182250976563e-05,-1.22856402397156,-0.000302314758300781,-6.72340393066406e-05,-1.22856688499451,-0.000302314758300781,-6.866455078125e-05,-1.22856879234314,-0.000288486480712891,-6.4849853515625e-05,-1.22856974601746,-0.000274181365966797,-6.62803649902344e-05,-1.22857165336609,-0.000259876251220703,-6.19888305664063e-05,-1.22856974601746,-0.000245094299316406,-6.103515625e-05,-1.22847425937653,-0.000447750091552734,-0.000134468078613281,-1.22851526737213,-0.000418186187744141,-0.000127792358398438,-1.2285133600235,-0.000432968139648438,-0.00012969970703125,-1.2285076379776,-0.000432968139648438,-0.000134468078613281,-1.22850096225739,-0.000432491302490234,-0.000131607055664063,-1.2285190820694,-0.000418663024902344,-0.000130653381347656,-1.22849535942078,-0.000446796417236328,-0.000125885009765625,-1.22852385044098,-0.000418663024902344,-0.000130653381347656,-1.22848951816559,-0.000447750091552734,-0.000133514404296875,-1.22852766513824,-0.00040435791015625,-0.000125885009765625,-1.22848090529442,-0.000447273254394531,-0.000136375427246094, --1.22852957248688,-0.000403881072998047,-0.0001220703125,-1.22853052616119,-0.000403881072998047,-0.000126838684082031,-1.22853434085846,-0.000389575958251953,-0.000132560729980469,-1.22853815555573,-0.000389575958251953,-0.000125885009765625,-1.22854006290436,-0.000375270843505859,-0.000117301940917969,-1.22854387760162,-0.000374317169189453,-0.000123023986816406,-1.2285487651825,-0.000360965728759766,-0.000125885009765625,-1.22855544090271,-0.000346660614013672,-0.0001220703125,-1.22855639457703,-0.000346660614013672,-0.000117301940917969,-1.22855830192566,-0.000331878662109375,-0.0001220703125,-1.22856211662292,-0.000317573547363281,-0.000125885009765625,-1.22856688499451,-0.000302791595458984,-0.000118732452392578,-1.22856879234314,-0.000302791595458984,-0.000110626220703125,-1.22857260704041,-0.000288486480712891,-0.000116348266601563,-1.22857356071472,-0.000274181365966797,-0.000117778778076172,-1.22857451438904,-0.000245094299316406,-0.000113010406494141,-1.22857546806335,-0.000244617462158203,-0.000106334686279297,-1.22856211662292,-0.000245094299316406,-0.000105857849121094,-1.22856020927429,-0.000244617462158203,-0.000113487243652344,-1.22847424447536,-0.000446796417236328,-0.000128746032714844,-1.22847239673138,-0.000447273254394531,-0.000123977661132813,-1.22848477959633,-0.000447750091552734,-0.000127792358398438,-1.22849237918854,-0.000447273254394531,-0.000124931335449219,-1.2284961938858,-0.000447273254394531,-0.000118255615234375,-1.2285019159317,-0.000433444976806641,-0.000125885009765625,-1.22850954532623,-0.000432491302490234,-0.000126838684082031,-1.22851526737213,-0.000432491302490234,-0.000123023986816406,-1.22851717472076,-0.000432968139648438,-0.000120162963867188,-1.22852098941803,-0.000418663024902344,-0.0001220703125,-1.22852671146393,-0.000418663024902344,-0.000123977661132813,-1.22853052616119,-0.000403404235839844,-0.000118255615234375,-1.22853147983551,-0.000403881072998047,-0.000115394592285156,-1.22853338718414,-0.000403404235839844,-0.000119209289550781,-1.22853624820709,-0.000389575958251953, --0.000123977661132813,-1.22854006290436,-0.00038909912109375,-0.000116348266601563,-1.22854101657867,-0.000374317169189453,-0.000108718872070313,-1.22854483127594,-0.000374794006347656,-0.000115394592285156,-1.22855067253113,-0.000360965728759766,-0.000116348266601563,-1.22855734825134,-0.000346183776855469,-0.000112533569335938,-1.22855734825134,-0.000346660614013672,-0.000108718872070313,-1.22856020927429,-0.000332355499267578,-0.000113487243652344,-1.22856402397156,-0.000317096710205078,-0.000117301940917969,-1.22856879234314,-0.000302791595458984,-0.000110626220703125,-1.22856974601746,-0.000302314758300781,-0.000102996826171875,-1.22857546806335,-0.000288486480712891,-0.0001068115234375,-1.22857737541199,-0.000274181365966797,-0.000107765197753906,-1.22857737541199,-0.000245571136474609,-0.000103950500488281,-1.22857546806335,-0.000244617462158203,-0.000100135803222656,-1.22856307029724,-0.000245571136474609,-9.918212890625e-05,-1.22856020927429,-0.000244617462158203,-0.000102996826171875,-1.22855830192566,-0.000274181365966797,-0.000107288360595703,-1.22855734825134,-0.000288963317871094,-0.000107765197753906,-1.22855830192566,-0.000288963317871094,-0.000105857849121094,-1.22855353355408,-0.000303745269775391,-0.000110626220703125,-1.22854781150818,-0.000317096710205078,-0.000115394592285156,-1.22854399681091,-0.000331878662109375,-0.000113010406494141,-1.22854387760162,-0.000346660614013672,-0.000108718872070313,-1.22854197025299,-0.000346183776855469,-0.000112533569335938,-1.22853624820709,-0.000360488891601563,-0.000117301940917969,-1.22853529453278,-0.000374794006347656,-0.000117301940917969,-1.22853624820709,-0.000374317169189453,-0.000110626220703125,-1.22853052616119,-0.000375270843505859,-0.000113487243652344,-1.22852575778961,-0.000389575958251953,-0.000118255615234375,-1.22852385044098,-0.000403404235839844,-0.000117301940917969,-1.22852575778961,-0.000403404235839844,-0.00011444091796875,-1.22852194309235,-0.000403404235839844,-0.000119209289550781,-1.22851622104645,-0.000418663024902344,-0.0001220703125, --1.22851240634918,-0.000418663024902344,-0.000121116638183594,-1.2285133600235,-0.000432491302490234,-0.000118255615234375,-1.22850859165192,-0.000432968139648438,-0.0001220703125,-1.22850096225739,-0.000432968139648438,-0.000123977661132813,-1.22849726676941,-0.000432491302490234,-0.000123023986816406,-1.22849524021149,-0.000447273254394531,-0.000117301940917969,-1.22848856449127,-0.000433444976806641,-0.000123023986816406,-1.2284799516201,-0.000447273254394531,-0.000127792358398438,-1.22854685783386,-0.000258922576904297,-0.000128269195556641,-1.22852861881256,-0.000244617462158203,-0.000138759613037109,-1.22853815555573,-0.000317573547363281,-0.000141620635986328,-1.22853434085846,-0.000346660614013672,-0.000143051147460938,-1.22853052616119,-0.000360965728759766,-0.000142097473144531,-1.22852289676666,-0.000374794006347656,-0.000144004821777344,-1.22852003574371,-0.00038909912109375,-0.000142097473144531,-1.2285133600235,-0.000403881072998047,-0.00014495849609375,-1.22850859165192,-0.000417709350585938,-0.000142097473144531,-1.22850012779236,-0.000417232513427734,-0.000143051147460938,-1.22849249839783,-0.000432968139648438,-0.000141143798828125,-1.22848188877106,-0.000432968139648438,-0.000143051147460938,-1.22847521305084,-0.000432491302490234,-0.000142097473144531,-1.22846956551075,-0.000447273254394531,-0.000142097473144531,-1.2284694686532,-0.000446319580078125,-0.000150680541992188,-1.22846948355436,-0.000446796417236328,-0.000131607055664063,-1.22846956551075,-0.000446796417236328,-0.000126838684082031,-1.22846854478121,-0.000447273254394531,-0.000123977661132813,-1.22846852242947,-0.000461578369140625,-0.000110626220703125,-1.22846852242947,-0.000462055206298828,-9.1552734375e-05,-1.22846853733063,-0.000461578369140625,-8.20159912109375e-05,-1.22846853733063,-0.000462055206298828,-8.20159912109375e-05,-1.22846871614456,-0.000461101531982422,-8.20159912109375e-05,-1.22846757620573,-0.000461101531982422,-9.34600830078125e-05,-1.22846761345863,-0.000447273254394531,-0.000110626220703125,-1.22846853733063, --0.000447750091552734,-0.000123023986816406,-1.22846858203411,-0.000446796417236328,-0.000127792358398438,-1.22846857458353,-0.000447750091552734,-0.000139236450195313,-1.22846852988005,-0.000432968139648438,-0.000144004821777344,-1.22847139835358,-0.000432968139648438,-0.000146865844726563,-1.22847521305084,-0.000432491302490234,-0.000149726867675781,-1.2284791469574,-0.000418663024902344,-0.000152587890625,-1.22848185896873,-0.000417709350585938,-0.000153541564941406,-1.2284848690033,-0.000403881072998047,-0.000157356262207031,-1.22848761081696,-0.00038909912109375,-0.000159263610839844,-1.2284904718399,-0.000375270843505859,-0.00016021728515625,-1.22849345207214,-0.000360965728759766,-0.000163078308105469,-1.2284961938858,-0.000346660614013672,-0.000162124633789063,-1.22849905490875,-0.000317573547363281,-0.000158309936523438,-1.2284609824419,-0.000447273254394531,-0.000142097473144531,-1.22846096754074,-0.000446319580078125,-0.000150680541992188,-1.22846096009016,-0.000446796417236328,-0.000131607055664063,-1.22846089303493,-0.000446796417236328,-0.000126838684082031,-1.22846188396215,-0.000447273254394531,-0.000123977661132813,-1.22846192866564,-0.000461578369140625,-0.000110626220703125,-1.2284619063139,-0.000462055206298828,-9.1552734375e-05,-1.22846189886332,-0.000461578369140625,-8.20159912109375e-05,-1.22846193611622,-0.000462055206298828,-8.20159912109375e-05,-1.22846184670925,-0.000461101531982422,-8.20159912109375e-05,-1.22846285253763,-0.000461101531982422,-9.34600830078125e-05,-1.22846188396215,-0.000447273254394531,-0.000110626220703125,-1.22846189141273,-0.000447750091552734,-0.000123023986816406,-1.22846090048552,-0.000446796417236328,-0.000127792358398438,-1.22846093028784,-0.000447750091552734,-0.000139236450195313,-1.22846189886332,-0.000432968139648438,-0.000144004821777344,-1.2284591794014,-0.000432968139648438,-0.000146865844726563,-1.22845524549484,-0.000432491302490234,-0.000149726867675781,-1.22845134139061,-0.000418663024902344,-0.000152587890625,-1.22844853997231,-0.000417709350585938, --0.000153541564941406,-1.22844564914703,-0.000403881072998047,-0.000157356262207031,-1.22844278812408,-0.00038909912109375,-0.000159263610839844,-1.22843992710114,-0.000375270843505859,-0.00016021728515625,-1.22843706607819,-0.000360965728759766,-0.000163078308105469,-1.22843337059021,-0.000346660614013672,-0.000162124633789063,-1.22843050956726,-0.000317573547363281,-0.000158309936523438,-1.22836852073669,-0.000230312347412109,-0.000105857849121094,-1.22836756706238,-0.000231266021728516,-0.000100612640380859,-1.22836661338806,-0.000230312347412109,-9.01222229003906e-05,-1.22836565971375,-0.000245571136474609,-7.00950622558594e-05,-1.22836661338806,-0.000230789184570313,-9.77516174316406e-05,-1.22837615013123,-0.000231266021728516,-0.000123500823974609,-1.22856307029724,-0.000231266021728516,-0.000100612640380859,-1.22856116294861,-0.000230312347412109,-0.000105857849121094,-1.22856402397156,-0.000245571136474609,-7.00950622558594e-05,-1.22856307029724,-0.000230312347412109,-9.01222229003906e-05,-1.22856307029724,-0.000230789184570313,-9.77516174316406e-05,-1.22855353355408,-0.000230789184570313,-0.000123023986816406,-1.22835445404053,-0.000245094299316406,-7.15255737304688e-05,-1.22835612297058,-0.000245094299316406,-6.24656677246094e-05,-1.22835993766785,-0.000245571136474609,-6.15119934082031e-05,-1.2283627986908,-0.000245571136474609,-6.29425048828125e-05,-1.22836565971375,-0.000245094299316406,-7.15255737304688e-05,-1.22836661338806,-0.000245094299316406,-9.05990600585938e-05,-1.22836756706238,-0.000245571136474609,-9.918212890625e-05,-1.22836661338806,-0.000245571136474609,-0.000101089477539063,-1.22836852073669,-0.000245571136474609,-0.000105381011962891,-1.22837615013123,-0.000230312347412109,-0.000122547149658203,-1.22855353355408,-0.000230312347412109,-0.000122547149658203,-1.22856116294861,-0.000245571136474609,-0.000105381011962891,-1.22856307029724,-0.000245571136474609,-0.000101089477539063,-1.22856307029724,-0.000245571136474609,-9.918212890625e-05,-1.22856307029724,-0.000245094299316406,-9.05990600585938e-05, --1.22856402397156,-0.000245094299316406,-7.15255737304688e-05,-1.22856688499451,-0.000245571136474609,-6.29425048828125e-05,-1.22857069969177,-0.000245571136474609,-6.15119934082031e-05,-1.22857451438904,-0.000245094299316406,-6.24656677246094e-05,-1.22857546806335,-0.000245094299316406,-7.15255737304688e-05,-1.22857546806335,-0.000244617462158203,-9.05990600585938e-05,-1.22835516929626,-0.000244617462158203,-9.05990600585938e-05,-1.22855925559998,-0.000230789184570313,-0.000113487243652344,-1.22856020927429,-0.000231266021728516,-0.00011444091796875,-1.22837138175964,-0.000230789184570313,-0.000113487243652344,-1.22837042808533,-0.000231266021728516,-0.00011444091796875,-1.22846476174891,-0.000332355499267578,-0.000165939331054688,-1.22850000858307,-0.000273227691650391,-0.000149250030517578,-1.22852003574371,-0.000230312347412109,-0.0001373291015625,-1.2284647654742,-0.000274181365966797,-0.000145912170410156,-1.22849726676941,-0.0002593994140625,-0.000142097473144531,-1.22840464115143,-0.000216484069824219,-0.000131130218505859,-1.22840940952301,-0.000231266021728516,-0.000136375427246094,-1.22839415073395,-0.000201702117919922,-0.000131130218505859,-1.22839879989624,-0.000202178955078125,-0.000131130218505859,-1.22854590415955,-0.000187397003173828,-0.000131130218505859,-1.22854006290436,-0.000173568725585938,-0.000128269195556641,-1.2285248041153,-0.000216484069824219,-0.000131607055664063,-1.22853529453278,-0.000201702117919922,-0.000131607055664063,-1.22853052616119,-0.000202655792236328,-0.000130653381347656,-1.22838377952576,-0.000187397003173828,-0.000131130218505859,-1.22838938236237,-0.000173568725585938,-0.000128269195556641,-1.22844949364662,-0.000461578369140625,-0.000112533569335938,-1.22845038771629,-0.000447273254394531,-0.000126838684082031,-1.22840082645416,-0.000432491302490234,-0.000108718872070313,-1.22840654850006,-0.000418186187744141,-0.000123977661132813,-1.22837996482849,-0.000374794006347656,-0.000102043151855469,-1.22838282585144,-0.000374317169189453,-0.000117301940917969,-1.22842264175415, --0.000461101531982422,-8.10623168945313e-05,-1.22841608524323,-0.000447273254394531,-8.392333984375e-05,-1.22842180728912,-0.000447273254394531,-9.1552734375e-05,-1.22842764854431,-0.000461578369140625,-8.29696655273438e-05,-1.22842180728912,-0.000461578369140625,-8.48770141601563e-05,-1.22842085361481,-0.000432491302490234,-0.000140190124511719,-1.22841989994049,-0.000432491302490234,-0.000134468078613281,-1.22844564914703,-0.000446796417236328,-0.000142097473144531,-1.22844469547272,-0.000447273254394531,-0.000148773193359375,-1.22838664054871,-0.000403404235839844,-7.62939453125e-05,-1.22838568687439,-0.00040435791015625,-7.91549682617188e-05,-1.22838664054871,-0.000403881072998047,-8.58306884765625e-05,-1.22838664054871,-0.000418186187744141,-8.0108642578125e-05,-1.22838568687439,-0.00040435791015625,-8.0108642578125e-05,-1.22839415073395,-0.00038909912109375,-0.000138282775878906,-1.22839415073395,-0.000389575958251953,-0.000128746032714844,-1.22840464115143,-0.000418663024902344,-0.000139236450195313,-1.22840285301208,-0.000417709350585938,-0.000146865844726563,-1.22836756706238,-0.000331878662109375,-7.05718994140625e-05,-1.22836375236511,-0.000332355499267578,-7.20024108886719e-05,-1.22836470603943,-0.000332355499267578,-7.91549682617188e-05,-1.22836756706238,-0.000346660614013672,-7.43865966796875e-05,-1.22836470603943,-0.000331878662109375,-7.29560852050781e-05,-1.22836565971375,-0.000317096710205078,-0.000129222869873047,-1.22836565971375,-0.000317096710205078,-0.000123023986816406,-1.22837996482849,-0.000360965728759766,-0.000132560729980469,-1.22837805747986,-0.000360488891601563,-0.000142097473144531,-1.22834825515747,-0.000259876251220703,-8.7738037109375e-05,-1.22834753990173,-0.000259876251220703,-7.20024108886719e-05,-1.22835421562195,-0.000245094299316406,-0.000105857849121094,-1.22835421562195,-0.000245571136474609,-0.000111103057861328,-1.22835445404053,-0.000274658203125,-0.000134944915771484,-1.22835612297058,-0.000274658203125,-0.000125885009765625,-1.22844868898392,-0.000462055206298828,-8.29696655273438e-05, --1.22844004631042,-0.000461578369140625,-8.67843627929688e-05,-1.22844758629799,-0.000461578369140625,-9.25064086914063e-05,-1.22845521569252,-0.000475883483886719,-8.48770141601563e-05,-1.22844764590263,-0.000461101531982422,-8.48770141601563e-05,-1.22843432426453,-0.000461578369140625,-8.20159912109375e-05,-1.22843325138092,-0.000447750091552734,-8.48770141601563e-05,-1.22843325138092,-0.000447750091552734,-8.96453857421875e-05,-1.22843325138092,-0.000461578369140625,-8.48770141601563e-05,-1.22843337059021,-0.000462055206298828,-8.48770141601563e-05,-1.22843432426453,-0.000447273254394531,-0.000111579895019531,-1.22843611240387,-0.000446796417236328,-0.000121116638183594,-1.22839426994324,-0.000432491302490234,-7.82012939453125e-05,-1.22839021682739,-0.000432491302490234,-8.29696655273438e-05,-1.22839617729187,-0.000432491302490234,-8.86917114257813e-05,-1.22839903831482,-0.000446796417236328,-8.29696655273438e-05,-1.22839426994324,-0.000432968139648438,-8.20159912109375e-05,-1.22839021682739,-0.000417709350585938,-7.91549682617188e-05,-1.22839212417603,-0.000418186187744141,-8.29696655273438e-05,-1.22839212417603,-0.000418186187744141,-8.7738037109375e-05,-1.22838950157166,-0.000418663024902344,-8.20159912109375e-05,-1.22839140892029,-0.000418186187744141,-8.29696655273438e-05,-1.22839593887329,-0.000418663024902344,-0.000108718872070313,-1.22839891910553,-0.000403881072998047,-0.000116348266601563,-1.22837996482849,-0.000375270843505859,-7.2479248046875e-05,-1.22837615013123,-0.000375270843505859,-7.62939453125e-05,-1.22837901115417,-0.000375747680664063,-8.20159912109375e-05,-1.22838187217712,-0.00038909912109375,-7.82012939453125e-05,-1.22837901115417,-0.000374794006347656,-7.72476196289063e-05,-1.22837519645691,-0.000346660614013672,-7.2479248046875e-05,-1.22837424278259,-0.000346660614013672,-7.53402709960938e-05,-1.22837233543396,-0.000346660614013672,-8.10623168945313e-05,-1.22837233543396,-0.000346660614013672,-7.43865966796875e-05,-1.22837328910828,-0.000346660614013672,-7.53402709960938e-05,-1.22837138175964, --0.000346183776855469,-0.000100135803222656,-1.22837233543396,-0.000346660614013672,-0.000110626220703125,-1.22835230827332,-0.000288486480712891,-6.58035278320313e-05,-1.22834920883179,-0.000273704528808594,-6.72340393066406e-05,-1.22834968566895,-0.000288009643554688,-7.2479248046875e-05,-1.22835040092468,-0.000288486480712891,-6.91413879394531e-05,-1.22834968566895,-0.000288009643554688,-6.77108764648438e-05,-1.22834920883179,-0.000274181365966797,-8.86917114257813e-05,-1.22835326194763,-0.000274658203125,-0.000108242034912109,-1.22840940952301,-0.000447750091552734,-8.0108642578125e-05,-1.22840750217438,-0.000433444976806641,-8.20159912109375e-05,-1.22840857505798,-0.000432491302490234,-9.1552734375e-05,-1.2284083366394,-0.000447273254394531,-8.29696655273438e-05,-1.22840845584869,-0.000447750091552734,-8.29696655273438e-05,-1.22841036319733,-0.000432491302490234,-0.000110626220703125,-1.22841334342957,-0.000432491302490234,-0.000121116638183594,-1.22842288017273,-0.000447750091552734,-0.000111579895019531,-1.22842454910278,-0.000432491302490234,-0.000125885009765625,-1.22841894626617,-0.000432014465332031,-0.000147819519042969,-1.22843146324158,-0.000432491302490234,-0.000139236450195313,-1.22842955589294,-0.000432968139648438,-0.000149726867675781,-1.228431224823,-0.000432491302490234,-0.000128746032714844,-1.2284629046917,-0.000447750091552734,-0.000142097473144531,-1.22846280038357,-0.000447273254394531,-0.000149726867675781,-1.22846279293299,-0.000447750091552734,-0.000126838684082031,-1.22846281528473,-0.000446796417236328,-0.000130653381347656,-1.22844469547272,-0.000446796417236328,-0.000134468078613281,-1.22838747501373,-0.00038909912109375,-7.72476196289063e-05,-1.22838640213013,-0.00038909912109375,-7.91549682617188e-05,-1.22838664054871,-0.00038909912109375,-8.29696655273438e-05,-1.22838568687439,-0.000389575958251953,-7.91549682617188e-05,-1.22838664054871,-0.00038909912109375,-8.0108642578125e-05,-1.22838759422302,-0.00038909912109375,-0.000102996826171875,-1.22838950157166,-0.000374317169189453, --0.000110626220703125,-1.22839033603668,-0.000403404235839844,-0.000105857849121094,-1.22839605808258,-0.000403881072998047,-0.000123023986816406,-1.22839224338531,-0.00038909912109375,-0.00014495849609375,-1.22839975357056,-0.000403881072998047,-0.000136375427246094,-1.2283980846405,-0.00040435791015625,-0.00014495849609375,-1.22839987277985,-0.000403404235839844,-0.000123977661132813,-1.22841227054596,-0.000417232513427734,-0.000139236450195313,-1.22840929031372,-0.000418663024902344,-0.000148773193359375,-1.22841322422028,-0.000418186187744141,-0.000127792358398438,-1.22840368747711,-0.000417709350585938,-0.000128746032714844,-1.22835898399353,-0.000302791595458984,-6.91413879394531e-05,-1.22835803031921,-0.000302791595458984,-7.20024108886719e-05,-1.2283570766449,-0.000303268432617188,-7.62939453125e-05,-1.2283570766449,-0.000303268432617188,-7.15255737304688e-05,-1.22835803031921,-0.000303268432617188,-7.15255737304688e-05,-1.2283570766449,-0.000302314758300781,-9.34600830078125e-05,-1.22836089134216,-0.000302791595458984,-0.000104904174804688,-1.22836375236511,-0.000331878662109375,-9.67979431152344e-05,-1.22836852073669,-0.000331878662109375,-0.000115871429443359,-1.22836375236511,-0.000317573547363281,-0.000138282775878906,-1.22837233543396,-0.000346660614013672,-0.000130653381347656,-1.22837042808533,-0.000346183776855469,-0.000140190124511719,-1.22837233543396,-0.000345230102539063,-0.000119209289550781,-1.22838759422302,-0.000375270843505859,-0.000133514404296875,-1.22838568687439,-0.000375747680664063,-0.000143051147460938,-1.22838747501373,-0.000374794006347656,-0.000120162963867188,-1.22837805747986,-0.000360488891601563,-0.000123023986816406,-1.22835159301758,-0.000244617462158203,-8.91685485839844e-05,-1.228351354599,-0.000245094299316406,-7.10487365722656e-05,-1.22835397720337,-0.000245094299316406,-0.000101566314697266,-1.22835516929626,-0.0002593994140625,-0.000112056732177734,-1.22835206985474,-0.0002593994140625,-0.000105857849121094,-1.22835326194763,-0.000245094299316406,-0.000130653381347656, --1.22835516929626,-0.000245094299316406,-0.0001220703125,-1.22835326194763,-0.0002593994140625,-0.000131130218505859,-1.22835516929626,-0.000259876251220703,-0.000124454498291016,-1.22835612297058,-0.000259876251220703,-0.000115871429443359,-1.2283570766449,-0.000273227691650391,-0.000113487243652344,-1.22835612297058,-0.000274181365966797,-0.000117778778076172,-1.22846476174891,-0.000461101531982422,-8.67843627929688e-05,-1.22846382111311,-0.000461578369140625,-8.20159912109375e-05,-1.22846189886332,-0.000462055206298828,-8.48770141601563e-05,-1.22846383601427,-0.000461578369140625,-9.05990600585938e-05,-1.22846382111311,-0.000461578369140625,-8.67843627929688e-05,-1.22845250368118,-0.000447273254394531,-0.000148773193359375,-1.22845241427422,-0.000447273254394531,-0.000142097473144531,-1.22845238447189,-0.000446796417236328,-0.000131607055664063,-1.22845232486725,-0.000447750091552734,-0.000135421752929688,-1.22846299409866,-0.000461578369140625,-0.000110626220703125,-1.22846379876137,-0.000446796417236328,-0.000121116638183594,-1.22843611240387,-0.000447273254394531,-0.000148773193359375,-1.2284380197525,-0.000447750091552734,-0.000139236450195313,-1.22843706607819,-0.000447750091552734,-0.000111579895019531,-1.22843611240387,-0.000461578369140625,-9.1552734375e-05,-1.22843706607819,-0.000446796417236328,-0.000124931335449219,-1.2284380197525,-0.000446796417236328,-0.000128746032714844,-1.2284437417984,-0.000446796417236328,-0.000131607055664063,-1.22844088077545,-0.000447750091552734,-0.000126838684082031,-1.22843039035797,-0.000446796417236328,-0.000109672546386719,-1.22843134403229,-0.000446796417236328,-9.25064086914063e-05,-1.22842359542847,-0.000432968139648438,-0.000149726867675781,-1.22842669487,-0.000432968139648438,-0.000141143798828125,-1.228431224823,-0.000447273254394531,-0.000123977661132813,-1.22843134403229,-0.000447750091552734,-0.000119209289550781,-1.22842574119568,-0.000432491302490234,-0.000131607055664063,-1.22842562198639,-0.000432968139648438,-0.000134468078613281,-1.22841417789459,-0.000432014465332031, --0.000148773193359375,-1.22841608524323,-0.000432968139648438,-0.000139236450195313,-1.22841322422028,-0.000432491302490234,-0.000112533569335938,-1.22841131687164,-0.000446796417236328,-8.86917114257813e-05,-1.22841894626617,-0.000432968139648438,-0.000128746032714844,-1.22841703891754,-0.000432491302490234,-0.000125885009765625,-1.22841513156891,-0.000432968139648438,-0.000123977661132813,-1.22841501235962,-0.000432491302490234,-0.000128746032714844,-1.2284083366394,-0.000432491302490234,-0.000109672546386719,-1.22840476036072,-0.000432968139648438,-8.7738037109375e-05,-1.22840559482574,-0.000417709350585938,-0.00014495849609375,-1.22840750217438,-0.000417232513427734,-0.000139236450195313,-1.2284095287323,-0.000417232513427734,-0.000126838684082031,-1.22840857505798,-0.000418663024902344,-0.00012969970703125,-1.22841334342957,-0.000418186187744141,-0.000123977661132813,-1.22841143608093,-0.000432491302490234,-0.000121116638183594,-1.22840082645416,-0.000403404235839844,-0.000146865844726563,-1.22840178012848,-0.000403881072998047,-0.0001373291015625,-1.22839510440826,-0.000418186187744141,-0.000108718872070313,-1.22839033603668,-0.000432491302490234,-8.7738037109375e-05,-1.22840094566345,-0.000403881072998047,-0.000119209289550781,-1.22840070724487,-0.00040435791015625,-0.000123977661132813,-1.22840368747711,-0.000418663024902344,-0.000124931335449219,-1.22840070724487,-0.000418663024902344,-0.000123023986816406,-1.22839415073395,-0.000403881072998047,-0.000105857849121094,-1.22839021682739,-0.000418663024902344,-8.67843627929688e-05,-1.22839617729187,-0.000390052795410156,-0.00014495849609375,-1.22839796543121,-0.00038909912109375,-0.000138282775878906,-1.22839987277985,-0.000403881072998047,-0.000120162963867188,-1.2283980846405,-0.00040435791015625,-0.000118255615234375,-1.22839796543121,-0.000389575958251953,-0.000126838684082031,-1.2283980846405,-0.000389575958251953,-0.00012969970703125,-1.22838854789734,-0.000374794006347656,-0.000144004821777344,-1.22839033603668,-0.000374317169189453,-0.000134468078613281, --1.22838747501373,-0.000389575958251953,-0.000103950500488281,-1.22838568687439,-0.000403404235839844,-8.48770141601563e-05,-1.22839415073395,-0.00038909912109375,-0.000123977661132813,-1.22839224338531,-0.00038909912109375,-0.000119209289550781,-1.22839033603668,-0.000375270843505859,-0.00011444091796875,-1.22839033603668,-0.000374317169189453,-0.000119209289550781,-1.22838664054871,-0.000375270843505859,-0.000103950500488281,-1.22838473320007,-0.00038909912109375,-8.29696655273438e-05,-1.22838091850281,-0.000361442565917969,-0.000143051147460938,-1.22838377952576,-0.000360965728759766,-0.000134468078613281,-1.22838473320007,-0.000375270843505859,-0.000123023986816406,-1.22838473320007,-0.000374317169189453,-0.000125885009765625,-1.22838842868805,-0.000374317169189453,-0.000115394592285156,-1.22838747501373,-0.000374794006347656,-0.000111579895019531,-1.22837328910828,-0.000346183776855469,-0.000141143798828125,-1.22837519645691,-0.000346183776855469,-0.000131607055664063,-1.22837233543396,-0.000360965728759766,-0.000101089477539063,-1.22837328910828,-0.000360965728759766,-8.20159912109375e-05,-1.22837328910828,-0.000346660614013672,-0.00011444091796875,-1.22837424278259,-0.000346660614013672,-0.000119209289550781,-1.22837805747986,-0.000360965728759766,-0.000121116638183594,-1.22837519645691,-0.000360965728759766,-0.000115394592285156,-1.22836947441101,-0.000346660614013672,-9.918212890625e-05,-1.22836947441101,-0.000346660614013672,-8.0108642578125e-05,-1.22836756706238,-0.000331878662109375,-0.000138282775878906,-1.22836947441101,-0.000332355499267578,-0.000131130218505859,-1.22837328910828,-0.000345706939697266,-0.000113487243652344,-1.22837233543396,-0.000346660614013672,-0.000110626220703125,-1.22837042808533,-0.000331401824951172,-0.000122547149658203,-1.22837042808533,-0.000332355499267578,-0.000124931335449219,-1.22835803031921,-0.000302314758300781,-0.000135898590087891,-1.22836089134216,-0.000303745269775391,-0.000126838684082031,-1.22835803031921,-0.000317096710205078,-9.5367431640625e-05,-1.22835898399353, --0.000317096710205078,-7.77244567871094e-05,-1.22836565971375,-0.000317573547363281,-0.000120162963867188,-1.2283627986908,-0.000317573547363281,-0.000115394592285156,-1.22836375236511,-0.000302791595458984,-0.000109672546386719,-1.2283627986908,-0.000303268432617188,-0.00011444091796875,-1.22845903038979,-0.000461101531982422,-0.000112533569335938,-1.22845900058746,-0.000462055206298828,-9.05990600585938e-05,-1.22835397720337,-0.0002593994140625,-6.24656677246094e-05,-1.22835516929626,-0.000245094299316406,-6.43730163574219e-05,-1.22834849357605,-0.000259876251220703,-6.53266906738281e-05,-1.228351354599,-0.000244617462158203,-6.53266906738281e-05,-1.2284322977066,-0.000447273254394531,-8.20159912109375e-05,-1.22843134403229,-0.000447750091552734,-8.29696655273438e-05,-1.22841238975525,-0.000446796417236328,-8.0108642578125e-05,-1.22841143608093,-0.000446796417236328,-8.29696655273438e-05,-1.22843706607819,-0.000461578369140625,-8.29696655273438e-05,-1.22843611240387,-0.000461578369140625,-8.48770141601563e-05,-1.22840464115143,-0.000447273254394531,-8.10623168945313e-05,-1.22840476036072,-0.000447273254394531,-8.392333984375e-05,-1.22838842868805,-0.000432491302490234,-7.91549682617188e-05,-1.22838842868805,-0.000432491302490234,-8.29696655273438e-05,-1.22839033603668,-0.000418663024902344,-7.82012939453125e-05,-1.22838926315308,-0.000418186187744141,-8.10623168945313e-05,-1.22838664054871,-0.000403881072998047,-7.43865966796875e-05,-1.22838568687439,-0.000403881072998047,-7.91549682617188e-05,-1.22838664054871,-0.000389575958251953,-7.72476196289063e-05,-1.22838473320007,-0.00038909912109375,-7.72476196289063e-05,-1.22837615013123,-0.000360488891601563,-7.34329223632813e-05,-1.22837424278259,-0.000360965728759766,-7.53402709960938e-05,-1.22837233543396,-0.000346183776855469,-7.34329223632813e-05,-1.22837138175964,-0.000345706939697266,-7.53402709960938e-05,-1.22836089134216,-0.000317573547363281,-6.91413879394531e-05,-1.22835993766785,-0.000317573547363281,-7.15255737304688e-05,-1.22835040092468,-0.000259876251220703, --6.38961791992188e-05,-1.22834849357605,-0.0002593994140625,-6.62803649902344e-05,-1.2284542620182,-0.000446796417236328,-0.000111579895019531,-1.22845441102982,-0.000447750091552734,-0.000126838684082031,-1.2284140586853,-0.000418663024902344,-0.000108718872070313,-1.22841608524323,-0.000417232513427734,-0.0001220703125,-1.22839593887329,-0.000374317169189453,-0.000102996826171875,-1.22839522361755,-0.000360965728759766,-0.000116348266601563,-1.22843217849731,-0.000447273254394531,-8.392333984375e-05,-1.22842860221863,-0.000446796417236328,-9.25064086914063e-05,-1.22842359542847,-0.000446796417236328,-8.48770141601563e-05,-1.22842764854431,-0.000447750091552734,-7.91549682617188e-05,-1.22842836380005,-0.000447750091552734,-8.48770141601563e-05,-1.22842848300934,-0.000432491302490234,-0.000138282775878906,-1.22842454910278,-0.000418186187744141,-0.000133514404296875,-1.22842943668365,-0.000432491302490234,-0.000134468078613281,-1.22842669487,-0.000432968139648438,-0.000134468078613281,-1.22846476361156,-0.000432968139648438,-0.000145912170410156,-1.22846189886332,-0.000432968139648438,-0.000146865844726563,-1.22846092283726,-0.000432491302490234,-0.000145912170410156,-1.22846394777298,-0.000432491302490234,-0.000145912170410156,-1.22846280783415,-0.000432491302490234,-0.000146865844726563,-1.22840178012848,-0.00040435791015625,-8.0108642578125e-05,-1.22840368747711,-0.000403404235839844,-8.67843627929688e-05,-1.22840082645416,-0.000389575958251953,-7.82012939453125e-05,-1.22839975357056,-0.000403404235839844,-7.72476196289063e-05,-1.22840178012848,-0.000403404235839844,-8.0108642578125e-05,-1.22840261459351,-0.000389575958251953,-0.000134468078613281,-1.22840082645416,-0.000374794006347656,-0.000128746032714844,-1.22840368747711,-0.00038909912109375,-0.000131607055664063,-1.2284027338028,-0.000389575958251953,-0.000128746032714844,-1.22842001914978,-0.000403404235839844,-0.000143051147460938,-1.22843515872955,-0.000418663024902344,-0.000148773193359375,-1.22844660282135,-0.000403404235839844,-0.000156402587890625, --1.22843050956726,-0.000403881072998047,-0.000149726867675781,-1.2284322977066,-0.000403881072998047,-0.000148773193359375,-1.22838473320007,-0.000332355499267578,-7.34329223632813e-05,-1.22838473320007,-0.000332355499267578,-7.82012939453125e-05,-1.22838091850281,-0.000318050384521484,-7.2479248046875e-05,-1.22838187217712,-0.000331401824951172,-7.00950622558594e-05,-1.22838377952576,-0.000332355499267578,-7.20024108886719e-05,-1.22837996482849,-0.000317573547363281,-0.000127315521240234,-1.22837615013123,-0.000302791595458984,-0.000123500823974609,-1.22838091850281,-0.000317573547363281,-0.000125885009765625,-1.22837901115417,-0.000317096710205078,-0.000123977661132813,-1.22839796543121,-0.000345706939697266,-0.000144004821777344,-1.22841799259186,-0.000360965728759766,-0.000153541564941406,-1.22843515872955,-0.000346660614013672,-0.000163078308105469,-1.22841322422028,-0.000346660614013672,-0.000153541564941406,-1.22841513156891,-0.000346660614013672,-0.000154495239257813,-1.22837138175964,-0.0002593994140625,-7.20024108886719e-05,-1.22837233543396,-0.0002593994140625,-8.72611999511719e-05,-1.22836756706238,-0.000245094299316406,-0.000105857849121094,-1.22836947441101,-0.000245571136474609,-0.000107765197753906,-1.22845806181431,-0.000461578369140625,-8.58306884765625e-05,-1.22845423221588,-0.000461578369140625,-9.25064086914063e-05,-1.2284477353096,-0.000461578369140625,-8.48770141601563e-05,-1.22845327854156,-0.000461101531982422,-8.20159912109375e-05,-1.2284534573555,-0.000461578369140625,-8.48770141601563e-05,-1.2284380197525,-0.000447273254394531,-8.29696655273438e-05,-1.22843611240387,-0.000447750091552734,-8.96453857421875e-05,-1.22843515872955,-0.000446796417236328,-8.392333984375e-05,-1.22843706607819,-0.000447273254394531,-8.10623168945313e-05,-1.22843611240387,-0.000447750091552734,-8.392333984375e-05,-1.22843611240387,-0.000447273254394531,-0.000108718872070313,-1.2284380197525,-0.000447750091552734,-0.000119209289550781,-1.22841131687164,-0.000432491302490234,-8.29696655273438e-05,-1.22841131687164, --0.000432491302490234,-8.67843627929688e-05,-1.22840559482574,-0.000432968139648438,-8.10623168945313e-05,-1.22840642929077,-0.000432968139648438,-7.72476196289063e-05,-1.22840845584869,-0.000432968139648438,-8.10623168945313e-05,-1.22840189933777,-0.000418186187744141,-8.10623168945313e-05,-1.22840070724487,-0.000417709350585938,-8.7738037109375e-05,-1.22839796543121,-0.000418186187744141,-8.0108642578125e-05,-1.22839784622192,-0.000418663024902344,-7.91549682617188e-05,-1.22839891910553,-0.000418186187744141,-8.0108642578125e-05,-1.22840464115143,-0.00040435791015625,-0.000105857849121094,-1.22840559482574,-0.00040435791015625,-0.000118255615234375,-1.22839415073395,-0.000375747680664063,-7.72476196289063e-05,-1.22839605808258,-0.000374317169189453,-8.29696655273438e-05,-1.22839522361755,-0.000360965728759766,-7.53402709960938e-05,-1.22839415073395,-0.000374317169189453,-7.2479248046875e-05,-1.22839605808258,-0.000375270843505859,-7.72476196289063e-05,-1.22839033603668,-0.000346183776855469,-7.53402709960938e-05,-1.22838854789734,-0.000346660614013672,-8.10623168945313e-05,-1.22838377952576,-0.000346660614013672,-7.62939453125e-05,-1.22838473320007,-0.000346183776855469,-7.34329223632813e-05,-1.22838640213013,-0.000346660614013672,-7.62939453125e-05,-1.22838842868805,-0.000346183776855469,-0.000100135803222656,-1.22838652133942,-0.000346660614013672,-0.000110626220703125,-1.22837233543396,-0.000288009643554688,-6.91413879394531e-05,-1.22837328910828,-0.000288486480712891,-7.34329223632813e-05,-1.22837042808533,-0.000274181365966797,-6.72340393066406e-05,-1.22836947441101,-0.000288963317871094,-6.53266906738281e-05,-1.22837233543396,-0.000288009643554688,-6.77108764648438e-05,-1.22837328910828,-0.000273227691650391,-8.91685485839844e-05,-1.22837233543396,-0.000274181365966797,-0.000107765197753906,-1.22841715812683,-0.000432491302490234,-8.20159912109375e-05,-1.22841501235962,-0.000432968139648438,-8.7738037109375e-05,-1.22841334342957,-0.000432491302490234,-8.29696655273438e-05,-1.22841417789459,-0.000432968139648438, --8.10623168945313e-05,-1.2284152507782,-0.000432968139648438,-8.29696655273438e-05,-1.22841703891754,-0.000432491302490234,-0.000109672546386719,-1.22841894626617,-0.000432491302490234,-0.000121116638183594,-1.22842955589294,-0.000432491302490234,-0.000110626220703125,-1.22843146324158,-0.000432491302490234,-0.000124931335449219,-1.22843420505524,-0.000418663024902344,-0.000142097473144531,-1.22844669222832,-0.000432968139648438,-0.000146865844726563,-1.22845336794853,-0.000418186187744141,-0.000149726867675781,-1.22844088077545,-0.000417232513427734,-0.000146865844726563,-1.2284437417984,-0.000418186187744141,-0.000146865844726563,-1.2284437417984,-0.000432491302490234,-0.000143051147460938,-1.22845336794853,-0.000432491302490234,-0.00014495849609375,-1.22845713794231,-0.000432491302490234,-0.000148773193359375,-1.22845041751862,-0.000432491302490234,-0.00014495849609375,-1.22843718528748,-0.000432491302490234,-0.000139236450195313,-1.22843408584595,-0.000432491302490234,-0.000133514404296875,-1.2284380197525,-0.000432491302490234,-0.000132560729980469,-1.22843611240387,-0.000432491302490234,-0.000133514404296875,-1.22846191376448,-0.000447273254394531,-0.000142097473144531,-1.22846283763647,-0.000447750091552734,-0.000139236450195313,-1.22846476174891,-0.000447750091552734,-0.000143051147460938,-1.22846381366253,-0.000447273254394531,-0.000141143798828125,-1.22846476174891,-0.000447750091552734,-0.000132560729980469,-1.2284609079361,-0.000447273254394531,-0.000136375427246094,-1.22846283018589,-0.000447273254394531,-0.000134468078613281,-1.22844848036766,-0.000432491302490234,-0.000138282775878906,-1.22844469547272,-0.000432968139648438,-0.000135421752929688,-1.22845038771629,-0.000446796417236328,-0.000136375427246094,-1.22844752669334,-0.000432491302490234,-0.000138282775878906,-1.22839689254761,-0.00038909912109375,-7.91549682617188e-05,-1.22839415073395,-0.000389575958251953,-8.29696655273438e-05,-1.22839140892029,-0.00038909912109375,-7.91549682617188e-05,-1.22839307785034,-0.00038909912109375,-7.82012939453125e-05, --1.22839403152466,-0.00038909912109375,-7.91549682617188e-05,-1.22839510440826,-0.000375270843505859,-0.000102996826171875,-1.22839617729187,-0.000374794006347656,-0.000110626220703125,-1.22840452194214,-0.000403881072998047,-0.000103950500488281,-1.22840559482574,-0.00038909912109375,-0.000118255615234375,-1.22840929031372,-0.000389575958251953,-0.000144004821777344,-1.22842645645142,-0.00038909912109375,-0.000153541564941406,-1.22844099998474,-0.00038909912109375,-0.000162124633789063,-1.22842288017273,-0.000375270843505859,-0.000152587890625,-1.22842454910278,-0.00038909912109375,-0.000151634216308594,-1.2284140586853,-0.00038909912109375,-0.000144004821777344,-1.22844386100769,-0.000403881072998047,-0.000158309936523438,-1.22842848300934,-0.000403404235839844,-0.000151634216308594,-1.22840738296509,-0.000403881072998047,-0.000135421752929688,-1.22840642929077,-0.00038909912109375,-0.000131607055664063,-1.22840750217438,-0.000403881072998047,-0.000128746032714844,-1.22840654850006,-0.000403404235839844,-0.00012969970703125,-1.22842657566071,-0.000418186187744141,-0.000144004821777344,-1.2284494638443,-0.000418663024902344,-0.000152587890625,-1.22843813896179,-0.000418186187744141,-0.000147819519042969,-1.22841989994049,-0.000417232513427734,-0.0001373291015625,-1.22841799259186,-0.000417709350585938,-0.000131607055664063,-1.22842073440552,-0.000417709350585938,-0.000133514404296875,-1.22841882705688,-0.000418663024902344,-0.000133514404296875,-1.22841334342957,-0.000403881072998047,-0.000135421752929688,-1.22841036319733,-0.000403881072998047,-0.00012969970703125,-1.22841417789459,-0.000417232513427734,-0.000133514404296875,-1.22841227054596,-0.000403881072998047,-0.000133514404296875,-1.22837615013123,-0.000302791595458984,-7.00950622558594e-05,-1.22837328910828,-0.000303268432617188,-7.58171081542969e-05,-1.22837042808533,-0.000302314758300781,-7.05718994140625e-05,-1.22837138175964,-0.000302791595458984,-6.866455078125e-05,-1.22837328910828,-0.000302314758300781,-7.10487365722656e-05,-1.22837328910828,-0.000303268432617188, --9.48905944824219e-05,-1.22837424278259,-0.000302791595458984,-0.000108242034912109,-1.22838568687439,-0.000331401824951172,-9.67979431152344e-05,-1.22838473320007,-0.000331878662109375,-0.000114917755126953,-1.22843050956726,-0.000274181365966797,-0.000148296356201172,-1.22839879989624,-0.000288963317871094,-0.000141143798828125,-1.2284140586853,-0.000317096710205078,-0.000152587890625,-1.22844278812408,-0.000317096710205078,-0.000160694122314453,-1.22842180728912,-0.000302791595458984,-0.000151157379150391,-1.22839415073395,-0.000331401824951172,-0.000143051147460938,-1.22843325138092,-0.000331401824951172,-0.000162124633789063,-1.22841238975525,-0.000331878662109375,-0.000152111053466797,-1.22838473320007,-0.000331401824951172,-0.00012969970703125,-1.22838377952576,-0.000332355499267578,-0.000124454498291016,-1.22838568687439,-0.000345706939697266,-0.0001220703125,-1.22838473320007,-0.000331878662109375,-0.000124454498291016,-1.22840464115143,-0.000374794006347656,-0.000144004821777344,-1.2284380197525,-0.000375270843505859,-0.000162124633789063,-1.22842001914978,-0.000374317169189453,-0.000154495239257813,-1.2283970117569,-0.000375270843505859,-0.000133514404296875,-1.22839522361755,-0.000374794006347656,-0.000127792358398438,-1.2283970117569,-0.000375270843505859,-0.000125885009765625,-1.22839605808258,-0.000375270843505859,-0.000125885009765625,-1.228391289711,-0.000360965728759766,-0.000130653381347656,-1.22838938236237,-0.000345706939697266,-0.000125885009765625,-1.22839319705963,-0.000360488891601563,-0.000128746032714844,-1.22839140892029,-0.000361442565917969,-0.000128746032714844,-1.22836852073669,-0.000245571136474609,-7.10487365722656e-05,-1.22836852073669,-0.000245094299316406,-8.91685485839844e-05,-1.22836852073669,-0.000245094299316406,-0.000101089477539063,-1.22836852073669,-0.0002593994140625,-0.000112533569335938,-1.22837042808533,-0.000259876251220703,-0.000105857849121094,-1.22837424278259,-0.000259876251220703,-0.000121116638183594,-1.22837138175964,-0.000245094299316406,-0.000116825103759766, --1.22837233543396,-0.000258922576904297,-0.000119209289550781,-1.22837138175964,-0.000259876251220703,-0.000118732452392578,-1.22837328910828,-0.000273227691650391,-0.000119209289550781,-1.22837328910828,-0.000288963317871094,-0.000118255615234375,-1.22837042808533,-0.000274181365966797,-0.000113487243652344,-1.22846476174891,-0.000461101531982422,-8.48770141601563e-05,-1.2284637466073,-0.000462055206298828,-8.96453857421875e-05,-1.22846189141273,-0.000461578369140625,-8.48770141601563e-05,-1.22846383601427,-0.000462055206298828,-8.29696655273438e-05,-1.22846384346485,-0.000462055206298828,-8.48770141601563e-05,-1.2284542620182,-0.000446796417236328,-0.000132560729980469,-1.22846281528473,-0.000447273254394531,-0.000126838684082031,-1.22846283763647,-0.000447750091552734,-0.000123977661132813,-1.22844278812408,-0.000447750091552734,-9.1552734375e-05,-1.22844386100769,-0.000447273254394531,-0.000112533569335938,-1.22843897342682,-0.000447750091552734,-0.000123977661132813,-1.22844669222832,-0.000432491302490234,-0.000131607055664063,-1.22844660282135,-0.000447750091552734,-0.000125885009765625,-1.22843432426453,-0.000446796417236328,-9.1552734375e-05,-1.22843408584595,-0.000446796417236328,-0.000109672546386719,-1.22843420505524,-0.000432968139648438,-0.000123977661132813,-1.22843408584595,-0.000432491302490234,-0.000120162963867188,-1.22843146324158,-0.000432491302490234,-0.000130653381347656,-1.22841989994049,-0.000447273254394531,-8.96453857421875e-05,-1.22842180728912,-0.000432491302490234,-0.000110626220703125,-1.22842574119568,-0.000432968139648438,-0.000128746032714844,-1.22842574119568,-0.000432491302490234,-0.000123977661132813,-1.22841989994049,-0.000418663024902344,-0.000123977661132813,-1.22841417789459,-0.000432491302490234,-8.86917114257813e-05,-1.22841596603394,-0.000432491302490234,-0.000108718872070313,-1.22841703891754,-0.000418186187744141,-0.000127792358398438,-1.22841811180115,-0.000418663024902344,-0.000123023986816406,-1.22841703891754,-0.000418186187744141,-0.000121116638183594,-1.22840559482574, --0.000418663024902344,-8.7738037109375e-05,-1.22840845584869,-0.000418186187744141,-0.000108718872070313,-1.22840666770935,-0.000403404235839844,-0.000119209289550781,-1.22841131687164,-0.000403881072998047,-0.000126838684082031,-1.22841143608093,-0.000403404235839844,-0.000121116638183594,-1.22840189933777,-0.000403881072998047,-8.67843627929688e-05,-1.2284038066864,-0.00040435791015625,-0.0001068115234375,-1.22840559482574,-0.000403404235839844,-0.000120162963867188,-1.22840547561646,-0.00040435791015625,-0.000115394592285156,-1.22840547561646,-0.000389575958251953,-0.000123977661132813,-1.22839987277985,-0.000389575958251953,-8.48770141601563e-05,-1.22840082645416,-0.00038909912109375,-0.000102996826171875,-1.2284027338028,-0.00038909912109375,-0.0001220703125,-1.22840285301208,-0.000389575958251953,-0.000117301940917969,-1.2283970117569,-0.000374317169189453,-0.000112533569335938,-1.22839331626892,-0.000375270843505859,-8.29696655273438e-05,-1.22839426994324,-0.000375270843505859,-0.000102043151855469,-1.22839426994324,-0.000360488891601563,-0.000121116638183594,-1.22839415073395,-0.000374317169189453,-0.000115394592285156,-1.22839415073395,-0.000374794006347656,-0.000110626220703125,-1.22839426994324,-0.000360488891601563,-8.0108642578125e-05,-1.22839331626892,-0.000360965728759766,-0.000100135803222656,-1.22838568687439,-0.000346660614013672,-0.000113487243652344,-1.22838926315308,-0.000360488891601563,-0.000121116638183594,-1.22839212417603,-0.000360965728759766,-0.000115394592285156,-1.22838473320007,-0.000332355499267578,-8.0108642578125e-05,-1.22838652133942,-0.000332355499267578,-9.918212890625e-05,-1.22838473320007,-0.000332355499267578,-0.000113487243652344,-1.22838664054871,-0.000332355499267578,-0.000110149383544922,-1.22838377952576,-0.000318050384521484,-0.000121116638183594,-1.22837996482849,-0.000317573547363281,-7.72476196289063e-05,-1.22837996482849,-0.000317096710205078,-9.48905944824219e-05,-1.22837901115417,-0.000318050384521484,-0.000119686126708984,-1.22837996482849,-0.000317573547363281, --0.000113487243652344,-1.22837328910828,-0.000303268432617188,-0.000112056732177734,-1.22846091538668,-0.000461578369140625,-9.1552734375e-05,-1.2284609824419,-0.000447273254394531,-0.000110626220703125,-1.22836947441101,-0.000259876251220703,-6.58035278320313e-05,-1.22836565971375,-0.000245094299316406,-6.58035278320313e-05,-1.22836565971375,-0.000258922576904297,-6.19888305664063e-05,-1.22836756706238,-0.000245094299316406,-6.58035278320313e-05,-1.22843432426453,-0.000447750091552734,-8.20159912109375e-05,-1.22843432426453,-0.000446796417236328,-8.29696655273438e-05,-1.22841894626617,-0.000447750091552734,-8.10623168945313e-05,-1.22841906547546,-0.000446796417236328,-8.29696655273438e-05,-1.22844290733337,-0.000461578369140625,-8.10623168945313e-05,-1.22844278812408,-0.000461578369140625,-8.48770141601563e-05,-1.22841131687164,-0.000432491302490234,-7.91549682617188e-05,-1.22841227054596,-0.000432968139648438,-8.29696655273438e-05,-1.22840082645416,-0.000418186187744141,-7.72476196289063e-05,-1.2284038066864,-0.000418663024902344,-8.20159912109375e-05,-1.22839891910553,-0.000418186187744141,-7.91549682617188e-05,-1.22840070724487,-0.000418663024902344,-8.10623168945313e-05,-1.22839689254761,-0.00038909912109375,-7.43865966796875e-05,-1.22839999198914,-0.00038909912109375,-7.82012939453125e-05,-1.22839224338531,-0.000374317169189453,-7.53402709960938e-05,-1.22839319705963,-0.000375270843505859,-8.0108642578125e-05,-1.228391289711,-0.000360965728759766,-7.2479248046875e-05,-1.22839415073395,-0.000360488891601563,-7.53402709960938e-05,-1.22838282585144,-0.000331878662109375,-7.15255737304688e-05,-1.22838473320007,-0.000331878662109375,-7.43865966796875e-05,-1.22837615013123,-0.000317096710205078,-6.81877136230469e-05,-1.22837805747986,-0.000317096710205078,-7.15255737304688e-05,-1.22836852073669,-0.0002593994140625,-6.43730163574219e-05,-1.22837042808533,-0.000260353088378906,-6.53266906738281e-05,-1.22846476174891,-0.000461101531982422,-8.10623168945313e-05,-1.22846195101738,-0.000462055206298828,-8.0108642578125e-05, --1.22846381366253,-0.000462055206298828,-8.10623168945313e-05,-1.22846382111311,-0.000461101531982422,-8.20159912109375e-05,-1.22844663262367,-0.000461101531982422,-8.0108642578125e-05,-1.22845140099525,-0.000461578369140625,-8.10623168945313e-05,-1.2284571826458,-0.000461578369140625,-8.10623168945313e-05,-1.22845238447189,-0.000461101531982422,-8.10623168945313e-05,-1.2284380197525,-0.000461101531982422,-7.82012939453125e-05,-1.22844004631042,-0.000461101531982422,-8.0108642578125e-05,-1.22844183444977,-0.000461578369140625,-7.82012939453125e-05,-1.22843527793884,-0.000447750091552734,-8.10623168945313e-05,-1.22843515872955,-0.000462055206298828,-7.82012939453125e-05,-1.22843623161316,-0.000447273254394531,-7.91549682617188e-05,-1.22843134403229,-0.000447273254394531,-8.20159912109375e-05,-1.22843325138092,-0.000447750091552734,-8.0108642578125e-05,-1.22843313217163,-0.000447750091552734,-8.0108642578125e-05,-1.22842180728912,-0.000447273254394531,-8.0108642578125e-05,-1.22842574119568,-0.000447750091552734,-7.72476196289063e-05,-1.22842669487,-0.000446796417236328,-7.91549682617188e-05,-1.2284140586853,-0.000447750091552734,-7.82012939453125e-05,-1.2284152507782,-0.000447750091552734,-7.72476196289063e-05,-1.22841691970825,-0.000447273254394531,-7.72476196289063e-05,-1.22841238975525,-0.000432968139648438,-7.91549682617188e-05,-1.22841119766235,-0.000446796417236328,-7.82012939453125e-05,-1.22841310501099,-0.000447750091552734,-7.91549682617188e-05,-1.22840654850006,-0.000432968139648438,-7.72476196289063e-05,-1.22840762138367,-0.000432491302490234,-7.91549682617188e-05,-1.22840940952301,-0.000432491302490234,-7.72476196289063e-05,-1.22839987277985,-0.000432968139648438,-7.72476196289063e-05,-1.22839999198914,-0.000432491302490234,-7.53402709960938e-05,-1.22840285301208,-0.000432491302490234,-7.62939453125e-05,-1.22839593887329,-0.000418663024902344,-7.62939453125e-05,-1.22839403152466,-0.000432491302490234,-7.62939453125e-05,-1.22839784622192,-0.000418186187744141,-7.62939453125e-05,-1.22839593887329,-0.000417232513427734, --7.91549682617188e-05,-1.22839426994324,-0.000418663024902344,-7.72476196289063e-05,-1.22839605808258,-0.000418186187744141,-7.72476196289063e-05,-1.2283970117569,-0.000403881072998047,-7.72476196289063e-05,-1.22839426994324,-0.000418663024902344,-7.82012939453125e-05,-1.22839713096619,-0.000418186187744141,-7.82012939453125e-05,-1.22839593887329,-0.000403404235839844,-7.62939453125e-05,-1.22839319705963,-0.000403881072998047,-7.72476196289063e-05,-1.2283970117569,-0.00040435791015625,-7.62939453125e-05,-1.22839319705963,-0.000389575958251953,-7.34329223632813e-05,-1.2283923625946,-0.00038909912109375,-7.53402709960938e-05,-1.22839510440826,-0.00038909912109375,-7.62939453125e-05,-1.22839140892029,-0.000389575958251953,-7.72476196289063e-05,-1.22839021682739,-0.000389575958251953,-7.72476196289063e-05,-1.22839224338531,-0.000389575958251953,-7.62939453125e-05,-1.22839140892029,-0.000375747680664063,-7.43865966796875e-05,-1.22838950157166,-0.00038909912109375,-7.62939453125e-05,-1.22839033603668,-0.00038909912109375,-7.62939453125e-05,-1.22839045524597,-0.000360965728759766,-7.43865966796875e-05,-1.22838854789734,-0.000374317169189453,-7.43865966796875e-05,-1.228391289711,-0.000374317169189453,-7.34329223632813e-05,-1.22838568687439,-0.000345706939697266,-7.15255737304688e-05,-1.22838377952576,-0.000360965728759766,-7.2479248046875e-05,-1.22838747501373,-0.000360965728759766,-7.15255737304688e-05,-1.22838091850281,-0.000346660614013672,-7.2479248046875e-05,-1.22838091850281,-0.000346660614013672,-7.2479248046875e-05,-1.22838282585144,-0.000346660614013672,-7.2479248046875e-05,-1.22837996482849,-0.000331878662109375,-7.00950622558594e-05,-1.22837805747986,-0.000346660614013672,-7.05718994140625e-05,-1.22837996482849,-0.000346660614013672,-7.15255737304688e-05,-1.22837615013123,-0.000317573547363281,-6.96182250976563e-05,-1.22837424278259,-0.000331401824951172,-6.96182250976563e-05,-1.22837805747986,-0.000331878662109375,-6.866455078125e-05,-1.22837042808533,-0.000302791595458984,-6.72340393066406e-05,-1.22836947441101, --0.000317573547363281,-6.81877136230469e-05,-1.22837328910828,-0.000318050384521484,-6.77108764648438e-05,-1.22836661338806,-0.000302791595458984,-6.96182250976563e-05,-1.22836470603943,-0.000303268432617188,-6.77108764648438e-05,-1.22836852073669,-0.000303745269775391,-6.77108764648438e-05,-1.22836565971375,-0.000288486480712891,-6.4849853515625e-05,-1.22836470603943,-0.000274181365966797,-6.38961791992188e-05,-1.22836089134216,-0.000288486480712891,-6.58035278320313e-05,-1.22836565971375,-0.000288486480712891,-6.43730163574219e-05,-1.22836375236511,-0.000259876251220703,-6.15119934082031e-05,-1.22835898399353,-0.0002593994140625,-6.34193420410156e-05,-1.22836375236511,-0.000259876251220703,-6.43730163574219e-05,-1.22836184501648,-0.000245094299316406,-6.05583190917969e-05,-1.22835898399353,-0.0002593994140625,-6.103515625e-05,-1.2283627986908,-0.000259876251220703,-6.103515625e-05,-1.22845616936684,-0.000476360321044922,-8.10623168945313e-05,-1.2284589856863,-0.000476360321044922,-8.20159912109375e-05,-1.22846192121506,-0.000461101531982422,-8.10623168945313e-05,-1.22846013307571,-0.000461578369140625,-7.91549682617188e-05,-1.22845903038979,-0.000475883483886719,-8.10623168945313e-05,-1.22844290733337,-0.000461578369140625,-7.91549682617188e-05,-1.22844952344894,-0.000461578369140625,-8.10623168945313e-05,-1.22843515872955,-0.000461101531982422,-8.0108642578125e-05,-1.22843813896179,-0.000461101531982422,-8.0108642578125e-05,-1.22843432426453,-0.000446796417236328,-7.91549682617188e-05,-1.22843432426453,-0.000461578369140625,-8.0108642578125e-05,-1.22842860221863,-0.000461578369140625,-7.91549682617188e-05,-1.2284322977066,-0.000447750091552734,-8.20159912109375e-05,-1.22841811180115,-0.000446796417236328,-7.82012939453125e-05,-1.22842276096344,-0.000447750091552734,-8.0108642578125e-05,-1.22841036319733,-0.000447750091552734,-7.91549682617188e-05,-1.22841310501099,-0.000446796417236328,-7.82012939453125e-05,-1.2284095287323,-0.000432491302490234,-7.82012939453125e-05,-1.22841048240662,-0.000447750091552734,-7.91549682617188e-05, --1.22840082645416,-0.000446796417236328,-7.72476196289063e-05,-1.22840642929077,-0.000446796417236328,-8.0108642578125e-05,-1.22839319705963,-0.000432968139648438,-7.72476196289063e-05,-1.22839689254761,-0.000432491302490234,-7.72476196289063e-05,-1.22839033603668,-0.000418186187744141,-7.72476196289063e-05,-1.228391289711,-0.000432491302490234,-7.62939453125e-05,-1.22839319705963,-0.000418186187744141,-7.72476196289063e-05,-1.22839224338531,-0.000418663024902344,-7.72476196289063e-05,-1.22839045524597,-0.000417709350585938,-7.72476196289063e-05,-1.22839212417603,-0.000418186187744141,-7.62939453125e-05,-1.22838950157166,-0.00040435791015625,-7.43865966796875e-05,-1.22838950157166,-0.00040435791015625,-7.72476196289063e-05,-1.22838747501373,-0.000389575958251953,-7.53402709960938e-05,-1.22838830947876,-0.000403881072998047,-7.53402709960938e-05,-1.22838854789734,-0.000389575958251953,-7.62939453125e-05,-1.22838842868805,-0.000389575958251953,-7.62939453125e-05,-1.22838473320007,-0.000374317169189453,-7.43865966796875e-05,-1.22838735580444,-0.00038909912109375,-7.62939453125e-05,-1.22838187217712,-0.000375270843505859,-7.2479248046875e-05,-1.22838377952576,-0.000374794006347656,-7.34329223632813e-05,-1.22837710380554,-0.000346183776855469,-7.15255737304688e-05,-1.22837996482849,-0.000360965728759766,-7.2479248046875e-05,-1.22837710380554,-0.000346183776855469,-7.2479248046875e-05,-1.22837710380554,-0.000346660614013672,-7.2479248046875e-05,-1.22837233543396,-0.000331878662109375,-6.96182250976563e-05,-1.22837519645691,-0.000346660614013672,-7.15255737304688e-05,-1.22836852073669,-0.000332355499267578,-7.00950622558594e-05,-1.22837042808533,-0.000331878662109375,-7.00950622558594e-05,-1.2283627986908,-0.000302314758300781,-6.72340393066406e-05,-1.22836470603943,-0.000317573547363281,-6.81877136230469e-05,-1.22836089134216,-0.000303268432617188,-6.91413879394531e-05,-1.22836184501648,-0.000303268432617188,-6.866455078125e-05,-1.22835612297058,-0.000288486480712891,-6.4849853515625e-05,-1.22835612297058,-0.000273227691650391, --6.43730163574219e-05,-1.22835516929626,-0.000288486480712891,-6.43730163574219e-05,-1.22835421562195,-0.000259876251220703,-6.103515625e-05,-1.22835397720337,-0.000259876251220703,-6.34193420410156e-05,-1.22835803031921,-0.000245571136474609,-6.103515625e-05,-1.22835612297058,-0.000259876251220703,-6.103515625e-05,-1.22845806181431,-0.000447750091552734,-0.000140190124511719,-1.22845806181431,-0.000446796417236328,-0.000132560729980469,-1.22845907509327,-0.000447750091552734,-0.00012969970703125,-1.22836947441101,-0.000230312347412109,-0.000109195709228516,-1.22837424278259,-0.000274181365966797,-0.000123023986816406,-1.22837233543396,-0.000273227691650391,-0.000121116638183594,-1.22837805747986,-0.000288486480712891,-0.000125408172607422,-1.22837519645691,-0.000302791595458984,-0.000121116638183594,-1.22838282585144,-0.000318050384521484,-0.000128746032714844,-1.22838282585144,-0.000331878662109375,-0.000125885009765625,-1.22838854789734,-0.000346183776855469,-0.00012969970703125,-1.22838664054871,-0.000346660614013672,-0.000124931335449219,-1.22839426994324,-0.000360488891601563,-0.000132560729980469,-1.22839498519897,-0.000361442565917969,-0.000128746032714844,-1.22840094566345,-0.000374317169189453,-0.000133514404296875,-1.22839891910553,-0.000375270843505859,-0.000125885009765625,-1.22840464115143,-0.00038909912109375,-0.000134468078613281,-1.22840547561646,-0.00038909912109375,-0.00012969970703125,-1.22841048240662,-0.000403404235839844,-0.000135421752929688,-1.22840857505798,-0.000403881072998047,-0.000130653381347656,-1.22841608524323,-0.000418663024902344,-0.000136375427246094,-1.22841608524323,-0.000418186187744141,-0.000132560729980469,-1.22842371463776,-0.000418186187744141,-0.000138282775878906,-1.22842180728912,-0.000417232513427734,-0.000133514404296875,-1.22843241691589,-0.000432968139648438,-0.000138282775878906,-1.22843241691589,-0.000432491302490234,-0.000133514404296875,-1.22844278812408,-0.000432491302490234,-0.000138282775878906,-1.22844088077545,-0.000432491302490234,-0.000134468078613281,-1.22845336794853, --0.000447273254394531,-0.000139236450195313,-1.22845716774464,-0.000446796417236328,-0.000135421752929688,-1.2284542620182,-0.000447750091552734,-0.000136375427246094,-1.22845901548862,-0.000446796417236328,-0.00012969970703125,-1.22845900058746,-0.000447750091552734,-0.000124931335449219,-1.22846002876759,-0.000447750091552734,-0.000123977661132813,-1.22837996482849,-0.000259876251220703,-0.000128269195556641,-1.22837996482849,-0.000245094299316406,-0.000126361846923828,-1.22837710380554,-0.0002593994140625,-0.000125885009765625,-1.22838282585144,-0.000302791595458984,-0.000133991241455078,-1.22838473320007,-0.000331878662109375,-0.000134468078613281,-1.22838187217712,-0.000317573547363281,-0.000131130218505859,-1.22839319705963,-0.000360965728759766,-0.000135421752929688,-1.22839593887329,-0.000361442565917969,-0.000136375427246094,-1.22839403152466,-0.000361442565917969,-0.000134468078613281,-1.22840368747711,-0.00038909912109375,-0.000136375427246094,-1.22840762138367,-0.00038909912109375,-0.000138282775878906,-1.22840464115143,-0.000389575958251953,-0.0001373291015625,-1.22841513156891,-0.000403404235839844,-0.000139236450195313,-1.22841894626617,-0.000418663024902344,-0.000141143798828125,-1.22841608524323,-0.000418663024902344,-0.000138282775878906,-1.22843039035797,-0.000432491302490234,-0.000139236450195313,-1.22843527793884,-0.000432491302490234,-0.000139236450195313,-1.228431224823,-0.000432968139648438,-0.000141143798828125,-1.2284494638443,-0.000432968139648438,-0.000139236450195313,-1.22845621407032,-0.000446796417236328,-0.000142097473144531,-1.22845232486725,-0.000432491302490234,-0.000141143798828125,-1.22838664054871,-0.000245094299316406,-0.000128746032714844,-1.22838664054871,-0.000274181365966797,-0.000131130218505859,-1.22838473320007,-0.000288486480712891,-0.000133514404296875,-1.22838842868805,-0.000346660614013672,-0.000136375427246094,-1.22838664054871,-0.000332355499267578,-0.000135421752929688,-1.22839045524597,-0.000346660614013672,-0.000135421752929688,-1.22839987277985,-0.000374794006347656, --0.0001373291015625,-1.22839796543121,-0.000375270843505859,-0.000138282775878906,-1.22840261459351,-0.000374794006347656,-0.000139236450195313,-1.22841119766235,-0.000403404235839844,-0.000139236450195313,-1.22840845584869,-0.00038909912109375,-0.0001373291015625,-1.22841310501099,-0.000403881072998047,-0.000140190124511719,-1.22842466831207,-0.000418186187744141,-0.000141143798828125,-1.22842085361481,-0.000417232513427734,-0.000139236450195313,-1.22842752933502,-0.000418663024902344,-0.000139236450195313,-1.2284437417984,-0.000432968139648438,-0.000140190124511719,-1.22843897342682,-0.000432491302490234,-0.000140190124511719,-1.22845137119293,-0.000432968139648438,-0.00014495849609375,-1.22844666242599,-0.000432968139648438,-0.000140190124511719,-1.22845903038979,-0.000432968139648438,-0.000144004821777344,-1.22845709323883,-0.000432491302490234,-0.000144004821777344,-1.22846476174891,-0.000432968139648438,-0.000149726867675781,-1.2284609824419,-0.000432968139648438,-0.000150680541992188,-1.22846191376448,-0.000432491302490234,-0.000149726867675781,-1.22846476361156,-0.000418663024902344,-0.000152587890625,-1.22845900058746,-0.000418663024902344,-0.000155448913574219,-1.22846002876759,-0.000418663024902344,-0.000151634216308594,-1.22846476361156,-0.000418663024902344,-0.000156402587890625,-1.22845822572708,-0.000418186187744141,-0.000157356262207031,-1.22845807671547,-0.000418663024902344,-0.000154495239257813,-1.22846476174891,-0.000403881072998047,-0.00016021728515625,-1.22845622897148,-0.000403881072998047,-0.00016021728515625,-1.2284571826458,-0.000403404235839844,-0.000157356262207031,-1.22846476361156,-0.000403404235839844,-0.00016021728515625,-1.22845521569252,-0.00038909912109375,-0.000162124633789063,-1.22845616936684,-0.000403881072998047,-0.000161170959472656,-1.22846476174891,-0.000389575958251953,-0.000164985656738281,-1.22845327854156,-0.000375747680664063,-0.000164031982421875,-1.22845432162285,-0.00038909912109375,-0.000163078308105469,-1.22846476174891,-0.000374794006347656,-0.000166893005371094, --1.22845137119293,-0.000360965728759766,-0.000166893005371094,-1.22845235466957,-0.000374317169189453,-0.000165939331054688,-1.22845059633255,-0.000332355499267578,-0.000165939331054688,-1.22846476174891,-0.000317573547363281,-0.000164031982421875,-1.22845044732094,-0.000332355499267578,-0.000164031982421875,-1.2284791469574,-0.000447273254394531,-0.000126838684082031,-1.22848096489906,-0.000461578369140625,-0.000112533569335938,-1.22852289676666,-0.000418186187744141,-0.000123977661132813,-1.22852957248688,-0.000432491302490234,-0.000108718872070313,-1.22854781150818,-0.000374317169189453,-0.000117301940917969,-1.22855067253113,-0.000374794006347656,-0.000102043151855469,-1.22850298881531,-0.000461578369140625,-8.29696655273438e-05,-1.2285076379776,-0.000447273254394531,-9.1552734375e-05,-1.2285133600235,-0.000447273254394531,-8.392333984375e-05,-1.2285076379776,-0.000461101531982422,-8.10623168945313e-05,-1.22850859165192,-0.000461578369140625,-8.48770141601563e-05,-1.22851049900055,-0.000432491302490234,-0.000134468078613281,-1.22850859165192,-0.000432491302490234,-0.000140190124511719,-1.22848570346832,-0.000447273254394531,-0.000148773193359375,-1.22848474979401,-0.000446796417236328,-0.000142097473144531,-1.22854292392731,-0.000418186187744141,-8.0108642578125e-05,-1.22854387760162,-0.000403881072998047,-8.58306884765625e-05,-1.22854483127594,-0.00040435791015625,-7.91549682617188e-05,-1.22854292392731,-0.000403404235839844,-7.62939453125e-05,-1.22854387760162,-0.00040435791015625,-8.0108642578125e-05,-1.22853624820709,-0.000389575958251953,-0.000128746032714844,-1.22853624820709,-0.00038909912109375,-0.000138282775878906,-1.22852766513824,-0.000417709350585938,-0.000146865844726563,-1.22852575778961,-0.000418663024902344,-0.000139236450195313,-1.22856211662292,-0.000346660614013672,-7.43865966796875e-05,-1.22856593132019,-0.000332355499267578,-7.91549682617188e-05,-1.22856688499451,-0.000332355499267578,-7.20024108886719e-05,-1.22856307029724,-0.000331878662109375,-7.05718994140625e-05,-1.22856497764587,-0.000331878662109375, --7.29560852050781e-05,-1.22856402397156,-0.000317096710205078,-0.000123023986816406,-1.22856402397156,-0.000317096710205078,-0.000129222869873047,-1.22855257987976,-0.000360488891601563,-0.000142097473144531,-1.22855067253113,-0.000360965728759766,-0.000132560729980469,-1.22858214378357,-0.000259876251220703,-7.20024108886719e-05,-1.22858214378357,-0.000259876251220703,-8.7738037109375e-05,-1.22857546806335,-0.000245571136474609,-0.000111103057861328,-1.22857451438904,-0.000245094299316406,-0.000105857849121094,-1.22857356071472,-0.000274658203125,-0.000125885009765625,-1.22857546806335,-0.000274658203125,-0.000134944915771484,-1.22847533226013,-0.000475883483886719,-8.48770141601563e-05,-1.22848188877106,-0.000461578369140625,-9.25064086914063e-05,-1.22848963737488,-0.000461578369140625,-8.67843627929688e-05,-1.22848188877106,-0.000462055206298828,-8.29696655273438e-05,-1.22848185896873,-0.000461101531982422,-8.48770141601563e-05,-1.22849631309509,-0.000461578369140625,-8.48770141601563e-05,-1.22849714756012,-0.000447750091552734,-8.96453857421875e-05,-1.2284961938858,-0.000447750091552734,-8.48770141601563e-05,-1.2284961938858,-0.000461578369140625,-8.20159912109375e-05,-1.22849631309509,-0.000462055206298828,-8.48770141601563e-05,-1.22849428653717,-0.000446796417236328,-0.000121116638183594,-1.2284961938858,-0.000447273254394531,-0.000111579895019531,-1.22853147983551,-0.000446796417236328,-8.29696655273438e-05,-1.22853434085846,-0.000432491302490234,-8.86917114257813e-05,-1.22853910923004,-0.000432491302490234,-8.29696655273438e-05,-1.22853529453278,-0.000432491302490234,-7.82012939453125e-05,-1.22853624820709,-0.000432968139648438,-8.20159912109375e-05,-1.22854101657867,-0.000418663024902344,-8.20159912109375e-05,-1.22853815555573,-0.000418186187744141,-8.7738037109375e-05,-1.22853815555573,-0.000418186187744141,-8.29696655273438e-05,-1.22853910923004,-0.000417709350585938,-7.91549682617188e-05,-1.22853910923004,-0.000418186187744141,-8.29696655273438e-05,-1.22853052616119,-0.000403881072998047,-0.000116348266601563, --1.22853434085846,-0.000418663024902344,-0.000108718872070313,-1.2285487651825,-0.00038909912109375,-7.82012939453125e-05,-1.22855162620544,-0.000375747680664063,-8.20159912109375e-05,-1.22855353355408,-0.000375270843505859,-7.62939453125e-05,-1.22854971885681,-0.000375270843505859,-7.2479248046875e-05,-1.22855067253113,-0.000374794006347656,-7.72476196289063e-05,-1.22855734825134,-0.000346660614013672,-7.43865966796875e-05,-1.22855734825134,-0.000346660614013672,-8.10623168945313e-05,-1.22855639457703,-0.000346660614013672,-7.53402709960938e-05,-1.22855544090271,-0.000346660614013672,-7.2479248046875e-05,-1.22855639457703,-0.000346660614013672,-7.53402709960938e-05,-1.22855734825134,-0.000346660614013672,-0.000110626220703125,-1.22855925559998,-0.000346183776855469,-0.000100135803222656,-1.22857928276062,-0.000288486480712891,-6.91413879394531e-05,-1.22858119010925,-0.000288009643554688,-7.2479248046875e-05,-1.22858023643494,-0.000273704528808594,-6.72340393066406e-05,-1.2285783290863,-0.000288486480712891,-6.58035278320313e-05,-1.22858023643494,-0.000288009643554688,-6.77108764648438e-05,-1.22857642173767,-0.000274658203125,-0.000108242034912109,-1.22858119010925,-0.000274181365966797,-8.86917114257813e-05,-1.22852194309235,-0.000447273254394531,-8.29696655273438e-05,-1.22852194309235,-0.000432491302490234,-9.1552734375e-05,-1.22852194309235,-0.000433444976806641,-8.20159912109375e-05,-1.22852098941803,-0.000447750091552734,-8.0108642578125e-05,-1.22852194309235,-0.000447750091552734,-8.29696655273438e-05,-1.22851622104645,-0.000432491302490234,-0.000121116638183594,-1.2285190820694,-0.000432491302490234,-0.000110626220703125,-1.22850573062897,-0.000432491302490234,-0.000125885009765625,-1.22850668430328,-0.000447750091552734,-0.000111579895019531,-1.22851145267487,-0.000432014465332031,-0.000147819519042969,-1.22850108146667,-0.000432968139648438,-0.000149726867675781,-1.22849822044373,-0.000432491302490234,-0.000139236450195313,-1.22849810123444,-0.000432491302490234,-0.000128746032714844,-1.22847139835358,-0.000447750091552734, --0.000140190124511719,-1.22847141325474,-0.000447273254394531,-0.000149726867675781,-1.22846764698625,-0.000446796417236328,-0.000130653381347656,-1.22846776247025,-0.000447750091552734,-0.000126838684082031,-1.22848570346832,-0.000446796417236328,-0.000134468078613281,-1.22854471206665,-0.000389575958251953,-7.91549682617188e-05,-1.22854387760162,-0.00038909912109375,-8.29696655273438e-05,-1.22854387760162,-0.00038909912109375,-7.91549682617188e-05,-1.22854292392731,-0.00038909912109375,-7.72476196289063e-05,-1.22854387760162,-0.00038909912109375,-8.0108642578125e-05,-1.22854006290436,-0.000374317169189453,-0.000110626220703125,-1.22854197025299,-0.00038909912109375,-0.000102996826171875,-1.22853434085846,-0.000403881072998047,-0.000123023986816406,-1.22854006290436,-0.000403404235839844,-0.000105857849121094,-1.22853720188141,-0.00038909912109375,-0.00014495849609375,-1.22853243350983,-0.00040435791015625,-0.00014495849609375,-1.22852957248688,-0.000403881072998047,-0.000136375427246094,-1.22852957248688,-0.000403404235839844,-0.000123977661132813,-1.22852098941803,-0.000418663024902344,-0.000148773193359375,-1.22851812839508,-0.000417232513427734,-0.000139236450195313,-1.22851717472076,-0.000418186187744141,-0.000127792358398438,-1.22852575778961,-0.000417709350585938,-0.000128746032714844,-1.22857260704041,-0.000303268432617188,-7.15255737304688e-05,-1.22857356071472,-0.000303268432617188,-7.62939453125e-05,-1.22857260704041,-0.000302791595458984,-7.20024108886719e-05,-1.22857165336609,-0.000302791595458984,-6.91413879394531e-05,-1.22857260704041,-0.000303268432617188,-7.15255737304688e-05,-1.22856879234314,-0.000302791595458984,-0.000104904174804688,-1.22857260704041,-0.000302314758300781,-9.34600830078125e-05,-1.22856211662292,-0.000331878662109375,-0.000115871429443359,-1.22856688499451,-0.000331878662109375,-9.67979431152344e-05,-1.22856688499451,-0.000317573547363281,-0.000138282775878906,-1.22856020927429,-0.000346183776855469,-0.000140190124511719,-1.22855734825134,-0.000346660614013672,-0.000130653381347656, --1.22855734825134,-0.000345230102539063,-0.000119209289550781,-1.22854483127594,-0.000375747680664063,-0.000143051147460938,-1.22854292392731,-0.000375270843505859,-0.000133514404296875,-1.22854197025299,-0.000374794006347656,-0.000120162963867188,-1.22855162620544,-0.000360488891601563,-0.000123023986816406,-1.22857928276062,-0.000245094299316406,-7.10487365722656e-05,-1.2285783290863,-0.000244617462158203,-8.91685485839844e-05,-1.22857642173767,-0.000245094299316406,-0.000101566314697266,-1.22857737541199,-0.0002593994140625,-0.000105857849121094,-1.22857451438904,-0.0002593994140625,-0.000112056732177734,-1.22857451438904,-0.000245094299316406,-0.0001220703125,-1.22857737541199,-0.000245094299316406,-0.000130653381347656,-1.22857451438904,-0.000259876251220703,-0.000124454498291016,-1.22857642173767,-0.0002593994140625,-0.000131130218505859,-1.22857451438904,-0.000259876251220703,-0.000115871429443359,-1.22857356071472,-0.000274181365966797,-0.000117778778076172,-1.22857356071472,-0.000273227691650391,-0.000113487243652344,-1.22846662253141,-0.000461578369140625,-9.05990600585938e-05,-1.22846855223179,-0.000462055206298828,-8.48770141601563e-05,-1.22846662253141,-0.000461578369140625,-8.20159912109375e-05,-1.22846663743258,-0.000461578369140625,-8.67843627929688e-05,-1.22847804427147,-0.000447273254394531,-0.000142097473144531,-1.22847804427147,-0.000447273254394531,-0.000148773193359375,-1.22847804427147,-0.000447750091552734,-0.000135421752929688,-1.22847804427147,-0.000446796417236328,-0.000131607055664063,-1.22846664488316,-0.000446796417236328,-0.000121116638183594,-1.22846662998199,-0.000461578369140625,-0.000110626220703125,-1.22849249839783,-0.000447750091552734,-0.000139236450195313,-1.22849428653717,-0.000447273254394531,-0.000148773193359375,-1.22849428653717,-0.000461578369140625,-9.1552734375e-05,-1.22849249839783,-0.000447750091552734,-0.000111579895019531,-1.22849249839783,-0.000446796417236328,-0.000128746032714844,-1.22849333286285,-0.000446796417236328,-0.000124931335449219,-1.22848868370056,-0.000447750091552734, --0.000126838684082031,-1.22848582267761,-0.000446796417236328,-0.000131607055664063,-1.22849905490875,-0.000446796417236328,-9.25064086914063e-05,-1.22849917411804,-0.000446796417236328,-0.000109672546386719,-1.22850394248962,-0.000432968139648438,-0.000141143798828125,-1.22850573062897,-0.000432968139648438,-0.000149726867675781,-1.22849905490875,-0.000447750091552734,-0.000119209289550781,-1.22849905490875,-0.000447273254394531,-0.000123977661132813,-1.22850489616394,-0.000432968139648438,-0.000134468078613281,-1.22850477695465,-0.000432491302490234,-0.000131607055664063,-1.2285133600235,-0.000432968139648438,-0.000139236450195313,-1.22851622104645,-0.000432014465332031,-0.000148773193359375,-1.22851812839508,-0.000446796417236328,-8.86917114257813e-05,-1.22851622104645,-0.000432491302490234,-0.000112533569335938,-1.2285133600235,-0.000432491302490234,-0.000125885009765625,-1.22851145267487,-0.000432968139648438,-0.000128746032714844,-1.22851431369781,-0.000432491302490234,-0.000128746032714844,-1.22851526737213,-0.000432968139648438,-0.000123977661132813,-1.2285248041153,-0.000432968139648438,-8.7738037109375e-05,-1.22852194309235,-0.000432491302490234,-0.000109672546386719,-1.22852194309235,-0.000417232513427734,-0.000139236450195313,-1.2285248041153,-0.000417709350585938,-0.00014495849609375,-1.22852098941803,-0.000418663024902344,-0.00012969970703125,-1.22852098941803,-0.000417232513427734,-0.000126838684082031,-1.22851812839508,-0.000432491302490234,-0.000121116638183594,-1.22851717472076,-0.000418186187744141,-0.000123977661132813,-1.22852861881256,-0.000403881072998047,-0.0001373291015625,-1.22852957248688,-0.000403404235839844,-0.000146865844726563,-1.22854006290436,-0.000432491302490234,-8.7738037109375e-05,-1.22853434085846,-0.000418186187744141,-0.000108718872070313,-1.22852861881256,-0.00040435791015625,-0.000123977661132813,-1.22852957248688,-0.000403881072998047,-0.000119209289550781,-1.22852861881256,-0.000418663024902344,-0.000123023986816406,-1.22852671146393,-0.000418663024902344,-0.000124931335449219, --1.22854006290436,-0.000418663024902344,-8.67843627929688e-05,-1.22853529453278,-0.000403881072998047,-0.000105857849121094,-1.22853243350983,-0.00038909912109375,-0.000138282775878906,-1.22853434085846,-0.000390052795410156,-0.00014495849609375,-1.22853147983551,-0.00040435791015625,-0.000118255615234375,-1.22853052616119,-0.000403881072998047,-0.000120162963867188,-1.22853243350983,-0.000389575958251953,-0.00012969970703125,-1.22853243350983,-0.000389575958251953,-0.000126838684082031,-1.22853910923004,-0.000374317169189453,-0.000134468078613281,-1.22854197025299,-0.000374794006347656,-0.000144004821777344,-1.22854483127594,-0.000403404235839844,-8.48770141601563e-05,-1.22854197025299,-0.000389575958251953,-0.000103950500488281,-1.22853815555573,-0.00038909912109375,-0.000119209289550781,-1.22853624820709,-0.00038909912109375,-0.000123977661132813,-1.22853910923004,-0.000374317169189453,-0.000119209289550781,-1.22853910923004,-0.000375270843505859,-0.00011444091796875,-1.22854590415955,-0.00038909912109375,-8.29696655273438e-05,-1.22854387760162,-0.000375270843505859,-0.000103950500488281,-1.22854685783386,-0.000360965728759766,-0.000134468078613281,-1.2285487651825,-0.000361442565917969,-0.000143051147460938,-1.22854590415955,-0.000374317169189453,-0.000125885009765625,-1.22854590415955,-0.000375270843505859,-0.000123023986816406,-1.22854197025299,-0.000374794006347656,-0.000111579895019531,-1.22854101657867,-0.000374317169189453,-0.000115394592285156,-1.22855448722839,-0.000346183776855469,-0.000131607055664063,-1.22855639457703,-0.000346183776855469,-0.000141143798828125,-1.22855734825134,-0.000360965728759766,-8.20159912109375e-05,-1.22855734825134,-0.000360965728759766,-0.000101089477539063,-1.22855544090271,-0.000346660614013672,-0.000119209289550781,-1.22855639457703,-0.000346660614013672,-0.00011444091796875,-1.22855448722839,-0.000360965728759766,-0.000115394592285156,-1.22855257987976,-0.000360965728759766,-0.000121116638183594,-1.22856020927429,-0.000346660614013672,-8.0108642578125e-05,-1.22856116294861, --0.000346660614013672,-9.918212890625e-05,-1.22856116294861,-0.000332355499267578,-0.000131130218505859,-1.22856307029724,-0.000331878662109375,-0.000138282775878906,-1.22855830192566,-0.000346660614013672,-0.000110626220703125,-1.22855734825134,-0.000345706939697266,-0.000113487243652344,-1.22856020927429,-0.000332355499267578,-0.000124931335449219,-1.22855925559998,-0.000331401824951172,-0.000122547149658203,-1.22856879234314,-0.000303745269775391,-0.000126838684082031,-1.22857165336609,-0.000302314758300781,-0.000135898590087891,-1.22857165336609,-0.000317096710205078,-7.77244567871094e-05,-1.22857165336609,-0.000317096710205078,-9.5367431640625e-05,-1.22856688499451,-0.000317573547363281,-0.000115394592285156,-1.22856402397156,-0.000317573547363281,-0.000120162963867188,-1.22856783866882,-0.000303268432617188,-0.00011444091796875,-1.22856688499451,-0.000302791595458984,-0.000109672546386719,-1.22847144305706,-0.000462055206298828,-9.05990600585938e-05,-1.22847047448158,-0.000461101531982422,-0.000112533569335938,-1.22858214378357,-0.000259876251220703,-6.53266906738281e-05,-1.22857451438904,-0.000245094299316406,-6.43730163574219e-05,-1.22857737541199,-0.0002593994140625,-6.24656677246094e-05,-1.2285783290863,-0.000244617462158203,-6.53266906738281e-05,-1.22849822044373,-0.000447273254394531,-8.20159912109375e-05,-1.22849905490875,-0.000447750091552734,-8.29696655273438e-05,-1.22851812839508,-0.000446796417236328,-8.0108642578125e-05,-1.2285190820694,-0.000446796417236328,-8.29696655273438e-05,-1.22849333286285,-0.000461578369140625,-8.29696655273438e-05,-1.22849428653717,-0.000461578369140625,-8.48770141601563e-05,-1.22852575778961,-0.000447273254394531,-8.10623168945313e-05,-1.22852575778961,-0.000447273254394531,-8.392333984375e-05,-1.22854101657867,-0.000432491302490234,-7.91549682617188e-05,-1.22854197025299,-0.000432491302490234,-8.29696655273438e-05,-1.22854006290436,-0.000418663024902344,-7.82012939453125e-05,-1.22854006290436,-0.000418186187744141,-8.10623168945313e-05,-1.22854387760162,-0.000403881072998047, --7.43865966796875e-05,-1.22854471206665,-0.000403881072998047,-7.91549682617188e-05,-1.22854483127594,-0.000389575958251953,-7.72476196289063e-05,-1.22854566574097,-0.00038909912109375,-7.72476196289063e-05,-1.22855448722839,-0.000360488891601563,-7.34329223632813e-05,-1.22855639457703,-0.000360965728759766,-7.53402709960938e-05,-1.22855830192566,-0.000346183776855469,-7.34329223632813e-05,-1.22855925559998,-0.000345706939697266,-7.53402709960938e-05,-1.22856879234314,-0.000317573547363281,-6.91413879394531e-05,-1.22857069969177,-0.000317573547363281,-7.15255737304688e-05,-1.22857928276062,-0.000259876251220703,-6.38961791992188e-05,-1.22858119010925,-0.0002593994140625,-6.62803649902344e-05,-1.22847616672516,-0.000447750091552734,-0.000126838684082031,-1.22847616672516,-0.000446796417236328,-0.000111579895019531,-1.2285133600235,-0.000417232513427734,-0.0001220703125,-1.22851622104645,-0.000418663024902344,-0.000108718872070313,-1.22853434085846,-0.000360965728759766,-0.000116348266601563,-1.22853338718414,-0.000374317169189453,-0.000102996826171875,-1.22850298881531,-0.000447750091552734,-7.91549682617188e-05,-1.22850668430328,-0.000446796417236328,-8.48770141601563e-05,-1.22850203514099,-0.000446796417236328,-9.25064086914063e-05,-1.22849726676941,-0.000447273254394531,-8.392333984375e-05,-1.22850203514099,-0.000447750091552734,-8.48770141601563e-05,-1.22850000858307,-0.000432491302490234,-0.000134468078613281,-1.22850573062897,-0.000418186187744141,-0.000133514404296875,-1.22850203514099,-0.000432491302490234,-0.000138282775878906,-1.22850298881531,-0.000432968139648438,-0.000134468078613281,-1.22846671193838,-0.000432491302490234,-0.000145912170410156,-1.22846953570843,-0.000432491302490234,-0.000145912170410156,-1.22846761345863,-0.000432968139648438,-0.000146865844726563,-1.22846667841077,-0.000432491302490234,-0.000146865844726563,-1.22853052616119,-0.000403404235839844,-7.72476196289063e-05,-1.22852957248688,-0.000389575958251953,-7.82012939453125e-05,-1.22852671146393,-0.000403404235839844,-8.67843627929688e-05, --1.22852861881256,-0.00040435791015625,-8.0108642578125e-05,-1.22852766513824,-0.000403404235839844,-8.0108642578125e-05,-1.22852575778961,-0.00038909912109375,-0.000131607055664063,-1.22852957248688,-0.000374794006347656,-0.000128746032714844,-1.22852671146393,-0.000389575958251953,-0.000134468078613281,-1.22852766513824,-0.000389575958251953,-0.000128746032714844,-1.22851049900055,-0.000403404235839844,-0.000143051147460938,-1.22850000858307,-0.000403881072998047,-0.000149726867675781,-1.22848296165466,-0.000403404235839844,-0.000156402587890625,-1.22849440574646,-0.000418663024902344,-0.000148773193359375,-1.22849714756012,-0.000403881072998047,-0.000148773193359375,-1.2285487651825,-0.000331401824951172,-7.00950622558594e-05,-1.2285487651825,-0.000318050384521484,-7.2479248046875e-05,-1.22854590415955,-0.000332355499267578,-7.82012939453125e-05,-1.22854578495026,-0.000332355499267578,-7.34329223632813e-05,-1.22854685783386,-0.000332355499267578,-7.20024108886719e-05,-1.22854971885681,-0.000317573547363281,-0.000125885009765625,-1.22855353355408,-0.000302791595458984,-0.000123500823974609,-1.22855067253113,-0.000317573547363281,-0.000127315521240234,-1.22855162620544,-0.000317096710205078,-0.000123977661132813,-1.22853147983551,-0.000345706939697266,-0.000144004821777344,-1.22851717472076,-0.000346660614013672,-0.000153541564941406,-1.22849524021149,-0.000346660614013672,-0.000163078308105469,-1.22851240634918,-0.000360965728759766,-0.000153541564941406,-1.22851431369781,-0.000346660614013672,-0.000154495239257813,-1.22855830192566,-0.0002593994140625,-8.72611999511719e-05,-1.22855830192566,-0.0002593994140625,-7.20024108886719e-05,-1.22856116294861,-0.000245571136474609,-0.000107765197753906,-1.22856211662292,-0.000245094299316406,-0.000105857849121094,-1.22847712039948,-0.000461101531982422,-8.20159912109375e-05,-1.22848284244537,-0.000461578369140625,-8.48770141601563e-05,-1.22847619652748,-0.000461578369140625,-9.25064086914063e-05,-1.22847144305706,-0.000461578369140625,-8.58306884765625e-05,-1.22847628593445, --0.000461578369140625,-8.48770141601563e-05,-1.22849333286285,-0.000447273254394531,-8.10623168945313e-05,-1.22849524021149,-0.000446796417236328,-8.392333984375e-05,-1.22849428653717,-0.000447750091552734,-8.96453857421875e-05,-1.22849154472351,-0.000447273254394531,-8.29696655273438e-05,-1.22849333286285,-0.000447750091552734,-8.392333984375e-05,-1.22849154472351,-0.000447750091552734,-0.000119209289550781,-1.22849428653717,-0.000447273254394531,-0.000108718872070313,-1.22852385044098,-0.000432968139648438,-7.72476196289063e-05,-1.2285248041153,-0.000432968139648438,-8.10623168945313e-05,-1.2285190820694,-0.000432491302490234,-8.67843627929688e-05,-1.2285190820694,-0.000432491302490234,-8.29696655273438e-05,-1.22852098941803,-0.000432968139648438,-8.10623168945313e-05,-1.22853243350983,-0.000418663024902344,-7.91549682617188e-05,-1.22853147983551,-0.000418186187744141,-8.0108642578125e-05,-1.22852861881256,-0.000417709350585938,-8.7738037109375e-05,-1.22852861881256,-0.000418186187744141,-8.10623168945313e-05,-1.22853052616119,-0.000418186187744141,-8.0108642578125e-05,-1.2285248041153,-0.00040435791015625,-0.000118255615234375,-1.22852575778961,-0.00040435791015625,-0.000105857849121094,-1.22853529453278,-0.000374317169189453,-7.2479248046875e-05,-1.22853434085846,-0.000360965728759766,-7.53402709960938e-05,-1.22853338718414,-0.000374317169189453,-8.29696655273438e-05,-1.22853529453278,-0.000375747680664063,-7.72476196289063e-05,-1.22853434085846,-0.000375270843505859,-7.72476196289063e-05,-1.22854495048523,-0.000346183776855469,-7.34329223632813e-05,-1.22854590415955,-0.000346660614013672,-7.62939453125e-05,-1.22854197025299,-0.000346660614013672,-8.10623168945313e-05,-1.22853910923004,-0.000346183776855469,-7.53402709960938e-05,-1.22854292392731,-0.000346660614013672,-7.62939453125e-05,-1.22854292392731,-0.000346660614013672,-0.000110626220703125,-1.22854101657867,-0.000346183776855469,-0.000100135803222656,-1.22856020927429,-0.000288963317871094,-6.53266906738281e-05,-1.22855925559998,-0.000274181365966797,-6.72340393066406e-05, --1.22855734825134,-0.000288486480712891,-7.34329223632813e-05,-1.22855734825134,-0.000288009643554688,-6.91413879394531e-05,-1.22855830192566,-0.000288009643554688,-6.77108764648438e-05,-1.22855734825134,-0.000274181365966797,-0.000107765197753906,-1.22855639457703,-0.000273227691650391,-8.91685485839844e-05,-1.22851622104645,-0.000432968139648438,-8.10623168945313e-05,-1.22851717472076,-0.000432491302490234,-8.29696655273438e-05,-1.22851526737213,-0.000432968139648438,-8.7738037109375e-05,-1.2285133600235,-0.000432491302490234,-8.20159912109375e-05,-1.22851526737213,-0.000432968139648438,-8.29696655273438e-05,-1.22851145267487,-0.000432491302490234,-0.000121116638183594,-1.2285133600235,-0.000432491302490234,-0.000109672546386719,-1.22849905490875,-0.000432491302490234,-0.000124931335449219,-1.22850000858307,-0.000432491302490234,-0.000110626220703125,-1.2284961938858,-0.000418663024902344,-0.000142097473144531,-1.22848963737488,-0.000417232513427734,-0.000146865844726563,-1.2284771502018,-0.000418186187744141,-0.000149726867675781,-1.22848379611969,-0.000432968139648438,-0.000146865844726563,-1.22848665714264,-0.000418186187744141,-0.000146865844726563,-1.22848677635193,-0.000432491302490234,-0.000143051147460938,-1.22847339510918,-0.000432491302490234,-0.000148773193359375,-1.22847613692284,-0.000432491302490234,-0.00014495849609375,-1.22847998142242,-0.000432491302490234,-0.00014495849609375,-1.22849237918854,-0.000432491302490234,-0.000132560729980469,-1.22849631309509,-0.000432491302490234,-0.000133514404296875,-1.22849333286285,-0.000432491302490234,-0.000139236450195313,-1.22849428653717,-0.000432491302490234,-0.000133514404296875,-1.2284666672349,-0.000447750091552734,-0.000139236450195313,-1.22846853733063,-0.000447273254394531,-0.000142097473144531,-1.2284666262567,-0.000447273254394531,-0.000141143798828125,-1.22846858948469,-0.000447273254394531,-0.000136375427246094,-1.22846665233374,-0.000447273254394531,-0.000134468078613281,-1.2284791469574,-0.000446796417236328,-0.000136375427246094,-1.22848582267761, --0.000432968139648438,-0.000135421752929688,-1.22848200798035,-0.000432491302490234,-0.000138282775878906,-1.22848284244537,-0.000432491302490234,-0.000138282775878906,-1.22853720188141,-0.00038909912109375,-7.82012939453125e-05,-1.22853815555573,-0.00038909912109375,-7.91549682617188e-05,-1.22853529453278,-0.000389575958251953,-8.29696655273438e-05,-1.22853243350983,-0.00038909912109375,-7.91549682617188e-05,-1.22853624820709,-0.00038909912109375,-7.91549682617188e-05,-1.22853434085846,-0.000374794006347656,-0.000110626220703125,-1.22853529453278,-0.000375270843505859,-0.000102996826171875,-1.2285248041153,-0.00038909912109375,-0.000118255615234375,-1.22852575778961,-0.000403881072998047,-0.000103950500488281,-1.22852098941803,-0.000389575958251953,-0.000144004821777344,-1.2285076379776,-0.000375270843505859,-0.000152587890625,-1.22848856449127,-0.00038909912109375,-0.000162124633789063,-1.22850382328033,-0.00038909912109375,-0.000153541564941406,-1.22850573062897,-0.00038909912109375,-0.000151634216308594,-1.22851526737213,-0.00038909912109375,-0.000144004821777344,-1.22848570346832,-0.000403881072998047,-0.000158309936523438,-1.22850203514099,-0.000403404235839844,-0.000151634216308594,-1.22852289676666,-0.000403881072998047,-0.000128746032714844,-1.22852385044098,-0.00038909912109375,-0.000131607055664063,-1.22852289676666,-0.000403881072998047,-0.000135421752929688,-1.22852289676666,-0.000403404235839844,-0.00012969970703125,-1.22850298881531,-0.000418186187744141,-0.000144004821777344,-1.22848010063171,-0.000418663024902344,-0.000152587890625,-1.22849249839783,-0.000418186187744141,-0.000147819519042969,-1.22850954532623,-0.000417709350585938,-0.000133514404296875,-1.22851240634918,-0.000417709350585938,-0.000131607055664063,-1.22851049900055,-0.000417232513427734,-0.0001373291015625,-1.22851049900055,-0.000418663024902344,-0.000133514404296875,-1.22851526737213,-0.000417232513427734,-0.000133514404296875,-1.22852003574371,-0.000403881072998047,-0.00012969970703125,-1.22851622104645,-0.000403881072998047,-0.000135421752929688, --1.22851717472076,-0.000403881072998047,-0.000133514404296875,-1.22855925559998,-0.000302791595458984,-6.866455078125e-05,-1.22855925559998,-0.000302314758300781,-7.05718994140625e-05,-1.22855639457703,-0.000303268432617188,-7.58171081542969e-05,-1.22855448722839,-0.000302791595458984,-7.00950622558594e-05,-1.22855734825134,-0.000302314758300781,-7.10487365722656e-05,-1.22855639457703,-0.000302791595458984,-0.000108242034912109,-1.22855639457703,-0.000303268432617188,-9.48905944824219e-05,-1.22854590415955,-0.000331878662109375,-0.000114917755126953,-1.22854495048523,-0.000331401824951172,-9.67979431152344e-05,-1.22853052616119,-0.000288963317871094,-0.000141143798828125,-1.22848677635193,-0.000317096710205078,-0.000160694122314453,-1.22851622104645,-0.000317096710205078,-0.000152587890625,-1.2285076379776,-0.000302791595458984,-0.000151157379150391,-1.22853529453278,-0.000331401824951172,-0.000143051147460938,-1.22849714756012,-0.000331401824951172,-0.000162124633789063,-1.22851812839508,-0.000331878662109375,-0.000152111053466797,-1.22854495048523,-0.000345706939697266,-0.0001220703125,-1.22854685783386,-0.000332355499267578,-0.000124454498291016,-1.22854483127594,-0.000331401824951172,-0.00012969970703125,-1.22854590415955,-0.000331878662109375,-0.000124454498291016,-1.22852575778961,-0.000374794006347656,-0.000144004821777344,-1.22849154472351,-0.000375270843505859,-0.000162124633789063,-1.22850954532623,-0.000374317169189453,-0.000154495239257813,-1.22853338718414,-0.000375270843505859,-0.000125885009765625,-1.22853434085846,-0.000374794006347656,-0.000127792358398438,-1.22853243350983,-0.000375270843505859,-0.000133514404296875,-1.22853434085846,-0.000375270843505859,-0.000125885009765625,-1.22853720188141,-0.000360488891601563,-0.000128746032714844,-1.22854101657867,-0.000345706939697266,-0.000125885009765625,-1.22853815555573,-0.000360965728759766,-0.000130653381347656,-1.22853910923004,-0.000361442565917969,-0.000128746032714844,-1.22856116294861,-0.000245094299316406,-8.91685485839844e-05,-1.22856116294861, --0.000245571136474609,-7.10487365722656e-05,-1.22856211662292,-0.000245094299316406,-0.000101089477539063,-1.22855925559998,-0.000259876251220703,-0.000105857849121094,-1.22856116294861,-0.0002593994140625,-0.000112533569335938,-1.22855830192566,-0.000258922576904297,-0.000119209289550781,-1.22855830192566,-0.000245094299316406,-0.000116825103759766,-1.22855639457703,-0.000259876251220703,-0.000121116638183594,-1.22855830192566,-0.000259876251220703,-0.000118732452392578,-1.22855639457703,-0.000288963317871094,-0.000118255615234375,-1.22855734825134,-0.000273227691650391,-0.000119209289550781,-1.22855925559998,-0.000274181365966797,-0.000113487243652344,-1.22846661880612,-0.000462055206298828,-8.29696655273438e-05,-1.22846761345863,-0.000461578369140625,-8.48770141601563e-05,-1.22846671193838,-0.000462055206298828,-8.96453857421875e-05,-1.22846660390496,-0.000462055206298828,-8.48770141601563e-05,-1.22847619652748,-0.000446796417236328,-0.000132560729980469,-1.22846665233374,-0.000447750091552734,-0.000123977661132813,-1.22846665978432,-0.000447273254394531,-0.000126838684082031,-1.22848665714264,-0.000447273254394531,-0.000112533569335938,-1.22848773002625,-0.000447750091552734,-9.1552734375e-05,-1.22849142551422,-0.000447750091552734,-0.000123977661132813,-1.22848391532898,-0.000447750091552734,-0.000125885009765625,-1.22848379611969,-0.000432491302490234,-0.000131607055664063,-1.22849631309509,-0.000446796417236328,-0.000109672546386719,-1.22849631309509,-0.000446796417236328,-9.1552734375e-05,-1.2284961938858,-0.000432491302490234,-0.000120162963867188,-1.22849631309509,-0.000432968139648438,-0.000123977661132813,-1.22849810123444,-0.000432491302490234,-0.000130653381347656,-1.2285076379776,-0.000432491302490234,-0.000110626220703125,-1.22851049900055,-0.000447273254394531,-8.96453857421875e-05,-1.22850477695465,-0.000432491302490234,-0.000123977661132813,-1.22850394248962,-0.000432968139648438,-0.000128746032714844,-1.22851049900055,-0.000418663024902344,-0.000123977661132813,-1.22851431369781,-0.000432491302490234, --0.000108718872070313,-1.22851622104645,-0.000432491302490234,-8.86917114257813e-05,-1.2285133600235,-0.000418186187744141,-0.000127792358398438,-1.22851240634918,-0.000418186187744141,-0.000121116638183594,-1.22851240634918,-0.000418663024902344,-0.000123023986816406,-1.22852194309235,-0.000418186187744141,-0.000108718872070313,-1.2285248041153,-0.000418663024902344,-8.7738037109375e-05,-1.22852385044098,-0.000403404235839844,-0.000119209289550781,-1.2285190820694,-0.000403404235839844,-0.000121116638183594,-1.2285190820694,-0.000403881072998047,-0.000126838684082031,-1.22852671146393,-0.00040435791015625,-0.0001068115234375,-1.22852861881256,-0.000403881072998047,-8.67843627929688e-05,-1.2285248041153,-0.00040435791015625,-0.000115394592285156,-1.2285248041153,-0.000403404235839844,-0.000120162963867188,-1.2285248041153,-0.000389575958251953,-0.000123977661132813,-1.22852957248688,-0.00038909912109375,-0.000102996826171875,-1.22852957248688,-0.000389575958251953,-8.48770141601563e-05,-1.22852766513824,-0.000389575958251953,-0.000117301940917969,-1.22852766513824,-0.00038909912109375,-0.0001220703125,-1.22853338718414,-0.000374317169189453,-0.000112533569335938,-1.22853624820709,-0.000375270843505859,-0.000102043151855469,-1.22853720188141,-0.000375270843505859,-8.29696655273438e-05,-1.22853624820709,-0.000360488891601563,-0.000121116638183594,-1.22853624820709,-0.000374794006347656,-0.000110626220703125,-1.22853624820709,-0.000374317169189453,-0.000115394592285156,-1.22853624820709,-0.000360965728759766,-0.000100135803222656,-1.22853529453278,-0.000360488891601563,-8.0108642578125e-05,-1.22854483127594,-0.000346660614013672,-0.000113487243652344,-1.22853815555573,-0.000360965728759766,-0.000115394592285156,-1.22854006290436,-0.000360488891601563,-0.000121116638183594,-1.22854292392731,-0.000332355499267578,-9.918212890625e-05,-1.22854483127594,-0.000332355499267578,-8.0108642578125e-05,-1.22854387760162,-0.000332355499267578,-0.000110149383544922,-1.22854590415955,-0.000332355499267578,-0.000113487243652344,-1.22854685783386, --0.000318050384521484,-0.000121116638183594,-1.22854971885681,-0.000317096710205078,-9.48905944824219e-05,-1.22855067253113,-0.000317573547363281,-7.72476196289063e-05,-1.22855067253113,-0.000317573547363281,-0.000113487243652344,-1.22855162620544,-0.000318050384521484,-0.000119686126708984,-1.22855639457703,-0.000303268432617188,-0.000112056732177734,-1.22846955806017,-0.000447273254394531,-0.000110626220703125,-1.22846858203411,-0.000461578369140625,-9.1552734375e-05,-1.22856402397156,-0.000258922576904297,-6.19888305664063e-05,-1.22856497764587,-0.000245094299316406,-6.58035278320313e-05,-1.22856020927429,-0.000259876251220703,-6.58035278320313e-05,-1.22856307029724,-0.000245094299316406,-6.58035278320313e-05,-1.2284961938858,-0.000447750091552734,-8.20159912109375e-05,-1.22849631309509,-0.000446796417236328,-8.29696655273438e-05,-1.22851145267487,-0.000447750091552734,-8.10623168945313e-05,-1.22851049900055,-0.000446796417236328,-8.29696655273438e-05,-1.22848761081696,-0.000461578369140625,-8.10623168945313e-05,-1.22848761081696,-0.000461578369140625,-8.48770141601563e-05,-1.2285190820694,-0.000432491302490234,-7.91549682617188e-05,-1.22851717472076,-0.000432968139648438,-8.29696655273438e-05,-1.22852957248688,-0.000418186187744141,-7.72476196289063e-05,-1.22852671146393,-0.000418663024902344,-8.20159912109375e-05,-1.22853147983551,-0.000418186187744141,-7.91549682617188e-05,-1.22852957248688,-0.000418663024902344,-8.10623168945313e-05,-1.22853243350983,-0.00038909912109375,-7.43865966796875e-05,-1.22853052616119,-0.00038909912109375,-7.82012939453125e-05,-1.22853720188141,-0.000374317169189453,-7.53402709960938e-05,-1.22853720188141,-0.000375270843505859,-8.0108642578125e-05,-1.22853815555573,-0.000360965728759766,-7.2479248046875e-05,-1.22853624820709,-0.000360488891601563,-7.53402709960938e-05,-1.22854781150818,-0.000331878662109375,-7.15255737304688e-05,-1.22854590415955,-0.000331878662109375,-7.43865966796875e-05,-1.22855353355408,-0.000317096710205078,-6.81877136230469e-05,-1.22855162620544,-0.000317096710205078, --7.15255737304688e-05,-1.22856211662292,-0.0002593994140625,-6.43730163574219e-05,-1.22856020927429,-0.000260353088378906,-6.53266906738281e-05,-1.22846662253141,-0.000462055206298828,-8.10623168945313e-05,-1.22846850752831,-0.000462055206298828,-8.0108642578125e-05,-1.22846663743258,-0.000461101531982422,-8.20159912109375e-05,-1.22847241163254,-0.000461578369140625,-8.10623168945313e-05,-1.22847905755043,-0.000461578369140625,-8.10623168945313e-05,-1.22848376631737,-0.000461101531982422,-8.0108642578125e-05,-1.22847804427147,-0.000461101531982422,-8.10623168945313e-05,-1.22848951816559,-0.000461101531982422,-8.0108642578125e-05,-1.22849237918854,-0.000461101531982422,-7.82012939453125e-05,-1.22848868370056,-0.000461578369140625,-7.82012939453125e-05,-1.22849440574646,-0.000462055206298828,-7.82012939453125e-05,-1.22849524021149,-0.000447750091552734,-8.10623168945313e-05,-1.22849428653717,-0.000447273254394531,-7.91549682617188e-05,-1.22849726676941,-0.000447750091552734,-8.0108642578125e-05,-1.22849917411804,-0.000447273254394531,-8.20159912109375e-05,-1.22849631309509,-0.000447750091552734,-8.0108642578125e-05,-1.22850489616394,-0.000447750091552734,-7.72476196289063e-05,-1.22850859165192,-0.000447273254394531,-8.0108642578125e-05,-1.22850394248962,-0.000446796417236328,-7.91549682617188e-05,-1.22851431369781,-0.000447750091552734,-7.72476196289063e-05,-1.22851526737213,-0.000447750091552734,-7.82012939453125e-05,-1.22851240634918,-0.000447273254394531,-7.72476196289063e-05,-1.22851812839508,-0.000446796417236328,-7.82012939453125e-05,-1.22851812839508,-0.000432968139648438,-7.91549682617188e-05,-1.22851717472076,-0.000447750091552734,-7.91549682617188e-05,-1.22852194309235,-0.000432491302490234,-7.91549682617188e-05,-1.22852385044098,-0.000432968139648438,-7.72476196289063e-05,-1.22852098941803,-0.000432491302490234,-7.72476196289063e-05,-1.22853052616119,-0.000432491302490234,-7.53402709960938e-05,-1.22853052616119,-0.000432968139648438,-7.72476196289063e-05,-1.22852671146393,-0.000432491302490234,-7.62939453125e-05, --1.22853624820709,-0.000432491302490234,-7.62939453125e-05,-1.22853338718414,-0.000418663024902344,-7.62939453125e-05,-1.22853243350983,-0.000418186187744141,-7.62939453125e-05,-1.22853624820709,-0.000418663024902344,-7.72476196289063e-05,-1.22853434085846,-0.000417232513427734,-7.91549682617188e-05,-1.22853434085846,-0.000418186187744141,-7.72476196289063e-05,-1.22853624820709,-0.000418663024902344,-7.82012939453125e-05,-1.22853338718414,-0.000403881072998047,-7.72476196289063e-05,-1.22853338718414,-0.000418186187744141,-7.82012939453125e-05,-1.22853720188141,-0.000403881072998047,-7.72476196289063e-05,-1.22853338718414,-0.000403404235839844,-7.62939453125e-05,-1.22853338718414,-0.00040435791015625,-7.62939453125e-05,-1.22853815555573,-0.00038909912109375,-7.53402709960938e-05,-1.22853624820709,-0.000389575958251953,-7.34329223632813e-05,-1.22853529453278,-0.00038909912109375,-7.62939453125e-05,-1.22854006290436,-0.000389575958251953,-7.72476196289063e-05,-1.22853910923004,-0.000389575958251953,-7.72476196289063e-05,-1.22853815555573,-0.000389575958251953,-7.62939453125e-05,-1.22854101657867,-0.00038909912109375,-7.62939453125e-05,-1.22853910923004,-0.000375747680664063,-7.43865966796875e-05,-1.22853910923004,-0.00038909912109375,-7.62939453125e-05,-1.22854292392731,-0.000374317169189453,-7.43865966796875e-05,-1.22853910923004,-0.000360965728759766,-7.43865966796875e-05,-1.22853910923004,-0.000374317169189453,-7.34329223632813e-05,-1.22854685783386,-0.000360965728759766,-7.2479248046875e-05,-1.22854495048523,-0.000345706939697266,-7.15255737304688e-05,-1.22854197025299,-0.000360965728759766,-7.15255737304688e-05,-1.22854971885681,-0.000346660614013672,-7.2479248046875e-05,-1.22854971885681,-0.000346660614013672,-7.2479248046875e-05,-1.22854781150818,-0.000346660614013672,-7.2479248046875e-05,-1.22855257987976,-0.000346660614013672,-7.05718994140625e-05,-1.22855067253113,-0.000331878662109375,-7.00950622558594e-05,-1.22854971885681,-0.000346660614013672,-7.15255737304688e-05,-1.22855639457703,-0.000331401824951172, --6.96182250976563e-05,-1.22855448722839,-0.000317573547363281,-6.96182250976563e-05,-1.22855162620544,-0.000331878662109375,-6.866455078125e-05,-1.22856116294861,-0.000317573547363281,-6.81877136230469e-05,-1.22855925559998,-0.000302791595458984,-6.72340393066406e-05,-1.22855734825134,-0.000318050384521484,-6.77108764648438e-05,-1.22856497764587,-0.000303268432617188,-6.77108764648438e-05,-1.22856402397156,-0.000302791595458984,-6.96182250976563e-05,-1.22856211662292,-0.000303745269775391,-6.77108764648438e-05,-1.22856402397156,-0.000288486480712891,-6.4849853515625e-05,-1.22856974601746,-0.000288486480712891,-6.58035278320313e-05,-1.22856593132019,-0.000274181365966797,-6.38961791992188e-05,-1.22856497764587,-0.000288486480712891,-6.43730163574219e-05,-1.22857069969177,-0.0002593994140625,-6.34193420410156e-05,-1.22856688499451,-0.000259876251220703,-6.15119934082031e-05,-1.22856593132019,-0.000259876251220703,-6.43730163574219e-05,-1.22857069969177,-0.0002593994140625,-6.103515625e-05,-1.22856783866882,-0.000245094299316406,-6.05583190917969e-05,-1.22856783866882,-0.000259876251220703,-6.103515625e-05,-1.22847425937653,-0.000476360321044922,-8.10623168945313e-05,-1.22847044467926,-0.000461578369140625,-7.91549682617188e-05,-1.22846853733063,-0.000461101531982422,-8.10623168945313e-05,-1.22847050428391,-0.000476360321044922,-8.20159912109375e-05,-1.22847047448158,-0.000475883483886719,-8.10623168945313e-05,-1.22848677635193,-0.000461578369140625,-7.91549682617188e-05,-1.22848010063171,-0.000461578369140625,-8.10623168945313e-05,-1.22849440574646,-0.000461101531982422,-8.0108642578125e-05,-1.22849142551422,-0.000461101531982422,-8.0108642578125e-05,-1.2284961938858,-0.000446796417236328,-7.91549682617188e-05,-1.22849535942078,-0.000461578369140625,-8.0108642578125e-05,-1.22850203514099,-0.000461578369140625,-7.91549682617188e-05,-1.22849810123444,-0.000447750091552734,-8.20159912109375e-05,-1.22851240634918,-0.000446796417236328,-7.82012939453125e-05,-1.22850668430328,-0.000447750091552734,-8.0108642578125e-05,-1.2285190820694, --0.000447750091552734,-7.91549682617188e-05,-1.22851622104645,-0.000446796417236328,-7.82012939453125e-05,-1.22852098941803,-0.000432491302490234,-7.82012939453125e-05,-1.22852003574371,-0.000447750091552734,-7.91549682617188e-05,-1.22852861881256,-0.000446796417236328,-7.72476196289063e-05,-1.2285248041153,-0.000446796417236328,-8.0108642578125e-05,-1.22853720188141,-0.000432968139648438,-7.72476196289063e-05,-1.22853338718414,-0.000432491302490234,-7.72476196289063e-05,-1.22853910923004,-0.000418186187744141,-7.72476196289063e-05,-1.22853910923004,-0.000432491302490234,-7.62939453125e-05,-1.22853720188141,-0.000418186187744141,-7.72476196289063e-05,-1.22853815555573,-0.000418663024902344,-7.72476196289063e-05,-1.22854006290436,-0.000417709350585938,-7.72476196289063e-05,-1.22853815555573,-0.000418186187744141,-7.62939453125e-05,-1.22854101657867,-0.00040435791015625,-7.43865966796875e-05,-1.22854006290436,-0.00040435791015625,-7.72476196289063e-05,-1.22854197025299,-0.000389575958251953,-7.53402709960938e-05,-1.22854101657867,-0.000403881072998047,-7.53402709960938e-05,-1.22854197025299,-0.000389575958251953,-7.62939453125e-05,-1.22854197025299,-0.000389575958251953,-7.62939453125e-05,-1.22854483127594,-0.000374317169189453,-7.43865966796875e-05,-1.22854292392731,-0.00038909912109375,-7.62939453125e-05,-1.2285487651825,-0.000375270843505859,-7.2479248046875e-05,-1.22854685783386,-0.000374794006347656,-7.34329223632813e-05,-1.22855257987976,-0.000346183776855469,-7.15255737304688e-05,-1.22855067253113,-0.000360965728759766,-7.2479248046875e-05,-1.22855353355408,-0.000346183776855469,-7.2479248046875e-05,-1.22855353355408,-0.000346660614013672,-7.2479248046875e-05,-1.22855830192566,-0.000331878662109375,-6.96182250976563e-05,-1.22855544090271,-0.000346660614013672,-7.15255737304688e-05,-1.22856211662292,-0.000332355499267578,-7.00950622558594e-05,-1.22856020927429,-0.000331878662109375,-7.00950622558594e-05,-1.22856783866882,-0.000302314758300781,-6.72340393066406e-05,-1.22856497764587,-0.000317573547363281,-6.81877136230469e-05, --1.22856974601746,-0.000303268432617188,-6.91413879394531e-05,-1.22856879234314,-0.000303268432617188,-6.866455078125e-05,-1.22857451438904,-0.000288486480712891,-6.4849853515625e-05,-1.22857451438904,-0.000273227691650391,-6.43730163574219e-05,-1.22857451438904,-0.000288486480712891,-6.43730163574219e-05,-1.22857642173767,-0.000259876251220703,-6.103515625e-05,-1.22857546806335,-0.000259876251220703,-6.34193420410156e-05,-1.22857260704041,-0.000245571136474609,-6.103515625e-05,-1.22857451438904,-0.000259876251220703,-6.103515625e-05,-1.22847139835358,-0.000446796417236328,-0.000132560729980469,-1.22847157716751,-0.000447750091552734,-0.00012969970703125,-1.22855830192566,-0.000230312347412109,-0.000117301940917969,-1.22855639457703,-0.000274181365966797,-0.000123023986816406,-1.22855734825134,-0.000273227691650391,-0.000121116638183594,-1.22855257987976,-0.000288486480712891,-0.000125408172607422,-1.22855544090271,-0.000302791595458984,-0.000121116638183594,-1.22854781150818,-0.000318050384521484,-0.000128746032714844,-1.22854781150818,-0.000331878662109375,-0.000125885009765625,-1.22854197025299,-0.000346183776855469,-0.00012969970703125,-1.22854292392731,-0.000346660614013672,-0.000124931335449219,-1.22853624820709,-0.000360488891601563,-0.000132560729980469,-1.22853529453278,-0.000361442565917969,-0.000128746032714844,-1.22852957248688,-0.000374317169189453,-0.000133514404296875,-1.22853147983551,-0.000375270843505859,-0.000125885009765625,-1.2285248041153,-0.00038909912109375,-0.000134468078613281,-1.2285248041153,-0.00038909912109375,-0.00012969970703125,-1.22852003574371,-0.000403404235839844,-0.000135421752929688,-1.22852098941803,-0.000403881072998047,-0.000130653381347656,-1.22851431369781,-0.000418663024902344,-0.000136375427246094,-1.2285133600235,-0.000418186187744141,-0.000132560729980469,-1.22850573062897,-0.000418186187744141,-0.000138282775878906,-1.2285076379776,-0.000417232513427734,-0.000133514404296875,-1.22849810123444,-0.000432968139648438,-0.000138282775878906,-1.22849810123444,-0.000432491302490234, --0.000133514404296875,-1.22848677635193,-0.000432491302490234,-0.000138282775878906,-1.22848951816559,-0.000432491302490234,-0.000134468078613281,-1.22847329080105,-0.000446796417236328,-0.000135421752929688,-1.22847628593445,-0.000447273254394531,-0.000139236450195313,-1.22847619652748,-0.000447750091552734,-0.000136375427246094,-1.22847062349319,-0.000447750091552734,-0.000124931335449219,-1.22847138345242,-0.000446796417236328,-0.00012969970703125,-1.2284704297781,-0.000447750091552734,-0.000123977661132813,-1.22854971885681,-0.000245094299316406,-0.000126361846923828,-1.22854971885681,-0.000259876251220703,-0.000128269195556641,-1.22855353355408,-0.0002593994140625,-0.000125885009765625,-1.22854483127594,-0.000331878662109375,-0.000134468078613281,-1.22854685783386,-0.000302791595458984,-0.000133991241455078,-1.22854781150818,-0.000317573547363281,-0.000131130218505859,-1.22853338718414,-0.000361442565917969,-0.000136375427246094,-1.22853720188141,-0.000360965728759766,-0.000135421752929688,-1.22853624820709,-0.000361442565917969,-0.000134468078613281,-1.22852289676666,-0.00038909912109375,-0.000138282775878906,-1.22852671146393,-0.00038909912109375,-0.000136375427246094,-1.22852575778961,-0.000389575958251953,-0.0001373291015625,-1.22851145267487,-0.000418663024902344,-0.000141143798828125,-1.22851526737213,-0.000403404235839844,-0.000139236450195313,-1.22851431369781,-0.000418663024902344,-0.000138282775878906,-1.22849440574646,-0.000432491302490234,-0.000139236450195313,-1.22850000858307,-0.000432491302490234,-0.000139236450195313,-1.22849822044373,-0.000432968139648438,-0.000141143798828125,-1.22847433388233,-0.000446796417236328,-0.000142097473144531,-1.22848001122475,-0.000432968139648438,-0.000139236450195313,-1.22847807407379,-0.000432491302490234,-0.000141143798828125,-1.22854387760162,-0.000245094299316406,-0.000130176544189453,-1.22854387760162,-0.000274181365966797,-0.000131130218505859,-1.22854471206665,-0.000288486480712891,-0.000133514404296875,-1.22854197025299,-0.000346660614013672,-0.000136375427246094, --1.22854387760162,-0.000332355499267578,-0.000135421752929688,-1.22853910923004,-0.000346660614013672,-0.000135421752929688,-1.22852957248688,-0.000374794006347656,-0.0001373291015625,-1.22853147983551,-0.000375270843505859,-0.000138282775878906,-1.22852766513824,-0.000374794006347656,-0.000139236450195313,-1.2285190820694,-0.000403404235839844,-0.000139236450195313,-1.22852098941803,-0.00038909912109375,-0.0001373291015625,-1.22851717472076,-0.000403881072998047,-0.000140190124511719,-1.22850584983826,-0.000418186187744141,-0.000141143798828125,-1.22850859165192,-0.000417232513427734,-0.000139236450195313,-1.22850203514099,-0.000418663024902344,-0.000139236450195313,-1.22848677635193,-0.000432968139648438,-0.000140190124511719,-1.22849059104919,-0.000432491302490234,-0.000140190124511719,-1.22847810387611,-0.000432968139648438,-0.00014495849609375,-1.22848296165466,-0.000432968139648438,-0.000140190124511719,-1.22847139835358,-0.000432968139648438,-0.000144004821777344,-1.22847335040569,-0.000432491302490234,-0.000144004821777344,-1.22846948355436,-0.000432968139648438,-0.000150680541992188,-1.22846852242947,-0.000432491302490234,-0.000149726867675781,-1.22847144305706,-0.000418663024902344,-0.000155448913574219,-1.22847053408623,-0.000418663024902344,-0.000151634216308594,-1.22847236692905,-0.000418186187744141,-0.000157356262207031,-1.22847236692905,-0.000418663024902344,-0.000154495239257813,-1.22847335040569,-0.000403881072998047,-0.00016021728515625,-1.22847338020802,-0.000403404235839844,-0.000157356262207031,-1.22847533226013,-0.00038909912109375,-0.000162124633789063,-1.22847428917885,-0.000403881072998047,-0.000161170959472656,-1.22847628593445,-0.000375747680664063,-0.000164031982421875,-1.22847613692284,-0.00038909912109375,-0.000163078308105469,-1.22847819328308,-0.000360965728759766,-0.000166893005371094,-1.22847723960876,-0.000374317169189453,-0.000165939331054688,-1.2284799516201,-0.000332355499267578,-0.000165939331054688,-1.22848001122475,-0.000332355499267578,-0.000164031982421875,-1.22846762090921, --0.000447273254394531,-0.000149726867675781,-1.22846762090921,-0.000447750091552734,-0.000142097473144531,-1.22847148776054,-0.000475883483886719,-8.48770141601563e-05,-1.22846476361156,-0.000461101531982422,-8.20159912109375e-05,-1.22846664488316,-0.000461578369140625,-7.91549682617188e-05,-1.22846948355436,-0.000461578369140625,-8.20159912109375e-05,-1.22846966981888,-0.000461101531982422,-8.10623168945313e-05,-1.22846861183643,-0.000461578369140625,-8.48770141601563e-05,-1.22846660017967,-0.000447273254394531,-0.000110626220703125,-1.22847062349319,-0.000446796417236328,-0.000140190124511719,-1.22847145795822,-0.000447750091552734,-0.000136375427246094,-1.22847050428391,-0.000447750091552734,-0.000142097473144531,-1.22845904529095,-0.000447273254394531,-0.000149726867675781,-1.22845900058746,-0.000475883483886719,-8.48770141601563e-05,-1.22846380621195,-0.000461578369140625,-7.91549682617188e-05,-1.2284599840641,-0.000461578369140625,-8.20159912109375e-05,-1.22845993936062,-0.000461101531982422,-8.10623168945313e-05,-1.2284609824419,-0.000461578369140625,-8.48770141601563e-05,-1.22846385091543,-0.000447273254394531,-0.000110626220703125,-1.22845900058746,-0.000446796417236328,-0.000140190124511719,-1.22845901548862,-0.000447750091552734,-0.000136375427246094,-1.22845900058746,-0.000447750091552734,-0.000142097473144531,-1.22835516929626,-0.000245094299316406,-6.53266906738281e-05,-1.22836470603943,-0.000245094299316406,-6.4849853515625e-05,-1.22836184501648,-0.000245094299316406,-6.103515625e-05,-1.22835803031921,-0.000244617462158203,-6.24656677246094e-05,-1.22857451438904,-0.000245094299316406,-6.53266906738281e-05,-1.22856497764587,-0.000245094299316406,-6.4849853515625e-05,-1.22856879234314,-0.000245094299316406,-6.103515625e-05,-1.22857165336609,-0.000244617462158203,-6.24656677246094e-05,-1.22836375236511,-0.000230312347412109,-6.15119934082031e-05,-1.22836947441101,-0.000231266021728516,-0.000109672546386719,-1.22838652133942,-0.000230789184570313,-0.000129222869873047,-1.22854292392731,-0.000230312347412109, --0.00012969970703125,-1.22855830192566,-0.000231266021728516,-0.000118255615234375,-1.22856688499451,-0.000230312347412109,-6.15119934082031e-05,-1.22856020927429,-0.000230312347412109,-0.000109195709228516,-1.22856020927429,-0.000231266021728516,-0.000109672546386719,-1.22837233543396,-0.000230312347412109,-0.000117301940917969,-1.22837233543396,-0.000231266021728516,-0.000118255615234375,-1.22843325138092,-0.000259876251220703,-0.000142574310302734,-1.22846476361156,-0.000347137451171875,-0.0001678466796875,-1.22845137119293,-0.000346183776855469,-0.000165939331054688,-1.22847905755043,-0.000346183776855469,-0.000165939331054688,0,8.82148742675781e-06,0,-0.083060845710861,-3.4332275390625e-05,-4.76837158203125e-06,-0.0703143030332285,-2.81333923339844e-05,0,-0.757855892108637,-0.000270366668701172,-6.38961791992188e-05,-0.660627305485832,-0.000274658203125,-4.29153442382813e-05,-0.0760002583047026,-4.14848327636719e-05,-4.76837158203125e-06,-0.730143427863368,-0.000274658203125,-5.53131103515625e-05,-0.0804990380856907,-2.288818359375e-05,-5.7220458984375e-06,-0.74125659463607,-0.000268936157226563,-4.86373901367188e-05,-0.0503747090697289,-2.288818359375e-05,0,-0.830882787728115,-0.000258922576904297,-7.82012939453125e-05,-0.0672357082403323,-4.14848327636719e-05,0,-0.763880133730709,-0.000267505645751953,-6.96182250976563e-05,-0.0234380979090929,-7.15255737304688e-06,0,-0.881245017051697,-0.000260353088378906,-9.72747802734375e-05,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,2.32458114624023e-06,0,0,4.64916229248047e-06,0,-1.33459436893463,-0.00038909912109375,-0.000383377075195313,-1.34670233726501,-0.0005035400390625,-0.000340461730957031,-1.3470778465271,-0.000487327575683594,-0.000371932983398438,-0.893698930740356,-0.000263214111328125,-0.000116348266601563,0,6.91413879394531e-06,0,0,9.05990600585938e-06,0,-0.0116154262796044,9.05990600585938e-06,0,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.17911529541016e-06,0,0,-4.64916229248047e-06, -0,0,-2.32458114624023e-06,0,0,6.79492950439453e-06,0,0,4.58955764770508e-06,0,-1.05825936794281,-0.000519752502441406,-0.000269889831542969,-1.28174698352814,-0.000525474548339844,-0.000304222106933594,0,9.05990600585938e-06,0,0,6.79492950439453e-06,0,0,6.88433647155762e-06,0,0,9.29832458496094e-06,0,0,9.05990600585938e-06,0,-1.02680432796478,-0.000166893005371094,-0.000330448150634766,-1.30457663536072,-0.000304222106933594,-0.000363349914550781,-0.999523639678955,-9.44137573242188e-05,-0.000414609909057617,-0.896050035953523,-7.05718994140625e-05,-0.000446677207946777,-0.0259927213191995,1.1444091796875e-05,-1.59740447998047e-05,-0.949190318584442,-0.000132560729980469,-0.000354528427124023,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.88433647155762e-06,0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,-0.102783769369125,-5.10215759277344e-05,-7.62939453125e-06,-0.0768118798732758,-3.67164611816406e-05,0,-0.603522539138794,-0.000203609466552734,-4.29153442382813e-05,-0.59784722328186,-0.000213146209716797,-3.91006469726563e-05,-0.523395538330078,-0.00018310546875,-3.4332275390625e-05,-0.495805025100708,-0.000178813934326172,-3.4332275390625e-05,-0.346720218658447,-0.000144481658935547,-1.71661376953125e-05,-0.365042448043823,-0.0001373291015625,-2.38418579101563e-05,-0.235363125801086,-0.000102996826171875,-9.5367431640625e-06,-0.258273720741272,-9.87052917480469e-05,-1.71661376953125e-05,-0.152953505516052,-5.48362731933594e-05,-5.7220458984375e-06,-0.186152815818787,-7.58171081542969e-05,-1.1444091796875e-05, --0.0994709730148315,-5.29289245605469e-05,-4.76837158203125e-06,-0.135044395923615,-5.29289245605469e-05,-8.58306884765625e-06,-0.421386957168579,-0.00016021728515625,-3.0517578125e-05,-0.42155909538269,-0.000169277191162109,-2.38418579101563e-05,-0.600241661071777,-0.000215053558349609,-4.1961669921875e-05,-0.647118330001831,-0.0002288818359375,-4.57763671875e-05,-0.689834833145142,-0.000240325927734375,-4.86373901367188e-05,-0.703327417373657,-0.000254154205322266,-4.9591064453125e-05,-0.801267862319946,-0.000293254852294922,-6.103515625e-05,-0.817743539810181,-0.000295162200927734,-5.81741333007813e-05,-0.906530618667603,-0.0003204345703125,-7.05718994140625e-05,-0.863132238388062,-0.000299930572509766,-6.38961791992188e-05,-1.04450726509094,-0.000373363494873047,-7.43865966796875e-05,-1.08286929130554,-0.00038909912109375,-8.86917114257813e-05,-1.11463189125061,0.0074005126953125,-0.000342369079589844,-1.1205153465271,-0.000417232513427734,-9.918212890625e-05,-0.968299388885498,0.0387330055236816,-0.000105857849121094,-0.945576906204224,0.108390808105469,0.0274801254272461,-0.812356233596802,0.0389456748962402,-5.7220458984375e-05,-0.87901771068573,0.13715648651123,0.00929164886474609,-0.804297924041748,0.0389313697814941,-5.91278076171875e-05,-0.760844588279724,0.0673699378967285,0.0132846832275391,-0.78317129611969,-0.000259876251220703,-6.103515625e-05,-0.700903654098511,0.0126686096191406,-4.10079956054688e-05,-0.755266726016998,-0.000263214111328125,-6.19888305664063e-05,-0.662544190883636,-0.000276088714599609,-4.29153442382813e-05,-0.0891833007335663,-4.33921813964844e-05,-4.76837158203125e-06,-0.117341041564941,-5.48362731933594e-05,-5.7220458984375e-06,-0.171426773071289,-6.62803649902344e-05,-8.58306884765625e-06,-0.250630140304565,-9.1552734375e-05,-1.23977661132813e-05,-0.369702339172363,-0.000148773193359375,-2.288818359375e-05,-0.45042872428894,-0.00018310546875,-2.95639038085938e-05,-0.521634578704834,-0.000190258026123047,-3.52859497070313e-05,-0.599839925765991,-0.000208377838134766,-4.10079956054688e-05, --0.608727216720581,-0.0002288818359375,-4.29153442382813e-05,-0.699256181716919,-0.000237941741943359,-5.14984130859375e-05,-0.807940721511841,-0.000279903411865234,-6.00814819335938e-05,-0.887659788131714,-0.000314235687255859,-6.77108764648438e-05,-1.05236196517944,-0.000393867492675781,-8.10623168945313e-05,-1.10382986068726,0.000133514404296875,-8.7738037109375e-05,-0.967616558074951,0.0387473106384277,-9.44137573242188e-05,-0.883519053459167,0.0566244125366211,-5.05447387695313e-05,-0.846054553985596,0.0389189720153809,-5.14984130859375e-05,-0.792774677276611,-0.000270366668701172,-5.24520874023438e-05,-0.739719569683075,-0.000277042388916016,-5.43594360351563e-05,-0.0982849597930908,-4.81605529785156e-05,-5.7220458984375e-06,-0.128795921802521,-5.48362731933594e-05,-8.58306884765625e-06,-0.180903673171997,-7.77244567871094e-05,-1.1444091796875e-05,-0.256482243537903,-9.87052917480469e-05,-1.52587890625e-05,-0.36866295337677,-0.000154018402099609,-2.47955322265625e-05,-0.434232950210571,-0.000165462493896484,-3.0517578125e-05,-0.506765365600586,-0.000194549560546875,-3.4332275390625e-05,-0.606605291366577,-0.000211238861083984,-4.29153442382813e-05,-0.649121284484863,-0.000217437744140625,-4.67300415039063e-05,-0.709467172622681,-0.000260829925537109,-5.05447387695313e-05,-0.815935373306274,-0.000288486480712891,-6.00814819335938e-05,-0.856096506118774,-0.000304698944091797,-6.38961791992188e-05,-1.04255843162537,-0.000386714935302734,-7.72476196289063e-05,-1.10813856124878,0.015902042388916,-8.10623168945313e-05,-0.968782424926758,0.105906963348389,0.0277814865112305,-0.8975750207901,0.124057292938232,0.00211620330810547,-0.8257896900177,0.0676846504211426,0.0130758285522461,-0.782246470451355,0.0126757621765137,-4.67300415039063e-05,-0.743937134742737,-0.000274658203125,-4.76837158203125e-05,-0.056196928024292,-1.85966491699219e-05,0,-0.0762843489646912,-2.81333923339844e-05,0,-0.112174153327942,-3.95774841308594e-05,0,-0.161687135696411,-7.58171081542969e-05,-2.86102294921875e-06,-0.218053340911865,-7.77244567871094e-05, --4.76837158203125e-06,-0.275873899459839,-0.000100612640380859,-5.7220458984375e-06,-0.356773376464844,-0.000133037567138672,-1.23977661132813e-05,-0.450096130371094,-0.000148773193359375,-2.09808349609375e-05,-0.558565855026245,-0.000190258026123047,-3.4332275390625e-05,-0.668161630630493,-0.000234127044677734,-5.05447387695313e-05,-0.791267395019531,-0.000265598297119141,-6.77108764648438e-05,-0.928593158721924,-0.000316143035888672,-8.86917114257813e-05,-1.07481741905212,-0.000377655029296875,-0.00011444091796875,-1.0732753276825,-0.000375270843505859,-0.000124931335449219,-0.827426850795746,-0.000261783599853516,-7.72476196289063e-05,-0.851035714149475,-0.000253200531005859,-7.62939453125e-05,-0.872035980224609,-0.000244140625,-7.43865966796875e-05,-0.908223748207092,-0.000227451324462891,-7.15255737304688e-05,-0.958134412765503,-0.000425815582275391,-0.000139236450195313,-0.0744503140449524,-3.67164611816406e-05,0,-0.0984694361686707,-4.33921813964844e-05,0,-0.144196391105652,-5.48362731933594e-05,-4.76837158203125e-06,-0.210935950279236,-7.77244567871094e-05,-6.67572021484375e-06,-0.359158992767334,-0.000133037567138672,-1.71661376953125e-05,-0.45177960395813,-0.000185489654541016,-2.288818359375e-05,-0.541239261627197,-0.000196933746337891,-3.14712524414063e-05,-0.615561723709106,-0.000226497650146484,-4.00543212890625e-05,-0.603628635406494,-0.000199794769287109,-4.1961669921875e-05,-0.672902345657349,-0.000242710113525391,-4.86373901367188e-05,-0.783890962600708,-0.000265598297119141,-6.29425048828125e-05,-0.955244302749634,-0.000334262847900391,-8.0108642578125e-05,-1.11595940589905,-0.000409603118896484,-0.000100135803222656,-1.12821793556213,-0.000414371490478516,-0.000108718872070313,-0.983858823776245,-0.000437259674072266,-0.000115394592285156,-0.836764931678772,-0.000230312347412109,-6.29425048828125e-05,-0.823271870613098,-0.000249862670898438,-6.58035278320313e-05,-0.7955482006073,-0.000261783599853516,-6.67572021484375e-05,-0.766847789287567,-0.000267505645751953,-6.866455078125e-05,-0.0261158645153046, --5.24520874023438e-06,0,-0.0414807200431824,-9.05990600585938e-06,0,-0.0674995183944702,-3.95774841308594e-05,0,-0.099573016166687,-4.14848327636719e-05,0,-0.127580404281616,-5.10215759277344e-05,0,-0.146834135055542,-3.95774841308594e-05,0,-0.254908323287964,-8.53538513183594e-05,0,-0.379257917404175,-0.000123500823974609,-1.04904174804688e-05,-1.04993438720703,-0.000350475311279297,-0.000130653381347656,-0.968214511871338,-0.000311374664306641,-0.000105857849121094,-0.817880630493164,-0.000270366668701172,-7.53402709960938e-05,-0.693174362182617,-0.000217437744140625,-5.14984130859375e-05,-0.534009695053101,-0.000167369842529297,-2.57492065429688e-05,-0.878486692905426,-0.000262260437011719,-9.63211059570313e-05,-0.869955480098724,-0.000253677368164063,-9.44137573242188e-05,-0.916084289550781,-0.000237464904785156,-9.25064086914063e-05,-0.944753170013428,-0.000222206115722656,-8.86917114257813e-05,-0.943821668624878,-0.000414848327636719,-0.0001678466796875,-1.07152104377747,-0.000377655029296875,-0.000145912170410156,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06,0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06, -0,0,-8.82148742675781e-06,0,-1.30364859104156,-0.000359535217285156,-0.000359058380126953,-1.33116126060486,-0.000479698181152344,-0.000323295593261719,-1.25105667114258,-0.000311851501464844,-0.000330448150634766,-1.30109548568726,-0.000428199768066406,-0.000287055969238281,-1.16082286834717,-0.000245094299316406,-0.000276088714599609,-1.24536180496216,-0.000338554382324219,-0.000240802764892578,-1.01164054870605,-0.000151634216308594,-0.000200271606445313,-1.14649629592896,-0.000262260437011719,-0.000174522399902344,-0.769798755645752,-6.866455078125e-05,-0.000120401382446289,-0.976996421813965,-0.000165462493896484,-0.000110626220703125,-0.173402309417725,0,-1.29938125610352e-05,-0.570027351379395,-3.95774841308594e-05,-2.26497650146484e-05,-0.444282531738281,-3.4332275390625e-05,-4.64916229248047e-06,-1.0953516960144,-0.000189781188964844,-0.000240325927734375,-1.20270538330078,-0.000313758850097656,-0.000205039978027344,-0.410068988800049,-7.15255737304688e-06,-4.66108322143555e-05,-0.715614795684814,-7.77244567871094e-05,-4.91142272949219e-05,-1.33008217811584,-0.000439643859863281,-0.000353813171386719,-1.29669070243835,-0.000372886657714844,-0.000320911407470703,-1.23407912254333,-0.000313758850097656,-0.000275611877441406,-1.18539524078369,-0.000263214111328125,-0.000240325927734375,-1.11946678161621,-0.000205039978027344,-0.000203132629394531,-0.914819717407227,-0.000105857849121094,-0.000129938125610352,-0.602851867675781,-5.10215759277344e-05,-5.79357147216797e-05,-0.426541805267334,-2.52723693847656e-05,-2.62260437011719e-05,-0.288614273071289,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,-0.0756523609161377,-2.55107879638672e-05,0,-0.157466411590576,-5.10215759277344e-05,2.86102294921875e-06,-0.306302547454834,-0.000102996826171875,0,-0.53180980682373,-0.000178813934326172,-2.19345092773438e-05,-0.761335372924805,-0.000236034393310547, --5.7220458984375e-05,-0.905502796173096,-0.000299930572509766,-8.96453857421875e-05,-1.00241041183472,-0.000329494476318359,-0.0001220703125,-1.07822275161743,-0.00034332275390625,-0.000150680541992188,-1.14086651802063,-0.0004119873046875,-0.000174522399902344,-0.999799489974976,-0.000426292419433594,-0.000197410583496094,-0.970189809799194,-0.000233650207519531,-0.000105857849121094,-0.935951113700867,-0.00025177001953125,-0.000110626220703125,-0.88571560382843,-0.000253677368164063,-0.000112533569335938,-0.891763001680374,-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,-0.0213675498962402,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.0121296644210815,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,-0.0103033781051636,1.1444091796875e-05,0,-0.042611837387085,-1.1444091796875e-05,0,-0.0424216985702515,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06, -0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,-0.125670433044434,-3.69548797607422e-05,5.7220458984375e-06,-0.0750255584716797,-3.88622283935547e-05,4.76837158203125e-06,-0.194766998291016,-6.866455078125e-05,7.62939453125e-06,-0.350126266479492,-0.000116825103759766,0,-0.219629764556885,-7.31945037841797e-05,1.04904174804688e-05,-0.0996079444885254,-2.07424163818359e-05,8.58306884765625e-06,-0.209350109100342,-7.31945037841797e-05,1.09672546386719e-05,-0.0960321426391602,-4.12464141845703e-05,8.10623168945313e-06,-0.167864799499512,-2.98023223876953e-05,1.23977661132813e-05,-0.0673270225524902,-1.60932540893555e-05,5.7220458984375e-06,-0.0954747200012207,-1.1444091796875e-05,1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,-0.360260963439941,-0.000105381011962891,3.814697265625e-06,-0.287003040313721,-5.98430633544922e-05,1.23977661132813e-05,-0.339015483856201,-7.31945037841797e-05,7.15255737304688e-06,-0.207709789276123,-3.88622283935547e-05,1.47819519042969e-05,-0.531097412109375,-0.000171661376953125,-1.71661376953125e-05,-0.415305614471436,-8.24928283691406e-05,6.19888305664063e-06,-0.47929048538208,-0.000119686126708984,-4.29153442382813e-06,-0.516849994659424,-0.000139713287353516,-1.38282775878906e-05,-0.622409820556641,-0.000119686126708984,-2.00271606445313e-05,-0.543870449066162,-9.67979431152344e-05, --2.86102294921875e-06,-0.678859233856201,-0.000174045562744141,-3.4332275390625e-05,-0.720067501068115,-0.000196933746337891,-4.62532043457031e-05,-0.952444553375244,-0.000263214111328125,-8.7738037109375e-05,-0.891955375671387,-0.000231266021728516,-7.43865966796875e-05,-0.830295562744141,-0.000190258026123047,-5.62667846679688e-05,-0.753498077392578,-0.000142574310302734,-3.76701354980469e-05,-1.03460168838501,-0.000302791595458984,-0.000115394592285156,-1.1456995010376,-0.000296592712402344,-0.000161170959472656,-1.08530855178833,-0.000263214111328125,-0.000134468078613281,-1.105877161026,-0.000330924987792969,-0.000151634216308594,-1.19639110565186,-0.000365257263183594,-0.000195026397705078,-1.21170544624329,-0.000274658203125,-0.00030517578125,-1.27014398574829,-0.000334739685058594,-0.000300884246826172,-1.27728486061096,-0.000372886657714844,-0.000267982482910156,-1.163898229599,-0.0003662109375,-0.00018310546875,-1.23711037635803,-0.00038909912109375,-0.000225067138671875,-1.21080565452576,-0.000426292419433594,-0.000208854675292969,-1.26885962486267,-0.000414848327636719,-0.000247001647949219,-1.28108739852905,-0.00034332275390625,-0.000346660614013672,-1.31617259979248,-0.000418663024902344,-0.000339508056640625,-1.31859469413757,-0.000452995300292969,-0.000306129455566406,-1.29323649406433,-0.000456809997558594,-0.000268936157226563,-1.11349630355835,-0.000439643859863281,-0.000229835510253906,-1.12458574771881,-0.000475883483886719,-0.000246047973632813,-1.31135630607605,-0.000491142272949219,-0.000284194946289063,-1.31950092315674,-0.000388145446777344,-0.000369071960449219,-1.33936011791229,-0.000473976135253906,-0.000361442565917969,-1.33952820301056,-0.000487327575683594,-0.000330924987792969,-1.32908695936203,-0.000407218933105469,-0.000376701354980469,-1.344546854496,-0.000460624694824219,-0.0003662109375,-1.34426432847977,-0.000517845153808594,-0.000337600708007813,-1.04845947027206,-0.000537872314453125,-0.000264167785644531,-1.09559416770935,-0.000517845153808594,-0.000256538391113281,-1.32405984401703, --0.000517845153808594,-0.000294685363769531,-1.33193349838257,-0.000540733337402344,-0.000300407409667969,-1.33347842097282,-0.000393867492675781,-0.000380516052246094,-1.34661826491356,-0.000457763671875,-0.000369071960449219,-1.34625777602196,-0.000506401062011719,-0.000338554382324219,-1.05594569444656,-0.000537872314453125,-0.000267982482910156,-1.20751142501831,-0.000531196594238281,-0.000304222106933594,-1.02031278610229,-0.000222682952880859,-0.000109195709228516,-0.941895008087158,-0.000194549560546875,-8.48770141601563e-05,-0.904573917388916,-9.1552734375e-05,-0.000161409378051758,-1.03095817565918,-0.000159263610839844,-0.000165939331054688,-1.07311391830444,-0.000211238861083984,-0.000142574310302734,-0.843857288360596,-0.000146389007568359,-6.05583190917969e-05,-0.6052565574646,-3.33786010742188e-05,-8.16583633422852e-05,-0.770381450653076,-8.24928283691406e-05,-9.27448272705078e-05,-0.856074810028076,-0.000100612640380859,-7.93933868408203e-05,-0.727127552032471,-8.72611999511719e-05,-3.48091125488281e-05,-0.65739631652832,-0.000116825103759766,-1.62124633789063e-05,-0.601527690887451,-7.39097595214844e-05,-1.07288360595703e-05,-0.54763126373291,-7.10487365722656e-05,2.14576721191406e-06,-0.446645259857178,-5.98430633544922e-05,1.1444091796875e-05,-0.327857494354248,-4.57763671875e-05,1.57356262207031e-05,-0.483014106750488,-5.96046447753906e-05,3.09944152832031e-06,-0.436212539672852,-3.88622283935547e-05,1.21593475341797e-05,-0.341536045074463,-3.21865081787109e-05,1.93119049072266e-05,-0.225949287414551,-2.288818359375e-05,1.74045562744141e-05,-0.10942554473877,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.91413879394531e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06, -0,0,-2.29477882385254e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58210706710815e-06,0,0,2.29477882385254e-06,0,0,-6.86943531036377e-06,0,0,-4.57838177680969e-06,0,0,9.16421413421631e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06,0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06, -0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06,0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,-0.0107383728027344,-9.17911529541016e-06,0,-0.008056640625,6.79492950439453e-06,0,-0.0271339416503906,-1.1444091796875e-05,2.38418579101563e-06,-0.0213508605957031,-9.29832458496094e-06,0,-0.0520849227905273,-2.62260437011719e-06,3.27825546264648e-06,-0.0435924530029297,2.14576721191406e-06,2.02655792236328e-06,-0.0859060287475586,6.91413879394531e-06,4.72180545330048e-06,-0.0751914978027344,8.82148742675781e-06,1.9073486328125e-06,-0.12612247467041,2.14576721191406e-06,6.19888305664063e-06,-0.1116943359375,-5.24520874023438e-06,1.65402889251709e-06,-0.169522762298584,2.14576721191406e-06,8.40425491333008e-06,-0.141809463500977,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06,0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,-0.0114612579345703,-4.64916229248047e-06,0,-0.0286951065063477,0,2.14576721191406e-06,-0.0551424026489258,4.52995300292969e-06,2.74181365966797e-06,-0.0906009674072266,-6.91413879394531e-06,3.15159559249878e-06,-0.131157875061035,4.52995300292969e-06,4.64916229248047e-06,-0.169876098632813,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0, -0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,-0.00185632705688477,-4.64916229248047e-06,0,-0.00609445571899414,6.91413879394531e-06,0,-0.0152349472045898,-9.29832458496094e-06,0,-0.031468391418457,0,0,-0.0578923225402832,2.14576721191406e-06,0,-0.111007213592529,9.05990600585938e-06,1.78813934326172e-06,-0.235284805297852,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06,0,-0.00349330902099609,1.1444091796875e-05,0,-0.010685920715332,2.14576721191406e-06,0,-0.0252857208251953,-1.1444091796875e-05,0,-0.0504999160766602,2.14576721191406e-06,1.78813934326172e-06,-0.089078426361084,-4.52995300292969e-06,1.98930501937866e-06,-0.145565986633301,1.1444091796875e-05,2.20537185668945e-06,-0.214066028594971,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,-0.0102910995483398,-4.64916229248047e-06,0,-0.0262126922607422,2.14576721191406e-06,1.78813934326172e-06,-0.0513277053833008,-9.29832458496094e-06,2.50339508056641e-06,-0.0854644775390625,0,2.29477882385254e-06,-0.124058723449707,-4.52995300292969e-06,2.47359275817871e-06,-0.159650802612305,8.82148742675781e-06,3.39746475219727e-06,-0.222687721252441,-6.91413879394531e-06,5.48362731933594e-06,-0.228129386901855,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06, -0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,-0.00561904907226563,2.26497650146484e-06,0,-0.0158615112304688,8.82148742675781e-06,0,-0.0346755981445313,-9.29832458496094e-06,1.66893005371094e-06,-0.0640392303466797,6.91413879394531e-06,1.84774398803711e-06,-0.1029052734375,-1.1444091796875e-05,1.83470547199249e-06,-0.146875858306885,9.05990600585938e-06,1.78813934326172e-06,-0.187060832977295,4.52995300292969e-06,4.35113906860352e-06,-0.197512149810791,-1.1444091796875e-05,6.67572021484375e-06,-0.142795085906982,4.52995300292969e-06,1.00135803222656e-05,-0.101827621459961,-9.29832458496094e-06,7.09295272827148e-06,-0.0678958892822266,-9.29832458496094e-06,4.88758087158203e-06,-0.0407266616821289,4.52995300292969e-06,3.33786010742188e-06,-0.0207939147949219,6.79492950439453e-06,1.96695327758789e-06,-0.00741672515869141,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,-0.0104646682739258,2.26497650146484e-06,0,-0.0221343040466309,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06,0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,-0.0374464988708496,0,3.42726707458496e-06,-0.0566768646240234,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,-0.0322175025939941,2.26497650146484e-06,3.814697265625e-06,-0.0803065299987793,-2.62260437011719e-06,6.9737434387207e-06,-0.0638866424560547,2.26497650146484e-06,6.79492950439453e-06,-0.0654029846191406,2.26497650146484e-06,6.79492950439453e-06,-0.0839853286743164,0,7.98702239990234e-06,-0.0773978233337402,-2.26497650146484e-06,7.74860382080078e-06,-0.0447006225585938, --7.03334808349609e-06,5.36441802978516e-06,-0.0435891151428223,9.17911529541016e-06,5.12599945068359e-06,-0.102383136749268,2.14576721191406e-06,9.29832458496094e-06,-0.0784139633178711,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,-0.148007869720459,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,-0.332450866699219,-2.74181365966797e-05,1.50203704833984e-05,-0.238889694213867,-2.288818359375e-05,1.69277191162109e-05,-0.117278099060059,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,4.64916229248047e-06,0,-0.229700088500977,2.38418579101563e-06,0,-0.35819149017334,-1.66893005371094e-05,4.52995300292969e-06,-0.382926464080811,-9.29832458496094e-06,1.06096267700195e-05,-0.299910068511963,-2.55107879638672e-05,1.01327896118164e-05,-0.310403823852539,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,-0.00850439071655273,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,-0.0057826042175293,-9.29832458496094e-06,0,-0.00125932693481445,-4.52995300292969e-06,0,-0.00250673294067383,-4.52995300292969e-06,0,-0.000705718994140625,-2.62260437011719e-06,0,-0.000752449035644531,2.26497650146484e-06,0,-0.000228404998779297,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,-0.000125408172607422,8.82148742675781e-06,0,-5.57899475097656e-05,4.41074371337891e-06,0,-5.7220458984375e-06,6.91413879394531e-06, -0,-5.7220458984375e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,-2.43186950683594e-05,8.82148742675781e-06,0,-1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06,0,0,6.88433647155762e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,-0.197105407714844,8.58306884765625e-06,-4.21702861785889e-05,-0.372541904449463,-1.81198120117188e-05,-8.70823860168457e-05,-0.523701429367065,-2.95639038085938e-05,-0.000131726264953613,-0.653756618499756,-6.00814819335938e-05,-0.000175952911376953,-0.767434120178223,-5.24520874023438e-05,-0.000217676162719727,-0.71554160118103,-7.15255737304688e-05,-0.000213384628295898,-0.788416981697083,-0.000102996826171875,-0.000243186950683594,-0.852152585983276,-0.000119209289550781,-0.000268220901489258,-0.906155586242676,-0.000125885009765625,-0.000288486480712891,-0.950120627880096,-0.000151634216308594,-0.000303745269775391,-0.985551536083221,-0.000148773193359375,-0.000314712524414063,-1.01017466187477,-0.00016021728515625,-0.000323295593261719,-1.02304962277412,-0.000151634216308594,-0.00032806396484375,-0.208634853363037,8.58306884765625e-06,-3.090500831604e-05,-0.405336856842041,-2.19345092773438e-05,-6.79492950439453e-05,-0.578392505645752,-4.10079956054688e-05,-0.000106453895568848,-0.725183963775635,-6.77108764648438e-05, --0.000148773193359375,-0.847414016723633,-0.000107765197753906,-0.000191926956176758,-0.949378728866577,-0.000136375427246094,-0.000230789184570313,-1.03449583053589,-0.000155448913574219,-0.00026702880859375,-1.1051914691925,-0.000201225280761719,-0.000295162200927734,-1.16301393508911,-0.000222206115722656,-0.000317096710205078,-1.20995509624481,-0.000256538391113281,-0.000332355499267578,-1.24727010726929,-0.000273704528808594,-0.000343799591064453,-1.27515876293182,-0.000277519226074219,-0.000354766845703125,-1.29311320185661,-0.000313758850097656,-0.000360488891601563,-1.30208450555801,-0.00029754638671875,-0.000363349914550781,-0.0611715316772461,0,-2.02804803848267e-05,-0.149009227752686,4.76837158203125e-06,-5.26309013366699e-05,-0.259407520294189,6.67572021484375e-06,-9.59634780883789e-05,-0.360788106918335,-1.1444091796875e-05,-0.000137686729431152,-0.462241172790527,-1.04904174804688e-05,-0.00018155574798584,-0.572112321853638,-4.10079956054688e-05,-0.000229954719543457,-0.681854248046875,-4.10079956054688e-05,-0.000277280807495117,-0.750614523887634,-6.38961791992188e-05,-0.000306844711303711,-0.824832916259766,-7.53402709960938e-05,-0.000339031219482422,-0.894739508628845,-9.1552734375e-05,-0.000368833541870117,-0.974225401878357,-9.82284545898438e-05,-0.000402450561523438,-1.0124476402998,-0.000105857849121094,-0.00041961669921875,-0.302764892578125,4.76837158203125e-06,-0.000131845474243164,-0.378828525543213,-5.7220458984375e-06,-0.000170886516571045,-0.444851160049438,-1.1444091796875e-05,-0.000207424163818359,-0.550727725028992,-1.33514404296875e-05,-0.000261425971984863,-0.683751583099365,-3.62396240234375e-05,-0.000330090522766113,-0.677222967147827,-4.38690185546875e-05,-0.000331878662109375,-0.72844010591507,-4.00543212890625e-05,-0.000360369682312012,-0.785560607910156,-5.53131103515625e-05,-0.000390529632568359,-0.843545824289322,-3.62396240234375e-05,-0.000419855117797852,-0.889081947505474,-4.38690185546875e-05,-0.000443339347839355,-0.0323583334684372,0,-1.96695327758789e-05,-0.174931526184082, -8.58306884765625e-06,-4.89950180053711e-05,-0.325066566467285,-6.67572021484375e-06,-9.72747802734375e-05,-0.4548499584198,-2.76565551757813e-05,-0.000144124031066895,-0.571193933486938,-2.95639038085938e-05,-0.000189423561096191,-0.678101778030396,-3.91006469726563e-05,-0.000232934951782227,-0.777098178863525,-7.34329223632813e-05,-0.000274896621704102,-0.707023859024048,-9.05990600585938e-05,-0.000255346298217773,-0.77485990524292,-8.67843627929688e-05,-0.000284671783447266,-0.836473643779755,-0.000113487243652344,-0.000311136245727539,-0.887889266014099,-0.00011444091796875,-0.000332117080688477,-0.923935800790787,-0.000140190124511719,-0.000345945358276367,-0.943427979946136,-0.000128746032714844,-0.000352382659912109,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.0934806391687744,-3.67164611816406e-05,0,-0.582627952102484,-0.00022125244140625,-6.38961791992188e-05,-0.101716846227646,-4.14848327636719e-05,0,-0.376917600631714,-0.000139713287353516,-1.23977661132813e-05,-0.414265871047974,-0.0001373291015625,-1.81198120117188e-05,-0.266844987869263,-8.72611999511719e-05,-5.7220458984375e-06,-0.325454235076904,-0.000121593475341797,-8.58306884765625e-06,-0.209126830101013,-7.39097595214844e-05,-2.86102294921875e-06,-0.16086357831955,-7.58171081542969e-05,0,-0.124552011489868,-4.33921813964844e-05,0,-0.441805601119995,-0.000144481658935547,-2.38418579101563e-05,-0.660455465316772,-0.000208377838134766,-4.67300415039063e-05,-0.666347742080688,-0.000231266021728516,-5.62667846679688e-05,-0.582760334014893,-0.000196933746337891,-5.7220458984375e-05,-0.695357799530029,-0.000249385833740234,-7.91549682617188e-05,-0.778550148010254,-0.000274658203125,-9.25064086914063e-05,-0.864722609519958,-0.000327587127685547,-0.000102996826171875,-0.794760942459106,-0.000188827514648438,-5.81741333007813e-05,-0.524876654148102,-0.000194549560546875,-6.00814819335938e-05,-0.556556105613708,-0.000218868255615234, --6.103515625e-05,-0.576028764247894,-0.000221729278564453,-6.38961791992188e-05,-0.0881219804068678,-2.52723693847656e-05,-6.67572021484375e-06,-0.111989557743073,-5.7220458984375e-05,-6.67572021484375e-06,-0.148498117923737,-7.39097595214844e-05,-8.58306884765625e-06,-0.186934113502502,-8.72611999511719e-05,-1.1444091796875e-05,-0.277076721191406,-0.000102996826171875,-1.81198120117188e-05,-0.380840659141541,-0.000154018402099609,-2.76565551757813e-05,-0.438332080841064,-0.000151157379150391,-2.95639038085938e-05,-0.54163646697998,-0.000190258026123047,-3.814697265625e-05,-0.576151132583618,-0.000217437744140625,-4.00543212890625e-05,-0.659367799758911,-0.000234127044677734,-4.57763671875e-05,-0.68618631362915,-0.000242710113525391,-4.86373901367188e-05,-0.751011371612549,-0.000249385833740234,-5.43594360351563e-05,-0.825459957122803,-0.000286102294921875,-6.00814819335938e-05,-1.03803849220276,-0.000371456146240234,-7.15255737304688e-05,-0.995604515075684,-0.000149250030517578,-0.000426292419433594,-0.821818113327026,0.0685415267944336,-0.000296592712402344,-0.755250930786133,0.067359447479248,0.00917339324951172,-0.685015797615051,0.0539798736572266,-0.0290098190307617,-0.660148620605469,0.0126800537109375,-4.29153442382813e-05,-0.66369754076004,-0.000267505645751953,-4.29153442382813e-05,-0.659564793088066,-0.000261306762695313,-4.29153442382813e-05,-0.102166682459938,-4.33921813964844e-05,-6.67572021484375e-06,-0.114603728055954,-4.57763671875e-05,-6.67572021484375e-06,-0.144509971141815,-5.7220458984375e-05,-8.58306884765625e-06,-0.191790461540222,-8.53538513183594e-05,-1.1444091796875e-05,-0.281776428222656,-0.000108242034912109,-1.62124633789063e-05,-0.405032396316528,-0.000142574310302734,-2.38418579101563e-05,-0.487657070159912,-0.000167369842529297,-2.86102294921875e-05,-0.559357881546021,-0.00018310546875,-3.52859497070313e-05,-0.632909059524536,-0.000203609466552734,-4.00543212890625e-05,-0.694051265716553,-0.000234127044677734,-4.57763671875e-05,-0.678593158721924,-0.000234127044677734,-4.67300415039063e-05, --0.721897602081299,-0.000249385833740234,-5.43594360351563e-05,-0.788846015930176,-0.000279903411865234,-6.29425048828125e-05,-0.993720054626465,-0.000352382659912109,-8.0108642578125e-05,-1.09543871879578,-0.000402927398681641,-8.58306884765625e-05,-0.912518739700317,-0.000423431396484375,-9.05990600585938e-05,-0.74718451499939,-0.000249862670898438,-4.86373901367188e-05,-0.675689458847046,-0.00026702880859375,-4.86373901367188e-05,-0.681665122509003,-0.000272750854492188,-4.76837158203125e-05,-0.677403390407562,-0.000268936157226563,-4.67300415039063e-05,-0.669478043892013,-0.000265598297119141,-4.67300415039063e-05,-0.0730367079377174,-2.55107879638672e-05,4.76837158203125e-06,-0.0786625444889069,-3.69548797607422e-05,4.76837158203125e-06,-0.270517587661743,-7.39097595214844e-05,0,-0.301451921463013,-8.72611999511719e-05,-5.24520874023438e-06,-0.193536996841431,-7.12871551513672e-05,8.58306884765625e-06,-0.233748435974121,-6.65187835693359e-05,4.76837158203125e-06,-0.15436327457428,-5.26905059814453e-05,6.67572021484375e-06,-0.120615720748901,-5.26905059814453e-05,7.62939453125e-06,-0.0948845148086548,-4.12464141845703e-05,5.7220458984375e-06,-0.329148769378662,-0.000100612640380859,-1.1444091796875e-05,-0.360581636428833,-9.87052917480469e-05,-2.288818359375e-05,-0.403295278549194,-0.000116825103759766,-3.38554382324219e-05,-0.490670204162598,-0.000123500823974609,-5.53131103515625e-05,-0.547965288162231,-0.000155448913574219,-7.48634338378906e-05,-0.648637294769287,-0.000201225280761719,-9.82284545898438e-05,-0.757248401641846,-0.00025177001953125,-0.000117301940917969,-0.431891679763794,-0.000140190124511719,-6.58035278320313e-05,-0.479304909706116,-0.000157356262207031,-6.96182250976563e-05,-0.516710877418518,-0.000180244445800781,-7.05718994140625e-05,-0.540690332651138,-0.000185966491699219,-7.2479248046875e-05,-0.548925220966339,-0.000185966491699219,-7.53402709960938e-05,-0.0234642699360847,-6.91413879394531e-06,0,-0.0251399576663971,2.14576721191406e-06,0,-0.0826292037963867,-9.05990600585938e-06,-2.86102294921875e-06, --0.0945813655853271,-1.66893005371094e-05,-6.91413879394531e-06,-0.0589487552642822,-7.15255737304688e-06,0,-0.0708925724029541,4.29153442382813e-06,0,-0.0475705862045288,2.14576721191406e-06,0,-0.0376638770103455,2.14576721191406e-06,2.14576721191406e-06,-0.0300108790397644,-1.1444091796875e-05,1.9073486328125e-06,-0.110184907913208,-9.05990600585938e-06,-1.07288360595703e-05,-0.141480207443237,-2.19345092773438e-05,-1.88350677490234e-05,-0.176369428634644,-1.04904174804688e-05,-2.83718109130859e-05,-0.223005294799805,-2.288818359375e-05,-4.41074371337891e-05,-0.290587663650513,-4.57763671875e-05,-6.43730163574219e-05,-0.386821985244751,-6.00814819335938e-05,-9.01222229003906e-05,-0.498619675636292,-8.67843627929688e-05,-0.000113964080810547,-0.617428064346313,-0.000109672546386719,-0.000134944915771484,-0.733240902423859,-0.000148773193359375,-0.000149250030517578,-0.831940054893494,-0.000166893005371094,-0.00016021728515625,-0.898563206195831,-0.000166893005371094,-0.000170707702636719,-0.922046005725861,-0.000171661376953125,-0.000176906585693359,-0.164752259850502,0,-5.71012496948242e-05,-0.164752259850502,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.164752006530762,0,-5.71608543395996e-05,-0.16475236415863,0,-5.7220458984375e-05,-0.164752244949341,0,-5.69820404052734e-05,-0.16475236415863,-1.9073486328125e-06,-5.71012496948242e-05,-0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.164752244949341,0,-5.71012496948242e-05,-0.16475248336792,0,-5.71608543395996e-05,-0.164752244949341,0,-5.71012496948242e-05,-0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,-0.171115636825562,-1.9073486328125e-06,-5.93662261962891e-05,-0.175875425338745,0,-6.09159469604492e-05,-0.180305600166321,0,-6.25848770141602e-05,-0.184572279453278,0,-6.41345977783203e-05,-0.188270688056946,0,-6.53266906738281e-05,-0.190808907151222,0,-6.61611557006836e-05,-0.191712632775307, -0,-6.63995742797852e-05,0,9.05990600585938e-06,0,-0.0526125431060791,0,-1.05202198028564e-05,-0.0804030895233154,-1.04904174804688e-05,-1.79409980773926e-05,-0.110512256622314,0,-2.78949737548828e-05,-0.160651206970215,-6.67572021484375e-06,-4.32729721069336e-05,-0.269499063491821,-1.81198120117188e-05,-7.48634338378906e-05,-0.388572096824646,-2.288818359375e-05,-0.000105142593383789,-0.512922048568726,-5.62667846679688e-05,-0.000133752822875977,-0.63575679063797,-4.48226928710938e-05,-0.00015711784362793,-0.742452621459961,-7.34329223632813e-05,-0.000176191329956055,-0.815406739711761,-6.866455078125e-05,-0.000190973281860352,-0.841353297233582,-7.34329223632813e-05,-0.000198841094970703,-0.0481942296028137,-1.40666961669922e-05,3.33786010742188e-06,-0.051715224981308,-1.59740447998047e-05,4.29153442382813e-06,-0.061913013458252,-1.40666961669922e-05,5.24520874023438e-06,-0.078046441078186,-1.83582305908203e-05,6.19888305664063e-06,-0.0989785194396973,-1.1444091796875e-05,8.10623168945313e-06,-0.123127460479736,-3.69548797607422e-05,8.10623168945313e-06,-0.148130178451538,-2.98023223876953e-05,4.29153442382813e-06,-0.171972990036011,-3.4332275390625e-05,0,-0.194007396697998,-2.81333923339844e-05,-4.29153442382813e-06,-0.216992855072021,-5.48362731933594e-05,-1.00135803222656e-05,-0.247035503387451,-5.48362731933594e-05,-2.24113464355469e-05,-0.287095546722412,-5.48362731933594e-05,-3.4332275390625e-05,-0.34368371963501,-8.0108642578125e-05,-5.29289245605469e-05,-0.421437740325928,-8.48770141601563e-05,-7.67707824707031e-05,-0.519618988037109,-0.000136375427246094,-0.000102996826171875,-0.629860401153564,-0.000159263610839844,-0.000125408172607422,-0.371495723724365,-9.72747802734375e-05,-7.15255737304688e-05,-0.42442524433136,-0.000107765197753906,-7.58171081542969e-05,-0.468058049678802,-0.000123023986816406,-7.86781311035156e-05,-0.496828973293304,-0.000131607055664063,-8.24928283691406e-05,-0.506895244121552,-0.000140190124511719,-8.44001770019531e-05,0,-4.58955764770508e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06, -0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.85453414916992e-06,0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,-0.102785721421242,-5.10215759277344e-05,-7.62939453125e-06,-0.0768131911754608,-3.67164611816406e-05,0,-0.491778135299683,-0.000203609466552734,0.0274524688720703,-0.482111930847168,-0.000213146209716797,0.0524778366088867,-0.483032941818237,-0.00018310546875,-3.4332275390625e-05,-0.45543360710144,-0.000178813934326172,-3.4332275390625e-05,-0.346761226654053,-0.000144481658935547,-1.71661376953125e-05,-0.365082502365112,-0.0001373291015625,-2.38418579101563e-05,-0.235384941101074,-0.000102996826171875,-9.5367431640625e-06,-0.258294224739075,-9.87052917480469e-05,-1.71661376953125e-05,-0.152963757514954,-5.48362731933594e-05,-5.7220458984375e-06,-0.186163187026978,-7.58171081542969e-05,-1.1444091796875e-05,-0.099475085735321,-5.29289245605469e-05,-4.76837158203125e-06,-0.135049223899841,-5.29289245605469e-05,-8.58306884765625e-06,-0.421441316604614,-0.00016021728515625,-3.0517578125e-05,-0.42161750793457,-0.000169277191162109,-2.38418579101563e-05,-0.424224615097046,-0.0156350135803223,0.0274534225463867,-0.56116795539856,-0.0002288818359375,-4.57763671875e-05,-0.344980239868164,-0.000120162963867188,-2.47955322265625e-05,-0.351723670959473,-0.000127315521240234,-2.47955322265625e-05,-0.400705814361572,-0.000146865844726563,-3.0517578125e-05,-0.408940553665161,-0.000147342681884766,-2.95639038085938e-05,-0.45334267616272,-0.00016021728515625,-3.52859497070313e-05,-0.431637287139893,-0.000150203704833984,-3.14712524414063e-05,-0.522329807281494,-0.000186920166015625,-3.71932983398438e-05, --0.541519165039063,-0.000194549560546875,-4.38690185546875e-05,-0.558987617492676,0.0330657958984375,7.53402709960938e-05,-0.560335636138916,-0.000208377838134766,-4.9591064453125e-05,-0.58084237575531,-0.000225543975830078,-5.340576171875e-05,-0.588360190391541,0.0575060844421387,0.000101089477539063,-0.671184420585632,-0.000238895416259766,-5.7220458984375e-05,-0.62735116481781,0.0865292549133301,-0.000226020812988281,-0.692663729190826,-0.000253200531005859,-5.91278076171875e-05,-0.648955821990967,0.0305986404418945,-1.52587890625e-05,-0.748779058456421,-0.000259876251220703,-6.103515625e-05,-0.658923029899597,-0.000277042388916016,-4.10079956054688e-05,-0.755280137062073,-0.000263214111328125,-6.19888305664063e-05,-0.662555932998657,-0.000276088714599609,-4.29153442382813e-05,-0.0891851484775543,-4.33921813964844e-05,-4.76837158203125e-06,-0.117345690727234,-5.48362731933594e-05,-5.7220458984375e-06,-0.171438574790955,-6.62803649902344e-05,-8.58306884765625e-06,-0.250651717185974,-9.1552734375e-05,-1.23977661132813e-05,-0.369745492935181,-0.000148773193359375,-2.288818359375e-05,-0.45048987865448,-0.00018310546875,-2.95639038085938e-05,-0.48127007484436,-0.000190258026123047,-3.52859497070313e-05,-0.484102964401245,-0.000208377838134766,0.0524759292602539,-0.412964582443237,-0.0146751403808594,0.0274524688720703,-0.349689245223999,-0.000118732452392578,-2.57492065429688e-05,-0.404040098190308,-0.000139713287353516,-3.0517578125e-05,-0.443905115127563,-0.000156879425048828,-3.33786010742188e-05,-0.526261568069458,-0.000196933746337891,-4.10079956054688e-05,-0.55199134349823,-0.000207424163818359,-4.38690185546875e-05,-0.592066049575806,-0.000227451324462891,-4.67300415039063e-05,-0.650171101093292,-0.00025177001953125,-5.05447387695313e-05,-0.671900629997253,-0.000265598297119141,-5.14984130859375e-05,-0.685556173324585,-0.000270366668701172,-5.24520874023438e-05,-0.690571784973145,-0.000277042388916016,-5.43594360351563e-05,-0.0982866436243057,-4.81605529785156e-05,-5.7220458984375e-06,-0.128800928592682,-5.48362731933594e-05, --8.58306884765625e-06,-0.180914998054504,-7.77244567871094e-05,-1.1444091796875e-05,-0.256503582000732,-9.87052917480469e-05,-1.52587890625e-05,-0.368706345558167,-0.000154018402099609,-2.47955322265625e-05,-0.434292197227478,-0.000165462493896484,-3.0517578125e-05,-0.466396331787109,-0.000194549560546875,-3.4332275390625e-05,-0.490866661071777,-0.000211238861083984,0.0524740219116211,-0.440650463104248,-0.0188703536987305,0.0274486541748047,-0.35479474067688,-0.000130176544189453,-2.57492065429688e-05,-0.408038377761841,-0.000144481658935547,-3.0517578125e-05,-0.428120374679565,-0.000152587890625,-3.14712524414063e-05,-0.521356105804443,-0.000193119049072266,-3.814697265625e-05,-0.554143190383911,-0.000204086303710938,-4.10079956054688e-05,-0.581949949264526,-0.000225543975830078,-4.29153442382813e-05,-0.619668543338776,-0.000242710113525391,-4.38690185546875e-05,-0.644409537315369,-0.000270366668701172,-4.57763671875e-05,-0.663944959640503,-0.000270366668701172,-4.67300415039063e-05,-0.667629837989807,-0.000274658203125,-4.76837158203125e-05,-0.0561977922916412,-1.85966491699219e-05,0,-0.0762875080108643,-2.81333923339844e-05,0,-0.112181782722473,-3.95774841308594e-05,0,-0.161702036857605,-7.58171081542969e-05,-2.86102294921875e-06,-0.218079805374146,-7.77244567871094e-05,-4.76837158203125e-06,-0.275912761688232,-0.000100612640380859,-5.7220458984375e-06,-0.356832504272461,-0.000133037567138672,-1.23977661132813e-05,-0.45018458366394,-0.000148773193359375,-2.09808349609375e-05,-0.470242261886597,-0.000190258026123047,-3.4332275390625e-05,-0.385592937469482,-0.000116825103759766,-2.57492065429688e-05,-0.395714282989502,-0.000133037567138672,-3.33786010742188e-05,-0.464385509490967,-0.000158309936523438,-4.38690185546875e-05,-0.537501811981201,-0.000188827514648438,-5.7220458984375e-05,-0.536719799041748,-0.000187397003173828,-6.19888305664063e-05,-0.770329833030701,-0.000261783599853516,-7.72476196289063e-05,-0.730189502239227,-0.000253200531005859,-7.62939453125e-05,-0.694950342178345,-0.000244140625,-7.43865966796875e-05, --0.604317188262939,-0.000227451324462891,-7.15255737304688e-05,-0.575654983520508,-0.000213146209716797,-6.96182250976563e-05,-0.0744514614343643,-3.67164611816406e-05,0,-0.0984735488891602,-4.33921813964844e-05,0,-0.144206404685974,-5.48362731933594e-05,-4.76837158203125e-06,-0.210955381393433,-7.77244567871094e-05,-6.67572021484375e-06,-0.359201788902283,-0.000133037567138672,-1.71661376953125e-05,-0.451842784881592,-0.000185489654541016,-2.288818359375e-05,-0.500880002975464,-0.000196933746337891,-3.14712524414063e-05,-0.499831199645996,-0.000226497650146484,0.0524768829345703,-0.431340217590332,-0.000391483306884766,0.0274534225463867,-0.336514472961426,-0.000121593475341797,-2.38418579101563e-05,-0.39201807975769,-0.000133037567138672,-3.14712524414063e-05,-0.477706670761108,-0.000167369842529297,-4.00543212890625e-05,-0.55807089805603,-0.000204563140869141,-4.9591064453125e-05,-0.564189791679382,-0.000207424163818359,-5.43594360351563e-05,-0.576846122741699,-0.000218868255615234,-5.81741333007813e-05,-0.662659049034119,-0.000230312347412109,-6.29425048828125e-05,-0.745554327964783,-0.000249862670898438,-6.58035278320313e-05,-0.761156320571899,-0.000261783599853516,-6.67572021484375e-05,-0.7668616771698,-0.000267505645751953,-6.866455078125e-05,-0.0261162221431732,-5.24520874023438e-06,0,-0.0414824485778809,-9.05990600585938e-06,0,-0.0675036907196045,-3.95774841308594e-05,0,-0.099582314491272,-4.14848327636719e-05,0,-0.127595543861389,-5.10215759277344e-05,0,-0.146854877471924,-3.95774841308594e-05,0,-0.254952669143677,-8.53538513183594e-05,0,-0.379336595535278,-0.000123500823974609,-1.04904174804688e-05,-0.684795379638672,-0.00017547607421875,-6.58035278320313e-05,-0.643939018249512,-0.000155925750732422,-5.340576171875e-05,-0.568763732910156,-0.000135421752929688,-3.71932983398438e-05,-0.55784273147583,-0.000108718872070313,-2.57492065429688e-05,-0.445690870285034,-0.000167369842529297,-2.57492065429688e-05,-0.800117492675781,-0.000262260437011719,-9.63211059570313e-05,-0.791603446006775,-0.000253677368164063, --9.44137573242188e-05,-0.77684497833252,-0.000237464904785156,-9.25064086914063e-05,-0.755624175071716,-0.000222206115722656,-8.86917114257813e-05,-0.728229999542236,-0.000207901000976563,-8.392333984375e-05,-0.695577621459961,-0.000188827514648438,-7.2479248046875e-05,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06,0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-8.82148742675781e-06,0,-1.30375850200653,-0.000359535217285156,-0.000359058380126953,-1.33131122589111,-0.000479698181152344,-0.000323295593261719,-1.25121927261353,-0.000311851501464844,-0.000330448150634766,-1.30131840705872,-0.000428199768066406,-0.000287055969238281,-1.16104674339294,-0.000245094299316406,-0.000276088714599609,-1.24565887451172,-0.000338554382324219,-0.000240802764892578,-1.01190710067749,-0.000151634216308594,-0.000200271606445313,-1.14684581756592,-0.000262260437011719,-0.000174522399902344,-0.77003812789917,-6.866455078125e-05,-0.000120401382446289,-0.977339267730713,-0.000165462493896484,-0.000110626220703125,-0.173465728759766,0,-1.29938125610352e-05,-0.570259094238281,-3.95774841308594e-05,-2.26497650146484e-05, --0.444470882415771,-3.4332275390625e-05,-4.64916229248047e-06,-1.09560298919678,-0.000189781188964844,-0.000240325927734375,-1.20303726196289,-0.000313758850097656,-0.000205039978027344,-0.410212993621826,-7.15255737304688e-06,-4.66108322143555e-05,-0.715891361236572,-7.77244567871094e-05,-4.91142272949219e-05,-1.33021640777588,-0.000439643859863281,-0.000353813171386719,-1.29689526557922,-0.000372886657714844,-0.000320911407470703,-1.23435950279236,-0.000313758850097656,-0.000275611877441406,-1.18571376800537,-0.000263214111328125,-0.000240325927734375,-1.11981058120728,-0.000205039978027344,-0.000203132629394531,-0.915144920349121,-0.000105857849121094,-0.000129938125610352,-0.603090286254883,-5.10215759277344e-05,-5.79357147216797e-05,-0.426719188690186,-2.52723693847656e-05,-2.62260437011719e-05,-0.288735866546631,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,-0.0756633281707764,-2.55107879638672e-05,0,-0.157494306564331,-5.10215759277344e-05,2.86102294921875e-06,-0.306370496749878,-0.000102996826171875,0,-0.443500995635986,-0.000178813934326172,-2.19345092773438e-05,-0.569231510162354,-0.000118255615234375,-2.86102294921875e-05,-0.69504714012146,-0.000150203704833984,-4.48226928710938e-05,-0.743502616882324,-0.000164508819580078,-6.103515625e-05,-0.781400203704834,-0.000171661376953125,-7.53402709960938e-05,-0.812712907791138,-0.00020599365234375,-8.67843627929688e-05,-0.838680744171143,-0.000213623046875,-9.918212890625e-05,-0.859451770782471,-0.000233650207519531,-0.000105857849121094,-0.875101208686829,-0.00025177001953125,-0.000110626220703125,-0.885751008987427,-0.000253677368164063,-0.000112533569335938,-0.891781449317932,-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06, -0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,-0.0213689804077148,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.0121298730373383,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,-0.0103045701980591,1.1444091796875e-05,0,-0.0426156520843506,-1.1444091796875e-05,0,-0.0424262285232544,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06,0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0, --0.125698328018188,-3.69548797607422e-05,5.7220458984375e-06,-0.0750446319580078,-3.88622283935547e-05,4.76837158203125e-06,-0.194816112518311,-6.866455078125e-05,7.62939453125e-06,-0.3502197265625,-0.000116825103759766,0,-0.219695568084717,-7.31945037841797e-05,1.04904174804688e-05,-0.099637508392334,-2.07424163818359e-05,8.58306884765625e-06,-0.209419727325439,-7.31945037841797e-05,1.09672546386719e-05,-0.0960636138916016,-4.12464141845703e-05,8.10623168945313e-06,-0.167927265167236,-2.98023223876953e-05,1.23977661132813e-05,-0.0673513412475586,-1.60932540893555e-05,5.7220458984375e-06,-0.0955123901367188,-1.1444091796875e-05,1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,-0.360369682312012,-0.000105381011962891,3.814697265625e-06,-0.287108898162842,-5.98430633544922e-05,1.23977661132813e-05,-0.339129447937012,-7.31945037841797e-05,7.15255737304688e-06,-0.20779275894165,-3.88622283935547e-05,1.47819519042969e-05,-0.531244277954102,-0.000171661376953125,-1.71661376953125e-05,-0.415458202362061,-8.24928283691406e-05,6.19888305664063e-06,-0.479450702667236,-0.000119686126708984,-4.29153442382813e-06,-0.517007350921631,-0.000139713287353516,-1.38282775878906e-05,-0.622618675231934,-0.000119686126708984,-2.00271606445313e-05,-0.544069766998291,-9.67979431152344e-05,-2.86102294921875e-06,-0.679069519042969,-0.000174045562744141,-3.4332275390625e-05,-0.720271110534668,-0.000196933746337891,-4.62532043457031e-05,-0.689748764038086,-0.000263214111328125,-8.7738037109375e-05,-0.892221927642822,-0.000231266021728516,-7.43865966796875e-05,-0.830560684204102,-0.000190258026123047,-5.62667846679688e-05,-0.753755569458008,-0.000142574310302734,-3.76701354980469e-05,-0.771912574768066,-0.000302791595458984,-0.000115394592285156,-1.08034944534302,-0.000296592712402344,-0.000161170959472656,-1.01996612548828,-0.000263214111328125,-0.000134468078613281,-0.843175411224365,-0.000330924987792969,-0.000151634216308594,-1.13101506233215,-0.000365257263183594,-0.000195026397705078,-1.21189785003662, --0.000274658203125,-0.00030517578125,-1.2703857421875,-0.000334739685058594,-0.000300884246826172,-1.27754426002502,-0.000372886657714844,-0.000267982482910156,-0.901171684265137,-0.0003662109375,-0.00018310546875,-1.17170143127441,-0.00038909912109375,-0.000225067138671875,-0.948055267333984,-0.000426292419433594,-0.000208854675292969,-1.20341920852661,-0.000414848327636719,-0.000247001647949219,-1.28122329711914,-0.00034332275390625,-0.000346660614013672,-1.31634414196014,-0.000418663024902344,-0.000339508056640625,-1.31878316402435,-0.000452995300292969,-0.000306129455566406,-1.22776365280151,-0.000456809997558594,-0.000268936157226563,-0.985237121582031,-0.000439643859863281,-0.000229835510253906,-1.01392495632172,-0.000475883483886719,-0.000246047973632813,-1.22099769115448,-0.000491142272949219,-0.000284194946289063,-1.31958293914795,-0.000388145446777344,-0.000369071960449219,-1.33946204185486,-0.000473976135253906,-0.000361442565917969,-1.33963811397552,-0.000487327575683594,-0.000330924987792969,-1.32914090156555,-0.000407218933105469,-0.000376701354980469,-1.34461450576782,-0.000460624694824219,-0.0003662109375,-1.34433913230896,-0.000517845153808594,-0.000337600708007813,-1.04853415489197,-0.000537872314453125,-0.000264167785644531,-1.0348037481308,-0.000517845153808594,-0.000256538391113281,-1.26894295215607,-0.000517845153808594,-0.000294685363769531,-1.2767790555954,-0.000540733337402344,-0.000300407409667969,-1.33350530266762,-0.000393867492675781,-0.000380516052246094,-1.34665313363075,-0.000457763671875,-0.000369071960449219,-1.34629634022713,-0.000506401062011719,-0.000338554382324219,-1.05598545074463,-0.000537872314453125,-0.000267982482910156,-1.28065371513367,-0.000531196594238281,-0.000304222106933594,-1.02063226699829,-0.000222682952880859,-0.000109195709228516,-0.942208766937256,-0.000194549560546875,-8.48770141601563e-05,-0.904837131500244,-9.1552734375e-05,-0.000161409378051758,-1.03130483627319,-0.000159263610839844,-0.000165939331054688,-1.07346677780151,-0.000211238861083984,-0.000142574310302734, --0.844156265258789,-0.000146389007568359,-6.05583190917969e-05,-0.60545539855957,-3.33786010742188e-05,-8.16583633422852e-05,-0.770670413970947,-8.24928283691406e-05,-9.27448272705078e-05,-0.856390476226807,-0.000100612640380859,-7.93933868408203e-05,-0.727402210235596,-8.72611999511719e-05,-3.48091125488281e-05,-0.657641410827637,-0.000116825103759766,-1.62124633789063e-05,-0.601768970489502,-7.39097595214844e-05,-1.07288360595703e-05,-0.547848701477051,-7.10487365722656e-05,2.14576721191406e-06,-0.446821689605713,-5.98430633544922e-05,1.1444091796875e-05,-0.327988147735596,-4.57763671875e-05,1.57356262207031e-05,-0.483216285705566,-5.96046447753906e-05,3.09944152832031e-06,-0.436394691467285,-3.88622283935547e-05,1.21593475341797e-05,-0.341680526733398,-3.21865081787109e-05,1.93119049072266e-05,-0.226046085357666,-2.288818359375e-05,1.74045562744141e-05,-0.109471321105957,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.79492950439453e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.87316060066223e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06,0,0,-2.32458114624023e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58583235740662e-06,0,0,2.29477882385254e-06,0,0,-6.83963298797607e-06,0,0,-4.57838177680969e-06,0,0,9.17911529541016e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06,0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0, --4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06,0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,-0.0107431411743164,-9.17911529541016e-06, -0,-0.00806045532226563,6.79492950439453e-06,0,-0.0271463394165039,-1.1444091796875e-05,2.38418579101563e-06,-0.0213623046875,-9.29832458496094e-06,0,-0.0521087646484375,-2.62260437011719e-06,3.27825546264648e-06,-0.0436134338378906,2.14576721191406e-06,2.02655792236328e-06,-0.0859479904174805,6.91413879394531e-06,4.72180545330048e-06,-0.0752296447753906,8.82148742675781e-06,1.9073486328125e-06,-0.126181125640869,2.14576721191406e-06,6.19888305664063e-06,-0.111748695373535,-5.24520874023438e-06,1.65402889251709e-06,-0.169600009918213,2.14576721191406e-06,8.40425491333008e-06,-0.141875267028809,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06,0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,-0.0114669799804688,-4.64916229248047e-06,0,-0.0287084579467773,0,2.14576721191406e-06,-0.0551691055297852,4.52995300292969e-06,2.74181365966797e-06,-0.0906467437744141,-6.91413879394531e-06,3.15159559249878e-06,-0.131220817565918,4.52995300292969e-06,4.64916229248047e-06,-0.169955253601074,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,-0.00185728073120117,-4.64916229248047e-06,0,-0.00609827041625977,6.91413879394531e-06,0,-0.0152416229248047,-9.29832458496094e-06,0,-0.0314812660217285,0,0,-0.0579161643981934,2.14576721191406e-06,0,-0.111053466796875,9.05990600585938e-06,1.78813934326172e-06,-0.235386371612549,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06,0,-0.00349617004394531,1.1444091796875e-05,0,-0.0106906890869141,2.14576721191406e-06, -0,-0.0252981185913086,-1.1444091796875e-05,0,-0.0505228042602539,2.14576721191406e-06,1.78813934326172e-06,-0.0891180038452148,-4.52995300292969e-06,1.98930501937866e-06,-0.145628929138184,1.1444091796875e-05,2.20537185668945e-06,-0.21415901184082,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,-0.0102958679199219,-4.64916229248047e-06,0,-0.0262269973754883,2.14576721191406e-06,1.78813934326172e-06,-0.0513553619384766,-9.29832458496094e-06,2.50339508056641e-06,-0.0855073928833008,0,2.29477882385254e-06,-0.124117851257324,-4.52995300292969e-06,2.47359275817871e-06,-0.159722328186035,8.82148742675781e-06,3.39746475219727e-06,-0.222784042358398,-6.91413879394531e-06,5.48362731933594e-06,-0.228226661682129,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,-0.00562191009521484,2.26497650146484e-06,0,-0.0158681869506836,8.82148742675781e-06,0,-0.0346908569335938,-9.29832458496094e-06,1.66893005371094e-06,-0.0640678405761719,6.91413879394531e-06,1.84774398803711e-06,-0.10295295715332,-1.1444091796875e-05,1.83470547199249e-06,-0.146941661834717,9.05990600585938e-06,1.78813934326172e-06,-0.187146186828613,4.52995300292969e-06,4.35113906860352e-06,-0.197600841522217,-1.1444091796875e-05,6.67572021484375e-06,-0.142857551574707,4.52995300292969e-06,1.00135803222656e-05, --0.101873874664307,-9.29832458496094e-06,7.09295272827148e-06,-0.067927360534668,-9.29832458496094e-06,4.88758087158203e-06,-0.040745735168457,4.52995300292969e-06,3.33786010742188e-06,-0.0208044052124023,6.79492950439453e-06,1.96695327758789e-06,-0.00742053985595703,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,-0.0104684829711914,2.26497650146484e-06,0,-0.0221433639526367,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06,0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,-0.0374631881713867,0,3.42726707458496e-06,-0.0567011833190918,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,-0.0322318077087402,2.26497650146484e-06,3.814697265625e-06,-0.0803427696228027,-2.62260437011719e-06,6.9737434387207e-06,-0.0639152526855469,2.26497650146484e-06,6.79492950439453e-06,-0.0654335021972656,2.26497650146484e-06,6.79492950439453e-06,-0.0840225219726563,0,7.98702239990234e-06,-0.0774340629577637,-2.26497650146484e-06,7.74860382080078e-06,-0.0447211265563965,-7.03334808349609e-06,5.36441802978516e-06,-0.0436091423034668,9.17911529541016e-06,5.12599945068359e-06,-0.102429389953613,2.14576721191406e-06,9.29832458496094e-06,-0.0784506797790527,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,-0.148072242736816,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,-0.332592964172363,-2.74181365966797e-05,1.50203704833984e-05,-0.238994121551514,-2.288818359375e-05,1.69277191162109e-05,-0.117329597473145,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,4.64916229248047e-06, -0,-0.229795932769775,2.38418579101563e-06,0,-0.358342170715332,-1.66893005371094e-05,4.52995300292969e-06,-0.383089542388916,-9.29832458496094e-06,1.06096267700195e-05,-0.300035953521729,-2.55107879638672e-05,1.01327896118164e-05,-0.310536861419678,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,-0.00850725173950195,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,-0.00578451156616211,-9.29832458496094e-06,0,-0.00125932693481445,-4.52995300292969e-06,0,-0.00250673294067383,-4.52995300292969e-06,0,-0.000705718994140625,-2.62260437011719e-06,0,-0.000753402709960938,2.26497650146484e-06,0,-0.000226497650146484,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,-0.000125408172607422,8.82148742675781e-06,0,-5.43594360351563e-05,4.41074371337891e-06,0,-6.19888305664063e-06,6.91413879394531e-06,0,-4.29153442382813e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,-2.43186950683594e-05,8.82148742675781e-06,0,-1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06,0,0,6.88433647155762e-06, -0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,-0.197163581848145,8.58306884765625e-06,-4.21702861785889e-05,-0.372637271881104,-1.81198120117188e-05,-8.70823860168457e-05,-0.52381443977356,-2.95639038085938e-05,-0.000131726264953613,-0.653875827789307,-6.00814819335938e-05,-0.000175952911376953,-0.767556667327881,-5.24520874023438e-05,-0.000217676162719727,-0.715638160705566,-7.15255737304688e-05,-0.000213384628295898,-0.788506388664246,-0.000102996826171875,-0.000243186950683594,-0.852230608463287,-0.000119209289550781,-0.000268220901489258,-0.906218290328979,-0.000125885009765625,-0.000288486480712891,-0.950169861316681,-0.000151634216308594,-0.000303745269775391,-0.985588252544403,-0.000148773193359375,-0.000314712524414063,-1.01019749045372,-0.00016021728515625,-0.000323295593261719,-1.02306029200554,-0.000151634216308594,-0.00032806396484375,-0.208703517913818,8.58306884765625e-06,-3.090500831604e-05,-0.405456066131592,-2.19345092773438e-05,-6.79492950439453e-05,-0.578542470932007,-4.10079956054688e-05,-0.000106453895568848,-0.725355863571167,-6.77108764648438e-05,-0.000148773193359375,-0.847596168518066,-0.000107765197753906,-0.000191926956176758,-0.949557065963745,-0.000136375427246094,-0.000230789184570313,-1.03465247154236,-0.000155448913574219,-0.00026702880859375,-1.1053215265274,-0.000201225280761719,-0.000295162200927734,-1.16311705112457,-0.000222206115722656,-0.000317096710205078,-1.21003556251526,-0.000256538391113281,-0.000332355499267578,-1.24733281135559,-0.000273704528808594,-0.000343799591064453,-1.27520394325256,-0.000277519226074219,-0.000354766845703125,-1.29313948750496,-0.000313758850097656,-0.000360488891601563,-1.30209344625473,-0.00029754638671875,-0.000363349914550781,-0.0611886978149414,0,-2.02804803848267e-05,-0.149044990539551,4.76837158203125e-06, --5.26309013366699e-05,-0.259457111358643,6.67572021484375e-06,-9.59634780883789e-05,-0.360846519470215,-1.1444091796875e-05,-0.000137686729431152,-0.462302327156067,-1.04904174804688e-05,-0.00018155574798584,-0.572170734405518,-4.10079956054688e-05,-0.000229954719543457,-0.681912302970886,-4.10079956054688e-05,-0.000277280807495117,-0.750664830207825,-6.38961791992188e-05,-0.000306844711303711,-0.824874997138977,-7.53402709960938e-05,-0.000339031219482422,-0.894773006439209,-9.1552734375e-05,-0.000368833541870117,-0.97424852848053,-9.82284545898438e-05,-0.000402450561523438,-1.0124564319849,-0.000105857849121094,-0.00041961669921875,-0.302828311920166,4.76837158203125e-06,-0.000131845474243164,-0.378895282745361,-5.7220458984375e-06,-0.000170886516571045,-0.444914102554321,-1.1444091796875e-05,-0.000207424163818359,-0.550791382789612,-1.33514404296875e-05,-0.000261425971984863,-0.683815240859985,-3.62396240234375e-05,-0.000330090522766113,-0.677270531654358,-4.38690185546875e-05,-0.000331878662109375,-0.728476703166962,-4.00543212890625e-05,-0.000360369682312012,-0.785586297512054,-5.53131103515625e-05,-0.000390529632568359,-0.843563437461853,-3.62396240234375e-05,-0.000419855117797852,-0.889088280498981,-4.38690185546875e-05,-0.000443339347839355,-0.0323586910963058,0,-1.96695327758789e-05,-0.174976348876953,8.58306884765625e-06,-4.89950180053711e-05,-0.325138092041016,-6.67572021484375e-06,-9.72747802734375e-05,-0.454932928085327,-2.76565551757813e-05,-0.000144124031066895,-0.571283102035522,-2.95639038085938e-05,-0.000189423561096191,-0.678191542625427,-3.91006469726563e-05,-0.000232934951782227,-0.777182102203369,-7.34329223632813e-05,-0.000274896621704102,-0.707085728645325,-9.05990600585938e-05,-0.000255346298217773,-0.774913609027863,-8.67843627929688e-05,-0.000284671783447266,-0.836520195007324,-0.000113487243652344,-0.000311136245727539,-0.887921333312988,-0.00011444091796875,-0.000332117080688477,-0.923958659172058,-0.000140190124511719,-0.000345945358276367,-0.943437516689301,-0.000128746032714844,-0.000352382659912109, -0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.101718530058861,-4.14848327636719e-05,0,-0.376977920532227,-0.000139713287353516,-1.23977661132813e-05,-0.414340496063232,-0.0001373291015625,-1.81198120117188e-05,-0.266873717308044,-8.72611999511719e-05,-5.7220458984375e-06,-0.325498580932617,-0.000121593475341797,-8.58306884765625e-06,-0.209143280982971,-7.39097595214844e-05,-2.86102294921875e-06,-0.16087281703949,-7.58171081542969e-05,0,-0.124556422233582,-4.33921813964844e-05,0,-0.441892862319946,-0.000144481658935547,-2.38418579101563e-05,-0.330294370651245,-0.000104427337646484,-2.38418579101563e-05,-0.333240509033203,-0.000115871429443359,-2.76565551757813e-05,-0.291433811187744,-9.87052917480469e-05,-2.86102294921875e-05,-0.347733974456787,-0.000124454498291016,-3.91006469726563e-05,-0.389325141906738,-0.0001373291015625,-4.67300415039063e-05,-0.432406544685364,-0.000164031982421875,-5.14984130859375e-05,-0.482679605484009,-0.000188827514648438,-5.81741333007813e-05,-0.524906635284424,-0.000194549560546875,-6.00814819335938e-05,-0.556575894355774,-0.000218868255615234,-6.103515625e-05,-0.576038241386414,-0.000221729278564453,-6.38961791992188e-05,-0.111991465091705,-5.7220458984375e-05,-6.67572021484375e-06,-0.148504555225372,-7.39097595214844e-05,-8.58306884765625e-06,-0.186945855617523,-8.72611999511719e-05,-1.1444091796875e-05,-0.277098774909973,-0.000102996826171875,-1.81198120117188e-05,-0.380880951881409,-0.000154018402099609,-2.76565551757813e-05,-0.438390016555786,-0.000151157379150391,-2.95639038085938e-05,-0.541717290878296,-0.000190258026123047,-3.814697265625e-05,-0.576250314712524,-0.000217437744140625,-4.00543212890625e-05,-0.659482955932617,-0.000234127044677734,-4.57763671875e-05,-0.343156337738037,-0.000121593475341797,-2.47955322265625e-05,-0.375573396682739,-0.000124454498291016,-2.6702880859375e-05,-0.41280198097229,-0.000143051147460938,-3.0517578125e-05,-0.519097328186035, --0.000185489654541016,-3.62396240234375e-05,-0.43753969669342,0.0332059860229492,-0.000349998474121094,-0.375927448272705,0.0573816299438477,-0.000606536865234375,-0.269500613212585,0.0855960845947266,-0.00174903869628906,-0.644164443016052,0.0306782722473145,5.81741333007813e-05,-0.660172760486603,-0.000265598297119141,-4.29153442382813e-05,-0.663708925247192,-0.000267505645751953,-4.29153442382813e-05,-0.114605695009232,-4.57763671875e-05,-6.67572021484375e-06,-0.144515067338943,-5.7220458984375e-05,-8.58306884765625e-06,-0.191801130771637,-8.53538513183594e-05,-1.1444091796875e-05,-0.281798481941223,-0.000108242034912109,-1.62124633789063e-05,-0.405076861381531,-0.000142574310302734,-2.38418579101563e-05,-0.487721800804138,-0.000167369842529297,-2.86102294921875e-05,-0.559443712234497,-0.00018310546875,-3.52859497070313e-05,-0.633019685745239,-0.000203609466552734,-4.00543212890625e-05,-0.694179773330688,-0.000234127044677734,-4.57763671875e-05,-0.339361906051636,-0.000116825103759766,-2.38418579101563e-05,-0.361016273498535,-0.000124454498291016,-2.6702880859375e-05,-0.394493103027344,-0.000139713287353516,-3.14712524414063e-05,-0.496936559677124,-0.000175952911376953,-4.00543212890625e-05,-0.547789692878723,-0.000201702117919922,-4.29153442382813e-05,-0.587801814079285,-0.000211715698242188,-4.48226928710938e-05,-0.650454640388489,-0.000249862670898438,-4.86373901367188e-05,-0.675729155540466,-0.00026702880859375,-4.86373901367188e-05,-0.681689977645874,-0.000272750854492188,-4.76837158203125e-05,-0.677414834499359,-0.000268936157226563,-4.67300415039063e-05,-0.0786640048027039,-3.69548797607422e-05,4.76837158203125e-06,-0.27056622505188,-7.39097595214844e-05,0,-0.301513910293579,-8.72611999511719e-05,-5.24520874023438e-06,-0.19356107711792,-7.12871551513672e-05,8.58306884765625e-06,-0.233784675598145,-6.65187835693359e-05,4.76837158203125e-06,-0.154376983642578,-5.26905059814453e-05,6.67572021484375e-06,-0.120623350143433,-5.26905059814453e-05,7.62939453125e-06,-0.0948883295059204,-4.12464141845703e-05,5.7220458984375e-06, --0.329222202301025,-0.000100612640380859,-1.1444091796875e-05,-0.18033242225647,-4.9591064453125e-05,-1.1444091796875e-05,-0.201693296432495,-5.86509704589844e-05,-1.66893005371094e-05,-0.245386600494385,-6.15119934082031e-05,-2.76565551757813e-05,-0.2740318775177,-7.72476196289063e-05,-3.76701354980469e-05,-0.324366092681885,-0.000100135803222656,-4.86373901367188e-05,-0.378668904304504,-0.000125885009765625,-5.81741333007813e-05,-0.431930541992188,-0.000140190124511719,-6.58035278320313e-05,-0.479336202144623,-0.000157356262207031,-6.96182250976563e-05,-0.516731679439545,-0.000180244445800781,-7.05718994140625e-05,-0.540700495243073,-0.000185966491699219,-7.2479248046875e-05,-0.0251403748989105,2.14576721191406e-06,0,-0.0826427936553955,-9.05990600585938e-06,-2.86102294921875e-06,-0.0945982933044434,-1.66893005371094e-05,-6.91413879394531e-06,-0.0589549541473389,-7.15255737304688e-06,0,-0.0709023475646973,4.29153442382813e-06,0,-0.0475742816925049,2.14576721191406e-06,0,-0.0376660823822021,2.14576721191406e-06,2.14576721191406e-06,-0.0300120115280151,-1.1444091796875e-05,1.9073486328125e-06,-0.110206365585327,-9.05990600585938e-06,-1.07288360595703e-05,-0.141508340835571,-2.19345092773438e-05,-1.88350677490234e-05,-0.176405191421509,-1.04904174804688e-05,-2.83718109130859e-05,-0.22304630279541,-2.288818359375e-05,-4.41074371337891e-05,-0.290633678436279,-4.57763671875e-05,-6.43730163574219e-05,-0.386872172355652,-6.00814819335938e-05,-9.01222229003906e-05,-0.498671889305115,-8.67843627929688e-05,-0.000113964080810547,-0.61747682094574,-0.000109672546386719,-0.000134944915771484,-0.733282804489136,-0.000148773193359375,-0.000149250030517578,-0.831969380378723,-0.000166893005371094,-0.00016021728515625,-0.898578107357025,-0.000166893005371094,-0.000170707702636719,-0.164752274751663,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.16475248336792,0,-5.71608543395996e-05,-0.164752244949341,0,-5.7220458984375e-05,-0.164752244949341,0,-5.69820404052734e-05,-0.164752244949341,-1.9073486328125e-06, --5.71012496948242e-05,-0.16475236415863,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,-0.16475248336792,0,-5.71608543395996e-05,-0.164752244949341,0,-5.71012496948242e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.164752006530762,0,-5.71012496948242e-05,-0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,-0.171116590499878,-1.9073486328125e-06,-5.93662261962891e-05,-0.17587673664093,0,-6.09159469604492e-05,-0.180306673049927,0,-6.25848770141602e-05,-0.184573352336884,0,-6.41345977783203e-05,-0.188271641731262,0,-6.53266906738281e-05,-0.190809398889542,0,-6.61611557006836e-05,0,9.05990600585938e-06,0,-0.0526230335235596,0,-1.05202198028564e-05,-0.0804190635681152,-1.04904174804688e-05,-1.79409980773926e-05,-0.110532760620117,0,-2.78949737548828e-05,-0.1606764793396,-6.67572021484375e-06,-4.32729721069336e-05,-0.269533753395081,-1.81198120117188e-05,-7.48634338378906e-05,-0.388612866401672,-2.288818359375e-05,-0.000105142593383789,-0.512962639331818,-5.62667846679688e-05,-0.000133752822875977,-0.635793149471283,-4.48226928710938e-05,-0.00015711784362793,-0.742478907108307,-7.34329223632813e-05,-0.000176191329956055,-0.81542032957077,-6.866455078125e-05,-0.000190973281860352,-0.0517162084579468,-1.59740447998047e-05,4.29153442382813e-06,-0.0619155764579773,-1.40666961669922e-05,5.24520874023438e-06,-0.0780516862869263,-1.83582305908203e-05,6.19888305664063e-06,-0.0989878177642822,-1.1444091796875e-05,8.10623168945313e-06,-0.123143434524536,-3.69548797607422e-05,8.10623168945313e-06,-0.148154497146606,-2.98023223876953e-05,4.29153442382813e-06,-0.172005891799927,-3.4332275390625e-05,0,-0.194048881530762,-2.81333923339844e-05,-4.29153442382813e-06,-0.21704363822937,-5.48362731933594e-05,-1.00135803222656e-05,-0.123548030853271,-2.71797180175781e-05,-1.09672546386719e-05,-0.143582344055176,-2.71797180175781e-05,-1.71661376953125e-05,-0.171879768371582,-4.00543212890625e-05,-2.6702880859375e-05,-0.210759162902832,-4.29153442382813e-05,-3.86238098144531e-05, --0.259849309921265,-6.77108764648438e-05,-5.14984130859375e-05,-0.314969658851624,-7.91549682617188e-05,-6.24656677246094e-05,-0.371531009674072,-9.72747802734375e-05,-7.15255737304688e-05,-0.4244544506073,-0.000107765197753906,-7.58171081542969e-05,-0.468077838420868,-0.000123023986816406,-7.86781311035156e-05,-0.496838957071304,-0.000131607055664063,-8.24928283691406e-05,0,4.58955764770508e-06,0,0,9.23871994018555e-06,0,0,-6.85453414916992e-06,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-1.1444091796875e-05,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.58955764770508e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,-4.52995300292969e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,-9.13441181182861e-06,0,0,-6.82473182678223e-06,0,0,2.29477882385254e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-2.20537185668945e-06,0,0,-4.58955764770508e-06,0,0,6.79492950439453e-06, -0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,-4.58955764770508e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,9.14931297302246e-06,0,0,-6.82473182678223e-06,0,0,-4.55975532531738e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-2.20537185668945e-06,0 - } - Normals: *15342 { - a: 1.21891498565674e-05,1.8775463104248e-05,7.57277011871338e-05,-0.614461136347792,0.749744987115264,0.814772307872772,-1.1659089922905,-0.240294992923737,-0.206866934895515,-0.913618475198746,0.00989806652069092,-0.584553942084312,-0.619066611398011,0.343794584274292,-1.09113436937332,-0.315515846014023,-0.17753541469574,-0.602287426590919,-0.0238627791404724,-0.151885896921158,-0.212665602564812,-0.694936757656178,0.40280245244503,0.628791451454163,-1.54714477062225,0.13265386223793,-0.185470208525658,-1.63190585374832,0.72163325548172,-0.84904745221138,-0.567864060867578,0.406947255134583,-1.76065731048584,0.241948664188385,0.61329460144043,-1.06640392541885,0.31585156917572,0.746842585504055,-0.0226556658744812,-0.503563012754945,0.18753707408905,0.553374871611595,-1.58790677785873,0.707292832434177,0.0987794995307922,-0.638962322380394,1.34007781744003,-0.946059376001358,0.196388602256775,0.613597124814987,-0.173841446638107,-0.563045488389956,-0.68754518032074,-0.784780889749527,-1.07353574037552,0.40075609087944,-0.467526704072952,-0.26256600709479,1.13182687759399,-1.03471966087818,0.6612728536129,0.267492088489234,-0.97180674597621,-0.577146829037144,-0.250796616077423,-0.855060696601868,-1.61035311222076,0.635241031646729,-0.683767260983586,-0.262565524900069,1.13493013381958,-0.964947264641523,0.697275176644325,0.67759682238102,-1.17042575776577,-0.149452672101575,-0.976381756365299,-1.28964248299599,-1.12977001070976,0.546766969375312,-1.14108601212502,-0.262560795850277,1.13325333595276,-1.01409043371677,0.512480318546295,0.790262192487717,-1.19417814910412,-0.119221362153539,-0.824054151773453,-1.02769929170609,-0.872991785407066,0.766147747635841,-1.21789884567261,-0.262565123334966,1.11789935827255,-1.13944007456303,0.659998372197151,0.594194069504738,-1.40319219231606,-0.119221083248988,-0.818420857191086,-1.09465086460114,-0.786892170337596,0.678768783807755,-1.39529186487198,1.32694438077507e-05,0.7943115234375,-1.7628465294838,0.427552551031113,-0.00211032852530479,-1.8049840927124, --0.126888514117582,-0.560878559947014,-1.69106703996658,-0.576962461117764,0.184556595981121,-1.80296277999878,0.42637254048066,-0.785583468154073,-1.41663205623627,0.50694967556672,-0.713502200320363,-1.45706140995026,-0.42726277316,-0.638136446475983,-1.40347957611084,-0.402323141694069,-0.57051157951355,-1.43952146172523,0.132578484714031,-0.69389015249908,-1.72950607538223,-0.443712701443691,-0.487277030944824,-1.60197216272354,0.547586327167592,-0.404261499643326,-1.52141940593719,0.715979650616646,-0.551255092024803,-0.786042019724846,0.87618051469326,-0.355893462896347,-0.546769767999649,0.630455300211906,-0.695534586906433,-0.776312857866287,0.796453908085823,-0.415322169661522,-0.626322120428085,0.79154871404171,-0.106078460812569,-0.186290442943573,0.83967137336731,-0.535538300871849,-0.489223629236221,0.949246108531952,-0.366950324736536,-0.287919402122498,0.268664442002773,-0.197231603786349,-0.0111246705055237,0.126882766727467,-0.0203187763690948,0.00500345230102539,0.411970466375351,0.157772032544017,0.0330593585968018,0.389412045478821,-0.00873854756355286,0.0260105133056641,0.126984558999538,-0.00947423279285431,0.0197185277938843,0.496665790677071,0.298256000503898,0.276770651340485,0.516594409942627,0.236894205212593,0.317299246788025,0.348438590764999,0.464752689003944,0.485559791326523,-1.43051147460938e-06,3.69986519217491e-05,5.96046447753906e-08,5.96046447753906e-08,3.90559434890747e-05,5.60283660888672e-06,-0.173207759857178,0.00332364439964294,-0.227450758218765,0.0804458260536194,-0.135909020900726,-0.159753367304802,-9.47713851928711e-06,2.18749046325684e-05,6.62952661514282e-05,-0.118003249168396,0.0398842096328735,-0.121077477931976,-0.06354820728302,-0.166561096906662,-1.11222836375237,0.341134637594223,-0.396801263093948,-0.854643762111664,0.204598397016525,-0.0261932015419006,-0.917223811149597,0.634757091291249,-0.13372603058815,-1.52172893285751,0.215289920568466,-0.390380531549454,-1.32069933414459,1.16869953274727,-0.144410490989685,-0.762308478355408,1.38663828372955,-0.273424476385117, --0.938454926013947,1.67391300201416,0.725759461522102,-0.681907117366791,1.26531803607941,0.342954963445663,-0.814840212464333,1.45451724529266,0.608566790819168,0.000728636980056763,1.46635872125626,0.536587588489056,0.284489274024963,1.45164972543716,0.562011867761612,0.322154030203819,1.01493847370148,0.536588340997696,0.631569474935532,1.0456528365612,0.563178718090057,1.16570922732353,0.491110616363585,0.140282332897186,1.19136774539948,0.430817177250192,0.330282986164093,1.55096191167831,0.514484398066998,0.326830983161926,1.55878800153732,0.459979166276753,0.140275299549103,1.19136202335358,0.458443142473698,0.389693677425385,1.40134996175766,0.372921578586102,0.0549470782279968,1.36212188005447,0.24601611495018,0.361852437257767,1.54352641105652,-0.340577244758606,0.571555659174919,1.23830431699753,-0.46065029501915,0.426350742578506,0.778145253658295,-0.820275923237205,0.466258570551872,1.2481797337532,-0.905324209481478,0.871447712182999,0.665400564670563,-0.364993631839752,0.325618535280228,0.125734686851501,0.102074027061462,1.61026322841644,0.59309009462595,0.0265230052173138,1.4026386141777,0.398832440376282,-0.707818979863077,0.160422801971436,0.255337834358215,-0.817902088165283,1.73616218566895,0.277192205190659,-0.0872373878955841,1.74318248033524,0.391125144436955,0.225010424852371,0.498883694410324,-0.242220044136047,-0.136084228754044,1.54238563776016,0.373032107949257,-0.0377450585365295,1.6654344201088,0.550656244158745,-0.000225543975830078,1.59156328439713,0.503279630094767,-0.0967017412185669,-0.0127497017383575,0.976373434066772,0.30072408914566,0.479072272777557,0.962761521339417,0.344738274812698,0.738461583852768,1.03020918369293,0.089098334312439,-0.0271860957145691,0.827658951282501,-0.0859225392341614,-0.101098924875259,1.26644772291183,-0.676518514752388,-0.35918778181076,0.551513533806428,-0.569949604832214,-0.296721935272217,0.821913480758667,-0.959419369697571,-1.16327103972435,0.760718196630478,-0.69278946518898,-1.21909742057323,0.526227922644466,-0.576848641037941,-0.506707698106766, -0.988256633281708,-0.684127878397703,-0.57380422949791,0.688363932073116,-0.867782421410084,-1.13127951323986,0.947957903146744,-1.7847473025322,-0.528813719749451,0.653028160333633,-1.59751516580582,0.545374557375908,1.06388247013092,-1.46186828613281,0.456286266446114,1.09793585538864,-1.14296972751617,1.36629784107208,0.874970436096191,-1.30513179302216,1.13226291537285,0.894683837890625,-0.944907158613205,1.31605017185211,0.472750622779131,-0.921604267576413,1.37235125899315,-0.125868882983923,-1.08429582417011,1.21031528711319,-0.0548491030931473,-0.701025143265724,1.1954707056284,-0.524187358096242,-0.722503870725632,1.26296666264534,-0.28198453783989,-0.637654513120651,1.17632818222046,-0.117699466645718,-0.542822957038879,0.840238995850086,-0.250453397631645,0.163792014122009,0.324566997587681,-0.36015397310257,0.0860353708267212,-0.115884944796562,-0.718852788209915,0.122333288192749,-0.0541490167379379,-0.396313145756721,-0.163210570812225,-0.606974966824055,-1.00093939900398,0.144031822681427,-0.387053728103638,-0.844490326941013,-0.745947763323784,-0.6701330691576,-1.14502862095833,-0.684339797216211,-0.712726086378098,-0.928995460271835,-0.996006190776825,-0.677097767591476,-0.673055663704872,-0.709601402282715,-0.704247996211052,-0.903550118207932,-0.478173568844795,-0.721485808491707,-0.988887965679169,-0.669079523533583,-0.666801407933235,-1.16919955611229,-0.592600211501122,-0.637111485004425,-0.999889463186264,-1.04061317443848,0.281390964984894,-1.00130023062229,-1.12001864612103,0.534276857972145,-0.665396749973297,-1.18505588173866,-0.0326533913612366,-0.836704738438129,-1.25743472576141,1.07246318459511,-0.60730791836977,-1.2146418094635,1.00047831237316,-0.494249165058136,-0.289910554885864,1.29823791980743,-0.961989985778928,-0.0707803653796191,1.31732055544853,-1.06310502439737,-0.225015893578529,1.21932575106621,-1.08550026267767,-0.120481885969639,1.22054097056389,-0.975003708153963,-0.0527753233909607,1.2883528470993,-1.05251803249121,0.204595290124416,1.60869932174683,-0.806260399520397, -0.225163906812668,1.27587613463402,-1.02902898937464,0.723317876458168,0.677013516426086,-1.12499786913395,0.75816011428833,0.279133260250092,-1.14873307943344,0.793804824352264,-0.016370952129364,-1.31238168478012,0.508437983691692,-0.123723804950714,-1.16269084811211,0.53354468551877,-0.0476036667823792,-1.23404297232628,-0.0839923524401636,-0.612509042024612,-1.24818953871727,-0.0929894077430049,-0.663561433553696,-1.40609323978424,-0.172898389399052,-0.56091234087944,-1.39660909771919,0.0839898160554915,-0.612509816884995,-1.24818789958954,0.102113215001664,-0.65721407532692,-1.42698836326599,-0.0486114605046892,-0.711022108793259,-1.31336465477943,-0.0463057362578363,-0.536067336797714,-1.42962083220482,-0.804810009896755,0.00144213438034058,-1.30233716964722,-0.806608721613884,0.588519886136055,-1.16164675354958,-0.864582171394631,-0.00517278909683228,-1.31111732125282,-0.344773713672133,1.59009754657745,-0.784125838428736,-0.4513751976192,1.51647299528122,-0.826742064207792,-0.0448378399014473,1.3156675696373,-1.00871928781271,0.0707739549373976,1.32354229688644,-0.898677289485931,-0.0897307209670544,1.62787771224976,-0.746525224298239,0.233062051236629,1.59335708618164,-0.855151303112507,0.290108866989613,1.2982420027256,-0.907707082107663,0.427925005555153,1.1822072416544,-1.03834746032953,0.293758630752563,1.19700039923191,-0.966156543698162,0.841727413237095,0.931847870349884,-1.13505992293358,1.08922423422337,-0.0217036306858063,-1.20990139245987,1.08393163979053,0.000446230173110962,-1.24968001246452,0.661730274558067,-0.214332580566406,-0.981947436928749,1.08583980798721,-0.466882944107056,-1.02210053801537,0.522029973566532,-0.755191460251808,-0.794758483767509,0.2285050745582,-0.787134155631065,-1.06714582443237,0.0998843982815742,-0.686414450407028,-1.04196407645941,0.714721865952015,-0.755192056298256,-0.79475911706686,0.731020279228687,-0.714951545000076,-0.819183386862278,0.77480211108923,-0.790003776550293,-0.585126288235188,0.759312704205513,-0.611968904733658,-0.571365416049957,-0.258308708667755, --0.0502484142780304,-0.987126350402832,-0.152606129646301,0.846352085471153,-0.940489307045937,-0.127729713916779,-0.209277756512165,-0.944471061229706,0.544468522071838,1.1538890004158,-0.625224374234676,0.328638672828674,1.19601874053478,-0.766833499073982,0.389984130859375,1.29731220006943,-0.992359846830368,0.837134581821829,1.18807923793793,-0.690290734171867,0.647952556610107,1.06693261116743,-0.826881617307663,1.04698038101196,0.886314146220684,-0.666541948914528,1.07444582879543,1.20328679680824,-0.403248429298401,1.06298069655895,1.30360385775566,-0.721691101789474,1.05710577964783,1.15385103225708,-0.73360088467598,1.73909640312195,0.772482007741928,-0.498093411326408,1.62197363376617,-0.0592180788516998,-0.470108479261398,1.72107654809952,0.0587446391582489,-0.386970147490501,1.39415806531906,-0.630725294351578,-0.453460961580276,1.33088529109955,-0.504791229963303,0.29583540558815,0.606168791651726,-0.440514206886292,0.327914245426655,0.951014630314583,-0.7679263651371,-0.256122305989265,0.791722543537617,-1.06959480792284,-0.49897737801075,1.01488853245974,-1.34482181072235,0.0719750300049782,0.909936375916004,-0.667637497186661,0.434450875967741,0.750711813569069,-0.66064789891243,0.335591420531273,0.842630706727505,-1.34934967756271,0.0894461944699287,0.0518681406974792,-0.785460621118546,0.211866766214371,-0.137129068374634,0.965132832527161,0.337603241205215,-0.321407437324524,0.192963421344757,0.320147022604942,0.360509097576141,1.42194253206253,0.109611123800278,0.489457160234451,1.23811605572701,0.233809232711792,0.472425654530525,1.02153551578522,-0.151256382465363,0.407955118470454,-0.0117079615592957,-0.342037543654442,0.699225395917892,0.637722656130791,-0.0622779428958893,0.677316710352898,-0.267066299915314,-0.83336977660656,0.512101694941521,-0.0845235586166382,-0.460785139352083,0.703427374362946,-0.382542371749878,-0.695294097065926,0.772813647985458,-0.0453776717185974,-0.554932102560997,1.13464748859406,-0.601798564195633,-0.785200163722038,0.925994753837585,-1.40034955739975,-0.595726564526558, -0.967309832572937,-1.55423080921173,-0.4533979780972,0.296293342020363,-1.57731026411057,-0.444513112306595,0.337003855034709,-1.70815062522888,0.00911271572113037,0.690139889717102,-0.418023526668549,-0.0815308094024658,0.407967158990232,-1.80056363344193,-0.346112236380577,-0.0958046112209558,-1.77610123157501,0.00492572784423828,0.0271107233129442,-0.775395944714546,0.263215482234955,0.0828113588504493,-0.982445314526558,0.541710197925568,-0.0918744970113039,-1.54516845941544,-0.291745454072952,-0.477059122174978,-1.78452813625336,-0.319684728980064,-1.21681612730026,-0.216684013605118,-0.039117157459259,-0.722450854256749,-0.597852677106857,-0.188631504774094,-0.643091565463692,-1.56932526826859,-0.187400043010712,-0.75014665722847,-0.506005764007568,-0.775825688615441,-0.815786004066467,-0.137024700641632,-0.404699698090553,-0.433854254772427,-1.06840753555298,-0.855553820729256,-0.241924539208412,-1.10455398261547,-0.955979833379388,-0.361905112862587,-1.54678958654404,-0.883621826767921,-0.282006129622459,-1.0210025459528,-1.0072621293366,-0.982628099620342,-0.396797046065331,-0.579309940338135,-0.734690487384796,-1.50962775945663,-0.597722366452217,-0.896080493927002,-1.03759111464024,-0.95006026700139,-1.08367097377777,-1.53171616792679,0.419860582798719,-1.08210039138794,-1.16564193367958,0.578594848513603,-1.23884874582291,-1.11435210704803,0.336988925933838,-1.20173323154449,-1.34098309278488,-0.81265515089035,-1.36571007966995,-0.562139883637428,1.29199868440628,-1.12510120868683,-1.0999319255352,0.702554386109114,-1.31339865922928,-1.38613653182983,0.0609715282917023,-1.47894859313965,-0.882212817668915,0.828701347112656,-1.50122034549713,-0.777741245925426,-0.815138280391693,-1.47673219442368,-0.941686704754829,-0.649133339524269,-1.2786573767662,-0.666934594511986,-1.03918531537056,-1.30494368076324,-0.604939050972462,-1.10491979122162,-1.33306074142456,-1.03638942539692,-0.766406163573265,-1.38173776865005,-1.03450612723827,-0.742913752794266,-1.31385987997055,-0.689917296171188,-0.708672896027565, --1.27684110403061,-0.739897057414055,-0.843826532363892,-1.10947728157043,-0.729139432311058,-1.09945392608643,-1.16613912582397,0.696229487657547,-1.25936925411224,-0.883802756667137,0.517744228243828,-1.2869921028614,-0.811212092638016,1.45139074325562,-0.921561628580093,-0.818036437034607,1.15453934669495,-1.27227091789246,-0.970841273665428,1.07048558443785,-0.716168381273746,-0.974647372961044,1.03943075239658,-0.876311033964157,-0.785056948661804,1.49995911121368,-0.669478207826614,-0.757135808467865,1.50638610124588,-0.631551556289196,-0.972421377897263,1.62340569496155,-0.237842835485935,-0.329245883971453,1.94907879829407,-0.144248507916927,-0.476024217903614,1.79611504077911,-0.287537679076195,-0.894153356552124,1.2513210773468,-0.576339647173882,-1.38654756546021,0.75284469127655,-1.15905648469925,-0.544864811003208,1.76900517940521,-0.3733428157866,-0.688544929027557,-0.0469381809234619,-1.29204720258713,-0.576969921588898,0.507161766290665,-0.988381057977676,0.69165825098753,0.086906373500824,-1.22139638662338,0.188148766756058,0.589339956641197,0.162439048290253,0.187553368508816,0.736048445105553,0.532366424798965,0.391488492488861,0.856711447238922,0.951824030373245,0.988034427165985,1.28782999515533,-0.550485536456108,0.762719742953777,0.578320205211639,-0.915151327848434,0.562068771570921,1.73156636953354,0.268702730536461,0.72830867767334,1.63896572589874,-0.0935292840003967,0.702015936374664,1.80767631530762,0.0716424942947924,0.596256361993776,1.76123237609863,0.274059353396297,0.344773926102201,1.88572579622269,-0.345780411735177,0.451372109353542,1.51646673679352,-0.826751582324505,0.36664542555809,1.87954121828079,-0.476456828415394,0.289740719162504,1.90432423353195,-0.338270695880055,0.346520926630525,1.52660465240479,-1.09691393375397,0.319237407124071,1.5642004609108,-1.01444259285927,0.41099131878523,1.38176834583282,-1.12157642841339,0.307928837835789,1.68537753820419,-0.891782283782959,0.404866654425859,0.457082390785217,-1.67734181880951,0.0579869414499203,-0.0389365553855896,-0.474326804280281, -0.0432001032855371,0.107020258903503,-0.428724469617009,-0.066577073186636,-0.00335341691970825,-0.0816140994429588,-0.00255384296178818,-0.0614949464797974,-0.461074367165565,-0.0253404155373573,-0.00860351324081421,-0.698123902082443,-0.0715515129268169,0.00242060422897339,-0.138284966349602,0.0839811824262142,0.0918930172920227,-0.479018729180098,0.0923748388886452,0.0320450067520142,-0.913028031587601,0.150744948536158,-0.39550518989563,-0.73113601654768,0.0642054490745068,-0.338068187236786,-1.0037958920002,0.043464720249176,0.328452885150909,0.43130499124527,0.0921502858400345,2.09808349609375e-05,4.46140766143799e-05,0.23088277131319,0.599731177091599,0.509171843528748,0.474539916962385,0.346398293972015,-0.675759237259626,1.12679666280746,-0.00705885887145996,-0.884495139122009,0.98780357837677,-0.147628366947174,-1.24374943971634,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156, --0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194, -1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715, -1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313, -0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217, -0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612, -0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981, --0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727, --0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284, --0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894, --1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186, -0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692, --1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943, --1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961, --1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232, --0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006, --1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167, --0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762, -0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532, -0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127, -0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114, --0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084, --1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146, --0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896, -0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445, --1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147, --0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068, --0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284, --0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004, --1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468, --0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305, -0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755, --0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633, --0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676, --0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546, --1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952, --1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239, --1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022, -0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618, --0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699, --1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399, --1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126, -0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522, --1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864, --1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498, --1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885, --1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959, --0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, --0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646, --0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465, --0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338, -0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533, --1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518, --0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037, --0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367, --0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105, --0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338, --0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593, -0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549, -0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146, -0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797, --1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809, --1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853, --0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836, -1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017, -0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293, -0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578, --0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408, --0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153, --0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908, --0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211, --0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163, -0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531, --0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041, --0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715, -0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714, -0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673, --0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024, -0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437, --0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443, --0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155, --1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036, -0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019, --0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159, -0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048, --0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721, -0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767, --1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871, --0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785, -0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454, -0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581, -0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148, -0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732, -0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323, -1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619, --0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641, --0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315, --1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213, --1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522, --0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043,0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664, --0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683, --1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989, -0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197, --1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522, -0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174, -0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189, --1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.936012446880341,0.940078016370535, -0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965, -0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257, --0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427, -0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759, --1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281, --0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435, --1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527, --1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817, --0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179, --0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062, -0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564, -0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438, --1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577, --0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337, -0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596, --0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578, -0.847917661070824,-1.04395531117916,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593, --0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596, -0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683, -0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305, --0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308, --1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374, -1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 - } - } - Geometry: 2807563817056, "Geometry::Jaw_Forward", "Shape" { - Version: 100 - Indexes: *4134 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, -3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, -3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, -4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, -4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, -5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, -5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, -5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5901,5902,5903,5904,5908,5917,5918,5939,5941,5943,5945,5947,5949,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6238,6269,6286,6288,6289,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6610,6611,6612,6613,6614,6615,6626,6627,6628,6629,6630,6631,6632,6643,6644,6645,6646,6647,6648,6649,6678,6679,6680,6681,6682,6683,6684,6685,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6727,6728,6735,6736,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6749,6754,6755,6756,6763,6764,6765,6766,6767,6770,6772,6773,6774,6775,6776,6777,6836,6837,6844, -6845,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7620,7651,7668,7670,7671,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738, -7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7992,7993,7994,7995,7996,7997,8008,8009,8010,8011,8012,8013,8014,8025,8026,8027,8028,8029,8030,8031,8060,8061,8062,8063,8064,8065,8066,8067,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8109,8110,8117,8118,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8131,8136,8137,8138,8145,8146,8147,8148,8149,8152,8154,8155,8156,8157,8158,8159,8218,8219,8226,8227,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 - } - Vertices: *12402 { - a: 0,-0.0001373291015625,1.24893546104431,0,-0.000103950500488281,1.24893879890442,0,-0.0001373291015625,1.24893546104431,0,-0.00016021728515625,1.24893760681152,0,-0.000192642211914063,1.24893188476563,0,-0.00016021728515625,1.24893760681152,0,-0.000136375427246094,1.24894094467163,0,-0.000104427337646484,1.24894642829895,0,-0.000136375427246094,1.24894094467163,0,-0.00016021728515625,1.248948097229,0,-0.000192165374755859,1.24894332885742,0,-0.00016021728515625,1.24894905090332,0,-0.000136375427246094,1.24895572662354,0,-0.000120639801025391,1.2489767074585,0,-0.000136375427246094,1.24895572662354,0,-0.000200748443603516,1.24894523620605,0,-0.000151634216308594,1.24896144866943,0,-0.000152587890625,1.24898338317871,0,-0.000151634216308594,1.24896144866943,0,-0.000200748443603516,1.24894571304321,0,-0.000184535980224609,1.24895858764648,0,-0.000184059143066406,1.24897575378418,0,-0.000184535980224609,1.24895858764648,0,-0.000224590301513672,1.24894618988037,0,-0.000217437744140625,1.24895143508911,0,-0.000216960906982422,1.24896335601807,0,-0.000217437744140625,1.24895143508911,0,-0.000256061553955078,1.24894618988037,0,-0.000257015228271484,1.24894905090332,0,-0.000257015228271484,1.24896049499512,0,-0.000257015228271484,1.24894905090332,0,-0.000273227691650391,1.24894905090332,0,-0.000272274017333984,1.2489538192749,0,-0.000273227691650391,1.24896049499512,0,-0.000272274017333984,1.2489538192749,0,-0.000288486480712891,1.24895191192627,0,-0.000280857086181641,1.24895477294922,0,-0.000289440155029297,1.24895668029785,0,-0.000280857086181641,1.24895477294922,0,-0.000168323516845703,1.24893426895142,0,-0.000168323516845703,1.24894237518311,0,-0.0001678466796875,1.24893522262573,0,-0.0001678466796875,1.24894237518311,0,-0.000193119049072266,1.24893856048584,0,-0.000184059143066406,1.2489333152771,0,-0.000152111053466797,1.248939037323,0,-0.000136852264404297,1.24893665313721,0,-0.000128746032714844,1.24894237518311,0,-0.000128746032714844,1.24893689155579,0,-0.000128269195556641,1.24893808364868,0, --0.000112056732177734,1.24894571304321,0,-0.000111579895019531,1.24893808364868,0,-0.000112056732177734,1.24893927574158,0,-0.000104427337646484,1.24894618988037,0,-0.000103950500488281,1.24893951416016,0,-0.000104427337646484,1.24893832206726,0,-0.000103473663330078,1.24893951416016,0,-0.000104427337646484,1.24894618988037,0,-0.000104427337646484,1.24893832206726,0,-0.000103473663330078,1.24893951416016,0,-0.000104427337646484,1.24894618988037,0,-0.000104427337646484,1.24893760681152,0,-0.000104427337646484,1.24893951416016,0,-0.000128746032714844,1.24894237518311,0,-0.000136852264404297,1.24893665313721,0,-0.000128746032714844,1.24893689155579,0,-0.000128269195556641,1.24893808364868,0,-0.00014495849609375,1.24894046783447,0,-0.0001678466796875,1.24893951416016,0,-0.000184535980224609,1.24894094467163,0,-0.000192165374755859,1.24893617630005,0,-0.000183582305908203,1.24893760681152,0,-0.000168800354003906,1.24893856048584,0,-0.00016021728515625,1.24894285202026,0,-0.000152587890625,1.24894952774048,0,-0.000152111053466797,1.2489447593689,0,-0.000136375427246094,1.248948097229,0,-0.000128746032714844,1.24896240234375,0,-0.000128269195556641,1.24895238876343,0,-0.000120639801025391,1.24897384643555,0,-0.000112056732177734,1.24895906448364,0,-0.000120639801025391,1.2489767074585,0,-0.000112533569335938,1.24896216392517,0,-0.000112056732177734,1.24896121025085,0,-0.000120639801025391,1.2489767074585,0,-0.000112056732177734,1.24896121025085,0,-0.000120639801025391,1.24897575378418,0,-0.000112056732177734,1.24896121025085,0,-0.000128746032714844,1.24896240234375,0,-0.000136375427246094,1.248948097229,0,-0.000128269195556641,1.24895238876343,0,-0.000144481658935547,1.24895238876343,0,-0.00014495849609375,1.24894666671753,0,-0.000184535980224609,1.24894666671753,0,-0.000192642211914063,1.24894380569458,0,-0.000184535980224609,1.2489447593689,0,-0.000184535980224609,1.24894618988037,0,-0.000184535980224609,1.24894666671753,0,-0.000184535980224609,1.2489447593689,0,-0.000184535980224609,1.24894618988037,0,-0.00016021728515625, -1.24895095825195,0,-0.000152111053466797,1.24895191192627,0,-0.00014495849609375,1.24896001815796,0,-0.000151634216308594,1.2489709854126,0,-0.000136852264404297,1.24896931648254,0,-0.000152587890625,1.24898529052734,0,-0.000136375427246094,1.24898266792297,0,-0.000152587890625,1.24898481369019,0,-0.000136375427246094,1.24898290634155,0,-0.000136375427246094,1.24898362159729,0,-0.000152587890625,1.24898481369019,0,-0.000136375427246094,1.24898362159729,0,-0.000152587890625,1.24898672103882,0,-0.000136375427246094,1.24898505210876,0,-0.000151634216308594,1.2489709854126,0,-0.00014495849609375,1.24896001815796,0,-0.000136852264404297,1.24896931648254,0,-0.000152587890625,1.24895668029785,0,-0.00014495849609375,1.24895572662354,0,-0.000200748443603516,1.24894666671753,0,-0.000200748443603516,1.24894618988037,0,-0.000192165374755859,1.24894666671753,0,-0.000200748443603516,1.24894666671753,0,-0.000192165374755859,1.24894666671753,0,-0.000184535980224609,1.24894857406616,0,-0.0001678466796875,1.24895048141479,0,-0.000168800354003906,1.24896097183228,0,-0.000184535980224609,1.2489652633667,0,-0.0001678466796875,1.24897003173828,0,-0.000184535980224609,1.24897813796997,0,-0.0001678466796875,1.24898242950439,0,-0.000184535980224609,1.24897813796997,0,-0.000168323516845703,1.2489800453186,0,-0.0001678466796875,1.24898338317871,0,-0.000184535980224609,1.24897813796997,0,-0.0001678466796875,1.24898338317871,0,-0.000184059143066406,1.24898099899292,0,-0.000168323516845703,1.24898672103882,0,-0.000184535980224609,1.2489652633667,0,-0.000168800354003906,1.24896097183228,0,-0.0001678466796875,1.24897003173828,0,-0.000184535980224609,1.2489538192749,0,-0.0001678466796875,1.24895524978638,0,-0.000216960906982422,1.24894714355469,0,-0.000208377838134766,1.24894666671753,0,-0.000208854675292969,1.24894666671753,0,-0.000216960906982422,1.24894714355469,0,-0.000208854675292969,1.24894666671753,0,-0.000216960906982422,1.24895048141479,0,-0.000200748443603516,1.24894905090332,0,-0.000200748443603516,1.24895429611206,0,-0.000216960906982422, -1.24895715713501,0,-0.000200748443603516,1.24896097183228,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.2489709854126,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.24897003173828,0,-0.000200748443603516,1.2489709854126,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.2489709854126,0,-0.000225067138671875,1.24896574020386,0,-0.000200748443603516,1.24897384643555,0,-0.000216960906982422,1.24895668029785,0,-0.000200748443603516,1.24895429611206,0,-0.000200748443603516,1.24896097183228,0,-0.000217437744140625,1.24895048141479,0,-0.000200748443603516,1.24895191192627,0,-0.000256538391113281,1.24894905090332,0,-0.000240325927734375,1.24894571304321,0,-0.000240325927734375,1.24894762039185,0,-0.000256538391113281,1.24894905090332,0,-0.000240325927734375,1.248948097229,0,-0.000256061553955078,1.24895095825195,0,-0.000240325927734375,1.24895000457764,0,-0.000240325927734375,1.24895000457764,0,-0.000256061553955078,1.2489538192749,0,-0.000240325927734375,1.24895572662354,0,-0.000256061553955078,1.24896240234375,0,-0.000240325927734375,1.24896240234375,0,-0.000257015228271484,1.24896049499512,0,-0.000240325927734375,1.24896001815796,0,-0.000240325927734375,1.24896192550659,0,-0.000257015228271484,1.24896049499512,0,-0.000240325927734375,1.24896192550659,0,-0.000256538391113281,1.24896335601807,0,-0.000240325927734375,1.24896478652954,0,-0.000256061553955078,1.2489538192749,0,-0.000240325927734375,1.24895000457764,0,-0.000240325927734375,1.24895572662354,0,-0.000257015228271484,1.248948097229,0,-0.000240325927734375,1.24894857406616,0,-0.000272274017333984,1.24895095825195,0,-0.000263690948486328,1.248948097229,0,-0.000264644622802734,1.24894905090332,0,-0.000272274017333984,1.24895095825195,0,-0.000264644622802734,1.24894905090332,0,-0.000273227691650391,1.24895286560059,0,-0.000264644622802734,1.24895095825195,0,-0.000264644622802734,1.24895286560059,0,-0.000272750854492188,1.24895477294922,0,-0.000263690948486328,1.24895477294922,0,-0.000272750854492188,1.24896144866943, -0,-0.000264644622802734,1.24896240234375,0,-0.000272750854492188,1.24896144866943,0,-0.000264644622802734,1.24896049499512,0,-0.000264644622802734,1.24896049499512,0,-0.000272750854492188,1.24896144866943,0,-0.000264644622802734,1.24896049499512,0,-0.000272750854492188,1.24896240234375,0,-0.000264644622802734,1.24896240234375,0,-0.000272750854492188,1.24895477294922,0,-0.000264644622802734,1.24895286560059,0,-0.000263690948486328,1.24895477294922,0,-0.000272750854492188,1.24895286560059,0,-0.000264644622802734,1.24895000457764,0,-0.000288486480712891,1.24895191192627,0,-0.000280857086181641,1.24895000457764,0,-0.000280857086181641,1.24895286560059,0,-0.000288486480712891,1.24895191192627,0,-0.000280857086181641,1.24895286560059,0,-0.000280857086181641,1.24895191192627,0,-0.000280857086181641,1.24895095825195,0,-0.000272750854492188,1.24895572662354,0,-0.000280857086181641,1.24895668029785,0,-0.000273227691650391,1.24895763397217,0,-0.000280857086181641,1.2489595413208,0,-0.000272274017333984,1.2489595413208,0,-0.000288486480712891,1.24895668029785,0,-0.000280857086181641,1.24895763397217,0,-0.000280857086181641,1.24895763397217,0,-0.000288486480712891,1.24895668029785,0,-0.000280857086181641,1.24895763397217,0,-0.000280857086181641,1.2489595413208,0,-0.000280857086181641,1.2489595413208,0,-0.000280857086181641,1.24895668029785,0,-0.000272750854492188,1.24895572662354,0,-0.000273227691650391,1.24895763397217,0,-0.000280857086181641,1.24895477294922,0,-0.000272750854492188,1.2489538192749,0,-0.000288963317871094,1.2489538192749,0,-0.000288963317871094,1.2489538192749,0,-0.000280857086181641,1.2489595413208,0,-0.000288486480712891,1.24895572662354,0,-0.000288963317871094,1.2489538192749,0,-0.000280857086181641,1.2489595413208,0,-0.000280857086181641,1.24895668029785,0,-0.000111579895019531,1.24893808364868,0,-0.000112056732177734,1.24894571304321,0,-0.000112056732177734,1.24893927574158,0,-0.000152111053466797,1.24893856048584,0,-0.000120639801025391,1.24897384643555,0,-0.000112056732177734,1.24895906448364,0,-0.000152587890625, -1.24898529052734,0,-0.000136375427246094,1.24898266792297,0,-0.000184535980224609,1.24897813796997,0,-0.0001678466796875,1.24898242950439,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.2489709854126,0,-0.000256061553955078,1.24896240234375,0,-0.000240325927734375,1.24896240234375,0,-0.000272750854492188,1.24896144866943,0,-0.000264644622802734,1.24896240234375,0,-0.000272274017333984,1.2489595413208,0,-0.000280857086181641,1.24895191192627,0,-0.000288486480712891,1.24895572662354,0,-0.000273227691650391,1.24895286560059,0,-0.000280857086181641,1.24895095825195,0,-0.000256061553955078,1.24895095825195,0,-0.000264644622802734,1.24895095825195,0,-0.000216960906982422,1.24895048141479,0,-0.000240325927734375,1.24895048141479,0,-0.000184535980224609,1.24894857406616,0,-0.000200748443603516,1.24894905090332,0,-0.00016021728515625,1.24895095825195,0,-0.0001678466796875,1.24895048141479,0,-0.000152587890625,1.24894952774048,0,-0.000152111053466797,1.24895191192627,0,-0.00016021728515625,1.24894285202026,0,-0.000152111053466797,1.2489447593689,0,-0.00014495849609375,1.24894046783447,0,-0.000104427337646484,1.24893760681152,0,-0.000104427337646484,1.24894618988037,0,-0.000104427337646484,1.24893951416016,0,-0.000144481658935547,1.24895238876343,0,-0.00014495849609375,1.24894666671753,0,-0.000152587890625,1.24895668029785,0,-0.00014495849609375,1.24895572662354,0,-0.000184535980224609,1.2489538192749,0,-0.0001678466796875,1.24895524978638,0,-0.000217437744140625,1.24895048141479,0,-0.000200748443603516,1.24895191192627,0,-0.000257015228271484,1.248948097229,0,-0.000240325927734375,1.24894762039185,0,-0.000272750854492188,1.24895286560059,0,-0.000264644622802734,1.24895000457764,0,-0.000280857086181641,1.24895477294922,0,-0.000272750854492188,1.2489538192749,0,-0.000280857086181641,1.24895668029785,0,-0.000272750854492188,1.24896240234375,0,-0.000280857086181641,1.2489595413208,0,-0.000256538391113281,1.24896335601807,0,-0.000264644622802734,1.24896240234375,0,-0.000225067138671875,1.24896621704102,0,-0.000240325927734375, -1.2489652633667,0,-0.000184059143066406,1.24898099899292,0,-0.000200748443603516,1.24897384643555,0,-0.000152587890625,1.24898672103882,0,-0.000168323516845703,1.24898672103882,0,-0.000120639801025391,1.24897575378418,0,-0.000136375427246094,1.24898505210876,0,-0.000112056732177734,1.24896121025085,0,-0.000184535980224609,1.24893283843994,0,-0.000184059143066406,1.24893999099731,0,-0.000184535980224609,1.24893665313721,0,-0.000123500823974609,1.24391460418701,0,-0.000123500823974609,1.24391460418701,0,-0.000144481658935547,1.24391651153564,0,-0.000173568725585938,1.24391174316406,0,-0.000144481658935547,1.24391651153564,0,-0.000122547149658203,1.24392032623291,0,-0.000122547149658203,1.24392032623291,0,-0.000151634216308594,1.2439136505127,0,-0.000151157379150391,1.24391508102417,0,-0.000166416168212891,1.24391317367554,0,-0.0001373291015625,1.24391841888428,0,-0.000123500823974609,1.24391603469849,0,-0.000123500823974609,1.24391603469849,0,-0.000130176544189453,1.24391937255859,0,-0.0001373291015625,1.24391841888428,0,-0.000130176544189453,1.24391937255859,0,-0.000166893005371094,1.24391269683838,-3.30209732055664e-05,-0.000151157379150391,1.24391317367554,0,-0.000188350677490234,1.24390268325806,3.37362289428711e-05,-0.000151157379150391,1.2439136505127,0,-0.000273704528808594,1.24393939971924,2.84910202026367e-05,-0.000260829925537109,1.24393844604492,3.89814376831055e-05,-0.000231266021728516,1.24394130706787,5.36441802978516e-05,-0.000188827514648438,1.24394512176514,5.36441802978516e-05,-0.000166893005371094,1.24394941329956,0,-0.000267982482910156,1.24390602111816,2.70605087280273e-05,-0.000252723693847656,1.24390602111816,3.94582748413086e-05,-0.000230789184570313,1.24390888214111,5.45978546142578e-05,-0.000187873840332031,1.24391317367554,5.65052032470703e-05,-0.00016021728515625,1.24391746520996,1.56164169311523e-05,-0.000260829925537109,1.24392032623291,1.56164169311523e-05,-0.000267505645751953,1.24394035339355,2.5629997253418e-05,-0.000252723693847656,1.24391841888428,1.65104866027832e-05,-0.000260353088378906, -1.24390506744385,0,-0.00026702880859375,1.24391841888428,3.27825546264648e-05,-0.000245571136474609,1.24392127990723,3.65972518920898e-05,-0.000246047973632813,1.24393939971924,3.80277633666992e-05,-0.000230789184570313,1.24392414093018,3.3259391784668e-05,-0.000238418579101563,1.24390602111816,4.55379486083984e-05,-0.000209331512451172,1.24392318725586,4.55379486083984e-05,-0.000209331512451172,1.2439432144165,5.12599945068359e-05,-0.000188350677490234,1.24392795562744,4.64916229248047e-05,-0.000209808349609375,1.24390935897827,5.41210174560547e-05,-0.000173568725585938,1.24392366409302,5.65052032470703e-05,-0.000173568725585938,1.24394798278809,5.50746917724609e-05,-0.000158786773681641,1.24392986297607,5.50746917724609e-05,-0.000173568725585938,1.2439136505127,1.13248825073242e-05,-0.000267505645751953,1.24392414093018,0,-0.000266551971435547,1.24392414093018,1.22189521789551e-05,-0.000274658203125,1.24394035339355,1.60336494445801e-05,-0.000260829925537109,1.24392414093018,8.9108943939209e-06,-0.000260353088378906,1.2439136505127,3.42130661010742e-05,-0.000253200531005859,1.24392414093018,2.75373458862305e-05,-0.000252723693847656,1.24392414093018,3.75509262084961e-05,-0.000253200531005859,1.24394035339355,3.46899032592773e-05,-0.000245571136474609,1.24392700195313,2.9444694519043e-05,-0.000246047973632813,1.24391555786133,4.45842742919922e-05,-0.000224590301513672,1.24392890930176,3.89814376831055e-05,-0.000230789184570313,1.24392795562744,4.31537628173828e-05,-0.000223636627197266,1.2439432144165,4.69684600830078e-05,-0.000209808349609375,1.24393177032471,4.17232513427734e-05,-0.000224590301513672,1.24392032623291,5.69820404052734e-05,-0.000181198120117188,1.24393558502197,5.41210174560547e-05,-0.000188350677490234,1.24393367767334,5.69820404052734e-05,-0.000187873840332031,1.24394702911377,5.79357147216797e-05,-0.000173568725585938,1.24393653869629,5.36441802978516e-05,-0.000181674957275391,1.24392318725586,2.37226486206055e-05,-0.000260829925537109,1.24392318725586,2.41994857788086e-05,-0.00026702880859375, -1.24394035339355,2.1815299987793e-05,-0.000253200531005859,1.2439136505127,2.08616256713867e-05,-0.000253200531005859,1.24391078948975,2.5629997253418e-05,-0.000253200531005859,1.24391269683838,2.22921371459961e-05,-0.000252723693847656,1.24390697479248,1.51395797729492e-05,-0.000260353088378906,1.24390888214111,8.43405723571777e-06,-0.000260829925537109,1.24390888214111,8.43405723571777e-06,-0.000260353088378906,1.24390602111816,0,-0.00026702880859375,1.2439079284668,3.85046005249023e-05,-0.000237941741943359,1.24392604827881,3.94582748413086e-05,-0.000238418579101563,1.24394226074219,3.46899032592773e-05,-0.000238418579101563,1.24391651153564,3.51667404174805e-05,-0.000231266021728516,1.24391078948975,3.85046005249023e-05,-0.000230789184570313,1.2439136505127,3.56435775756836e-05,-0.000239372253417969,1.24390888214111,3.23057174682617e-05,-0.000238895416259766,1.24391174316406,2.99215316772461e-05,-0.000246047973632813,1.24391269683838,3.08752059936523e-05,-0.000246047973632813,1.2439079284668,5.17368316650391e-05,-0.000202655792236328,1.24393177032471,5.03063201904297e-05,-0.000202178955078125,1.24394512176514,4.83989715576172e-05,-0.000202655792236328,1.24391841888428,4.83989715576172e-05,-0.000202178955078125,1.2439136505127,5.31673431396484e-05,-0.000188827514648438,1.24391746520996,5.03063201904297e-05,-0.000202178955078125,1.24391078948975,4.55379486083984e-05,-0.000209808349609375,1.2439136505127,4.17232513427734e-05,-0.000224113464355469,1.2439136505127,4.26769256591797e-05,-0.000224113464355469,1.24391078948975,5.79357147216797e-05,-0.000166416168212891,1.24393606185913,5.74588775634766e-05,-0.000166416168212891,1.24394798278809,5.50746917724609e-05,-0.000159740447998047,1.24393463134766,5.45978546142578e-05,-0.000166893005371094,1.24392604827881,5.45978546142578e-05,-0.000165939331054688,1.24391746520996,5.50746917724609e-05,-0.000159263610839844,1.24392080307007,5.55515289306641e-05,-0.000164985656738281,1.24391412734985,5.45978546142578e-05,-0.000173568725585938,1.24391841888428,5.36441802978516e-05, --0.000180721282958984,1.24391746520996,5.45978546142578e-05,-0.000181198120117188,1.2439136505127,5.0961971282959e-06,-0.00026702880859375,1.24392318725586,5.0961971282959e-06,-0.000274658203125,1.24393939971924,4.61935997009277e-06,-0.000260353088378906,1.2439079284668,5.0961971282959e-06,-0.00026702880859375,1.24390602111816,4.61935997009277e-06,-0.000267982482910156,1.2439136505127,1.18017196655273e-05,-0.000260353088378906,1.2439079284668,1.27553939819336e-05,-0.000260353088378906,1.24390602111816,1.56164169311523e-05,-0.00026702880859375,1.24392509460449,1.5556812286377e-05,-0.00026702880859375,1.24393939971924,1.26957893371582e-05,-0.000259876251220703,1.24391460418701,1.88946723937988e-05,-0.000260829925537109,1.24392604827881,1.88946723937988e-05,-0.000267505645751953,1.24393939971924,1.8000602722168e-05,-0.000260829925537109,1.24390888214111,1.94311141967773e-05,-0.000260353088378906,1.24390602111816,1.84178352355957e-05,-0.000259876251220703,1.24391651153564,2.32458114624023e-05,-0.000253200531005859,1.24391078948975,2.46763229370117e-05,-0.000252723693847656,1.2439079284668,2.70605087280273e-05,-0.000260829925537109,1.24392509460449,2.84910202026367e-05,-0.000260353088378906,1.24394035339355,2.46763229370117e-05,-0.000253200531005859,1.24391746520996,3.08752059936523e-05,-0.000252723693847656,1.24392414093018,3.3259391784668e-05,-0.000260353088378906,1.24394035339355,2.80141830444336e-05,-0.000245571136474609,1.24391078948975,2.89678573608398e-05,-0.000253677368164063,1.24390506744385,2.70605087280273e-05,-0.000253200531005859,1.24391746520996,3.13520431518555e-05,-0.000245571136474609,1.24390983581543,3.23057174682617e-05,-0.000246047973632813,1.2439079284668,3.51667404174805e-05,-0.000245571136474609,1.24392509460449,3.80277633666992e-05,-0.000253677368164063,1.24394035339355,3.18288803100586e-05,-0.000245571136474609,1.24391937255859,3.7074089050293e-05,-0.000246047973632813,1.24392700195313,3.94582748413086e-05,-0.000245571136474609,1.24394035339355,3.3259391784668e-05,-0.000238895416259766,1.24391078948975, -3.42130661010742e-05,-0.000239372253417969,1.2439079284668,3.3259391784668e-05,-0.000237941741943359,1.24391841888428,3.7074089050293e-05,-0.000231266021728516,1.24391269683838,3.75509262084961e-05,-0.000230789184570313,1.2439079284668,3.94582748413086e-05,-0.000230312347412109,1.24392890930176,3.98159027099609e-05,-0.000238895416259766,1.24394226074219,3.7074089050293e-05,-0.000230789184570313,1.24391937255859,4.17232513427734e-05,-0.000231266021728516,1.24392890930176,4.12464141845703e-05,-0.000231266021728516,1.24394416809082,4.02927398681641e-05,-0.000224113464355469,1.24391269683838,4.07695770263672e-05,-0.000223159790039063,1.2439079284668,3.93390655517578e-05,-0.000223159790039063,1.24392032623291,4.41074371337891e-05,-0.000216960906982422,1.2439136505127,4.45842742919922e-05,-0.000216484069824219,1.24390840530396,4.74452972412109e-05,-0.000216960906982422,1.24392986297607,4.55379486083984e-05,-0.000216484069824219,1.24394416809082,4.55379486083984e-05,-0.000216484069824219,1.24392127990723,4.93526458740234e-05,-0.000209331512451172,1.24393177032471,4.83989715576172e-05,-0.000209808349609375,1.24394416809082,4.74452972412109e-05,-0.000209808349609375,1.2439136505127,4.83989715576172e-05,-0.000209808349609375,1.24391031265259,4.64916229248047e-05,-0.000209331512451172,1.24392032623291,5.12599945068359e-05,-0.000195503234863281,1.24391555786133,5.22136688232422e-05,-0.000194549560546875,1.2439112663269,5.36441802978516e-05,-0.000194549560546875,1.24393177032471,5.26905059814453e-05,-0.000194549560546875,1.24394702911377,5.03063201904297e-05,-0.000194549560546875,1.24392223358154,5.0961971282959e-06,-0.000274658203125,1.24393463134766,0,-0.000274658203125,1.24393367767334,5.84125518798828e-05,-0.000166416168212891,1.24394512176514,5.50746917724609e-05,-0.000165939331054688,1.24394416809082,1.60336494445801e-05,-0.000267505645751953,1.24393463134766,1.9371509552002e-05,-0.000266551971435547,1.24393367767334,2.46763229370117e-05,-0.000267505645751953,1.24393463134766,2.84910202026367e-05,-0.000259876251220703,1.24393558502197, -1.60932540893555e-05,-0.000267505645751953,1.24393463134766,2.84910202026367e-05,-0.000260353088378906,1.24393653869629,1.22785568237305e-05,-0.000274181365966797,1.24393463134766,3.27825546264648e-05,-0.000260829925537109,1.24393653869629,3.7074089050293e-05,-0.000253200531005859,1.24393463134766,3.75509262084961e-05,-0.000252723693847656,1.24393558502197,3.65972518920898e-05,-0.000246047973632813,1.24393653869629,3.85046005249023e-05,-0.000245571136474609,1.24393653869629,3.93390655517578e-05,-0.000238895416259766,1.24393844604492,3.98159027099609e-05,-0.000238418579101563,1.24393749237061,3.89814376831055e-05,-0.000230312347412109,1.24393844604492,4.17232513427734e-05,-0.000230312347412109,1.24393939971924,4.45842742919922e-05,-0.000223159790039063,1.24393939971924,4.69684600830078e-05,-0.000216960906982422,1.24394035339355,4.60147857666016e-05,-0.000209331512451172,1.24393939971924,4.98294830322266e-05,-0.000209331512451172,1.24393939971924,5.17368316650391e-05,-0.000202655792236328,1.24394130706787,5.45978546142578e-05,-0.000195503234863281,1.24394130706787,5.36441802978516e-05,-0.000187873840332031,1.2439432144165,5.74588775634766e-05,-0.000188350677490234,1.24394416809082,5.79357147216797e-05,-0.000174045562744141,1.24394416809082,0,-0.000274658203125,1.24393939971924,2.61068344116211e-05,-0.000260353088378906,1.24393939971924,3.7074089050293e-05,-0.000230789184570313,1.24394035339355,4.83989715576172e-05,-0.000188350677490234,1.24394607543945,5.03063201904297e-05,-0.000165939331054688,1.24394941329956,0,-0.000252723693847656,1.24390316009521,0,-0.000230789184570313,1.24389743804932,1.50799751281738e-05,-0.000260829925537109,1.24392127990723,1.51395797729492e-05,-0.00026702880859375,1.24394035339355,2.41994857788086e-05,-0.000252723693847656,1.24391841888428,0,-0.000252723693847656,1.24390506744385,0,-0.000267505645751953,1.24391746520996,3.03983688354492e-05,-0.000245571136474609,1.24391937255859,3.42130661010742e-05,-0.000246047973632813,1.24394035339355,3.56435775756836e-05,-0.000230312347412109,1.24392509460449, -0,-0.000245571136474609,1.24389934539795,4.02927398681641e-05,-0.000209331512451172,1.24392414093018,4.12464141845703e-05,-0.000209808349609375,1.2439432144165,4.74452972412109e-05,-0.000188350677490234,1.24392509460449,4.79221343994141e-05,-0.000174045562744141,1.24392318725586,4.83989715576172e-05,-0.000173568725585938,1.24394798278809,4.88758087158203e-05,-0.000158786773681641,1.2439284324646,8.43405723571777e-06,-0.000267505645751953,1.24392414093018,0,-0.000267505645751953,1.24392604827881,8.9108943939209e-06,-0.000267505645751953,1.24393939971924,1.56164169311523e-05,-0.000260353088378906,1.24392509460449,7.48038291931152e-06,-0.000260353088378906,1.2439136505127,2.75373458862305e-05,-0.000245571136474609,1.24392700195313,2.51531600952148e-05,-0.000253200531005859,1.24392509460449,3.13520431518555e-05,-0.000252723693847656,1.24394226074219,3.13520431518555e-05,-0.000246524810791016,1.24392795562744,2.5629997253418e-05,-0.000246047973632813,1.24391651153564,3.46899032592773e-05,-0.000224113464355469,1.24393081665039,3.61204147338867e-05,-0.000231266021728516,1.24392700195313,3.56435775756836e-05,-0.000224113464355469,1.2439432144165,3.89814376831055e-05,-0.000209808349609375,1.24392890930176,3.65972518920898e-05,-0.000224113464355469,1.24391841888428,4.60147857666016e-05,-0.000181198120117188,1.24393653869629,4.64916229248047e-05,-0.000188350677490234,1.24393367767334,4.79221343994141e-05,-0.000181674957275391,1.24394702911377,4.60147857666016e-05,-0.000173568725585938,1.24393606185913,4.74452972412109e-05,-0.000181198120117188,1.24392318725586,1.99079513549805e-05,-0.000260353088378906,1.24392318725586,2.13384628295898e-05,-0.000260353088378906,1.24394130706787,1.8000602722168e-05,-0.000252723693847656,1.24391460418701,1.8000602722168e-05,-0.000253200531005859,1.24391269683838,2.1815299987793e-05,-0.000253200531005859,1.24390983581543,0,-0.000253677368164063,1.24390411376953,1.27553939819336e-05,-0.000260353088378906,1.24391174316406,7.48038291931152e-06,-0.000260829925537109,1.24391078948975,0,-0.000260829925537109, -1.24390697479248,0,-0.000260829925537109,1.24391174316406,3.13520431518555e-05,-0.000238895416259766,1.24392890930176,3.3259391784668e-05,-0.000238895416259766,1.2439432144165,3.08752059936523e-05,-0.000230789184570313,1.24391937255859,3.08752059936523e-05,-0.000231742858886719,1.2439136505127,3.37362289428711e-05,-0.000223636627197266,1.2439136505127,0,-0.000238418579101563,1.24389839172363,2.80141830444336e-05,-0.000238418579101563,1.24391269683838,2.5629997253418e-05,-0.000246047973632813,1.2439136505127,0,-0.000245571136474609,1.2439022064209,4.07695770263672e-05,-0.000202178955078125,1.24393367767334,4.26769256591797e-05,-0.000202178955078125,1.24394512176514,4.17232513427734e-05,-0.000195026397705078,1.24392032623291,4.22000885009766e-05,-0.000195026397705078,1.24391651153564,4.41074371337891e-05,-0.000181198120117188,1.24391841888428,3.93390655517578e-05,-0.000209808349609375,1.24391555786133,3.61204147338867e-05,-0.000224590301513672,1.24391555786133,0,-0.000216960906982422,1.24389743804932,4.74452972412109e-05,-0.000166416168212891,1.24393606185913,4.93526458740234e-05,-0.000166416168212891,1.24394845962524,4.93526458740234e-05,-0.000158786773681641,1.24393463134766,4.83989715576172e-05,-0.000166416168212891,1.24392509460449,4.50611114501953e-05,-0.000166416168212891,1.24391984939575,4.60147857666016e-05,-0.000173568725585938,1.24391937255859,4.50611114501953e-05,-0.000181198120117188,1.24391841888428,3.66568565368652e-06,-0.000267982482910156,1.24392509460449,3.66568565368652e-06,-0.00026702880859375,1.24393939971924,4.61935997009277e-06,-0.000260353088378906,1.24391078948975,4.14252281188965e-06,-0.000260353088378906,1.2439136505127,9.83476638793945e-06,-0.000260829925537109,1.24391078948975,1.31726264953613e-05,-0.000260829925537109,1.24392509460449,1.31726264953613e-05,-0.000267505645751953,1.24394035339355,1.13248825073242e-05,-0.000260353088378906,1.24391555786133,1.65700912475586e-05,-0.000260353088378906,1.24392509460449,1.70469284057617e-05,-0.000267505645751953,1.24393939971924,1.5556812286377e-05, --0.000253677368164063,1.24391078948975,1.60932540893555e-05,-0.000259876251220703,1.24391555786133,1.94311141967773e-05,-0.000253200531005859,1.24391078948975,2.32458114624023e-05,-0.000252723693847656,1.24392414093018,2.46763229370117e-05,-0.000260353088378906,1.24394130706787,2.1815299987793e-05,-0.000253200531005859,1.24391746520996,2.51531600952148e-05,-0.000252723693847656,1.24392509460449,2.84910202026367e-05,-0.000259876251220703,1.24394130706787,2.37226486206055e-05,-0.000245571136474609,1.24391078948975,2.37226486206055e-05,-0.000252723693847656,1.24391651153564,2.70605087280273e-05,-0.000245571136474609,1.24391174316406,2.9444694519043e-05,-0.000246047973632813,1.24392604827881,3.3259391784668e-05,-0.000252723693847656,1.24394130706787,2.84910202026367e-05,-0.000245571136474609,1.24391937255859,2.99215316772461e-05,-0.000238418579101563,1.24392890930176,3.27825546264648e-05,-0.000246047973632813,1.24394035339355,2.9444694519043e-05,-0.000238895416259766,1.2439136505127,2.9444694519043e-05,-0.000238895416259766,1.24391841888428,3.18288803100586e-05,-0.000231266021728516,1.24391460418701,3.37362289428711e-05,-0.000230789184570313,1.24392890930176,3.46899032592773e-05,-0.000232219696044922,1.2439432144165,3.27825546264648e-05,-0.000231742858886719,1.24392127990723,3.51667404174805e-05,-0.000223636627197266,1.24392890930176,3.61204147338867e-05,-0.000230312347412109,1.2439432144165,3.46899032592773e-05,-0.000224113464355469,1.2439136505127,3.56435775756836e-05,-0.000224113464355469,1.24392032623291,3.75509262084961e-05,-0.000216960906982422,1.2439136505127,3.75509262084961e-05,-0.000216484069824219,1.24392890930176,3.85046005249023e-05,-0.000216960906982422,1.24394512176514,3.94582748413086e-05,-0.000216484069824219,1.24392127990723,3.94582748413086e-05,-0.000202178955078125,1.24393272399902,4.12464141845703e-05,-0.000209808349609375,1.24394416809082,4.07695770263672e-05,-0.000202655792236328,1.24391651153564,4.07695770263672e-05,-0.000201702117919922,1.24392032623291,4.31537628173828e-05,-0.000187873840332031, -1.24391651153564,4.45842742919922e-05,-0.000194549560546875,1.24393272399902,4.55379486083984e-05,-0.000195026397705078,1.24394607543945,4.45842742919922e-05,-0.000187397003173828,1.24392223358154,3.1888484954834e-06,-0.000267505645751953,1.24393367767334,0,-0.000266551971435547,1.24393463134766,4.69684600830078e-05,-0.000165939331054688,1.24394607543945,4.98294830322266e-05,-0.000159263610839844,1.24394464492798,1.51395797729492e-05,-0.000267505645751953,1.24393367767334,1.65700912475586e-05,-0.000260829925537109,1.24393558502197,2.08616256713867e-05,-0.000260829925537109,1.24393367767334,2.41994857788086e-05,-0.000260829925537109,1.24393558502197,1.36494636535645e-05,-0.000268459320068359,1.24393558502197,2.61068344116211e-05,-0.000259876251220703,1.24393653869629,8.9108943939209e-06,-0.000267505645751953,1.24393558502197,2.61068344116211e-05,-0.000252723693847656,1.24393653869629,2.89678573608398e-05,-0.000253200531005859,1.24393463134766,3.13520431518555e-05,-0.000246047973632813,1.24393558502197,3.27825546264648e-05,-0.000245571136474609,1.24393558502197,3.08752059936523e-05,-0.000245571136474609,1.24393653869629,3.18288803100586e-05,-0.000237941741943359,1.24393939971924,3.37362289428711e-05,-0.000230312347412109,1.24393749237061,3.7074089050293e-05,-0.000231266021728516,1.24393844604492,3.56435775756836e-05,-0.000231266021728516,1.24393939971924,3.46899032592773e-05,-0.000224113464355469,1.24394130706787,3.7074089050293e-05,-0.000216960906982422,1.24394035339355,4.02927398681641e-05,-0.000209331512451172,1.24394035339355,3.98159027099609e-05,-0.000209808349609375,1.24394035339355,4.07695770263672e-05,-0.000202655792236328,1.24394035339355,4.41074371337891e-05,-0.000195503234863281,1.24394226074219,4.64916229248047e-05,-0.000187873840332031,1.24394226074219,4.60147857666016e-05,-0.000181198120117188,1.2439432144165,4.64916229248047e-05,-0.000173568725585938,1.24394416809082,4.61935997009277e-06,-0.000274658203125,1.24393939971924,0,-0.000274181365966797,1.24393939971924,1.03116035461426e-05,-0.000274658203125, -1.24394130706787,1.41263008117676e-05,-0.00026702880859375,1.24394035339355,1.56164169311523e-05,-0.000266551971435547,1.24393939971924,1.8000602722168e-05,-0.00026702880859375,1.24394130706787,2.32458114624023e-05,-0.000268459320068359,1.24394035339355,2.65836715698242e-05,-0.000260353088378906,1.24394130706787,2.75373458862305e-05,-0.000260353088378906,1.24394130706787,3.08752059936523e-05,-0.000260353088378906,1.24394035339355,3.46899032592773e-05,-0.000253200531005859,1.24394130706787,3.65972518920898e-05,-0.000252723693847656,1.24394130706787,3.56435775756836e-05,-0.000246047973632813,1.24394130706787,3.61204147338867e-05,-0.000245571136474609,1.24394130706787,3.61204147338867e-05,-0.000238418579101563,1.2439432144165,3.75509262084961e-05,-0.000237464904785156,1.24394416809082,3.80277633666992e-05,-0.000230789184570313,1.24394226074219,3.89814376831055e-05,-0.000231266021728516,1.24394416809082,3.93390655517578e-05,-0.000224590301513672,1.24394226074219,4.17232513427734e-05,-0.000216484069824219,1.24394416809082,4.31537628173828e-05,-0.000209808349609375,1.24394416809082,4.50611114501953e-05,-0.000209331512451172,1.24394512176514,4.64916229248047e-05,-0.000202178955078125,1.24394512176514,4.93526458740234e-05,-0.000194549560546875,1.24394607543945,5.12599945068359e-05,-0.000188350677490234,1.24394607543945,5.17368316650391e-05,-0.000180721282958984,1.24394798278809,5.22136688232422e-05,-0.000173568725585938,1.24394702911377,5.31673431396484e-05,-0.000166416168212891,1.24394941329956,5.22136688232422e-05,-0.000166416168212891,1.24395036697388,5.0961971282959e-06,-0.000267982482910156,1.24391269683838,0,-0.000267982482910156,1.24391651153564,2.5629997253418e-05,-0.000253200531005859,1.24391651153564,2.46763229370117e-05,-0.000253677368164063,1.2439136505127,2.1815299987793e-05,-0.000253200531005859,1.24391269683838,1.84774398803711e-05,-0.000260829925537109,1.24391460418701,2.75373458862305e-05,-0.000253677368164063,1.24391651153564,1.50799751281738e-05,-0.000259876251220703,1.24391651153564,2.99215316772461e-05, --0.000246047973632813,1.24391555786133,1.22785568237305e-05,-0.000260353088378906,1.24391460418701,3.18288803100586e-05,-0.000245571136474609,1.24391651153564,8.43405723571777e-06,-0.000260829925537109,1.24391174316406,3.27825546264648e-05,-0.000237941741943359,1.24392032623291,3.27825546264648e-05,-0.000238418579101563,1.24391651153564,3.46899032592773e-05,-0.000238418579101563,1.24391269683838,3.65972518920898e-05,-0.000230789184570313,1.24391841888428,3.80277633666992e-05,-0.000231266021728516,1.24392223358154,3.93390655517578e-05,-0.000223636627197266,1.24391841888428,4.22000885009766e-05,-0.000224590301513672,1.24391937255859,4.50611114501953e-05,-0.000217437744140625,1.24391937255859,4.55379486083984e-05,-0.000209331512451172,1.24392223358154,4.69684600830078e-05,-0.000209331512451172,1.24391937255859,4.88758087158203e-05,-0.000201702117919922,1.24391651153564,5.03063201904297e-05,-0.000194549560546875,1.24392127990723,5.22136688232422e-05,-0.000187873840332031,1.24392509460449,5.41210174560547e-05,-0.000181198120117188,1.24392127990723,5.45978546142578e-05,-0.000173568725585938,1.24392127990723,5.45978546142578e-05,-0.000166416168212891,1.24392414093018,5.50746917724609e-05,-0.000158786773681641,1.24392700195313,4.88758087158203e-05,-0.000159740447998047,1.24392700195313,4.79221343994141e-05,-0.000166416168212891,1.24392366409302,4.61935997009277e-06,-0.000267505645751953,1.24391746520996,0,-0.000267505645751953,1.24392032623291,4.14252281188965e-06,-0.000260353088378906,1.24391841888428,0,-0.00026702880859375,1.24391937255859,9.89437103271484e-06,-0.000260353088378906,1.24391651153564,1.37090682983398e-05,-0.000260353088378906,1.24391746520996,1.60336494445801e-05,-0.000260353088378906,1.24392127990723,1.88946723937988e-05,-0.000260829925537109,1.24391651153564,2.27689743041992e-05,-0.000253200531005859,1.24391651153564,2.5629997253418e-05,-0.000252723693847656,1.24391841888428,2.61068344116211e-05,-0.000253200531005859,1.24392032623291,2.80141830444336e-05,-0.000253200531005859,1.24391937255859,3.08752059936523e-05, --0.000246047973632813,1.24391841888428,3.3259391784668e-05,-0.000246047973632813,1.24392127990723,3.37362289428711e-05,-0.000245571136474609,1.24392414093018,3.42130661010742e-05,-0.000238895416259766,1.24392127990723,3.56435775756836e-05,-0.000238895416259766,1.24391841888428,3.7074089050293e-05,-0.000230789184570313,1.24392127990723,3.80277633666992e-05,-0.000230312347412109,1.24392414093018,4.02927398681641e-05,-0.000223636627197266,1.24392414093018,4.26769256591797e-05,-0.000224590301513672,1.24392127990723,4.64916229248047e-05,-0.000216960906982422,1.24392414093018,4.60147857666016e-05,-0.000209808349609375,1.24392509460449,4.74452972412109e-05,-0.000209331512451172,1.24392223358154,4.93526458740234e-05,-0.000202655792236328,1.24392127990723,5.22136688232422e-05,-0.000195026397705078,1.24392509460449,5.22136688232422e-05,-0.000188350677490234,1.24392890930176,5.50746917724609e-05,-0.000181198120117188,1.24392700195313,5.65052032470703e-05,-0.000173568725585938,1.24392604827881,5.65052032470703e-05,-0.000166893005371094,1.24392795562744,5.50746917724609e-05,-0.000159740447998047,1.24393081665039,4.93526458740234e-05,-0.000159263610839844,1.24392986297607,4.79221343994141e-05,-0.000165462493896484,1.24392795562744,4.64916229248047e-05,-0.000173568725585938,1.24392652511597,4.60147857666016e-05,-0.000181198120117188,1.24392700195313,4.69684600830078e-05,-0.000188827514648438,1.24392700195313,4.41074371337891e-05,-0.000188350677490234,1.24392414093018,4.07695770263672e-05,-0.000195503234863281,1.24392318725586,3.93390655517578e-05,-0.000202178955078125,1.24392414093018,3.93390655517578e-05,-0.000209331512451172,1.24392604827881,3.85046005249023e-05,-0.000216960906982422,1.24392414093018,3.51667404174805e-05,-0.000224590301513672,1.24392318725586,3.56435775756836e-05,-0.000223159790039063,1.24392318725586,3.56435775756836e-05,-0.000230312347412109,1.24392604827881,3.27825546264648e-05,-0.000231266021728516,1.24392318725586,3.08752059936523e-05,-0.000231742858886719,1.24392127990723,2.99215316772461e-05,-0.000237464904785156, -1.24392127990723,3.08752059936523e-05,-0.000246047973632813,1.24392318725586,2.84910202026367e-05,-0.000245571136474609,1.24392032623291,2.5629997253418e-05,-0.000246047973632813,1.24391937255859,2.37226486206055e-05,-0.000253677368164063,1.24391937255859,2.41994857788086e-05,-0.000253200531005859,1.24392127990723,2.1815299987793e-05,-0.000253677368164063,1.24391841888428,1.84774398803711e-05,-0.000253200531005859,1.24391841888428,1.60932540893555e-05,-0.000259876251220703,1.24391841888428,1.50799751281738e-05,-0.000260829925537109,1.24392127990723,1.18017196655273e-05,-0.000260829925537109,1.24391841888428,7.48038291931152e-06,-0.000260829925537109,1.24391651153564,4.07695770263672e-05,-0.000166416168212891,1.24391746520996,3.23057174682617e-05,-0.000166416168212891,1.24391078948975,3.7074089050293e-05,-0.000195026397705078,1.24390935897827,3.46899032592773e-05,-0.000209808349609375,1.24390888214111,3.3259391784668e-05,-0.000216960906982422,1.24390888214111,2.9444694519043e-05,-0.000230789184570313,1.2439079284668,2.80141830444336e-05,-0.000231266021728516,1.2439079284668,2.41994857788086e-05,-0.000237941741943359,1.2439079284668,2.1815299987793e-05,-0.000245571136474609,1.2439079284668,1.79409980773926e-05,-0.000252723693847656,1.24390888214111,1.4185905456543e-05,-0.000253200531005859,1.24390983581543,8.9108943939209e-06,-0.000253677368164063,1.2439079284668,5.57303428649902e-06,-0.000260353088378906,1.2439079284668,-2.7775764465332e-05,-0.000260829925537109,1.24393844604492,-3.82661819458008e-05,-0.000231266021728516,1.24394130706787,-5.26905059814453e-05,-0.000188827514648438,1.24394512176514,-5.36441802978516e-05,-0.000166893005371094,1.24394941329956,-2.63452529907227e-05,-0.000252723693847656,1.24390602111816,-3.87430191040039e-05,-0.000230789184570313,1.24390888214111,-5.41210174560547e-05,-0.000187873840332031,1.24391317367554,-5.55515289306641e-05,-0.00016021728515625,1.24391746520996,-1.49011611938477e-05,-0.000260829925537109,1.24392032623291,-1.53779983520508e-05,-0.000267505645751953,1.24394035339355, --2.53915786743164e-05,-0.000252723693847656,1.24391841888428,-1.59144401550293e-05,-0.000260353088378906,1.24390506744385,-3.20672988891602e-05,-0.000245571136474609,1.24392127990723,-3.63588333129883e-05,-0.000246047973632813,1.24393939971924,-3.73125076293945e-05,-0.000230789184570313,1.24392414093018,-3.25441360473633e-05,-0.000238418579101563,1.24390602111816,-4.55379486083984e-05,-0.000209331512451172,1.24392318725586,-4.45842742919922e-05,-0.000209331512451172,1.2439432144165,-5.17368316650391e-05,-0.000188350677490234,1.24392795562744,-4.64916229248047e-05,-0.000209808349609375,1.24390935897827,-5.45978546142578e-05,-0.000173568725585938,1.24392366409302,-5.65052032470703e-05,-0.000173568725585938,1.24394798278809,-5.41210174560547e-05,-0.000158786773681641,1.24392986297607,-5.55515289306641e-05,-0.000173568725585938,1.2439136505127,-1.10864639282227e-05,-0.000267505645751953,1.24392414093018,-1.16229057312012e-05,-0.000274658203125,1.24394035339355,-1.53779983520508e-05,-0.000260829925537109,1.24392414093018,-8.2552433013916e-06,-0.000260353088378906,1.2439136505127,-3.34978103637695e-05,-0.000253200531005859,1.24392414093018,-2.68220901489258e-05,-0.000252723693847656,1.24392414093018,-3.68356704711914e-05,-0.000253200531005859,1.24394035339355,-3.39746475219727e-05,-0.000245571136474609,1.24392700195313,-2.92062759399414e-05,-0.000246047973632813,1.24391555786133,-4.41074371337891e-05,-0.000224590301513672,1.24392890930176,-3.82661819458008e-05,-0.000230789184570313,1.24392795562744,-4.31537628173828e-05,-0.000223636627197266,1.2439432144165,-4.64916229248047e-05,-0.000209808349609375,1.24393177032471,-4.22000885009766e-05,-0.000224590301513672,1.24392032623291,-5.69820404052734e-05,-0.000181198120117188,1.24393558502197,-5.36441802978516e-05,-0.000188350677490234,1.24393367767334,-5.60283660888672e-05,-0.000187873840332031,1.24394702911377,-5.74588775634766e-05,-0.000173568725585938,1.24393653869629,-5.31673431396484e-05,-0.000181674957275391,1.24392318725586,-2.30073928833008e-05,-0.000260829925537109, -1.24392318725586,-2.34842300415039e-05,-0.00026702880859375,1.24394035339355,-2.11000442504883e-05,-0.000253200531005859,1.2439136505127,-2.0146369934082e-05,-0.000253200531005859,1.24391078948975,-2.49147415161133e-05,-0.000253200531005859,1.24391269683838,-2.15768814086914e-05,-0.000252723693847656,1.24390697479248,-1.4960765838623e-05,-0.000260353088378906,1.24390888214111,-7.77840614318848e-06,-0.000260829925537109,1.24390888214111,-8.2552433013916e-06,-0.000260353088378906,1.24390602111816,-3.73125076293945e-05,-0.000237941741943359,1.24392604827881,-3.87430191040039e-05,-0.000238418579101563,1.24394226074219,-3.44514846801758e-05,-0.000238418579101563,1.24391651153564,-3.39746475219727e-05,-0.000231266021728516,1.24391078948975,-3.77893447875977e-05,-0.000230789184570313,1.2439136505127,-3.49283218383789e-05,-0.000239372253417969,1.24390888214111,-3.1590461730957e-05,-0.000238895416259766,1.24391174316406,-2.87294387817383e-05,-0.000246047973632813,1.24391269683838,-3.06367874145508e-05,-0.000246047973632813,1.2439079284668,-5.12599945068359e-05,-0.000202655792236328,1.24393177032471,-4.98294830322266e-05,-0.000202178955078125,1.24394512176514,-4.79221343994141e-05,-0.000202655792236328,1.24391841888428,-4.88758087158203e-05,-0.000202178955078125,1.2439136505127,-5.22136688232422e-05,-0.000188827514648438,1.24391746520996,-4.93526458740234e-05,-0.000202178955078125,1.24391078948975,-4.50611114501953e-05,-0.000209808349609375,1.2439136505127,-4.12464141845703e-05,-0.000224113464355469,1.2439136505127,-4.22000885009766e-05,-0.000224113464355469,1.24391078948975,-5.79357147216797e-05,-0.000166416168212891,1.24393606185913,-5.74588775634766e-05,-0.000166416168212891,1.24394798278809,-5.55515289306641e-05,-0.000159740447998047,1.24393463134766,-5.45978546142578e-05,-0.000166893005371094,1.24392604827881,-5.50746917724609e-05,-0.000165939331054688,1.24391746520996,-5.45978546142578e-05,-0.000159263610839844,1.24392080307007,-5.55515289306641e-05,-0.000164985656738281,1.24391412734985,-5.45978546142578e-05,-0.000173568725585938, -1.24391841888428,-5.41210174560547e-05,-0.000180721282958984,1.24391746520996,-5.50746917724609e-05,-0.000181198120117188,1.2439136505127,-4.4405460357666e-06,-0.00026702880859375,1.24392318725586,-4.4405460357666e-06,-0.000274658203125,1.24393939971924,-4.4405460357666e-06,-0.000260353088378906,1.2439079284668,-4.4405460357666e-06,-0.00026702880859375,1.24390602111816,-4.4405460357666e-06,-0.000267982482910156,1.2439136505127,-1.15633010864258e-05,-0.000260353088378906,1.2439079284668,-1.20997428894043e-05,-0.000260353088378906,1.24390602111816,-1.49011611938477e-05,-0.00026702880859375,1.24392509460449,-1.4960765838623e-05,-0.00026702880859375,1.24393939971924,-1.20997428894043e-05,-0.000259876251220703,1.24391460418701,-1.8775463104248e-05,-0.000260829925537109,1.24392604827881,-1.87158584594727e-05,-0.000267505645751953,1.24393939971924,-1.78217887878418e-05,-0.000260829925537109,1.24390888214111,-1.87158584594727e-05,-0.000260353088378906,1.24390602111816,-1.77621841430664e-05,-0.000259876251220703,1.24391651153564,-2.25305557250977e-05,-0.000253200531005859,1.24391078948975,-2.3961067199707e-05,-0.000252723693847656,1.2439079284668,-2.68220901489258e-05,-0.000260829925537109,1.24392509460449,-2.72989273071289e-05,-0.000260353088378906,1.24394035339355,-2.3961067199707e-05,-0.000253200531005859,1.24391746520996,-2.96831130981445e-05,-0.000252723693847656,1.24392414093018,-3.25441360473633e-05,-0.000260353088378906,1.24394035339355,-2.72989273071289e-05,-0.000245571136474609,1.24391078948975,-2.82526016235352e-05,-0.000253677368164063,1.24390506744385,-2.63452529907227e-05,-0.000253200531005859,1.24391746520996,-3.06367874145508e-05,-0.000245571136474609,1.24390983581543,-3.1590461730957e-05,-0.000246047973632813,1.2439079284668,-3.44514846801758e-05,-0.000245571136474609,1.24392509460449,-3.73125076293945e-05,-0.000253677368164063,1.24394035339355,-3.1590461730957e-05,-0.000245571136474609,1.24391937255859,-3.63588333129883e-05,-0.000246047973632813,1.24392700195313,-3.82661819458008e-05,-0.000245571136474609, -1.24394035339355,-3.25441360473633e-05,-0.000238895416259766,1.24391078948975,-3.34978103637695e-05,-0.000239372253417969,1.2439079284668,-3.20672988891602e-05,-0.000237941741943359,1.24391841888428,-3.58819961547852e-05,-0.000231266021728516,1.24391269683838,-3.68356704711914e-05,-0.000230789184570313,1.2439079284668,-3.87430191040039e-05,-0.000230312347412109,1.24392890930176,-3.87430191040039e-05,-0.000238895416259766,1.24394226074219,-3.63588333129883e-05,-0.000230789184570313,1.24391937255859,-4.12464141845703e-05,-0.000231266021728516,1.24392890930176,-4.07695770263672e-05,-0.000231266021728516,1.24394416809082,-3.91006469726563e-05,-0.000224113464355469,1.24391269683838,-4.07695770263672e-05,-0.000223159790039063,1.2439079284668,-3.87430191040039e-05,-0.000223159790039063,1.24392032623291,-4.31537628173828e-05,-0.000216960906982422,1.2439136505127,-4.45842742919922e-05,-0.000216484069824219,1.24390840530396,-4.69684600830078e-05,-0.000216960906982422,1.24392986297607,-4.55379486083984e-05,-0.000216484069824219,1.24394416809082,-4.50611114501953e-05,-0.000216484069824219,1.24392127990723,-4.93526458740234e-05,-0.000209331512451172,1.24393177032471,-4.79221343994141e-05,-0.000209808349609375,1.24394416809082,-4.69684600830078e-05,-0.000209808349609375,1.2439136505127,-4.79221343994141e-05,-0.000209808349609375,1.24391031265259,-4.60147857666016e-05,-0.000209331512451172,1.24392032623291,-5.03063201904297e-05,-0.000195503234863281,1.24391555786133,-5.12599945068359e-05,-0.000194549560546875,1.2439112663269,-5.41210174560547e-05,-0.000194549560546875,1.24393177032471,-5.26905059814453e-05,-0.000194549560546875,1.24394702911377,-5.03063201904297e-05,-0.000194549560546875,1.24392223358154,-4.4405460357666e-06,-0.000274658203125,1.24393463134766,-5.79357147216797e-05,-0.000166416168212891,1.24394512176514,-5.45978546142578e-05,-0.000165939331054688,1.24394416809082,-1.53779983520508e-05,-0.000267505645751953,1.24393463134766,-1.87158584594727e-05,-0.000266551971435547,1.24393367767334,-2.3961067199707e-05,-0.000267505645751953, -1.24393463134766,-2.7775764465332e-05,-0.000259876251220703,1.24393558502197,-1.58548355102539e-05,-0.000267505645751953,1.24393463134766,-2.82526016235352e-05,-0.000260353088378906,1.24393653869629,-1.20401382446289e-05,-0.000274181365966797,1.24393463134766,-3.20672988891602e-05,-0.000260829925537109,1.24393653869629,-3.63588333129883e-05,-0.000253200531005859,1.24393463134766,-3.73125076293945e-05,-0.000252723693847656,1.24393558502197,-3.58819961547852e-05,-0.000246047973632813,1.24393653869629,-3.82661819458008e-05,-0.000245571136474609,1.24393653869629,-3.9219856262207e-05,-0.000238895416259766,1.24393844604492,-3.93390655517578e-05,-0.000238418579101563,1.24393749237061,-3.9219856262207e-05,-0.000230312347412109,1.24393844604492,-4.12464141845703e-05,-0.000230312347412109,1.24393939971924,-4.45842742919922e-05,-0.000223159790039063,1.24393939971924,-4.60147857666016e-05,-0.000216960906982422,1.24394035339355,-4.55379486083984e-05,-0.000209331512451172,1.24393939971924,-4.88758087158203e-05,-0.000209331512451172,1.24393939971924,-5.12599945068359e-05,-0.000202655792236328,1.24394130706787,-5.41210174560547e-05,-0.000195503234863281,1.24394130706787,-5.36441802978516e-05,-0.000187873840332031,1.2439432144165,-5.74588775634766e-05,-0.000188350677490234,1.24394416809082,-5.69820404052734e-05,-0.000174045562744141,1.24394416809082,-2.58684158325195e-05,-0.000260353088378906,1.24393939971924,-3.63588333129883e-05,-0.000230789184570313,1.24394035339355,-4.79221343994141e-05,-0.000188350677490234,1.24394607543945,-5.07831573486328e-05,-0.000165939331054688,1.24394941329956,-1.44839286804199e-05,-0.000260829925537109,1.24392127990723,-1.44243240356445e-05,-0.00026702880859375,1.24394035339355,-2.34842300415039e-05,-0.000252723693847656,1.24391841888428,-2.96831130981445e-05,-0.000245571136474609,1.24391937255859,-3.34978103637695e-05,-0.000246047973632813,1.24394035339355,-3.5405158996582e-05,-0.000230312347412109,1.24392509460449,-3.93390655517578e-05,-0.000209331512451172,1.24392414093018,-4.07695770263672e-05,-0.000209808349609375, -1.2439432144165,-4.64916229248047e-05,-0.000188350677490234,1.24392509460449,-4.79221343994141e-05,-0.000174045562744141,1.24392318725586,-4.83989715576172e-05,-0.000173568725585938,1.24394798278809,-4.88758087158203e-05,-0.000158786773681641,1.2439284324646,-7.77840614318848e-06,-0.000267505645751953,1.24392414093018,-8.73208045959473e-06,-0.000267505645751953,1.24393939971924,-1.4960765838623e-05,-0.000260353088378906,1.24392509460449,-7.30156898498535e-06,-0.000260353088378906,1.2439136505127,-2.68220901489258e-05,-0.000245571136474609,1.24392700195313,-2.44379043579102e-05,-0.000253200531005859,1.24392509460449,-3.11136245727539e-05,-0.000252723693847656,1.24394226074219,-3.06367874145508e-05,-0.000246524810791016,1.24392795562744,-2.49147415161133e-05,-0.000246047973632813,1.24391651153564,-3.39746475219727e-05,-0.000224113464355469,1.24393081665039,-3.5405158996582e-05,-0.000231266021728516,1.24392700195313,-3.5405158996582e-05,-0.000224113464355469,1.2439432144165,-3.87430191040039e-05,-0.000209808349609375,1.24392890930176,-3.58819961547852e-05,-0.000224113464355469,1.24391841888428,-4.55379486083984e-05,-0.000181198120117188,1.24393653869629,-4.64916229248047e-05,-0.000188350677490234,1.24393367767334,-4.69684600830078e-05,-0.000181674957275391,1.24394702911377,-4.60147857666016e-05,-0.000173568725585938,1.24393606185913,-4.69684600830078e-05,-0.000181198120117188,1.24392318725586,-1.92523002624512e-05,-0.000260353088378906,1.24392318725586,-2.06232070922852e-05,-0.000260353088378906,1.24394130706787,-1.77621841430664e-05,-0.000252723693847656,1.24391460418701,-1.73449516296387e-05,-0.000253200531005859,1.24391269683838,-2.11000442504883e-05,-0.000253200531005859,1.24390983581543,-1.20401382446289e-05,-0.000260353088378906,1.24391174316406,-6.82473182678223e-06,-0.000260829925537109,1.24391078948975,-3.11136245727539e-05,-0.000238895416259766,1.24392890930176,-3.25441360473633e-05,-0.000238895416259766,1.2439432144165,-3.01599502563477e-05,-0.000230789184570313,1.24391937255859,-3.01599502563477e-05,-0.000231742858886719, -1.2439136505127,-3.25441360473633e-05,-0.000223636627197266,1.2439136505127,-2.7775764465332e-05,-0.000238418579101563,1.24391269683838,-2.49147415161133e-05,-0.000246047973632813,1.2439136505127,-4.07695770263672e-05,-0.000202178955078125,1.24393367767334,-4.31537628173828e-05,-0.000202178955078125,1.24394512176514,-4.17232513427734e-05,-0.000195026397705078,1.24392032623291,-4.22000885009766e-05,-0.000195026397705078,1.24391651153564,-4.36305999755859e-05,-0.000181198120117188,1.24391841888428,-3.9219856262207e-05,-0.000209808349609375,1.24391555786133,-3.5405158996582e-05,-0.000224590301513672,1.24391555786133,-4.69684600830078e-05,-0.000166416168212891,1.24393606185913,-4.83989715576172e-05,-0.000166416168212891,1.24394845962524,-4.83989715576172e-05,-0.000158786773681641,1.24393463134766,-4.83989715576172e-05,-0.000166416168212891,1.24392509460449,-4.50611114501953e-05,-0.000166416168212891,1.24391984939575,-4.55379486083984e-05,-0.000173568725585938,1.24391937255859,-4.45842742919922e-05,-0.000181198120117188,1.24391841888428,-3.01003456115723e-06,-0.000267982482910156,1.24392509460449,-3.48687171936035e-06,-0.00026702880859375,1.24393939971924,-3.96370887756348e-06,-0.000260353088378906,1.24391078948975,-3.96370887756348e-06,-0.000260353088378906,1.2439136505127,-9.20891761779785e-06,-0.000260829925537109,1.24391078948975,-1.25765800476074e-05,-0.000260829925537109,1.24392509460449,-1.30534172058105e-05,-0.000267505645751953,1.24394035339355,-1.06096267700195e-05,-0.000260353088378906,1.24391555786133,-1.59144401550293e-05,-0.000260353088378906,1.24392509460449,-1.63912773132324e-05,-0.000267505645751953,1.24393939971924,-1.49011611938477e-05,-0.000253677368164063,1.24391078948975,-1.58548355102539e-05,-0.000259876251220703,1.24391555786133,-1.87158584594727e-05,-0.000253200531005859,1.24391078948975,-2.25305557250977e-05,-0.000252723693847656,1.24392414093018,-2.44379043579102e-05,-0.000260353088378906,1.24394130706787,-2.11000442504883e-05,-0.000253200531005859,1.24391746520996,-2.44379043579102e-05,-0.000252723693847656, -1.24392509460449,-2.72989273071289e-05,-0.000259876251220703,1.24394130706787,-2.30073928833008e-05,-0.000245571136474609,1.24391078948975,-2.30073928833008e-05,-0.000252723693847656,1.24391651153564,-2.63452529907227e-05,-0.000245571136474609,1.24391174316406,-2.92062759399414e-05,-0.000246047973632813,1.24392604827881,-3.25441360473633e-05,-0.000252723693847656,1.24394130706787,-2.7775764465332e-05,-0.000245571136474609,1.24391937255859,-2.96831130981445e-05,-0.000238418579101563,1.24392890930176,-3.20672988891602e-05,-0.000246047973632813,1.24394035339355,-2.92062759399414e-05,-0.000238895416259766,1.2439136505127,-2.92062759399414e-05,-0.000238895416259766,1.24391841888428,-3.11136245727539e-05,-0.000231266021728516,1.24391460418701,-3.30209732055664e-05,-0.000230789184570313,1.24392890930176,-3.44514846801758e-05,-0.000232219696044922,1.2439432144165,-3.20672988891602e-05,-0.000231742858886719,1.24392127990723,-3.44514846801758e-05,-0.000223636627197266,1.24392890930176,-3.5405158996582e-05,-0.000230312347412109,1.2439432144165,-3.44514846801758e-05,-0.000224113464355469,1.2439136505127,-3.49283218383789e-05,-0.000224113464355469,1.24392032623291,-3.68356704711914e-05,-0.000216960906982422,1.2439136505127,-3.68356704711914e-05,-0.000216484069824219,1.24392890930176,-3.77893447875977e-05,-0.000216960906982422,1.24394512176514,-3.87430191040039e-05,-0.000216484069824219,1.24392127990723,-3.87430191040039e-05,-0.000202178955078125,1.24393272399902,-4.07695770263672e-05,-0.000209808349609375,1.24394416809082,-4.07695770263672e-05,-0.000202655792236328,1.24391651153564,-4.02927398681641e-05,-0.000201702117919922,1.24392032623291,-4.26769256591797e-05,-0.000187873840332031,1.24391651153564,-4.36305999755859e-05,-0.000194549560546875,1.24393272399902,-4.50611114501953e-05,-0.000195026397705078,1.24394607543945,-4.41074371337891e-05,-0.000187397003173828,1.24392223358154,-3.01003456115723e-06,-0.000267505645751953,1.24393367767334,-4.69684600830078e-05,-0.000165939331054688,1.24394607543945,-4.93526458740234e-05,-0.000159263610839844, -1.24394464492798,-1.4960765838623e-05,-0.000267505645751953,1.24393367767334,-1.59144401550293e-05,-0.000260829925537109,1.24393558502197,-2.0146369934082e-05,-0.000260829925537109,1.24393367767334,-2.34842300415039e-05,-0.000260829925537109,1.24393558502197,-1.30534172058105e-05,-0.000268459320068359,1.24393558502197,-2.53915786743164e-05,-0.000259876251220703,1.24393653869629,-8.2552433013916e-06,-0.000267505645751953,1.24393558502197,-2.53915786743164e-05,-0.000252723693847656,1.24393653869629,-2.87294387817383e-05,-0.000253200531005859,1.24393463134766,-3.06367874145508e-05,-0.000246047973632813,1.24393558502197,-3.20672988891602e-05,-0.000245571136474609,1.24393558502197,-3.01599502563477e-05,-0.000245571136474609,1.24393653869629,-3.11136245727539e-05,-0.000237941741943359,1.24393939971924,-3.30209732055664e-05,-0.000230312347412109,1.24393749237061,-3.63588333129883e-05,-0.000231266021728516,1.24393844604492,-3.44514846801758e-05,-0.000231266021728516,1.24393939971924,-3.39746475219727e-05,-0.000224113464355469,1.24394130706787,-3.68356704711914e-05,-0.000216960906982422,1.24394035339355,-3.93390655517578e-05,-0.000209331512451172,1.24394035339355,-3.9219856262207e-05,-0.000209808349609375,1.24394035339355,-4.07695770263672e-05,-0.000202655792236328,1.24394035339355,-4.36305999755859e-05,-0.000195503234863281,1.24394226074219,-4.64916229248047e-05,-0.000187873840332031,1.24394226074219,-4.55379486083984e-05,-0.000181198120117188,1.2439432144165,-4.60147857666016e-05,-0.000173568725585938,1.24394416809082,-3.96370887756348e-06,-0.000274658203125,1.24393939971924,-9.68575477600098e-06,-0.000274658203125,1.24394130706787,-1.39474868774414e-05,-0.00026702880859375,1.24394035339355,-1.4960765838623e-05,-0.000266551971435547,1.24393939971924,-1.73449516296387e-05,-0.00026702880859375,1.24394130706787,-2.25305557250977e-05,-0.000268459320068359,1.24394035339355,-2.58684158325195e-05,-0.000260353088378906,1.24394130706787,-2.68220901489258e-05,-0.000260353088378906,1.24394130706787,-3.01599502563477e-05,-0.000260353088378906, -1.24394035339355,-3.44514846801758e-05,-0.000253200531005859,1.24394130706787,-3.5405158996582e-05,-0.000252723693847656,1.24394130706787,-3.49283218383789e-05,-0.000246047973632813,1.24394130706787,-3.5405158996582e-05,-0.000245571136474609,1.24394130706787,-3.58819961547852e-05,-0.000238418579101563,1.2439432144165,-3.68356704711914e-05,-0.000237464904785156,1.24394416809082,-3.73125076293945e-05,-0.000230789184570313,1.24394226074219,-3.82661819458008e-05,-0.000231266021728516,1.24394416809082,-3.9219856262207e-05,-0.000224590301513672,1.24394226074219,-4.17232513427734e-05,-0.000216484069824219,1.24394416809082,-4.26769256591797e-05,-0.000209808349609375,1.24394416809082,-4.41074371337891e-05,-0.000209331512451172,1.24394512176514,-4.64916229248047e-05,-0.000202178955078125,1.24394512176514,-4.93526458740234e-05,-0.000194549560546875,1.24394607543945,-5.03063201904297e-05,-0.000188350677490234,1.24394607543945,-5.17368316650391e-05,-0.000180721282958984,1.24394798278809,-5.22136688232422e-05,-0.000173568725585938,1.24394702911377,-5.31673431396484e-05,-0.000166416168212891,1.24394941329956,-5.22136688232422e-05,-0.000166416168212891,1.24395036697388,-4.4405460357666e-06,-0.000267982482910156,1.24391269683838,-2.49147415161133e-05,-0.000253200531005859,1.24391651153564,-2.34842300415039e-05,-0.000253677368164063,1.2439136505127,-2.11000442504883e-05,-0.000253200531005859,1.24391269683838,-1.77621841430664e-05,-0.000260829925537109,1.24391460418701,-2.63452529907227e-05,-0.000253677368164063,1.24391651153564,-1.4960765838623e-05,-0.000259876251220703,1.24391651153564,-2.87294387817383e-05,-0.000246047973632813,1.24391555786133,-1.20401382446289e-05,-0.000260353088378906,1.24391460418701,-3.11136245727539e-05,-0.000245571136474609,1.24391651153564,-7.77840614318848e-06,-0.000260829925537109,1.24391174316406,-3.20672988891602e-05,-0.000237941741943359,1.24392032623291,-3.25441360473633e-05,-0.000238418579101563,1.24391651153564,-3.39746475219727e-05,-0.000238418579101563,1.24391269683838,-3.63588333129883e-05,-0.000230789184570313, -1.24391841888428,-3.73125076293945e-05,-0.000231266021728516,1.24392223358154,-3.87430191040039e-05,-0.000223636627197266,1.24391841888428,-4.17232513427734e-05,-0.000224590301513672,1.24391937255859,-4.45842742919922e-05,-0.000217437744140625,1.24391937255859,-4.50611114501953e-05,-0.000209331512451172,1.24392223358154,-4.64916229248047e-05,-0.000209331512451172,1.24391937255859,-4.79221343994141e-05,-0.000201702117919922,1.24391651153564,-5.07831573486328e-05,-0.000194549560546875,1.24392127990723,-5.22136688232422e-05,-0.000187873840332031,1.24392509460449,-5.31673431396484e-05,-0.000181198120117188,1.24392127990723,-5.41210174560547e-05,-0.000173568725585938,1.24392127990723,-5.41210174560547e-05,-0.000166416168212891,1.24392414093018,-5.50746917724609e-05,-0.000158786773681641,1.24392700195313,-4.79221343994141e-05,-0.000159740447998047,1.24392700195313,-4.79221343994141e-05,-0.000166416168212891,1.24392366409302,-4.4405460357666e-06,-0.000267505645751953,1.24391746520996,-3.48687171936035e-06,-0.000260353088378906,1.24391841888428,-9.68575477600098e-06,-0.000260353088378906,1.24391651153564,-1.29938125610352e-05,-0.000260353088378906,1.24391746520996,-1.53779983520508e-05,-0.000260353088378906,1.24392127990723,-1.77621841430664e-05,-0.000260829925537109,1.24391651153564,-2.15768814086914e-05,-0.000253200531005859,1.24391651153564,-2.49147415161133e-05,-0.000252723693847656,1.24391841888428,-2.53915786743164e-05,-0.000253200531005859,1.24392032623291,-2.72989273071289e-05,-0.000253200531005859,1.24391937255859,-3.01599502563477e-05,-0.000246047973632813,1.24391841888428,-3.20672988891602e-05,-0.000246047973632813,1.24392127990723,-3.30209732055664e-05,-0.000245571136474609,1.24392414093018,-3.34978103637695e-05,-0.000238895416259766,1.24392127990723,-3.49283218383789e-05,-0.000238895416259766,1.24391841888428,-3.73125076293945e-05,-0.000230789184570313,1.24392127990723,-3.77893447875977e-05,-0.000230312347412109,1.24392414093018,-3.93390655517578e-05,-0.000223636627197266,1.24392414093018,-4.26769256591797e-05, --0.000224590301513672,1.24392127990723,-4.60147857666016e-05,-0.000216960906982422,1.24392414093018,-4.60147857666016e-05,-0.000209808349609375,1.24392509460449,-4.74452972412109e-05,-0.000209331512451172,1.24392223358154,-4.88758087158203e-05,-0.000202655792236328,1.24392127990723,-5.17368316650391e-05,-0.000195026397705078,1.24392509460449,-5.17368316650391e-05,-0.000188350677490234,1.24392890930176,-5.45978546142578e-05,-0.000181198120117188,1.24392700195313,-5.55515289306641e-05,-0.000173568725585938,1.24392604827881,-5.55515289306641e-05,-0.000166893005371094,1.24392795562744,-5.45978546142578e-05,-0.000159740447998047,1.24393081665039,-4.83989715576172e-05,-0.000159263610839844,1.24392986297607,-4.74452972412109e-05,-0.000165462493896484,1.24392795562744,-4.64916229248047e-05,-0.000173568725585938,1.24392652511597,-4.60147857666016e-05,-0.000181198120117188,1.24392700195313,-4.64916229248047e-05,-0.000188827514648438,1.24392700195313,-4.41074371337891e-05,-0.000188350677490234,1.24392414093018,-4.12464141845703e-05,-0.000195503234863281,1.24392318725586,-3.93390655517578e-05,-0.000202178955078125,1.24392414093018,-3.9219856262207e-05,-0.000209331512451172,1.24392604827881,-3.77893447875977e-05,-0.000216960906982422,1.24392414093018,-3.49283218383789e-05,-0.000224590301513672,1.24392318725586,-3.49283218383789e-05,-0.000223159790039063,1.24392318725586,-3.5405158996582e-05,-0.000230312347412109,1.24392604827881,-3.25441360473633e-05,-0.000231266021728516,1.24392318725586,-3.01599502563477e-05,-0.000231742858886719,1.24392127990723,-2.92062759399414e-05,-0.000237464904785156,1.24392127990723,-2.96831130981445e-05,-0.000246047973632813,1.24392318725586,-2.82526016235352e-05,-0.000245571136474609,1.24392032623291,-2.49147415161133e-05,-0.000246047973632813,1.24391937255859,-2.30073928833008e-05,-0.000253677368164063,1.24391937255859,-2.34842300415039e-05,-0.000253200531005859,1.24392127990723,-2.15768814086914e-05,-0.000253677368164063,1.24391841888428,-1.77621841430664e-05,-0.000253200531005859,1.24391841888428, --1.54376029968262e-05,-0.000259876251220703,1.24391841888428,-1.44243240356445e-05,-0.000260829925537109,1.24392127990723,-1.10864639282227e-05,-0.000260829925537109,1.24391841888428,-7.30156898498535e-06,-0.000260829925537109,1.24391651153564,-4.07695770263672e-05,-0.000166416168212891,1.24391746520996,-3.1590461730957e-05,-0.000166416168212891,1.24391078948975,-3.63588333129883e-05,-0.000195026397705078,1.24390935897827,-3.44514846801758e-05,-0.000209808349609375,1.24390888214111,-3.20672988891602e-05,-0.000216960906982422,1.24390888214111,-2.87294387817383e-05,-0.000230789184570313,1.2439079284668,-2.72989273071289e-05,-0.000231266021728516,1.2439079284668,-2.34842300415039e-05,-0.000237941741943359,1.2439079284668,-2.11000442504883e-05,-0.000245571136474609,1.2439079284668,-1.73449516296387e-05,-0.000252723693847656,1.24390888214111,-1.35302543640137e-05,-0.000253200531005859,1.24390983581543,-8.2552433013916e-06,-0.000253677368164063,1.2439079284668,-4.88758087158203e-06,-0.000260353088378906,1.2439079284668,-2.05636024475098e-06,-0.000267505645751953,1.24390888214111,-2.05636024475098e-06,-0.00026702880859375,1.24390602111816,-2.05636024475098e-06,-0.000267505645751953,1.24391460418701,-2.05636024475098e-06,-0.00026702880859375,1.24391651153564,0,-0.000267505645751953,1.24391841888428,0,-0.00026702880859375,1.24392509460449,0,-0.000274658203125,1.24393558502197,0,-0.000274181365966797,1.24393939971924,0,-0.000274658203125,1.24393939971924,0,-0.000267505645751953,1.24393939971924,0,-0.000267505645751953,1.24393367767334,0,-0.000267505645751953,1.24392509460449,0,-0.000260353088378906,1.24391937255859,-1.57952308654785e-06,-0.000260353088378906,1.24391555786133,-1.57952308654785e-06,-0.000260829925537109,1.24390983581543,0,-0.000260829925537109,1.2439079284668,-3.01003456115723e-06,-0.000253200531005859,1.24390506744385,-4.91738319396973e-06,-0.000252723693847656,1.24390602111816,-6.3478946685791e-06,-0.000253200531005859,1.24390316009521,-8.2552433013916e-06,-0.000246047973632813,1.24390316009521,-9.68575477600098e-06, --0.000238895416259766,1.24390316009521,-1.06096267700195e-05,-0.000237941741943359,1.24390029907227,-1.2516975402832e-05,-0.000231266021728516,1.24389934539795,-1.40070915222168e-05,-0.000216960906982422,1.24389839172363,-1.53779983520508e-05,-0.000209808349609375,1.24389934539795,-1.68085098266602e-05,-0.000201702117919922,1.24390172958374,2.24262475967407e-06,-0.000267505645751953,1.24390888214111,2.23517417907715e-06,-0.00026702880859375,1.24390602111816,2.23517417907715e-06,-0.000267505645751953,1.24391460418701,2.23517417907715e-06,-0.00026702880859375,1.24391651153564,2.23517417907715e-06,-0.000267505645751953,1.24391841888428,2.23517417907715e-06,-0.00026702880859375,1.24392509460449,2.23517417907715e-06,-0.000274658203125,1.24393558502197,2.23517417907715e-06,-0.000274181365966797,1.24393939971924,2.23517417907715e-06,-0.000274658203125,1.24393939971924,1.75833702087402e-06,-0.000267505645751953,1.24393939971924,1.75833702087402e-06,-0.000267505645751953,1.24393367767334,1.75833702087402e-06,-0.000267505645751953,1.24392509460449,2.23517417907715e-06,-0.000260353088378906,1.24391937255859,2.23517417907715e-06,-0.000260353088378906,1.24391555786133,2.23517417907715e-06,-0.000260829925537109,1.24390983581543,2.23517417907715e-06,-0.000260829925537109,1.2439079284668,3.1888484954834e-06,-0.000253200531005859,1.24390506744385,5.0961971282959e-06,-0.000252723693847656,1.24390602111816,7.0035457611084e-06,-0.000253200531005859,1.24390316009521,8.43405723571777e-06,-0.000246047973632813,1.24390316009521,9.89437103271484e-06,-0.000238895416259766,1.24390316009521,1.13248825073242e-05,-0.000237941741943359,1.24390029907227,1.27553939819336e-05,-0.000231266021728516,1.24389934539795,1.46627426147461e-05,-0.000216960906982422,1.24389839172363,1.60336494445801e-05,-0.000209808349609375,1.24389934539795,1.74641609191895e-05,-0.000201702117919922,1.24390172958374,4.83989715576172e-05,-0.000158309936523438,1.24392747879028,4.88758087158203e-05,-0.000159263610839844,1.24392938613892,4.93526458740234e-05,-0.000158786773681641, -1.24393510818481,4.98294830322266e-05,-0.000158786773681641,1.24394464492798,4.93526458740234e-05,-0.000158786773681641,1.24393177032471,4.45842742919922e-05,-0.000151634216308594,1.24391937255859,-4.88758087158203e-05,-0.000159263610839844,1.24392938613892,-4.79221343994141e-05,-0.000158309936523438,1.24392747879028,-4.93526458740234e-05,-0.000158786773681641,1.24394464492798,-4.88758087158203e-05,-0.000158786773681641,1.24393510818481,-4.88758087158203e-05,-0.000158786773681641,1.24393177032471,-4.41074371337891e-05,-0.000152111053466797,1.24391889572144,5.50746917724609e-05,-0.000159740447998047,1.24394416809082,5.41210174560547e-05,-0.000158786773681641,1.2439489364624,5.26905059814453e-05,-0.000159263610839844,1.2439489364624,5.17368316650391e-05,-0.000159263610839844,1.24394989013672,4.98294830322266e-05,-0.000159740447998047,1.24394416809082,4.93526458740234e-05,-0.000159740447998047,1.24393463134766,4.93526458740234e-05,-0.000159263610839844,1.24392986297607,4.83989715576172e-05,-0.000158786773681641,1.24392986297607,4.79221343994141e-05,-0.000159740447998047,1.24392795562744,4.45842742919922e-05,-0.000158786773681641,1.24391937255859,-4.41074371337891e-05,-0.000158786773681641,1.24391889572144,-4.79221343994141e-05,-0.000159740447998047,1.24392795562744,-4.83989715576172e-05,-0.000158786773681641,1.24392986297607,-4.88758087158203e-05,-0.000159263610839844,1.24392986297607,-4.88758087158203e-05,-0.000159740447998047,1.24393463134766,-4.93526458740234e-05,-0.000159740447998047,1.24394416809082,-5.12599945068359e-05,-0.000159263610839844,1.24394989013672,-5.26905059814453e-05,-0.000159263610839844,1.2439489364624,-5.41210174560547e-05,-0.000158786773681641,1.2439489364624,-5.55515289306641e-05,-0.000159740447998047,1.24394416809082,-5.45978546142578e-05,-0.000159740447998047,1.24393463134766,5.50746917724609e-05,-0.000159740447998047,1.24393463134766,-4.69684600830078e-05,-0.000159740447998047,1.24392366409302,-4.69684600830078e-05,-0.000159263610839844,1.24392223358154,4.69684600830078e-05,-0.000159740447998047, -1.24392366409302,4.74452972412109e-05,-0.000159263610839844,1.24392223358154,0,-0.000210285186767578,1.24389743804932,-1.68085098266602e-05,-0.000181198120117188,1.24390554428101,-2.72989273071289e-05,-0.000158786773681641,1.2439112663269,0,-0.000181198120117188,1.24390840530396,-1.59144401550293e-05,-0.000173568725585938,1.24390888214111,3.03983688354492e-05,-0.00014495849609375,1.24391460418701,2.80141830444336e-05,-0.000159740447998047,1.24391269683838,3.56435775756836e-05,-0.0001373291015625,1.24391460418701,3.3259391784668e-05,-0.0001373291015625,1.24391460418701,-4.02927398681641e-05,-0.000130653381347656,1.24391555786133,-3.73125076293945e-05,-0.000130653381347656,1.24391651153564,-2.96831130981445e-05,-0.000144481658935547,1.2439136505127,-3.49283218383789e-05,-0.0001373291015625,1.2439136505127,-3.25441360473633e-05,-0.000137805938720703,1.24391508102417,4.07695770263672e-05,-0.000130653381347656,1.24391555786133,3.80277633666992e-05,-0.000130653381347656,1.24391651153564,7.95722007751465e-06,-0.000267505645751953,1.24392414093018,7.48038291931152e-06,-0.000267505645751953,1.24391651153564,3.23057174682617e-05,-0.000253200531005859,1.24392509460449,2.9444694519043e-05,-0.000253200531005859,1.24391841888428,4.31537628173828e-05,-0.000224113464355469,1.24392890930176,4.07695770263672e-05,-0.000223636627197266,1.24392318725586,2.1815299987793e-05,-0.000267505645751953,1.24394035339355,2.46763229370117e-05,-0.000267982482910156,1.24393939971924,2.1815299987793e-05,-0.00026702880859375,1.24393463134766,1.89542770385742e-05,-0.000266551971435547,1.24393939971924,2.1815299987793e-05,-0.000267505645751953,1.24393939971924,2.22921371459961e-05,-0.000253200531005859,1.24390888214111,2.32458114624023e-05,-0.000253200531005859,1.24391269683838,9.89437103271484e-06,-0.000259876251220703,1.24390983581543,1.0371208190918e-05,-0.000260353088378906,1.24390602111816,3.94582748413086e-05,-0.000245571136474609,1.2439432144165,3.98159027099609e-05,-0.000238895416259766,1.24393939971924,3.88622283935547e-05,-0.000245571136474609, -1.24393653869629,3.94582748413086e-05,-0.000246047973632813,1.24394035339355,3.98159027099609e-05,-0.000246047973632813,1.24394035339355,3.56435775756836e-05,-0.000230789184570313,1.24391269683838,3.61204147338867e-05,-0.000230789184570313,1.24391651153564,3.08752059936523e-05,-0.000245571136474609,1.24391078948975,3.13520431518555e-05,-0.000246047973632813,1.24390697479248,4.88758087158203e-05,-0.000209331512451172,1.24394416809082,5.12599945068359e-05,-0.000202655792236328,1.24394226074219,5.03063201904297e-05,-0.000209331512451172,1.24394130706787,4.88758087158203e-05,-0.000209808349609375,1.24394226074219,5.03063201904297e-05,-0.000209331512451172,1.2439432144165,5.03063201904297e-05,-0.000202655792236328,1.24391555786133,4.98294830322266e-05,-0.000195503234863281,1.24391841888428,4.31537628173828e-05,-0.000216960906982422,1.2439136505127,4.36305999755859e-05,-0.000217437744140625,1.24390935897827,5.84125518798828e-05,-0.000174045562744141,1.24393749237061,5.84125518798828e-05,-0.000173568725585938,1.24394416809082,5.50746917724609e-05,-0.000166893005371094,1.24392652511597,5.50746917724609e-05,-0.000159263610839844,1.24392414093018,5.55515289306641e-05,-0.000181198120117188,1.24391174316406,5.41210174560547e-05,-0.000181198120117188,1.24391651153564,8.43405723571777e-06,-0.000274658203125,1.24393844604492,1.26957893371582e-05,-0.000273704528808594,1.24393844604492,8.9108943939209e-06,-0.000274658203125,1.24393463134766,5.0961971282959e-06,-0.000274181365966797,1.24393653869629,8.9108943939209e-06,-0.000274181365966797,1.24393653869629,1.56164169311523e-05,-0.000267982482910156,1.24393939971924,1.60932540893555e-05,-0.000267505645751953,1.24393749237061,1.60336494445801e-05,-0.000267505645751953,1.24393653869629,1.60932540893555e-05,-0.000266551971435547,1.24393844604492,1.60932540893555e-05,-0.00026702880859375,1.24393844604492,1.60932540893555e-05,-0.000260829925537109,1.24392509460449,1.50799751281738e-05,-0.000260353088378906,1.24392032623291,3.56435775756836e-05,-0.000260353088378906,1.24393939971924,3.75509262084961e-05, --0.000252723693847656,1.24393939971924,3.51667404174805e-05,-0.000260353088378906,1.24393463134766,3.3259391784668e-05,-0.000259876251220703,1.24393844604492,3.56435775756836e-05,-0.000260353088378906,1.24393939971924,3.7074089050293e-05,-0.000252723693847656,1.24394226074219,3.65972518920898e-05,-0.000246047973632813,1.24393939971924,3.7074089050293e-05,-0.000246047973632813,1.24393463134766,3.85046005249023e-05,-0.000253200531005859,1.24393939971924,3.75509262084961e-05,-0.000245571136474609,1.24393939971924,3.46899032592773e-05,-0.000246047973632813,1.24392604827881,3.3259391784668e-05,-0.000246047973632813,1.24392127990723,4.22000885009766e-05,-0.000231266021728516,1.24394416809082,4.45842742919922e-05,-0.000224113464355469,1.24394416809082,4.31537628173828e-05,-0.000231742858886719,1.24393939971924,4.22000885009766e-05,-0.000231742858886719,1.24394226074219,4.31537628173828e-05,-0.000230789184570313,1.24394130706787,4.55379486083984e-05,-0.000216484069824219,1.2439432144165,4.55379486083984e-05,-0.000209808349609375,1.24394416809082,4.60147857666016e-05,-0.000217437744140625,1.24393939971924,4.60147857666016e-05,-0.000216484069824219,1.24394416809082,4.60147857666016e-05,-0.000216960906982422,1.24394226074219,4.69684600830078e-05,-0.000209331512451172,1.24392890930176,4.64916229248047e-05,-0.000209808349609375,1.24392509460449,5.69820404052734e-05,-0.000181198120117188,1.24394798278809,5.79357147216797e-05,-0.000173568725585938,1.24394702911377,5.79357147216797e-05,-0.000180721282958984,1.24394512176514,5.74588775634766e-05,-0.000188350677490234,1.24394512176514,5.79357147216797e-05,-0.000180721282958984,1.24394702911377,5.79357147216797e-05,-0.000181198120117188,1.24393558502197,5.55515289306641e-05,-0.000181198120117188,1.24392604827881,2.84910202026367e-05,-0.000260353088378906,1.24394130706787,2.84910202026367e-05,-0.000260829925537109,1.24393939971924,2.84910202026367e-05,-0.000260353088378906,1.24393463134766,2.89678573608398e-05,-0.000260829925537109,1.24393844604492,2.84910202026367e-05,-0.000260829925537109, -1.24393939971924,2.70605087280273e-05,-0.000253200531005859,1.24392509460449,2.61068344116211e-05,-0.000253200531005859,1.24391937255859,2.13384628295898e-05,-0.000260353088378906,1.24392414093018,2.08616256713867e-05,-0.000259876251220703,1.24391746520996,2.32458114624023e-05,-0.000252723693847656,1.24390411376953,1.65104866027832e-05,-0.000260829925537109,1.24390983581543,1.79409980773926e-05,-0.000261306762695313,1.24390506744385,1.70469284057617e-05,-0.000260353088378906,1.24391651153564,1.2814998626709e-06,-0.000267982482910156,1.24390888214111,1.2814998626709e-06,-0.00026702880859375,1.24390411376953,1.2814998626709e-06,-0.000268459320068359,1.24391555786133,1.2814998626709e-06,-0.000267505645751953,1.2439136505127,1.0371208190918e-05,-0.000260353088378906,1.2439136505127,3.94582748413086e-05,-0.000230789184570313,1.24394226074219,3.94582748413086e-05,-0.000230789184570313,1.24394130706787,3.93390655517578e-05,-0.000231266021728516,1.24393939971924,3.98159027099609e-05,-0.000238895416259766,1.24394130706787,3.93390655517578e-05,-0.000230312347412109,1.24394035339355,3.89814376831055e-05,-0.000231266021728516,1.24392986297607,3.75509262084961e-05,-0.000230312347412109,1.24392604827881,3.80277633666992e-05,-0.000238895416259766,1.24392604827881,3.46899032592773e-05,-0.000237941741943359,1.24391841888428,3.65972518920898e-05,-0.000230789184570313,1.24390888214111,3.27825546264648e-05,-0.000238418579101563,1.24391269683838,3.37362289428711e-05,-0.000239372253417969,1.2439079284668,3.27825546264648e-05,-0.000238895416259766,1.24391937255859,2.65836715698242e-05,-0.000252723693847656,1.24391078948975,2.80141830444336e-05,-0.000252723693847656,1.24390697479248,2.61068344116211e-05,-0.000252723693847656,1.24391841888428,3.08752059936523e-05,-0.000245571136474609,1.24391651153564,5.26905059814453e-05,-0.000187873840332031,1.24394607543945,5.31673431396484e-05,-0.000187873840332031,1.24394416809082,5.45978546142578e-05,-0.000187397003173828,1.2439432144165,5.41210174560547e-05,-0.000195503234863281,1.24394512176514,5.36441802978516e-05, --0.000188350677490234,1.24394512176514,5.36441802978516e-05,-0.000187873840332031,1.24393367767334,5.17368316650391e-05,-0.000188827514648438,1.24392795562744,5.12599945068359e-05,-0.000202655792236328,1.24393177032471,4.88758087158203e-05,-0.000202655792236328,1.24392318725586,5.07831573486328e-05,-0.000202178955078125,1.24391078948975,4.60147857666016e-05,-0.000209331512451172,1.24391555786133,4.74452972412109e-05,-0.000209808349609375,1.2439112663269,4.64916229248047e-05,-0.000209331512451172,1.24392032623291,3.94582748413086e-05,-0.000223636627197266,1.24391460418701,3.98159027099609e-05,-0.000223159790039063,1.2439079284668,3.89814376831055e-05,-0.000223636627197266,1.24392127990723,4.36305999755859e-05,-0.000216484069824219,1.24391841888428,5.69820404052734e-05,-0.000165462493896484,1.24393606185913,5.69820404052734e-05,-0.000165939331054688,1.24394559860229,5.60283660888672e-05,-0.000166893005371094,1.24392890930176,5.45978546142578e-05,-0.000166416168212891,1.24392509460449,5.60283660888672e-05,-0.000166893005371094,1.24392700195313,5.65052032470703e-05,-0.000159263610839844,1.2439136505127,5.50746917724609e-05,-0.000159740447998047,1.24391937255859,5.55515289306641e-05,-0.000165939331054688,1.2439136505127,5.45978546142578e-05,-0.000166893005371094,1.24391746520996,5.45978546142578e-05,-0.000165939331054688,1.24392127990723,5.45978546142578e-05,-0.000180721282958984,1.24392414093018,5.41210174560547e-05,-0.000180721282958984,1.24392223358154,0,-0.000274181365966797,1.24393844604492,1.2814998626709e-06,-0.000274658203125,1.24393939971924,2.23517417907715e-06,-0.000274658203125,1.24393939971924,1.2814998626709e-06,-0.000274181365966797,1.24393463134766,1.2814998626709e-06,-0.000273704528808594,1.24393653869629,6.52670860290527e-06,-0.000261306762695313,1.24390602111816,6.52670860290527e-06,-0.000260829925537109,1.2439079284668,6.52670860290527e-06,-0.000259876251220703,1.24391460418701,6.52670860290527e-06,-0.000260353088378906,1.2439136505127,0,-0.000267982482910156,1.24392604827881,1.2814998626709e-06,-0.00026702880859375, -1.24391841888428,1.46627426147461e-05,-0.000260353088378906,1.24390697479248,1.37090682983398e-05,-0.000260829925537109,1.24390983581543,1.41263008117676e-05,-0.000267505645751953,1.24392509460449,1.50799751281738e-05,-0.00026702880859375,1.24393367767334,1.4185905456543e-05,-0.000260353088378906,1.24391746520996,1.36494636535645e-05,-0.000259876251220703,1.24391746520996,1.08480453491211e-05,-0.000260353088378906,1.24391555786133,1.22785568237305e-05,-0.000260353088378906,1.24391651153564,1.75237655639648e-05,-0.000260353088378906,1.24392700195313,1.69873237609863e-05,-0.000267505645751953,1.24393367767334,2.08616256713867e-05,-0.0002593994140625,1.24390316009521,1.99079513549805e-05,-0.000253200531005859,1.24390983581543,1.70469284057617e-05,-0.000260353088378906,1.24391746520996,1.69873237609863e-05,-0.000260353088378906,1.24391937255859,1.99079513549805e-05,-0.000252723693847656,1.24391555786133,1.99079513549805e-05,-0.000253677368164063,1.24391269683838,2.61068344116211e-05,-0.000252723693847656,1.24390697479248,2.46763229370117e-05,-0.000253677368164063,1.24391078948975,2.5629997253418e-05,-0.000260353088378906,1.24392318725586,2.70605087280273e-05,-0.000260353088378906,1.24393463134766,2.32458114624023e-05,-0.000253200531005859,1.24391651153564,2.41994857788086e-05,-0.000252723693847656,1.24391651153564,2.5629997253418e-05,-0.000253200531005859,1.24391841888428,2.51531600952148e-05,-0.000253200531005859,1.24391460418701,2.84910202026367e-05,-0.000252723693847656,1.24392604827881,3.03983688354492e-05,-0.000260829925537109,1.24393558502197,3.03983688354492e-05,-0.000246047973632813,1.24390697479248,2.89678573608398e-05,-0.000245571136474609,1.24391078948975,2.84910202026367e-05,-0.000245571136474609,1.24391555786133,2.84910202026367e-05,-0.000246524810791016,1.2439136505127,2.65836715698242e-05,-0.000252723693847656,1.24391746520996,2.70605087280273e-05,-0.000253200531005859,1.24391841888428,3.27825546264648e-05,-0.000245094299316406,1.24390602111816,3.18288803100586e-05,-0.000245571136474609,1.24391078948975, -3.51667404174805e-05,-0.000245571136474609,1.24392509460449,3.75509262084961e-05,-0.000252723693847656,1.24393558502197,3.27825546264648e-05,-0.000245571136474609,1.24391937255859,3.23057174682617e-05,-0.000246047973632813,1.24391841888428,3.13520431518555e-05,-0.000246047973632813,1.24391746520996,3.23057174682617e-05,-0.000246524810791016,1.24391937255859,3.56435775756836e-05,-0.000245571136474609,1.24392700195313,3.75509262084961e-05,-0.000246047973632813,1.24393844604492,3.46899032592773e-05,-0.000239372253417969,1.2439079284668,3.42130661010742e-05,-0.000238895416259766,1.24391269683838,3.3259391784668e-05,-0.000237941741943359,1.24392032623291,3.37362289428711e-05,-0.000245571136474609,1.24392223358154,3.37362289428711e-05,-0.000238418579101563,1.24391651153564,3.37362289428711e-05,-0.000238895416259766,1.24391460418701,3.89814376831055e-05,-0.000230789184570313,1.24390888214111,3.7074089050293e-05,-0.000230312347412109,1.2439136505127,3.89814376831055e-05,-0.000238895416259766,1.24392795562744,3.98159027099609e-05,-0.000238418579101563,1.24393749237061,3.56435775756836e-05,-0.000230312347412109,1.24391746520996,3.7074089050293e-05,-0.000230312347412109,1.24391937255859,3.75509262084961e-05,-0.000231266021728516,1.24392223358154,3.75509262084961e-05,-0.000230312347412109,1.24391937255859,3.98159027099609e-05,-0.000231266021728516,1.24392986297607,4.02927398681641e-05,-0.000231742858886719,1.24393939971924,4.22000885009766e-05,-0.000224113464355469,1.2439079284668,4.07695770263672e-05,-0.000223636627197266,1.24391269683838,4.02927398681641e-05,-0.000223636627197266,1.24391937255859,4.07695770263672e-05,-0.000223159790039063,1.24391841888428,3.89814376831055e-05,-0.000230312347412109,1.24392223358154,3.94582748413086e-05,-0.000230789184570313,1.24392509460449,4.60147857666016e-05,-0.000216484069824219,1.2439112663269,4.50611114501953e-05,-0.000216960906982422,1.2439136505127,4.64916229248047e-05,-0.000216960906982422,1.24392890930176,4.60147857666016e-05,-0.000216484069824219,1.24393844604492,4.60147857666016e-05, --0.000209331512451172,1.24392223358154,4.55379486083984e-05,-0.000209331512451172,1.24392032623291,4.36305999755859e-05,-0.000216960906982422,1.24391937255859,4.50611114501953e-05,-0.000216960906982422,1.24392318725586,4.79221343994141e-05,-0.000209808349609375,1.24393177032471,4.74452972412109e-05,-0.000209808349609375,1.24393939971924,4.83989715576172e-05,-0.000203132629394531,1.24391174316406,4.79221343994141e-05,-0.000202178955078125,1.24391555786133,4.60147857666016e-05,-0.000209331512451172,1.24392318725586,4.69684600830078e-05,-0.000209808349609375,1.24392414093018,4.79221343994141e-05,-0.000202178955078125,1.24391841888428,4.74452972412109e-05,-0.000202178955078125,1.24391841888428,5.36441802978516e-05,-0.000187873840332031,1.2439112663269,5.22136688232422e-05,-0.000187873840332031,1.24391746520996,5.36441802978516e-05,-0.000195503234863281,1.24393177032471,5.36441802978516e-05,-0.000195503234863281,1.24394130706787,4.98294830322266e-05,-0.000195503234863281,1.24392032623291,5.12599945068359e-05,-0.000195503234863281,1.24392223358154,5.07831573486328e-05,-0.000188827514648438,1.24392509460449,5.12599945068359e-05,-0.000188827514648438,1.24392223358154,3.1888484954834e-06,-0.000266551971435547,1.24392414093018,3.1888484954834e-06,-0.000274658203125,1.24393463134766,5.55515289306641e-05,-0.000166416168212891,1.24394845962524,5.50746917724609e-05,-0.000166893005371094,1.2439489364624,5.79357147216797e-05,-0.000166416168212891,1.24394750595093,5.69820404052734e-05,-0.000166416168212891,1.24394750595093,1.70469284057617e-05,-0.00026702880859375,1.24393939971924,1.69873237609863e-05,-0.000267505645751953,1.24393939971924,2.70605087280273e-05,-0.00026702880859375,1.24394130706787,2.70605087280273e-05,-0.000267505645751953,1.24393844604492,1.46031379699707e-05,-0.000274658203125,1.24393844604492,1.46627426147461e-05,-0.000267505645751953,1.24393844604492,3.03983688354492e-05,-0.000260829925537109,1.24393939971924,3.08752059936523e-05,-0.000260829925537109,1.24393749237061,3.85046005249023e-05,-0.000252723693847656, -1.24394226074219,3.85046005249023e-05,-0.000253200531005859,1.24393939971924,3.75509262084961e-05,-0.000246524810791016,1.24393939971924,3.80277633666992e-05,-0.000246047973632813,1.24393939971924,3.93390655517578e-05,-0.000238418579101563,1.2439432144165,3.98159027099609e-05,-0.000238418579101563,1.24394130706787,3.98159027099609e-05,-0.000230312347412109,1.24394035339355,4.02927398681641e-05,-0.000230312347412109,1.24394035339355,4.45842742919922e-05,-0.000216484069824219,1.24394416809082,4.55379486083984e-05,-0.000216960906982422,1.24394416809082,4.64916229248047e-05,-0.000209331512451172,1.2439432144165,4.74452972412109e-05,-0.000209331512451172,1.24394226074219,5.17368316650391e-05,-0.000194549560546875,1.24394512176514,5.26905059814453e-05,-0.000195503234863281,1.24394416809082,5.74588775634766e-05,-0.000173568725585938,1.24394845962524,5.79357147216797e-05,-0.000173568725585938,1.24394750595093,5.57303428649902e-06,-0.00026702880859375,1.24392414093018,5.57303428649902e-06,-0.000260353088378906,1.24391555786133,2.5629997253418e-05,-0.000253200531005859,1.24392414093018,2.46763229370117e-05,-0.000245571136474609,1.24391841888428,3.46899032592773e-05,-0.000223159790039063,1.24392890930176,3.51667404174805e-05,-0.000224113464355469,1.24392127990723,1.65700912475586e-05,-0.000260829925537109,1.24393939971924,1.84178352355957e-05,-0.000260353088378906,1.24393367767334,2.08616256713867e-05,-0.000259876251220703,1.24393844604492,1.89542770385742e-05,-0.000267982482910156,1.24393939971924,1.89542770385742e-05,-0.000260353088378906,1.24393749237061,1.84774398803711e-05,-0.000253200531005859,1.24391078948975,2.08616256713867e-05,-0.000252723693847656,1.2439136505127,1.79409980773926e-05,-0.000252723693847656,1.2439136505127,1.88946723937988e-05,-0.000253200531005859,1.24391174316406,0,-0.000260353088378906,1.24390697479248,1.75833702087402e-06,-0.000253677368164063,1.24390697479248,2.71201133728027e-06,-0.000259876251220703,1.24390888214111,0,-0.000260829925537109,1.24390602111816,1.2814998626709e-06,-0.000260353088378906, -1.24390697479248,3.18288803100586e-05,-0.000245571136474609,1.24393939971924,3.08752059936523e-05,-0.000238895416259766,1.24393844604492,3.23057174682617e-05,-0.000238895416259766,1.24394130706787,3.27825546264648e-05,-0.000238895416259766,1.24394226074219,3.18288803100586e-05,-0.000238895416259766,1.24394035339355,3.13520431518555e-05,-0.000230789184570313,1.2439136505127,3.23057174682617e-05,-0.000230789184570313,1.24391651153564,3.08752059936523e-05,-0.000231742858886719,1.24391460418701,3.13520431518555e-05,-0.000230789184570313,1.24391555786133,2.27689743041992e-05,-0.000246047973632813,1.2439079284668,1.51395797729492e-05,-0.000246047973632813,1.24390602111816,9.38773155212402e-06,-0.000245571136474609,1.24390029907227,1.75237655639648e-05,-0.000238418579101563,1.24390411376953,1.65104866027832e-05,-0.000245571136474609,1.24390697479248,4.02927398681641e-05,-0.000209331512451172,1.24394416809082,4.02927398681641e-05,-0.000202655792236328,1.24394035339355,4.17232513427734e-05,-0.000202655792236328,1.24394512176514,4.17232513427734e-05,-0.000202655792236328,1.24394512176514,4.12464141845703e-05,-0.000202655792236328,1.24394416809082,4.26769256591797e-05,-0.000195503234863281,1.24391651153564,4.45842742919922e-05,-0.000187873840332031,1.24391841888428,4.22000885009766e-05,-0.000194549560546875,1.24391746520996,4.26769256591797e-05,-0.000195503234863281,1.24391841888428,3.37362289428711e-05,-0.000216960906982422,1.24390888214111,2.37226486206055e-05,-0.000216960906982422,1.24390316009521,1.51395797729492e-05,-0.000216960906982422,1.24389743804932,2.61068344116211e-05,-0.000209808349609375,1.24390411376953,2.51531600952148e-05,-0.000216484069824219,1.24390316009521,4.64916229248047e-05,-0.000173568725585938,1.24394416809082,4.64916229248047e-05,-0.000173568725585938,1.24393606185913,4.88758087158203e-05,-0.000159263610839844,1.24392700195313,4.83989715576172e-05,-0.000159263610839844,1.24392652511597,3.66568565368652e-06,-0.000267982482910156,1.24393844604492,6.04987144470215e-06,-0.00026702880859375,1.24393367767334, -8.9108943939209e-06,-0.000267982482910156,1.24393653869629,6.52670860290527e-06,-0.000267505645751953,1.24393939971924,6.04987144470215e-06,-0.000267505645751953,1.24393749237061,1.31726264953613e-05,-0.000267982482910156,1.24393844604492,1.46031379699707e-05,-0.000268459320068359,1.24393558502197,1.56164169311523e-05,-0.00026702880859375,1.24393844604492,1.46031379699707e-05,-0.000267982482910156,1.24393939971924,1.46627426147461e-05,-0.000267982482910156,1.24393844604492,1.46031379699707e-05,-0.000260829925537109,1.24392509460449,1.37090682983398e-05,-0.000260829925537109,1.24392032623291,2.70605087280273e-05,-0.000253200531005859,1.24393939971924,2.75373458862305e-05,-0.000252723693847656,1.24393749237061,2.99215316772461e-05,-0.000253200531005859,1.24394035339355,2.99215316772461e-05,-0.000253200531005859,1.24394130706787,2.80141830444336e-05,-0.000253200531005859,1.24393939971924,3.23057174682617e-05,-0.000245571136474609,1.24393939971924,3.23057174682617e-05,-0.000245571136474609,1.24393653869629,3.37362289428711e-05,-0.000245571136474609,1.24393939971924,3.37362289428711e-05,-0.000246524810791016,1.24394130706787,3.3259391784668e-05,-0.000246047973632813,1.24393939971924,3.08752059936523e-05,-0.000245571136474609,1.24392700195313,3.03983688354492e-05,-0.000246524810791016,1.24392223358154,3.56435775756836e-05,-0.000231742858886719,1.24394035339355,3.46899032592773e-05,-0.000223159790039063,1.24393939971924,3.51667404174805e-05,-0.000224590301513672,1.24394130706787,3.51667404174805e-05,-0.000223636627197266,1.24394416809082,3.46899032592773e-05,-0.000223159790039063,1.24394226074219,3.80277633666992e-05,-0.000216484069824219,1.24394226074219,3.89814376831055e-05,-0.000209331512451172,1.24393939971924,4.07695770263672e-05,-0.000209808349609375,1.24394130706787,3.98159027099609e-05,-0.000209331512451172,1.24394416809082,3.94582748413086e-05,-0.000209808349609375,1.24394130706787,3.85046005249023e-05,-0.000209808349609375,1.24393081665039,3.94582748413086e-05,-0.000209808349609375,1.24392509460449,4.64916229248047e-05, --0.000180721282958984,1.24394512176514,4.60147857666016e-05,-0.000181198120117188,1.24394416809082,4.69684600830078e-05,-0.000174045562744141,1.24394798278809,4.79221343994141e-05,-0.000181198120117188,1.24394702911377,4.64916229248047e-05,-0.000180721282958984,1.24394702911377,4.60147857666016e-05,-0.000180721282958984,1.24393463134766,4.64916229248047e-05,-0.000181198120117188,1.24392700195313,2.46763229370117e-05,-0.000260353088378906,1.24393939971924,2.51531600952148e-05,-0.000260829925537109,1.24393558502197,2.65836715698242e-05,-0.000260353088378906,1.24393939971924,2.61068344116211e-05,-0.000260353088378906,1.24393939971924,2.5629997253418e-05,-0.000260829925537109,1.24393939971924,2.41994857788086e-05,-0.000253200531005859,1.24392414093018,2.37226486206055e-05,-0.000253200531005859,1.24392032623291,1.8000602722168e-05,-0.000260353088378906,1.24392509460449,1.69873237609863e-05,-0.000252723693847656,1.24391746520996,1.5556812286377e-05,-0.000253200531005859,1.24390983581543,9.38773155212402e-06,-0.000253677368164063,1.24390697479248,6.04987144470215e-06,-0.000252723693847656,1.24390506744385,1.26957893371582e-05,-0.000252723693847656,1.24390697479248,1.13248825073242e-05,-0.000253200531005859,1.24390697479248,1.12652778625488e-05,-0.000252723693847656,1.24390888214111,6.04987144470215e-06,-0.000253200531005859,1.2439079284668,4.14252281188965e-06,-0.000253200531005859,1.24390697479248,7.95722007751465e-06,-0.000252723693847656,1.2439079284668,1.41263008117676e-05,-0.000252723693847656,1.24391078948975,1.60932540893555e-05,-0.000253200531005859,1.2439136505127,1.36494636535645e-05,-0.000259876251220703,1.24391460418701,1.50799751281738e-05,-0.000260353088378906,1.24391460418701,2.23517417907715e-06,-0.000260353088378906,1.24390888214111,1.2814998626709e-06,-0.000260829925537109,1.24391078948975,0,-0.000260353088378906,1.2439079284668,0,-0.000260353088378906,1.24390888214111,0,-0.000260353088378906,1.24391460418701,2.23517417907715e-06,-0.000260829925537109,1.24391269683838,1.2814998626709e-06,-0.000260829925537109, -1.24391269683838,8.43405723571777e-06,-0.000260829925537109,1.24391174316406,1.07884407043457e-05,-0.000260829925537109,1.2439136505127,7.48038291931152e-06,-0.000260353088378906,1.24391174316406,8.9108943939209e-06,-0.000260353088378906,1.24391269683838,3.42130661010742e-05,-0.000231266021728516,1.24394035339355,3.56435775756836e-05,-0.000230789184570313,1.24393844604492,3.7074089050293e-05,-0.000231266021728516,1.24394035339355,3.61204147338867e-05,-0.000230789184570313,1.24394035339355,3.56435775756836e-05,-0.000230789184570313,1.24394130706787,3.51667404174805e-05,-0.000231266021728516,1.24392890930176,3.46899032592773e-05,-0.000230789184570313,1.24392414093018,3.08752059936523e-05,-0.000238895416259766,1.24392795562744,2.99215316772461e-05,-0.000238418579101563,1.24392127990723,2.80141830444336e-05,-0.000231266021728516,1.2439079284668,1.94311141967773e-05,-0.000238895416259766,1.24390411376953,1.22189521789551e-05,-0.000231266021728516,1.24389934539795,2.1815299987793e-05,-0.000231266021728516,1.24390411376953,2.08616256713867e-05,-0.000231266021728516,1.24390506744385,2.5629997253418e-05,-0.000237941741943359,1.24390888214111,1.07884407043457e-05,-0.000238895416259766,1.24390029907227,1.84774398803711e-05,-0.000238418579101563,1.24390506744385,2.89678573608398e-05,-0.000238895416259766,1.2439136505127,2.9444694519043e-05,-0.000238418579101563,1.24391555786133,2.89678573608398e-05,-0.000238418579101563,1.24391651153564,2.9444694519043e-05,-0.000237941741943359,1.24391555786133,1.9371509552002e-05,-0.000246047973632813,1.2439079284668,7.95722007751465e-06,-0.000246047973632813,1.24390316009521,1.36494636535645e-05,-0.000245571136474609,1.24390602111816,2.27689743041992e-05,-0.000245571136474609,1.24391174316406,2.37226486206055e-05,-0.000245571136474609,1.2439136505127,2.22921371459961e-05,-0.000253200531005859,1.2439136505127,2.32458114624023e-05,-0.000253200531005859,1.24391269683838,2.61068344116211e-05,-0.000245571136474609,1.2439136505127,2.75373458862305e-05,-0.000245571136474609,1.24391460418701,2.5629997253418e-05, --0.000245571136474609,1.24391460418701,2.65836715698242e-05,-0.000246047973632813,1.24391460418701,4.45842742919922e-05,-0.000195026397705078,1.24394512176514,4.60147857666016e-05,-0.000188350677490234,1.2439432144165,4.74452972412109e-05,-0.000187873840332031,1.24394416809082,4.69684600830078e-05,-0.000187873840332031,1.24394702911377,4.60147857666016e-05,-0.000187873840332031,1.24394607543945,4.60147857666016e-05,-0.000188827514648438,1.24393367767334,4.55379486083984e-05,-0.000187873840332031,1.24392604827881,3.98159027099609e-05,-0.000202178955078125,1.24393177032471,3.98159027099609e-05,-0.000201702117919922,1.24392414093018,1.74641609191895e-05,-0.000180721282958984,1.24390649795532,3.3259391784668e-05,-0.000181674957275391,1.24391031265259,2.5629997253418e-05,-0.000195503234863281,1.24390363693237,1.13248825073242e-05,-0.000195503234863281,1.24390077590942,2.1815299987793e-05,-0.000188827514648438,1.24390459060669,3.51667404174805e-05,-0.000202655792236328,1.24390935897827,1.65104866027832e-05,-0.000202178955078125,1.24389886856079,2.65836715698242e-05,-0.000202655792236328,1.24390459060669,3.98159027099609e-05,-0.000209808349609375,1.24391555786133,4.07695770263672e-05,-0.000202178955078125,1.24391841888428,3.98159027099609e-05,-0.000209331512451172,1.24391937255859,4.02927398681641e-05,-0.000209331512451172,1.24391841888428,3.03983688354492e-05,-0.000224113464355469,1.24390888214111,1.36494636535645e-05,-0.000223159790039063,1.24390029907227,2.27689743041992e-05,-0.000223159790039063,1.24390316009521,3.42130661010742e-05,-0.000224113464355469,1.2439136505127,3.51667404174805e-05,-0.000223636627197266,1.24391841888428,3.42130661010742e-05,-0.000231266021728516,1.24391841888428,3.46899032592773e-05,-0.000224113464355469,1.24391746520996,3.7074089050293e-05,-0.000216960906982422,1.24391460418701,3.85046005249023e-05,-0.000216484069824219,1.24391651153564,3.65972518920898e-05,-0.000223636627197266,1.24391651153564,3.7074089050293e-05,-0.000217437744140625,1.24391651153564,4.83989715576172e-05,-0.000166893005371094, -1.24394559860229,4.83989715576172e-05,-0.000166416168212891,1.24393606185913,4.88758087158203e-05,-0.000158786773681641,1.24393033981323,4.83989715576172e-05,-0.000166893005371094,1.24392414093018,4.69684600830078e-05,-0.000166416168212891,1.24392700195313,4.60147857666016e-05,-0.000166416168212891,1.24391937255859,4.69684600830078e-05,-0.000166416168212891,1.24392127990723,4.64916229248047e-05,-0.000174045562744141,1.24392032623291,4.69684600830078e-05,-0.000166893005371094,1.24392080307007,4.64916229248047e-05,-0.000180721282958984,1.24392032623291,4.60147857666016e-05,-0.000188827514648438,1.24392127990723,4.74452972412109e-05,-0.000173568725585938,1.24392318725586,0,-0.000267505645751953,1.24393939971924,0,-0.00026702880859375,1.24393463134766,1.75833702087402e-06,-0.000267505645751953,1.24393844604492,0,-0.00026702880859375,1.24393939971924,0,-0.00026702880859375,1.24393653869629,6.04987144470215e-06,-0.000260353088378906,1.24391460418701,1.2814998626709e-06,-0.000267982482910156,1.24391651153564,1.2814998626709e-06,-0.000267982482910156,1.24391841888428,1.18017196655273e-05,-0.000267505645751953,1.24393367767334,1.12652778625488e-05,-0.000260353088378906,1.24392414093018,1.31726264953613e-05,-0.000260829925537109,1.24391841888428,9.38773155212402e-06,-0.000260353088378906,1.2439136505127,9.89437103271484e-06,-0.000260829925537109,1.24391841888428,1.56164169311523e-05,-0.000259876251220703,1.24393367767334,1.56164169311523e-05,-0.000259876251220703,1.24392604827881,1.5556812286377e-05,-0.000260353088378906,1.24391746520996,1.56164169311523e-05,-0.000260353088378906,1.24392032623291,1.70469284057617e-05,-0.000252723693847656,1.24391651153564,2.27689743041992e-05,-0.000260829925537109,1.24393749237061,2.1815299987793e-05,-0.000253200531005859,1.24392509460449,1.99079513549805e-05,-0.000253200531005859,1.24391555786133,2.03847885131836e-05,-0.000252723693847656,1.24391841888428,2.27689743041992e-05,-0.000253677368164063,1.24391841888428,2.61068344116211e-05,-0.000253200531005859,1.24393463134766,2.51531600952148e-05, --0.000252723693847656,1.24392509460449,2.41994857788086e-05,-0.000246047973632813,1.24391651153564,2.37226486206055e-05,-0.000253200531005859,1.24391937255859,2.41994857788086e-05,-0.000253200531005859,1.24391937255859,3.03983688354492e-05,-0.000246524810791016,1.24393653869629,2.84910202026367e-05,-0.000245571136474609,1.24392509460449,2.99215316772461e-05,-0.000246047973632813,1.24392032623291,2.70605087280273e-05,-0.000245571136474609,1.24391841888428,2.70605087280273e-05,-0.000245571136474609,1.24391937255859,3.23057174682617e-05,-0.000245571136474609,1.24393653869629,3.08752059936523e-05,-0.000246524810791016,1.24392604827881,3.03983688354492e-05,-0.000238895416259766,1.24392032623291,3.03983688354492e-05,-0.000238895416259766,1.24392318725586,2.99215316772461e-05,-0.000238418579101563,1.24391841888428,3.27825546264648e-05,-0.000231266021728516,1.24393653869629,3.23057174682617e-05,-0.000231266021728516,1.24392890930176,3.18288803100586e-05,-0.000231266021728516,1.24392032623291,3.18288803100586e-05,-0.000230789184570313,1.24392127990723,3.46899032592773e-05,-0.000230312347412109,1.24392318725586,3.61204147338867e-05,-0.000231266021728516,1.24393844604492,3.56435775756836e-05,-0.000231266021728516,1.24392986297607,3.56435775756836e-05,-0.000223636627197266,1.24391937255859,3.61204147338867e-05,-0.000223159790039063,1.24392318725586,3.56435775756836e-05,-0.000224113464355469,1.24392414093018,3.56435775756836e-05,-0.000216484069824219,1.24394035339355,3.61204147338867e-05,-0.000216960906982422,1.24393081665039,3.98159027099609e-05,-0.000209331512451172,1.24392318725586,3.80277633666992e-05,-0.000216484069824219,1.24391937255859,3.7074089050293e-05,-0.000216960906982422,1.24392414093018,4.02927398681641e-05,-0.000209808349609375,1.24394035339355,3.94582748413086e-05,-0.000209331512451172,1.24393081665039,4.02927398681641e-05,-0.000209331512451172,1.24392318725586,3.93390655517578e-05,-0.000209808349609375,1.24392509460449,4.12464141845703e-05,-0.000202655792236328,1.24391937255859,4.26769256591797e-05,-0.000194549560546875, -1.24394226074219,4.22000885009766e-05,-0.000195503234863281,1.24393367767334,4.31537628173828e-05,-0.000195503234863281,1.24392032623291,4.26769256591797e-05,-0.000195026397705078,1.24392318725586,4.60147857666016e-05,-0.000188827514648438,1.24392318725586,2.23517417907715e-06,-0.000266551971435547,1.24393558502197,2.23517417907715e-06,-0.000267982482910156,1.24392604827881,4.79221343994141e-05,-0.000165939331054688,1.24394798278809,4.98294830322266e-05,-0.000165939331054688,1.24394702911377,4.98294830322266e-05,-0.000166416168212891,1.2439489364624,4.83989715576172e-05,-0.000166893005371094,1.24394702911377,1.56164169311523e-05,-0.000267982482910156,1.24393939971924,1.5556812286377e-05,-0.000267505645751953,1.24393844604492,2.37226486206055e-05,-0.000260353088378906,1.24394035339355,2.32458114624023e-05,-0.000260353088378906,1.24393939971924,1.1742115020752e-05,-0.000266551971435547,1.24394035339355,1.13248825073242e-05,-0.00026702880859375,1.24393749237061,2.75373458862305e-05,-0.000260829925537109,1.24394035339355,2.65836715698242e-05,-0.000260829925537109,1.24393939971924,3.23057174682617e-05,-0.000253200531005859,1.24394226074219,3.08752059936523e-05,-0.000253677368164063,1.24394035339355,3.37362289428711e-05,-0.000245571136474609,1.24394035339355,3.27825546264648e-05,-0.000246047973632813,1.24393939971924,3.37362289428711e-05,-0.000238895416259766,1.24394416809082,3.3259391784668e-05,-0.000231742858886719,1.24394035339355,3.65972518920898e-05,-0.000230312347412109,1.24394226074219,3.65972518920898e-05,-0.000231266021728516,1.24394035339355,3.7074089050293e-05,-0.000216960906982422,1.24394416809082,3.61204147338867e-05,-0.000216484069824219,1.24394226074219,4.12464141845703e-05,-0.000209331512451172,1.24394416809082,4.02927398681641e-05,-0.000209331512451172,1.2439432144165,4.41074371337891e-05,-0.000194549560546875,1.24394512176514,4.31537628173828e-05,-0.000195503234863281,1.24394512176514,4.83989715576172e-05,-0.000174045562744141,1.24394798278809,4.79221343994141e-05,-0.000174045562744141,1.24394750595093, -0,-0.000273227691650391,1.24393939971924,1.75833702087402e-06,-0.000274658203125,1.24394035339355,1.2814998626709e-06,-0.000274658203125,1.24393844604492,1.2814998626709e-06,-0.000274181365966797,1.24394035339355,9.38773155212402e-06,-0.000267505645751953,1.24393939971924,7.0035457611084e-06,-0.000274658203125,1.24394035339355,4.14252281188965e-06,-0.000274181365966797,1.24393939971924,6.52670860290527e-06,-0.000273227691650391,1.24393939971924,1.37090682983398e-05,-0.000267505645751953,1.24394035339355,1.26957893371582e-05,-0.000267505645751953,1.24393844604492,1.18017196655273e-05,-0.000267505645751953,1.24394035339355,1.50799751281738e-05,-0.000267982482910156,1.24394035339355,1.51395797729492e-05,-0.00026702880859375,1.24394035339355,1.46031379699707e-05,-0.00026702880859375,1.24394035339355,1.74641609191895e-05,-0.000267505645751953,1.24393939971924,1.65700912475586e-05,-0.000267982482910156,1.24394035339355,1.60932540893555e-05,-0.000267982482910156,1.24393939971924,2.22921371459961e-05,-0.000267982482910156,1.24394130706787,2.03847885131836e-05,-0.000267982482910156,1.24394035339355,1.94311141967773e-05,-0.00026702880859375,1.24393939971924,2.5629997253418e-05,-0.000260353088378906,1.24394226074219,2.51531600952148e-05,-0.000260353088378906,1.24394226074219,2.41994857788086e-05,-0.000260829925537109,1.24394226074219,2.70605087280273e-05,-0.000260829925537109,1.24394130706787,2.70605087280273e-05,-0.000260353088378906,1.24394226074219,2.61068344116211e-05,-0.000260829925537109,1.24394035339355,2.9444694519043e-05,-0.000260353088378906,1.24394130706787,2.89678573608398e-05,-0.000259876251220703,1.24394035339355,2.80141830444336e-05,-0.000260353088378906,1.24394130706787,3.3259391784668e-05,-0.000253200531005859,1.24394130706787,3.27825546264648e-05,-0.000259876251220703,1.24394130706787,3.18288803100586e-05,-0.000253200531005859,1.24394416809082,3.46899032592773e-05,-0.000253200531005859,1.24394035339355,3.56435775756836e-05,-0.000253200531005859,1.24394035339355,3.37362289428711e-05,-0.000252723693847656,1.24394130706787, -3.46899032592773e-05,-0.000245571136474609,1.24394226074219,3.56435775756836e-05,-0.000246524810791016,1.24394226074219,3.46899032592773e-05,-0.000245571136474609,1.24394130706787,3.42130661010742e-05,-0.000246047973632813,1.24394416809082,3.56435775756836e-05,-0.000246047973632813,1.24394035339355,3.46899032592773e-05,-0.000245571136474609,1.24394035339355,3.46899032592773e-05,-0.000238418579101563,1.24394226074219,3.61204147338867e-05,-0.000245571136474609,1.24394130706787,3.42130661010742e-05,-0.000245571136474609,1.24394416809082,3.56435775756836e-05,-0.000231266021728516,1.2439432144165,3.65972518920898e-05,-0.000237941741943359,1.24394226074219,3.56435775756836e-05,-0.000237464904785156,1.2439432144165,3.7074089050293e-05,-0.000230789184570313,1.24394226074219,3.75509262084961e-05,-0.000231266021728516,1.24394035339355,3.65972518920898e-05,-0.000230312347412109,1.24394226074219,3.7074089050293e-05,-0.000231742858886719,1.24394226074219,3.85046005249023e-05,-0.000230312347412109,1.24394226074219,3.75509262084961e-05,-0.000231742858886719,1.24394416809082,3.75509262084961e-05,-0.000224113464355469,1.24394416809082,3.85046005249023e-05,-0.000223159790039063,1.24394130706787,3.7074089050293e-05,-0.000223159790039063,1.24394512176514,3.98159027099609e-05,-0.000216484069824219,1.24394416809082,4.07695770263672e-05,-0.000216960906982422,1.24394512176514,3.89814376831055e-05,-0.000216960906982422,1.24394416809082,4.22000885009766e-05,-0.000209808349609375,1.24394416809082,4.22000885009766e-05,-0.000209808349609375,1.2439432144165,4.12464141845703e-05,-0.000209808349609375,1.24394512176514,4.26769256591797e-05,-0.000209331512451172,1.24394512176514,4.41074371337891e-05,-0.000209331512451172,1.24394512176514,4.22000885009766e-05,-0.000209331512451172,1.24394416809082,4.45842742919922e-05,-0.000202655792236328,1.24394607543945,4.60147857666016e-05,-0.000202178955078125,1.24394607543945,4.41074371337891e-05,-0.000201702117919922,1.24394512176514,4.69684600830078e-05,-0.000194549560546875,1.24394702911377,4.83989715576172e-05, --0.000194549560546875,1.24394607543945,4.60147857666016e-05,-0.000195026397705078,1.24394702911377,4.93526458740234e-05,-0.000188350677490234,1.24394512176514,5.03063201904297e-05,-0.000187397003173828,1.24394607543945,4.83989715576172e-05,-0.000188350677490234,1.24394702911377,4.93526458740234e-05,-0.000180721282958984,1.24394798278809,5.03063201904297e-05,-0.000173568725585938,1.2439489364624,5.22136688232422e-05,-0.000181198120117188,1.24394702911377,5.03063201904297e-05,-0.000180721282958984,1.24394798278809,5.12599945068359e-05,-0.000166416168212891,1.24394989013672,5.36441802978516e-05,-0.000173568725585938,1.24394798278809,5.03063201904297e-05,-0.000173568725585938,1.24394845962524,5.17368316650391e-05,-0.000166416168212891,1.24395084381104,5.31673431396484e-05,-0.000165462493896484,1.24394941329956,5.12599945068359e-05,-0.000166893005371094,1.24394989013672,5.0961971282959e-06,-0.000274181365966797,1.24394035339355,3.1888484954834e-06,-0.000274181365966797,1.24393939971924,2.23517417907715e-06,-0.000273227691650391,1.24394035339355,2.71201133728027e-06,-0.000274181365966797,1.24394130706787,3.1888484954834e-06,-0.000273704528808594,1.24393939971924,1.12652778625488e-05,-0.000274658203125,1.24394130706787,7.95722007751465e-06,-0.000274658203125,1.24394035339355,1.50799751281738e-05,-0.000267505645751953,1.24394035339355,1.36494636535645e-05,-0.000274181365966797,1.24393939971924,1.56164169311523e-05,-0.00026702880859375,1.24393939971924,1.5556812286377e-05,-0.00026702880859375,1.24393844604492,1.84178352355957e-05,-0.000267505645751953,1.24393939971924,1.65700912475586e-05,-0.000267505645751953,1.24393939971924,2.37226486206055e-05,-0.00026702880859375,1.24393939971924,2.13384628295898e-05,-0.000267505645751953,1.24393939971924,2.75373458862305e-05,-0.000260829925537109,1.24394130706787,2.61068344116211e-05,-0.000267505645751953,1.24394130706787,2.80141830444336e-05,-0.000260829925537109,1.24394035339355,2.75373458862305e-05,-0.000260829925537109,1.24394130706787,3.23057174682617e-05,-0.000259876251220703,1.24394130706787, -2.99215316772461e-05,-0.000260353088378906,1.24394226074219,3.65972518920898e-05,-0.000253200531005859,1.24394226074219,3.46899032592773e-05,-0.000260829925537109,1.24394226074219,3.75509262084961e-05,-0.000253200531005859,1.24394226074219,3.75509262084961e-05,-0.000252723693847656,1.24394226074219,3.61204147338867e-05,-0.000245571136474609,1.24394226074219,3.65972518920898e-05,-0.000253677368164063,1.24393939971924,3.75509262084961e-05,-0.000245571136474609,1.24394226074219,3.7074089050293e-05,-0.000245571136474609,1.24394035339355,3.80277633666992e-05,-0.000238895416259766,1.2439432144165,3.80277633666992e-05,-0.000246047973632813,1.24394130706787,3.85046005249023e-05,-0.000238895416259766,1.24394130706787,3.89814376831055e-05,-0.000237941741943359,1.24394130706787,3.85046005249023e-05,-0.000231266021728516,1.24394226074219,3.85046005249023e-05,-0.000230789184570313,1.24394226074219,3.98159027099609e-05,-0.000230312347412109,1.24394226074219,3.94582748413086e-05,-0.000231266021728516,1.24394416809082,4.12464141845703e-05,-0.000224113464355469,1.24394416809082,4.07695770263672e-05,-0.000230789184570313,1.2439432144165,4.41074371337891e-05,-0.000216484069824219,1.24394416809082,4.26769256591797e-05,-0.000216484069824219,1.24394416809082,4.41074371337891e-05,-0.000209331512451172,1.24394512176514,4.41074371337891e-05,-0.000216960906982422,1.24394416809082,4.64916229248047e-05,-0.000209331512451172,1.24394512176514,4.50611114501953e-05,-0.000209808349609375,1.24394416809082,4.83989715576172e-05,-0.000202655792236328,1.24394512176514,4.74452972412109e-05,-0.000201702117919922,1.24394607543945,5.12599945068359e-05,-0.000194549560546875,1.24394702911377,5.03063201904297e-05,-0.000194549560546875,1.24394607543945,5.22136688232422e-05,-0.000188350677490234,1.24394512176514,5.17368316650391e-05,-0.000188350677490234,1.24394702911377,5.45978546142578e-05,-0.000188350677490234,1.24394798278809,5.45978546142578e-05,-0.000173568725585938,1.24394798278809,5.45978546142578e-05,-0.000180721282958984,1.24394798278809,5.60283660888672e-05, --0.000166416168212891,1.24394989013672,5.55515289306641e-05,-0.000173568725585938,1.24394941329956,5.36441802978516e-05,-0.000166893005371094,1.2439489364624,5.41210174560547e-05,-0.000165939331054688,1.24394989013672,3.66568565368652e-06,-0.000267982482910156,1.24390888214111,3.66568565368652e-06,-0.000267505645751953,1.24391269683838,3.1888484954834e-06,-0.000260829925537109,1.24391555786133,4.79221343994141e-05,-0.000158786773681641,1.24392652511597,4.50611114501953e-05,-0.000174045562744141,1.24391841888428,4.60147857666016e-05,-0.000173568725585938,1.24391841888428,4.36305999755859e-05,-0.000188827514648438,1.24391841888428,4.50611114501953e-05,-0.000188350677490234,1.24391937255859,4.12464141845703e-05,-0.000202655792236328,1.24391651153564,4.12464141845703e-05,-0.000202178955078125,1.24391651153564,3.85046005249023e-05,-0.000209808349609375,1.24391460418701,3.94582748413086e-05,-0.000209331512451172,1.24391746520996,3.56435775756836e-05,-0.000223636627197266,1.2439136505127,3.51667404174805e-05,-0.000224590301513672,1.24391651153564,3.27825546264648e-05,-0.000230312347412109,1.2439136505127,3.3259391784668e-05,-0.000231266021728516,1.24391746520996,3.03983688354492e-05,-0.000238895416259766,1.24391269683838,2.99215316772461e-05,-0.000238895416259766,1.24391460418701,2.75373458862305e-05,-0.000238418579101563,1.24391269683838,2.84910202026367e-05,-0.000238418579101563,1.24391555786133,2.46763229370117e-05,-0.000246047973632813,1.2439136505127,2.46763229370117e-05,-0.000246047973632813,1.24391269683838,2.08616256713867e-05,-0.000252723693847656,1.24391174316406,2.1815299987793e-05,-0.000252723693847656,1.24391460418701,1.70469284057617e-05,-0.000253677368164063,1.24391078948975,1.65104866027832e-05,-0.000253200531005859,1.2439136505127,1.12652778625488e-05,-0.000260353088378906,1.24391078948975,1.22785568237305e-05,-0.000260353088378906,1.24391269683838,6.04987144470215e-06,-0.000260829925537109,1.24391078948975,4.14252281188965e-06,-0.000260353088378906,1.24391269683838,6.04987144470215e-06,-0.000260353088378906, -1.24391174316406,3.66568565368652e-06,-0.00026702880859375,1.24391460418701,3.1888484954834e-06,-0.000267505645751953,1.24391937255859,2.71201133728027e-06,-0.000260353088378906,1.24391746520996,4.22000885009766e-05,-0.000173568725585938,1.24391555786133,4.22000885009766e-05,-0.000166893005371094,1.2439169883728,4.41074371337891e-05,-0.000166893005371094,1.24391794204712,4.07695770263672e-05,-0.000194549560546875,1.2439136505127,4.02927398681641e-05,-0.000202178955078125,1.24391174316406,4.12464141845703e-05,-0.000195026397705078,1.24391460418701,3.65972518920898e-05,-0.000216960906982422,1.2439136505127,3.46899032592773e-05,-0.000224590301513672,1.24391078948975,3.56435775756836e-05,-0.000224590301513672,1.24391269683838,3.08752059936523e-05,-0.000230312347412109,1.24391078948975,2.9444694519043e-05,-0.000237464904785156,1.24391269683838,3.03983688354492e-05,-0.000230789184570313,1.24391174316406,2.51531600952148e-05,-0.000245571136474609,1.24391078948975,2.32458114624023e-05,-0.000246047973632813,1.24391078948975,2.46763229370117e-05,-0.000246047973632813,1.24391078948975,1.74641609191895e-05,-0.000253200531005859,1.24391078948975,1.50799751281738e-05,-0.000252723693847656,1.24391078948975,1.70469284057617e-05,-0.000253677368164063,1.24391078948975,7.95722007751465e-06,-0.000260353088378906,1.24390983581543,4.61935997009277e-06,-0.000260353088378906,1.24390888214111,6.52670860290527e-06,-0.000260829925537109,1.24390983581543,3.93390655517578e-05,-0.000159263610839844,1.24391555786133,3.98159027099609e-05,-0.000173568725585938,1.2439136505127,3.98159027099609e-05,-0.000180721282958984,1.2439136505127,3.85046005249023e-05,-0.000209331512451172,1.24391174316406,3.93390655517578e-05,-0.000202178955078125,1.2439136505127,3.75509262084961e-05,-0.000216484069824219,1.24391174316406,3.23057174682617e-05,-0.000223636627197266,1.24391174316406,3.3259391784668e-05,-0.000223636627197266,1.24391269683838,3.18288803100586e-05,-0.000230789184570313,1.24391078948975,2.75373458862305e-05,-0.000238895416259766,1.24390888214111,2.80141830444336e-05, --0.000237941741943359,1.24391078948975,2.61068344116211e-05,-0.000238895416259766,1.24391078948975,2.08616256713867e-05,-0.000253200531005859,1.24391078948975,2.1815299987793e-05,-0.000245571136474609,1.24391078948975,1.89542770385742e-05,-0.000253200531005859,1.24391078948975,1.12652778625488e-05,-0.000253200531005859,1.24391078948975,1.31726264953613e-05,-0.000253200531005859,1.24390888214111,7.0035457611084e-06,-0.000260353088378906,1.2439079284668,9.38773155212402e-06,-0.000260829925537109,1.24391078948975,3.66568565368652e-06,-0.000260353088378906,1.24390888214111,4.61935997009277e-06,-0.000259876251220703,1.2439079284668,0,-0.000253200531005859,1.24390411376953,2.24262475967407e-06,-0.000253677368164063,1.24390411376953,2.23517417907715e-06,-0.000253200531005859,1.24390506744385,0,-0.000253200531005859,1.24390411376953,3.1888484954834e-06,-0.000253200531005859,1.2439022064209,2.71201133728027e-06,-0.000253200531005859,1.24390506744385,0,-0.000246047973632813,1.24390125274658,4.14252281188965e-06,-0.000246047973632813,1.2439022064209,3.66568565368652e-06,-0.000246047973632813,1.24390316009521,0,-0.000245571136474609,1.24390029907227,4.61935997009277e-06,-0.000245571136474609,1.24390029907227,4.14252281188965e-06,-0.000246047973632813,1.24390125274658,0,-0.000238418579101563,1.24389934539795,5.0961971282959e-06,-0.000238895416259766,1.24389934539795,5.0961971282959e-06,-0.000238418579101563,1.24390125274658,0,-0.000231266021728516,1.24389839172363,6.04987144470215e-06,-0.000231742858886719,1.24389839172363,5.57303428649902e-06,-0.000230312347412109,1.24389743804932,0,-0.000222206115722656,1.24389743804932,7.0035457611084e-06,-0.000216960906982422,1.24389743804932,6.52670860290527e-06,-0.000224113464355469,1.243896484375,7.48038291931152e-06,-0.000209808349609375,1.24389743804932,0,-0.000202655792236328,1.24389982223511,7.95722007751465e-06,-0.000202655792236328,1.24389886856079,-6.82473182678223e-06,-0.000267505645751953,1.24391651153564,-7.77840614318848e-06,-0.000267505645751953,1.24392414093018,-2.87294387817383e-05, --0.000253200531005859,1.24391841888428,-3.20672988891602e-05,-0.000253200531005859,1.24392509460449,-4.07695770263672e-05,-0.000223636627197266,1.24392318725586,-4.26769256591797e-05,-0.000224113464355469,1.24392890930176,-1.8775463104248e-05,-0.000266551971435547,1.24393939971924,-2.11000442504883e-05,-0.00026702880859375,1.24393463134766,-2.3961067199707e-05,-0.000267982482910156,1.24393939971924,-2.11000442504883e-05,-0.000267505645751953,1.24394035339355,-2.11000442504883e-05,-0.000267505645751953,1.24393939971924,-2.25305557250977e-05,-0.000253200531005859,1.24391269683838,-2.15768814086914e-05,-0.000253200531005859,1.24390888214111,-1.01327896118164e-05,-0.000260353088378906,1.24390602111816,-9.65595245361328e-06,-0.000259876251220703,1.24390983581543,-3.87430191040039e-05,-0.000246047973632813,1.24394035339355,-3.87430191040039e-05,-0.000245571136474609,1.24393653869629,-3.9219856262207e-05,-0.000238895416259766,1.24393939971924,-3.87430191040039e-05,-0.000245571136474609,1.2439432144165,-3.87430191040039e-05,-0.000246047973632813,1.24394035339355,-3.5405158996582e-05,-0.000230789184570313,1.24391651153564,-3.5405158996582e-05,-0.000230789184570313,1.24391269683838,-3.11136245727539e-05,-0.000246047973632813,1.24390697479248,-3.01599502563477e-05,-0.000245571136474609,1.24391078948975,-4.83989715576172e-05,-0.000209808349609375,1.24394226074219,-5.03063201904297e-05,-0.000209331512451172,1.24394130706787,-5.03063201904297e-05,-0.000202655792236328,1.24394226074219,-4.93526458740234e-05,-0.000209331512451172,1.24394416809082,-4.98294830322266e-05,-0.000209331512451172,1.2439432144165,-4.93526458740234e-05,-0.000195503234863281,1.24391841888428,-4.98294830322266e-05,-0.000202655792236328,1.24391555786133,-4.36305999755859e-05,-0.000217437744140625,1.24390935897827,-4.26769256591797e-05,-0.000216960906982422,1.2439136505127,-5.84125518798828e-05,-0.000173568725585938,1.24394416809082,-5.79357147216797e-05,-0.000174045562744141,1.24393749237061,-5.45978546142578e-05,-0.000159263610839844,1.24392414093018,-5.41210174560547e-05, --0.000166893005371094,1.24392652511597,-5.41210174560547e-05,-0.000181198120117188,1.24391651153564,-5.45978546142578e-05,-0.000181198120117188,1.24391174316406,-4.94718551635742e-06,-0.000274181365966797,1.24393653869629,-8.2552433013916e-06,-0.000274658203125,1.24393463134766,-1.20997428894043e-05,-0.000273704528808594,1.24393844604492,-8.2552433013916e-06,-0.000274658203125,1.24393844604492,-8.2552433013916e-06,-0.000274181365966797,1.24393653869629,-1.54376029968262e-05,-0.000266551971435547,1.24393844604492,-1.53779983520508e-05,-0.000267505645751953,1.24393653869629,-1.53779983520508e-05,-0.000267505645751953,1.24393749237061,-1.49011611938477e-05,-0.000267982482910156,1.24393939971924,-1.54376029968262e-05,-0.00026702880859375,1.24393844604492,-1.44243240356445e-05,-0.000260353088378906,1.24392032623291,-1.53779983520508e-05,-0.000260829925537109,1.24392509460449,-3.25441360473633e-05,-0.000259876251220703,1.24393844604492,-3.44514846801758e-05,-0.000260353088378906,1.24393463134766,-3.68356704711914e-05,-0.000252723693847656,1.24393939971924,-3.49283218383789e-05,-0.000260353088378906,1.24393939971924,-3.49283218383789e-05,-0.000260353088378906,1.24393939971924,-3.77893447875977e-05,-0.000253200531005859,1.24393939971924,-3.63588333129883e-05,-0.000246047973632813,1.24393463134766,-3.58819961547852e-05,-0.000246047973632813,1.24393939971924,-3.68356704711914e-05,-0.000252723693847656,1.24394226074219,-3.68356704711914e-05,-0.000245571136474609,1.24393939971924,-3.25441360473633e-05,-0.000246047973632813,1.24392127990723,-3.44514846801758e-05,-0.000246047973632813,1.24392604827881,-4.17232513427734e-05,-0.000231742858886719,1.24394226074219,-4.31537628173828e-05,-0.000231742858886719,1.24393939971924,-4.41074371337891e-05,-0.000224113464355469,1.24394416809082,-4.22000885009766e-05,-0.000231266021728516,1.24394416809082,-4.26769256591797e-05,-0.000230789184570313,1.24394130706787,-4.60147857666016e-05,-0.000216484069824219,1.24394416809082,-4.60147857666016e-05,-0.000217437744140625,1.24393939971924,-4.55379486083984e-05, --0.000209808349609375,1.24394416809082,-4.50611114501953e-05,-0.000216484069824219,1.2439432144165,-4.55379486083984e-05,-0.000216960906982422,1.24394226074219,-4.60147857666016e-05,-0.000209808349609375,1.24392509460449,-4.69684600830078e-05,-0.000209331512451172,1.24392890930176,-5.69820404052734e-05,-0.000188350677490234,1.24394512176514,-5.79357147216797e-05,-0.000180721282958984,1.24394512176514,-5.74588775634766e-05,-0.000173568725585938,1.24394702911377,-5.65052032470703e-05,-0.000181198120117188,1.24394798278809,-5.69820404052734e-05,-0.000180721282958984,1.24394702911377,-5.55515289306641e-05,-0.000181198120117188,1.24392604827881,-5.74588775634766e-05,-0.000181198120117188,1.24393558502197,-2.7775764465332e-05,-0.000260829925537109,1.24393844604492,-2.82526016235352e-05,-0.000260353088378906,1.24393463134766,-2.7775764465332e-05,-0.000260829925537109,1.24393939971924,-2.7775764465332e-05,-0.000260353088378906,1.24394130706787,-2.7775764465332e-05,-0.000260829925537109,1.24393939971924,-2.53915786743164e-05,-0.000253200531005859,1.24391937255859,-2.68220901489258e-05,-0.000253200531005859,1.24392509460449,-1.96695327758789e-05,-0.000259876251220703,1.24391746520996,-2.06232070922852e-05,-0.000260353088378906,1.24392414093018,-2.30073928833008e-05,-0.000252723693847656,1.24390411376953,-1.78217887878418e-05,-0.000261306762695313,1.24390506744385,-1.63912773132324e-05,-0.000260829925537109,1.24390983581543,-1.6331672668457e-05,-0.000260353088378906,1.24391651153564,-3.01003456115723e-06,-0.000267982482910156,1.24390888214111,-3.01003456115723e-06,-0.000267982482910156,1.24390506744385,0,-0.000267505645751953,1.2439136505127,0,-0.000268459320068359,1.24391555786133,-1.01327896118164e-05,-0.000260353088378906,1.2439136505127,-3.95774841308594e-05,-0.000238895416259766,1.24394130706787,-3.87430191040039e-05,-0.000231266021728516,1.24393939971924,-3.87430191040039e-05,-0.000230789184570313,1.24394130706787,-3.87430191040039e-05,-0.000230789184570313,1.24394226074219,-3.87430191040039e-05,-0.000230312347412109,1.24394035339355, --3.73125076293945e-05,-0.000230312347412109,1.24392604827881,-3.87430191040039e-05,-0.000231266021728516,1.24392986297607,-3.44514846801758e-05,-0.000237941741943359,1.24391841888428,-3.73125076293945e-05,-0.000238895416259766,1.24392604827881,-3.58819961547852e-05,-0.000230789184570313,1.24390888214111,-3.30209732055664e-05,-0.000239372253417969,1.2439079284668,-3.20672988891602e-05,-0.000238418579101563,1.24391269683838,-3.20672988891602e-05,-0.000238895416259766,1.24391937255859,-2.72989273071289e-05,-0.000252723693847656,1.24390697479248,-2.58684158325195e-05,-0.000252723693847656,1.24391078948975,-2.53915786743164e-05,-0.000252723693847656,1.24391841888428,-3.01599502563477e-05,-0.000245571136474609,1.24391651153564,-5.31673431396484e-05,-0.000195503234863281,1.24394512176514,-5.36441802978516e-05,-0.000187397003173828,1.2439432144165,-5.36441802978516e-05,-0.000187873840332031,1.24394416809082,-5.26905059814453e-05,-0.000187873840332031,1.24394607543945,-5.36441802978516e-05,-0.000188350677490234,1.24394512176514,-5.22136688232422e-05,-0.000188827514648438,1.24392795562744,-5.36441802978516e-05,-0.000187873840332031,1.24393367767334,-4.83989715576172e-05,-0.000202655792236328,1.24392318725586,-5.07831573486328e-05,-0.000202655792236328,1.24393177032471,-5.12599945068359e-05,-0.000202178955078125,1.24391078948975,-4.74452972412109e-05,-0.000209808349609375,1.2439112663269,-4.64916229248047e-05,-0.000209331512451172,1.24391555786133,-4.55379486083984e-05,-0.000209331512451172,1.24392032623291,-3.91006469726563e-05,-0.000223159790039063,1.2439079284668,-3.87430191040039e-05,-0.000223636627197266,1.24391460418701,-3.87430191040039e-05,-0.000223636627197266,1.24392127990723,-4.31537628173828e-05,-0.000216484069824219,1.24391841888428,-5.69820404052734e-05,-0.000165939331054688,1.24394559860229,-5.69820404052734e-05,-0.000165462493896484,1.24393606185913,-5.55515289306641e-05,-0.000166893005371094,1.24392890930176,-5.60283660888672e-05,-0.000166893005371094,1.24392700195313,-5.41210174560547e-05,-0.000166416168212891, -1.24392509460449,-5.45978546142578e-05,-0.000159740447998047,1.24391937255859,-5.55515289306641e-05,-0.000159263610839844,1.2439136505127,-5.41210174560547e-05,-0.000166893005371094,1.24391746520996,-5.55515289306641e-05,-0.000165939331054688,1.2439136505127,-5.45978546142578e-05,-0.000165939331054688,1.24392127990723,-5.41210174560547e-05,-0.000180721282958984,1.24392223358154,-5.41210174560547e-05,-0.000180721282958984,1.24392414093018,0,-0.000274181365966797,1.24393463134766,0,-0.000274658203125,1.24393939971924,0,-0.000274658203125,1.24393939971924,0,-0.000273704528808594,1.24393653869629,-5.87105751037598e-06,-0.000260829925537109,1.2439079284668,-5.87105751037598e-06,-0.000261306762695313,1.24390602111816,-5.87105751037598e-06,-0.000260353088378906,1.2439136505127,-6.3478946685791e-06,-0.000259876251220703,1.24391460418701,0,-0.00026702880859375,1.24391841888428,0,-0.000267982482910156,1.24392604827881,-1.30534172058105e-05,-0.000260829925537109,1.24390983581543,-1.39474868774414e-05,-0.000260353088378906,1.24390697479248,-1.44243240356445e-05,-0.00026702880859375,1.24393367767334,-1.35302543640137e-05,-0.000267505645751953,1.24392509460449,-1.35302543640137e-05,-0.000259876251220703,1.24391746520996,-1.39474868774414e-05,-0.000260353088378906,1.24391746520996,-1.16229057312012e-05,-0.000260353088378906,1.24391651153564,-1.01923942565918e-05,-0.000260353088378906,1.24391555786133,-1.68085098266602e-05,-0.000267505645751953,1.24393367767334,-1.68681144714355e-05,-0.000260353088378906,1.24392700195313,-1.92523002624512e-05,-0.000253200531005859,1.24390983581543,-2.0146369934082e-05,-0.0002593994140625,1.24390316009521,-1.6331672668457e-05,-0.000260353088378906,1.24391937255859,-1.6331672668457e-05,-0.000260353088378906,1.24391746520996,-1.97291374206543e-05,-0.000253677368164063,1.24391269683838,-1.96695327758789e-05,-0.000252723693847656,1.24391555786133,-2.3961067199707e-05,-0.000253677368164063,1.24391078948975,-2.53915786743164e-05,-0.000252723693847656,1.24390697479248,-2.63452529907227e-05,-0.000260353088378906, -1.24393463134766,-2.49147415161133e-05,-0.000260353088378906,1.24392318725586,-2.34842300415039e-05,-0.000252723693847656,1.24391651153564,-2.30073928833008e-05,-0.000253200531005859,1.24391651153564,-2.44379043579102e-05,-0.000253200531005859,1.24391460418701,-2.49147415161133e-05,-0.000253200531005859,1.24391841888428,-2.96831130981445e-05,-0.000260829925537109,1.24393558502197,-2.7775764465332e-05,-0.000252723693847656,1.24392604827881,-2.7775764465332e-05,-0.000245571136474609,1.24391078948975,-2.92062759399414e-05,-0.000246047973632813,1.24390697479248,-2.7775764465332e-05,-0.000246524810791016,1.2439136505127,-2.7775764465332e-05,-0.000245571136474609,1.24391555786133,-2.63452529907227e-05,-0.000253200531005859,1.24391841888428,-2.53915786743164e-05,-0.000252723693847656,1.24391746520996,-3.11136245727539e-05,-0.000245571136474609,1.24391078948975,-3.20672988891602e-05,-0.000245094299316406,1.24390602111816,-3.73125076293945e-05,-0.000252723693847656,1.24393558502197,-3.44514846801758e-05,-0.000245571136474609,1.24392509460449,-3.1590461730957e-05,-0.000246047973632813,1.24391841888428,-3.20672988891602e-05,-0.000245571136474609,1.24391937255859,-3.1590461730957e-05,-0.000246524810791016,1.24391937255859,-3.06367874145508e-05,-0.000246047973632813,1.24391746520996,-3.68356704711914e-05,-0.000246047973632813,1.24393844604492,-3.49283218383789e-05,-0.000245571136474609,1.24392700195313,-3.34978103637695e-05,-0.000238895416259766,1.24391269683838,-3.44514846801758e-05,-0.000239372253417969,1.2439079284668,-3.30209732055664e-05,-0.000245571136474609,1.24392223358154,-3.20672988891602e-05,-0.000237941741943359,1.24392032623291,-3.30209732055664e-05,-0.000238895416259766,1.24391460418701,-3.30209732055664e-05,-0.000238418579101563,1.24391651153564,-3.68356704711914e-05,-0.000230312347412109,1.2439136505127,-3.77893447875977e-05,-0.000230789184570313,1.24390888214111,-3.98159027099609e-05,-0.000238418579101563,1.24393749237061,-3.87430191040039e-05,-0.000238895416259766,1.24392795562744,-3.63588333129883e-05,-0.000230312347412109, -1.24391937255859,-3.5405158996582e-05,-0.000230312347412109,1.24391746520996,-3.68356704711914e-05,-0.000230312347412109,1.24391937255859,-3.73125076293945e-05,-0.000231266021728516,1.24392223358154,-3.98159027099609e-05,-0.000231742858886719,1.24393939971924,-3.9219856262207e-05,-0.000231266021728516,1.24392986297607,-4.07695770263672e-05,-0.000223636627197266,1.24391269683838,-4.17232513427734e-05,-0.000224113464355469,1.2439079284668,-4.07695770263672e-05,-0.000223159790039063,1.24391841888428,-3.98159027099609e-05,-0.000223636627197266,1.24391937255859,-3.82661819458008e-05,-0.000230789184570313,1.24392509460449,-3.77893447875977e-05,-0.000230312347412109,1.24392223358154,-4.45842742919922e-05,-0.000216960906982422,1.2439136505127,-4.55379486083984e-05,-0.000216484069824219,1.2439112663269,-4.55379486083984e-05,-0.000216484069824219,1.24393844604492,-4.64916229248047e-05,-0.000216960906982422,1.24392890930176,-4.50611114501953e-05,-0.000209331512451172,1.24392032623291,-4.55379486083984e-05,-0.000209331512451172,1.24392223358154,-4.45842742919922e-05,-0.000216960906982422,1.24392318725586,-4.36305999755859e-05,-0.000216960906982422,1.24391937255859,-4.74452972412109e-05,-0.000209808349609375,1.24393939971924,-4.74452972412109e-05,-0.000209808349609375,1.24393177032471,-4.74452972412109e-05,-0.000202178955078125,1.24391555786133,-4.83989715576172e-05,-0.000203132629394531,1.24391174316406,-4.60147857666016e-05,-0.000209808349609375,1.24392414093018,-4.55379486083984e-05,-0.000209331512451172,1.24392318725586,-4.74452972412109e-05,-0.000202178955078125,1.24391841888428,-4.69684600830078e-05,-0.000202178955078125,1.24391841888428,-5.17368316650391e-05,-0.000187873840332031,1.24391746520996,-5.31673431396484e-05,-0.000187873840332031,1.2439112663269,-5.26905059814453e-05,-0.000195503234863281,1.24394130706787,-5.31673431396484e-05,-0.000195503234863281,1.24393177032471,-5.07831573486328e-05,-0.000195503234863281,1.24392223358154,-4.93526458740234e-05,-0.000195503234863281,1.24392032623291,-5.12599945068359e-05,-0.000188827514648438, -1.24392223358154,-5.07831573486328e-05,-0.000188827514648438,1.24392509460449,-2.5331974029541e-06,-0.000274658203125,1.24393463134766,-2.5331974029541e-06,-0.000266551971435547,1.24392414093018,-5.79357147216797e-05,-0.000166416168212891,1.24394750595093,-5.45978546142578e-05,-0.000166893005371094,1.2439489364624,-5.60283660888672e-05,-0.000166416168212891,1.24394845962524,-5.60283660888672e-05,-0.000166416168212891,1.24394750595093,-1.63912773132324e-05,-0.00026702880859375,1.24393939971924,-1.6331672668457e-05,-0.000267505645751953,1.24393939971924,-2.58684158325195e-05,-0.00026702880859375,1.24394130706787,-2.63452529907227e-05,-0.000267505645751953,1.24393844604492,-1.39474868774414e-05,-0.000274658203125,1.24393844604492,-1.44243240356445e-05,-0.000267505645751953,1.24393844604492,-2.96831130981445e-05,-0.000260829925537109,1.24393939971924,-3.01599502563477e-05,-0.000260829925537109,1.24393749237061,-3.77893447875977e-05,-0.000252723693847656,1.24394226074219,-3.77893447875977e-05,-0.000253200531005859,1.24393939971924,-3.68356704711914e-05,-0.000246524810791016,1.24393939971924,-3.73125076293945e-05,-0.000246047973632813,1.24393939971924,-3.87430191040039e-05,-0.000238418579101563,1.2439432144165,-3.91006469726563e-05,-0.000238418579101563,1.24394130706787,-3.91006469726563e-05,-0.000230312347412109,1.24394035339355,-3.95774841308594e-05,-0.000230312347412109,1.24394035339355,-4.45842742919922e-05,-0.000216484069824219,1.24394416809082,-4.55379486083984e-05,-0.000216960906982422,1.24394416809082,-4.60147857666016e-05,-0.000209331512451172,1.2439432144165,-4.69684600830078e-05,-0.000209331512451172,1.24394226074219,-5.17368316650391e-05,-0.000194549560546875,1.24394512176514,-5.22136688232422e-05,-0.000195503234863281,1.24394416809082,-5.69820404052734e-05,-0.000173568725585938,1.24394845962524,-5.79357147216797e-05,-0.000173568725585938,1.24394750595093,-4.88758087158203e-06,-0.000260353088378906,1.24391555786133,-4.88758087158203e-06,-0.00026702880859375,1.24392414093018,-2.3961067199707e-05,-0.000245571136474609, -1.24391841888428,-2.53915786743164e-05,-0.000253200531005859,1.24392414093018,-3.44514846801758e-05,-0.000224113464355469,1.24392127990723,-3.39746475219727e-05,-0.000223159790039063,1.24392890930176,-1.82986259460449e-05,-0.000267982482910156,1.24393939971924,-2.06232070922852e-05,-0.000259876251220703,1.24393844604492,-1.78217887878418e-05,-0.000260353088378906,1.24393367767334,-1.59144401550293e-05,-0.000260829925537109,1.24393939971924,-1.82986259460449e-05,-0.000260353088378906,1.24393749237061,-1.72853469848633e-05,-0.000252723693847656,1.2439136505127,-2.0146369934082e-05,-0.000252723693847656,1.2439136505127,-1.82986259460449e-05,-0.000253200531005859,1.24391078948975,-1.8775463104248e-05,-0.000253200531005859,1.24391174316406,0,-0.000260829925537109,1.24390602111816,-2.05636024475098e-06,-0.000259876251220703,1.24390888214111,0,-0.000253677368164063,1.24390697479248,0,-0.000260353088378906,1.24390697479248,-3.20672988891602e-05,-0.000238895416259766,1.24394226074219,-3.1590461730957e-05,-0.000238895416259766,1.24394130706787,-3.06367874145508e-05,-0.000238895416259766,1.24393844604492,-3.11136245727539e-05,-0.000245571136474609,1.24393939971924,-3.06367874145508e-05,-0.000238895416259766,1.24394035339355,-3.01599502563477e-05,-0.000231742858886719,1.24391460418701,-3.1590461730957e-05,-0.000230789184570313,1.24391651153564,-3.06367874145508e-05,-0.000230789184570313,1.2439136505127,-3.11136245727539e-05,-0.000230789184570313,1.24391555786133,-2.20537185668945e-05,-0.000246047973632813,1.2439079284668,-1.68085098266602e-05,-0.000238418579101563,1.24390411376953,-8.73208045959473e-06,-0.000245571136474609,1.24390029907227,-1.44839286804199e-05,-0.000246047973632813,1.24390602111816,-1.58548355102539e-05,-0.000245571136474609,1.24390697479248,-4.12464141845703e-05,-0.000202655792236328,1.24394512176514,-4.17232513427734e-05,-0.000202655792236328,1.24394512176514,-4.02927398681641e-05,-0.000202655792236328,1.24394035339355,-3.95774841308594e-05,-0.000209331512451172,1.24394416809082,-4.02927398681641e-05,-0.000202655792236328, -1.24394416809082,-4.17232513427734e-05,-0.000194549560546875,1.24391746520996,-4.41074371337891e-05,-0.000187873840332031,1.24391841888428,-4.26769256591797e-05,-0.000195503234863281,1.24391651153564,-4.26769256591797e-05,-0.000195503234863281,1.24391841888428,-3.30209732055664e-05,-0.000216960906982422,1.24390888214111,-2.53915786743164e-05,-0.000209808349609375,1.24390411376953,-1.44243240356445e-05,-0.000216960906982422,1.24389743804932,-2.34842300415039e-05,-0.000216960906982422,1.24390316009521,-2.44379043579102e-05,-0.000216484069824219,1.24390316009521,-4.64916229248047e-05,-0.000173568725585938,1.24393606185913,-4.60147857666016e-05,-0.000173568725585938,1.24394416809082,-4.79221343994141e-05,-0.000159263610839844,1.24392652511597,-4.83989715576172e-05,-0.000159263610839844,1.24392700195313,-5.87105751037598e-06,-0.000267505645751953,1.24393939971924,-8.2552433013916e-06,-0.000267982482910156,1.24393653869629,-5.39422035217285e-06,-0.00026702880859375,1.24393367767334,-3.01003456115723e-06,-0.000267982482910156,1.24393844604492,-5.39422035217285e-06,-0.000267505645751953,1.24393749237061,-1.39474868774414e-05,-0.000267982482910156,1.24393939971924,-1.44243240356445e-05,-0.00026702880859375,1.24393844604492,-1.39474868774414e-05,-0.000268459320068359,1.24393558502197,-1.30534172058105e-05,-0.000267982482910156,1.24393844604492,-1.39474868774414e-05,-0.000267982482910156,1.24393844604492,-1.30534172058105e-05,-0.000260829925537109,1.24392032623291,-1.39474868774414e-05,-0.000260829925537109,1.24392509460449,-2.87294387817383e-05,-0.000253200531005859,1.24394130706787,-2.92062759399414e-05,-0.000253200531005859,1.24394035339355,-2.68220901489258e-05,-0.000252723693847656,1.24393749237061,-2.63452529907227e-05,-0.000253200531005859,1.24393939971924,-2.7775764465332e-05,-0.000253200531005859,1.24393939971924,-3.30209732055664e-05,-0.000246524810791016,1.24394130706787,-3.30209732055664e-05,-0.000245571136474609,1.24393939971924,-3.1590461730957e-05,-0.000245571136474609,1.24393653869629,-3.11136245727539e-05,-0.000245571136474609, -1.24393939971924,-3.25441360473633e-05,-0.000246047973632813,1.24393939971924,-2.96831130981445e-05,-0.000246524810791016,1.24392223358154,-3.01599502563477e-05,-0.000245571136474609,1.24392700195313,-3.49283218383789e-05,-0.000223636627197266,1.24394416809082,-3.44514846801758e-05,-0.000224590301513672,1.24394130706787,-3.39746475219727e-05,-0.000223159790039063,1.24393939971924,-3.49283218383789e-05,-0.000231742858886719,1.24394035339355,-3.44514846801758e-05,-0.000223159790039063,1.24394226074219,-3.93390655517578e-05,-0.000209331512451172,1.24394416809082,-4.02927398681641e-05,-0.000209808349609375,1.24394130706787,-3.77893447875977e-05,-0.000209331512451172,1.24393939971924,-3.68356704711914e-05,-0.000216484069824219,1.24394226074219,-3.82661819458008e-05,-0.000209808349609375,1.24394130706787,-3.87430191040039e-05,-0.000209808349609375,1.24392509460449,-3.77893447875977e-05,-0.000209808349609375,1.24393081665039,-4.74452972412109e-05,-0.000181198120117188,1.24394702911377,-4.69684600830078e-05,-0.000174045562744141,1.24394798278809,-4.60147857666016e-05,-0.000181198120117188,1.24394416809082,-4.60147857666016e-05,-0.000180721282958984,1.24394512176514,-4.69684600830078e-05,-0.000180721282958984,1.24394702911377,-4.64916229248047e-05,-0.000181198120117188,1.24392700195313,-4.55379486083984e-05,-0.000180721282958984,1.24393463134766,-2.49147415161133e-05,-0.000260353088378906,1.24393939971924,-2.53915786743164e-05,-0.000260353088378906,1.24393939971924,-2.49147415161133e-05,-0.000260829925537109,1.24393558502197,-2.3961067199707e-05,-0.000260353088378906,1.24393939971924,-2.49147415161133e-05,-0.000260829925537109,1.24393939971924,-2.30073928833008e-05,-0.000253200531005859,1.24392032623291,-2.3961067199707e-05,-0.000253200531005859,1.24392414093018,-1.6331672668457e-05,-0.000252723693847656,1.24391746520996,-1.72853469848633e-05,-0.000260353088378906,1.24392509460449,-1.53779983520508e-05,-0.000253200531005859,1.24390983581543,-1.20997428894043e-05,-0.000252723693847656,1.24390697479248,-5.87105751037598e-06, --0.000252723693847656,1.24390506744385,-8.73208045959473e-06,-0.000253677368164063,1.24390697479248,-1.06096267700195e-05,-0.000253200531005859,1.24390697479248,-1.06692314147949e-05,-0.000252723693847656,1.24390888214111,-3.96370887756348e-06,-0.000253200531005859,1.24390697479248,-5.39422035217285e-06,-0.000253200531005859,1.2439079284668,-7.30156898498535e-06,-0.000252723693847656,1.2439079284668,-1.34706497192383e-05,-0.000259876251220703,1.24391460418701,-1.54376029968262e-05,-0.000253200531005859,1.2439136505127,-1.34706497192383e-05,-0.000252723693847656,1.24391078948975,-1.39474868774414e-05,-0.000260353088378906,1.24391460418701,0,-0.000260829925537109,1.24391078948975,0,-0.000260353088378906,1.24390888214111,0,-0.000260353088378906,1.24390888214111,-1.57952308654785e-06,-0.000260829925537109,1.24391269683838,0,-0.000260829925537109,1.24391269683838,-6.82473182678223e-06,-0.000260353088378906,1.24391174316406,-1.01923942565918e-05,-0.000260829925537109,1.2439136505127,-7.77840614318848e-06,-0.000260829925537109,1.24391174316406,-8.73208045959473e-06,-0.000260353088378906,1.24391269683838,-3.5405158996582e-05,-0.000230789184570313,1.24394035339355,-3.63588333129883e-05,-0.000231266021728516,1.24394035339355,-3.49283218383789e-05,-0.000230789184570313,1.24393844604492,-3.34978103637695e-05,-0.000231266021728516,1.24394035339355,-3.5405158996582e-05,-0.000230789184570313,1.24394130706787,-3.39746475219727e-05,-0.000230789184570313,1.24392414093018,-3.44514846801758e-05,-0.000231266021728516,1.24392890930176,-2.92062759399414e-05,-0.000238418579101563,1.24392127990723,-2.96831130981445e-05,-0.000238895416259766,1.24392795562744,-2.7775764465332e-05,-0.000231266021728516,1.2439079284668,-2.11000442504883e-05,-0.000231266021728516,1.24390411376953,-1.15633010864258e-05,-0.000231266021728516,1.24389934539795,-1.91926956176758e-05,-0.000238895416259766,1.24390411376953,-1.96695327758789e-05,-0.000231266021728516,1.24390506744385,-2.49147415161133e-05,-0.000237941741943359,1.24390888214111,-1.01327896118164e-05,-0.000238895416259766, -1.24390029907227,-1.78217887878418e-05,-0.000238418579101563,1.24390506744385,-2.82526016235352e-05,-0.000238418579101563,1.24391651153564,-2.92062759399414e-05,-0.000238418579101563,1.24391555786133,-2.82526016235352e-05,-0.000238895416259766,1.2439136505127,-2.87294387817383e-05,-0.000237941741943359,1.24391555786133,-1.8775463104248e-05,-0.000246047973632813,1.2439079284668,-7.30156898498535e-06,-0.000246047973632813,1.24390316009521,-1.35302543640137e-05,-0.000245571136474609,1.24390602111816,-2.20537185668945e-05,-0.000253200531005859,1.2439136505127,-2.30073928833008e-05,-0.000245571136474609,1.2439136505127,-2.20537185668945e-05,-0.000245571136474609,1.24391174316406,-2.25305557250977e-05,-0.000253200531005859,1.24391269683838,-2.49147415161133e-05,-0.000245571136474609,1.24391460418701,-2.68220901489258e-05,-0.000245571136474609,1.24391460418701,-2.53915786743164e-05,-0.000245571136474609,1.2439136505127,-2.58684158325195e-05,-0.000246047973632813,1.24391460418701,-4.64916229248047e-05,-0.000187873840332031,1.24394702911377,-4.69684600830078e-05,-0.000187873840332031,1.24394416809082,-4.60147857666016e-05,-0.000188350677490234,1.2439432144165,-4.41074371337891e-05,-0.000195026397705078,1.24394512176514,-4.60147857666016e-05,-0.000187873840332031,1.24394607543945,-4.55379486083984e-05,-0.000187873840332031,1.24392604827881,-4.55379486083984e-05,-0.000188827514648438,1.24393367767334,-4.02927398681641e-05,-0.000201702117919922,1.24392414093018,-3.93390655517578e-05,-0.000202178955078125,1.24393177032471,-3.20672988891602e-05,-0.000181674957275391,1.24391031265259,-1.06692314147949e-05,-0.000195503234863281,1.24390077590942,-2.49147415161133e-05,-0.000195503234863281,1.24390363693237,-2.11000442504883e-05,-0.000188827514648438,1.24390459060669,-3.49283218383789e-05,-0.000202655792236328,1.24390935897827,-1.58548355102539e-05,-0.000202178955078125,1.24389886856079,-2.63452529907227e-05,-0.000202655792236328,1.24390459060669,-3.88622283935547e-05,-0.000209331512451172,1.24391937255859,-4.07695770263672e-05,-0.000202178955078125, -1.24391841888428,-3.95774841308594e-05,-0.000209808349609375,1.24391555786133,-4.02927398681641e-05,-0.000209331512451172,1.24391841888428,-2.96831130981445e-05,-0.000224113464355469,1.24390888214111,-1.30534172058105e-05,-0.000223159790039063,1.24390029907227,-2.20537185668945e-05,-0.000223159790039063,1.24390316009521,-3.34978103637695e-05,-0.000231266021728516,1.24391841888428,-3.44514846801758e-05,-0.000223636627197266,1.24391841888428,-3.34978103637695e-05,-0.000224113464355469,1.2439136505127,-3.44514846801758e-05,-0.000224113464355469,1.24391746520996,-3.5405158996582e-05,-0.000223636627197266,1.24391651153564,-3.73125076293945e-05,-0.000216484069824219,1.24391651153564,-3.63588333129883e-05,-0.000216960906982422,1.24391460418701,-3.63588333129883e-05,-0.000217437744140625,1.24391651153564,-4.79221343994141e-05,-0.000166416168212891,1.24393606185913,-4.79221343994141e-05,-0.000166893005371094,1.24394559860229,-4.88758087158203e-05,-0.000158786773681641,1.24393033981323,-4.69684600830078e-05,-0.000166416168212891,1.24392700195313,-4.79221343994141e-05,-0.000166893005371094,1.24392414093018,-4.64916229248047e-05,-0.000174045562744141,1.24392032623291,-4.64916229248047e-05,-0.000166416168212891,1.24392127990723,-4.50611114501953e-05,-0.000166416168212891,1.24391937255859,-4.64916229248047e-05,-0.000166893005371094,1.24392080307007,-4.55379486083984e-05,-0.000188827514648438,1.24392127990723,-4.55379486083984e-05,-0.000180721282958984,1.24392032623291,-4.69684600830078e-05,-0.000173568725585938,1.24392318725586,0,-0.00026702880859375,1.24393939971924,0,-0.000267505645751953,1.24393844604492,0,-0.00026702880859375,1.24393463134766,0,-0.00026702880859375,1.24393653869629,-5.39422035217285e-06,-0.000260353088378906,1.24391460418701,0,-0.000267982482910156,1.24391841888428,0,-0.000267982482910156,1.24391651153564,-1.06096267700195e-05,-0.000260353088378906,1.24392414093018,-1.1146068572998e-05,-0.000267505645751953,1.24393367767334,-1.29938125610352e-05,-0.000260829925537109,1.24391841888428,-9.20891761779785e-06,-0.000260829925537109, -1.24391841888428,-8.73208045959473e-06,-0.000260353088378906,1.2439136505127,-1.54376029968262e-05,-0.000259876251220703,1.24392604827881,-1.4960765838623e-05,-0.000259876251220703,1.24393367767334,-1.53779983520508e-05,-0.000260353088378906,1.24392032623291,-1.4960765838623e-05,-0.000260353088378906,1.24391746520996,-1.6331672668457e-05,-0.000252723693847656,1.24391651153564,-2.11000442504883e-05,-0.000253200531005859,1.24392509460449,-2.20537185668945e-05,-0.000260829925537109,1.24393749237061,-1.96695327758789e-05,-0.000252723693847656,1.24391841888428,-1.92523002624512e-05,-0.000253200531005859,1.24391555786133,-2.25305557250977e-05,-0.000253677368164063,1.24391841888428,-2.44379043579102e-05,-0.000252723693847656,1.24392509460449,-2.53915786743164e-05,-0.000253200531005859,1.24393463134766,-2.3961067199707e-05,-0.000246047973632813,1.24391651153564,-2.34842300415039e-05,-0.000253200531005859,1.24391937255859,-2.34842300415039e-05,-0.000253200531005859,1.24391937255859,-2.7775764465332e-05,-0.000245571136474609,1.24392509460449,-2.92062759399414e-05,-0.000246524810791016,1.24393653869629,-2.92062759399414e-05,-0.000246047973632813,1.24392032623291,-2.63452529907227e-05,-0.000245571136474609,1.24391937255859,-2.68220901489258e-05,-0.000245571136474609,1.24391841888428,-3.01599502563477e-05,-0.000246524810791016,1.24392604827881,-3.1590461730957e-05,-0.000245571136474609,1.24393653869629,-2.96831130981445e-05,-0.000238895416259766,1.24392318725586,-2.92062759399414e-05,-0.000238895416259766,1.24392032623291,-2.96831130981445e-05,-0.000238418579101563,1.24391841888428,-3.1590461730957e-05,-0.000231266021728516,1.24392890930176,-3.20672988891602e-05,-0.000231266021728516,1.24393653869629,-3.11136245727539e-05,-0.000230789184570313,1.24392127990723,-3.11136245727539e-05,-0.000231266021728516,1.24392032623291,-3.39746475219727e-05,-0.000230312347412109,1.24392318725586,-3.5405158996582e-05,-0.000231266021728516,1.24392986297607,-3.5405158996582e-05,-0.000231266021728516,1.24393844604492,-3.5405158996582e-05,-0.000223636627197266, -1.24391937255859,-3.5405158996582e-05,-0.000224113464355469,1.24392414093018,-3.5405158996582e-05,-0.000223159790039063,1.24392318725586,-3.5405158996582e-05,-0.000216960906982422,1.24393081665039,-3.49283218383789e-05,-0.000216484069824219,1.24394035339355,-3.9219856262207e-05,-0.000209331512451172,1.24392318725586,-3.63588333129883e-05,-0.000216960906982422,1.24392414093018,-3.68356704711914e-05,-0.000216484069824219,1.24391937255859,-3.87430191040039e-05,-0.000209331512451172,1.24393081665039,-3.93390655517578e-05,-0.000209808349609375,1.24394035339355,-3.9219856262207e-05,-0.000209808349609375,1.24392509460449,-3.98159027099609e-05,-0.000209331512451172,1.24392318725586,-4.02927398681641e-05,-0.000202655792236328,1.24391937255859,-4.22000885009766e-05,-0.000195503234863281,1.24393367767334,-4.22000885009766e-05,-0.000194549560546875,1.24394226074219,-4.22000885009766e-05,-0.000195026397705078,1.24392318725586,-4.26769256591797e-05,-0.000195503234863281,1.24392032623291,-4.55379486083984e-05,-0.000188827514648438,1.24392318725586,-2.05636024475098e-06,-0.000267982482910156,1.24392604827881,-1.57952308654785e-06,-0.000266551971435547,1.24393558502197,-4.93526458740234e-05,-0.000166416168212891,1.2439489364624,-4.93526458740234e-05,-0.000165939331054688,1.24394702911377,-4.74452972412109e-05,-0.000165939331054688,1.24394798278809,-4.83989715576172e-05,-0.000166893005371094,1.24394702911377,-1.53779983520508e-05,-0.000267982482910156,1.24393939971924,-1.4960765838623e-05,-0.000267505645751953,1.24393844604492,-2.25305557250977e-05,-0.000260353088378906,1.24394035339355,-2.25305557250977e-05,-0.000260353088378906,1.24393939971924,-1.10864639282227e-05,-0.000266551971435547,1.24394035339355,-1.10864639282227e-05,-0.00026702880859375,1.24393749237061,-2.63452529907227e-05,-0.000260829925537109,1.24394035339355,-2.58684158325195e-05,-0.000260829925537109,1.24393939971924,-3.1590461730957e-05,-0.000253200531005859,1.24394226074219,-3.01599502563477e-05,-0.000253677368164063,1.24394035339355,-3.25441360473633e-05,-0.000245571136474609, -1.24394035339355,-3.20672988891602e-05,-0.000246047973632813,1.24393939971924,-3.30209732055664e-05,-0.000238895416259766,1.24394416809082,-3.25441360473633e-05,-0.000231742858886719,1.24394035339355,-3.58819961547852e-05,-0.000230312347412109,1.24394226074219,-3.5405158996582e-05,-0.000231266021728516,1.24394035339355,-3.63588333129883e-05,-0.000216960906982422,1.24394416809082,-3.5405158996582e-05,-0.000216484069824219,1.24394226074219,-4.12464141845703e-05,-0.000209331512451172,1.24394416809082,-3.98159027099609e-05,-0.000209331512451172,1.2439432144165,-4.41074371337891e-05,-0.000194549560546875,1.24394512176514,-4.31537628173828e-05,-0.000195503234863281,1.24394512176514,-4.83989715576172e-05,-0.000174045562744141,1.24394798278809,-4.74452972412109e-05,-0.000174045562744141,1.24394750595093,0,-0.000274658203125,1.24393844604492,0,-0.000274658203125,1.24394035339355,0,-0.000274181365966797,1.24394035339355,-3.48687171936035e-06,-0.000274181365966797,1.24393939971924,-6.82473182678223e-06,-0.000274658203125,1.24394035339355,-9.20891761779785e-06,-0.000267505645751953,1.24393939971924,-5.87105751037598e-06,-0.000273227691650391,1.24393939971924,-1.20401382446289e-05,-0.000267505645751953,1.24393844604492,-1.29938125610352e-05,-0.000267505645751953,1.24394035339355,-1.16229057312012e-05,-0.000267505645751953,1.24394035339355,-1.44839286804199e-05,-0.00026702880859375,1.24394035339355,-1.44243240356445e-05,-0.000267982482910156,1.24394035339355,-1.39474868774414e-05,-0.00026702880859375,1.24394035339355,-1.59144401550293e-05,-0.000267982482910156,1.24394035339355,-1.68681144714355e-05,-0.000267505645751953,1.24393939971924,-1.54376029968262e-05,-0.000267982482910156,1.24393939971924,-1.96695327758789e-05,-0.000267982482910156,1.24394035339355,-2.15768814086914e-05,-0.000267982482910156,1.24394130706787,-1.92523002624512e-05,-0.00026702880859375,1.24393939971924,-2.44379043579102e-05,-0.000260353088378906,1.24394226074219,-2.49147415161133e-05,-0.000260353088378906,1.24394226074219,-2.34842300415039e-05,-0.000260829925537109, -1.24394226074219,-2.63452529907227e-05,-0.000260353088378906,1.24394226074219,-2.63452529907227e-05,-0.000260829925537109,1.24394130706787,-2.53915786743164e-05,-0.000260829925537109,1.24394035339355,-2.82526016235352e-05,-0.000259876251220703,1.24394035339355,-2.92062759399414e-05,-0.000260353088378906,1.24394130706787,-2.72989273071289e-05,-0.000260353088378906,1.24394130706787,-3.20672988891602e-05,-0.000259876251220703,1.24394130706787,-3.25441360473633e-05,-0.000253200531005859,1.24394130706787,-3.06367874145508e-05,-0.000253200531005859,1.24394416809082,-3.5405158996582e-05,-0.000253200531005859,1.24394035339355,-3.39746475219727e-05,-0.000253200531005859,1.24394035339355,-3.34978103637695e-05,-0.000252723693847656,1.24394130706787,-3.5405158996582e-05,-0.000246524810791016,1.24394226074219,-3.44514846801758e-05,-0.000245571136474609,1.24394226074219,-3.39746475219727e-05,-0.000245571136474609,1.24394130706787,-3.49283218383789e-05,-0.000246047973632813,1.24394035339355,-3.34978103637695e-05,-0.000246047973632813,1.24394416809082,-3.39746475219727e-05,-0.000245571136474609,1.24394035339355,-3.5405158996582e-05,-0.000245571136474609,1.24394130706787,-3.39746475219727e-05,-0.000238418579101563,1.24394226074219,-3.34978103637695e-05,-0.000245571136474609,1.24394416809082,-3.63588333129883e-05,-0.000237941741943359,1.24394226074219,-3.5405158996582e-05,-0.000231266021728516,1.2439432144165,-3.44514846801758e-05,-0.000237464904785156,1.2439432144165,-3.68356704711914e-05,-0.000231266021728516,1.24394035339355,-3.68356704711914e-05,-0.000230789184570313,1.24394226074219,-3.63588333129883e-05,-0.000230312347412109,1.24394226074219,-3.77893447875977e-05,-0.000230312347412109,1.24394226074219,-3.63588333129883e-05,-0.000231742858886719,1.24394226074219,-3.68356704711914e-05,-0.000231742858886719,1.24394416809082,-3.87430191040039e-05,-0.000223159790039063,1.24394130706787,-3.73125076293945e-05,-0.000224113464355469,1.24394416809082,-3.63588333129883e-05,-0.000223159790039063,1.24394512176514,-4.02927398681641e-05,-0.000216960906982422, -1.24394512176514,-3.93390655517578e-05,-0.000216484069824219,1.24394416809082,-3.82661819458008e-05,-0.000216960906982422,1.24394416809082,-4.22000885009766e-05,-0.000209808349609375,1.2439432144165,-4.17232513427734e-05,-0.000209808349609375,1.24394416809082,-4.07695770263672e-05,-0.000209808349609375,1.24394512176514,-4.36305999755859e-05,-0.000209331512451172,1.24394512176514,-4.22000885009766e-05,-0.000209331512451172,1.24394512176514,-4.22000885009766e-05,-0.000209331512451172,1.24394416809082,-4.50611114501953e-05,-0.000202178955078125,1.24394607543945,-4.45842742919922e-05,-0.000202655792236328,1.24394607543945,-4.31537628173828e-05,-0.000201702117919922,1.24394512176514,-4.79221343994141e-05,-0.000194549560546875,1.24394607543945,-4.69684600830078e-05,-0.000194549560546875,1.24394702911377,-4.55379486083984e-05,-0.000195026397705078,1.24394702911377,-4.98294830322266e-05,-0.000187397003173828,1.24394607543945,-4.93526458740234e-05,-0.000188350677490234,1.24394512176514,-4.79221343994141e-05,-0.000188350677490234,1.24394702911377,-4.93526458740234e-05,-0.000180721282958984,1.24394798278809,-5.22136688232422e-05,-0.000181198120117188,1.24394702911377,-4.98294830322266e-05,-0.000173568725585938,1.2439489364624,-4.98294830322266e-05,-0.000180721282958984,1.24394798278809,-5.31673431396484e-05,-0.000173568725585938,1.24394798278809,-5.03063201904297e-05,-0.000166416168212891,1.24394989013672,-5.03063201904297e-05,-0.000173568725585938,1.24394845962524,-5.26905059814453e-05,-0.000165462493896484,1.24394941329956,-5.12599945068359e-05,-0.000166416168212891,1.24395084381104,-5.12599945068359e-05,-0.000166893005371094,1.24394989013672,-4.4405460357666e-06,-0.000274181365966797,1.24394035339355,-2.5331974029541e-06,-0.000274181365966797,1.24394130706787,0,-0.000273227691650391,1.24394035339355,-2.5331974029541e-06,-0.000274181365966797,1.24393939971924,-2.5331974029541e-06,-0.000273704528808594,1.24393939971924,-1.06692314147949e-05,-0.000274658203125,1.24394130706787,-7.30156898498535e-06,-0.000274658203125,1.24394035339355, --1.44839286804199e-05,-0.000267505645751953,1.24394035339355,-1.29938125610352e-05,-0.000274181365966797,1.24393939971924,-1.49011611938477e-05,-0.00026702880859375,1.24393939971924,-1.4960765838623e-05,-0.00026702880859375,1.24393844604492,-1.78217887878418e-05,-0.000267505645751953,1.24393939971924,-1.58548355102539e-05,-0.000267505645751953,1.24393939971924,-2.30073928833008e-05,-0.00026702880859375,1.24393939971924,-2.06232070922852e-05,-0.000267505645751953,1.24393939971924,-2.68220901489258e-05,-0.000260829925537109,1.24394130706787,-2.53915786743164e-05,-0.000267505645751953,1.24394130706787,-2.72989273071289e-05,-0.000260829925537109,1.24394035339355,-2.68220901489258e-05,-0.000260829925537109,1.24394130706787,-3.1590461730957e-05,-0.000259876251220703,1.24394130706787,-2.92062759399414e-05,-0.000260353088378906,1.24394226074219,-3.5405158996582e-05,-0.000253200531005859,1.24394226074219,-3.34978103637695e-05,-0.000260829925537109,1.24394226074219,-3.68356704711914e-05,-0.000253200531005859,1.24394226074219,-3.68356704711914e-05,-0.000252723693847656,1.24394226074219,-3.58819961547852e-05,-0.000245571136474609,1.24394226074219,-3.63588333129883e-05,-0.000253677368164063,1.24393939971924,-3.73125076293945e-05,-0.000245571136474609,1.24394226074219,-3.63588333129883e-05,-0.000245571136474609,1.24394035339355,-3.73125076293945e-05,-0.000238895416259766,1.2439432144165,-3.68356704711914e-05,-0.000246047973632813,1.24394130706787,-3.82661819458008e-05,-0.000238895416259766,1.24394130706787,-3.77893447875977e-05,-0.000237941741943359,1.24394130706787,-3.82661819458008e-05,-0.000231266021728516,1.24394226074219,-3.82661819458008e-05,-0.000230789184570313,1.24394226074219,-3.95774841308594e-05,-0.000230312347412109,1.24394226074219,-3.87430191040039e-05,-0.000231266021728516,1.24394416809082,-4.17232513427734e-05,-0.000224113464355469,1.24394416809082,-4.02927398681641e-05,-0.000230789184570313,1.2439432144165,-4.31537628173828e-05,-0.000216484069824219,1.24394416809082,-4.26769256591797e-05,-0.000216484069824219, -1.24394416809082,-4.36305999755859e-05,-0.000209331512451172,1.24394512176514,-4.36305999755859e-05,-0.000216960906982422,1.24394416809082,-4.64916229248047e-05,-0.000209331512451172,1.24394512176514,-4.45842742919922e-05,-0.000209808349609375,1.24394416809082,-4.79221343994141e-05,-0.000202655792236328,1.24394512176514,-4.74452972412109e-05,-0.000201702117919922,1.24394607543945,-5.12599945068359e-05,-0.000194549560546875,1.24394702911377,-4.93526458740234e-05,-0.000194549560546875,1.24394607543945,-5.17368316650391e-05,-0.000188350677490234,1.24394512176514,-5.12599945068359e-05,-0.000188350677490234,1.24394702911377,-5.36441802978516e-05,-0.000188350677490234,1.24394798278809,-5.41210174560547e-05,-0.000173568725585938,1.24394798278809,-5.41210174560547e-05,-0.000180721282958984,1.24394798278809,-5.55515289306641e-05,-0.000166416168212891,1.24394989013672,-5.50746917724609e-05,-0.000173568725585938,1.24394941329956,-5.31673431396484e-05,-0.000166893005371094,1.2439489364624,-5.45978546142578e-05,-0.000165939331054688,1.24394989013672,-3.01003456115723e-06,-0.000267505645751953,1.24391269683838,-2.5331974029541e-06,-0.000260829925537109,1.24391555786133,-4.64916229248047e-05,-0.000158786773681641,1.24392175674438,-4.55379486083984e-05,-0.000174045562744141,1.24391841888428,-4.55379486083984e-05,-0.000173568725585938,1.24391841888428,-4.36305999755859e-05,-0.000188827514648438,1.24391841888428,-4.45842742919922e-05,-0.000188350677490234,1.24391937255859,-4.12464141845703e-05,-0.000202655792236328,1.24391651153564,-4.12464141845703e-05,-0.000202178955078125,1.24391651153564,-3.82661819458008e-05,-0.000209808349609375,1.24391460418701,-3.87430191040039e-05,-0.000209331512451172,1.24391746520996,-3.49283218383789e-05,-0.000223636627197266,1.2439136505127,-3.49283218383789e-05,-0.000224590301513672,1.24391651153564,-3.20672988891602e-05,-0.000230312347412109,1.2439136505127,-3.25441360473633e-05,-0.000231266021728516,1.24391746520996,-2.96831130981445e-05,-0.000238895416259766,1.24391269683838,-2.92062759399414e-05,-0.000238895416259766, -1.24391460418701,-2.68220901489258e-05,-0.000238418579101563,1.24391269683838,-2.7775764465332e-05,-0.000238418579101563,1.24391555786133,-2.3961067199707e-05,-0.000246047973632813,1.2439136505127,-2.3961067199707e-05,-0.000246047973632813,1.24391269683838,-2.0146369934082e-05,-0.000252723693847656,1.24391174316406,-2.11000442504883e-05,-0.000252723693847656,1.24391460418701,-1.6331672668457e-05,-0.000253677368164063,1.24391078948975,-1.6331672668457e-05,-0.000253200531005859,1.2439136505127,-1.06692314147949e-05,-0.000260353088378906,1.24391078948975,-1.15633010864258e-05,-0.000260353088378906,1.24391269683838,-3.96370887756348e-06,-0.000260353088378906,1.24391269683838,-5.39422035217285e-06,-0.000260829925537109,1.24391078948975,-5.39422035217285e-06,-0.000260353088378906,1.24391174316406,-2.5331974029541e-06,-0.000267505645751953,1.24391937255859,-3.01003456115723e-06,-0.00026702880859375,1.24391460418701,-2.5331974029541e-06,-0.000260353088378906,1.24391746520996,-4.22000885009766e-05,-0.000166893005371094,1.2439169883728,-4.22000885009766e-05,-0.000173568725585938,1.24391555786133,-4.41074371337891e-05,-0.000166893005371094,1.24391794204712,-3.91006469726563e-05,-0.000202178955078125,1.24391174316406,-4.07695770263672e-05,-0.000194549560546875,1.2439136505127,-4.12464141845703e-05,-0.000195026397705078,1.24391460418701,-3.39746475219727e-05,-0.000224590301513672,1.24391078948975,-3.5405158996582e-05,-0.000216960906982422,1.2439136505127,-3.49283218383789e-05,-0.000224590301513672,1.24391269683838,-2.87294387817383e-05,-0.000237464904785156,1.24391269683838,-3.01599502563477e-05,-0.000230312347412109,1.24391078948975,-2.96831130981445e-05,-0.000230789184570313,1.24391174316406,-2.25305557250977e-05,-0.000246047973632813,1.24391078948975,-2.44379043579102e-05,-0.000245571136474609,1.24391078948975,-2.3961067199707e-05,-0.000246047973632813,1.24391078948975,-1.44839286804199e-05,-0.000252723693847656,1.24391078948975,-1.68085098266602e-05,-0.000253200531005859,1.24391078948975,-1.63912773132324e-05,-0.000253677368164063, -1.24391078948975,-3.96370887756348e-06,-0.000260353088378906,1.24390888214111,-7.30156898498535e-06,-0.000260353088378906,1.24390983581543,-6.3478946685791e-06,-0.000260829925537109,1.24390983581543,-3.87430191040039e-05,-0.000158786773681641,1.24391460418701,-3.87430191040039e-05,-0.000173568725585938,1.2439136505127,-3.91006469726563e-05,-0.000180721282958984,1.2439136505127,-3.82661819458008e-05,-0.000209331512451172,1.24391174316406,-3.87430191040039e-05,-0.000202178955078125,1.2439136505127,-3.68356704711914e-05,-0.000216484069824219,1.24391174316406,-3.1590461730957e-05,-0.000223636627197266,1.24391174316406,-3.30209732055664e-05,-0.000223636627197266,1.24391269683838,-3.11136245727539e-05,-0.000230789184570313,1.24391078948975,-2.68220901489258e-05,-0.000238895416259766,1.24390888214111,-2.7775764465332e-05,-0.000237941741943359,1.24391078948975,-2.53915786743164e-05,-0.000238895416259766,1.24391078948975,-2.02655792236328e-05,-0.000253200531005859,1.24391078948975,-2.15768814086914e-05,-0.000245571136474609,1.24391078948975,-1.82986259460449e-05,-0.000253200531005859,1.24391078948975,-1.06692314147949e-05,-0.000253200531005859,1.24391078948975,-1.25765800476074e-05,-0.000253200531005859,1.24390888214111,-6.3478946685791e-06,-0.000260353088378906,1.2439079284668,-8.73208045959473e-06,-0.000260829925537109,1.24391078948975,-3.01003456115723e-06,-0.000260353088378906,1.24390888214111,-3.96370887756348e-06,-0.000259876251220703,1.2439079284668,-2.05636024475098e-06,-0.000253677368164063,1.24390411376953,0,-0.000253200531005859,1.24390506744385,-2.5331974029541e-06,-0.000253200531005859,1.2439022064209,-2.5331974029541e-06,-0.000253200531005859,1.24390506744385,-3.48687171936035e-06,-0.000246047973632813,1.2439022064209,-3.01003456115723e-06,-0.000246047973632813,1.24390316009521,-3.96370887756348e-06,-0.000245571136474609,1.24390029907227,-3.96370887756348e-06,-0.000246047973632813,1.24390125274658,-4.94718551635742e-06,-0.000238895416259766,1.24389934539795,-4.4405460357666e-06,-0.000238418579101563,1.24390125274658, --5.39422035217285e-06,-0.000231742858886719,1.24389839172363,-4.91738319396973e-06,-0.000230312347412109,1.24389743804932,-6.3478946685791e-06,-0.000216960906982422,1.24389743804932,-5.87105751037598e-06,-0.000224113464355469,1.243896484375,-6.82473182678223e-06,-0.000209808349609375,1.24389743804932,-7.30156898498535e-06,-0.000202655792236328,1.24389886856079,0,-0.00026702880859375,1.24390411376953,0,-0.000267982482910156,1.24390888214111,-2.5331974029541e-06,-0.000274658203125,1.24393844604492,0,-0.000274181365966797,1.24393939971924,0,-0.000274181365966797,1.24393939971924,-2.05636024475098e-06,-0.00026702880859375,1.24393939971924,-2.05636024475098e-06,-0.000274181365966797,1.24393939971924,-2.04890966415405e-06,-0.000266551971435547,1.24393844604492,0,-0.000267505645751953,1.24392604827881,-2.5331974029541e-06,-0.000259876251220703,1.24390888214111,-2.5331974029541e-06,-0.000260829925537109,1.2439136505127,-2.5331974029541e-06,-0.000260829925537109,1.24390983581543,3.66568565368652e-06,-0.000267982482910156,1.24390506744385,3.1888484954834e-06,-0.000274658203125,1.24393844604492,1.2814998626709e-06,-0.000274181365966797,1.24393939971924,2.71201133728027e-06,-0.00026702880859375,1.24393939971924,2.71201133728027e-06,-0.000274181365966797,1.24393939971924,2.23517417907715e-06,-0.000266551971435547,1.24393844604492,0,-0.000267505645751953,1.24392604827881,3.1888484954834e-06,-0.000259876251220703,1.24390888214111,3.1888484954834e-06,-0.000260829925537109,1.2439136505127,3.1888484954834e-06,-0.000260829925537109,1.24390983581543,5.50746917724609e-05,-0.000159740447998047,1.24394750595093,5.03063201904297e-05,-0.000159263610839844,1.24394750595093,5.22136688232422e-05,-0.000158786773681641,1.24394989013672,5.31673431396484e-05,-0.000159740447998047,1.2439489364624,-5.45978546142578e-05,-0.000159740447998047,1.24394750595093,-4.98294830322266e-05,-0.000159263610839844,1.24394750595093,-5.12599945068359e-05,-0.000158786773681641,1.24394989013672,-5.31673431396484e-05,-0.000159740447998047,1.2439489364624,5.07831573486328e-05, --0.000158786773681641,1.24394989013672,4.79221343994141e-05,-0.000159263610839844,1.24392509460449,3.94582748413086e-05,-0.000152111053466797,1.24391651153564,-3.87430191040039e-05,-0.000151157379150391,1.24391555786133,-4.60147857666016e-05,-0.000152111053466797,1.24392032623291,-5.03063201904297e-05,-0.000158786773681641,1.24394989013672,-4.74452972412109e-05,-0.000158786773681641,1.24392652511597,-4.79221343994141e-05,-0.000159263610839844,1.24392509460449,4.64916229248047e-05,-0.000158786773681641,1.24392175674438,4.64916229248047e-05,-0.000152111053466797,1.24392032623291,1.60336494445801e-05,-0.000173568725585938,1.24390840530396,0,-0.000216484069824219,1.24389743804932,7.0035457611084e-06,-0.000217914581298828,1.24389743804932,-6.82473182678223e-06,-0.000217914581298828,1.24389743804932,0,-1.57356262207031e-05,0.0760030746459961,0,-1.66893005371094e-05,0.0643405914306641,0,-0.000312328338623047,1.17879199981689,0,-0.00031280517578125,1.20896816253662,0,-1.62124633789063e-05,0.0695409774780273,0,-0.00031280517578125,1.19871711730957,0,-1.57356262207031e-05,0.0736579895019531,0,-0.0003204345703125,1.21775341033936,0,-7.62939453125e-06,0.0460968017578125,0,-0.000296115875244141,1.16701126098633,0,-1.62124633789063e-05,0.0615234375,0,-0.000304698944091797,1.16678333282471,0,-8.58306884765625e-06,0.0214462280273438,0,-0.000296592712402344,1.17689323425293,0,-0.000249862670898438,1.22102737426758,0,-0.00030517578125,1.23212814331055,0,-0.000280380249023438,1.23245620727539,0,-0.00030517578125,1.19221687316895,0,0,0.0106287002563477,0,-0.000311851501464844,1.20884037017822,0,-0.000313758850097656,1.22324657440186,0,-0.000113487243652344,0.939410209655762,0,-0.000200271606445313,1.19356870651245,0,-8.10623168945313e-05,0.914405584335327,0,-5.7220458984375e-05,0.819705963134766,0,0,0.0237765312194824,0,-9.63211059570313e-05,0.868377923965454,0,-2.43186950683594e-05,0.094050407409668,0,-1.57356262207031e-05,0.0702848434448242,2.52723693847656e-05,-0.000128269195556641,0.552277565002441,2.69412994384766e-05,-0.000128746032714844, -0.547085762023926,2.00271606445313e-05,-0.000113010406494141,0.478952407836914,1.85966491699219e-05,-0.000104904174804688,0.453701019287109,1.07288360595703e-05,-8.0108642578125e-05,0.317276000976563,1.04904174804688e-05,-8.0108642578125e-05,0.334036827087402,5.7220458984375e-06,-5.57899475097656e-05,0.215373992919922,4.52995300292969e-06,-6.43730163574219e-05,0.236334800720215,2.74181365966797e-06,-4.00543212890625e-05,0.139963150024414,2.50339508056641e-06,-4.00543212890625e-05,0.170336723327637,0,-2.43186950683594e-05,0.0910215377807617,0,-3.24249267578125e-05,0.123570442199707,1.40666961669922e-05,-9.63211059570313e-05,0.385599136352539,1.40666961669922e-05,-9.67979431152344e-05,0.385762214660645,2.62260437011719e-05,-0.000128269195556641,0.54927921295166,2.74181365966797e-05,-0.000135898590087891,0.592172622680664,3.24249267578125e-05,-0.000144481658935547,0.631264686584473,3.00407409667969e-05,-0.000143527984619141,0.643608093261719,3.64780426025391e-05,-0.000169277191162109,0.733232498168945,3.38554382324219e-05,-0.000168800354003906,0.748307228088379,3.86238098144531e-05,-0.000193119049072266,0.829555511474609,3.50475311279297e-05,-0.000184059143066406,0.789841651916504,3.76701354980469e-05,-0.000225067138671875,0.955807685852051,4.12464141845703e-05,-0.000225067138671875,0.990911483764648,3.57627868652344e-05,-0.000248908996582031,1.02203464508057,3.93390655517578e-05,-0.000241279602050781,1.02534770965576,3.4332275390625e-05,-0.000257015228271484,1.06288146972656,3.19480895996094e-05,-0.000264644622802734,1.07442855834961,2.95639038085938e-05,-0.000280380249023438,1.11305522918701,2.70605087280273e-05,-0.000288963317871094,1.14713191986084,2.24113464355469e-05,-0.000296115875244141,1.15237712860107,1.94311141967773e-05,-0.000304698944091797,1.18679618835449,1.47819519042969e-05,-0.000304698944091797,1.16215515136719,1.22785568237305e-05,-0.000312328338623047,1.20582866668701,6.88433647155762e-06,-0.00031280517578125,1.1740665435791,5.81145286560059e-06,-0.000312328338623047,1.21248912811279,0,-2.43186950683594e-05, -0.0816049575805664,0,-3.19480895996094e-05,0.107373237609863,2.98023223876953e-06,-4.00543212890625e-05,0.156864166259766,5.7220458984375e-06,-5.57899475097656e-05,0.229340553283691,1.10864639282227e-05,-8.7738037109375e-05,0.33830451965332,1.57356262207031e-05,-0.000104427337646484,0.412177085876465,2.00271606445313e-05,-0.000113010406494141,0.477339744567871,2.55107879638672e-05,-0.000128269195556641,0.548909187316895,2.62260437011719e-05,-0.000127792358398438,0.557039260864258,3.07559967041016e-05,-0.000144481658935547,0.639883995056152,3.50475311279297e-05,-0.000169277191162109,0.739337921142578,3.71932983398438e-05,-0.000185012817382813,0.812287330627441,4.14848327636719e-05,-0.000225067138671875,0.962992668151855,3.69548797607422e-05,-0.000240802764892578,1.01008701324463,3.40938568115234e-05,-0.000264644622802734,1.08342838287354,2.84910202026367e-05,-0.000288009643554688,1.14228343963623,2.11000442504883e-05,-0.000304698944091797,1.18206310272217,1.34110450744629e-05,-0.000312328338623047,1.20706653594971,6.43730163574219e-06,-0.000320911407470703,1.2162561416626,0,-2.33650207519531e-05,0.089935302734375,0,-3.19480895996094e-05,0.117851257324219,2.86102294921875e-06,-4.00543212890625e-05,0.165535926818848,5.00679016113281e-06,-5.62667846679688e-05,0.234695434570313,1.10864639282227e-05,-8.05854797363281e-05,0.337352752685547,1.35898590087891e-05,-9.72747802734375e-05,0.397357940673828,1.95503234863281e-05,-0.000113010406494141,0.46373176574707,2.52723693847656e-05,-0.000128746032714844,0.555098533630371,2.78949737548828e-05,-0.000135898590087891,0.594005584716797,3.00407409667969e-05,-0.000152111053466797,0.649228096008301,3.57627868652344e-05,-0.000168800354003906,0.746655464172363,3.60012054443359e-05,-0.000176906585693359,0.783404350280762,3.76701354980469e-05,-0.000225067138671875,0.954025268554688,3.71932983398438e-05,-0.000240802764892578,1.0140266418457,3.26633453369141e-05,-0.000264644622802734,1.06492137908936,2.72989273071289e-05,-0.000288963317871094,1.13485908508301,2.00271606445313e-05,-0.000303745269775391, -1.18015003204346,1.34110450744629e-05,-0.000312328338623047,1.21591281890869,6.25848770141602e-06,-0.0003204345703125,1.22266960144043,0,-1.62124633789063e-05,0.0514230728149414,0,-1.66893005371094e-05,0.0698041915893555,1.78813934326172e-06,-2.43186950683594e-05,0.10264778137207,3.69548797607422e-06,-4.00543212890625e-05,0.147957801818848,6.67572021484375e-06,-4.81605529785156e-05,0.199539184570313,9.77516174316406e-06,-6.4849853515625e-05,0.252453804016113,1.43051147460938e-05,-8.0108642578125e-05,0.326485633850098,2.16960906982422e-05,-9.58442687988281e-05,0.411888122558594,2.88486480712891e-05,-0.000112533569335938,0.511150360107422,3.45706939697266e-05,-0.000136852264404297,0.611437797546387,4.00543212890625e-05,-0.00016021728515625,0.724087715148926,4.43458557128906e-05,-0.000192642211914063,0.849743843078613,4.69684600830078e-05,-0.000216484069824219,0.983536720275879,4.12464141845703e-05,-0.000225067138671875,0.982113838195801,6.9737434387207e-06,-0.000297069549560547,1.16069984436035,1.46627426147461e-05,-0.000288486480712891,1.1409273147583,2.21729278564453e-05,-0.000288963317871094,1.13091659545898,2.99215316772461e-05,-0.000272274017333984,1.10583209991455,3.67164611816406e-05,-0.000248908996582031,1.05336761474609,0,-1.57356262207031e-05,0.0681266784667969,0,-2.43186950683594e-05,0.0901050567626953,2.74181365966797e-06,-3.19480895996094e-05,0.131949424743652,4.76837158203125e-06,-4.81605529785156e-05,0.193022727966309,1.07288360595703e-05,-8.0108642578125e-05,0.328660011291504,1.57356262207031e-05,-0.000103473663330078,0.413417816162109,2.09808349609375e-05,-0.000120639801025391,0.495283126831055,2.74181365966797e-05,-0.000128269195556641,0.563299179077148,2.83718109130859e-05,-0.000128746032714844,0.552380561828613,3.21865081787109e-05,-0.000135898590087891,0.615772247314453,3.64780426025391e-05,-0.00016021728515625,0.717334747314453,4.22000885009766e-05,-0.000200748443603516,0.87413215637207,4.55379486083984e-05,-0.000232696533203125,1.02119064331055,4.02927398681641e-05,-0.000240802764892578,1.03239250183105, -3.50475311279297e-05,-0.000256538391113281,1.05556201934814,2.93254852294922e-05,-0.000272274017333984,1.09744834899902,2.22921371459961e-05,-0.000288963317871094,1.13320827484131,1.48415565490723e-05,-0.000304698944091797,1.16177368164063,7.03334808349609e-06,-0.000304698944091797,1.17222881317139,0,-8.58306884765625e-06,0.0238962173461914,0,-8.10623168945313e-06,0.0379571914672852,0,-1.66893005371094e-05,0.0617685317993164,2.26497650146484e-06,-2.43186950683594e-05,0.0911188125610352,4.05311584472656e-06,-3.24249267578125e-05,0.116751670837402,5.00679016113281e-06,-3.19480895996094e-05,0.134370803833008,1.1444091796875e-05,-5.67436218261719e-05,0.233271598815918,2.00271606445313e-05,-8.0108642578125e-05,0.347070693969727,4.93526458740234e-05,-0.000208854675292969,0.960766792297363,5.10215759277344e-05,-0.000192165374755859,0.886004447937012,4.67300415039063e-05,-0.00016021728515625,0.748448371887207,4.14848327636719e-05,-0.000135898590087891,0.634337425231934,3.00407409667969e-05,-0.000104427337646484,0.488685607910156,8.2850456237793e-06,-0.00029754638671875,1.17185878753662,1.68085098266602e-05,-0.000288963317871094,1.15626525878906,2.33650207519531e-05,-0.000280380249023438,1.12924480438232,3.07559967041016e-05,-0.000264167785644531,1.09039974212646,3.71932983398438e-05,-0.000240325927734375,1.04025840759277,4.36305999755859e-05,-0.000225067138671875,0.980501174926758,2.72989273071289e-05,-0.000225067138671875,1.19277191162109,3.76701354980469e-05,-0.000281333923339844,1.21798324584961,4.05311584472656e-05,-0.000192642211914063,1.14468717575073,5.62667846679688e-05,-0.000247955322265625,1.19052314758301,5.57899475097656e-05,-0.000151634216308594,1.06217384338379,7.43865966796875e-05,-0.000208854675292969,1.13958263397217,6.67572021484375e-05,-0.000104904174804688,0.925721645355225,8.72611999511719e-05,-0.000161170959472656,1.04917287826538,5.96046447753906e-05,-5.62667846679688e-05,0.704452276229858,8.58306884765625e-05,-0.000112056732177734,0.894100189208984,1.57356262207031e-05,-7.62939453125e-06,0.158694058656693, -5.81741333007813e-05,-4.05311584472656e-05,0.521697521209717,4.62532043457031e-05,-3.24249267578125e-05,0.406623601913452,6.29425048828125e-05,-0.000128746032714844,1.00229501724243,8.29696655273438e-05,-0.000184059143066406,1.10058259963989,3.67164611816406e-05,-2.47955322265625e-05,0.375275492668152,7.00950622558594e-05,-6.43730163574219e-05,0.654924392700195,3.36170196533203e-05,-0.000264167785644531,1.21697521209717,5.12599945068359e-05,-0.000234603881835938,1.18646669387817,6.98566436767578e-05,-0.000191688537597656,1.12923288345337,7.91549682617188e-05,-0.000168800354003906,1.08471918106079,8.53538513183594e-05,-0.0001373291015625,1.02442216873169,8.10623168945313e-05,-8.86917114257813e-05,0.837188005447388,5.91278076171875e-05,-4.05311584472656e-05,0.551718473434448,4.33921813964844e-05,-2.33650207519531e-05,0.390375137329102,3.00407409667969e-05,-1.57356262207031e-05,0.264148354530334,2.62260437011719e-06,-1.59740447998047e-05,0.0692319869995117,7.15255737304688e-06,-3.19480895996094e-05,0.144103050231934,1.71661376953125e-05,-6.43730163574219e-05,0.280312538146973,3.29017639160156e-05,-0.000104427337646484,0.486681938171387,4.86373901367188e-05,-0.000144481658935547,0.696719169616699,5.48362731933594e-05,-0.000168323516845703,0.828635215759277,5.62667846679688e-05,-0.000192165374755859,0.91729736328125,5.19752502441406e-05,-0.000215530395507813,0.98664665222168,4.74452972412109e-05,-0.000231742858886719,1.04394721984863,4.12464141845703e-05,-0.000257492065429688,1.09147167205811,3.29017639160156e-05,-0.000273704528808594,1.12949180603027,2.53915786743164e-05,-0.000288963317871094,1.15814208984375,1.77621841430664e-05,-0.00029754638671875,1.17764282226563,9.14931297302246e-06,-0.000304222106933594,1.18869209289551,0,-8.10623168945313e-06,0.0195541381835938,0,0,0.0111007690429688,0,0,0.00942897796630859,0,-7.86781311035156e-06,0.0389957427978516,0,-8.10623168945313e-06,0.0388212203979492,6.67572021484375e-06,-2.43186950683594e-05,0.115010261535645,4.29153442382813e-06,-1.59740447998047e-05,0.0686635971069336, -1.19209289550781e-05,-4.00543212890625e-05,0.178247451782227,2.38418579101563e-05,-6.34193420410156e-05,0.32042407989502,1.66893005371094e-05,-4.00543212890625e-05,0.201006889343262,7.15255737304688e-06,-1.62124633789063e-05,0.0911636352539063,1.76429748535156e-05,-3.21865081787109e-05,0.191603183746338,7.62939453125e-06,-1.59740447998047e-05,0.0878920555114746,1.47819519042969e-05,-2.40802764892578e-05,0.153638362884521,5.7220458984375e-06,-8.22544097900391e-06,0.061622142791748,1.00135803222656e-05,-1.60932540893555e-05,0.0873861312866211,2.71797180175781e-05,-6.34193420410156e-05,0.329707622528076,2.62260437011719e-05,-4.02927398681641e-05,0.262675285339355,2.95639038085938e-05,-5.60283660888672e-05,0.310272216796875,2.05039978027344e-05,-2.40802764892578e-05,0.190109729766846,3.62396240234375e-05,-9.58442687988281e-05,0.486039161682129,3.76701354980469e-05,-5.57899475097656e-05,0.38009786605835,4.00543212890625e-05,-7.20024108886719e-05,0.438644886016846,3.95774841308594e-05,-8.82148742675781e-05,0.473007678985596,5.19752502441406e-05,-8.86917114257813e-05,0.569621086120605,5.00679016113281e-05,-6.43730163574219e-05,0.497757911682129,5.24520874023438e-05,-0.000103950500488281,0.621268272399902,5.10215759277344e-05,-0.000128269195556641,0.6589674949646,6.4849853515625e-05,-0.0001678466796875,0.871609687805176,6.62803649902344e-05,-0.000144004821777344,0.816267013549805,6.58035278320313e-05,-0.000120162963867188,0.759854316711426,6.43730163574219e-05,-9.67979431152344e-05,0.689586639404297,6.72340393066406e-05,-0.000184535980224609,0.946774482727051,7.72476196289063e-05,-0.000193595886230469,1.04843187332153,7.96318054199219e-05,-0.000168323516845703,0.99318790435791,6.41345977783203e-05,-0.000209808349609375,1.01197242736816,7.05718994140625e-05,-0.000218391418457031,1.0947904586792,4.79221343994141e-05,-0.00017547607421875,1.10870504379272,6.07967376708984e-05,-0.000208854675292969,1.16220235824585,6.50882720947266e-05,-0.000234603881835938,1.16876316070557,5.79357147216797e-05,-0.000226020812988281,1.06503677368164, -6.27040863037109e-05,-0.000232696533203125,1.13201808929443,5.14984130859375e-05,-0.000240325927734375,1.10793495178223,5.45978546142578e-05,-0.000248908996582031,1.16104412078857,3.38554382324219e-05,-0.000215530395507813,1.17214632034302,4.29153442382813e-05,-0.000249862670898438,1.204270362854,4.72068786621094e-05,-0.000264167785644531,1.20651054382324,4.69684600830078e-05,-0.000273704528808594,1.18332481384277,4.43458557128906e-05,-0.000264167785644531,1.14196109771729,3.57627868652344e-05,-0.000280380249023438,1.1682186126709,3.814697265625e-05,-0.000288963317871094,1.1998815536499,2.03847885131836e-05,-0.000242233276367188,1.20726013183594,2.5629997253418e-05,-0.000271797180175781,1.22544574737549,2.75373458862305e-05,-0.000288963317871094,1.22561740875244,1.35302543640137e-05,-0.000241279602050781,1.21601581573486,1.68681144714355e-05,-0.000280380249023438,1.23017311096191,1.8775463104248e-05,-0.00029754638671875,1.22993278503418,1.8775463104248e-05,-0.00030517578125,1.19991397857666,2.75373458862305e-05,-0.00029754638671875,1.18733692169189,2.80141830444336e-05,-0.00029754638671875,1.21148109436035,1.8775463104248e-05,-0.00030517578125,1.21866798400879,6.64591789245605e-06,-0.000247955322265625,1.22001838684082,8.73208045959473e-06,-0.000280380249023438,1.23205184936523,9.62615013122559e-06,-0.00029754638671875,1.23173999786377,9.95397567749023e-06,-0.00030517578125,1.20674514770508,1.0371208190918e-05,-0.000304222106933594,1.2222261428833,8.0108642578125e-05,-0.000144481658935547,0.93372631072998,7.77244567871094e-05,-0.000120162963867188,0.861980438232422,6.58035278320313e-05,-8.0108642578125e-05,0.827769041061401,8.63075256347656e-05,-0.000113487243652344,0.943451404571533,8.82148742675781e-05,-0.000136852264404297,0.982040882110596,7.43865966796875e-05,-9.67979431152344e-05,0.772276401519775,5.00679016113281e-05,-4.10079956054688e-05,0.553889036178589,7.20024108886719e-05,-6.34193420410156e-05,0.705022096633911,7.96318054199219e-05,-8.86917114257813e-05,0.783454418182373,6.96182250976563e-05,-7.29560852050781e-05, -0.665465354919434,6.15119934082031e-05,-7.20024108886719e-05,0.601653099060059,6.00814819335938e-05,-5.67436218261719e-05,0.550532102584839,5.53131103515625e-05,-5.57899475097656e-05,0.501209259033203,4.33921813964844e-05,-4.83989715576172e-05,0.408789157867432,3.19480895996094e-05,-4.00543212890625e-05,0.300074100494385,5.05447387695313e-05,-3.19480895996094e-05,0.442075490951538,4.48226928710938e-05,-3.21865081787109e-05,0.399245738983154,3.57627868652344e-05,-3.21865081787109e-05,0.312597513198853,2.43186950683594e-05,-2.40802764892578e-05,0.206807374954224,1.04904174804688e-05,-7.98702239990234e-06,0.100156307220459,0,0,0.00982844829559326,0,0,0.00737476348876953,0,0,0.0248358249664307,2.86102294921875e-06,0,0.019542932510376,5.7220458984375e-06,0,0.0476725101470947,5.7220458984375e-06,0,0.0398997068405151,1.04904174804688e-05,0,0.0786301046609879,8.58306884765625e-06,0,0.06882244348526,1.43051147460938e-05,-8.10623168945313e-06,0.115438342094421,1.43051147460938e-05,0,0.102231532335281,1.85966491699219e-05,-8.10623168945313e-06,0.155161201953888,1.52587890625e-05,-7.62939453125e-06,0.129793703556061,0,0,0.0104916095733643,4.76837158203125e-06,0,0.0262645483016968,6.67572021484375e-06,0,0.0504716634750366,1.1444091796875e-05,0,0.0829273536801338,1.62124633789063e-05,-7.86781311035156e-06,0.120046675205231,2.00271606445313e-05,-7.86781311035156e-06,0.155484199523926,0,0,0.00169968605041504,0,0,0.00557887554168701,0,0,0.0139440298080444,3.814697265625e-06,0,0.0288017988204956,5.7220458984375e-06,0,0.0529857762157917,1.09672546386719e-05,-8.10623168945313e-06,0.101599097251892,2.47955322265625e-05,-1.59740447998047e-05,0.215349555015564,0,0,0.00319814682006836,2.86102294921875e-06,0,0.00978028774261475,2.86102294921875e-06,0,0.0231438875198364,5.7220458984375e-06,0,0.0462209582328796,1.00135803222656e-05,0,0.0815303027629852,1.57356262207031e-05,-7.62939453125e-06,0.133229672908783,2.38418579101563e-05,-7.86781311035156e-06,0.195928454399109,0,0,0.00941896438598633,4.76837158203125e-06,0,0.0239932537078857,6.67572021484375e-06, -0,0.0469813346862793,1.1444091796875e-05,0,0.0782249420881271,1.43051147460938e-05,-8.34465026855469e-06,0.113548308610916,1.71661376953125e-05,-8.58306884765625e-06,0.146122634410858,2.43186950683594e-05,-7.86781311035156e-06,0.203816890716553,2.43186950683594e-05,-8.34465026855469e-06,0.20879590511322,0,0,0.0051429271697998,0,0,0.0145182609558105,2.86102294921875e-06,0,0.0317376852035522,7.62939453125e-06,0,0.0586134195327759,1.1444091796875e-05,0,0.0941865351051092,1.71661376953125e-05,-8.10623168945313e-06,0.134428977966309,2.14576721191406e-05,-7.86781311035156e-06,0.171210765838623,2.24113464355469e-05,-7.86781311035156e-06,0.180776953697205,1.57356262207031e-05,-7.86781311035156e-06,0.13069760799408,1.04904174804688e-05,0,0.0932018160820007,7.62939453125e-06,0,0.062144935131073,4.76837158203125e-06,0,0.0372773408889771,2.86102294921875e-06,0,0.0190333127975464,0,0,0.00678861141204834,0,0,0.0095781683921814,2.86102294921875e-06,0,0.0202594399452209,4.29153442382813e-06,0,0.03427454829216,6.67572021484375e-06,0,0.0518760085105896,3.33786010742188e-06,0,0.0294885635375977,9.05990600585938e-06,0,0.0735046863555908,7.15255737304688e-06,0,0.0584758520126343,7.15255737304688e-06,0,0.0598641633987427,8.58306884765625e-06,-8.10623168945313e-06,0.0768715143203735,9.05990600585938e-06,0,0.0708431005477905,5.24520874023438e-06,0,0.0409157276153564,4.76837158203125e-06,0,0.0398976802825928,1.04904174804688e-05,-8.10623168945313e-06,0.0937117338180542,9.5367431640625e-06,0,0.0717731714248657,1.62124633789063e-05,-7.86781311035156e-06,0.135470271110535,3.57627868652344e-05,-2.43186950683594e-05,0.30428147315979,2.57492065429688e-05,-1.62124633789063e-05,0.218652009963989,1.28746032714844e-05,-8.10623168945313e-06,0.10734486579895,2.38418579101563e-05,-8.10623168945313e-06,0.210231184959412,3.71932983398438e-05,-2.43186950683594e-05,0.327833890914917,4.14848327636719e-05,-2.45571136474609e-05,0.350476026535034,3.14712524414063e-05,-1.59740447998047e-05,0.274495005607605,3.29017639160156e-05,-1.59740447998047e-05,0.284099221229553, -0,0,0.00778353214263916,0,0,0.00529289245605469,0,0,0.00115227699279785,0,0,0.00229358673095703,0,0,0.000645637512207031,0,0,0.000688791275024414,0,0,0.000208377838134766,0,0,0.000113964080810547,0,0,4.91142272949219e-05,0,0,2.14576721191406e-05,0,0,1.43051147460938e-05,1.43051147460938e-05,-8.58306884765625e-06,0.180366337299347,2.33650207519531e-05,-1.62124633789063e-05,0.340893745422363,2.86102294921875e-05,-3.33786010742188e-05,0.47919750213623,2.93254852294922e-05,-4.00543212890625e-05,0.598185539245605,3.07559967041016e-05,-5.7220458984375e-05,0.702186346054077,2.43186950683594e-05,-6.4849853515625e-05,0.654692888259888,2.22921371459961e-05,-7.15255737304688e-05,0.721359729766846,1.95503234863281e-05,-8.67843627929688e-05,0.779663324356079,1.57356262207031e-05,-9.5367431640625e-05,0.829061031341553,1.22189521789551e-05,-0.000104904174804688,0.869276523590088,9.23871994018555e-06,-0.000111579895019531,0.901687145233154,5.6922435760498e-06,-0.000111579895019531,0.92420768737793,2.65240669250488e-06,-0.000112533569335938,0.935980796813965,1.66893005371094e-05,-8.58306884765625e-06,0.190927177667618,2.90870666503906e-05,-1.71661376953125e-05,0.370923638343811,3.76701354980469e-05,-3.33786010742188e-05,0.529272317886353,4.24385070800781e-05,-5.81741333007813e-05,0.663582801818848,4.52995300292969e-05,-7.15255737304688e-05,0.775412797927856,4.43458557128906e-05,-9.72747802734375e-05,0.868693113327026,3.93390655517578e-05,-0.000120162963867188,0.946552276611328,3.26633453369141e-05,-0.000136375427246094,1.01121473312378,2.57492065429688e-05,-0.000151634216308594,1.06410312652588,2.00271606445313e-05,-0.00016021728515625,1.1070384979248,1.5556812286377e-05,-0.000177383422851563,1.14117002487183,1.12652778625488e-05,-0.000185012817382813,1.16667509078979,6.61611557006836e-06,-0.000191688537597656,1.18309259414673,2.23517417907715e-06,-0.000200271606445313,1.19129276275635,4.29153442382813e-06,0,0.0559725910425186,9.05990600585938e-06,-8.58306884765625e-06,0.136340796947479,1.21593475341797e-05,-6.67572021484375e-06,0.237345337867737, -1.45435333251953e-05,-1.52587890625e-05,0.330096364021301,1.52587890625e-05,-2.38418579101563e-05,0.422910332679749,1.45435333251953e-05,-4.00543212890625e-05,0.523422360420227,1.43051147460938e-05,-4.86373901367188e-05,0.623817682266235,1.2516975402832e-05,-5.7220458984375e-05,0.686717987060547,1.04904174804688e-05,-6.4849853515625e-05,0.754611968994141,8.40425491333008e-06,-7.2479248046875e-05,0.818560838699341,5.7220458984375e-06,-8.10623168945313e-05,0.891273021697998,2.2202730178833e-06,-8.10623168945313e-05,0.926232814788818,1.57356262207031e-05,-8.58306884765625e-06,0.277007460594177,1.64508819580078e-05,-1.71661376953125e-05,0.346591472625732,1.57356262207031e-05,-2.288818359375e-05,0.406985521316528,1.60932540893555e-05,-2.47955322265625e-05,0.503840923309326,1.60932540893555e-05,-4.00543212890625e-05,0.625529646873474,1.18017196655273e-05,-4.38690185546875e-05,0.619547486305237,9.00030136108398e-06,-4.00543212890625e-05,0.666394591331482,6.43730163574219e-06,-4.76837158203125e-05,0.718641996383667,4.38094139099121e-06,-5.7220458984375e-05,0.77168345451355,1.54972076416016e-06,-5.53131103515625e-05,0.813334345817566,0,0,0.0295997858047485,1.1444091796875e-05,-8.58306884765625e-06,0.160066962242126,1.78813934326172e-05,-1.62124633789063e-05,0.297435522079468,2.02655792236328e-05,-2.38418579101563e-05,0.416175484657288,2.21729278564453e-05,-3.33786010742188e-05,0.522616028785706,2.24113464355469e-05,-4.67300415039063e-05,0.620421171188354,2.07424163818359e-05,-5.7220458984375e-05,0.710983514785767,1.54972076416016e-05,-5.7220458984375e-05,0.646861791610718,1.33514404296875e-05,-7.34329223632813e-05,0.708917140960693,1.15036964416504e-05,-8.10623168945313e-05,0.765279769897461,7.98702239990234e-06,-8.86917114257813e-05,0.812310457229614,5.6922435760498e-06,-8.86917114257813e-05,0.84528374671936,2.36928462982178e-06,-9.72747802734375e-05,0.863110542297363,0,-2.33650207519531e-05,0.0855388641357422,0,-0.000264644622802734,1.06620121002197,0,-2.43186950683594e-05,0.0930757522583008,1.52587890625e-05,-7.20024108886719e-05, -0.344918251037598,1.85966491699219e-05,-8.0108642578125e-05,0.379097938537598,7.15255737304688e-06,-5.62667846679688e-05,0.244186401367188,1.09672546386719e-05,-6.43730163574219e-05,0.297821998596191,4.05311584472656e-06,-4.91142272949219e-05,0.191368103027344,2.20537185668945e-06,-3.24249267578125e-05,0.147202491760254,0,-2.43186950683594e-05,0.113972663879395,2.14576721191406e-05,-8.86917114257813e-05,0.404301643371582,3.31401824951172e-05,-0.000128269195556641,0.604386329650879,3.31401824951172e-05,-0.000128269195556641,0.609774589538574,2.71797180175781e-05,-0.000112056732177734,0.53327465057373,2.71797180175781e-05,-0.000136852264404297,0.636298179626465,2.50339508056641e-05,-0.00016021728515625,0.712410926818848,2.25305557250977e-05,-0.000185012817382813,0.791253089904785,1.9073486328125e-05,-0.000208377838134766,0.883259773254395,1.50203704833984e-05,-0.000232696533203125,0.960542678833008,9.83476638793945e-06,-0.000248432159423828,1.01850891113281,4.76837158203125e-06,-0.000257015228271484,1.05413341522217,0,-2.33650207519531e-05,0.0806341171264648,0,-2.43186950683594e-05,0.102475166320801,0,-3.19480895996094e-05,0.135881423950195,3.45706939697266e-06,-4.00543212890625e-05,0.171053886413574,4.76837158203125e-06,-6.43730163574219e-05,0.253539085388184,9.17911529541016e-06,-8.91685485839844e-05,0.348494529724121,1.52587890625e-05,-9.63211059570313e-05,0.401104927062988,1.93119049072266e-05,-0.000112533569335938,0.495641708374023,2.43186950683594e-05,-0.000120162963867188,0.52723217010498,2.88486480712891e-05,-0.000136852264404297,0.603384017944336,3.12328338623047e-05,-0.000135898590087891,0.627925872802734,3.36170196533203e-05,-0.000152111053466797,0.687246322631836,3.62396240234375e-05,-0.0001678466796875,0.75537109375,3.86238098144531e-05,-0.000217437744140625,0.949891090393066,3.50475311279297e-05,-0.000240802764892578,1.01018619537354,3.18288803100586e-05,-0.000256538391113281,1.07040691375732,2.53915786743164e-05,-0.000288963317871094,1.16014575958252,1.93119049072266e-05,-0.000296115875244141,1.18046092987061, -1.21593475341797e-05,-0.000304698944091797,1.20811557769775,5.63263893127441e-06,-0.000312328338623047,1.21459674835205,0,-0.00031280517578125,1.20702457427979,0,-2.43186950683594e-05,0.0934820175170898,0,-2.43186950683594e-05,0.104866981506348,0,-3.24249267578125e-05,0.132231712341309,3.21865081787109e-06,-4.05311584472656e-05,0.175497055053711,5.60283660888672e-06,-6.43730163574219e-05,0.257842063903809,1.18017196655273e-05,-8.91685485839844e-05,0.370631217956543,1.64508819580078e-05,-0.000104427337646484,0.446245193481445,2.09808349609375e-05,-0.000112533569335938,0.511860847473145,2.93254852294922e-05,-0.000128269195556641,0.579171180725098,3.21865081787109e-05,-0.000136852264404297,0.635127067565918,3.29017639160156e-05,-0.000136852264404297,0.620980262756348,3.36170196533203e-05,-0.000144481658935547,0.66060733795166,3.57627868652344e-05,-0.000160694122314453,0.721864700317383,3.79085540771484e-05,-0.000208854675292969,0.909333229064941,3.4332275390625e-05,-0.000232696533203125,1.00240230560303,3.18288803100586e-05,-0.000256538391113281,1.0756311416626,2.61068344116211e-05,-0.000288963317871094,1.19029998779297,2.00271606445313e-05,-0.000304698944091797,1.23656558990479,1.22189521789551e-05,-0.00031280517578125,1.24748802185059,6.02006912231445e-06,-0.00031280517578125,1.2396764755249,0,-0.000304698944091797,1.22516345977783,0,-1.59740447998047e-05,0.0668344497680664,0,-1.59740447998047e-05,0.0719833374023438,1.19209289550781e-05,-4.86373901367188e-05,0.247559547424316,1.54972076416016e-05,-5.62667846679688e-05,0.275868892669678,5.96046447753906e-06,-4.02927398681641e-05,0.177111625671387,9.29832458496094e-06,-4.00543212890625e-05,0.213910102844238,3.33786010742188e-06,-3.17096710205078e-05,0.141260147094727,1.78813934326172e-06,-2.40802764892578e-05,0.110376358032227,0,-1.59740447998047e-05,0.086827278137207,1.85966491699219e-05,-5.67436218261719e-05,0.301215648651123,2.12192535400391e-05,-6.43730163574219e-05,0.329977035522461,2.288818359375e-05,-7.20024108886719e-05,0.369060039520264,2.52723693847656e-05, --8.0108642578125e-05,0.449007034301758,2.45571136474609e-05,-9.63211059570313e-05,0.501422882080078,2.36034393310547e-05,-0.000120162963867188,0.59352970123291,2.21729278564453e-05,-0.000145912170410156,0.692900657653809,1.93119049072266e-05,-0.000166893005371094,0.790373802185059,1.57356262207031e-05,-0.000191688537597656,0.877133369445801,1.0371208190918e-05,-0.000206947326660156,0.945579528808594,5.03659248352051e-06,-0.000216484069824219,0.989453315734863,0,-0.000216484069824219,1.0045108795166,0,0,0.0214712619781494,0,0,0.0230050086975098,3.33786010742188e-06,-8.10623168945313e-06,0.0756139755249023,4.52995300292969e-06,-8.58306884765625e-06,0.0865509510040283,1.78813934326172e-06,-8.58306884765625e-06,0.0539443492889404,2.38418579101563e-06,-8.58306884765625e-06,0.0648741722106934,0,0,0.0435318946838379,0,0,0.034466028213501,0,0,0.0274629592895508,5.48362731933594e-06,-8.10623168945313e-06,0.100828886032104,7.39097595214844e-06,-8.58306884765625e-06,0.129464387893677,8.82148742675781e-06,-1.71661376953125e-05,0.161389112472534,1.00135803222656e-05,-2.47955322265625e-05,0.204057455062866,1.1444091796875e-05,-3.14712524414063e-05,0.265890598297119,1.26361846923828e-05,-4.00543212890625e-05,0.353939533233643,1.29938125610352e-05,-5.62667846679688e-05,0.456228733062744,1.21593475341797e-05,-8.0108642578125e-05,0.564931392669678,1.04308128356934e-05,-9.5367431640625e-05,0.670895099639893,7.33137130737305e-06,-0.000103950500488281,0.761198997497559,3.75509262084961e-06,-0.000113487243652344,0.822150707244873,0,-0.000120162963867188,0.843627452850342,0,-5.7220458984375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072762966156,0,-5.7220458984375e-06,0.150727689266205,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085, -0,-5.7220458984375e-06,0.150727808475494,0,-6.67572021484375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15654993057251,0,-6.67572021484375e-06,0.1609046459198,0,-6.67572021484375e-06,0.164957523345947,0,-6.67572021484375e-06,0.168860912322998,0,-6.67572021484375e-06,0.172244548797607,0,-6.67572021484375e-06,0.174566507339478,0,-7.62939453125e-06,0.175393104553223,2.62260437011719e-06,0,0.0481425821781158,4.05311584472656e-06,0,0.0735712051391602,5.00679016113281e-06,-8.58306884765625e-06,0.101119637489319,6.43730163574219e-06,-8.58306884765625e-06,0.146993637084961,8.58306884765625e-06,-1.62124633789063e-05,0.246582984924316,1.00135803222656e-05,-3.14712524414063e-05,0.355527877807617,1.02519989013672e-05,-4.1961669921875e-05,0.469300031661987,9.00030136108398e-06,-4.9591064453125e-05,0.58168625831604,6.61611557006836e-06,-5.7220458984375e-05,0.679303884506226,3.33786010742188e-06,-5.62667846679688e-05,0.746046781539917,0,-6.4849853515625e-05,0.769779682159424,0,-8.34465026855469e-06,0.0441021919250488,0,-8.34465026855469e-06,0.0473241806030273,0,-8.34465026855469e-06,0.0566582679748535,0,-8.10623168945313e-06,0.0714221000671387,2.38418579101563e-06,-1.62124633789063e-05,0.0905776023864746,4.29153442382813e-06,-1.59740447998047e-05,0.112679004669189,6.19888305664063e-06,-2.40802764892578e-05,0.135559558868408,8.34465026855469e-06,-2.43186950683594e-05,0.157378196716309,1.04904174804688e-05,-2.43186950683594e-05,0.177542686462402,1.28746032714844e-05,-3.19480895996094e-05,0.198576927185059,1.47819519042969e-05,-3.19480895996094e-05,0.226066589355469,1.76429748535156e-05,-4.00543212890625e-05,0.262721538543701,1.93119049072266e-05,-4.86373901367188e-05,0.314496040344238,2.00271606445313e-05,-6.38961791992188e-05,0.385634422302246,1.97887420654297e-05,-8.10623168945313e-05,0.475461959838867,2.00271606445313e-05,-0.000103950500488281,0.576324939727783,1.75237655639648e-05,-0.000120162963867188,0.679831504821777,1.44243240356445e-05,-0.000144004821777344,0.776687622070313,9.83476638793945e-06,-0.00016021728515625, -0.856529235839844,4.91738319396973e-06,-0.000168800354003906,0.909172058105469,0,-0.000176429748535156,0.927581787109375,0,-2.43186950683594e-05,0.094050407409668,0,-1.57356262207031e-05,0.0702848434448242,-2.47955322265625e-05,-0.000128269195556641,0.552277565002441,-2.57492065429688e-05,-0.000128746032714844,0.547085762023926,-2.14576721191406e-05,-0.000113010406494141,0.478952407836914,-1.78813934326172e-05,-0.000104904174804688,0.453701019287109,-9.77516174316406e-06,-8.0108642578125e-05,0.317276000976563,-9.65595245361328e-06,-8.0108642578125e-05,0.334036827087402,-5.12599945068359e-06,-5.57899475097656e-05,0.215373992919922,-5.24520874023438e-06,-6.43730163574219e-05,0.236334800720215,-2.74181365966797e-06,-4.00543212890625e-05,0.139963150024414,-2.50339508056641e-06,-4.00543212890625e-05,0.170336723327637,0,-2.43186950683594e-05,0.0910215377807617,0,-3.24249267578125e-05,0.123570442199707,-1.31130218505859e-05,-9.63211059570313e-05,0.385599136352539,-1.40666961669922e-05,-9.67979431152344e-05,0.385762214660645,-2.62260437011719e-05,-0.000128269195556641,0.54927921295166,-2.83718109130859e-05,-0.000135898590087891,0.592172622680664,-3.0517578125e-05,-0.000144481658935547,0.631264686584473,-3.00407409667969e-05,-0.000143527984619141,0.643608093261719,-3.4332275390625e-05,-0.000169277191162109,0.733232498168945,-3.4332275390625e-05,-0.000168800354003906,0.748307228088379,-3.88622283935547e-05,-0.000193119049072266,0.829555511474609,-3.62396240234375e-05,-0.000184059143066406,0.789841651916504,-3.814697265625e-05,-0.000225067138671875,0.955807685852051,-4.22000885009766e-05,-0.000225067138671875,0.990911483764648,-3.60012054443359e-05,-0.000248908996582031,1.02203464508057,-3.86238098144531e-05,-0.000241279602050781,1.02534770965576,-3.45706939697266e-05,-0.000257015228271484,1.06288146972656,-3.25441360473633e-05,-0.000264644622802734,1.07442855834961,-2.90870666503906e-05,-0.000280380249023438,1.11305522918701,-2.61068344116211e-05,-0.000288963317871094,1.14713191986084,-2.26497650146484e-05,-0.000296115875244141, -1.15237712860107,-1.96695327758789e-05,-0.000304698944091797,1.18679618835449,-1.47819519042969e-05,-0.000304698944091797,1.16215515136719,-1.22785568237305e-05,-0.000312328338623047,1.20582389831543,-6.61611557006836e-06,-0.00031280517578125,1.1740665435791,-6.10947608947754e-06,-0.000312328338623047,1.21248912811279,0,-2.43186950683594e-05,0.0816049575805664,0,-3.19480895996094e-05,0.107373237609863,-3.21865081787109e-06,-4.00543212890625e-05,0.156864166259766,-5.00679016113281e-06,-5.57899475097656e-05,0.229340553283691,-1.08480453491211e-05,-8.7738037109375e-05,0.33830451965332,-1.52587890625e-05,-0.000104427337646484,0.412177085876465,-1.97887420654297e-05,-0.000113010406494141,0.477339744567871,-2.57492065429688e-05,-0.000128269195556641,0.548909187316895,-2.57492065429688e-05,-0.000127792358398438,0.557039260864258,-3.07559967041016e-05,-0.000144481658935547,0.639883995056152,-3.50475311279297e-05,-0.000169277191162109,0.739337921142578,-3.83853912353516e-05,-0.000185012817382813,0.812287330627441,-4.00543212890625e-05,-0.000225067138671875,0.962992668151855,-3.86238098144531e-05,-0.000240802764892578,1.01008701324463,-3.45706939697266e-05,-0.000264644622802734,1.08342838287354,-2.82526016235352e-05,-0.000288009643554688,1.14228343963623,-2.21729278564453e-05,-0.000304698944091797,1.18206310272217,-1.39474868774414e-05,-0.000312328338623047,1.20706653594971,-6.82473182678223e-06,-0.000320911407470703,1.2162561416626,0,-2.33650207519531e-05,0.089935302734375,0,-3.19480895996094e-05,0.117851257324219,-2.86102294921875e-06,-4.00543212890625e-05,0.165535926818848,-5.12599945068359e-06,-5.62667846679688e-05,0.234695434570313,-1.16825103759766e-05,-8.05854797363281e-05,0.337352752685547,-1.50203704833984e-05,-9.72747802734375e-05,0.397357940673828,-1.81198120117188e-05,-0.000113010406494141,0.46373176574707,-2.57492065429688e-05,-0.000128746032714844,0.555098533630371,-2.78949737548828e-05,-0.000135898590087891,0.594005584716797,-3.0517578125e-05,-0.000152111053466797,0.649228096008301,-3.50475311279297e-05,-0.000168800354003906, -0.746655464172363,-3.69548797607422e-05,-0.000176906585693359,0.783404350280762,-3.86238098144531e-05,-0.000225067138671875,0.954025268554688,-3.67164611816406e-05,-0.000240802764892578,1.0140266418457,-3.19480895996094e-05,-0.000264644622802734,1.06492137908936,-2.68220901489258e-05,-0.000288963317871094,1.13485908508301,-2.03847885131836e-05,-0.000303745269775391,1.18015003204346,-1.35898590087891e-05,-0.000312328338623047,1.21591281890869,-6.43730163574219e-06,-0.0003204345703125,1.22266960144043,0,-1.62124633789063e-05,0.0514230728149414,0,-1.66893005371094e-05,0.0698041915893555,-1.78813934326172e-06,-2.43186950683594e-05,0.10264778137207,-3.69548797607422e-06,-4.00543212890625e-05,0.147957801818848,-6.67572021484375e-06,-4.81605529785156e-05,0.199539184570313,-9.77516174316406e-06,-6.4849853515625e-05,0.252453804016113,-1.43051147460938e-05,-8.0108642578125e-05,0.326485633850098,-2.16960906982422e-05,-9.58442687988281e-05,0.411888122558594,-2.88486480712891e-05,-0.000112533569335938,0.511150360107422,-3.45706939697266e-05,-0.000136852264404297,0.611437797546387,-4.00543212890625e-05,-0.00016021728515625,0.724087715148926,-4.43458557128906e-05,-0.000192642211914063,0.849743843078613,-4.69684600830078e-05,-0.000216484069824219,0.983536720275879,-4.12464141845703e-05,-0.000225067138671875,0.982113838195801,-6.9737434387207e-06,-0.000297069549560547,1.16069984436035,-1.46627426147461e-05,-0.000288486480712891,1.1409273147583,-2.21729278564453e-05,-0.000288963317871094,1.13091659545898,-2.99215316772461e-05,-0.000272274017333984,1.10583209991455,-3.67164611816406e-05,-0.000248908996582031,1.05336761474609,0,-1.57356262207031e-05,0.0681266784667969,0,-2.43186950683594e-05,0.0901050567626953,-2.74181365966797e-06,-3.19480895996094e-05,0.131949424743652,-5.00679016113281e-06,-4.81605529785156e-05,0.193022727966309,-1.09672546386719e-05,-8.0108642578125e-05,0.328660011291504,-1.59740447998047e-05,-0.000103473663330078,0.413417816162109,-2.09808349609375e-05,-0.000120639801025391,0.495283126831055,-2.74181365966797e-05, --0.000128269195556641,0.563299179077148,-2.83718109130859e-05,-0.000128746032714844,0.552380561828613,-3.17096710205078e-05,-0.000135898590087891,0.615772247314453,-3.64780426025391e-05,-0.00016021728515625,0.717334747314453,-4.24385070800781e-05,-0.000200748443603516,0.87413215637207,-4.55379486083984e-05,-0.000232696533203125,1.02119064331055,-4.00543212890625e-05,-0.000240802764892578,1.03239250183105,-3.50475311279297e-05,-0.000256538391113281,1.05556201934814,-2.93254852294922e-05,-0.000272274017333984,1.09744834899902,-2.21729278564453e-05,-0.000288963317871094,1.13320827484131,-1.4960765838623e-05,-0.000304698944091797,1.16177368164063,-7.03334808349609e-06,-0.000304698944091797,1.17222881317139,0,-8.58306884765625e-06,0.0238962173461914,0,-8.10623168945313e-06,0.0379571914672852,0,-1.66893005371094e-05,0.0617685317993164,-2.26497650146484e-06,-2.43186950683594e-05,0.0911188125610352,-4.05311584472656e-06,-3.24249267578125e-05,0.116751670837402,-5.00679016113281e-06,-3.19480895996094e-05,0.134370803833008,-1.1444091796875e-05,-5.67436218261719e-05,0.233271598815918,-2.00271606445313e-05,-8.0108642578125e-05,0.347070693969727,-4.93526458740234e-05,-0.000208854675292969,0.960766792297363,-5.10215759277344e-05,-0.000192165374755859,0.886004447937012,-4.67300415039063e-05,-0.00016021728515625,0.748448371887207,-4.14848327636719e-05,-0.000135898590087891,0.634337425231934,-3.00407409667969e-05,-0.000104427337646484,0.488685607910156,-8.2850456237793e-06,-0.00029754638671875,1.17185878753662,-1.68085098266602e-05,-0.000288963317871094,1.15626525878906,-2.33650207519531e-05,-0.000280380249023438,1.12924480438232,-3.07559967041016e-05,-0.000264167785644531,1.09039974212646,-3.71932983398438e-05,-0.000240325927734375,1.04025840759277,-4.36305999755859e-05,-0.000225067138671875,0.980501174926758,-2.72989273071289e-05,-0.000225067138671875,1.19277191162109,-3.76701354980469e-05,-0.000281333923339844,1.21798324584961,-4.05311584472656e-05,-0.000192642211914063,1.14468717575073,-5.62667846679688e-05,-0.000247955322265625, -1.19052314758301,-5.57899475097656e-05,-0.000151634216308594,1.06217384338379,-7.43865966796875e-05,-0.000208854675292969,1.13958263397217,-6.67572021484375e-05,-0.000104904174804688,0.925721645355225,-8.72611999511719e-05,-0.000161170959472656,1.04917287826538,-5.96046447753906e-05,-5.62667846679688e-05,0.704452276229858,-8.58306884765625e-05,-0.000112056732177734,0.894100189208984,-1.57356262207031e-05,-7.62939453125e-06,0.158694058656693,-5.81741333007813e-05,-4.05311584472656e-05,0.521697521209717,-4.62532043457031e-05,-3.24249267578125e-05,0.406623601913452,-6.29425048828125e-05,-0.000128746032714844,1.00229501724243,-8.29696655273438e-05,-0.000184059143066406,1.10058259963989,-3.67164611816406e-05,-2.47955322265625e-05,0.375275492668152,-7.00950622558594e-05,-6.43730163574219e-05,0.654924392700195,-3.36170196533203e-05,-0.000264167785644531,1.21697521209717,-5.12599945068359e-05,-0.000234603881835938,1.18646669387817,-6.98566436767578e-05,-0.000191688537597656,1.12923288345337,-7.91549682617188e-05,-0.000168800354003906,1.08471918106079,-8.53538513183594e-05,-0.0001373291015625,1.02442216873169,-8.10623168945313e-05,-8.86917114257813e-05,0.837188005447388,-5.91278076171875e-05,-4.05311584472656e-05,0.551718473434448,-4.33921813964844e-05,-2.33650207519531e-05,0.390375137329102,-3.00407409667969e-05,-1.57356262207031e-05,0.264148354530334,-2.62260437011719e-06,-1.59740447998047e-05,0.0692319869995117,-7.15255737304688e-06,-3.19480895996094e-05,0.144103050231934,-1.71661376953125e-05,-6.43730163574219e-05,0.280312538146973,-3.29017639160156e-05,-0.000104427337646484,0.486681938171387,-4.86373901367188e-05,-0.000144481658935547,0.696719169616699,-5.48362731933594e-05,-0.000168323516845703,0.828635215759277,-5.62667846679688e-05,-0.000192165374755859,0.91729736328125,-5.19752502441406e-05,-0.000215530395507813,0.98664665222168,-4.74452972412109e-05,-0.000231742858886719,1.04394721984863,-4.12464141845703e-05,-0.000257492065429688,1.09147167205811,-3.29017639160156e-05,-0.000273704528808594,1.12949180603027,-2.53915786743164e-05, --0.000288963317871094,1.15814208984375,-1.77621841430664e-05,-0.00029754638671875,1.17764282226563,-9.14931297302246e-06,-0.000304222106933594,1.18869209289551,0,-8.10623168945313e-06,0.0195541381835938,0,0,0.0111007690429688,0,0,0.00942897796630859,0,-7.86781311035156e-06,0.0389957427978516,0,-8.10623168945313e-06,0.0388212203979492,-6.67572021484375e-06,-2.43186950683594e-05,0.115010261535645,-4.29153442382813e-06,-1.59740447998047e-05,0.0686635971069336,-1.19209289550781e-05,-4.00543212890625e-05,0.178247451782227,-2.38418579101563e-05,-6.34193420410156e-05,0.32042407989502,-1.66893005371094e-05,-4.00543212890625e-05,0.201006889343262,-7.15255737304688e-06,-1.62124633789063e-05,0.0911636352539063,-1.76429748535156e-05,-3.21865081787109e-05,0.191603183746338,-7.62939453125e-06,-1.59740447998047e-05,0.0878920555114746,-1.47819519042969e-05,-2.40802764892578e-05,0.153638362884521,-5.7220458984375e-06,-8.22544097900391e-06,0.061622142791748,-1.00135803222656e-05,-1.60932540893555e-05,0.0873861312866211,-2.71797180175781e-05,-6.34193420410156e-05,0.329707622528076,-2.62260437011719e-05,-4.02927398681641e-05,0.262675285339355,-2.95639038085938e-05,-5.60283660888672e-05,0.310272216796875,-2.05039978027344e-05,-2.40802764892578e-05,0.190109729766846,-3.62396240234375e-05,-9.58442687988281e-05,0.486039161682129,-3.76701354980469e-05,-5.57899475097656e-05,0.38009786605835,-4.00543212890625e-05,-7.20024108886719e-05,0.438644886016846,-3.95774841308594e-05,-8.82148742675781e-05,0.473007678985596,-5.19752502441406e-05,-8.86917114257813e-05,0.569621086120605,-5.00679016113281e-05,-6.43730163574219e-05,0.497757911682129,-5.24520874023438e-05,-0.000103950500488281,0.621268272399902,-5.10215759277344e-05,-0.000128269195556641,0.6589674949646,-6.4849853515625e-05,-0.0001678466796875,0.871609687805176,-6.62803649902344e-05,-0.000144004821777344,0.816267013549805,-6.58035278320313e-05,-0.000120162963867188,0.759854316711426,-6.43730163574219e-05,-9.67979431152344e-05,0.689586639404297,-6.72340393066406e-05,-0.000184535980224609,0.946774482727051, --7.72476196289063e-05,-0.000193595886230469,1.04843187332153,-7.96318054199219e-05,-0.000168323516845703,0.99318790435791,-6.41345977783203e-05,-0.000209808349609375,1.01197242736816,-7.05718994140625e-05,-0.000218391418457031,1.0947904586792,-4.79221343994141e-05,-0.00017547607421875,1.10870504379272,-6.07967376708984e-05,-0.000208854675292969,1.16220235824585,-6.50882720947266e-05,-0.000234603881835938,1.16876316070557,-5.79357147216797e-05,-0.000226020812988281,1.06503677368164,-6.27040863037109e-05,-0.000232696533203125,1.13201808929443,-5.14984130859375e-05,-0.000240325927734375,1.10793495178223,-5.45978546142578e-05,-0.000248908996582031,1.16104412078857,-3.38554382324219e-05,-0.000215530395507813,1.17214632034302,-4.29153442382813e-05,-0.000249862670898438,1.204270362854,-4.72068786621094e-05,-0.000264167785644531,1.20651054382324,-4.69684600830078e-05,-0.000273704528808594,1.18332481384277,-4.43458557128906e-05,-0.000264167785644531,1.14196109771729,-3.57627868652344e-05,-0.000280380249023438,1.1682186126709,-3.814697265625e-05,-0.000288963317871094,1.1998815536499,-2.03847885131836e-05,-0.000242233276367188,1.20726013183594,-2.5629997253418e-05,-0.000271797180175781,1.22544574737549,-2.75373458862305e-05,-0.000288963317871094,1.22561740875244,-1.35302543640137e-05,-0.000241279602050781,1.21601581573486,-1.68681144714355e-05,-0.000280380249023438,1.23017311096191,-1.8775463104248e-05,-0.00029754638671875,1.22993278503418,-1.8775463104248e-05,-0.00030517578125,1.19991397857666,-2.75373458862305e-05,-0.00029754638671875,1.18733692169189,-2.80141830444336e-05,-0.00029754638671875,1.21148109436035,-1.8775463104248e-05,-0.00030517578125,1.21866798400879,-6.64591789245605e-06,-0.000247955322265625,1.22001838684082,-8.73208045959473e-06,-0.000280380249023438,1.23205184936523,-9.62615013122559e-06,-0.00029754638671875,1.23173999786377,-9.95397567749023e-06,-0.00030517578125,1.20674514770508,-1.0371208190918e-05,-0.000304222106933594,1.2222261428833,-8.0108642578125e-05,-0.000144481658935547,0.93372631072998,-7.77244567871094e-05, --0.000120162963867188,0.861980438232422,-6.58035278320313e-05,-8.0108642578125e-05,0.827769041061401,-8.63075256347656e-05,-0.000113487243652344,0.943451404571533,-8.82148742675781e-05,-0.000136852264404297,0.982040882110596,-7.43865966796875e-05,-9.67979431152344e-05,0.772276401519775,-5.00679016113281e-05,-4.10079956054688e-05,0.553889036178589,-7.20024108886719e-05,-6.34193420410156e-05,0.705022096633911,-7.96318054199219e-05,-8.86917114257813e-05,0.783454418182373,-6.96182250976563e-05,-7.29560852050781e-05,0.665465354919434,-6.15119934082031e-05,-7.20024108886719e-05,0.601653099060059,-6.00814819335938e-05,-5.67436218261719e-05,0.550532102584839,-5.53131103515625e-05,-5.57899475097656e-05,0.501209259033203,-4.33921813964844e-05,-4.83989715576172e-05,0.408789157867432,-3.19480895996094e-05,-4.00543212890625e-05,0.300074100494385,-5.05447387695313e-05,-3.19480895996094e-05,0.442075490951538,-4.48226928710938e-05,-3.21865081787109e-05,0.399245738983154,-3.57627868652344e-05,-3.21865081787109e-05,0.312597513198853,-2.43186950683594e-05,-2.40802764892578e-05,0.206807374954224,-1.04904174804688e-05,-7.98702239990234e-06,0.100156307220459,0,0,0.00982844829559326,0,0,0.00737476348876953,0,0,0.0248358249664307,-2.86102294921875e-06,0,0.019542932510376,-5.7220458984375e-06,0,0.0476725101470947,-5.7220458984375e-06,0,0.0398997068405151,-1.04904174804688e-05,0,0.0786301046609879,-8.58306884765625e-06,0,0.06882244348526,-1.43051147460938e-05,-8.10623168945313e-06,0.115438342094421,-1.43051147460938e-05,0,0.102231532335281,-1.85966491699219e-05,-8.10623168945313e-06,0.155161201953888,-1.52587890625e-05,-7.62939453125e-06,0.129793703556061,0,0,0.0104916095733643,-4.76837158203125e-06,0,0.0262645483016968,-6.67572021484375e-06,0,0.0504716634750366,-1.1444091796875e-05,0,0.0829273536801338,-1.62124633789063e-05,-7.86781311035156e-06,0.120046675205231,-2.00271606445313e-05,-7.86781311035156e-06,0.155484199523926,0,0,0.00169968605041504,0,0,0.00557887554168701,0,0,0.0139440298080444,-3.814697265625e-06,0,0.0288017988204956,-5.7220458984375e-06, -0,0.0529857762157917,-1.09672546386719e-05,-8.10623168945313e-06,0.101599097251892,-2.47955322265625e-05,-1.59740447998047e-05,0.215349555015564,0,0,0.00319814682006836,-2.86102294921875e-06,0,0.00978028774261475,-2.86102294921875e-06,0,0.0231438875198364,-5.7220458984375e-06,0,0.0462209582328796,-1.00135803222656e-05,0,0.0815303027629852,-1.57356262207031e-05,-7.62939453125e-06,0.133229672908783,-2.38418579101563e-05,-7.86781311035156e-06,0.195928454399109,0,0,0.00941896438598633,-4.76837158203125e-06,0,0.0239932537078857,-6.67572021484375e-06,0,0.0469813346862793,-1.1444091796875e-05,0,0.0782249420881271,-1.43051147460938e-05,-8.34465026855469e-06,0.113548308610916,-1.71661376953125e-05,-8.58306884765625e-06,0.146122634410858,-2.43186950683594e-05,-7.86781311035156e-06,0.203816890716553,-2.43186950683594e-05,-8.34465026855469e-06,0.20879590511322,0,0,0.0051429271697998,0,0,0.0145182609558105,-2.86102294921875e-06,0,0.0317376852035522,-7.62939453125e-06,0,0.0586134195327759,-1.1444091796875e-05,0,0.0941865351051092,-1.71661376953125e-05,-8.10623168945313e-06,0.134428977966309,-2.14576721191406e-05,-7.86781311035156e-06,0.171210765838623,-2.24113464355469e-05,-7.86781311035156e-06,0.180776953697205,-1.57356262207031e-05,-7.86781311035156e-06,0.13069760799408,-1.04904174804688e-05,0,0.0932018160820007,-7.62939453125e-06,0,0.062144935131073,-4.76837158203125e-06,0,0.0372773408889771,-2.86102294921875e-06,0,0.0190333127975464,0,0,0.00678861141204834,0,0,0.0095781683921814,-2.86102294921875e-06,0,0.0202594399452209,-4.29153442382813e-06,0,0.03427454829216,-6.67572021484375e-06,0,0.0518760085105896,-3.33786010742188e-06,0,0.0294885635375977,-9.05990600585938e-06,0,0.0735046863555908,-7.15255737304688e-06,0,0.0584758520126343,-7.15255737304688e-06,0,0.0598641633987427,-8.58306884765625e-06,-8.10623168945313e-06,0.0768715143203735,-9.05990600585938e-06,0,0.0708431005477905,-5.24520874023438e-06,0,0.0409157276153564,-4.76837158203125e-06,0,0.0398976802825928,-1.04904174804688e-05,-8.10623168945313e-06,0.0937117338180542,-9.5367431640625e-06, -0,0.0717731714248657,-1.62124633789063e-05,-7.86781311035156e-06,0.135470271110535,-3.57627868652344e-05,-2.43186950683594e-05,0.30428147315979,-2.57492065429688e-05,-1.62124633789063e-05,0.218652009963989,-1.28746032714844e-05,-8.10623168945313e-06,0.10734486579895,-2.38418579101563e-05,-8.10623168945313e-06,0.210231184959412,-3.71932983398438e-05,-2.43186950683594e-05,0.327833890914917,-4.14848327636719e-05,-2.45571136474609e-05,0.350476026535034,-3.14712524414063e-05,-1.59740447998047e-05,0.274495005607605,-3.29017639160156e-05,-1.59740447998047e-05,0.284099221229553,0,0,0.00778353214263916,0,0,0.00529289245605469,0,0,0.00115227699279785,0,0,0.00229358673095703,0,0,0.000645637512207031,0,0,0.000688791275024414,0,0,0.000208377838134766,0,0,0.000113964080810547,0,0,4.91142272949219e-05,0,0,2.14576721191406e-05,0,0,1.43051147460938e-05,-1.43051147460938e-05,-8.58306884765625e-06,0.180366337299347,-2.33650207519531e-05,-1.62124633789063e-05,0.340893745422363,-2.86102294921875e-05,-3.33786010742188e-05,0.47919750213623,-2.93254852294922e-05,-4.00543212890625e-05,0.598185539245605,-3.07559967041016e-05,-5.7220458984375e-05,0.702186346054077,-2.43186950683594e-05,-6.4849853515625e-05,0.654692888259888,-2.22921371459961e-05,-7.15255737304688e-05,0.721359729766846,-1.95503234863281e-05,-8.67843627929688e-05,0.779663324356079,-1.57356262207031e-05,-9.5367431640625e-05,0.829061031341553,-1.22189521789551e-05,-0.000104904174804688,0.869276523590088,-9.23871994018555e-06,-0.000111579895019531,0.901687145233154,-5.6922435760498e-06,-0.000111579895019531,0.92420768737793,-2.65240669250488e-06,-0.000112533569335938,0.935980796813965,-1.66893005371094e-05,-8.58306884765625e-06,0.190927177667618,-2.90870666503906e-05,-1.71661376953125e-05,0.370923638343811,-3.76701354980469e-05,-3.33786010742188e-05,0.529272317886353,-4.24385070800781e-05,-5.81741333007813e-05,0.663582801818848,-4.52995300292969e-05,-7.15255737304688e-05,0.775412797927856,-4.43458557128906e-05,-9.72747802734375e-05,0.868693113327026,-3.93390655517578e-05,-0.000120162963867188, -0.946552276611328,-3.26633453369141e-05,-0.000136375427246094,1.01121473312378,-2.57492065429688e-05,-0.000151634216308594,1.06410312652588,-2.00271606445313e-05,-0.00016021728515625,1.1070384979248,-1.5556812286377e-05,-0.000177383422851563,1.14117002487183,-1.12652778625488e-05,-0.000185012817382813,1.16667509078979,-6.61611557006836e-06,-0.000191688537597656,1.18309259414673,-2.23517417907715e-06,-0.000200271606445313,1.19129276275635,-4.29153442382813e-06,0,0.0559725910425186,-9.05990600585938e-06,-8.58306884765625e-06,0.136340796947479,-1.21593475341797e-05,-6.67572021484375e-06,0.237345337867737,-1.45435333251953e-05,-1.52587890625e-05,0.330096364021301,-1.52587890625e-05,-2.38418579101563e-05,0.422910332679749,-1.45435333251953e-05,-4.00543212890625e-05,0.523422360420227,-1.43051147460938e-05,-4.86373901367188e-05,0.623817682266235,-1.2516975402832e-05,-5.7220458984375e-05,0.686717987060547,-1.04904174804688e-05,-6.4849853515625e-05,0.754611968994141,-8.40425491333008e-06,-7.2479248046875e-05,0.818560838699341,-5.7220458984375e-06,-8.10623168945313e-05,0.891273021697998,-2.2202730178833e-06,-8.10623168945313e-05,0.926232814788818,-1.57356262207031e-05,-8.58306884765625e-06,0.277007460594177,-1.64508819580078e-05,-1.71661376953125e-05,0.346591472625732,-1.57356262207031e-05,-2.288818359375e-05,0.406985521316528,-1.60932540893555e-05,-2.47955322265625e-05,0.503840923309326,-1.60932540893555e-05,-4.00543212890625e-05,0.625529646873474,-1.18017196655273e-05,-4.38690185546875e-05,0.619547486305237,-9.00030136108398e-06,-4.00543212890625e-05,0.666394591331482,-6.43730163574219e-06,-4.76837158203125e-05,0.718641996383667,-4.38094139099121e-06,-5.7220458984375e-05,0.77168345451355,-1.54972076416016e-06,-5.53131103515625e-05,0.813334345817566,0,0,0.0295997858047485,-1.1444091796875e-05,-8.58306884765625e-06,0.160066962242126,-1.78813934326172e-05,-1.62124633789063e-05,0.297435522079468,-2.02655792236328e-05,-2.38418579101563e-05,0.416175484657288,-2.21729278564453e-05,-3.33786010742188e-05,0.522616028785706,-2.24113464355469e-05, --4.67300415039063e-05,0.620421171188354,-2.07424163818359e-05,-5.7220458984375e-05,0.710983514785767,-1.54972076416016e-05,-5.7220458984375e-05,0.646861791610718,-1.33514404296875e-05,-7.34329223632813e-05,0.708917140960693,-1.15036964416504e-05,-8.10623168945313e-05,0.765279769897461,-7.98702239990234e-06,-8.86917114257813e-05,0.812310457229614,-5.6922435760498e-06,-8.86917114257813e-05,0.84528374671936,-2.36928462982178e-06,-9.72747802734375e-05,0.863110542297363,0,-2.43186950683594e-05,0.0930757522583008,-1.52587890625e-05,-7.20024108886719e-05,0.344918251037598,-1.85966491699219e-05,-8.0108642578125e-05,0.379097938537598,-7.15255737304688e-06,-5.62667846679688e-05,0.244186401367188,-1.09672546386719e-05,-6.43730163574219e-05,0.297821998596191,-4.05311584472656e-06,-4.91142272949219e-05,0.191368103027344,-2.20537185668945e-06,-3.24249267578125e-05,0.147202491760254,0,-2.43186950683594e-05,0.113972663879395,-2.14576721191406e-05,-8.86917114257813e-05,0.404301643371582,-3.31401824951172e-05,-0.000128269195556641,0.604386329650879,-3.31401824951172e-05,-0.000128269195556641,0.609774589538574,-2.71797180175781e-05,-0.000112056732177734,0.53327465057373,-2.71797180175781e-05,-0.000136852264404297,0.636298179626465,-2.50339508056641e-05,-0.00016021728515625,0.712410926818848,-2.25305557250977e-05,-0.000185012817382813,0.791253089904785,-1.9073486328125e-05,-0.000208377838134766,0.883259773254395,-1.50203704833984e-05,-0.000232696533203125,0.960542678833008,-9.83476638793945e-06,-0.000248432159423828,1.01850891113281,-4.76837158203125e-06,-0.000257015228271484,1.05413341522217,0,-2.43186950683594e-05,0.102475166320801,0,-3.19480895996094e-05,0.135881423950195,-2.98023223876953e-06,-4.00543212890625e-05,0.171053886413574,-5.96046447753906e-06,-6.43730163574219e-05,0.253539085388184,-9.89437103271484e-06,-8.91685485839844e-05,0.348494529724121,-1.43051147460938e-05,-9.63211059570313e-05,0.401104927062988,-2.07424163818359e-05,-0.000112533569335938,0.495641708374023,-2.43186950683594e-05,-0.000120162963867188,0.52723217010498, --2.78949737548828e-05,-0.000136852264404297,0.603384017944336,-3.07559967041016e-05,-0.000135898590087891,0.627925872802734,-3.40938568115234e-05,-0.000152111053466797,0.687246322631836,-3.62396240234375e-05,-0.0001678466796875,0.75537109375,-3.93390655517578e-05,-0.000217437744140625,0.949891090393066,-3.50475311279297e-05,-0.000240802764892578,1.01018619537354,-3.14712524414063e-05,-0.000256538391113281,1.07040691375732,-2.57492065429688e-05,-0.000288963317871094,1.16014575958252,-1.93119049072266e-05,-0.000296115875244141,1.18046092987061,-1.20997428894043e-05,-0.000304698944091797,1.20811557769775,-5.7220458984375e-06,-0.000312328338623047,1.21459674835205,0,-2.43186950683594e-05,0.104866981506348,0,-3.24249267578125e-05,0.132231712341309,-2.50339508056641e-06,-4.05311584472656e-05,0.175497055053711,-5.36441802978516e-06,-6.43730163574219e-05,0.257842063903809,-1.06096267700195e-05,-8.91685485839844e-05,0.370631217956543,-1.57356262207031e-05,-0.000104427337646484,0.446245193481445,-2.09808349609375e-05,-0.000112533569335938,0.511860847473145,-2.71797180175781e-05,-0.000128269195556641,0.579171180725098,-3.19480895996094e-05,-0.000136852264404297,0.635127067565918,-3.17096710205078e-05,-0.000136852264404297,0.620980262756348,-3.4332275390625e-05,-0.000144481658935547,0.66060733795166,-3.4332275390625e-05,-0.000160694122314453,0.721864700317383,-3.86238098144531e-05,-0.000208854675292969,0.909333229064941,-3.52859497070313e-05,-0.000232696533203125,1.00240230560303,-3.23057174682617e-05,-0.000256538391113281,1.0756311416626,-2.61068344116211e-05,-0.000288963317871094,1.19029998779297,-2.00271606445313e-05,-0.000304698944091797,1.23656558990479,-1.26957893371582e-05,-0.00031280517578125,1.24748802185059,-5.63263893127441e-06,-0.00031280517578125,1.2396764755249,0,-1.59740447998047e-05,0.0719833374023438,-1.19209289550781e-05,-4.86373901367188e-05,0.247559547424316,-1.54972076416016e-05,-5.62667846679688e-05,0.275868892669678,-5.96046447753906e-06,-4.02927398681641e-05,0.177111625671387,-9.29832458496094e-06,-4.00543212890625e-05, -0.213910102844238,-3.33786010742188e-06,-3.17096710205078e-05,0.141260147094727,-1.78813934326172e-06,-2.40802764892578e-05,0.110376358032227,0,-1.59740447998047e-05,0.086827278137207,-1.85966491699219e-05,-5.67436218261719e-05,0.301215648651123,-2.12192535400391e-05,-6.43730163574219e-05,0.329977035522461,-2.288818359375e-05,-7.20024108886719e-05,0.369060039520264,-2.52723693847656e-05,-8.0108642578125e-05,0.449007034301758,-2.45571136474609e-05,-9.63211059570313e-05,0.501422882080078,-2.36034393310547e-05,-0.000120162963867188,0.59352970123291,-2.21729278564453e-05,-0.000145912170410156,0.692900657653809,-1.93119049072266e-05,-0.000166893005371094,0.790373802185059,-1.57356262207031e-05,-0.000191688537597656,0.877133369445801,-1.0371208190918e-05,-0.000206947326660156,0.945579528808594,-5.03659248352051e-06,-0.000216484069824219,0.989453315734863,0,0,0.0230050086975098,-3.33786010742188e-06,-8.10623168945313e-06,0.0756139755249023,-4.52995300292969e-06,-8.58306884765625e-06,0.0865509510040283,-1.78813934326172e-06,-8.58306884765625e-06,0.0539443492889404,-2.38418579101563e-06,-8.58306884765625e-06,0.0648741722106934,0,0,0.0435318946838379,0,0,0.034466028213501,0,0,0.0274629592895508,-5.48362731933594e-06,-8.10623168945313e-06,0.100828886032104,-7.39097595214844e-06,-8.58306884765625e-06,0.129464387893677,-8.82148742675781e-06,-1.71661376953125e-05,0.161389112472534,-1.00135803222656e-05,-2.47955322265625e-05,0.204057455062866,-1.1444091796875e-05,-3.14712524414063e-05,0.265890598297119,-1.26361846923828e-05,-4.00543212890625e-05,0.353939533233643,-1.29938125610352e-05,-5.62667846679688e-05,0.456228733062744,-1.21593475341797e-05,-8.0108642578125e-05,0.564931392669678,-1.04308128356934e-05,-9.5367431640625e-05,0.670895099639893,-7.33137130737305e-06,-0.000103950500488281,0.761198997497559,-3.75509262084961e-06,-0.000113487243652344,0.822150707244873,0,-6.67572021484375e-06,0.15072762966156,0,-5.7220458984375e-06,0.150727689266205,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06, -0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.150727808475494,0,-6.67572021484375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15654993057251,0,-6.67572021484375e-06,0.1609046459198,0,-6.67572021484375e-06,0.164957523345947,0,-6.67572021484375e-06,0.168860912322998,0,-6.67572021484375e-06,0.172244548797607,0,-6.67572021484375e-06,0.174566507339478,-2.62260437011719e-06,0,0.0481425821781158,-4.05311584472656e-06,0,0.0735712051391602,-5.00679016113281e-06,-8.58306884765625e-06,0.101119637489319,-6.43730163574219e-06,-8.58306884765625e-06,0.146993637084961,-8.58306884765625e-06,-1.62124633789063e-05,0.246582984924316,-1.00135803222656e-05,-3.14712524414063e-05,0.355527877807617,-1.02519989013672e-05,-4.1961669921875e-05,0.469300031661987,-9.00030136108398e-06,-4.9591064453125e-05,0.58168625831604,-6.61611557006836e-06,-5.7220458984375e-05,0.679303884506226,-3.33786010742188e-06,-5.62667846679688e-05,0.746046781539917,0,-8.34465026855469e-06,0.0473241806030273,0,-8.34465026855469e-06,0.0566582679748535,0,-8.10623168945313e-06,0.0714221000671387,-2.38418579101563e-06,-1.62124633789063e-05,0.0905776023864746,-4.29153442382813e-06,-1.59740447998047e-05,0.112679004669189,-6.19888305664063e-06,-2.40802764892578e-05,0.135559558868408,-8.34465026855469e-06,-2.43186950683594e-05,0.157378196716309,-1.04904174804688e-05,-2.43186950683594e-05,0.177542686462402,-1.28746032714844e-05,-3.19480895996094e-05,0.198576927185059,-1.47819519042969e-05,-3.19480895996094e-05,0.226066589355469,-1.76429748535156e-05,-4.00543212890625e-05,0.262721538543701,-1.93119049072266e-05,-4.86373901367188e-05,0.314496040344238,-2.00271606445313e-05,-6.38961791992188e-05,0.385634422302246,-1.97887420654297e-05,-8.10623168945313e-05,0.475461959838867,-2.00271606445313e-05,-0.000103950500488281,0.576324939727783,-1.75237655639648e-05, --0.000120162963867188,0.679831504821777,-1.44243240356445e-05,-0.000144004821777344,0.776687622070313,-9.83476638793945e-06,-0.00016021728515625,0.856529235839844,-4.91738319396973e-06,-0.000168800354003906,0.909172058105469 - } - Normals: *12402 { - a: 2.08616256713867e-07,3.1590461730957e-06,1.87456607818604e-05,-0.614458275324843,0.749738609418273,0.814735919237137,-1.16590493917465,-0.240297138690948,-0.206878855824471,-0.913626223802567,0.0098833441734314,-0.584595263004303,-0.619063750375062,0.343788206577301,-1.09117075800896,-0.315505236387253,-0.177529871463776,-0.602306082844734,-0.023861825466156,-0.151891112327576,-0.212673202157021,-0.694932704540334,0.402800306677818,0.628779530525208,-1.54714071750641,0.132651716470718,-0.185482129454613,-1.63190490007401,0.721628040075302,-0.849055051803589,-0.567862570751458,0.406930804252625,-1.76066499948502,0.241947174072266,0.613282561302185,-1.06640934944153,0.31584620475769,0.746835194528103,-0.0226595103740692,-0.503570761358766,0.187522351741791,0.553333550691605,-1.58790272474289,0.707290686666965,0.0987675786018372,-0.638963812496513,1.34006577730179,-0.946064800024033,0.196387112140656,0.613585084676743,-0.173846870660782,-0.563043998273836,-0.687561631202698,-0.784788578748703,-1.07353699207306,0.400737449526787,-0.467529565095901,-0.26256600709479,1.13180829584599,-1.03472228348255,0.661270558834076,0.267480224370956,-0.971806269139051,-0.577152193455174,-0.250804007053375,-0.855064541101456,-1.61035460233688,0.635228991508484,-0.683772685006261,-0.262565524900069,1.13491155207157,-0.964949887245893,0.697275161743164,0.677578002214432,-1.17042849957943,-0.149451375700551,-0.976398641243577,-1.28964230418205,-1.12977230548859,0.546755105257034,-1.14108553528786,-0.262560795850277,1.13323475420475,-1.01409305632114,0.512479066848755,0.790243551135063,-1.19418101012707,-0.119221362153539,-0.824072629213333,-1.02770256996155,-0.872991800308228,0.766128927469254,-1.21790158748627,-0.262565123334966,1.11788077652454,-1.1394426971674,0.65999835729599,0.59417524933815,-1.40319493412971,-0.119221083248988,-0.818439334630966,-1.0946541428566,-0.786892170337596,0.678751960396767,-1.39529579877853,1.32694438077507e-05,0.794291660189629,-1.76284980773926,0.427553847432137,-0.00212721340358257, --1.80498391389847,-0.126888529018743,-0.560897380113602,-1.69106978178024,-0.576962461117764,0.18453673273325,-1.80296605825424,0.426372540480646,-0.7856066506356,-1.41663235425949,0.506949675566705,-0.71352538280189,-1.45706170797348,-0.42726277316,-0.638156309723854,-1.4034828543663,-0.402323126792908,-0.570530608296394,-1.43952426314354,0.132576964795589,-0.693907247856259,-1.7295058965683,-0.443712701443691,-0.487296894192696,-1.601975440979,0.547586327167592,-0.404278323054314,-1.52142333984375,0.715978629887104,-0.55127315223217,-0.786046132445335,0.876180529594421,-0.355912491679192,-0.546772569417953,0.630455315113068,-0.695553615689278,-0.776315659284592,0.796452887356281,-0.415340229868889,-0.626326233148575,0.791547581553459,-0.106097429990768,-0.186294734477997,0.83967137336731,-0.535557061433792,-0.489226311445236,0.949246436357498,-0.36696342099458,-0.287919461727142,0.268662922084332,-0.197248699143529,-0.0111244916915894,0.126882781628628,-0.0203378051519394,0.00500065088272095,0.411970466375351,0.157753271982074,0.0330566763877869,0.389412045478821,-0.00875730812549591,0.0260078310966492,0.126983426511288,-0.00949320197105408,0.0197142362594604,0.496666982769966,0.298241337761283,0.276766002178192,0.516596794128418,0.23688231408596,0.317294597625732,0.348444014787674,0.464743211865425,0.485552757978439,-1.10268592834473e-06,2.39023938775063e-05,0,5.96046447753906e-08,2.02953815460205e-05,2.92062759399414e-06,-0.173205375671387,0.00331175327301025,-0.227455407381058,0.0804422497749329,-0.13591206073761,-0.159766092896461,-1.07288360595703e-06,5.60283660888672e-06,2.04145908355713e-05,-0.117997825145721,0.0398747324943542,-0.12108451128006,-0.063545823097229,-0.166572988033295,-1.11223301291466,0.341135770082474,-0.396808564662933,-0.854647725820541,0.204594820737839,-0.0261962413787842,-0.917236536741257,0.63475947547704,-0.133737921714783,-1.52173358201981,0.215291112661362,-0.390395194292068,-1.32070398330688,1.16869595646858,-0.144413530826569,-0.762321203947067,1.3866394162178,-0.273431777954102, --0.938458889722824,1.67391014099121,0.725759848952293,-0.681921139359474,1.26531571149826,0.342947512865067,-0.814878880977631,1.45452564954758,0.608550518751144,0.000682756304740906,1.46635514497757,0.536584548652172,0.284476548433304,1.45164740085602,0.562004417181015,0.322115361690521,1.01495039463043,0.536572009325027,0.631507575511932,1.04565998911858,0.563188433647156,1.16568320989609,0.491116964258254,0.140292704105377,1.19134098291397,0.430817087843224,0.330297708511353,1.55094581842422,0.514487318694592,0.326840877532959,1.55877548456192,0.459985514171422,0.140285670757294,1.19133526086807,0.458434022963047,0.389716863632202,1.40132430195808,0.372906737029552,0.0549792051315308,1.36209779977798,0.246016025543213,0.361867159605026,1.54351031780243,-0.340577334165573,0.571570381522179,1.23828822374344,-0.460665136575699,0.42638286948204,0.778121173381805,-0.820278443396091,0.466300055384636,1.248142182827,-0.9053242104128,0.871465057134628,0.665390074253082,-0.364990711212158,0.32562842965126,0.125722169876099,0.102073937654495,1.6102779507637,0.593074001371861,0.0265230042859912,1.40265595912933,0.398821949958801,-0.707817896269262,0.160437524318695,0.255330979824066,-0.817904233932495,1.73617589473724,0.277160078287125,-0.087244838476181,1.74319171905518,0.391099395230412,0.225002735853195,0.498893052339554,-0.242246180772781,-0.136089116334915,1.54239881038666,0.373009517788887,-0.0377527475357056,1.66544377803802,0.550630107522011,-0.000215113162994385,1.59158593416214,0.503254983574152,-0.0967063307762146,-0.0127520710229874,0.976361691951752,0.300719201564789,0.479085445404053,0.962738931179047,0.344736129045486,0.738475292921066,1.0301770567894,0.0890934467315674,-0.0271729230880737,0.827636361122131,-0.0859195590019226,-0.101080268621445,1.26643812656403,-0.676508143544197,-0.359164118766785,0.551496546482667,-0.569954492413085,-0.296708762645721,0.821890890598297,-0.959423959255219,-1.16327340900898,0.760706454515457,-0.692784577608109,-1.21907049417496,0.526247294154018,-0.576845660805702,-0.506689041852951, -0.988247036933899,-0.684124898165464,-0.573785573244095,0.688354335725307,-0.867777533829212,-1.13125258684158,0.947977274656296,-1.784747838974,-0.528800040483475,0.653051152825356,-1.59751683473587,0.545386984944344,1.06387144327164,-1.46186906099319,0.456303253769875,1.0979138314724,-1.14295935630798,1.36632150411606,0.87495344877243,-1.30512881278992,1.13228157162666,0.894674241542816,-0.944908827543259,1.31606259942055,0.472739595919847,-0.921598843553738,1.37235879898071,-0.125888083130121,-1.08429600298405,1.21030955016613,-0.0548547357320786,-0.701026394963264,1.19545891880989,-0.524190099909902,-0.722502082586288,1.26296100020409,-0.281991690397263,-0.637654691934586,1.1763224452734,-0.117705099284649,-0.542821705341339,0.840230196714401,-0.250454410910606,0.16379189491272,0.324554346501827,-0.360155701637268,0.0860341191291809,-0.115896731615067,-0.718855530023575,0.122332036495209,-0.0541608035564423,-0.396315887570381,-0.163210690021515,-0.606987617909908,-1.00094112753868,0.144031763076782,-0.387066811323166,-0.844495989382267,-0.745948120951653,-0.670149758458138,-1.14503374695778,-0.684338247495447,-0.712742537260056,-0.929003208875656,-0.996004402637482,-0.67710343003273,-0.673062816262245,-0.709602653980255,-0.704259783029556,-0.903552860021591,-0.478173926472664,-0.721502497792244,-0.988893091678619,-0.669079881161451,-0.666818097233772,-1.16920468211174,-0.592600271105766,-0.637124568223953,-0.999895125627518,-1.0406131669879,0.281377613544464,-1.00131042301655,-1.12001609802246,0.534258082509041,-0.665403366088867,-1.18505741655827,-0.0326717495918274,-0.836708731949329,-1.25743317604065,1.07244673371315,-0.607315666973591,-1.21464216709137,1.00046162307262,-0.494254291057587,-0.2899080067873,1.29821914434433,-0.961996601894498,-0.0707778619845385,1.31729951500893,-1.06311253458261,-0.225015997886658,1.21930754184723,-1.08550467342138,-0.120483420789242,1.2205226123333,-0.975007701665163,-0.0527727752923965,1.2883340716362,-1.05252464860678,0.204596495255828,1.60868448019028,-0.806272737681866, -0.225166410207748,1.27585509419441,-1.02903649955988,0.723320424556732,0.676994740962982,-1.12500448524952,0.758160121738911,0.279119908809662,-1.1487432718277,0.793807327747345,-0.0163919925689697,-1.31238919496536,0.508439188823104,-0.123738646507263,-1.16270318627357,0.53354468551877,-0.0476204752922058,-1.23405739665031,-0.0839923524401636,-0.612529098987579,-1.24819669127464,-0.0929895120511333,-0.663579642772675,-1.40609765052795,-0.172895886003971,-0.560933381319046,-1.39661660790443,0.0839898160554915,-0.612529873847961,-1.24819505214691,0.102113215001664,-0.657230898737907,-1.42699229717255,-0.0486114605046892,-0.711038932204247,-1.31336858868599,-0.0463057362578363,-0.536087393760681,-1.42962798476219,-0.804812356829643,0.00142121315002441,-1.30234456062317,-0.806609742343426,0.588501825928688,-1.16165086627007,-0.864582171394631,-0.00519284605979919,-1.3111244738102,-0.344773713672133,1.59008073806763,-0.784140262752771,-0.451376250013709,1.51645815372467,-0.826754223555326,-0.0448401868343353,1.31564664840698,-1.00872667878866,0.0707716080045095,1.32352137565613,-0.898684680461884,-0.0897317733615637,1.62786287069321,-0.746537383645773,0.233062051236629,1.59334379434586,-0.855161495506763,0.290106438100338,1.29822331666946,-0.907713638618588,0.427923873066902,1.1821882724762,-1.03835175186396,0.293757610023022,1.19698233902454,-0.966160656418651,0.841725066304207,0.931826949119568,-1.13506731390953,1.08922180533409,-0.0217223167419434,-1.20990794897079,1.08392921090126,0.000427544116973877,-1.24968656897545,0.661730274558067,-0.214345872402191,-0.981957629323006,1.08583980798721,-0.466896206140518,-1.02210631966591,0.522030211985111,-0.755207970738411,-0.79476360976696,0.228503942069949,-0.787153124809265,-1.0671501159668,0.0998819693922997,-0.686433136463165,-1.04197063297033,0.714722104370594,-0.755208566784859,-0.794764243066311,0.731021471321583,-0.714966207742691,-0.81918803602457,0.774803005158901,-0.7900151014328,-0.585129387676716,0.759313836693764,-0.611976206302643,-0.571369379758835,-0.25830751657486, --0.0502630770206451,-0.987130999565125,-0.152605891227722,0.84633557498455,-0.940494433045387,-0.127729594707489,-0.209290452301502,-0.944472849369049,0.54446941614151,1.15387767553329,-0.625227473676205,0.328638911247253,1.19600223004818,-0.766838625073433,0.389984130859375,1.29729893803596,-0.992365628480911,0.8371354758915,1.18806791305542,-0.690293833613396,0.647952675819397,1.06691991537809,-0.826883405447006,1.04697871208191,0.88630498200655,-0.666543737053871,1.07444612681866,1.20328053832054,-0.403253555297852,1.0629818290472,1.30359655618668,-0.721695065498352,1.0571066737175,1.15383970737457,-0.733603984117508,1.73909670114517,0.772475749254227,-0.498098537325859,1.62197077274323,-0.0592176914215088,-0.470122501254082,1.72107368707657,0.0587450265884399,-0.386984169483185,1.39415836334229,-0.630731552839279,-0.453466087579727,1.33088731765747,-0.504778653383255,0.295823633670807,0.606169208884239,-0.44049596786499,0.327891357243061,0.951014928337807,-0.767932623624802,-0.256127431988716,0.791720874607563,-1.06960397213697,-0.498979166150093,1.01488912850618,-1.34480831027031,0.0719972178339958,0.909938402473927,-0.667624920606613,0.434439104050398,0.750713840126991,-0.660635322332382,0.33557964861393,0.842631302773952,-1.34933617711067,0.0894683822989464,0.0518632531166077,-0.785433888435364,0.211886078119278,-0.137132465839386,0.965151816606522,0.33759394288063,-0.321418046951294,0.192987501621246,0.320129796862602,0.360509514808655,1.42196077108383,0.109588235616684,0.489459186792374,1.23812863230705,0.233797460794449,0.472422257065773,1.02155449986458,-0.151265680789948,0.407967844062114,-0.0116984844207764,-0.342004418373108,0.699230760335922,0.637720465660095,-0.0622905194759369,0.677333012223244,-0.26705926656723,-0.833328571170568,0.512104883790016,-0.0845221281051636,-0.460764344781637,0.703440099954605,-0.382532894611359,-0.695260971784592,0.772829949855804,-0.0453706383705139,-0.554890897125006,1.1346520781517,-0.601799994707108,-0.785175666213036,0.926007479429245,-1.40034008026123,-0.595693439245224, -0.967313021421432,-1.55422937870026,-0.453377183526754,0.296293342020363,-1.57730251550674,-0.444486767053604,0.337003855034709,-1.70813715457916,0.0091387927532196,0.690127372741699,-0.417982846498489,-0.0815335512161255,0.407979884581891,-1.80055415630341,-0.346079111099243,-0.0958046112209558,-1.77608776092529,0.00495180487632751,0.02710962574929,-0.775371588766575,0.263217687606812,0.0828102612867951,-0.982420958578587,0.541712403297424,-0.0918744970113039,-1.54515498876572,-0.291719377040863,-0.477070059627295,-1.78451842069626,-0.319655328989029,-1.21680390834808,-0.216641575098038,-0.0391220450401306,-0.722450854256749,-0.597839206457138,-0.188605427742004,-0.643091565463692,-1.56931751966476,-0.187373697757721,-0.750149875879288,-0.50600403547287,-0.775806346908212,-0.815796941518784,-0.137014985084534,-0.404670298099518,-0.433865192224744,-1.06839781999588,-0.85552442073822,-0.24192775785923,-1.10455225408077,-0.955960491672158,-0.361909613013268,-1.54679101705551,-0.883597552776337,-0.282021388411522,-1.02099557220936,-1.00722251832485,-0.98263268917799,-0.39679941534996,-0.579321682453156,-0.734701424837112,-1.50961804389954,-0.597692966461182,-0.896095752716064,-1.0375841408968,-0.950020655989647,-1.08368623256683,-1.53170919418335,0.419900193810463,-1.08210489153862,-1.16564336419106,0.578619122505188,-1.23884606361389,-1.11436384916306,0.337010443210602,-1.20173859596252,-1.34098899364471,-0.812626212835312,-1.36570519208908,-0.562112957239151,1.29201805591583,-1.12511646747589,-1.09992495179176,0.702593997120857,-1.31340402364731,-1.38614243268967,0.0610004663467407,-1.47894912958145,-0.882199138402939,0.828724339604378,-1.50121909379959,-0.777750045061111,-0.815139293670654,-1.47673380374908,-0.94170206785202,-0.649125412106514,-1.27865755558014,-0.666945941746235,-1.03918668627739,-1.30494379997253,-0.604951702058315,-1.10492151975632,-1.33306235074997,-1.03640478849411,-0.76639823615551,-1.38173818588257,-1.03451472520828,-0.742909014225006,-1.31385880708694,-0.689928457140923,-0.708679035305977, --1.27684128284454,-0.739908404648304,-0.843827903270721,-1.10947746038437,-0.729150779545307,-1.09945529699326,-1.16613805294037,0.696218326687813,-1.25937539339066,-0.883799955248833,0.517736002802849,-1.28701490163803,-0.811210721731186,1.45137995481491,-0.921571582555771,-0.818036496639252,1.15452626347542,-1.27227658033371,-0.970841392874718,1.07047293335199,-0.716170109808445,-0.974647551774979,1.03941940516233,-0.876312404870987,-0.785055577754974,1.49994832277298,-0.669488161802292,-0.757134437561035,1.50637531280518,-0.631561510264874,-0.972418576478958,1.62339746952057,-0.237865634262562,-0.329245880246162,1.94907665252686,-0.14428536221385,-0.476024217903614,1.7961078286171,-0.287553057074547,-0.894153416156769,1.25130799412727,-0.576345309615135,-1.38654619455338,0.752833902835846,-1.15906643867493,-0.544864811003208,1.76899796724319,-0.373358193784952,-0.688544921576977,-0.0469515323638916,-1.29205739498138,-0.576969921588898,0.507156401872635,-0.988394886255264,0.691659456118941,0.0868915319442749,-1.22140872478485,0.188148774206638,0.589326605200768,0.162428855895996,0.187553368508816,0.736041232943535,0.532351046800613,0.391488447785378,0.856711208820343,0.951787485042587,0.988034427165985,1.2878246307373,-0.550499364733696,0.762719742953777,0.578312993049622,-0.915166705846786,0.562068775296211,1.73156422376633,0.268665876239538,0.72830867767334,1.63896036148071,-0.0935431122779846,0.702015891671181,1.80767607688904,0.0716059489641339,0.596256361993782,1.76123309135437,0.274022281169891,0.344773926102205,1.88572114706039,-0.345794091001153,0.451373314484954,1.51645189523697,-0.826763920485973,0.36664542555809,1.87953585386276,-0.476470656692982,0.289740719162507,1.90431958436966,-0.338284375146031,0.346520926630525,1.52658784389496,-1.096928358078,0.319237407124071,1.56418365240097,-1.0144570171833,0.410991318785234,1.38176369667053,-1.12159010767937,0.307928845286369,1.68537229299545,-0.891795665025711,0.40486560203135,0.457067549228668,-1.67735397815704,0.0579869414499239,-0.0389412045478821,-0.474340483546257, -0.0432001032855434,0.107020974159241,-0.428761541843414,-0.0665770582854748,-0.0033535361289978,-0.0816507663112134,-0.00255383551120758,-0.0615001916885376,-0.461087748408318,-0.0253404080867767,-0.00860875844955444,-0.698137283325195,-0.0715514980256557,0.00242048501968384,-0.138321633217856,0.0839811824262142,0.0918909311294556,-0.479055915027857,0.0923748388886452,0.0320377945899963,-0.913043469190598,0.150744948536158,-0.395518481731415,-0.731146208941936,0.0642043966799974,-0.338083028793335,-1.00380805134773,0.0434647276997566,0.328447639942169,0.431291610002518,0.0921502858400345,1.37686729431152e-05,2.91764736175537e-05,0.23088277131319,0.599723964929581,0.509156405925751,0.474539916962385,0.346396207809448,-0.675796423107386,1.12679380178452,-0.00706720352172852,-0.884518146514893,0.987802386283875,-0.147639155387878,-1.24375939369202,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156, --0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194, -1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715, -1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313, -0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217, -0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612, -0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981, --0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727, --0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284, --0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894, --1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186, -0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692, --1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943, --1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961, --1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232, --0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006, --1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167, --0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762, -0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532, -0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127, -0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114, --0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084, --1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146, --0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896, -0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445, --1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147, --0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068, --0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284, --0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004, --1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468, --0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305, -0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755, --0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633, --0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676, --0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546, --1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952, --1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239, --1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022, -0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618, --0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699, --1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399, --1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126, -0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522, --1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864, --1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498, --1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885, --1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959, --0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, --0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646, --0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465, --0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338, -0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533, --1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518, --0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037, --0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367, --0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105, --0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338, --0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593, -0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549, -0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146, -0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797, --1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809, --1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853, --0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836, -1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017, -0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293, -0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578, --0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408, --0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153, --0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908, --0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211, --0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163, -0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673, -0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048, -0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089, --0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383, --0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346, -0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122, --0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249, -0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164, --0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817, -0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.18662029504776,0.456162691116333,0.416125580668449,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0971634984016418,0.815875202417374,0.314854916185141,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571, -0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071, -0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962, -0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095, --0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722, --1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109, --0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816, -0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283, --1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909, --0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466, --0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346, -0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.946850955486298,0.981021970510483,0.315166890621185,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665, --1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975, --1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738, --0.0575135350227356,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927, -0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547, -0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704, --1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928, -0.551028246991336,-1.32268404960632,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593, --0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596, -0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683, -0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 - } - } - Geometry: 2807563817344, "Geometry::Jaw_Open", "Shape" { - Version: 100 - Indexes: *5457 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, -3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, -3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, -4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, -4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, -5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, -5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, -5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6144,6145,6146,6148,6151,6152,6154,6156,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301, -6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836, -6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246, -7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7519,7521,7523,7525,7526,7527,7528,7530,7533,7534,7536,7538,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706, -7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241, -8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651, -8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 - } - Vertices: *16371 { - a: -4.38690185546875e-05,-1.42577219009399,-1.04370093345642,-4.35709953308105e-05,-0.938594818115234,-0.910693407058716,-4.33921813964844e-05,-1.42577219009399,-1.04370093345642,-4.37498092651367e-05,-1.75663185119629,-1.06213521957397,-4.35672700405121e-05,-2.31358194351196,-1.24634075164795,-4.36305999755859e-05,-1.75663185119629,-1.06213521957397,-4.36305999755859e-05,-1.4133243560791,-0.957003593444824,-4.35709953308105e-05,-0.98592472076416,-0.795111775398254,-4.37498092651367e-05,-1.4133243560791,-0.957003593444824,-4.35113906860352e-05,-1.81311321258545,-0.909636735916138,-4.35709953308105e-05,-2.30554533004761,-1.08016347885132,-4.36305999755859e-05,-1.8131799697876,-0.909648180007935,-4.37498092651367e-05,-1.46926116943359,-0.732567310333252,-4.35709953308105e-05,-1.27523183822632,-0.374971628189087,-4.36305999755859e-05,-1.46926116943359,-0.732567310333252,-4.35709953308105e-05,-2.35437965393066,-1.04728603363037,-4.38690185546875e-05,-1.71963167190552,-0.678465604782104,-4.35709953308105e-05,-1.75832509994507,-0.355278491973877,-4.38690185546875e-05,-1.71963167190552,-0.678465604782104,-4.35709953308105e-05,-2.47094106674194,-1.05617761611938,-4.33921813964844e-05,-2.21823453903198,-0.817588806152344,-4.35709953308105e-05,-2.28664302825928,-0.553357124328613,-4.38690185546875e-05,-2.21823453903198,-0.817588806152344,-4.35635447502136e-05,-2.72228384017944,-1.07816457748413,-4.38690185546875e-05,-2.70655202865601,-1.00076770782471,-4.35635447502136e-05,-2.75443887710571,-0.818918228149414,-4.38690185546875e-05,-2.70655202865601,-1.00076770782471,-4.35709953308105e-05,-3.20613241195679,-1.15370988845825,-4.37498092651367e-05,-3.21450138092041,-1.12399196624756,-4.35784459114075e-05,-3.25933218002319,-0.953250885009766,-4.36305999755859e-05,-3.21450138092041,-1.12399196624756,-4.35709953308105e-05,-3.48893737792969,-1.15108585357666,-4.36305999755859e-05,-3.47892284393311,-1.10604572296143,-4.35858964920044e-05,-3.51890516281128,-1.01237678527832,-4.36305999755859e-05,-3.47892284393311,-1.10604572296143, --4.35821712017059e-05,-3.72594833374023,-1.17064094543457,-4.36305999755859e-05,-3.59395742416382,-1.09809494018555,-4.35672700405121e-05,-3.71309757232666,-1.08991718292236,-4.35113906860352e-05,-3.59395742416382,-1.09809494018555,-4.36305999755859e-05,-1.92995262145996,-1.1351432800293,-4.35113906860352e-05,-1.96182727813721,-1.02506589889526,-4.37498092651367e-05,-1.92503881454468,-1.13387823104858,-4.35113906860352e-05,-1.96034622192383,-1.02465391159058,-4.35672700405121e-05,-2.30711936950684,-1.13946199417114,-4.35113906860352e-05,-2.16234874725342,-1.20406150817871,-4.36305999755859e-05,-1.67563629150391,-1.03116345405579,-4.38690185546875e-05,-1.41877889633179,-1.02282667160034,-4.37498092651367e-05,-1.26987934112549,-0.904333114624023,-4.38690185546875e-05,-1.27418279647827,-1.00408220291138,-4.36305999755859e-05,-1.26704216003418,-0.982861995697021,-4.35113906860352e-05,-1.07571840286255,-0.827673673629761,-4.36305999755859e-05,-1.06822443008423,-0.946598410606384,-4.36305999755859e-05,-1.06046533584595,-0.924797177314758,-4.35709953308105e-05,-0.990612030029297,-0.796777129173279,-4.35709953308105e-05,-0.942557811737061,-0.89209520816803,-4.35709953308105e-05,-0.946561336517334,-0.912911057472229,-4.35709953308105e-05,-0.949477195739746,-0.894056797027588,-4.35411930084229e-05,-0.990612030029297,-0.796777129173279,-4.35709953308105e-05,-0.946561336517334,-0.912911057472229,-4.36305999755859e-05,-0.949477195739746,-0.894056797027588,-4.35113906860352e-05,-1.02395677566528,-0.808120608329773,-4.35113906860352e-05,-0.999317169189453,-0.927378535270691,-4.36305999755859e-05,-0.99631404876709,-0.906778573989868,-4.36305999755859e-05,-1.26987934112549,-0.904333114624023,-4.33921813964844e-05,-1.41877889633179,-1.02282667160034,-4.36305999755859e-05,-1.27418279647827,-1.00408220291138,-4.36305999755859e-05,-1.26704216003418,-0.982861995697021,-4.36305999755859e-05,-1.51055765151978,-0.984602689743042,-4.36305999755859e-05,-1.90345525741577,-1.05610656738281,-4.36305999755859e-05,-2.14643621444702,-1.07969617843628, --4.35672700405121e-05,-2.30547714233398,-1.18515491485596,-4.36305999755859e-05,-2.14820384979248,-1.13661527633667,-4.36305999755859e-05,-1.9067907333374,-1.05698299407959,-4.35113906860352e-05,-1.74521064758301,-0.975810527801514,-4.35113906860352e-05,-1.68386793136597,-0.86322546005249,-4.35113906860352e-05,-1.66844987869263,-0.942258834838867,-4.37498092651367e-05,-1.42481470108032,-0.842870473861694,-4.36305999755859e-05,-1.39153909683228,-0.604957818984985,-4.36305999755859e-05,-1.30721712112427,-0.753713130950928,-4.36305999755859e-05,-1.29594659805298,-0.419441699981689,-4.36305999755859e-05,-1.15243673324585,-0.623495817184448,-4.35709953308105e-05,-1.27619743347168,-0.373807668685913,-4.35709953308105e-05,-1.10014629364014,-0.578470468521118,-4.35411930084229e-05,-1.10222578048706,-0.58037543296814,-4.35709953308105e-05,-1.27619743347168,-0.373807668685913,-4.35709953308105e-05,-1.10222578048706,-0.58037543296814,-4.35113906860352e-05,-1.28057432174683,-0.382550239562988,-4.35113906860352e-05,-1.1188759803772,-0.594574928283691,-4.36305999755859e-05,-1.39153909683228,-0.604957818984985,-4.36305999755859e-05,-1.42481470108032,-0.842870473861694,-4.36305999755859e-05,-1.30721712112427,-0.753713130950928,-4.36305999755859e-05,-1.53701782226563,-0.795966148376465,-4.36305999755859e-05,-1.51032590866089,-0.886891841888428,-4.36305999755859e-05,-2.19449472427368,-0.999518394470215,-4.35709953308105e-05,-2.32233572006226,-1.05922555923462,-4.36305999755859e-05,-2.12961053848267,-1.01412773132324,-4.36305999755859e-05,-2.14833641052246,-1.00008106231689,-4.36305999755859e-05,-2.19449472427368,-0.999518394470215,-4.36305999755859e-05,-2.12961006164551,-1.01412773132324,-4.36305999755859e-05,-2.14833688735962,-1.00008106231689,-4.37498092651367e-05,-1.82147264480591,-0.860582113265991,-4.36305999755859e-05,-1.72775173187256,-0.840812206268311,-4.36305999755859e-05,-1.56271028518677,-0.678121328353882,-4.38690185546875e-05,-1.73449420928955,-0.531019687652588,-4.36305999755859e-05,-1.53549957275391,-0.531965255737305, --4.38690185546875e-05,-1.7687029838562,-0.320532321929932,-4.36305999755859e-05,-1.51141977310181,-0.322618961334229,-4.36305999755859e-05,-1.76427507400513,-0.3328857421875,-4.35709953308105e-05,-1.50125980377197,-0.317518472671509,-4.36305999755859e-05,-1.5042896270752,-0.306129693984985,-4.36305999755859e-05,-1.76427507400513,-0.3328857421875,-4.35709953308105e-05,-1.5042896270752,-0.306129693984985,-4.35113906860352e-05,-1.77429485321045,-0.288347244262695,-4.35113906860352e-05,-1.50864601135254,-0.288437128067017,-4.38690185546875e-05,-1.73449420928955,-0.531019687652588,-4.36305999755859e-05,-1.56271028518677,-0.678121328353882,-4.37498092651367e-05,-1.53549957275391,-0.531965255737305,-4.38690185546875e-05,-1.73605728149414,-0.763428926467896,-4.37498092651367e-05,-1.60509443283081,-0.756015539169312,-4.36305999755859e-05,-2.38154602050781,-1.03164720535278,-4.35709953308105e-05,-2.40181684494019,-1.04881715774536,-4.36305999755859e-05,-2.2717809677124,-1.01433277130127,-4.36305999755859e-05,-2.38154602050781,-1.03164720535278,-4.35113906860352e-05,-2.2717809677124,-1.01433277130127,-4.36305999755859e-05,-2.20044803619385,-0.960305690765381,-4.36305999755859e-05,-1.98664999008179,-0.908040523529053,-4.33921813964844e-05,-1.9544939994812,-0.732621192932129,-4.33921813964844e-05,-2.24657487869263,-0.70447826385498,-4.33921813964844e-05,-1.98389959335327,-0.598296642303467,-4.33921813964844e-05,-2.29780340194702,-0.530198097229004,-4.38690185546875e-05,-2.03763675689697,-0.400607585906982,-4.36305999755859e-05,-2.293860912323,-0.52625036239624,-4.35709953308105e-05,-2.02651357650757,-0.437598705291748,-4.36305999755859e-05,-2.03395938873291,-0.409605503082275,-4.36305999755859e-05,-2.293860912323,-0.52625036239624,-4.36305999755859e-05,-2.03395938873291,-0.409605503082275,-4.37498092651367e-05,-2.31081247329712,-0.481113910675049,-4.36305999755859e-05,-2.04880714416504,-0.358504772186279,-4.38690185546875e-05,-2.24657487869263,-0.70447826385498,-4.38690185546875e-05,-1.95449352264404,-0.732621192932129,-4.38690185546875e-05, --1.98389959335327,-0.598296642303467,-4.38690185546875e-05,-2.20454692840576,-0.888426780700684,-4.33921813964844e-05,-1.95145034790039,-0.814723491668701,-4.36305999755859e-05,-2.71664237976074,-1.05347394943237,-4.35672700405121e-05,-2.56792402267456,-1.06171321868896,-4.35113906860352e-05,-2.52516937255859,-1.03866529464722,-4.36305999755859e-05,-2.71664237976074,-1.05347394943237,-4.36305999755859e-05,-2.52516984939575,-1.03866529464722,-4.36305999755859e-05,-2.70043849945068,-1.02793455123901,-4.36305999755859e-05,-2.44016599655151,-0.994521617889404,-4.38690185546875e-05,-2.46165370941162,-0.910579204559326,-4.38690185546875e-05,-2.7257342338562,-0.927053451538086,-4.38690185546875e-05,-2.48538303375244,-0.820239067077637,-4.36305999755859e-05,-2.76147937774658,-0.806722164154053,-4.38690185546875e-05,-2.52886915206909,-0.676417827606201,-4.36305999755859e-05,-2.75739669799805,-0.807723522186279,-4.35709953308105e-05,-2.51948213577271,-0.69158411026001,-4.36305999755859e-05,-2.52452707290649,-0.672729015350342,-4.36305999755859e-05,-2.75739574432373,-0.807723522186279,-4.35113906860352e-05,-2.52452707290649,-0.672729015350342,-4.36305999755859e-05,-2.76793813705444,-0.782290935516357,-4.36305999755859e-05,-2.53895330429077,-0.638420581817627,-4.33921813964844e-05,-2.7257342338562,-0.927053451538086,-4.38690185546875e-05,-2.46165370941162,-0.910579204559326,-4.38690185546875e-05,-2.48538208007813,-0.820239067077637,-4.36305999755859e-05,-2.69835472106934,-1.03591632843018,-4.38690185546875e-05,-2.44852924346924,-0.963002681732178,-4.35709953308105e-05,-3.21158266067505,-1.13307809829712,-4.35784459114075e-05,-2.96336889266968,-1.11834096908569,-4.36007976531982e-05,-2.9697527885437,-1.09422636032104,-4.35709953308105e-05,-3.21158266067505,-1.13307809829712,-4.36305999755859e-05,-2.9697527885437,-1.09422636032104,-4.36305999755859e-05,-3.21702814102173,-1.12045049667358,-4.36305999755859e-05,-2.97597646713257,-1.07791948318481,-4.36305999755859e-05,-2.97469234466553,-1.07746410369873,-4.37498092651367e-05,-3.23259592056274, --1.05390501022339,-4.36305999755859e-05,-2.99307203292847,-1.00629472732544,-4.37498092651367e-05,-3.26384830474854,-0.937985420227051,-4.36305999755859e-05,-3.02629137039185,-0.88843297958374,-4.36305999755859e-05,-3.26335668563843,-0.938061714172363,-4.35784459114075e-05,-3.02079820632935,-0.901928901672363,-4.35709953308105e-05,-3.02401685714722,-0.889811515808105,-4.35709953308105e-05,-3.26335668563843,-0.938061714172363,-4.36305999755859e-05,-3.02401685714722,-0.889811515808105,-4.36305999755859e-05,-3.2709002494812,-0.91145133972168,-4.37498092651367e-05,-3.03262853622437,-0.864700317382813,-4.36305999755859e-05,-3.23259592056274,-1.05390501022339,-4.36305999755859e-05,-2.97469234466553,-1.07746410369873,-4.38690185546875e-05,-2.99307203292847,-1.00629472732544,-4.36305999755859e-05,-3.20968055725098,-1.1480565071106,-4.36305999755859e-05,-2.96890163421631,-1.10464906692505,-4.35709953308105e-05,-3.48982238769531,-1.14390754699707,-4.35635447502136e-05,-3.36550855636597,-1.15591192245483,-4.35709953308105e-05,-3.36912631988525,-1.14217472076416,-4.36305999755859e-05,-3.48982238769531,-1.14390754699707,-4.35709953308105e-05,-3.36912631988525,-1.14217472076416,-4.35113906860352e-05,-3.48796081542969,-1.13206624984741,-4.35113906860352e-05,-3.37384033203125,-1.13147306442261,-4.36305999755859e-05,-3.37451887130737,-1.1236138343811,-4.36305999755859e-05,-3.48853969573975,-1.06275844573975,-4.36305999755859e-05,-3.38944339752197,-1.06572294235229,-4.36305999755859e-05,-3.51230335235596,-0.997057914733887,-4.36305999755859e-05,-3.41453170776367,-0.971809387207031,-4.35709953308105e-05,-3.52136850357056,-1.00130081176758,-4.35598194599152e-05,-3.4107232093811,-0.985467433929443,-4.36305999755859e-05,-3.41449928283691,-0.971323013305664,-4.35709953308105e-05,-3.52136850357056,-1.00130081176758,-4.35709953308105e-05,-3.41449928283691,-0.971323013305664,-4.35113906860352e-05,-3.52392292022705,-0.982704162597656,-4.35113906860352e-05,-3.42070627212524,-0.948532104492188,-4.37498092651367e-05,-3.48853969573975,-1.06275844573975, --4.37498092651367e-05,-3.37451887130737,-1.1236138343811,-4.36305999755859e-05,-3.38944339752197,-1.06572294235229,-4.36305999755859e-05,-3.47917938232422,-1.12614679336548,-4.36305999755859e-05,-3.37026023864746,-1.1450514793396,-4.35709953308105e-05,-3.72054433822632,-1.16573619842529,-4.3574720621109e-05,-3.62389945983887,-1.1654577255249,-4.35709953308105e-05,-3.62106895446777,-1.16050624847412,-4.35709953308105e-05,-3.72054433822632,-1.16573619842529,-4.35709953308105e-05,-3.62106895446777,-1.16050624847412,-4.35709953308105e-05,-3.68569946289063,-1.14287948608398,-4.35113906860352e-05,-3.60085773468018,-1.14302062988281,-4.37498092651367e-05,-3.55193662643433,-1.1010799407959,-4.36305999755859e-05,-3.60377597808838,-1.07383251190186,-4.37498092651367e-05,-3.55498170852661,-1.06602954864502,-4.35113906860352e-05,-3.64059972763062,-1.04835414886475,-4.35113906860352e-05,-3.59117460250854,-1.02086639404297,-4.35709953308105e-05,-3.71069574356079,-1.08418846130371,-4.3574720621109e-05,-3.6277551651001,-1.04756546020508,-4.35709953308105e-05,-3.62796926498413,-1.03955364227295,-4.35411930084229e-05,-3.71069574356079,-1.08418846130371,-4.35709953308105e-05,-3.62796926498413,-1.03955364227295,-4.36305999755859e-05,-3.69362640380859,-1.06295299530029,-4.35113906860352e-05,-3.62227249145508,-1.02070808410645,-4.35113906860352e-05,-3.60377550125122,-1.07383251190186,-4.36305999755859e-05,-3.55193662643433,-1.1010799407959,-4.36305999755859e-05,-3.55498170852661,-1.06602954864502,-4.36305999755859e-05,-3.62345457077026,-1.1140022277832,-4.35113906860352e-05,-3.56502866744995,-1.12184906005859,-4.35598194599152e-05,-3.75076007843018,-1.1381893157959,-4.35709953308105e-05,-3.74600839614868,-1.13327217102051,-4.35113906860352e-05,-3.69362640380859,-1.06295299530029,-4.35113906860352e-05,-3.71568059921265,-1.10993576049805,-4.35709953308105e-05,-3.74600791931152,-1.13327217102051,-4.35113906860352e-05,-3.64059972763062,-1.04835414886475,-4.35113906860352e-05,-3.64998626708984,-1.08444881439209,-4.36305999755859e-05,-1.06822443008423, --0.946598410606384,-4.36305999755859e-05,-1.07571840286255,-0.827673673629761,-4.36305999755859e-05,-1.06046533584595,-0.924797177314758,-4.37498092651367e-05,-1.67621660232544,-1.03129935264587,-4.35113906860352e-05,-1.29594659805298,-0.419441699981689,-4.35113906860352e-05,-1.15243673324585,-0.623495817184448,-4.36305999755859e-05,-1.7687029838562,-0.320532321929932,-4.37498092651367e-05,-1.51141977310181,-0.322618961334229,-4.33921813964844e-05,-2.29780340194702,-0.530198097229004,-4.33921813964844e-05,-2.03763675689697,-0.400607585906982,-4.36305999755859e-05,-2.76147937774658,-0.806722164154053,-4.38690185546875e-05,-2.52886915206909,-0.676417827606201,-4.36305999755859e-05,-3.26384830474854,-0.937985420227051,-4.36305999755859e-05,-3.02629137039185,-0.88843297958374,-4.36305999755859e-05,-3.51230335235596,-0.997057914733887,-4.35113906860352e-05,-3.41453170776367,-0.971809387207031,-4.35113906860352e-05,-3.59117460250854,-1.02086639404297,-4.35113906860352e-05,-3.68569946289063,-1.14287948608398,-4.35113906860352e-05,-3.71568012237549,-1.10993576049805,-4.35113906860352e-05,-3.48796081542969,-1.13206624984741,-4.35113906860352e-05,-3.60085773468018,-1.14302062988281,-4.36305999755859e-05,-3.21702814102173,-1.12045049667358,-4.35113906860352e-05,-3.37384033203125,-1.13147306442261,-4.36305999755859e-05,-2.70043849945068,-1.02793455123901,-4.35113906860352e-05,-2.97597646713257,-1.07791948318481,-4.37498092651367e-05,-2.20044803619385,-0.960305690765381,-4.37498092651367e-05,-2.44016551971436,-0.994521617889404,-4.36305999755859e-05,-1.82147264480591,-0.860582113265991,-4.37498092651367e-05,-1.98664999008179,-0.908040523529053,-4.36305999755859e-05,-1.68386793136597,-0.86322546005249,-4.35113906860352e-05,-1.72775173187256,-0.840812206268311,-4.36305999755859e-05,-1.74462938308716,-0.975666761398315,-4.35113906860352e-05,-1.66844987869263,-0.942258834838867,-4.36305999755859e-05,-1.51055765151978,-0.984602689743042,-4.36305999755859e-05,-0.999317169189453,-0.927378535270691,-4.35113906860352e-05,-1.02395677566528, --0.808120608329773,-4.35113906860352e-05,-0.99631404876709,-0.906778573989868,-4.37498092651367e-05,-1.53701782226563,-0.795966148376465,-4.36305999755859e-05,-1.51032590866089,-0.886891841888428,-4.38690185546875e-05,-1.73605728149414,-0.763428926467896,-4.37498092651367e-05,-1.60509443283081,-0.756015539169312,-4.38690185546875e-05,-2.20454692840576,-0.888426780700684,-4.38690185546875e-05,-1.95145034790039,-0.814723491668701,-4.37498092651367e-05,-2.69835424423218,-1.03591632843018,-4.38690185546875e-05,-2.44852924346924,-0.963002681732178,-4.37498092651367e-05,-3.20968055725098,-1.1480565071106,-4.36305999755859e-05,-2.96890163421631,-1.10464906692505,-4.36305999755859e-05,-3.4791784286499,-1.12614679336548,-4.36305999755859e-05,-3.37026023864746,-1.1450514793396,-4.35113906860352e-05,-3.62345457077026,-1.1140022277832,-4.36305999755859e-05,-3.56502866744995,-1.12184906005859,-4.36305999755859e-05,-3.64998626708984,-1.08444881439209,-4.34517860412598e-05,-3.52392292022705,-0.982704162597656,-4.35113906860352e-05,-3.62227249145508,-1.02070808410645,-4.35113906860352e-05,-3.2709002494812,-0.91145133972168,-4.35113906860352e-05,-3.42070627212524,-0.948532104492188,-4.35113906860352e-05,-2.76793813705444,-0.782290935516357,-4.35113906860352e-05,-3.03262853622437,-0.864700317382813,-4.36305999755859e-05,-2.31081247329712,-0.481113910675049,-4.36305999755859e-05,-2.53895378112793,-0.638420581817627,-4.36305999755859e-05,-1.77429485321045,-0.288347244262695,-4.36305999755859e-05,-2.04880714416504,-0.358504772186279,-4.35113906860352e-05,-1.28057432174683,-0.382550239562988,-4.36305999755859e-05,-1.50864601135254,-0.288437128067017,-4.35113906860352e-05,-1.1188759803772,-0.594574928283691,-4.35113906860352e-05,-2.16572999954224,-1.2049446105957,-4.36305999755859e-05,-2.14701461791992,-1.07987403869629,-4.35113906860352e-05,-2.15042495727539,-1.1372275352478,-0.0852267742156982,-1.07957649230957,-0.96281886100769,0.0994962453842163,-1.07962608337402,-0.962734699249268,0.205045104026794,-1.47489738464355,-1.00385522842407, -0.00137218832969666,-2.14020919799805,-1.28389883041382,-0.19362461566925,-1.47467422485352,-1.00362157821655,-0.0833708047866821,-1.07463884353638,-0.856475830078125,0.0966724157333374,-1.07476091384888,-0.856505393981934,-0.234728455543518,-1.67613363265991,-1.10377645492554,0.245242476463318,-1.67046642303467,-1.10211420059204,0.20544558763504,-1.95483160018921,-1.21162271499634,-0.171679615974426,-1.38029813766479,-0.961022853851318,-0.0848685503005981,-1.07363700866699,-0.936801433563232,0.0987800359725952,-1.07371711730957,-0.936758995056152,0.130526423454285,-1.18744230270386,-0.895362377166748,0.183879256248474,-1.38118886947632,-0.961395740509033,-0.1172696352005,-1.18731069564819,-0.895327568054199,-0.198167443275452,-1.95855617523193,-1.21263074874878,-0.21631920337677,-1.58083963394165,-1.08856725692749,0.00308069586753845,-2.32877016067505,-1.56264925003052,0.229253649711609,-1.57650995254517,-1.08693933486938,0.00529798865318298,-4.1873664855957,-1.24729156494141,0.333454489707947,-3.93204402923584,-1.16000652313232,0.157410025596619,-3.48137092590332,-0.943978309631348,0.382867097854614,-2.57307004928589,-0.664918422698975,0.426358938217163,-2.07737159729004,-0.456382751464844,0.00652727484703064,-3.87159061431885,-1.87838840484619,0.345016837120056,-3.62405776977539,-1.7886848449707,0.453587412834167,-3.16414642333984,-1.62081909179688,0.451480150222778,-2.35206604003906,-1.31255531311035,0.467020750045776,-1.79485130310059,-1.08106279373169,0.180662512779236,-3.85393142700195,-1.56869888305664,0.170158267021179,-4.06502962112427,-1.2133960723877,0.313529849052429,-3.68521976470947,-1.53755760192871,0.212401688098907,-3.75791835784912,-1.83704280853271,0.00572618842124939,-3.92873859405518,-1.63571643829346,0.381378054618835,-3.50168561935425,-1.44287395477295,0.374296545982361,-3.73156785964966,-1.07326698303223,0.343975901603699,-3.27047300338745,-1.29854774475098,0.411616683006287,-3.41179466247559,-1.71200561523438,0.398595571517944,-2.88936138153076,-1.19745016098022,0.107131242752075,-3.08841705322266, --0.798456192016602,0.360988855361938,-2.42898225784302,-1.00407648086548,0.468933820724487,-2.84316444396973,-1.49914789199829,0.392919301986694,-2.12988376617432,-1.02716016769409,0.463750123977661,-2.32225894927979,-0.552558422088623,0.40876317024231,-1.91636753082275,-0.834336280822754,0.443495035171509,-2.06624031066895,-1.20941972732544,0.126951098442078,-4.01832962036133,-1.52248573303223,0.0053609311580658,-4.01423454284668,-1.50537872314453,0.13059788942337,-4.18679237365723,-1.2437162399292,0.180856049060822,-3.92538118362427,-1.46859455108643,0.104508727788925,-3.85713052749634,-1.69682025909424,0.409212470054626,-3.70592832565308,-1.40801429748535,0.327250838279724,-3.77809953689575,-1.42381381988525,0.4477618932724,-3.87838888168335,-1.11972808837891,0.381605505943298,-3.58299589157104,-1.33490467071533,0.362444758415222,-3.56489229202271,-1.55712938308716,0.327876806259155,-3.20239734649658,-1.15057134628296,0.281509280204773,-3.33497476577759,-1.20587015151978,0.132551431655884,-3.36041212081909,-0.856351852416992,0.328027009963989,-2.96996688842773,-1.07690763473511,0.420888185501099,-3.06896352767944,-1.36396265029907,0.437875509262085,-2.39504861831665,-0.831912517547607,0.38995099067688,-2.48353958129883,-0.880455493927002,0.451108694076538,-2.48133230209351,-0.607102870941162,0.450640439987183,-2.22990417480469,-0.773721694946289,0.381571054458618,-2.3072361946106,-1.04489231109619,0.277856230735779,-3.88044929504395,-1.48364067077637,0.279405951499939,-4.0643310546875,-1.19491291046143,0.269439578056335,-3.7065691947937,-1.64188575744629,0.263981699943542,-3.69706010818481,-1.73068141937256,0.321750998497009,-3.62587881088257,-1.69514989852905,0.283285021781921,-3.69318675994873,-1.81344699859619,0.191613078117371,-3.77171850204468,-1.74496936798096,0.105406612157822,-3.82909774780273,-1.77922058105469,0.110472530126572,-3.82746410369873,-1.8622579574585,0.00629600882530212,-3.88283681869507,-1.79020977020264,0.368688464164734,-3.48028659820557,-1.2811713218689,0.314970374107361,-3.63446474075317, --0.997391700744629,0.401122450828552,-3.32455205917358,-1.51066303253174,0.411077857017517,-3.29300880432129,-1.60265207290649,0.427766680717468,-3.17612600326538,-1.52231359481812,0.42905604839325,-3.2888650894165,-1.67275667190552,0.39217746257782,-3.42367792129517,-1.61903095245361,0.370084166526794,-3.52800130844116,-1.66679859161377,0.390518546104431,-3.52064323425293,-1.75164890289307,0.367326974868774,-2.73322772979736,-0.986733913421631,0.239495992660522,-2.85720109939575,-0.722382545471191,0.3950355052948,-2.62972545623779,-1.25077295303345,0.423084497451782,-2.66668128967285,-1.34439516067505,0.404047727584839,-2.36968183517456,-1.21376132965088,0.454124927520752,-2.65241241455078,-1.42541885375977,0.440816640853882,-2.86687898635864,-1.40729284286499,0.441847562789917,-3.03322076797485,-1.48145198822021,0.465764284133911,-3.00866031646729,-1.56245136260986,0.449249505996704,-2.05379295349121,-0.715490818023682,0.46956205368042,-2.16644430160522,-0.485331058502197,0.412766695022583,-1.95828008651733,-0.726195812225342,0.40359091758728,-1.96987056732178,-0.932365894317627,0.424638032913208,-1.9215235710144,-1.06558322906494,0.43608546257019,-1.83126783370972,-0.99887752532959,0.456183195114136,-1.89158535003662,-1.14878416061401,0.410672426223755,-2.09351348876953,-1.12955760955811,0.408244848251343,-2.25921487808228,-1.18468999862671,0.446127653121948,-2.23484325408936,-1.26998567581177,0.0546453893184662,-4.05081796646118,-1.52632141113281,0.0564096868038177,-4.22141265869141,-1.25774097442627,0.0615976750850677,-3.85877799987793,-1.78779602050781,0.0640333592891693,-3.85127258300781,-1.87096691131592,0.0582230985164642,-3.90459156036377,-1.69157791137695,0.149999022483826,-3.79926061630249,-1.76470470428467,0.162150263786316,-3.79314136505127,-1.84986209869385,0.174400687217712,-3.9646635055542,-1.49830913543701,0.168392479419708,-4.12844467163086,-1.22340297698975,0.150635540485382,-3.84046983718872,-1.65621662139893,0.216122925281525,-3.9194278717041,-1.48137378692627,0.209148228168488,-4.0815110206604, --1.20553302764893,0.228552222251892,-3.73601245880127,-1.73963260650635,0.249818205833435,-3.72544002532959,-1.8251895904541,0.223100483417511,-3.79015874862671,-1.62258148193359,0.294931292533875,-3.66200256347656,-1.71273803710938,0.315041899681091,-3.65992641448975,-1.80149793624878,0.324121356010437,-3.81561517715454,-1.45305252075195,0.330510020256042,-3.99190664291382,-1.16883373260498,0.303746104240417,-3.68960857391357,-1.58574867248535,0.368747115135193,-3.7851767539978,-1.43504333496094,0.398083567619324,-3.94403219223022,-1.14898490905762,0.347178339958191,-3.58016586303711,-1.68290662765503,0.370330214500427,-3.57388687133789,-1.7707781791687,0.33257520198822,-3.64575338363647,-1.56188297271729,0.384245276451111,-3.47467660903931,-1.64197254180908,0.402065634727478,-3.46577835083008,-1.73172569274902,0.405038237571716,-3.61891651153564,-1.36538696289063,0.431280016899109,-3.79199028015137,-1.08492660522461,0.383504748344421,-3.51918792724609,-1.48940944671631,0.400733828544617,-3.57817792892456,-1.32102394104004,0.394694209098816,-3.72113513946533,-1.05183887481689,0.398664832115173,-3.36360836029053,-1.60604000091553,0.41776978969574,-3.35158824920654,-1.69098663330078,0.386687636375427,-3.43973779678345,-1.48051643371582,0.419711470603943,-3.23550271987915,-1.5559253692627,0.44151771068573,-3.22825908660889,-1.64564418792725,0.319726824760437,-3.39219093322754,-1.22822713851929,0.237558603286743,-3.54918622970581,-0.954226493835449,0.386333823204041,-3.27986288070679,-1.39231824874878,0.308698415756226,-3.31457757949829,-1.19193649291992,0.172528028488159,-3.46593713760376,-0.906915187835693,0.435646772384644,-3.10626220703125,-1.50638389587402,0.460630416870117,-3.08724689483643,-1.59210872650146,0.399458646774292,-3.17376708984375,-1.37398433685303,0.444163084030151,-2.9522385597229,-1.4467396736145,0.46979832649231,-2.93178176879883,-1.53312301635742,0.34185528755188,-3.03343152999878,-1.09104442596436,0.1128990650177,-3.18237018585205,-0.800022125244141,0.426816701889038,-2.94041728973389,-1.27976179122925, -0.352204561233521,-2.91350030899048,-1.04245901107788,0.172983407974243,-3.02369546890259,-0.761297225952148,0.434463739395142,-2.77554273605347,-1.3797926902771,0.462432384490967,-2.75201034545898,-1.46393585205078,0.414896726608276,-2.8017749786377,-1.25081253051758,0.403648614883423,-2.5114688873291,-1.27734231948853,0.443376302719116,-2.5025463104248,-1.36841535568237,0.394281148910522,-2.56330490112305,-0.922189235687256,0.348917245864868,-2.67831563949585,-0.670343399047852,0.368622064590454,-2.48470401763916,-1.1254620552063,0.0557464063167572,-4.17627048492432,-1.34713077545166,0.00528368353843689,-4.13543081283569,-1.33329582214355,0.471209526062012,-2.12320995330811,-0.563194274902344,0.425491571426392,-2.03232288360596,-0.539206504821777,0.174902737140656,-4.02766990661621,-1.29305744171143,0.211464703083038,-4.03967714309692,-1.29601097106934,0.282214522361755,-4.01845550537109,-1.28794765472412,0.334830164909363,-3.94342994689941,-1.25937938690186,0.175828337669373,-4.08341026306152,-1.31226825714111,0.335023283958435,-3.89180088043213,-1.24028873443604,0.133714556694031,-4.14372396469116,-1.33464050292969,0.393121600151062,-3.9057674407959,-1.24305057525635,0.440989375114441,-3.83463716506958,-1.21324443817139,0.420985579490662,-3.7450475692749,-1.17304611206055,0.372686266899109,-3.6971492767334,-1.14931869506836,0.398272395133972,-3.69021606445313,-1.13986682891846,0.325697183609009,-3.60047292709351,-1.0875072479248,0.247892141342163,-3.51080942153931,-1.03835201263428,0.175201773643494,-3.45363569259644,-1.01140022277832,0.202614545822144,-3.43563938140869,-0.996315956115723,0.185114145278931,-3.32605934143066,-0.948760509490967,0.169378519058228,-3.14395093917847,-0.888580799102783,0.150058031082153,-3.07004165649414,-0.871615409851074,0.21941351890564,-3.00344085693359,-0.851691246032715,0.277370691299438,-2.82525634765625,-0.803231239318848,0.369901418685913,-2.64136171340942,-0.750749111175537,0.390376329421997,-2.55037069320679,-0.726226329803467,0.456363677978516,-2.45625782012939,-0.68468713760376, -0.470907688140869,-2.29300212860107,-0.624828338623047,0.00527366995811462,-4.15812301635742,-1.23769474029541,0.304426074028015,-3.91399192810059,-1.15168952941895,0.11770236492157,-3.47465896606445,-0.939228534698486,0.323231935501099,-2.55106210708618,-0.659409523010254,0.378279447555542,-2.06856203079224,-0.451966762542725,0.00655636191368103,-3.55120515823364,-1.83831691741943,0.00628170371055603,-3.12389278411865,-1.84299087524414,0.173018276691437,-3.83674621582031,-1.56216144561768,0.163376688957214,-4.04478549957275,-1.20589065551758,0.290137648582458,-3.67472791671753,-1.54581356048584,0.00648865103721619,-3.69783163070679,-1.80979633331299,0.00572285056114197,-3.91315698623657,-1.62974739074707,0.350739359855652,-3.49533796310425,-1.44102954864502,0.335630774497986,-3.71957397460938,-1.06840419769287,0.3183354139328,-3.26527690887451,-1.2968602180481,0.00658687949180603,-3.3974027633667,-1.86146116256714,0.32457709312439,-2.84345102310181,-1.18280506134033,0.0554029941558838,-3.05112838745117,-0.785058498382568,0.298027276992798,-2.38791370391846,-1.02713537216187,0.297346830368042,-2.10727453231812,-1.01747369766235,0.362050294876099,-2.31754064559937,-0.553362369537354,0.326768159866333,-1.90125131607056,-0.840911388397217,0.0906780660152435,-3.95154094696045,-1.49977207183838,0.00534233450889587,-3.98374652862549,-1.49447441101074,0.09694704413414,-4.12890481948853,-1.23354530334473,0.171754240989685,-3.90122890472412,-1.45978355407715,0.0914219319820404,-3.81469488143921,-1.68038272857666,0.317974925041199,-3.63772678375244,-1.38316631317139,0.294657111167908,-3.75597190856934,-1.41698932647705,0.355110049247742,-3.82316541671753,-1.09994792938232,0.338825583457947,-3.56631803512573,-1.32971096038818,0.310948729515076,-3.53821897506714,-1.54703807830811,0.179722189903259,-3.16882848739624,-1.1331992149353,0.246017336845398,-3.32520914077759,-1.20214939117432,-0.0105501413345337,-3.32914352416992,-0.836555957794189,0.231165766716003,-2.91890668869019,-1.05774450302124,0.348511099815369,-3.05472183227539, --1.35869741439819,0.296024560928345,-2.38114070892334,-0.834756851196289,0.306761503219604,-2.44724035263062,-0.900220394134521,0.338293313980103,-2.47085666656494,-0.606566905975342,0.297593355178833,-2.23017501831055,-0.775519847869873,0.290258169174194,-2.27289056777954,-1.03816843032837,0.229354739189148,-3.81873369216919,-1.46086883544922,0.239317297935486,-4.0081958770752,-1.18381214141846,0.221156001091003,-3.69587516784668,-1.6206521987915,0.22181499004364,-3.67261648178101,-1.68703269958496,0.271373152732849,-3.60080718994141,-1.66581392288208,0.00654396414756775,-3.62787055969238,-1.82441902160645,0.158921122550964,-3.73862218856812,-1.71100997924805,0.0917585790157318,-3.79218482971191,-1.73416996002197,0.00641092658042908,-3.75993394851685,-1.7929573059082,0.0062311589717865,-3.83690166473389,-1.75345134735107,0.262649416923523,-3.41952753067017,-1.24822950363159,0.196711421012878,-3.58600616455078,-0.965883255004883,0.342849135398865,-3.32468557357788,-1.45337295532227,0.354918837547302,-3.29064178466797,-1.54326820373535,0.36541211605072,-3.16577243804932,-1.50291347503662,0.00649866461753845,-3.27372646331787,-1.85873746871948,0.340731024742126,-3.40843725204468,-1.5946683883667,0.313783049583435,-3.50962829589844,-1.6261191368103,0.00659212470054626,-3.48366975784302,-1.84973239898682,0.249150037765503,-2.69572687149048,-0.970438003540039,0.151932954788208,-2.83111667633057,-0.711823463439941,0.304800748825073,-2.6032280921936,-1.22247838973999,0.311562776565552,-2.58921051025391,-1.28375577926636,0.268264532089233,-2.27625560760498,-1.17769765853882,0.345199346542358,-2.80124425888062,-1.3705735206604,0.365422606468201,-3.0307731628418,-1.44738531112671,0.00588688254356384,-2.92858171463013,-1.81489181518555,0.30080246925354,-2.06055068969727,-0.717570781707764,0.362116575241089,-2.17266130447388,-0.489457607269287,0.323554277420044,-1.94897508621216,-0.723076343536377,0.315618753433228,-1.95808124542236,-0.926336288452148,0.289436101913452,-1.91559839248657,-1.04963302612305,0.285164594650269,-2.06153202056885, --1.08432722091675,0.274888277053833,-2.17532825469971,-1.13835144042969,0.0388983190059662,-3.96284675598145,-1.49542808532715,0.041923850774765,-4.14422273635864,-1.23782539367676,0.0565751492977142,-3.81311416625977,-1.7479829788208,0.0528958737850189,-3.85979652404785,-1.67476081848145,0.122134029865265,-3.76482915878296,-1.72872638702393,0.145830452442169,-3.90027332305908,-1.47432804107666,0.143963634967804,-4.07875967025757,-1.2011833190918,0.134878993034363,-3.80383253097534,-1.64234161376953,0.183855414390564,-3.86006593704224,-1.46082973480225,0.182287096977234,-4.0298228263855,-1.19364929199219,0.193031132221222,-3.70164251327515,-1.70417499542236,0.19431483745575,-3.76154470443726,-1.60918521881104,0.243942618370056,-3.63848686218262,-1.68138217926025,0.271314978599548,-3.76271104812622,-1.433349609375,0.284624934196472,-3.9524040222168,-1.14970302581787,0.263197302818298,-3.66596031188965,-1.576247215271,0.293232798576355,-3.71357107162476,-1.40859508514404,0.328623652458191,-3.8871545791626,-1.12266826629639,0.294262766838074,-3.55175304412842,-1.65155696868896,0.288931727409363,-3.61991500854492,-1.55439853668213,0.326622366905212,-3.46234130859375,-1.6165132522583,0.3299640417099,-3.57264757156372,-1.34868335723877,0.347307085990906,-3.75387811660767,-1.07174110412598,0.33835780620575,-3.49878120422363,-1.482102394104,0.305388808250427,-3.51835584640503,-1.29644060134888,0.280787825584412,-3.67325925827026,-1.02648830413818,0.348638892173767,-3.34369802474976,-1.57591724395752,0.341657519340515,-3.42416572570801,-1.46554756164551,0.359617114067078,-3.23176956176758,-1.53218460083008,0.23132312297821,-3.34297513961792,-1.20820713043213,0.131917834281921,-3.51435279846191,-0.931910514831543,0.335026621818542,-3.2680492401123,-1.37881374359131,0.209335684776306,-3.28256368637085,-1.17676210403442,0.0606268644332886,-3.43937349319458,-0.889081001281738,0.366746306419373,-3.08923149108887,-1.48421001434326,0.349228262901306,-3.14808416366577,-1.36447525024414,0.361044764518738,-2.94622039794922,-1.42906427383423, -0.203996539115906,-3.01061153411865,-1.07789850234985,0.00571095943450928,-3.16177940368652,-0.78679895401001,0.344926714897156,-2.92657470703125,-1.27442646026611,0.224068999290466,-2.83522129058838,-1.0141282081604,0.07889723777771,-2.96382427215576,-0.739315032958984,0.328267335891724,-2.69173288345337,-1.33721685409546,0.32445502281189,-2.73125171661377,-1.2328462600708,0.28987193107605,-2.45006990432739,-1.24537134170532,0.28028130531311,-2.54500246047974,-0.922389030456543,0.26038670539856,-2.66818571090698,-0.668148994445801,0.291522741317749,-2.46895980834961,-1.13373899459839,0.037093959748745,-4.07595825195313,-1.31935691833496,0.00525555014610291,-4.10282611846924,-1.32252979278564,0.326884508132935,-2.13310861587524,-0.56869649887085,0.346553564071655,-2.02370738983154,-0.536531925201416,0.165871024131775,-4.00124502182007,-1.28372478485107,0.178007006645203,-3.96813344955444,-1.27848815917969,0.232675433158875,-3.94027185440063,-1.27058219909668,0.276879191398621,-3.88540935516357,-1.23445510864258,0.144511997699738,-4.01394128799438,-1.28409385681152,0.298758387565613,-3.86787509918213,-1.22985076904297,0.0928252637386322,-4.06340408325195,-1.3187141418457,0.300001978874207,-3.82838249206543,-1.20870685577393,0.321783423423767,-3.75808572769165,-1.18619346618652,0.31283175945282,-3.68950462341309,-1.15267181396484,0.318331599235535,-3.67640781402588,-1.14172458648682,0.259092211723328,-3.62265825271606,-1.10686111450195,0.177893996238708,-3.53071784973145,-1.04931735992432,0.116725325584412,-3.45504426956177,-1.01690149307251,0.127768874168396,-3.44410800933838,-1.00680923461914,0.0723437070846558,-3.40694141387939,-0.976841449737549,0.0053027868270874,-3.29364776611328,-0.926627635955811,0.0243123769760132,-3.12202787399292,-0.872929573059082,0.0633256435394287,-3.02457094192505,-0.853794097900391,0.0844924449920654,-2.93160104751587,-0.823890686035156,0.153047800064087,-2.79141235351563,-0.789791107177734,0.256215810775757,-2.62695789337158,-0.748622417449951,0.309790372848511,-2.52503442764282,-0.724611759185791, -0.309253931045532,-2.44639158248901,-0.68597936630249,0.326277017593384,-2.29300451278687,-0.628254890441895,0.0483268201351166,-4.20429944992065,-1.23616600036621,0.00529035925865173,-4.18009662628174,-1.23202610015869,0.108660042285919,-4.18317890167236,-1.22793674468994,0.15482360124588,-4.11578512191772,-1.19827365875244,0.166365027427673,-4.06039190292358,-1.19916439056396,0.196489691734314,-4.06672143936157,-1.18192100524902,0.260404944419861,-4.0486273765564,-1.17044639587402,0.308927416801453,-3.98392820358276,-1.14200305938721,0.319438815116882,-3.92907333374023,-1.14481544494629,0.367684721946716,-3.92752981185913,-1.1159553527832,0.40805184841156,-3.86461496353149,-1.08855438232422,0.39698588848114,-3.78577852249146,-1.05928516387939,0.356469511985779,-3.72977209091187,-1.062668800354,0.333277583122253,-3.69868850708008,-1.03626251220703,0.250252604484558,-3.61251449584961,-0.979511260986328,0.181886076927185,-3.53491735458374,-0.940640449523926,0.13559901714325,-3.47942781448364,-0.937496185302734,0.107657313346863,-3.45277214050293,-0.89788293838501,0.043287992477417,-3.34420919418335,-0.85513973236084,0.0451357364654541,-3.1753625869751,-0.793411731719971,0.0768945217132568,-3.07173919677734,-0.78594970703125,0.11379599571228,-2.99798727035522,-0.74122428894043,0.18815016746521,-2.84429216384888,-0.720340251922607,0.299391984939575,-2.67802619934082,-0.662016868591309,0.352653741836548,-2.56469058990479,-0.655976295471191,0.395386457443237,-2.47845411300659,-0.59985876083374,0.413788557052612,-2.31839609146118,-0.557309627532959,0.417339086532593,-2.17424488067627,-0.479892730712891,0.40402626991272,-2.0788688659668,-0.4443678855896,0.0597494542598724,-3.89169216156006,-1.71987247467041,0.00590071082115173,-3.91239309310913,-1.68124485015869,0.313897490501404,-3.66378355026245,-1.5811128616333,0.300633311271667,-3.67993783950806,-1.62190723419189,0.269969344139099,-3.70125532150269,-1.66896057128906,0.225114226341248,-3.77335739135742,-1.65639400482178,0.336228251457214,-3.62479257583618,-1.59568023681641, -0.183141052722931,-3.82766914367676,-1.61825847625732,0.364026427268982,-3.55346822738647,-1.58820390701294,0.149615168571472,-3.82813835144043,-1.68737602233887,0.382390379905701,-3.50284671783447,-1.53214740753174,0.103523582220078,-3.84842967987061,-1.7205753326416,0.384578585624695,-3.47424650192261,-1.49230289459229,0.390143275260925,-3.41438150405884,-1.51692676544189,0.404852747917175,-3.3130931854248,-1.5417423248291,0.401370406150818,-3.26355886459351,-1.44040489196777,0.383225321769714,-3.23705720901489,-1.36379289627075,0.414899587631226,-3.15196228027344,-1.41267347335815,0.429285764694214,-3.05832481384277,-1.39874410629272,0.435003995895386,-2.94436502456665,-1.32948446273804,0.418823957443237,-2.88106155395508,-1.25851774215698,0.421327829360962,-2.79355621337891,-1.28836297988892,0.402691602706909,-2.63858222961426,-1.28017616271973,0.376381635665894,-2.48318719863892,-1.16391611099243,0.368597269058228,-2.41241407394409,-1.05724382400513,0.387247323989868,-2.29357767105103,-1.08435869216919,0.397362947463989,-2.11926555633545,-1.05738592147827,0.408851861953735,-1.95585060119629,-0.971475601196289,0.415173292160034,-1.89128971099854,-0.877898693084717,0.321002244949341,-1.88842153549194,-0.87572717666626,0.309935331344604,-1.93314361572266,-0.956480503082275,0.05703005194664,-3.934730052948,-1.6492919921875,0.00560459494590759,-3.95126390457153,-1.60363483428955,0.0476654469966888,-3.86979866027832,-1.6227560043335,0.00559839606285095,-3.92464685440063,-1.59385108947754,0.119052290916443,-3.89273500442505,-1.65479564666748,0.160590529441833,-3.86867809295654,-1.61806297302246,0.181717693805695,-3.87217330932617,-1.54515743255615,0.22193843126297,-3.82337713241577,-1.58909320831299,0.27348268032074,-3.74646234512329,-1.60446834564209,0.311483263969421,-3.72032070159912,-1.55479431152344,0.31805694103241,-3.70937156677246,-1.51098155975342,0.342413306236267,-3.68373918533325,-1.53431987762451,0.37651002407074,-3.59941434860229,-1.52389240264893,0.391529440879822,-3.54282855987549,-1.46099328994751,0.38353431224823, --3.52244997024536,-1.41776943206787,0.394515872001648,-3.4772515296936,-1.44405078887939,0.405465006828308,-3.35774803161621,-1.46104764938354,0.377929091453552,-3.30428886413574,-1.35361099243164,0.331920504570007,-3.28560066223145,-1.27763986587524,0.388695478439331,-3.2096266746521,-1.33193254470825,0.417644262313843,-3.10006999969482,-1.31538057327271,0.42258095741272,-2.95758628845215,-1.23381996154785,0.390920877456665,-2.90754652023315,-1.16968297958374,0.419740915298462,-2.82989978790283,-1.2026309967041,0.407541036605835,-2.65109395980835,-1.19031476974487,0.382568597793579,-2.50096654891968,-1.0757942199707,0.371814012527466,-2.44229888916016,-0.974840641021729,0.399789571762085,-2.332688331604,-0.992407321929932,0.412462949752808,-2.15505981445313,-0.964342594146729,0.419050455093384,-1.9890923500061,-0.876748561859131,0.410876512527466,-1.93599700927734,-0.819528102874756,0.324564695358276,-1.91069555282593,-0.811196804046631,0.301408052444458,-1.98174953460693,-0.869738101959229,0.280504465103149,-2.13794755935669,-0.952174186706543,0.280944585800171,-2.30264759063721,-0.983657836914063,0.297210931777954,-2.40171670913696,-0.995203018188477,0.284398317337036,-2.48331689834595,-1.07632207870483,0.295777082443237,-2.62034368515015,-1.15556478500366,0.313311338424683,-2.75325393676758,-1.17706680297852,0.308035135269165,-2.85904264450073,-1.15337705612183,0.319962859153748,-2.93836307525635,-1.2259840965271,0.319111227989197,-3.07466745376587,-1.30417490005493,0.324500918388367,-3.17843437194824,-1.31944274902344,0.303188681602478,-3.27827167510986,-1.27496337890625,0.315488219261169,-3.28043079376221,-1.335608959198,0.329228758811951,-3.34054899215698,-1.40145015716553,0.334266543388367,-3.44649076461792,-1.42354488372803,0.348718047142029,-3.51238775253296,-1.4143214225769,0.336528658866882,-3.51299858093262,-1.44887018203735,0.309177279472351,-3.55597829818726,-1.50443458557129,0.287685751914978,-3.64186668395996,-1.5184907913208,0.291172385215759,-3.69438076019287,-1.51414966583252,0.264397025108337, --3.68583536148071,-1.53988647460938,0.220377802848816,-3.7199969291687,-1.57801628112793,0.189786314964294,-3.7834210395813,-1.570969581604,0.172632992267609,-3.85156202316284,-1.53675746917725,0.136876463890076,-3.82095956802368,-1.59749794006348,0.0890778005123138,-3.84079217910767,-1.63011360168457,0.242300271987915,-1.94899845123291,-1.13609075546265,0.175100207328796,-1.86360597610474,-1.21303653717041,0.269102931022644,-2.52431774139404,-1.42280054092407,0.312657713890076,-2.76105308532715,-1.51136302947998,0.343393683433533,-2.98963356018066,-1.56768560409546,0.3309406042099,-3.1396689414978,-1.62235069274902,0.329510569572449,-3.27203893661499,-1.6447319984436,0.297435164451599,-3.39154767990112,-1.68567085266113,0.272798418998718,-3.49431753158569,-1.70145797729492,0.223253071308136,-3.57939100265503,-1.72663021087646,0.177430033683777,-3.6520037651062,-1.73920440673828,0.112841933965683,-3.70753192901611,-1.76063537597656,0.069107860326767,-3.75988149642944,-1.76580238342285,-0.319179177284241,-3.93197345733643,-1.16030883789063,-0.141765236854553,-3.48216342926025,-0.943698406219482,-0.368948698043823,-2.57360029220581,-0.665394306182861,-0.417518377304077,-2.0772442817688,-0.458465099334717,-0.331629395484924,-3.62404918670654,-1.78874158859253,-0.440789818763733,-3.16418647766113,-1.62090396881104,-0.43600058555603,-2.35209846496582,-1.31231927871704,-0.453196287155151,-1.79476356506348,-1.08146667480469,-0.167841553688049,-3.85388565063477,-1.56889152526855,-0.157883763313293,-4.06495237350464,-1.21372127532959,-0.3000408411026,-3.68518447875977,-1.53772258758545,-0.198979556560516,-3.75790786743164,-1.83708953857422,-0.369235634803772,-3.50140047073364,-1.4431037902832,-0.361463189125061,-3.73125982284546,-1.07352924346924,-0.33154833316803,-3.27040433883667,-1.29868650436401,-0.398639321327209,-3.41180038452148,-1.71207332611084,-0.385603666305542,-2.88960933685303,-1.1973090171814,-0.088512659072876,-3.09041118621826,-0.797428607940674,-0.347772359848022,-2.42892694473267,-1.00410509109497,-0.455528020858765, --2.84322929382324,-1.49916315078735,-0.378865957260132,-2.12985897064209,-1.02745819091797,-0.451973676681519,-2.32267475128174,-0.55352783203125,-0.403127431869507,-1.91574668884277,-0.837765693664551,-0.427830457687378,-2.06627464294434,-1.20916557312012,-0.115065693855286,-4.01827621459961,-1.52271366119385,-0.118908584117889,-4.18672275543213,-1.24400901794434,-0.16822350025177,-3.92531824111938,-1.46886157989502,-0.0920707285404205,-3.85711145401001,-1.69689750671387,-0.39567244052887,-3.70578718185425,-1.40824317932129,-0.313305497169495,-3.77804040908813,-1.4240608215332,-0.433480858802795,-3.87831163406372,-1.11997032165527,-0.369627594947815,-3.58253908157349,-1.33521556854248,-0.349312424659729,-3.56487417221069,-1.55724668502808,-0.30655837059021,-3.20520114898682,-1.14948558807373,-0.267797112464905,-3.33525991439819,-1.20583009719849,-0.108786344528198,-3.36376523971558,-0.855042934417725,-0.310715436935425,-2.97157764434814,-1.07614803314209,-0.407420873641968,-3.06922197341919,-1.36398029327393,-0.424333333969116,-2.39539575576782,-0.83247184753418,-0.376989126205444,-2.48370361328125,-0.880806446075439,-0.437248945236206,-2.48181009292603,-0.607905864715576,-0.439104795455933,-2.23016548156738,-0.774919033050537,-0.366583585739136,-2.30732107162476,-1.04480314254761,-0.263971924781799,-3.88038730621338,-1.48391056060791,-0.265459656715393,-4.06425380706787,-1.19524478912354,-0.256030678749084,-3.70654153823853,-1.64200592041016,-0.250580430030823,-3.69704294204712,-1.73076152801514,-0.308424592018127,-3.62586355209351,-1.69523572921753,-0.269834160804749,-3.69317531585693,-1.81350421905518,-0.178389251232147,-3.77169847488403,-1.7450475692749,-0.092562347650528,-3.82908535003662,-1.77926731109619,-0.0973116457462311,-3.8274564743042,-1.86228656768799,-0.355334877967834,-3.48038387298584,-1.28121280670166,-0.299809098243713,-3.63507509231567,-0.997212409973145,-0.388680100440979,-3.32450437545776,-1.51079511642456,-0.398398995399475,-3.29302978515625,-1.60274839401245,-0.4151531457901,-3.17616319656372, --1.52241849899292,-0.416211724281311,-3.28888607025146,-1.67283821105957,-0.379329323768616,-3.4236798286438,-1.61911916732788,-0.356982827186584,-3.52799654006958,-1.66688060760498,-0.377344727516174,-3.5206413269043,-1.75170803070068,-0.351773023605347,-2.73375797271729,-0.986345767974854,-0.221312284469604,-2.85862302780151,-0.721744060516357,-0.382115125656128,-2.62963485717773,-1.25070905685425,-0.409621953964233,-2.66666793823242,-1.34433460235596,-0.388817548751831,-2.36971521377563,-1.21355772018433,-0.439990758895874,-2.65245628356934,-1.42534160614014,-0.427752256393433,-2.86692094802856,-1.40732908248901,-0.42907977104187,-3.03327989578247,-1.48154449462891,-0.452841520309448,-3.00872230529785,-1.56252288818359,-0.441521406173706,-2.05348873138428,-0.718268871307373,-0.458702802658081,-2.16665029525757,-0.486698627471924,-0.408294439315796,-1.95764970779419,-0.730062484741211,-0.394414663314819,-1.96948909759521,-0.934492111206055,-0.411541700363159,-1.92139863967896,-1.06622552871704,-0.425120115280151,-1.83099603652954,-1.00031423568726,-0.441295385360718,-1.89157009124756,-1.14879179000854,-0.395491361618042,-2.09352207183838,-1.12945318222046,-0.39275336265564,-2.25924730300903,-1.18445634841919,-0.430489301681519,-2.23487758636475,-1.2697286605835,-0.0436255037784576,-4.05079030990601,-1.52644062042236,-0.0455853044986725,-4.22137641906738,-1.25789642333984,-0.0489145815372467,-3.85877132415771,-1.78782367706299,-0.0509397089481354,-3.85126876831055,-1.8709831237793,-0.0461846888065338,-3.90458011627197,-1.69162845611572,-0.13694441318512,-3.79924440383911,-1.76476860046387,-0.148842990398407,-3.79313278198242,-1.84990310668945,-0.161808133125305,-3.96460056304932,-1.49857616424561,-0.156114757061005,-4.12836933135986,-1.22372817993164,-0.137915790081024,-3.84044313430786,-1.65633869171143,-0.202953517436981,-3.91936111450195,-1.48164844512939,-0.196199059486389,-4.08143281936646,-1.20586681365967,-0.215213000774384,-3.73599338531494,-1.73971366882324,-0.236374497413635,-3.72542858123779,-1.82524108886719, --0.209800362586975,-3.79012441635132,-1.62273406982422,-0.281548142433167,-3.66198348999023,-1.71282196044922,-0.30160391330719,-3.65991401672363,-1.80155372619629,-0.310045838356018,-3.81555604934692,-1.45330715179443,-0.316133141517639,-3.99183225631714,-1.16914844512939,-0.290249466896057,-3.68957614898682,-1.58589363098145,-0.354628205299377,-3.78511953353882,-1.43528652191162,-0.383575081825256,-3.94393873214722,-1.14928817749023,-0.333950638771057,-3.58015537261963,-1.68298816680908,-0.35702383518219,-3.57388114929199,-1.77083587646484,-0.31919538974762,-3.64572286605835,-1.56202411651611,-0.371278405189514,-3.47467374801636,-1.64205694198608,-0.388995766639709,-3.46578121185303,-1.73178768157959,-0.39231550693512,-3.61865520477295,-1.36562633514404,-0.417132973670959,-3.79203414916992,-1.08506011962891,-0.370885491371155,-3.51904296875,-1.48958206176758,-0.387922883033752,-3.57800722122192,-1.32119846343994,-0.380056023597717,-3.72149085998535,-1.05179595947266,-0.385902047157288,-3.36361980438232,-1.60613250732422,-0.404870629310608,-3.35160255432129,-1.69106149673462,-0.374428391456604,-3.43956136703491,-1.48069620132446,-0.407094597816467,-3.23553228378296,-1.55602931976318,-0.428727746009827,-3.22828769683838,-1.64572858810425,-0.305176377296448,-3.39273166656494,-1.2280797958374,-0.221179604530334,-3.55020952224731,-0.953861236572266,-0.374269127845764,-3.2797064781189,-1.39249992370605,-0.290953397750854,-3.31617212295532,-1.19135808944702,-0.152947187423706,-3.4679799079895,-0.906136989593506,-0.422971248626709,-3.1063117980957,-1.5064868927002,-0.447803258895874,-3.0872974395752,-1.59219074249268,-0.386558175086975,-3.17389011383057,-1.37406158447266,-0.431198835372925,-2.95229768753052,-1.44680738449097,-0.456682920455933,-2.93184661865234,-1.53317308425903,-0.321970701217651,-3.03581285476685,-1.09001493453979,-0.0904710292816162,-3.18547821044922,-0.798651218414307,-0.413310766220093,-2.94068813323975,-1.27968835830688,-0.333694219589233,-2.91518545150757,-1.04164505004883,-0.1511070728302,-3.02644109725952, --0.76002311706543,-0.421268224716187,-2.7755560874939,-1.3797869682312,-0.448697805404663,-2.75206756591797,-1.46390962600708,-0.402375936508179,-2.8017692565918,-1.25078010559082,-0.389415502548218,-2.51146030426025,-1.2772068977356,-0.428589582443237,-2.50258827209473,-1.3682656288147,-0.380489110946655,-2.56343269348145,-0.92225980758667,-0.333387136459351,-2.67914056777954,-0.670529365539551,-0.355195760726929,-2.48458099365234,-1.12534666061401,-0.04495969414711,-4.17623805999756,-1.34728908538818,-0.461566686630249,-2.12325477600098,-0.565139770507813,-0.419268369674683,-2.0319709777832,-0.542338848114014,-0.162564396858215,-4.0275936126709,-1.29338550567627,-0.198526501655579,-4.03959989547729,-1.29634952545166,-0.268245339393616,-4.01837730407715,-1.28828620910645,-0.320456147193909,-3.94335556030273,-1.25969696044922,-0.163458943367004,-4.08333301544189,-1.31260108947754,-0.32078230381012,-3.89171981811523,-1.24059963226318,-0.122011303901672,-4.14365243911743,-1.33494091033936,-0.378596901893616,-3.90567493438721,-1.24336051940918,-0.426783204078674,-3.83454084396362,-1.21349811553955,-0.407089829444885,-3.74503612518311,-1.17320346832275,-0.359994530677795,-3.69680690765381,-1.1495943069458,-0.383746743202209,-3.69053173065186,-1.13984203338623,-0.310249924659729,-3.60119295120239,-1.08728313446045,-0.231197118759155,-3.51195764541626,-1.03793430328369,-0.159254670143127,-3.45453310012817,-1.01108264923096,-0.182255983352661,-3.43796443939209,-0.995426177978516,-0.159380674362183,-3.33014965057373,-0.947161197662354,-0.145025014877319,-3.14765882492065,-0.887007236480713,-0.129534482955933,-3.07260036468506,-0.870408535003662,-0.1958167552948,-3.00665187835693,-0.850277423858643,-0.257924795150757,-2.82682609558105,-0.802570819854736,-0.354449033737183,-2.64212560653687,-0.750943183898926,-0.376561880111694,-2.55088567733765,-0.726742267608643,-0.442669630050659,-2.45675277709961,-0.685532569885254,-0.459555387496948,-2.29345321655273,-0.626008033752441,-0.290435433387756,-3.91392040252686,-1.15199089050293, --0.105852723121643,-3.47425174713135,-0.93942403793335,-0.311313390731812,-2.55098009109497,-0.659544467926025,-0.370639562606812,-2.06830644607544,-0.454324722290039,-0.160279452800751,-3.83670234680176,-1.56234264373779,-0.151241898536682,-4.04470920562744,-1.20620822906494,-0.276745438575745,-3.67469358444214,-1.5459680557251,-0.338974595069885,-3.4949688911438,-1.44130611419678,-0.324903130531311,-3.71855068206787,-1.0689811706543,-0.307917237281799,-3.26459980010986,-1.29726314544678,-0.313265562057495,-2.84323072433472,-1.18311977386475,-0.0446822643280029,-3.05092525482178,-0.784852027893066,-0.284826040267944,-2.38788890838623,-1.02712345123291,-0.285592794418335,-2.10717439651489,-1.0182318687439,-0.349934339523315,-2.31755304336548,-0.55392599105835,-0.323809385299683,-1.90055894851685,-0.844905376434326,-0.0793239176273346,-3.95150089263916,-1.49995136260986,-0.0858432352542877,-4.12884187698364,-1.23380470275879,-0.159265220165253,-3.9011697769165,-1.46004104614258,-0.0790568888187408,-3.81467866897583,-1.68044757843018,-0.305735230445862,-3.63732624053955,-1.38350772857666,-0.280970215797424,-3.75591373443604,-1.41722869873047,-0.342575669288635,-3.82258176803589,-1.10042476654053,-0.328266739845276,-3.56543111801147,-1.33021640777588,-0.298036217689514,-3.53820085525513,-1.54715967178345,-0.174520611763,-3.16649866104126,-1.13428354263306,-0.236302971839905,-3.32422780990601,-1.20263719558716,0.0168341398239136,-3.32725429534912,-0.837212085723877,-0.224739670753479,-2.9176459312439,-1.05823469161987,-0.336794495582581,-3.05460739135742,-1.35897541046143,-0.283452749252319,-2.3810510635376,-0.834781169891357,-0.294636487960815,-2.44710874557495,-0.900222778320313,-0.325626134872437,-2.47083377838135,-0.60663366317749,-0.287597417831421,-2.22995376586914,-0.776808261871338,-0.276643514633179,-2.27292108535767,-1.03822183609009,-0.216084659099579,-3.81867647171021,-1.4611120223999,-0.225941300392151,-4.00812244415283,-1.1841344833374,-0.208006501197815,-3.69584655761719,-1.62076663970947,-0.20860880613327, --3.67259645462036,-1.68711280822754,-0.258226990699768,-3.60078907012939,-1.66590213775635,-0.145960927009583,-3.73860597610474,-1.71108150482178,-0.0790950357913971,-3.79217338562012,-1.73421478271484,-0.256803154945374,-3.41727781295776,-1.24927139282227,-0.189776539802551,-3.58396148681641,-0.966808319091797,-0.331421494483948,-3.32439851760864,-1.45363330841064,-0.342564225196838,-3.2906608581543,-1.54339790344238,-0.353297829627991,-3.16580009460449,-1.50307559967041,-0.328090310096741,-3.40843915939331,-1.5947732925415,-0.300840973854065,-3.50961971282959,-1.6262149810791,-0.24182391166687,-2.69482088088989,-0.970602989196777,-0.142620801925659,-2.8305139541626,-0.711757659912109,-0.292217016220093,-2.60331392288208,-1.22263860702515,-0.298828840255737,-2.58931064605713,-1.2838921546936,-0.255203008651733,-2.27629947662354,-1.17776775360107,-0.332624077796936,-2.80140352249146,-1.37076473236084,-0.353415131568909,-3.03084087371826,-1.44756412506104,-0.297484159469604,-2.05990028381348,-0.721341133117676,-0.352991819381714,-2.17253160476685,-0.491141796112061,-0.321848630905151,-1.94821310043335,-0.727536678314209,-0.309554815292358,-1.95759582519531,-0.929187774658203,-0.279377698898315,-1.91543626785278,-1.05084037780762,-0.27289080619812,-2.06148433685303,-1.08479881286621,-0.261652708053589,-2.1753625869751,-1.13841581344604,-0.0281125605106354,-3.9628267288208,-1.49551200866699,-0.0313250124454498,-4.14419507980347,-1.23794841766357,-0.0440141260623932,-3.81310749053955,-1.74801158905029,-0.040908008813858,-3.85978698730469,-1.67480278015137,-0.109332233667374,-3.76481485366821,-1.72878265380859,-0.133691966533661,-3.90021800994873,-1.4745626449585,-0.132147967815399,-4.07868719100952,-1.201491355896,-0.122336983680725,-3.80380964279175,-1.64244651794434,-0.1711465716362,-3.86000871658325,-1.46107578277588,-0.169819056987762,-4.02974843978882,-1.19396877288818,-0.179897904396057,-3.70162534713745,-1.70425224304199,-0.181291699409485,-3.76151323318481,-1.60932064056396,-0.230744957923889,-3.63846778869629, --1.68146133422852,-0.257775902748108,-3.76265382766724,-1.43358707427979,-0.270771622657776,-3.95233249664307,-1.15001010894775,-0.249940514564514,-3.66593265533447,-1.57638263702393,-0.279718041419983,-3.7135214805603,-1.40881633758545,-0.315021157264709,-3.88691234588623,-1.12302875518799,-0.281225800514221,-3.55174160003662,-1.65164661407471,-0.275773644447327,-3.6198902130127,-1.55453205108643,-0.313809037208557,-3.4623384475708,-1.61661052703857,-0.319186806678772,-3.57184076309204,-1.34916687011719,-0.336161255836487,-3.75292825698853,-1.07231330871582,-0.326034188270569,-3.49860191345215,-1.48230075836182,-0.296834588050842,-3.51689291000366,-1.29718160629272,-0.27261221408844,-3.67148351669312,-1.02734661102295,-0.336159348487854,-3.34371137619019,-1.57603216171265,-0.329921364784241,-3.42388153076172,-1.46579170227051,-0.347387909889221,-3.23179626464844,-1.53232526779175,-0.225148797035217,-3.34087705612183,-1.20916652679443,-0.123576283454895,-3.51284408569336,-0.932565689086914,-0.324829697608948,-3.26739501953125,-1.37923192977905,-0.202030777931213,-3.28082704544067,-1.17756843566895,-0.0512830018997192,-3.43822431564331,-0.889553070068359,-0.354679703712463,-3.08928871154785,-1.48437786102295,-0.338023781776428,-3.1477837562561,-1.36477899551392,-0.348833680152893,-2.94633293151855,-1.42925214767456,-0.197958111763,-3.00893115997314,-1.07864856719971,0.000778555870056152,-3.16037940979004,-0.787085056304932,-0.332654595375061,-2.92654800415039,-1.27469778060913,-0.219085335731506,-2.8338098526001,-1.01460886001587,-0.0700113773345947,-2.96315860748291,-0.739273071289063,-0.315665006637573,-2.69187593460083,-1.3373908996582,-0.312012434005737,-2.73131656646729,-1.23308897018433,-0.276990652084351,-2.45012903213501,-1.24546241760254,-0.269485235214233,-2.54458093643188,-0.922292232513428,-0.250465154647827,-2.66767454147339,-0.668212413787842,-0.278658628463745,-2.46895980834961,-1.13377380371094,-0.0265714228153229,-4.07593154907227,-1.31946754455566,-0.320395231246948,-2.13269662857056,-0.571313381195068, --0.34255576133728,-2.02315425872803,-0.540165424346924,-0.153711020946503,-4.00117158889771,-1.2840461730957,-0.165606200695038,-3.9680609703064,-1.27880668640137,-0.219397664070129,-3.94019746780396,-1.27090549468994,-0.263160347938538,-3.88533878326416,-1.23476028442383,-0.132724463939667,-4.01386976242065,-1.28440380096436,-0.284932732582092,-3.86777973175049,-1.2301607131958,-0.0818196833133698,-4.06334495544434,-1.31896781921387,-0.286849617958069,-3.82808303833008,-1.2090892791748,-0.310216546058655,-3.75725793838501,-1.18676662445068,-0.303426384925842,-3.68804359436035,-1.15345668792725,-0.308696389198303,-3.67504692077637,-1.14244365692139,-0.252889275550842,-3.62025880813599,-1.10798835754395,-0.173225045204163,-3.52797508239746,-1.05053234100342,-0.110901951789856,-3.45276689529419,-1.01787233352661,-0.116570115089417,-3.44351005554199,-1.00708770751953,-0.0643635988235474,-3.40535354614258,-0.977505207061768,-0.00197994709014893,-3.29080963134766,-0.927711486816406,-0.021466851234436,-3.11960172653198,-0.873664379119873,-0.0560599565505981,-3.02348375320435,-0.853943347930908,-0.0790787935256958,-2.93013143539429,-0.82415246963501,-0.14649510383606,-2.79014873504639,-0.789896965026855,-0.247079610824585,-2.62616920471191,-0.748605728149414,-0.298436880111694,-2.52482175827026,-0.724672794342041,-0.297147512435913,-2.44628381729126,-0.685948848724365,-0.31492018699646,-2.29290914535522,-0.628995895385742,-0.0375734865665436,-4.2042670249939,-1.23630428314209,-0.0973087847232819,-4.18311786651611,-1.22820377349854,-0.142793774604797,-4.11571359634399,-1.19858646392822,-0.154169261455536,-4.06031847000122,-1.19948387145996,-0.183741748332977,-4.06664514541626,-1.1822452545166,-0.246689438819885,-4.04855680465698,-1.1707706451416,-0.294769883155823,-3.98385667800903,-1.14231014251709,-0.305316567420959,-3.92900371551514,-1.14511489868164,-0.353508591651917,-3.9273886680603,-1.11627674102783,-0.394344925880432,-3.86436891555786,-1.0888786315918,-0.383920311927795,-3.78546571731567,-1.05957889556885,-0.344593644142151, --3.72913885116577,-1.06307220458984,-0.321566224098206,-3.69806671142578,-1.03663158416748,-0.238842606544495,-3.61190319061279,-0.979840278625488,-0.169115662574768,-3.53479433059692,-0.940740585327148,-0.121835827827454,-3.47961950302124,-0.937454700469971,-0.0930148363113403,-3.4532470703125,-0.89771556854248,-0.0278440713882446,-3.34501123428345,-0.854775905609131,-0.0304172039031982,-3.17630386352539,-0.792793750762939,-0.0621235370635986,-3.07265377044678,-0.785319328308105,-0.0980284214019775,-2.99910402297974,-0.740518569946289,-0.174138784408569,-2.84485101699829,-0.719948291778564,-0.286851644515991,-2.67827129364014,-0.662172794342041,-0.339787244796753,-2.56491470336914,-0.656284332275391,-0.381808996200562,-2.47867059707642,-0.600269794464111,-0.401890516281128,-2.31856966018677,-0.558127880096436,-0.407903432846069,-2.17433834075928,-0.481568336486816,-0.395465612411499,-2.07870960235596,-0.446468830108643,-0.0475212633609772,-3.89168167114258,-1.71991634368896,-0.300469994544983,-3.66375875473022,-1.58125114440918,-0.287203431129456,-3.67990827560425,-1.62203311920166,-0.256538987159729,-3.70123243331909,-1.66906833648682,-0.211817383766174,-3.77332878112793,-1.65652370452881,-0.322916626930237,-3.6247706413269,-1.59580326080322,-0.170184314250946,-3.82763290405273,-1.61841297149658,-0.350890755653381,-3.55345392227173,-1.58831024169922,-0.136827111244202,-3.8281135559082,-1.68747997283936,-0.369531273841858,-3.50279998779297,-1.53227186203003,-0.0909487307071686,-3.84841346740723,-1.72064208984375,-0.372125267982483,-3.47409772872925,-1.49247455596924,-0.377668976783752,-3.41429662704468,-1.51706790924072,-0.392298340797424,-3.31308650970459,-1.5418553352356,-0.389070153236389,-3.26349592208862,-1.44055271148682,-0.370792031288147,-3.23702383041382,-1.3639235496521,-0.402112603187561,-3.15205764770508,-1.41275930404663,-0.416141271591187,-3.05849075317383,-1.39880084991455,-0.42171835899353,-2.94452619552612,-1.32948350906372,-0.405847311019897,-2.88120937347412,-1.25846338272095,-0.408674955368042, --2.79352283477783,-1.28835725784302,-0.389598608016968,-2.63851833343506,-1.28011465072632,-0.36258864402771,-2.48309373855591,-1.16377687454224,-0.354657888412476,-2.4123797416687,-1.05717325210571,-0.37206244468689,-2.29363679885864,-1.08419561386108,-0.382863759994507,-2.11924457550049,-1.05753183364868,-0.398412466049194,-1.95553684234619,-0.973124504089355,-0.408447027206421,-1.89072322845459,-0.880917072296143,-0.317331075668335,-1.88778448104858,-0.8794264793396,-0.303106069564819,-1.93271827697754,-0.959005832672119,-0.0453177988529205,-3.93471479415894,-1.6493558883667,-0.0360318720340729,-3.86978721618652,-1.62280654907227,-0.106721073389053,-3.89270639419556,-1.6549129486084,-0.147884964942932,-3.8686408996582,-1.61822319030762,-0.168926358222961,-3.87212562561035,-1.54537010192871,-0.208656430244446,-3.82333421707153,-1.58928108215332,-0.259959816932678,-3.74642610549927,-1.60462284088135,-0.297862648963928,-3.72027969360352,-1.55496501922607,-0.304445862770081,-3.70933055877686,-1.51116752624512,-0.328826546669006,-3.68370485305786,-1.53448486328125,-0.363235116004944,-3.59938955307007,-1.52402400970459,-0.37894594669342,-3.54262924194336,-1.46118831634521,-0.3714519739151,-3.52211141586304,-1.41802549362183,-0.382271409034729,-3.47702169418335,-1.44425106048584,-0.39308226108551,-3.3576545715332,-1.4611930847168,-0.365588784217834,-3.30418872833252,-1.35375642776489,-0.319257378578186,-3.28559589385986,-1.27774095535278,-0.375074028968811,-3.20994424819946,-1.33191394805908,-0.40306544303894,-3.10066699981689,-1.31523752212524,-0.40825629234314,-2.95815467834473,-1.23357582092285,-0.377248525619507,-2.90802526473999,-1.16941547393799,-0.407000303268433,-2.83002090454102,-1.20247077941895,-0.395018339157104,-2.65091466903687,-1.19018793106079,-0.369255781173706,-2.50082921981812,-1.07568073272705,-0.358728170394897,-2.44227313995361,-0.974930763244629,-0.384994268417358,-2.33280181884766,-0.992412567138672,-0.39878249168396,-2.15505218505859,-0.964839458465576,-0.410593748092651,-1.98867082595825,-0.879215717315674, --0.405218839645386,-1.93538856506348,-0.822975635528564,-0.3221595287323,-1.90996789932251,-0.815390110015869,-0.2970130443573,-1.98116302490234,-0.873161315917969,-0.269814252853394,-2.13778066635132,-0.953277587890625,-0.267652273178101,-2.30265426635742,-0.983740329742432,-0.284253835678101,-2.40166616439819,-0.995192527770996,-0.271836996078491,-2.48326444625854,-1.07634210586548,-0.283605337142944,-2.62035894393921,-1.15576791763306,-0.301519155502319,-2.75316905975342,-1.17738056182861,-0.297603249549866,-2.8586220741272,-1.15374708175659,-0.308382630348206,-2.93810749053955,-1.22636270523071,-0.308408379554749,-3.07420778274536,-1.30460405349731,-0.314123749732971,-3.17782974243164,-1.31986379623413,-0.293009400367737,-3.27749443054199,-1.27539873123169,-0.306397080421448,-3.27940464019775,-1.33617401123047,-0.318784356117249,-3.3399395942688,-1.40184640884399,-0.323138833045959,-3.44598913192749,-1.42388200759888,-0.337230324745178,-3.51189947128296,-1.41464996337891,-0.324585556983948,-3.51268196105957,-1.44912958145142,-0.296222329139709,-3.55595636367798,-1.50457096099854,-0.274441361427307,-3.64183330535889,-1.51864433288574,-0.277708649635315,-3.69433879852295,-1.51432704925537,-0.251119256019592,-3.68580102920532,-1.54004383087158,-0.207266926765442,-3.71996355056763,-1.57816028594971,-0.176850497722626,-3.78338384628296,-1.57113075256348,-0.159971833229065,-3.85151338577271,-1.53695964813232,-0.124458432197571,-3.82092809677124,-1.59763050079346,-0.0770536959171295,-3.84077119827271,-1.63019847869873,-0.230633497238159,-1.9490442276001,-1.13646554946899,-0.165060639381409,-1.86381196975708,-1.21335983276367,-0.257812142372131,-2.52446365356445,-1.42306661605835,-0.301293015480042,-2.76120090484619,-1.5116171836853,-0.331596970558167,-2.98972606658936,-1.56787824630737,-0.318840622901917,-3.13971948623657,-1.62250518798828,-0.317114472389221,-3.2720627784729,-1.64484977722168,-0.284750580787659,-3.39155340194702,-1.68575859069824,-0.259860634803772,-3.49431180953979,-1.70153093338013,-0.210149466991425, --3.57938051223755,-1.72668695449829,-0.164310157299042,-3.6519923210144,-1.73925590515137,-0.0998899042606354,-3.70752429962158,-1.76067161560059,-0.0563284307718277,-3.75987768173218,-1.76582908630371,-0.0196510851383209,-3.87245607376099,-1.78933429718018,-0.0204111635684967,-3.86157894134521,-1.87545013427734,-0.0190621912479401,-3.90897846221924,-1.69933986663818,-0.0179573595523834,-3.92577457427979,-1.66267108917236,-0.0142375528812408,-3.95713806152344,-1.62794876098633,-0.0126434862613678,-4.04008817672729,-1.51760578155518,-0.0127507746219635,-4.16279745101929,-1.3430233001709,-0.0129095613956451,-4.21237897872925,-1.25613498687744,-0.0125800669193268,-4.19565439224243,-1.23591899871826,-0.0103069841861725,-4.15183782577515,-1.23788642883301,-0.00804486870765686,-4.09012269973755,-1.32050323486328,-0.009287029504776,-3.97388744354248,-1.49412059783936,-0.0139338076114655,-3.9001407623291,-1.60604858398438,-0.0163189470767975,-3.89268732070923,-1.65049076080322,-0.0169259607791901,-3.82808399200439,-1.75311088562012,-0.0154682695865631,-3.75901794433594,-1.78913688659668,-0.0328413546085358,-3.69908857345581,-1.80159664154053,-0.0564633905887604,-3.63328886032104,-1.80929231643677,-0.0787025988101959,-3.55833053588867,-1.81638526916504,-0.0977350771427155,-3.48555326461792,-1.82229232788086,-0.116146713495255,-3.3941125869751,-1.82842636108398,-0.130842804908752,-3.2700662612915,-1.8226375579834,-0.143437027931213,-3.12495708465576,-1.80499839782715,-0.151634871959686,-2.94061088562012,-1.77521276473999,-0.145719170570374,-2.71634578704834,-1.71030521392822,-0.130078434944153,-2.52200508117676,-1.61980295181274,0.032254546880722,-3.87245988845825,-1.78932094573975,0.0334757268428802,-3.86158084869385,-1.87544059753418,0.0310128629207611,-3.90898609161377,-1.69931602478027,0.0296381413936615,-3.92578315734863,-1.66264343261719,0.0256012380123138,-3.95714473724365,-1.6279182434082,0.0234430730342865,-4.04010057449341,-1.51755809783936,0.0233696401119232,-4.16281080245972,-1.3429594039917,0.0235541760921478,-4.21238851547241, --1.25607681274414,0.0231913030147552,-4.19566965103149,-1.23585796356201,0.0208428800106049,-4.15184926986694,-1.23783111572266,0.0185488164424896,-4.09013509750366,-1.32045459747314,0.0199945867061615,-3.97389698028564,-1.49408435821533,0.0252898633480072,-3.90014553070068,-1.60601902008057,0.0279687345027924,-3.89269304275513,-1.650465965271,0.0294035375118256,-3.82808685302734,-1.753098487854,0.028284877538681,-3.75901889801025,-1.78912925720215,0.0457857474684715,-3.69909238815308,-1.80158615112305,0.0695146024227142,-3.63329172134399,-1.8092794418335,0.0918196141719818,-3.55833435058594,-1.81637096405029,0.110860675573349,-3.48555517196655,-1.82227563858032,0.129166960716248,-3.3941068649292,-1.82839727401733,0.143654227256775,-3.27005195617676,-1.82258462905884,0.155855059623718,-3.12491893768311,-1.80491065979004,0.163291335105896,-2.94053363800049,-1.77507305145264,0.155987083911896,-2.7161750793457,-1.71007823944092,0.138783276081085,-2.5217227935791,-1.61947202682495,0.333704710006714,-1.80767726898193,-0.849847793579102,0.340020418167114,-1.82741689682007,-0.806323528289795,0.338000535964966,-1.8668966293335,-0.702890396118164,0.360027074813843,-1.9402003288269,-0.502965450286865,0.339438199996948,-1.83468723297119,-0.780880928039551,0.316521406173706,-1.70348215103149,-1.02222681045532,-0.337703466415405,-1.82668352127075,-0.810542106628418,-0.330642461776733,-1.80701541900635,-0.853726863861084,-0.356108427047729,-1.93958473205566,-0.50667142868042,-0.336585760116577,-1.86610221862793,-0.707460880279541,-0.337486028671265,-1.83392715454102,-0.785238265991211,-0.305949926376343,-1.70436859130859,-1.02370023727417,0.430083990097046,-1.99835109710693,-0.526958465576172,0.430073976516724,-2.02328729629517,-0.453513622283936,0.407061815261841,-2.02149486541748,-0.436296463012695,0.385473966598511,-2.01113080978394,-0.441182613372803,0.352598905563354,-1.97251319885254,-0.520678997039795,0.331978559494019,-1.89837408065796,-0.713345050811768,0.333310842514038,-1.86629581451416,-0.79136323928833,0.333868741989136, --1.85906744003296,-0.816640377044678,0.326506853103638,-1.84204530715942,-0.859387874603271,0.300429582595825,-1.78022432327271,-1.03118562698364,-0.290840864181519,-1.78024530410767,-1.03256845474243,-0.323382139205933,-1.84138154983521,-0.86325216293335,-0.331458806991577,-1.85833501815796,-0.8208327293396,-0.331304311752319,-1.86554145812988,-0.795700073242188,-0.330515623092651,-1.89758443832397,-0.717901706695557,-0.348888158798218,-1.97190284729004,-0.524450778961182,-0.378297567367554,-2.01077318191528,-0.443765163421631,-0.398977994918823,-2.02120542526245,-0.438636302947998,-0.421678304672241,-2.02301788330078,-0.455841541290283,-0.423811674118042,-1.99791812896729,-0.530117988586426,-0.408761739730835,-1.92699861526489,-0.721371173858643,0.412901639938354,-1.92768335342407,-0.717380523681641,-0.315786123275757,-1.81300640106201,-0.936659812927246,-0.32599139213562,-1.76201772689819,-0.930216312408447,0.321296453475952,-1.81348705291748,-0.933732509613037,0.331815481185913,-1.76246976852417,-0.92741060256958,0.00507912039756775,-2.68771362304688,-1.74389553070068,-0.0706092119216919,-2.12028789520264,-1.39920234680176,-0.139257073402405,-1.74707937240601,-1.17993497848511,0.00156721472740173,-2.17140245437622,-1.38739967346191,-0.0516373515129089,-2.00843334197998,-1.30702495574951,0.211162447929382,-1.5116491317749,-1.06612014770508,0.146933436393738,-1.75013208389282,-1.1807279586792,0.289554953575134,-1.42198085784912,-1.04814291000366,0.265949606895447,-1.40480852127075,-1.02714204788208,-0.397948980331421,-1.20569753646851,-0.995949268341064,-0.367323517799377,-1.19719314575195,-0.970284461975098,-0.199333786964417,-1.51521730422974,-1.06753635406494,-0.275752663612366,-1.42616081237793,-1.04965162277222,-0.253406167030334,-1.40770244598389,-1.02829599380493,0.410620450973511,-1.20551061630249,-0.995850086212158,0.379599928855896,-1.1969747543335,-0.970146179199219,0.0888760983943939,-4.03904581069946,-1.52658939361572,0.0869110524654388,-3.91387510299683,-1.65541934967041,0.392839312553406,-3.75342321395874, --1.42606925964355,0.359992861747742,-3.6442494392395,-1.5362606048584,0.31937050819397,-3.27110767364502,-1.17518091201782,0.406797647476196,-3.16045188903809,-1.33500528335571,0.242990374565125,-4.08040142059326,-1.20174884796143,0.282889723777771,-4.05225610733032,-1.22842025756836,0.245225787162781,-4.03640460968018,-1.29463672637939,0.211209177970886,-4.07044124603271,-1.23836898803711,0.245602488517761,-4.06896638870239,-1.235520362854,0.280077815055847,-3.6791934967041,-1.72236347198486,0.287683367729187,-3.68617868423462,-1.64951515197754,0.127983927726746,-3.81371021270752,-1.77284812927246,0.136054873466492,-3.8109712600708,-1.85630989074707,0.363788485527039,-3.68368101119995,-1.02664089202881,0.325000524520874,-3.62662935256958,-1.02999782562256,0.371587991714478,-3.65178346633911,-1.11713695526123,0.402600169181824,-3.71493911743164,-1.0833215713501,0.373656511306763,-3.67700862884521,-1.05949687957764,0.415850043296814,-3.26316928863525,-1.58185195922852,0.406692862510681,-3.28154706954956,-1.50013780593872,0.378219485282898,-3.50111198425293,-1.65493583679199,0.396960139274597,-3.4931640625,-1.74171257019043,0.203312635421753,-2.94975662231445,-0.743089199066162,0.257934808731079,-2.84839963912964,-0.749953746795654,0.246361017227173,-2.92404317855835,-0.830122947692871,0.193910360336304,-3.02098369598389,-0.794165134429932,0.223716020584106,-2.94429016113281,-0.774148941040039,0.412568807601929,-2.5917592048645,-1.31328535079956,0.388577699661255,-2.55341053009033,-1.23032379150391,0.443578004837036,-2.99355363845825,-1.46514749526978,0.468125581741333,-2.97089958190918,-1.5481071472168,0.452139616012573,-2.13657903671265,-0.739059925079346,0.47374153137207,-2.20260095596313,-0.591085910797119,0.407069444656372,-1.93168115615845,-0.883055686950684,0.413128614425659,-1.91313791275024,-0.929335117340088,0.443049669265747,-2.15621185302734,-1.24152898788452,0.408453702926636,-2.18228197097778,-1.16037130355835,0.0924161374568939,-4.20842742919922,-1.25240898132324,0.134541809558868,-4.17390441894531,-1.27613925933838, -0.0931480824947357,-4.16496658325195,-1.34280204772949,0.0568550527095795,-4.2087140083313,-1.29042720794678,0.0944846570491791,-4.19584941864014,-1.28498458862305,0.169021964073181,-4.09076738357544,-1.2174654006958,0.17257821559906,-4.05465316772461,-1.24036693572998,0.175631821155548,-4.04967403411865,-1.30066204071045,0.173306822776794,-4.11543655395508,-1.25552272796631,0.172776103019714,-4.07906818389893,-1.24651432037354,0.178495764732361,-3.94096803665161,-1.48047065734863,0.171093285083771,-3.87200307846069,-1.5750036239624,0.429253935813904,-3.91940069198608,-1.1363525390625,0.450181841850281,-3.86659812927246,-1.15416622161865,0.423270583152771,-3.87894487380981,-1.23169612884521,0.399839758872986,-3.93477535247803,-1.18369770050049,0.431483626365662,-3.90931034088135,-1.17179298400879,0.3979572057724,-3.75519609451294,-1.07768154144287,0.376195788383484,-3.72270536422729,-1.09774589538574,0.391135573387146,-3.71406269073486,-1.15833950042725,0.431390166282654,-3.77794122695923,-1.1163387298584,0.398153185844421,-3.7433819770813,-1.10471820831299,0.390330672264099,-3.59390687942505,-1.34764671325684,0.387461543083191,-3.53127241134644,-1.43244552612305,0.157575368881226,-3.4262490272522,-0.883467197418213,0.159327745437622,-3.3520770072937,-0.887788772583008,0.198387861251831,-3.39442920684814,-0.976521968841553,0.188669919967651,-3.45926952362061,-0.937822818756104,0.179439783096313,-3.41917324066162,-0.915805339813232,0.106021165847778,-3.12462091445923,-0.797933101654053,0.122320890426636,-3.08646726608276,-0.820323467254639,0.155099153518677,-3.09596347808838,-0.876894474029541,0.13745379447937,-3.17068958282471,-0.829756259918213,0.12504506111145,-3.1174898147583,-0.822587966918945,0.333656549453735,-2.99140691757202,-1.08173751831055,0.404601812362671,-2.92608451843262,-1.19231700897217,0.463083982467651,-2.40726518630981,-0.580248355865479,0.472013235092163,-2.31235074996948,-0.577933788299561,0.469852209091187,-2.38081121444702,-0.656552791595459,0.458754062652588,-2.47330904006958,-0.635987281799316, -0.47144079208374,-2.39858627319336,-0.608110904693604,0.449416399002075,-2.31938934326172,-0.804383277893066,0.408435583114624,-2.24842977523804,-0.987789630889893,0.330689311027527,-3.95427560806274,-1.16295146942139,0.33619487285614,-3.92084074020386,-1.18689727783203,0.334315180778503,-3.90947961807251,-1.24693584442139,0.335388541221619,-3.97764587402344,-1.20116519927979,0.334687113761902,-3.9411449432373,-1.19176197052002,0.325871825218201,-3.7902660369873,-1.43452835083008,0.31574285030365,-3.71473550796509,-1.52655124664307,0.245866179466248,-3.90484428405762,-1.48611354827881,0.247810244560242,-3.78276920318604,-1.60504627227783,0.299360156059265,-3.67665767669678,-1.80747222900391,0.210456192493439,-3.75480270385742,-1.74135875701904,0.23229056596756,-3.74145317077637,-1.83103179931641,0.202915549278259,-3.80654907226563,-1.63018035888672,0.0191720426082611,-3.87922382354736,-1.7898530960083,0.019911140203476,-3.86792945861816,-1.87741279602051,0.0174530446529388,-3.92845010757446,-1.64492607116699,0.0182980000972748,-3.91170787811279,-1.68729972839355,0.12756335735321,-3.83423757553101,-1.71023654937744,0.189637064933777,-3.50966739654541,-0.948617935180664,0.164871573448181,-3.47536134719849,-0.963220119476318,0.203016519546509,-3.47636604309082,-1.02207612991333,0.245059728622437,-3.53876543045044,-0.983137130737305,0.196454286575317,-3.50123739242554,-0.971410751342773,0.294611811637878,-3.35800266265869,-1.21376657485962,0.347123503684998,-3.29752969741821,-1.30139970779419,0.391242384910583,-3.53564167022705,-1.30460643768311,0.401581168174744,-3.41867876052856,-1.46303939819336,0.435259222984314,-3.25849533081055,-1.65967845916748,0.3949955701828,-3.39526700973511,-1.61059474945068,0.414567828178406,-3.38234043121338,-1.70128631591797,0.38603675365448,-3.45046281814575,-1.49862432479858,0.334618449211121,-3.60416793823242,-1.68885326385498,0.358275294303894,-3.60016536712646,-1.78018760681152,0.323686480522156,-3.64848947525024,-1.58555793762207,0.375036597251892,-3.52442264556885,-1.56290435791016, -0.368323087692261,-2.61895275115967,-0.667759418487549,0.389025926589966,-2.56727075576782,-0.684284687042236,0.381123304367065,-2.58900499343872,-0.737305641174316,0.361819505691528,-2.66544342041016,-0.698588848114014,0.377055406570435,-2.60955238342285,-0.690858840942383,0.390444993972778,-2.51701784133911,-0.899890899658203,0.373193025588989,-2.46828651428223,-1.01395463943481,0.358432054519653,-2.83309888839722,-1.01667928695679,0.420114755630493,-2.74607992172241,-1.20842218399048,0.447302579879761,-2.58163833618164,-1.39838457107544,0.438037157058716,-2.82226419448853,-1.39282274246216,0.466050386428833,-2.79761028289795,-1.48155784606934,0.420686960220337,-2.84426403045654,-1.26767063140869,0.431783556938171,-3.14204216003418,-1.51387214660645,0.457636117935181,-3.1267261505127,-1.60687255859375,0.398087382316589,-3.19859600067139,-1.38377285003662,0.434538125991821,-2.99895095825195,-1.36859655380249,0.43124794960022,-1.99550533294678,-0.71722936630249,0.448696851730347,-2.06793832778931,-0.547582149505615,0.415260076522827,-1.9492244720459,-0.842105865478516,0.397989511489868,-2.04093933105469,-0.984482765197754,0.416561841964722,-2.063157081604,-0.922353744506836,0.463464021682739,-1.84080600738525,-1.13156175613403,0.431663751602173,-1.87192296981812,-1.0449857711792,0.448293447494507,-1.97239685058594,-1.17653226852417,0.416439294815063,-2.0009880065918,-1.0958456993103,0.402701139450073,-2.02953100204468,-1.01746654510498,0.388578176498413,-2.22155427932739,-1.04798460006714,0.393171072006226,-2.21003723144531,-1.08084154129028,0.00529226660728455,-4.17132949829102,-1.27807331085205,0.0138042867183685,-4.19675970077515,-1.25069332122803,0.0234950482845306,-4.19787693023682,-1.28763771057129,0.013786643743515,-4.14550590515137,-1.33693504333496,0.0137723386287689,-4.18125438690186,-1.28170299530029,0.085742324590683,-3.84113883972168,-1.86716651916504,0.0823920667171478,-3.84514665603638,-1.78431797027588,0.0798395574092865,-3.88082408905029,-1.69828796386719,0.0801828801631927,-3.87049388885498,-1.72341346740723, -0.01387819647789,-4.02387666702271,-1.50979518890381,0.0150655210018158,-3.95483207702637,-1.61229515075684,0.188282370567322,-3.77529716491699,-1.84338665008545,0.171323657035828,-3.78593635559082,-1.75407123565674,0.156374752521515,-3.99196481704712,-1.51268672943115,0.161670982837677,-4.1156268119812,-1.32401371002197,0.16600501537323,-3.85067129135132,-1.60474586486816,0.166821777820587,-3.83039951324463,-1.64705276489258,0.129094958305359,-3.8431510925293,-1.68484115600586,0.143491625785828,-3.87660121917725,-1.64347743988037,0.193925738334656,-3.92222118377686,-1.47222709655762,0.18746691942215,-4.03055047988892,-1.29355144500732,0.266795992851257,-3.70937919616699,-1.81933403015137,0.246605277061462,-3.71635007858276,-1.73626518249512,0.200234770774841,-3.83027696609497,-1.58634567260742,0.199158012866974,-3.85455465316772,-1.55949687957764,0.246856570243835,-3.74416494369507,-1.64208316802979,0.248335719108582,-3.73426628112793,-1.67025947570801,0.330424189567566,-3.643141746521,-1.79550933837891,0.308677077293396,-3.64473009109497,-1.7033805847168,0.306079745292664,-3.84815359115601,-1.47103023529053,0.314807772636414,-3.9835991859436,-1.27462959289551,0.289322257041931,-3.69186449050903,-1.61897373199463,0.296022772789001,-3.72827434539795,-1.58425807952881,0.309754252433777,-3.6893253326416,-1.55472850799561,0.307781577110291,-3.67336511611938,-1.5961742401123,0.344059348106384,-3.78487873077393,-1.42912769317627,0.358771681785583,-3.90038871765137,-1.24239826202393,0.38136088848114,-3.54743003845215,-1.76130771636963,0.359369158744812,-3.55456924438477,-1.67584800720215,0.347258448600769,-3.60581350326538,-1.56715106964111,0.35042417049408,-3.59002876281738,-1.59785461425781,0.32119882106781,-3.67144584655762,-1.54599761962891,0.327596068382263,-3.70227766036987,-1.51975154876709,0.407190680503845,-3.43910694122314,-1.72200536727905,0.388734698295593,-3.44951868057251,-1.62977075576782,0.412701010704041,-3.65851831436157,-1.38669395446777,0.439764857292175,-3.78738975524902,-1.19264888763428,0.383504271507263, --3.51134920120239,-1.45794296264648,0.38450038433075,-3.48890066146851,-1.50610065460205,0.375903487205505,-3.53636407852173,-1.5268726348877,0.387938857078552,-3.56539344787598,-1.49522924423218,0.390657782554626,-3.58600425720215,-1.32851886749268,0.385720610618591,-3.69760894775391,-1.14673805236816,0.422893881797791,-3.32012939453125,-1.68236541748047,0.404651999473572,-3.32797288894653,-1.60705137252808,0.382348895072937,-3.47885465621948,-1.45463848114014,0.387213110923767,-3.50810098648071,-1.42532348632813,0.394484877586365,-3.38106870651245,-1.5078272819519,0.397779822349548,-3.36302089691162,-1.53926467895508,0.447914004325867,-3.19739818572998,-1.63320159912109,0.423706412315369,-3.20686340332031,-1.53620529174805,0.344574332237244,-3.43269777297974,-1.25322008132935,0.286601305007935,-3.55280780792236,-1.06069374084473,0.400518774986267,-3.29237222671509,-1.46274662017822,0.399691939353943,-3.32121515274048,-1.41597700119019,0.35878598690033,-3.28002548217773,-1.3284273147583,0.389220118522644,-3.25360774993896,-1.3888726234436,0.291000604629517,-3.32815313339233,-1.20037221908569,0.184874773025513,-3.44763851165771,-1.00537919998169,0.463321208953857,-3.04765605926514,-1.57717943191528,0.439109563827515,-3.07037687301636,-1.49542093276978,0.412922620773315,-3.12414073944092,-1.38216352462769,0.423495054244995,-3.10739231109619,-1.41549348831177,0.370115160942078,-3.22767639160156,-1.33035373687744,0.356350302696228,-3.25321102142334,-1.30054616928101,0.47014856338501,-2.8885383605957,-1.51658868789673,0.443023443222046,-2.91008186340332,-1.42636060714722,0.337794542312622,-3.11365175247192,-1.11821269989014,0.175368547439575,-3.23229503631592,-0.915863037109375,0.411868333816528,-2.91033744812012,-1.22741079330444,0.426638841629028,-2.90968322753906,-1.28598165512085,0.427597284317017,-3.00057649612427,-1.3276047706604,0.424714326858521,-3.02413606643677,-1.27830028533936,0.337899446487427,-2.95163679122925,-1.06317377090454,0.178439378738403,-3.04597282409668,-0.864305973052979,0.458914518356323,-2.70641994476318, --1.44625663757324,0.430022001266479,-2.72581386566162,-1.36514329910278,0.407040357589722,-2.85519504547119,-1.21686506271362,0.403367757797241,-2.87947702407837,-1.18145370483398,0.408218145370483,-2.72071266174316,-1.26514196395874,0.414194345474243,-2.72190523147583,-1.29599475860596,0.446608781814575,-2.42372417449951,-1.33893489837646,0.401390314102173,-2.43613195419312,-1.24206781387329,0.382567644119263,-2.63917398452759,-0.953182220458984,0.328923463821411,-2.72481489181519,-0.774936676025391,0.380740404129028,-2.54701709747314,-1.19825077056885,0.393670797348022,-2.56562566757202,-1.14025592803955,0.361109018325806,-2.45477676391602,-1.05044317245483,0.369177103042603,-2.44443273544312,-1.09817981719971,0.0350240096449852,-4.05013704299927,-1.5231466293335,0.0350235402584076,-4.17433071136475,-1.34679126739502,0.449263334274292,-2.11486959457397,-0.465010166168213,0.429135084152222,-2.06059455871582,-0.484161376953125,0.475851058959961,-2.14922094345093,-0.513942241668701,0.453355550765991,-2.09646797180176,-0.49434232711792,0.184208273887634,-4.06915187835693,-1.20938587188721,0.186160862445831,-4.05870962142944,-1.23879528045654,0.311019778251648,-4.03171682357788,-1.18174076080322,0.315506339073181,-4.01825761795044,-1.21520709991455,0.15586119890213,-4.16025686264038,-1.23310375213623,0.160838961601257,-4.14706802368164,-1.26583766937256,0.360642790794373,-3.9385027885437,-1.15613651275635,0.362598776817322,-3.92871999740601,-1.1864595413208,0.4487065076828,-3.83429193496704,-1.10085678100586,0.45014750957489,-3.82068014144897,-1.13434219360352,0.384425520896912,-3.72903347015381,-1.06583213806152,0.389239192008972,-3.72206401824951,-1.09313869476318,0.276136636734009,-3.59014940261841,-0.971931457519531,0.284997224807739,-3.58051347732544,-1.00359725952148,0.161712408065796,-3.47553634643555,-0.928540229797363,0.172841787338257,-3.46969270706177,-0.952829360961914,0.115954160690308,-3.27111196517944,-0.823740482330322,0.144013166427612,-3.2600359916687,-0.855071067810059,0.133958101272583,-3.06275701522827, --0.782881259918213,0.151503324508667,-3.06168651580811,-0.810057640075684,0.297677278518677,-2.761634349823,-0.693509101867676,0.314324617385864,-2.74960947036743,-0.721696853637695,0.469175100326538,-2.23874711990356,-0.517468929290771,0.476582527160645,-2.22513580322266,-0.543869495391846,0.0618041455745697,-3.96091842651367,-1.49972152709961,0.0663693845272064,-3.85536479949951,-1.62947177886963,0.30463445186615,-3.6775016784668,-1.3980884552002,0.295590758323669,-3.59815168380737,-1.51634788513184,0.189409613609314,-3.23451948165894,-1.15734004974365,0.323272585868835,-3.12873458862305,-1.32185316085815,0.178966403007507,-4.00431251525879,-1.22312355041504,0.202447712421417,-3.95594501495361,-1.27707767486572,0.234979510307312,-3.98008298873901,-1.21377563476563,0.208369612693787,-4.02237510681152,-1.19054508209229,0.204258322715759,-3.99453020095825,-1.22079944610596,0.23156726360321,-3.65718936920166,-1.68809127807617,0.254836916923523,-3.64412069320679,-1.6439094543457,0.222359955310822,-3.67812824249268,-1.66997051239014,0.238745510578156,-3.65919351577759,-1.65825271606445,0.00643429160118103,-3.72802305221558,-1.80251312255859,0.0234802663326263,-3.69801139831543,-1.8089017868042,0.0351661145687103,-3.72843837738037,-1.796950340271,0.0159762799739838,-3.75950956344604,-1.79269790649414,0.018789142370224,-3.72799110412598,-1.80205821990967,0.264751315116882,-3.65341711044312,-1.0516881942749,0.21928346157074,-3.57842826843262,-1.07791137695313,0.180513262748718,-3.56380176544189,-0.992094039916992,0.239720702171326,-3.63170623779297,-0.995731353759766,0.223414301872253,-3.61031532287598,-1.02138519287109,0.357445597648621,-3.26402902603149,-1.54335737228394,0.355657458305359,-3.23618268966675,-1.47509670257568,0.352420687675476,-3.29862499237061,-1.51935815811157,0.353940844535828,-3.26451110839844,-1.49995946884155,0.282719969749451,-3.44141292572021,-1.69698715209961,0.191705107688904,-3.48881387710571,-1.76841449737549,0.120282500982285,-3.4433856010437,-1.82605600357056,0.21975839138031,-3.39176797866821, --1.76047658920288,0.20636922121048,-3.44321346282959,-1.76519155502319,0.0741827487945557,-2.95112085342407,-0.76788854598999,0.111700296401978,-2.86738681793213,-0.807780742645264,0.145971536636353,-2.81688499450684,-0.737108707427979,0.108864068984985,-2.9036340713501,-0.725391387939453,0.103257417678833,-2.88991832733154,-0.752909183502197,0.303502321243286,-2.53373050689697,-1.27172422409058,0.291682958602905,-2.45126533508301,-1.19878196716309,0.310143232345581,-2.59513235092163,-1.26862478256226,0.299500703811646,-2.52190589904785,-1.23698759078979,0.326497435569763,-2.87009429931641,-1.54509925842285,0.258766055107117,-2.96014308929443,-1.6832914352417,0.162043452262878,-2.82992744445801,-1.74555778503418,0.243277907371521,-2.73798513412476,-1.6182165145874,0.254244208335876,-2.85086250305176,-1.65253067016602,0.32751727104187,-2.20966339111328,-0.596746444702148,0.298160791397095,-2.14213180541992,-0.741865634918213,0.322296857833862,-1.92214345932007,-0.878151416778564,0.317234754562378,-1.90145492553711,-0.904677391052246,0.0390723645687103,-4.11363077163696,-1.26543617248535,0.0621698796749115,-4.07281732559204,-1.32199192047119,0.0944593846797943,-4.09966135025024,-1.26286506652832,0.0671866834163666,-4.13983249664307,-1.23856258392334,0.064255565404892,-4.10953521728516,-1.26718902587891,0.143504917621613,-4.05207777023315,-1.22840404510498,0.158581554889679,-4.0060396194458,-1.28137111663818,0.164210200309753,-4.02968072891235,-1.23136901855469,0.156103432178497,-4.05878114700317,-1.20182609558105,0.156789660453796,-4.03894424438477,-1.22763538360596,0.162421524524689,-3.8995795249939,-1.46480369567871,0.157160639762878,-3.83992671966553,-1.56153011322021,0.312438368797302,-3.86341571807861,-1.15097522735596,0.311755537986755,-3.79572010040283,-1.19839096069336,0.335621237754822,-3.79628467559814,-1.12919998168945,0.344335436820984,-3.85881280899048,-1.11115741729736,0.325621485710144,-3.83270740509033,-1.14040946960449,0.326544642448425,-3.72783041000366,-1.0982723236084,0.317771792411804,-3.68167114257813, --1.14675140380859,0.325749754905701,-3.7052903175354,-1.09090423583984,0.343502402305603,-3.73473596572876,-1.07063293457031,0.328506350517273,-3.71512222290039,-1.09465408325195,0.337058424949646,-3.56780242919922,-1.33881092071533,0.345576167106628,-3.51444005966187,-1.42602872848511,0.0583037137985229,-3.4297571182251,-0.917716503143311,0.0337027311325073,-3.36031436920166,-0.953746795654297,-0.0133410692214966,-3.31793165206909,-0.865266799926758,0.0214966535568237,-3.39410972595215,-0.862802982330322,0.0180519819259644,-3.3836784362793,-0.892363548278809,0.00434577465057373,-3.14777183532715,-0.814369678497314,0.04539954662323,-3.06612014770508,-0.861688613891602,0.051408052444458,-3.04277181625366,-0.803953647613525,0.0324695110321045,-3.09920263290405,-0.786033153533936,0.0295332670211792,-3.08819150924683,-0.808279037475586,0.221364378929138,-2.95786094665527,-1.06704568862915,0.313580393791199,-2.8958306312561,-1.18100023269653,0.320351839065552,-2.46250200271606,-0.636037826538086,0.316766500473022,-2.37626171112061,-0.658759593963623,0.342332601547241,-2.30933046340942,-0.579951286315918,0.351174592971802,-2.39962434768677,-0.58038854598999,0.33123517036438,-2.39177513122559,-0.609236717224121,0.29469895362854,-2.31430339813232,-0.804895401000977,0.27795672416687,-2.22515916824341,-0.974117279052734,0.279807448387146,-3.92582845687866,-1.17733287811279,0.291093707084656,-3.87475728988647,-1.2307014465332,0.301236987113953,-3.8984694480896,-1.17671203613281,0.295921683311462,-3.93022298812866,-1.15009593963623,0.29297149181366,-3.90997123718262,-1.17596435546875,0.286394476890564,-3.75767707824707,-1.4232006072998,0.281655669212341,-3.69122838973999,-1.52328872680664,0.204010367393494,-3.84049129486084,-1.46320724487305,0.202782928943634,-3.74852561950684,-1.58113288879395,0.199919998645782,-3.61440849304199,-1.73435544967651,0.121072143316269,-3.64097785949707,-1.77863264083862,0.0810540616512299,-3.59608030319214,-1.8129506111145,0.160180389881134,-3.56826257705688,-1.77355337142944,0.141443133354187,-3.60577726364136, --1.77607250213623,0.13989669084549,-3.68191146850586,-1.75362205505371,0.0785268247127533,-3.70158386230469,-1.78319072723389,0.057513564825058,-3.66753911972046,-1.80563163757324,0.0995820462703705,-3.67244005203247,-1.78135013580322,0.176235973834991,-3.72071170806885,-1.70712280273438,0.194237112998962,-3.7231388092041,-1.67183494567871,0.166929543018341,-3.76982450485229,-1.65829277038574,0.181176960468292,-3.74959897994995,-1.66168212890625,0.0277422368526459,-3.79427003860474,-1.7757043838501,0.0176628530025482,-3.83401727676392,-1.75352382659912,0.00634178519248962,-3.79856824874878,-1.77873992919922,0.0163663327693939,-3.79714393615723,-1.77831172943115,0.00605711340904236,-3.86796140670776,-1.71067237854004,0.0292600095272064,-3.85428380966187,-1.71777153015137,0.017634242773056,-3.86346197128296,-1.71313190460205,0.105061382055283,-3.77928924560547,-1.73500919342041,0.131310760974884,-3.77585124969482,-1.69878196716309,0.0924833714962006,-3.79747867584229,-1.72097682952881,0.11210235953331,-3.78392696380615,-1.7131872177124,0.115266680717468,-3.49092769622803,-0.959530830383301,0.120312094688416,-3.44659996032715,-1.01163959503174,0.117625117301941,-3.46676778793335,-0.9581618309021,0.123048663139343,-3.4916410446167,-0.936989784240723,0.114726901054382,-3.47599220275879,-0.959527015686035,0.238251566886902,-3.33140134811401,-1.20391941070557,0.306375861167908,-3.28279685974121,-1.29615163803101,0.284962058067322,-3.47099018096924,-1.27317714691162,0.330951571464539,-3.39333963394165,-1.41824388504028,0.326782584190369,-3.20333623886108,-1.63832950592041,0.240176558494568,-3.2694845199585,-1.74360942840576,0.150070488452911,-3.20098733901978,-1.81493377685547,0.253130316734314,-3.13075685501099,-1.71870708465576,0.247428774833679,-3.20269346237183,-1.73203897476196,0.309468626976013,-3.33699131011963,-1.67288875579834,0.136812508106232,-3.3353705406189,-1.82718706130981,0.23100745677948,-3.33317232131958,-1.75319910049438,0.345084071159363,-3.37665557861328,-1.58576154708862,0.346789240837097,-3.37299203872681, --1.53654003143311,0.345944285392761,-3.43394041061401,-1.53815746307373,0.346773028373718,-3.40670776367188,-1.53637742996216,0.243447124958038,-3.54107093811035,-1.71918630599976,0.101555675268173,-3.52264547348022,-1.81926870346069,0.176619350910187,-3.5298957824707,-1.77112245559692,0.283123850822449,-3.57714080810547,-1.6590313911438,0.292824625968933,-3.57662534713745,-1.61764526367188,0.279293894767761,-3.62315845489502,-1.62258911132813,0.286226153373718,-3.60304403305054,-1.61925411224365,0.319994807243347,-3.48831415176392,-1.62613773345947,0.332365393638611,-3.4677791595459,-1.56661033630371,0.313186049461365,-3.51635313034058,-1.60523128509521,0.323254942893982,-3.48967695236206,-1.5873498916626,0.253778696060181,-2.65279769897461,-0.695980072021484,0.289315462112427,-2.56918907165527,-0.736124038696289,0.314311742782593,-2.5429539680481,-0.678362846374512,0.298686265945435,-2.6027364730835,-0.664216041564941,0.290871858596802,-2.59103631973267,-0.686964511871338,0.296350717544556,-2.48921632766724,-0.912806510925293,0.291219472885132,-2.43889570236206,-1.0299973487854,0.232469797134399,-2.77109861373901,-0.992691993713379,0.306425809860229,-2.68938302993774,-1.17491674423218,0.0766590237617493,-2.12053251266479,-1.39906120300293,0.186260104179382,-2.23997974395752,-1.34601163864136,0.191465735435486,-2.50604820251465,-1.54586315155029,0.0834177732467651,-2.43763256072998,-1.61372756958008,0.125419497489929,-2.30972003936768,-1.48038959503174,0.295498728752136,-2.66373348236084,-1.48227405548096,0.145848572254181,-2.60895776748657,-1.67438411712646,0.228337168693542,-2.63599014282227,-1.58735799789429,0.336659669876099,-2.74348783493042,-1.35330581665039,0.330179929733276,-2.71437358856201,-1.30003118515015,0.343846082687378,-2.81543588638306,-1.30015230178833,0.337749242782593,-2.76427173614502,-1.29673433303833,0.33389413356781,-3.07204580307007,-1.60525226593018,0.160651028156281,-3.03847503662109,-1.793212890625,0.257509112358093,-3.05172061920166,-1.7039155960083,0.366494536399841,-3.12744235992432, --1.49376106262207,0.364821791648865,-3.11271810531616,-1.44071960449219,0.362467646598816,-3.19329595565796,-1.42827415466309,0.364569067955017,-3.15528726577759,-1.43198490142822,0.365087389945984,-2.99858427047729,-1.44600439071655,0.357297778129578,-2.93427848815918,-1.36982870101929,0.362237811088562,-3.03676748275757,-1.42356109619141,0.360496401786804,-2.98903942108154,-1.40099096298218,0.335138082504272,-2.07050609588623,-0.549173831939697,0.311234712600708,-1.99600744247437,-0.716567039489746,0.314375638961792,-1.93832015991211,-0.835440158843994,0.305972337722778,-2.02437782287598,-0.976710796356201,0.288835287094116,-2.05258321762085,-0.913002014160156,0.286342859268188,-1.99529886245728,-1.07006597518921,0.302609205245972,-1.92484331130981,-1.00423192977905,0.288848161697388,-2.07486963272095,-1.06721830368042,0.294854879379272,-1.99802446365356,-1.03440284729004,0.284194231033325,-2.23270082473755,-1.10992860794067,0.285935640335083,-2.34598350524902,-1.12570381164551,0.29167914390564,-2.1930685043335,-1.03669404983521,0.00526413321495056,-4.13815307617188,-1.2672061920166,0.011981338262558,-4.09851980209351,-1.32179737091064,0.0194614827632904,-4.12647199630737,-1.26602649688721,0.0130861699581146,-4.1559853553772,-1.23777484893799,0.01241335272789,-4.13414907455444,-1.26682186126709,0.0707572400569916,-3.83632802963257,-1.68125438690186,0.016737312078476,-3.90650177001953,-1.63671016693115,0.0154241025447845,-3.91636228561401,-1.59786319732666,0.121348738670349,-4.03838729858398,-1.30133628845215,0.120166122913361,-3.9244499206543,-1.48868560791016,0.155674278736115,-3.825523853302,-1.59524917602539,0.113112300634384,-3.80203008651733,-1.66905403137207,0.113358378410339,-3.82528781890869,-1.61989212036133,0.169153094291687,-3.98588228225708,-1.28175926208496,0.176023840904236,-3.88417339324951,-1.45907783508301,0.184581100940704,-3.80717754364014,-1.57780075073242,0.181578516960144,-3.82525157928467,-1.54803657531738,0.205900073051453,-3.72454357147217,-1.62337589263916,0.25746476650238,-3.91198587417603, --1.25205898284912,0.252096056938171,-3.78788614273071,-1.44839382171631,0.241879820823669,-3.67508459091187,-1.6012601852417,0.242465853691101,-3.69721794128418,-1.56120586395264,0.280243754386902,-3.67209339141846,-1.55650997161865,0.298458933830261,-3.85247802734375,-1.2208194732666,0.293205142021179,-3.74050712585449,-1.41349411010742,0.29745614528656,-3.57770872116089,-1.5566577911377,0.289720892906189,-3.65478324890137,-1.54795551300049,0.289623141288757,-3.67593908309937,-1.51519870758057,0.319167017936707,-3.71854782104492,-1.1685037612915,0.325477957725525,-3.59924602508545,-1.3651704788208,0.347229838371277,-3.49955463409424,-1.45396327972412,0.32571017742157,-3.51168918609619,-1.51770877838135,0.32415759563446,-3.52706527709961,-1.47858428955078,0.294564604759216,-3.65623235702515,-1.12819671630859,0.325142741203308,-3.55013418197632,-1.31536865234375,0.346769213676453,-3.4674916267395,-1.45089626312256,0.342403292655945,-3.48796987533569,-1.41783142089844,0.341603636741638,-3.37341928482056,-1.46702671051025,0.140613913536072,-3.48625612258911,-1.02925682067871,0.242123484611511,-3.37463235855103,-1.22476863861084,0.340808749198914,-3.28769540786743,-1.42260265350342,0.323846697807312,-3.30125761032104,-1.37232685089111,0.324334502220154,-3.27163982391357,-1.32611989974976,0.108187079429626,-3.43264722824097,-0.994922637939453,0.23269784450531,-3.31073188781738,-1.19242238998413,0.350332140922546,-3.10178565979004,-1.37394857406616,0.335508704185486,-3.21230697631836,-1.32461309432983,0.314669013023376,-3.23541641235352,-1.29342603683472,0.00361287593841553,-3.20713901519775,-0.896759510040283,0.186390280723572,-3.08801651000977,-1.10322284698486,0.333712816238403,-2.88333463668823,-1.21724414825439,0.347807765007019,-2.9901556968689,-1.32357358932495,0.318974375724792,-3.004807472229,-1.26962184906006,0.0722510814666748,-2.98206901550293,-0.840194702148438,0.2275470495224,-2.88142013549805,-1.03790903091431,0.327609300613403,-2.79008817672729,-1.20132493972778,0.312586069107056,-2.81015110015869,-1.16112565994263, -0.314786195755005,-2.66959238052368,-1.2390284538269,0.207318544387817,-2.70552015304565,-0.76821756362915,0.266234636306763,-2.61647987365723,-0.944240570068359,0.296020269393921,-2.53217029571533,-1.18565988540649,0.286588430404663,-2.54763889312744,-1.12028360366821,0.294217824935913,-2.426185131073,-1.07183313369751,0.0247734487056732,-4.08217144012451,-1.319260597229,0.0268743932247162,-3.96757888793945,-1.49399375915527,0.342536211013794,-2.15775585174561,-0.519078254699707,0.362976789474487,-2.05113744735718,-0.480205059051514,0.368788480758667,-2.11440563201904,-0.465596675872803,0.351139783859253,-2.09747409820557,-0.495531558990479,0.16978394985199,-4.03622007369995,-1.20096874237061,0.168717205524445,-4.01710510253906,-1.22823429107666,0.26527202129364,-3.98161506652832,-1.16556453704834,0.260379672050476,-3.95317363739014,-1.19462966918945,0.123331367969513,-4.10531139373779,-1.2164192199707,0.121725916862488,-4.07637929916382,-1.24507617950439,0.315110564231873,-3.90262889862061,-1.13933086395264,0.305799841880798,-3.88422203063965,-1.16569519042969,0.354479193687439,-3.78553771972656,-1.08423042297363,0.333404898643494,-3.7578296661377,-1.11257648468018,0.31332004070282,-3.7009105682373,-1.05217361450195,0.301003813743591,-3.6851019859314,-1.07563877105713,0.159438967704773,-3.54619169235229,-0.943164825439453,0.141667723655701,-3.52197122573853,-0.97089958190918,0.0948513746261597,-3.46163129806519,-0.91890287399292,0.0954216718673706,-3.45427894592285,-0.941962242126465,-0.0162168741226196,-3.24625730514526,-0.807114601135254,-0.0176888704299927,-3.23298072814941,-0.835958480834961,0.0652506351470947,-3.00974035263062,-0.764261245727539,0.0611608028411865,-2.99977684020996,-0.787660121917725,0.206889390945435,-2.74806356430054,-0.688263893127441,0.201355695724487,-2.73246097564697,-0.715342998504639,0.363101720809937,-2.24119663238525,-0.520928382873535,0.343354463577271,-2.22998046875,-0.548673629760742,0.00528272986412048,-4.1711483001709,-1.22943687438965,0.0221961438655853,-4.17564344406128,-1.23122692108154, -0.0141366422176361,-4.18580532073975,-1.23356533050537,0.0137294232845306,-4.17279529571533,-1.23017597198486,0.101307243108749,-4.1595983505249,-1.22538185119629,0.0764201581478119,-4.19912528991699,-1.23461723327637,0.0448430478572845,-4.1767897605896,-1.23136425018311,0.0708630979061127,-4.17268085479736,-1.23116970062256,0.148304343223572,-4.09985113143921,-1.19385051727295,0.135880768299103,-4.15248107910156,-1.21208572387695,0.128154635429382,-4.13213491439819,-1.20855236053467,0.164454758167267,-4.05424642562866,-1.19780826568604,0.162011504173279,-4.08196640014648,-1.19766712188721,0.158369839191437,-4.07234573364258,-1.19451522827148,0.188725769519806,-4.05052471160889,-1.18178749084473,0.177178263664246,-4.06045246124268,-1.1915979385376,0.173026919364929,-4.05023622512817,-1.1910285949707,0.248772978782654,-4.03094863891602,-1.17105388641357,0.226630568504333,-4.06360244750977,-1.17716312408447,0.21661365032196,-4.04539823532104,-1.17771339416504,0.295551180839539,-3.97116041183472,-1.13986778259277,0.289459586143494,-4.0193247795105,-1.15493106842041,0.276167273521423,-4.00334596633911,-1.15408229827881,0.311151385307312,-3.92340755462646,-1.14354419708252,0.313981890678406,-3.95058917999268,-1.14325046539307,0.303894877433777,-3.94292974472046,-1.14148616790771,0.347853541374207,-3.90913200378418,-1.11272430419922,0.340000033378601,-3.9289174079895,-1.13291549682617,0.327094912528992,-3.91746616363525,-1.13055419921875,0.380845904350281,-3.84636402130127,-1.08772850036621,0.392487406730652,-3.90251111984253,-1.10227680206299,0.367886900901794,-3.88276290893555,-1.09994697570801,0.372060179710388,-3.77288913726807,-1.05984687805176,0.409333109855652,-3.82401847839355,-1.07159805297852,0.381386637687683,-3.80769395828247,-1.07168579101563,0.346086382865906,-3.72654294967651,-1.06157302856445,0.375681281089783,-3.75367546081543,-1.06028366088867,0.359837889671326,-3.74678373336792,-1.06076526641846,0.30397641658783,-3.68687009811401,-1.02651119232178,0.347591280937195,-3.71679830551147,-1.05439376831055, -0.329158663749695,-3.71005439758301,-1.0490608215332,0.220188975334167,-3.60056686401367,-0.967424392700195,0.295420527458191,-3.65960073471069,-1.00887298583984,0.263960242271423,-3.64664745330811,-0.997110366821289,0.15465247631073,-3.5267539024353,-0.931112289428711,0.213445067405701,-3.57102537155151,-0.95543384552002,0.183680891990662,-3.56048440933228,-0.943894386291504,0.124825835227966,-3.47797679901123,-0.935132503509521,0.15470016002655,-3.50300884246826,-0.939348220825195,0.137219786643982,-3.49898386001587,-0.934150695800781,0.0785912275314331,-3.44621706008911,-0.888515472412109,0.124136328697205,-3.46915483474731,-0.920716762542725,0.106110453605652,-3.46582078933716,-0.915865421295166,0.00840079784393311,-3.3370304107666,-0.841378688812256,0.0758355855941772,-3.40945863723755,-0.87848949432373,0.0415953397750854,-3.40183925628662,-0.865811824798584,0.0196988582611084,-3.16989898681641,-0.785513877868652,0.0303046703338623,-3.26068592071533,-0.820714950561523,-0.00049889087677002,-3.25449895858765,-0.809296607971191,0.0644004344940186,-3.06103420257568,-0.781802654266357,0.0622541904449463,-3.11429262161255,-0.788839340209961,0.044201135635376,-3.10731410980225,-0.783483982086182,0.0917503833770752,-2.98038005828857,-0.734557151794434,0.0920875072479248,-3.03954982757568,-0.764595508575439,0.0758168697357178,-3.02391958236694,-0.759601593017578,0.166395425796509,-2.83868646621704,-0.712233066558838,0.14546275138855,-2.92856359481812,-0.732059955596924,0.122771501541138,-2.91622400283813,-0.72380256652832,0.27661919593811,-2.67524480819702,-0.660465717315674,0.244850397109985,-2.75734519958496,-0.689769744873047,0.222194910049438,-2.75456237792969,-0.684818744659424,0.336684465408325,-2.55817842483521,-0.654256343841553,0.33143162727356,-2.61487722396851,-0.658504009246826,0.313067674636841,-2.61000967025757,-0.657413959503174,0.364476442337036,-2.4755072593689,-0.598500728607178,0.386494398117065,-2.31875419616699,-0.551861763000488,0.407983541488647,-2.40336561203003,-0.579893112182617,0.377637147903442, --2.40219926834106,-0.575980663299561,0.388116121292114,-2.17616033554077,-0.480124950408936,0.417577505111694,-2.24123954772949,-0.518940925598145,0.388821840286255,-2.24299621582031,-0.516145706176758,0.391576528549194,-2.07618093490601,-0.443187713623047,0.410908460617065,-2.12055683135986,-0.455437183380127,0.389112710952759,-2.12028121948242,-0.455532073974609,0.05287966132164,-4.21954250335693,-1.24229717254639,0.0356896817684174,-4.22167682647705,-1.25868701934814,0.023554652929306,-4.20975112915039,-1.24148178100586,0.0326302871108055,-4.20251178741455,-1.23661994934082,0.0345266759395599,-4.2184886932373,-1.24312973022461,0.120173752307892,-4.19106149673462,-1.23085594177246,0.0849884450435638,-4.21028757095337,-1.23864650726318,0.161877453327179,-4.12691116333008,-1.2061824798584,0.146321594715118,-4.16197299957275,-1.21769618988037,0.168174624443054,-4.06546401977539,-1.20203495025635,0.16551285982132,-4.08987092971802,-1.2032642364502,0.203770935535431,-4.07862091064453,-1.18821430206299,0.181082129478455,-4.06825017929077,-1.19567012786865,0.271273016929626,-4.06138372421265,-1.17699813842773,0.236064791679382,-4.07689523696899,-1.1837272644043,0.321148276329041,-3.99241495132446,-1.15039920806885,0.301746249198914,-4.03040790557861,-1.16288471221924,0.327390551567078,-3.93337917327881,-1.14818572998047,0.32335364818573,-3.95588684082031,-1.14859104156494,0.38593327999115,-3.94036436080933,-1.12724590301514,0.352162718772888,-3.93726587295532,-1.13983058929443,0.432095408439636,-3.87647247314453,-1.09853744506836,0.414631724357605,-3.91593503952026,-1.11380290985107,0.41838538646698,-3.79333734512329,-1.06682395935059,0.433545470237732,-3.83412551879883,-1.08061218261719,0.366886496543884,-3.73263549804688,-1.06409168243408,0.389543414115906,-3.75751876831055,-1.06439590454102,0.367565989494324,-3.71291255950928,-1.04044723510742,0.368314623832703,-3.72518014907837,-1.05646514892578,0.285851836204529,-3.6268048286438,-0.985018730163574,0.333046793937683,-3.67494297027588,-1.01419067382813,0.213086009025574, --3.5451192855835,-0.944216728210449,0.248308062553406,-3.58395385742188,-0.960332870483398,0.14714515209198,-3.48163604736328,-0.93795108795166,0.174001097679138,-3.50838804244995,-0.941057205200195,0.14200758934021,-3.46158123016357,-0.898743152618408,0.144090056419373,-3.47388076782227,-0.921369552612305,0.0883901119232178,-3.35515451431274,-0.852730274200439,0.118266820907593,-3.4204888343811,-0.877690315246582,0.0786001682281494,-3.18184947967529,-0.793053150177002,0.0725948810577393,-3.26900815963745,-0.818835258483887,0.0915544033050537,-3.08218288421631,-0.789261341094971,0.0838816165924072,-3.12184047698975,-0.790178775787354,0.143316984176636,-3.01431655883789,-0.746900081634521,0.112746477127075,-3.05395698547363,-0.770012378692627,0.214070081710815,-2.85320520401001,-0.718152523040771,0.174503564834595,-2.94216060638428,-0.73376989364624,0.32547402381897,-2.68079042434692,-0.661679744720459,0.271830320358276,-2.76198291778564,-0.687770366668701,0.369338274002075,-2.57097578048706,-0.657501697540283,0.351331472396851,-2.61931371688843,-0.659463882446289,0.427173852920532,-2.48173379898071,-0.598940849304199,0.442014932632446,-2.32192993164063,-0.551641941070557,0.439355134963989,-2.40698194503784,-0.576112270355225,0.447049856185913,-2.1728515625,-0.477795124053955,0.446831464767456,-2.24200630187988,-0.514277935028076,0.416820287704468,-2.08133029937744,-0.445928573608398,0.432993173599243,-2.12080717086792,-0.455287933349609,0.0456593930721283,-3.86674880981445,-1.78904914855957,0.0440934598445892,-3.90344142913818,-1.71098613739014,0.0393427312374115,-3.87785387039185,-1.66380977630615,0.323403596878052,-1.82934284210205,-0.893522262573242,0.280132055282593,-2.11186742782593,-1.1117730140686,0.285144090652466,-2.15641021728516,-1.09310340881348,0.275553941726685,-2.3581395149231,-1.21050786972046,0.287684202194214,-2.39551687240601,-1.15755367279053,0.31978440284729,-2.6363353729248,-1.31137466430664,0.320806741714478,-2.65865421295166,-1.2901759147644,0.353881239891052,-2.87467050552368,-1.39992952346802, -0.350653529167175,-2.87432956695557,-1.33036184310913,0.367001891136169,-3.05539178848267,-1.4686279296875,0.363848567008972,-3.07561731338501,-1.43735027313232,0.362708449363708,-3.19976711273193,-1.51722717285156,0.359417319297791,-3.21620035171509,-1.44699478149414,0.352873206138611,-3.31216669082642,-1.56239223480225,0.349341750144958,-3.33587312698364,-1.53121757507324,0.334044337272644,-3.43634986877441,-1.6054949760437,0.340518832206726,-3.45172262191772,-1.5492205619812,0.306057810783386,-3.52684831619263,-1.6416597366333,0.302441954612732,-3.54649782180786,-1.61415767669678,0.257757544517517,-3.62046098709106,-1.67363452911377,0.268568873405457,-3.63446474075317,-1.63143062591553,0.209922194480896,-3.68428754806519,-1.69837284088135,0.207742512226105,-3.69942903518677,-1.67454719543457,0.140490829944611,-3.75227689743042,-1.71947860717773,0.149991393089294,-3.77489757537842,-1.67558670043945,0.0761540830135345,-3.80125188827515,-1.74304008483887,0.0545442998409271,-3.83208322525024,-1.72439289093018,0.0725143849849701,-3.81498289108276,-1.72440910339355,0.0423739850521088,-3.91865158081055,-1.6789608001709,0.0381658971309662,-3.94975090026855,-1.64017772674561,0.035022109746933,-3.88467836380005,-1.6146068572998,0.252860307693481,-2.04732894897461,-1.1445460319519,0.262359857559204,-1.9165301322937,-1.10043334960938,0.271055459976196,-2.0186915397644,-1.10847520828247,0.279950857162476,-2.46331071853638,-1.31459331512451,0.314931154251099,-2.63781356811523,-1.37750768661499,0.307535409927368,-2.57647371292114,-1.32499217987061,0.361212611198425,-2.9619779586792,-1.48854970932007,0.364084124565125,-3.05290460586548,-1.52132701873779,0.365761637687683,-3.01970529556274,-1.48750400543213,0.355067133903503,-3.24390268325806,-1.58228921890259,0.347229838371277,-3.31241369247437,-1.60609006881714,0.354059100151062,-3.28151416778564,-1.57896995544434,0.310646414756775,-3.47198295593262,-1.65646505355835,0.290282130241394,-3.5264368057251,-1.67477130889893,0.307373404502869,-3.50211906433105,-1.65486240386963,0.220301449298859, --3.64197015762329,-1.70950603485107,0.188183605670929,-3.67940139770508,-1.72301197052002,0.212712645530701,-3.66482496261597,-1.70879459381104,0.0978988111019135,-3.7606258392334,-1.74998378753662,0.0600307881832123,-3.78773546218872,-1.76094913482666,0.0844095647335052,-3.78212308883667,-1.75017166137695,0.248155355453491,-1.7822003364563,-1.10455560684204,0.224035501480103,-2.11821794509888,-1.20796537399292,0.24094557762146,-2.2813835144043,-1.26465797424316,0.340466856956482,-2.78292989730835,-1.43495225906372,0.32693886756897,-2.70506954193115,-1.40973949432373,0.352570414543152,-2.87585783004761,-1.46618175506592,0.36047637462616,-3.14997625350952,-1.55885887145996,0.362494349479675,-3.09876775741577,-1.54325008392334,0.357656836509705,-3.19916963577271,-1.57374286651611,0.33094584941864,-3.39569807052612,-1.63713502883911,0.339807391166687,-3.35250425338745,-1.62414073944092,0.319910883903503,-3.43600606918335,-1.64923000335693,0.256422877311707,-3.58820390701294,-1.69558668136597,0.27379834651947,-3.55668640136719,-1.68707466125488,0.236740469932556,-3.61654186248779,-1.7040696144104,0.14016181230545,-3.71883201599121,-1.74088764190674,0.163891136646271,-3.6981029510498,-1.73334407806396,0.0879367291927338,-3.73327398300171,-1.76520252227783,0.117335170507431,-3.73957395553589,-1.74665641784668,0.0459564626216888,-3.75926351547241,-1.77951240539551,0.05941042304039,-3.72988271713257,-1.78328990936279,0.00651869177818298,-3.66429710388184,-1.81711006164551,0.0339692533016205,-3.62907457351685,-1.82230663299561,0.0286458432674408,-3.66497564315796,-1.81565093994141,0.00654253363609314,-3.58901643753052,-1.83165168762207,0.0439723432064056,-3.55280685424805,-1.83500099182129,0.0391000211238861,-3.59064483642578,-1.82889842987061,0.00656494498252869,-3.51764249801636,-1.84400510787964,0.0527919232845306,-3.48400402069092,-1.84563541412354,0.0484226644039154,-3.51877164840698,-1.84026956558228,0.00659546256065369,-3.4445161819458,-1.85643863677979,0.0616610944271088,-3.39634466171265,-1.857008934021,0.0573142468929291, --3.44406843185425,-1.85208892822266,0.00653538107872009,-3.33946990966797,-1.86208152770996,0.068990558385849,-3.27220630645752,-1.85451745986938,0.0654791295528412,-3.33800649642944,-1.85765886306763,0.00640520453453064,-3.20315265655518,-1.85209989547729,0.075859397649765,-3.12347602844238,-1.83892965316772,0.0725286900997162,-3.20200395584106,-1.84798431396484,0.00611719489097595,-3.03199005126953,-1.83220481872559,0.0803650319576263,-2.93092727661133,-1.81083869934082,0.0786918103694916,-3.03290510177612,-1.8281888961792,0.0767095983028412,-2.69675922393799,-1.7424144744873,0.00440630316734314,-2.54413938522339,-1.68607187271118,0.0698178708553314,-2.56807518005371,-1.69339609146118,-0.0749141275882721,-3.91385507583618,-1.6555118560791,-0.0775071680545807,-4.03900671005249,-1.52676868438721,-0.34656298160553,-3.64422082901001,-1.53640556335449,-0.378896355628967,-3.75334310531616,-1.42630100250244,-0.392694234848022,-3.16090488433838,-1.33493137359619,-0.29943060874939,-3.27343559265137,-1.17430210113525,-0.198267638683319,-4.07036304473877,-1.23870658874512,-0.231750130653381,-4.03632640838623,-1.29497718811035,-0.268903374671936,-4.05217695236206,-1.22875785827637,-0.229529976844788,-4.08032321929932,-1.20208358764648,-0.232137322425842,-4.06888628005981,-1.23585987091064,-0.274267792701721,-3.68615007400513,-1.64962959289551,-0.266656517982483,-3.67917728424072,-1.72244644165039,-0.122835755348206,-3.81096363067627,-1.85634708404541,-0.11504328250885,-3.81369781494141,-1.77290439605713,-0.387703537940979,-3.71537590026855,-1.08324527740479,-0.356471657752991,-3.65235662460327,-1.11698818206787,-0.309341073036194,-3.62741231918335,-1.02974414825439,-0.348738312721252,-3.6842246055603,-1.0265007019043,-0.358194947242737,-3.67769241333008,-1.05930042266846,-0.394253373146057,-3.28152322769165,-1.50026607513428,-0.403205513954163,-3.26319599151611,-1.58195209503174,-0.383838295936584,-3.4931640625,-1.74177265167236,-0.365163445472717,-3.5011100769043,-1.6550178527832,-0.170667886734009,-3.02410125732422,-0.792769908905029, --0.224611043930054,-2.92640829086304,-0.82904577255249,-0.238720655441284,-2.84998369216919,-0.749272346496582,-0.183007478713989,-2.95185947418213,-0.742076873779297,-0.202250719070435,-2.94664287567139,-0.773061275482178,-0.375178098678589,-2.55332469940186,-1.23021697998047,-0.398803472518921,-2.59173917770386,-1.31318950653076,-0.455096006393433,-2.97096061706543,-1.54816913604736,-0.430712461471558,-2.9936146736145,-1.46522808074951,-0.463413953781128,-2.20290422439575,-0.59263277053833,-0.442476987838745,-2.1365761756897,-0.741021156311035,-0.404612302780151,-1.91269159317017,-0.931690692901611,-0.400029897689819,-1.93115472793579,-0.885959148406982,-0.39292311668396,-2.18231248855591,-1.16013526916504,-0.427363157272339,-2.15624713897705,-1.24126768112183,-0.0460411757230759,-4.20867776870728,-1.29058837890625,-0.0820075571537018,-4.1649112701416,-1.34304428100586,-0.12281197309494,-4.17383289337158,-1.27643871307373,-0.0812470018863678,-4.20837306976318,-1.25264644622803,-0.0832912027835846,-4.19579219818115,-1.28522872924805,-0.160989940166473,-4.11535739898682,-1.25585174560547,-0.163298726081848,-4.04959774017334,-1.30099296569824,-0.160297036170959,-4.0545768737793,-1.24069499969482,-0.156777501106262,-4.09069204330444,-1.21779155731201,-0.160464942455292,-4.07899379730225,-1.24684524536133,-0.158381581306458,-3.87195920944214,-1.5751953125,-0.165886044502258,-3.94090414047241,-1.48073768615723,-0.385294556617737,-3.93468570709229,-1.184006690979,-0.408868432044983,-3.87882375717163,-1.23199558258057,-0.435855507850647,-3.86652946472168,-1.15440654754639,-0.414847016334534,-3.91929197311401,-1.13664245605469,-0.417033791542053,-3.90920829772949,-1.17208576202393,-0.417200684547424,-3.77801179885864,-1.1164608001709,-0.377878785133362,-3.71387672424316,-1.15855693817139,-0.36322557926178,-3.72243738174438,-1.09798908233643,-0.384479165077209,-3.75507211685181,-1.0778751373291,-0.384606957435608,-3.74328851699829,-1.10489749908447,-0.375201821327209,-3.53099012374878,-1.43267726898193,-0.378068566322327, --3.59352922439575,-1.34792900085449,-0.168299913406372,-3.46157360076904,-0.936940670013428,-0.17525839805603,-3.39765739440918,-0.975269317626953,-0.13398814201355,-3.35596990585327,-0.886270999908447,-0.135901212692261,-3.42894792556763,-0.882421016693115,-0.156545877456665,-3.42228412628174,-0.914599895477295,-0.113479852676392,-3.17424964904785,-0.828229427337646,-0.133370637893677,-3.0988941192627,-0.875561237335205,-0.102572679519653,-3.08879327774048,-0.81918478012085,-0.0863106250762939,-3.12695550918579,-0.796791553497314,-0.103977918624878,-3.12020874023438,-0.821314811706543,-0.390618085861206,-2.92662811279297,-1.19204521179199,-0.315405607223511,-2.99329423904419,-1.08087778091431,-0.444884061813354,-2.47382020950317,-0.636841773986816,-0.456940412521362,-2.38133382797241,-0.657463550567627,-0.460387945175171,-2.31280565261841,-0.578988552093506,-0.449926137924194,-2.40772581100464,-0.581051349639893,-0.458378553390503,-2.399094581604,-0.608981609344482,-0.393713712692261,-2.24852323532104,-0.98786449432373,-0.436416387557983,-2.31976509094238,-0.805122852325439,-0.320970177650452,-3.97757053375244,-1.2014856338501,-0.320026993751526,-3.9094090461731,-1.24724674224854,-0.321902871131897,-3.92076826095581,-1.18720626831055,-0.31638491153717,-3.95420408248901,-1.16325855255127,-0.320376038551331,-3.94107341766357,-1.19207191467285,-0.302122712135315,-3.7146954536438,-1.5267333984375,-0.311891198158264,-3.790207862854,-1.43478012084961,-0.234363198280334,-3.7827320098877,-1.60521030426025,-0.232316613197327,-3.90478134155273,-1.48638916015625,-0.285890221595764,-3.67664623260498,-1.80752944946289,-0.218859374523163,-3.7414436340332,-1.83108329772949,-0.197179019451141,-3.75478553771973,-1.74143886566162,-0.189783692359924,-3.80651378631592,-1.63033103942871,-0.033001571893692,-3.86674499511719,-1.78906917572021,-0.0343262255191803,-3.85707664489746,-1.87351036071777,-0.00646081566810608,-3.91170501708984,-1.6873140335083,-0.00594726204872131,-3.92844820022583,-1.64494037628174,-0.114872127771378,-3.83421850204468, --1.71031761169434,-0.228202342987061,-3.53995847702026,-0.982702255249023,-0.186814904212952,-3.47736072540283,-1.02172136306763,-0.14885151386261,-3.47627592086792,-0.962893009185791,-0.173709988594055,-3.51055431365967,-0.948304176330566,-0.180104374885559,-3.50226163864136,-0.971042633056641,-0.334690690040588,-3.29745817184448,-1.30152750015259,-0.280639290809631,-3.35837078094482,-1.21368932723999,-0.389220833778381,-3.41852617263794,-1.46320486068726,-0.378242135047913,-3.53558349609375,-1.30471897125244,-0.422458291053772,-3.25852203369141,-1.65976190567017,-0.401642441749573,-3.38234996795654,-1.70135641098022,-0.382204651832581,-3.39527368545532,-1.61068630218506,-0.373606324195862,-3.45032739639282,-1.49878740310669,-0.344913125038147,-3.60015773773193,-1.78024339675903,-0.321337342262268,-3.60415458679199,-1.68893766403198,-0.310316681861877,-3.64846181869507,-1.58569049835205,-0.362016320228577,-3.52441120147705,-1.56301116943359,-0.345951795578003,-2.66631126403809,-0.698780536651611,-0.366881132125854,-2.58962106704712,-0.737715244293213,-0.374983549118042,-2.56783628463745,-0.684791088104248,-0.353967428207397,-2.61960697174072,-0.668139934539795,-0.362472295761108,-2.61024475097656,-0.691262245178223,-0.359998464584351,-2.46820163726807,-1.01394462585449,-0.377216100692749,-2.51715135574341,-0.900125980377197,-0.407869100570679,-2.74595403671265,-1.20831394195557,-0.340952634811401,-2.83426332473755,-1.01604557037354,-0.432864904403687,-2.58168411254883,-1.39827489852905,-0.452464818954468,-2.79767322540283,-1.48155450820923,-0.424933195114136,-2.82229089736938,-1.3928394317627,-0.407888174057007,-2.84432983398438,-1.26763820648193,-0.444807648658752,-3.12677383422852,-1.60695695877075,-0.41915762424469,-3.14208602905273,-1.51397800445557,-0.38541853427887,-3.19864845275879,-1.38387441635132,-0.421262502670288,-2.9991283416748,-1.36862897872925,-0.440890073776245,-2.06774854660034,-0.550200939178467,-0.425489187240601,-1.9949893951416,-0.720698833465576,-0.408687353134155,-1.94867038726807,-0.845235824584961, --0.405259847640991,-2.06295394897461,-0.923774719238281,-0.386028051376343,-2.04075813293457,-0.985570907592773,-0.419280767440796,-1.87174940109253,-1.04588747024536,-0.448836088180542,-1.84077548980713,-1.13166236877441,-0.402225255966187,-2.00093555450439,-1.09608221054077,-0.432968854904175,-1.972412109375,-1.17638683319092,-0.389918088912964,-2.02938508987427,-1.01825332641602,-0.377987623214722,-2.2100772857666,-1.08071374893188,-0.373689413070679,-2.22160482406616,-1.04794549942017,-0.0032135546207428,-4.14550113677979,-1.33696556091309,-0.0128609240055084,-4.19786262512207,-1.28769969940186,-0.00320449471473694,-4.19675397872925,-1.25072288513184,-0.00318256020545959,-4.18124485015869,-1.28173160552979,-0.0696388781070709,-3.84513807296753,-1.78435611724854,-0.0726334154605865,-3.84113311767578,-1.86719131469727,-0.0677920877933502,-3.87048053741455,-1.72346782684326,-0.067608505487442,-3.88080978393555,-1.69834899902344,-0.00382056832313538,-3.9548282623291,-1.6123104095459,-0.00315013527870178,-4.02387285232544,-1.5098180770874,-0.158206641674042,-3.78591823577881,-1.7541446685791,-0.174935460090637,-3.77528762817383,-1.84343338012695,-0.149538636207581,-4.11555433273315,-1.32433795928955,-0.14406031370163,-3.9919056892395,-1.51294040679932,-0.153989970684052,-3.8303689956665,-1.64718532562256,-0.15328323841095,-3.85063409805298,-1.60490798950195,-0.130930125713348,-3.87656879425049,-1.64361572265625,-0.116495311260223,-3.84312725067139,-1.68493843078613,-0.174934506416321,-4.03047609329224,-1.29388332366943,-0.181089103221893,-3.92215824127197,-1.47249889373779,-0.233225524425507,-3.7163348197937,-1.7363452911377,-0.253346085548401,-3.70936679840088,-1.81938934326172,-0.18613064289093,-3.85450601577759,-1.55970287322998,-0.187147259712219,-3.83023500442505,-1.58652782440186,-0.234955489635468,-3.7342414855957,-1.67037105560303,-0.23347532749176,-3.74413537979126,-1.64221286773682,-0.295294404029846,-3.64471292495728,-1.70346736907959,-0.317004799842834,-3.6431303024292,-1.79556369781494,-0.300526261329651, --3.98352384567261,-1.27495861053467,-0.292056679725647,-3.84809350967407,-1.47129249572754,-0.282440781593323,-3.72823619842529,-1.58441925048828,-0.275887131690979,-3.69183301925659,-1.61910343170166,-0.294334053993225,-3.67333555221558,-1.59631252288818,-0.296260476112366,-3.68929004669189,-1.55488872528076,-0.344372391700745,-3.90030288696289,-1.24270915985107,-0.329991936683655,-3.78481960296631,-1.42937469482422,-0.346199631690979,-3.55456161499023,-1.67593050003052,-0.368133187294006,-3.5474271774292,-1.76136493682861,-0.337210297584534,-3.59000873565674,-1.59796476364136,-0.334004998207092,-3.60578870773315,-1.56727600097656,-0.313987374305725,-3.70223665237427,-1.51993083953857,-0.307742714881897,-3.67141151428223,-1.54615306854248,-0.375830292701721,-3.44951963424683,-1.62985754013062,-0.394165635108948,-3.43911266326904,-1.72207117080688,-0.425674080848694,-3.78735637664795,-1.19284057617188,-0.399583458900452,-3.65832471847534,-1.38691902160645,-0.371885895729065,-3.48878526687622,-1.50625514984131,-0.371196389198303,-3.51111841201782,-1.45815324783325,-0.37502920627594,-3.56528759002686,-1.49539089202881,-0.362948060035706,-3.53632116317749,-1.52700042724609,-0.372230172157288,-3.69754028320313,-1.14689254760742,-0.378334641456604,-3.58565807342529,-1.32877826690674,-0.39194929599762,-3.32799100875854,-1.60714530944824,-0.410028100013733,-3.32014656066895,-1.68244314193726,-0.375095963478088,-3.50780153274536,-1.42556190490723,-0.370211243629456,-3.47860288619995,-1.45485591888428,-0.385199189186096,-3.36299133300781,-1.53938293457031,-0.382088303565979,-3.38097906112671,-1.507972240448,-0.41110098361969,-3.20689582824707,-1.53631162643433,-0.43510115146637,-3.19743251800537,-1.63328552246094,-0.270474076271057,-3.55377101898193,-1.0603609085083,-0.330505967140198,-3.43305730819702,-1.2531476020813,-0.387406945228577,-3.32110834121704,-1.41613149642944,-0.388206124305725,-3.29230737686157,-1.46289205551147,-0.376994729042053,-3.25351333618164,-1.38902807235718,-0.346733689308167,-3.27985382080078,-1.32860660552979, --0.167214155197144,-3.4490852355957,-1.00484037399292,-0.275691628456116,-3.3289532661438,-1.20012140274048,-0.426410436630249,-3.07043123245239,-1.49551916122437,-0.450434446334839,-3.04771137237549,-1.57725715637207,-0.410594701766968,-3.10751914978027,-1.41556739807129,-0.39976954460144,-3.12433242797852,-1.38221597671509,-0.343171715736389,-3.25338554382324,-1.30058145523071,-0.357370972633362,-3.22773456573486,-1.33045148849487,-0.42999529838562,-2.91013622283936,-1.42641305923462,-0.456897497177124,-2.88860034942627,-1.5166220664978,-0.148727178573608,-3.23669242858887,-0.914106845855713,-0.316611051559448,-3.11643934249878,-1.11708402633667,-0.413465261459351,-2.9098539352417,-1.28594350814819,-0.398566961288452,-2.91063022613525,-1.22728109359741,-0.410048246383667,-3.02477121353149,-1.27809762954712,-0.413955450057983,-3.00087690353394,-1.32757663726807,-0.15621018409729,-3.04895877838135,-0.862953186035156,-0.319836378097534,-2.95337724685669,-1.06234788894653,-0.416714429855347,-2.72581100463867,-1.36511182785034,-0.445029020309448,-2.70647144317627,-1.44620847702026,-0.390171766281128,-2.8797869682312,-1.18124198913574,-0.394343137741089,-2.85532283782959,-1.21677827835083,-0.401397466659546,-2.72184801101685,-1.29597043991089,-0.395688772201538,-2.72062301635742,-1.26512098312378,-0.386587858200073,-2.43614625930786,-1.24189567565918,-0.431441068649292,-2.42376232147217,-1.33873844146729,-0.311560392379761,-2.72588300704956,-0.774714469909668,-0.368592023849487,-2.63929319381714,-0.953042030334473,-0.380652189254761,-2.56544733047485,-1.14009523391724,-0.367528676986694,-2.54690551757813,-1.19814348220825,-0.355376958847046,-2.44435262680054,-1.09807157516479,-0.347857236862183,-2.45468044281006,-1.05039310455322,-0.0243512690067291,-4.17430782318115,-1.34688949584961,-0.0241695940494537,-4.05011892318726,-1.52322387695313,-0.465198278427124,-2.14937448501587,-0.515460014343262,-0.421167135238647,-2.06039333343506,-0.486607074737549,-0.439298391342163,-2.11489629745483,-0.466716289520264,-0.44403338432312, --2.09642505645752,-0.496343612670898,-0.171709716320038,-4.06907558441162,-1.20971298217773,-0.173644185066223,-4.0586314201355,-1.23912715911865,-0.296767830848694,-4.0316424369812,-1.1820650100708,-0.301207184791565,-4.01818513870239,-1.21553421020508,-0.143787026405334,-4.16018342971802,-1.23342037200928,-0.148685097694397,-4.14699172973633,-1.2661600112915,-0.346243500709534,-3.93842172622681,-1.15644359588623,-0.348177552223206,-3.92863798141479,-1.18677139282227,-0.434470772743225,-3.83429384231567,-1.10103034973145,-0.435831665992737,-3.82069826126099,-1.1345100402832,-0.370829224586487,-3.7289981842041,-1.06596946716309,-0.375477433204651,-3.72208881378174,-1.0932502746582,-0.260380387306213,-3.59097814559937,-0.971652030944824,-0.268711566925049,-3.58151865005493,-1.00324726104736,-0.144497990608215,-3.47681427001953,-0.928065299987793,-0.155138492584229,-3.47114133834839,-0.95228910446167,-0.0911471843719482,-3.27485036849976,-0.8222336769104,-0.117540597915649,-3.26431226730347,-0.853368759155273,-0.113670110702515,-3.06517553329468,-0.781705379486084,-0.129921197891235,-3.06447696685791,-0.808757781982422,-0.280555486679077,-2.76274156570435,-0.693276405334473,-0.296615362167358,-2.75079107284546,-0.721454620361328,-0.458226919174194,-2.23911905288696,-0.518699645996094,-0.465728521347046,-2.22549724578857,-0.545179843902588,-0.0545622259378433,-3.85535049438477,-1.62954044342041,-0.0508138090372086,-3.96088981628418,-1.49985313415527,-0.282521843910217,-3.59812688827515,-1.5164909362793,-0.291644692420959,-3.6773099899292,-1.39835548400879,-0.312788605690002,-3.12820053100586,-1.32227516174316,-0.183584332466125,-3.23233938217163,-1.15834617614746,-0.195466220378876,-4.02230072021484,-1.19086837768555,-0.221703171730042,-3.9800066947937,-1.21409702301025,-0.189654529094696,-3.95587158203125,-1.2773962020874,-0.166572272777557,-4.00423812866211,-1.22344303131104,-0.191414058208466,-3.99445486068726,-1.22112464904785,-0.209188580513,-3.67811012268066,-1.67005825042725,-0.241613030433655,-3.64409780502319, --1.64400863647461,-0.21836918592453,-3.65717029571533,-1.68817138671875,-0.225555121898651,-3.65917253494263,-1.65834426879883,-0.00317254662513733,-3.75950765609741,-1.79270172119141,-0.022285133600235,-3.72843647003174,-1.79695987701416,-0.0105225183069706,-3.69801139831543,-1.80890560150146,-0.00591960549354553,-3.72799015045166,-1.80206203460693,-0.232526421546936,-3.62968444824219,-0.996671676635742,-0.175013184547424,-3.56130981445313,-0.993202209472656,-0.214346528053284,-3.57569694519043,-1.07914733886719,-0.257815003395081,-3.65123796463013,-1.05271816253662,-0.217640042304993,-3.60784530639648,-1.02250957489014,-0.340283036231995,-3.29858207702637,-1.5195140838623,-0.343860268592834,-3.23608064651489,-1.47529602050781,-0.34514582157135,-3.26405191421509,-1.5434889793396,-0.341960549354553,-3.26444149017334,-1.50013780593872,-0.269907593727112,-3.44141387939453,-1.69706583023071,-0.20694363117218,-3.39177274703979,-1.76053857803345,-0.107195526361465,-3.44338846206665,-1.82607889175415,-0.17869633436203,-3.48880815505981,-1.76845645904541,-0.19342052936554,-3.44321441650391,-1.76524353027344,-0.0998961925506592,-2.90297603607178,-0.725341320037842,-0.138238668441772,-2.81588649749756,-0.737145900726318,-0.106083154678345,-2.8659725189209,-0.807986259460449,-0.0672680139541626,-2.94997549057007,-0.768023490905762,-0.0961868762969971,-2.88880443572998,-0.753011703491211,-0.297402143478394,-2.5952410697937,-1.2687668800354,-0.278679609298706,-2.45131206512451,-1.19884395599365,-0.290749311447144,-2.53381061553955,-1.2718391418457,-0.286692380905151,-2.52197647094727,-1.23709154129028,-0.315002083778381,-2.8702220916748,-1.54532909393311,-0.23275625705719,-2.73819208145142,-1.61852216720581,-0.151012063026428,-2.83004379272461,-1.74573564529419,-0.247249245643616,-2.96025657653809,-1.68349695205688,-0.243207573890686,-2.85101985931396,-1.6527853012085,-0.29187273979187,-2.14166831970215,-0.744536399841309,-0.318510770797729,-2.20940685272217,-0.59839916229248,-0.312638998031616,-1.90088081359863,-0.908021926879883, --0.318257093429565,-1.9215235710144,-0.881747245788574,-0.0563947260379791,-4.13978481292725,-1.23875904083252,-0.0834256708621979,-4.09960222244263,-1.26312351226807,-0.0514890253543854,-4.07277345657349,-1.32217693328857,-0.028505951166153,-4.11360216140747,-1.26555347442627,-0.0535465776920319,-4.10948944091797,-1.26738166809082,-0.144088387489319,-4.05870580673218,-1.20214080810547,-0.152077317237854,-4.02960443496704,-1.231689453125,-0.146549344062805,-4.00596618652344,-1.28168773651123,-0.131724536418915,-4.05200529098511,-1.22871589660645,-0.144783139228821,-4.03887176513672,-1.22795295715332,-0.144640624523163,-3.83988475799561,-1.56170272827148,-0.150065541267395,-3.89952230453491,-1.46505260467529,-0.331190705299377,-3.8584132194519,-1.11157321929932,-0.323646187782288,-3.79554843902588,-1.12973785400391,-0.299251198768616,-3.79519462585449,-1.19885635375977,-0.29911196231842,-3.86313438415527,-1.1513500213623,-0.312848687171936,-3.8322229385376,-1.1408576965332,-0.33247435092926,-3.7337794303894,-1.07119083404541,-0.315580010414124,-3.7040810585022,-1.0915584564209,-0.308205246925354,-3.68027973175049,-1.14749336242676,-0.316406846046448,-3.72657823562622,-1.09897708892822,-0.318282723426819,-3.71391677856445,-1.09531879425049,-0.333929657936096,-3.51401090621948,-1.42633533477783,-0.326396584510803,-3.56695461273193,-1.33930492401123,-0.0137687921524048,-3.3925199508667,-0.863409996032715,0.0174440145492554,-3.31537580490112,-0.866202354431152,-0.0281721353530884,-3.3580265045166,-0.954665184020996,-0.0499435663223267,-3.42830276489258,-0.918313026428223,-0.0119110345840454,-3.38160133361816,-0.893173694610596,-0.0235540866851807,-3.09852361679077,-0.786013126373291,-0.0423948764801025,-3.0421290397644,-0.803923606872559,-0.0401569604873657,-3.0644702911377,-0.862070560455322,-0.000268101692199707,-3.1456937789917,-0.814938545227051,-0.0226594209671021,-3.08695363998413,-0.808480262756348,-0.302575707435608,-2.8954873085022,-1.18137121200562,-0.215017437934875,-2.95646667480469,-1.06762409210205,-0.338285207748413, --2.39964532852173,-0.580564975738525,-0.330462217330933,-2.30929040908813,-0.580533981323242,-0.304466009140015,-2.37621593475342,-0.658923149108887,-0.30804705619812,-2.46242666244507,-0.63603401184082,-0.318625211715698,-2.39175510406494,-0.609367370605469,-0.26535964012146,-2.22512102127075,-0.974504470825195,-0.282537221908569,-2.31422519683838,-0.805273056030273,-0.281994462013245,-3.93015146255493,-1.15039920806885,-0.287328362464905,-3.89838838577271,-1.17701721191406,-0.277232766151428,-3.87468576431274,-1.2310037612915,-0.266027092933655,-3.92575693130493,-1.17763996124268,-0.279091477394104,-3.90990161895752,-1.17626667022705,-0.268272042274475,-3.69119119644165,-1.52345943450928,-0.272780060768127,-3.75761699676514,-1.42343807220459,-0.189761281013489,-3.74849128723145,-1.58127784729004,-0.191046357154846,-3.84043598175049,-1.46344947814941,-0.186792016029358,-3.61439609527588,-1.73440790176392,-0.147076785564423,-3.5682578086853,-1.77358531951904,-0.0679642260074615,-3.59607648849487,-1.81296348571777,-0.108029991388321,-3.64097023010254,-1.77866077423096,-0.128381848335266,-3.60577154159546,-1.77610206604004,-0.126887023448944,-3.6819019317627,-1.75366592407227,-0.0444881021976471,-3.66753816604614,-1.80564308166504,-0.0655795633792877,-3.70158004760742,-1.78321075439453,-0.0865937769412994,-3.67243528366089,-1.78137588500977,-0.154056191444397,-3.76979970932007,-1.65839672088623,-0.181160628795624,-3.72311878204346,-1.67193031311035,-0.163195252418518,-3.7206974029541,-1.70719623565674,-0.168170571327209,-3.74957609176636,-1.66178417205811,-0.00520816445350647,-3.83401536941528,-1.75353050231934,-0.0150529444217682,-3.79426717758179,-1.77571296691895,-0.00370040535926819,-3.79714298248291,-1.77831840515137,-0.0170604288578033,-3.85427808761597,-1.71778869628906,-0.00550666451454163,-3.86346006393433,-1.71314144134521,-0.0799061357975006,-3.79746532440186,-1.72102642059326,-0.118573844432831,-3.77583408355713,-1.69885635375977,-0.0923339426517487,-3.7792797088623,-1.73505878448486,-0.0994340479373932, --3.78391265869141,-1.71324825286865,-0.11259663105011,-3.49080562591553,-0.937362670898438,-0.106125950813293,-3.4662652015686,-0.958399772644043,-0.111322522163391,-3.44531536102295,-1.01219987869263,-0.10845673084259,-3.48895740509033,-0.960371971130371,-0.105083584785461,-3.4749002456665,-0.96000337600708,-0.297093987464905,-3.28177452087402,-1.29669427871704,-0.230076432228088,-3.32993459701538,-1.20460844039917,-0.32010805606842,-3.39281129837036,-1.41859865188599,-0.278043389320374,-3.46904945373535,-1.27410221099854,-0.314550995826721,-3.20337343215942,-1.63846492767334,-0.241015076637268,-3.13080739974976,-1.7188458442688,-0.137446045875549,-3.20101308822632,-1.81500339508057,-0.227659821510315,-3.26950550079346,-1.74370384216309,-0.23507559299469,-3.20272493362427,-1.73215246200562,-0.296893715858459,-3.33700466156006,-1.67298793792725,-0.123892426490784,-3.33538007736206,-1.8272271156311,-0.218331038951874,-3.33318471908569,-1.75327491760254,-0.333313584327698,-3.43392705917358,-1.5382776260376,-0.334358811378479,-3.37297296524048,-1.53667163848877,-0.332522988319397,-3.37666416168213,-1.58587074279785,-0.334274888038635,-3.40668487548828,-1.5365047454834,-0.230408370494843,-3.54106521606445,-1.71924829483032,-0.0884267389774323,-3.52264261245728,-1.81928396224976,-0.163548171520233,-3.52989101409912,-1.77115964889526,-0.266102433204651,-3.62313747406006,-1.62269592285156,-0.27975332736969,-3.57660913467407,-1.61774778366089,-0.27004873752594,-3.57712841033936,-1.65912055969238,-0.273108124732971,-3.60302495956421,-1.61936044692993,-0.300275444984436,-3.51634168624878,-1.60533285140991,-0.319615960121155,-3.46777248382568,-1.56671905517578,-0.307126641273499,-3.48830842971802,-1.6262321472168,-0.310405373573303,-3.4896674156189,-1.58745670318604,-0.287638425827026,-2.60249423980713,-0.664326190948486,-0.30271315574646,-2.54279184341431,-0.678452968597412,-0.278882741928101,-2.56876754760742,-0.736149787902832,-0.244458913803101,-2.65208530426025,-0.696005344390869,-0.280213117599487,-2.59067487716675,-0.687026977539063, --0.278470754623413,-2.43882513046265,-1.02997779846191,-0.284728765487671,-2.48897218704224,-0.912746429443359,-0.294349431991577,-2.68938779830933,-1.17518138885498,-0.226827383041382,-2.76989698410034,-0.9930419921875,-0.1761394739151,-2.2401647567749,-1.34635639190674,-0.0756670832633972,-2.43788051605225,-1.61398887634277,-0.182210087776184,-2.50632953643799,-1.54624938964844,-0.117735028266907,-2.31006240844727,-1.48081874847412,-0.284251809120178,-2.66389179229736,-1.48253726959229,-0.136347889900208,-2.60918474197388,-1.67465782165527,-0.218289971351624,-2.63623237609863,-1.58769941329956,-0.331196546554565,-2.81555604934692,-1.300377368927,-0.31748366355896,-2.71451759338379,-1.30022001266479,-0.324070572853088,-2.74364233016968,-1.35349082946777,-0.325081586837769,-2.76440620422363,-1.29694128036499,-0.321971535682678,-3.07211446762085,-1.60542583465576,-0.148555934429169,-3.03852653503418,-1.79332399368286,-0.245628952980042,-3.05179500579834,-1.70408344268799,-0.350948929786682,-3.19311285018921,-1.4285135269165,-0.353013634681702,-3.11268377304077,-1.44091987609863,-0.354419350624084,-3.12748527526855,-1.49392509460449,-0.352912545204163,-3.15517377853394,-1.43220710754395,-0.350280404090881,-3.03680086135864,-1.42376279830933,-0.344903588294983,-2.93437671661377,-1.37004280090332,-0.353042244911194,-2.99866628646851,-1.44618606567383,-0.348312020301819,-2.98911285400391,-1.40119695663452,-0.309201955795288,-1.99527788162231,-0.720851898193359,-0.330414533615112,-2.07000350952148,-0.552480697631836,-0.311386823654175,-1.93763828277588,-0.839396953582764,-0.281474828720093,-2.05219602584839,-0.915327548980713,-0.296857595443726,-2.02409839630127,-0.978442192077637,-0.276678800582886,-2.07480955123901,-1.06775331497192,-0.294018507003784,-1.92455148696899,-1.00606107711792,-0.275031805038452,-1.99519968032837,-1.07085847854614,-0.284393072128296,-1.99784994125366,-1.03555536270142,-0.272461652755737,-2.34601211547852,-1.12570762634277,-0.27062201499939,-2.23273229598999,-1.10994577407837,-0.278588056564331, --2.19305896759033,-1.036949634552,-0.00253692269325256,-4.15598058700562,-1.23780155181885,-0.00893750786781311,-4.12646245956421,-1.26607608795166,-0.0014897882938385,-4.09851598739624,-1.32182121276855,-0.00190511345863342,-4.13414144515991,-1.26684856414795,-0.0585605204105377,-3.83631753921509,-1.68130683898926,-0.00419726967811584,-3.91636037826538,-1.59787845611572,-0.00523820519447327,-3.90649509429932,-1.6367244720459,-0.108424782752991,-3.92440223693848,-1.48889827728271,-0.109939277172089,-4.03831958770752,-1.30162906646729,-0.143079876899719,-3.82548952102661,-1.59539794921875,-0.101109176874161,-3.82526206970215,-1.61999893188477,-0.100625187158585,-3.80201101303101,-1.66913318634033,-0.16346138715744,-3.88411426544189,-1.45932960510254,-0.156932532787323,-3.98580503463745,-1.28207492828369,-0.168780922889709,-3.82520771026611,-1.54822540283203,-0.171702563762665,-3.80713844299316,-1.57796859741211,-0.192823529243469,-3.72451686859131,-1.62349510192871,-0.238655686378479,-3.78782987594604,-1.44863319396973,-0.243914246559143,-3.91191053390503,-1.2523717880249,-0.229245781898499,-3.69718265533447,-1.561354637146,-0.228703200817108,-3.67505502700806,-1.60138320922852,-0.26692259311676,-3.67206001281738,-1.55665588378906,-0.279608368873596,-3.74045276641846,-1.41372680664063,-0.28485643863678,-3.85231113433838,-1.22115325927734,-0.28442919254303,-3.57768583297729,-1.55678176879883,-0.276260018348694,-3.67590284347534,-1.51536846160889,-0.27640688419342,-3.65475177764893,-1.5481014251709,-0.314070343971252,-3.59861660003662,-1.36559200286865,-0.308859467506409,-3.71734619140625,-1.16920757293701,-0.33528196811676,-3.49924850463867,-1.45421504974365,-0.311687111854553,-3.5269193649292,-1.47877359390259,-0.312893509864807,-3.51167011260986,-1.5178370475769,-0.315278649330139,-3.54904890060425,-1.31595802307129,-0.286292672157288,-3.65445184707642,-1.12907886505127,-0.331081032752991,-3.4874701499939,-1.41816806793213,-0.335047364234924,-3.46715211868286,-1.4511604309082,-0.329979538917542,-3.37315225601196,-1.4672703742981, --0.236590981483459,-3.37231397628784,-1.22582817077637,-0.136001229286194,-3.48355531692505,-1.03042554855347,-0.314155220985413,-3.30043649673462,-1.37281465530396,-0.329823136329651,-3.28730630874634,-1.4229154586792,-0.314535737037659,-3.27080821990967,-1.32659292221069,-0.223647713661194,-3.30954551696777,-1.19299793243408,-0.0978327989578247,-3.43178606033325,-0.995302200317383,-0.33888304233551,-3.10159873962402,-1.3742299079895,-0.304391503334045,-3.23472309112549,-1.29384660720825,-0.324667572975159,-3.21181488037109,-1.32496309280396,-0.180558323860168,-3.08599090576172,-1.10418272018433,-0.00135290622711182,-3.20425701141357,-0.897765636444092,-0.321875214576721,-2.8831992149353,-1.21754503250122,-0.307663559913635,-3.00450325012207,-1.27001857757568,-0.335754036903381,-2.99011182785034,-1.32384443283081,-0.221914887428284,-2.88006114959717,-1.038405418396,-0.065590500831604,-2.98086547851563,-0.840379238128662,-0.301592469215393,-2.8098783493042,-1.16147756576538,-0.3156898021698,-2.79001665115356,-1.20161008834839,-0.302226781845093,-2.66968870162964,-1.23923206329346,-0.256918668746948,-2.61584568023682,-0.944233894348145,-0.199655294418335,-2.70441007614136,-0.768239498138428,-0.274304151535034,-2.54762172698975,-1.1203932762146,-0.283353567123413,-2.53222179412842,-1.18576288223267,-0.281206846237183,-2.42615270614624,-1.07182168960571,-0.0161587297916412,-3.96756935119629,-1.49404907226563,-0.0142857134342194,-4.08215427398682,-1.3193302154541,-0.360697507858276,-2.11421489715576,-0.467710018157959,-0.356782674789429,-2.05075883865356,-0.483059406280518,-0.334349393844604,-2.15749549865723,-0.521078109741211,-0.344371557235718,-2.09714889526367,-0.498098373413086,-0.157536625862122,-4.03614664077759,-1.20128631591797,-0.156483829021454,-4.01702880859375,-1.22855663299561,-0.251579880714417,-3.98154163360596,-1.16587829589844,-0.246747612953186,-3.95310115814209,-1.19494533538818,-0.111849427223206,-4.10524463653564,-1.21671104431152,-0.110304474830627,-4.0763087272644,-1.24537086486816,-0.301262497901917, --3.90248966217041,-1.13965511322021,-0.292110085487366,-3.88406372070313,-1.16602230072021,-0.342726349830627,-3.78474617004395,-1.08476543426514,-0.322487473487854,-3.75679016113281,-1.11321926116943,-0.303674340248108,-3.69956493377686,-1.05287265777588,-0.292172074317932,-3.6834921836853,-1.07644939422607,-0.152204155921936,-3.5442852973938,-0.94400691986084,-0.136075139045715,-3.51956033706665,-0.971946716308594,-0.0837780237197876,-3.46100091934204,-0.91918420791626,-0.084816575050354,-3.4534969329834,-0.94230318069458,0.0219086408615112,-3.24442625045776,-0.807643890380859,0.0209020376205444,-3.23040962219238,-0.836800098419189,-0.0551660060882568,-3.0093731880188,-0.764116764068604,-0.0528409481048584,-2.99896335601807,-0.787689685821533,-0.197617292404175,-2.74741315841675,-0.688259124755859,-0.193127870559692,-2.73149967193604,-0.715364933013916,-0.352516889572144,-2.24113750457764,-0.522050380706787,-0.33324122428894,-2.22983074188232,-0.549939155578613,-0.00355878472328186,-4.18579769134521,-1.2335958480835,-0.0116025507450104,-4.1756329536438,-1.23128414154053,-0.00317254662513733,-4.17278957366943,-1.23020553588867,-0.0341760218143463,-4.17676115036011,-1.23149490356445,-0.0654551088809967,-4.19907569885254,-1.23482608795166,-0.0900985300540924,-4.15953922271729,-1.22564220428467,-0.0600010454654694,-4.17263507843018,-1.231369972229,-0.124140381813049,-4.15241146087646,-1.2123851776123,-0.136396050453186,-4.09977960586548,-1.19416046142578,-0.116562068462372,-4.13206624984741,-1.20884799957275,-0.149881541728973,-4.08189296722412,-1.19798469543457,-0.152273774147034,-4.05417490005493,-1.1981258392334,-0.146303772926331,-4.07227516174316,-1.19482898712158,-0.164789378643036,-4.06037712097168,-1.19191932678223,-0.176135241985321,-4.05045223236084,-1.18210887908936,-0.160714328289032,-4.05016374588013,-1.19134712219238,-0.213415801525116,-4.06352996826172,-1.17748928070068,-0.235247254371643,-4.03087520599365,-1.17137622833252,-0.203562438488007,-4.04532289505005,-1.17803764343262,-0.275452256202698,-4.01925039291382, --1.15524768829346,-0.281565308570862,-3.97109079360962,-1.14017391204834,-0.262303948402405,-4.00327348709106,-1.15439891815186,-0.299838662147522,-3.95052146911621,-1.14355564117432,-0.2971111536026,-3.92333602905273,-1.14384365081787,-0.289881348609924,-3.94286298751831,-1.1417875289917,-0.325829148292542,-3.92881536483765,-1.133225440979,-0.333957314491272,-3.90894508361816,-1.11306190490723,-0.313097596168518,-3.91734886169434,-1.13087177276611,-0.378507256507874,-3.90230989456177,-1.10260963439941,-0.367680191993713,-3.84596347808838,-1.08812427520752,-0.354270577430725,-3.88246917724609,-1.10032081604004,-0.395921349525452,-3.82374954223633,-1.07189750671387,-0.359899163246155,-3.7722806930542,-1.06027221679688,-0.368737816810608,-3.80717992782593,-1.07209777832031,-0.363176941871643,-3.7532205581665,-1.06062316894531,-0.334791779518127,-3.72571611404419,-1.06206226348877,-0.348050713539124,-3.74608755111694,-1.06121253967285,-0.335847496986389,-3.71614980697632,-1.05479431152344,-0.294117569923401,-3.68563890457153,-1.02714252471924,-0.318489670753479,-3.70903778076172,-1.04962158203125,-0.283999085426331,-3.65894269943237,-1.00923728942871,-0.211113095283508,-3.59919929504395,-0.96806526184082,-0.254740357398987,-3.64526748657227,-0.997779846191406,-0.201429963111877,-3.57063341140747,-0.955658912658691,-0.144174218177795,-3.5259108543396,-0.931501388549805,-0.174105286598206,-3.55930471420288,-0.944440841674805,-0.141363263130188,-3.50306987762451,-0.939364433288574,-0.11216127872467,-3.47783279418945,-0.935225009918213,-0.125439763069153,-3.4985613822937,-0.934356689453125,-0.109971165657043,-3.46948099136353,-0.920617580413818,-0.0668622255325317,-3.44579362869263,-0.888699054718018,-0.0936847925186157,-3.46560335159302,-0.915980339050293,-0.0607963800430298,-3.41006422042847,-0.878248691558838,0.00212657451629639,-3.33638763427734,-0.841555595397949,-0.0304909944534302,-3.40125942230225,-0.86602783203125,-0.0148541927337646,-3.26169681549072,-0.82016134262085,-0.00935721397399902,-3.16958808898926,-0.78537130355835, -0.0106061697006226,-3.25396776199341,-0.809316635131836,-0.0477354526519775,-3.11516809463501,-0.788225173950195,-0.0517294406890869,-3.06136703491211,-0.781394481658936,-0.032602071762085,-3.10737037658691,-0.78317928314209,-0.0767648220062256,-3.04059219360352,-0.763917446136475,-0.0796115398406982,-2.98054027557373,-0.734209537506104,-0.0632269382476807,-3.02420663833618,-0.75920581817627,-0.130268812179565,-2.92945623397827,-0.731468677520752,-0.154803991317749,-2.83865213394165,-0.712012767791748,-0.1108238697052,-2.91630220413208,-0.723499298095703,-0.23179030418396,-2.75769901275635,-0.68964147567749,-0.265580892562866,-2.67508554458618,-0.660576343536377,-0.211219549179077,-2.75439548492432,-0.684760093688965,-0.318844556808472,-2.61511468887329,-0.658766746520996,-0.324338674545288,-2.55823087692261,-0.654467582702637,-0.301357984542847,-2.60998106002808,-0.657595157623291,-0.351347684860229,-2.47558259963989,-0.598709106445313,-0.394676923751831,-2.40356492996216,-0.58036994934082,-0.374441862106323,-2.31883525848389,-0.552534580230713,-0.364506483078003,-2.40228700637817,-0.57628345489502,-0.407301664352417,-2.24139881134033,-0.520267486572266,-0.37883734703064,-2.17614030838013,-0.481791973114014,-0.378363370895386,-2.24303245544434,-0.517353534698486,-0.40189528465271,-2.12052154541016,-0.45733118057251,-0.383313894271851,-2.07598876953125,-0.445346832275391,-0.380467176437378,-2.12018060684204,-0.457492828369141,-0.0420867502689362,-4.21951103210449,-1.24244499206543,-0.0219766274094582,-4.20249080657959,-1.23671054840088,-0.0129167139530182,-4.20973682403564,-1.24154281616211,-0.0249873697757721,-4.22165489196777,-1.25878429412842,-0.0238186419010162,-4.21846771240234,-1.24322319030762,-0.108637034893036,-4.19099283218384,-1.23113441467285,-0.0739070475101471,-4.21023797988892,-1.23886871337891,-0.14972323179245,-4.12683582305908,-1.20650005340576,-0.134418606758118,-4.16189861297607,-1.21800136566162,-0.155947327613831,-4.06539249420166,-1.20235538482666,-0.153322398662567,-4.08979463577271,-1.20358562469482, --0.190923869609833,-4.0785436630249,-1.18854141235352,-0.168605923652649,-4.06817388534546,-1.19599533081055,-0.257430672645569,-4.06130933761597,-1.17732429504395,-0.222702622413635,-4.07681798934937,-1.18405818939209,-0.306888222694397,-3.99234342575073,-1.15071201324463,-0.287596344947815,-4.03033351898193,-1.16320323944092,-0.313195824623108,-3.93330860137939,-1.14848709106445,-0.309142708778381,-3.9558162689209,-1.14889621734619,-0.371549248695374,-3.94025754928589,-1.12755489349365,-0.337873101234436,-3.93717813491821,-1.14013767242432,-0.418014168739319,-3.87633895874023,-1.09880638122559,-0.400375962257385,-3.91579580307007,-1.11410713195801,-0.404647469520569,-3.79325246810913,-1.06701564788818,-0.419574379920959,-3.83403491973877,-1.08083248138428,-0.354450821876526,-3.73219299316406,-1.06441116333008,-0.376441597938538,-3.75726890563965,-1.06464576721191,-0.354077935218811,-3.7128849029541,-1.04056835174561,-0.355491280555725,-3.72489213943481,-1.0567102432251,-0.272274613380432,-3.62689924240112,-0.985051155090332,-0.319509148597717,-3.6749906539917,-1.01425743103027,-0.198211789131165,-3.5456657409668,-0.944045066833496,-0.234097123146057,-3.58427333831787,-0.960263252258301,-0.132335782051086,-3.48216342926025,-0.937777042388916,-0.159192204475403,-3.50892019271851,-0.940884590148926,-0.124549984931946,-3.46294021606445,-0.898231029510498,-0.128215909004211,-3.4747428894043,-0.921058177947998,-0.0682451725006104,-3.35737466812134,-0.851843357086182,-0.0994765758514404,-3.42226266860962,-0.877003192901611,-0.0595715045928955,-3.18400859832764,-0.792001724243164,-0.0518372058868408,-3.27156400680542,-0.817738056182861,-0.0747592449188232,-3.08367538452148,-0.788419246673584,-0.0664918422698975,-3.12351894378662,-0.789267063140869,-0.124153852462769,-3.01634407043457,-0.745867252349854,-0.0946695804595947,-3.05575275421143,-0.769054889678955,-0.197784662246704,-2.85426378250122,-0.717609882354736,-0.156460523605347,-2.94375324249268,-0.732926845550537,-0.311282873153687,-2.68138456344604,-0.661862373352051, --0.256558179855347,-2.76278972625732,-0.68757963180542,-0.355889081954956,-2.57137727737427,-0.657906055450439,-0.33775782585144,-2.61980390548706,-0.659798622131348,-0.413384199142456,-2.48210573196411,-0.599581241607666,-0.430185079574585,-2.32224082946777,-0.552547454833984,-0.426037549972534,-2.4073281288147,-0.576775074005127,-0.436898946762085,-2.1730375289917,-0.479305267333984,-0.436300039291382,-2.24230289459229,-0.51557445526123,-0.407939672470093,-2.08120632171631,-0.447950839996338,-0.423351049423218,-2.12082481384277,-0.457032680511475,-0.0320102274417877,-3.90343189239502,-1.71101951599121,-0.0275289267301559,-3.877845287323,-1.66384506225586,-0.312596082687378,-1.79359149932861,-0.979245662689209,-0.267217397689819,-2.11187124252319,-1.1119818687439,-0.271956205368042,-2.15641689300537,-1.09326696395874,-0.262600660324097,-2.35819101333618,-1.21058797836304,-0.274429082870483,-2.39554643630981,-1.15757656097412,-0.307127714157104,-2.63645935058594,-1.3115291595459,-0.308124303817749,-2.65878391265869,-1.29034376144409,-0.34148371219635,-2.87481641769409,-1.40012216567993,-0.338110566139221,-2.87444019317627,-1.33058452606201,-0.354984879493713,-3.05545568466187,-1.46880006790161,-0.352003693580627,-3.07562112808228,-1.4375467300415,-0.350563645362854,-3.19978809356689,-1.51738119125366,-0.347755074501038,-3.2160496711731,-1.44721746444702,-0.340467095375061,-3.31218290328979,-1.56251430511475,-0.337056756019592,-3.33584451675415,-1.53135824203491,-0.321326851844788,-3.43635082244873,-1.60559606552124,-0.327821373939514,-3.45171880722046,-1.54933452606201,-0.293080925941467,-3.52683687210083,-1.64175081253052,-0.289450287818909,-3.54648542404175,-1.61425828933716,-0.244579911231995,-3.62044477462769,-1.67371988296509,-0.255364060401917,-3.63444471359253,-1.6315336227417,-0.196755528450012,-3.68427038192749,-1.69845104217529,-0.194605469703674,-3.69940900802612,-1.674635887146,-0.127612292766571,-3.75226163864136,-1.71954345703125,-0.137178063392639,-3.77487754821777,-1.67567729949951,-0.0421830713748932, --3.83207559585571,-1.72442436218262,-0.0635506212711334,-3.80124235153198,-1.74307727813721,-0.0600258409976959,-3.81497621536255,-1.72444915771484,-0.0266429483890533,-3.94974040985107,-1.64022254943848,-0.0305425226688385,-3.9186429977417,-1.67899894714355,-0.0235392153263092,-3.88466787338257,-1.61464500427246,-0.251174688339233,-1.91650438308716,-1.10107183456421,-0.240556478500366,-2.0473690032959,-1.1447868347168,-0.259023427963257,-2.01867246627808,-1.10891485214233,-0.302673935890198,-2.63793849945068,-1.37769079208374,-0.267657041549683,-2.4633994102478,-1.31475400924683,-0.295008420944214,-2.57657670974731,-1.32514190673828,-0.352076172828674,-3.05297613143921,-1.52149963378906,-0.34928572177887,-2.96206855773926,-1.48873567581177,-0.353750824928284,-3.01978063583374,-1.4876823425293,-0.334771752357483,-3.31243181228638,-1.60620403289795,-0.342754006385803,-3.24393320083618,-1.58241939544678,-0.341686844825745,-3.28153705596924,-1.57909297943115,-0.277286171913147,-3.52643013000488,-1.67485332489014,-0.297793984413147,-3.4719820022583,-1.65655374526978,-0.294444680213928,-3.50211143493652,-1.65494918823242,-0.175070464611053,-3.67938804626465,-1.72307395935059,-0.207129120826721,-3.64195489883423,-1.70957279205322,-0.199540317058563,-3.6648097038269,-1.70886325836182,-0.0473677217960358,-3.78772974014282,-1.76097393035889,-0.085116058588028,-3.76061725616455,-1.75002288818359,-0.0716878473758698,-3.78211259841919,-1.75020980834961,-0.236755967140198,-1.78296422958374,-1.10526704788208,-0.212156414985657,-2.11831331253052,-1.20816278457642,-0.228933811187744,-2.28147125244141,-1.26484537124634,-0.328388810157776,-2.78306245803833,-1.43514919281006,-0.314794182777405,-2.70520496368408,-1.40993452072144,-0.340625405311584,-2.87596845626831,-1.46637582778931,-0.348327279090881,-3.15002584457397,-1.55901050567627,-0.350427269935608,-3.09882688522339,-1.54341268539429,-0.345421433448792,-3.19920492172241,-1.57388305664063,-0.318287491798401,-3.39570379257202,-1.63723278045654,-0.327251076698303,-3.35251569747925, --1.62424516677856,-0.307129502296448,-3.43600702285767,-1.64932107925415,-0.243296325206757,-3.58819055557251,-1.69566011428833,-0.260755181312561,-3.55667686462402,-1.68715286254883,-0.223578155040741,-3.61652946472168,-1.70413970947266,-0.127203166484833,-3.71882152557373,-1.74094104766846,-0.150847613811493,-3.69809055328369,-1.73340129852295,-0.0750929415225983,-3.73326921463013,-1.76523208618164,-0.104442745447159,-3.73956346511841,-1.74670028686523,-0.0331627428531647,-3.75926065444946,-1.77952671051025,-0.0465566217899323,-3.72987699508667,-1.78330707550049,-0.0209018290042877,-3.62907457351685,-1.82231187820435,-0.0156303942203522,-3.66497468948364,-1.81565570831299,-0.0308395996689796,-3.55280494689941,-1.83500719070435,-0.0260159224271774,-3.59064483642578,-1.8289041519165,-0.0396329462528229,-3.48400402069092,-1.84564208984375,-0.035295158624649,-3.51876974105835,-1.84027481079102,-0.0485283434391022,-3.39634561538696,-1.85701942443848,-0.0441567003726959,-3.44406747817993,-1.85209703445435,-0.0560523718595505,-3.27221584320068,-1.85454225540161,-0.0523988306522369,-3.33801317214966,-1.85767364501953,-0.0633298456668854,-3.12349224090576,-1.83897113800049,-0.059758335351944,-3.20201349258423,-1.84801721572876,-0.0686093866825104,-2.93096542358398,-1.81090545654297,-0.066484123468399,-3.03293085098267,-1.82824230194092,-0.066484123468399,-2.69685077667236,-1.74253129959106,-0.0607177317142487,-2.56820869445801,-1.69354677200317,-0.00685277581214905,-3.86792945861816,-1.87741756439209,-0.00659146904945374,-3.87922191619873,-1.78985977172852,-0.0249296873807907,-4.20823287963867,-1.2909688949585,0.00527939200401306,-4.18789386749268,-1.23491382598877,-0.00343719124794006,-4.19604110717773,-1.23753833770752,-0.0179497301578522,-4.14805603027344,-1.23779392242432,-0.0200297012925148,-4.1773476600647,-1.23157119750977,-0.0157629549503326,-4.11946964263916,-1.26535606384277,-0.00206151604652405,-3.98040962219238,-1.49433135986328,-0.0291711390018463,-3.82159852981567,-1.75131416320801,-0.0285812839865685,-3.84448575973511, --1.72189331054688,-0.0290590822696686,-3.79147815704346,-1.76970100402832,0.0474008023738861,-3.85707664489746,-1.87349796295166,0.0356205403804779,-4.20825672149658,-1.29086971282959,0.014051765203476,-4.19604969024658,-1.23750686645508,0.0284994542598724,-4.14807510375977,-1.23771286010742,0.0306318700313568,-4.17736864089966,-1.23148632049561,0.0262740552425385,-4.11948776245117,-1.26528167724609,0.0127528607845306,-3.98041343688965,-1.49431228637695,0.041672557592392,-3.82160234451294,-1.75129508972168,0.04085573554039,-3.84449338912964,-1.72186946868896,0.0417207181453705,-3.79148387908936,-1.76968574523926,0.433887720108032,-2.01669692993164,-0.476902484893799,0.36994194984436,-1.99690294265747,-0.466138362884521,0.396776914596558,-2.01830196380615,-0.433709621429443,0.419616460800171,-2.02403831481934,-0.441441535949707,-0.426081418991089,-2.01638317108154,-0.479471683502197,-0.364130735397339,-1.99644804000854,-0.469175815582275,-0.388964414596558,-2.01799297332764,-0.436097621917725,-0.411274671554565,-2.02376794815063,-0.443727970123291,0.387322187423706,-1.96120023727417,-0.426704883575439,0.331974744796753,-1.78745794296265,-0.885258674621582,0.267459750175476,-1.66519784927368,-1.07267761230469,-0.254109025001526,-1.66934299468994,-1.07439708709717,-0.324987173080444,-1.73489141464233,-0.975513935089111,-0.380236387252808,-1.96079063415527,-0.429317951202393,-0.319348096847534,-1.82875442504883,-0.897011280059814,-0.327858686447144,-1.78688097000122,-0.888716220855713,0.319962739944458,-1.7939338684082,-0.977025508880615,0.332959413528442,-1.73518896102905,-0.973516464233398,0.0565236210823059,-2.01071119308472,-1.30756759643555,0.00553783774375916,-2.81485176086426,-1.78612232208252,0.0800441205501556,-2.8183069229126,-1.78192615509033,-0.0689169466495514,-2.81836795806885,-1.78201484680176,0,-0.179837703704834,0.0642805099487305,0,-0.158390045166016,0.0800867080688477,0,0.032623291015625,0.159745216369629,0,0.196304321289063,0.228069305419922,-2.34636672757915e-06,-4.61847734451294,-1.0930871963501, -0,-4.58166313171387,-0.651363372802734,0,0.288813591003418,0.495390892028809,3.61299971700646e-05,-4.60139560699463,-0.768777847290039,0,0.117302417755127,0.464653015136719,0,-4.59978294372559,-0.507443428039551,1.46531431255426e-06,0.117983341217041,0.306510925292969,0,-3.91120767593384,-1.3721342086792,0,0.120711326599121,0.216795921325684,0,-4.21184778213501,-1.25302410125732,0,-0.248740673065186,0.142685890197754,0,-3.51362895965576,-1.44269561767578,0,5.76972961425781e-05,0,0,4.56571578979492e-05,0,0,5.7518482208252e-05,0,0,4.16338443756104e-05,0,0,5.16176223754883e-05,0,0,4.98294830322266e-05,0,-2.96350281132618e-05,-2.13399696350098,-3.47397804260254,-0.000328255264321342,-2.79740142822266,-3.53909111022949,-0.000149406434502453,-2.37059116363525,-3.62964677810669,-0.000242622292716987,-3.18874740600586,-1.94022655487061,0,-0.149901628494263,-0.0294198989868164,0,-0.183150291442871,0.0562047958374023,0,-0.202298164367676,0.112579345703125,0,-0.227970600128174,0.13395881652832,0,-0.223144292831421,-0.0593681335449219,0,-0.228195667266846,-0.0207643508911133,0,-0.0747259855270386,0.023066520690918,0,-0.00766170024871826,0.00201702117919922,0,4.75645065307617e-05,0,0,-0.123210191726685,0.0586824417114258,0,-0.135998487472534,0.0726890563964844,0,5.35249710083008e-05,0,-0.000642280851025134,-3.22275733947754,-2.51211071014404,-0.000817297492176294,-3.28033542633057,-2.97145175933838,0,4.9591064453125e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.16176223754883e-05,0,0,5.17368316650391e-05,0,0,5.38825988769531e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0.000744444841984659, --1.80842304229736,-1.62559294700623,0,4.57763671875e-05,0,0.000254960497841239,-2.47395992279053,-2.8622305393219,0,4.57763671875e-05,1.9073486328125e-06,-0.00243319361470607,-1.42194557189941,-1.5532374382019,0,4.57763671875e-05,1.9073486328125e-06,0,-0.411371231079102,-1.3379807472229,0,4.57763671875e-05,1.9073486328125e-06,0,-0.0011138916015625,-0.102164387702942,0,4.57763671875e-05,0,3.43973169985149e-06,-1.0031623840332,-2.13414525985718,0.0341624617576599,-0.164462327957153,0.0305938720703125,0.0299443006515503,-0.188687086105347,0.0663557052612305,0.014881432056427,-0.00939559936523438,0.193273544311523,0.0147132873535156,0.119348049163818,0.232152938842773,0.97055196762085,-1.53271722793579,-0.323966026306152,0.738755226135254,-1.489905834198,-0.373745918273926,0.560335636138916,-1.09597826004028,-0.255802154541016,0.666013836860657,-1.15102243423462,-0.350065231323242,0.24839448928833,-0.504720687866211,-0.0989465713500977,0.341620087623596,-0.584126949310303,-0.072880744934082,0.0319832563400269,-0.315948009490967,0.0150833129882813,0.091677188873291,-0.420050144195557,-0.0907535552978516,0.0890210866928101,-0.115270137786865,0.19693660736084,0.0616758465766907,-0.184476375579834,0.194431304931641,0.0506476759910583,0.0412402153015137,0.295025825500488,0.0299834012985229,-0.0835504531860352,0.204158782958984,0.51857328414917,-0.831765651702881,-0.249226570129395,0.402601957321167,-0.811460494995117,-0.240383148193359,0.75858736038208,-1.68888998031616,-0.496654510498047,0.97016429901123,-1.69086170196533,-0.43761157989502,0.80951189994812,-1.88953113555908,-0.525271415710449,1.01710689067841,-1.81696939468384,-0.431326866149902,0.744682788848877,-2.20924758911133,-0.570435523986816,1.02588474750519,-2.01704168319702,-0.404336929321289,0.679020166397095,-2.64519596099854,-0.594668388366699,1.03945696353912,-2.20559549331665,-0.355009078979492,0.764050245285034,-2.72317886352539,-0.516886711120605,0.541955232620239,-3.01866626739502,-0.661717414855957,0.648121476173401,-3.22184896469116,-0.673805236816406, -0.451161861419678,-3.34382295608521,-0.805198669433594,0.432951688766479,-3.79657602310181,-0.93474292755127,0.479577660560608,-3.7563648223877,-0.715642929077148,0.304908633232117,-4.18932771682739,-1.04739284515381,0.351720929145813,-4.20386791229248,-0.734653472900391,0.27674674987793,-4.50978231430054,-1.08261775970459,0.302019000053406,-4.46344470977783,-0.684281349182129,0.16903829574585,-4.59455823898315,-1.13482475280762,0.194491267204285,-4.55690336227417,-0.662863731384277,0.0864051580429077,-4.63854789733887,-1.10697269439697,0.0761822909116745,-4.58103322982788,-0.637166976928711,-0.000179916620254517,0.259284019470215,0.435553550720215,0.0410290956497192,0.156027793884277,0.473174095153809,0.065821647644043,-0.0277323722839355,0.417856216430664,-0.0218526124954224,-0.219333171844482,0.146878242492676,0.175309300422668,-0.544921875,0.00840377807617188,0.345679044723511,-0.858529090881348,-0.189642906188965,0.582809686660767,-1.08678197860718,-0.240077972412109,0.762973308563232,-1.50393152236938,-0.321113586425781,0.770374298095703,-1.70810222625732,-0.421935081481934,0.8256995677948,-1.87716817855835,-0.425333976745605,0.798607349395752,-2.16573190689087,-0.437471389770508,0.75388765335083,-2.53409051895142,-0.440154075622559,0.482165575027466,-2.96111726760864,-0.609026908874512,0.348963975906372,-3.41608476638794,-0.725098609924316,0.383013129234314,-3.87993955612183,-0.832172393798828,0.257234215736389,-4.27092552185059,-0.712564468383789,0.236863493919373,-4.51978349685669,-0.71330451965332,0.160877346992493,-4.62273454666138,-0.728146553039551,0.0839935839176178,-4.63431406021118,-0.745100975036621,0.0153194665908813,0.0758862495422363,0.443340301513672,0.0384224057197571,-0.0197787284851074,0.451127052307129,0.0724353194236755,-0.132637500762939,0.358020782470703,0.104572534561157,-0.261021137237549,0.0670013427734375,0.31252133846283,-0.574151039123535,-0.00115203857421875,0.433611273765564,-0.833952903747559,-0.156108856201172,0.591951847076416,-1.12962818145752,-0.255679130554199,0.820226669311523, --1.53470706939697,-0.282702445983887,0.819542169570923,-1.70455455780029,-0.363760948181152,0.897655010223389,-1.85456991195679,-0.368989944458008,0.893351793289185,-2.07894945144653,-0.359322547912598,0.930545330047607,-2.35050392150879,-0.302798271179199,0.677173733711243,-2.80582571029663,-0.53980827331543,0.486181378364563,-3.28075218200684,-0.672480583190918,0.362300515174866,-3.83361959457397,-0.588920593261719,0.266937136650085,-4.21363592147827,-0.572528839111328,0.271601438522339,-4.43914175033569,-0.51187801361084,0.158854365348816,-4.57200384140015,-0.464360237121582,0.0578903257846832,-4.61496829986572,-0.460443496704102,0.0238495767116547,-0.0511245727539063,0.379849433898926,0.0166667699813843,-0.202141284942627,0.401088714599609,0.130001902580261,-0.422233104705811,0.415726661682129,0.0877734422683716,-0.518206596374512,0.374316215515137,0.203338503837585,-0.502190589904785,0.351592063903809,0.122506380081177,-0.749581813812256,-0.00570201873779297,0.3481764793396,-1.08540201187134,-0.105393409729004,0.645656108856201,-1.28688907623291,-0.0739173889160156,0.695549726486206,-1.45427465438843,-0.314207077026367,0.732788562774658,-1.79002332687378,-0.561708450317383,0.824611663818359,-2.24240446090698,-0.657711029052734,0.796054363250732,-2.60601329803467,-0.688046455383301,0.790610313415527,-2.93017768859863,-0.800568580627441,0.657068252563477,-2.98134851455688,-0.866257667541504,0.0826631784439087,-3.88569688796997,-1.36643218994141,0.173183679580688,-3.81941938400269,-1.33504390716553,0.268603980541229,-3.71275615692139,-1.28314304351807,0.391762137413025,-3.52135038375854,-1.18393421173096,0.52185845375061,-3.25527811050415,-1.03732585906982,0.00130021572113037,0.0618605613708496,0.238150596618652,0.0272040367126465,-0.0279569625854492,0.291244506835938,0.105779647827148,-0.164923667907715,0.233454704284668,0.0429710149765015,-0.322192668914795,0.0164394378662109,0.243497252464294,-0.558647632598877,-0.114914894104004,0.41335391998291,-0.859087944030762,-0.240652084350586,0.551235437393188,-1.15540742874146, --0.283275604248047,0.713372468948364,-1.47971773147583,-0.412161827087402,0.753958940505981,-1.62605905532837,-0.510841369628906,0.752513408660889,-1.86960077285767,-0.625700950622559,0.714761257171631,-2.22796869277954,-0.69214916229248,0.655751943588257,-2.72221899032593,-0.718532562255859,0.627507448196411,-3.08772134780884,-0.757235527038574,0.530466675758362,-3.28152704238892,-0.824349403381348,0.460803747177124,-3.55179643630981,-0.996548652648926,0.371232509613037,-3.86454820632935,-1.12374305725098,0.295677900314331,-4.11575698852539,-1.18947124481201,0.212086856365204,-4.25130224227905,-1.23696231842041,0.113589078187943,-4.24770307540894,-1.2570333480835,0.0748213529586792,-0.325133800506592,0.199088096618652,0.0787590742111206,-0.45670223236084,0.406325340270996,0.20231705904007,-0.424146175384521,0.52549934387207,0.265589714050293,-0.442548751831055,0.547805786132813,0.361996054649353,-0.371156692504883,0.523711204528809,0.364618301391602,-0.514509201049805,0.389647483825684,0.404423713684082,-0.82459545135498,0.280917167663574,0.373285531997681,-1.11961269378662,0.0285482406616211,0.947880506515503,-2.78793048858643,-0.886056900024414,1.0333137512207,-2.62362432479858,-0.695533752441406,1.13152885437012,-2.27257442474365,-0.479570388793945,0.894246816635132,-1.75865936279297,-0.268038749694824,0.494160175323486,-1.3349289894104,-0.252994537353516,0.130112111568451,-3.50814247131348,-1.43553352355957,0.269493043422699,-3.47156238555908,-1.38404369354248,0.394014954566956,-3.39492702484131,-1.31021499633789,0.541955947875977,-3.16563606262207,-1.32384872436523,0.681759357452393,-2.97904682159424,-1.18587589263916,0.81246030330658,-2.84486961364746,-1.00640487670898,0,4.9591064453125e-05,0,0,5.56707382202148e-05,0,0,4.36305999755859e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.37633895874023e-05,0,0,5.56707382202148e-05,0,0,3.58819961547852e-05,0,0.00176429748535156,-0.000753521919250488, -0.00410366058349609,0.0396416187286377,-0.0199744701385498,0.0907726287841797,-0.00631392002105713,-0.0104916095733643,-0.000285148620605469,-0.000500917434692383,-0.000766754150390625,-4.9591064453125e-05,0,5.15580177307129e-05,0,0,5.75482845306396e-05,0,0,5.35547733306885e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,5.37112355232239e-05,0,2.19345092773438e-05,1.57356262207031e-05,3.24249267578125e-05,0.0226650238037109,-0.00922083854675293,0.0528936386108398,0.0181710720062256,-0.00694751739501953,0.0411758422851563,0,3.96966934204102e-05,0,0,5.18560409545898e-05,0,0,4.9591064453125e-05,0,0.429106831550598,-2.21341514587402,-3.05181169509888,0.587434053421021,-2.788893699646,-2.98111915588379,0.528124809265137,-2.04020214080811,-2.42399597167969,0.757014513015747,-2.78049945831299,-2.22387075424194,0.736103057861328,-1.66329193115234,-1.92151546478271,0.973914861679077,-2.40817356109619,-1.77413988113403,0.871625900268555,-1.08912467956543,-1.3632800579071,1.14715719223022,-1.84020805358887,-1.27145862579346,0.782413959503174,-0.582550048828125,-0.794174790382385,1.12213182449341,-1.25661611557007,-0.798224687576294,0.209013938903809,-0.0506958961486816,-0.0750973224639893,0.762495040893555,-0.484314441680908,-0.153892278671265,0,4.57763671875e-05,0,0.613912105560303,-0.322206974029541,-0.0294524431228638,0.824275016784668,-1.38063526153564,-1.65113854408264,1.087557554245,-2.13010406494141,-1.51366519927979,0.470392227172852,-0.182872295379639,-0.291211605072021,0.908078670501709,-0.711316585540771,-0.345558166503906,0.500911235809326,-2.42184543609619,-3.0910472869873,0.716077566146851,-2.39155864715576,-2.48079633712769,0.918516159057617,-2.11125755310059,-1.96627521514893,1.04473733901978,-1.81003761291504,-1.70116424560547,1.12514686584473,-1.49405288696289,-1.42338633537292,1.06615352630615,-0.923827171325684,-0.882607698440552,0.778719902038574,-0.442072868347168,-0.380303025245667,0.578576564788818,-0.256718635559082,-0.164093852043152,0.398116588592529,-0.148332595825195,-0.03399658203125,0.269158244132996, --0.148257255554199,0.204230308532715,0.238911151885986,-0.327825784683228,0.0930271148681641,0.262909054756165,-0.318382978439331,0.0852575302124023,0.356604337692261,-0.218940734863281,0.214080810546875,0.17146372795105,-0.28376030921936,0.0394039154052734,0.184884071350098,-0.33283257484436,0.0746049880981445,0.0383208990097046,-0.183905363082886,0.0515031814575195,0.0490539073944092,-0.150354146957397,0.0307683944702148,0.017705500125885,-0.190767526626587,0.0601949691772461,0.0208699703216553,-0.142558574676514,0.0357818603515625,0.372548222541809,-0.198884248733521,0.242533683776855,0.245938539505005,-0.10346531867981,0.216276168823242,0.426676273345947,-0.369240045547485,0.468070030212402,0.401038408279419,-0.761683464050293,0.528700828552246,0.277950286865234,-1.1540355682373,0.413956642150879,0.460744619369507,-1.31974411010742,-0.182164192199707,0.950896024703979,-1.93229007720947,-0.359271049499512,1.22333526611328,-2.41949796676636,-0.529160976409912,1.16051459312439,-2.60768365859985,-0.782022476196289,1.0014979839325,-2.75258922576904,-1.04473972320557,0.866901397705078,-2.8786678314209,-1.24020671844482,0.728325247764587,-3.01641273498535,-1.4200496673584,0.575367331504822,-3.12852191925049,-1.61562252044678,0.433019280433655,-3.17147541046143,-1.70876502990723,0.305598735809326,-3.23399353027344,-1.81988525390625,0.169963151216507,-3.22827339172363,-1.91837024688721,0.00238654017448425,-0.24395489692688,0.0467414855957031,0.0520484149456024,-0.272543430328369,0.127676010131836,0.0741000473499298,-0.318161249160767,0.185541152954102,0.0423099994659424,-0.317617654800415,0.124032020568848,-0.0267570614814758,-0.169309854507446,0.0102529525756836,-0.00851204991340637,-0.19238805770874,0.0424127578735352,-0.0254006683826447,-0.117189645767212,-0.0142650604248047,-0.0242868363857269,-0.131001472473145,-0.0201587677001953,-0.00653713941574097,-0.102834463119507,-0.0259170532226563,-0.000388234853744507,-0.153913974761963,-0.0443181991577148,0.0026891827583313,-0.0940866470336914,-0.0200414657592773,0.0124976634979248, --0.122319221496582,-0.0283288955688477,0.00645685195922852,-0.0829179286956787,0.000410079956054688,0.0126925110816956,-0.0840368270874023,0.00420379638671875,0.0182572603225708,-0.125449895858765,-0.00655460357666016,0.0311559438705444,-0.114424467086792,0.00174999237060547,0.125742197036743,-0.267599821090698,0.0222892761230469,0.126036286354065,-0.236191034317017,0.0176172256469727,0.258617877960205,-0.435931921005249,0.147397994995117,0.337897062301636,-0.364614486694336,0.226723670959473,0.134936153888702,-0.353718280792236,0.0946073532104492,0.262847423553467,-0.401793479919434,0.420165061950684,0.0787613987922668,-0.336824417114258,0.31291675567627,0.0517316460609436,-0.318754911422729,0.142420768737793,0.225206673145294,-0.420160293579102,0.126312255859375,0.332098782062531,-0.413535594940186,0.30824089050293,0.0119953751564026,-0.260523080825806,0.0746068954467773,-0.0296319127082825,-0.181451320648193,0.0239934921264648,-0.0323618054389954,-0.119811058044434,-0.0133142471313477,-0.00621944665908813,-0.111472129821777,-0.0305757522583008,0.00474882125854492,-0.098182201385498,-0.0221529006958008,0.0067901611328125,-0.0773968696594238,0.000184059143066406,0.0196136236190796,-0.11441445350647,-0.00568389892578125,0.120545625686646,-0.249274969100952,0.0198249816894531,0.285335063934326,-0.430282354354858,0.18377685546875,0.270615518093109,-0.437467336654663,0.196501731872559,0.169114112854004,-0.365732908248901,0.176479339599609,0.0656782388687134,-0.329670667648315,0.204427719116211,0.0516946613788605,-0.324702262878418,0.158588409423828,0.0614326000213623,-0.327144622802734,0.181567192077637,0.0738862752914429,-0.335296869277954,0.253080368041992,0.194508194923401,-0.363091945648193,0.259476661682129,0.301060557365417,-0.435783624649048,0.251914978027344,0.308319330215454,-0.407520532608032,0.205934524536133,0.123772978782654,-0.242557048797607,0.0203828811645508,0.0243688821792603,-0.110809087753296,-0.00254154205322266,0.00876206159591675,-0.0775513648986816,0.00127506256103516,0.00775140523910522,-0.104838609695435, --0.0238285064697266,-0.00667363405227661,-0.119016408920288,-0.0333271026611328,-0.0323114395141602,-0.120457410812378,-0.0155296325683594,-0.0259383320808411,-0.188210725784302,0.0309648513793945,0.0296934545040131,-0.274239063262939,0.100456237792969,0.0602253675460815,-0.290012359619141,0.158845901489258,0.0187960267066956,-0.155028820037842,-0.0329389572143555,0.0166424512863159,-0.0969312191009521,0.00914192199707031,0.0198119878768921,-0.11871075630188,0.0205774307250977,0.0273685455322266,-0.170188188552856,-0.0137510299682617,0.0436649322509766,-0.130039215087891,0.0198211669921875,0.0370056629180908,-0.118021249771118,0.00976085662841797,0.134563326835632,-0.239751815795898,0.0168581008911133,0.153985977172852,-0.2586989402771,0.0240907669067383,0.171854853630066,-0.330002546310425,0.0652370452880859,0.192242741584778,-0.343642473220825,0.0924558639526367,0.207261204719543,-0.336710929870605,0.110576629638672,0.216497898101807,-0.32023024559021,0.115226745605469,0.229510068893433,-0.308330535888672,0.109374046325684,0.25173819065094,-0.308853149414063,0.0958013534545898,0.362590670585632,-0.303468704223633,0.240632057189941,0.368668794631958,-0.259826898574829,0.225103378295898,0.4159836769104,-0.335164546966553,0.304923057556152,0.403430581092834,-0.242408275604248,0.26060962677002,0.427177309989929,-0.3762526512146,0.40736198425293,0.478732109069824,-0.334254264831543,0.302339553833008,0.389907479286194,-0.165140390396118,0.281497001647949,0.277630567550659,-0.0893516540527344,0.252745628356934,0.266648650169373,-0.23530101776123,0.127963066101074,0.322120428085327,-0.281650304794312,0.154811859130859,0.315815448760986,-0.291312217712402,0.173887252807617,0.298902273178101,-0.313239574432373,0.19145679473877,0.291505575180054,-0.347707986831665,0.187405586242676,0.271366357803345,-0.382626533508301,0.169201850891113,0.243457078933716,-0.399445056915283,0.139802932739258,0.217123627662659,-0.394793748855591,0.103262901306152,0.00236183404922485,-0.113918542861938,0.0311832427978516,0.007423996925354,-0.139986991882324, -0.0403213500976563,0.0116089582443237,-0.106905937194824,0.0290899276733398,0.00126710534095764,-0.0164955854415894,0.00429344177246094,0.0120775103569031,-0.0430146455764771,0.0109357833862305,0.00591063499450684,-0.0692640542984009,0.0129299163818359,9.45031642913818e-05,-0.0002288818359375,6.866455078125e-05,0.00516963005065918,-0.0148504972457886,0.00375938415527344,-0.00464379787445068,-0.0444010496139526,0.00467491149902344,0.00833868980407715,-0.168479323387146,0.0551204681396484,0.00499141216278076,-0.189085245132446,0.0592374801635742,0.0185831785202026,-0.155862331390381,0.0471334457397461,0.0877865552902222,-0.0766000747680664,0.130114555358887,0.109389662742615,-0.115646600723267,0.130031585693359,-0.00446116924285889,-0.104441404342651,0.117117881774902,0.0207839012145996,-0.129409551620483,0.112070083618164,-0.0180604457855225,-0.0999941825866699,0.0285024642944336,0.0078204870223999,-0.135672807693481,0.0599184036254883,0.0058976411819458,-0.140500783920288,0.0274181365966797,0.0437668561935425,-0.199825286865234,0.0481357574462891,0.0282301902770996,-0.162311553955078,0.0390195846557617,0.0775235891342163,-0.231406450271606,0.0592689514160156,0.0731091499328613,-0.18602442741394,0.0699367523193359,0.0438846349716187,-0.174876689910889,0.0567512512207031,0.132345676422119,-0.190959692001343,0.0960407257080078,0.185684323310852,-0.307529926300049,0.0920639038085938,0.132864236831665,-0.279785394668579,0.0803546905517578,0.0839213132858276,-0.243286848068237,0.0644054412841797,0.113455414772034,-0.283197164535522,0.0722208023071289,0.196384191513062,-0.344196319580078,0.0878963470458984,0.0198405981063843,-0.194700717926025,0.0700664520263672,0.0104068517684937,-0.206382751464844,0.0668725967407227,0.0265704393386841,-0.178588628768921,0.0539522171020508,0.130278825759888,-0.288167238235474,0.0695352554321289,0.159915328025818,-0.323907852172852,0.0822181701660156,0.0919113159179688,-0.0626115798950195,0.163683891296387,-0.00748240947723389,-0.0950970649719238,0.131369590759277,-0.0280033349990845,-0.0737564563751221, -0.0108137130737305,-0.00469553470611572,-0.0164120197296143,0.000759124755859375,0,5.7518482208252e-05,0,0.000586748123168945,-0.00164663791656494,0.000426292419433594,0.0238626003265381,-0.0313584804534912,0.134324073791504,0.31694507598877,-0.0646283626556396,0.338438034057617,0.0721561908721924,-0.105719566345215,0.255721092224121,0.219521284103394,-0.258825778961182,0.460185050964355,0.110914468765259,-0.130447864532471,0.238649368286133,0.288280248641968,-0.698148488998413,0.383760452270508,0.146158695220947,-0.283085346221924,0.190971374511719,0.323277950286865,-0.771990299224854,0.302621841430664,0.43108606338501,-1.12292146682739,0.244349479675293,0.288876533508301,-0.64175009727478,0.145748138427734,0.108730316162109,-0.251811027526855,0.047276496887207,0.264036655426025,-0.505629301071167,0.085418701171875,0.10887336730957,-0.219688177108765,0.0372738838195801,0.208536624908447,-0.327487945556641,0.0602598190307617,0.0815682411193848,-0.137511014938354,0.0316047668457031,0.125462532043457,-0.161531805992126,0.0522637367248535,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,4.37796115875244e-05,0,0.476684093475342,-1.04980182647705,0.20443868637085,0.37031888961792,-0.54822301864624,0.082007884979248,0.454029083251953,-0.832942724227905,0.127573490142822,0.272909164428711,-0.311816692352295,0.0775871276855469,0.555814266204834,-1.3904447555542,-0.014129638671875,0.531250953674316,-0.726297378540039,0.0545930862426758,0.60930061340332,-1.04995536804199,0.0490546226501465,0.639635562896729,-1.3691611289978,0.0978603363037109,0.728708267211914,-1.26158809661865,-0.103704929351807,0.677427768707275,-0.848897457122803,-0.0307397842407227,0.755303382873535,-1.69983911514282,-0.12054443359375,0.834315299987793,-1.8202748298645,-0.244072914123535,1.11957287788391,-2.41077423095703,-0.580368518829346,0.913271427154541,-2.09515905380249,-0.545641899108887,0.867144584655762,-1.78091049194336,-0.398988246917725,0.842697143554688,-1.32951879501343,-0.293518543243408,1.20298314094543,-2.49899435043335,-0.76753044128418, -1.06164050102234,-2.25916290283203,-1.21112823486328,1.04717111587524,-2.08233642578125,-1.02846384048462,1.20706748962402,-2.63443946838379,-1.01777172088623,1.03015422821045,-2.50808906555176,-1.42516994476318,0.630928754806519,-1.91210651397705,-2.14251327514648,0.791608810424805,-2.36323833465576,-2.16638946533203,0.849676609039307,-2.63057136535645,-1.97548341751099,0.997229814529419,-2.76175212860107,-1.30791854858398,0.876262426376343,-2.70338916778564,-1.66796207427979,0.842763185501099,-2.88790512084961,-1.50988626480103,0.746124744415283,-2.89934730529785,-1.86037826538086,0.460432171821594,-2.14694976806641,-2.75484180450439,0.64713454246521,-2.41752529144287,-2.79953670501709,0.71799898147583,-2.77308177947998,-2.66032838821411,0.682955622673035,-3.00131225585938,-2.20609378814697,0.719138622283936,-3.0711727142334,-1.7230110168457,0.569695353507996,-3.16319942474365,-2.04273319244385,0.574126005172729,-3.07819938659668,-2.52708721160889,0.325594186782837,-2.20742988586426,-3.33380937576294,0.418760597705841,-2.39176368713379,-3.37789535522461,0.414612770080566,-2.82071495056152,-3.24286127090454,0.208588302135468,-2.18624210357666,-3.42351150512695,0.285749971866608,-2.38451194763184,-3.56105709075928,0.309281647205353,-2.85214233398438,-3.34271717071533,0.311272978782654,-3.20470523834229,-2.386155128479,0.435821890830994,-3.22135925292969,-2.23904228210449,0.406051516532898,-3.13102245330811,-2.76989269256592,0.273038268089294,-3.18094825744629,-2.88313007354736,0.107079192996025,-2.15226936340332,-3.47710704803467,0.164821058511734,-2.37435340881348,-3.6203179359436,0.178544759750366,-2.83029270172119,-3.47219610214233,0.201285064220428,-3.20364284515381,-2.48311328887939,0.202762186527252,-3.27687740325928,-2.9235692024231,1.05043172836304,-1.82505750656128,-0.823495864868164,1.01930856704712,-1.52486133575439,-0.641207695007324,0.861293792724609,-0.817948341369629,-1.07685661315918,1.13562488555908,-1.2004337310791,-1.14543747901917,1.15831422805786,-1.54989767074585,-1.03379726409912,0.976222991943359, --1.18040895462036,-0.461460113525391,0.653532981872559,-0.364497184753418,-0.526381611824036,0.944443702697754,-0.670258045196533,-0.621182680130005,1.03385782241821,-0.971292495727539,-0.564517259597778,0.89810037612915,-0.8672194480896,-0.267529726028442,0.80557918548584,-0.899808406829834,-0.148506164550781,0.789274215698242,-0.615780353546143,-0.0933570861816406,0.711305618286133,-0.637082099914551,-0.0169541835784912,0.580154895782471,-0.573229551315308,0.0449614524841309,0.427742958068848,-0.456669569015503,0.0764865875244141,0.661228179931641,-0.417998790740967,0.0147385597229004,0.596925258636475,-0.421829462051392,0.0684480667114258,0.472282409667969,-0.367094755172729,0.10968542098999,0.313942909240723,-0.269809246063232,0.103384733200073,0.152200698852539,-0.147440075874329,0.0678210258483887,0,4.17232513427734e-05,0,0,4.36305999755859e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.19752502441406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,5.36441802978516e-05,0,0,4.57763671875e-05,0,0,3.78452241420746e-05,0,0,4.38094139099121e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,5.17368316650391e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.7848949432373e-05,0,0,4.57763671875e-05,0,0,4.97438013553619e-05,0,0,4.97456640005112e-05,0,0,5.3703784942627e-05,0,0,4.37498092651367e-05,0,0.0189361572265625,0.00106942653656006,0.00930428504943848,0.0140495300292969,0.00199568271636963,0.00662922859191895,0.0464878082275391,0.000829219818115234,0.0182715654373169,0.0363445281982422,0.00394558906555176,0.0123708248138428,0.086482048034668,-0.0064232349395752,0.0265654921531677,0.0718479156494141,0.000900506973266602,0.0172575712203979,0.137413024902344,-0.025160551071167,0.0363833978772163,0.120084762573242,-0.0124435424804688,0.0186935067176819, -0.194985866546631,-0.0532529354095459,0.0465967655181885,0.175286293029785,-0.0327281951904297,0.0177144408226013,0.249937057495117,-0.0896327495574951,0.0600255131721497,0.219147682189941,-0.054018497467041,0.0199210047721863,0,4.77433204650879e-05,0,0,4.97549772262573e-05,0,0,5.17368316650391e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.99351119995117e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05,0,0,5.17293810844421e-05,0,0,5.3703784942627e-05,0,0.0208978652954102,0.00206506252288818,0.00951457023620605,0.05108642578125,0.00337839126586914,0.0173348188400269,0.093501091003418,-0.00302481651306152,0.0231925845146179,0.147327423095703,-0.0238828659057617,0.0267156511545181,0.206583976745605,-0.0519812107086182,0.0369440913200378,0.257768154144287,-0.0821266174316406,0.0466225743293762,0,4.97102737426758e-05,0,0,4.97438013553619e-05,0,0,4.18424606323242e-05,0,0,4.57763671875e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,4.78029251098633e-05,0,0,5.37633895874023e-05,0,0,5.37112355232239e-05,0,0,5.17368316650391e-05,0,0.00282907485961914,0.000438451766967773,0.00164675712585449,0.00908994674682617,0.00106334686279297,0.00401496887207031,0.0224089622497559,0.00128746032714844,0.0065535306930542,0.045560359954834,-0.00183868408203125,0.0101884603500366,0.0799837112426758,-0.0145916938781738,0.0135994330048561,0.153715133666992,-0.0435667037963867,0.0168042182922363,0.331444263458252,-0.151659250259399,0.079936146736145,0,5.17070293426514e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.18424606323242e-05,0,0,3.58819961547852e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,5.17368316650391e-05,0,0,3.58577817678452e-05,0,0,3.77893447875977e-05,0,0.00563144683837891,0.000730156898498535,0.00297188758850098,0.0167989730834961,0.00183296203613281,0.00669562816619873,0.0388422012329102,0.00128555297851563,0.0105953216552734,0.0755681991577148,-0.0076291561126709,0.0154536962509155,0.130057334899902,-0.0253686904907227,0.0186856389045715,0.210300922393799,-0.0603265762329102, -0.0219989418983459,0.30624532699585,-0.119712591171265,0.071764349937439,0,5.36441802978516e-05,0,0,3.99351119995117e-05,0,0,3.99351119995117e-05,0,0,4.18424606323242e-05,0,0,4.37498092651367e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.98294830322266e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97549772262573e-05,0,0,3.7848949432373e-05,0,0,4.37498092651367e-05,0,0,5.36441802978516e-05,0,0,4.98294830322266e-05,0,0,4.17232513427734e-05,0,0,3.98159027099609e-05,0,0,3.58819961547852e-05,0,0,4.78029251098633e-05,0,0,3.7848949432373e-05,0,0,5.17293810844421e-05,0,0,3.77893447875977e-05,0,0.0184564590454102,0.00240230560302734,0.00845456123352051,0.0460319519042969,0.00411415100097656,0.0151622295379639,0.0862789154052734,-0.000557422637939453,0.0203412771224976,0.139169692993164,-0.01800537109375,0.0212322324514389,0.196418762207031,-0.043895959854126,0.0229739844799042,0.245133399963379,-0.0695126056671143,0.0290473699569702,0.314326286315918,-0.115705728530884,0.0437030792236328,0.318233966827393,-0.12015700340271,0.0360661745071411,0,5.3703784942627e-05,0,0,5.37335872650146e-05,0,0,4.18424606323242e-05,0,0,4.78029251098633e-05,0,0,5.18560409545898e-05,0,0,4.57763671875e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.98294830322266e-05,0,0,4.37498092651367e-05,0,0,4.78029251098633e-05,0,0,5.37112355232239e-05,0,0,3.98159027099609e-05,0,0.00941944122314453,0.0012974739074707,0.00466704368591309,0.0259647369384766,0.00314807891845703,0.00937700271606445,0.0554275512695313,0.00138664245605469,0.0139721632003784,0.0993680953979492,-0.00939059257507324,0.0173332095146179,0.156794548034668,-0.0278143882751465,0.0187293495982885,0.219293117523193,-0.0592374801635742,0.019048810005188,0.277862548828125,-0.0917134284973145,0.0356582403182983,0.292053699493408,-0.102002620697021,0.0498198270797729,0.206906318664551,-0.0844137668609619,0.0694050788879395,0.15177583694458, --0.046736478805542,0.0504494309425354,0.103132724761963,-0.0250554084777832,0.0357028841972351,0.0643939971923828,-0.00867819786071777,0.0253354609012604,0.0341968536376953,-0.00252711772918701,0.0148937106132507,0.0126924514770508,-7.12871551513672e-05,0.00647199153900146,0,3.77893447875977e-05,0,0,4.18090494349599e-05,0,0,4.97102737426758e-05,0,0,5.37335872650146e-05,0,0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,4.18424606323242e-05,0,0,5.37107698619366e-05,0,0,4.17828559875488e-05,0,0,3.7848949432373e-05,0,0,4.97549772262573e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.37498092651367e-05,0,0.0163040161132813,-0.00183665752410889,0.00845646858215332,0.0326347351074219,-0.00532984733581543,0.0155807435512543,0,3.98457050323486e-05,0,0,5.37112355232239e-05,0,0,4.57763671875e-05,0,0,3.77893447875977e-05,0,0,4.37498092651367e-05,0,0,4.97102737426758e-05,0,0.0533862113952637,-0.0157837867736816,0.0244034230709076,0.0824484825134277,-0.0264041423797607,0.0335690379142761,0,5.56707382202148e-05,0,0.0482001304626465,-0.0192729234695435,0.0262603759765625,0.117433547973633,-0.0439536571502686,0.0473907589912415,0.0970292091369629,-0.0397639274597168,0.0455466508865356,0.0991463661193848,-0.0437114238739014,0.0453718900680542,0.12677526473999,-0.0555160045623779,0.0545240640640259,0.116855621337891,-0.0476628541946411,0.0508837699890137,0.0673232078552246,-0.028167724609375,0.0355974435806274,0.0657000541687012,-0.0300977230072021,0.0341497659683228,0.151882648468018,-0.0690228939056396,0.0615732669830322,0.116605281829834,-0.0478076934814453,0.0490062236785889,0,4.37498092651367e-05,0,0.214418888092041,-0.109530687332153,0.0810577869415283,0,3.77893447875977e-05,0,0,3.78414988517761e-05,0,0,4.97102737426758e-05,0,0,5.18560409545898e-05,0,0.466182231903076,-0.273423433303833,0.0940988063812256,0.339097023010254,-0.217559814453125,0.105170488357544,0.168030261993408,-0.118490934371948,0.0715177059173584,0,3.96966934204102e-05,0,0,3.77893447875977e-05,0,0,3.58521938323975e-05,0,0,4.97698783874512e-05,0,0, -4.98294830322266e-05,0,0,4.57763671875e-05,0,0.318991661071777,-0.118237018585205,0.0130380392074585,0.498489856719971,-0.235228538513184,0.0339194536209106,0.533641815185547,-0.282056331634521,0.0700638294219971,0.41918420791626,-0.185030221939087,0.0722665786743164,0.433053970336914,-0.182643175125122,0.0566948652267456,0,5.14984130859375e-05,0,0,4.57763671875e-05,0,0.0117964744567871,0.000555753707885742,0.00211858749389648,0,5.38825988769531e-05,0,0.00810527801513672,0.00144600868225098,0.00230526924133301,0.00167560577392578,0.000716209411621094,0.000385046005249023,0.00353097915649414,0.000993967056274414,0.00161957740783691,0.00093841552734375,0.000599145889282227,0.000420093536376953,0.00108480453491211,0.000385046005249023,0.000692129135131836,0.000310420989990234,0.000248074531555176,0.000217914581298828,0,5.37335872650146e-05,0,0,5.37335872650146e-05,0,0,4.77433204650879e-05,0,0,4.97102737426758e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,3.98159027099609e-05,0,0,3.79085540771484e-05,0,0,3.79085540771484e-05,0,0,5.17368316650391e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, --1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0.000154495239257813,0.000192403793334961,6.72340393066406e-05,6.81877136230469e-05,0.000109195709228516,5.14984130859375e-05,6.19888305664063e-06,5.17368316650391e-05,3.814697265625e-06,4.29153442382813e-06,5.36441802978516e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,2.86102294921875e-06,2.81333923339844e-05,7.34329223632813e-05,1.28746032714844e-05,1.71661376953125e-05,6.7591667175293e-05,1.52587890625e-05,0,4.77656722068787e-05,0,0,4.18052077293396e-05,0,0,3.98308038711548e-05,0,0,3.78191471099854e-05,0,0,4.97400760650635e-05,0,0,3.98159027099609e-05,0,0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,3.76701354980469e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06, -0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,3.98457050323486e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.57899475097656e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.18126583099365e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.96966934204102e-05,0,0,5.17368316650391e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,3.76701354980469e-05,0,0,4.97102737426758e-05,0,0,3.58521938323975e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.17368316650391e-05,0,0,3.96966934204102e-05,0,0,5.37335872650146e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05, -0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.57627868652344e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0.191609859466553,-0.0375165939331055,-0.262696385383606,0.311736106872559,-0.11002254486084,-0.550766944885254,0.37101149559021,-0.215781211853027,-0.842490315437317,0.39016318321228,-0.357339859008789,-1.13924884796143,0.400905847549438,-0.518028259277344,-1.4237585067749,0.316760063171387,-0.564519882202148,-1.40882658958435,0.291321277618408,-0.68581485748291,-1.61336231231689, -0.180816054344177,-0.842272758483887,-1.76015543937683,-0.0576163530349731,-1.20242023468018,-1.74711966514587,-0.121275365352631,-1.48361492156982,-1.69356346130371,-0.128692507743835,-1.67802715301514,-1.67078018188477,-0.13434824347496,-1.74843788146973,-1.67732620239258,-0.0645041465759277,-1.85645198822021,-1.60848498344421,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0.225814819335938,-0.0454912185668945,-0.188488304615021,0.39359188079834,-0.150570869445801,-0.425641238689423,0.49201226234436,-0.298091888427734,-0.682044148445129,0.560256242752075,-0.486024856567383,-0.971586585044861,0.595525979995728,-0.703287124633789,-1.27321183681488,0.585730314254761,-0.95987606048584,-1.54954767227173,0.513588666915894,-1.18771553039551,-1.80832123756409,0.234317183494568,-1.50303554534912,-1.96172881126404,0.00646138191223145,-1.84406757354736,-2.09678626060486,-0.02663254737854,-2.03256320953369,-2.28856253623962,0.00296741724014282,-2.16547298431396,-2.50919580459595,-0.0439199209213257,-2.31338882446289,-2.70964622497559,-0.0817958414554596,-2.39454174041748,-2.88429856300354,-0.103661671280861,-2.43376445770264,-2.87273764610291,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06, -0.0543923377990723,-0.000706672668457031,-0.127423524856567,0.114013671875,-0.0153236389160156,-0.333367437124252,0.163974761962891,-0.0471982955932617,-0.613050878047943,0.191437959671021,-0.0844669342041016,-0.882405757904053,0.200227975845337,-0.13485050201416,-1.16628456115723,0.191509485244751,-0.216670989990234,-1.4840897321701,0.169329643249512,-0.30129337310791,-1.7927713394165,-0.02443528175354,-0.470231056213379,-1.92893028259277,-0.178231835365295,-0.79938793182373,-1.89968132972717,-0.109901249408722,-1.16049385070801,-1.76840043067932,-0.0684528350830078,-1.32113552093506,-1.71830189228058,-0.058076947927475,-1.35616302490234,-1.65880823135376,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0.0472736358642578,-0.0144309997558594,-0.194230914115906,0.0754680633544922,-0.0361995697021484,-0.380075544118881,0.0850019454956055,-0.0617351531982422,-0.556862115859985,0.0896539688110352,-0.0887737274169922,-0.731592774391174,0.0894256830215454,-0.122884750366211,-0.917616128921509,0.0910214185714722,-0.184228897094727,-1.098792552948,0.0910665392875671,-0.26298713684082,-1.2519246339798,0.0759073495864868,-0.340156555175781,-1.24973583221436,0.0532045364379883,-0.387178421020508,-1.28161692619324,0.0186421796679497,-0.408487319946289,-1.32726788520813,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0.0012572705745697,-0.00130271911621094,-0.126984238624573,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0.1500563621521,-0.0279359817504883,-0.308829426765442,0.234278202056885,-0.078948974609375,-0.618171513080597,0.270505428314209,-0.15317440032959,-0.924089193344116,0.292381525039673,-0.236490249633789,-1.21874475479126,0.293023705482483,-0.336909294128418,-1.50917279720306,0.235146522521973,-0.454517364501953,-1.7991726398468,0.0926376581192017,-0.544807434082031,-1.79607212543488,-0.0401544570922852,-0.664324760437012,-1.94618439674377,-0.0897541642189026,-0.827315330505371,-1.98827278614044,-0.225768566131592,-0.92943286895752,-2.0558762550354,-0.166959255933762,-0.949145317077637, --2.11386823654175,-0.0619232654571533,-0.988253593444824,-2.13243770599365,0.00490015745162964,-0.0835244655609131,-0.00347805023193359,0.00861334800720215,-0.107266187667847,-0.00454521179199219,0.0237608551979065,-0.16224193572998,-0.0110483169555664,0.0582699775695801,-0.234804391860962,-0.0125360488891602,0.099262535572052,-0.288040161132813,-8.96453857421875e-05,0.150919556617737,-0.342542171478271,0.024688720703125,0.00367277860641479,-0.0815327167510986,-0.00444698333740234,0.00187522172927856,-0.0929820537567139,-0.00470161437988281,0.000677943229675293,-0.12275505065918,-0.00265979766845703,0.00369015336036682,-0.152252674102783,8.86917114257813e-05,0.0123928189277649,-0.190858125686646,0.00412178039550781,0.0292676687240601,-0.230592966079712,0.00697994232177734,0.0651815533638,-0.280663728713989,0.00981616973876953,0.115176796913147,-0.329297065734863,0.0218000411987305,0.174211084842682,-0.374963998794556,0.0460529327392578,0.00971692800521851,-0.135277986526489,-0.00774002075195313,0.0216168761253357,-0.183376550674438,-0.0115089416503906,0.0475989580154419,-0.238319873809814,-0.010955810546875,0.0938278436660767,-0.296490669250488,0.00225830078125,0.00516271591186523,-0.106550455093384,-0.00505256652832031,0,-0.254076480865479,-0.49787712097168,0,-3.4183349609375,-1.92842578887939,0.00401517748832703,-0.278673648834229,-0.499433517456055,0.0246355533599854,-0.524666309356689,-0.765868186950684,0.0840895175933838,-0.631637096405029,-0.948444366455078,0.0130363702774048,-0.26643180847168,-0.497326850891113,0.0116651058197021,-0.356208801269531,-0.62484073638916,-0.0867290496826172,-0.265513896942139,-0.60698413848877,0.0294991135597229,-0.308606147766113,-0.51287841796875,0.0121217370033264,-0.30318546295166,-0.506739616394043,0.226760387420654,-1.07609272003174,-1.06122875213623,0.366555452346802,-1.1963906288147,-1.27931261062622,0.499041080474854,-1.68993711471558,-1.28746366500854,0.453936815261841,-1.96833372116089,-1.12334251403809,0.264442920684814,-2.16825342178345,-1.32987833023071,0.229983806610107, --2.37471580505371,-1.4005708694458,0.335774779319763,-2.71537113189697,-1.52964782714844,0.246284127235413,-2.82632637023926,-1.7322416305542,0.168368458747864,-3.08938694000244,-1.82515430450439,0.105441391468048,-3.27779531478882,-1.87223243713379,0.0520892888307571,-3.38411474227905,-1.90713882446289,0,0.0353870391845703,-0.0921754837036133,-0.0383689701557159,0.0256609916687012,-0.09625244140625,-0.0754445791244507,-0.059453010559082,-0.100130081176758,0.0319936871528625,-0.191771984100342,-0.023834228515625,0.128327012062073,-0.401576519012451,0.000430107116699219,0.454448938369751,-0.519468784332275,0.0609769821166992,0.706499576568604,-0.750308036804199,-0.132766723632813,0.810858845710754,-1.07325077056885,-0.16667366027832,1.13847720623016,-1.42073822021484,-0.198163986206055,1.2400016784668,-1.71123552322388,-0.260472297668457,1.34237933158875,-1.8002610206604,-0.230586051940918,1.3136397600174,-1.91328954696655,-0.232178688049316,1.19504642486572,-2.0856466293335,-0.22779655456543,0.846326112747192,-2.63033533096313,-0.520725250244141,0.666549921035767,-3.11775875091553,-0.658871650695801,0.51081645488739,-3.6503529548645,-0.754264831542969,0.415620088577271,-4.08840560913086,-0.857828140258789,0.292986631393433,-4.25933933258057,-0.953261375427246,0.192013442516327,-4.38314008712769,-0.989297866821289,0.086982399225235,-4.40688371658325,-0.974821090698242,0,-4.42121982574463,-0.983595848083496,0,0.303285121917725,-0.0826864242553711,-0.0172763168811798,0.342130184173584,-0.0836219787597656,-0.0374497175216675,0.279255390167236,-0.0984201431274414,-0.0486210584640503,0.199287414550781,-0.130045890808105,-0.0713568925857544,0.0419816970825195,-0.190293312072754,0.287804245948792,-0.226634979248047,-0.261513710021973,0.412306427955627,-0.479999542236328,-0.365819931030273,0.551215648651123,-0.745636940002441,-0.434123992919922,0.828890562057495,-1.07253646850586,-0.526510238647461,0.884722232818604,-1.4225902557373,-0.645419120788574,0.933720827102661,-1.68726110458374,-0.848372459411621,0.917501926422119, --1.96796655654907,-0.952398300170898,0.809031009674072,-2.24691343307495,-0.931211471557617,0.632665157318115,-2.60827684402466,-1.10490989685059,0.537332534790039,-3.13972616195679,-1.09228992462158,0.523427367210388,-3.64660358428955,-1.09530830383301,0.423943161964417,-3.94878005981445,-1.2869987487793,0.294801294803619,-4.12841510772705,-1.45783805847168,0.175571113824844,-4.24385738372803,-1.47663307189941,0.0811211466789246,-4.27949523925781,-1.48287487030029,0,-4.29813146591187,-1.49493026733398,0,-0.363638401031494,-0.387752532958984,0.00499048829078674,-0.468956470489502,-0.38511848449707,0.161550283432007,-0.776218414306641,-0.580183029174805,0.202615261077881,-0.685181617736816,-0.633983135223389,0.0780410766601563,-0.623445749282837,-0.487706184387207,0.118839979171753,-0.627437591552734,-0.560897350311279,-0.0803967714309692,-0.68785548210144,-0.544532775878906,0.0257805585861206,-0.551231145858765,-0.389892578125,0.0124532580375671,-0.569880723953247,-0.382098197937012,0.240933895111084,-0.927172183990479,-0.696023464202881,0.274862766265869,-0.942043781280518,-0.842617988586426,0.346380949020386,-1.3851523399353,-0.838510513305664,0.570999622344971,-1.48397874832153,-0.743602752685547,0.501731395721436,-1.41921615600586,-0.906167507171631,0.419500827789307,-1.51961708068848,-1.10266351699829,0.47130274772644,-1.73494338989258,-1.33297252655029,0.332024216651917,-1.98989486694336,-1.54639863967896,0.214580178260803,-2.24880409240723,-1.62161540985107,0.136758208274841,-2.44698238372803,-1.66559028625488,0.0670570731163025,-2.57139492034912,-1.70961046218872,0,-2.61386489868164,-1.74186611175537,0,-0.0251920223236084,0.00628113746643066,0.00140044093132019,-0.0269298553466797,0.00767683982849121,0.043327808380127,-0.0700244903564453,-0.0223839282989502,0.0558180809020996,-0.0792350769042969,-0.0448708534240723,0.0208711624145508,-0.055938720703125,0.00378608703613281,0.0316469669342041,-0.0636849403381348,-0.00759077072143555,0.0123330354690552,-0.0482540130615234,0.00989389419555664,0.00706857442855835, --0.0393276214599609,0.0106632709503174,0.00345849990844727,-0.0317223072052002,0.00932073593139648,0.0708177089691162,-0.0910115242004395,-0.0697672367095947,0.0942816734313965,-0.12357234954834,-0.127623796463013,0.115296125411987,-0.16024112701416,-0.191322565078735,0.13436484336853,-0.213353157043457,-1.39744281768799,0.150897026062012,-0.312516212463379,-1.53858542442322,0.162793636322021,-0.454934120178223,-1.71751761436462,0.169199347496033,-0.627337455749512,-1.88699698448181,0.153376817703247,-0.834687232971191,-2.05755496025085,0.137174844741821,-1.00140571594238,-2.14790439605713,0.0961930155754089,-1.13878917694092,-2.22620296478271,0.0489254593849182,-1.23531246185303,-2.30035400390625,0,-1.27465152740479,-2.55684852600098,0,-0.0133914947509766,-0.819142401218414,0,-0.013392448425293,-0.819142520427704,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.819142401218414,0,-0.013392448425293,-0.819142401218414,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142401218414,0,-0.0133914947509766,-0.81914234161377,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.856617331504822,0,-0.013392448425293,-0.856617450714111,0.00267815589904785,-0.0138559341430664,-0.870973229408264,0.00380265712738037,-0.014470100402832,-0.881494700908661,0.00402677059173584,-0.0151700973510742,-0.891004264354706,0.00370794534683228,-0.0152177810668945,-0.900032222270966,0.00271934270858765,-0.0150117874145508,-0.907833993434906,0.00141873955726624,-0.0150957107543945,-0.913255035877228,0,-0.0153589248657227,-0.922449350357056,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0.0350606441497803,-0.00850296020507813, --0.0650041997432709,0.0525610446929932,-0.0183906555175781,-0.112081825733185,0.0665860176086426,-0.0351028442382813,-1.27941882610321,0.083423376083374,-0.0724430084228516,-1.38187122344971,0.113418102264404,-0.148446083068848,-1.58766031265259,0.132838606834412,-0.23725700378418,-1.7892963886261,0.132796764373779,-0.34352970123291,-1.97831428050995,0.118937492370605,-0.42498779296875,-2.12978744506836,0.0858460068702698,-0.486367225646973,-2.25141453742981,0.0443977117538452,-0.535001754760742,-2.35039877891541,0,-0.559701919555664,-2.6117992401123,0,-0.0944671630859375,0.0178260803222656,0.00345370173454285,-0.101590156555176,0.0210318565368652,0.00855386257171631,-0.120849609375,0.0257501602172852,0.0175602436065674,-0.151004552841187,0.0307111740112305,0.0307639837265015,-0.187418460845947,0.032691478729248,0.0522639751434326,-0.222511291503906,0.0260610580444336,0.079277515411377,-0.256227016448975,0.00923633575439453,0.108109474182129,-0.28433895111084,-0.0137114524841309,0.137265920639038,-0.31202507019043,-0.0527191162109375,0.16720175743103,-0.340553760528564,-0.0912232398986816,0.197365045547485,-0.386851787567139,-0.170851230621338,0.225005865097046,-0.449694156646729,-0.251715183258057,0.2482590675354,-0.539316177368164,-1.4867787361145,0.26236891746521,-0.694639205932617,-1.66016960144043,0.262171030044556,-0.896916389465332,-1.84969663619995,0.258149027824402,-1.13594532012939,-2.0110182762146,0.230617523193359,-1.40600967407227,-2.15848350524902,0.190383791923523,-1.63962173461914,-2.23645067214966,0.129763185977936,-1.82327556610107,-2.2866153717041,0.0648622512817383,-1.94391441345215,-2.3443455696106,0,-1.98796463012695,-2.59763622283936,-0.0341622233390808,-0.164461374282837,0.0305929183959961,-0.0299443006515503,-0.188686609268188,0.0663557052612305,-0.0148810744285583,-0.00939702987670898,0.193273544311523,-0.014712393283844,0.11934757232666,0.232155799865723,-0.970548868179321,-1.53271913528442,-0.323962211608887,-0.738755226135254,-1.489905834198,-0.373745918273926,-0.560338973999023,-1.0959792137146, --0.255801200866699,-0.666013836860657,-1.15102481842041,-0.350061416625977,-0.24839448928833,-0.504721164703369,-0.0989503860473633,-0.341622114181519,-0.584127426147461,-0.072911262512207,-0.0319825410842896,-0.315948963165283,0.0150775909423828,-0.0916788578033447,-0.420048713684082,-0.0907573699951172,-0.0890190601348877,-0.115272521972656,0.196934700012207,-0.0616759657859802,-0.184471130371094,0.194435119628906,-0.05064857006073,0.0412383079528809,0.295024871826172,-0.0299847722053528,-0.0835518836975098,0.204167366027832,-0.518550992012024,-0.831790924072266,-0.249368667602539,-0.402602910995483,-0.811461925506592,-0.240383148193359,-0.758589029312134,-1.68888998031616,-0.496657371520996,-0.970162391662598,-1.69086170196533,-0.437607765197754,-0.809884071350098,-1.88933658599854,-0.524957656860352,-1.01710438728333,-1.81697130203247,-0.431324005126953,-0.745644092559814,-2.20989990234375,-0.570435523986816,-1.02589929103851,-2.01717329025269,-0.404356002807617,-0.678882360458374,-2.64510250091553,-0.594882965087891,-1.03945779800415,-2.20559549331665,-0.355009078979492,-0.764589071273804,-2.72341728210449,-0.516990661621094,-0.542093992233276,-3.01856327056885,-0.661247253417969,-0.64812171459198,-3.22184896469116,-0.673805236816406,-0.451160192489624,-3.34381914138794,-0.805196762084961,-0.432952523231506,-3.79657506942749,-0.93474292755127,-0.479578137397766,-3.7563648223877,-0.715642929077148,-0.304909348487854,-4.18932676315308,-1.04739284515381,-0.351805090904236,-4.20384693145752,-0.734683990478516,-0.276746988296509,-4.50978231430054,-1.08261775970459,-0.302019119262695,-4.46344661712646,-0.684304237365723,-0.169037222862244,-4.59455633163452,-1.13482475280762,-0.194491267204285,-4.55690336227417,-0.662863731384277,-0.0864053666591644,-4.63854598999023,-1.10697555541992,-0.076183408498764,-4.58103322982788,-0.63715934753418,0.000178039073944092,0.259281158447266,0.435553550720215,-0.0410286784172058,0.15602970123291,0.473174095153809,-0.0658186674118042,-0.0277299880981445,0.417851448059082,0.0218551158905029, --0.21933126449585,0.146876335144043,-0.175308585166931,-0.544919490814209,0.00840187072753906,-0.345679759979248,-0.85853099822998,-0.189642906188965,-0.582812070846558,-1.08678340911865,-0.240077018737793,-0.762976169586182,-1.50393533706665,-0.321114540100098,-0.770382404327393,-1.70810985565186,-0.421938896179199,-0.82622241973877,-1.87789106369019,-0.425107002258301,-0.798607349395752,-2.16573190689087,-0.437471389770508,-0.754019021987915,-2.53351831436157,-0.440208435058594,-0.48216438293457,-2.96111726760864,-0.609026908874512,-0.349138975143433,-3.41663026809692,-0.725390434265137,-0.383064150810242,-3.87995672225952,-0.832250595092773,-0.257233142852783,-4.27091884613037,-0.712564468383789,-0.236864984035492,-4.51978349685669,-0.713308334350586,-0.160877227783203,-4.62273454666138,-0.728154182434082,-0.0840188264846802,-4.63428735733032,-0.744982719421387,-0.0153195858001709,0.0758843421936035,0.443341255187988,-0.0384217500686646,-0.0197749137878418,0.451126098632813,-0.0724345445632935,-0.13263463973999,0.358026504516602,-0.104572415351868,-0.261021614074707,0.0670022964477539,-0.312522411346436,-0.574151039123535,-0.00115585327148438,-0.433698177337646,-0.834066390991211,-0.156612396240234,-0.591951847076416,-1.12963056564331,-0.255678176879883,-0.820226669311523,-1.53470897674561,-0.28270149230957,-0.819543838500977,-1.70456409454346,-0.363771438598633,-0.897676944732666,-1.85460996627808,-0.368985176086426,-0.893760919570923,-2.07926225662231,-0.359246253967285,-0.931330680847168,-2.35119247436523,-0.302441596984863,-0.677174687385559,-2.80582571029663,-0.53980827331543,-0.486181020736694,-3.28075218200684,-0.672480583190918,-0.362299919128418,-3.83361959457397,-0.588920593261719,-0.266243457794189,-4.21425008773804,-0.571331024169922,-0.271652162075043,-4.43896627426147,-0.51195240020752,-0.159096240997314,-4.57102727890015,-0.464558601379395,-0.0576406121253967,-4.61490154266357,-0.459460258483887,-0.0238500535488129,-0.0511302947998047,0.379848480224609,-0.0166676640510559,-0.202142715454102,0.401088714599609, --0.130002021789551,-0.42223072052002,0.415726661682129,-0.0877763032913208,-0.518206596374512,0.374316215515137,-0.203339219093323,-0.502190113067627,0.351589202880859,-0.122507333755493,-0.749584674835205,-0.00570487976074219,-0.348177671432495,-1.08540391921997,-0.105393409729004,-0.645654916763306,-1.28688812255859,-0.0739154815673828,-0.695544958114624,-1.45427417755127,-0.314205169677734,-0.733131647109985,-1.79014730453491,-0.561808586120605,-0.824611663818359,-2.24240446090698,-0.657711029052734,-0.797049999237061,-2.60633563995361,-0.688344955444336,-0.790611982345581,-2.93017768859863,-0.800568580627441,-0.657069802284241,-2.98134851455688,-0.866256713867188,-0.0826631188392639,-3.88569498062134,-1.36643218994141,-0.173183858394623,-3.819420337677,-1.33504390716553,-0.268604278564453,-3.71275615692139,-1.28314304351807,-0.391762495040894,-3.52134847640991,-1.18393421173096,-0.521859169006348,-3.25527811050415,-1.03732490539551,-0.00129973888397217,0.0618600845336914,0.238152503967285,-0.0272052884101868,-0.0279569625854492,0.291245460510254,-0.105778217315674,-0.164924621582031,0.233453750610352,-0.0429707765579224,-0.322196483612061,0.0164413452148438,-0.243497610092163,-0.558650970458984,-0.114914894104004,-0.413354516029358,-0.859090328216553,-0.240654945373535,-0.551237344741821,-1.15541124343872,-0.283275604248047,-0.713369607925415,-1.47972059249878,-0.412162780761719,-0.753955602645874,-1.62606000900269,-0.510837554931641,-0.75251317024231,-1.86960077285767,-0.625700950622559,-0.715405941009521,-2.22862386703491,-0.692744255065918,-0.656044960021973,-2.72219228744507,-0.718756675720215,-0.627431392669678,-3.08766603469849,-0.757404327392578,-0.53047776222229,-3.28153085708618,-0.82426643371582,-0.460805773735046,-3.55179834365845,-0.996541023254395,-0.371232628822327,-3.86454629898071,-1.12374305725098,-0.295677900314331,-4.11575794219971,-1.18947315216064,-0.212087035179138,-4.25130414962769,-1.23696231842041,-0.113589018583298,-4.24770498275757,-1.25703525543213,-0.074822261929512,-0.325136184692383, -0.199091911315918,-0.0787567496299744,-0.456704139709473,0.406329154968262,-0.202319860458374,-0.424146175384521,0.52549934387207,-0.265586614608765,-0.44255256652832,0.54780387878418,-0.361997842788696,-0.371156215667725,0.523711204528809,-0.364619970321655,-0.514510154724121,0.389647483825684,-0.404422998428345,-0.824597358703613,0.28092098236084,-0.373283386230469,-1.11961269378662,0.0285491943359375,-0.947881698608398,-2.78792858123779,-0.886055946350098,-1.0333137512207,-2.62362432479858,-0.695533752441406,-1.13152885437012,-2.27257442474365,-0.479570388793945,-0.894345998764038,-1.75871086120605,-0.267969131469727,-0.494157314300537,-1.33492851257324,-0.252994537353516,-0.130112618207932,-3.50814342498779,-1.4355297088623,-0.269493818283081,-3.47156238555908,-1.3840446472168,-0.394015729427338,-3.39492797851563,-1.31021499633789,-0.541956424713135,-3.16563606262207,-1.32384967803955,-0.681759476661682,-2.97904682159424,-1.18587493896484,-0.812460899353027,-2.84486961364746,-1.00640392303467,0,4.9591064453125e-05,0,0,5.56707382202148e-05,0,0,4.36305999755859e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.37633895874023e-05,0,0,5.56707382202148e-05,0,0,3.58819961547852e-05,0,-0.00176429748535156,-0.000753521919250488,0.00410366058349609,-0.0396416187286377,-0.0199744701385498,0.0907726287841797,0.00631368160247803,-0.0104912519454956,-0.000285148620605469,0.000500917434692383,-0.000766754150390625,-4.9591064453125e-05,0,5.15580177307129e-05,0,0,5.75482845306396e-05,0,0,5.35547733306885e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,5.37112355232239e-05,0,-2.19345092773438e-05,1.57356262207031e-05,3.24249267578125e-05,-0.0226650238037109,-0.00922083854675293,0.0528926849365234,-0.0181713104248047,-0.00694751739501953,0.0411767959594727,0,3.96966934204102e-05,0,0,5.18560409545898e-05,0,0,4.9591064453125e-05,0,-0.429106831550598,-2.21341514587402,-3.05181169509888,-0.587434053421021, --2.788893699646,-2.98111915588379,-0.528124809265137,-2.04020214080811,-2.42399597167969,-0.756921768188477,-2.78125286102295,-2.2230749130249,-0.736103057861328,-1.66329193115234,-1.92151546478271,-0.973914861679077,-2.40817356109619,-1.77413988113403,-0.871625900268555,-1.08912467956543,-1.3632800579071,-1.14715719223022,-1.84020805358887,-1.27145862579346,-0.782413959503174,-0.582550048828125,-0.794174790382385,-1.12213182449341,-1.25661611557007,-0.798224687576294,-0.209013938903809,-0.0506958961486816,-0.0750973224639893,-0.762495040893555,-0.484314441680908,-0.153892278671265,0,4.57763671875e-05,0,-0.613912105560303,-0.322206974029541,-0.0294524431228638,-0.824275016784668,-1.38063526153564,-1.65113854408264,-1.087557554245,-2.13010406494141,-1.51366519927979,-0.470392227172852,-0.182872295379639,-0.291211605072021,-0.908078670501709,-0.711316585540771,-0.345558166503906,-0.500911235809326,-2.42184543609619,-3.0910472869873,-0.716077566146851,-2.39155864715576,-2.48079633712769,-0.918516159057617,-2.11125755310059,-1.96627521514893,-1.04473733901978,-1.81003761291504,-1.70116424560547,-1.12514686584473,-1.49405288696289,-1.42338633537292,-1.06615352630615,-0.923827171325684,-0.882607698440552,-0.778719902038574,-0.442072868347168,-0.380303025245667,-0.578576564788818,-0.256718635559082,-0.164093852043152,-0.398116588592529,-0.148332595825195,-0.03399658203125,-0.26915967464447,-0.148256301879883,0.204230308532715,-0.238911032676697,-0.327825546264648,0.0930280685424805,-0.262909531593323,-0.318381786346436,0.0852565765380859,-0.356605291366577,-0.21893835067749,0.214081764221191,-0.171464085578918,-0.283759355545044,0.0394039154052734,-0.184884786605835,-0.332833290100098,0.0746040344238281,-0.0383219718933105,-0.183906555175781,0.0515012741088867,-0.0490548610687256,-0.150355577468872,0.030766487121582,-0.0177052021026611,-0.190766096115112,0.0601959228515625,-0.0208699703216553,-0.142557382583618,0.0357809066772461,-0.372549772262573,-0.198882818222046,0.242534637451172,-0.245940566062927,-0.103464365005493, -0.216277122497559,-0.426675081253052,-0.369240999221802,0.468073844909668,-0.401036024093628,-0.761683464050293,0.528700828552246,-0.277949810028076,-1.15403747558594,0.41395378112793,-0.460745096206665,-1.3197455406189,-0.182164192199707,-0.950897932052612,-1.93229198455811,-0.359278678894043,-1.22227835655212,-2.41969060897827,-0.528048515319824,-1.16042566299438,-2.60772943496704,-0.782027721405029,-1.00149893760681,-2.75258922576904,-1.04474115371704,-0.866901993751526,-2.87866878509521,-1.24020767211914,-0.728325247764587,-3.01641273498535,-1.4200496673584,-0.575405955314636,-3.12879371643066,-1.61523532867432,-0.433019280433655,-3.17147541046143,-1.70876502990723,-0.305598735809326,-3.23399353027344,-1.81988525390625,-0.170303583145142,-3.22848415374756,-1.91799259185791,-0.00238531827926636,-0.243952989578247,0.0467414855957031,-0.0520474016666412,-0.272547721862793,0.127676963806152,-0.0740983784198761,-0.31816554069519,0.185544967651367,-0.042309433221817,-0.317618608474731,0.124037742614746,0.026758223772049,-0.169308662414551,0.0102529525756836,0.00851312279701233,-0.19238805770874,0.0424108505249023,0.0254010856151581,-0.117187738418579,-0.0142650604248047,0.024287611246109,-0.131000518798828,-0.0201587677001953,0.00653719902038574,-0.102832555770874,-0.0259151458740234,0.000388354063034058,-0.153913021087646,-0.0443181991577148,-0.00268900394439697,-0.094085693359375,-0.0200414657592773,-0.0124976634979248,-0.12231707572937,-0.0283288955688477,-0.00645709037780762,-0.0829179286956787,0.000410079956054688,-0.0126924514770508,-0.084036111831665,0.00420379638671875,-0.0182580947875977,-0.125450134277344,-0.00655460357666016,-0.0311571359634399,-0.114425897598267,0.00174999237060547,-0.125742793083191,-0.267600536346436,0.0222883224487305,-0.126038074493408,-0.236190795898438,0.0176181793212891,-0.258617520332336,-0.435931444168091,0.147398948669434,-0.337897062301636,-0.364611625671387,0.226723670959473,-0.134939610958099,-0.353721380233765,0.094609260559082,-0.262851715087891,-0.40179443359375,0.420161247253418, --0.078761875629425,-0.336824417114258,0.312920570373535,-0.0517332553863525,-0.318755149841309,0.142422676086426,-0.225209534168243,-0.420161008834839,0.126312255859375,-0.332099914550781,-0.413535594940186,0.308238983154297,-0.0119942128658295,-0.260522603988647,0.0746049880981445,0.0296330153942108,-0.181449890136719,0.0239906311035156,0.0323625206947327,-0.119809627532959,-0.0133142471313477,0.00621932744979858,-0.111470222473145,-0.0305767059326172,-0.0047488808631897,-0.0981812477111816,-0.0221529006958008,-0.00679004192352295,-0.0773963928222656,0.000184059143066406,-0.0196143388748169,-0.11441445350647,-0.00568389892578125,-0.120547652244568,-0.249275684356689,0.0198249816894531,-0.285335779190063,-0.430281400680542,0.183775901794434,-0.270619034767151,-0.437468767166138,0.196504592895508,-0.169116973876953,-0.365735054016113,0.176484107971191,-0.0656802654266357,-0.329673528671265,0.204431533813477,-0.0516932308673859,-0.324705123901367,0.158590316772461,-0.061431348323822,-0.327149391174316,0.181572914123535,-0.0738876461982727,-0.335295915603638,0.253083229064941,-0.194512128829956,-0.363094806671143,0.259482383728027,-0.301064074039459,-0.435783624649048,0.251912117004395,-0.308318614959717,-0.407517671585083,0.205935478210449,-0.123773455619812,-0.242556810379028,0.0203819274902344,-0.0243697166442871,-0.110809803009033,-0.00254344940185547,-0.00876212120056152,-0.0775511264801025,0.00127506256103516,-0.00775134563446045,-0.104836463928223,-0.0238265991210938,0.00667387247085571,-0.119014501571655,-0.0333271026611328,0.0323119759559631,-0.120455980300903,-0.015528678894043,0.0259402394294739,-0.188208818435669,0.0309648513793945,-0.0296912491321564,-0.274238586425781,0.100457191467285,-0.0602259784936905,-0.29001522064209,0.158845901489258,-0.0187958478927612,-0.155027151107788,-0.0329389572143555,-0.0166420936584473,-0.096930980682373,0.00914192199707031,-0.0198121070861816,-0.118710517883301,0.0205783843994141,-0.0273685455322266,-0.170186281204224,-0.0137491226196289,-0.0436654090881348,-0.130040168762207, -0.0198211669921875,-0.0370063781738281,-0.118021488189697,0.00976085662841797,-0.134564638137817,-0.239751100540161,0.0168590545654297,-0.153987288475037,-0.2586989402771,0.0240907669067383,-0.171854615211487,-0.330002307891846,0.0652379989624023,-0.1922447681427,-0.34364128112793,0.0924587249755859,-0.20726215839386,-0.336709022521973,0.110577583312988,-0.216498374938965,-0.32022762298584,0.115230560302734,-0.229511499404907,-0.308328866958618,0.109373092651367,-0.251739382743835,-0.308850288391113,0.0957984924316406,-0.36259138584137,-0.303467273712158,0.240629196166992,-0.368668913841248,-0.259825468063354,0.225102424621582,-0.415983915328979,-0.335161685943604,0.30492115020752,-0.403429985046387,-0.242407083511353,0.26060676574707,-0.427178382873535,-0.3762526512146,0.407358169555664,-0.478730440139771,-0.334251403808594,0.302340507507324,-0.389908790588379,-0.165139198303223,0.281498908996582,-0.277632594108582,-0.089350700378418,0.252748489379883,-0.26664924621582,-0.235299110412598,0.127964973449707,-0.32212221622467,-0.281648635864258,0.154811859130859,-0.315816044807434,-0.291310548782349,0.173887252807617,-0.298900961875916,-0.313236474990845,0.191458702087402,-0.291504979133606,-0.347704887390137,0.187405586242676,-0.271365880966187,-0.382623910903931,0.16920280456543,-0.243458032608032,-0.399444103240967,0.139802932739258,-0.21712601184845,-0.394793272018433,0.103262901306152,-0.0023619532585144,-0.113919377326965,0.0311832427978516,-0.00742411613464355,-0.139986515045166,0.0403213500976563,-0.0116089582443237,-0.106906652450562,0.0290918350219727,-0.00126713514328003,-0.0164958238601685,0.00429344177246094,-0.0120775699615479,-0.0430151224136353,0.0109357833862305,-0.00591051578521729,-0.0692647695541382,0.0129299163818359,-9.45031642913818e-05,-0.000229001045227051,6.866455078125e-05,-0.00516968965530396,-0.0148506164550781,0.00375938415527344,0.00464403629302979,-0.0444014072418213,0.00467491149902344,-0.0083385705947876,-0.168479800224304,0.0551204681396484,-0.00499147176742554,-0.18908429145813,0.0592374801635742, --0.0185838937759399,-0.155862808227539,0.0471334457397461,-0.0877878665924072,-0.0766003131866455,0.13011646270752,-0.1093909740448,-0.115646362304688,0.130034446716309,0.00446057319641113,-0.10444188117981,0.117120742797852,-0.0207843780517578,-0.129409790039063,0.112071990966797,0.0180599689483643,-0.0999948978424072,0.02850341796875,-0.00782108306884766,-0.135673522949219,0.0599193572998047,-0.005898118019104,-0.140502452850342,0.0274190902709961,-0.0437675714492798,-0.199826240539551,0.0481367111206055,-0.028231143951416,-0.162313222885132,0.0390195846557617,-0.0775251388549805,-0.231407642364502,0.0592689514160156,-0.0731097459793091,-0.186023473739624,0.0699367523193359,-0.043885350227356,-0.174876928329468,0.0567522048950195,-0.132346510887146,-0.190958738327026,0.096043586730957,-0.185684442520142,-0.307528257369995,0.0920639038085938,-0.132864236831665,-0.279783725738525,0.0803546905517578,-0.0839216709136963,-0.243287324905396,0.0644054412841797,-0.113456249237061,-0.283196926116943,0.0722208023071289,-0.196384191513062,-0.34419584274292,0.0878982543945313,-0.0198405385017395,-0.194700717926025,0.0700664520263672,-0.0104066729545593,-0.206382274627686,0.0668725967407227,-0.0265711545944214,-0.178589105606079,0.0539522171020508,-0.130279660224915,-0.288167715072632,0.0695352554321289,-0.159915685653687,-0.323906421661377,0.0822181701660156,-0.0919134616851807,-0.0626118183135986,0.163687705993652,0.00748205184936523,-0.0950965881347656,0.131367683410645,0.0280030965805054,-0.0737566947937012,0.0108146667480469,0.00469565391540527,-0.0164121389389038,0.000759124755859375,0,5.7518482208252e-05,0,-0.000586748123168945,-0.00164663791656494,0.000426292419433594,-0.0238628387451172,-0.0313584804534912,0.13432502746582,-0.316945791244507,-0.0646293163299561,0.338436126708984,-0.0721569061279297,-0.105720281600952,0.25572395324707,-0.219518661499023,-0.258826732635498,0.460185050964355,-0.11091423034668,-0.130447149276733,0.238649368286133,-0.288280725479126,-0.698148488998413,0.383760452270508,-0.146158695220947, --0.283084154129028,0.19096851348877,-0.323276519775391,-0.771988391876221,0.302620887756348,-0.43108606338501,-1.12292051315308,0.244349479675293,-0.288876056671143,-0.641749143600464,0.145745277404785,-0.108730316162109,-0.251810550689697,0.047276496887207,-0.264036655426025,-0.505629301071167,0.085418701171875,-0.10887336730957,-0.219688177108765,0.0372738838195801,-0.208536148071289,-0.327487707138062,0.0602598190307617,-0.0815682411193848,-0.137511014938354,0.0316047668457031,-0.125462532043457,-0.161531805992126,0.0522637367248535,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,4.37796115875244e-05,0,-0.476685047149658,-1.04980134963989,0.204437732696533,-0.37031888961792,-0.548222541809082,0.0820074081420898,-0.454029083251953,-0.832942724227905,0.127573490142822,-0.272909164428711,-0.311816692352295,0.0775871276855469,-0.555814743041992,-1.39044618606567,-0.0141277313232422,-0.531250953674316,-0.726295948028564,0.0545921325683594,-0.60930061340332,-1.04995536804199,0.0490546226501465,-0.639636039733887,-1.36916065216064,0.0978598594665527,-0.728707790374756,-1.26158618927002,-0.103705883026123,-0.677427768707275,-0.848896980285645,-0.0307397842407227,-0.755304336547852,-1.69983816146851,-0.120543479919434,-0.83431339263916,-1.82027673721313,-0.244073867797852,-1.1195707321167,-2.41077041625977,-0.580371379852295,-0.913271427154541,-2.09515714645386,-0.545641899108887,-0.867143630981445,-1.78090858459473,-0.398987770080566,-0.842697143554688,-1.32951736450195,-0.293518543243408,-1.20298194885254,-2.49899435043335,-0.76753044128418,-1.06164002418518,-2.25916290283203,-1.21112871170044,-1.04717111587524,-2.08233642578125,-1.02846384048462,-1.20706796646118,-2.63443851470947,-1.01777315139771,-1.03015422821045,-2.50808906555176,-1.42516994476318,-0.630928754806519,-1.91210651397705,-2.14251327514648,-0.791608810424805,-2.36323833465576,-2.16638946533203,-0.849676609039307,-2.63057327270508,-1.97548341751099,-0.997229814529419,-2.76175117492676,-1.30791902542114,-0.876262664794922,-2.70338916778564,-1.66796207427979, --0.842763662338257,-2.88790512084961,-1.50988626480103,-0.746125221252441,-2.89934730529785,-1.86037921905518,-0.460432171821594,-2.14694976806641,-2.75484180450439,-0.64713454246521,-2.41752529144287,-2.79953670501709,-0.71799898147583,-2.77308177947998,-2.66032838821411,-0.682955622673035,-3.00131225585938,-2.20609378814697,-0.719132900238037,-3.07123374938965,-1.7229266166687,-0.569578051567078,-3.16381454467773,-2.04188537597656,-0.574126005172729,-3.07819938659668,-2.52708721160889,-0.325594186782837,-2.20742988586426,-3.33380937576294,-0.418760597705841,-2.39176368713379,-3.37789535522461,-0.414612770080566,-2.82071495056152,-3.24286127090454,-0.208588302135468,-2.18624210357666,-3.42351150512695,-0.285749971866608,-2.38451194763184,-3.56105709075928,-0.309628784656525,-2.85180473327637,-3.34275245666504,-0.311776876449585,-3.20405292510986,-2.38694190979004,-0.435907125473022,-3.22142887115479,-2.23891448974609,-0.406427025794983,-3.13044738769531,-2.77062892913818,-0.273640990257263,-3.18009948730469,-2.88390254974365,-0.107336521148682,-2.15248775482178,-3.47589683532715,-0.164821058511734,-2.37435340881348,-3.6203179359436,-0.178544759750366,-2.83029270172119,-3.47219610214233,-0.20203709602356,-3.20409774780273,-2.48225593566895,-0.203709483146667,-3.27710151672363,-2.92272996902466,-1.05043172836304,-1.82505559921265,-0.823495864868164,-1.01930856704712,-1.52486133575439,-0.641208171844482,-0.861293792724609,-0.817948341369629,-1.07685661315918,-1.13562488555908,-1.2004337310791,-1.14543747901917,-1.15831422805786,-1.54989767074585,-1.03379726409912,-0.976222991943359,-1.1804084777832,-0.461460113525391,-0.653532981872559,-0.364497184753418,-0.526381611824036,-0.944443702697754,-0.670258045196533,-0.621182680130005,-1.03385782241821,-0.971292495727539,-0.564517259597778,-0.89810037612915,-0.8672194480896,-0.267529726028442,-0.80557918548584,-0.899808406829834,-0.148507118225098,-0.789274215698242,-0.615780353546143,-0.0933570861816406,-0.711305618286133,-0.637082099914551,-0.0169541835784912,-0.580154895782471, --0.573229551315308,0.0449614524841309,-0.427742958068848,-0.456669569015503,0.0764865875244141,-0.661228179931641,-0.417998790740967,0.0147385597229004,-0.596925258636475,-0.421829462051392,0.0684480667114258,-0.472282409667969,-0.367094755172729,0.10968542098999,-0.313942909240723,-0.269809246063232,0.103384733200073,-0.152200698852539,-0.147440075874329,0.0678210258483887,0,4.17232513427734e-05,0,0,4.36305999755859e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.19752502441406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,5.36441802978516e-05,0,0,4.57763671875e-05,0,0,3.78452241420746e-05,0,0,4.38094139099121e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,5.17368316650391e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.7848949432373e-05,0,0,4.57763671875e-05,0,0,4.97438013553619e-05,0,0,4.97456640005112e-05,0,0,5.3703784942627e-05,0,0,4.37498092651367e-05,0,-0.0189361572265625,0.00106942653656006,0.00930428504943848,-0.0140495300292969,0.00199568271636963,0.00662922859191895,-0.0464878082275391,0.000829219818115234,0.0182715654373169,-0.0363445281982422,0.00394558906555176,0.0123708248138428,-0.086482048034668,-0.0064232349395752,0.0265654921531677,-0.0718479156494141,0.000900506973266602,0.0172575712203979,-0.137413024902344,-0.025160551071167,0.0363833978772163,-0.120084762573242,-0.0124435424804688,0.0186935067176819,-0.194985866546631,-0.0532529354095459,0.0465967655181885,-0.175286293029785,-0.0327281951904297,0.0177144408226013,-0.249937057495117,-0.0896327495574951,0.0600255131721497,-0.219147682189941,-0.054018497467041,0.0199210047721863,0,4.77433204650879e-05,0,0,4.97549772262573e-05,0,0,5.17368316650391e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.99351119995117e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05, -0,0,5.17293810844421e-05,0,0,5.3703784942627e-05,0,-0.0208978652954102,0.00206506252288818,0.00951457023620605,-0.05108642578125,0.00337839126586914,0.0173348188400269,-0.093501091003418,-0.00302481651306152,0.0231925845146179,-0.147327423095703,-0.0238828659057617,0.0267156511545181,-0.206583976745605,-0.0519812107086182,0.0369440913200378,-0.257768154144287,-0.0821266174316406,0.0466225743293762,0,4.97102737426758e-05,0,0,4.97438013553619e-05,0,0,4.18424606323242e-05,0,0,4.57763671875e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,4.78029251098633e-05,0,0,5.37633895874023e-05,0,0,5.37112355232239e-05,0,0,5.17368316650391e-05,0,-0.00282907485961914,0.000438451766967773,0.00164675712585449,-0.00908994674682617,0.00106334686279297,0.00401496887207031,-0.0224089622497559,0.00128746032714844,0.0065535306930542,-0.045560359954834,-0.00183868408203125,0.0101884603500366,-0.0799837112426758,-0.0145916938781738,0.0135994330048561,-0.153715133666992,-0.0435667037963867,0.0168042182922363,-0.331444263458252,-0.151659250259399,0.079936146736145,0,5.17070293426514e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.18424606323242e-05,0,0,3.58819961547852e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,5.17368316650391e-05,0,0,3.58577817678452e-05,0,0,3.77893447875977e-05,0,-0.00563144683837891,0.000730156898498535,0.00297188758850098,-0.0167989730834961,0.00183296203613281,0.00669562816619873,-0.0388422012329102,0.00128555297851563,0.0105953216552734,-0.0755681991577148,-0.0076291561126709,0.0154536962509155,-0.130057334899902,-0.0253686904907227,0.0186856389045715,-0.210300922393799,-0.0603265762329102,0.0219989418983459,-0.30624532699585,-0.119712591171265,0.071764349937439,0,5.36441802978516e-05,0,0,3.99351119995117e-05,0,0,3.99351119995117e-05,0,0,4.18424606323242e-05,0,0,4.37498092651367e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.98294830322266e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97549772262573e-05,0,0,3.7848949432373e-05,0,0,4.37498092651367e-05,0,0,5.36441802978516e-05,0,0,4.98294830322266e-05,0,0,4.17232513427734e-05,0,0,3.98159027099609e-05,0,0,3.58819961547852e-05,0,0,4.78029251098633e-05,0,0,3.7848949432373e-05,0,0,5.17293810844421e-05,0,0,3.77893447875977e-05,0,-0.0184564590454102,0.00240230560302734,0.00845456123352051,-0.0460319519042969,0.00411415100097656,0.0151622295379639,-0.0862789154052734,-0.000557422637939453,0.0203412771224976,-0.139169692993164,-0.01800537109375,0.0212322324514389,-0.196418762207031,-0.043895959854126,0.0229739844799042,-0.245133399963379,-0.0695126056671143,0.0290473699569702,-0.314326286315918,-0.115705728530884,0.0437030792236328,-0.318233966827393,-0.12015700340271,0.0360661745071411,0,5.3703784942627e-05,0,0,5.37335872650146e-05,0,0,4.18424606323242e-05,0,0,4.78029251098633e-05,0,0,5.18560409545898e-05,0,0,4.57763671875e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.98294830322266e-05,0,0,4.37498092651367e-05,0,0,4.78029251098633e-05,0,0,5.37112355232239e-05,0,0,3.98159027099609e-05,0,-0.00941944122314453,0.0012974739074707,0.00466704368591309,-0.0259647369384766,0.00314807891845703,0.00937700271606445,-0.0554275512695313,0.00138664245605469,0.0139721632003784,-0.0993680953979492,-0.00939059257507324,0.0173332095146179,-0.156794548034668,-0.0278143882751465,0.0187293495982885,-0.219293117523193,-0.0592374801635742,0.019048810005188,-0.277862548828125,-0.0917134284973145,0.0356582403182983,-0.292053699493408,-0.102002620697021,0.0498198270797729,-0.206906318664551,-0.0844137668609619,0.0694050788879395,-0.15177583694458,-0.046736478805542,0.0504494309425354,-0.103132724761963,-0.0250554084777832,0.0357028841972351,-0.0643939971923828,-0.00867819786071777,0.0253354609012604,-0.0341968536376953,-0.00252711772918701,0.0148937106132507,-0.0126924514770508,-7.12871551513672e-05,0.00647199153900146,0,3.77893447875977e-05,0,0,4.18090494349599e-05,0,0,4.97102737426758e-05,0,0,5.37335872650146e-05,0, -0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,4.18424606323242e-05,0,0,5.37107698619366e-05,0,0,4.17828559875488e-05,0,0,3.7848949432373e-05,0,0,4.97549772262573e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.37498092651367e-05,0,-0.0163040161132813,-0.00183665752410889,0.00845646858215332,-0.0326347351074219,-0.00532984733581543,0.0155807435512543,0,3.98457050323486e-05,0,0,5.37112355232239e-05,0,0,4.57763671875e-05,0,0,3.77893447875977e-05,0,0,4.37498092651367e-05,0,0,4.97102737426758e-05,0,-0.0533862113952637,-0.0157837867736816,0.0244034230709076,-0.0824484825134277,-0.0264041423797607,0.0335690379142761,0,5.56707382202148e-05,0,-0.0482001304626465,-0.0192729234695435,0.0262603759765625,-0.117433547973633,-0.0439536571502686,0.0473907589912415,-0.0970292091369629,-0.0397639274597168,0.0455466508865356,-0.0991463661193848,-0.0437114238739014,0.0453718900680542,-0.12677526473999,-0.0555160045623779,0.0545240640640259,-0.116855621337891,-0.0476628541946411,0.0508837699890137,-0.0673232078552246,-0.028167724609375,0.0355974435806274,-0.0657000541687012,-0.0300977230072021,0.0341497659683228,-0.151882648468018,-0.0690228939056396,0.0615732669830322,-0.116605281829834,-0.0478076934814453,0.0490062236785889,0,4.37498092651367e-05,0,-0.214418888092041,-0.109530687332153,0.0810577869415283,0,3.77893447875977e-05,0,0,3.78414988517761e-05,0,0,4.97102737426758e-05,0,0,5.18560409545898e-05,0,-0.466182231903076,-0.273423433303833,0.0940988063812256,-0.339097023010254,-0.217559814453125,0.105170488357544,-0.168030261993408,-0.118490934371948,0.0715177059173584,0,3.96966934204102e-05,0,0,3.77893447875977e-05,0,0,3.58521938323975e-05,0,0,4.97698783874512e-05,0,0,4.98294830322266e-05,0,0,4.57763671875e-05,0,-0.318991661071777,-0.118237018585205,0.0130380392074585,-0.498489856719971,-0.235228538513184,0.0339194536209106,-0.533641815185547,-0.282056331634521,0.0700638294219971,-0.41918420791626,-0.185030221939087,0.0722665786743164,-0.433053970336914,-0.182643175125122,0.0566948652267456,0,5.14984130859375e-05,0,0, -4.57763671875e-05,0,-0.0117964744567871,0.000555753707885742,0.00211858749389648,0,5.38825988769531e-05,0,-0.00810527801513672,0.00144600868225098,0.00230526924133301,-0.00167560577392578,0.000716209411621094,0.000385046005249023,-0.00353097915649414,0.000993967056274414,0.00161957740783691,-0.00093841552734375,0.000599145889282227,0.000420093536376953,-0.00108480453491211,0.000385046005249023,0.000692129135131836,-0.000310420989990234,0.000248074531555176,0.000217914581298828,0,5.37335872650146e-05,0,0,5.37335872650146e-05,0,0,4.77433204650879e-05,0,0,4.97102737426758e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,3.98159027099609e-05,0,0,3.79085540771484e-05,0,0,3.79085540771484e-05,0,0,5.17368316650391e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06, -0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,-0.000154495239257813,0.000192403793334961,6.72340393066406e-05,-6.81877136230469e-05,0.000109195709228516,5.14984130859375e-05,-6.19888305664063e-06,5.17368316650391e-05,3.814697265625e-06,-4.29153442382813e-06,5.36441802978516e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,2.86102294921875e-06,-2.81333923339844e-05,7.34329223632813e-05,1.28746032714844e-05,-1.71661376953125e-05,6.7591667175293e-05,1.52587890625e-05,0,4.77656722068787e-05,0,0,4.18052077293396e-05,0,0,3.98308038711548e-05,0,0,3.78191471099854e-05,0,0,4.97400760650635e-05,0,0,3.98159027099609e-05,0,0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,3.76701354980469e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,3.98457050323486e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0, -0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.57899475097656e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.18126583099365e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.96966934204102e-05,0,0,5.17368316650391e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,3.76701354980469e-05,0,0,4.97102737426758e-05,0,0,3.58521938323975e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.17368316650391e-05,0,0,3.96966934204102e-05,0,0,5.37335872650146e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.57627868652344e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0, -4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,-0.191609859466553,-0.0375165939331055,-0.262696385383606,-0.311736106872559,-0.11002254486084,-0.550766944885254,-0.37101149559021,-0.215781211853027,-0.842490315437317,-0.39016318321228,-0.357339859008789,-1.13924884796143,-0.400905847549438,-0.518028259277344,-1.4237585067749,-0.316760063171387,-0.564519882202148,-1.40882658958435,-0.291321516036987,-0.68581485748291,-1.61336231231689,-0.180817365646362,-0.842272758483887,-1.76015615463257,0.0577131509780884,-1.20243358612061,-1.74704337120056,0.121770799160004,-1.4836311340332,-1.693354845047,0.130922734737396,-1.67521095275879,-1.67214584350586,0.134868830442429,-1.7414722442627,-1.68147778511047,0.0642201751470566, --1.86578369140625,-1.60271978378296,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,-0.225814819335938,-0.0454912185668945,-0.188488304615021,-0.39359188079834,-0.150570869445801,-0.425641238689423,-0.49201226234436,-0.298091888427734,-0.682044148445129,-0.560256242752075,-0.486024856567383,-0.971586585044861,-0.595525979995728,-0.703287124633789,-1.27321183681488,-0.585730314254761,-0.95987606048584,-1.54954767227173,-0.513588666915894,-1.18771553039551,-1.80832123756409,-0.234317183494568,-1.50303554534912,-1.96172881126404,-0.00646138191223145,-1.84406757354736,-2.09678626060486,0.02663254737854,-2.03256320953369,-2.28856253623962,-0.00296741724014282,-2.16547298431396,-2.50919580459595,0.0439199209213257,-2.31338882446289,-2.70964622497559,0.0817958414554596,-2.39454174041748,-2.88429856300354,0.103700652718544,-2.43402290344238,-2.87238311767578,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,-0.0543923377990723,-0.000706672668457031,-0.127423524856567,-0.114013671875,-0.0153236389160156,-0.333367437124252,-0.163974761962891,-0.0471982955932617,-0.613050878047943,-0.191437959671021,-0.0844669342041016,-0.882405757904053,-0.200227975845337,-0.13485050201416,-1.16628456115723, --0.19150972366333,-0.216670989990234,-1.4840897321701,-0.169330835342407,-0.30129337310791,-1.79277145862579,0.0244215726852417,-0.470342636108398,-1.92883276939392,0.177072763442993,-0.801993370056152,-1.89718890190125,0.108518242835999,-1.16217803955078,-1.76676797866821,0.0698229074478149,-1.30698490142822,-1.73686182498932,0.0552539229393005,-1.34169960021973,-1.67717719078064,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,-0.0472736358642578,-0.0144309997558594,-0.194230914115906,-0.0754680633544922,-0.0361995697021484,-0.380075544118881,-0.0850019454956055,-0.0617351531982422,-0.556862115859985,-0.0896539688110352,-0.0887737274169922,-0.731592774391174,-0.0894256830215454,-0.122884750366211,-0.917616307735443,-0.0910212993621826,-0.184228897094727,-1.09879302978516,-0.0910662412643433,-0.262985229492188,-1.25192701816559,-0.0759072601795197,-0.340154647827148,-1.24973940849304,-0.053204745054245,-0.387180328369141,-1.28161907196045,-0.0186425000429153,-0.408485412597656,-1.32726860046387,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0, -4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,-0.0012572705745697,-0.00130271911621094,-0.126984238624573,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,-0.1500563621521,-0.0279359817504883,-0.308829426765442,-0.234278202056885,-0.078948974609375,-0.618171513080597,-0.270505428314209,-0.15317440032959,-0.924089193344116,-0.292381525039673,-0.236490249633789,-1.21874475479126,-0.293023705482483,-0.336909294128418,-1.50917279720306,-0.235147953033447,-0.454517364501953,-1.79917240142822,-0.0925401449203491,-0.545164108276367,-1.79555976390839,0.041150689125061,-0.664514541625977,-1.9452258348465,0.0923169255256653,-0.827494621276855,-1.98712253570557,0.236709475517273,-0.92402172088623,-2.05761909484863,0.167378574609756,-0.948236465454102,-2.11468315124512,0.0619301348924637,-0.988253593444824,-2.13243913650513,-0.00490003824234009,-0.0835258960723877,-0.00347805023193359,-0.00861364603042603,-0.107267141342163,-0.00454425811767578,-0.0237616896629333,-0.162244081497192,-0.0110492706298828, --0.0582708716392517,-0.234804630279541,-0.0125341415405273,-0.0992648601531982,-0.288041591644287,-8.96453857421875e-05,-0.150922060012817,-0.342544317245483,0.024688720703125,-0.00367289781570435,-0.0815329551696777,-0.00444698333740234,-0.00187534093856812,-0.0929834842681885,-0.00470161437988281,-0.000678062438964844,-0.122755289077759,-0.00266075134277344,-0.00369030237197876,-0.152254104614258,8.86917114257813e-05,-0.0123929381370544,-0.190859317779541,0.00412464141845703,-0.0292680859565735,-0.230595111846924,0.00697994232177734,-0.0651837587356567,-0.280665636062622,0.00981712341308594,-0.115180432796478,-0.329299449920654,0.0218029022216797,-0.174213945865631,-0.3749680519104,0.046055793762207,-0.00971722602844238,-0.13528037071228,-0.00773906707763672,-0.0216175317764282,-0.183379173278809,-0.0115108489990234,-0.0475999116897583,-0.238321781158447,-0.010955810546875,-0.0938302278518677,-0.2964928150177,0.00226020812988281,-0.00516283512115479,-0.106551647186279,-0.00505256652832031,-0.00401517748832703,-0.278673648834229,-0.499433517456055,-0.0246355533599854,-0.524666309356689,-0.765868186950684,-0.0840895175933838,-0.631637096405029,-0.948444366455078,-0.0130363702774048,-0.26643180847168,-0.497326850891113,-0.0116651058197021,-0.356209754943848,-0.62484073638916,0.0867289304733276,-0.265513896942139,-0.60698413848877,-0.0294991135597229,-0.308606147766113,-0.51287841796875,-0.012121856212616,-0.30318546295166,-0.506739616394043,-0.226760387420654,-1.07609272003174,-1.06122875213623,-0.366555690765381,-1.1963906288147,-1.27931261062622,-0.499042272567749,-1.68993902206421,-1.28746366500854,-0.453938722610474,-1.96833562850952,-1.12334203720093,-0.264444351196289,-2.16825342178345,-1.32987546920776,-0.229984402656555,-2.37471771240234,-1.40056991577148,-0.335775971412659,-2.71537113189697,-1.52964782714844,-0.24628472328186,-2.82632446289063,-1.73224067687988,-0.168368458747864,-3.08938789367676,-1.82515335083008,-0.105441093444824,-3.27779531478882,-1.87223243713379,-0.0520889312028885,-3.38411474227905, --1.90713882446289,0.0383701622486115,0.0256614685058594,-0.09625244140625,0.0754450559616089,-0.059453010559082,-0.100130081176758,-0.0319951772689819,-0.191770076751709,-0.0238323211669922,-0.128329396247864,-0.401574611663818,0.000431060791015625,-0.454450488090515,-0.519468784332275,0.0609798431396484,-0.706497550010681,-0.750308036804199,-0.13276195526123,-0.810858130455017,-1.07325077056885,-0.166669845581055,-1.13847696781158,-1.42074060440063,-0.198162078857422,-1.23999917507172,-1.71123743057251,-0.260473251342773,-1.34237957000732,-1.80026483535767,-0.230582237243652,-1.31364154815674,-1.91328573226929,-0.232166290283203,-1.19504761695862,-2.08565807342529,-0.227780342102051,-0.846320390701294,-2.63030862808228,-0.520671844482422,-0.666460514068604,-3.11805057525635,-0.659317016601563,-0.510942578315735,-3.65047693252563,-0.754024505615234,-0.415621995925903,-4.08841514587402,-0.85782527923584,-0.292988061904907,-4.25934028625488,-0.95326042175293,-0.192014098167419,-4.38314008712769,-0.989301681518555,-0.0869830995798111,-4.40688562393188,-0.974821090698242,0.0172770917415619,0.342130661010742,-0.0836210250854492,0.0374497771263123,0.279254913330078,-0.0984201431274414,0.0486223697662354,0.199287414550781,-0.130045890808105,0.0713557004928589,0.0419816970825195,-0.190293312072754,-0.287804126739502,-0.226636409759521,-0.261513710021973,-0.412306666374207,-0.480001926422119,-0.36582088470459,-0.551216840744019,-0.745639801025391,-0.434123039245605,-0.828887939453125,-1.07253885269165,-0.526511192321777,-0.884719133377075,-1.42259216308594,-0.645419120788574,-0.933716058731079,-1.68726301193237,-0.848366737365723,-0.917501449584961,-1.96796846389771,-0.952391624450684,-0.809029579162598,-2.24691724777222,-0.931208610534668,-0.632667064666748,-2.60827875137329,-1.1049108505249,-0.537333965301514,-3.13972425460815,-1.09229183197021,-0.523428320884705,-3.64660358428955,-1.09530830383301,-0.423944711685181,-3.94878101348877,-1.28699684143066,-0.294803559780121,-4.12841510772705,-1.45783805847168,-0.175571978092194, --4.24385547637939,-1.47663307189941,-0.081120565533638,-4.27949142456055,-1.48287487030029,-0.00499048829078674,-0.468956470489502,-0.38511848449707,-0.161550283432007,-0.776218414306641,-0.580183029174805,-0.202615261077881,-0.685181617736816,-0.633983135223389,-0.0780410766601563,-0.623445749282837,-0.487706184387207,-0.118839979171753,-0.627437591552734,-0.560897350311279,0.0803967714309692,-0.68785548210144,-0.544532775878906,-0.0257805585861206,-0.551231145858765,-0.389892578125,-0.0124532580375671,-0.569880723953247,-0.382098197937012,-0.240933895111084,-0.927172183990479,-0.696023464202881,-0.274862766265869,-0.942043781280518,-0.842617988586426,-0.346380949020386,-1.3851523399353,-0.838510513305664,-0.570999622344971,-1.48397874832153,-0.743602752685547,-0.501732110977173,-1.41921710968018,-0.906166076660156,-0.419501066207886,-1.51961708068848,-1.10266351699829,-0.471303105354309,-1.73494434356689,-1.33297204971313,-0.332024693489075,-1.98989677429199,-1.54639863967896,-0.214580535888672,-2.24880504608154,-1.62161540985107,-0.136758267879486,-2.44698238372803,-1.66559028625488,-0.0670570731163025,-2.57139492034912,-1.70961046218872,-0.00140044093132019,-0.0269298553466797,0.00767683982849121,-0.043327808380127,-0.0700244903564453,-0.0223839282989502,-0.0558180809020996,-0.0792350769042969,-0.0448708534240723,-0.0208711624145508,-0.055938720703125,0.00378608703613281,-0.0316469669342041,-0.0636849403381348,-0.00759077072143555,-0.0123330354690552,-0.0482540130615234,0.00989389419555664,-0.00706857442855835,-0.0393276214599609,0.0106632709503174,-0.00345849990844727,-0.0317223072052002,0.00932073593139648,-0.0708177089691162,-0.0910115242004395,-0.0697672367095947,-0.0942816734313965,-0.12357234954834,-0.127623796463013,-0.115296125411987,-0.16024112701416,-0.191322565078735,-0.13436484336853,-0.213353157043457,-1.39744281768799,-0.150897026062012,-0.312516212463379,-1.53858542442322,-0.162793636322021,-0.454934120178223,-1.71751761436462,-0.169219493865967,-0.627317428588867,-1.88695049285889,-0.153356313705444, --0.834687232971191,-2.05757784843445,-0.137174844741821,-1.00140571594238,-2.14790439605713,-0.0961930155754089,-1.13878917694092,-2.22620296478271,-0.0489254593849182,-1.23531246185303,-2.30035400390625,0,-0.013392448425293,-0.819142520427704,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.819142401218414,0,-0.013392448425293,-0.819142401218414,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142401218414,0,-0.0133914947509766,-0.81914234161377,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.856617331504822,0,-0.013392448425293,-0.856617450714111,-0.00267815589904785,-0.0138559341430664,-0.870973229408264,-0.00380265712738037,-0.014470100402832,-0.881494700908661,-0.00402677059173584,-0.0151700973510742,-0.891004264354706,-0.00370794534683228,-0.0152177810668945,-0.900032222270966,-0.00271934270858765,-0.0150117874145508,-0.907833993434906,-0.00141873955726624,-0.0150957107543945,-0.913255035877228,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,-0.0350606441497803,-0.00850296020507813,-0.0650041997432709,-0.0525610446929932,-0.0183906555175781,-0.112081825733185,-0.0665860176086426,-0.0351028442382813,-1.27941882610321,-0.083423376083374,-0.0724430084228516,-1.38187122344971,-0.113418102264404,-0.148446083068848,-1.58766031265259,-0.132838606834412,-0.23725700378418,-1.7892963886261,-0.132796764373779,-0.34352970123291,-1.97831428050995,-0.118937492370605,-0.42498779296875,-2.12978744506836,-0.0858460068702698,-0.486367225646973,-2.25141453742981,-0.0443977117538452,-0.535001754760742,-2.35039877891541,-0.00345370173454285,-0.101590156555176,0.0210318565368652,-0.00855386257171631,-0.120849609375, -0.0257501602172852,-0.0175602436065674,-0.151004552841187,0.0307111740112305,-0.0307639837265015,-0.187418460845947,0.032691478729248,-0.0522639751434326,-0.222511291503906,0.0260610580444336,-0.079277515411377,-0.256227016448975,0.00923633575439453,-0.108109474182129,-0.28433895111084,-0.0137114524841309,-0.137265920639038,-0.31202507019043,-0.0527191162109375,-0.16720175743103,-0.340553760528564,-0.0912232398986816,-0.197365045547485,-0.386851787567139,-0.170851230621338,-0.225005865097046,-0.449694156646729,-0.251715183258057,-0.2482590675354,-0.539316177368164,-1.4867787361145,-0.26236891746521,-0.694639205932617,-1.66016960144043,-0.262171030044556,-0.896916389465332,-1.84969663619995,-0.258149027824402,-1.13594532012939,-2.0110182762146,-0.230617523193359,-1.40600967407227,-2.15848350524902,-0.190383791923523,-1.63962173461914,-2.23645067214966,-0.129763185977936,-1.82327556610107,-2.2866153717041,-0.0648622512817383,-1.94391441345215,-2.3443455696106 - } - Normals: *16371 { - a: -0.0023806095123291,-0.0157802700996399,0.348010465502739,-0.615583372599623,0.76050535403192,1.12734140455723,-1.17732834815979,-0.167624950408936,0.0610729455947876,-0.917370349168777,0.0213108062744141,-0.241720706224442,-0.620188847649843,0.354554951190948,-0.778565272688866,-0.322833329439163,-0.150017738342285,-0.335787549614906,-0.0383859872817993,-0.0462505221366882,-0.00214995443820953,-0.706356113525472,0.475472494959831,0.896731331944466,-1.55856412649155,0.205323904752731,0.0824696719646454,-1.64642906188965,0.82726863026619,-0.638531804084778,-0.575641155708581,0.626918375492096,-1.62070709466934,0.221628904342651,0.800714194774628,-0.888761520385742,0.300302386283875,0.861402951180935,0.263546764850616,-0.507314886724977,0.198949813842773,0.896208107471466,-1.59932613372803,0.779962874948978,0.366719380021095,-0.659282082226127,1.52749741077423,-0.768416970968246,0.176068842411041,0.801016718149185,0.00380095839500427,-0.570822583230959,-0.467574059963226,-0.644830673933029,-1.07744087278843,0.688084185123444,-0.367935687303543,-0.269019968228747,1.41890433430672,-0.945029154419899,0.657506316900253,0.557043969631195,-0.921289425343275,-0.592696011928989,-0.136236250400543,-0.56885826587677,-1.6306728720665,0.822660624980927,-0.506124855950475,-0.269019486034026,1.4220075905323,-0.875256758183241,0.694274947047234,0.973081856966019,-1.07792691886425,-0.150935963489133,-0.674664467573166,-1.24951615929604,-1.13353654742241,0.836318850517273,-1.09056869149208,-0.269014756984234,1.42033079266548,-0.924399927258492,0.508575186133385,1.07759028673172,-1.09458713233471,-0.121734144965657,-0.530325144529343,-0.925403833389282,-0.875992015004158,1.06163278222084,-1.12540000677109,-0.269019084468923,1.40497681498528,-1.04974956810474,0.65699814260006,0.889679104089737,-1.31069335341454,-0.121733866061106,-0.524691849946976,-0.992355406284332,-0.786892170337596,0.971013844013214,-1.27556014060974,1.32694438077507e-05,1.09109568595886,-1.66387438774109,0.426069259643555,0.299606960266829,-1.76485776901245, --0.129888743714673,-0.265393525362015,-1.59856820106506,-0.576962461117764,0.481340758502483,-1.70399063825607,0.426372540480632,-0.481594771146774,-1.3637872338295,0.506949675566691,-0.409513503313065,-1.40421658754349,-0.42726277316,-0.34135228395462,-1.30450743436813,-0.399322524666786,-0.275026202201843,-1.34702232480049,0.134061552584171,-0.392184108495712,-1.68931633234024,-0.443712701443691,-0.190492868423462,-1.50300002098083,0.547586327167592,-0.112016439437866,-1.40168768167496,0.718781091272831,-0.259743809700012,-0.670371577143669,0.879181131720543,-0.0604080855846405,-0.454270631074905,0.633455917239189,-0.400049209594727,-0.683813720941544,0.799255348742008,-0.123810887336731,-0.510651677846909,0.797981113195419,0.178824812173843,-0.0736744999885559,0.846123605966568,-0.248456180095673,-0.399547725915909,0.953029692173004,-0.0774477124214172,-0.237162411212921,0.270147509872913,0.104474440217018,0.0290650725364685,0.129883383754749,0.275166600942612,0.097502589225769,0.418422698974609,0.444854153320193,0.122735261917114,0.395864278078079,0.278343573212624,0.115686416625977,0.133416958153248,0.275429040193558,0.132334470748901,0.513252630829811,0.501636138185859,0.412847876548767,0.536915063858032,0.424341186881065,0.494905143976212,0.363979071378708,0.579198077321053,0.771891474723816,0.00378215312957764,0.28953961096704,0.0507570505142212,0.0064522922039032,0.287121176719666,0.0896815061569214,-0.152887105941772,0.190770626068115,-0.0498448610305786,0.091863751411438,-0.0632437467575073,0.108185037970543,0.00374108552932739,0.0113824605941772,0.342915132641792,-0.102462768554688,0.154329597949982,0.165254205465317,-0.0432275533676147,0.0208858847618103,-0.934622466564178,0.354188352823257,-0.284343689680099,-0.685739398002625,0.216016322374344,0.0464720726013184,-0.649285405874252,0.655077745206654,0.0537209510803223,-1.34412303566933,0.231876760721207,-0.187000393867493,-1.18462210893631,1.18011745810509,-0.0717452168464661,-0.494370073080063,1.39969199895859,-0.160966902971268,-0.769550561904907,1.676813185215, -0.743380591273308,-0.471984505653381,1.26643592119217,0.353687793016434,-0.502281352877617,1.45826780796051,0.619927376508713,0.343577474355698,1.47777664661407,0.609252862632275,0.552427679300308,1.45276761054993,0.572744697332382,0.634712889790535,1.01732793450356,0.520737081766129,0.979505196213722,1.06515198945999,0.334491789340973,1.43530184030533,0.504610204137862,-0.0878519415855408,1.45368450880051,0.441000690414712,0.0436953902244568,1.75534737110138,0.509558640420437,0.0442552268505096,1.76268619298935,0.47347875405103,-0.0878589749336243,1.45367878675461,0.485230602324009,0.13617616891861,1.63507807254791,0.43271055072546,-0.317253440618515,1.57460993528366,0.2561996281147,0.0752648413181305,1.74791187047958,-0.330393731594086,0.284968063235283,1.44268977642059,-0.400861322879791,0.0541502237319946,0.990633308887482,-0.816752644255757,-0.1031129732728,1.5017169713974,-0.904319207184017,0.494568809866905,0.798279404640198,-0.369919389486313,0.043042778968811,0.329632878303528,0.112257540225983,1.32367563247681,0.797475554049015,0.0275280075147748,1.02575971186161,0.531711280345917,-0.70800742181018,-0.149923473596573,0.342880964279175,-0.862494349479675,1.51250350475311,0.550229221582413,-0.106852769851685,1.51424986124039,0.661172421649098,0.210867524147034,0.270405918359756,0.0205724239349365,-0.149670094251633,1.31165584921837,0.566320791840553,-0.0518879592418671,1.43695664405823,0.813448712229729,-0.0364850759506226,1.33112466335297,0.741564694792032,-0.0963050723075867,-0.164766132831573,0.836212128400803,0.287138223648071,0.248342484235764,1.15605020523071,0.300146013498306,0.514802902936935,1.30324620008469,0.0755124688148499,-0.257915884256363,1.0209476351738,-0.101438939571381,-0.337705329060555,1.35832947492599,-0.701419308781624,-0.610818356275558,0.729766111588106,-0.583535470329803,-0.527451723814011,1.01520216464996,-0.959022700786591,-1.31528747081757,0.620556890964508,-0.715229123830795,-1.38387796282768,0.369147629942745,-0.59236504137516,-0.743314102292061,1.08013838529587,-0.699644278734922, --0.810410633683205,0.780245684087276,-0.890222080051899,-1.29606005549431,0.790877610445023,-1.78905630111694,-0.565645277500153,0.497511103749275,-1.60070586204529,0.368760600686073,1.13845610618591,-1.45888435840607,0.259818032383919,1.26732450723648,-1.16787052154541,1.11466726660728,1.05322301387787,-1.32064819335938,0.895656511187553,0.986565589904785,-0.948097854852676,1.13943621516228,0.547324258834124,-0.907537273386197,1.39066016674042,0.137005511671305,-1.08855850994587,1.25641888380051,0.0470468699932098,-0.71051587164402,1.33768364787102,-0.420409651473165,-0.755806058645248,1.37699741125107,-0.076264500617981,-0.641917198896408,1.22243177890778,-0.0158034935593605,-0.540498673915863,0.980527140200138,-0.257034227252007,0.157436788082123,0.511079624295235,-0.29313462972641,0.0765446424484253,0.0263279974460602,-0.615075081586838,0.112842559814453,0.0880639255046844,-0.292535439133644,-0.169565796852112,-0.420462340116501,-0.933920055627823,0.131464838981628,-0.159940779209137,-0.687072016298771,-0.758193776011467,-0.452461928129196,-1.02385780215263,-0.6919641849573,-0.492860049009323,-0.788925498723984,-1.02930837869644,-0.563067018985748,-0.467335626482964,-0.719092130661011,-0.56203505396843,-0.799772411584854,-0.490419581532478,-0.503814667463303,-0.867717146873474,-0.681325536221266,-0.449130266904831,-1.04802873730659,-0.60516719520092,-0.409998536109924,-0.842471152544022,-1.04522904008627,0.515434563159943,-0.74622018635273,-1.12598320841789,0.81380321085453,-0.520126104354858,-1.18497577309608,0.245751947164536,-0.722389109432697,-1.2650591135025,1.29232922196388,-0.467237956821918,-1.22688782215118,1.21814945340157,-0.373078346252441,-0.295875117182732,1.57776427268982,-0.816719340160489,-0.0732249083240504,1.6001051068306,-0.910960234701633,-0.225791402161121,1.50343376398087,-0.967466197907925,-0.120401777327061,1.49894630908966,-0.860688079148531,-0.0587398856878281,1.56787919998169,-0.907247386872768,0.203834062442183,1.83684557676315,-0.539664141833782,0.222719363868237,1.55866068601608, --0.876884199678898,0.717353314161301,0.956539869308472,-0.979727223515511,0.753544248640537,0.51317685842514,-0.893653035163879,0.791360281407833,0.266413599252701,-1.16023689508438,0.507676756009459,0.104422450065613,-0.896094590425491,0.533544685518766,0.175532519817352,-0.959924876689911,-0.0839923524401636,-0.330105364322662,-1.09230217337608,-0.0937649163255969,-0.379453420639038,-1.2880591750145,-0.175342932343483,-0.278127789497375,-1.24446430802345,0.0839898160554915,-0.330106139183044,-1.09230053424835,0.102113215001664,-0.36496901512146,-1.30725663900375,-0.0486114605046897,-0.418777048587799,-1.1936329305172,-0.0463057362578363,-0.253663659095764,-1.27373346686363,-0.802365683019161,0.284226417541504,-1.15019172430038,-0.803807280957699,0.880031168460846,-1.0459763109684,-0.864582171394631,0.277230888605118,-1.15522995591164,-0.344773713672136,1.81323373317719,-0.510007742792368,-0.450613979250193,1.74461734294891,-0.560142945498228,-0.0423935130238533,1.59845185279846,-0.856573842465878,0.0732182818149916,1.60632658004761,-0.746531844139099,-0.0889695025980473,1.85602205991745,-0.479926105588675,0.237678296864033,1.82740050554276,-0.600071854889393,0.296072952449322,1.57776749134064,-0.762434111908078,0.434357404708862,1.46711051464081,-0.925731517374516,0.296560071408749,1.4885116815567,-0.850486101116985,0.844171740114689,1.21463215351105,-0.982914477586746,1.09518831968307,0.25782185792923,-1.06462842226028,1.08989572525024,0.279971718788147,-1.10440704226494,0.666346520185471,0.0197108387947083,-0.726867988705635,1.09840649366379,-0.23977118730545,-0.86469492316246,0.534277237951756,-0.537521004676819,-0.673571810126305,0.234937473711909,-0.502230882644653,-0.954529881477356,0.105848483741283,-0.406888961791992,-0.896691106259823,0.726969130337238,-0.537521600723267,-0.673572443425655,0.747607119381428,-0.511571407318115,-0.683106161653996,0.784294687211514,-0.647800832986832,-0.481321163475513,0.772366419434547,-0.499511331319809,-0.402461051940918,-0.241721868515015,0.153131723403931,-0.85104912519455, --0.140358865261078,1.06402254104614,-0.819302633404732,-0.121373534202576,-0.0227613151073456,-0.877445697784424,0.553961098194122,1.29609194397926,-0.521419249475002,0.340885937213898,1.41368919610977,-0.645646825432777,0.40255081653595,1.52442395687103,-0.834954231977463,0.846627157944113,1.33028218150139,-0.586485609412193,0.65430873632431,1.25344905257225,-0.759856253862381,1.04465728998184,1.02661861479282,-0.67310057580471,1.07870928943157,1.24938970804214,-0.301343150436878,1.07603441178799,1.41606143116951,-0.552786737680435,1.06659835577011,1.29605397582054,-0.629795759916306,1.74335986375809,0.81858491897583,-0.396188132464886,1.62487381696701,-0.0415969491004944,-0.260185867547989,1.72397673130035,0.0763657689094543,-0.177047535777092,1.3984215259552,-0.584622383117676,-0.351555682718754,1.33408665657043,-0.68147674202919,0.370463788509369,0.603210970759392,-0.637067556381226,0.49739084392786,0.955278090950722,-0.721823453903198,-0.154217027127743,0.789399452507496,-0.9292903393507,-0.505536004900932,1.01920104771852,-1.38167023658752,-0.0835541114211082,0.91313774138689,-0.844323009252548,0.50907925888896,0.753913179039955,-0.837333410978317,0.410219803452492,0.846943221986294,-1.38619810342789,-0.0660829469561577,0.0743201971054077,-0.950145900249481,0.054653137922287,-0.121611833572388,0.72860760986805,0.429282277822495,-0.296455800533295,-0.0587077736854553,0.498456999659538,0.357551276683807,1.2253891825676,0.279087722301483,0.492658525705338,1.06143054366112,0.308437615633011,0.487942889332771,0.785010293126106,-0.0595773458480835,0.401613303475642,0.0154408812522888,-0.698723256587982,0.700290888547897,0.484472334384918,-0.19684624671936,0.660003438591957,-0.189383327960968,-1.16607603430748,0.495144888758659,-0.0192223191261292,-0.837437868118286,0.697085559368134,-0.355393528938293,-1.05197980999947,0.755500376224518,0.0323053002357483,-0.887638360261917,1.11364126205444,-0.486577779054642,-1.1258297264576,0.919652938842773,-1.37320071458817,-0.952412277460098,0.950353026390076,-1.48892956972122, --0.830050706863403,0.296697731595486,-1.61265796422958,-0.828476719558239,0.340427079237998,-1.81485092639923,-0.351866476237774,0.730292856693268,-0.778546929359436,-0.0811010003089905,0.40162534399542,-1.77341479063034,-0.702797949314117,-0.0923813870176673,-1.88280153274536,-0.356053464114666,0.0364112434908748,-1.29897433519363,0.0535184741020203,0.0921118790283799,-1.50602370500565,0.332013189792633,-0.0884512728080153,-1.65186876058578,-0.652724646031857,-0.471184220165014,-1.76891124248505,-0.670301496982574,-1.26236891746521,-0.590053826570511,-0.0381437540054321,-0.719027630053461,-0.704552978277206,-0.549610696732998,-0.642687175888568,-1.6046729683876,-0.571363650262356,-0.73374354839325,-0.44449383020401,-1.15279269218445,-0.809911102056503,-0.121407806873322,-0.755316466093063,-0.427979352762463,-1.05279064178467,-1.20617058873177,-0.225521430373192,-1.04304204881191,-1.33294683694839,-0.340745434165001,-1.43343335390091,-1.22445583343506,-0.264912441372871,-0.945786967873573,-1.33933165669441,-0.982231430709362,-0.548813477158546,-0.719471246004105,-0.728815585374832,-1.49401086568832,-0.948339134454727,-0.878986805677414,-0.962375536561012,-1.28212979435921,-1.06657728552818,-1.45650058984756,0.0877910554409027,-1.06094071269035,-1.05228570103645,0.237760841846466,-1.21987575292587,-0.954117834568024,0.0821335911750793,-1.18530839681625,-1.20639771223068,-1.06151884794235,-1.38814973831177,-0.726920425891876,1.13491839170456,-1.10800752043724,-1.02471634745598,0.370484858751297,-1.29697382450104,-1.25155115127563,-0.1878921687603,-1.4832575917244,-0.919044375419617,0.673184290528297,-1.49889606237411,-0.637453101575375,-0.821719110012054,-1.4710009098053,-0.750434191897511,-0.69642074406147,-1.2858738899231,-0.472789973020554,-0.971137374639511,-1.31129890680313,-0.418426424264908,-1.03790044784546,-1.32732945680618,-0.845136912539601,-0.813693568110466,-1.37691521644592,-0.868316724896431,-0.79875722527504,-1.32280290126801,-0.558988451957703,-0.614797696471214,-1.2840576171875,-0.545752435922623,-0.775778591632843, --1.11669379472733,-0.534994810819626,-1.03140598535538,-1.17508214712143,0.827158331871033,-1.16549405455589,-0.894914552569389,0.580514177680016,-1.00965728238225,-0.829861670732498,1.62634873390198,-0.696655362844467,-0.830603420734406,1.38165229558945,-1.11485260725021,-0.977196499705315,1.2569982111454,-0.649149037897587,-0.981863886117935,1.23357537388802,-0.808263093233109,-0.803706526756287,1.67491710186005,-0.444571942090988,-0.775785386562347,1.68134409189224,-0.40664529055357,-0.983533173799515,1.68617564439774,0.0394919849932194,-0.327098963782191,1.89419323205948,0.245954208076,-0.478877238929272,1.88951122760773,0.0820159427821636,-0.906720340251923,1.4784340262413,-0.418921336531639,-1.40519714355469,0.927802681922913,-0.934150218963623,-0.547717832028866,1.86240136623383,-0.00378919392824173,-0.69316079467535,0.187105417251587,-1.03696715831757,-0.575827546417713,0.573448032140732,-0.608200611546636,0.690897023305297,0.315052628517151,-0.954800128936768,0.183532901108265,0.823383554816246,0.417519092559814,0.184700347483158,0.829444631934166,0.901920046657324,0.39201708137989,0.779818773269653,1.33813965320587,0.98917680233717,1.3541162610054,-0.170305090025067,0.75986672192812,0.671716392040253,-0.545597705990076,0.564215691760182,1.67668080329895,0.658905446529388,0.729451052844524,1.70525199174881,0.286651162430644,0.702544525265694,1.73078364133835,0.457958117127419,0.596256361993776,1.67401570081711,0.663255840539932,0.344773926102201,1.93609684705734,0.0411454793065786,0.450610881671309,1.74461299180984,-0.56015532463789,0.367787800729275,1.94582748413086,-0.0962763819843531,0.289740719162504,1.95469528436661,0.0486551951617002,0.346520926630522,1.74974083900452,-0.822795838117599,0.319237407124067,1.78733664751053,-0.7403244972229,0.41099131878523,1.43213939666748,-0.734650537371635,0.306786447763443,1.75166493654251,-0.511601652950048,0.405627872794867,0.685226738452911,-1.41074270009995,0.0579869414499203,0.0114344954490662,-0.0874009132385254,0.0432001032855371,0.0198035836219788,-0.0395279824733734, --0.0671056024730206,-0.0802446603775024,0.30470234900713,-0.00369623303413391,0.00479245185852051,-0.080893736332655,-0.0264828056097031,0.0576838850975037,-0.317943271249533,-0.0720800422132015,-0.0744706392288208,0.248031482100487,0.0818341225385666,0.0370075106620789,-0.0888159573078156,0.0952276214957237,0.125438570976257,-0.543472781777382,0.155361194163561,-0.161461770534515,-0.476056568324566,0.0649666674435139,-0.109923839569092,-0.737196773290634,0.0423223301768303,0.394740283489227,0.81148562207818,0.095003068447113,0.0934145450592041,0.369599863886833,0.233735553920269,0.693124741315842,0.878727093338966,0.472392857074738,0.291512787342072,-0.285556465387344,1.13790571689606,0.0557072758674622,-0.60716687142849,1.00645393133163,0.0273334980010986,-1.01884686946869,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619, -1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511, --0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091, -0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109, -0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418, --0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052, --0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262, --0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759, --0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896, --0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369, --1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663, --0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374, --0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843, --0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012, -0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204, --0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292, --1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954, -0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048, --0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822, --0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742, --0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147, --0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429, --1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914, --0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966, -0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852, --1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875, --0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907, --0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016, --0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671, --0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264, -0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951, -0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422, -0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678, --0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859, --0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851, --1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171, --1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681, --1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991, -0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851, --0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702, --0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797, --1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491, --0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838, --1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718, --1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962, --1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835, --1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509, --0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273, --1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524, -0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249, --1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368, --0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548, --1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744, -0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844, --0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636, --0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923, --0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422, --1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201, --0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337, -0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738, -0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305, -0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382, -0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657, -1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039, -1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183, --0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169, -0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471, --1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435, -1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319, --0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281, --0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928, --1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443, --0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663, --1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508, --0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357, --0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867, --0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212, --0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553, --0.324582934379578,0.0650625359266996,-1.07799533009529,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281, -0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841, --0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372, --0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522, -0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574, --1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107, -0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556, --0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212, --0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205, -0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789, --0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519, --0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455, -0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823, -0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785, -0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976, --0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349, --0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877, -1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827, --0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452, --0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125, --0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704, --0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802, -0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101, -0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797, --0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693, --0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689, --1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417, --0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336, -0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295, --1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052, --0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597, --0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458, -0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978, -1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697, -0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422, -0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569, -0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992, --1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653, -0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112, -0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114, --0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076, --1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955, -1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078, --1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193, --0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696, -0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956, --0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905, -0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852, -0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687, -0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846, -0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997, --0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446, --1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964, -0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107, --1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279, --0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877, --0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538, --0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596, -0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538, --1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899, --0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 - } - } - Geometry: 2807563817920, "Geometry::Mouth_Ape_Shape", "Shape" { - Version: 100 - Indexes: *5245 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, -3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, -3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, -4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, -4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, -5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, -5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, -5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283, -6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742, -6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407, -7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834, -7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530, -8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *15735 { - a: -0.00131678581237793,-1.16456651687622,-0.784509181976318,-0.00131679326295853,-0.841342926025391,-0.708266139030457,-0.00131654739379883,-1.16456651687622,-0.784509181976318,-0.00131702423095703,-1.3824291229248,-0.789038896560669,-0.00131679326295853,-1.75268125534058,-0.897329330444336,-0.00131690502166748,-1.3824291229248,-0.789038896560669,-0.00131690502166748,-1.15439796447754,-0.727817058563232,-0.00131679326295853,-0.869798183441162,-0.631220579147339,-0.00131702423095703,-1.15439796447754,-0.727817058563232,-0.00131672620773315,-1.41605377197266,-0.687521457672119,-0.00131679326295853,-1.74359083175659,-0.788301944732666,-0.00131678581237793,-1.41609668731689,-0.687527656555176,-0.00131702423095703,-1.18601369857788,-0.579035043716431,-0.00131679326295853,-1.0502986907959,-0.348471641540527,-0.00131690502166748,-1.18601369857788,-0.579035043716431,-0.00131679326295853,-1.77493000030518,-0.765574932098389,-0.00131678581237793,-1.34931707382202,-0.537739038467407,-0.00131679326295853,-1.36733675003052,-0.324453353881836,-0.00131678581237793,-1.34931707382202,-0.537739038467407,-0.00131679326295853,-1.85173749923706,-0.768746376037598,-0.00131654739379883,-1.68018770217896,-0.617739200592041,-0.00131679326295853,-1.71908855438232,-0.442517757415771,-0.00131678581237793,-1.68018770217896,-0.617739200592041,-0.00131678581237793,-2.01742315292358,-0.777433395385742,-0.00131678581237793,-2.00531148910522,-0.7269287109375,-0.00131678581237793,-2.03261232376099,-0.606319427490234,-0.00131678581237793,-2.00531148910522,-0.7269287109375,-0.00131679326295853,-2.33714246749878,-0.815988540649414,-0.00131702423095703,-2.34195995330811,-0.796266078948975,-0.00131680071353912,-2.36750936508179,-0.683027267456055,-0.00131690502166748,-2.34195995330811,-0.796266078948975,-0.00131679326295853,-2.52294158935547,-0.807780265808105,-0.00131690502166748,-2.51532554626465,-0.778409957885742,-0.00131680816411972,-2.5394549369812,-0.715933799743652,-0.00131690502166748,-2.51532554626465,-0.778409957885742,-0.00131680443882942, --2.67915344238281,-0.815197944641113,-0.00131690502166748,-2.59074544906616,-0.770546913146973,-0.00131678953766823,-2.66885757446289,-0.76244068145752,-0.00131678581237793,-2.59074544906616,-0.770546913146973,-0.00131690502166748,-1.49801063537598,-0.833045482635498,-0.00131672620773315,-1.51643466949463,-0.759972095489502,-0.00131702423095703,-1.49475240707397,-0.832326889038086,-0.00131672620773315,-1.51545238494873,-0.759735107421875,-0.00131679326295853,-1.74598407745361,-0.827236652374268,-0.00131672620773315,-1.65232086181641,-0.873010635375977,-0.00131690502166748,-1.32848930358887,-0.770540952682495,-0.00131678581237793,-1.15949296951294,-0.770950794219971,-0.00131702423095703,-1.05891799926758,-0.69649076461792,-0.00131702423095703,-1.06403493881226,-0.761947154998779,-0.00131690502166748,-1.05885314941406,-0.748164892196655,-0.00131678581237793,-0.929559230804443,-0.650561332702637,-0.00131690502166748,-0.927359104156494,-0.728891134262085,-0.00131690502166748,-0.921761035919189,-0.714740991592407,-0.00131681561470032,-0.872917175292969,-0.632207632064819,-0.00131679326295853,-0.843522548675537,-0.695952177047729,-0.00131681561470032,-0.846630573272705,-0.709540843963623,-0.00131681561470032,-0.848115921020508,-0.697082877159119,-0.00131678581237793,-0.872917175292969,-0.632207632064819,-0.00131681561470032,-0.846630573272705,-0.709540843963623,-0.00131684541702271,-0.848115921020508,-0.697082877159119,-0.00131672620773315,-0.895091533660889,-0.638898134231567,-0.00131678581237793,-0.881632804870605,-0.717839479446411,-0.00131690502166748,-0.879186630249023,-0.704369783401489,-0.00131690502166748,-1.05891799926758,-0.69649076461792,-0.00131654739379883,-1.15949296951294,-0.770950794219971,-0.00131690502166748,-1.06403493881226,-0.761947154998779,-0.00131690502166748,-1.05885314941406,-0.748164892196655,-0.00131690502166748,-1.21893358230591,-0.743726015090942,-0.00131690502166748,-1.47878408432007,-0.781710624694824,-0.00131678581237793,-1.63901281356812,-0.791642665863037,-0.00131679326295853,-1.74595069885254, --0.857303619384766,-0.00131678581237793,-1.64147853851318,-0.829009056091309,-0.00131690502166748,-1.48099613189697,-0.782209873199463,-0.00131678581237793,-1.37294483184814,-0.73256778717041,-0.00131678581237793,-1.33004903793335,-0.659983396530151,-0.00131678581237793,-1.32172822952271,-0.71227765083313,-0.00131702423095703,-1.15933275222778,-0.652544975280762,-0.00131690502166748,-1.13200950622559,-0.496951818466187,-0.00131690502166748,-1.08000326156616,-0.596647024154663,-0.00131690502166748,-1.06493234634399,-0.377222537994385,-0.00131690502166748,-0.975296020507813,-0.514616966247559,-0.00131681561470032,-1.05090808868408,-0.347684621810913,-0.00131679326295853,-0.93989896774292,-0.486225128173828,-0.00131678581237793,-0.941308498382568,-0.487429618835449,-0.00131681561470032,-1.05090808868408,-0.347684621810913,-0.00131681561470032,-0.941308498382568,-0.487429618835449,-0.00131672620773315,-1.05398368835449,-0.35332989692688,-0.00131672620773315,-0.952577114105225,-0.496379613876343,-0.00131690502166748,-1.13200950622559,-0.496951818466187,-0.00131690502166748,-1.15933275222778,-0.652544975280762,-0.00131690502166748,-1.08000326156616,-0.596647024154663,-0.00131690502166748,-1.23199605941772,-0.619147062301636,-0.00131690502166748,-1.21654081344604,-0.679515361785889,-0.00131678581237793,-1.66875886917114,-0.737847805023193,-0.00131679326295853,-1.75414419174194,-0.77415657043457,-0.00131684541702271,-1.62645101547241,-0.748936653137207,-0.00131678581237793,-1.63843536376953,-0.739275932312012,-0.00131678581237793,-1.66875886917114,-0.737847805023193,-0.00131684541702271,-1.62645149230957,-0.748936653137207,-0.00131678581237793,-1.63843488693237,-0.739275932312012,-0.00131702423095703,-1.42042207717896,-0.655091285705566,-0.00131690502166748,-1.35837650299072,-0.644246816635132,-0.00131690502166748,-1.24618101119995,-0.541110515594482,-0.00131678581237793,-1.35570478439331,-0.440496683120728,-0.00131690502166748,-1.22494649887085,-0.445680618286133,-0.00131678581237793,-1.3733606338501,-0.301380157470703,-0.00131690502166748, --1.20432138442993,-0.308650493621826,-0.00131678581237793,-1.3707332611084,-0.309600353240967,-0.00131679326295853,-1.19752788543701,-0.30553126335144,-0.00131684541702271,-1.19925832748413,-0.297976970672607,-0.00131678581237793,-1.3707332611084,-0.309600353240967,-0.00131681561470032,-1.19925832748413,-0.297976970672607,-0.00131678581237793,-1.37629795074463,-0.280099868774414,-0.00131678581237793,-1.20171499252319,-0.286249399185181,-0.00131678581237793,-1.35570478439331,-0.440496683120728,-0.00131690502166748,-1.24618101119995,-0.541110515594482,-0.00131702423095703,-1.22494649887085,-0.445680618286133,-0.00131678581237793,-1.36206007003784,-0.593200206756592,-0.00131702423095703,-1.2758207321167,-0.591330766677856,-0.00131678581237793,-1.79242515563965,-0.754674434661865,-0.00131679326295853,-1.80614042282104,-0.765493392944336,-0.00131678581237793,-1.71988964080811,-0.745811939239502,-0.00131678581237793,-1.79242515563965,-0.754674434661865,-0.00131672620773315,-1.71988964080811,-0.745811939239502,-0.00131690502166748,-1.67177104949951,-0.711940765380859,-0.00131690502166748,-1.53006505966187,-0.682493686676025,-0.00131654739379883,-1.50491046905518,-0.56794548034668,-0.00131654739379883,-1.69622039794922,-0.542753219604492,-0.00131654739379883,-1.52115631103516,-0.478992938995361,-0.00131654739379883,-1.72589302062988,-0.427042007446289,-0.00131678581237793,-1.55193948745728,-0.34783935546875,-0.00131678581237793,-1.72321176528931,-0.424537658691406,-0.00131679326295853,-1.54547691345215,-0.372405052185059,-0.00131678581237793,-1.54972839355469,-0.353837490081787,-0.00131678581237793,-1.72321176528931,-0.424537658691406,-0.00131678581237793,-1.54972839355469,-0.353837490081787,-0.00131702423095703,-1.73331594467163,-0.394484996795654,-0.00131690502166748,-1.55831575393677,-0.319913387298584,-0.00131678581237793,-1.69622039794922,-0.542753219604492,-0.00131678581237793,-1.50491046905518,-0.56794548034668,-0.00131678581237793,-1.52115631103516,-0.478992938995361,-0.00131678581237793,-1.67281818389893,-0.664607524871826, --0.00131654739379883,-1.50479221343994,-0.621973037719727,-0.00131684541702271,-2.01315116882324,-0.761335849761963,-0.00131678953766823,-1.91560125350952,-0.770160675048828,-0.00131672620773315,-1.8869743347168,-0.755993843078613,-0.00131678581237793,-2.01315116882324,-0.761335849761963,-0.00131678581237793,-1.88697481155396,-0.755993843078613,-0.00131690502166748,-2.00191497802734,-0.744923114776611,-0.00131690502166748,-1.8300986289978,-0.728931427001953,-0.00131678581237793,-1.84229564666748,-0.673271656036377,-0.00131678581237793,-2.01622724533081,-0.678043842315674,-0.00131678581237793,-1.85581874847412,-0.613356113433838,-0.00131690502166748,-2.03695964813232,-0.598142623901367,-0.00131678581237793,-1.88110065460205,-0.517839908599854,-0.00131684541702271,-2.03429985046387,-0.598894119262695,-0.00131679326295853,-1.87527942657471,-0.528022289276123,-0.00131678581237793,-1.87816333770752,-0.515514850616455,-0.00131684541702271,-2.03430080413818,-0.598894119262695,-0.00131672620773315,-1.87816333770752,-0.515514850616455,-0.00131690502166748,-2.04064464569092,-0.58193826675415,-0.00131690502166748,-1.88685750961304,-0.492636680603027,-0.00131654739379883,-2.01622724533081,-0.678043842315674,-0.00131678581237793,-1.84229564666748,-0.673271656036377,-0.00131678581237793,-1.8558177947998,-0.613356113433838,-0.00131690502166748,-2.00072860717773,-0.750216484069824,-0.00131678581237793,-1.83487224578857,-0.708025455474854,-0.00131681561470032,-2.34025049209595,-0.802304267883301,-0.00131680071353912,-2.17678594589233,-0.798309803009033,-0.00131684541702271,-2.18042802810669,-0.782315254211426,-0.00131681561470032,-2.34025049209595,-0.802304267883301,-0.00131684541702271,-2.18042802810669,-0.782315254211426,-0.00131690502166748,-2.34354066848755,-0.793880939483643,-0.00131690502166748,-2.18414545059204,-0.771455764770508,-0.00131690502166748,-2.1832914352417,-0.771186351776123,-0.00131702423095703,-2.35224580764771,-0.749790191650391,-0.00131690502166748,-2.19373655319214,-0.723992347717285,-0.00131702423095703,-2.37012577056885, --0.672891139984131,-0.00131690502166748,-2.21286725997925,-0.645771980285645,-0.00131684541702271,-2.36980581283569,-0.672952175140381,-0.00131680071353912,-2.20956659317017,-0.654767036437988,-0.00131681561470032,-2.21140336990356,-0.646729946136475,-0.00131681561470032,-2.36980581283569,-0.672952175140381,-0.00131684541702271,-2.21140336990356,-0.646729946136475,-0.00131690502166748,-2.37415266036987,-0.655291080474854,-0.00131702423095703,-2.21648740768433,-0.630029201507568,-0.00131690502166748,-2.35224580764771,-0.749790191650391,-0.00131690502166748,-2.1832914352417,-0.771186351776123,-0.00131714344024658,-2.19373655319214,-0.723992347717285,-0.00131690502166748,-2.33934307098389,-0.812191963195801,-0.00131690502166748,-2.18010807037354,-0.789185047149658,-0.00131681561470032,-2.52335739135742,-0.803042411804199,-0.00131678581237793,-2.44193410873413,-0.813781261444092,-0.00131681561470032,-2.44399738311768,-0.804670333862305,-0.00131684541702271,-2.52335739135742,-0.803042411804199,-0.00131681561470032,-2.44399738311768,-0.804670333862305,-0.00131666660308838,-2.5218620300293,-0.795303344726563,-0.00131678581237793,-2.44684886932373,-0.797529697418213,-0.00131690502166748,-2.44711637496948,-0.792348861694336,-0.00131690502166748,-2.52065563201904,-0.749740600585938,-0.00131690502166748,-2.45559597015381,-0.753960609436035,-0.00131690502166748,-2.53476524353027,-0.70601749420166,-0.00131690502166748,-2.46993064880371,-0.691664695739746,-0.00131681561470032,-2.54082155227661,-0.708598136901855,-0.00131678208708763,-2.46774053573608,-0.700729370117188,-0.00131684541702271,-2.46989822387695,-0.691346168518066,-0.00131681561470032,-2.54082155227661,-0.708598136901855,-0.00131681561470032,-2.46989822387695,-0.691346168518066,-0.00131672620773315,-2.54207134246826,-0.696316719055176,-0.00131672620773315,-2.47345495223999,-0.676225662231445,-0.00131702423095703,-2.52065563201904,-0.749740600585938,-0.00131702423095703,-2.44711637496948,-0.792348861694336,-0.00131690502166748,-2.45559597015381,-0.753960609436035,-0.00131690502166748, --2.51595497131348,-0.791614532470703,-0.00131690502166748,-2.44480895996094,-0.806534767150879,-0.00131681561470032,-2.67549085617065,-0.812098503112793,-0.00131680071353912,-2.61196804046631,-0.814131736755371,-0.00131681561470032,-2.60999298095703,-0.810941696166992,-0.00131681561470032,-2.67549085617065,-0.812098503112793,-0.00131681561470032,-2.60999298095703,-0.810941696166992,-0.00131678581237793,-2.65206527709961,-0.79787540435791,-0.00131672620773315,-2.59630966186523,-0.79991340637207,-0.00131702423095703,-2.56319761276245,-0.773471832275391,-0.00131690502166748,-2.59664058685303,-0.754376411437988,-0.00131702423095703,-2.56439447402954,-0.750367164611816,-0.00131678581237793,-2.62025785446167,-0.736787796020508,-0.00131678581237793,-2.58714437484741,-0.719856262207031,-0.00131681561470032,-2.66714811325073,-0.758730888366699,-0.00131679698824883,-2.61179733276367,-0.736563682556152,-0.00131681561470032,-2.61175489425659,-0.731293678283691,-0.00131678581237793,-2.66714811325073,-0.758730888366699,-0.00131681561470032,-2.61175489425659,-0.731293678283691,-0.00131678581237793,-2.65544128417969,-0.745166778564453,-0.00131672620773315,-2.60757827758789,-0.719038963317871,-0.00131678581237793,-2.59664011001587,-0.754376411437988,-0.00131690502166748,-2.56319761276245,-0.773471832275391,-0.00131690502166748,-2.56439447402954,-0.750367164611816,-0.00131690502166748,-2.6104941368103,-0.780324935913086,-0.00131678581237793,-2.57227659225464,-0.786821365356445,-0.00131678208708763,-2.69471645355225,-0.793301582336426,-0.00131681561470032,-2.69147920608521,-0.790179252624512,-0.00131672620773315,-2.65544128417969,-0.745166778564453,-0.00131672620773315,-2.67101430892944,-0.775537490844727,-0.00131678581237793,-2.69147968292236,-0.790179252624512,-0.00131678581237793,-2.62025785446167,-0.736787796020508,-0.00131678581237793,-2.62725257873535,-0.760293960571289,-0.00131690502166748,-0.927359104156494,-0.728891134262085,-0.00131690502166748,-0.929559230804443,-0.650561332702637,-0.00131690502166748,-0.921761035919189,-0.714740991592407, --0.00131702423095703,-1.32887411117554,-0.770617008209229,-0.00131678581237793,-1.06493234634399,-0.377222537994385,-0.00131678581237793,-0.975296020507813,-0.514616966247559,-0.00131678581237793,-1.3733606338501,-0.301380157470703,-0.00131702423095703,-1.20432138442993,-0.308650493621826,-0.00131654739379883,-1.72589302062988,-0.427042007446289,-0.00131654739379883,-1.55193948745728,-0.34783935546875,-0.00131690502166748,-2.03695964813232,-0.598142623901367,-0.00131678581237793,-1.88110065460205,-0.517839908599854,-0.00131690502166748,-2.37012577056885,-0.672891139984131,-0.00131690502166748,-2.21286725997925,-0.645771980285645,-0.00131690502166748,-2.53476524353027,-0.70601749420166,-0.00131678581237793,-2.46993064880371,-0.691664695739746,-0.00131678581237793,-2.58714437484741,-0.719856262207031,-0.00131672620773315,-2.65206527709961,-0.79787540435791,-0.00131672620773315,-2.67101383209229,-0.775537490844727,-0.00131672620773315,-2.5218620300293,-0.795303344726563,-0.00131672620773315,-2.59630966186523,-0.79991340637207,-0.00131690502166748,-2.34354066848755,-0.793880939483643,-0.00131678581237793,-2.44684886932373,-0.797529697418213,-0.00131690502166748,-2.00191497802734,-0.744923114776611,-0.00131678581237793,-2.18414545059204,-0.771455764770508,-0.00131702423095703,-1.67177104949951,-0.711940765380859,-0.00131702423095703,-1.83009815216064,-0.728931427001953,-0.00131690502166748,-1.42042207717896,-0.655091285705566,-0.00131702423095703,-1.53006505966187,-0.682493686676025,-0.00131690502166748,-1.33004903793335,-0.659983396530151,-0.00131678581237793,-1.35837650299072,-0.644246816635132,-0.00131690502166748,-1.37255907058716,-0.732486724853516,-0.00131678581237793,-1.32172822952271,-0.71227765083313,-0.00131690502166748,-1.21893358230591,-0.743726015090942,-0.00131690502166748,-0.881632804870605,-0.717839479446411,-0.00131672620773315,-0.895091533660889,-0.638898134231567,-0.00131678581237793,-0.879186630249023,-0.704369783401489,-0.00131702423095703,-1.23199605941772,-0.619147062301636,-0.00131690502166748,-1.21654081344604, --0.679515361785889,-0.00131678581237793,-1.36206007003784,-0.593200206756592,-0.00131702423095703,-1.2758207321167,-0.591330766677856,-0.00131678581237793,-1.67281818389893,-0.664607524871826,-0.00131678581237793,-1.50479221343994,-0.621973037719727,-0.00131702423095703,-2.00072908401489,-0.750216484069824,-0.00131678581237793,-1.83487224578857,-0.708025455474854,-0.00131702423095703,-2.33934307098389,-0.812191963195801,-0.00131690502166748,-2.18010807037354,-0.789185047149658,-0.00131690502166748,-2.51595592498779,-0.791614532470703,-0.00131690502166748,-2.44480895996094,-0.806534767150879,-0.00131678581237793,-2.6104941368103,-0.780324935913086,-0.00131690502166748,-2.57227659225464,-0.786821365356445,-0.00131690502166748,-2.62725257873535,-0.760293960571289,-0.00131666660308838,-2.54207134246826,-0.696316719055176,-0.00131672620773315,-2.60757827758789,-0.719038963317871,-0.00131678581237793,-2.37415266036987,-0.655291080474854,-0.00131672620773315,-2.47345495223999,-0.676225662231445,-0.00131678581237793,-2.04064464569092,-0.58193826675415,-0.00131678581237793,-2.21648740768433,-0.630029201507568,-0.00131690502166748,-1.73331594467163,-0.394484996795654,-0.00131690502166748,-1.88685750961304,-0.492636680603027,-0.00131690502166748,-1.37629795074463,-0.280099868774414,-0.00131690502166748,-1.55831575393677,-0.319913387298584,-0.00131672620773315,-1.05398368835449,-0.35332989692688,-0.00131690502166748,-1.20171499252319,-0.286249399185181,-0.00131672620773315,-0.952577114105225,-0.496379613876343,-0.00131672620773315,-1.65456438064575,-0.873513221740723,-0.00131678581237793,-1.63939666748047,-0.791746139526367,-0.00131672620773315,-1.64295387268066,-0.829360961914063,0.00525832176208496,-1.04811000823975,-0.706058979034424,0.00525891780853271,-1.04811000823975,-0.706058979034424,0.00525891780853271,-1.2441873550415,-0.710135459899902,0.00525888800621033,-1.57741260528564,-0.807596683502197,0.00525891780853271,-1.2441873550415,-0.710135459899902,0.00525891780853271,-1.03895807266235,-0.655035972595215,0.00525891780853271, --1.03895807266235,-0.655035972595215,0.00525891780853271,-1.34820890426636,-0.749741077423096,0.00525844097137451,-1.34527778625488,-0.749094009399414,0.00525885820388794,-1.48708868026733,-0.785709857940674,0.00525891780853271,-1.195641040802,-0.69348669052124,0.00525844097137451,-1.04354381561279,-0.693856239318848,0.00525891780853271,-1.04354381561279,-0.693856239318848,0.00525891780853271,-1.09703969955444,-0.66935396194458,0.00525891780853271,-1.19598627090454,-0.69355583190918,0.00525844097137451,-1.09703969955444,-0.66935396194458,0.00525891780853271,-1.48910808563232,-0.786162853240967,-0.330536484718323,-1.30071115493774,-0.746082782745361,0.00524124503135681,-1.68372392654419,-0.927432060241699,0.342309355735779,-1.29865312576294,-0.745621204376221,0.00525888800621033,-2.56311416625977,-0.65964412689209,0.288524031639099,-2.43446636199951,-0.636101722717285,0.189611315727234,-2.19819736480713,-0.548885345458984,0.502116441726685,-1.74963808059692,-0.483948230743408,0.551810503005981,-1.49864387512207,-0.418755054473877,0.00525888800621033,-2.44503784179688,-0.987720489501953,0.274970889091492,-2.32023048400879,-0.959100723266602,0.398973345756531,-2.08941268920898,-0.906384944915771,0.554855346679688,-1.68613624572754,-0.814339637756348,0.57016658782959,-1.4049072265625,-0.73402738571167,0.160012602806091,-2.4193811416626,-0.837478637695313,0.16149890422821,-2.50185060501099,-0.651933670043945,0.262487769126892,-2.33581447601318,-0.833929061889648,0.16957551240921,-2.38771533966064,-0.974470138549805,0.00525888800621033,-2.45940017700195,-0.864814758300781,0.326244235038757,-2.24190092086792,-0.799354553222656,0.308335661888123,-2.33547830581665,-0.600118637084961,0.344616770744324,-2.11952924728394,-0.744284629821777,0.337957262992859,-2.21344947814941,-0.934741020202637,0.437043905258179,-1.93501377105713,-0.724577903747559,0.206494092941284,-1.99744892120361,-0.510994911193848,0.520439624786377,-1.70371866226196,-0.663863658905029,0.474496603012085,-1.93008613586426,-0.869965076446533,0.553906440734863, --1.56214714050293,-0.692883968353271,0.573881387710571,-1.62022018432617,-0.449306011199951,0.558328628540039,-1.44755935668945,-0.611403942108154,0.564113855361938,-1.54318046569824,-0.781774997711182,0.119071841239929,-2.49651527404785,-0.804083824157715,0.00525888800621033,-2.49367904663086,-0.795154571533203,0.124963581562042,-2.56251907348633,-0.658999443054199,0.166423141956329,-2.4484601020813,-0.784084320068359,0.0900419652462006,-2.42803239822388,-0.899682998657227,0.340300440788269,-2.338951587677,-0.770124435424805,0.279583811759949,-2.37444448471069,-0.773154258728027,0.367550253868103,-2.40711164474487,-0.619698524475098,0.32501494884491,-2.27587842941284,-0.740165710449219,0.301494479179382,-2.27867364883423,-0.851045608520508,0.356318235397339,-2.07528209686279,-0.677525043487549,0.29842221736908,-2.14370965957642,-0.692342758178711,0.202696084976196,-2.12940263748169,-0.517802238464355,0.379169702529907,-1.96305847167969,-0.659507751464844,0.420982599258423,-2.02891683578491,-0.791150569915771,0.577894687652588,-1.67505502700806,-0.581598281860352,0.531595706939697,-1.72157382965088,-0.598414897918701,0.562385320663452,-1.70056676864624,-0.464378356933594,0.591819763183594,-1.59229326248169,-0.564204692840576,0.544995069503784,-1.6478590965271,-0.691437721252441,0.241104483604431,-2.42741680145264,-0.795224189758301,0.248125433921814,-2.50032138824463,-0.644448280334473,0.222605109214783,-2.35200357437134,-0.88291072845459,0.213829398155212,-2.35233926773071,-0.926547050476074,0.260697245597839,-2.31589555740356,-0.913755416870117,0.225542426109314,-2.35506916046143,-0.966940879821777,0.157146811485291,-2.38929224014282,-0.928794860839844,0.0871575772762299,-2.41898727416992,-0.941831588745117,0.0887702405452728,-2.42278385162354,-0.982504844665527,0.00525888800621033,-2.44562387466431,-0.943852424621582,0.333860754966736,-2.22178936004639,-0.719331741333008,0.283727049827576,-2.28129529953003,-0.566926956176758,0.352396368980408,-2.16002988815308,-0.843708992004395,0.354111552238464,-2.15014743804932, --0.88960075378418,0.388711810112,-2.08959436416626,-0.858804702758789,0.36263644695282,-2.15208911895752,-0.923360824584961,0.32798182964325,-2.2139687538147,-0.889419555664063,0.302424788475037,-2.2669939994812,-0.906044006347656,0.31451404094696,-2.26818656921387,-0.947345733642578,0.467784881591797,-1.84838581085205,-0.633304119110107,0.361590623855591,-1.88879585266113,-0.491543769836426,0.4919273853302,-1.81514835357666,-0.768573760986328,0.49591588973999,-1.83783912658691,-0.809678554534912,0.538844347000122,-1.68846273422241,-0.767468452453613,0.507181644439697,-1.83560848236084,-0.848238468170166,0.463948249816895,-1.93623876571655,-0.825409412384033,0.425999402999878,-2.01915121078491,-0.848917484283447,0.435758352279663,-2.01204681396484,-0.888746738433838,0.590887784957886,-1.5051417350769,-0.546532154083252,0.58401083946228,-1.54276704788208,-0.42743968963623,0.562609195709229,-1.46041297912598,-0.557098865509033,0.55729079246521,-1.47953319549561,-0.655812740325928,0.557487010955811,-1.46480512619019,-0.721237182617188,0.560478925704956,-1.41725015640259,-0.693661212921143,0.56697940826416,-1.45563411712646,-0.761692523956299,0.55406665802002,-1.55126571655273,-0.743087768554688,0.54885458946228,-1.63394689559937,-0.760148525238037,0.560997724533081,-1.62758350372314,-0.801164150238037,0.0527718961238861,-2.51252126693726,-0.803409576416016,0.0552977025508881,-2.58012962341309,-0.663087844848633,0.0511969029903412,-2.43383884429932,-0.944164276123047,0.0515550076961517,-2.43479156494141,-0.985312461853027,0.0512326657772064,-2.45074844360352,-0.893998146057129,0.123442530632019,-2.40373086929321,-0.936640739440918,0.129888892173767,-2.40548038482666,-0.978553771972656,0.160244822502136,-2.46913814544678,-0.796047210693359,0.158973515033722,-2.53310298919678,-0.653005599975586,0.130139648914337,-2.41770887374878,-0.880992889404297,0.194254696369171,-2.44624042510986,-0.791056632995605,0.193466007709503,-2.50933027267456,-0.64768123626709,0.186052680015564,-2.37170028686523,-0.928461074829102,0.1990727186203, --2.37133502960205,-0.970684051513672,0.189096748828888,-2.39143514633179,-0.868106842041016,0.238704562187195,-2.33436298370361,-0.920031547546387,0.25081193447113,-2.33830451965332,-0.963153839111328,0.276277899742126,-2.39426279067993,-0.784895896911621,0.286701083183289,-2.46373510360718,-0.636845588684082,0.252226710319519,-2.3406400680542,-0.856915473937988,0.310001254081726,-2.37847280502319,-0.778481483459473,0.334436297416687,-2.43972730636597,-0.630553245544434,0.2819904088974,-2.29310321807861,-0.910636901855469,0.296335577964783,-2.29497718811035,-0.95341968536377,0.276045680046082,-2.31806039810181,-0.848236083984375,0.317362189292908,-2.23985624313354,-0.897336006164551,0.326674342155457,-2.24058723449707,-0.941001892089844,0.340358138084412,-2.29481601715088,-0.75369930267334,0.351624369621277,-2.36469554901123,-0.605121612548828,0.323991656303406,-2.25289726257324,-0.821122169494629,0.341576457023621,-2.27273607254028,-0.733445167541504,0.326793074607849,-2.32888984680176,-0.590246200561523,0.338136553764343,-2.18429279327393,-0.886860847473145,0.347753882408142,-2.183274269104,-0.928267478942871,0.332857012748718,-2.21393823623657,-0.821736335754395,0.371411204338074,-2.11992406845093,-0.870956420898438,0.380276083946228,-2.12149047851563,-0.91417121887207,0.316292643547058,-2.17396068572998,-0.699018478393555,0.240886449813843,-2.23419046401978,-0.550418853759766,0.361952185630798,-2.13100099563599,-0.78962230682373,0.325198888778687,-2.13249731063843,-0.687713623046875,0.206500291824341,-2.18773126602173,-0.532547950744629,0.406406164169312,-2.05533409118652,-0.855828285217285,0.416990995407104,-2.05109405517578,-0.897664546966553,0.389714002609253,-2.07887840270996,-0.788496017456055,0.446451425552368,-1.97877550125122,-0.838061332702637,0.455083608627319,-1.9739408493042,-0.880004405975342,0.385709524154663,-1.99266958236694,-0.662038803100586,0.21422553062439,-2.03904914855957,-0.506222248077393,0.450398206710815,-1.96375179290771,-0.760270595550537,0.416446924209595,-1.93474531173706,-0.647188663482666, -0.276292562484741,-1.96662473678589,-0.498110771179199,0.479386329650879,-1.89149904251099,-0.818816661834717,0.490829944610596,-1.88497161865234,-0.859594821929932,0.467661619186401,-1.89707088470459,-0.756648540496826,0.516404628753662,-1.75995445251465,-0.788554668426514,0.528582334518433,-1.76113605499268,-0.831336975097656,0.526720523834229,-1.76311874389648,-0.613882064819336,0.471326589584351,-1.80082988739014,-0.479732990264893,0.512808322906494,-1.73832702636719,-0.719019889831543,0.0547774732112885,-2.563307762146,-0.708688735961914,0.00525888800621033,-2.54281187057495,-0.704010009765625,0.594470024108887,-1.52767467498779,-0.46815299987793,0.560263872146606,-1.48291635513306,-0.461886882781982,0.16572505235672,-2.48822975158691,-0.692581176757813,0.19572240114212,-2.49414968490601,-0.693759918212891,0.25072181224823,-2.48332691192627,-0.692026138305664,0.29028308391571,-2.44533538818359,-0.683441162109375,0.165672183036804,-2.51628017425537,-0.69853401184082,0.289732336997986,-2.41950511932373,-0.677214622497559,0.128044009208679,-2.54677152633667,-0.70530891418457,0.331405520439148,-2.42642688751221,-0.678193092346191,0.363402247428894,-2.39108610153198,-0.667400360107422,0.345931887626648,-2.34665393829346,-0.650425910949707,0.310008883476257,-2.32258415222168,-0.639471054077148,0.331999182701111,-2.31838703155518,-0.635407447814941,0.294435739517212,-2.26965284347534,-0.613275527954102,0.252158403396606,-2.22026109695435,-0.5941162109375,0.20587146282196,-2.1888108253479,-0.584050178527832,0.232181310653687,-2.17856502532959,-0.578739166259766,0.243914842605591,-2.11896228790283,-0.566247940063477,0.257657766342163,-2.02714395523071,-0.552835464477539,0.240994215011597,-1.99333667755127,-0.548832416534424,0.31352686882019,-1.96250820159912,-0.5447096824646,0.395435094833374,-1.87893867492676,-0.534136772155762,0.496066331863403,-1.78857564926147,-0.522333145141602,0.515207052230835,-1.74293804168701,-0.516073703765869,0.576037406921387,-1.69395065307617,-0.504491806030273,0.589477062225342,-1.61154317855835, --0.486894130706787,0.00525888800621033,-2.54843521118164,-0.65662956237793,0.267039656639099,-2.42530727386475,-0.632914543151855,0.158532977104187,-2.19447040557861,-0.546587944030762,0.441711187362671,-1.7391996383667,-0.480649471282959,0.515346765518188,-1.49387550354004,-0.416996002197266,0.00524124503135681,-2.28778600692749,-0.986920356750488,0.00525888800621033,-2.08150959014893,-1.01337909698486,0.15369063615799,-2.41069984436035,-0.835323333740234,0.155947089195251,-2.49164199829102,-0.649455070495605,0.243718981742859,-2.33120965957642,-0.838438034057617,0.00525888800621033,-2.3571457862854,-0.964550971984863,0.00525888800621033,-2.45152616500854,-0.862857818603516,0.301656126976013,-2.2387318611145,-0.798836708068848,0.278573393821716,-2.32956123352051,-0.597905158996582,0.323930144309998,-2.11699771881104,-0.74368953704834,0.00525888800621033,-2.21468925476074,-1.00681304931641,0.377373456954956,-1.91328096389771,-0.720399379730225,0.153334379196167,-1.98153972625732,-0.50562047958374,0.476372957229614,-1.68543434143066,-0.677840232849121,0.485600471496582,-1.55059194564819,-0.689852714538574,0.490172863006592,-1.61692094802856,-0.448363304138184,0.499229907989502,-1.44069623947144,-0.61570930480957,0.0869968831539154,-2.46295738220215,-0.796765327453613,0.00525888800621033,-2.4783182144165,-0.791691780090332,0.0950921475887299,-2.53399705886841,-0.656942367553711,0.158901572227478,-2.43628120422363,-0.781231880187988,0.0789378583431244,-2.40657663345337,-0.894242286682129,0.271820902824402,-2.30466842651367,-0.761660575866699,0.254972815513611,-2.36336898803711,-0.770991325378418,0.296679377555847,-2.3800892829895,-0.611579895019531,0.29197108745575,-2.26754713058472,-0.738607406616211,0.261413931846619,-2.2652153968811,-0.847596168518066,0.239363551139832,-2.05802774429321,-0.67044734954834,0.270920157432556,-2.13877820968628,-0.69100284576416,0.0884183645248413,-2.11292743682861,-0.50874137878418,0.284152865409851,-1.94046545028687,-0.652359485626221,0.364000201225281,-2.02161121368408,-0.789306640625, -0.456996202468872,-1.66801357269287,-0.581506729125977,0.460724115371704,-1.70579767227173,-0.609631061553955,0.463152647018433,-1.69550323486328,-0.461818695068359,0.469185352325439,-1.59080219268799,-0.563355922698975,0.479724884033203,-1.63084173202515,-0.690422534942627,0.203657031059265,-2.39630937576294,-0.787616729736328,0.218162417411804,-2.47257995605469,-0.642019271850586,0.185478568077087,-2.34566783905029,-0.873042106628418,0.182344794273376,-2.33809232711792,-0.906703948974609,0.222335696220398,-2.30213928222656,-0.900912284851074,0.00525888800621033,-2.32410526275635,-0.975761413574219,0.13198459148407,-2.37140130996704,-0.914156913757324,0.0769852101802826,-2.39863586425781,-0.922009468078613,0.00525888800621033,-2.38627290725708,-0.952635765075684,0.00525888800621033,-2.42136192321777,-0.928607940673828,0.257248282432556,-2.19008684158325,-0.706784248352051,0.197605490684509,-2.25489521026611,-0.553607940673828,0.309368014335632,-2.15673685073853,-0.81589412689209,0.313027262687683,-2.14560031890869,-0.861202239990234,0.339927077293396,-2.08340358734131,-0.849995613098145,0.00525888800621033,-2.15474224090576,-1.01245594024658,0.288295149803162,-2.2052206993103,-0.878484725952148,0.25990903377533,-2.25583362579346,-0.887387275695801,0.00525888800621033,-2.25575685501099,-0.996286392211914,0.342995405197144,-1.83352041244507,-0.62583589553833,0.265158414840698,-1.87853956222534,-0.485839366912842,0.425525903701782,-1.80104494094849,-0.756980419158936,0.429795026779175,-1.7974739074707,-0.786581993103027,0.447543382644653,-1.64154148101807,-0.756387710571289,0.402627229690552,-1.9029393196106,-0.812516212463379,0.367739081382751,-2.01583480834961,-0.83270788192749,0.00525888800621033,-1.98578405380249,-1.0111722946167,0.480676412582397,-1.5074782371521,-0.546815872192383,0.497796773910522,-1.54453611373901,-0.427838802337646,0.498298645019531,-1.45555734634399,-0.556342124938965,0.494572401046753,-1.47342872619629,-0.653948783874512,0.460724353790283,-1.46086454391479,-0.714517593383789,0.46760106086731, --1.53303909301758,-0.723948001861572,0.458128452301025,-1.59088039398193,-0.74349308013916,0.0380872189998627,-2.46823501586914,-0.793573379516602,0.0417397916316986,-2.54170560836792,-0.657605171203613,0.0475428998470306,-2.40953731536865,-0.927428245544434,0.0465935170650482,-2.42812824249268,-0.888524055480957,0.10178929567337,-2.38508176803589,-0.921097755432129,0.136390030384064,-2.43665599822998,-0.788115501403809,0.138593018054962,-2.50784921646118,-0.644917488098145,0.116958975791931,-2.39920282363892,-0.876439094543457,0.168107867240906,-2.41638135910034,-0.784503936767578,0.172065615653992,-2.48368215560913,-0.64472770690918,0.159063637256622,-2.35310888290405,-0.913186073303223,0.166226744651794,-2.37685346603394,-0.863212585449219,0.19984233379364,-2.32125091552734,-0.906092643737793,0.236395239830017,-2.36757612228394,-0.778266906738281,0.252972006797791,-2.44358730316162,-0.629594802856445,0.220741629600525,-2.32868194580078,-0.853569030761719,0.253291964530945,-2.34243631362915,-0.769564628601074,0.282508254051208,-2.41116333007813,-0.620281219482422,0.241838335990906,-2.27761650085449,-0.897045135498047,0.242124915122986,-2.30515670776367,-0.84599494934082,0.272588133811951,-2.23245429992676,-0.885658264160156,0.283846259117126,-2.27153825759888,-0.748038291931152,0.286048769950867,-2.34628057479858,-0.598930358886719,0.288822054862976,-2.24260520935059,-0.818741798400879,0.271049857139587,-2.2423529624939,-0.724672317504883,0.242808699607849,-2.30406332015991,-0.578859329223633,0.300508379936218,-2.17296838760376,-0.87348461151123,0.297710299491882,-2.20557308197021,-0.815350532531738,0.323880076408386,-2.11669445037842,-0.859637260437012,0.252776980400085,-2.14854192733765,-0.69249153137207,0.162405371665955,-2.21477508544922,-0.540843963623047,0.321167826652527,-2.1245641708374,-0.78366756439209,0.25034511089325,-2.11582136154175,-0.681982040405273,0.120736956596375,-2.17297124862671,-0.524407386779785,0.35391366481781,-2.04577827453613,-0.846153736114502,0.35234010219574,-2.0659966468811,-0.785497665405273, -0.381296515464783,-1.9746618270874,-0.829856395721436,0.256279826164246,-1.98250198364258,-0.655606746673584,0.1065753698349,-2.03071880340576,-0.499078273773193,0.384353995323181,-1.95681858062744,-0.758330821990967,0.289914488792419,-1.90055656433105,-0.636630058288574,0.182622194290161,-1.94103097915649,-0.489108562469482,0.415271043777466,-1.84922170639038,-0.804525375366211,0.406947374343872,-1.86286544799805,-0.752859592437744,0.441991567611694,-1.7286639213562,-0.777665615081787,0.411176919937134,-1.756751537323,-0.613258838653564,0.369892835617065,-1.79780101776123,-0.475958824157715,0.453333139419556,-1.73143482208252,-0.724073886871338,0.0371554791927338,-2.51325225830078,-0.700800895690918,0.00525888800621033,-2.52644062042236,-0.700655937194824,0.480693578720093,-1.53101062774658,-0.46890115737915,0.501307487487793,-1.47820615768433,-0.460956573486328,0.158328413963318,-2.47492551803589,-0.689578056335449,0.168805956840515,-2.45858335494995,-0.689263343811035,0.213255763053894,-2.44456720352173,-0.687869071960449,0.247363924980164,-2.41595077514648,-0.674399375915527,0.139666855335236,-2.48112630844116,-0.688694953918457,0.262823462486267,-2.40740013122559,-0.673293113708496,0.0915983617305756,-2.507080078125,-0.701755523681641,0.261827826499939,-2.38748931884766,-0.665116310119629,0.272995829582214,-2.35327768325806,-0.656915664672852,0.263229727745056,-2.31923007965088,-0.641825675964355,0.268642783164978,-2.31226444244385,-0.636364936828613,0.229788661003113,-2.28354597091675,-0.62147045135498,0.187468409538269,-2.2323522567749,-0.597949028015137,0.156509757041931,-2.19048261642456,-0.586428642272949,0.168963313102722,-2.18369388580322,-0.581966400146484,0.13139808177948,-2.16271018981934,-0.56973934173584,0.0977824926376343,-2.10203647613525,-0.555574417114258,0.111603140830994,-2.01860761642456,-0.544006824493408,0.152160882949829,-1.97417974472046,-0.541194438934326,0.179863691329956,-1.93209218978882,-0.532745838165283,0.259455442428589,-1.86615753173828,-0.526671409606934,0.363407373428345,-1.78451013565063, --0.518111705780029,0.433339834213257,-1.73145437240601,-0.514338970184326,0.445214509963989,-1.68937110900879,-0.502080917358398,0.470613479614258,-1.61017513275146,-0.486337661743164,0.0476144254207611,-2.57065153121948,-0.653564453125,0.00525888800621033,-2.55873966217041,-0.652704238891602,0.105173885822296,-2.55991268157959,-0.651347160339355,0.147475063800812,-2.52558565139771,-0.641495704650879,0.158275008201599,-2.49881219863892,-0.645330429077148,0.183241248130798,-2.50086069107056,-0.637064933776855,0.233779311180115,-2.49137353897095,-0.63340950012207,0.270673155784607,-2.45838975906372,-0.624215126037598,0.278108477592468,-2.4321870803833,-0.628847122192383,0.311586260795593,-2.43009614944458,-0.615190505981445,0.336859583854675,-2.39909887313843,-0.604658126831055,0.324095606803894,-2.36068201065063,-0.592174530029297,0.294246554374695,-2.33414888381958,-0.594773292541504,0.281297087669373,-2.31710243225098,-0.582619667053223,0.236943125724792,-2.26895904541016,-0.558809280395508,0.199357390403748,-2.22579526901245,-0.544086456298828,0.172438979148865,-2.19675207138062,-0.545587539672852,0.156616568565369,-2.18022727966309,-0.528041839599609,0.132872343063354,-2.12095308303833,-0.516820907592773,0.150130033493042,-2.0359525680542,-0.502076625823975,0.176495790481567,-1.98997402191162,-0.505211353302002,0.21929669380188,-1.95514488220215,-0.488454341888428,0.307163000106812,-1.88389587402344,-0.489943027496338,0.416461229324341,-1.80094385147095,-0.473657131195068,0.470607280731201,-1.74521493911743,-0.478856563568115,0.512139320373535,-1.69853639602661,-0.459050178527832,0.532275915145874,-1.61794805526733,-0.450757503509521,0.541459321975708,-1.5452766418457,-0.423645973205566,0.533740043640137,-1.49839401245117,-0.412733554840088,0.0516265332698822,-2.44604778289795,-0.908753395080566,0.00525888800621033,-2.45396852493286,-0.888339042663574,0.260303378105164,-2.32787370681763,-0.856318473815918,0.247767329216003,-2.33797788619995,-0.874999046325684,0.221529841423035,-2.35093545913696,-0.896373748779297, -0.188327193260193,-2.38516807556152,-0.885647773742676,0.277245879173279,-2.30981111526489,-0.865849494934082,0.158490002155304,-2.40939331054688,-0.863394737243652,0.301279902458191,-2.27489614486694,-0.866693496704102,0.12734591960907,-2.41345024108887,-0.897031784057617,0.321486830711365,-2.24732208251953,-0.842868804931641,0.0880707204341888,-2.42511940002441,-0.911890983581543,0.327566027641296,-2.2313027381897,-0.825310707092285,0.334737658500671,-2.20372915267944,-0.841002464294434,0.353187441825867,-2.15634155273438,-0.859302520751953,0.368633151054382,-2.12637662887573,-0.814031600952148,0.369994044303894,-2.10835123062134,-0.778910636901855,0.398621320724487,-2.07120513916016,-0.808529853820801,0.424441576004028,-2.02618026733398,-0.808289051055908,0.453287839889526,-1.96856832504272,-0.783522605895996,0.45464301109314,-1.93474292755127,-0.754514694213867,0.473581552505493,-1.89518737792969,-0.7749342918396,0.493287086486816,-1.82096290588379,-0.781700134277344,0.51552152633667,-1.73981046676636,-0.737330913543701,0.527774095535278,-1.69913816452026,-0.690906047821045,0.546294450759888,-1.64397382736206,-0.711038112640381,0.554084300994873,-1.55903244018555,-0.707774639129639,0.55750584602356,-1.47532272338867,-0.675086975097656,0.559277296066284,-1.4383602142334,-0.633416652679443,0.492925882339478,-1.43681287765503,-0.63302755355835,0.486298561096191,-1.4634313583374,-0.669539451599121,0.051679939031601,-2.46303415298462,-0.871235847473145,0.00525888800621033,-2.46856164932251,-0.847536087036133,0.0433524549007416,-2.43012809753418,-0.862259864807129,0.00525888800621033,-2.45513200759888,-0.844400405883789,0.104941725730896,-2.44296216964722,-0.876846313476563,0.141136050224304,-2.4292631149292,-0.860566139221191,0.162591278553009,-2.42691707611084,-0.824819564819336,0.191013157367706,-2.40567350387573,-0.849678993225098,0.228461146354675,-2.36923933029175,-0.862305641174316,0.26019561290741,-2.35378170013428,-0.840066909790039,0.267592310905457,-2.34602355957031,-0.819592475891113,0.285035014152527,-2.33490133285522, --0.832630157470703,0.313477396965027,-2.29351854324341,-0.832978248596191,0.330623030662537,-2.26282119750977,-0.80577278137207,0.327910304069519,-2.25063753128052,-0.785614013671875,0.338987231254578,-2.23008584976196,-0.801494598388672,0.358317732810974,-2.17310333251953,-0.817638397216797,0.358388781547546,-2.140061378479,-0.768912315368652,0.336198687553406,-2.12521362304688,-0.732681274414063,0.383245706558228,-2.09290552139282,-0.765586376190186,0.420881509780884,-2.04018688201904,-0.76587963104248,0.447079420089722,-1.9687671661377,-0.73716402053833,0.429284334182739,-1.94158792495728,-0.709774494171143,0.467835664749146,-1.90746974945068,-0.73168420791626,0.501957654953003,-1.82200002670288,-0.738627433776855,0.523926973342896,-1.74313306808472,-0.6940598487854,0.526621103286743,-1.70818614959717,-0.648533344268799,0.55888843536377,-1.65647888183594,-0.66453218460083,0.570955038070679,-1.57002067565918,-0.661360263824463,0.57081151008606,-1.48510885238647,-0.628111839294434,0.561606645584106,-1.45598125457764,-0.603316307067871,0.498620986938477,-1.44325304031372,-0.600959300994873,0.487266302108765,-1.48095512390137,-0.625609397888184,0.475643157958984,-1.56067705154419,-0.656738758087158,0.471559524536133,-1.64116859436035,-0.662044048309326,0.47227931022644,-1.6900315284729,-0.661139011383057,0.445230722427368,-1.73523950576782,-0.695443630218506,0.413316965103149,-1.80608320236206,-0.723993301391602,0.388506650924683,-1.87069797515869,-0.724471569061279,0.358452558517456,-1.91896486282349,-0.704753398895264,0.362484812736511,-1.95928478240967,-0.734254837036133,0.344766020774841,-2.02719736099243,-0.761851787567139,0.335495829582214,-2.07717227935791,-0.761494159698486,0.313445448875427,-2.1215877532959,-0.731740951538086,0.310636878013611,-2.12752246856689,-0.761571884155273,0.302451014518738,-2.16130113601685,-0.789534568786621,0.293026328086853,-2.21406507492065,-0.793323516845703,0.300372958183289,-2.24558591842651,-0.784548759460449,0.28842294216156,-2.24770641326904,-0.80161190032959,0.26199996471405, --2.27141523361206,-0.825981140136719,0.243128657341003,-2.31377220153809,-0.827277183532715,0.246477007865906,-2.33895778656006,-0.821890830993652,0.223965525627136,-2.33627653121948,-0.834720611572266,0.187699198722839,-2.35498285293579,-0.850807189941406,0.165330767631531,-2.38534021377563,-0.843155860900879,0.155105412006378,-2.4164776802063,-0.821959495544434,0.121346831321716,-2.40502882003784,-0.853389739990234,0.0793679654598236,-2.41645860671997,-0.867884635925293,0.415361166000366,-1.48214721679688,-0.753559589385986,0.32798182964325,-1.4450888633728,-0.792745113372803,0.374132990837097,-1.77406692504883,-0.854918479919434,0.354040026664734,-1.8912296295166,-0.880527973175049,0.334214568138123,-2.00285720825195,-0.891903400421143,0.298055529594421,-2.07749223709106,-0.908115386962891,0.283674597740173,-2.14230298995972,-0.910639762878418,0.247246623039246,-2.20214414596558,-0.9229736328125,0.223088145256042,-2.2526421546936,-0.924432754516602,0.1812704205513,-2.29517889022827,-0.931449890136719,0.144575476646423,-2.33102750778198,-0.933149337768555,0.0924414098262787,-2.35910701751709,-0.94012451171875,0.0571053922176361,-2.38474416732788,-0.939418792724609,-0.278329491615295,-2.43439865112305,-0.636171340942383,-0.176714539527893,-2.19859218597412,-0.54848575592041,-0.487913846969604,-1.75004816055298,-0.483555316925049,-0.541308641433716,-1.49864387512207,-0.418755054473877,-0.264468789100647,-2.32023048400879,-0.959100723266602,-0.388472199440002,-2.08941268920898,-0.906384944915771,-0.544353723526001,-1.68613624572754,-0.814339637756348,-0.559666395187378,-1.4049072265625,-0.73402738571167,-0.149510502815247,-2.4193811416626,-0.837478637695313,-0.15097963809967,-2.50185060501099,-0.651933670043945,-0.251988053321838,-2.33581447601318,-0.833929061889648,-0.159055888652802,-2.38771533966064,-0.974470138549805,-0.316298127174377,-2.24178075790405,-0.799476623535156,-0.298022866249084,-2.33543920516968,-0.600157737731934,-0.334194779396057,-2.11954736709595,-0.744261741638184,-0.327456116676331,-2.21344947814941, --0.934741020202637,-0.424779653549194,-1.93522262573242,-0.724373817443848,-0.18795371055603,-1.99848175048828,-0.509981632232666,-0.509517431259155,-1.7037672996521,-0.663816452026367,-0.463995695114136,-1.93008613586426,-0.869965076446533,-0.543404817581177,-1.56214714050293,-0.692883968353271,-0.563149690628052,-1.62025165557861,-0.449275493621826,-0.547809839248657,-1.44755935668945,-0.611403942108154,-0.553595304489136,-1.54318046569824,-0.781774997711182,-0.108570694923401,-2.49651527404785,-0.804083824157715,-0.114462554454803,-2.56251907348633,-0.658999443054199,-0.155922055244446,-2.4484601020813,-0.784084320068359,-0.0795394480228424,-2.42803239822388,-0.899682998657227,-0.330068230628967,-2.33889245986938,-0.770186424255371,-0.269108414649963,-2.37443971633911,-0.773159980773926,-0.356989502906799,-2.40712404251099,-0.619684219360352,-0.315366387367249,-2.27570199966431,-0.740348815917969,-0.290993332862854,-2.27867364883423,-0.851045608520508,-0.339233160018921,-2.07633972167969,-0.676455974578857,-0.287009835243225,-2.14391565322876,-0.69212818145752,-0.18278431892395,-2.13094282150269,-0.516243934631348,-0.362121343612671,-1.96385288238525,-0.658733367919922,-0.410122632980347,-2.02897119522095,-0.791094779968262,-0.566717386245728,-1.6751446723938,-0.581509113311768,-0.519177675247192,-1.72179508209229,-0.598201274871826,-0.550085783004761,-1.70078802108765,-0.464162349700928,-0.581292390823364,-1.59229421615601,-0.56420373916626,-0.534458875656128,-1.64786100387573,-0.691435813903809,-0.230585694313049,-2.42741680145264,-0.795224189758301,-0.237623810768127,-2.50032138824463,-0.644448280334473,-0.21210253238678,-2.35200357437134,-0.88291072845459,-0.203326821327209,-2.35233926773071,-0.926547050476074,-0.250196099281311,-2.31589555740356,-0.913755416870117,-0.215040326118469,-2.35506916046143,-0.966940879821777,-0.146627604961395,-2.38929224014282,-0.928794860839844,-0.0766569674015045,-2.41898727416992,-0.941831588745117,-0.0782682001590729,-2.42278385162354,-0.982504844665527,-0.322687745094299,-2.22193336486816, --0.719181060791016,-0.271417260169983,-2.28164529800415,-0.56656551361084,-0.341959595680237,-2.16001272201538,-0.843727111816406,-0.343610405921936,-2.15014743804932,-0.88960075378418,-0.378210663795471,-2.08959436416626,-0.858804702758789,-0.352116227149963,-2.15208911895752,-0.923360824584961,-0.317481637001038,-2.2139687538147,-0.889419555664063,-0.291925072669983,-2.2669939994812,-0.906044006347656,-0.304013848304749,-2.26818656921387,-0.947345733642578,-0.451583623886108,-1.84900379180908,-0.632712841033936,-0.342688322067261,-1.88975048065186,-0.490625858306885,-0.481317281723022,-1.81515789031982,-0.76856517791748,-0.48541522026062,-1.83783912658691,-0.809678554534912,-0.528342962265015,-1.68846273422241,-0.767468452453613,-0.496662855148315,-1.83560848236084,-0.848238468170166,-0.45344614982605,-1.93623876571655,-0.825409412384033,-0.415497541427612,-2.01915121078491,-0.848917484283447,-0.425257444381714,-2.01204681396484,-0.888746738433838,-0.580387830734253,-1.5051417350769,-0.546532154083252,-0.573509931564331,-1.54276704788208,-0.42743968963623,-0.552109003067017,-1.46041297912598,-0.557098865509033,-0.546771764755249,-1.47953319549561,-0.655812740325928,-0.546986818313599,-1.46480512619019,-0.721237182617188,-0.549959897994995,-1.41725015640259,-0.693661212921143,-0.556478261947632,-1.45563411712646,-0.761692523956299,-0.543548345565796,-1.55126571655273,-0.743087768554688,-0.538336038589478,-1.63394689559937,-0.760148525238037,-0.550496816635132,-1.62758350372314,-0.801164150238037,-0.042253166437149,-2.51252126693726,-0.803409576416016,-0.0447966158390045,-2.58012962341309,-0.663087844848633,-0.0406953394412994,-2.43383884429932,-0.944164276123047,-0.0410362780094147,-2.43479156494141,-0.985312461853027,-0.0407139360904694,-2.45074844360352,-0.893998146057129,-0.112922787666321,-2.40373086929321,-0.936640739440918,-0.119369685649872,-2.40548038482666,-0.978553771972656,-0.149725556373596,-2.46913814544678,-0.796047210693359,-0.148453891277313,-2.53310298919678,-0.653005599975586,-0.119620501995087, --2.41770887374878,-0.880992889404297,-0.183752238750458,-2.44624042510986,-0.791056632995605,-0.182946801185608,-2.50933027267456,-0.64768123626709,-0.175549685955048,-2.37170028686523,-0.928461074829102,-0.188570141792297,-2.37133502960205,-0.970684051513672,-0.178577542304993,-2.39143514633179,-0.868106842041016,-0.228204369544983,-2.33436298370361,-0.920031547546387,-0.240310311317444,-2.33830451965332,-0.963153839111328,-0.265759110450745,-2.39426279067993,-0.784895896911621,-0.276182770729065,-2.46373510360718,-0.636845588684082,-0.241707444190979,-2.3406400680542,-0.856915473937988,-0.299548745155334,-2.37846326828003,-0.778491973876953,-0.324155449867249,-2.4396824836731,-0.63060188293457,-0.271490693092346,-2.29310321807861,-0.910636901855469,-0.285816788673401,-2.29497718811035,-0.95341968536377,-0.265544533729553,-2.31806039810181,-0.848236083984375,-0.306860566139221,-2.23985624313354,-0.897336006164551,-0.316174149513245,-2.24058723449707,-0.941001892089844,-0.330317139625549,-2.29472064971924,-0.75379753112793,-0.340484261512756,-2.36482524871826,-0.604988098144531,-0.313784241676331,-2.25283336639404,-0.821188926696777,-0.331142067909241,-2.27272272109985,-0.73345947265625,-0.314825654029846,-2.32919502258301,-0.589931488037109,-0.32761824131012,-2.18429279327393,-0.886860847473145,-0.33723509311676,-2.183274269104,-0.928267478942871,-0.32268488407135,-2.21386957168579,-0.821806907653809,-0.360911965370178,-2.11992406845093,-0.870956420898438,-0.369775414466858,-2.12149047851563,-0.91417121887207,-0.304231286048889,-2.17428302764893,-0.698685646057129,-0.227584481239319,-2.23466444015503,-0.549938201904297,-0.35166609287262,-2.13097047805786,-0.789652824401855,-0.310909032821655,-2.1331992149353,-0.686993598937988,-0.190223455429077,-2.18866777420044,-0.531600952148438,-0.395886898040771,-2.05533409118652,-0.855828285217285,-0.406489133834839,-2.05109405517578,-0.897664546966553,-0.379060387611389,-2.07891845703125,-0.788452625274658,-0.435949087142944,-1.97877550125122,-0.838061332702637,-0.444581747055054, --1.9739408493042,-0.880004405975342,-0.367379903793335,-1.99367380142212,-0.661054134368896,-0.193865537643433,-2.04040050506592,-0.504883766174316,-0.438910245895386,-1.96387100219727,-0.760154724121094,-0.397889852523804,-1.93567419052124,-0.646293163299561,-0.254450559616089,-1.96799230575562,-0.496779441833496,-0.468867063522339,-1.89149904251099,-0.818816661834717,-0.480310201644897,-1.88497161865234,-0.859594821929932,-0.456557035446167,-1.89713668823242,-0.756584167480469,-0.505903005599976,-1.75995445251465,-0.788554668426514,-0.518081903457642,-1.76113605499268,-0.831336975097656,-0.513108491897583,-1.76346206665039,-0.613552570343018,-0.454962491989136,-1.80144357681274,-0.479150772094727,-0.502125024795532,-1.73834705352783,-0.719000816345215,-0.0442773401737213,-2.563307762146,-0.708688735961914,-0.5839684009552,-1.52767467498779,-0.46815299987793,-0.549762010574341,-1.48291635513306,-0.461886882781982,-0.155205368995667,-2.48822975158691,-0.692581176757813,-0.185221314430237,-2.49414968490601,-0.693759918212891,-0.240221619606018,-2.48332691192627,-0.692026138305664,-0.279781937599182,-2.44533538818359,-0.683441162109375,-0.155152440071106,-2.51628017425537,-0.69853401184082,-0.279563546180725,-2.41943359375,-0.677289962768555,-0.117543339729309,-2.54677152633667,-0.70530891418457,-0.321105599403381,-2.42638111114502,-0.678239822387695,-0.352912545204163,-2.39108324050903,-0.667403221130371,-0.334995865821838,-2.34674453735352,-0.650332450866699,-0.299798607826233,-2.32252407073975,-0.639533042907715,-0.320136666297913,-2.31867027282715,-0.635114669799805,-0.281862854957581,-2.2700629234314,-0.612853050231934,-0.238520383834839,-2.22080755233765,-0.593558311462402,-0.192724823951721,-2.18925714492798,-0.583597183227539,-0.21525502204895,-2.17963027954102,-0.577659606933594,-0.222484350204468,-2.12076282501221,-0.564424514770508,-0.235626935958862,-2.02868604660034,-0.551314353942871,-0.220869779586792,-1.99456024169922,-0.547634124755859,-0.29021143913269,-1.9640417098999,-0.543220996856689,-0.375655889511108, --1.87997436523438,-0.53314208984375,-0.47973895072937,-1.78919649124146,-0.52174186706543,-0.501026391983032,-1.74334907531738,-0.515679359436035,-0.563884019851685,-1.69415616989136,-0.504292011260986,-0.578777074813843,-1.61156749725342,-0.486869812011719,-0.256938576698303,-2.42521953582764,-0.633004188537598,-0.148802876472473,-2.19437313079834,-0.546683311462402,-0.429795980453491,-1.73934602737427,-0.480510234832764,-0.50482964515686,-1.49387550354004,-0.416996002197266,-0.143171489238739,-2.41069984436035,-0.835323333740234,-0.145444989204407,-2.49164199829102,-0.649455070495605,-0.233199715614319,-2.33120965957642,-0.838438034057617,-0.291959404945374,-2.23856401443481,-0.799009323120117,-0.270034432411194,-2.32915115356445,-0.598329544067383,-0.314770340919495,-2.11679553985596,-0.743891716003418,-0.368023633956909,-1.91315889358521,-0.720514297485352,-0.141328573226929,-1.98175525665283,-0.505403518676758,-0.465879201889038,-1.68543338775635,-0.677841186523438,-0.475099325180054,-1.55059194564819,-0.689852714538574,-0.479622602462769,-1.61692714691162,-0.448356628417969,-0.488728284835815,-1.44069623947144,-0.61570930480957,-0.0764776766300201,-2.46295738220215,-0.796765327453613,-0.0845901072025299,-2.53399705886841,-0.656942367553711,-0.148400962352753,-2.43628120422363,-0.781231880187988,-0.0684191286563873,-2.40657663345337,-0.894242286682129,-0.262406945228577,-2.304443359375,-0.761894226074219,-0.244466423988342,-2.36336612701416,-0.770994186401367,-0.28787100315094,-2.37973737716675,-0.611944198608398,-0.283472657203674,-2.26713037490845,-0.73903751373291,-0.250912308692932,-2.2652153968811,-0.847596168518066,-0.23511278629303,-2.05720090866089,-0.671261310577393,-0.262433648109436,-2.13848161697388,-0.691298484802246,-0.0820389986038208,-2.11238384246826,-0.509278297424316,-0.277257561683655,-1.94007539749146,-0.652733325958252,-0.353987336158752,-2.0215482711792,-0.789368629455566,-0.446569204330444,-1.66799926757813,-0.581521511077881,-0.449987173080444,-1.70581674575806,-0.609613418579102,-0.452208280563354, --1.69554901123047,-0.461775302886963,-0.45868182182312,-1.5907998085022,-0.563358306884766,-0.469223737716675,-1.63084173202515,-0.690422534942627,-0.193137347698212,-2.39630937576294,-0.787616729736328,-0.207661747932434,-2.47257995605469,-0.642019271850586,-0.174959301948547,-2.34566783905029,-0.873042106628418,-0.171825587749481,-2.33809232711792,-0.906703948974609,-0.21183454990387,-2.30213928222656,-0.900912284851074,-0.121482491493225,-2.37140130996704,-0.914156913757324,-0.0664664804935455,-2.39863586425781,-0.922009468078613,-0.251379609107971,-2.18922758102417,-0.70766544342041,-0.191045880317688,-2.25422096252441,-0.554293632507324,-0.299372315406799,-2.15662717819214,-0.816006660461426,-0.302508950233459,-2.14560031890869,-0.861202239990234,-0.329408288002014,-2.08340358734131,-0.849995613098145,-0.277793526649475,-2.2052206993103,-0.878484725952148,-0.249390244483948,-2.25583362579346,-0.887387275695801,-0.334927320480347,-1.83325242996216,-0.626092910766602,-0.253610372543335,-1.87867641448975,-0.485705852508545,-0.415169477462769,-1.80102777481079,-0.756996154785156,-0.419275999069214,-1.7974739074707,-0.786581993103027,-0.437023878097534,-1.64154148101807,-0.756387710571289,-0.392107605934143,-1.9029393196106,-0.812516212463379,-0.357221245765686,-2.01583480834961,-0.83270788192749,-0.470174551010132,-1.5074782371521,-0.546815872192383,-0.487276792526245,-1.54453611373901,-0.427838802337646,-0.487779378890991,-1.45555734634399,-0.556342124938965,-0.484071493148804,-1.47342872619629,-0.653948783874512,-0.450205564498901,-1.46086454391479,-0.714517593383789,-0.45708155632019,-1.53303909301758,-0.723948001861572,-0.447625875473022,-1.59088039398193,-0.74349308013916,-0.0275856554508209,-2.46823501586914,-0.793573379516602,-0.0312396585941315,-2.54170560836792,-0.657605171203613,-0.0370236933231354,-2.40953731536865,-0.927428245544434,-0.0360924303531647,-2.42812824249268,-0.888524055480957,-0.0912887156009674,-2.38508176803589,-0.921097755432129,-0.125870406627655,-2.43665599822998,-0.788115501403809,-0.128091037273407, --2.50784921646118,-0.644917488098145,-0.106456398963928,-2.39920282363892,-0.876439094543457,-0.157588183879852,-2.41638135910034,-0.784503936767578,-0.161563098430634,-2.48368215560913,-0.64472770690918,-0.148543953895569,-2.35310888290405,-0.913186073303223,-0.155707478523254,-2.37685346603394,-0.863212585449219,-0.189340233802795,-2.32125091552734,-0.906092643737793,-0.225876450538635,-2.36757612228394,-0.778266906738281,-0.242478013038635,-2.44358730316162,-0.629595756530762,-0.210221886634827,-2.32868194580078,-0.853569030761719,-0.243028283119202,-2.34238290786743,-0.769619941711426,-0.272872567176819,-2.41098022460938,-0.620471000671387,-0.231338143348694,-2.27761650085449,-0.897045135498047,-0.231624245643616,-2.30515670776367,-0.84599494934082,-0.262069344520569,-2.23245429992676,-0.885658264160156,-0.275263428688049,-2.27114057540894,-0.748451232910156,-0.277775406837463,-2.34581422805786,-0.59941291809082,-0.278730988502502,-2.24251747131348,-0.818833351135254,-0.2636638879776,-2.24171018600464,-0.725337982177734,-0.235625863075256,-2.30340814590454,-0.579534530639648,-0.290008187294006,-2.17296838760376,-0.87348461151123,-0.287784218788147,-2.2054500579834,-0.81547737121582,-0.313380837440491,-2.11669445037842,-0.859637260437012,-0.246735215187073,-2.14779806137085,-0.693243980407715,-0.155202507972717,-2.21427917480469,-0.541341781616211,-0.311842560768127,-2.12435340881348,-0.783883094787598,-0.243897080421448,-2.11522245407104,-0.682580947875977,-0.1129070520401,-2.17259550094604,-0.524781227111816,-0.343394875526428,-2.04577827453613,-0.846153736114502,-0.342526078224182,-2.0658974647522,-0.785597324371338,-0.370777726173401,-1.9746618270874,-0.829856395721436,-0.251083970069885,-1.98190307617188,-0.656182289123535,-0.0981336832046509,-2.03052139282227,-0.499261856079102,-0.374460816383362,-1.95675086975098,-0.758395195007324,-0.283490777015686,-1.90011024475098,-0.637058258056641,-0.171807050704956,-1.94107913970947,-0.489060401916504,-0.404770612716675,-1.84922170639038,-0.804525375366211,-0.396873235702515, --1.86282062530518,-0.752902984619141,-0.431472539901733,-1.7286639213562,-0.777665615081787,-0.401243925094604,-1.75667428970337,-0.613334178924561,-0.358247518539429,-1.79791688919067,-0.475849151611328,-0.442889928817749,-1.73142623901367,-0.724081993103027,-0.026653915643692,-2.51325225830078,-0.700800895690918,-0.470174551010132,-1.53101062774658,-0.46890115737915,-0.490788221359253,-1.47820615768433,-0.460956573486328,-0.147827327251434,-2.47492551803589,-0.689578056335449,-0.158286273479462,-2.45858335494995,-0.689263343811035,-0.202736020088196,-2.44456720352173,-0.687869071960449,-0.237037301063538,-2.41591453552246,-0.674436569213867,-0.129165828227997,-2.48112630844116,-0.688694953918457,-0.252806305885315,-2.40729904174805,-0.673398017883301,-0.0810977518558502,-2.507080078125,-0.701755523681641,-0.252388596534729,-2.38726902008057,-0.665345191955566,-0.264904618263245,-2.35277700424194,-0.65743350982666,-0.256251931190491,-2.31849956512451,-0.642582893371582,-0.26094114780426,-2.31168460845947,-0.636963844299316,-0.22409975528717,-2.28259038925171,-0.622454643249512,-0.182665467262268,-2.23137092590332,-0.598946571350098,-0.151403069496155,-2.18965101242065,-0.587262153625488,-0.159755349159241,-2.18351936340332,-0.582138061523438,-0.124870419502258,-2.16213035583496,-0.570317268371582,-0.0944610834121704,-2.10104846954346,-0.556553840637207,-0.106536984443665,-2.01798105239868,-0.544612407684326,-0.142837643623352,-1.97407007217407,-0.541295051574707,-0.171624302864075,-1.93183660507202,-0.532991886138916,-0.250191450119019,-1.86603164672852,-0.526788711547852,-0.353122472763062,-1.78448009490967,-0.518141746520996,-0.422052145004272,-1.73153066635132,-0.514266967773438,-0.434778928756714,-1.68935537338257,-0.502097129821777,-0.460123777389526,-1.61017084121704,-0.486341953277588,-0.037095695734024,-2.57065153121948,-0.653564453125,-0.0946733057498932,-2.55991268157959,-0.651347160339355,-0.136974453926086,-2.52558565139771,-0.641495704650879,-0.147772967815399,-2.49881219863892,-0.645330429077148,-0.172721564769745, --2.50086069107056,-0.637064933776855,-0.223260521888733,-2.49137353897095,-0.63340950012207,-0.260154366493225,-2.45838975906372,-0.624215126037598,-0.267964005470276,-2.43211269378662,-0.628923416137695,-0.301547646522522,-2.42999982833862,-0.615288734436035,-0.326902031898499,-2.39898633956909,-0.604775428771973,-0.314036965370178,-2.36059045791626,-0.592269897460938,-0.284749627113342,-2.3339409828186,-0.594988822937012,-0.27158510684967,-2.31694889068604,-0.582777976989746,-0.22726309299469,-2.26882457733154,-0.558945655822754,-0.188783288002014,-2.22582101821899,-0.544057846069336,-0.161108613014221,-2.19689893722534,-0.545435905456543,-0.144394516944885,-2.18052101135254,-0.527743339538574,-0.11914074420929,-2.12150716781616,-0.516256332397461,-0.135276079177856,-2.03659725189209,-0.5014328956604,-0.161143064498901,-1.99061012268066,-0.504584789276123,-0.202828168869019,-1.95587539672852,-0.487742900848389,-0.29161524772644,-1.88448047637939,-0.489377498626709,-0.401939153671265,-1.80135917663574,-0.473263740539551,-0.457396268844604,-1.74550867080688,-0.478576183319092,-0.500130891799927,-1.69871234893799,-0.458879947662354,-0.521582365036011,-1.61797380447388,-0.450732231140137,-0.530940294265747,-1.5452766418457,-0.423645973205566,-0.523220777511597,-1.49839401245117,-0.412733554840088,-0.0411249697208405,-2.44604778289795,-0.908753395080566,-0.249784111976624,-2.32787370681763,-0.856318473815918,-0.237265229225159,-2.33797788619995,-0.874999046325684,-0.211010575294495,-2.35093545913696,-0.896373748779297,-0.177825093269348,-2.38516807556152,-0.885647773742676,-0.266744256019592,-2.30981111526489,-0.865849494934082,-0.147970855236053,-2.40939331054688,-0.863394737243652,-0.290760636329651,-2.27489614486694,-0.866693496704102,-0.1168452501297,-2.41345024108887,-0.897031784057617,-0.311076760292053,-2.24729919433594,-0.842891693115234,-0.0775515139102936,-2.42511940002441,-0.911890983581543,-0.317349076271057,-2.23124074935913,-0.825375556945801,-0.324396729469299,-2.20369577407837,-0.841036796569824,-0.342706322669983, --2.15633773803711,-0.859306335449219,-0.35819399356842,-2.12636804580688,-0.814042091369629,-0.359531998634338,-2.10836172103882,-0.778898239135742,-0.388009667396545,-2.07122802734375,-0.808504581451416,-0.413823843002319,-2.02619647979736,-0.808272838592529,-0.442305326461792,-1.96862554550171,-0.783465385437012,-0.443230390548706,-1.93485164642334,-0.75440788269043,-0.462827444076538,-1.89521312713623,-0.774909496307373,-0.482751607894897,-1.82096481323242,-0.781698226928711,-0.504941701889038,-1.73981904983521,-0.737322330474854,-0.517122030258179,-1.69915723800659,-0.6908860206604,-0.53579306602478,-1.64397382736206,-0.711038112640381,-0.543584108352661,-1.55903244018555,-0.707774639129639,-0.547004461288452,-1.47532272338867,-0.675086975097656,-0.54877781867981,-1.4383602142334,-0.633416652679443,-0.482405424118042,-1.43681287765503,-0.63302755355835,-0.475779294967651,-1.4634313583374,-0.669539451599121,-0.0411607325077057,-2.46303415298462,-0.871235847473145,-0.0328337252140045,-2.43012809753418,-0.862259864807129,-0.0944396555423737,-2.44296216964722,-0.876846313476563,-0.130616784095764,-2.4292631149292,-0.860566139221191,-0.152089238166809,-2.42691707611084,-0.824819564819336,-0.180511116981506,-2.40567350387573,-0.849678993225098,-0.217958569526672,-2.36923933029175,-0.862305641174316,-0.249695420265198,-2.35378170013428,-0.840066909790039,-0.257091164588928,-2.34602355957031,-0.819592475891113,-0.274516701698303,-2.33490133285522,-0.832630157470703,-0.303036332130432,-2.29350614547729,-0.832991600036621,-0.320505738258362,-2.26273822784424,-0.805858612060547,-0.31805956363678,-2.25049924850464,-0.785758018493652,-0.32889997959137,-2.23000001907349,-0.801583290100098,-0.347944855690002,-2.17307662963867,-0.817666053771973,-0.347961068153381,-2.1400671005249,-0.768905639648438,-0.325606942176819,-2.12527084350586,-0.732620239257813,-0.372166275978088,-2.09303045272827,-0.765458106994629,-0.409291982650757,-2.04036521911621,-0.765698909759521,-0.434605360031128,-1.96900367736816,-0.736933708190918,-0.416110754013062, --1.94190263748169,-0.709469318389893,-0.455726385116577,-1.90765476226807,-0.731505870819092,-0.490929841995239,-1.82205247879028,-0.738577842712402,-0.512868642807007,-1.7431960105896,-0.69399881362915,-0.515430212020874,-1.70826816558838,-0.648454666137695,-0.548269033432007,-1.65649509429932,-0.664516925811768,-0.560455083847046,-1.57002067565918,-0.661360263824463,-0.560311555862427,-1.48510885238647,-0.628111839294434,-0.551088571548462,-1.45598125457764,-0.603316307067871,-0.488118886947632,-1.44325304031372,-0.600959300994873,-0.476746320724487,-1.48095512390137,-0.625609397888184,-0.465123891830444,-1.56067705154419,-0.656738758087158,-0.461070775985718,-1.64116668701172,-0.662045955657959,-0.461736440658569,-1.69003248214722,-0.66113805770874,-0.434868574142456,-1.73521757125854,-0.695465087890625,-0.403342962265015,-1.80602216720581,-0.724052429199219,-0.379082441329956,-1.87058067321777,-0.724583625793457,-0.349701523780823,-1.91877508163452,-0.704934120178223,-0.353397965431213,-1.95912742614746,-0.734405517578125,-0.335566163063049,-2.02702474594116,-0.762022018432617,-0.326341271400452,-2.07697677612305,-0.761688709259033,-0.30448305606842,-2.12135696411133,-0.731971740722656,-0.302117943763733,-2.12718200683594,-0.761918067932129,-0.293006539344788,-2.16108179092407,-0.789761543273926,-0.283582329750061,-2.21384572982788,-0.793551445007324,-0.290940880775452,-2.24536371231079,-0.784778594970703,-0.278661370277405,-2.2475528717041,-0.80177116394043,-0.251521706581116,-2.27140665054321,-0.825989723205566,-0.232609391212463,-2.31377220153809,-0.827277183532715,-0.235957741737366,-2.33895778656006,-0.821890830993652,-0.213464856147766,-2.33627653121948,-0.834720611572266,-0.177198529243469,-2.35498285293579,-0.850807189941406,-0.154811084270477,-2.38534021377563,-0.843155860900879,-0.144603371620178,-2.4164776802063,-0.821959495544434,-0.110827088356018,-2.40502882003784,-0.853389739990234,-0.0688664019107819,-2.41645860671997,-0.867884635925293,-0.404842138290405,-1.48214721679688,-0.753559589385986,-0.317481637001038, --1.4450888633728,-0.792745113372803,-0.363614678382874,-1.77406692504883,-0.854918479919434,-0.34352171421051,-1.8912296295166,-0.880527973175049,-0.323712944984436,-2.00285720825195,-0.891903400421143,-0.287537217140198,-2.07749223709106,-0.908115386962891,-0.273172974586487,-2.14230298995972,-0.910639762878418,-0.236746430397034,-2.20214414596558,-0.9229736328125,-0.212586998939514,-2.2526421546936,-0.924432754516602,-0.170769393444061,-2.29517889022827,-0.931449890136719,-0.13405579328537,-2.33102750778198,-0.933149337768555,-0.0819222033023834,-2.35910701751709,-0.94012451171875,-0.0465866476297379,-2.38474416732788,-0.939418792724609,-0.016392856836319,-2.44054937362671,-0.944055557250977,-0.0164457857608795,-2.44002914428711,-0.986874580383301,-0.016787201166153,-2.4533052444458,-0.897493362426758,-0.0162135660648346,-2.45943737030029,-0.878328323364258,-0.0131875574588776,-2.47273254394531,-0.859189987182617,-0.0123445093631744,-2.50686883926392,-0.799599647521973,-0.0126315653324127,-2.55658769607544,-0.707212448120117,-0.0127574503421783,-2.5756983757019,-0.662572860717773,-0.0124708712100983,-2.56647920608521,-0.653743743896484,-0.0102860033512115,-2.54540777206421,-0.657076835632324,-0.00806441903114319,-2.52018213272095,-0.70041561126709,-0.00913920998573303,-2.4735221862793,-0.792144775390625,-0.0129367411136627,-2.443922996521,-0.85200309753418,-0.0147444307804108,-2.44274091720581,-0.874410629272461,-0.014261394739151,-2.41707324981689,-0.928986549377441,-0.0127030909061432,-2.3856201171875,-0.950827598571777,-0.0266725122928619,-2.35730028152466,-0.960492134094238,-0.0455133020877838,-2.3258843421936,-0.968120574951172,-0.0631348192691803,-2.29000759124756,-0.975919723510742,-0.0782682001590729,-2.25513219833374,-0.982951164245605,-0.0933658182621002,-2.21126651763916,-0.99111270904541,-0.107084393501282,-2.15102291107178,-0.995391845703125,-0.121626019477844,-2.08003902435303,-0.995287895202637,-0.137511909008026,-1.98969650268555,-0.991882801055908,-0.152089238166809,-1.8786563873291,-0.974576473236084, --0.167813420295715,-1.78104496002197,-0.943948745727539,0.0268934667110443,-2.44054937362671,-0.944055557250977,0.0269649922847748,-2.44002914428711,-0.986874580383301,0.0272873342037201,-2.4533052444458,-0.897493362426758,0.0267327725887299,-2.45943737030029,-0.878328323364258,0.0236881673336029,-2.47273254394531,-0.859189987182617,0.0228637158870697,-2.50686883926392,-0.799599647521973,0.0231331288814545,-2.55658769607544,-0.707212448120117,0.0232580602169037,-2.5756983757019,-0.662572860717773,0.0229710042476654,-2.56647920608521,-0.653743743896484,0.0207866132259369,-2.54540777206421,-0.657076835632324,0.0185831487178802,-2.52018213272095,-0.70041561126709,0.0196584165096283,-2.4735221862793,-0.792144775390625,0.0234554708003998,-2.443922996521,-0.85200309753418,0.0252459943294525,-2.44274091720581,-0.874410629272461,0.0247629582881927,-2.41707324981689,-0.928986549377441,0.0232222974300385,-2.3856201171875,-0.950827598571777,0.0371731221675873,-2.35730028152466,-0.960492134094238,0.056013435125351,-2.3258843421936,-0.968120574951172,0.0736368596553802,-2.29000759124756,-0.975919723510742,0.0887702405452728,-2.25513219833374,-0.982951164245605,0.103866457939148,-2.21126651763916,-0.99111270904541,0.117603659629822,-2.15102291107178,-0.995391845703125,0.132145285606384,-2.08003902435303,-0.995287895202637,0.14801299571991,-1.98969650268555,-0.991882801055908,0.162591278553009,-1.8786563873291,-0.974576473236084,0.178333103656769,-1.78104496002197,-0.943948745727539,0.49179744720459,-1.39636039733887,-0.624161720275879,0.499766111373901,-1.40305185317993,-0.602407455444336,0.500913143157959,-1.41518306732178,-0.55069637298584,0.506266832351685,-1.4367356300354,-0.449511051177979,0.50021505355835,-1.40488767623901,-0.589849472045898,0.452110528945923,-1.35704374313354,-0.71063232421875,-0.48924708366394,-1.40305185317993,-0.602407455444336,-0.481295347213745,-1.39636039733887,-0.624161720275879,-0.495766878128052,-1.4367356300354,-0.449511051177979,-0.490393877029419,-1.41518306732178,-0.55069637298584,-0.489695310592651, --1.40488767623901,-0.589849472045898,-0.441303968429565,-1.35754299163818,-0.71074390411377,0.561678409576416,-1.46609401702881,-0.457876682281494,0.554119825363159,-1.4730052947998,-0.420588493347168,0.535423278808594,-1.47091960906982,-0.41229772567749,0.520057439804077,-1.46625757217407,-0.415293216705322,0.504172563552856,-1.45316457748413,-0.456364154815674,0.500268220901489,-1.43089056015015,-0.554247379302979,0.499964237213135,-1.420729637146,-0.593490123748779,0.499569892883301,-1.4189133644104,-0.605982303619385,0.491331577301025,-1.41350126266479,-0.627267360687256,0.451948881149292,-1.39460134506226,-0.711709976196289,-0.441376447677612,-1.39468812942505,-0.711721897125244,-0.480830907821655,-1.41350126266479,-0.627267360687256,-0.489050626754761,-1.4189133644104,-0.605982303619385,-0.489461660385132,-1.420729637146,-0.593490123748779,-0.48974871635437,-1.43089056015015,-0.554247379302979,-0.493654012680054,-1.45316457748413,-0.456364154815674,-0.509557485580444,-1.46625757217407,-0.415293216705322,-0.524904012680054,-1.47091960906982,-0.41229772567749,-0.543601274490356,-1.4730052947998,-0.420588493347168,-0.551177263259888,-1.46609401702881,-0.457876682281494,-0.549566030502319,-1.44525241851807,-0.554394721984863,0.560084342956543,-1.44525241851807,-0.554394721984863,-0.469923734664917,-1.40451240539551,-0.664018630981445,-0.470102071762085,-1.37955808639526,-0.66314172744751,0.480425357818604,-1.40451240539551,-0.664018630981445,0.480604648590088,-1.37955808639526,-0.66314172744751,0.00525888800621033,-1.86600589752197,-0.991518020629883,-0.168745160102844,-1.57679748535156,-0.864360809326172,-0.273172974586487,-1.38608407974243,-0.781580448150635,0.00504526495933533,-1.59836912155151,-0.854374408721924,-0.156352698802948,-1.51754283905029,-0.826969623565674,0.309481024742126,-1.26531600952148,-0.737883567810059,0.282671332359314,-1.38775682449341,-0.781966686248779,0.3624027967453,-1.22106742858887,-0.733378887176514,0.3370441198349,-1.21104097366333,-0.72376012802124,-0.402799367904663,-1.11181497573853, --0.716991424560547,-0.374878525733948,-1.10577869415283,-0.704833984375,-0.297996163368225,-1.26696920394897,-0.738265991210938,-0.350702881813049,-1.22305679321289,-0.733831405639648,-0.325737595558167,-1.21236705780029,-0.724078178405762,0.413318395614624,-1.11181497573853,-0.716991424560547,0.385380625724792,-1.10577869415283,-0.704833984375,0.0847767293453217,-2.50681066513062,-0.804494857788086,0.0776303708553314,-2.45325708389282,-0.875676155090332,0.327709555625916,-2.36272096633911,-0.776165008544922,0.298932909965515,-2.31588697433472,-0.836111068725586,0.340796709060669,-2.11001586914063,-0.683520317077637,0.403010606765747,-2.0698709487915,-0.770824909210205,0.220186591148376,-2.50853157043457,-0.64634895324707,0.251079916954041,-2.4963526725769,-0.661324501037598,0.222390055656433,-2.49244022369385,-0.693721771240234,0.19540011882782,-2.50581073760986,-0.66414737701416,0.222533106803894,-2.50488901138306,-0.663297653198242,0.226687788963318,-2.34322547912598,-0.923625946044922,0.236233115196228,-2.3425440788269,-0.887932777404785,0.105550646781921,-2.41118144989014,-0.939693450927734,0.10916793346405,-2.41446781158447,-0.980607986450195,0.310074687004089,-2.30851125717163,-0.579092025756836,0.291911363601685,-2.27931356430054,-0.583432197570801,0.318413496017456,-2.29776620864868,-0.625552177429199,0.333422064781189,-2.32750988006592,-0.606213569641113,0.318021059036255,-2.30705070495605,-0.595730781555176,0.362742781639099,-2.13465118408203,-0.881549835205078,0.362639307975769,-2.13872098922729,-0.841455459594727,0.310591578483582,-2.25334358215332,-0.901966094970703,0.321033358573914,-2.25436210632324,-0.944185256958008,0.315024614334106,-1.93252038955688,-0.494592666625977,0.378920316696167,-1.88625192642212,-0.506044387817383,0.351052522659302,-1.92573499679565,-0.539878368377686,0.293904066085815,-1.96706295013428,-0.514840602874756,0.332898378372192,-1.93163394927979,-0.510601997375488,0.505604982376099,-1.800377368927,-0.800145626068115,0.505015850067139,-1.77737522125244,-0.764013290405273,0.436367750167847, --1.99938631057739,-0.843911170959473,0.445358991622925,-1.99332046508789,-0.884467601776123,0.594076156616211,-1.54588174819946,-0.55311918258667,0.595025062561035,-1.566819190979,-0.476658344268799,0.557898759841919,-1.45805788040161,-0.634053230285645,0.558418989181519,-1.45214509963989,-0.656993865966797,0.562537431716919,-1.58823680877686,-0.792141914367676,0.551774740219116,-1.59566831588745,-0.752939701080322,0.089719146490097,-2.57351589202881,-0.661554336547852,0.128653347492218,-2.55809688568115,-0.675373077392578,0.0906136929988861,-2.55755805969238,-0.707575798034668,0.055781215429306,-2.57582330703735,-0.67951774597168,0.0917604863643646,-2.56925678253174,-0.677947998046875,0.16015613079071,-2.51454019546509,-0.652350425720215,0.163719534873962,-2.49834251403809,-0.665546417236328,0.166047394275665,-2.49930286407471,-0.69493293762207,0.163378596305847,-2.52860355377197,-0.669269561767578,0.163540720939636,-2.51050186157227,-0.667054176330566,0.164166808128357,-2.45666933059692,-0.78886604309082,0.152275860309601,-2.4284930229187,-0.839338302612305,0.355722784996033,-2.42739343643188,-0.62586498260498,0.369767546653748,-2.40328407287598,-0.637063026428223,0.35205066204071,-2.41308641433716,-0.674263000488281,0.336092352867126,-2.43716144561768,-0.647872924804688,0.357758402824402,-2.42445278167725,-0.643607139587402,0.325607657432556,-2.34702920913696,-0.601953506469727,0.310623526573181,-2.33241510391235,-0.612625122070313,0.323302149772644,-2.33119678497314,-0.643635749816895,0.352397799491882,-2.35957670211792,-0.621108055114746,0.326637625694275,-2.34269666671753,-0.615764617919922,0.330747961997986,-2.28181600570679,-0.746065139770508,0.32960307598114,-2.25570249557495,-0.792372703552246,0.204242467880249,-2.1655535697937,-0.5245361328125,0.223368406295776,-2.12752485275269,-0.534116744995117,0.237951517105103,-2.1560115814209,-0.572882652282715,0.219402551651001,-2.18648719787598,-0.548247337341309,0.221442461013794,-2.16425704956055,-0.541080474853516,0.206536054611206,-2.01321744918823,-0.508626937866211, -0.219524145126343,-1.99767065048218,-0.522127151489258,0.24556040763855,-2.00499725341797,-0.549942493438721,0.234331846237183,-2.03549861907959,-0.521885395050049,0.222700357437134,-2.01134586334229,-0.521472454071045,0.382323503494263,-1.97300577163696,-0.66042947769165,0.437723398208618,-1.9515495300293,-0.719440460205078,0.571239233016968,-1.66284036636353,-0.456752777099609,0.584195137023926,-1.61743354797363,-0.46259880065918,0.586380243301392,-1.65565872192383,-0.496241092681885,0.572424173355103,-1.69876432418823,-0.479397296905518,0.581680059432983,-1.66075658798218,-0.471248149871826,0.588556051254272,-1.63693714141846,-0.573339462280273,0.567264795303345,-1.61603784561157,-0.667347431182861,0.28701913356781,-2.44524240493774,-0.636272430419922,0.290665507316589,-2.43056440353394,-0.64973258972168,0.289761900901794,-2.42830038070679,-0.679451942443848,0.290605902671814,-2.45864009857178,-0.653314590454102,0.290124297142029,-2.44051456451416,-0.650955200195313,0.278194785118103,-2.38093852996826,-0.777554512023926,0.264994978904724,-2.34949445724487,-0.82677173614502,0.2170170545578,-2.43940544128418,-0.794582366943359,0.209280848503113,-2.38686943054199,-0.860172271728516,0.238310217857361,-2.34673404693604,-0.965042114257813,0.171974956989288,-2.38090038299561,-0.928115844726563,0.185246288776398,-2.37940979003906,-0.972551345825195,0.173086047172546,-2.39980888366699,-0.870671272277832,0.0160044133663177,-2.44385528564453,-0.943899154663086,0.016040176153183,-2.44321060180664,-0.987460136413574,0.0159328877925873,-2.45976495742798,-0.869391441345215,0.0162380635738373,-2.4539680480957,-0.891378402709961,0.108218550682068,-2.41766881942749,-0.907773971557617,0.210286021232605,-2.21318817138672,-0.549663543701172,0.19590699672699,-2.19646596908569,-0.558761596679688,0.223663568496704,-2.20129299163818,-0.58798885345459,0.247616052627563,-2.23077344894409,-0.565226554870605,0.216336965560913,-2.21043539047241,-0.561392784118652,0.303867697715759,-2.15580463409424,-0.694391250610352,0.342938780784607,-2.13287305831909, --0.743549346923828,0.340723395347595,-2.25082302093506,-0.727642059326172,0.348650813102722,-2.20272493362427,-0.814597129821777,0.371231913566589,-2.13677597045898,-0.918985366821289,0.332637667655945,-2.19979906082153,-0.887105941772461,0.342613101005554,-2.198655128479,-0.931358337402344,0.330037951469421,-2.22014474868774,-0.82987117767334,0.271371245384216,-2.3050422668457,-0.912044525146484,0.286002993583679,-2.30820465087891,-0.956408500671387,0.267753005027771,-2.32071256637573,-0.859456062316895,0.312723517417908,-2.25943756103516,-0.856340408325195,0.488466739654541,-1.77213573455811,-0.482227802276611,0.510054588317871,-1.74814987182617,-0.494137287139893,0.506460428237915,-1.76250457763672,-0.518965244293213,0.485796689987183,-1.79648113250732,-0.494851589202881,0.499096393585205,-1.76913928985596,-0.494542121887207,0.528946161270142,-1.73926115036011,-0.605851173400879,0.523921012878418,-1.7234411239624,-0.666079044342041,0.43913197517395,-1.89626932144165,-0.640592098236084,0.487460851669312,-1.86827993392944,-0.740581512451172,0.516905307769775,-1.80047416687012,-0.840263843536377,0.471738338470459,-1.91434049606323,-0.821704387664795,0.482932806015015,-1.90754413604736,-0.864780902862549,0.463125228881836,-1.91799449920654,-0.761555671691895,0.397398352622986,-2.072829246521,-0.857022762298584,0.407999753952026,-2.07075309753418,-0.902136325836182,0.383761286735535,-2.091383934021,-0.791407108306885,0.440531969070435,-1.99651050567627,-0.798112869262695,0.576846599578857,-1.47755241394043,-0.550680637359619,0.577706813812256,-1.50041246414185,-0.463860034942627,0.56561803817749,-1.46378707885742,-0.613492488861084,0.556000947952271,-1.51688957214355,-0.677169322967529,0.572369575500488,-1.52344512939453,-0.646178245544434,0.568340063095093,-1.43015956878662,-0.755860328674316,0.558812856674194,-1.43969678878784,-0.713733673095703,0.565582275390625,-1.49615287780762,-0.770961284637451,0.555928707122803,-1.5048246383667,-0.731787204742432,0.556126594543457,-1.51355314254761,-0.693394660949707,0.550879001617432, --1.60724115371704,-0.697805404663086,0.551254272460938,-1.60389709472656,-0.714036464691162,0.00525888800621033,-2.55708694458008,-0.675333023071289,0.0136764943599701,-2.56784391403198,-0.660787582397461,0.0232222974300385,-2.57044982910156,-0.67855167388916,0.0136946141719818,-2.54788780212402,-0.705222129821777,0.0136588513851166,-2.56208610534668,-0.676555633544922,0.0689805448055267,-2.4296760559082,-0.984070777893066,0.0683172643184662,-2.42704248428345,-0.943315505981445,0.0694092214107513,-2.43959617614746,-0.898846626281738,0.0686753690242767,-2.43597221374512,-0.911855697631836,0.0135873258113861,-2.49859189987183,-0.796743392944336,0.0140703618526459,-2.47076225280762,-0.851597785949707,0.150555968284607,-2.39648342132568,-0.976492881774902,0.140795111656189,-2.39668464660645,-0.932313919067383,0.14471846818924,-2.48317193984985,-0.801197052001953,0.153026878833771,-2.53254461288452,-0.702142715454102,0.145918250083923,-2.41980409622192,-0.855216026306152,0.143660366535187,-2.41231441497803,-0.877220153808594,0.110887885093689,-2.42059135437012,-0.894767761230469,0.125734686851501,-2.4345121383667,-0.872429847717285,0.176917910575867,-2.44711494445801,-0.786191940307617,0.176219761371613,-2.48963212966919,-0.692811012268066,0.212486147880554,-2.36323070526123,-0.968817710876465,0.200146555900574,-2.36199140548706,-0.928055763244629,0.17415988445282,-2.40888357162476,-0.847746849060059,0.175467312335968,-2.41915941238403,-0.833086967468262,0.205573439598083,-2.37022924423218,-0.880589485168457,0.205017447471619,-2.36699962615967,-0.894906044006348,0.263132929801941,-2.32984447479248,-0.961262702941895,0.249933123588562,-2.32548093795776,-0.916573524475098,0.262380480766296,-2.41104650497437,-0.791394233703613,0.275221705436707,-2.46566724777222,-0.688097953796387,0.239187598228455,-2.34359216690063,-0.872794151306152,0.246727824211121,-2.35929012298584,-0.853756904602051,0.258620142936707,-2.33876609802246,-0.841955184936523,0.254715323448181,-2.3333535194397,-0.862983703613281,0.291958212852478,-2.37801265716553, --0.77543830871582,0.306888461112976,-2.42377758026123,-0.677916526794434,0.306060671806335,-2.28166389465332,-0.95041561126709,0.292611479759216,-2.28033638000488,-0.908790588378906,0.287828803062439,-2.29902410507202,-0.853301048278809,0.288921236991882,-2.29311275482178,-0.869071006774902,0.267950892448425,-2.32961368560791,-0.838911056518555,0.274415850639343,-2.34307241439819,-0.8243408203125,0.33247697353363,-2.22717571258545,-0.937914848327637,0.323020339012146,-2.22703218460083,-0.893002510070801,0.344230055809021,-2.31502485275269,-0.762221336364746,0.360972285270691,-2.36766242980957,-0.659042358398438,0.326330065727234,-2.24740552902222,-0.806187629699707,0.32560670375824,-2.23915147781372,-0.831114768981934,0.314972281455994,-2.26322317123413,-0.838253021240234,0.324934840202332,-2.27556133270264,-0.821155548095703,0.332285284996033,-2.27699756622314,-0.736760139465332,0.320566058158875,-2.32256603240967,-0.638310432434082,0.354611754417419,-2.16765213012695,-0.926045417785645,0.345603823661804,-2.16720151901245,-0.889534950256348,0.328050494194031,-2.23146104812622,-0.806586265563965,0.331635355949402,-2.24406290054321,-0.790267944335938,0.34193217754364,-2.18711996078491,-0.838723182678223,0.343222975730896,-2.18022632598877,-0.854977607727051,0.389642596244812,-2.10601329803467,-0.910177230834961,0.38006055355072,-2.1050910949707,-0.86341381072998,0.326147437095642,-2.19604444503784,-0.70857048034668,0.274375200271606,-2.24338054656982,-0.602705955505371,0.361152529716492,-2.14166402816772,-0.822793960571289,0.363983988761902,-2.15259313583374,-0.798236846923828,0.350249171257019,-2.12644958496094,-0.758292198181152,0.368384718894958,-2.11809825897217,-0.789863586425781,0.308029413223267,-2.13985395431519,-0.690369606018066,0.215113401412964,-2.1853141784668,-0.581753730773926,0.426285982131958,-2.03140735626221,-0.89315938949585,0.415969133377075,-2.0376181602478,-0.853024482727051,0.405425786972046,-2.05599594116211,-0.79594612121582,0.410980939865112,-2.0503101348877,-0.812906265258789,0.366223216056824, --2.1013765335083,-0.763328552246094,0.356718897819519,-2.11134433746338,-0.74674129486084,0.465005159378052,-1.95253276824951,-0.875113487243652,0.455585718154907,-1.95770454406738,-0.831377983093262,0.373465776443481,-2.03143358230591,-0.669095516204834,0.254598379135132,-2.07014179229736,-0.559382438659668,0.444444894790649,-1.94654941558838,-0.737479209899902,0.45513129234314,-1.94973850250244,-0.765462398529053,0.438905000686646,-1.99473714828491,-0.77866792678833,0.438239812850952,-2.00241708755493,-0.753649711608887,0.39339804649353,-1.95367860794067,-0.65428352355957,0.269922018051147,-1.98217678070068,-0.547348499298096,0.498692512512207,-1.86239147186279,-0.85438060760498,0.487320423126221,-1.86710071563721,-0.815366268157959,0.450176954269409,-1.92026996612549,-0.736516952514648,0.444410085678101,-1.92934370040894,-0.717677593231201,0.480393171310425,-1.85937309265137,-0.769114971160889,0.48293662071228,-1.86156892776489,-0.783456325531006,0.542855501174927,-1.7218770980835,-0.822422504425049,0.528386116027832,-1.72187662124634,-0.776749610900879,0.502303600311279,-1.80169248580933,-0.623739242553711,0.45310640335083,-1.83009195327759,-0.528039455413818,0.503582954406738,-1.77253818511963,-0.749404907226563,0.515071868896484,-1.77815103530884,-0.720667362213135,0.515941381454468,-1.71928691864014,-0.684837341308594,0.521735906600952,-1.7171893119812,-0.708558082580566,0.034022182226181,-2.51203012466431,-0.801788330078125,0.0345581471920013,-2.56236457824707,-0.708492279052734,0.568787574768066,-1.51701402664185,-0.42070198059082,0.557128667831421,-1.49259757995605,-0.433334827423096,0.592338562011719,-1.53665351867676,-0.442527294158936,0.575360059738159,-1.5103325843811,-0.436161041259766,0.173246741294861,-2.50360012054443,-0.649944305419922,0.175074398517609,-2.50019693374634,-0.664726257324219,0.27196204662323,-2.48375844955444,-0.640424728393555,0.275615572929382,-2.47911691665649,-0.657379150390625,0.147637188434601,-2.54905080795288,-0.655697822570801,0.15215003490448,-2.5445032119751,-0.672258377075195, -0.307910799980164,-2.43741750717163,-0.63404655456543,0.309606432914734,-2.4343695640564,-0.649261474609375,0.366397261619568,-2.38535451889038,-0.612029075622559,0.367982745170593,-2.38058137893677,-0.629014015197754,0.316966891288757,-2.33372116088867,-0.596651077270508,0.321334719657898,-2.33173179626465,-0.61053466796875,0.263324499130249,-2.25664758682251,-0.556850433349609,0.270954370498657,-2.25374746322632,-0.572964668273926,0.194872617721558,-2.19412326812744,-0.541936874389648,0.203891038894653,-2.19283437728882,-0.554296493530273,0.210262060165405,-2.08209848403931,-0.510919570922852,0.232050180435181,-2.07898664474487,-0.527376174926758,0.234343767166138,-1.98518991470337,-0.50545597076416,0.249168634414673,-1.98606204986572,-0.519210815429688,0.422097444534302,-1.84217166900635,-0.484842777252197,0.438986539840698,-1.83820152282715,-0.499895095825195,0.581772089004517,-1.57869148254395,-0.438228607177734,0.591299295425415,-1.57422161102295,-0.452140808105469,0.060025542974472,-2.46752262115479,-0.795928955078125,0.0597032010555267,-2.42349529266357,-0.866551399230957,0.26148784160614,-2.32455253601074,-0.766658782958984,0.249700903892517,-2.29248762130737,-0.82902717590332,0.24145495891571,-2.09101629257202,-0.676624298095703,0.339587569236755,-2.05384159088135,-0.766355514526367,0.16962993144989,-2.47299289703369,-0.660392761230469,0.189042389392853,-2.45256423950195,-0.689650535583496,0.215153574943542,-2.46065855026245,-0.658082962036133,0.193538069725037,-2.47986602783203,-0.644015312194824,0.19058358669281,-2.46808958053589,-0.660196304321289,0.189866900444031,-2.33068084716797,-0.908180236816406,0.210337042808533,-2.3218846321106,-0.887642860412598,0.183652222156525,-2.33981323242188,-0.898089408874512,0.196994125843048,-2.32998895645142,-0.89361572265625,0.00524124503135681,-2.37135457992554,-0.959209442138672,0.0190318524837494,-2.35718441009521,-0.964105606079102,0.0286849439144135,-2.37124824523926,-0.956480979919434,0.0131042897701263,-2.38605165481567,-0.952536582946777,0.0153063237667084, --2.37131595611572,-0.958991050720215,0.23198926448822,-2.29566621780396,-0.592319488525391,0.208428263664246,-2.25906181335449,-0.609393119812012,0.187024474143982,-2.24532604217529,-0.567719459533691,0.220267176628113,-2.28073120117188,-0.56574821472168,0.209436774253845,-2.27156639099121,-0.57955265045166,0.317630171775818,-2.13281583786011,-0.862915992736816,0.327365756034851,-2.11541986465454,-0.832209587097168,0.312684416770935,-2.14805316925049,-0.849302291870117,0.319563269615173,-2.13050937652588,-0.842221260070801,0.232722640037537,-2.22684097290039,-0.925421714782715,0.154926657676697,-2.25370931625366,-0.956851959228516,0.0963991582393646,-2.2349534034729,-0.987179756164551,0.179532408714294,-2.206383228302,-0.958685874938965,0.167444050312042,-2.23149299621582,-0.95795726776123,0.174982786178589,-1.93732690811157,-0.503810405731201,0.213306665420532,-1.90235614776611,-0.529620170593262,0.255982637405396,-1.87409067153931,-0.498984813690186,0.217634916305542,-1.91305637359619,-0.486822605133057,0.209072828292847,-1.90892648696899,-0.501048564910889,0.435848951339722,-1.77024078369141,-0.78462553024292,0.450456857681274,-1.72654247283936,-0.755879878997803,0.428875207901001,-1.79951238632202,-0.779139995574951,0.439391374588013,-1.76264953613281,-0.769217967987061,0.34109103679657,-1.94475555419922,-0.889060497283936,0.24328887462616,-1.99460887908936,-0.947708606719971,0.155947089195251,-1.93502712249756,-0.984472751617432,0.265836596488953,-1.88523244857788,-0.931048393249512,0.255413413047791,-1.94078540802002,-0.940012454986572,0.475643157958984,-1.56854677200317,-0.477039337158203,0.474264621734619,-1.54714107513428,-0.553049564361572,0.497564077377319,-1.45311689376831,-0.632599830627441,0.490740776062012,-1.44492626190186,-0.646285533905029,0.0390537679195404,-2.52845907211304,-0.672599792480469,0.0619424283504486,-2.51185750961304,-0.702455520629883,0.0930493772029877,-2.52150011062622,-0.672696113586426,0.0665267407894135,-2.53960132598877,-0.658411026000977,0.0638931691646576,-2.52655601501465, --0.673879623413086,0.138593018054962,-2.49646806716919,-0.659567832946777,0.152042210102081,-2.477126121521,-0.688052177429199,0.156877398490906,-2.48575830459595,-0.662616729736328,0.149482071399689,-2.49819803237915,-0.646571159362793,0.150376677513123,-2.49004554748535,-0.660163879394531,0.150861084461212,-2.43577146530151,-0.783684730529785,0.140705943107605,-2.41221904754639,-0.834694862365723,0.270786166191101,-2.40128135681152,-0.635184288024902,0.268378615379333,-2.37155246734619,-0.661579132080078,0.282387137413025,-2.36876201629639,-0.627018928527832,0.291782736778259,-2.39728879928589,-0.615899085998535,0.278162837028503,-2.38632583618164,-0.631352424621582,0.271220564842224,-2.33512258529663,-0.612953186035156,0.267491221427917,-2.31514453887939,-0.638815879821777,0.272044539451599,-2.32378053665161,-0.609613418579102,0.283470511436462,-2.33707475662231,-0.598667144775391,0.273168444633484,-2.32882118225098,-0.611264228820801,0.290142416954041,-2.26871204376221,-0.743206024169922,0.296990275382996,-2.24719953536987,-0.790243148803711,0.11897599697113,-2.17009735107422,-0.538965225219727,0.109372019767761,-2.13744831085205,-0.562355041503906,0.0842903852462769,-2.10959577560425,-0.523497581481934,0.100011706352234,-2.14791965484619,-0.515311241149902,0.0966657400131226,-2.14482021331787,-0.530392646789551,0.100291132926941,-2.02642631530762,-0.513386249542236,0.132052302360535,-1.99303245544434,-0.542292594909668,0.146757841110229,-1.97915124893188,-0.515334606170654,0.130258798599243,-2.00279188156128,-0.50292444229126,0.123725771903992,-1.99947881698608,-0.514438152313232,0.272492289543152,-1.95836925506592,-0.654126167297363,0.359498381614685,-1.93730688095093,-0.715530872344971,0.450158357620239,-1.6936297416687,-0.476552963256836,0.459626436233521,-1.65259742736816,-0.494791507720947,0.477581739425659,-1.61472177505493,-0.461733818054199,0.479273319244385,-1.65844058990479,-0.455173015594482,0.46612286567688,-1.65665245056152,-0.469601154327393,0.462285280227661,-1.63308715820313,-0.571712493896484, -0.472401857376099,-1.60357904434204,-0.662218570709229,0.249676108360291,-2.43229150772095,-0.644448280334473,0.257521986961365,-2.41069173812866,-0.67328929901123,0.264769911766052,-2.41922521591187,-0.645844459533691,0.261253237724304,-2.43293809890747,-0.631199836730957,0.259135127067566,-2.42463302612305,-0.644810676574707,0.248393893241882,-2.3645486831665,-0.77381420135498,0.238508105278015,-2.33794832229614,-0.826451301574707,0.183920741081238,-2.40700817108154,-0.787113189697266,0.17421418428421,-2.36898899078369,-0.850414276123047,0.162429630756378,-2.31256008148193,-0.933073997497559,0.0980823934078217,-2.32789421081543,-0.952847480773926,0.0651286542415619,-2.30808019638062,-0.972075462341309,0.129243671894073,-2.29241991043091,-0.954689979553223,0.11430823802948,-2.31071424484253,-0.953699111938477,0.1142538189888,-2.34631252288818,-0.938295364379883,0.0640195310115814,-2.35748291015625,-0.951416969299316,0.0465033948421478,-2.34225606918335,-0.964332580566406,0.0809076726436615,-2.34327363967896,-0.952280044555664,0.145792305469513,-2.36250972747803,-0.913409233093262,0.16192901134491,-2.36172199249268,-0.896139144897461,0.141655266284943,-2.38359117507935,-0.886526107788086,0.152526676654816,-2.37397813796997,-0.889501571655273,0.0230072438716888,-2.40194272994995,-0.942131996154785,0.0148948132991791,-2.41996717453003,-0.928825378417969,0.00525888800621033,-2.40419244766235,-0.94334888458252,0.0135687291622162,-2.40348052978516,-0.943228721618652,0.00525888800621033,-2.43405961990356,-0.905642509460449,0.0252102315425873,-2.42782068252563,-0.910006523132324,0.0152700841426849,-2.43201208114624,-0.907140731811523,0.0877669751644135,-2.39243602752686,-0.92324161529541,0.110725700855255,-2.38876342773438,-0.905807495117188,0.0780962407588959,-2.40047264099121,-0.915223121643066,0.094446986913681,-2.39347362518311,-0.912298202514648,0.151840090751648,-2.20468235015869,-0.555715560913086,0.161989569664001,-2.18545818328857,-0.584207534790039,0.159017443656921,-2.19176435470581,-0.556354522705078,0.159834265708923, --2.20314121246338,-0.544508934020996,0.154814124107361,-2.19670295715332,-0.556466102600098,0.262555003166199,-2.14215326309204,-0.691306114196777,0.311025977134705,-2.12555885314941,-0.741876602172852,0.263268828392029,-2.21750640869141,-0.715885162353516,0.295829176902771,-2.18794775009155,-0.794190406799316,0.28713071346283,-2.10891675949097,-0.911759376525879,0.201221346855164,-2.14645576477051,-0.957749366760254,0.124695122241974,-2.11727094650269,-0.995687007904053,0.221135973930359,-2.07831907272339,-0.954107284545898,0.211142897605896,-2.11364603042603,-0.956166744232178,0.260643362998962,-2.17513084411621,-0.920124053955078,0.110797703266144,-2.18282175064087,-0.99387264251709,0.190743803977966,-2.17769861221313,-0.958610534667969,0.294492125511169,-2.18939685821533,-0.876167297363281,0.30006730556488,-2.18486070632935,-0.852852821350098,0.295152544975281,-2.21435499191284,-0.849869728088379,0.297695517539978,-2.20111083984375,-0.850693702697754,0.197943031787872,-2.27623176574707,-0.930154800415039,0.081354945898056,-2.2729058265686,-0.979375839233398,0.142479240894318,-2.27372360229492,-0.955760955810547,0.232203841209412,-2.29031562805176,-0.899093627929688,0.242107748985291,-2.28774785995483,-0.879189491271973,0.230771899223328,-2.31054019927979,-0.878698348999023,0.236520171165466,-2.30062055587769,-0.878338813781738,0.265621542930603,-2.24553728103638,-0.888697624206543,0.280252814292908,-2.23228073120117,-0.861396789550781,0.260427832603455,-2.25790929794312,-0.876933097839355,0.270565390586853,-2.24401807785034,-0.869988441467285,0.361109018325806,-1.79281854629517,-0.490365505218506,0.405509233474731,-1.75451898574829,-0.516368389129639,0.434179067611694,-1.73675584793091,-0.490316390991211,0.412366628646851,-1.76517581939697,-0.478874206542969,0.40472674369812,-1.7613787651062,-0.490610599517822,0.442014455795288,-1.72784090042114,-0.612737655639648,0.461099624633789,-1.710608959198,-0.675798416137695,0.311353445053101,-1.86997365951538,-0.631002902984619,0.401126146316528,-1.84019613265991,-0.72823429107666, -0.17904931306839,-1.57711458206177,-0.864449977874756,0.336327433586121,-1.63372707366943,-0.83582878112793,0.261342406272888,-1.77090358734131,-0.911701202392578,0.116636157035828,-1.73963260650635,-0.945615291595459,0.220562338829041,-1.67303371429443,-0.892379283905029,0.361812472343445,-1.84352111816406,-0.873424530029297,0.166709721088409,-1.82549619674683,-0.964300155639648,0.272123694419861,-1.83511829376221,-0.92310094833374,0.40936017036438,-1.87465620040894,-0.808461666107178,0.414979696273804,-1.85811710357666,-0.785652637481689,0.403637170791626,-1.90606737136841,-0.778592109680176,0.409921884536743,-1.88167667388916,-0.780630588531494,0.309803366661072,-2.04419279098511,-0.904275417327881,0.139989197254181,-2.03777122497559,-0.994746685028076,0.231863856315613,-2.03957843780518,-0.951858520507813,0.346982836723328,-2.06456279754639,-0.848154544830322,0.356282114982605,-2.05432939529419,-0.824145793914795,0.345993399620056,-2.09191560745239,-0.812832355499268,0.352032542228699,-2.07401323318481,-0.817185401916504,0.373077273368835,-2.00045347213745,-0.834243297576904,0.387601733207703,-1.96579933166504,-0.802886009216309,0.368049025535583,-2.01728105545044,-0.821094512939453,0.377481341362,-1.99338912963867,-0.813727378845215,0.491350173950195,-1.5007586479187,-0.463925838470459,0.490167379379272,-1.47726440429688,-0.550476551055908,0.493750095367432,-1.45801830291748,-0.611294746398926,0.490220785140991,-1.50837230682373,-0.674724102020264,0.480908632278442,-1.51750421524048,-0.642655849456787,0.464682579040527,-1.50039339065552,-0.720452308654785,0.476305484771729,-1.46246957778931,-0.692612648010254,0.473260879516602,-1.5383448600769,-0.715193748474121,0.475284814834595,-1.49947023391724,-0.70347261428833,0.46991229057312,-1.61648988723755,-0.726966857910156,0.466577768325806,-1.67158222198486,-0.727922439575195,0.481804847717285,-1.59274578094482,-0.694319248199463,0.00525888800621033,-2.54043769836426,-0.671935081481934,0.0119932591915131,-2.52431631088257,-0.700559616088867,0.0194619596004486,-2.53471803665161, --0.672056198120117,0.0130499303340912,-2.5474066734314,-0.656798362731934,0.0124047696590424,-2.53847646713257,-0.671987533569336,0.0616010129451752,-2.41711187362671,-0.893245697021484,0.0152891576290131,-2.44868183135986,-0.866727828979492,0.0144289433956146,-2.45133447647095,-0.846920967102051,0.118516802787781,-2.49395847320557,-0.695219993591309,0.11377078294754,-2.44919013977051,-0.793328285217285,0.137285530567169,-2.40710496902466,-0.852106094360352,0.0974558293819427,-2.39980936050415,-0.889554977416992,0.100410342216492,-2.40837383270264,-0.863966941833496,0.161229491233826,-2.467369556427,-0.689620971679688,0.16219699382782,-2.42797470092773,-0.782023429870605,0.161427319049835,-2.39723300933838,-0.844936370849609,0.1611407995224,-2.40434551239014,-0.829226493835449,0.173784136772156,-2.35971260070801,-0.872509002685547,0.232651114463806,-2.42979192733765,-0.681017875671387,0.221314787864685,-2.38064050674438,-0.783758163452148,0.202618002891541,-2.33450746536255,-0.865017890930176,0.205662608146667,-2.34299564361572,-0.844207763671875,0.235337138175964,-2.33053779602051,-0.843722343444824,0.261917948722839,-2.39958095550537,-0.669746398925781,0.253722548484802,-2.35569477081299,-0.770268440246582,0.249163508415222,-2.28485536575317,-0.849736213684082,0.243145823478699,-2.32167339324951,-0.840717315673828,0.245026469230652,-2.33008527755737,-0.823554039001465,0.26856791973114,-2.33381366729736,-0.64918041229248,0.278708815574646,-2.28521823883057,-0.754884719848633,0.297697901725769,-2.24147033691406,-0.804941177368164,0.275982737541199,-2.25075817108154,-0.835178375244141,0.27616012096405,-2.25608062744141,-0.815264701843262,0.252433657646179,-2.30157423019409,-0.630448341369629,0.282766699790955,-2.25893640518188,-0.732294082641602,0.299735426902771,-2.22576093673706,-0.805438995361328,0.296798586845398,-2.23390913009644,-0.787835121154785,0.301949381828308,-2.18109464645386,-0.819321632385254,0.167783617973328,-2.20779466629028,-0.590678215026855,0.252463698387146,-2.16581201553345,-0.698309898376465, -0.315992712974548,-2.13699388504028,-0.80350399017334,0.307756781578064,-2.14028596878052,-0.778069496154785,0.322064757347107,-2.12241077423096,-0.757606506347656,0.15547502040863,-2.17700338363647,-0.57680606842041,0.263643145561218,-2.1308536529541,-0.687355041503906,0.357393622398376,-2.0447473526001,-0.793275833129883,0.340071082115173,-2.09365463256836,-0.761488914489746,0.325326323509216,-2.10234832763672,-0.744372367858887,0.0990160703659058,-2.05851554870605,-0.549132347106934,0.244497179985046,-2.01877021789551,-0.662276744842529,0.380139589309692,-1.93359231948853,-0.734086513519287,0.375930190086365,-1.98921918869019,-0.777194499969482,0.354790568351746,-1.99247169494629,-0.750388622283936,0.16375470161438,-1.95497226715088,-0.537292957305908,0.285264372825623,-1.9226541519165,-0.645109176635742,0.392897844314575,-1.88923692703247,-0.733436584472656,0.372574090957642,-1.89667797088623,-0.71235179901123,0.41548752784729,-1.83371019363403,-0.760159969329834,0.311912775039673,-1.82428169250488,-0.522226333618164,0.377791166305542,-1.7938117980957,-0.61884593963623,0.438830614089966,-1.76488590240479,-0.744475841522217,0.428449869155884,-1.76908302307129,-0.712249279022217,0.466635465621948,-1.70695829391479,-0.697120666503906,0.0248344838619232,-2.51626014709473,-0.700325965881348,0.026392787694931,-2.47045516967773,-0.792520523071289,0.486173868179321,-1.53933572769165,-0.443116188049316,0.507253408432007,-1.48744440078735,-0.431804656982422,0.506679773330688,-1.51603317260742,-0.42047643661499,0.496864557266235,-1.50992012023926,-0.436059951782227,0.16149890422821,-2.48720979690552,-0.647692680358887,0.160854160785675,-2.47949028015137,-0.661934852600098,0.238221526145935,-2.45865058898926,-0.635186195373535,0.23490846157074,-2.44651794433594,-0.650847434997559,0.119788467884064,-2.52158641815186,-0.650403022766113,0.11871325969696,-2.50919485092163,-0.665846824645996,0.273995280265808,-2.41930103302002,-0.627572059631348,0.267295241355896,-2.41188812255859,-0.641279220581055,0.29302966594696,-2.36176872253418, --0.604656219482422,0.277599215507507,-2.34998321533203,-0.61962890625,0.263436675071716,-2.31945991516113,-0.590438842773438,0.255162596702576,-2.31296873092651,-0.602756500244141,0.177015662193298,-2.23241949081421,-0.54466724395752,0.16551673412323,-2.22191572189331,-0.559635162353516,0.143078207969666,-2.18638563156128,-0.537412643432617,0.143763899803162,-2.18424415588379,-0.549142837524414,0.0909913778305054,-2.07050657272339,-0.502360820770264,0.0856908559799194,-2.06646919250488,-0.517292499542236,0.165564298629761,-1.96245431900024,-0.498125553131104,0.158800363540649,-1.95961570739746,-0.510147094726563,0.318023920059204,-1.83782720565796,-0.480276584625244,0.308833360671997,-1.8328685760498,-0.494339942932129,0.494262218475342,-1.57855033874512,-0.438172817230225,0.481941223144531,-1.57497453689575,-0.452295780181885,0.00525888800621033,-2.55426979064941,-0.651948928833008,0.0220578610897064,-2.5565390586853,-0.652600288391113,0.0140345990657806,-2.56158638000488,-0.65314769744873,0.0136588513851166,-2.55510711669922,-0.652226448059082,0.0987447202205658,-2.54837799072266,-0.651339530944824,0.0747650563716888,-2.56803703308105,-0.653336524963379,0.0444091260433197,-2.55708646774292,-0.65272045135498,0.0697506368160248,-2.55506801605225,-0.653066635131836,0.142049193382263,-2.51763486862183,-0.640217781066895,0.130264580249786,-2.54413890838623,-0.645783424377441,0.123710513114929,-2.53411245346069,-0.645145416259766,0.156717121601105,-2.49576616287231,-0.645022392272949,0.154227137565613,-2.50917625427246,-0.643274307250977,0.151219189167023,-2.50434970855713,-0.642284393310547,0.177079975605011,-2.49302673339844,-0.637870788574219,0.167391180992126,-2.49839973449707,-0.641836166381836,0.164023756980896,-2.49343061447144,-0.642120361328125,0.225112318992615,-2.48286533355713,-0.634627342224121,0.20745313167572,-2.49904346466064,-0.63533878326416,0.19977080821991,-2.49027681350708,-0.636569023132324,0.260857939720154,-2.45210409164429,-0.623831748962402,0.255897879600525,-2.4762806892395,-0.6280517578125, -0.246118903160095,-2.46851396560669,-0.628467559814453,0.271974921226501,-2.4293851852417,-0.628499984741211,0.274567008018494,-2.44236946105957,-0.626862525939941,0.267101645469666,-2.43857908248901,-0.626379013061523,0.296759486198425,-2.42114162445068,-0.614439964294434,0.292452216148376,-2.4315619468689,-0.623200416564941,0.282838225364685,-2.42594337463379,-0.622597694396973,0.316080451011658,-2.390456199646,-0.604787826538086,0.327857851982117,-2.41761255264282,-0.60981559753418,0.309343218803406,-2.40811252593994,-0.609441757202148,0.304720759391785,-2.35469341278076,-0.592595100402832,0.335198283195496,-2.37921905517578,-0.597529411315918,0.313496470451355,-2.37159967422485,-0.597867965698242,0.286255240440369,-2.33256769180298,-0.594297409057617,0.30776059627533,-2.34554862976074,-0.593133926391602,0.295575976371765,-2.34233045578003,-0.593466758728027,0.259685397148132,-2.31075620651245,-0.578210830688477,0.28900945186615,-2.32727861404419,-0.591007232666016,0.275091052055359,-2.32373809814453,-0.588543891906738,0.214724898338318,-2.26223945617676,-0.553504943847656,0.260839819908142,-2.29534673690796,-0.570769309997559,0.237851500511169,-2.28821086883545,-0.565582275390625,0.178952097892761,-2.22100496292114,-0.53978443145752,0.217050909996033,-2.24569272994995,-0.549327850341797,0.194741129875183,-2.2396445274353,-0.544205665588379,0.163971781730652,-2.19586563110352,-0.544429779052734,0.18359363079071,-2.20907688140869,-0.545167922973633,0.170256495475769,-2.20667886734009,-0.542750358581543,0.134414076805115,-2.17630624771118,-0.523714065551758,0.165720820426941,-2.19027757644653,-0.53803539276123,0.151746153831482,-2.18827199935913,-0.535730361938477,0.104669451713562,-2.11673450469971,-0.510430335998535,0.14160430431366,-2.15642499923706,-0.521963119506836,0.115522742271423,-2.15181541442871,-0.516162872314453,0.123608827590942,-2.03365325927734,-0.498133659362793,0.137357473373413,-2.07689476013184,-0.508514404296875,0.108195662498474,-2.07384061813354,-0.502961158752441,0.163525819778442,-1.98539257049561, --0.503581047058105,0.163026094436646,-2.00873422622681,-0.503893852233887,0.144004106521606,-2.00579833984375,-0.501370906829834,0.197105169296265,-1.9475793838501,-0.485909938812256,0.193760633468628,-1.97472190856934,-0.496933460235596,0.177283525466919,-1.96803522109985,-0.495132446289063,0.282772302627563,-1.88144063949585,-0.485841751098633,0.257343530654907,-1.92351293563843,-0.489091873168945,0.233706712722778,-1.91808128356934,-0.485433578491211,0.389574289321899,-1.80008172988892,-0.472249507904053,0.364304780960083,-1.84097671508789,-0.481503486633301,0.337485551834106,-1.83999729156494,-0.478586673736572,0.454521894454956,-1.74211549758911,-0.477957725524902,0.448060274124146,-1.76999521255493,-0.476347923278809,0.427793741226196,-1.76789379119873,-0.475476264953613,0.485006093978882,-1.69709396362305,-0.457918643951416,0.509492158889771,-1.61752510070801,-0.44773530960083,0.525287628173828,-1.66036367416382,-0.455360412597656,0.500184297561646,-1.65941667556763,-0.453082084655762,0.51758599281311,-1.54581451416016,-0.423294544219971,0.538504123687744,-1.57899188995361,-0.437794208526611,0.514423847198486,-1.57928657531738,-0.435940742492676,0.524266242980957,-1.49697065353394,-0.412285327911377,0.538271188735962,-1.51864814758301,-0.415422916412354,0.521275520324707,-1.51831197738647,-0.415329933166504,0.0519121587276459,-2.57836055755615,-0.655733108520508,0.0351317822933197,-2.580322265625,-0.663393974304199,0.0232761800289154,-2.57360172271729,-0.655695915222168,0.032248817384243,-2.56982421875,-0.653783798217773,0.034022182226181,-2.57790851593018,-0.656074523925781,0.11552506685257,-2.56387376785278,-0.65245532989502,0.0827339589595795,-2.57365083694458,-0.654758453369141,0.15338546037674,-2.53140163421631,-0.644740104675293,0.139291107654572,-2.54903125762939,-0.648073196411133,0.159761786460876,-2.50142765045166,-0.646428108215332,0.157128632068634,-2.51330995559692,-0.645540237426758,0.189042389392853,-2.50696468353271,-0.639470100402832,0.170578837394714,-2.50239896774292,-0.643374443054199,0.241892695426941, --2.49789953231812,-0.635920524597168,0.214706301689148,-2.50583028793335,-0.637816429138184,0.279662489891052,-2.46295690536499,-0.627859115600586,0.264959216117859,-2.48207759857178,-0.631339073181152,0.283988356590271,-2.43445014953613,-0.630284309387207,0.281505942344666,-2.44521903991699,-0.629202842712402,0.325229525566101,-2.43682050704956,-0.62012767791748,0.301504492759705,-2.4359393119812,-0.62617301940918,0.355352282524109,-2.40516185760498,-0.609272956848145,0.34456479549408,-2.42457628250122,-0.614953994750977,0.341081023216248,-2.36451768875122,-0.595955848693848,0.354259371757507,-2.3843355178833,-0.601898193359375,0.302313685417175,-2.33556461334229,-0.595460891723633,0.318647742271423,-2.34752750396729,-0.59520149230957,0.306454062461853,-2.32430934906006,-0.584492683410645,0.304582476615906,-2.33141660690308,-0.591931343078613,0.262614607810974,-2.27658987045288,-0.560977935791016,0.287794470787048,-2.30338859558105,-0.572964668273926,0.222453474998474,-2.23135089874268,-0.545507431030273,0.242690443992615,-2.25266647338867,-0.551253318786621,0.181459784507751,-2.19791030883789,-0.545801162719727,0.198202013969421,-2.21197938919067,-0.545870780944824,0.182950258255005,-2.18484020233154,-0.528356552124023,0.181143164634705,-2.1927490234375,-0.538301467895508,0.168508291244507,-2.12628507614136,-0.515573501586914,0.174027681350708,-2.16205263137817,-0.521413803100586,0.182993173599243,-2.03850364685059,-0.50216817855835,0.174615144729614,-2.08057451248169,-0.507834434509277,0.191477060317993,-1.99443340301514,-0.506526470184326,0.185225248336792,-2.01178359985352,-0.504541873931885,0.248334646224976,-1.96210241317749,-0.490903854370117,0.214285612106323,-1.98092365264893,-0.499186515808105,0.335381269454956,-1.88720750808716,-0.489017009735107,0.28692364692688,-1.92908811569214,-0.489768028259277,0.445993185043335,-1.80174589157104,-0.47439432144165,0.394730806350708,-1.84241056442261,-0.481147766113281,0.487699270248413,-1.74821138381958,-0.479843139648438,0.469846963882446,-1.77191829681396,-0.477379322052002, -0.540197610855103,-1.70007848739624,-0.459413051605225,0.555166482925415,-1.61961507797241,-0.448322296142578,0.550720453262329,-1.66210794448853,-0.454019546508789,0.565314054489136,-1.54493999481201,-0.423103332519531,0.56255578994751,-1.57955646514893,-0.436007976531982,0.543465137481689,-1.49974918365479,-0.413385391235352,0.555266380310059,-1.51899433135986,-0.415493011474609,0.0380156934261322,-2.43777084350586,-0.944278717041016,0.0384458005428314,-2.45125770568848,-0.903614044189453,0.035078376531601,-2.43628072738647,-0.881955146789551,0.486173868179321,-1.40957832336426,-0.644150257110596,0.46333909034729,-1.55885934829712,-0.734324932098389,0.471381425857544,-1.5789794921875,-0.72318172454834,0.444983243942261,-1.6826376914978,-0.766983032226563,0.459925651550293,-1.69732046127319,-0.73998498916626,0.423205137252808,-1.82146835327148,-0.796272754669189,0.420992612838745,-1.83103656768799,-0.784889221191406,0.392204642295837,-1.93921804428101,-0.821137428283691,0.396296858787537,-1.93539810180664,-0.788585662841797,0.361649870872498,-2.02876329421997,-0.841058731079102,0.361190676689148,-2.0365252494812,-0.824996471405029,0.331760287284851,-2.10049533843994,-0.854583263397217,0.33719003200531,-2.10410833358765,-0.820163726806641,0.30767285823822,-2.15703058242798,-0.868982315063477,0.305600047111511,-2.16666650772095,-0.852621078491211,0.280557990074158,-2.21929359436035,-0.881962776184082,0.288921236991882,-2.22355222702026,-0.854068756103516,0.252351641654968,-2.26502370834351,-0.893807411193848,0.25050675868988,-2.27298307418823,-0.879367828369141,0.211106657981873,-2.31208848953247,-0.903470039367676,0.221816420555115,-2.31651163101196,-0.882243156433105,0.172531485557556,-2.3443808555603,-0.911468505859375,0.172137081623077,-2.35038805007935,-0.89896297454834,0.116922676563263,-2.37848615646362,-0.917399406433105,0.127095103263855,-2.38701438903809,-0.894591331481934,0.0638760030269623,-2.40352010726929,-0.925764083862305,0.0465219914913177,-2.41742849349976,-0.914676666259766,0.0615123212337494,-2.40914297103882, --0.915778160095215,0.0377462804317474,-2.45687103271484,-0.886857986450195,0.0349710881710052,-2.46982002258301,-0.865737915039063,0.0321768224239349,-2.43689489364624,-0.857253074645996,0.432481527328491,-1.52991485595703,-0.752892017364502,0.433198213577271,-1.46441125869751,-0.738374710083008,0.45001482963562,-1.51398611068726,-0.737400531768799,0.418530702590942,-1.73897886276245,-0.808925151824951,0.408698320388794,-1.82565021514893,-0.826837539672852,0.423079252243042,-1.79359102249146,-0.80656099319458,0.368241667747498,-1.98542881011963,-0.856669425964355,0.351119875907898,-2.03052377700806,-0.866048336029053,0.363065123558044,-2.01282548904419,-0.852328300476074,0.313510298728943,-2.12532567977905,-0.88270092010498,0.299057841300964,-2.15959692001343,-0.889805793762207,0.309696078300476,-2.14321613311768,-0.878787040710449,0.256792426109314,-2.23934650421143,-0.904219627380371,0.237898707389832,-2.266676902771,-0.909729957580566,0.253319144248962,-2.25381469726563,-0.901643753051758,0.179838001728058,-2.32450914382935,-0.91944408416748,0.154083549976349,-2.3433895111084,-0.923671722412109,0.174052596092224,-2.33553647994995,-0.917708396911621,0.0811584889888763,-2.38422584533691,-0.93168830871582,0.0499423444271088,-2.39796209335327,-0.935338020324707,0.070305198431015,-2.39464616775513,-0.930444717407227,0.400800943374634,-1.39987897872925,-0.746074676513672,0.401731252670288,-1.5676646232605,-0.778822422027588,0.40746283531189,-1.64918422698975,-0.796462535858154,0.392508387565613,-1.89760446548462,-0.843739986419678,0.400299310684204,-1.85933399200439,-0.837283611297607,0.379953265190125,-1.94332361221313,-0.851995468139648,0.330328345298767,-2.07898187637329,-0.877496242523193,0.340302348136902,-2.05362272262573,-0.873402118682861,0.320889830589294,-2.10337972640991,-0.881438732147217,0.277908205986023,-2.20145177841187,-0.899565696716309,0.288670420646667,-2.17991018295288,-0.895973205566406,0.266141772270203,-2.2215723991394,-0.902917861938477,0.209065794944763,-2.29770803451538,-0.916006088256836,0.223589777946472, --2.28199005126953,-0.913816452026367,0.193000197410583,-2.31189632415771,-0.918369293212891,0.11532860994339,-2.36348056793213,-0.929876327514648,0.134455978870392,-2.3530216217041,-0.927509307861328,0.0723107755184174,-2.37182569503784,-0.940762519836426,0.0968826711177826,-2.37384462356567,-0.931382179260254,0.0378364026546478,-2.38520574569702,-0.946127891540527,0.0486348569393158,-2.37119054794312,-0.949752807617188,0.00525888800621033,-2.34132289886475,-0.970083236694336,0.02730593085289,-2.32456731796265,-0.97467041015625,0.0231145322322845,-2.34157228469849,-0.969337463378906,0.00524124503135681,-2.30570650100708,-0.98151969909668,0.0351675450801849,-2.28837299346924,-0.985231399536133,0.0313356816768646,-2.30634021759033,-0.980096817016602,0.00524124503135681,-2.27186822891235,-0.99159049987793,0.0421341359615326,-2.25568866729736,-0.994296073913574,0.0386780202388763,-2.27220392227173,-0.989725112915039,0.00525888800621033,-2.23719310760498,-1.00173759460449,0.0492800176143646,-2.21392965316772,-1.00473690032959,0.045733779668808,-2.236732006073,-0.999672889709473,0.00524124503135681,-2.18670558929443,-1.01036834716797,0.0559414327144623,-2.15379047393799,-1.01054000854492,0.0525930821895599,-2.18576383590698,-1.00833606719971,0.00525888800621033,-2.12028026580811,-1.01324939727783,0.0635894238948822,-2.08111667633057,-1.01151180267334,0.0596311986446381,-2.11951971054077,-1.01137971878052,0.00525888800621033,-2.03657817840576,-1.01347541809082,0.0718449056148529,-1.98677444458008,-1.00920438766479,0.0677264630794525,-2.03684854507446,-1.01157760620117,0.0790093839168549,-1.87047576904297,-0.990476608276367,0.00525888800621033,-1.79387903213501,-0.97270393371582,0.0810321271419525,-1.80607795715332,-0.974995613098145,-0.0671288073062897,-2.45325708389282,-0.875676155090332,-0.0742742121219635,-2.50681066513062,-0.804494857788086,-0.288431763648987,-2.31588697433472,-0.836111068725586,-0.317382454872131,-2.3626856803894,-0.776201248168945,-0.391685247421265,-2.07002067565918,-0.770670890808105,-0.324926137924194, --2.11095714569092,-0.682560920715332,-0.184899032115936,-2.50581073760986,-0.66414737701416,-0.211887955665588,-2.49244022369385,-0.693721771240234,-0.240578293800354,-2.4963526725769,-0.661324501037598,-0.209685921669006,-2.50853157043457,-0.64634895324707,-0.212049603462219,-2.50488901138306,-0.663297653198242,-0.225732445716858,-2.3425440788269,-0.887932777404785,-0.21616804599762,-2.34322547912598,-0.923625946044922,-0.098666787147522,-2.41446781158447,-0.980607986450195,-0.0950485467910767,-2.41118144989014,-0.939693450927734,-0.321247696876526,-2.32785701751709,-0.605854034423828,-0.306055665016174,-2.29814767837524,-0.625157356262207,-0.279237389564514,-2.27973794937134,-0.582993507385254,-0.297800660133362,-2.30887460708618,-0.578716278076172,-0.305430054664612,-2.30747890472412,-0.595287322998047,-0.352182984352112,-2.13871145248413,-0.841464996337891,-0.352243065834045,-2.13465118408203,-0.881549835205078,-0.310532212257385,-2.25436210632324,-0.944185256958008,-0.300073266029358,-2.25334358215332,-0.901966094970703,-0.270902395248413,-1.96856689453125,-0.513379096984863,-0.32893443107605,-1.9270920753479,-0.538566589355469,-0.359253644943237,-1.88728284835815,-0.505053043365479,-0.294007062911987,-1.93376302719116,-0.49338960647583,-0.310916662216187,-1.93298530578613,-0.509294986724854,-0.494492292404175,-1.77737808227539,-0.764010429382324,-0.495104551315308,-1.800377368927,-0.800145626068115,-0.434839963912964,-1.99332046508789,-0.884467601776123,-0.425866842269897,-1.99938631057739,-0.843911170959473,-0.584524869918823,-1.566819190979,-0.476658344268799,-0.583574533462524,-1.54588174819946,-0.55311918258667,-0.547917604446411,-1.45214509963989,-0.656993865966797,-0.547398328781128,-1.45805788040161,-0.634053230285645,-0.541255712509155,-1.59566831588745,-0.752939701080322,-0.552018880844116,-1.58823680877686,-0.792141914367676,-0.0452796667814255,-2.57582330703735,-0.67951774597168,-0.0801130831241608,-2.55755805969238,-0.707575798034668,-0.118152320384979,-2.55809688568115,-0.675373077392578,-0.0792171061038971, --2.57351589202881,-0.661554336547852,-0.0812412798404694,-2.56925678253174,-0.677947998046875,-0.152877509593964,-2.52860355377197,-0.669269561767578,-0.155545353889465,-2.49930286407471,-0.69493293762207,-0.153217434883118,-2.49834251403809,-0.665546417236328,-0.149653553962708,-2.51454019546509,-0.652350425720215,-0.153021037578583,-2.51050186157227,-0.667054176330566,-0.141773819923401,-2.4284930229187,-0.839338302612305,-0.153666138648987,-2.45666933059692,-0.78886604309082,-0.325791954994202,-2.43711948394775,-0.647915840148926,-0.341716408729553,-2.41304731369019,-0.674302101135254,-0.359168648719788,-2.40330505371094,-0.637042999267578,-0.345374703407288,-2.42736196517944,-0.625897407531738,-0.347385048866272,-2.42442607879639,-0.643633842468262,-0.341200470924377,-2.35972166061401,-0.620957374572754,-0.312751412391663,-2.33120441436768,-0.643628120422363,-0.300193428993225,-2.33239698410034,-0.612644195556641,-0.314895272254944,-2.3470721244812,-0.601908683776855,-0.315849900245667,-2.34275674819946,-0.615702629089355,-0.319667458534241,-2.25558614730835,-0.792492866516113,-0.320945382118225,-2.28167104721069,-0.7462158203125,-0.202474355697632,-2.18753433227539,-0.547187805175781,-0.21855092048645,-2.15748977661133,-0.571385383605957,-0.202242612838745,-2.12927007675171,-0.532350540161133,-0.18607497215271,-2.16680574417114,-0.523268699645996,-0.202257394790649,-2.16568279266357,-0.539638519287109,-0.212773561477661,-2.03699588775635,-0.520405769348145,-0.224733114242554,-2.00632858276367,-0.548635482788086,-0.200069665908813,-1.9988169670105,-0.521001815795898,-0.187411546707153,-2.01435041427612,-0.507511615753174,-0.202478170394897,-2.01261043548584,-0.520228862762451,-0.424736738204956,-1.9518461227417,-0.719151973724365,-0.364744901657104,-1.97388124465942,-0.659575462341309,-0.560136079788208,-1.69898366928101,-0.479183197021484,-0.575239896774292,-1.6557445526123,-0.496156215667725,-0.573478937149048,-1.61746215820313,-0.462570667266846,-0.560049295425415,-1.66293239593506,-0.456661701202393,-0.570492029190063, --1.66084861755371,-0.471157073974609,-0.556764841079712,-1.61603784561157,-0.667347431182861,-0.577757596969604,-1.63697719573975,-0.573300361633301,-0.280087113380432,-2.45864009857178,-0.653314590454102,-0.279463410377502,-2.42825841903687,-0.679494857788086,-0.280480980873108,-2.43049573898315,-0.64980411529541,-0.276649117469788,-2.44521188735962,-0.63630485534668,-0.279797196388245,-2.44047927856445,-0.650992393493652,-0.254494309425354,-2.34949445724487,-0.82677173614502,-0.267693161964417,-2.38093852996826,-0.777554512023926,-0.19877827167511,-2.38686943054199,-0.860172271728516,-0.206514954566956,-2.43940544128418,-0.794582366943359,-0.227791428565979,-2.34673404693604,-0.965042114257813,-0.174744307994843,-2.37940979003906,-0.972551345825195,-0.161474406719208,-2.38090038299561,-0.928115844726563,-0.162583947181702,-2.39980888366699,-0.870671272277832,-0.0274969637393951,-2.43777084350586,-0.944278717041016,-0.0276571810245514,-2.43774223327637,-0.986196517944336,-0.00573650002479553,-2.4539680480957,-0.891378402709961,-0.00543227791786194,-2.45976495742798,-0.869391441345215,-0.0977179110050201,-2.41766881942749,-0.907773971557617,-0.233925342559814,-2.23131895065308,-0.564672470092773,-0.210331559181213,-2.20177173614502,-0.587499618530273,-0.182702660560608,-2.19691228866577,-0.558309555053711,-0.197226643562317,-2.21360969543457,-0.549236297607422,-0.202924847602844,-2.21091794967651,-0.560905456542969,-0.332472443580627,-2.13290166854858,-0.74351692199707,-0.292226433753967,-2.15605068206787,-0.694135665893555,-0.338374733924866,-2.2026743888855,-0.81464958190918,-0.329929947853088,-2.25088596343994,-0.72757625579834,-0.360731720924377,-2.13677597045898,-0.918985366821289,-0.332112908363342,-2.198655128479,-0.931358337402344,-0.322137475013733,-2.19979906082153,-0.887105941772461,-0.319779992103577,-2.22009038925171,-0.829927444458008,-0.275484681129456,-2.30820465087891,-0.956408500671387,-0.26086962223053,-2.3050422668457,-0.912044525146484,-0.257253289222717,-2.32071256637573,-0.859456062316895,-0.302221894264221, --2.25943756103516,-0.856340408325195,-0.469220876693726,-1.79712104797363,-0.494242191314697,-0.491422891616821,-1.76300144195557,-0.518490314483643,-0.495739221572876,-1.74857521057129,-0.493729591369629,-0.473337888717651,-1.77263355255127,-0.481752872467041,-0.483818769454956,-1.76965522766113,-0.494049549102783,-0.512704610824585,-1.7235221862793,-0.666001796722412,-0.516058206558228,-1.73953199386597,-0.605590343475342,-0.476130247116089,-1.86836576461792,-0.740499019622803,-0.421391248703003,-1.89708185195923,-0.639813899993896,-0.506404638290405,-1.80047416687012,-0.840263843536377,-0.472413778305054,-1.90754413604736,-0.864780902862549,-0.461237668991089,-1.91434049606323,-0.821704387664795,-0.451955556869507,-1.91807174682617,-0.761481285095215,-0.397480607032776,-2.07075309753418,-0.902136325836182,-0.386895775794983,-2.072829246521,-0.857022762298584,-0.373180985450745,-2.09140968322754,-0.791378974914551,-0.429778814315796,-1.99654197692871,-0.798081398010254,-0.567188024520874,-1.50041246414185,-0.463860034942627,-0.566346883773804,-1.47755241394043,-0.550680637359619,-0.555117845535278,-1.46378707885742,-0.613492488861084,-0.561851263046265,-1.52344512939453,-0.646178245544434,-0.545500516891479,-1.51688957214355,-0.677169322967529,-0.548311471939087,-1.43969678878784,-0.713733673095703,-0.55784010887146,-1.43015956878662,-0.755860328674316,-0.545428991317749,-1.5048246383667,-0.731787204742432,-0.555082082748413,-1.49615287780762,-0.770961284637451,-0.545624971389771,-1.51355314254761,-0.693394660949707,-0.540754556655884,-1.60389709472656,-0.714036464691162,-0.54037880897522,-1.60724115371704,-0.697805404663086,-0.00319305062294006,-2.54788780212402,-0.705222129821777,-0.0127216875553131,-2.57044982910156,-0.67855167388916,-0.00317588448524475,-2.56784391403198,-0.660787582397461,-0.00315728783607483,-2.56208610534668,-0.676555633544922,-0.0578166544437408,-2.42704248428345,-0.943315505981445,-0.058478981256485,-2.4296760559082,-0.984070777893066,-0.0581752359867096,-2.43597221374512,-0.911855697631836, --0.0589090883731842,-2.43959617614746,-0.898846626281738,-0.00357022881507874,-2.47076225280762,-0.851597785949707,-0.00308576226234436,-2.49859189987183,-0.796743392944336,-0.130294024944305,-2.39668464660645,-0.932313919067383,-0.140054821968079,-2.39648342132568,-0.976492881774902,-0.142526268959045,-2.53254461288452,-0.702142715454102,-0.134216010570526,-2.48317193984985,-0.801197052001953,-0.133159816265106,-2.41231441497803,-0.877220153808594,-0.135416150093079,-2.41980409622192,-0.855216026306152,-0.115232646465302,-2.4345121383667,-0.872429847717285,-0.100385844707489,-2.42059135437012,-0.894767761230469,-0.165718674659729,-2.48963212966919,-0.692811012268066,-0.166416823863983,-2.44711494445801,-0.786191940307617,-0.18964546918869,-2.36199140548706,-0.928055763244629,-0.201983571052551,-2.36323070526123,-0.968817710876465,-0.164966225624084,-2.41915941238403,-0.833086967468262,-0.163640141487122,-2.40888357162476,-0.847746849060059,-0.194516360759735,-2.36699962615967,-0.894906044006348,-0.195071339607239,-2.37022924423218,-0.880589485168457,-0.239413857460022,-2.32548093795776,-0.916573524475098,-0.252630829811096,-2.32984447479248,-0.961262702941895,-0.264719605445862,-2.46566724777222,-0.688097953796387,-0.251880288124084,-2.41104650497437,-0.791394233703613,-0.236227631568909,-2.35929012298584,-0.853756904602051,-0.228686928749084,-2.34359216690063,-0.872794151306152,-0.244196534156799,-2.3333535194397,-0.862983703613281,-0.248118996620178,-2.33876609802246,-0.841955184936523,-0.296668648719788,-2.42371559143066,-0.677981376647949,-0.281466126441956,-2.37800598144531,-0.775444030761719,-0.28210985660553,-2.28033638000488,-0.908790588378906,-0.295560479164124,-2.28166389465332,-0.95041561126709,-0.27842104434967,-2.29311275482178,-0.869071006774902,-0.277329087257385,-2.29902410507202,-0.853301048278809,-0.263914704322815,-2.34307241439819,-0.8243408203125,-0.257448792457581,-2.32961368560791,-0.838911056518555,-0.312520623207092,-2.22703218460083,-0.893002510070801,-0.321975350379944,-2.22717571258545, --0.937914848327637,-0.350190758705139,-2.36772060394287,-0.658982276916504,-0.33408796787262,-2.31495046615601,-0.762297630310059,-0.315322518348694,-2.23910284042358,-0.831164360046387,-0.316309571266174,-2.24730634689331,-0.806290626525879,-0.314669251441956,-2.27551174163818,-0.821206092834473,-0.304584145545959,-2.26319932937622,-0.838276863098145,-0.30963671207428,-2.32265090942383,-0.638221740722656,-0.322329163551331,-2.27688503265381,-0.736878395080566,-0.335103631019592,-2.16720151901245,-0.889534950256348,-0.34409487247467,-2.16765213012695,-0.926045417785645,-0.321715950965881,-2.24394178390503,-0.790392875671387,-0.31804621219635,-2.23135709762573,-0.806693077087402,-0.332757592201233,-2.18021583557129,-0.854989051818848,-0.331587433815002,-2.18708753585815,-0.838756561279297,-0.369560837745667,-2.1050910949707,-0.86341381072998,-0.379124283790588,-2.10601329803467,-0.910177230834961,-0.261271119117737,-2.24386215209961,-0.602211952209473,-0.314422249794006,-2.19630002975464,-0.708305358886719,-0.353587746620178,-2.15257883071899,-0.798252105712891,-0.350739121437073,-2.14164590835571,-0.822813987731934,-0.358025193214417,-2.11808681488037,-0.789874076843262,-0.340017914772034,-2.12642955780029,-0.758309364318848,-0.200505018234253,-2.18599510192871,-0.581063270568848,-0.295480370521545,-2.14025831222534,-0.689952850341797,-0.405468702316284,-2.0376181602478,-0.853024482727051,-0.415766477584839,-2.03140735626221,-0.89315938949585,-0.400401830673218,-2.05032920837402,-0.812886714935303,-0.39470362663269,-2.05604076385498,-0.795899868011475,-0.345843911170959,-2.11144351959229,-0.746636390686035,-0.355645775794983,-2.10141658782959,-0.763283729553223,-0.445083379745483,-1.95770454406738,-0.831377983093262,-0.454502820968628,-1.95253276824951,-0.875113487243652,-0.232453107833862,-2.07189083099365,-0.557630062103271,-0.355449438095093,-2.03249979019165,-0.66803503036499,-0.443868398666382,-1.94983100891113,-0.765371322631836,-0.432422399520874,-1.94673252105713,-0.737300395965576,-0.426251173019409,-2.00262308120728, --0.753445625305176,-0.427898168563843,-1.99480295181274,-0.778604507446289,-0.248124837875366,-1.98357486724854,-0.545983791351318,-0.375540494918823,-1.95454740524292,-0.653443336486816,-0.476800680160522,-1.86710071563721,-0.815366268157959,-0.488190412521362,-1.86239147186279,-0.85438060760498,-0.431616544723511,-1.92961263656616,-0.717416763305664,-0.438420057296753,-1.92041873931885,-0.736372470855713,-0.472363233566284,-1.86157655715942,-0.783450126647949,-0.469736814498901,-1.85938835144043,-0.769101619720459,-0.517884492874146,-1.72187662124634,-0.776749610900879,-0.532355070114136,-1.7218770980835,-0.822422504425049,-0.434819936752319,-1.83091878890991,-0.5272536277771,-0.487733602523804,-1.80212831497192,-0.623324394226074,-0.504061460494995,-1.77820634841919,-0.720614910125732,-0.492990255355835,-1.77254962921143,-0.749394416809082,-0.511112928390503,-1.71720552444458,-0.708542346954346,-0.505089044570923,-1.71932888031006,-0.684797286987305,-0.0240580141544342,-2.56236457824707,-0.708492279052734,-0.0235201418399811,-2.51203012466431,-0.801788330078125,-0.581838369369507,-1.53665351867676,-0.442527294158936,-0.546628713607788,-1.49259757995605,-0.433334827423096,-0.558287858963013,-1.51701402664185,-0.42070198059082,-0.564860105514526,-1.5103325843811,-0.436161041259766,-0.162745654582977,-2.50360012054443,-0.649944305419922,-0.16457188129425,-2.50019693374634,-0.664726257324219,-0.261461853981018,-2.48375844955444,-0.640424728393555,-0.265114426612854,-2.47911691665649,-0.657379150390625,-0.137134671211243,-2.54905080795288,-0.655697822570801,-0.141630291938782,-2.5445032119751,-0.672258377075195,-0.297715783119202,-2.43735456466675,-0.634111404418945,-0.299398064613342,-2.43430852890015,-0.649324417114258,-0.355494141578674,-2.38543844223022,-0.611942291259766,-0.35699999332428,-2.38067865371704,-0.628913879394531,-0.305931687355042,-2.33382892608643,-0.596539497375488,-0.3101726770401,-2.33186912536621,-0.610391616821289,-0.250574707984924,-2.25705671310425,-0.556432723999023,-0.257800579071045,-2.25423288345337, --0.572468757629395,-0.180622220039368,-2.19472980499268,-0.541323661804199,-0.189242839813232,-2.19351148605347,-0.55361270904541,-0.189422369003296,-2.08367586135864,-0.509335994720459,-0.210091352462769,-2.080726146698,-0.525631427764893,-0.214182138442993,-1.98639535903931,-0.50427770614624,-0.227937459945679,-1.98739814758301,-0.517905712127686,-0.404183149337769,-1.84296035766602,-0.484091281890869,-0.420598745346069,-1.83904123306274,-0.49909782409668,-0.571253538131714,-1.57869148254395,-0.438228607177734,-0.580799341201782,-1.57422161102295,-0.452140808105469,-0.0492025762796402,-2.42349529266357,-0.866551399230957,-0.0495239645242691,-2.46752262115479,-0.795928955078125,-0.239200234413147,-2.29248762130737,-0.82902717590332,-0.251603722572327,-2.32442474365234,-0.766790390014648,-0.330352425575256,-2.05366325378418,-0.766533851623535,-0.236416459083557,-2.09023904800415,-0.677396297454834,-0.183037459850311,-2.47986602783203,-0.644015312194824,-0.204670071601868,-2.46065855026245,-0.658082962036133,-0.178541839122772,-2.45256423950195,-0.689650535583496,-0.159127414226532,-2.47299289703369,-0.660392761230469,-0.180064380168915,-2.46808958053589,-0.660196304321289,-0.173150181770325,-2.33981323242188,-0.898089408874512,-0.199817776679993,-2.3218846321106,-0.887642860412598,-0.179365813732147,-2.33068084716797,-0.908180236816406,-0.186493575572968,-2.32998895645142,-0.89361572265625,-0.00260272622108459,-2.38605165481567,-0.952536582946777,-0.0181833803653717,-2.37124824523926,-0.956480979919434,-0.00853029265999794,-2.35718441009521,-0.964105606079102,-0.00482335686683655,-2.37131595611572,-0.958991050720215,-0.213470101356506,-2.2800407409668,-0.566454887390137,-0.181535840034485,-2.24447154998779,-0.568588256835938,-0.203298687934875,-2.258056640625,-0.610424041748047,-0.225699067115784,-2.2948317527771,-0.593178749084473,-0.20364248752594,-2.27069282531738,-0.580447196960449,-0.302257180213928,-2.14803886413574,-0.84931755065918,-0.317031502723694,-2.11538553237915,-0.832245826721191,-0.307128548622131, --2.13281583786011,-0.862915992736816,-0.309161782264709,-2.13048553466797,-0.842247009277344,-0.222221970558167,-2.22684097290039,-0.925421714782715,-0.169031739234924,-2.206383228302,-0.958685874938965,-0.0858971178531647,-2.2349534034729,-0.987179756164551,-0.144424140453339,-2.25370931625366,-0.956851959228516,-0.156924366950989,-2.23149299621582,-0.95795726776123,-0.206444501876831,-1.91315174102783,-0.486727714538574,-0.245759725570679,-1.8740758895874,-0.498995780944824,-0.204664945602417,-1.90215682983398,-0.529810905456543,-0.165682435035706,-1.93719720840454,-0.503934383392334,-0.19938063621521,-1.90884637832642,-0.50112247467041,-0.418380498886108,-1.79951238632202,-0.779140949249268,-0.439963102340698,-1.72654056549072,-0.755881309509277,-0.425347089767456,-1.77024078369141,-0.78462553024292,-0.428901433944702,-1.7626485824585,-0.769219875335693,-0.330590844154358,-1.94475555419922,-0.889060497283936,-0.255317330360413,-1.88523244857788,-0.931048393249512,-0.145444989204407,-1.93502712249756,-0.984472751617432,-0.232788681983948,-1.99460887908936,-0.947708606719971,-0.24491274356842,-1.94078540802002,-0.940012454986572,-0.463762044906616,-1.54714107513428,-0.553049564361572,-0.465143918991089,-1.56854629516602,-0.477039337158203,-0.480238676071167,-1.44492626190186,-0.646285533905029,-0.487062215805054,-1.45311689376831,-0.632599830627441,-0.0560075342655182,-2.53960132598877,-0.658411026000977,-0.0825487673282623,-2.52150011062622,-0.672696113586426,-0.0514403879642487,-2.51185750961304,-0.702455520629883,-0.0285345613956451,-2.52845907211304,-0.672599792480469,-0.0533930361270905,-2.52655601501465,-0.673879623413086,-0.138980031013489,-2.49819803237915,-0.646571159362793,-0.146376729011536,-2.48575830459595,-0.662616729736328,-0.141541123390198,-2.477126121521,-0.688052177429199,-0.128091037273407,-2.49646806716919,-0.659567832946777,-0.139875531196594,-2.49004554748535,-0.660163879394531,-0.13020533323288,-2.41221904754639,-0.834694862365723,-0.140358567237854,-2.43577146530151,-0.783684730529785,-0.282549500465393, --2.39702558517456,-0.616170883178711,-0.274057984352112,-2.36831092834473,-0.627485275268555,-0.259544968605042,-2.37120628356934,-0.661937713623047,-0.261311173439026,-2.40106868743896,-0.635404586791992,-0.269214272499084,-2.3860034942627,-0.631686210632324,-0.274978280067444,-2.33665418624878,-0.599103927612305,-0.263935685157776,-2.32328081130981,-0.61013126373291,-0.26003897190094,-2.31451225280762,-0.639471054077148,-0.263743042945862,-2.33449506759644,-0.613602638244629,-0.265263199806213,-2.32828235626221,-0.611822128295898,-0.287453293800354,-2.24699926376343,-0.790451049804688,-0.281595826148987,-2.26830577850342,-0.743625640869141,-0.0931473970413208,-2.14740943908691,-0.51581859588623,-0.079938530921936,-2.10875463485718,-0.524331092834473,-0.104682087898254,-2.13660907745361,-0.563192367553711,-0.112033009529114,-2.16958618164063,-0.539474487304688,-0.0912343263626099,-2.14409255981445,-0.53111743927002,-0.119710206985474,-2.00284719467163,-0.50286340713501,-0.136114835739136,-1.97920560836792,-0.515279293060303,-0.12447988986969,-1.99271774291992,-0.54259204864502,-0.0939160585403442,-2.02596187591553,-0.513833045959473,-0.114798188209534,-1.99932909011841,-0.514578342437744,-0.350643754005432,-1.93712949752808,-0.715701103210449,-0.266212105751038,-1.95790863037109,-0.654568195343018,-0.468628644943237,-1.65845680236816,-0.455157279968262,-0.46708083152771,-1.61472177505493,-0.461733818054199,-0.449217557907104,-1.65258359909058,-0.494805335998535,-0.439549207687378,-1.6936354637146,-0.47654914855957,-0.455610036849976,-1.65664911270142,-0.4696044921875,-0.461899518966675,-1.60357904434204,-0.662218570709229,-0.451864004135132,-1.63307666778564,-0.571722984313965,-0.250984787940979,-2.43288850784302,-0.63124942779541,-0.254727959632874,-2.41912984848022,-0.645943641662598,-0.247378945350647,-2.41061353683472,-0.673370361328125,-0.23926317691803,-2.43227338790894,-0.644467353820801,-0.248946785926819,-2.42456912994385,-0.644877433776855,-0.22800600528717,-2.33794832229614,-0.826451301574707,-0.237891793251038, --2.3645486831665,-0.77381420135498,-0.16371214389801,-2.36898899078369,-0.850414276123047,-0.173419594764709,-2.40700817108154,-0.787113189697266,-0.151928544044495,-2.31256008148193,-0.933073997497559,-0.118743121623993,-2.29241991043091,-0.954689979553223,-0.0546285212039948,-2.30808019638062,-0.972075462341309,-0.0875813066959381,-2.32789421081543,-0.952847480773926,-0.103824734687805,-2.31071424484253,-0.953699111938477,-0.103753268718719,-2.34631252288818,-0.938295364379883,-0.0359846651554108,-2.34225606918335,-0.964332580566406,-0.0535003244876862,-2.35748291015625,-0.951416969299316,-0.0704070627689362,-2.34327363967896,-0.952280044555664,-0.131154179573059,-2.38359117507935,-0.886526107788086,-0.15142697095871,-2.36172199249268,-0.896139144897461,-0.135291218757629,-2.36250972747803,-0.913409233093262,-0.142006993293762,-2.37397813796997,-0.889501571655273,-0.00439324975013733,-2.41996717453003,-0.928825378417969,-0.0124880373477936,-2.40194272994995,-0.942131996154785,-0.00306859612464905,-2.40348052978516,-0.943228721618652,-0.0147086679935455,-2.42782068252563,-0.910006523132324,-0.0047699511051178,-2.43201208114624,-0.907140731811523,-0.0675946772098541,-2.40047264099121,-0.915223121643066,-0.100225150585175,-2.38876342773438,-0.905807495117188,-0.0772644579410553,-2.39243602752686,-0.92324161529541,-0.0839449465274811,-2.39347362518311,-0.912298202514648,-0.151167988777161,-2.20287990570068,-0.544768333435059,-0.149579167366028,-2.19162511825562,-0.556491851806641,-0.154537320137024,-2.18500518798828,-0.584657669067383,-0.145894646644592,-2.20399284362793,-0.556408882141113,-0.146830677986145,-2.19633483886719,-0.55683422088623,-0.302550911903381,-2.1252326965332,-0.742206573486328,-0.25513231754303,-2.14166688919067,-0.691797256469727,-0.286380410194397,-2.1877293586731,-0.794415473937988,-0.256808876991272,-2.21671485900879,-0.716700553894043,-0.276629090309143,-2.10891675949097,-0.911759376525879,-0.210634827613831,-2.07831907272339,-0.954107284545898,-0.114194512367249,-2.11727094650269,-0.995687007904053, --0.190719246864319,-2.14645576477051,-0.957749366760254,-0.200623154640198,-2.11364603042603,-0.956166744232178,-0.250123620033264,-2.17513084411621,-0.920124053955078,-0.10029661655426,-2.18282175064087,-0.99387264251709,-0.180243194103241,-2.17769861221313,-0.958610534667969,-0.284680008888245,-2.21434545516968,-0.849880218505859,-0.289589524269104,-2.1848521232605,-0.852861404418945,-0.283990502357483,-2.18939685821533,-0.876167297363281,-0.287249207496643,-2.20109939575195,-0.850706100463867,-0.187442481517792,-2.27623176574707,-0.930154800415039,-0.0708543360233307,-2.2729058265686,-0.979375839233398,-0.131977260112762,-2.27372360229492,-0.955760955810547,-0.220269799232483,-2.31054019927979,-0.878698348999023,-0.231606125831604,-2.28774785995483,-0.879189491271973,-0.221720337867737,-2.29031562805176,-0.899093627929688,-0.226036667823792,-2.30062055587769,-0.878338813781738,-0.249927163124084,-2.25790929794312,-0.876933097839355,-0.269753098487854,-2.23228073120117,-0.861396789550781,-0.255120873451233,-2.24553728103638,-0.888697624206543,-0.260046601295471,-2.24401807785034,-0.869988441467285,-0.400422811508179,-1.76531934738159,-0.478739261627197,-0.422640562057495,-1.7368597984314,-0.490218639373779,-0.394451856613159,-1.75456714630127,-0.5163254737854,-0.350326299667358,-1.79284286499023,-0.490343570709229,-0.393316984176636,-1.76146364212036,-0.490532398223877,-0.450627088546753,-1.71060228347778,-0.675804615020752,-0.431467771530151,-1.72783708572388,-0.612742900848389,-0.391393423080444,-1.84011316299438,-0.72831392288208,-0.304283857345581,-1.86959981918335,-0.631360530853271,-0.325826287269592,-1.63372707366943,-0.83582878112793,-0.106135547161102,-1.73963260650635,-0.945615291595459,-0.250840783119202,-1.77090358734131,-0.911701202392578,-0.210061192512512,-1.67303371429443,-0.892379283905029,-0.351311326026917,-1.84352111816406,-0.873424530029297,-0.156190514564514,-1.82549619674683,-0.964300155639648,-0.261622071266174,-1.83511829376221,-0.92310094833374,-0.393312215805054,-1.90604829788208,-0.778609752655029, --0.40453314781189,-1.85811138153076,-0.785657405853271,-0.398859620094299,-1.87465620040894,-0.808461666107178,-0.399545431137085,-1.88166427612305,-0.780641555786133,-0.299303650856018,-2.04419279098511,-0.904275417327881,-0.1294886469841,-2.03777122497559,-0.994746685028076,-0.221344590187073,-2.03957843780518,-0.951858520507813,-0.335801720619202,-2.09186220169067,-0.812886238098145,-0.34586489200592,-2.05431699752808,-0.82415771484375,-0.336482644081116,-2.06456279754639,-0.848154544830322,-0.341742157936096,-2.07397890090942,-0.817220211029053,-0.357615113258362,-2.01727056503296,-0.821105003356934,-0.37720263004303,-1.96578693389893,-0.802898406982422,-0.362576127052307,-2.00045347213745,-0.834243297576904,-0.367087960243225,-1.99337482452393,-0.813740730285645,-0.479666471481323,-1.47726440429688,-0.550476551055908,-0.480830907821655,-1.5007586479187,-0.463925838470459,-0.483247518539429,-1.45801830291748,-0.611294746398926,-0.470389127731323,-1.51750421524048,-0.642655849456787,-0.479719877243042,-1.50837230682373,-0.674724102020264,-0.462759733200073,-1.5383448600769,-0.715193748474121,-0.46578574180603,-1.46246957778931,-0.692612648010254,-0.454163312911987,-1.50039339065552,-0.720452308654785,-0.464784383773804,-1.49947023391724,-0.70347261428833,-0.456078290939331,-1.67158222198486,-0.727922916412354,-0.459411382675171,-1.61648988723755,-0.726966857910156,-0.47130274772644,-1.59274578094482,-0.694319248199463,-0.00253072381019592,-2.5474066734314,-0.656798362731934,-0.00894275307655334,-2.53471803665161,-0.672056198120117,-0.00149169564247131,-2.52431631088257,-0.700559616088867,-0.00190463662147522,-2.53847646713257,-0.671987533569336,-0.0510822832584381,-2.41711187362671,-0.893245697021484,-0.00392833352088928,-2.45133447647095,-0.846920967102051,-0.00478711724281311,-2.44868183135986,-0.866727828979492,-0.103269696235657,-2.44919013977051,-0.793328285217285,-0.108014762401581,-2.49395847320557,-0.695219993591309,-0.126783490180969,-2.40710496902466,-0.852106094360352,-0.089891105890274,-2.40837383270264, --0.863966941833496,-0.0869366228580475,-2.39980936050415,-0.889554977416992,-0.15169495344162,-2.42797470092773,-0.782023429870605,-0.1507288813591,-2.467369556427,-0.689620971679688,-0.150638699531555,-2.40434551239014,-0.829226493835449,-0.15092533826828,-2.39723300933838,-0.844936370849609,-0.163283467292786,-2.35971260070801,-0.872509002685547,-0.210795521736145,-2.38064050674438,-0.783758163452148,-0.222150444984436,-2.42979192733765,-0.681017875671387,-0.195143342018127,-2.34299564361572,-0.844207763671875,-0.192116916179657,-2.33450746536255,-0.865017890930176,-0.224836945533752,-2.33053779602051,-0.843722343444824,-0.243309617042542,-2.35567665100098,-0.77028751373291,-0.252088189125061,-2.39943790435791,-0.669894218444824,-0.23866331577301,-2.28485536575317,-0.849736213684082,-0.23452627658844,-2.33008527755737,-0.823554039001465,-0.232626557350159,-2.32167339324951,-0.840717315673828,-0.269782662391663,-2.28489208221436,-0.755222320556641,-0.261278748512268,-2.3331470489502,-0.649869918823242,-0.287886261940002,-2.24132823944092,-0.805088043212891,-0.266047120094299,-2.25600051879883,-0.815349578857422,-0.265560746192932,-2.25074195861816,-0.835195541381836,-0.274712204933167,-2.25842809677124,-0.732820510864258,-0.245569825172424,-2.30083131790161,-0.631217002868652,-0.287385582923889,-2.23368310928345,-0.788068771362305,-0.289966225624084,-2.22560930252075,-0.805597305297852,-0.291952729225159,-2.1809868812561,-0.81943416595459,-0.246842980384827,-2.16495943069458,-0.699178695678711,-0.163289666175842,-2.20682573318481,-0.591655731201172,-0.298770546913147,-2.14000558853149,-0.778356552124023,-0.306111931800842,-2.13686513900757,-0.80363655090332,-0.313171982765198,-2.12214946746826,-0.757869720458984,-0.255738854408264,-2.13047313690186,-0.687736511230469,-0.1469966173172,-2.17671918869019,-0.57708740234375,-0.347428917884827,-2.04467487335205,-0.79334831237793,-0.316290497779846,-2.10213661193848,-0.744582176208496,-0.330623269081116,-2.09350395202637,-0.76163911819458,-0.240139603614807,-2.01803207397461, --0.66299295425415,-0.0956026315689087,-2.05763339996338,-0.549993515014648,-0.370574593544006,-1.93349313735962,-0.734180450439453,-0.34568464756012,-1.99230766296387,-0.750546455383301,-0.365954041481018,-1.98915719985962,-0.777254581451416,-0.278645157814026,-1.92222690582275,-0.645516872406006,-0.1547771692276,-1.95481300354004,-0.5374436378479,-0.363575577735901,-1.89651584625244,-0.712506294250488,-0.38323187828064,-1.88915014266968,-0.733520030975342,-0.405222654342651,-1.83368444442749,-0.760184288024902,-0.368720769882202,-1.79364395141602,-0.619007110595703,-0.302276372909546,-1.82419443130493,-0.522308826446533,-0.418281316757202,-1.76904296875,-0.712288379669189,-0.428418874740601,-1.76487445831299,-0.744487285614014,-0.456159353256226,-1.70695447921753,-0.69712495803833,-0.0158912241458893,-2.47045516967773,-0.792520523071289,-0.0143329203128815,-2.51626014709473,-0.700325965881348,-0.496178388595581,-1.51603317260742,-0.42047643661499,-0.496734380722046,-1.48744440078735,-0.431804656982422,-0.475671529769897,-1.53933572769165,-0.443116188049316,-0.486364126205444,-1.50992012023926,-0.436059951782227,-0.150996804237366,-2.48720979690552,-0.647692680358887,-0.150334537029266,-2.47949028015137,-0.661934852600098,-0.227719902992249,-2.45865058898926,-0.635186195373535,-0.224389672279358,-2.44651794433594,-0.650847434997559,-0.109286427497864,-2.52158641815186,-0.650403022766113,-0.10821259021759,-2.50919485092163,-0.665846824645996,-0.264093995094299,-2.41917324066162,-0.627704620361328,-0.257469773292542,-2.41174793243408,-0.641424179077148,-0.284631371498108,-2.36133193969727,-0.605108261108398,-0.26991331577301,-2.34939956665039,-0.620234489440918,-0.255508065223694,-2.31893634796143,-0.59097957611084,-0.247849106788635,-2.31232118606567,-0.603425979614258,-0.170456528663635,-2.23179388046265,-0.545299530029297,-0.16022264957428,-2.22108697891235,-0.560469627380371,-0.133949398994446,-2.18620157241821,-0.537592887878418,-0.135052800178528,-2.18399620056152,-0.54938793182373,-0.0839730501174927,-2.0701060295105, --0.502746105194092,-0.0810080766677856,-2.06575202941895,-0.51799201965332,-0.154019117355347,-1.9626030921936,-0.497977733612061,-0.148623704910278,-1.95959854125977,-0.510159969329834,-0.30654501914978,-1.83794212341309,-0.480165004730225,-0.298444509506226,-1.83286380767822,-0.494343757629395,-0.483752012252808,-1.57855129241943,-0.43817138671875,-0.471439123153687,-1.57497453689575,-0.452295303344727,-0.0035344660282135,-2.56158638000488,-0.65314769744873,-0.0115391314029694,-2.5565390586853,-0.652600288391113,-0.00315728783607483,-2.55510711669922,-0.652226448059082,-0.033907562494278,-2.55708646774292,-0.65272045135498,-0.0642634928226471,-2.56803703308105,-0.653336524963379,-0.0882436335086823,-2.54837799072266,-0.651339530944824,-0.059249073266983,-2.55506801605225,-0.653066635131836,-0.119763493537903,-2.54413890838623,-0.645783424377441,-0.131548523902893,-2.51763486862183,-0.640217781066895,-0.113208472728729,-2.53411245346069,-0.645145416259766,-0.143726050853729,-2.50917625427246,-0.643274307250977,-0.146197438240051,-2.49576616287231,-0.645022392272949,-0.140717148780823,-2.50434970855713,-0.642284393310547,-0.156888663768768,-2.49839973449707,-0.641836166381836,-0.166577517986298,-2.49302673339844,-0.637870788574219,-0.153522670269012,-2.49343061447144,-0.642120361328125,-0.196952044963837,-2.49904346466064,-0.63533878326416,-0.21461021900177,-2.48286533355713,-0.634627342224121,-0.18926876783371,-2.49027681350708,-0.636569023132324,-0.245396256446838,-2.4762806892395,-0.6280517578125,-0.250357270240784,-2.45210409164429,-0.623831748962402,-0.235599160194397,-2.46851396560669,-0.628467559814453,-0.264215111732483,-2.44233417510986,-0.626898765563965,-0.26185667514801,-2.42930603027344,-0.628582000732422,-0.256789803504944,-2.43853998184204,-0.626419067382813,-0.282382607460022,-2.43147325515747,-0.623292922973633,-0.286924004554749,-2.4210033416748,-0.614583015441895,-0.272863030433655,-2.42583465576172,-0.622710227966309,-0.317896485328674,-2.4175009727478,-0.609930992126465,-0.306671738624573,-2.39022922515869, --0.605022430419922,-0.29971182346344,-2.40792942047119,-0.60963249206543,-0.325166344642639,-2.37912178039551,-0.597630500793457,-0.295535683631897,-2.35442066192627,-0.592877388000488,-0.304244637489319,-2.37134027481079,-0.598136901855469,-0.297964692115784,-2.34540367126465,-0.59328556060791,-0.277249932289124,-2.33225679397583,-0.594618797302246,-0.286432862281799,-2.34204816818237,-0.593759536743164,-0.279459595680237,-2.32708501815796,-0.591207504272461,-0.251306176185608,-2.31033658981323,-0.578642845153809,-0.266377091407776,-2.32337188720703,-0.588924407958984,-0.251157402992249,-2.29519891738892,-0.570920944213867,-0.206659436225891,-2.26182174682617,-0.553930282592773,-0.22966730594635,-2.28777503967285,-0.566028594970703,-0.207032799720764,-2.2456259727478,-0.549393653869629,-0.170099377632141,-2.22076368331909,-0.54002571105957,-0.186473488807678,-2.23929071426392,-0.544563293457031,-0.172603726387024,-2.20916843414307,-0.545072555541992,-0.153562664985657,-2.19587516784668,-0.544418334960938,-0.160518765449524,-2.20658159255981,-0.542845726013184,-0.153998970985413,-2.19048929214478,-0.53781795501709,-0.124606728553772,-2.17622995376587,-0.523786544799805,-0.141482472419739,-2.18826150894165,-0.535737991333008,-0.128783822059631,-2.156822681427,-0.521559715270996,-0.0947743654251099,-2.11670684814453,-0.51045036315918,-0.10588800907135,-2.15172386169434,-0.516250610351563,-0.122687101364136,-2.07757759094238,-0.507823467254639,-0.112076997756958,-2.03385829925537,-0.497921466827393,-0.0974947214126587,-2.07395792007446,-0.502834320068359,-0.147996187210083,-2.00935792922974,-0.50327730178833,-0.149924039840698,-1.98581027984619,-0.503167629241943,-0.131314516067505,-2.00612449645996,-0.501044750213623,-0.177839517593384,-1.9754114151001,-0.496259212493896,-0.183749437332153,-1.94793462753296,-0.485562801361084,-0.163682699203491,-1.96843385696411,-0.49474048614502,-0.240912199020386,-1.92422437667847,-0.488401889801025,-0.269307851791382,-1.88179206848145,-0.485502243041992,-0.220103979110718,-1.91846036911011, --0.485064029693604,-0.349322080612183,-1.84146213531494,-0.481039524078369,-0.376554250717163,-1.80034208297729,-0.472002983093262,-0.324361562728882,-1.84028816223145,-0.478307723999023,-0.43425440788269,-1.77034139633179,-0.476019382476807,-0.441996335983276,-1.74233102798462,-0.477752208709717,-0.414962530136108,-1.76813364028931,-0.475249767303467,-0.473528623580933,-1.69720506668091,-0.457811832427979,-0.514242887496948,-1.66043472290039,-0.4552903175354,-0.498869180679321,-1.61754131317139,-0.447718620300293,-0.489322423934937,-1.65946245193481,-0.453037738800049,-0.527982473373413,-1.5789942741394,-0.437791347503662,-0.507066965103149,-1.54581451416016,-0.423294544219971,-0.503902196884155,-1.57928895950317,-0.435938358306885,-0.527769804000854,-1.51864814758301,-0.415422916412354,-0.513765573501587,-1.49697065353394,-0.412285327911377,-0.510773897171021,-1.51831197738647,-0.415329933166504,-0.0414120256900787,-2.57836055755615,-0.655733108520508,-0.0217472687363625,-2.56982421875,-0.653783798217773,-0.0127746164798737,-2.57360172271729,-0.655695915222168,-0.0246311649680138,-2.580322265625,-0.663393974304199,-0.0235029831528664,-2.57790851593018,-0.656074523925781,-0.105024516582489,-2.56387376785278,-0.65245532989502,-0.0722333490848541,-2.57365083694458,-0.654758453369141,-0.142884433269501,-2.53140163421631,-0.644740104675293,-0.128807663917542,-2.54903125762939,-0.648073196411133,-0.149259209632874,-2.50142765045166,-0.646428108215332,-0.146627604961395,-2.51330995559692,-0.645540237426758,-0.178541839122772,-2.50696468353271,-0.639470100402832,-0.160059571266174,-2.50239896774292,-0.643374443054199,-0.231390595436096,-2.49789953231812,-0.635920524597168,-0.204205632209778,-2.50583028793335,-0.637816429138184,-0.269162774085999,-2.46295690536499,-0.627859115600586,-0.254459023475647,-2.48207759857178,-0.631339073181152,-0.273821473121643,-2.43438148498535,-0.630355834960938,-0.271154046058655,-2.44518852233887,-0.62923526763916,-0.315036416053772,-2.43675565719604,-0.620193481445313,-0.291374802589417, --2.43586587905884,-0.626248359680176,-0.345001816749573,-2.40513038635254,-0.609305381774902,-0.334350228309631,-2.42451620101929,-0.615015983581543,-0.330352425575256,-2.36456441879272,-0.595907211303711,-0.343646645545959,-2.38435459136963,-0.60187816619873,-0.292341828346252,-2.33545398712158,-0.595574378967285,-0.308294892311096,-2.34749698638916,-0.595233917236328,-0.295407891273499,-2.32442569732666,-0.584372520446777,-0.294175744056702,-2.33139944076538,-0.591949462890625,-0.251427292823792,-2.27673006057739,-0.560833930969238,-0.276636719703674,-2.3035306930542,-0.572817802429199,-0.210293412208557,-2.23163318634033,-0.545220375061035,-0.2310711145401,-2.2528715133667,-0.551042556762695,-0.169254422187805,-2.19819641113281,-0.545511245727539,-0.18603527545929,-2.21225690841675,-0.545588493347168,-0.168402314186096,-2.18549728393555,-0.527692794799805,-0.167995572090149,-2.19318389892578,-0.537861824035645,-0.151270151138306,-2.12739133834839,-0.51445198059082,-0.158182859420776,-2.16292810440063,-0.520528793334961,-0.165025472640991,-2.03955268859863,-0.501127243041992,-0.156378507614136,-2.08177804946899,-0.506624221801758,-0.174440622329712,-1.99528217315674,-0.505691528320313,-0.167906522750854,-2.01269054412842,-0.503646373748779,-0.228829145431519,-1.96319484710693,-0.489840030670166,-0.195979356765747,-1.98190021514893,-0.498230934143066,-0.317904233932495,-1.88800573348999,-0.488247394561768,-0.267874479293823,-1.93010473251343,-0.488780975341797,-0.430311918258667,-1.80228471755981,-0.473883628845215,-0.378069639205933,-1.84307289123535,-0.48051643371582,-0.473889112472534,-1.74857378005981,-0.479495525360107,-0.455221891403198,-1.77235698699951,-0.476961612701416,-0.527932405471802,-1.70029211044312,-0.459206104278564,-0.544437170028687,-1.61964559555054,-0.448292255401611,-0.53957724571228,-1.66219472885132,-0.453934192657471,-0.554812669754028,-1.54493999481201,-0.423103332519531,-0.55205225944519,-1.57955646514893,-0.436007499694824,-0.532963514328003,-1.49974918365479,-0.413385391235352,-0.544766664505005, --1.51899433135986,-0.415493011474609,-0.0279442369937897,-2.45125770568848,-0.903614044189453,-0.0245768204331398,-2.43628072738647,-0.881955146789551,-0.463243246078491,-1.39784145355225,-0.685450553894043,-0.452838659286499,-1.55885934829712,-0.734324932098389,-0.46087908744812,-1.5789794921875,-0.72318172454834,-0.434481382369995,-1.6826376914978,-0.766983032226563,-0.449430227279663,-1.69731855392456,-0.739985466003418,-0.412703275680542,-1.82146835327148,-0.796272754669189,-0.410527944564819,-1.83103561401367,-0.784890651702881,-0.381702065467834,-1.93921804428101,-0.821137428283691,-0.385966897010803,-1.93537998199463,-0.78860330581665,-0.351150155067444,-2.02876329421997,-0.841058731079102,-0.350744843482971,-2.03651857376099,-0.825003147125244,-0.321260094642639,-2.10049533843994,-0.854583263397217,-0.326877236366272,-2.10406541824341,-0.820208549499512,-0.29717218875885,-2.15703058242798,-0.868982315063477,-0.295148491859436,-2.16665697097778,-0.852630615234375,-0.270057320594788,-2.21929359436035,-0.881962776184082,-0.27842104434967,-2.22355222702026,-0.854068756103516,-0.241849541664124,-2.26502370834351,-0.893807411193848,-0.24000608921051,-2.27298307418823,-0.879367828369141,-0.200605988502502,-2.31208848953247,-0.903470039367676,-0.21131432056427,-2.31651163101196,-0.882243156433105,-0.162028908729553,-2.3443808555603,-0.911468505859375,-0.161635041236877,-2.35038805007935,-0.89896297454834,-0.106420695781708,-2.37848615646362,-0.917399406433105,-0.116575360298157,-2.38701438903809,-0.894591331481934,-0.036020427942276,-2.41742849349976,-0.914676666259766,-0.0533744394779205,-2.40352010726929,-0.925764083862305,-0.0509931147098541,-2.40914297103882,-0.915778160095215,-0.02445188164711,-2.46982002258301,-0.865737915039063,-0.0272456705570221,-2.45687103271484,-0.886857986450195,-0.0216580927371979,-2.43689489364624,-0.857253074645996,-0.422695875167847,-1.46441125869751,-0.738374710083008,-0.421980619430542,-1.52991485595703,-0.752892017364502,-0.439513921737671,-1.51398611068726,-0.737400531768799,-0.398197770118713, --1.82565021514893,-0.826837539672852,-0.408028364181519,-1.73897886276245,-0.808925151824951,-0.412578344345093,-1.79359102249146,-0.80656099319458,-0.340619683265686,-2.03052377700806,-0.866048336029053,-0.357740044593811,-1.98542881011963,-0.856669425964355,-0.352546334266663,-2.01282548904419,-0.852328300476074,-0.288557648658752,-2.15959692001343,-0.889805793762207,-0.303010582923889,-2.12532567977905,-0.88270092010498,-0.299195885658264,-2.14321613311768,-0.878787040710449,-0.227397561073303,-2.266676902771,-0.909729957580566,-0.246291756629944,-2.23934650421143,-0.904219627380371,-0.242817521095276,-2.25381469726563,-0.901643753051758,-0.14358252286911,-2.3433895111084,-0.923671722412109,-0.1693354845047,-2.32450914382935,-0.91944408416748,-0.163551509380341,-2.33553647994995,-0.917708396911621,-0.0394422113895416,-2.39796209335327,-0.935338020324707,-0.0706569254398346,-2.38422584533691,-0.93168830871582,-0.059786468744278,-2.39464616775513,-0.930444717407227,-0.390102982521057,-1.4002251625061,-0.746145725250244,-0.391230225563049,-1.5676646232605,-0.778822422027588,-0.39694356918335,-1.64918422698975,-0.796462535858154,-0.382008194923401,-1.89760446548462,-0.843739986419678,-0.389797806739807,-1.85933399200439,-0.837283611297607,-0.369434952735901,-1.94332361221313,-0.851995468139648,-0.319826722145081,-2.07898187637329,-0.877496242523193,-0.329803109169006,-2.05362272262573,-0.873402118682861,-0.310389161109924,-2.10337972640991,-0.881438732147217,-0.267406105995178,-2.20145177841187,-0.899565696716309,-0.278170228004456,-2.17991018295288,-0.895973205566406,-0.255622506141663,-2.2215723991394,-0.902917861938477,-0.198563277721405,-2.29770803451538,-0.916006088256836,-0.213106274604797,-2.28199005126953,-0.913816452026367,-0.182499587535858,-2.31189632415771,-0.918369293212891,-0.104828059673309,-2.36348056793213,-0.929876327514648,-0.123953998088837,-2.3530216217041,-0.927509307861328,-0.0618106424808502,-2.37182569503784,-0.940762519836426,-0.0863629877567291,-2.37384462356567,-0.931382179260254,-0.0273176729679108, --2.38520574569702,-0.946127891540527,-0.0381347239017487,-2.37119054794312,-0.949752807617188,-0.0168043673038483,-2.32456731796265,-0.97467041015625,-0.0126139223575592,-2.34157228469849,-0.969337463378906,-0.0246669352054596,-2.28837299346924,-0.985231399536133,-0.0208527222275734,-2.30634021759033,-0.980096817016602,-0.0316340029239655,-2.25568866729736,-0.994296073913574,-0.0281950533390045,-2.27220392227173,-0.989725112915039,-0.0387784540653229,-2.21392965316772,-1.00473690032959,-0.0352331697940826,-2.236732006073,-0.999672889709473,-0.0454413145780563,-2.15379047393799,-1.01054000854492,-0.0420743525028229,-2.18576383590698,-1.00833606719971,-0.0530888140201569,-2.08111667633057,-1.01151180267334,-0.0491310656070709,-2.11951971054077,-1.01137971878052,-0.0613447725772858,-1.98677444458008,-1.00920438766479,-0.0572248995304108,-2.03684854507446,-1.01157760620117,-0.0685078203678131,-1.87047576904297,-0.990476608276367,-0.0705319941043854,-1.80607795715332,-0.974995613098145,-0.00552096962928772,-2.44321060180664,-0.987460136413574,-0.00550380349159241,-2.44385528564453,-0.943899154663086,-0.0245954170823097,-2.57563972473145,-0.67961311340332,0.00524124503135681,-2.56267166137695,-0.653668403625488,-0.00340810418128967,-2.56675815582275,-0.654489517211914,-0.0179153978824615,-2.54357147216797,-0.657260894775391,-0.0199033468961716,-2.55738496780396,-0.652665138244629,-0.0157834589481354,-2.53129482269287,-0.672120094299316,-0.00202909111976624,-2.47669410705566,-0.791831016540527,-0.0245596468448639,-2.41383409500122,-0.928511619567871,-0.0245238691568375,-2.42330312728882,-0.91264533996582,-0.0241467133164406,-2.40025997161865,-0.939366340637207,0.0381763875484467,-2.43774223327637,-0.986196517944336,0.0350955426692963,-2.57563972473145,-0.67961311340332,0.0139273107051849,-2.56675815582275,-0.654489517211914,0.0284155309200287,-2.54357147216797,-0.657260894775391,0.0304039418697357,-2.55738496780396,-0.652665138244629,0.0262854993343353,-2.53129482269287,-0.672120094299316,0.0125482976436615,-2.47669410705566, --0.791831016540527,0.035059779882431,-2.41383409500122,-0.928511619567871,0.0350240170955658,-2.42330312728882,-0.91264533996582,0.0346482694149017,-2.40025997161865,-0.939366340637207,0.559420824050903,-1.47145795822144,-0.43238639831543,0.511372089385986,-1.46112394332886,-0.428313255310059,0.527543067932129,-1.46919870376587,-0.411222457885742,0.545183420181274,-1.47251510620117,-0.414657115936279,-0.548920869827271,-1.47145795822144,-0.43238639831543,-0.500871419906616,-1.46112394332886,-0.428313255310059,-0.517042398452759,-1.46919870376587,-0.411222457885742,-0.534683465957642,-1.47251510620117,-0.414657115936279,0.517621755599976,-1.44168615341187,-0.410997867584229,0.486477375030518,-1.3889012336731,-0.641970634460449,0.399045348167419,-1.34138441085815,-0.735852718353271,-0.38734495639801,-1.34341239929199,-0.736280918121338,-0.463725805282593,-1.36932897567749,-0.686220169067383,-0.50713849067688,-1.44168615341187,-0.410997867584229,-0.475671529769897,-1.40957832336426,-0.644150257110596,-0.475976705551147,-1.3889012336731,-0.641970634460449,0.473745346069336,-1.39784145355225,-0.685450553894043,0.474228382110596,-1.36932897567749,-0.686220169067383,0.166047394275665,-1.51886892318726,-0.827264308929443,0.00524124503135681,-1.92945194244385,-1.00408792495728,0.0757854878902435,-1.93101978302002,-1.00202989578247,-0.0652667582035065,-1.93101978302002,-1.00202989578247,0,-0.345246315002441,-0.00825023651123047,0,-0.265622138977051,-0.00206470489501953,-1.10871769720688e-06,-1.62175416946411,-0.200486183166504,0,-1.69481754302979,-0.159814834594727,0,-1.58573865890503,-0.387930870056152,-1.12850830191746e-06,-1.61586904525757,-0.198664665222168,0,-1.64934921264648,-0.187406539916992,-1.01122714113444e-06,-1.62937641143799,-0.302401542663574,-1.06536026578397e-06,-1.63601112365723,-0.196146011352539,-1.10883411252871e-06,-1.63136959075928,-0.234468460083008,0,-0.872443199157715,0.148219108581543,0,-1.8157525062561,-0.662173271179199,0,-1.64687252044678,-0.0602779388427734,0,-1.68011713027954,-0.511748313903809, -0,-0.92073917388916,0.0553350448608398,-3.88045955332927e-05,-1.99744510650635,-0.915884971618652,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,-0.0675684958696365,-0.00715541839599609,0,-0.00186079740524292,-0.000196456909179688,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,-0.00012476509436965,-1.38467407226563,-3.06125068664551,-0.000273022975306958,-1.55497169494629,-3.08271646499634,-0.000264305504970253,-1.38253211975098,-3.12297677993774,-0.00033256397000514,-1.9698486328125,-1.51926803588867,0,-0.234329462051392,-0.00289440155029297,0,-0.591861724853516,-0.00321197509765625,0,-0.685393810272217,0.00345897674560547,0,-0.819171905517578,0.0245609283447266,0,-0.126773118972778,-0.00395488739013672,0,-0.22624659538269,-0.00764179229736328,0,-0.205984234809875,-0.00503826141357422,0,-0.191318035125732,-0.0118656158447266,0,-0.158449649810791,-0.0154581069946289,0,-0.223806381225586,-0.00150489807128906,0,-0.243331670761108,-0.00106716156005859,0,-0.121915102005005,-0.0129117965698242,-0.000307206209981814,-1.85740375518799,-2.16040420532227,-0.000342211336828768,-1.80262756347656,-2.65491580963135,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,1.35821755975485e-06,-1.29526424407959,-1.39444851875305,0.000227391166845337,-1.893385887146,-2.61878371238708,1.80401548310563e-06,-0.958293914794922,-1.71031606197357,0,-0.22776985168457,-1.40582156181335,0,-0.00089263916015625,-0.0785905122756958,0,-1.1746244430542,-1.53676176071167,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06, -0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0.0272300243377686,-0.289109945297241,-0.00523662567138672,0.035254955291748,-0.224714756011963,0.00253677368164063,0.103327959775925,-1.62073659896851,-0.192342758178711,0.0696056038141251,-1.71307802200317,-0.142245292663574,0.506405353546143,-1.37859344482422,-0.0944461822509766,0.505756378173828,-1.39645433425903,-0.0999259948730469,0.526254653930664,-1.4486403465271,-0.0593442916870117,0.518559694290161,-1.41764640808105,-0.0562887191772461,0.458729982376099,-1.53219699859619,-0.0777692794799805,0.478796124458313,-1.48904705047607,-0.07781982421875,0.386241793632507,-1.58009767532349,-0.0949821472167969,0.421626329421997,-1.54767417907715,-0.105381965637207,0.287667393684387,-1.60101222991943,-0.121519088745117,0.332844495773315,-1.58520555496216,-0.137509346008301,0.171712219715118,-1.6348705291748,-0.143174171447754,0.213511139154434,-1.60598516464233,-0.172289848327637,0.508149027824402,-1.44962978363037,-0.056971549987793,0.497015476226807,-1.48472595214844,-0.0571098327636719,0.503018856048584,-1.38248825073242,-0.109850883483887,0.506140232086182,-1.37804508209229,-0.0982770919799805,0.507233858108521,-1.37290525436401,-0.118715286254883,0.50638747215271,-1.37617349624634,-0.102538108825684,0.511841297149658,-1.36572694778442,-0.116994857788086,0.506594657897949,-1.37554740905762,-0.0997838973999023,0.513044357299805,-1.36326265335083,-0.110360145568848,0.506930112838745,-1.37617349624634,-0.0953960418701172,0.512697458267212,-1.40999269485474,-0.0574722290039063,0.516760349273682,-1.36726093292236,-0.100436210632324,0.50558340549469,-1.44457769393921,-0.0540590286254883,0.507992267608643,-1.37791872024536,-0.109267234802246,0.465573668479919,-1.40750551223755,-0.154330253601074,0.477053880691528,-1.48222017288208,-0.0749568939208984,0.404207468032837,-1.46375894546509,-0.20516300201416,0.421988844871521,-1.54143238067627,-0.102349281311035,0.320184767246246,-1.51646089553833,-0.260271072387695,0.334234178066254,-1.57769060134888,-0.133684158325195,0.213057518005371, --1.55400896072388,-0.322085380554199,0.216380774974823,-1.59757328033447,-0.167951583862305,0.099747896194458,-1.58071708679199,-0.365749359130859,0.102760568261147,-1.61014318466187,-0.189743995666504,0.0920915305614471,-1.64629507064819,-0.179289817810059,0.203114986419678,-1.63262891769409,-0.15946102142334,0.32517945766449,-1.61229228973389,-0.126914024353027,0.418557047843933,-1.57534837722778,-0.096217155456543,0.476748824119568,-1.51455545425415,-0.073155403137207,0.510388255119324,-1.47042846679688,-0.0541191101074219,0.519747495651245,-1.42988634109497,-0.056060791015625,0.505583047866821,-1.38522052764893,-0.0964698791503906,0.505532264709473,-1.38081121444702,-0.103179931640625,0.506850957870483,-1.37478399276733,-0.109835624694824,0.508354663848877,-1.37065553665161,-0.107742309570313,0.509074926376343,-1.36989068984985,-0.102218627929688,0.517626285552979,-1.39039278030396,-0.0751333236694336,0.514582753181458,-1.41389226913452,-0.0755786895751953,0.481306910514832,-1.45259046554565,-0.107653617858887,0.425945281982422,-1.51504135131836,-0.146698951721191,0.339243650436401,-1.56437063217163,-0.191489219665527,0.230329692363739,-1.59750699996948,-0.240633010864258,0.11005026102066,-1.62192583084106,-0.278242111206055,0.100501984357834,-1.63480281829834,-0.187894821166992,0.212402254343033,-1.6207160949707,-0.167274475097656,0.333191394805908,-1.59886837005615,-0.132949829101563,0.423297643661499,-1.55922985076904,-0.100300788879395,0.480090498924255,-1.49901723861694,-0.0748176574707031,0.510573148727417,-1.45755863189697,-0.0552654266357422,0.519758224487305,-1.42217445373535,-0.0558414459228516,0.506664514541626,-1.38118410110474,-0.0950689315795898,0.50622034072876,-1.37921190261841,-0.0998907089233398,0.506511926651001,-1.37564706802368,-0.105060577392578,0.507123708724976,-1.37381839752197,-0.102567672729492,0.507572174072266,-1.373939037323,-0.0977668762207031,0.518384695053101,-1.40458393096924,-0.0634527206420898,0.512493252754211,-1.43621587753296,-0.0619382858276367,0.482177138328552,-1.47447824478149, --0.0872154235839844,0.427218556404114,-1.53562641143799,-0.118578910827637,0.33988344669342,-1.57915210723877,-0.15472412109375,0.224069803953171,-1.60577487945557,-0.194526672363281,0.106311902403831,-1.62383699417114,-0.221573829650879,0.0681949406862259,-0.857470512390137,0.147575378417969,0.163125693798065,-0.905281543731689,0.11067008972168,0.312274575233459,-0.974218845367432,0.134605407714844,0.395905613899231,-0.970556259155273,0.166638374328613,0.343582272529602,-0.862083435058594,0.0656108856201172,0.264072179794312,-0.750239849090576,-0.0432519912719727,0.272677898406982,-0.821620464324951,-0.115176200866699,0.46434211730957,-1.04356241226196,-0.0452365875244141,0.437483072280884,-1.15456533432007,-0.11068058013916,0.491536378860474,-1.29812622070313,-0.167751312255859,0.610656261444092,-1.42702722549438,-0.193604469299316,0.734255075454712,-1.51779365539551,-0.222850799560547,0.748378992080688,-1.58624744415283,-0.291605949401855,0.593321323394775,-1.65006971359253,-0.397189140319824,0.070909708738327,-1.81165742874146,-0.659370422363281,0.14085453748703,-1.80044031143188,-0.649075508117676,0.190779447555542,-1.78021240234375,-0.623008728027344,0.248047351837158,-1.73917055130005,-0.579841613769531,0.368417501449585,-1.69889879226685,-0.505602836608887,0.0376257598400116,-1.57145977020264,-0.0567512512207031,0.148005127906799,-1.5007119178772,-0.0728597640991211,0.268303215503693,-1.5102915763855,-0.0643949508666992,0.309150695800781,-1.48725128173828,-0.0428228378295898,0.409210681915283,-1.44870471954346,-0.0451440811157227,0.434995770454407,-1.41963672637939,-0.0317249298095703,0.491837024688721,-1.36590480804443,-0.037663459777832,0.512934446334839,-1.30426597595215,-0.0777425765991211,0.481329679489136,-1.28655576705933,-0.100139617919922,0.49332857131958,-1.32794666290283,-0.126497268676758,0.535154104232788,-1.38768720626831,-0.143045425415039,0.560547351837158,-1.43207025527954,-0.15113639831543,0.569409370422363,-1.46405363082886,-0.171244621276855,0.521848440170288,-1.48930406570435,-0.22453498840332, -0.435825347900391,-1.51727151870728,-0.296788215637207,0.35156774520874,-1.57211256027222,-0.366572380065918,0.26878809928894,-1.62925624847412,-0.420634269714355,0.181224882602692,-1.66623258590698,-0.458891868591309,0.0870640873908997,-1.68037939071655,-0.493206024169922,0.0113929510116577,-0.890589237213135,0.0321884155273438,0.0421109199523926,-0.802156925201416,0.0296783447265625,0.175848305225372,-0.821361064910889,0.0898036956787109,0.289865612983704,-0.824050903320313,0.13973331451416,0.285181283950806,-0.659733772277832,0.128419876098633,0.312048196792603,-0.597060680389404,0.115898132324219,0.506675004959106,-0.741679191589355,0.130519866943359,0.566311597824097,-1.00192451477051,0.0553932189941406,0.933670997619629,-1.74364185333252,-0.448775291442871,0.965077877044678,-1.64459180831909,-0.32298755645752,0.758341789245605,-1.50240230560303,-0.286276817321777,0.508465766906738,-1.29737043380737,-0.256021499633789,0.502855777740479,-1.12483644485474,-0.074432373046875,0.0647709965705872,-2.00209140777588,-0.91748046875,0.134943783283234,-2.01146221160889,-0.901249885559082,0.150391340255737,-2.00282764434814,-0.903640747070313,0.18719482421875,-1.97986316680908,-0.881082534790039,0.332846641540527,-1.92799758911133,-0.780350685119629,0.658695220947266,-1.84436511993408,-0.604065895080566,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,5.7220458984375e-06,-0.000223517417907715,0.000306129455566406,0,2.98023223876953e-06,0,0.00188469886779785,0.000725746154785156,0.00400066375732422,0,6.07967376708984e-06,0,0.00951874256134033,-0.0154564380645752,0.00300979614257813,0,4.58955764770508e-06,0,0.00603783130645752,-0.0191738605499268,0.000716209411621094, -0,4.58955764770508e-06,0,-0.00367319583892822,-0.0104725360870361,-0.001007080078125,-0.000241547822952271,-0.000535786151885986,-5.7220458984375e-05,-0.00930759310722351,-0.0408460199832916,-0.00432491302490234,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0.000254631042480469,-0.0102641582489014,0.014063835144043,0,7.62939453125e-06,0,0.00784873962402344,0.000216484069824219,0.0139083862304688,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0.311310052871704,-1.47004222869873,-2.75872850418091,0.557971477508545,-1.68538379669189,-2.56926774978638,0.399086475372314,-1.3643741607666,-2.11728143692017,0.665570020675659,-1.87301731109619,-1.91624593734741,0.57880711555481,-1.20617294311523,-1.53619432449341,0.893352270126343,-1.70970058441162,-1.4435396194458,0.681117534637451,-0.831171035766602,-1.0405900478363,0.980639457702637,-1.37412929534912,-0.933096408843994,0.607425212860107,-0.456451416015625,-0.607409477233887,0.886559963226318,-0.95015287399292,-0.609193801879883,0.160778999328613,-0.039031982421875,-0.0577678382396698,0.58652925491333,-0.372584819793701,-0.118378162384033,0.472238063812256,-0.247886657714844,-0.0226563215255737,0.645425319671631,-1.03671741485596,-1.26568579673767,1.00818920135498,-1.61954879760742,-1.16418170928955,0.361837863922119,-0.140706062316895,-0.224008977413177,0.69842004776001,-0.547140598297119,-0.266054391860962,0.464400172233582,-1.43711185455322,-2.76825523376465,0.585177183151245,-1.52583980560303,-2.16712188720703,0.819594621658325,-1.36881637573242,-1.56335735321045,0.952382564544678,-1.18956661224365,-1.28405427932739,1.0733494758606,-0.983113288879395,-1.00371265411377,0.983211040496826,-0.614725112915039,-0.623082637786865,0.752860546112061,-0.234424114227295,-0.30646276473999,0.65910530090332,-0.12826681137085,-0.149155378341675, -0.306241989135742,-0.114137172698975,-0.0261518955230713,0.224023938179016,-0.309411764144897,0.099766731262207,0.164644122123718,-0.387879610061646,0.0653352737426758,0.132618427276611,-0.462002515792847,0.0350408554077148,0.227491617202759,-0.470334529876709,0.071955680847168,0.145220398902893,-0.394004821777344,0.0419559478759766,0.172088861465454,-0.377188920974731,0.0562610626220703,0.152676582336426,-0.266440391540527,0.0457944869995117,0.142242312431335,-0.246972560882568,0.0397186279296875,0.0600389838218689,-0.226599931716919,0.0144433975219727,0.0512325763702393,-0.248493194580078,0.0120325088500977,0.23327374458313,-0.463016033172607,0.07513427734375,0.217972755432129,-0.280113220214844,0.102156639099121,0.360255241394043,-0.567933797836304,0.172901153564453,0.56063985824585,-0.845776081085205,0.252148628234863,0.758938550949097,-1.06503629684448,0.268401145935059,0.487354040145874,-1.07646703720093,-0.0879287719726563,0.563394784927368,-1.40122747421265,-0.329755783081055,0.894501209259033,-1.64483022689819,-0.410342216491699,1.13337302207947,-1.78386354446411,-0.494786262512207,0.970154047012329,-1.92428207397461,-0.664769172668457,0.643112182617188,-2.02415657043457,-0.85634708404541,0.389208912849426,-2.00183773040771,-1.11042499542236,0.203945279121399,-2.00347805023193,-1.2996826171875,0.189351081848145,-2.00477409362793,-1.38472938537598,0.172582268714905,-2.02106952667236,-1.43827629089355,0.0988535284996033,-2.00767135620117,-1.49466896057129,-0.00268265604972839,-0.557145833969116,-0.0148839950561523,-0.00853419303894043,-0.642755508422852,-0.00468921661376953,-0.0383565127849579,-0.631732225418091,-0.00773239135742188,-0.0488003790378571,-0.627033948898315,-0.0192174911499023,0.0186896026134491,-0.435100317001343,-0.00969791412353516,0.0310168117284775,-0.509102821350098,-0.00376796722412109,-0.000992149114608765,-0.306608438491821,-0.00655269622802734,0.00127232074737549,-0.262789726257324,-0.00314617156982422,-0.0054023265838623,-0.201164484024048,-0.00301456451416016,-0.00629165768623352,-0.119051456451416, --0.00189781188964844,0.00814551115036011,-0.196057796478271,-0.000718116760253906,0.0085071325302124,-0.132160902023315,0.000199317932128906,0.0523182153701782,-0.257115125656128,0.00691986083984375,0.0531671643257141,-0.219704151153564,0.00763702392578125,0.0776678323745728,-0.322345972061157,0.0146713256835938,0.105131030082703,-0.279566287994385,0.0249662399291992,0.0653927326202393,-0.531166076660156,0.00631904602050781,0.0947864055633545,-0.455690145492554,0.0177574157714844,0.0634995698928833,-0.699768304824829,0.00108718872070313,0.112667441368103,-0.67302417755127,0.0148715972900391,0.00397038459777832,-0.596905946731567,-0.0121288299560547,0.0879217386245728,-0.747063636779785,0.0373411178588867,-0.0310307145118713,-0.594784736633301,-0.00304508209228516,-0.0461187362670898,-0.593764543533325,-0.0188198089599609,0.0371155738830566,-0.661890745162964,-0.00623512268066406,0.0872284173965454,-0.687890529632568,0.0180339813232422,0.000603973865509033,-0.573636293411255,-0.011754035949707,0.0274312198162079,-0.443860054016113,-0.00736618041992188,0.00567471981048584,-0.289869785308838,-0.00480270385742188,-0.00707435607910156,-0.169851064682007,-0.00242805480957031,0.0085684061050415,-0.170045614242554,-8.96453857421875e-05,0.0521309971809387,-0.237288951873779,0.00708866119384766,0.0840935707092285,-0.30222749710083,0.0172967910766602,0.0728535652160645,-0.503834009170532,0.00937652587890625,0.0805623531341553,-0.699510335922241,0.00643730163574219,0.0514470338821411,-0.685673952102661,-9.1552734375e-05,0.0105031132698059,-0.627605199813843,-0.00611686706542969,-0.0430278182029724,-0.600927114486694,-0.0145702362060547,-0.046629786491394,-0.62714958190918,-0.0155296325683594,-0.0444639921188354,-0.626466751098633,-0.0120649337768555,-0.0386841297149658,-0.601360559463501,-0.0100278854370117,0.020988404750824,-0.640076160430908,0.00217533111572266,0.0663241147994995,-0.692752122879028,0.00694942474365234,0.0953176021575928,-0.690339326858521,0.0108299255371094,0.0819301605224609,-0.485124111175537,0.0126361846923828, -0.0943261384963989,-0.287436723709106,0.0210399627685547,0.0526483058929443,-0.226389169692993,0.00735759735107422,0.00919228792190552,-0.154557466506958,0.000185012817382813,-0.00844788551330566,-0.160892248153687,-0.00248050689697266,0.0049954354763031,-0.2753746509552,-0.00406837463378906,0.0317771136760712,-0.460147619247437,-0.00596332550048828,-0.00276657938957214,-0.603924751281738,-0.00930213928222656,-0.00564119219779968,-0.810729503631592,0.0109367370605469,0.010878324508667,-0.115904569625854,-0.000308990478515625,0.0505262017250061,-0.225566625595093,0.00742721557617188,0.0460558533668518,-0.251270771026611,0.00811767578125,0.0203835368156433,-0.180119752883911,-0.00269031524658203,0.130262136459351,-0.250982999801636,0.0344963073730469,0.117203116416931,-0.264907598495483,0.0294351577758789,0.111932158470154,-0.426084756851196,0.0248937606811523,0.131405830383301,-0.406061887741089,0.0336265563964844,0.0608456134796143,-0.608410596847534,0.00267505645751953,0.0676313638687134,-0.625106811523438,0.00355339050292969,0.0771239995956421,-0.621979951858521,0.00477313995361328,0.0874186754226685,-0.60453987121582,0.00545597076416016,0.0998126268386841,-0.57511830329895,0.00758171081542969,0.116072773933411,-0.524996995925903,0.015141487121582,0.131808876991272,-0.640952587127686,0.0178756713867188,0.162731766700745,-0.578700542449951,0.0267677307128906,0.146711945533752,-0.693309307098389,0.0388212203979492,0.158196806907654,-0.56566047668457,0.0302753448486328,0.194528341293335,-0.778332233428955,0.0749988555908203,0.177550554275513,-0.703984260559082,0.0459461212158203,0.251292943954468,-0.428557634353638,0.0930509567260742,0.230906248092651,-0.300698041915894,0.114376068115234,0.220122814178467,-0.322892665863037,0.0963869094848633,0.18686830997467,-0.495674610137939,0.0480070114135742,0.146865844726563,-0.583432197570801,0.0179777145385742,0.120862007141113,-0.633777379989624,0.00953102111816406,0.104140996932983,-0.655753612518311,0.00841236114501953,0.0884997844696045,-0.671105146408081,0.00714015960693359, -0.0731779336929321,-0.676270008087158,0.00406742095947266,0.0600472688674927,-0.668689489364624,0.000741958618164063,0.0151241421699524,-0.182002425193787,0.00272941589355469,0.0691462159156799,-0.191280364990234,0.0184650421142578,0.131246984004974,-0.227696657180786,0.0319385528564453,-0.0104820728302002,-0.143344879150391,-0.00631332397460938,0.0300316214561462,-0.137685894966125,0.00679588317871094,0.122569382190704,-0.224180102348328,0.034820556640625,-0.0215273201465607,-0.113903939723969,-0.0104265213012695,0.00540071725845337,-0.0854355096817017,0.000159263610839844,0.120506525039673,-0.237103700637817,0.0448083877563477,0.0286930799484253,-0.202290654182434,0.00506782531738281,0.0828684568405151,-0.204612493515015,0.0218124389648438,0.147936582565308,-0.244086742401123,0.0387210845947266,0.147562026977539,-0.234616279602051,0.106233596801758,0.158270239830017,-0.284891605377197,0.118942260742188,0.0673373937606812,-0.280551195144653,0.100757598876953,0.0892486572265625,-0.326348781585693,0.117233276367188,0.0747053623199463,-0.288139820098877,0.0782613754272461,0.0932611227035522,-0.350808620452881,0.105485916137695,0.172606706619263,-0.297538042068481,0.0669422149658203,0.195152044296265,-0.360593557357788,0.0928153991699219,0.170495986938477,-0.261215209960938,0.045659065246582,0.19591236114502,-0.284198045730591,0.053715705871582,0.137622356414795,-0.38218355178833,0.132214546203613,0.128893852233887,-0.389925956726074,0.122551918029785,0.168029427528381,-0.347061157226563,0.131134986877441,0.201952219009399,-0.346852540969849,0.0922470092773438,0.207456588745117,-0.379873752593994,0.112969398498535,0.203339219093323,-0.392673492431641,0.112551689147949,0.227312445640564,-0.330513715744019,0.0780172348022461,0.194306612014771,-0.365772008895874,0.0674972534179688,0.0351266860961914,-0.21860146522522,0.00453281402587891,0.0766744613647461,-0.217672109603882,0.0197305679321289,0.152783632278442,-0.260560989379883,0.0436792373657227,0.206383228302002,-0.315973043441772,0.0601367950439453,0.223394393920898, --0.350304365158081,0.0760536193847656,0.15489661693573,-0.218375205993652,0.114500999450684,0.0642454624176025,-0.250146150588989,0.096247673034668,0.0495756864547729,-0.166253328323364,0.0396766662597656,0.0514037609100342,-0.131304740905762,0.0188493728637695,-0.0187934935092926,-0.0876688361167908,-0.00923824310302734,-0.00500452518463135,-0.0405062437057495,-0.00189971923828125,0.104166507720947,-0.0869297981262207,0.0988502502441406,0.327897310256958,-0.407947778701782,0.240638732910156,0.193901300430298,-0.188121795654297,0.233660697937012,0.385794639587402,-0.632519960403442,0.393777847290039,0.216851234436035,-0.289504051208496,0.246317863464355,0.319397687911987,-0.786203622817993,0.352060317993164,0.0658631324768066,-0.250435590744019,0.187273025512695,0.218132495880127,-0.649493217468262,0.222615242004395,0.47413444519043,-0.823430061340332,0.264838218688965,0.195023059844971,-0.408905267715454,0.0390539169311523,0.075047492980957,-0.204198837280273,0.0490245819091797,0.180158615112305,-0.340601444244385,0.027623176574707,0.0809950828552246,-0.164288282394409,0.0243315696716309,0.156894683837891,-0.245121717453003,0.0406484603881836,0.0627593994140625,-0.10584568977356,0.0242228507995605,0.0965843200683594,-0.124382019042969,0.0402336120605469,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0.390628814697266,-0.689579010009766,0.072293758392334,0.265620708465576,-0.381097555160522,0.031773567199707,0.314924240112305,-0.530473470687866,0.0231552124023438,0.210036754608154,-0.24000096321106,0.0597119331359863,0.441776275634766,-1.00437498092651,-0.104071617126465,0.383724689483643,-0.504174709320068,0.000916481018066406,0.421486377716064,-0.685399055480957,-0.0531711578369141,0.500318050384521,-0.950218677520752,-0.0374631881713867,0.535407543182373,-0.839344024658203,-0.151315689086914,0.50340747833252,-0.613498210906982,-0.0530242919921875,0.57610559463501,-1.16193294525146,-0.21411657333374,0.566573143005371,-1.33132553100586,-0.284521102905273,0.753838062286377,-1.64014053344727, --0.505455493927002,0.722852230072021,-1.45807313919067,-0.434245586395264,0.695161819458008,-1.20287799835205,-0.349555969238281,0.654019355773926,-0.90457010269165,-0.251780033111572,0.984099388122559,-1.77357816696167,-0.603168487548828,0.96042013168335,-1.76396369934082,-0.900123596191406,0.905142784118652,-1.56784725189209,-0.762971878051758,1.03726959228516,-1.90045070648193,-0.760265350341797,0.863416194915771,-1.91670036315918,-1.11629343032837,0.480020999908447,-1.33935546875,-1.78665351867676,0.70038104057312,-1.45418453216553,-1.87110137939453,0.797189474105835,-1.76222324371338,-1.70314264297485,0.824606418609619,-2.05985641479492,-0.958740234375,0.786473751068115,-1.9995813369751,-1.31399488449097,0.685316324234009,-2.1100549697876,-1.14533996582031,0.707818746566772,-2.02564811706543,-1.5424690246582,0.34148108959198,-1.43560791015625,-2.44822835922241,0.550424456596375,-1.51925277709961,-2.45597982406616,0.626924514770508,-1.80679225921631,-2.23980093002319,0.59907329082489,-1.98759651184082,-1.8127875328064,0.538907408714294,-2.0779447555542,-1.40184211730957,0.402417182922363,-2.0146427154541,-1.68256950378418,0.526535034179688,-1.86235332489014,-2.16954231262207,0.244297325611115,-1.46276760101318,-2.96601057052612,0.396831035614014,-1.4072961807251,-2.97470331192017,0.414663314819336,-1.63684844970703,-2.80690956115723,0.161326229572296,-1.43237018585205,-3.02951717376709,0.277011752128601,-1.3934211730957,-3.09329986572266,0.306702136993408,-1.59047603607178,-2.94984579086304,0.227923214435577,-1.92103672027588,-2.02840900421143,0.324612140655518,-1.95427227020264,-1.90071964263916,0.380039572715759,-1.81952285766602,-2.39076232910156,0.251722037792206,-1.77902603149414,-2.54883766174316,0.0839579999446869,-1.40030193328857,-3.0656886100769,0.155557632446289,-1.38625431060791,-3.12034749984741,0.168861746788025,-1.56811428070068,-3.04951095581055,0.141850918531418,-1.88834095001221,-2.11876201629639,0.174595355987549,-1.80395698547363,-2.62525844573975,0.819419384002686,-1.33154916763306,-0.64400053024292, -0.791994571685791,-1.10152292251587,-0.502535820007324,0.673769950866699,-0.634902000427246,-0.818537712097168,1.12115669250488,-0.802596092224121,-0.787765502929688,0.962212085723877,-1.13670015335083,-0.754668235778809,0.753247261047363,-0.885473728179932,-0.357609272003174,0.500725746154785,-0.287711143493652,-0.402092099189758,0.826515674591064,-0.455940723419189,-0.470124244689941,0.804205417633057,-0.742880344390869,-0.438016176223755,0.690831661224365,-0.667111396789551,-0.205788612365723,0.614380836486816,-0.680253505706787,-0.123053550720215,0.607129573822021,-0.47371244430542,-0.0718131065368652,0.547168731689453,-0.490113735198975,-0.013042688369751,0.446206569671631,-0.44077467918396,0.0344033241271973,0.329115390777588,-0.351394653320313,0.0588397979736328,0.508635520935059,-0.321572780609131,0.0113368034362793,0.459177017211914,-0.324519395828247,0.05265212059021,0.363309860229492,-0.282415866851807,0.0843765735626221,0.241524219512939,-0.207595825195313,0.0795361995697021,0.117108345031738,-0.113481163978577,0.0521836280822754,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06, -0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06, -0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0.0145664215087891,0.00078737735748291,0.00715696811676025,0.0108070373535156,0.00149989128112793,0.00509929656982422,0.0357599258422852,0.00060272216796875,0.0140547752380371,0.0279569625854492,0.00299978256225586,0.00951564311981201,0.0665245056152344,-0.00497627258300781,0.0204346179962158,0.055267333984375,0.000657558441162109,0.0132745504379272,0.10570240020752,-0.0193893909454346,0.0279868450015783,0.0923728942871094,-0.00960707664489746,0.0143791437149048,0.149989128112793,-0.0409989356994629,0.0358432531356812,0.134835243225098,-0.0252108573913574,0.0136259794235229,0.192259311676025,-0.0689835548400879,0.0461731553077698,0.168575286865234,-0.0415878295898438,0.015323281288147,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0.0160751342773438,0.00155329704284668,0.00731873512268066,0.0392971038818359,0.0025634765625,0.0133341550827026,0.0719242095947266,-0.00236201286315918,0.0178400278091431,0.11332893371582,-0.0184066295623779,0.0205500535666943,0.158910751342773,-0.0400207042694092,0.0284181237220764,0.198283195495605,-0.0632095336914063,0.0358630418777466,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0.00217628479003906,0.00030207633972168,0.0012664794921875,0.00699234008789063,0.00078272819519043,0.00308811664581299,0.017237663269043,0.000955104827880859,0.00504076480865479,0.0350465774536133,-0.0014495849609375,0.00783681869506836,0.061525821685791,-0.0112595558166504,0.0104606226086617,0.118242263793945,-0.0335478782653809,0.0129258036613464,0.25495719909668,-0.116696119308472,0.0614889860153198,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06, -0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0.00433158874511719,0.00052642822265625,0.00228595733642578,0.0129222869873047,0.00137472152709961,0.0051501989364624,0.0298786163330078,0.00095367431640625,0.00814986228942871,0.0581293106079102,-0.00590372085571289,0.0118870139122009,0.100044250488281,-0.0195496082305908,0.0143730789422989,0.161769866943359,-0.0464401245117188,0.0169217586517334,0.235573291778564,-0.0921218395233154,0.0552029609680176,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0.0141973495483398,0.00181269645690918,0.00650334358215332,0.0354089736938477,0.00312948226928711,0.0116628408432007,0.0663681030273438,-0.000463962554931641,0.0156466960906982,0.107053756713867,-0.013885498046875,0.0163320004940033,0.151091575622559,-0.0338013172149658,0.0176717936992645,0.188564300537109,-0.05350661277771,0.022343635559082,0.2417893409729,-0.0890395641326904,0.0336172580718994,0.244795322418213,-0.0924632549285889,0.0277427434921265,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0.00724601745605469,0.00096285343170166,0.00358986854553223,0.0199728012084961,0.00238633155822754,0.00721263885498047,0.0426368713378906,0.00103139877319336,0.0107473134994507,0.0764369964599609,-0.00725865364074707,0.0133327841758728,0.120611190795898,-0.0214309692382813,0.0144066866487265,0.168686866760254, --0.0456023216247559,0.0146524906158447,0.213740348815918,-0.0705840587615967,0.027428925037384,0.224656581878662,-0.0784988403320313,0.0383224487304688,0.159158706665039,-0.0649688243865967,0.0533881187438965,0.116750717163086,-0.0359864234924316,0.0388069152832031,0.0793328285217285,-0.0193085670471191,0.027463436126709,0.0495338439941406,-0.00671076774597168,0.019488513469696,0.0263051986694336,-0.00197911262512207,0.0114564895629883,0.00976371765136719,-9.00030136108398e-05,0.00497829914093018,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0.0125417709350586,-0.00144803524017334,0.00650477409362793,0.0251035690307617,-0.0041351318359375,0.0119849443435669,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0.0410661697387695,-0.012176513671875,0.01877161860466,0.0634217262268066,-0.0203461647033691,0.0258220434188843,0,7.62939453125e-06,0,0.0370769500732422,-0.0148605108261108,0.0202001333236694,0.0903334617614746,-0.0338456630706787,0.0364541411399841,0.0746378898620605,-0.0306228399276733,0.0350357294082642,0.0762662887573242,-0.0336593389511108,0.0349012613296509,0.0975193977355957,-0.0427398681640625,0.0419412851333618,0.0898890495300293,-0.0366989374160767,0.039141058921814,0.0517868995666504,-0.0217026472091675,0.027382493019104,0.0505385398864746,-0.0231872797012329,0.0262688398361206,0.116832733154297,-0.0531296730041504,0.0473637580871582,0.0896964073181152,-0.0368103981018066,0.0376968383789063,0,-1.54972076416016e-06,0,0.164937973022461,-0.08428955078125,0.0623519420623779,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0.358603000640869,-0.210361003875732,0.0723836421966553,0.260848522186279,-0.167388916015625, -0.0809013843536377,0.129260540008545,-0.0911972522735596,0.0550162792205811,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0.245378017425537,-0.0909867286682129,0.0100287199020386,0.383453369140625,-0.180980205535889,0.0260912179946899,0.41049337387085,-0.217001438140869,0.0538948774337769,0.322449207305908,-0.142366170883179,0.0555891990661621,0.333118438720703,-0.140530347824097,0.0436110496520996,0,4.29153442382813e-06,0,0.00907421112060547,0.00039219856262207,0.00162923336029053,0,6.19888305664063e-06,0,0.00623464584350586,0.00107717514038086,0.00177288055419922,0.00128889083862305,0.00051569938659668,0.000295639038085938,0.002716064453125,0.00072932243347168,0.00124549865722656,0.000721931457519531,0.000425577163696289,0.000322818756103516,0.000834465026855469,0.00026094913482666,0.000532150268554688,0.000238895416259766,0.00015556812286377,0.000167369842529297,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0.000118732452392578,0.000112771987915039,5.14984130859375e-05,5.24520874023438e-05,4.87565994262695e-05,3.91006469726563e-05,4.76837158203125e-06,4.52995300292969e-06,2.38418579101563e-06,3.33786010742188e-06,6.07967376708984e-06,2.86102294921875e-06,0,2.98023223876953e-06,1.9073486328125e-06,2.14576721191406e-05,2.12192535400391e-05,9.5367431640625e-06,1.33514404296875e-05,1.68085098266602e-05,1.1444091796875e-05,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06, -0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.147392272949219,-0.0288944244384766,-0.202075302600861,0.239797115325928,-0.0846681594848633,-0.423667907714844,0.285392999649048,-0.166020393371582,-0.64807003736496,0.300125122070313,-0.274911880493164,-0.876344203948975,0.291042804718018,-0.395524978637695,-1.09972190856934,0.162638664245605,-0.50534725189209,-1.34933030605316,-0.0112228393554688,-0.611283302307129,-1.5643150806427,-0.184719562530518,-0.772280693054199,-1.64631271362305,-0.205299019813538,-0.967265129089355,-1.56282472610474,-0.156915009021759,-1.10126304626465,-1.49779558181763,-0.0932832956314087,-1.19295787811279,-1.45954513549805,-0.030264288187027,-1.25501918792725,-1.42377758026123,-0.0059744119644165,-1.28619289398193,-1.40265393257141,0.173703670501709,-0.0350284576416016,-0.144991815090179,0.302762508392334,-0.115859031677246,-0.327416837215424,0.378468990325928,-0.229336738586426,-0.524648427963257,0.385486364364624,-0.417571067810059,-0.747655630111694,0.457935571670532,-0.541269302368164,-0.979405879974365,0.438549041748047,-0.79615592956543,-1.26130342483521,0.320786237716675,-0.976748466491699,-1.46158623695374,0.195880055427551,-1.11182594299316,-1.57768702507019,-0.0611135959625244,-1.38212108612061,-1.74932742118835,-0.24594521522522,-1.62950325012207,-1.99845290184021,-0.277312040328979,-1.75545692443848,-2.27699732780457,-0.248583257198334, --1.81564617156982,-2.49001717567444,-0.199260205030441,-1.84811592102051,-2.64244627952576,-0.145463496446609,-1.86635875701904,-2.63048577308655,0.0868384838104248,-0.0117006301879883,-0.253911644220352,0.13222336769104,-0.0381002426147461,-0.495590925216675,0.106887578964233,-0.0605792999267578,-0.735898435115814,-0.073458194732666,-0.0783233642578125,-1.00212621688843,-0.198465466499329,-0.203241348266602,-1.10652732849121,-0.168620824813843,-0.437338829040527,-1.07296240329742,-0.197451591491699,-0.671842575073242,-1.06808400154114,-0.215762853622437,-0.827595710754395,-1.18886530399323,-0.175194323062897,-0.922651290893555,-1.35926222801208,-0.113756060600281,-0.964791297912598,-1.52407777309418,-0.0438057482242584,-0.965768814086914,-1.66245055198669,0.0363643169403076,-0.0111360549926758,-0.149410367012024,0.0536825656890869,-0.0274696350097656,-0.293490350246429,0.052847146987915,-0.0528049468994141,-0.424974918365479,0.0518374443054199,-0.0945072174072266,-0.548102200031281,0.0250072479248047,-0.135459899902344,-0.696895241737366,-0.00138580799102783,-0.160867691040039,-0.867420315742493,-0.0118754506111145,-0.18242073059082,-1.02611994743347,0.00198787450790405,-0.200067520141602,-1.21487736701965,0.00572982430458069,-0.216302871704102,-1.3317985534668,0.00283065438270569,-0.224418640136719,-1.38276100158691,0.000967130064964294,-0.00103759765625,-0.0976827144622803,0.11542797088623,-0.0215244293212891,-0.237562417984009,0.180213928222656,-0.060765266418457,-0.475517988204956,0.206685304641724,-0.117620468139648,-0.711203753948212,0.195072650909424,-0.176529884338379,-0.945312082767487,0.0905716419219971,-0.231302261352539,-1.19655406475067,-0.0818345546722412,-0.306580543518066,-1.42792212963104,-0.25357711315155,-0.492117881774902,-1.48773431777954,-0.0917408466339111,-0.789875030517578,-1.34467482566833,0.061470627784729,-0.952649116516113,-1.37430953979492,0.146497905254364,-1.06160545349121,-1.45345377922058,0.135782837867737,-1.12559223175049,-1.50115990638733,0.0645109340548515,-1.16457271575928,-1.52930355072021, -0.0309189558029175,-0.305977821350098,0.00055694580078125,0.0491638779640198,-0.325115442276001,0.00540924072265625,0.0639855265617371,-0.386169672012329,0.00868415832519531,0.0578598380088806,-0.481689214706421,0.00433731079101563,0.0494347810745239,-0.550196647644043,-0.00034332275390625,0.0447431802749634,-0.610331773757935,-0.00377273559570313,0.0164520740509033,-0.322360515594482,-0.00393772125244141,-0.00256800651550293,-0.367094755172729,-0.0102291107177734,-0.016987144947052,-0.426444292068481,-0.0153360366821289,-0.0258232355117798,-0.471643209457397,-0.0192775726318359,-0.0275691151618958,-0.487113475799561,-0.0206193923950195,-0.0132892727851868,-0.481447696685791,-0.016728401184082,0.0105039477348328,-0.516607284545898,-0.0117673873901367,0.0271680355072021,-0.578380107879639,-0.00882434844970703,0.038957953453064,-0.637375116348267,-0.00643253326416016,0.0164704322814941,-0.392427682876587,-0.00616550445556641,0.0284935235977173,-0.428327083587646,-0.00363349914550781,0.0360962748527527,-0.483410596847534,-0.00301551818847656,0.0383652448654175,-0.55341911315918,-0.00441265106201172,0.0059850811958313,-0.374288320541382,-0.00843715667724609,0,-0.954240322113037,-0.112764358520508,0,-1.33191394805908,-0.416210174560547,0.0202004611492157,-0.95658016204834,-0.108538627624512,0.273460149765015,-0.885105133056641,-0.109764099121094,0.369969606399536,-0.927592277526855,-0.0722284317016602,0.114089369773865,-0.89965295791626,-0.125219345092773,0.145157098770142,-0.858946800231934,-0.135931015014648,0.093264102935791,-0.936429977416992,-0.11249828338623,0.0671074986457825,-0.94859790802002,-0.107620239257813,0.0412197113037109,-0.953202724456787,-0.106471061706543,0.384130954742432,-0.934737682342529,-0.0738592147827148,0.351472139358521,-0.917859077453613,-0.114276885986328,0.372673749923706,-0.927650928497314,-0.124228477478027,0.462098121643066,-0.944911479949951,-0.10236644744873,0.508829593658447,-0.997403621673584,-0.102795600891113,0.42656397819519,-1.03251171112061,-0.181417465209961,0.352743864059448, --1.07110404968262,-0.24378490447998,0.271385192871094,-1.14459705352783,-0.307889938354492,0.206671416759491,-1.22261047363281,-0.339401245117188,0.136223614215851,-1.28414392471313,-0.371273994445801,0.0663161277770996,-1.32073450088501,-0.400851249694824,-1.14329304778948e-06,-1.57653617858887,-0.211650848388672,0.106202960014343,-1.57675457000732,-0.201694488525391,0.216622650623322,-1.56068897247314,-0.178979873657227,0.33302366733551,-1.53888702392578,-0.137530326843262,0.411669075489044,-1.50476169586182,-0.102201461791992,0.463413000106812,-1.44761657714844,-0.0759687423706055,0.495611190795898,-1.4095892906189,-0.059636116027832,0.49384880065918,-1.37769556045532,-0.0777177810668945,0.488005638122559,-1.35250568389893,-0.113802909851074,0.487205743789673,-1.34478282928467,-0.127165794372559,0.495217800140381,-1.34111881256104,-0.134433746337891,0.497855424880981,-1.33952236175537,-0.131831169128418,0.493540048599243,-1.33947610855103,-0.122880935668945,0.489624738693237,-1.37724781036377,-0.0776271820068359,0.487185597419739,-1.41016864776611,-0.0613012313842773,0.459187507629395,-1.44497156143188,-0.0797319412231445,0.41175788640976,-1.5046968460083,-0.102960586547852,0.332474529743195,-1.54800081253052,-0.134465217590332,0.216572195291519,-1.57447195053101,-0.171354293823242,0.103177309036255,-1.58736181259155,-0.192460060119629,-1.15120928967372e-06,-1.59304571151733,-0.199528694152832,0,-1.26727390289307,-0.152872085571289,0.0914479345083237,-1.26886987686157,-0.143680572509766,0.183132022619247,-1.26189231872559,-0.127608299255371,0.276890814304352,-1.2536768913269,-0.097773551940918,0.330671072006226,-1.23209095001221,-0.0778312683105469,0.35818088054657,-1.19421625137329,-0.0657405853271484,0.3762366771698,-1.17076778411865,-0.0579671859741211,0.375930070877075,-1.14294862747192,-0.0794219970703125,0.393905639648438,-1.13321399688721,-0.0984029769897461,0.404439926147461,-1.13183736801147,-0.112302780151367,0.417263984680176,-1.13333368301392,-0.123941421508789,0.427533864974976,-1.1393871307373,-0.125186920166016, -0.437411546707153,-1.14967632293701,-0.117573738098145,0.448729276657104,-1.20155143737793,-0.077509880065918,0.451619505882263,-1.25102186203003,-0.06048583984375,0.427457332611084,-1.30464315414429,-0.0823726654052734,0.38844633102417,-1.38537740707397,-0.107476234436035,0.319329679012299,-1.44587182998657,-0.1417236328125,0.211199283599854,-1.48769378662109,-0.183061599731445,0.101464167237282,-1.51110649108887,-0.209996223449707,-1.13526039058343e-06,-1.52029514312744,-0.219282150268555,0,-0.625032186508179,0.0249032974243164,0.0156207382678986,-0.627282857894897,0.0313825607299805,0.15313720703125,-0.562549114227295,-0.0399689674377441,0.177148580551147,-0.559065341949463,-0.0743598937988281,0.100808382034302,-0.593385457992554,0.00552558898925781,0.128403186798096,-0.576536655426025,-0.0175371170043945,0.0733442306518555,-0.613590955734253,0.022003173828125,0.0528593063354492,-0.622456312179565,0.0309610366821289,0.032367467880249,-0.625454664230347,0.0339059829711914,0.197329759597778,-0.559808731079102,-0.104384422302246,0.215595006942749,-0.578295230865479,-0.160298347473145,0.239985227584839,-0.631513595581055,-0.187189102172852,0.294612884521484,-0.698030948638916,-0.221489429473877,0.472409248352051,-0.752105712890625,-0.218582630157471,0.45166540145874,-0.816563606262207,-0.253585338592529,0.359342932701111,-0.893240928649902,-0.306578636169434,0.255728125572205,-0.967921257019043,-0.383691787719727,0.157780587673187,-1.0200252532959,-0.443425178527832,0.0775837898254395,-1.06636142730713,-0.48333740234375,0.0308326780796051,-1.10109043121338,-0.508516311645508,0,-1.11393547058105,-0.521498680114746,0,-0.0803725719451904,0.0199999809265137,0.00416883826255798,-0.0803208351135254,0.0228512287139893,0.0418229103088379,-0.0676331520080566,-0.0216073989868164,0.0490789413452148,-0.0696978569030762,-0.039454460144043,0.027148962020874,-0.072819709777832,0.00492405891418457,0.0347418785095215,-0.0699586868286133,-0.00833392143249512,0.0197079181671143,-0.0771775245666504,0.0158095359802246,0.0141766667366028, --0.0789628028869629,0.0213851928710938,0.00866031646728516,-0.0795669555664063,0.0233380794525146,0.0578243732452393,-0.0743470191955566,-0.0569677352905273,0.0715863704681396,-0.0938701629638672,-0.0969033241271973,0.0806057453155518,-0.112067222595215,-0.133758306503296,0.0851612091064453,-0.135238647460938,-0.186796426773071,0.0863375663757324,-0.1788330078125,-0.249385118484497,0.085019588470459,-0.237619400024414,-0.321080684661865,0.0828790664672852,-0.304394721984863,-0.380617618560791,0.0736607313156128,-0.381802558898926,-0.432967662811279,0.0608580708503723,-0.444297790527344,-0.463699817657471,0.0416448712348938,-0.49303150177002,-0.48638916015625,0.0208984613418579,-0.527684211730957,-0.51156759262085,0,-0.542167663574219,-0.528231143951416,0,-0.00591754913330078,-0.15850442647934,0,-0.00591850280761719,-0.158504545688629,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.15850442647934,0,-0.00591754913330078,-0.158504545688629,0,-0.00591850280761719,-0.15850442647934,0,-0.00591850280761719,-0.15850430727005,0,-0.00591754913330078,-0.15850430727005,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591850280761719,-0.158504486083984,0.00130105018615723,-0.00614356994628906,-0.165478229522705,0.00177311897277832,-0.00642108917236328,-0.170103788375854,0.00181019306182861,-0.00671768188476563,-0.173963665962219,0.00162160396575928,-0.00671577453613281,-0.177491664886475,0.00116795301437378,-0.00661373138427734,-0.180501222610474,0.000603288412094116,-0.00664234161376953,-0.182587385177612,0,-0.00675106048583984,-0.183351635932922,0,6.19888305664063e-06,0,0.0259513854980469,-0.00633144378662109,-0.0481162965297699,0.036067008972168,-0.0126562118530273,-0.0769106149673462,0.0413000583648682,-0.0218038558959961,-0.10959780216217,0.0475389957427979,-0.052983283996582,-0.145081281661987,0.0572304725646973,-0.0764741897583008,-0.244582533836365, -0.0631885528564453,-0.112884521484375,-0.326589107513428,0.0603275299072266,-0.156073570251465,-0.397768259048462,0.0523036122322083,-0.186903953552246,-0.451659440994263,0.0369722843170166,-0.209490776062012,-0.494720935821533,0.018904983997345,-0.227828979492188,-0.5312739610672,0,-0.237490653991699,-0.55023992061615,0,-0.306283712387085,0.0577750205993652,0.0104430615901947,-0.307292222976685,0.0635929107666016,0.0216654539108276,-0.30619215965271,0.0652179718017578,0.0354338884353638,-0.304776191711426,0.0619702339172363,0.0492146015167236,-0.299888610839844,0.0522980690002441,0.0677597522735596,-0.28855299949646,0.0337867736816406,0.0865216255187988,-0.279698133468628,0.0100789070129395,0.103721857070923,-0.272834777832031,-0.013155460357666,0.120302200317383,-0.273486614227295,-0.0462045669555664,0.136934757232666,-0.278936862945557,-0.0747108459472656,0.151462554931641,-0.296911716461182,-0.131115436553955,0.16125226020813,-0.322004318237305,-0.177340984344482,0.163743495941162,-0.354578018188477,-0.245415687561035,0.154793500900269,-0.408967971801758,-0.32562780380249,0.140340089797974,-0.479620933532715,-0.399084091186523,0.130325317382813,-0.564449310302734,-0.447021961212158,0.112825155258179,-0.660270690917969,-0.486994743347168,0.0878851413726807,-0.735620498657227,-0.504144668579102,0.0564806461334229,-0.793303489685059,-0.515061855316162,0.0277853906154633,-0.832740783691406,-0.531881332397461,0,-0.847414970397949,-0.546758651733398,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,-0.0272302031517029, --0.289108753204346,-0.00523567199707031,-0.0352553129196167,-0.224713563919067,0.00253677368164063,-0.103330075740814,-1.62073659896851,-0.192342758178711,-0.0696069747209549,-1.7130765914917,-0.142246246337891,-0.506403923034668,-1.37859344482422,-0.094447135925293,-0.505755186080933,-1.39645576477051,-0.0999259948730469,-0.526255130767822,-1.4486403465271,-0.0593442916870117,-0.518558502197266,-1.41764736175537,-0.0562877655029297,-0.458729147911072,-1.53219699859619,-0.0777692794799805,-0.478795766830444,-1.48904657363892,-0.0778217315673828,-0.386241316795349,-1.58009767532349,-0.0949811935424805,-0.421627283096313,-1.54767370223999,-0.105381965637207,-0.28766793012619,-1.60101270675659,-0.121519088745117,-0.3328458070755,-1.58520555496216,-0.137508392333984,-0.17171323299408,-1.63486909866333,-0.143173217773438,-0.213513106107712,-1.60598611831665,-0.17228889465332,-0.508148431777954,-1.44963026046753,-0.056971549987793,-0.497014760971069,-1.48472595214844,-0.0571088790893555,-0.503017663955688,-1.38248777389526,-0.109851837158203,-0.506139755249023,-1.37804508209229,-0.0982770919799805,-0.507231712341309,-1.37290525436401,-0.118716239929199,-0.506386756896973,-1.37617349624634,-0.102538108825684,-0.511838912963867,-1.36572694778442,-0.116995811462402,-0.50659441947937,-1.37554740905762,-0.0997858047485352,-0.513044357299805,-1.36326313018799,-0.110360145568848,-0.506929874420166,-1.37617349624634,-0.0953969955444336,-0.512696981430054,-1.40999221801758,-0.0574722290039063,-0.51676082611084,-1.36726093292236,-0.100436210632324,-0.505583524703979,-1.44457769393921,-0.0540590286254883,-0.507991909980774,-1.37792062759399,-0.109268188476563,-0.465574026107788,-1.40750551223755,-0.154328346252441,-0.477053999900818,-1.48221921920776,-0.074955940246582,-0.404207706451416,-1.46375894546509,-0.20516300201416,-0.421988606452942,-1.54143190383911,-0.102349281311035,-0.320185840129852,-1.51646089553833,-0.260271072387695,-0.334235668182373,-1.57769012451172,-0.133682250976563,-0.213058531284332,-1.55400800704956,-0.322083473205566, --0.216382563114166,-1.59757232666016,-0.167949676513672,-0.0997490584850311,-1.58071708679199,-0.365748405456543,-0.102762192487717,-1.61014270782471,-0.189743995666504,-0.0920931845903397,-1.64629507064819,-0.179289817810059,-0.203116536140442,-1.63262891769409,-0.159459114074707,-0.32518059015274,-1.61229276657104,-0.126914024353027,-0.418556928634644,-1.57534790039063,-0.096217155456543,-0.47674834728241,-1.51455497741699,-0.073155403137207,-0.510387778282166,-1.47042942047119,-0.0541181564331055,-0.519746541976929,-1.42988634109497,-0.0560617446899414,-0.505582571029663,-1.38522052764893,-0.096470832824707,-0.505531549453735,-1.38081121444702,-0.103182792663574,-0.506849765777588,-1.37478446960449,-0.109837532043457,-0.50835394859314,-1.37065505981445,-0.107742309570313,-0.509074687957764,-1.36989116668701,-0.10222053527832,-0.517624139785767,-1.39039278030396,-0.07513427734375,-0.514583587646484,-1.41389322280884,-0.0755796432495117,-0.48130738735199,-1.45259237289429,-0.107653617858887,-0.425945401191711,-1.51504135131836,-0.146698951721191,-0.339245498180389,-1.56436967849731,-0.191486358642578,-0.230331659317017,-1.59750699996948,-0.240631103515625,-0.11005263030529,-1.62192487716675,-0.278242111206055,-0.100503340363503,-1.63480186462402,-0.187894821166992,-0.212404102087021,-1.62071561813354,-0.167272567749023,-0.333192646503448,-1.59886837005615,-0.132949829101563,-0.423298120498657,-1.5592303276062,-0.100299835205078,-0.480090856552124,-1.49901676177979,-0.0748176574707031,-0.510573625564575,-1.45755910873413,-0.0552644729614258,-0.51975679397583,-1.42217445373535,-0.0558414459228516,-0.506663799285889,-1.38118410110474,-0.0950708389282227,-0.506219863891602,-1.37921190261841,-0.0998926162719727,-0.506510972976685,-1.37564659118652,-0.105060577392578,-0.50712251663208,-1.37381839752197,-0.102567672729492,-0.507572174072266,-1.37393951416016,-0.0977678298950195,-0.518384218215942,-1.40458393096924,-0.0634546279907227,-0.512492656707764,-1.43621635437012,-0.0619373321533203,-0.482176661491394,-1.47447824478149, --0.0872154235839844,-0.427218556404114,-1.53562641143799,-0.118578910827637,-0.339884996414185,-1.57915163040161,-0.154722213745117,-0.224071681499481,-1.60577487945557,-0.194527626037598,-0.106314077973366,-1.62383699417114,-0.221572875976563,-0.0681965351104736,-0.857470989227295,0.147574424743652,-0.163126707077026,-0.905282497406006,0.110669136047363,-0.312276124954224,-0.97421932220459,0.13460636138916,-0.395906090736389,-0.970556259155273,0.16663932800293,-0.343580722808838,-0.862081050872803,0.0656108856201172,-0.26407265663147,-0.750240802764893,-0.0432519912719727,-0.272679567337036,-0.821621417999268,-0.115177154541016,-0.464343309402466,-1.04356288909912,-0.0452365875244141,-0.437482595443726,-1.15456581115723,-0.11068058013916,-0.491535186767578,-1.29812669754028,-0.167752265930176,-0.610655069351196,-1.42702722549438,-0.193606376647949,-0.734255075454712,-1.51779365539551,-0.222851753234863,-0.7483811378479,-1.58624744415283,-0.291604995727539,-0.593323707580566,-1.65006971359253,-0.397189140319824,-0.07091024518013,-1.81165647506714,-0.659370422363281,-0.140854835510254,-1.80043935775757,-0.649075508117676,-0.190779447555542,-1.78021240234375,-0.623007774353027,-0.248048186302185,-1.73917055130005,-0.579840660095215,-0.368418216705322,-1.69889879226685,-0.50560188293457,-0.0376263856887817,-1.57145929336548,-0.0567531585693359,-0.148005902767181,-1.50071096420288,-0.0728597640991211,-0.268303871154785,-1.51029205322266,-0.0643959045410156,-0.309150695800781,-1.48725032806396,-0.0428237915039063,-0.409210085868835,-1.44870376586914,-0.0451440811157227,-0.434995293617249,-1.41963624954224,-0.0317249298095703,-0.491835832595825,-1.36590576171875,-0.0376644134521484,-0.512933015823364,-1.30426549911499,-0.0777425765991211,-0.481327056884766,-1.28655338287354,-0.100139617919922,-0.493327140808105,-1.32794666290283,-0.126499176025391,-0.535153150558472,-1.38768720626831,-0.143046379089355,-0.560547351837158,-1.43207025527954,-0.151137351989746,-0.569409608840942,-1.46405363082886,-0.171244621276855,-0.521848201751709, --1.48930406570435,-0.224536895751953,-0.43582546710968,-1.51727342605591,-0.296789169311523,-0.35156786441803,-1.57211256027222,-0.366572380065918,-0.268788754940033,-1.62925624847412,-0.420634269714355,-0.181225717067719,-1.66623258590698,-0.458890914916992,-0.087065190076828,-1.68037843704224,-0.493206024169922,-0.0113931596279144,-0.890588760375977,0.0321874618530273,-0.0421118140220642,-0.802155494689941,0.0296792984008789,-0.175849795341492,-0.821362495422363,0.0898046493530273,-0.289866924285889,-0.824051380157471,0.139734268188477,-0.285181760787964,-0.659732818603516,0.128419876098633,-0.312049865722656,-0.597062587738037,0.115899085998535,-0.506678581237793,-0.741682529449463,0.130518913269043,-0.566312074661255,-1.00192642211914,0.0553932189941406,-0.933672904968262,-1.74364376068115,-0.448775291442871,-0.96507740020752,-1.64459180831909,-0.32298755645752,-0.758339881896973,-1.50240421295166,-0.286277770996094,-0.508464813232422,-1.29737043380737,-0.256023406982422,-0.502855062484741,-1.12483596801758,-0.0744333267211914,-0.0648418366909027,-2.00056934356689,-0.919124603271484,-0.135010242462158,-2.01018047332764,-0.902218818664551,-0.15009343624115,-2.00183010101318,-0.904712677001953,-0.187194228172302,-1.97986507415771,-0.881087303161621,-0.332848310470581,-1.92799758911133,-0.780349731445313,-0.658697605133057,-1.84436511993408,-0.604063987731934,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,-5.7220458984375e-06,-0.000223517417907715,0.000306129455566406,0,2.98023223876953e-06,0,-0.00188469886779785,0.000725746154785156,0.00400066375732422,0,6.07967376708984e-06,0,-0.00951874256134033,-0.0154560804367065,0.00300979614257813,0,4.58955764770508e-06, -0,-0.00603783130645752,-0.0191738605499268,0.000716209411621094,0,4.58955764770508e-06,0,0.00367313623428345,-0.0104723572731018,-0.001007080078125,0.000241547822952271,-0.000535786151885986,-5.7220458984375e-05,0.00930768251419067,-0.0408455729484558,-0.00432491302490234,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,-0.000254631042480469,-0.0102643966674805,0.0140647888183594,0,7.62939453125e-06,0,-0.00784873962402344,0.00021660327911377,0.0139083862304688,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,-0.313318252563477,-1.46674633026123,-2.76006460189819,-0.558161497116089,-1.68521022796631,-2.56953859329224,-0.400536060333252,-1.36100196838379,-2.11972188949585,-0.665369033813477,-1.87363338470459,-1.91583395004272,-0.578195333480835,-1.20559310913086,-1.53702878952026,-0.889949321746826,-1.71502685546875,-1.44151306152344,-0.681051015853882,-0.831201553344727,-1.04062795639038,-0.981273651123047,-1.37375164031982,-0.933132171630859,-0.606936931610107,-0.456741333007813,-0.607446432113647,-0.886311054229736,-0.950305461883545,-0.609196901321411,-0.160778999328613,-0.039031982421875,-0.0577678382396698,-0.58652925491333,-0.372584819793701,-0.118378162384033,-0.472238063812256,-0.247886657714844,-0.0226563215255737,-0.64500093460083,-1.03645801544189,-1.2658257484436,-1.00997018814087,-1.61718845367432,-1.16575384140015,-0.361837863922119,-0.140706062316895,-0.224008977413177,-0.698421001434326,-0.547140598297119,-0.266053915023804,-0.466040253639221,-1.43158721923828,-2.77490282058716,-0.587167024612427,-1.51969814300537,-2.17271900177002,-0.813158512115479,-1.3719596862793,-1.56364583969116,-0.950564622879028,-1.17885971069336,-1.29254007339478,-1.06334447860718,-0.984959602355957,-1.00760269165039,-0.970449447631836,-0.622415542602539,-0.623803615570068,-0.756429195404053, --0.232287883758545,-0.305153846740723,-0.659777164459229,-0.127854824066162,-0.148908734321594,-0.306241989135742,-0.114137172698975,-0.0261518955230713,-0.224026083946228,-0.309413194656372,0.0997695922851563,-0.164644837379456,-0.387877464294434,0.0653371810913086,-0.13261890411377,-0.461999177932739,0.0350408554077148,-0.227492809295654,-0.47033429145813,0.0719566345214844,-0.145220398902893,-0.39400315284729,0.0419559478759766,-0.172088503837585,-0.377187728881836,0.0562601089477539,-0.152677178382874,-0.266441106796265,0.0457944869995117,-0.142243146896362,-0.24697208404541,0.0397186279296875,-0.0600399374961853,-0.226599931716919,0.0144433975219727,-0.051233172416687,-0.248492240905762,0.0120334625244141,-0.233275651931763,-0.463015794754028,0.0751361846923828,-0.217973947525024,-0.280116319656372,0.102158546447754,-0.360256433486938,-0.567936658859253,0.172903060913086,-0.560643434524536,-0.845778942108154,0.252150535583496,-0.758937358856201,-1.06503629684448,0.268401145935059,-0.487352132797241,-1.07646560668945,-0.0879278182983398,-0.563394069671631,-1.40122842788696,-0.329756736755371,-0.894498348236084,-1.64483213424683,-0.410342216491699,-1.13337182998657,-1.78386354446411,-0.494786262512207,-0.970156192779541,-1.92428207397461,-0.664769172668457,-0.643121480941772,-2.02414131164551,-0.856354713439941,-0.389002799987793,-2.00216388702393,-1.11008262634277,-0.203462362289429,-2.0045337677002,-1.2983455657959,-0.189151644706726,-2.0039587020874,-1.3857536315918,-0.172820150852203,-2.02152729034424,-1.43777179718018,-0.0991992950439453,-2.00912380218506,-1.4929838180542,0.00268357992172241,-0.557142496109009,-0.0148839950561523,0.00853452086448669,-0.642753124237061,-0.00468921661376953,0.0383570492267609,-0.631728887557983,-0.00773239135742188,0.0488007962703705,-0.627031087875366,-0.0192174911499023,-0.0186887979507446,-0.435096979141235,-0.00969791412353516,-0.0310171097517014,-0.509100914001465,-0.00376796722412109,0.00099259614944458,-0.30660605430603,-0.00655269622802734,-0.0012725293636322,-0.262787342071533, --0.00314617156982422,0.00540179014205933,-0.201163053512573,-0.00301456451416016,0.00629183650016785,-0.119051218032837,-0.00189781188964844,-0.00814610719680786,-0.196057558059692,-0.0007171630859375,-0.00850766897201538,-0.132160425186157,0.000200271606445313,-0.0523192882537842,-0.257115364074707,0.00691986083984375,-0.0531682372093201,-0.219703435897827,0.00763702392578125,-0.0776687860488892,-0.322345733642578,0.0146713256835938,-0.105131983757019,-0.279565572738647,0.0249662399291992,-0.0653934478759766,-0.531166315078735,0.00631904602050781,-0.0947867631912231,-0.455688714981079,0.0177574157714844,-0.0635007619857788,-0.699768304824829,0.00108623504638672,-0.112668871879578,-0.67302417755127,0.0148735046386719,-0.0039713978767395,-0.596909761428833,-0.0121288299560547,-0.0879231691360474,-0.747065544128418,0.0373420715332031,0.0310296416282654,-0.594784736633301,-0.00304317474365234,0.0461181402206421,-0.593765497207642,-0.0188198089599609,-0.0371162891387939,-0.661893606185913,-0.00623512268066406,-0.0872296094894409,-0.687891483306885,0.0180339813232422,-0.000603049993515015,-0.573630571365356,-0.011754035949707,-0.0274307727813721,-0.443856716156006,-0.00736618041992188,-0.00567421317100525,-0.289867401123047,-0.00480270385742188,0.00707405805587769,-0.169850826263428,-0.00242805480957031,-0.00856918096542358,-0.170045852661133,-8.96453857421875e-05,-0.052131712436676,-0.237289190292358,0.00708961486816406,-0.0840940475463867,-0.302227020263672,0.0172977447509766,-0.0728540420532227,-0.503832817077637,0.00937652587890625,-0.0805628299713135,-0.699510335922241,0.00643825531005859,-0.0514482259750366,-0.685675859451294,-9.1552734375e-05,-0.0105041861534119,-0.627609014511108,-0.00611782073974609,0.0430269837379456,-0.600928068161011,-0.0145692825317383,0.046630322933197,-0.627145767211914,-0.0155305862426758,0.0444642901420593,-0.626463890075684,-0.0120649337768555,0.0386830568313599,-0.601359605789185,-0.0100259780883789,-0.0209894180297852,-0.640079021453857,0.00217533111572266,-0.0663251876831055,-0.692751169204712, -0.00694942474365234,-0.0953181982040405,-0.690338373184204,0.0108299255371094,-0.0819308757781982,-0.485122203826904,0.0126371383666992,-0.0943269729614258,-0.287436008453369,0.0210399627685547,-0.0526490211486816,-0.226388454437256,0.00736141204833984,-0.00919294357299805,-0.154557943344116,0.000185012817382813,0.00844764709472656,-0.160891532897949,-0.00248050689697266,-0.00499510765075684,-0.275370836257935,-0.00406837463378906,-0.0317768156528473,-0.460143327713013,-0.00596237182617188,0.00276723504066467,-0.603921890258789,-0.00930213928222656,0.00564166903495789,-0.810727119445801,0.0109367370605469,-0.0108785033226013,-0.115904331207275,-0.000308990478515625,-0.0505272150039673,-0.225566148757935,0.00742721557617188,-0.0460566878318787,-0.251270055770874,0.00811767578125,-0.0203836560249329,-0.180118799209595,-0.00269031524658203,-0.130262851715088,-0.250982284545898,0.0344972610473633,-0.117203950881958,-0.264906167984009,0.0294351577758789,-0.111932516098022,-0.426084041595459,0.0248937606811523,-0.131406307220459,-0.406060457229614,0.0336275100708008,-0.0608463287353516,-0.608408689498901,0.00267505645751953,-0.0676321983337402,-0.625106811523438,0.00355243682861328,-0.0771245956420898,-0.621977090835571,0.00477313995361328,-0.0874193906784058,-0.604537010192871,0.00545692443847656,-0.0998135805130005,-0.575115442276001,0.00758266448974609,-0.116073131561279,-0.524993896484375,0.015141487121582,-0.131809592247009,-0.640950679779053,0.0178766250610352,-0.162732839584351,-0.578699588775635,0.0267667770385742,-0.146711945533752,-0.693308353424072,0.0388174057006836,-0.15819787979126,-0.565658569335938,0.0302762985229492,-0.194528460502625,-0.778333187103271,0.0749998092651367,-0.17755115032196,-0.703980445861816,0.0459442138671875,-0.251294732093811,-0.428556680679321,0.093052864074707,-0.230907678604126,-0.300701141357422,0.114377021789551,-0.220123648643494,-0.322891473770142,0.0963869094848633,-0.186869621276855,-0.495671510696411,0.0480079650878906,-0.146866679191589,-0.583429336547852,0.0179805755615234, --0.120862483978271,-0.633774518966675,0.00953102111816406,-0.104141712188721,-0.655752658843994,0.00841331481933594,-0.0885007381439209,-0.671103239059448,0.00714015960693359,-0.0731791257858276,-0.676269054412842,0.00406837463378906,-0.0600484609603882,-0.668688535690308,0.000742912292480469,-0.0151244401931763,-0.182001709938049,0.00273036956787109,-0.0691469311714172,-0.191280841827393,0.0184659957885742,-0.131247639656067,-0.227697134017944,0.0319385528564453,0.0104820728302002,-0.143343806266785,-0.00631332397460938,-0.030032217502594,-0.137686133384705,0.00679588317871094,-0.1225705742836,-0.224181056022644,0.034820556640625,0.021527498960495,-0.113902986049652,-0.0104265213012695,-0.00540107488632202,-0.0854357481002808,0.000159263610839844,-0.120507121086121,-0.237104535102844,0.0448093414306641,-0.0286937355995178,-0.202289938926697,0.00506877899169922,-0.082869291305542,-0.204612255096436,0.0218124389648438,-0.147937417030334,-0.244087219238281,0.0387210845947266,-0.147562623023987,-0.234616041183472,0.106234550476074,-0.158271431922913,-0.284891128540039,0.118943214416504,-0.0673381090164185,-0.280551433563232,0.10075855255127,-0.0892493724822998,-0.326348304748535,0.117233276367188,-0.0747051239013672,-0.288140296936035,0.0782613754272461,-0.0932612419128418,-0.35080885887146,0.105486869812012,-0.172607064247131,-0.297540903091431,0.0669431686401367,-0.195152163505554,-0.360595703125,0.0928163528442383,-0.170497059822083,-0.261216640472412,0.0456600189208984,-0.195913195610046,-0.284198522567749,0.053715705871582,-0.137622475624084,-0.382181882858276,0.132214546203613,-0.128893733024597,-0.389925479888916,0.122551918029785,-0.168030261993408,-0.347059011459351,0.131134986877441,-0.201952457427979,-0.346849918365479,0.0922470092773438,-0.20745587348938,-0.37987208366394,0.112969398498535,-0.203338742256165,-0.392674207687378,0.112550735473633,-0.227312088012695,-0.330514192581177,0.0780172348022461,-0.194306254386902,-0.365769863128662,0.0674972534179688,-0.0351273417472839,-0.21860146522522,0.00453281402587891, --0.0766751170158386,-0.217671871185303,0.0197315216064453,-0.15278434753418,-0.260561227798462,0.0436792373657227,-0.206383347511292,-0.315973520278931,0.0601367950439453,-0.223393797874451,-0.350303173065186,0.0760536193847656,-0.154898405075073,-0.218375682830811,0.114501953125,-0.0642459392547607,-0.250145435333252,0.096247673034668,-0.0495758056640625,-0.166252613067627,0.039677619934082,-0.0514034032821655,-0.131304144859314,0.0188484191894531,0.0187936723232269,-0.0876680612564087,-0.00923824310302734,0.00500434637069702,-0.04050612449646,-0.00189971923828125,-0.104166746139526,-0.0869283676147461,0.0988492965698242,-0.327898979187012,-0.407950878143311,0.240639686584473,-0.193900585174561,-0.188120365142822,0.233660697937012,-0.385794639587402,-0.632518529891968,0.393777847290039,-0.216849327087402,-0.289500951766968,0.24631404876709,-0.319392681121826,-0.786197423934937,0.352054595947266,-0.0658626556396484,-0.250436067581177,0.187272071838379,-0.218131065368652,-0.649493217468262,0.222614288330078,-0.474133014678955,-0.823428153991699,0.264838218688965,-0.195023059844971,-0.408905029296875,0.0390539169311523,-0.0750470161437988,-0.204197883605957,0.0490226745605469,-0.180158615112305,-0.340601205825806,0.0276226997375488,-0.0809950828552246,-0.164288282394409,0.0243315696716309,-0.156894683837891,-0.245121717453003,0.0406484603881836,-0.0627593994140625,-0.10584568977356,0.0242228507995605,-0.0965843200683594,-0.124382019042969,0.0402336120605469,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,-0.390628814697266,-0.689579010009766,0.072293758392334,-0.265620708465576,-0.381097555160522,0.031773567199707,-0.314923763275146,-0.53047251701355,0.0231547355651855,-0.210036754608154,-0.24000096321106,0.0597119331359863,-0.441777229309082,-1.00437450408936,-0.104071617126465,-0.383724689483643,-0.504174709320068,0.000916481018066406,-0.421486377716064,-0.685399055480957,-0.0531711578369141,-0.500318050384521,-0.950218200683594,-0.0374631881713867,-0.535407066345215,-0.839343547821045, --0.151315689086914,-0.50340747833252,-0.613498210906982,-0.0530242919921875,-0.576105117797852,-1.16193294525146,-0.21411657333374,-0.566573143005371,-1.33132553100586,-0.284521102905273,-0.753837108612061,-1.64014053344727,-0.50545597076416,-0.722852230072021,-1.45807313919067,-0.434245586395264,-0.695161819458008,-1.20287799835205,-0.349555969238281,-0.654019355773926,-0.90457010269165,-0.251780033111572,-0.984096527099609,-1.7735800743103,-0.603168487548828,-0.960488796234131,-1.76381397247314,-0.900224208831787,-0.905142784118652,-1.56784725189209,-0.762971878051758,-1.0372679233551,-1.90045166015625,-0.760265350341797,-0.868030309677124,-1.90828990936279,-1.12190008163452,-0.481257915496826,-1.33465576171875,-1.79066801071167,-0.699708223342896,-1.45311641693115,-1.87276744842529,-0.796446084976196,-1.76279544830322,-1.703444480896,-0.824596405029297,-2.05988311767578,-0.958756446838379,-0.787830591201782,-1.99646663665771,-1.31634950637817,-0.685717344284058,-2.10927963256836,-1.14601039886475,-0.708514451980591,-2.02411079406738,-1.54407024383545,-0.343206882476807,-1.43360900878906,-2.44824457168579,-0.551127791404724,-1.52004146575928,-2.45440196990967,-0.626673102378845,-1.80814170837402,-2.2385458946228,-0.599759578704834,-1.98564338684082,-1.81608963012695,-0.53883171081543,-2.07815361022949,-1.40190315246582,-0.400622010231018,-2.01912784576416,-1.67695903778076,-0.525268077850342,-1.86581039428711,-2.16553211212158,-0.24578332901001,-1.46043300628662,-2.96640729904175,-0.397825002670288,-1.40467357635498,-2.9775013923645,-0.415076076984406,-1.63622188568115,-2.80767869949341,-0.162209391593933,-1.43050861358643,-3.03048372268677,-0.277638137340546,-1.39039993286133,-3.09837818145752,-0.307180404663086,-1.58984851837158,-2.95088624954224,-0.22847181558609,-1.91916751861572,-2.0311279296875,-0.324190974235535,-1.95648193359375,-1.89793968200684,-0.379860162734985,-1.82060050964355,-2.38960933685303,-0.251958012580872,-1.77963352203369,-2.54815196990967,-0.0843888819217682,-1.39941692352295,-3.06607294082642, --0.156081169843674,-1.38518619537354,-3.1220440864563,-0.169339090585709,-1.56822490692139,-3.04918432235718,-0.142276108264923,-1.88951587677002,-2.11738395690918,-0.175073355436325,-1.80466365814209,-2.62440776824951,-0.819418907165527,-1.33154916763306,-0.644001007080078,-0.791994571685791,-1.10152292251587,-0.502536296844482,-0.673913478851318,-0.634932518005371,-0.818487644195557,-1.12448072433472,-0.802107810974121,-0.787348031997681,-0.96251392364502,-1.13660860061646,-0.754597187042236,-0.753247261047363,-0.885473728179932,-0.357609272003174,-0.501002311706543,-0.287543296813965,-0.401989340782166,-0.845338344573975,-0.444649219512939,-0.463133811950684,-0.805628776550293,-0.742025852203369,-0.437487840652466,-0.690831661224365,-0.667111396789551,-0.205788612365723,-0.614380836486816,-0.680253505706787,-0.123053550720215,-0.607129573822021,-0.47371244430542,-0.0718131065368652,-0.547168731689453,-0.490113735198975,-0.013042688369751,-0.446206569671631,-0.44077467918396,0.0344033241271973,-0.329115390777588,-0.351394653320313,0.0588397979736328,-0.508635520935059,-0.321572780609131,0.0113368034362793,-0.459177017211914,-0.324519395828247,0.05265212059021,-0.363309860229492,-0.282415866851807,0.0843765735626221,-0.241524219512939,-0.207595825195313,0.0795361995697021,-0.117108345031738,-0.113481163978577,0.0521836280822754,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06, -0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06, -0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-0.0145664215087891,0.00078737735748291,0.00715696811676025,-0.0108070373535156,0.00149989128112793,0.00509929656982422,-0.0357599258422852,0.00060272216796875,0.0140547752380371,-0.0279569625854492,0.00299978256225586,0.00951564311981201,-0.0665245056152344,-0.00497627258300781,0.0204346179962158,-0.055267333984375,0.000657558441162109,0.0132745504379272,-0.10570240020752,-0.0193893909454346,0.0279868450015783,-0.0923728942871094,-0.00960707664489746,0.0143791437149048,-0.149989128112793,-0.0409989356994629,0.0358432531356812,-0.134835243225098,-0.0252108573913574,0.0136259794235229,-0.192259311676025,-0.0689835548400879,0.0461731553077698,-0.168575286865234,-0.0415878295898438,0.015323281288147,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,-0.0160751342773438,0.00155329704284668,0.00731873512268066,-0.0392971038818359,0.0025634765625,0.0133341550827026,-0.0719242095947266,-0.00236201286315918,0.0178400278091431,-0.11332893371582,-0.0184066295623779,0.0205500535666943,-0.158910751342773,-0.0400207042694092,0.0284181237220764,-0.198283195495605,-0.0632095336914063,0.0358630418777466,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,-0.00217628479003906,0.00030207633972168,0.0012664794921875,-0.00699234008789063,0.00078272819519043,0.00308811664581299,-0.017237663269043,0.000955104827880859,0.00504076480865479,-0.0350465774536133, --0.0014495849609375,0.00783681869506836,-0.061525821685791,-0.0112595558166504,0.0104606226086617,-0.118242263793945,-0.0335478782653809,0.0129258036613464,-0.25495719909668,-0.116696119308472,0.0614889860153198,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,-0.00433158874511719,0.00052642822265625,0.00228595733642578,-0.0129222869873047,0.00137472152709961,0.0051501989364624,-0.0298786163330078,0.00095367431640625,0.00814986228942871,-0.0581293106079102,-0.00590372085571289,0.0118870139122009,-0.100044250488281,-0.0195496082305908,0.0143730789422989,-0.161769866943359,-0.0464401245117188,0.0169217586517334,-0.235573291778564,-0.0921218395233154,0.0552029609680176,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,-0.0141973495483398,0.00181269645690918,0.00650334358215332,-0.0354089736938477,0.00312948226928711,0.0116628408432007,-0.0663681030273438,-0.000463962554931641,0.0156466960906982,-0.107053756713867,-0.013885498046875,0.0163320004940033,-0.151091575622559,-0.0338013172149658,0.0176717936992645,-0.188564300537109,-0.05350661277771,0.022343635559082,-0.2417893409729,-0.0890395641326904,0.0336172580718994,-0.244795322418213,-0.0924632549285889,0.0277427434921265,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06, -0,0,-4.58955764770508e-06,0,-0.00724601745605469,0.00096285343170166,0.00358986854553223,-0.0199728012084961,0.00238633155822754,0.00721263885498047,-0.0426368713378906,0.00103139877319336,0.0107473134994507,-0.0764369964599609,-0.00725865364074707,0.0133327841758728,-0.120611190795898,-0.0214309692382813,0.0144066866487265,-0.168686866760254,-0.0456023216247559,0.0146524906158447,-0.213740348815918,-0.0705840587615967,0.027428925037384,-0.224656581878662,-0.0784988403320313,0.0383224487304688,-0.159158706665039,-0.0649688243865967,0.0533881187438965,-0.116750717163086,-0.0359864234924316,0.0388069152832031,-0.0793328285217285,-0.0193085670471191,0.027463436126709,-0.0495338439941406,-0.00671076774597168,0.019488513469696,-0.0263051986694336,-0.00197911262512207,0.0114564895629883,-0.00976371765136719,-9.00030136108398e-05,0.00497829914093018,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,-0.0125417709350586,-0.00144803524017334,0.00650477409362793,-0.0251035690307617,-0.0041351318359375,0.0119849443435669,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,-0.0410661697387695,-0.012176513671875,0.01877161860466,-0.0634217262268066,-0.0203461647033691,0.0258220434188843,0,7.62939453125e-06,0,-0.0370769500732422,-0.0148605108261108,0.0202001333236694,-0.0903334617614746,-0.0338456630706787,0.0364541411399841,-0.0746378898620605,-0.0306228399276733,0.0350357294082642,-0.0762662887573242,-0.0336593389511108,0.0349012613296509,-0.0975193977355957,-0.0427398681640625,0.0419412851333618,-0.0898890495300293,-0.0366989374160767,0.039141058921814,-0.0517868995666504,-0.0217026472091675,0.027382493019104,-0.0505385398864746,-0.0231872797012329,0.0262688398361206,-0.116832733154297, --0.0531296730041504,0.0473637580871582,-0.0896964073181152,-0.0368103981018066,0.0376968383789063,0,-1.54972076416016e-06,0,-0.164937973022461,-0.08428955078125,0.0623519420623779,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,-0.358603000640869,-0.210361003875732,0.0723836421966553,-0.260848522186279,-0.167388916015625,0.0809013843536377,-0.129260540008545,-0.0911972522735596,0.0550162792205811,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,-0.245378017425537,-0.0909867286682129,0.0100287199020386,-0.383453369140625,-0.180980205535889,0.0260912179946899,-0.41049337387085,-0.217001438140869,0.0538948774337769,-0.322449207305908,-0.142366170883179,0.0555891990661621,-0.333118438720703,-0.140530347824097,0.0436110496520996,0,4.29153442382813e-06,0,-0.00907421112060547,0.00039219856262207,0.00162923336029053,0,6.19888305664063e-06,0,-0.00623464584350586,0.00107717514038086,0.00177288055419922,-0.00128889083862305,0.00051569938659668,0.000295639038085938,-0.002716064453125,0.00072932243347168,0.00124549865722656,-0.000721931457519531,0.000425577163696289,0.000322818756103516,-0.000834465026855469,0.00026094913482666,0.000532150268554688,-0.000238895416259766,0.00015556812286377,0.000167369842529297,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,-0.000118732452392578,0.000112771987915039,5.14984130859375e-05,-5.24520874023438e-05,4.87565994262695e-05,3.91006469726563e-05,-4.76837158203125e-06,4.52995300292969e-06, -2.38418579101563e-06,-3.33786010742188e-06,6.07967376708984e-06,2.86102294921875e-06,0,2.98023223876953e-06,1.9073486328125e-06,-2.14576721191406e-05,2.12192535400391e-05,9.5367431640625e-06,-1.33514404296875e-05,1.68085098266602e-05,1.1444091796875e-05,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.147392272949219,-0.0288944244384766,-0.202075302600861,-0.239797115325928,-0.0846681594848633,-0.423667907714844,-0.285392999649048,-0.166020393371582,-0.64807003736496,-0.300125122070313,-0.274911880493164,-0.876344203948975,-0.291043043136597,-0.395524978637695,-1.09972178936005,-0.162639856338501,-0.50534725189209,-1.34933006763458,0.0112210512161255,-0.611281394958496,-1.56431555747986,0.184719324111938,-0.772279739379883,-1.64631533622742,0.205301880836487,-0.967265129089355,-1.56282901763916,0.156917631626129,-1.10126209259033,-1.49779987335205,0.0932871699333191,-1.19295692443848,-1.459547996521,0.0302663147449493,-1.25501918792725,-1.42377948760986,0.00597655773162842,-1.28619289398193,-1.40265560150146,-0.173703670501709,-0.0350284576416016,-0.144991815090179,-0.302762508392334,-0.115859031677246,-0.327416837215424,-0.378468990325928,-0.229336738586426,-0.524648427963257,-0.385486364364624,-0.417571067810059,-0.747655630111694, --0.457935571670532,-0.541269302368164,-0.979405879974365,-0.438550233840942,-0.79615592956543,-1.26130366325378,-0.320799350738525,-0.976748466491699,-1.46159052848816,-0.195934057235718,-1.11180973052979,-1.57772493362427,0.0605313777923584,-1.381667137146,-1.74932646751404,0.242930769920349,-1.62553977966309,-1.9988386631012,0.273672103881836,-1.75190734863281,-2.27575278282166,0.245625793933868,-1.8134593963623,-2.48779463768005,0.197792083024979,-1.84684467315674,-2.64055395126343,0.145275056362152,-1.86577415466309,-2.62918901443481,-0.0868384838104248,-0.0117006301879883,-0.253911644220352,-0.13222336769104,-0.0381002426147461,-0.495590925216675,-0.106889009475708,-0.0605792999267578,-0.735898077487946,0.0734555721282959,-0.0783233642578125,-1.00212574005127,0.198465943336487,-0.203238487243652,-1.10653138160706,0.168620824813843,-0.437335014343262,-1.07296788692474,0.197450637817383,-0.671838760375977,-1.06808650493622,0.21576452255249,-0.827593803405762,-1.18886756896973,0.175196766853333,-0.922653198242188,-1.35926127433777,0.11376017332077,-0.964791297912598,-1.52407824993134,0.0438088923692703,-0.965770721435547,-1.66245090961456,-0.0363643169403076,-0.0111360549926758,-0.149410367012024,-0.053682804107666,-0.0274696350097656,-0.293490290641785,-0.052847146987915,-0.0528049468994141,-0.424975097179413,-0.0518381595611572,-0.0945072174072266,-0.548102378845215,-0.0250082015991211,-0.135459899902344,-0.696895182132721,0.00138509273529053,-0.160867691040039,-0.867420256137848,0.0118756294250488,-0.18242073059082,-1.02611982822418,-0.00198733806610107,-0.200067520141602,-1.21487724781036,-0.00572916865348816,-0.216304779052734,-1.3317985534668,-0.0028298944234848,-0.224418640136719,-1.38276100158691,-0.000967130064964294,-0.00103759765625,-0.0976827144622803,-0.11542797088623,-0.0215244293212891,-0.237562417984009,-0.180213928222656,-0.060765266418457,-0.475517988204956,-0.206685304641724,-0.117620468139648,-0.711203753948212,-0.195073127746582,-0.176530838012695,-0.945311903953552,-0.0905723571777344,-0.231302261352539, --1.19655382633209,0.0818338394165039,-0.306580543518066,-1.42792332172394,0.253576874732971,-0.49211597442627,-1.4877382516861,0.0917444229125977,-0.789874076843262,-1.34467947483063,-0.0614660382270813,-0.952648162841797,-1.37431144714355,-0.14650022983551,-1.06160449981689,-1.45345425605774,-0.135784864425659,-1.12559127807617,-1.50116086006165,-0.0645097568631172,-1.16457080841064,-1.52930474281311,-0.0309199094772339,-0.305977821350098,0.000557899475097656,-0.049164891242981,-0.325116157531738,0.00540924072265625,-0.0639864802360535,-0.386171102523804,0.00868415832519531,-0.0578601956367493,-0.481690406799316,0.00433731079101563,-0.0494351387023926,-0.55019998550415,-0.00034332275390625,-0.0447431802749634,-0.610333681106567,-0.00377178192138672,-0.016452968120575,-0.322360515594482,-0.00393772125244141,0.00256729125976563,-0.367093801498413,-0.0102291107177734,0.016986608505249,-0.426443338394165,-0.0153350830078125,0.0258229970932007,-0.471642971038818,-0.0192785263061523,0.0275687575340271,-0.487113475799561,-0.0206193923950195,0.013288676738739,-0.481449365615845,-0.016728401184082,-0.0105046629905701,-0.516610860824585,-0.0117673873901367,-0.0271687507629395,-0.578382968902588,-0.00882530212402344,-0.0389587879180908,-0.637378931045532,-0.00643253326416016,-0.0164713859558105,-0.392428398132324,-0.00616455078125,-0.0284944176673889,-0.428329229354858,-0.00363445281982422,-0.03609699010849,-0.483413219451904,-0.00301456451416016,-0.0383657217025757,-0.553422212600708,-0.00441360473632813,-0.00598573684692383,-0.37428879737854,-0.00843715667724609,-0.0202004909515381,-0.95658016204834,-0.108538627624512,-0.273462057113647,-0.885106086730957,-0.109763145446777,-0.369971036911011,-0.927593231201172,-0.0722284317016602,-0.114088773727417,-0.899652481079102,-0.125219345092773,-0.145157098770142,-0.858946800231934,-0.135933876037598,-0.093264102935791,-0.936429977416992,-0.11249828338623,-0.0671075582504272,-0.94859790802002,-0.107621192932129,-0.0412197113037109,-0.953202724456787,-0.106471061706543,-0.38413143157959, --0.934737682342529,-0.0738592147827148,-0.351471900939941,-0.917858600616455,-0.114277839660645,-0.372672557830811,-0.927650928497314,-0.124228477478027,-0.462097883224487,-0.944911479949951,-0.10236644744873,-0.508829832077026,-0.997405529022217,-0.102794647216797,-0.426564931869507,-1.03251361846924,-0.181416511535645,-0.352744460105896,-1.07110404968262,-0.24378490447998,-0.271386384963989,-1.14459705352783,-0.307888984680176,-0.206672489643097,-1.22261047363281,-0.339400291442871,-0.136224508285522,-1.28414392471313,-0.371273040771484,-0.0663172751665115,-1.32073354721069,-0.400850296020508,-0.106204763054848,-1.57675409317017,-0.201694488525391,-0.216624706983566,-1.56068897247314,-0.17897891998291,-0.333024561405182,-1.53888654708862,-0.137529373168945,-0.411670386791229,-1.50476169586182,-0.102199554443359,-0.463413715362549,-1.44761657714844,-0.0759677886962891,-0.495610594749451,-1.40958881378174,-0.059636116027832,-0.493849277496338,-1.37769603729248,-0.0777177810668945,-0.488004922866821,-1.35250616073608,-0.113804817199707,-0.487204313278198,-1.34478282928467,-0.127165794372559,-0.495217084884644,-1.34111881256104,-0.134433746337891,-0.497854709625244,-1.33952283859253,-0.131831169128418,-0.493539333343506,-1.33947610855103,-0.122881889343262,-0.489624500274658,-1.37724685668945,-0.0776271820068359,-0.487185716629028,-1.41016864776611,-0.0613012313842773,-0.459187507629395,-1.44497156143188,-0.0797319412231445,-0.411758661270142,-1.5046968460083,-0.102958679199219,-0.332475960254669,-1.54800033569336,-0.134465217590332,-0.216573536396027,-1.57447195053101,-0.171354293823242,-0.103179231286049,-1.58736181259155,-0.192459106445313,-0.0914496779441833,-1.26886987686157,-0.143678665161133,-0.183133989572525,-1.26189231872559,-0.127607345581055,-0.276891350746155,-1.2536768913269,-0.0977725982666016,-0.330671191215515,-1.23209047317505,-0.0778312683105469,-0.358180522918701,-1.19421672821045,-0.0657405853271484,-0.376236438751221,-1.17076826095581,-0.0579681396484375,-0.375930070877075,-1.14294910430908,-0.0794229507446289, --0.393904209136963,-1.13321399688721,-0.0984029769897461,-0.404439449310303,-1.13183784484863,-0.112302780151367,-0.41726279258728,-1.13333320617676,-0.123942375183105,-0.427533864974976,-1.13938665390015,-0.125188827514648,-0.437410116195679,-1.14967632293701,-0.117573738098145,-0.448729038238525,-1.20155143737793,-0.0775108337402344,-0.45162045955658,-1.25102233886719,-0.06048583984375,-0.427458524703979,-1.30464458465576,-0.082371711730957,-0.388446986675262,-1.38537788391113,-0.107476234436035,-0.319330751895905,-1.44587182998657,-0.1417236328125,-0.211201190948486,-1.48769283294678,-0.183060646057129,-0.101466119289398,-1.51110649108887,-0.209996223449707,-0.0156207382678986,-0.627282857894897,0.0313825607299805,-0.15313720703125,-0.562549114227295,-0.0399689674377441,-0.177148342132568,-0.559065341949463,-0.0743603706359863,-0.100808382034302,-0.593385457992554,0.00552558898925781,-0.128403186798096,-0.576536655426025,-0.0175371170043945,-0.0733442306518555,-0.613590955734253,0.022003173828125,-0.0528593063354492,-0.622456312179565,0.0309610366821289,-0.032367467880249,-0.625454664230347,0.0339059829711914,-0.197329759597778,-0.559808731079102,-0.104384422302246,-0.215595006942749,-0.578295230865479,-0.160298347473145,-0.239985227584839,-0.631513595581055,-0.187189102172852,-0.294612407684326,-0.698030948638916,-0.221489429473877,-0.472409248352051,-0.752106666564941,-0.218582630157471,-0.451667785644531,-0.816563606262207,-0.253584861755371,-0.359344959259033,-0.893240928649902,-0.306578636169434,-0.255729675292969,-0.967921257019043,-0.383689880371094,-0.157781422138214,-1.0200252532959,-0.443425178527832,-0.0775842666625977,-1.06636142730713,-0.483336448669434,-0.030832827091217,-1.10108947753906,-0.508516311645508,-0.00416883826255798,-0.0803208351135254,0.0228512287139893,-0.0418229103088379,-0.0676331520080566,-0.0216073989868164,-0.0490789413452148,-0.0696978569030762,-0.039454460144043,-0.027148962020874,-0.072819709777832,0.00492405891418457,-0.0347418785095215,-0.0699586868286133,-0.00833392143249512, --0.0197079181671143,-0.0771775245666504,0.0158095359802246,-0.0141766667366028,-0.0789628028869629,0.0213851928710938,-0.00866031646728516,-0.0795669555664063,0.0233380794525146,-0.0578243732452393,-0.0743470191955566,-0.0569677352905273,-0.0715863704681396,-0.0938701629638672,-0.0969033241271973,-0.0806057453155518,-0.112067222595215,-0.133758306503296,-0.0851612091064453,-0.135238647460938,-0.186796426773071,-0.0863375663757324,-0.1788330078125,-0.249385118484497,-0.085019588470459,-0.237619400024414,-0.321080684661865,-0.0828790664672852,-0.304394721984863,-0.380617618560791,-0.0736607313156128,-0.381802558898926,-0.432967662811279,-0.0608580708503723,-0.444297790527344,-0.463699817657471,-0.0416448712348938,-0.49303150177002,-0.48638916015625,-0.0208984613418579,-0.527684211730957,-0.51156759262085,0,-0.00591850280761719,-0.158504545688629,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.15850442647934,0,-0.00591754913330078,-0.158504545688629,0,-0.00591850280761719,-0.15850442647934,0,-0.00591850280761719,-0.15850430727005,0,-0.00591754913330078,-0.15850430727005,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591850280761719,-0.158504486083984,-0.00130105018615723,-0.00614356994628906,-0.165478229522705,-0.00177311897277832,-0.00642108917236328,-0.170103788375854,-0.00181019306182861,-0.00671768188476563,-0.173963665962219,-0.00162160396575928,-0.00671577453613281,-0.177491664886475,-0.00116795301437378,-0.00661373138427734,-0.180501222610474,-0.000603288412094116,-0.00664234161376953,-0.182587385177612,0,6.19888305664063e-06,0,-0.0259513854980469,-0.00633144378662109,-0.0481162965297699,-0.036067008972168,-0.0126562118530273,-0.0769106149673462,-0.0413000583648682,-0.0218038558959961,-0.10959780216217,-0.0475389957427979,-0.052983283996582,-0.145081281661987,-0.0572304725646973,-0.0764741897583008,-0.244582533836365,-0.0631885528564453, --0.112884521484375,-0.326589107513428,-0.0603275299072266,-0.156073570251465,-0.397768259048462,-0.0523036122322083,-0.186903953552246,-0.451659440994263,-0.0369722843170166,-0.209490776062012,-0.494720935821533,-0.018904983997345,-0.227828979492188,-0.5312739610672,-0.0104430615901947,-0.307292222976685,0.0635929107666016,-0.0216654539108276,-0.30619215965271,0.0652179718017578,-0.0354338884353638,-0.304776191711426,0.0619702339172363,-0.0492146015167236,-0.299888610839844,0.0522980690002441,-0.0677597522735596,-0.28855299949646,0.0337867736816406,-0.0865216255187988,-0.279698133468628,0.0100789070129395,-0.103721857070923,-0.272834777832031,-0.013155460357666,-0.120302200317383,-0.273486614227295,-0.0462045669555664,-0.136934757232666,-0.278936862945557,-0.0747108459472656,-0.151462554931641,-0.296911716461182,-0.131115436553955,-0.16125226020813,-0.322004318237305,-0.177340984344482,-0.163743734359741,-0.354578018188477,-0.245415687561035,-0.154793500900269,-0.408967971801758,-0.32562780380249,-0.140340089797974,-0.479620933532715,-0.399084091186523,-0.130325317382813,-0.564449310302734,-0.447021961212158,-0.112825274467468,-0.660270690917969,-0.486994743347168,-0.0878852605819702,-0.735620498657227,-0.504144668579102,-0.0564806461334229,-0.793303489685059,-0.515061855316162,-0.0277853906154633,-0.832740783691406,-0.531881332397461,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06, -0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *15735 { - a: -0.000541627407073975,0.00578469038009644,0.229976609349251,-0.613894355780623,0.771947717294097,1.0199011489749,-1.17211157083511,-0.179455578327179,-0.0345638245344162,-0.914914220571518,0.0335996150970459,-0.359372073784471,-0.618499830830842,0.365997314453125,-0.886005528271198,-0.319293946027756,-0.146461844444275,-0.428455047309399,-0.0319027304649353,-0.0726131200790405,-0.0801974982023239,-0.701139336200795,0.463641867041588,0.801094561815262,-1.55334734916687,0.193493276834488,-0.0131670981645584,-1.63994580507278,0.800906032323837,-0.716579347848892,-0.569925725925714,0.556637674570084,-1.67905521392822,0.230798304080963,0.744268119335175,-0.958792984485626,0.307202756404877,0.835374139249325,0.159425646066666,-0.504858758127718,0.211238622665405,0.778556739911437,-1.59410935640335,0.768132247030735,0.271082609891891,-0.650112682487816,1.47105133533478,-0.83844843506813,0.185238242149353,0.744570642709732,-0.0662305057048798,-0.565107153448092,-0.537854760885239,-0.70317879319191,-1.07432825863361,0.592678129673004,-0.412913292646408,-0.264959431605746,1.32338377833366,-0.986581578850746,0.660895645618439,0.459736987948418,-0.949403148144484,-0.585795641807987,-0.162265062332153,-0.672979384660721,-1.62150347232819,0.766214549541473,-0.576156320050359,-0.264958949411024,1.32648703455925,-0.916809182614088,0.696264877915382,0.87458011507988,-1.12040875852108,-0.149306849338132,-0.776567012071609,-1.27395382523537,-1.13014721870422,0.739011868834496,-1.11868241429329,-0.264954220361233,1.32481023669243,-0.965952351689339,0.5116878002882,0.982184231281281,-1.13956473767757,-0.119943025390157,-0.627977639436722,-0.971271097660065,-0.874002084136009,0.963131040334702,-1.16788184642792,-0.264958547845922,1.30945625901222,-1.09130199253559,0.658988073468208,0.791177362203598,-1.35317519307137,-0.119942746485606,-0.622344344854355,-1.03822267055511,-0.786892170337596,0.874293625354767,-1.32746082544327,1.32694438077507e-05,0.992253720760345,-1.70857161283493,0.427698373794556,0.197704415768385, --1.78929543495178,-0.127898812846524,-0.363895267248154,-1.64105004072189,-0.576962461117764,0.382498793303967,-1.74868786334991,0.426372540480628,-0.584012612700462,-1.39255118370056,0.506949675566688,-0.511931344866753,-1.43298053741455,-0.42726277316,-0.440194249153137,-1.34920465946198,-0.401312723755836,-0.373528599739075,-1.38950458168983,0.132434077560902,-0.494077831506729,-1.71377456188202,-0.443712701443691,-0.289334833621979,-1.54769724607468,0.547586327167592,-0.208736658096313,-1.45358836650848,0.717045553028584,-0.356279999017715,-0.720874533057213,0.877190932631493,-0.158910483121872,-0.496752887964249,0.631465718150139,-0.498551607131958,-0.726295977830887,0.797519810497761,-0.220347076654434,-0.561154633760452,0.794128924608231,0.0846355259418488,-0.123135983943939,0.842063516378403,-0.343979477882385,-0.441095322370529,0.949635565280914,-0.174728572368622,-0.265356957912445,0.268520034849644,0.00258071720600128,0.00460684299468994,0.127893184665699,0.17666420340538,0.0550203323364258,0.414362609386444,0.349330855533481,0.0811876654624939,0.391804188489914,0.182820275425911,0.0741388201713562,0.129564769566059,0.181239753961563,0.0828729867935181,0.505055442452431,0.437656095251441,0.356541395187378,0.527744352817535,0.367882952094078,0.424883484840393,0.357081681489944,0.553214743733406,0.667730629444122,0.000388026237487793,0.192258751019835,0.0225625038146973,0.00239220261573792,0.191597878932953,0.048133909702301,-0.162057816982269,0.134312391281128,-0.119866520166397,0.0866469740867615,-0.0750722289085388,0.0125486850738525,0.00128543376922607,0.0236896276473999,0.225259995087981,-0.109360158443451,0.128346264362335,0.0610933601856232,-0.0523982644081116,-0.035572350025177,-1.0046441257,0.348338812589645,-0.314571261405945,-0.749727547168732,0.210799545049667,0.0346435904502869,-0.744921758770943,0.645907034166157,-0.00273728370666504,-1.41414469480515,0.223679572343826,-0.25098043680191,-1.2409285902977,1.17490068078041,-0.0835736989974976,-0.590006425976753,1.39384245872498,-0.191194474697113, --0.833538711071014,1.67508506774902,0.748230025172234,-0.544594032689929,1.26474815607071,0.36513939499855,-0.609717862680554,1.45581215620041,0.632234543561935,0.225922336801887,1.4725598692894,0.597424380481243,0.456791326403618,1.45107984542847,0.584196299314499,0.527276379987597,1.01549017429352,0.542319983243942,0.861472085118294,1.05375036597252,0.425850987434387,1.35562181472778,0.496037566103041,0.00272637605667114,1.37672680616379,0.434084733679101,0.150861978530884,1.70014816522598,0.508393160998821,0.149817436933517,1.70712405443192,0.464906116016209,0.00271934270858765,1.37672108411789,0.471877910196781,0.234988689422607,1.56974345445633,0.407680533826351,-0.174572676420212,1.52545297145844,0.249283671379089,0.182431429624557,1.69271266460419,-0.337309688329697,0.39213465154171,1.3874905705452,-0.4258913397789,0.196830987930298,0.941476345062256,-0.817442150786519,0.110219731926918,1.45594942569733,-0.904501357115805,0.632821619510651,0.769024789333344,-0.371084868907928,0.148604989051819,0.274070739746094,0.105341583490372,1.43084222078323,0.742276348173618,0.0273458575829864,1.16401252150536,0.502456665039063,-0.707969860639423,-0.0420593470335007,0.324617505073547,-0.841308951377869,1.60203129053116,0.47070649266243,-0.095412015914917,1.60573744773865,0.58133796043694,0.21969211101532,0.361143440008163,-0.0565168857574463,-0.141050666570663,1.39879930019379,0.513378158211708,-0.0430633723735809,1.52769416570663,0.736359402537346,-0.0194655656814575,1.43280518054962,0.675315383821726,-0.095693826675415,-0.122353613376617,0.891287267208099,0.295757651329041,0.335485935211182,1.10310757160187,0.321331411600113,0.604330688714981,1.2237234711647,0.0841318964958191,-0.170772433280945,0.968005001544952,-0.092912495136261,-0.253793805837631,1.33924239873886,-0.689235761761665,-0.518022745847702,0.683175485348329,-0.574916042648834,-0.440308272838593,0.962259531021118,-0.958411455154419,-1.27287495136261,0.675632029771805,-0.707128793001175,-1.33633825182915,0.430539341177791,-0.583838596940041,-0.659402579069138, -1.06105130910873,-0.691117834299803,-0.726499110460281,0.761158607900143,-0.882121749222279,-1.24852034449577,0.852269321680069,-1.78713196516037,-0.561622053384781,0.550501964986324,-1.59746360778809,0.431494235992432,1.12285923957825,-1.45698928833008,0.334398671984673,1.2209130525589,-1.15568697452545,1.20746287703514,1.00663238763809,-1.31212174892426,0.979568034410477,0.967478513717651,-0.944855600595474,1.20216985046864,0.531727392226458,-0.914747170427518,1.39878642559052,0.0472183264791965,-1.08673866093159,1.24597331881523,0.00968989729881287,-0.705588892102242,1.29406380653381,-0.463590444996953,-0.744737476110458,1.34819936752319,-0.154450833797455,-0.640097349882126,1.2119862139225,-0.0531604662537575,-0.539821922779083,0.932338465005159,-0.262606367468834,0.162005484104156,0.450430393218994,-0.325535178184509,0.0814716219902039,-0.0172918438911438,-0.658255875110626,0.117769539356232,0.0444440841674805,-0.335716232657433,-0.164997100830078,-0.481111571192741,-0.966320604085922,0.13859498500824,-0.231509357690811,-0.751629389822483,-0.751210495829582,-0.522138625383377,-1.07555547356606,-0.687342083173547,-0.562479048967361,-0.848216980695724,-1.01823979616165,-0.591865062713623,-0.545521959662437,-0.714165151119232,-0.605654895305634,-0.842953205108643,-0.483436301350594,-0.573491364717484,-0.919414818286896,-0.674342256039381,-0.518806964159012,-1.09972640872002,-0.598037049174309,-0.481567114591599,-0.907028526067734,-1.04286143928766,0.44417667388916,-0.844456151127815,-1.12259158492088,0.722395852208138,-0.580904364585876,-1.18322309851646,0.154416292905807,-0.771736390888691,-1.26043701171875,1.22271022200584,-0.526529438793659,-1.2199045419693,1.14847275614738,-0.424776017665863,-0.292483493685722,1.48635691404343,-0.877497600391507,-0.0718542995174403,1.50766086578369,-0.974132396280766,-0.224597543478012,1.41015616059303,-1.01798888295889,-0.11864910274744,1.40761065483093,-0.910035360604525,-0.0553482621908188,1.4764718413353,-0.968025647103786,0.204193405807018,1.76801460981369,-0.641786329448223, -0.224089972674847,1.46621644496918,-0.94005636125803,0.72074493765831,0.865132510662079,-1.04050548374653,0.755911849439144,0.441918969154358,-0.991888999938965,0.792730890214443,0.173969358205795,-1.22340905666351,0.508036099374294,0.0355914831161499,-0.998216778039932,0.53354468551877,0.108839154243469,-1.06452003121376,-0.0839923524401636,-0.422326922416687,-1.15676888823509,-0.0925710576424876,-0.472731024026871,-1.33858186006546,-0.173972323536873,-0.370572030544281,-1.30763646960258,0.0839898160554915,-0.422327697277069,-1.15676724910736,0.102113215001665,-0.461689233779907,-1.35915732383728,-0.0486114605046888,-0.515497267246246,-1.24553361535072,-0.0463057362578363,-0.345885217189789,-1.33820018172264,-0.803736105561256,0.191782295703888,-1.21336406469345,-0.805542819201946,0.783494979143143,-1.09647926688194,-0.864582171394631,0.185009330511093,-1.21969667077065,-0.344773713672133,1.7465403676033,-0.614602897316217,-0.450973235070705,1.67578709125519,-0.662266205996275,-0.0437639355659485,1.50600773096085,-0.919746182858944,0.0718478592728964,1.51388245820999,-0.809704184532166,-0.08932875841856,1.78719180822372,-0.582049366086721,0.235310740768909,1.75614297389984,-0.698307402431965,0.292681761085987,1.4863606095314,-0.823213027790189,0.430505216121674,1.37292122840881,-0.975193001329899,0.294824533164501,1.391975492239,-0.900989057030529,0.842801317572594,1.12218803167343,-1.04608681797981,1.09179712831974,0.166414976119995,-1.1254073381424,1.08650453388691,0.188564836978912,-1.16518595814705,0.663978964090347,-0.0515466928482056,-0.825103536248207,1.0912771821022,-0.31133958697319,-0.929247170686722,0.527293659746647,-0.607196837663651,-0.725274726748466,0.23108528512472,-0.596420168876648,-1.00399136543274,0.102457292377949,-0.498295843601227,-0.957470022141933,0.71998555213213,-0.607197433710098,-0.725275360047817,0.739409931004047,-0.575551450252533,-0.739412643015385,0.779367290437222,-0.691415697336197,-0.524510569870472,0.766516879200935,-0.529738903045654,-0.466449201107025,-0.249919056892395,0.0891516804695129, --0.907355606555939,-0.147342443466187,0.994346708059311,-0.871005550026894,-0.125942289829254,-0.0834114849567413,-0.909847915172577,0.54903370141983,1.2524770796299,-0.564608655869961,0.333902359008789,1.34401336312294,-0.697349742054939,0.395421504974365,1.45285555720329,-0.899506479501724,0.841699761169821,1.28666731715202,-0.629675015807152,0.649739980697632,1.19279888272285,-0.792258471250534,1.04397982358932,0.978425610810518,-0.678680881857872,1.076889321208,1.23894459009171,-0.338703244924545,1.07018487155437,1.38583385944366,-0.616774886846542,1.06167095899582,1.25243911147118,-0.672985166311264,1.74153989553452,0.808139801025391,-0.433548226952553,1.62314569950104,-0.0367475152015686,-0.332795394584537,1.72224861383438,0.0812152028083801,-0.24965706281364,1.39660155773163,-0.595067501068115,-0.388915777206421,1.33084005117416,-0.618716388940811,0.354852974414825,0.601304993033409,-0.562451541423798,0.450954534113407,0.953458122727151,-0.732268571853638,-0.19157712161541,0.788721986114979,-0.977483343333006,-0.511116310954094,1.01727540045977,-1.37764155864716,-0.03055689483881,0.90989113599062,-0.781562656164169,0.493468444794416,0.750666573643684,-0.774573057889938,0.394608989357948,0.845017574727535,-1.38216942548752,-0.0130857303738594,0.0662160515785217,-0.902642965316772,0.116085559129715,-0.130137264728546,0.812476992607117,0.410258203744888,-0.308659195899963,0.0341061651706696,0.451850280165672,0.355645298957825,1.30000519752502,0.23265141248703,0.489411920309067,1.1241908967495,0.292826801538467,0.479417458176613,0.868879675865173,-0.0786014199256897,0.405191876940989,-0.00934278964996338,-0.576198518276215,0.699102491140366,0.527995884418488,-0.143243998289108,0.667607560753822,-0.229824185371399,-1.05579674243927,0.50410433113575,-0.0581532716751099,-0.710205435752869,0.700664132833481,-0.380177199840546,-0.929455071687698,0.763104498386383,-0.00813555717468262,-0.777359068393707,1.12265613675117,-0.540201276540756,-1.01515978574753,0.923231512308121,-1.39798438549042,-0.829887539148331,0.959312468767166, --1.5278605222702,-0.702818274497986,0.296454588882625,-1.61724251508713,-0.690849397331476,0.338924655690789,-1.7929675579071,-0.220293626189232,0.714604377746582,-0.658855007961392,-0.0566230416297913,0.405203917460767,-1.79819846153259,-0.58027321100235,-0.0938838105648756,-1.86091816425323,-0.224480614066124,0.0335991205647588,-1.14445906877518,0.153586506843567,0.0892997561022639,-1.35150843858719,0.43208122253418,-0.0899536963552237,-1.62998539209366,-0.521151795983315,-0.474920477718115,-1.78920716047287,-0.548661537468433,-1.24474966526031,-0.465824041515589,-0.0124831795692444,-0.720530053600669,-0.68266960978508,-0.418037846684456,-0.642930318601429,-1.60925751924515,-0.433736328035593,-0.742752254009247,-0.482132196426392,-1.02497288584709,-0.813647359609604,-0.141703724861145,-0.633676506578922,-0.431715610315564,-1.07308655977249,-1.08453062921762,-0.234530135989189,-1.08068041503429,-1.20512703061104,-0.34988971054554,-1.48645323514938,-1.11354440450668,-0.272629275918007,-0.985318198800087,-1.22895535826683,-0.98162018507719,-0.50640095770359,-0.664396107196808,-0.732551842927933,-1.51430678367615,-0.826699174940586,-0.886703640222549,-1.00190676748753,-1.17175349593163,-1.07429412007332,-1.49603182077408,0.198167353868484,-1.07008498907089,-1.10530558228493,0.348672270774841,-1.22549563646317,-1.01910609006882,0.160700380802155,-1.19000518321991,-1.26239091157913,-0.984275907278061,-1.38004940748215,-0.679380714893341,1.19631010293961,-1.11572435498238,-1.06424757838249,0.480861157178879,-1.30167061090469,-1.30754435062408,-0.110649228096008,-1.48133325576782,-0.915021151304245,0.726175151765347,-1.49821931123734,-0.685641776770353,-0.827291250228882,-1.47060233354568,-0.817510493099689,-0.690182939171791,-1.28093063831329,-0.53597466647625,-1.00414535403252,-1.3067302107811,-0.479075655341148,-1.07030099630356,-1.32693088054657,-0.912213213741779,-0.807455763220787,-1.37671226263046,-0.927229791879654,-0.78859743475914,-1.31838649511337,-0.598909884691238,-0.653992518782616,-1.2791143655777,-0.608937129378319, --0.808786571025848,-1.11175054311752,-0.598179504275322,-1.06441396474838,-1.1706657409668,0.787236899137497,-1.20468887686729,-0.890166029334068,0.571724638342857,-1.10826052725315,-0.821269005537033,1.57584494352341,-0.782563865184784,-0.823473274707794,1.31008371710777,-1.17940998077393,-0.972627803683281,1.19634898006916,-0.681549586355686,-0.976920634508133,1.17039068043232,-0.841271072626114,-0.795113861560822,1.62441331148148,-0.530480444431305,-0.767192721366882,1.63084030151367,-0.492553792893887,-0.978784650564194,1.67738610506058,-0.0591112598776817,-0.328582569956779,1.93045377731323,0.114889897406101,-0.4779550768435,1.87314605712891,-0.0507856160402298,-0.899590194225311,1.40686544775963,-0.483478710055351,-1.39660447835922,0.877298891544342,-1.02005872130394,-0.546795669943094,1.846036195755,-0.136590752750635,-0.690793193876743,0.115847527980804,-1.13520312309265,-0.576643787324429,0.56727060675621,-0.743501931428909,0.691256366670132,0.246221661567688,-1.05692231655121,0.185900501906872,0.752125665545464,0.319283127784729,0.18562250956893,0.813079461455345,0.76911848783493,0.391148805618286,0.82366144657135,1.20951104164124,0.988360561430454,1.34793883562088,-0.305606409907341,0.760788884013891,0.655351221561432,-0.678399264812469,0.562732085585594,1.7129413485527,0.527841135859489,0.728634811937809,1.69907456636429,0.15134984254837,0.701676249504089,1.77462631464005,0.329329505562782,0.596256361993776,1.72145682573318,0.53427392244339,0.344773926102201,1.93588203191757,-0.0956884864717722,0.450970225036144,1.67578202486038,-0.662277512252331,0.366971559822559,1.93965005874634,-0.231577701866627,0.289740719162504,1.95448046922684,-0.0881787706166506,0.346520926630525,1.68304747343063,-0.927390992641449,0.319237407124071,1.72064328193665,-0.84491965174675,0.41099131878523,1.43192458152771,-0.871484503149986,0.307602681219578,1.74548715353012,-0.646902859210968,0.405268616974354,0.616396486759186,-1.51286596059799,0.0579869414499203,0.0112196803092957,-0.224234879016876,0.0432001032855371,0.0672447085380554, --0.168509900569916,-0.0662374310195446,-0.0364024043083191,0.176073409616947,-0.00287999957799911,-0.00138533115386963,-0.216194942593575,-0.0256665721535683,0.0515061020851135,-0.453244477510452,-0.0712118707597256,-0.0306283831596375,0.119402542710304,0.0833177715539932,0.073267936706543,-0.2198805809021,0.0943055599927902,0.109074473381042,-0.676274642348289,0.152993638068438,-0.232719302177429,-0.574292115867138,0.0646074116230011,-0.178754091262817,-0.839320033788681,0.0431385636329651,0.388562500476837,0.676184415817261,0.0940810069441795,0.0770504474639893,0.236798003315926,0.232813492417336,0.676760643720627,0.745925232768059,0.473876506090164,0.327773213386536,-0.416621088981628,1.13315790891647,0.0469188690185547,-0.705767840147018,0.99786102771759,-0.0231715440750122,-1.10475385189056,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628, --0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214, -1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995, -1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776, -0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182, -0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387, -0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859, --0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595, --0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227, --1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766, --0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119, --0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046, -0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011, --0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663, --1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738, -0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991, --1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605, --0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627, --0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585, --1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285, --1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146, --0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808, --0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028, --0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268, --0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622, -0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497, --0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695, --0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505, --1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959, -0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267, --1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674, --0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497, --0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814, -0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696, --0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432, --1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044, --0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341, --1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607, --1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228, --0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779, --0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542, --0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768, --0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346, --0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155, --0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486, --0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223, -0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662, --1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718, --1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594, --1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794, --0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496, --0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379, -0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502, --0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008, --0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736, -0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917, --0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686, --0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803, --1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119, --1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906, --1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391, -0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803, -0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108, -0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755, --0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244, -0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831, --1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863, -1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826, --0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972, -0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819, --0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712, -0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342, --0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812, -0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874, -0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604, --0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861, --0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651, --1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111, --1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529, -0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468, --0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149, -0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773, -0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199, --1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734, --0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356, --0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127, --0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986, --0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789, --1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071, --0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252, --0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884, --0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575, --0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515, -0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391, -0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273, -0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762, --0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867, --0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652, -1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985, --0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568, -1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786, -0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043,0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988, --0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297, --0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676, -0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178, --0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886, --0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055, --0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737, -0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234, -0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957, --1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104, -0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559, --1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114, -0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697, -1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561, --0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277, -0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058, -0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627, -1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461, --1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825, --0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096, --0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276, -0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017, --0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579, -0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161, -0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717, -0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208, --0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574, -0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743, --0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896, -0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014, -0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263, --0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807563818208, "Geometry::Mouth_Upper_Left", "Shape" { - Version: 100 - Indexes: *2773 { - a: 636,640,642,658,666,667,668,670,671,681,699,701,702,705,707,709,710,711,713,715,716,717,719,751,753,755,757,758,767,773,781,782,783,784,785,786,787,788,795,796,801,804,812,813,814,816,818,819,820,822,824,825,905,907,909,910,911,912,913,914,916,918,954,955,956,957,958,959,960,961,962,971,972,973,974,975,977,982,989,993,1014,1017,1025,1047,1052,1055,1060,1063,1068,1339,1356,1357,1358,1367,1392,1433,1434,1435,1437,1439,1440,1444,1459,1460,1461,1504,1505,1506,1510,1514,1515,1516,1517,1518,1519,1524,1525,1526,1527,1528,1529,1530,1531,1532,1536,1537,1538,1539,1540,1541,1545,1546,1549,1550,1553,1676,1690,1691,1692,1693,1694,1695,1703,1717,1729,1772,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1787,1788,1804,1805,1806,1807,1845,1846,1849,1850,1851,1853,1854,1855,1857,1858,1859,1861,1862,1863,2066,2067,2068,2069,2079,2080,2081,2082,2083,2084,2088,2089,2090,2091,2092,2093,2094,2126,2127,2128,2141,2142,2143,2144,2145,2146,2147,2148,2149,2165,2166,2167,2168,2169,2170,2171,2175,2176,2177,2178,2179,2180,2181,2182,2183,2185,2186,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2223,2231,2301,2302,2321,2324,2373,2387,2395,2409,2555,2556,2557,2579,2647,2648,3044,3045,3056,3057,3058,3059,3060,3061,3062,3084,3085,3086,3103,3104,3105,3106,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3137,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043, -6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6151,6152,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6513,6514,6515,6544,6545,6546,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592, -6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002, -7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437, -7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7533,7534,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7895,7896,7897,7926,7927,7928,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986, -7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396, -8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 - } - Vertices: *8319 { - a: -0.00252258777618408,0.00510454177856445,0,-0.000482916831970215,0.000974178314208984,0,-8.52346420288086e-05,0.000172138214111328,0,-0.0027129054069519,0.00547313690185547,0,-0.00449669361114502,0.00907230377197266,0,-0.00831127166748047,0.0167684555053711,0,-0.00255322456359863,0.00515127182006836,0,-0.00660794973373413,0.013331413269043,0,-0.00512093305587769,0.0103316307067871,0,-0.00236749649047852,0.00478243827819824,0,-0.00196263194084167,0.00395965576171875,0,-0.000319033861160278,0.000643730163574219,0,-0.00700181722640991,0.0141263008117676,0,-0.00265562534332275,0.00535774230957031,0,-0.00873899459838867,0.0176310539245605,0,-0.0033840537071228,0.00682735443115234,0,-0.00552904605865479,0.0111551284790039,0,-0.000333786010742188,0.000674962997436523,0,-0.0010221004486084,0.00206232070922852,0,-0.000531792640686035,0.00107288360595703,0,-0.0037848949432373,0.0076301097869873,0,-2.95639038085938e-05,5.96046447753906e-05,0,-0.000517487525939941,0.00104761123657227,0,-0.000679628981743008,0.00137138366699219,0,-0.00113238336052746,0.00228452682495117,0,-0.000507354736328125,0.00102376937866211,0,-0.000583171844482422,0.00117635726928711,0,-0.00126779731363058,0.00255775451660156,0,-0.011433151550591,0.023066520690918,0,-0.00320342183113098,0.00646305084228516,0,-0.00495558977127075,0.00999784469604492,0,-0.00808948278427124,0.0163207054138184,0,-0.00477957725524902,0.0096430778503418,0,-0.00126276328228414,0.0025477409362793,0,-0.00715041160583496,0.0144262313842773,0,-0.00517523288726807,0.0104413032531738,0,-0.000870208605192602,0.00175571441650391,0,-8.52449447847903e-05,0.000172138214111328,0,-0.000302672386169434,0.000610828399658203,0,-0.000113489106297493,0.0002288818359375,0,-0.011433151550591,0.023066520690918,0,-0.00434840843081474,0.00877285003662109,0,-0.00253604352474213,0.00511646270751953,0,-0.000679627060890198,0.00137138366699219,0,-0.00715041160583496,0.0144262313842773,0,-0.00326603651046753,0.00658941268920898,0,-0.0078386664390564,0.0158147811889648,0,-0.00330817699432373, -0.00667428970336914,0,-0.0072782039642334,0.014683723449707,0,-0.00218081474304199,0.00439977645874023,0,-0.00210988521575928,0.0042567253112793,0,-0.00064694881439209,0.00130510330200195,0,-0.000720307230949402,0.00145339965820313,0,-0.00121365487575531,0.00244855880737305,0,-0.000589251518249512,0.00118875503540039,0,-0.00213265419006348,0.0043025016784668,0,-0.00562703609466553,0.0113525390625,0,-0.00500118732452393,0.0100898742675781,0,-0.000160336494445801,0.000323295593261719,0,-0.00182974338531494,0.00369167327880859,0,-0.00392371416091919,0.00791597366333008,0,-0.00342774391174316,0.00691556930541992,0,-4.56571578979492e-05,9.20295715332031e-05,0,-0.0011676549911499,0.00235557556152344,0,-0.00160777568817139,0.00324344635009766,0,-0.00358414649963379,0.00723075866699219,0,-0.00618791580200195,0.012484073638916,0,-0.00480431318283081,0.00969266891479492,0,-0.00177931785583496,0.00358963012695313,0,-0.00463753938674927,0.00935649871826172,0,-0.00405099987983704,0.00817298889160156,0,-0.00255763530731201,0.00515985488891602,0,-0.0081334114074707,0.0164093971252441,0,-0.00868022441864014,0.0175127983093262,0,-0.00920102000236511,0.0185632705688477,0,-0.0053369402885437,0.0107674598693848,0,-0.000449319020844996,0.000906467437744141,0,0.00704121589660645,-0.0046994686126709,0,0.0116464495658875,-0.0036470890045166,0,-8.94069671630859e-06,0,2.86102294921875e-06,0.0010521411895752,-0.000509262084960938,0,0.000724494457244873,-0.000466346740722656,-5.7220458984375e-06,0.00528192520141602,-0.00355863571166992,0,0.00725024938583374,-0.00296950340270996,0,0.00623166561126709,-0.00173163414001465,0,0.0011594295501709,-0.000744342803955078,0,0.00926566123962402,-0.00623893737792969,0,0.000571489334106445,-0.000378608703613281,0,3.46899032592773e-05,0,-9.5367431640625e-06,-1.16229057312012e-05,2.33650207519531e-05,0,-0.0070796012878418,0.0142831802368164,0,-0.00384116172790527,0.00774955749511719,0,-0.00639200210571289,0.0128960609436035,0,-0.00135266780853271,0.00273847579956055,0,-1.97887420654297e-05,4.00543212890625e-05, -0,-0.000623464584350586,0.00125789642333984,0,-0.000302731990814209,0.000610828399658203,0,-0.000658631324768066,0.00132894515991211,0,-0.00788962841033936,0.0159173011779785,0,-0.00303894281387329,0.00613117218017578,0,-0.000113490968942642,0.0002288818359375,0,-0.00427061319351196,0.00861597061157227,0,-0.00139164924621582,0.0028076171875,0,-0.0035330057144165,0.00712251663208008,0,-0.000365495681762695,0.000737190246582031,0,-0.00344705581665039,0.00695466995239258,0,-0.00134804844856262,0.00271987915039063,0,-0.00193199515342712,0.00389766693115234,0,-0.00683969259262085,0.0137991905212402,0,-0.0010221004486084,0.00206232070922852,0,-0.00245875120162964,0.00496053695678711,0,-0.0033336877822876,0.00672578811645508,0,-0.00230133533477783,0.00464296340942383,0,-0.00205159187316895,0.00413894653320313,0,-0.00273090600967407,0.00550985336303711,0,-0.00890898704528809,0.0179738998413086,0,-0.00134807825088501,0.00271987915039063,0,-0.000302731990814209,0.000610828399658203,0,-0.00273090600967407,0.00550985336303711,0,-0.000973403453826904,0.00196409225463867,0,-0.00487470626831055,0.00983476638793945,0,-0.0061643123626709,0.0124368667602539,0,-0.00129616260528564,0.00262236595153809,0,-0.00396394729614258,0.00799751281738281,0,-0.00263082981109619,0.00530767440795898,0,-0.00384116172790527,0.00774955749511719,0,-0.000696539878845215,0.00140523910522461,0,-0.00210988521575928,0.0042567253112793,0,-0.000305891036987305,0.000617027282714844,0,-0.00111055374145508,0.00224065780639648,0,-0.00330030918121338,0.0066530704498291,0,-5.84125518798828e-05,0.000117778778076172,0,-5.84125518798828e-05,0.000117778778076172,0,-1.97887420654297e-05,4.00543212890625e-05,0,-6.7591667175293e-05,0.000136852264404297,0,-8.97645950317383e-05,0.000181198120117188,0,-0.0080336332321167,0.0162081718444824,0,-0.0051734447479248,0.0104374885559082,0,-0.00109142158180475,0.00220203399658203,0,-0.00252487510442734,0.00509405136108398,0,-0.00136173143982887,0.00274753570556641,0,-0.00190295279026031,0.00383901596069336,0,-0.000572800636291504,0.00115585327148438, -0,-8.52346420288086e-05,0.000172138214111328,0,-0.000219523906707764,0.000442981719970703,0,-0.000182867050170898,0.000369071960449219,0,-0.000374197959899902,0.000754833221435547,0,-0.000997185707092285,0.00201177597045898,0,-0.000821113586425781,0.00165653228759766,0,-0.00926405191421509,0.0186905860900879,0,-0.00954878330230713,0.0192646980285645,0,-0.00666362047195435,0.0134439468383789,0,-0.00293302536010742,0.00591754913330078,0,-0.000646921165753156,0.00130510330200195,0,-0.00072031281888485,0.00145339965820313,0,-0.000973401591181755,0.00196409225463867,0,-0.000338941812515259,0.000683784484863281,0,-0.00626823306083679,0.0126461982727051,0,-0.00493776798248291,0.00996208190917969,0,-0.00588202476501465,0.0118670463562012,0,-0.00342774391174316,0.00691556930541992,0,-0.00140237808227539,0.00282907485961914,0,-5.84125518798828e-05,0.000117778778076172,0,-0.00184115767478943,0.00371456146240234,0,-0.00255325436592102,0.00515127182006836,0,-0.00132018327713013,0.00266361236572266,0,-0.00297462940216064,0.00600147247314453,0,-0.00392371416091919,0.00791597366333008,0,-0.00137484073638916,0.00277376174926758,0,-0.0046994686126709,0.00948143005371094,0,-0.0060046911239624,0.0121145248413086,0,-0.00382661819458008,0.0077204704284668,0,-0.00106239318847656,0.00214338302612305,0,-0.00232386589050293,0.00468826293945313,0,-0.000281929969787598,0.000568866729736328,0,-0.000572800636291504,0.00115585327148438,0,-0.000613093376159668,0.00123691558837891,0,-0.001050665974617,0.00211954116821289,0,-0.000173196196556091,0.000349521636962891,0,-0.00012071430683136,0.000243663787841797,0,-0.000449314713478088,0.000906467437744141,0,-0.000953912734985352,0.00192451477050781,0,-0.00613129138946533,0.0123701095581055,0,-0.00838065147399902,0.0169081687927246,0,-0.00741559267044067,0.0149612426757813,0,-0.00415188074111938,0.0083765983581543,0,-0.000160276889801025,0.000323295593261719,0,-5.84125518798828e-05,0.000117778778076172,0,-0.00109142065048218,0.00220203399658203,0,-0.000679612159729004,0.00137138366699219,0,-1.97887420654297e-05, -4.00543212890625e-05,0,-0.00415194034576416,0.0083765983581543,0,-0.000173211097717285,0.000349521636962891,0,-0.000150799751281738,0.000304222106933594,0,-0.00064694881439209,0.00130510330200195,0,-4.56571578979492e-05,9.20295715332031e-05,0,-0.000281870365142822,0.000568866729736328,0,-0.000281929969787598,0.000568866729736328,0,-0.00236797332763672,0.00477743148803711,0,-0.000754117965698242,0.00152158737182617,0,-0.00894647836685181,0.0180497169494629,0,-0.00850194692611694,0.0171527862548828,0,-0.00894647836685181,0.0180497169494629,0,-0.00684496760368347,0.0138096809387207,0,-0.00384122133255005,0.00774955749511719,0,-0.00538274645805359,0.0108599662780762,0,-0.00648832321166992,0.0130906105041504,0,-0.00442147254943848,0.00892066955566406,0,-0.00818192958831787,0.0165071487426758,0,-0.00886857509613037,0.0178923606872559,0,-0.00836163759231567,0.0168695449829102,0,-0.00743454694747925,0.0149993896484375,0,-0.00822529196739197,0.0165948867797852,0,-0.00134146341588348,0.00270652770996094,0,-0.00347127020359039,0.0070033073425293,0,-0.00309944152832031,0.00625324249267578,0,-0.00102209637407213,0.00206232070922852,0,-0.00315992534160614,0.00637531280517578,0,-0.00349386036396027,0.0070490837097168,0,-0.00036544181057252,0.000737190246582031,0,-0.00191740691661835,0.00386857986450195,0,-0.00262235105037689,0.00529050827026367,0,-0.000258862972259521,0.000522136688232422,0,-0.00106234848499298,0.00214338302612305,0,-0.000461260438896716,0.0009307861328125,0,-0.00177931785583496,0.00358963012695313,0,-1.97887420654297e-05,4.00543212890625e-05,0,-0.00936661846935749,0.018897533416748,0,-0.00583887100219727,0.0117802619934082,0,-0.00468459725379944,0.00945138931274414,0,-0.011433151550591,0.023066520690918,0,-0.00579389929771423,0.0116891860961914,0,-0.00578877329826355,0.0116791725158691,0,-0.00783868972212076,0.0158147811889648,0,-0.00340408086776733,0.00686788558959961,0,0.00320589542388916,-0.00177907943725586,0,0.00257778167724609,-0.00173115730285645,0,0.000446438789367676,-0.000286579132080078,0,0.00963950157165527, --0.00285124778747559,0,-3.45706939697266e-06,0,9.5367431640625e-07,0.00911879539489746,-0.00612139701843262,0,0.0106980204582214,-0.00379633903503418,0,0.00290751457214355,-0.000780820846557617,0,0.00387656688690186,-0.00255703926086426,0,0.00777924060821533,-0.00524401664733887,0,-0.000482935458421707,0.000974178314208984,0,-0.000403083860874176,0.000813007354736328,0,-0.000482935458421707,0.000974178314208984,0,-0.00109142065048218,0.00220203399658203,0,-0.000250203534960747,0.000504970550537109,0,-0.000403083860874176,0.000813007354736328,0,-8.97571444511414e-05,0.000181198120117188,0,-0.000250205397605896,0.000504970550537109,0,-0.00428807735443115,0.0086512565612793,0,-0.000449329614639282,0.000906467437744141,0,-0.0114331543445587,0.023066520690918,0,-0.00933298468589783,0.018829345703125,0,-0.0114331543445587,0.023066520690918,0,-0.0114331543445587,0.023066520690918,0,-0.00779440999031067,0.0157256126403809,0,-2.96086072921753e-05,5.96046447753906e-05,0,-4.56273555755615e-05,9.20295715332031e-05,0,-8.52420926094055e-05,0.000172138214111328,0,-4.56571578979492e-05,9.20295715332031e-05,0,-2.95639038085938e-05,5.96046447753906e-05,0,-2.95639038085938e-05,5.96046447753906e-05,0,-2.95639038085938e-05,5.96046447753906e-05,0,-0.00141440331935883,0.0028533935546875,0,-0.00142824649810791,0.00288152694702148,0,-0.00258635729551315,0.0052180290222168,0,-0.00177612900733948,0.00358343124389648,0,-0.00563399493694305,0.0113668441772461,0,-0.00393038988113403,0.00792980194091797,0,-0.00848454236984253,0.017117977142334,0,-0.00730231404304504,0.0147323608398438,0,-0.00804448127746582,0.0162301063537598,0,-0.00876188278198242,0.0176773071289063,0,-0.0047372579574585,0.00955772399902344,0,-0.00662708282470703,0.0133705139160156,0,-0.000931918621063232,0.00188016891479492,0,-0.00259876251220703,0.00524330139160156,0,-5.84125518798828e-05,0.000117778778076172,0,0.177021726965904,3.48091125488281e-05,-5.24520874023438e-05,0.0915490984916687,4.69684600830078e-05,0,0.824972629568947,-0.0083765983581543,-0.0923929214477539,0.936384737498884, --0.00705051422119141,-0.128968238830566,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.898055076620949,-0.00750827789306641,-0.123711585998535,0,3.48091125488281e-05,0,0.854470551028498,-0.00802421569824219,-0.101079940795898,0,3.48091125488281e-05,0,0.590696632862091,-0.00553798675537109,0.118556976318359,0,3.48091125488281e-05,0,0.90392714738482,-0.048774242401123,-0.111408233642578,0,3.48091125488281e-05,0,0.573289752006531,-0.242793083190918,0.0465564727783203,0,3.4332275390625e-05,0,0,4.76837158203125e-05,0,0,2.84910202026367e-05,0,0,4.75049018859863e-05,0,0,2.19047069549561e-05,0,0,3.79681587219238e-05,0,0,3.85046005249023e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0.497763425111771,0.150196075439453,-0.019927978515625,0.485300362110138,0.00922012329101563,-0.00209808349609375,0.505659222602844,-0.0680832862854004,0.000880241394042969,0.507520496845245,-0.122427940368652,0.0302610397338867,0.452507436275482,0.183187007904053,-0.0353279113769531,0.334241032600403,0.0858635902404785,-0.0402612686157227,0,2.1815299987793e-05,0,0,2.82526016235352e-05,0,0,3.14712524414063e-05,0,0.0201053600758314,4.42266464233398e-05,0,0.048640500754118,3.09944152832031e-05,0,0,4.11272048950195e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.48091125488281e-05,0,0,4.48226928710938e-05,0,0,3.24249267578125e-05,0,0,4.1961669921875e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,4.16934490203857e-05,0,0,4.50611114501953e-05,0,0,4.48226928710938e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06, -0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.66893005371094e-06,0.171798080205917,-0.00320696830749512,0.0268955230712891,0.0447227954864502,4.69684600830078e-05,0,0.85746106505394,-0.00775527954101563,0.013035774230957,0.955262452363968,-0.00578451156616211,-0.0528621673583984,0.325180053710938,-0.000482559204101563,0.250858306884766,0.326383590698242,-0.000498771667480469,0.256072998046875,0.481736898422241,-0.00677394866943359,0.351207733154297,0.482564449310303,-0.00646448135375977,0.342196464538574,0.85791540145874,-0.0265369415283203,0.447510719299316,0.841803908348083,-0.0263853073120117,0.425458908081055,0.906571984291077,0.0181732177734375,0.368027687072754,0.829191863536835,-0.0244107246398926,0.318216323852539,0.943496942520142,-0.0151834487915039,0.226361274719238,0.884710133075714,-0.0170493125915527,0.209941864013672,0.977782487869263,-0.0104484558105469,0.0708961486816406,0.885019659996033,-0.0100479125976563,0.126144409179688,0.74989926815033,-0.0185666084289551,0.442147254943848,0.76035749912262,-0.019716739654541,0.456205368041992,0.275064468383789,-7.77244567871094e-05,0.217853546142578,0.275003671646118,-7.39097595214844e-05,0.212673187255859,0.227326631546021,4.00543212890625e-05,0.181761741638184,0.227990627288818,3.19480895996094e-05,0.177322387695313,0.227215528488159,0.000121593475341797,0.180655479431152,0.228738784790039,0.000129222869873047,0.177083969116211,0.186002254486084,0.000455379486083984,0.146267890930176,0.18603777885437,0.000466823577880859,0.143571853637695,0.174604415893555,0.00277519226074219,0.125306129455566,0.176177978515625,0.00265645980834961,0.133537292480469,0.145880460739136,0.00383663177490234,0.0886478424072266,0.148858308792114,0.00360441207885742,0.0983762741088867,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05, -0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.933965444564819,-0.00696516036987305,-0.0330057144165039,0.958455204963684,-0.010472297668457,0.0853385925292969,0.933061957359314,-0.0158228874206543,0.213275909423828,0.864040732383728,-0.00910711288452148,0.346475601196289,0.855316758155823,-0.0274438858032227,0.43980598449707,0.746855497360229,-0.0192394256591797,0.447322845458984,0.47925066947937,-0.0066375732421875,0.345527648925781,0.325862407684326,-0.000496387481689453,0.253240585327148,0.275235891342163,-7.39097595214844e-05,0.215081214904785,0.227705240249634,3.19480895996094e-05,0.179373741149902,0.2279953956604,0.000118255615234375,0.178745269775391,0.18595027923584,0.000463008880615234,0.14478588104248,0.176514625549316,0.00271797180175781,0.128881454467773,0.149866580963135,0.00369071960449219,0.0956287384033203,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.889189690351486,-0.00748109817504883,-7.72476196289063e-05,0.916553497314453,-0.0102157592773438,0.117774963378906,0.906364023685455,-0.0176501274108887,0.211372375488281,0.840096414089203,-0.0218515396118164,0.327814102172852,0.848526358604431,-0.0267972946166992,0.431446075439453,0.750337958335876,-0.018826961517334,0.445115089416504,0.479969024658203,-0.00651836395263672,0.342812538146973,0.32538104057312,-0.000486373901367188,0.251615524291992,0.275114774703979,-8.34465026855469e-05,0.213501930236816,0.227877140045166,3.19480895996094e-05,0.178040504455566,0.228482246398926,0.000131130218505859,0.177671432495117,0.186014413833618,0.000465869903564453,0.14399528503418,0.177677392959595,0.00275278091430664,0.127182006835938,0.148496627807617,0.00378084182739258,0.0911283493041992,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.612029045820236,-0.00481796264648438,0.175751686096191,0.629496291279793, --0.0255270004272461,0.17575740814209,0.463333129882813,-0.0360116958618164,0.153764724731445,0.325198769569397,-0.0133252143859863,0.125073432922363,0.462388634681702,-0.0102972984313965,0.233264923095703,0.497253179550171,-0.00672340393066406,0.315954208374023,0.404783248901367,-0.0023503303527832,0.304374694824219,0.318607330322266,-0.000169754028320313,0.26786994934082,0.267921209335327,-9.5367431640625e-06,0.235767364501953,0.221738815307617,3.19480895996094e-05,0.196374893188477,0.221045970916748,5.91278076171875e-05,0.19394588470459,0.176603078842163,0.000167369842529297,0.15145206451416,0.139865398406982,0.000834465026855469,0.116106986999512,0.0934858322143555,0.00110721588134766,0.0692882537841797,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.915323495864868,-0.017364501953125,-0.0340557098388672,0.919848620891571,-0.0118117332458496,0.0512790679931641,0.828837990760803,-0.000926494598388672,0.162954330444336,0.818051278591156,0.032289981842041,0.276833534240723,0.750455975532532,-0.018953800201416,0.368745803833008,0.689999222755432,-0.0132169723510742,0.416604995727539,0.452260255813599,-0.00453424453735352,0.327286720275879,0.324785947799683,-0.000325679779052734,0.256829261779785,0.274127721786499,-4.24385070800781e-05,0.221102714538574,0.226389408111572,3.19480895996094e-05,0.185504913330078,0.225543975830078,9.10758972167969e-05,0.184713363647461,0.183051347732544,0.000309944152832031,0.147438049316406,0.16685938835144,0.00172948837280273,0.131160736083984,0.129471778869629,0.00233602523803711,0.0879487991333008,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.574647933244705,-0.245561122894287,0.0684738159179688,0.303208738565445,-0.245890140533447,0.0125217437744141,0.282934248447418,-0.309534549713135,0.00621318817138672,0.386302828788757,-0.28986930847168,0.0535869598388672,0.0737590789794922,-0.0257177352905273,0.0271177291870117,0.0570170879364014, -4.05311584472656e-05,0.0338230133056641,0.172164678573608,3.19480895996094e-05,0.117496490478516,0.181047439575195,2.288818359375e-05,0.133103370666504,0.102182626724243,3.19480895996094e-05,0.088775634765625,0.141053915023804,3.19480895996094e-05,0.13383674621582,0.127873420715332,3.19480895996094e-05,0.0936336517333984,0.118665933609009,2.38418579101563e-05,0.0844593048095703,0.167064428329468,3.19480895996094e-05,0.125926971435547,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0.0660686492919922,3.24249267578125e-05,0.0506210327148438,0,3.48091125488281e-05,0,0,4.45842742919922e-05,0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,0.00302529335021973,-0.00239741802215576,0,0,4.1663646697998e-05,0,5.50746917724609e-05,3.79085540771484e-05,2.00271606445313e-05,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.282999038696289,-0.109869956970215,0.0478153228759766,0.332331895828247,-0.109879493713379,0.0499839782714844,0.389280319213867,-0.101694345474243,0.13831615447998,0.321688055992126,-0.106125116348267,0.128779411315918,0.424111127853394,-0.0987229347229004,0.133784294128418,0.335032820701599,-0.109867334365845,0.035161018371582,0.195988535881042,-0.0597870349884033,0.0312795639038086,0.32635509967804,-0.0613646507263184,0.107706069946289,0.0479342937469482,4.69684600830078e-05,0.00652885437011719,0.20349246263504,-0.00254964828491211,0.074894905090332,0.303685188293457,-0.106232404708862,0.12313175201416,0.246635317802429,-0.109879493713379,0.0333385467529297,0.0135810375213623,-0.00351238250732422,0.00503826141357422,0.0630338191986084,3.19480895996094e-05,0.0373916625976563,0.0323264598846436,2.05039978027344e-05,0.0191764831542969,0.0415744781494141,3.19480895996094e-05,0.0260963439941406,0.0419507026672363,3.19480895996094e-05,0.0248861312866211,0.0442538261413574,3.19480895996094e-05,0.0271015167236328,0.0330715179443359,3.19480895996094e-05,0.0210704803466797,0.0525181293487549,3.24249267578125e-05,0.0585222244262695,0.0382165908813477,-8.10623168945313e-05,0.0320730209350586,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0.360877126455307,-0.0350284576416016,0.0116701126098633,0.497473418712616,-0.0878386497497559,0.0411758422851563,0.417689740657806,-0.119870901107788,0.0465774536132813,0.293312311172485,-0.0719892978668213,0.0131855010986328,0.363871932029724,0.000580787658691406,0.00668525695800781,0.491624265909195,0.0097346305847168,0.0231876373291016,0.359178841114044,0.0369744300842285,0.00499343872070313,0.508098185062408,0.107306241989136,0.00122928619384766,0.351651430130005,0.0579197406768799, -0.00179576873779297,0.495341598987579,0.148296356201172,-0.0152559280395508,0.300800114870071,0.0241317749023438,0.0251398086547852,0.394699305295944,0.0646347999572754,0.0136947631835938,0.201220273971558,-0.0327236652374268,0.0881938934326172,0.258761286735535,-0.0373189449310303,0.106966972351074,0.224652409553528,-0.0257048606872559,0.0789327621459961,0.359983801841736,-0.0690572261810303,0.108209609985352,0.287291169166565,-0.0442836284637451,0.0926609039306641,0.42311692237854,-0.090219259262085,0.13056468963623,0.328560948371887,-0.131807804107666,0.0666036605834961,0.394659996032715,-0.137356281280518,0.136049270629883,0.250103712081909,-0.161382675170898,-0.00186252593994141,0.298503875732422,-0.213136196136475,0.0205230712890625,0.223536610603333,-0.16014552116394,0.0121431350708008,0.216166138648987,-0.13278865814209,0.00993061065673828,0.282824695110321,-0.160584449768066,0.0163192749023438,0.354533135890961,-0.195128202438354,0.0684089660644531,0.42047119140625,-0.0473990440368652,0.0231399536132813,0.427733361721039,0.00419449806213379,0.0177135467529297,0.432166695594788,0.0600640773773193,0.00652217864990234,0.429173588752747,0.0923504829406738,-0.00501060485839844,0.364948183298111,0.0437300205230713,0.0234107971191406,0.239648520946503,-0.0360012054443359,0.101894378662109,0.347810983657837,-0.0744562149047852,0.0933446884155273,0.40263569355011,-0.0906968116760254,0.106916427612305,0.355311393737793,-0.135661602020264,0.0967893600463867,0.301996052265167,-0.175997018814087,0.0328912734985352,0.254608392715454,-0.184763431549072,0.000257492065429688,0.218179136514664,-0.144266843795776,0.0109786987304688,0.338133186101913,-0.0900058746337891,0.0226106643676758,0.369080573320389,-0.104634284973145,0.0326986312866211,0.220417559146881,-0.15264630317688,0.01177978515625,0.26167893409729,-0.201781034469604,0.00335025787353516,0.32314932346344,-0.18593168258667,0.0488967895507813,0.376845240592957,-0.137906074523926,0.118810653686523,0.415275692939758,-0.0901656150817871,0.121267318725586,0.357231736183167, --0.071568489074707,0.102925300598145,0.252418339252472,-0.0367276668548584,0.105073928833008,0.383265227079391,0.0521564483642578,0.0212001800537109,0.457069128751755,0.108855485916138,-0.00876235961914063,0.461025923490524,0.0757529735565186,0.00527286529541016,0.458727091550827,0.00706934928894043,0.0213594436645508,0.456937432289124,-0.0639331340789795,0.0311956405639648,0.511316299438477,-0.117177963256836,0.0504856109619141,0.373678982257843,0.0554916858673096,0.0146818161010742,0.258219718933105,-0.033815860748291,0.106137275695801,0.246825277805328,-0.0176224708557129,0.0963306427001953,0.295174181461334,-0.0152585506439209,0.0577507019042969,0.347839951515198,-0.0633959770202637,0.115208625793457,0.354126811027527,-0.0663299560546875,0.111684799194336,0.427327871322632,-0.0908951759338379,0.136235237121582,0.432070255279541,-0.0933499336242676,0.142264366149902,0.369006156921387,-0.0978343486785889,0.0903806686401367,0.376898527145386,-0.0987792015075684,0.105535507202148,0.391106367111206,-0.097437858581543,0.126395225524902,0.397840738296509,-0.0948715209960938,0.14006519317627,0.399168729782104,-0.0932242870330811,0.147470474243164,0.401337265968323,-0.0946109294891357,0.154884338378906,0.402175307273865,-0.129133701324463,0.148004531860352,0.386676430702209,-0.110683917999268,0.161316871643066,0.407948613166809,-0.168004035949707,0.121953010559082,0.380664467811584,-0.119219303131104,0.151898384094238,0.405285120010376,-0.184741973876953,0.0983953475952148,0.359154343605042,-0.120761156082153,0.137531280517578,0.26103413105011,-0.105634450912476,0.0963048934936523,0.228835701942444,-0.109898328781128,0.0317592620849609,0.322648525238037,-0.109892606735229,0.0490169525146484,0.370006322860718,-0.102593898773193,0.143875122070313,0.388715982437134,-0.101730823516846,0.159772872924805,0.394284009933472,-0.108402013778687,0.14993953704834,0.392961382865906,-0.112643480300903,0.140595436096191,0.379192233085632,-0.115386962890625,0.122035026550293,0.363033175468445,-0.114561319351196,0.100614547729492,0.347499132156372, --0.111379146575928,0.0786266326904297,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,0.000971317291259766,-0.000742673873901367,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,3.39746475219727e-05,3.69548797607422e-06,0,0,2.50935554504395e-05,0,-2.19345092773438e-05,5.07831573486328e-05,7.91549682617188e-05,0.000480413436889648,-0.000362753868103027,0,0.00934112071990967,3.46899032592773e-05,0,0.005656898021698,5.07831573486328e-05,-4.76837158203125e-06,0.116955995559692,-0.0535984039306641,0,0.242914199829102,-0.109869956970215,0,0.269181847572327,-0.109873294830322,0.0001678466796875,0.194959282875061,-0.088322639465332,0,0.230321764945984,-0.0951414108276367,0,0.143458604812622,-0.0750906467437744,0,0.186455607414246,-0.0856516361236572,0,0.117884874343872,-0.0608534812927246,0,0.164532423019409,-0.078575611114502,0,0.12868332862854,-0.0650873184204102,0,0.183332443237305,-0.0820250511169434,0,0.267624139785767,-0.102914810180664,0,0.221172213554382,-0.0929927825927734,0,0.299065828323364,-0.109885931015015,0,0.300350904464722,-0.109879493713379,0.00207138061523438,0.276907324790955,-0.104875087738037,0,0.225546002388,-0.0938928127288818,4.76837158203125e-06,0.240921497344971,-0.0971758365631104,0,0.300271391868591,-0.109892606735229,0.00154018402099609,0.0318434834480286,5.07831573486328e-05,0,0.0212369561195374,4.10079956054688e-05,-1.9073486328125e-06,0.142931222915649,-0.0597062110900879,0.000472068786621094,0.241134524345398,-0.0919435024261475,0,0.282168626785278,-0.106069326400757,0,0.237521052360535,-0.1098952293396,0,0.191486716270447,-0.0873744487762451,0,0.0262422561645508,-0.0205914974212646,0,0.000429868698120117,-0.000299930572509766,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,0.0223536491394043,-0.00847315788269043,0,0.0165555477142334,-0.0115768909454346,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05, -0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0.000532627105712891,3.24249267578125e-05,0.000316619873046875,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0.00339174270629883,3.24249267578125e-05,0.00201225280761719,0,3.24249267578125e-05,0,0.00371193885803223,-0.000484466552734375,0.00239372253417969,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,-0.000448465347290039,-0.00153827667236328,0.000314712524414063,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0, -1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,0,2.21729278564453e-05,0,0,4.1663646697998e-05,0,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05,0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05, -0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05, -0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05, -0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05,0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0, -3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05, -1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06, -0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06, -0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0.102122843265533,-0.0225331783294678,0.0192775726318359,0.140435934066772,-0.0270946025848389,0.0193557739257813,0.191608786582947,-0.0359129905700684,0.0232858657836914,0.201152563095093,-0.0447936058044434,0.0194540023803711,0.198593139648438,-0.0506198406219482,0.020808219909668,0.195026516914368,-0.0592358112335205,0.0220518112182617,0.077473521232605,-0.0241842269897461,0.015690803527832,0.0780785083770752,-0.0232782363891602,0.0216760635375977,0.0969939529895782,-0.0213191509246826,0.0210294723510742,0.0942258238792419,-0.0225341320037842,0.0166387557983398,0.0756353437900543,-0.0321328639984131,0.0140314102172852,0.107779502868652,-0.0503973960876465, -0.00316238403320313,0.155850350856781,-0.0689494609832764,-0.00112056732177734,0.16978520154953,-0.0741724967956543,8.7738037109375e-05,0.182607710361481,-0.0724234580993652,0.0142335891723633,0.115109443664551,-0.0334539413452148,0.00840377807617188,0.141991853713989,-0.0398645401000977,0.00139427185058594,0.154686689376831,-0.0474023818969727,0.00103759765625,0.169149279594421,-0.0563309192657471,0.00588607788085938,0.089902937412262,-0.0286011695861816,0.0168647766113281,-0.00132343453333306,0.00271749496459961,9.918212890625e-05,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0.000247001647949219,0.0972678661346436,3.19480895996094e-05,0.0763864517211914,0.120185852050781,3.19480895996094e-05,0.0972585678100586,0.0839642286300659,3.19480895996094e-05,0.0536823272705078,0.147774696350098,3.19480895996094e-05,0.117600440979004,0.0321134328842163,3.48091125488281e-05,0.0190248489379883,0.000228285789489746,2.47955322265625e-05,0.000165939331054688,0,3.48091125488281e-05,8.10623168945313e-05,0.11046290397644,3.19480895996094e-05,0.0866737365722656,0.0954086780548096,3.19480895996094e-05,0.0776729583740234,0.103832721710205,3.19480895996094e-05,0.0840530395507813,0.0876989364624023,3.19480895996094e-05,0.0708608627319336,0.0873029232025146,3.19480895996094e-05,0.0700759887695313,0.0362176895141602,3.19480895996094e-05,0.0251531600952148,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.749416530154122,-0.00925970077514648,-0.101834297180176,0.779224038124084,-0.00855302810668945,-0.00636672973632813,0.804126679897308,-0.0107517242431641,0.100368499755859,0.809263229370117,-0.0174899101257324,0.200159072875977,0.765356183052063,-0.0249433517456055,0.330713272094727,0.82364284992218,-0.0265092849731445,0.425600051879883,0.736681222915649,-0.018979549407959,0.486465454101563,0.431823968887329,-0.0066370964050293,0.332218170166016,0.309072971343994,-0.000495433807373047,0.248791694641113,0.255868434906006,-7.62939453125e-05,0.211062431335449,0.213486433029175, -3.19480895996094e-05,0.178072929382324,0.213356733322144,0.000121116638183594,0.176834106445313,0.173892259597778,0.000461101531982422,0.141868591308594,0.155901670455933,0.00272226333618164,0.119935035705566,0.141342163085938,0.00382900238037109,0.092686653137207,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.00505230298585957,3.48091125488281e-05,0.00446128845214844,0.0322184264659882,3.48091125488281e-05,0.0200433731079102,0.0701930522918701,5.05447387695313e-05,0.0398502349853516,0.187162518501282,3.48091125488281e-05,0.0746688842773438,0.214310646057129,3.48091125488281e-05,0.11689567565918,0.2903151512146,3.14712524414063e-05,0.199376106262207,0.327986121177673,3.19480895996094e-05,0.24017333984375,0.242669820785522,3.19480895996094e-05,0.189798355102539,0.224807739257813,3.19480895996094e-05,0.182602882385254,0.162832021713257,3.19480895996094e-05,0.13026237487793,0.144385576248169,3.19480895996094e-05,0.117368698120117,0.147777795791626,3.19480895996094e-05,0.120732307434082,0.121879577636719,3.19480895996094e-05,0.0992889404296875,0.0982351303100586,3.19480895996094e-05,0.0770635604858398,0.0702645778656006,3.19480895996094e-05,0.0513620376586914,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.000281896442174911,0.000600576400756836,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,2.24113464355469e-05,0,0,3.83853912353516e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0, -0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05, -1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0.141408622264862,0.00256752967834473,-0.0269231796264648,0.040570080280304,4.69684600830078e-05,0,0.795285850763321,-0.0123858451843262,-0.159697532653809,0.922072380781174,-0.0120573043823242,-0.188895225524902,0.193615436553955,-0.00143718719482422,-0.411779403686523,0.212609767913818,0.00176715850830078,-0.45085620880127,0.245828866958618,-0.00641250610351563,-0.467555046081543,0.246181964874268,-0.0182986259460449,-0.422513961791992,0.433911323547363,-0.0137925148010254,-0.397256851196289,0.455267786979675,-0.0298423767089844,-0.427498817443848,0.59946596622467,-0.0110011100769043,-0.355545997619629,0.575734853744507,-0.033165454864502,-0.327432632446289,0.734517693519592,-0.0319981575012207,-0.301414489746094,0.708550691604614,-0.029383659362793,-0.286496162414551,0.828085064888,-0.0210909843444824,-0.243342399597168,0.753558754920959,-0.0203981399536133,-0.23465633392334,0.355279922485352,-0.0211782455444336,-0.460138320922852,0.33449387550354,-0.0214896202087402,-0.514724731445313,0.175710678100586,0.00288772583007813,-0.391848564147949,0.167374849319458,0.000143051147460938,-0.366973876953125,0.135964632034302,0.00272083282470703,-0.320070266723633,0.139641761779785,0.000839710235595703,-0.313745498657227,0.128132343292236,0.00168609619140625,-0.308810234069824,0.137042760848999,0.004638671875,-0.303739547729492,0.0978457927703857,0.000139713287353516, --0.227218627929688,0.107730150222778,0.00322341918945313,-0.23106575012207,0.0914831161499023,-0.00169706344604492,-0.145896911621094,0.0698695182800293,-0.000586032867431641,-0.141273498535156,0.0717718601226807,0.00124549865722656,-0.0883979797363281,0.0608370304107666,0.00321817398071289,-0.0804014205932617,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.864367693662643,-0.0114831924438477,-0.201065063476563,0.811344265937805,-0.0188851356506348,-0.284720420837402,0.744685530662537,-0.0258893966674805,-0.344786643981934,0.586641073226929,-0.0208001136779785,-0.373809814453125,0.450334191322327,-0.0247998237609863,-0.414840698242188,0.366891145706177,-0.022484302520752,-0.507654190063477,0.257910013198853,-0.0153155326843262,-0.46338939666748,0.206986427307129,0.000395774841308594,-0.443363189697266,0.174376964569092,0.0016322135925293,-0.387663841247559,0.140253782272339,0.00187015533447266,-0.323394775390625,0.134918212890625,0.00106430053710938,-0.312214851379395,0.104379653930664,1.43051147460938e-06,-0.233036041259766,0.0823426246643066,-0.00112628936767578,-0.144415855407715,0.0671863555908203,0.00320529937744141,-0.0825262069702148,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.82379150390625,-0.0119671821594238,-0.173945426940918,0.778166055679321,-0.0196847915649414,-0.25438404083252,0.723253011703491,-0.0280876159667969,-0.30860710144043,0.579190135002136,-0.0301580429077148,-0.342796325683594,0.460537910461426,-0.0285816192626953,-0.430238723754883,0.370728015899658,-0.0210628509521484,-0.49276065826416,0.246586084365845,-0.0171213150024414,-0.43076229095459,0.199224710464478,-0.000718593597412109,-0.425723075866699,0.170436859130859,0.000698089599609375,-0.376147270202637,0.140274286270142,0.00123405456542969,-0.318549156188965, -0.136721849441528,0.00495719909667969,-0.307986259460449,0.106806039810181,0.00334644317626953,-0.232481002807617,0.0916213989257813,0.000577926635742188,-0.146137237548828,0.0714726448059082,0.001739501953125,-0.0918674468994141,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.538004159927368,-0.0113730430603027,0.0656499862670898,0.476147174835205,-0.0105743408203125,-0.0914058685302734,0.424760937690735,-0.00343894958496094,-0.0704059600830078,0.350361585617065,-0.000618457794189453,-0.0811042785644531,0.284004211425781,-0.00601434707641602,-0.0977907180786133,0.265248775482178,-0.00636005401611328,-0.265148162841797,0.184554576873779,-0.00732946395874023,-0.431308746337891,0.145510673522949,0.00546550750732422,-0.34892749786377,0.085092306137085,0.00693511962890625,-0.285149574279785,0.0575940608978271,0.00560569763183594,-0.240315437316895,0.0600934028625488,0.00469589233398438,-0.232062339782715,0.0410053730010986,0.00205707550048828,-0.156848907470703,0.040874719619751,0.00204133987426758,-0.098912239074707,0.0207676887512207,0.00282478332519531,-0.0439138412475586,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.88823789358139,-0.036461353302002,-0.12265682220459,0.816098928451538,-0.0343108177185059,-0.193453788757324,0.692314624786377,-0.0255742073059082,-0.234492301940918,0.589939713478088,-0.0130090713500977,-0.310347557067871,0.422536134719849,0.00475025177001953,-0.351425170898438,0.319939613342285,-0.0499615669250488,-0.485105514526367,0.239619731903076,-0.0113730430603027,-0.461568832397461,0.206185817718506,0.00260353088378906,-0.431537628173828,0.165670871734619,0.00390338897705078,-0.372040748596191,0.11744213104248,0.00331544876098633,-0.289175033569336,0.103891611099243,0.00243473052978516,-0.283863067626953,0.0774035453796387,0.000275135040283203,-0.203523635864258,0.0548105239868164,-0.000701904296875,-0.133313179016113,0.043508768081665, -0.00241899490356445,-0.0619163513183594,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.520230650901794,-0.23076868057251,-0.0113973617553711,0.383855581283569,-0.170649528503418,-0.0284671783447266,0.302417635917664,-0.0891051292419434,-0.0170164108276367,0.104143619537354,-0.0194344520568848,-0.0516319274902344,0.0164854526519775,-0.0104546546936035,-0.00747013092041016,0.00102567672729492,-0.000899314880371094,6.96182250976563e-05,0.176399946212769,3.52859497070313e-05,-0.092132568359375,0.119289398193359,2.288818359375e-05,-0.136422157287598,0.0288577079772949,0.0115957260131836,-0.0364160537719727,0.0090644359588623,0.00137472152709961,-0.0580644607543945,-0.00284743309020996,0.00116682052612305,-0.0574111938476563,-0.00790309906005859,0.00162363052368164,-0.0531682968139648,0.0243918895721436,0.00216341018676758,-0.132513999938965,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0.0217435359954834,0.00929355621337891,-0.0205669403076172,0,3.48091125488281e-05,0,0,4.45842742919922e-05,0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,0,3.82661819458008e-05,0,0,4.1663646697998e-05,0,0,3.79085540771484e-05,0,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06, -0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.0320740938186646,0.0719413757324219,-0.0466670989990234,-0.0189448595046997,0.0746350288391113,-0.049163818359375,-0.00745320320129395,0.0753443241119385,-0.131333351135254,-0.0362062454223633,0.0650548934936523,-0.122397422790527,0.0241336822509766,0.0746252536773682,-0.127531051635742,-0.0137220621109009,0.0746471881866455,-0.0347814559936523,0.0342719554901123,0.0100128650665283,-0.0310869216918945,0.11508572101593,0.0151388645172119,-0.106654167175293,0.0256837010383606,4.69684600830078e-05,-0.00646018981933594,0.165704607963562,0.00250959396362305,-0.0764684677124023,-0.0362832546234131,0.0618448257446289,-0.117353439331055,-0.0331611633300781,0.0703587532043457,-0.032597541809082,-0.00631427764892578,0.014249324798584,9.25064086914063e-05,0.0215427875518799,2.90870666503906e-05,0,0.00490570068359375,2.05039978027344e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.000199794769287109,3.19480895996094e-05,0.000141143798828125,-0.0113115310668945,0.00161600112915039,-0.0175323486328125,0.0242898464202881,0.0120906829833984,-0.0189800262451172,0.0215044021606445,0.00685596466064453,-0.0108785629272461,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0.279972970485687,-0.0264127254486084,-0.114697456359863,0.415706396102905,-0.0572671890258789,-0.0680580139160156,0.391419857740402,-0.140321016311646, --0.0693588256835938,0.274525910615921,-0.0972189903259277,-0.105568885803223,0.285152733325958,0.0220878124237061,-0.117451667785645,0.421878755092621,0.0327539443969727,-0.052769660949707,0.287835389375687,0.0622889995574951,-0.123411178588867,0.446960359811783,0.144148826599121,-0.0624485015869141,0.272257626056671,0.0973274707794189,-0.114678382873535,0.416813284158707,0.180878400802612,-0.0522594451904297,0.208443999290466,0.0801260471343994,-0.115811347961426,0.276817262172699,0.116514205932617,-0.0862693786621094,0.0838540196418762,0.0267171859741211,-0.109582901000977,0.175029993057251,0.0450065135955811,-0.0434465408325195,0.0787391662597656,0.00577044486999512,-0.0799551010131836,0.122030138969421,0.0158803462982178,-0.0751409530639648,0.011368989944458,0.0233385562896729,-0.0819988250732422,0.00841724872589111,0.0525743961334229,-0.118653297424316,0.0667781829833984,-0.0227394104003906,-0.0629749298095703,0.0321286916732788,0.0160040855407715,-0.130859375,0.0989721417427063,-0.0893661975860596,-0.0102348327636719,0.21709144115448,-0.115904569625854,-0.026641845703125,0.27004462480545,-0.21436595916748,-0.0512733459472656,0.189778327941895,-0.132504463195801,-0.0602054595947266,0.0971709489822388,-0.0657758712768555,-0.0152015686035156,0.125149726867676,-0.0470442771911621,-0.0722646713256836,0.329168170690536,-0.0359904766082764,-0.101898193359375,0.334959030151367,0.0283856391906738,-0.102479934692383,0.347519099712372,0.0893197059631348,-0.108821868896484,0.324463427066803,0.129101753234863,-0.100000381469727,0.239038407802582,0.100503921508789,-0.11012077331543,0.147124230861664,0.0391607284545898,-0.0433454513549805,0.104423999786377,0.0104119777679443,-0.0421743392944336,0.0116418600082397,0.0330612659454346,-0.0955076217651367,0.0656975507736206,-0.00946426391601563,-0.093409538269043,0.117139220237732,-0.0645592212677002,-0.0331792831420898,0.131015360355377,-0.110366106033325,-0.0152120590209961,0.215549111366272,-0.16011381149292,-0.0603809356689453,0.30218505859375,-0.107290744781494,-0.0967798233032227, -0.321556329727173,-0.11275053024292,-0.0854272842407227,0.228749811649323,-0.176705837249756,-0.0573768615722656,0.155413568019867,-0.116708040237427,-0.0183954238891602,0.124719619750977,-0.0577461719512939,-0.051025390625,0.0547341108322144,0.00286602973937988,-0.114846229553223,0.0104086399078369,0.0433349609375,-0.109336853027344,0.116375684738159,0.0134799480438232,-0.0607833862304688,0.159278571605682,0.0439832210540771,-0.0464439392089844,0.253520905971527,0.108599901199341,-0.100715637207031,0.353858470916748,0.143619537353516,-0.089198112487793,0.378781616687775,0.108822345733643,-0.0969295501708984,0.368813037872314,0.0322268009185791,-0.0864086151123047,0.367785811424255,-0.0523641109466553,-0.0853242874145508,0.448533892631531,-0.104527473449707,-0.0272684097290039,0.279082655906677,0.108209609985352,-0.0815534591674805,0.199254155158997,0.0368132591247559,-0.0421180725097656,0.22634756565094,0.0176999568939209,-0.0718965530395508,0.216302335262299,0.0431969165802002,-0.0731287002563477,0.117353677749634,0.0174696445465088,-0.112801551818848,0.13467264175415,0.0169219970703125,-0.0884284973144531,0.0100640058517456,0.0610518455505371,-0.12520694732666,0.0175461769104004,0.0702145099639893,-0.133062362670898,0.0228430032730103,0.0137715339660645,-0.0815010070800781,0.0250740051269531,0.0168209075927734,-0.0964183807373047,0.0177161693572998,0.0280978679656982,-0.116335868835449,-0.00130987167358398,0.0423166751861572,-0.128703117370605,-0.0169026851654053,0.0553970336914063,-0.135546684265137,-0.0189023017883301,0.0688166618347168,-0.14372730255127,-0.000632643699645996,0.0260603427886963,-0.141242980957031,-0.0393795967102051,0.045842170715332,-0.151592254638672,0.056249737739563,-0.000229120254516602,-0.121769905090332,-0.0305122137069702,0.0346059799194336,-0.144351005554199,0.0822247266769409,-0.0102283954620361,-0.100930213928223,-0.0272260904312134,0.027590274810791,-0.131618499755859,-0.0319137573242188,0.0603926181793213,-0.0926876068115234,-0.0316977500915527,0.0667390823364258,-0.0310192108154297, --0.0276657342910767,0.0741813182830811,-0.0480861663818359,-0.0350676774978638,0.0718050003051758,-0.135804176330566,-0.0427203178405762,0.0617012977600098,-0.148736953735352,-0.0220497846603394,0.0433547496795654,-0.139967918395996,0.00738465785980225,0.0294344425201416,-0.132044792175293,0.0332834720611572,0.0153086185455322,-0.115158081054688,0.0458039045333862,0.00375580787658691,-0.0944395065307617,0.044417142868042,-0.00655817985534668,-0.0722551345825195,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,0,3.48091125488281e-05,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,0,2.1815299987793e-05,0,0,2.50935554504395e-05,0,0,5.07831573486328e-05,0,0,2.1815299987793e-05,0,0.0086098313331604,3.46899032592773e-05,0,0.000772833824157715,5.07831573486328e-05,0,-0.000124335289001465,0.000298500061035156,0,-0.0331242084503174,0.0668702125549316,0,-0.0331413745880127,0.0668210983276367,-0.000166893005371094,-0.0256650447845459,0.05181884765625,0,-0.02659010887146,0.0536940097808838,0,-0.0156440734863281,0.031611442565918,0,-0.020479679107666,0.0413508415222168,0,-0.00421774387359619,0.00855255126953125,0,-0.0140405893325806,0.0283603668212891,0,-0.0068279504776001,0.013791561126709,0,-0.0177768468856812,0.0358984470367432,0,-0.028101921081543,0.0567121505737305,0,-0.0238274335861206,0.0481045246124268,0,-0.0329599380493164,0.0665230751037598,0,-0.0337076187133789,0.0694921016693115,-0.00205898284912109,-0.0304191112518311,0.0614032745361328,0,-0.0238801240921021,0.0482110977172852,0,-0.026700496673584,0.0539009571075439,0,-0.03340744972229,0.0690059661865234,-0.00153064727783203,0.0296644568443298,5.07831573486328e-05,0,0.0074763298034668,4.10079956054688e-05,0,-0.000789403915405273,0.0028533935546875,-0.000468254089355469,-0.0238476991653442,0.0481584072113037,0,-0.0320816040039063,0.0647635459899902,0,-0.0331356525421143,0.0668680667877197,0,-0.0256578922271729,0.0517783164978027,0,-0.011663556098938,0.0235452651977539,0,0,4.42266464233398e-05,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,-0.00629878044128418, -0.01273512840271,0,-0.00928616523742676,0.0187749862670898,1.9073486328125e-06,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0.00609135627746582,0.00180816650390625,-0.00301933288574219,0.000791072845458984,0.000209808349609375,-0.000382423400878906,0.0156006813049316,0.0040435791015625,-0.00759601593017578,0.00349164009094238,0.000819206237792969,-0.00169181823730469,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0.0054326057434082,0.00307178497314453,-0.00274276733398438,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0.000501036643981934,0.000218391418457031,-0.000247001647949219,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,-1.43051147460938e-06,4.86373901367188e-05,-7.91549682617188e-05,1.96099281311035e-05,6.58035278320313e-05,-0.000125885009765625,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05, -0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,0,2.21729278564453e-05,0,0,4.1663646697998e-05,0,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05,0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05, -0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05, -0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05,0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05, -0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05,0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05, -0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05, --1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05, -2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05,1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0.033890962600708,-0.00689291954040527,-0.0439605712890625,0.0377787947654724,-0.00512146949768066,-0.0327119827270508,0.0296531319618225,-0.00472402572631836, --0.0287103652954102,0.00381326675415039,-0.00850701332092285,-0.0226211547851563,0.00454092025756836,-0.0149636268615723,-0.0211582183837891,0.0193468332290649,-0.0229687690734863,-0.0192155838012695,0.0192604064941406,-0.00556468963623047,-0.0439310073852539,0.0335803627967834,-0.00437331199645996,-0.0554618835449219,0.0586951375007629,-0.00445365905761719,-0.0642585754394531,0.0651706457138062,-0.0102448463439941,-0.0595970153808594,0.0567926168441772,-0.0219216346740723,-0.0449161529541016,0.0406815409660339,-0.0325140953063965,-0.0225887298583984,0.0350953340530396,-0.0375990867614746,-0.00774192810058594,0.0371887683868408,-0.0410723686218262,-0.00298690795898438,0.0419083833694458,-0.0384674072265625,-0.0123882293701172,0.0078316330909729,-0.00875377655029297,-0.0253047943115234,0.00524675846099854,-0.0136649608612061,-0.0143947601318359,0.00651192665100098,-0.0181877613067627,-0.00849437713623047,0.0132273435592651,-0.0253827571868896,-0.00852394104003906,0.0177018642425537,-0.00453090667724609,-0.0380983352661133,-0.00694212317466736,0.0148401260375977,0.000109672546386719,0.0126364231109619,3.0517578125e-05,0.00560665130615234,0.0147063732147217,0.0302691459655762,-0.0592231750488281,0,3.19480895996094e-05,0,0.0207006931304932,2.71797180175781e-05,0,-0.00504434108734131,0.0102119445800781,0,-0.0114331245422363,0.0230913162231445,0,-0.0114331245422363,0.0231013298034668,0,-0.0167875289916992,2.90870666503906e-05,-0.111382484436035,-0.0258481502532959,3.09944152832031e-05,-0.196320533752441,-0.0105946063995361,3.09944152832031e-05,-0.24029541015625,0.00901317596435547,3.4332275390625e-05,-0.134041786193848,0.0264968872070313,-9.5367431640625e-05,-0.0642786026000977,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.724644601345062,-0.0132951736450195,-0.171535491943359,0.687628567218781,-0.0213418006896973,-0.244661331176758,0.629313588142395,-0.030339241027832,-0.307051658630371,0.527303338050842,-0.0347933769226074, --0.347283363342285,0.403321146965027,-0.03057861328125,-0.378525733947754,0.312285184860229,-0.0286726951599121,-0.405178070068359,0.211747407913208,-0.0129189491271973,-0.320575714111328,0.163882732391357,-0.000221729278564453,-0.375000953674316,0.119126319885254,0.00142478942871094,-0.298535346984863,0.0882930755615234,0.00182485580444336,-0.241409301757813,0.0908186435699463,0.00139665603637695,-0.244500160217285,0.0778725147247314,0.0002593994140625,-0.191493988037109,0.0733869075775146,0.000218868255615234,-0.116256713867188,0.0601842403411865,0.00318098068237305,-0.0623235702514648,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0.000871658325195313,0,5.05447387695313e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-3.45706939697266e-06,0.000794887542724609,-6.103515625e-05,0.0833432674407959,2.19345092773438e-05,-0.0418262481689453,0.0976982116699219,-0.00359153747558594,-0.0937719345092773,0.0809571743011475,-0.00132179260253906,-0.139594078063965,0.0290656089782715,-0.000901699066162109,-0.0816164016723633,0.0576605796813965,0.0182809829711914,-0.166980743408203,0.0626792907714844,0.0179152488708496,-0.17851448059082,0.0235943794250488,-0.00133085250854492,-0.081695556640625,0.0394654273986816,-0.00240898132324219,-0.0716400146484375,0.0096733570098877,3.48091125488281e-05,-0.0120086669921875,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.00642013549804688,0.0129971504211426,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.0035252571105957,0.00713491439819336,0,-0.0114331245422363,0.0230891704559326,0,-0.0114331245422363,0.0231051445007324,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,-0.00165605545043945,-0.000673294067382813,-0.00592231750488281,0,3.24249267578125e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0,0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05, -1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0 - } - Normals: *8319 { - a: -0.597092765817582,-1.20674596726894,-0.819351315498352,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.594912737607956,-1.10369230806828,-0.885224524885416,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.163332663476467,0.706752747297287,-0.81874081492424,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.5545769110322,0.83391448110342,-0.568683743476868,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.774938248097897,0.881902649998665,-0.456946484744549,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19223820318075,0.00875526666641235,0.135418526362628,0.693808138370514,-0.884770534932613,0.930083112791181,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.154018715023994,0.0270361304283142,0.366592600941658,0.35709891826582,-0.918058261275291,0.989276960492134,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782, --0.123436847481116,-0.741918206214905,1.17062877118587,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,-0.904423972775248,1.32568544149399,0.256302457302809,-0.769762395925716,1.53529137372971,0.520672351121902,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.265326533466578,1.06496109813452,1.09727028012276,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.509452104568481,1.10115332901478,0.961873315274715,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.560919091105461,-0.771625407040119,1.39845451712608,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.553172126412392,-0.521344833076,-0.142709732055664,-0.57022713124752,-0.761778369545937,-0.440274268388748,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011, -1.59164476394653,1.11365535855293,-0.100846465360064,1.6130183339119,0.900492273271084,0.519307337701321,0.680022969841957,-0.320886075496674,0.427825834602118,0.611639320850372,-0.43081459403038,1.24984148144722,0.743428140878677,0.0101923048496246,1.24035313725471,-0.716003447771072,-0.429137527942657,0.6684610247612,-1.17865699529648,-0.558192223310471,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.287638731300831,0.364852160215378,-0.134946346282959,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.468268631026149,0.433664247393608,-0.103400349617004,0.715243133594754,0.00880149006843567,0.305856227874756,0.837141009857419,0.0635102242231369,0.449118494987488,1.21493142843246,-0.588079117238522,0.410405874252319,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-1.33883160352707,0.271105103194714,0.201965391635895,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,0.066013514995575,0.622238367795944,-0.634040534496307,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198,-0.698155164718628,0.20468544960022,0.921138681471348,-0.815660007297993,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-1.18955874443054,0.554470807313919,-0.544300228357315,-1.26738625764847,0.169437065720558,-0.685808211565018,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174, --0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.597992211580276,0.508298240602016,0.248544991016388,-0.221662759780884,0.683038927614689,1.51674383878708,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,0.965885102748871,1.32491594552994,1.10400906205177,-0.137227639555931,1.44083914160728,0.982179835438728,0.0100697576999664,0.604398783296347,1.65839213132858,0.0926925539970398,0.590333692729473,1.62470996379852,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859, -1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,0.613032087683678,0.335265077650547,1.86055380105972,-0.232703726738691,-0.317183703184128,0.0465255379676819,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229, --0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536,1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,0.998518122150927,0.916681956499815,0.521828444674611,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647, -0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.22979035958042,0.949295956641436,0.953685918822885,0.265242695808411,0.957664247602224,0.970916826277971,1.33693334460258,-0.428975835442543,-0.875247816555202,1.69533205032349,-0.0761311762034893,-0.074331670999527,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.84295350313187,-0.358152143657207,-0.155432343482971,1.63278758525848,-0.373890697956085,-0.890541508793831,1.28755939006805,-0.494611859321594,-0.535688370466232,1.31134834885597,0.147582679986954,-0.629765912890434,1.40888613462448,-0.331198558211327,-0.354947298765182,1.56502795219421,0.032392218708992,-0.075869619846344,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.696403190493584,0.905656889081001,0.683515354990959,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.572749421000481,0.897463396191597,0.677460659295321,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797, -0.481656223535538,0.446323215961456,0.530354015529156,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.21371960639954,1.29597768187523,0.356007778085768,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393, --0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732, --0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534, -0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196, --1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969, --1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044, --1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993, -0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194, --0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651, --0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488, -0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963, --0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527, --0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484, --0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692, -0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975, --1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464, --0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427, --0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575, --0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731, -0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924, -1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953, --0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163, -0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137, --0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875, --0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239, --0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216, --0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616, --0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677, --0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293, --0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079, --0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916, -1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485, -1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589, --0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865, --0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925, --0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891, -0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911, --1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279, --0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905, -0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779, --0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362, -0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132, -0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635, --1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797, --0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603, -0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594, -0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367, --0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453, --1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188, --0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825, --0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397, --0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754, -0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677, --0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418, --0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943, -0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905, --1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383, --0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398, --1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872, --1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111, --0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134, -0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171, -0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823, -0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782, -0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062, --0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558, -1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059, -1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 - } - } - Geometry: 2807563819648, "Geometry::Mouth_Upper_Right", "Shape" { - Version: 100 - Indexes: *8027 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,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,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966, -2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402, -3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813, -3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236, -4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651, -4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075, -5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490, -5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915, -5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5965,5967,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6151,6152,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368, -6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6513,6514,6515,6525,6526,6529,6530,6531,6536,6544,6545,6546,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874, -6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284, -7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7347,7349,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7533,7534,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737, -7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7895,7896,7897,7907,7908,7911,7912,7913,7918,7926,7927,7928,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243, -8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653, -8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 - } - Vertices: *24081 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, -0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, -0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, -0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, -4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, --7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,-0.0068817138671875,-0.0046994686126709,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,-0.0114863514900208,-0.0036470890045166,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.57114791870117e-05,0,2.86102294921875e-06,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05, -0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,-0.000892519950866699,-0.000509262084960938,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,-0.000647217035293579,-0.000466346740722656,-5.7220458984375e-06,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,-0.00520455837249756,-0.00355863571166992,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,-0.00709056854248047,-0.00296950340270996,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,-0.00607156753540039,-0.00173163414001465,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,-0.00108230113983154,-0.000744342803955078,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,-0.0091860294342041,-0.00623893737792969,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,-0.000488638877868652,-0.000378608703613281,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000124812126159668,0,-9.5367431640625e-06,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05, -0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000833069963846356,0.00137138366699219,0,0.000153440982103348,0,0,0.0012858243426308,0.00228452682495117,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.00142123829573393,0.00255775451660156,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.0115865925326943,0.023066520690918,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.00141620426438749,0.0025477409362793,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.00102364958729595,0.00175571441650391,0,0.000238685926888138,0.000172138214111328,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000266930088400841,0.0002288818359375,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.0115865925326943,0.023066520690918,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.00450184941291809,0.00877285003662109,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05, -0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05, -0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000602760002948344,0.000906467437744141, -0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.00268208980560303,0.00510454177856445,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000560343265533447,0.000974178314208984,0,8.29696655273438e-05,0,0,0.000162482261657715,0.000172138214111328,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.00287309288978577,0.00547313690185547,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.00457954406738281,0.00907230377197266,0,0.00838840007781982,0.0167684555053711,0,0.00271272659301758,0.00515127182006836,0,0.000159621238708496,0,0,0.00676769018173218,0.013331413269043,0,0.00520437955856323,0.0103316307067871,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,0.00244486331939697,0.00478243827819824,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,0.00203993916511536,0.00395965576171875,0,7.78436660766602e-05,0,0,0.000401914119720459,0.000643730163574219,0,0.00707918405532837,0.0141263008117676,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,0.00273287296295166,0.00535774230957031,0,0.000159680843353271, -0,0,0.00881630182266235,0.0176310539245605,0,0.000160098075866699,0,0,0.0035436749458313,0.00682735443115234,0,0.00560629367828369,0.0111551284790039,0,0.000410914421081543,0.000674962997436523,0,8.2850456237793e-05,0,0,0.0011821985244751,0.00206232070922852,0,0.000160098075866699,0,0,0.000615239143371582,0.00107288360595703,0,0.00386452674865723,0.0076301097869873,0,0.000106692314147949,5.96046447753906e-05,0,8.32080841064453e-05,0,0,0.000600337982177734,0.00104761123657227,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000666916370391846,0.00102376937866211,0,8.29696655273438e-05,0,0,0.000660538673400879,0.00117635726928711,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.00336354970932007,0.00646305084228516,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00503295660018921,0.00999784469604492,0,0.00824916362762451,0.0163207054138184,0,0.00493979454040527,0.0096430778503418,0,0.00730997323989868,0.0144262313842773,0,0.00525811314582825,0.0104413032531738,0,7.65323638916016e-05,0,0,7.7366828918457e-05, -0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000462770462036133,0.000610828399658203,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,0.00261892378330231,0.00511646270751953,0,0.000757455825805664,0.00137138366699219,0,0.00723385810852051,0.0144262313842773,0,8.29100608825684e-05,0,0,0.0034257173538208,0.00658941268920898,0,0.000159084796905518,0,0,0.00799834728240967,0.0158147811889648,0,0.00338542461395264,0.00667428970336914,0,0.00743842124938965,0.014683723449707,0,8.27312469482422e-05,0,0,0.00234091281890869,0.00439977645874023,0,0.000159502029418945,0,0,0.00219261646270752,0.0042567253112793,0,0.000729918479919434,0.00130510330200195,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05, -0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,0.000797584652900696,0.00145339965820313,0,0.00129653513431549,0.00244855880737305,0,0.000672221183776855,0.00118875503540039,0,0.00221562385559082,0.0043025016784668,0,0.00570440292358398,0.0113525390625,0,0.00507855415344238,0.0100898742675781,0,0.000237584114074707,0.000323295593261719,0,0.00191205739974976,0.00369167327880859,0,7.53402709960938e-05,0,0,0.0040009617805481,0.00791597366333008,0,8.34465026855469e-05,0,0,0.00350499153137207,0.00691556930541992,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05, -0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,0.000122785568237305,9.20295715332031e-05,0,0.00132763385772705,0.00235557556152344,0,0.001761794090271,0.00324344635009766,0,0.00374424457550049,0.00723075866699219,0,0.0062708854675293,0.012484073638916,0,0.00488173961639404,0.00969266891479492,0,0.00193953514099121,0.00358963012695313,0,0.00472044944763184,0.00935649871826172,0,0.00412824749946594,0.00817298889160156,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.00271761417388916,0.00515985488891602,0,0.0082930326461792,0.0164093971252441,0,0.00883930921554565,0.0175127983093262,0,0.00936123728752136,0.0185632705688477,0,0.00549650192260742,0.0107674598693848,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,-0.00312304496765137,-0.00177907943725586,0,8.34465026855469e-05,0,0,8.32080841064453e-05, -0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,-0.0024944543838501,-0.00173115730285645,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,-0.00036919116973877,-0.000286579132080078,0,7.7366828918457e-05,0,0,-0.00947922468185425,-0.00285124778747559,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0, -0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.63075256347656e-05,0,9.5367431640625e-07,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,-0.00904369354248047,-0.00612139701843262,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.36551189422607e-05,0,-9.5367431640625e-07,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,-0.01053786277771,-0.00379633903503418,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,-0.0027472972869873,-0.000780820846557617,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271, -0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,-0.00371706485748291,-0.00255703926086426,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,-0.00769579410552979,-0.00524401664733887,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0, -8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.0012448625639081,0.00220203399658203,0,0.000485971570014954,0.000813007354736328,0,0.000643093138933182,0.000974178314208984,0,0.000560779124498367,0.000974178314208984,0,7.72476196289063e-05, -0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.00116872787475586,0.00220203399658203,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05, -0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000800362147856504,0.00130510330200195,0,0.000333640724420547,0.000504970550537109,0,0.000485962256789207,0.000813007354736328,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625, -0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05, -0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0, -8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05, -0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.00149490439798683,0.00270652770996094,0,0.000167027115821838,0.000181198120117188,0,0.000333085656166077,0.000504970550537109,0,0.00117553735617548,0.00206232070922852,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,0.00036544181057252,0.000737190246582031,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000614701421000063, -0.0009307861328125,0,0.00437095761299133,0.0086512565612793,0,0.000527143478393555,0.000906467437744141,0,0.00952005945146084,0.018897533416748,0,0.0115160048007965,0.023066520690918,0,0.00941529870033264,0.018829345703125,0,0.0115865925326943,0.023066520690918,0,0.0115160048007965,0.023066520690918,0,0.0115104019641876,0.023066520690918,0,0.00783868972212076,0.0158147811889648,0,0.00779491662979126,0.0157256126403809,0,7.72476196289063e-05,0,0,9.44733619689941e-05,2.33650207519531e-05,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,0.00392460823059082,0.00774955749511719,0,0.00716233253479004,0.0142831802368164,0,8.2850456237793e-05,0,0,0.00647485256195068,0.0128960609436035,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.00143599510192871,0.00273847579956055,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,0.000103235244750977,4.00543212890625e-05,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05, -0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.000462949275970459,0.000610828399658203,0,0.00070643424987793,0.00125789642333984,0,0.000736355781555176,0.00132894515991211,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,0.00796699523925781,0.0159173011779785,0,0.00319862365722656,0.00613117218017578,0,0.00113353133201599,0.00211954116821289,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,0.00434845685958862,0.00861597061157227,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.0036081075668335,0.00712251663208008,0,0.00146877765655518,0.0028076171875,0,0.000448703765869141,0.000737190246582031,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05, -0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,0.00353044271469116,0.00695466995239258,0,8.34167003631592e-05,0,0,0.0019325315952301,0.00389766693115234,0,0.00142532587051392,0.00271987915039063,0,0.000159598886966705,0,0,0.00692325830459595,0.0137991905212402,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,0.00254172086715698,0.00496053695678711,0,0.0010993480682373,0.00206232070922852,0,0.00213509798049927,0.00413894653320313,0,0.00238427519798279,0.00464296340942383,0,0.00341665744781494,0.00672578811645508,0,0.00280827283859253,0.00550985336303711,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.00899231433868408,0.0179738998413086,0,0.00016021728515625,0,0,0.00289058685302734,0.00550985336303711,0,0.00046241283416748,0.000610828399658203,0,0.00142544507980347,0.00271987915039063,0,0.00105631351470947,0.00196409225463867,0,0.0063244104385376,0.0124368667602539,0,0.0049513578414917,0.00983476638793945,0,0.00404739379882813,0.00799751281738281,0,0.00145566463470459,0.00262236595153809,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.000773072242736816,0.00140523910522461,0,0.00392460823059082,0.00774955749511719,0,0.00270748138427734,0.00530767440795898,0,0.00218713283538818,0.0042567253112793,0,0.00119340419769287,0.00224065780639648,0,0.00038909912109375,0.000617027282714844,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,0.000139474868774414,0.000117778778076172,0,0.00338375568389893,0.0066530704498291,0,8.46385955810547e-05, -0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,9.71555709838867e-05,4.00543212890625e-05,0,0.000135064125061035,0.000117778778076172,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000227689743041992,0.000136852264404297,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05, -0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000249326229095459,0.000181198120117188,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.0053328275680542,0.0104374885559082,0,0.00811088085174561,0.0162081718444824,0,0.00152188912034035,0.00274753570556641,0,0.00260776281356812,0.00509405136108398,0,0.00198079645633698,0.00383901596069336,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.000650167465209961,0.00115585327148438,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.00016254186630249, -0.000172138214111328,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000296831130981445,0.000442981719970703,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000342488288879395,0.000369071960449219,0,8.2850456237793e-05,0,0,0.00115680694580078,0.00201177597045898,0,0.000457227230072021,0.000754833221435547,0,0.000903964042663574,0.00165653228759766,0,0.00934129953384399,0.0186905860900879,0,0.00962609052658081,0.0192646980285645,0,0.00301039218902588,0.00591754913330078,0,0.0067409873008728,0.0134439468383789,0,0.00080375000834465,0.00145339965820313,0,0.00105627998709679,0.00196409225463867,0,8.34502279758453e-05,0,0,0.000415660440921783,0.000683784484863281,0,0.00502118468284607,0.00996208190917969,0,0.0063454806804657,0.0126461982727051,0,8.35657119750977e-05,0,0,7.74860382080078e-05, -0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,0.0059654712677002,0.0118670463562012,0,0.00148510932922363,0.00282907485961914,0,0.00351071357727051,0.00691556930541992,0,7.71284103393555e-05,0,0,0.00014185905456543,0.000117778778076172,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,0.0026305615901947,0.00515127182006836,0,0.00192460417747498,0.00371456146240234,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,0.00305807590484619,0.00600147247314453,0,0.00140374898910522,0.00266361236572266,0,0.00400704145431519,0.00791597366333008,0,7.84993171691895e-05,0,0,0.00145328044891357,0.00277376174926758,0,0.0060882568359375,0.0121145248413086,0,0.0047767162322998,0.00948143005371094,0,7.72476196289063e-05,0,0,0.00390386581420898,0.0077204704284668,0,0.00248408317565918,0.00468826293945313,0,0.00113964080810547,0.00214338302612305,0,8.27312469482422e-05,0,0,0.000732302665710449,0.00115585327148438,0,0.00036466121673584,0.000568866729736328, -0,0.000690340995788574,0.00123691558837891,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05, -0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0, -8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000256061553955078,0.000349521636962891,0,0.000532194972038269,0.000906467437744141,0,0.000197991728782654,0.000243663787841797,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.00111329555511475,0.00192451477050781,0,0.00620901584625244,0.0123701095581055,0,0.00846350193023682,0.0169081687927246,0,0.00749903917312622,0.0149612426757813,0,0.00415241718292236,0.0083765983581543,0,0.000237554311752319,0.000323295593261719,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,0.00013577938079834,0.000117778778076172,0,0.00117483735084534,0.00220203399658203,0,0.000762522220611572,0.00137138366699219,0,9.64999198913574e-05,4.00543212890625e-05,0,0.00423479080200195,0.0083765983581543,0,0.000251173973083496,0.000349521636962891,0,0.00023353099822998,0.000304222106933594,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05, -0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,0.000730156898498535,0.00130510330200195,0,0.000122427940368652,9.20295715332031e-05,0,0.000364780426025391,0.000568866729736328,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.00245141983032227,0.00477743148803711,0,0.000364780426025391,0.000568866729736328,0,0.000837564468383789,0.00152158737182617,0,0.00858491659164429,0.0171527862548828,0,0.00902998447418213,0.0180497169494629,0,0.00902938842773438,0.0180497169494629,0,0.00392410159111023,0.00774955749511719,0,0.00692221522331238,0.0138096809387207,0,0.00554236769676208,0.0108599662780762,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.00657093524932861,0.0130906105041504,0,0.00450491905212402,0.00892066955566406,0,0.00833570957183838,0.0165071487426758,0,0.00894594192504883,0.0178923606872559,0,0.008445143699646,0.0168695449829102,0,0.00751239061355591,0.0149993896484375,0,0.00830259919166565,0.0165948867797852,0,8.2850456237793e-05,0,0,0.00354854017496109,0.0070033073425293,0,0.00318232178688049, -0.00625324249267578,0,0.00324279069900513,0.00637531280517578,0,0.00357112288475037,0.0070490837097168,0,0.00199469923973083,0.00386857986450195,0,0.00278247892856598,0.00529050827026367,0,0.000342279672622681,0.000522136688232422,0,0.00114521384239197,0.00214338302612305,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.00186219811439514,0.00358963012695313,0,9.76026058197021e-05,4.00543212890625e-05,0,0.00592172145843506,0.0117802619934082,0,0.00476691126823425,0.00945138931274414,0,0.00587674975395203,0.0116891860961914,0,0.00586602091789246,0.0116791725158691,0,0.00340458750724792,0.00686788558959961,0,0.000160165131092072,0,0,0.000196371227502823,0.0002288818359375,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.00149782001972198,0.0028533935546875,0,0.00151168555021286,0.00288152694702148,0,0.00274652987718582,0.0052180290222168,0,0.00185341387987137,0.00358343124389648,0,0.00571687519550323,0.0113668441772461,0,0.00401380658149719,0.00792980194091797,0,0.00856795907020569,0.017117977142334,0,0.00737956166267395,0.0147323608398438,0,0.00820469856262207,0.0162301063537598,0,0.00884532928466797,0.0176773071289063,0,0.00482022762298584,0.00955772399902344,0,0.00671058893203735,0.0133705139160156,0,0.00101536512374878,0.00188016891479492,0,0.00268226861953735,0.00524330139160156,0,7.7366828918457e-05,0,0,5.90085983276367e-05,0.000117778778076172,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05, -0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,0.000113047659397125,5.96046447753906e-05,0,0.00020579993724823,9.20295715332031e-05,0,0.000162526965141296,0.000172138214111328,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000122904777526855,9.20295715332031e-05,0,0.00018918514251709,5.96046447753906e-05,0,0.000112414360046387,5.96046447753906e-05,0,0.0001068115234375,5.96046447753906e-05,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05, -0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0, -0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781, -0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0, -0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05, -0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05, -0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781, -0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05, -0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05, -0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0, -0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05, -0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0, -0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375, -0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0, -0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05, -0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0, -0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0, -8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05, -0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0, -0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05, -0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05, -0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05, -0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0, -0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803, -0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0, -9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0, -8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05, -0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05, -0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0, -0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883, -0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0, -9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766, -0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,-0.177021726965904,3.48091125488281e-05,-5.24520874023438e-05,-0.0915490984916687,4.69684600830078e-05,0,-0.824972629525291,-0.0083765983581543,-0.0923929214477539,-0.936384737484332,-0.00705051422119141,-0.128968238830566,1.45519152283669e-10,3.48091125488281e-05,0,4.36557456851006e-11,3.48091125488281e-05,0,-0.898055076577293,-0.00750827789306641,-0.123711585998535,-2.91038304567337e-11,3.48091125488281e-05,0,-0.854470550999395, --0.00802421569824219,-0.101079940795898,4.36557456851006e-11,3.48091125488281e-05,0,-0.590696632862091,-0.00553798675537109,0.118556976318359,-4.72937244921923e-11,3.48091125488281e-05,0,-0.903927147392096,-0.048774242401123,-0.111408233642578,-2.03726813197136e-10,3.48091125488281e-05,0,-0.573289752006531,-0.242793083190918,0.0465564727783203,1.31183529502049e-29,3.4332275390625e-05,0,1.76704839760241e-29,4.76837158203125e-05,0,1.76704839760241e-29,2.84910202026367e-05,0,1.6494232794919e-29,4.75049018859863e-05,0,1.76704839760241e-29,2.19047069549561e-05,0,1.76704839760241e-29,3.79681587219238e-05,0,1.76704839760241e-29,3.85046005249023e-05,0,1.16397638697519e-29,3.24249267578125e-05,0,1.2030073133208e-29,3.4332275390625e-05,0,1.17687680741049e-29,3.24249267578125e-05,0,1.28502273907597e-29,3.4332275390625e-05,0,-0.497763425111771,0.150196075439453,-0.019927978515625,-0.485300362110138,0.00922012329101563,-0.00209808349609375,-0.505659222602844,-0.0680832862854004,0.000880241394042969,-0.507520496845245,-0.122427940368652,0.0302610397338867,-0.452507436275482,0.183187007904053,-0.0353279113769531,-0.334241032600403,0.0858635902404785,-0.0402612686157227,1.69452569998719e-29,2.1815299987793e-05,0,1.70417235205941e-29,2.82526016235352e-05,0,1.71227329488799e-29,3.14712524414063e-05,0,-0.0201053600758314,4.42266464233398e-05,0,-0.048640500754118,3.09944152832031e-05,0,1.6823769940833e-29,4.11272048950195e-05,0,1.25674060830592e-29,3.4332275390625e-05,0,1.23097723279127e-29,3.4332275390625e-05,0,1.76704839760241e-29,3.48091125488281e-05,0,1.76704839760241e-29,4.48226928710938e-05,0,1.76704839760241e-29,3.24249267578125e-05,0,1.76704839760241e-29,4.1961669921875e-05,0,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.11006020387699e-29,3.19480895996094e-05,0,1.20450953867742e-29,4.16040420532227e-05,0,1.25386284767183e-29,4.16934490203857e-05,0,1.76704839760241e-29,4.50611114501953e-05,0,1.76704839760241e-29,4.48226928710938e-05,0,1.76704839760241e-29,3.24249267578125e-05,0,1.76704839760241e-29,3.24249267578125e-05, -0,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.76704839760241e-29,3.24249267578125e-05,-1.49011611938477e-06,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.026728826302e-29,3.19480895996094e-05,0,1.96628296081702e-16,3.24249267578125e-05,0,-1.93790846881475e-15,3.24249267578125e-05,2.62260437011719e-06,8.77084445781299e-30,3.19480895996094e-05,0,9.80023445286197e-30,3.24249267578125e-05,1.43051147460938e-06,9.58355604937264e-30,3.19480895996094e-05,0,1.18770504759626e-29,3.24249267578125e-05,1.43051147460938e-06,7.4275955903035e-30,3.24249267578125e-05,0,6.59519281550426e-16,3.24249267578125e-05,1.9073486328125e-06,6.5952056590738e-30,3.24249267578125e-05,0,-2.37353751358763e-15,3.24249267578125e-05,2.02655792236328e-06,5.74120017348389e-30,3.24249267578125e-05,0,-1.83593396053657e-15,3.24249267578125e-05,2.38418579101563e-06,8.17811092940521e-30,3.24249267578125e-05,0,7.57453707368001e-16,3.24249267578125e-05,1.66893005371094e-06,0,0.000311195850372314,0,0,0.000519618391990662,0,-0.141408622264862,0.00256752967834473,-0.0269231796264648,-0.040570080280304,4.69684600830078e-05,0,-0.795285731554031,-0.0123858451843262,-0.159697532653809,-0.922072380781174,-0.0120573043823242,-0.188895225524902,-0.193614959716797,-0.00143718719482422,-0.411779403686523,-0.212609052658081,0.00176715850830078,-0.45085620880127,-0.245829820632935,-0.00641250610351563,-0.467555046081543,-0.246181488037109,-0.0182986259460449,-0.422513961791992,-0.433910608291626,-0.0137925148010254,-0.397256851196289,-0.455267190933228,-0.0298423767089844,-0.427498817443848,-0.599465608596802,-0.0110011100769043,-0.355545997619629,-0.575735330581665,-0.033165454864502,-0.327432632446289,-0.734517693519592,-0.0319981575012207,-0.301414489746094,-0.708550691604614,-0.029383659362793,-0.286496162414551,-0.828085064888,-0.0210909843444824,-0.243342399597168,-0.753558754920959,-0.0203981399536133,-0.23465633392334,-0.355279445648193,-0.0211782455444336,-0.460138320922852, --0.33449387550354,-0.0214896202087402,-0.514724731445313,-0.175710678100586,0.00288772583007813,-0.391848564147949,-0.167375326156616,0.000143051147460938,-0.366973876953125,-0.135963201522827,0.00272083282470703,-0.320070266723633,-0.139641761779785,0.000839710235595703,-0.313745498657227,-0.128130912780762,0.00168609619140625,-0.308810234069824,-0.137042999267578,0.004638671875,-0.303739547729492,-0.0978460311889648,0.000139713287353516,-0.227218627929688,-0.107730865478516,0.00322341918945313,-0.23106575012207,-0.0914835929870605,-0.00169706344604492,-0.145896911621094,-0.0698702335357666,-0.000586032867431641,-0.141273498535156,-0.0717720985412598,0.00124549865722656,-0.0883979797363281,-0.0608365535736084,0.00321817398071289,-0.0804014205932617,-2.38418579101563e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,2.38418579101563e-07,3.48091125488281e-05,0,5.96046447753906e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.78813934326172e-07,3.48091125488281e-05,0,-2.08616256713867e-07,3.48091125488281e-05,0,-0.864367783069611,-0.0114831924438477,-0.201065063476563,-0.811344146728516,-0.0188851356506348,-0.284720420837402,-0.744685649871826,-0.0258893966674805,-0.344786643981934,-0.586640596389771,-0.0208001136779785,-0.373809814453125,-0.450334072113037,-0.0247998237609863,-0.414840698242188,-0.366890907287598,-0.022484302520752,-0.507654190063477,-0.257909774780273,-0.0153155326843262,-0.46338939666748,-0.206986665725708,0.000395774841308594,-0.443363189697266,-0.174376726150513,0.0016322135925293,-0.387663841247559,-0.140253782272339,0.00187015533447266,-0.323394775390625,-0.134918212890625,0.00106430053710938,-0.312214851379395,-0.104380369186401,1.43051147460938e-06,-0.233036041259766,-0.0823416709899902,-0.00112628936767578,-0.144415855407715,-0.0671875476837158,0.00320529937744141,-0.0825262069702148,-2.38418579101563e-07,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05, -0,-7.15255737304688e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,-2.68220901489258e-07,3.48091125488281e-05,0,-0.823791652917862,-0.0119671821594238,-0.173945426940918,-0.778166055679321,-0.0196847915649414,-0.25438404083252,-0.723253011703491,-0.0280876159667969,-0.30860710144043,-0.579190254211426,-0.0301580429077148,-0.342796325683594,-0.460538268089294,-0.0285816192626953,-0.430238723754883,-0.370728969573975,-0.0210628509521484,-0.49276065826416,-0.246585130691528,-0.0171213150024414,-0.43076229095459,-0.199224948883057,-0.000718593597412109,-0.425723075866699,-0.170436859130859,0.000698089599609375,-0.376147270202637,-0.140274524688721,0.00123405456542969,-0.318549156188965,-0.13672137260437,0.00495719909667969,-0.307986259460449,-0.106806516647339,0.00334644317626953,-0.232481002807617,-0.0916221141815186,0.000577926635742188,-0.146137237548828,-0.0714724063873291,0.001739501953125,-0.0918674468994141,4.76837158203125e-07,3.48091125488281e-05,0,3.57627868652344e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-0.538004219532013,-0.0113730430603027,0.0656499862670898,-0.476147174835205,-0.0105743408203125,-0.0914058685302734,-0.424760937690735,-0.00343894958496094,-0.0704059600830078,-0.350361585617065,-0.000618457794189453,-0.0811042785644531,-0.284004211425781,-0.00601434707641602,-0.0977907180786133,-0.265248775482178,-0.00636005401611328,-0.265148162841797,-0.184554576873779,-0.00732946395874023,-0.431308746337891,-0.145510673522949,0.00546550750732422,-0.34892749786377,-0.085092306137085,0.00693511962890625,-0.285149574279785,-0.0575940608978271,0.00560569763183594,-0.240315437316895,-0.0600934028625488,0.00469589233398438,-0.232062339782715,-0.0410053730010986,0.00205707550048828,-0.156848907470703,-0.040874719619751,0.00204133987426758,-0.098912239074707,-0.0207676887512207,0.00282478332519531,-0.0439138412475586,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0, -3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.88823789358139,-0.036461353302002,-0.12265682220459,-0.816098928451538,-0.0343108177185059,-0.193453788757324,-0.692314624786377,-0.0255742073059082,-0.234492301940918,-0.589939832687378,-0.0130090713500977,-0.310347557067871,-0.422536373138428,0.00475025177001953,-0.351425170898438,-0.319939851760864,-0.0499615669250488,-0.485105514526367,-0.239619731903076,-0.0113730430603027,-0.461568832397461,-0.206185817718506,0.00260353088378906,-0.431537628173828,-0.165670871734619,0.00390338897705078,-0.372040748596191,-0.117441892623901,0.00331544876098633,-0.289175033569336,-0.103891611099243,0.00243473052978516,-0.283863067626953,-0.0774037837982178,0.000275135040283203,-0.203523635864258,-0.0548105239868164,-0.000701904296875,-0.133313179016113,-0.0435085296630859,0.00241899490356445,-0.0619163513183594,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.520230650901794,-0.23076868057251,-0.0113973617553711,-0.383855581283569,-0.170649528503418,-0.0284671783447266,-0.302417635917664,-0.0891051292419434,-0.0170164108276367,-0.104143619537354,-0.0194344520568848,-0.0516319274902344,-0.0164854526519775,-0.0104546546936035,-0.00747013092041016,-0.00102567672729492,-0.000899314880371094,6.96182250976563e-05,-0.176399946212769,3.52859497070313e-05,-0.092132568359375,-0.119289398193359,2.288818359375e-05,-0.136422157287598,-0.0288577079772949,0.0115957260131836,-0.0364160537719727,-0.0090644359588623,0.00137472152709961,-0.0580644607543945,0.00284743309020996,0.00116682052612305,-0.0574111938476563,0.00790309906005859,0.00162363052368164,-0.0531682968139648,-0.0243918895721436,0.00216341018676758,-0.132513999938965,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,-0.0217435359954834,0.00929355621337891,-0.0205669403076172,0,3.48091125488281e-05,0,0,4.45842742919922e-05, -0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,0,3.82661819458008e-05,0,0,4.1663646697998e-05,0,0,3.79085540771484e-05,0,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,-1.43051147460938e-06,4.04119491577148e-05,1.9073486328125e-06,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.0320740938186646,0.0719413757324219,-0.0466670989990234,0.0189448595046997,0.0746350288391113,-0.049163818359375,0.00745320320129395,0.0753443241119385,-0.131333351135254,0.0362062454223633,0.0650548934936523,-0.122397422790527,-0.0241336822509766,0.0746252536773682,-0.127531051635742,0.0137220621109009,0.0746471881866455,-0.0347814559936523,-0.0342719554901123,0.0100128650665283,-0.0310869216918945,-0.11508572101593,0.0151388645172119, --0.106654167175293,-0.0256837010383606,4.69684600830078e-05,-0.00646018981933594,-0.165704607963562,0.00250959396362305,-0.0764684677124023,0.0362832546234131,0.0618448257446289,-0.117353439331055,0.0331611633300781,0.0703587532043457,-0.032597541809082,0.00631427764892578,0.014249324798584,9.25064086914063e-05,-0.0215427875518799,2.90870666503906e-05,0,-0.00490570068359375,2.05039978027344e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.000199794769287109,3.19480895996094e-05,0.000141143798828125,0.0113115310668945,0.00161600112915039,-0.0175323486328125,-0.0242898464202881,0.0120906829833984,-0.0189800262451172,-0.0215044021606445,0.00685596466064453,-0.0108785629272461,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,-0.279972970485687,-0.0264127254486084,-0.114697456359863,-0.415706396102905,-0.0572671890258789,-0.0680580139160156,-0.391419798135757,-0.140321016311646,-0.0693588256835938,-0.274525910615921,-0.0972189903259277,-0.105568885803223,-0.285152733325958,0.0220878124237061,-0.117451667785645,-0.421878755092621,0.0327539443969727,-0.052769660949707,-0.287835448980331,0.0622889995574951,-0.123411178588867,-0.446960359811783,0.144148826599121,-0.0624485015869141,-0.272257626056671,0.0973274707794189,-0.114678382873535,-0.416813343763351,0.180878400802612,-0.0522594451904297,-0.208443999290466,0.0801260471343994,-0.115811347961426,-0.276817262172699,0.116514205932617,-0.0862693786621094,-0.0838540196418762,0.0267171859741211,-0.109582901000977,-0.175029993057251,0.0450065135955811,-0.0434465408325195,-0.0787391662597656,0.00577044486999512,-0.0799551010131836,-0.122030138969421,0.0158803462982178,-0.0751409530639648,-0.011368989944458,0.0233385562896729,-0.0819988250732422,-0.00841724872589111,0.0525743961334229,-0.118653297424316,-0.0667781829833984,-0.0227394104003906,-0.0629749298095703,-0.0321286916732788,0.0160040855407715,-0.130859375,-0.0989721417427063,-0.0893661975860596,-0.0102348327636719,-0.21709144115448,-0.115904569625854, --0.026641845703125,-0.27004462480545,-0.21436595916748,-0.0512733459472656,-0.189778327941895,-0.132504463195801,-0.0602054595947266,-0.0971709489822388,-0.0657758712768555,-0.0152015686035156,-0.125149726867676,-0.0470442771911621,-0.0722646713256836,-0.329168170690536,-0.0359904766082764,-0.101898193359375,-0.334959030151367,0.0283856391906738,-0.102479934692383,-0.347519099712372,0.0893197059631348,-0.108821868896484,-0.324463427066803,0.129101753234863,-0.100000381469727,-0.239038407802582,0.100503921508789,-0.11012077331543,-0.147124230861664,0.0391607284545898,-0.0433454513549805,-0.104423999786377,0.0104119777679443,-0.0421743392944336,-0.0116418600082397,0.0330612659454346,-0.0955076217651367,-0.0656975507736206,-0.00946426391601563,-0.093409538269043,-0.117139220237732,-0.0645592212677002,-0.0331792831420898,-0.131015360355377,-0.110366106033325,-0.0152120590209961,-0.215549111366272,-0.16011381149292,-0.0603809356689453,-0.302185118198395,-0.107290744781494,-0.0967798233032227,-0.321556329727173,-0.11275053024292,-0.0854272842407227,-0.228749811649323,-0.176705837249756,-0.0573768615722656,-0.155413568019867,-0.116708040237427,-0.0183954238891602,-0.124719619750977,-0.0577461719512939,-0.051025390625,-0.0547341108322144,0.00286602973937988,-0.114846229553223,-0.0104086399078369,0.0433349609375,-0.109336853027344,-0.116375684738159,0.0134799480438232,-0.0607833862304688,-0.159278571605682,0.0439832210540771,-0.0464439392089844,-0.253520905971527,0.108599901199341,-0.100715637207031,-0.353858470916748,0.143619537353516,-0.089198112487793,-0.378781616687775,0.108822345733643,-0.0969295501708984,-0.368813037872314,0.0322268009185791,-0.0864086151123047,-0.367785811424255,-0.0523641109466553,-0.0853242874145508,-0.448533892631531,-0.104527473449707,-0.0272684097290039,-0.279082655906677,0.108209609985352,-0.0815534591674805,-0.199254155158997,0.0368132591247559,-0.0421180725097656,-0.22634756565094,0.0176999568939209,-0.0718965530395508,-0.216302335262299,0.0431969165802002,-0.0731287002563477,-0.117353677749634, -0.0174696445465088,-0.112801551818848,-0.13467264175415,0.0169219970703125,-0.0884284973144531,-0.0100640058517456,0.0610518455505371,-0.12520694732666,-0.0175461769104004,0.0702145099639893,-0.133062362670898,-0.0228430032730103,0.0137715339660645,-0.0815010070800781,-0.0250740051269531,0.0168209075927734,-0.0964183807373047,-0.0177161693572998,0.0280978679656982,-0.116335868835449,0.00130987167358398,0.0423166751861572,-0.128703117370605,0.0169026851654053,0.0553970336914063,-0.135546684265137,0.0189023017883301,0.0688166618347168,-0.14372730255127,0.000632643699645996,0.0260603427886963,-0.141242980957031,0.0393795967102051,0.045842170715332,-0.151592254638672,-0.056249737739563,-0.000229120254516602,-0.121769905090332,0.0305122137069702,0.0346059799194336,-0.144351005554199,-0.0822247266769409,-0.0102283954620361,-0.100930213928223,0.0272260904312134,0.027590274810791,-0.131618499755859,0.0319137573242188,0.0603926181793213,-0.0926876068115234,0.0316977500915527,0.0667390823364258,-0.0310192108154297,0.0276657342910767,0.0741813182830811,-0.0480861663818359,0.0350676774978638,0.0718050003051758,-0.135804176330566,0.0427203178405762,0.0617012977600098,-0.148736953735352,0.0220497846603394,0.0433547496795654,-0.139967918395996,-0.00738465785980225,0.0294344425201416,-0.132044792175293,-0.0332834720611572,0.0153086185455322,-0.115158081054688,-0.0458039045333862,0.00375580787658691,-0.0944395065307617,-0.044417142868042,-0.00655817985534668,-0.0722551345825195,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,0,3.48091125488281e-05,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,0,2.1815299987793e-05,0,0,2.50935554504395e-05,0,0,5.07831573486328e-05,0,0,2.1815299987793e-05,0,-0.0086098313331604,3.46899032592773e-05,0,-0.000772833824157715,5.07831573486328e-05,0,0.000124335289001465,0.000298500061035156,0,0.0331242084503174,0.0668702125549316,0,0.0331413745880127,0.0668210983276367,-0.000166893005371094,0.0256650447845459,0.05181884765625,0,0.02659010887146,0.0536940097808838,0,0.0156440734863281,0.031611442565918, -0,0.020479679107666,0.0413508415222168,0,0.00421774387359619,0.00855255126953125,0,0.0140405893325806,0.0283603668212891,0,0.0068279504776001,0.013791561126709,0,0.0177768468856812,0.0358984470367432,0,0.028101921081543,0.0567121505737305,0,0.0238274335861206,0.0481045246124268,0,0.0329599380493164,0.0665230751037598,0,0.0337076187133789,0.0694921016693115,-0.00205898284912109,0.0304191112518311,0.0614032745361328,0,0.0238801240921021,0.0482110977172852,0,0.026700496673584,0.0539009571075439,0,0.03340744972229,0.0690059661865234,-0.00153064727783203,-0.0296644568443298,5.07831573486328e-05,0,-0.0074763298034668,4.10079956054688e-05,0,0.000789403915405273,0.0028533935546875,-0.000468254089355469,0.0238476991653442,0.0481584072113037,0,0.0320816040039063,0.0647635459899902,0,0.0331356525421143,0.0668680667877197,0,0.0256578922271729,0.0517783164978027,0,0.011663556098938,0.0235452651977539,0,0,4.42266464233398e-05,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,0.00629878044128418,0.01273512840271,0,0.00928616523742676,0.0187749862670898,1.9073486328125e-06,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06, -0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,-0.00609135627746582,0.00180816650390625,-0.00301933288574219,-0.000791072845458984,0.000209808349609375,-0.000382423400878906,-0.0156006813049316,0.0040435791015625,-0.00759601593017578,-0.00349164009094238,0.000819206237792969,-0.00169181823730469,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,-0.0054326057434082,0.00307178497314453,-0.00274276733398438,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,-0.000501036643981934,0.000218391418457031,-0.000247001647949219,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,1.43051147460938e-06,4.86373901367188e-05,-7.91549682617188e-05,-1.96099281311035e-05,6.58035278320313e-05,-0.000125885009765625,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05, -0,3.9219856262207e-05,5.7220458984375e-06,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,-6.67572021484375e-06,-5.7220458984375e-06,7.62939453125e-06,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,6.13927841186523e-06,4.76837158203125e-06,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05, -0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05, -0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05,0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05, -0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05, -0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06, -0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06, -0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05,1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,-0.033890962600708,-0.00689291954040527,-0.0439605712890625,-0.0377787947654724,-0.00512146949768066,-0.0327119827270508, --0.0296531319618225,-0.00472402572631836,-0.0287103652954102,-0.00381326675415039,-0.00850701332092285,-0.0226211547851563,-0.00454092025756836,-0.0149636268615723,-0.0211582183837891,-0.0193468332290649,-0.0229687690734863,-0.0192155838012695,-0.0192604064941406,-0.00556468963623047,-0.0439310073852539,-0.0335803627967834,-0.00437331199645996,-0.0554618835449219,-0.0586951375007629,-0.00445365905761719,-0.0642585754394531,-0.0651706457138062,-0.0102448463439941,-0.0595970153808594,-0.0567926168441772,-0.0219216346740723,-0.0449161529541016,-0.0406815409660339,-0.0325140953063965,-0.0225887298583984,-0.0350953340530396,-0.0375990867614746,-0.00774192810058594,-0.0371887683868408,-0.0410723686218262,-0.00298690795898438,-0.0419083833694458,-0.0384674072265625,-0.0123882293701172,-0.0078316330909729,-0.00875377655029297,-0.0253047943115234,-0.00524675846099854,-0.0136649608612061,-0.0143947601318359,-0.00651192665100098,-0.0181877613067627,-0.00849437713623047,-0.0132273435592651,-0.0253827571868896,-0.00852394104003906,-0.0177018642425537,-0.00453090667724609,-0.0380983352661133,0.00132343451514316,0.00271749496459961,9.918212890625e-05,-7.27595761418343e-12,3.48091125488281e-05,0,0.00694212317466736,0.0148401260375977,0.000109672546386719,-0.0126364231109619,3.0517578125e-05,0.00560665130615234,-0.0147063732147217,0.0302691459655762,-0.0592231750488281,0,3.19480895996094e-05,0,-0.0207006931304932,2.71797180175781e-05,0,0.00504434108734131,0.0102119445800781,0,0.0114331245422363,0.0230913162231445,0,0.0114331245422363,0.0231013298034668,0,0.0167875289916992,2.90870666503906e-05,-0.111382484436035,0.0258481502532959,3.09944152832031e-05,-0.196320533752441,0.0105946063995361,3.09944152832031e-05,-0.24029541015625,-0.00901317596435547,3.4332275390625e-05,-0.134041786193848,-0.0264968872070313,-9.5367431640625e-05,-0.0642786026000977,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.749416530110466,-0.00925970077514648, --0.101834297180176,-0.724644601345062,-0.0132951736450195,-0.171535491943359,-0.68762880563736,-0.0213418006896973,-0.244661331176758,-0.629313349723816,-0.030339241027832,-0.307051658630371,-0.52730405330658,-0.0347933769226074,-0.347283363342285,-0.403321623802185,-0.03057861328125,-0.378525733947754,-0.312284469604492,-0.0286726951599121,-0.405178070068359,-0.211748361587524,-0.0129189491271973,-0.320575714111328,-0.163882732391357,-0.000221729278564453,-0.375000953674316,-0.119125604629517,0.00142478942871094,-0.298535346984863,-0.0882928371429443,0.00182485580444336,-0.241409301757813,-0.0908188819885254,0.00139665603637695,-0.244500160217285,-0.0778725147247314,0.0002593994140625,-0.191493988037109,-0.0733873844146729,0.000218868255615234,-0.116256713867188,-0.0601842403411865,0.00318098068237305,-0.0623235702514648,2.38418579101563e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,5.96046447753906e-08,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,4.36557456851006e-11,3.48091125488281e-05,0,-0.00505230294220382,3.48091125488281e-05,0.00446128845214844,8.94069671630859e-08,3.48091125488281e-05,0.000871658325195313,-4.76837158203125e-07,5.05447387695313e-05,0,4.76837158203125e-07,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,4.29153442382813e-06,0.000794887542724609,-6.103515625e-05,-0.0833427906036377,2.19345092773438e-05,-0.0418262481689453,-0.0976982116699219,-0.00359153747558594,-0.0937719345092773,-0.0809557437896729,-0.00132179260253906,-0.139594078063965,-0.0290653705596924,-0.000901699066162109,-0.0816164016723633,-0.0576598644256592,0.0182809829711914,-0.166980743408203,-0.0626797676086426,0.0179152488708496,-0.17851448059082,-0.0235934257507324,-0.00133085250854492,-0.081695556640625,-0.0394659042358398,-0.00240898132324219,-0.0716400146484375,-0.009674072265625,3.48091125488281e-05,-0.0120086669921875,-3.57627868652344e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-2.98023223876953e-07, -3.48091125488281e-05,0,2.68220901489258e-07,3.48091125488281e-05,0,2.98459781333804e-08,3.48091125488281e-05,0,0.000281896442174911,0.000600576400756836,0,0.00642013549804688,0.0129971504211426,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.0035252571105957,0.00713491439819336,0,0.0114331245422363,0.0230891704559326,0,0.0114331245422363,0.0231051445007324,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0.00165605545043945,-0.000673294067382813,-0.00592231750488281,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,1.37974147837371e-29,3.24249267578125e-05,0,1.53641994185809e-29,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0,0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,1.45414240907454e-29,1.62124633789063e-05,0,1.73472347597681e-18,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06, -0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,1.30104260698261e-18,3.24249267578125e-05,1.54972076416016e-06,1.68087296316736e-29,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,1.28982296899908e-29,3.24249267578125e-05,1.19209289550781e-06,1.69348870708276e-29,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,1.40932586880537e-29,3.24249267578125e-05,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,-0.171798080205917,-0.00320696830749512,0.0268955230712891,-0.0447227954864502,4.69684600830078e-05,0,-0.85746094584465,-0.00775527954101563,0.013035774230957,-0.955262452363968,-0.00578451156616211,-0.0528621673583984,-0.325179576873779,-0.000482559204101563,0.250858306884766,-0.326382875442505,-0.000498771667480469, -0.256072998046875,-0.481737852096558,-0.00677394866943359,0.351207733154297,-0.482563972473145,-0.00646448135375977,0.342196464538574,-0.857914686203003,-0.0265369415283203,0.447510719299316,-0.841803312301636,-0.0263853073120117,0.425458908081055,-0.906571626663208,0.0181732177734375,0.368027687072754,-0.829192399978638,-0.0244107246398926,0.318216323852539,-0.943496942520142,-0.0151834487915039,0.226361274719238,-0.884710073471069,-0.0170493125915527,0.209941864013672,-0.977782487869263,-0.0104484558105469,0.0708961486816406,-0.885019659996033,-0.0100479125976563,0.126144409179688,-0.749898791313171,-0.0185666084289551,0.442147254943848,-0.76035749912262,-0.019716739654541,0.456205368041992,-0.275064468383789,-7.77244567871094e-05,0.217853546142578,-0.275004148483276,-7.39097595214844e-05,0.212673187255859,-0.227325201034546,4.00543212890625e-05,0.181761741638184,-0.227990627288818,3.19480895996094e-05,0.177322387695313,-0.227214097976685,0.000121593475341797,0.180655479431152,-0.228739023208618,0.000129222869873047,0.177083969116211,-0.186002492904663,0.000455379486083984,0.146267890930176,-0.186038494110107,0.000466823577880859,0.143571853637695,-0.174604892730713,0.00277519226074219,0.125306129455566,-0.176178693771362,0.00265645980834961,0.133537292480469,-0.145880699157715,0.00383663177490234,0.0886478424072266,-0.148857831954956,0.00360441207885742,0.0983762741088867,-2.38418579101563e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,2.38418579101563e-07,3.48091125488281e-05,0,5.96046447753906e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.78813934326172e-07,3.48091125488281e-05,0,-2.08616256713867e-07,3.48091125488281e-05,0,-0.933965474367142,-0.00696516036987305,-0.0330057144165039,-0.958455085754395,-0.010472297668457,0.0853385925292969,-0.933062076568604,-0.0158228874206543,0.213275909423828,-0.86404025554657,-0.00910711288452148,0.346475601196289,-0.855316638946533, --0.0274438858032227,0.43980598449707,-0.74685525894165,-0.0192394256591797,0.447322845458984,-0.479250431060791,-0.0066375732421875,0.345527648925781,-0.325862646102905,-0.000496387481689453,0.253240585327148,-0.275235652923584,-7.39097595214844e-05,0.215081214904785,-0.227705240249634,3.19480895996094e-05,0.179373741149902,-0.2279953956604,0.000118255615234375,0.178745269775391,-0.185950994491577,0.000463008880615234,0.14478588104248,-0.176513671875,0.00271797180175781,0.128881454467773,-0.14986777305603,0.00369071960449219,0.0956287384033203,-2.38418579101563e-07,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,-7.15255737304688e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,-2.68220901489258e-07,3.48091125488281e-05,0,-0.889189839363098,-0.00748109817504883,-7.72476196289063e-05,-0.916553497314453,-0.0102157592773438,0.117774963378906,-0.906363964080811,-0.0176501274108887,0.211372375488281,-0.840096592903137,-0.0218515396118164,0.327814102172852,-0.8485267162323,-0.0267972946166992,0.431446075439453,-0.750338912010193,-0.018826961517334,0.445115089416504,-0.479968070983887,-0.00651836395263672,0.342812538146973,-0.325381278991699,-0.000486373901367188,0.251615524291992,-0.275114774703979,-8.34465026855469e-05,0.213501930236816,-0.227877378463745,3.19480895996094e-05,0.178040504455566,-0.228481769561768,0.000131130218505859,0.177671432495117,-0.186014890670776,0.000465869903564453,0.14399528503418,-0.177678108215332,0.00275278091430664,0.127182006835938,-0.148496389389038,0.00378084182739258,0.0911283493041992,4.76837158203125e-07,3.48091125488281e-05,0,3.57627868652344e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-0.612029075622559,-0.00481796264648438,0.175751686096191,-0.629496335983276,-0.0255270004272461,0.17575740814209,-0.463333129882813,-0.0360116958618164,0.153764724731445,-0.325198769569397,-0.0133252143859863,0.125073432922363,-0.462388634681702, --0.0102972984313965,0.233264923095703,-0.497253179550171,-0.00672340393066406,0.315954208374023,-0.404783248901367,-0.0023503303527832,0.304374694824219,-0.318607330322266,-0.000169754028320313,0.26786994934082,-0.267921209335327,-9.5367431640625e-06,0.235767364501953,-0.221738815307617,3.19480895996094e-05,0.196374893188477,-0.221045970916748,5.91278076171875e-05,0.19394588470459,-0.176603078842163,0.000167369842529297,0.15145206451416,-0.139865398406982,0.000834465026855469,0.116106986999512,-0.0934858322143555,0.00110721588134766,0.0692882537841797,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.915323555469513,-0.017364501953125,-0.0340557098388672,-0.919848680496216,-0.0118117332458496,0.0512790679931641,-0.828837990760803,-0.000926494598388672,0.162954330444336,-0.81805145740509,0.032289981842041,0.276833534240723,-0.750456213951111,-0.018953800201416,0.368745803833008,-0.689999461174011,-0.0132169723510742,0.416604995727539,-0.452260255813599,-0.00453424453735352,0.327286720275879,-0.324785947799683,-0.000325679779052734,0.256829261779785,-0.274127721786499,-4.24385070800781e-05,0.221102714538574,-0.226389169692993,3.19480895996094e-05,0.185504913330078,-0.225543975830078,9.10758972167969e-05,0.184713363647461,-0.183051586151123,0.000309944152832031,0.147438049316406,-0.16685938835144,0.00172948837280273,0.131160736083984,-0.12947154045105,0.00233602523803711,0.0879487991333008,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.574647903442383,-0.245561122894287,0.0684738159179688,-0.303208708763123,-0.245890140533447,0.0125217437744141,-0.282934248447418,-0.309534549713135,0.00621318817138672,-0.386302828788757,-0.28986930847168,0.0535869598388672,-0.0737590789794922,-0.0257177352905273,0.0271177291870117,-0.0570170879364014,4.05311584472656e-05,0.0338230133056641,-0.172164678573608,3.19480895996094e-05,0.117496490478516, --0.181047439575195,2.288818359375e-05,0.133103370666504,-0.102182626724243,3.19480895996094e-05,0.088775634765625,-0.141053915023804,3.19480895996094e-05,0.13383674621582,-0.127873420715332,3.19480895996094e-05,0.0936336517333984,-0.118665933609009,2.38418579101563e-05,0.0844593048095703,-0.167064428329468,3.19480895996094e-05,0.125926971435547,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,-0.0660686492919922,3.24249267578125e-05,0.0506210327148438,0,3.48091125488281e-05,0,0,4.45842742919922e-05,0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,-0.00302529335021973,-0.00239741802215576,0,0,4.1663646697998e-05,0,-5.50746917724609e-05,3.79085540771484e-05,2.00271606445313e-05,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,-1.43051147460938e-06,5.56707382202148e-05,-1.9073486328125e-06,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0, -3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.282999038696289,-0.109869956970215,0.0478153228759766,-0.332331895828247,-0.109879493713379,0.0499839782714844,-0.389280319213867,-0.101694345474243,0.13831615447998,-0.321688055992126,-0.106125116348267,0.128779411315918,-0.424111127853394,-0.0987229347229004,0.133784294128418,-0.335032820701599,-0.109867334365845,0.035161018371582,-0.195988535881042,-0.0597870349884033,0.0312795639038086,-0.32635509967804,-0.0613646507263184,0.107706069946289,-0.0479342937469482,4.69684600830078e-05,0.00652885437011719,-0.20349246263504,-0.00254964828491211,0.074894905090332,-0.303685188293457,-0.106232404708862,0.12313175201416,-0.246635317802429,-0.109879493713379,0.0333385467529297,-0.0135810375213623,-0.00351238250732422,0.00503826141357422,-0.0630338191986084,3.19480895996094e-05,0.0373916625976563,-0.0323264598846436,2.05039978027344e-05,0.0191764831542969,-0.0415744781494141,3.19480895996094e-05,0.0260963439941406,-0.0419507026672363,3.19480895996094e-05,0.0248861312866211,-0.0442538261413574,3.19480895996094e-05,0.0271015167236328,-0.0330715179443359,3.19480895996094e-05,0.0210704803466797,-0.0525181293487549,3.24249267578125e-05,0.0585222244262695,-0.0382165908813477,-8.10623168945313e-05,0.0320730209350586,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,-0.360877096652985,-0.0350284576416016,0.0116701126098633,-0.497473418712616,-0.0878386497497559,0.0411758422851563,-0.417689710855484,-0.119870901107788,0.0465774536132813,-0.293312281370163,-0.0719892978668213,0.0131855010986328,-0.363871932029724,0.000580787658691406,0.00668525695800781,-0.491624295711517,0.0097346305847168,0.0231876373291016,-0.359178870916367,0.0369744300842285,0.00499343872070313,-0.508098214864731,0.107306241989136,0.00122928619384766,-0.351651430130005,0.0579197406768799,0.00179576873779297, --0.495341628789902,0.148296356201172,-0.0152559280395508,-0.300800085067749,0.0241317749023438,0.0251398086547852,-0.394699275493622,0.0646347999572754,0.0136947631835938,-0.201220273971558,-0.0327236652374268,0.0881938934326172,-0.258761286735535,-0.0373189449310303,0.106966972351074,-0.224652409553528,-0.0257048606872559,0.0789327621459961,-0.359983801841736,-0.0690572261810303,0.108209609985352,-0.287291169166565,-0.0442836284637451,0.0926609039306641,-0.42311692237854,-0.090219259262085,0.13056468963623,-0.328560948371887,-0.131807804107666,0.0666036605834961,-0.394659996032715,-0.137356281280518,0.136049270629883,-0.250103712081909,-0.161382675170898,-0.00186252593994141,-0.298503875732422,-0.213136196136475,0.0205230712890625,-0.223536610603333,-0.16014552116394,0.0121431350708008,-0.216166138648987,-0.13278865814209,0.00993061065673828,-0.282824695110321,-0.160584449768066,0.0163192749023438,-0.354533135890961,-0.195128202438354,0.0684089660644531,-0.420471221208572,-0.0473990440368652,0.0231399536132813,-0.427733361721039,0.00419449806213379,0.0177135467529297,-0.432166695594788,0.0600640773773193,0.00652217864990234,-0.429173588752747,0.0923504829406738,-0.00501060485839844,-0.364948213100433,0.0437300205230713,0.0234107971191406,-0.239648520946503,-0.0360012054443359,0.101894378662109,-0.347810983657837,-0.0744562149047852,0.0933446884155273,-0.40263569355011,-0.0906968116760254,0.106916427612305,-0.355311393737793,-0.135661602020264,0.0967893600463867,-0.301996052265167,-0.175997018814087,0.0328912734985352,-0.254608392715454,-0.184763431549072,0.000257492065429688,-0.218179136514664,-0.144266843795776,0.0109786987304688,-0.338133215904236,-0.0900058746337891,0.0226106643676758,-0.369080543518066,-0.104634284973145,0.0326986312866211,-0.220417559146881,-0.15264630317688,0.01177978515625,-0.26167893409729,-0.201781034469604,0.00335025787353516,-0.32314932346344,-0.18593168258667,0.0488967895507813,-0.376845240592957,-0.137906074523926,0.118810653686523,-0.415275692939758,-0.0901656150817871,0.121267318725586, --0.357231736183167,-0.071568489074707,0.102925300598145,-0.252418339252472,-0.0367276668548584,0.105073928833008,-0.383265197277069,0.0521564483642578,0.0212001800537109,-0.457069158554077,0.108855485916138,-0.00876235961914063,-0.461025893688202,0.0757529735565186,0.00527286529541016,-0.458727121353149,0.00706934928894043,0.0213594436645508,-0.456937432289124,-0.0639331340789795,0.0311956405639648,-0.511316299438477,-0.117177963256836,0.0504856109619141,-0.373678982257843,0.0554916858673096,0.0146818161010742,-0.258219718933105,-0.033815860748291,0.106137275695801,-0.246825277805328,-0.0176224708557129,0.0963306427001953,-0.295174181461334,-0.0152585506439209,0.0577507019042969,-0.347839951515198,-0.0633959770202637,0.115208625793457,-0.354126811027527,-0.0663299560546875,0.111684799194336,-0.427327871322632,-0.0908951759338379,0.136235237121582,-0.432070255279541,-0.0933499336242676,0.142264366149902,-0.369006156921387,-0.0978343486785889,0.0903806686401367,-0.376898527145386,-0.0987792015075684,0.105535507202148,-0.391106367111206,-0.097437858581543,0.126395225524902,-0.397840738296509,-0.0948715209960938,0.14006519317627,-0.399168729782104,-0.0932242870330811,0.147470474243164,-0.401337265968323,-0.0946109294891357,0.154884338378906,-0.402175307273865,-0.129133701324463,0.148004531860352,-0.386676430702209,-0.110683917999268,0.161316871643066,-0.407948613166809,-0.168004035949707,0.121953010559082,-0.380664467811584,-0.119219303131104,0.151898384094238,-0.405285120010376,-0.184741973876953,0.0983953475952148,-0.359154343605042,-0.120761156082153,0.137531280517578,-0.26103413105011,-0.105634450912476,0.0963048934936523,-0.228835701942444,-0.109898328781128,0.0317592620849609,-0.322648525238037,-0.109892606735229,0.0490169525146484,-0.370006322860718,-0.102593898773193,0.143875122070313,-0.388715982437134,-0.101730823516846,0.159772872924805,-0.394284009933472,-0.108402013778687,0.14993953704834,-0.392961382865906,-0.112643480300903,0.140595436096191,-0.379192233085632,-0.115386962890625,0.122035026550293,-0.363033175468445, --0.114561319351196,0.100614547729492,-0.347499132156372,-0.111379146575928,0.0786266326904297,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,-0.000971317291259766,-0.000742673873901367,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,-3.39746475219727e-05,3.69548797607422e-06,0,0,2.50935554504395e-05,0,2.19345092773438e-05,5.07831573486328e-05,7.91549682617188e-05,-0.000480413436889648,-0.000362753868103027,0,-0.00934112071990967,3.46899032592773e-05,0,-0.005656898021698,5.07831573486328e-05,-4.76837158203125e-06,-0.116955995559692,-0.0535984039306641,0,-0.242914199829102,-0.109869956970215,0,-0.269181847572327,-0.109873294830322,0.0001678466796875,-0.194959282875061,-0.088322639465332,0,-0.230321764945984,-0.0951414108276367,0,-0.143458604812622,-0.0750906467437744,0,-0.186455607414246,-0.0856516361236572,0,-0.117884874343872,-0.0608534812927246,0,-0.164532423019409,-0.078575611114502,0,-0.12868332862854,-0.0650873184204102,0,-0.183332443237305,-0.0820250511169434,0,-0.267624139785767,-0.102914810180664,0,-0.221172213554382,-0.0929927825927734,0,-0.299065828323364,-0.109885931015015,0,-0.300350904464722,-0.109879493713379,0.00207138061523438,-0.276907324790955,-0.104875087738037,0,-0.225546002388,-0.0938928127288818,4.76837158203125e-06,-0.240921497344971,-0.0971758365631104,0,-0.300271391868591,-0.109892606735229,0.00154018402099609,-0.0318434834480286,5.07831573486328e-05,0,-0.0212369561195374,4.10079956054688e-05,-1.9073486328125e-06,-0.142931222915649,-0.0597062110900879,0.000472068786621094,-0.241134524345398,-0.0919435024261475,0,-0.282168626785278,-0.106069326400757,0,-0.237521052360535,-0.1098952293396,0,-0.191486716270447,-0.0873744487762451,0,-0.0262422561645508,-0.0205914974212646,0,-0.000429868698120117,-0.000299930572509766,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,-0.0223536491394043,-0.00847315788269043,0,-0.0165555477142334,-0.0115768909454346,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05, -0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,-0.000532627105712891,3.24249267578125e-05,0.000316619873046875,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,-0.00339174270629883,3.24249267578125e-05,0.00201225280761719,0,3.24249267578125e-05,0,-0.00371193885803223,-0.000484466552734375,0.00239372253417969,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0.000448465347290039,-0.00153827667236328,0.000314712524414063,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0, -0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,-6.67572021484375e-06,5.00679016113281e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,7.71880149841309e-05,-4.76837158203125e-06,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05, -0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05,0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05, -0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05,0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05, -0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0, -3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05,0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05, --1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, -0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05,1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05, -0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0, -3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06, -0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,-0.102122843265533,-0.0225331783294678,0.0192775726318359,-0.140435934066772,-0.0270946025848389,0.0193557739257813,-0.191608786582947,-0.0359129905700684,0.0232858657836914,-0.201152563095093,-0.0447936058044434,0.0194540023803711,-0.198593139648438,-0.0506198406219482,0.020808219909668,-0.195026516914368,-0.0592358112335205,0.0220518112182617,-0.077473521232605,-0.0241842269897461,0.015690803527832,-0.0780785083770752,-0.0232782363891602,0.0216760635375977,-0.0969939529895782,-0.0213191509246826,0.0210294723510742,-0.0942258238792419,-0.0225341320037842,0.0166387557983398,-0.0756353437900543,-0.0321328639984131,0.0140314102172852,-0.107779502868652,-0.0503973960876465,0.00316238403320313,-0.155850350856781,-0.0689494609832764,-0.00112056732177734,-0.16978520154953,-0.0741724967956543,8.7738037109375e-05,-0.182607710361481,-0.0724234580993652,0.0142335891723633,-0.115109443664551,-0.0334539413452148,0.00840377807617188,-0.141991853713989,-0.0398645401000977,0.00139427185058594,-0.154686689376831,-0.0474023818969727,0.00103759765625,-0.169149279594421,-0.0563309192657471,0.00588607788085938,-0.089902937412262,-0.0286011695861816,0.0168647766113281,0,3.48091125488281e-05,0.000247001647949219,-0.0972678661346436,3.19480895996094e-05,0.0763864517211914,-0.120185852050781,3.19480895996094e-05,0.0972585678100586,-0.0839642286300659,3.19480895996094e-05,0.0536823272705078,-0.147774696350098,3.19480895996094e-05,0.117600440979004, --0.0321134328842163,3.48091125488281e-05,0.0190248489379883,-0.000228285789489746,2.47955322265625e-05,0.000165939331054688,0,3.48091125488281e-05,8.10623168945313e-05,-0.11046290397644,3.19480895996094e-05,0.0866737365722656,-0.0954086780548096,3.19480895996094e-05,0.0776729583740234,-0.103832721710205,3.19480895996094e-05,0.0840530395507813,-0.0876989364624023,3.19480895996094e-05,0.0708608627319336,-0.0873029232025146,3.19480895996094e-05,0.0700759887695313,-0.0362176895141602,3.19480895996094e-05,0.0251531600952148,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.77922397851944,-0.00855302810668945,-0.00636672973632813,-0.804126918315887,-0.0107517242431641,0.100368499755859,-0.809262990951538,-0.0174899101257324,0.200159072875977,-0.7653568983078,-0.0249433517456055,0.330713272094727,-0.823643326759338,-0.0265092849731445,0.425600051879883,-0.736680507659912,-0.018979549407959,0.486465454101563,-0.431824922561646,-0.0066370964050293,0.332218170166016,-0.309072971343994,-0.000495433807373047,0.248791694641113,-0.255867719650269,-7.62939453125e-05,0.211062431335449,-0.213486194610596,3.19480895996094e-05,0.178072929382324,-0.213356971740723,0.000121116638183594,0.176834106445313,-0.173892259597778,0.000461101531982422,0.141868591308594,-0.155902147293091,0.00272226333618164,0.119935035705566,-0.141342163085938,0.00382900238037109,0.092686653137207,2.38418579101563e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,5.96046447753906e-08,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,-0.032218337059021,3.48091125488281e-05,0.0200433731079102,-0.0701935291290283,5.05447387695313e-05,0.0398502349853516,-0.187162041664124,3.48091125488281e-05,0.0746688842773438,-0.214310526847839,3.48091125488281e-05,0.11689567565918,-0.290314316749573,3.14712524414063e-05,0.199376106262207,-0.327985644340515,3.19480895996094e-05,0.24017333984375,-0.242669820785522,3.19480895996094e-05,0.189798355102539, --0.224806308746338,3.19480895996094e-05,0.182602882385254,-0.162831783294678,3.19480895996094e-05,0.13026237487793,-0.144384860992432,3.19480895996094e-05,0.117368698120117,-0.147778272628784,3.19480895996094e-05,0.120732307434082,-0.121878623962402,3.19480895996094e-05,0.0992889404296875,-0.0982356071472168,3.19480895996094e-05,0.0770635604858398,-0.0702652931213379,3.19480895996094e-05,0.0513620376586914,-3.57627868652344e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-2.98023223876953e-07,3.48091125488281e-05,0,2.68220901489258e-07,3.48091125488281e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,2.24113464355469e-05,0,0,3.83853912353516e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0,0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05, -1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07, -0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 - } - Normals: *24081 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, -0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, --0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, --1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, -0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, -0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, --0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, -3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, --0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, --0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, --0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, --0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, -0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, --0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, --0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, -0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, -0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, -0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, -0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, --0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, -0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, -0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, -0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, -0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, -0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, -0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, --1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, -1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, -0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, --1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, --0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, --0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, --0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, --0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, -0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, --1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, --0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, --0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, -0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, -1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, -0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, -0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, --0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, -0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, -1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, -0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, -1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, --1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, -1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,0.998518122150927,0.916681956499815,0.521828444674611,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048, -0.40275951102376,0.97666217417229,1.17430025339127,0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.22979035958042,0.949295956641436,0.953685918822885,0.265242695808411,0.957664247602224,0.970916826277971,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488, -0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893,-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438, -4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072,0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935, --0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675,0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241, -0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155,0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.3687296807766,-0.189652357250452,-0.858098965138197,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482, -0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933,0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566, -1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192,0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332, -1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056, -1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765, -0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471, --0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084, -0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024, -0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505, --3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755, -0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245, -0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744, -0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147, --0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482, -0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842, -0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,0.199070394039154,0.131208285689354,1.71188509464264,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712, -1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667, -0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113, -1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.572749421000481,0.897463396191597,0.677460659295321,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.69771420955658,0.770994648337364,0.791048258543015,0.726730242371559,0.828447245061398, -0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734, -0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817, -1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851, --0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666, -1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658, -1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513, -0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655, --0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082, -0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174, -0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194, --0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863, -0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168, --0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449, --0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709, --1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565, --0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068, --1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525, --1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391, --0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196, --1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234, -0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741, --0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833, -0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957, --0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494, --1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004, -0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274, --0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485, --0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635, --1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808, -0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004, -0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465, -0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359, -0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447, -0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261, -0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408, --1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974, --0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494, --0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244, --1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634, --0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435, -0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128, --0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798, -0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115, --1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309, --1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209, --0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882, --0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078, --0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234, -0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693, -0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163, --1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794, --0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496, --0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379, -0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502, --0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008, --0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736, -0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917, --0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686, --0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456, --1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517, --1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523, --1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514, -0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757, -0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275, -1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489, --0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167, -0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694, -0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405, --0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594, --1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953, --0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495, -0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725, --0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296, --0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733, --0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419, -0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788, -1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809, -0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506, --0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196, --0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563, --0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695, -0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011, --0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998, --0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845, --0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749, --0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722, --0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752,-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355, --1.46571457386017,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688, -0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461, -0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207, --0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159, -0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343, -0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992, -1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575, --0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801, -0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884, --0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337, -1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772, --0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807, -0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619, --0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981, -0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913, --0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494, --0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661, -1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461, -1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229, --0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291, -0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26852324604988,-0.635325476527214, --0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772, --0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115, --0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798, -0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841, --0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871, -0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753, -0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211, --1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955, -0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215, --1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347, -0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099, --0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.15600806474686,-0.679048359394073,-0.674144491553307, --1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971, --1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545, -0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776, --0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396, --1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134, --0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663, --1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515, --0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644, -0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733, -0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308, -0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158, --0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705, -0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507, --0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476, -0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615, --0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171, --1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846, --0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983, --0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029, -0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057, -1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485, --0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177,-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807563818496, "Geometry::Mouth_Lower_Left", "Shape" { - Version: 100 - Indexes: *2469 { - a: 5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6144,6145,6146,6148,6151,6152,6154,6156,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334, -6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869, -6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279, -7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7519,7521,7523,7525,7526,7527,7528,7530,7533,7534,7536,7538,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739, -7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274, -8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684, -8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 - } - Vertices: *7407 { - a: 0,4.9591064453125e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,1.27675056464795,0.0413122177124023,-0.0645132064819336,1.16320300104417,0.0399665832519531,-0.142570495605469,0,4.9591064453125e-05,0,1.27226328848337,0.0412483215332031,-0.0373516082763672,0,4.9591064453125e-05,0,1.219265937827,0.0406303405761719,-0.0804147720336914,0,4.9591064453125e-05,0,0.398767769313054,0.000980377197265625,-0.0432891845703125,0,4.9591064453125e-05,0,0.824047028916539,0.0272226333618164,0.0103206634521484,0,4.9591064453125e-05,0,0.268665730953217,0.122298240661621,0.0223369598388672,0,6.81877136230469e-05,0,0,4.07695770263672e-05,0,0,6.78598880767822e-05,0,0,3.12924385070801e-05,0,0,5.42402267456055e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.140026524662971,0.124683380126953,-0.182172775268555,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,4.02927398681641e-05,0,0,4.49419021606445e-05,0,0,6.31809234619141e-05,0,0,4.69684600830078e-05,0,0,5.87701797485352e-05,0,0.0107803102582693,0.0703191757202148,-0.142992973327637,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,6.00814819335938e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,5.95450401306152e-05,0,0,6.43730163574219e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0995450019836426,-0.000111579895019531,0.0767946243286133,0.0999133586883545,-0.000116348266601563,0.0783901214599609,0.0860245227813721,-0.00116968154907227,0.0627164840698242,0.0861721038818359,-0.0011143684387207,0.0611076354980469,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.130982875823975,-6.19888305664063e-06,0.103739738464355,0.130954027175903,-4.76837158203125e-06,0.101273536682129,0.324752330780029,5.7220458984375e-05,0.259659767150879,0.325700759887695,4.57763671875e-05,0.253317832946777,0.324593782424927,0.000173568725585938,0.258079528808594,0.326769590377808,0.000184535980224609,0.25297737121582,0.398576259613037,0.000951766967773438,0.313431739807129,0.398652076721191,0.000977993011474609,0.30765438079834,0.582014799118042,0.00918912887573242,0.41768741607666,0.587260007858276,0.00879383087158203,0.445124626159668,0.833602666854858,0.0217761993408203,0.506560325622559,0.850619554519653,0.0204572677612305,0.562145233154297,1.16351747512817,0.0385079383850098,0.66041088104248,1.18005168437958,0.041710376739502,0.609430313110352,1.18949866294861,0.0509552955627441,0.537966728210449,1.15998101234436,0.0616559982299805,0.46901798248291,1.33126091957092,0.0551390647888184,0.349763870239258,1.25182485580444,0.0613255500793457,0.302909851074219,1.3816944360733,0.052217960357666,0.200172424316406,1.25871384143829,0.0565094947814941,0.16761589050293,1.33770489692688,0.0463752746582031,0.0549812316894531, -1.21342206001282,0.0471053123474121,-0.00367069244384766,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.085580587387085,-0.00114536285400391,0.0617027282714844,0.0997538566589355,-0.000115871429443359,0.0775241851806641,0.131064653396606,-4.76837158203125e-06,0.102419853210449,0.325293064117432,4.57763671875e-05,0.256248474121094,0.325707674026489,0.000169277191162109,0.255351066589355,0.398464679718018,0.000969409942626953,0.310256958007813,0.588382244110107,0.00899839401245117,0.429603576660156,0.856380224227905,0.0209393501281738,0.546449661254883,1.19825768470764,0.0398087501525879,0.645291328430176,1.20748090744019,0.0545463562011719,0.500950813293457,1.32953596115112,0.0589127540588379,0.324268341064453,1.3626766204834,0.0540976524353027,0.229059219360352,1.32308769226074,0.0466217994689941,0.0923271179199219,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0857086181640625,-0.00112342834472656,0.0612173080444336,0.0996065139770508,-0.000113010406494141,0.0770254135131836,0.131007194519043,-9.05990600585938e-06,0.101668357849121,0.325538873672485,4.57763671875e-05,0.254343032836914,0.326403141021729,0.000187397003173828,0.253816604614258,0.398602247238159,0.000975131988525391,0.308562278747559,0.592257499694824,0.00911521911621094,0.423938751220703,0.848552346229553,0.0214576721191406,0.520729064941406,1.19336068630219,0.041048526763916,0.62343692779541,1.18862676620483,0.0567841529846191,0.478273391723633,1.2949994802475,0.060575008392334,0.320125579833984,1.3117378950119,0.0558371543884277,0.21734619140625,1.26964569091797,0.0471305847167969,0.0571804046630859,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0722827911376953,-0.000379562377929688,0.0543537139892578,0.0975329875946045,-1.57356262207031e-05,0.0820016860961914, -0.127581357955933,2.57492065429688e-05,0.112270355224609,0.316769599914551,4.57763671875e-05,0.280535697937012,0.3157799243927,8.44001770019531e-05,0.277065277099609,0.378435134887695,0.000336647033691406,0.324540138244629,0.466217994689941,0.00272130966186523,0.387022972106934,0.534204959869385,0.00619077682495117,0.395930290222168,0.417741179466248,-0.00707674026489258,-0.00117588043212891,0.434364050626755,-0.000550746917724609,0.0626649856567383,0.462161123752594,0.0153346061706543,0.147782325744629,0.489729762077332,0.0134005546569824,0.257467269897461,0.620650172233582,0.0112357139587402,0.370214462280273,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0807607173919678,-0.000769615173339844,0.0584449768066406,0.0994241237640381,-6.34193420410156e-05,0.0786218643188477,0.130537271499634,1.04904174804688e-05,0.105287551879883,0.323413610458374,4.57763671875e-05,0.265007019042969,0.322205543518066,0.000130176544189453,0.263875961303711,0.392252683639526,0.000641345977783203,0.315938949584961,0.556198358535767,0.00570297241210938,0.437200546264648,0.739838480949402,0.0132083892822266,0.502562522888184,0.947428941726685,0.0250177383422852,0.562769889831543,0.864683449268341,0.0331206321716309,0.423648834228516,0.888651371002197,0.0360569953918457,0.254423141479492,0.892789483070374,0.0343384742736816,0.107573509216309,0.86562305688858,0.0304360389709473,0.0556659698486328,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0307435989379883,4.57763671875e-05,0.0209827423095703,0.0554227828979492,4.33921813964844e-05,0.0407466888427734,0.340609312057495,4.57763671875e-05,0.295917510986328,0.302258491516113,4.57763671875e-05,0.286791801452637,0.182676315307617,4.57763671875e-05,0.133762359619141,0.169522762298584,3.4332275390625e-05,0.12065601348877,0.0795543193817139,4.57763671875e-05,0.0599660873413086,0.290952086448669,0.105450630187988, -0.0599746704101563,0.322829782962799,0.0482006072998047,0.153926849365234,0.187987804412842,0.0225543975830078,0.1278076171875,0.21029007434845,0.0669927597045898,0.113323211669922,0.345803499221802,0.163242340087891,0.268852233886719,0.37753438949585,4.57763671875e-05,0.28925895690918,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05, -0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00606608390808105,4.57763671875e-05,0.00359916687011719,0.0112559795379639,4.57763671875e-05,0.00667762756347656,0.00989580154418945,4.24385070800781e-05,0.00587081909179688,0.0197978019714355,4.57763671875e-05,0.0124273300170898,0.059929370880127,4.57763671875e-05,0.0355510711669922,0.0632195472717285,4.57763671875e-05,0.0387163162231445,0.0708670616149902,4.57763671875e-05,0.0451507568359375,0.175060987472534,4.57763671875e-05,0.195073127746582,0.218379974365234,-0.000601768493652344,0.183271408081055,0.150002717971802,0.0490407943725586,0.117069244384766,0.107816696166992,0.0602731704711914,-0.0419492721557617,0.0637694597244263,0.0518913269042969,-0.071258544921875,0.144341826438904,0.0628318786621094,-0.0906219482421875,0.15870076417923,0.0776147842407227,-0.14581298828125,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,-0.000926733016967773,-0.00148725509643555,-8.392333984375e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000644087791442871,-0.000343084335327148,-3.814697265625e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, -0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000365495681762695,3.62396240234375e-05,-1.62124633789063e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,5.65052032470703e-05,0,-0.00272870063781738,-0.00544142723083496,-0.000269889831542969,-0.00305509567260742,-0.00611639022827148,-0.000284194946289063,-0.00193691253662109,-0.0051581859588623,-0.00018310546875,-0.000319719314575195,-0.00332498550415039,-5.340576171875e-05,0.000667214393615723,-0.00159335136413574,2.47955322265625e-05,0.000542759895324707,-0.00036168098449707,2.57492065429688e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.4332275390625e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05,0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05, -0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,5.29289245605469e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0.00114083290100098,4.57763671875e-05,0.000678062438964844,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.011305570602417,4.57763671875e-05,0.00670719146728516,0,4.57763671875e-05,1.9073486328125e-06,0.0212113857269287,-0.00290679931640625,0.0136737823486328,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.000640630722045898,-0.00219821929931641,0.00045013427734375,0.00117087364196777,-0.0427980422973633,-0.0575265884399414,0.00343072414398193,0.0161342620849609,-0.0968351364135742,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.0195425152778625,0.0199184417724609,-0.0706014633178711,0.0161951780319214,0.00913238525390625,-0.0500688552856445,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.0291272699832916,0.0339164733886719,-0.0910749435424805,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05,0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05,0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.39882278442383e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.11407852172852e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0, -0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05, --1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0, -4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05, -2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06, -0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-1.96695327758789e-06,-0.000391721725463867,-1.43051147460938e-05,-9.77516174316406e-05,-0.00304818153381348,-0.000110626220703125,-0.00101387500762939,-0.00720953941345215,-0.000286102294921875,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-3.21865081787109e-06,-0.00113964080810547,-4.00543212890625e-05,-5.60283660888672e-06,-0.00394773483276367,-0.000139236450195313,-0.000206887722015381,-0.00787067413330078,-0.00028228759765625,-0.00138866901397705,-0.0128016471862793,-0.000490188598632813,0,-6.12735748291016e-05,-1.9073486328125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.017369270324707,4.57763671875e-05,0.013641357421875,0.0367915630340576,4.57763671875e-05,0.0297737121582031,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0526015758514404,4.57763671875e-05,0.0412731170654297,0.136298179626465,4.57763671875e-05,0.1109619140625,0.148332357406616,4.57763671875e-05,0.120075225830078,0.187926292419434,4.57763671875e-05,0.151844024658203,0.291009664535522,4.57763671875e-05,0.233586311340332,0.206958293914795,4.57763671875e-05,0.143731117248535,0.168437242507935,4.57763671875e-05,0.0970783233642578,0.115802884101868,4.9591064453125e-05,0.0722675323486328,0.0915870070457458,4.9591064453125e-05,0.0478658676147461,0.0352809429168701,4.9591064453125e-05,0.0182924270629883,0.00406369566917419, -4.9591064453125e-05,0.00210762023925781,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0771114826202393,-0.00114536285400391,0.0593252182006836,0.0946142673492432,-0.000115394592285156,0.0761613845825195,0.1218421459198,-5.24520874023438e-06,0.100505828857422,0.304980754852295,4.57763671875e-05,0.254389762878418,0.304795265197754,0.000173091888427734,0.252619743347168,0.372626304626465,0.000965595245361328,0.30400276184082,0.51967191696167,0.00901460647583008,0.399782180786133,0.807669162750244,0.0217432975769043,0.529636383056641,1.15381026268005,0.0420465469360352,0.59061336517334,1.08818674087524,0.057915210723877,0.476544380187988,1.18024528026581,0.0611381530761719,0.293766021728516,1.19687902927399,0.0561661720275879,0.153227806091309,1.15293216705322,0.0465631484985352,-0.0137386322021484,1.10584187509812,0.0393071174621582,-0.14647388458252,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0433340072631836,4.57763671875e-05,0.0338935852050781,0.0688185691833496,4.57763671875e-05,0.0558996200561523,0.0775392055511475,4.57763671875e-05,0.0620298385620117,0.206264972686768,4.57763671875e-05,0.167669296264648,0.211111307144165,4.57763671875e-05,0.17247486114502,0.261170387268066,4.57763671875e-05,0.212761878967285,0.32745099067688,4.57763671875e-05,0.256878852844238,0.401511788368225,4.57763671875e-05,0.293492317199707,0.507161974906921,2.62260437011719e-05,0.314969062805176,0.397182404994965,4.9591064453125e-05,0.192567825317383,0.382010042667389,4.9591064453125e-05,0.115025520324707,0.137231200933456,4.9591064453125e-05,0.0726718902587891,0.0614893436431885,2.6702880859375e-05,0.0346031188964844,0.0143055645967252,4.9591064453125e-05,0.00935268402099609,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,2.288818359375e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0237081050872803,-0.000133991241455078,-0.0504207611083984,0.026033878326416,0.000258445739746094,-0.055206298828125,0.0438981056213379,-0.00110530853271484,-0.083491325378418,0.0439610481262207,-0.00322771072387695,-0.0754480361938477,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.209179162979126,0.00344562530517578,-0.466486930847168,0.199255704879761,0.000177860260009766,-0.436874389648438,0.194235324859619,0.00388717651367188,-0.457242965698242, -0.199488162994385,0.00119972229003906,-0.448207855224609,0.183046340942383,0.00240850448608398,-0.441157341003418,0.195775270462036,0.00662660598754883,-0.433914184570313,0.209669828414917,0.000276565551757813,-0.486897468566895,0.230850219726563,0.00688409805297852,-0.495140075683594,0.304943323135376,-0.00571918487548828,-0.486323356628418,0.232898235321045,-0.00201416015625,-0.470913887023926,0.410125017166138,0.00696897506713867,-0.505133628845215,0.347640037536621,0.0182499885559082,-0.459443092346191,0.567117929458618,0.0388288497924805,-0.513298034667969,0.565139889717102,0.0364694595336914,-0.505244255065918,0.80171012878418,0.0487813949584961,-0.520891189575195,0.800869226455688,0.0436215400695801,-0.470650672912598,1.0136022567749,0.0481581687927246,-0.434863090515137,0.992466449737549,0.0423970222473145,-0.428083419799805,1.14706563949585,0.0438179969787598,-0.333576202392578,1.06126832962036,0.0382218360900879,-0.354747772216797,1.22421514987946,0.0404014587402344,-0.189285278320313,1.11890956759453,0.0371947288513184,-0.244532585144043,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0460555553436279,-0.00269508361816406,-0.0827474594116211,0.0253453254699707,9.05990600585938e-05,-0.0542888641357422,0.20759129524231,0.00195121765136719,-0.461504936218262,0.200362682342529,0.00267171859741211,-0.461992263793945,0.192740201950073,0.00152063369750977,-0.44602108001709,0.223670721054077,-1.9073486328125e-05,-0.499362945556641,0.274475574493408,-0.00381660461425781,-0.481388092041016,0.383922815322876,0.0181665420532227,-0.471580505371094,0.617798566818237,0.0379781723022461,-0.562504768371582,0.826755523681641,0.0464897155761719,-0.483047485351563,1.02012157440186,0.0453858375549316,-0.403177261352539,1.1367609500885,0.041989803314209,-0.291484832763672,1.2122520506382,0.0398697853088379,-0.153960227966309,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, -0,0,4.9591064453125e-05,0,0.0440332889556885,-0.00301742553710938,-0.0769205093383789,0.0243947505950928,-4.62532043457031e-05,-0.052128791809082,0.202900886535645,0.000838756561279297,-0.447793960571289,0.20039176940918,0.00176286697387695,-0.455070495605469,0.195316791534424,0.00708150863647461,-0.439980506896973,0.228870153427124,0.00714874267578125,-0.498174667358398,0.305404424667358,0.00186586380004883,-0.487123489379883,0.408416032791138,0.00979042053222656,-0.52496337890625,0.602838277816772,0.0370664596557617,-0.578190803527832,0.821746826171875,0.0447449684143066,-0.46190357208252,1.02366185188293,0.0436148643493652,-0.39854907989502,1.10159635543823,0.039700984954834,-0.312348365783691,1.16751372814178,0.0383415222167969,-0.189427375793457,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0329561233520508,-0.00126838684082031,-0.0770187377929688,0.0178177356719971,0.000711441040039063,-0.042724609375,0.101300239562988,0.00826358795166016,-0.339463233947754,0.0822772979736328,0.00800848007202148,-0.343308448791504,0.0858478546142578,0.00670814514160156,-0.331518173217773,0.0878691673278809,0.00438547134399414,-0.336105346679688,0.136249303817749,0.006744384765625,-0.329708099365234,0.118672609329224,0.0160059928894043,-0.250938415527344,0.383847296237946,0.00365972518920898,-0.0582962036132813,0.358230471611023,0.00663995742797852,-0.120144844055176,0.319499254226685,0.00565719604492188,-0.162991523742676,0.243722558021545,0.0149374008178711,-0.188346862792969,0.202286958694458,0.0161342620849609,-0.261253356933594,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0427894592285156,-0.00199079513549805,-0.0824222564697266,0.02524733543396,0.000360488891601563,-0.0528402328491211,0.197227001190186,0.0046544075012207,-0.442905426025391,0.167774438858032,0.00473642349243164,-0.413106918334961,0.148416519165039,0.0034785270690918, --0.405518531799316,0.165864944458008,0.000567436218261719,-0.436121940612793,0.182701826095581,-0.00240182876586914,-0.444380760192871,0.248622179031372,0.0136852264404297,-0.353813171386719,0.365522146224976,0.0262999534606934,-0.409682273864746,0.511186003684998,0.0328006744384766,-0.341083526611328,0.651204943656921,0.0321660041809082,-0.311899185180664,0.741390407085419,0.0290970802307129,-0.196427345275879,0.792137801647186,0.0268654823303223,-0.0943164825439453,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0315001010894775,4.57763671875e-05,-0.00127029418945313,0.0146069526672363,4.57763671875e-05,-0.0167045593261719,0.0961923599243164,0.0385913848876953,-0.121387481689453,0.0194237232208252,0.00292253494262695,-0.124423980712891,-0.00406789779663086,0.00166702270507813,-0.0820159912109375,-0.0112900733947754,0.0023193359375,-0.0759544372558594,0.0290379524230957,0.00258350372314453,-0.157754898071289,0.241905629634857,0.10344123840332,-0.00790691375732422,0.182855546474457,0.04217529296875,0.0330257415771484,0.235190033912659,0.0758724212646484,-0.0250358581542969,0.230345726013184,0.133208274841309,-0.0967388153076172,0.196059226989746,0.124443054199219,-0.0937747955322266,0.124248266220093,0.0529670715332031,-0.117525100708008,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00103378295898438,-0.00187444686889648,8.58306884765625e-05,0,4.9591064453125e-05,0,-0.0031275749206543,0.000556230545043945,-0.000153541564941406,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0.00190234184265137,-0.00217366218566895,0.000123023986816406,0.0010840892791748,-0.00107693672180176,6.67572021484375e-05,0.00384688377380371,4.57763671875e-05,0,0.000600814819335938,4.43458557128906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000285625457763672,4.57763671875e-05,0.000201225280761719,-0.0242385864257813,0.00344038009643555,-0.0375699996948242,0.0809657573699951,0.0402402877807617,-0.063267707824707,0.122883081436157,0.0390377044677734,-0.0621671676635742,0.173804521560669,0.0593433380126953,-0.0852117538452148,0.18219780921936,0.0651445388793945,-0.125412940979004,0.151659607887268,0.0670242309570313,-0.133914947509766,0.120817065238953,0.0562601089477539,-0.164339065551758,0.119302004575729, -0.080561637878418,-0.197463035583496,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,0.00949263572692871,-0.00575876235961914,-9.5367431640625e-06,0.00077211856842041,-0.000208377838134766,-7.62939453125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00562560558319092,-0.00316333770751953,-8.58306884765625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00296485424041748,-0.00134897232055664,-1.33514404296875e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0.000146865844726563,9.05990600585938e-06,0,0,5.65052032470703e-05,0,0.0252008438110352,-0.012009859085083,-0.000249862670898438,0.0277515649795532,-0.0111331939697266,-0.000570297241210938,0.0214325189590454,-0.00760626792907715,-0.00087738037109375,0.00955390930175781,-0.00347471237182617,-0.00100326538085938,-0.000794768333435059,-0.000644922256469727,-0.000908851623535156,-0.00619149208068848,0.00084376335144043,-0.000573158264160156, -0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00289821624755859,-0.00311136245727539,0.000180244445800781,0.000104665756225586,-0.000274419784545898,1.23977661132813e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05,0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05,0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,1.50203704833984e-05,3.00407409667969e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,5.7220458984375e-05,0,0,6.38961791992188e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.0203044414520264,0.00596714019775391,-0.010066032409668,0.00263667106628418,0.000639915466308594,-0.00127696990966797,0.089146614074707,0.0229692459106445,-0.0434141159057617,0.0199530124664307,0.00454235076904297,-0.00967311859130859,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.00776076316833496,0.00438785552978516,-0.00391769409179688,0.110514163970947,0.0556974411010742,-0.0555076599121094,0.0782061815261841,0.0369453430175781,-0.114658355712891,0.000715732574462891,0.000311851501464844,-0.000352859497070313,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.00396722555160522,0.0369396209716797,-0.154996871948242,0.00452947616577148,0.0224714279174805,-0.137593269348145,-2.02655792236328e-06,6.96182250976563e-05,-0.000112533569335938,2.80141830444336e-05,9.34600830078125e-05,-0.000179290771484375,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.00914990901947021,0.0528097152709961,-0.158097267150879,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06, -0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05,0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05, -0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05, -0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, --1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06, -0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06, -0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0, -4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,9.41753387451172e-06,4.79221343994141e-05,0,0.00067216157913208,-0.000592708587646484,7.62939453125e-06,0.00578618049621582,-0.00467133522033691,2.86102294921875e-05,0.014642596244812,-0.0114948749542236,4.67300415039063e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, -0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0027192234992981,-0.000914096832275391,-3.814697265625e-06,0.00544500350952148,-0.00318717956542969,1.33514404296875e-05,0.0113910436630249,-0.00830650329589844,3.814697265625e-05,0.0213048458099365,-0.016322135925293,6.19888305664063e-05,0.00167185068130493,-0.000221490859985352,-7.62939453125e-06,0,4.9591064453125e-05,0,0.00225639343261719,4.57763671875e-05,0.00100135803222656,0.0018007755279541,0.00374794006347656,-0.00725078582763672,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0199854373931885,4.1961669921875e-05,-0.132597923278809,-0.0369260311126709,4.43458557128906e-05,-0.280458450317383,-0.0151350498199463,4.43458557128906e-05,-0.343279838562012,0.0193138122558594,5.10215759277344e-05,-0.287232398986816,0.0883233547210693,-0.000378131866455078,-0.214262962341309,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0378122329711914,-0.00226688385009766,-0.0572452545166016,0.0200674533843994,1.47819519042969e-05,-0.0459175109863281,0.14181661605835,0.00170373916625977,-0.355400085449219,0.126132965087891,0.00260686874389648,-0.344870567321777,0.129740953445435,0.00199508666992188,-0.349286079406738,0.166869878768921,0.000532150268554688,-0.410344123840332,0.244623899459839,0.000669956207275391,-0.387523651123047,0.343910932540894,0.0180392265319824,-0.356136322021484,0.504353523254395,0.0357527732849121,-0.423690795898438,0.743615865707397,0.0425806045532227,-0.483428955078125,0.920379042625427,0.0413627624511719,-0.438457489013672,1.01215833425522,0.0373291969299316,-0.353115081787109,1.06523817777634,0.0364007949829102,-0.249068260192871,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0, -0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0174460411071777,-0.000600814819335938,-0.0167436599731445,0.00991320610046387,-0.000119686126708984,-0.0170927047729492,0.0346016883850098,-0.00106525421142578,-0.0971622467041016,0.0823724269866943,0.0261154174804688,-0.238544464111328,0.0895419120788574,0.0255932807922363,-0.255021095275879,0.0505590438842773,-0.00287485122680664,-0.175063133239746,0.131551265716553,-0.00809049606323242,-0.238802909851074,0.05527663230896,6.00814819335938e-05,-0.0686264038085938,0,2.6702880859375e-05,0.00225639343261719,0,4.9591064453125e-05,0.00278759002685547,0,4.9591064453125e-05,0.000185012817382813,0,4.9591064453125e-05,0.00462722778320313,0,2.6702880859375e-05,0.00151348114013672,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.00946259498596191,-0.00398445129394531,-0.033843994140625,-0.0389766693115234,-0.0430498123168945,-0.0427312850952148,-9.62018966674805e-05,9.05990600585938e-05,-0.000657081604003906,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06, -0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06 - } - Normals: *7407 { - a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453, --1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666, -1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428, -0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255, --0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868, --0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951, -0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347, --0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537, --0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009, -0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843, --0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934, --1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996, -0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176, --0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271, --1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036, -0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026, -0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312, --0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224, -0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802, -0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946, -0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045, --0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956, --0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467, --0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753, -0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581, --0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245, -0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655, --0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321, --0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191, -0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125, -1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235, -0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831, --0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197, --0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332, -0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341, --0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966, -0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269, --0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505, --0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369, -0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306, --1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292, -0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897, --0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076, -0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857, --1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551, --0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122, --1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743, -1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513, --0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366, --1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103, --0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323, --1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971, --0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362, --0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668, --0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626, -0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678, -0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252, --0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199, -0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154, --0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801, --1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905, --0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059, --1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782, -0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062, --0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558, -1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059, -1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 - } - } - Geometry: 2807563819072, "Geometry::Mouth_Lower_Right", "Shape" { - Version: 100 - Indexes: *2469 { - a: 5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6144,6145,6146,6148,6151,6152,6154,6156,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334, -6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869, -6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279, -7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7519,7521,7523,7525,7526,7527,7528,7530,7533,7534,7536,7538,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739, -7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274, -8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684, -8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 - } - Vertices: *7407 { - a: 0,4.9591064453125e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-1.27675056450244,0.0413122177124023,-0.0645132064819336,-1.16320300100051,0.0399665832519531,-0.142570495605469,0,4.9591064453125e-05,0,-1.27226328851248,0.0412483215332031,-0.0373516082763672,0,4.9591064453125e-05,0,-1.21926593778335,0.0406303405761719,-0.0804147720336914,0,4.9591064453125e-05,0,-0.398767769360347,0.000980377197265625,-0.0432891845703125,0,4.9591064453125e-05,0,-0.824047029120266,0.0272226333618164,0.0103206634521484,0,4.9591064453125e-05,0,-0.268665730953217,0.122298240661621,0.0223369598388672,0,6.81877136230469e-05,0,0,4.07695770263672e-05,0,0,6.78598880767822e-05,0,0,3.12924385070801e-05,0,0,5.42402267456055e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.140026524662971,0.124683380126953,-0.182172775268555,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,4.02927398681641e-05,0,0,4.49419021606445e-05,0,0,6.31809234619141e-05,0,0,4.69684600830078e-05,0,0,5.87701797485352e-05,0,-0.0107803102582693,0.0703191757202148,-0.142992973327637,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,6.00814819335938e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,5.95450401306152e-05,0,0,6.43730163574219e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0237076282501221,-0.000133991241455078,-0.0504207611083984,-0.0260331630706787,0.000258445739746094,-0.055206298828125,-0.0438990592956543,-0.00110530853271484,-0.083491325378418,-0.0439605712890625,-0.00322771072387695,-0.0754480361938477,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.209179162979126,0.00344562530517578,-0.466486930847168,-0.199256181716919,0.000177860260009766,-0.436874389648438,-0.194233894348145,0.00388717651367188,-0.457242965698242,-0.199488162994385,0.00119972229003906,-0.448207855224609,-0.183044910430908,0.00240850448608398,-0.441157341003418,-0.195775508880615,0.00662660598754883,-0.433914184570313,-0.209670066833496,0.000276565551757813,-0.486897468566895,-0.2308509349823,0.00688409805297852,-0.495140075683594,-0.304943799972534,-0.00571918487548828,-0.486323356628418,-0.232898950576782,-0.00201416015625,-0.470913887023926,-0.410125255584717,0.00696897506713867,-0.505133628845215,-0.347639560699463,0.0182499885559082,-0.459443092346191,-0.567118167877197,0.0388288497924805,-0.513298034667969,-0.565140247344971,0.0364694595336914,-0.505244255065918,-0.801709890365601,0.0487813949584961,-0.520891189575195,-0.800868630409241,0.0436215400695801,-0.470650672912598,-1.01360249519348,0.0481581687927246,-0.434863090515137,-0.992466568946838,0.0423970222473145,-0.428083419799805,-1.14706563949585,0.0438179969787598,-0.333576202392578,-1.06126832962036,0.0382218360900879, --0.354747772216797,-1.22421497106552,0.0404014587402344,-0.189285278320313,-1.11890989542007,0.0371947288513184,-0.244532585144043,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0460553169250488,-0.00269508361816406,-0.0827474594116211,-0.0253455638885498,9.05990600585938e-05,-0.0542888641357422,-0.20759105682373,0.00195121765136719,-0.461504936218262,-0.200362682342529,0.00267171859741211,-0.461992263793945,-0.192740201950073,0.00152063369750977,-0.44602108001709,-0.223671436309814,-1.9073486328125e-05,-0.499362945556641,-0.274474620819092,-0.00381660461425781,-0.481388092041016,-0.383924007415771,0.0181665420532227,-0.471580505371094,-0.617798805236816,0.0379781723022461,-0.562504768371582,-0.826755404472351,0.0464897155761719,-0.483047485351563,-1.02012228965759,0.0453858375549316,-0.403177261352539,-1.13676130771637,0.041989803314209,-0.291484832763672,-1.2122523188591,0.0398697853088379,-0.153960227966309,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0440323352813721,-0.00301742553710938,-0.0769205093383789,-0.0243949890136719,-4.62532043457031e-05,-0.052128791809082,-0.202900886535645,0.000838756561279297,-0.447793960571289,-0.200392007827759,0.00176286697387695,-0.455070495605469,-0.195316314697266,0.00708150863647461,-0.439980506896973,-0.228870630264282,0.00714874267578125,-0.498174667358398,-0.305405139923096,0.00186586380004883,-0.487123489379883,-0.408415794372559,0.00979042053222656,-0.52496337890625,-0.602837800979614,0.0370664596557617,-0.578190803527832,-0.821746468544006,0.0447449684143066,-0.46190357208252,-1.02366209030151,0.0436148643493652,-0.39854907989502,-1.10159647464752,0.039700984954834,-0.312348365783691,-1.16751384735107,0.0383415222167969,-0.189427375793457,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, -0,-0.0329561233520508,-0.00126838684082031,-0.0770187377929688,-0.0178177356719971,0.000711441040039063,-0.042724609375,-0.101300239562988,0.00826358795166016,-0.339463233947754,-0.0822772979736328,0.00800848007202148,-0.343308448791504,-0.0858478546142578,0.00670814514160156,-0.331518173217773,-0.0878691673278809,0.00438547134399414,-0.336105346679688,-0.136249303817749,0.006744384765625,-0.329708099365234,-0.118672609329224,0.0160059928894043,-0.250938415527344,-0.383847296237946,0.00365972518920898,-0.0582962036132813,-0.358230471611023,0.00663995742797852,-0.120144844055176,-0.319499254226685,0.00565719604492188,-0.162991523742676,-0.243722558021545,0.0149374008178711,-0.188346862792969,-0.202286958694458,0.0161342620849609,-0.261253356933594,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0427894592285156,-0.00199079513549805,-0.0824222564697266,-0.02524733543396,0.000360488891601563,-0.0528402328491211,-0.197227001190186,0.0046544075012207,-0.442905426025391,-0.167774200439453,0.00473642349243164,-0.413106918334961,-0.148416519165039,0.0034785270690918,-0.405518531799316,-0.165865182876587,0.000567436218261719,-0.436121940612793,-0.182701826095581,-0.00240182876586914,-0.444380760192871,-0.248621940612793,0.0136852264404297,-0.353813171386719,-0.365522146224976,0.0262999534606934,-0.409682273864746,-0.511186003684998,0.0328006744384766,-0.341083526611328,-0.651204824447632,0.0321660041809082,-0.311899185180664,-0.741390466690063,0.0290970802307129,-0.196427345275879,-0.792137801647186,0.0268654823303223,-0.0943164825439453,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0315001010894775,4.57763671875e-05,-0.00127029418945313,-0.0146069526672363,4.57763671875e-05,-0.0167045593261719,-0.0961923599243164,0.0385913848876953,-0.121387481689453,-0.0194237232208252,0.00292253494262695,-0.124423980712891,0.00406789779663086, -0.00166702270507813,-0.0820159912109375,0.0112900733947754,0.0023193359375,-0.0759544372558594,-0.0290379524230957,0.00258350372314453,-0.157754898071289,-0.241905629634857,0.10344123840332,-0.00790691375732422,-0.182855546474457,0.04217529296875,0.0330257415771484,-0.235190033912659,0.0758724212646484,-0.0250358581542969,-0.230345726013184,0.133208274841309,-0.0967388153076172,-0.196059226989746,0.124443054199219,-0.0937747955322266,-0.124248266220093,0.0529670715332031,-0.117525100708008,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06, -0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00103378295898438,-0.00187444686889648,8.58306884765625e-05,0,4.9591064453125e-05,0,0.0031275749206543,0.000556230545043945,-0.000153541564941406,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,-0.00190234184265137,-0.00217366218566895,0.000123023986816406,-0.0010840892791748,-0.00107693672180176,6.67572021484375e-05,-0.00384688377380371,4.57763671875e-05,0,-0.000600814819335938,4.43458557128906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000285625457763672,4.57763671875e-05,0.000201225280761719,0.0242385864257813,0.00344038009643555,-0.0375699996948242,-0.0809657573699951,0.0402402877807617,-0.063267707824707,-0.122883081436157,0.0390377044677734,-0.0621671676635742,-0.173804521560669,0.0593433380126953,-0.0852117538452148,-0.18219780921936,0.0651445388793945,-0.125412940979004,-0.151659607887268,0.0670242309570313,-0.133914947509766,-0.120817065238953,0.0562601089477539,-0.164339065551758,-0.119302004575729,0.080561637878418,-0.197463035583496,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,-0.00949263572692871,-0.00575876235961914,-9.5367431640625e-06,-0.00077211856842041,-0.000208377838134766,-7.62939453125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, -0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00562560558319092,-0.00316333770751953,-8.58306884765625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00296485424041748,-0.00134897232055664,-1.33514404296875e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,-0.000146865844726563,9.05990600585938e-06,0,0,5.65052032470703e-05,0,-0.0252008438110352,-0.012009859085083,-0.000249862670898438,-0.0277515649795532,-0.0111331939697266,-0.000570297241210938,-0.0214325189590454,-0.00760626792907715,-0.00087738037109375,-0.00955390930175781,-0.00347471237182617,-0.00100326538085938,0.000794768333435059,-0.000644922256469727,-0.000908851623535156,0.00619149208068848,0.00084376335144043,-0.000573158264160156,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00289821624755859,-0.00311136245727539,0.000180244445800781,-0.000104665756225586,-0.000274419784545898,1.23977661132813e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05, -0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05,0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,-1.50203704833984e-05,3.00407409667969e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,5.7220458984375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0203044414520264,0.00596714019775391,-0.010066032409668,-0.00263667106628418,0.000639915466308594,-0.00127696990966797,-0.089146614074707,0.0229692459106445,-0.0434141159057617,-0.0199530124664307,0.00454235076904297,-0.00967311859130859,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, -0,4.57763671875e-05,1.9073486328125e-06,-0.00776076316833496,0.00438785552978516,-0.00391769409179688,-0.110514163970947,0.0556974411010742,-0.0555076599121094,-0.0782061815261841,0.0369453430175781,-0.114658355712891,-0.000715732574462891,0.000311851501464844,-0.000352859497070313,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.00396722555160522,0.0369396209716797,-0.154996871948242,-0.00452947616577148,0.0224714279174805,-0.137593269348145,2.02655792236328e-06,6.96182250976563e-05,-0.000112533569335938,-2.80141830444336e-05,9.34600830078125e-05,-0.000179290771484375,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.00914990901947021,0.0528097152709961,-0.158097267150879,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05, -0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05,0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05,0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05, -0,0,2.71797180175781e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05, -0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0, -0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,-9.41753387451172e-06,4.79221343994141e-05,0,-0.00067216157913208,-0.000592708587646484,7.62939453125e-06,-0.00578618049621582,-0.00467133522033691,2.86102294921875e-05,-0.014642596244812,-0.0114948749542236,4.67300415039063e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0027192234992981,-0.000914096832275391,-3.814697265625e-06,-0.00544500350952148,-0.00318717956542969,1.33514404296875e-05,-0.0113910436630249,-0.00830650329589844,3.814697265625e-05,-0.0213048458099365,-0.016322135925293,6.19888305664063e-05,-0.00167185068130493,-0.000221490859985352,-7.62939453125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00225639343261719,4.57763671875e-05,0.00100135803222656,-0.0018007755279541,0.00374794006347656,-0.00725078582763672,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0199854373931885,4.1961669921875e-05, --0.132597923278809,0.0369260311126709,4.43458557128906e-05,-0.280458450317383,0.0151350498199463,4.43458557128906e-05,-0.343279838562012,-0.0193138122558594,5.10215759277344e-05,-0.287232398986816,-0.0883233547210693,-0.000378131866455078,-0.214262962341309,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0378131866455078,-0.00226688385009766,-0.0572452545166016,-0.0200674533843994,1.47819519042969e-05,-0.0459175109863281,-0.141815900802612,0.00170373916625977,-0.355400085449219,-0.126132726669312,0.00260686874389648,-0.344870567321777,-0.129741191864014,0.00199508666992188,-0.349286079406738,-0.166869878768921,0.000532150268554688,-0.410344123840332,-0.244624376296997,0.000669956207275391,-0.387523651123047,-0.343910932540894,0.0180392265319824,-0.356136322021484,-0.504353284835815,0.0357527732849121,-0.423690795898438,-0.743616104125977,0.0425806045532227,-0.483428955078125,-0.920379042625427,0.0413627624511719,-0.438457489013672,-1.01215827465057,0.0373291969299316,-0.353115081787109,-1.06523823738098,0.0364007949829102,-0.249068260192871,-1.10584187505447,0.0393071174621582,-0.14647388458252,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0174460411071777,-0.000600814819335938,-0.0167436599731445,-0.00991177558898926,-0.000119686126708984,-0.0170927047729492,-0.0346014499664307,-0.00106525421142578,-0.0971622467041016,-0.082371711730957,0.0261154174804688,-0.238544464111328,-0.0895423889160156,0.0255932807922363,-0.255021095275879,-0.0505580902099609,-0.00287485122680664,-0.175063133239746,-0.131551742553711,-0.00809049606323242,-0.238802909851074,-0.0552773475646973,6.00814819335938e-05,-0.0686264038085938,0,2.6702880859375e-05,0.00225639343261719, -0,4.9591064453125e-05,0.00278759002685547,0,4.9591064453125e-05,0.000185012817382813,0,4.9591064453125e-05,0.00462722778320313,0,2.6702880859375e-05,0.00151348114013672,-0.0143055636217468,4.9591064453125e-05,0.00935268402099609,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0.00946259498596191,-0.00398445129394531,-0.033843994140625,0.0389766693115234,-0.0430498123168945,-0.0427312850952148,9.62018966674805e-05,9.05990600585938e-05,-0.000657081604003906,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,2.288818359375e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05, -2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0995445251464844,-0.000111579895019531,0.0767946243286133,-0.0999126434326172,-0.000116348266601563,0.0783901214599609,-0.0860254764556885,-0.00116968154907227,0.0627164840698242, --0.0861716270446777,-0.0011143684387207,0.0611076354980469,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.130982875823975,-6.19888305664063e-06,0.103739738464355,-0.130954504013062,-4.76837158203125e-06,0.101273536682129,-0.324750900268555,5.7220458984375e-05,0.259659767150879,-0.325700759887695,4.57763671875e-05,0.253317832946777,-0.324592351913452,0.000173568725585938,0.258079528808594,-0.326769828796387,0.000184535980224609,0.25297737121582,-0.398576498031616,0.000951766967773438,0.313431739807129,-0.398652791976929,0.000977993011474609,0.30765438079834,-0.5820152759552,0.00918912887573242,0.41768741607666,-0.587260723114014,0.00879383087158203,0.445124626159668,-0.833602905273438,0.0217761993408203,0.506560325622559,-0.850619077682495,0.0204572677612305,0.562145233154297,-1.16351771354675,0.0385079383850098,0.66041088104248,-1.18005204200745,0.041710376739502,0.609430313110352,-1.18949842453003,0.0509552955627441,0.537966728210449,-1.15998041629791,0.0616559982299805,0.46901798248291,-1.3312611579895,0.0551390647888184,0.349763870239258,-1.25182497501373,0.0613255500793457,0.302909851074219,-1.3816944360733,0.052217960357666,0.200172424316406,-1.25871384143829,0.0565094947814941,0.16761589050293,-1.3377046585083,0.0463752746582031,0.0549812316894531,-1.21342232823372,0.0471053123474121,-0.00367069244384766,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0855803489685059,-0.00114536285400391,0.0617027282714844,-0.0997540950775146,-0.000115871429443359,0.0775241851806641,-0.131064414978027,-4.76837158203125e-06,0.102419853210449,-0.325293064117432,4.57763671875e-05,0.256248474121094,-0.325707674026489,0.000169277191162109,0.255351066589355,-0.398465394973755,0.000969409942626953,0.310256958007813,-0.588381290435791,0.00899839401245117, -0.429603576660156,-0.856381416320801,0.0209393501281738,0.546449661254883,-1.19825792312622,0.0398087501525879,0.645291328430176,-1.2074807882309,0.0545463562011719,0.500950813293457,-1.32953667640686,0.0589127540588379,0.324268341064453,-1.36267697811127,0.0540976524353027,0.229059219360352,-1.323087900877,0.0466217994689941,0.0923271179199219,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0857076644897461,-0.00112342834472656,0.0612173080444336,-0.0996067523956299,-0.000113010406494141,0.0770254135131836,-0.131007194519043,-9.05990600585938e-06,0.101668357849121,-0.325539112091064,4.57763671875e-05,0.254343032836914,-0.32640266418457,0.000187397003173828,0.253816604614258,-0.398602724075317,0.000975131988525391,0.308562278747559,-0.592258214950562,0.00911521911621094,0.423938751220703,-0.848552107810974,0.0214576721191406,0.520729064941406,-1.19336020946503,0.041048526763916,0.62343692779541,-1.18862640857697,0.0567841529846191,0.478273391723633,-1.29499971866608,0.060575008392334,0.320125579833984,-1.31173801422119,0.0558371543884277,0.21734619140625,-1.26964581012726,0.0471305847167969,0.0571804046630859,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0722827911376953,-0.000379562377929688,0.0543537139892578,-0.0975329875946045,-1.57356262207031e-05,0.0820016860961914,-0.127581357955933,2.57492065429688e-05,0.112270355224609,-0.316769599914551,4.57763671875e-05,0.280535697937012,-0.3157799243927,8.44001770019531e-05,0.277065277099609,-0.378435134887695,0.000336647033691406,0.324540138244629,-0.466217994689941,0.00272130966186523,0.387022972106934,-0.534204959869385,0.00619077682495117,0.395930290222168,-0.417741179466248,-0.00707674026489258,-0.00117588043212891,-0.434364050626755,-0.000550746917724609,0.0626649856567383,-0.462161123752594,0.0153346061706543,0.147782325744629,-0.489729762077332,0.0134005546569824,0.257467269897461, --0.620650172233582,0.0112357139587402,0.370214462280273,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0807607173919678,-0.000769615173339844,0.0584449768066406,-0.0994241237640381,-6.34193420410156e-05,0.0786218643188477,-0.130537271499634,1.04904174804688e-05,0.105287551879883,-0.323413372039795,4.57763671875e-05,0.265007019042969,-0.322205543518066,0.000130176544189453,0.263875961303711,-0.392252922058105,0.000641345977783203,0.315938949584961,-0.556198358535767,0.00570297241210938,0.437200546264648,-0.739838242530823,0.0132083892822266,0.502562522888184,-0.947428941726685,0.0250177383422852,0.562769889831543,-0.864683449268341,0.0331206321716309,0.423648834228516,-0.888651251792908,0.0360569953918457,0.254423141479492,-0.892789542675018,0.0343384742736816,0.107573509216309,-0.86562305688858,0.0304360389709473,0.0556659698486328,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0307435989379883,4.57763671875e-05,0.0209827423095703,-0.0554227828979492,4.33921813964844e-05,0.0407466888427734,-0.340609312057495,4.57763671875e-05,0.295917510986328,-0.302258491516113,4.57763671875e-05,0.286791801452637,-0.182676315307617,4.57763671875e-05,0.133762359619141,-0.169522762298584,3.4332275390625e-05,0.12065601348877,-0.0795543193817139,4.57763671875e-05,0.0599660873413086,-0.290952086448669,0.105450630187988,0.0599746704101563,-0.322829782962799,0.0482006072998047,0.153926849365234,-0.187987804412842,0.0225543975830078,0.1278076171875,-0.21029007434845,0.0669927597045898,0.113323211669922,-0.345803499221802,0.163242340087891,0.268852233886719,-0.37753438949585,4.57763671875e-05,0.28925895690918,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, -6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00606608390808105,4.57763671875e-05,0.00359916687011719,-0.0112559795379639,4.57763671875e-05,0.00667762756347656,-0.00989580154418945,4.24385070800781e-05,0.00587081909179688,-0.0197978019714355,4.57763671875e-05,0.0124273300170898,-0.059929370880127,4.57763671875e-05,0.0355510711669922,-0.0632195472717285,4.57763671875e-05, -0.0387163162231445,-0.0708670616149902,4.57763671875e-05,0.0451507568359375,-0.175060987472534,4.57763671875e-05,0.195073127746582,-0.218379974365234,-0.000601768493652344,0.183271408081055,-0.150002717971802,0.0490407943725586,0.117069244384766,-0.107816696166992,0.0602731704711914,-0.0419492721557617,-0.0637694597244263,0.0518913269042969,-0.071258544921875,-0.144341826438904,0.0628318786621094,-0.0906219482421875,-0.15870076417923,0.0776147842407227,-0.14581298828125,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,0.000926733016967773,-0.00148725509643555,-8.392333984375e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000644087791442871,-0.000343084335327148,-3.814697265625e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000365495681762695,3.62396240234375e-05,-1.62124633789063e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,5.65052032470703e-05, -0,0.00272870063781738,-0.00544142723083496,-0.000269889831542969,0.00305509567260742,-0.00611639022827148,-0.000284194946289063,0.00193691253662109,-0.0051581859588623,-0.00018310546875,0.000319719314575195,-0.00332498550415039,-5.340576171875e-05,-0.000667214393615723,-0.00159335136413574,2.47955322265625e-05,-0.000542759895324707,-0.00036168098449707,2.57492065429688e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.4332275390625e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05,0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05,0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0, -0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,5.29289245605469e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.00114083290100098,4.57763671875e-05,0.000678062438964844,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.011305570602417,4.57763671875e-05,0.00670719146728516,0,4.57763671875e-05,1.9073486328125e-06,-0.0212113857269287,-0.00290679931640625,0.0136737823486328,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.000640630722045898,-0.00219821929931641,0.00045013427734375,-0.00117087364196777,-0.0427980422973633,-0.0575265884399414,-0.00343072414398193,0.0161342620849609,-0.0968351364135742,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.0195425152778625,0.0199184417724609,-0.0706014633178711,-0.0161951780319214,0.00913238525390625,-0.0500688552856445,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.0291272699832916,0.0339164733886719,-0.0910749435424805,0,4.9591064453125e-05,1.9073486328125e-06, -0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05, -0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05, -0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05,0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.39882278442383e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.11407852172852e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05, -0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05, -0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05, -0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,1.96695327758789e-06,-0.000391721725463867,-1.43051147460938e-05,9.77516174316406e-05, --0.00304818153381348,-0.000110626220703125,0.00101387500762939,-0.00720953941345215,-0.000286102294921875,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,3.21865081787109e-06,-0.00113964080810547,-4.00543212890625e-05,5.60283660888672e-06,-0.00394773483276367,-0.000139236450195313,0.000206887722015381,-0.00787067413330078,-0.00028228759765625,0.00138866901397705,-0.0128016471862793,-0.000490188598632813,0,-6.12735748291016e-05,-1.9073486328125e-06,0,4.9591064453125e-05,0,-0.017369270324707,4.57763671875e-05,0.013641357421875,-0.0367915630340576,4.57763671875e-05,0.0297737121582031,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0526015758514404,4.57763671875e-05,0.0412731170654297,-0.136298179626465,4.57763671875e-05,0.1109619140625,-0.148332357406616,4.57763671875e-05,0.120075225830078,-0.187926292419434,4.57763671875e-05,0.151844024658203,-0.291009664535522,4.57763671875e-05,0.233586311340332,-0.206958293914795,4.57763671875e-05,0.143731117248535,-0.168437242507935,4.57763671875e-05,0.0970783233642578,-0.115802884101868,4.9591064453125e-05,0.0722675323486328,-0.0915870070457458,4.9591064453125e-05,0.0478658676147461,-0.0352809429168701,4.9591064453125e-05,0.0182924270629883,-0.00406369566917419,4.9591064453125e-05,0.00210762023925781,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0771124362945557,-0.00114536285400391,0.0593252182006836,-0.0946142673492432,-0.000115394592285156,0.0761613845825195,-0.121841430664063,-5.24520874023438e-06,0.100505828857422,-0.304980516433716,4.57763671875e-05,0.254389762878418,-0.304795503616333,0.000173091888427734,0.252619743347168,-0.372626304626465,0.000965595245361328,0.30400276184082,-0.519672393798828,0.00901460647583008, -0.399782180786133,-0.807669162750244,0.0217432975769043,0.529636383056641,-1.15381002426147,0.0420465469360352,0.59061336517334,-1.08818697929382,0.057915210723877,0.476544380187988,-1.18024528026581,0.0611381530761719,0.293766021728516,-1.1968789100647,0.0561661720275879,0.153227806091309,-1.15293216705322,0.0465631484985352,-0.0137386322021484,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0433340072631836,4.57763671875e-05,0.0338935852050781,-0.068817138671875,4.57763671875e-05,0.0558996200561523,-0.0775389671325684,4.57763671875e-05,0.0620298385620117,-0.20626425743103,4.57763671875e-05,0.167669296264648,-0.211111783981323,4.57763671875e-05,0.17247486114502,-0.26116943359375,4.57763671875e-05,0.212761878967285,-0.327451467514038,4.57763671875e-05,0.256878852844238,-0.401512503623962,4.57763671875e-05,0.293492317199707,-0.50716233253479,2.62260437011719e-05,0.314969062805176,-0.397182404994965,4.9591064453125e-05,0.192567825317383,-0.382010042667389,4.9591064453125e-05,0.115025520324707,-0.13723149895668,4.9591064453125e-05,0.0726718902587891,-0.061489075422287,2.6702880859375e-05,0.0346031188964844,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05, -1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06 - } - Normals: *7407 { - a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453, --1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666, -1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428, -0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255, --0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868, --0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951, -0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347, --0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537, --0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009, -0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843, --0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934, --1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996, -0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176, --0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271, --1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036, -0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026, -0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312, --0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224, -0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802, -0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946, -0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045, --0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956, --0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467, --0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753, -0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581, --0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245, -0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655, --0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321, --0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191, -0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125, -1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235, -0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831, --0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197, --0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332, -0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341, --0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966, -0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269, --0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505, --0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369, -0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306, --1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292, -0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897, --0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076, -0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857, --1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551, --0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122, --1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743, -1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513, --0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366, --1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103, --0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323, --1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971, --0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362, --0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668, --0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626, -0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678, -0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252, --0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199, -0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154, --0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801, --1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905, --0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059, --1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782, -0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062, --0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558, -1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059, -1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 - } - } - Geometry: 2807563819360, "Geometry::Mouth_Upper_Overturn", "Shape" { - Version: 100 - Indexes: *759 { - a: 5879,5880,5881,5882,5885,5887,5889,5891,5893,5905,5906,5907,5908,5909,5910,5911,5912,5914,5915,5922,5924,5929,5930,5933,5936,5938,5939,5940,5941,5942,5947,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6109,6137,6139,6154,6156,6167,6169,6179,6183,6184,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6352,6360,6362,6364,6366,6367,6368,6370,6371,6373,6374,6375,6376,6377,6379,6380,6382,6383,6384,6385,6386,6387,6410,6411,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7227,7231,7232,7233,7234,7240,7241,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378, -7379,7380,7381,7382,7383,7384,7385,7386,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7491,7519,7521,7536,7538,7549,7551,7561,7565,7566,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7734,7742,7744,7746,7748,7749,7750,7752,7753,7755,7756,7757,7758,7759,7761,7762,7764,7765,7766,7767,7768,7769,7792,7793,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8606,8607,8608,8609,8615,8616,8698,8699,8700,8712,8723,8724,8725,8737,8748,8749,8750,8761,8767,8768,8769,8770,8773,8774,8775,8786,8792,8793,8794,8795 - } - Vertices: *2277 { - a: 0,-0.0646967887878418,-0.0173530578613281,0,-0.0723047256469727,0.00224971771240234,2.58665459114127e-05,0.151955127716064,1.05388450622559,8.40692155179568e-06,0.436273097991943,1.051025390625,2.57030751527054e-05,0.475208759307861,1.3378324508667,2.46576601057313e-05,0.360669136047363,1.46428775787354,0,-0.0115871429443359,0.928911209106445,3.00763713312335e-06,0.30335807800293,1.10473251342773,0,-0.110494136810303,0.759476661682129,0,0.0204381942749023,0.151528358459473,0,0.0334687232971191,0.314996719360352,0,-0.0122814178466797,0.413086891174316,0,-0.0645251274108887,0.54420280456543,0,-0.00704860687255859,-0.0142097473144531,0,-0.0333402156829834,-0.0471820831298828,0,-0.0395948886871338,0.0136299133300781,0,-0.00554382801055908,0.00437736511230469,0,-0.0617697238922119,0.00922775268554688,0,-0.0710384845733643,0.00658130645751953,0,1.81198120117188e-05,0,0,-6.43730163574219e-06,0,0,1.04904174804688e-05,0,0,-2.00271606445313e-05,0,0,-2.09808349609375e-05,0,0,-2.57492065429688e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,2.09808349609375e-05,0,0,3.0517578125e-05,0,-0.000145435333251953,-0.063894510269165,-0.0148344039916992,0,-0.0741710662841797,0.00255393981933594,-0.00153231620788574,0.13328218460083,0.99661922454834,0.0738517194986343,0.377238750457764,0.990007400512695,0.717770576477051,0.0284276008605957,0.970651626586914,0.536936283111572,0.122415542602539,0.977749824523926,0.459138870239258,0.053800106048584,1.06699371337891,0.531224012374878,-0.0399489402770996,1.08935737609863,0.276312828063965,0.151837348937988,1.09577178955078,0.341257214546204,-0.0938620567321777,1.12666130065918,0.135848164558411,0.122814178466797,1.03781318664551,0.152213931083679,-0.158437252044678,0.944880485534668,0.104564309120178,0.204104423522949,1.01487827301025,0.0303633213043213,-0.115612030029297,0.912620544433594,0.103027939796448,0.291701316833496,0.984965324401855,-0.065115213394165,0.00431680679321289,0.96058464050293,0.443747997283936, --0.135309219360352,1.26742172241211,0.380891561508179,0.10183572769165,1.18695449829102,0.49741268157959,0.0536937713623047,0.747503280639648,0.667594909667969,-0.0427260398864746,0.756633758544922,0.451865673065186,-0.0273666381835938,0.56884765625,0.575550317764282,-0.0486178398132324,0.619497299194336,0.332128047943115,-0.0761804580688477,0.43603515625,0.450353145599365,-0.0497512817382813,0.490008354187012,0.219695568084717,-0.0973625183105469,0.333452224731445,0.324358224868774,-0.0528130531311035,0.374615669250488,0.200314044952393,-0.0621027946472168,0.287156105041504,0.163057088851929,-0.074317455291748,0.34454345703125,0.208857774734497,-0.0451006889343262,0.177416801452637,0.124317407608032,-0.0405516624450684,0.260091781616211,0.0855557918548584,0.433149337768555,1.30013561248779,0.149266123771667,0.350541114807129,1.30243301391602,0.0837317705154419,0.25182580947876,1.25561714172363,0.0551810264587402,0.191296100616455,1.22881317138672,0.201876163482666,0.214968681335449,1.30384159088135,0.351449966430664,0.17775821685791,1.39311504364014,0.431096792221069,0.0892925262451172,1.17146682739258,0.513583660125732,0.0667581558227539,1.02448844909668,0.495420455932617,-0.00561285018920898,0.783577919006348,0.442702770233154,-0.0462536811828613,0.628232955932617,0.336171627044678,-0.0677571296691895,0.498613357543945,0.227119207382202,-0.0752115249633789,0.38896656036377,0.139483451843262,-0.106489181518555,0.382464408874512,0.0982978343963623,-0.0800876617431641,0.288278579711914,0.00864475965499878,0.304684162139893,1.39367198944092,-0.0105759501457214,0.20963191986084,1.36627292633057,-0.00478696823120117,0.0814189910888672,1.30981540679932,0.0162891149520874,0.0664725303649902,1.29851913452148,0.203076839447021,0.110470294952393,1.37527275085449,0.384147644042969,0.0702099800109863,1.45310115814209,0.453661203384399,0.0189914703369141,1.17666244506836,0.595444202423096,0.0160903930664063,1.01978778839111,0.566837549209595,-0.0416388511657715,0.796650886535645,0.492504596710205,-0.0550875663757324,0.65485668182373, -0.380683660507202,-0.0532355308532715,0.524598121643066,0.26561427116394,-0.0615601539611816,0.402480125427246,0.180963277816772,-0.0899314880371094,0.32213020324707,0.121851444244385,-0.0693845748901367,0.291323661804199,0.00708895921707153,0.0114936828613281,0.909755706787109,0.0515520572662354,-0.0840935707092285,0.845119476318359,0.101097464561462,-0.360849857330322,0.823868751525879,0.191768884658813,-0.374909400939941,0.82579231262207,0.302794694900513,-0.217581748962402,0.991700172424316,0.354353904724121,-0.309872627258301,1.16224956512451,0.359830379486084,-0.29056978225708,0.984250068664551,0.511802434921265,0.035459041595459,0.879109382629395,0.46373987197876,0.021357536315918,0.649105072021484,0.358412027359009,-0.00658559799194336,0.440622329711914,0.26954984664917,-0.0395770072937012,0.330744743347168,0.184126377105713,-0.0384864807128906,0.27931022644043,0.17580771446228,-0.024620532989502,0.340800285339355,0.136513948440552,0.00921106338500977,0.259811401367188,0.0662684589624405,0.243529319763184,1.03287410736084,0.103932738304138,0.164711475372314,1.10026454925537,0.116872906684875,0.0804848670959473,1.04707908630371,0.0945807695388794,0.0423521995544434,1.03262329101563,0.244349479675293,0.060905933380127,1.09347915649414,0.407251238822937,0.0616869926452637,1.17784786224365,0.448456764221191,0.0519504547119141,1.02636432647705,0.529141664505005,0.17147159576416,0.939445495605469,0.459779024124146,0.0667595863342285,0.709714889526367,0.403445482254028,-0.00309467315673828,0.52286434173584,0.283071041107178,-0.0522322654724121,0.387964248657227,0.186330556869507,-0.082007884979248,0.296136856079102,0.179408073425293,-0.0697021484375,0.336506843566895,0.130406856536865,-0.035181999206543,0.253597259521484,0.00983494520187378,-0.108022212982178,0.766936302185059,-0.0566827058792114,-0.113788604736328,0.755132675170898,0.00415480136871338,-0.249175071716309,0.695111274719238,0.0888817310333252,-0.250987529754639,0.66395378112793,0.159300923347473,-0.506837844848633,0.780002593994141,0.123938798904419, --0.3787522315979,0.993114471435547,0.250686407089233,-0.254126071929932,0.989139556884766,0.395111560821533,-0.105743885040283,0.743771553039551,0.161507368087769,-0.0132308006286621,0.288573265075684,0.170098543167114,-0.0371270179748535,0.223663330078125,0.261277675628662,-0.0449199676513672,0.289975166320801,0.35525369644165,-0.0266580581665039,0.405059814453125,0.371267795562744,-0.061213493347168,0.521640777587891,0.137377977371216,0.0198221206665039,0.231292724609375,0,0,0.00756454467773438,-0.000437140464782715,-7.62939453125e-06,2.288818359375e-05,0,0,0.00321388244628906,-0.00246572494506836,-4.37498092651367e-05,0.0114498138427734,0.0113914012908936,0.00259971618652344,0.0143594741821289,0.0227189064025879,0.0132322311401367,0.0362567901611328,0.00160551071166992,0.000966072082519531,0.00258350372314453,0.000132322311401367,8.10623168945313e-05,0.000212669372558594,0.00143313407897949,0.000863075256347656,0.00230598449707031,-0.0068204402923584,-0.0712571144104004,0.100616455078125,0.00970184803009033,-0.0308339595794678,0.000972747802734375,0.0229463577270508,-0.0489766597747803,0.00106716156005859,0.00140190124511719,-0.105099201202393,0.151186943054199,0.012382984161377,-0.0537023544311523,0.000777244567871094,0.00457382202148438,-0.026618480682373,-0.000257492065429688,-2.14576721191406e-06,-0.038646936416626,1.23977661132813e-05,0.000230669975280762,-0.0511269569396973,0.000761032104492188,0,-0.0588011741638184,0.000203132629394531,-0.00285589694976807,-0.0441131591796875,-0.00708770751953125,-0.000525236129760742,-0.117754936218262,0.193086624145508,-0.0108869075775146,-0.0752615928649902,0.116305351257324,0.00925636291503906,-0.184865713119507,0.584772109985352,0.044635534286499,-0.179177284240723,0.595590591430664,0.256755113601685,-0.224066734313965,0.581348419189453,0.205386638641357,-0.0962200164794922,0.400664329528809,0.185328006744385,-0.0313706398010254,0.319867134094238,0.146651744842529,-0.022951602935791,0.23309326171875,0.119714736938477,0.00325918197631836,0.178974151611328,0.11512017250061, -0.0283985137939453,0.213800430297852,0.0943801403045654,0.0531034469604492,0.172492980957031,3.79383563995361e-05,-0.0335021018981934,0.400566101074219,0.0239043235778809,-0.0232415199279785,0.434087753295898,-0.0344362854957581,-0.0937583446502686,0.55379581451416,0.000859051942825317,-0.0797598361968994,0.425488471984863,-0.000667572021484375,-0.0331926345825195,0.373599052429199,4.93228435516357e-05,0.0219786167144775,0.335282325744629,-0.00447893142700195,-0.0416414737701416,0.312426567077637,-0.000939339399337769,0.0154681205749512,0.222764015197754,-0.0144979357719421,-0.0782780647277832,0.23857307434082,-0.00789198279380798,-0.0266904830932617,0.121533393859863,-0.0176359415054321,-0.0722305774688721,0.174126625061035,-0.0201452970504761,-0.0661535263061523,0.07818603515625,-0.0114471316337585,-0.0564358234405518,0.0970134735107422,-0.0159072875976563,-0.0430095195770264,0.0272588729858398,0.000432372093200684,-0.0712952613830566,0.0692253112792969,0.00106275081634521,-0.0693552494049072,0.0151767730712891,0.0264607667922974,-0.0933070182800293,0.0678586959838867,0.0255063772201538,-0.0822763442993164,0.0198602676391602,0.0477938652038574,-0.106835126876831,0.0721263885498047,0.0414704084396362,-0.108803033828735,0.110690116882324,-0.0240933895111084,-0.115582227706909,0.23237133026123,0.00702214241027832,-0.171325206756592,0.352198600769043,0.00853615999221802,-0.148457527160645,0.515483856201172,-0.0590575933456421,-0.094304084777832,0.384753227233887,0.0323226451873779,-0.128154039382935,0.105280876159668,0.0500407218933105,-0.150244235992432,0.104399681091309,7.32839107513428e-05,-0.014650821685791,0.392269134521484,-0.000270873308181763,-0.00687479972839355,0.366880416870117,-0.00353825092315674,-0.00764036178588867,0.284528732299805,-0.0150828957557678,-0.0769674777984619,0.225543975830078,-0.0195243358612061,-0.0693666934967041,0.148388862609863,-0.0142008662223816,-0.0476489067077637,0.072235107421875,0.000607609748840332,-0.069493293762207,0.0528297424316406,0.026252269744873,-0.0897634029388428,0.0527772903442383, -0.0509294271469116,-0.104301929473877,0.0768938064575195,0.0418009757995605,-0.135876655578613,0.0952596664428711,-0.0156184434890747,-0.137662887573242,0.24449634552002,-0.0560111403465271,-0.108448505401611,0.395637512207031,0.00123530626296997,-0.0817329883575439,0.439971923828125,0.00142243504524231,-0.0844521522521973,0.446774482727051,-0.0529258251190186,-0.121685028076172,0.399440765380859,-0.00766807794570923,-0.157881736755371,0.253549575805664,0.0475596189498901,-0.142354726791382,0.0901470184326172,0.0492473840713501,-0.103968620300293,0.088653564453125,0.0272254943847656,-0.0861165523529053,0.035578727722168,0.000798702239990234,-0.0689079761505127,0.031956672668457,-0.0152129530906677,-0.0438861846923828,0.0534296035766602,-0.0201331377029419,-0.0673868656158447,0.121450424194336,-0.0138165950775146,-0.0748312473297119,0.225541114807129,-0.00311890244483948,0.00703859329223633,0.25806999206543,-3.28123569488525e-05,0.0160799026489258,0.342263221740723,0.000112831592559814,0.00507616996765137,0.37064266204834,0.000183403491973877,-0.0623998641967773,0.600116729736328,-0.0170084238052368,-0.0594334602355957,0.00329685211181641,-0.0151834487915039,-0.0428466796875,0.0003814697265625,-0.00972664356231689,-0.0425131320953369,-0.00951671600341797,-0.00795942544937134,-0.0525166988372803,-0.0350885391235352,0.000528097152709961,-0.0601780414581299,0.00104236602783203,0.000770926475524902,-0.0661361217498779,0.00373554229736328,0.0219329595565796,-0.0776715278625488,0.00699424743652344,0.0175013542175293,-0.0690078735351563,0.00145435333251953,0.0385897159576416,-0.0935695171356201,0.0643157958984375,0.0442686080932617,-0.0875413417816162,0.0531940460205078,0.046786904335022,-0.080244779586792,0.0532674789428711,0.0464754104614258,-0.0739235877990723,0.0470609664916992,0.0434932708740234,-0.0683414936065674,0.0347862243652344,0.0361193418502808,-0.060279369354248,0.015263557434082,0.0237926244735718,-0.125631093978882,0.165990829467773,0.00924217700958252,-0.127293109893799,0.184714317321777,0.0220589637756348, --0.143856287002563,0.182059288024902,0.00275981426239014,-0.149592161178589,0.252357482910156,0.0170254707336426,-0.154042720794678,0.326921463012695,-0.00332367420196533,-0.163516998291016,0.422844886779785,-0.00310039520263672,-0.126766204833984,0.318435668945313,-0.0137332677841187,-0.0894820690155029,0.203001976013184,-0.00013279914855957,-0.051170825958252,0.0536603927612305,0.0141199827194214,-0.0806100368499756,0.0715103149414063,0.0243520736694336,-0.0927164554595947,0.101261138916016,0.0352352857589722,-0.0956275463104248,0.104793548583984,0.0446940660476685,-0.0896215438842773,0.0863637924194336,0.0495060682296753,-0.089252233505249,0.0754146575927734,0.0493029356002808,-0.0931804180145264,0.0673513412475586,0.0446306467056274,-0.0983188152313232,0.0696897506713867,0,-0.0341771841049194,0.0130825042724609,0,-0.0277496576309204,0.00391483306884766,0,-0.0115551948547363,0,0,-0.00286495685577393,0.00339698791503906,0,-0.00209450721740723,0.000200271606445313,0,-0.000151276588439941,0,0,-0.0571521520614624,0.00927162170410156,0,-0.0433707237243652,0.00216770172119141,0,-0.0283026695251465,0,-0.00569212436676025,-0.0347957611083984,0.0334091186523438,-0.00418078899383545,-0.0332431793212891,0.0321722030639648,-0.00120735168457031,-0.00437331199645996,0.000181198120117188,-0.000942826271057129,-0.00705409049987793,0.00140380859375,5.01871109008789e-05,-0.000951528549194336,-1.23977661132813e-05,0.000424623489379883,-0.00301122665405273,-2.95639038085938e-05,7.08103179931641e-05,-0.00354862213134766,-1.52587890625e-05,0.000860333442687988,-0.00572037696838379,-6.866455078125e-05,0,-0.00852656364440918,-8.58306884765625e-06,0.000283598899841309,-0.0154216289520264,-4.10079956054688e-05,-0.000194311141967773,-0.00894904136657715,0.00193500518798828,0.000672101974487305,-0.00466084480285645,-2.288818359375e-05,-0.00207912921905518,-0.0219631195068359,0.0189018249511719,0.00426316261291504,-0.0169141292572021,0.000329017639160156,0.00237190723419189,-0.00930905342102051,-0.000101089477539063,0.00156807899475098,-0.00660347938537598, --0.000104904174804688,0.00158107280731201,-0.0125532150268555,-0.000116348266601563,0.00490415096282959,-0.0188047885894775,-0.000292778015136719,0,-0.0706679821014404,0.00625133514404297,0,-0.0550811290740967,0.00125694274902344,0,-0.0361800193786621,0,0.00104475021362305,-0.0225455760955811,-9.82284545898438e-05,0.00287497043609619,-0.0151834487915039,-0.00019073486328125,-0.0126142501831055,-0.036069393157959,0.0583610534667969,-0.00346684455871582,-0.00327277183532715,0.00106239318847656,-0.000506401062011719,6.81877136230469e-05,2.288818359375e-05,-0.0196239948272705,-0.00479722023010254,0.0486927032470703,-0.025892972946167,-0.0835790634155273,0.354103088378906,-0.0225052833557129,-0.00703549385070801,0.171073913574219,-0.000366926193237305,-0.080474853515625,0.360453605651855,-0.00388431549072266,-0.00555229187011719,0.174657821655273,0.00223469734191895,-0.0513179302215576,0.33576488494873,0,0,0.103813171386719,0.0953512191772461,0.0147140026092529,0.234951019287109,0.153968811035156,-0.0469894409179688,0.206294059753418,0.0903549194335938,-0.00663018226623535,0.104671478271484,0.0795669555664063,-0.0322055816650391,0.095557689666748,0.093109130859375,-0.0252084732055664,0.117351531982422,0.06854248046875,-0.0415050983428955,0.113206386566162,0.0693416595458984,-0.0266904830932617,0.102079391479492,0.0355496406555176,-0.0302267074584961,0.0747890472412109,0.0462660789489746,-0.0210490226745605,0.0732307434082031,0.05523681640625,-0.0577483177185059,0.12357759475708,0.06866455078125,-0.049079418182373,0.129380226135254,0.116317749023438,-0.046574592590332,0.17896842956543,0.0849609375,-0.0468487739562988,0.153185367584229,0.0513992309570313,-0.0509777069091797,0.119544506072998,0.0494537353515625,-0.0573124885559082,0.103248596191406,0.0369963645935059,-0.0471749305725098,0.0287466049194336,0.051424503326416,-0.0365896224975586,0.0561904907226563,0.011150598526001,0.00196647644042969,0.0216169357299805,0.0244269371032715,0.0116386413574219,0.0373053550720215,0.00295329093933105,0.00177955627441406,0.00475263595581055, -0.0270071029663086,0.0119771957397461,0.0406351089477539,0.0563762187957764,0.03253173828125,0.0854005813598633,0.0430126190185547,0.0318632125854492,0.0538206100463867,0.0682978630065918,0.0386381149291992,0.0845260620117188,0.0586800575256348,0.0242204666137695,0.0551290512084961,0.0680313110351563,-0.085141658782959,0.130546092987061,0.052032470703125,-0.0637950897216797,0.105812072753906,-0.00150752067565918,-0.0755078792572021,0.17586612701416,-0.000399768352508545,-0.0773060321807861,0.135909080505371,0.00187939405441284,-0.0822079181671143,0.108978271484375,0.00768482685089111,-0.0920841693878174,0.11031436920166,0.0145406723022461,-0.0978844165802002,0.109274864196777,0.0232795476913452,-0.101917743682861,0.099308967590332,-0.00107777118682861,-0.0752718448638916,0.205157279968262,-0.000440120697021484,-0.0735232830047607,0.244522094726563,-5.14388084411621e-05,-0.0752227306365967,0.27393627166748,0,-0.0823452472686768,0.281020164489746,0.000261187553405762,-0.0943868160247803,0.268973350524902,0.00202655792236328,-0.108516693115234,0.223397254943848,0.00693643093109131,-0.115852832794189,0.166899681091309,0.014776885509491,-0.113113164901733,0.12956714630127,0.0260344743728638,-0.108770132064819,0.103798866271973,0.000401496887207031,-0.088925838470459,0.198792457580566,0.00182223320007324,-0.0946898460388184,0.169625282287598,0.00537484884262085,-0.0988585948944092,0.143037796020508,0.0125702619552612,-0.102908372879028,0.12396240234375,-3.5405158996582e-05,-0.0826058387756348,0.219475746154785,4.447266292118e-06,0.0666146278381348,0.078333854675293,0.00203990936279297,0.0368728637695313,0.0702066421508789,0.00535035133361816,-0.0920586585998535,0.133760452270508,0.00414538383483887,-0.0210552215576172,0.0903959274291992,0.000470757484436035,-0.232184410095215,-0.126755714416504,0.0679678916931152,-0.288845539093018,-0.0705060958862305,0.049562931060791,-0.127261161804199,0.0648298263549805,0.0296121835708618,-0.0862040519714355,0.101108551025391,0.00295203924179077,-0.0111179351806641,0.0701618194580078, -0,0,0.0309982299804688,0,0,0.0430173873901367,0,0,0.042999267578125,0,0,0.0354461669921875,0,0.000261783599853516,0.0474472045898438,-0.000169515609741211,0.00037384033203125,0.035426139831543,2.58665459114127e-05,0.106497287750244,0.816441535949707,-0.0366162955760956,0.115146160125732,0.74250602722168,-0.074146032333374,0.0331816673278809,0.709633827209473,0.0515351891517639,-0.159089088439941,0.681074142456055,0.198563575744629,-0.295037746429443,0.712100982666016,0.490230441093445,-0.222806930541992,0.927135467529297,0.663760423660278,-0.133066177368164,1.07466888427734,0.796926259994507,-0.0653505325317383,0.963357925415039,0.935407638549805,0.021481990814209,0.873577117919922,0.89634370803833,-0.0395255088806152,0.71428394317627,0.779067754745483,-0.028954029083252,0.594712257385254,0.602002859115601,-0.0257935523986816,0.483840942382813,0.408354759216309,-0.0295534133911133,0.377096176147461,0.271356821060181,-0.0427312850952148,0.290725708007813,0.178207159042358,-0.0204758644104004,0.244610786437988,2.58665459114127e-05,0.0818452835083008,0.420102119445801,-0.119018763303757,0.00560522079467773,0.334754943847656,-0.186183452606201,-0.0649337768554688,0.116440773010254,-0.0743099451065063,-0.240662097930908,0.0416345596313477,0.0310053825378418,-0.423313140869141,0.141791343688965,0.357816576957703,-0.386440753936768,0.368062973022461,0.698532819747925,-0.482622623443604,0.671249389648438,0.854528546333313,-0.331986427307129,0.71706485748291,1.00083494186401,-0.154228210449219,0.755987167358398,0.976666927337646,-0.115692138671875,0.676286697387695,0.850667476654053,-0.0561413764953613,0.580391883850098,0.666540145874023,-0.0422372817993164,0.451297760009766,0.448374271392822,-0.0325465202331543,0.351924896240234,0.24271821975708,0.04254150390625,0.293334007263184,0.0892899036407471,0.0516090393066406,0.161541938781738,0,-6.43730163574219e-06,0,-0.000847101211547852,-0.00340080261230469,0.000279426574707031,-1.28746032714844e-05,-6.65187835693359e-05,5.7220458984375e-06,-0.000226259231567383,-0.00289487838745117, -0.000212669372558594,0.00011754035949707,-3.93390655517578e-05,-2.86102294921875e-06,0,-0.00122261047363281,-0.00104188919067383,0,-0.00154972076416016,-0.00133800506591797,0.000145435333251953,-0.063894510269165,-0.0148344039916992,0,-0.0741710662841797,0.00255393981933594,0.0012938380241394,0.133278846740723,0.996665000915527,-0.0738355815410614,0.377238273620605,0.990009307861328,-0.716909408569336,0.0273938179016113,0.971689224243164,-0.536952972412109,0.122684001922607,0.977578163146973,-0.459516048431396,0.054755687713623,1.06664276123047,-0.531646728515625,-0.0401210784912109,1.08840274810791,-0.27642035484314,0.151754379272461,1.09628295898438,-0.341462016105652,-0.0938286781311035,1.12621688842773,-0.13610827922821,0.122647285461426,1.03825855255127,-0.152155637741089,-0.158438682556152,0.945252418518066,-0.104484081268311,0.204104900360107,1.01484489440918,-0.0303089618682861,-0.115627288818359,0.912969589233398,-0.103010952472687,0.291701793670654,0.984963417053223,0.0651707649230957,0.00421380996704102,0.960575103759766,-0.444065809249878,-0.135311126708984,1.26644802093506,-0.380820512771606,0.101809501647949,1.18660354614258,-0.497804164886475,0.053863525390625,0.746867179870605,-0.667054414749146,-0.0429577827453613,0.756588935852051,-0.452150106430054,-0.0274181365966797,0.568637847900391,-0.576723337173462,-0.0483303070068359,0.615510940551758,-0.332042694091797,-0.0764756202697754,0.436393737792969,-0.450831413269043,-0.0502614974975586,0.485608100891113,-0.219336748123169,-0.0979738235473633,0.333725929260254,-0.323698043823242,-0.0532960891723633,0.373312950134277,-0.199827909469604,-0.0621247291564941,0.286727905273438,-0.163080930709839,-0.0744194984436035,0.344620704650879,-0.208656549453735,-0.0450930595397949,0.177064895629883,-0.124162197113037,-0.0406227111816406,0.260041236877441,-0.085545152425766,0.433157920837402,1.30014705657959,-0.149273157119751,0.350523948669434,1.30245018005371,-0.0836020708084106,0.251912593841553,1.25561237335205,-0.0550330877304077,0.191423892974854,1.22908687591553, --0.201779961585999,0.214971542358398,1.30423545837402,-0.351637125015259,0.177741050720215,1.39269828796387,-0.431421279907227,0.089148998260498,1.17056655883789,-0.513922929763794,0.0671625137329102,1.02387714385986,-0.495900392532349,-0.00587177276611328,0.782623291015625,-0.442610025405884,-0.0461411476135254,0.627749443054199,-0.336133241653442,-0.0676627159118652,0.49888801574707,-0.227069854736328,-0.0751914978027344,0.389307975769043,-0.139165163040161,-0.106491088867188,0.38233470916748,-0.0979726314544678,-0.0801172256469727,0.28815746307373,-0.00859752297401428,0.304707050323486,1.39367771148682,0.0106267333030701,0.209560394287109,1.36624717712402,0.00483989715576172,0.0814118385314941,1.30985546112061,-0.0162354707717896,0.0662164688110352,1.29870796203613,-0.203019380569458,0.110487937927246,1.37561130523682,-0.384501457214355,0.0702009201049805,1.45237445831299,-0.454062938690186,0.018765926361084,1.175705909729,-0.595226049423218,0.0161676406860352,1.01955604553223,-0.566695690155029,-0.0414071083068848,0.796145439147949,-0.492115020751953,-0.0546040534973145,0.653114318847656,-0.380477666854858,-0.0532102584838867,0.523733139038086,-0.26543927192688,-0.0615420341491699,0.402180671691895,-0.180631399154663,-0.0899243354797363,0.321775436401367,-0.12155818939209,-0.0693836212158203,0.291097640991211,-0.00708940625190735,0.0114970207214355,0.909753799438477,-0.0515434741973877,-0.0840930938720703,0.84511661529541,-0.101126670837402,-0.360795974731445,0.823940277099609,-0.191916108131409,-0.37468433380127,0.826425552368164,-0.303177118301392,-0.216641426086426,0.992460250854492,-0.354862928390503,-0.305207252502441,1.16212272644043,-0.359411478042603,-0.288549423217773,0.98454761505127,-0.511436939239502,0.0364789962768555,0.87893009185791,-0.463593482971191,0.0216255187988281,0.648811340332031,-0.358113050460815,-0.00653409957885742,0.439970970153809,-0.269331693649292,-0.0396914482116699,0.330422401428223,-0.183952808380127,-0.0386290550231934,0.279159545898438,-0.175595998764038,-0.024836540222168,0.340505599975586, --0.136210680007935,0.00893211364746094,0.259458541870117,-0.066258117556572,0.243508815765381,1.03287601470947,-0.103926718235016,0.164710998535156,1.10026359558105,-0.116732358932495,0.0804858207702637,1.04701232910156,-0.0950838327407837,0.0419378280639648,1.03318977355957,-0.245559215545654,0.0600733757019043,1.0947790145874,-0.407152652740479,0.0624723434448242,1.17828941345215,-0.448129415512085,0.0529203414916992,1.02607536315918,-0.529506683349609,0.171853065490723,0.939506530761719,-0.459468126296997,0.0673313140869141,0.70930004119873,-0.403532981872559,-0.0031123161315918,0.522571563720703,-0.282733201980591,-0.052675724029541,0.38801383972168,-0.186081886291504,-0.0823254585266113,0.296266555786133,-0.179401397705078,-0.0700216293334961,0.336620330810547,-0.13020133972168,-0.0353002548217773,0.253479957580566,-0.00983494520187378,-0.108022212982178,0.766936302185059,0.0566827058792114,-0.113788604736328,0.755132675170898,-0.00415122509002686,-0.249160766601563,0.695109367370605,-0.0888645648956299,-0.250975608825684,0.664839744567871,-0.159312009811401,-0.506826877593994,0.780916213989258,-0.124769687652588,-0.377325057983398,0.994823455810547,-0.250825643539429,-0.253482341766357,0.990007400512695,-0.395960807800293,-0.106197834014893,0.745171546936035,-0.161173343658447,-0.0133986473083496,0.288193702697754,-0.169730424880981,-0.0372958183288574,0.223644256591797,-0.26134991645813,-0.0449733734130859,0.290238380432129,-0.355955123901367,-0.026641845703125,0.405994415283203,-0.372339725494385,-0.0615501403808594,0.522928237915039,-0.137137889862061,0.0196380615234375,0.231001853942871,0,0,0.00764274597167969,0.000437140464782715,-7.62939453125e-06,2.288818359375e-05,0,0,0.00321388244628906,0.00246572494506836,-4.37498092651367e-05,0.011448860168457,-0.0113914012908936,0.00259971618652344,0.0143594741821289,-0.0227189064025879,0.0132322311401367,0.0362567901611328,-0.00160551071166992,0.000966072082519531,0.00258350372314453,-0.000132322311401367,8.10623168945313e-05,0.000212669372558594,-0.00143313407897949, -0.000863075256347656,0.00230598449707031,0.0068204402923584,-0.071258544921875,0.100652694702148,-0.00970184803009033,-0.0308339595794678,0.000973701477050781,-0.0229463577270508,-0.0489766597747803,0.00106334686279297,-0.00139856338500977,-0.105108499526978,0.15147876739502,-0.012382984161377,-0.0537021160125732,0.000777244567871094,-0.00457382202148438,-0.026618480682373,-0.000257492065429688,2.14576721191406e-06,-0.038646936416626,1.23977661132813e-05,-0.000230669975280762,-0.0511195659637451,0.000761032104492188,0,-0.0588011741638184,0.000203132629394531,0.00285589694976807,-0.0441131591796875,-0.00708770751953125,0.000528812408447266,-0.1177659034729,0.193404197692871,0.0108866691589355,-0.0752613544464111,0.116302490234375,-0.00925755500793457,-0.18486213684082,0.584591865539551,-0.044635534286499,-0.179177284240723,0.595497131347656,-0.256879329681396,-0.224141597747803,0.581555366516113,-0.205544471740723,-0.0962448120117188,0.400815010070801,-0.185422420501709,-0.0313668251037598,0.31999683380127,-0.146675586700439,-0.0229678153991699,0.233158111572266,-0.119466304779053,0.00315952301025391,0.178974151611328,-0.11499547958374,0.0283012390136719,0.213688850402832,-0.0942378044128418,0.0530052185058594,0.172408103942871,-3.79383563995361e-05,-0.033536434173584,0.400566101074219,-0.0239043235778809,-0.0232410430908203,0.434087753295898,0.0344362854957581,-0.0937583446502686,0.55379581451416,-0.000859051942825317,-0.0797598361968994,0.425488471984863,0.000667572021484375,-0.0331926345825195,0.373599052429199,-4.93228435516357e-05,0.0219786167144775,0.335282325744629,0.00447893142700195,-0.0416414737701416,0.312426567077637,0.000939339399337769,0.0154681205749512,0.22276496887207,0.0144979357719421,-0.0782785415649414,0.23857307434082,0.00789198279380798,-0.0266904830932617,0.121533393859863,0.0176359415054321,-0.0722305774688721,0.174126625061035,0.0201452970504761,-0.0661535263061523,0.07818603515625,0.0114471316337585,-0.0564358234405518,0.0970134735107422,0.0159072875976563,-0.0430095195770264,0.0272598266601563, --0.000432372093200684,-0.0712954998016357,0.0692253112792969,-0.00106275081634521,-0.0693550109863281,0.0151815414428711,-0.0264607667922974,-0.0933070182800293,0.0678615570068359,-0.0255063772201538,-0.0822763442993164,0.019862174987793,-0.0477938652038574,-0.106835126876831,0.0721292495727539,-0.0414704084396362,-0.108806133270264,0.111215591430664,0.0240933895111084,-0.115582227706909,0.232375144958496,-0.00702214241027832,-0.171325922012329,0.352201461791992,-0.00853615999221802,-0.148457527160645,0.515483856201172,0.0590575933456421,-0.094304084777832,0.384753227233887,-0.0323226451873779,-0.128154039382935,0.105284690856934,-0.0500407218933105,-0.150243997573853,0.104399681091309,-7.32839107513428e-05,-0.014650821685791,0.392269134521484,0.000270873308181763,-0.00687479972839355,0.366880416870117,0.00353825092315674,-0.00763797760009766,0.284533500671387,0.0150828957557678,-0.0769674777984619,0.225543975830078,0.0195243358612061,-0.0693666934967041,0.148388862609863,0.0142008662223816,-0.0476489067077637,0.072235107421875,-0.000607609748840332,-0.0694851875305176,0.0529699325561523,-0.026252269744873,-0.0897634029388428,0.0527801513671875,-0.0509294271469116,-0.104301929473877,0.0768928527832031,-0.0418009757995605,-0.135876655578613,0.0952625274658203,0.0156184434890747,-0.137662887573242,0.244600296020508,0.0560111403465271,-0.108448505401611,0.395637512207031,-0.00123530626296997,-0.0817329883575439,0.439971923828125,-0.00142243504524231,-0.0844521522521973,0.446774482727051,0.0529258251190186,-0.121685028076172,0.399440765380859,0.00766807794570923,-0.157881736755371,0.253552436828613,-0.0475596189498901,-0.142354488372803,0.0900650024414063,-0.0492473840713501,-0.103969097137451,0.0888547897338867,-0.0272254943847656,-0.0861165523529053,0.0355806350708008,-0.000798702239990234,-0.0689048767089844,0.0319576263427734,0.0152129530906677,-0.0438861846923828,0.0534305572509766,0.0201331377029419,-0.0673863887786865,0.121417999267578,0.0138165950775146,-0.0748312473297119,0.225542068481445,0.00311890244483948, -0.00703859329223633,0.25806999206543,3.28123569488525e-05,0.0160799026489258,0.342263221740723,-0.000112831592559814,0.00507616996765137,0.37064266204834,-0.000183403491973877,-0.0623998641967773,0.600116729736328,0.0170084238052368,-0.0594334602355957,0.00329685211181641,0.0151834487915039,-0.0428466796875,0.0003814697265625,0.00972664356231689,-0.0425131320953369,-0.00951671600341797,0.00795942544937134,-0.0525166988372803,-0.0350885391235352,-0.000528097152709961,-0.0601747035980225,0.00104236602783203,-0.000770926475524902,-0.0661451816558838,0.00373744964599609,-0.0219329595565796,-0.0776712894439697,0.00699520111083984,-0.0175013542175293,-0.0690078735351563,0.00145435333251953,-0.0385897159576416,-0.0935695171356201,0.0643196105957031,-0.0442686080932617,-0.0875413417816162,0.0531930923461914,-0.046786904335022,-0.0802476406097412,0.0532674789428711,-0.0464754104614258,-0.073920726776123,0.0472755432128906,-0.0434932708740234,-0.0683395862579346,0.0350322723388672,-0.0361193418502808,-0.0602791309356689,0.015477180480957,-0.0237891674041748,-0.125636100769043,0.166443824768066,-0.00923037528991699,-0.127307176589966,0.185375213623047,-0.0220589637756348,-0.143866777420044,0.18278980255127,-0.00274550914764404,-0.149606943130493,0.253066062927246,-0.0170254707336426,-0.154046535491943,0.327793121337891,0.00334525108337402,-0.163524627685547,0.423651695251465,0.00310564041137695,-0.126775741577148,0.318747520446777,0.0137335062026978,-0.0894768238067627,0.202864646911621,0.00013279914855957,-0.051170825958252,0.0536527633666992,-0.0141181945800781,-0.0806112289428711,0.0715646743774414,-0.0243439674377441,-0.0927245616912842,0.101846694946289,-0.0352059602737427,-0.0956313610076904,0.105446815490723,-0.0446940660476685,-0.0896215438842773,0.0868511199951172,-0.0495060682296753,-0.0892515182495117,0.0755300521850586,-0.0493029356002808,-0.0931804180145264,0.0673513412475586,-0.0446306467056274,-0.0983188152313232,0.0696926116943359,0,-0.0341771841049194,0.0130825042724609,0,-0.0277496576309204,0.00391483306884766, -0,-0.0115551948547363,0,0,-0.00286495685577393,0.00339698791503906,0,-0.00209450721740723,0.000200271606445313,0,-0.000151276588439941,0,0,-0.0571521520614624,0.00927162170410156,0,-0.0433707237243652,0.00216770172119141,0,-0.0283029079437256,0,0.00569212436676025,-0.0347959995269775,0.0334091186523438,0.00418078899383545,-0.0332431793212891,0.0321722030639648,0.00120735168457031,-0.00437307357788086,0.000181198120117188,0.000942826271057129,-0.00705385208129883,0.00140476226806641,-5.01871109008789e-05,-0.00095820426940918,-1.23977661132813e-05,-0.000424623489379883,-0.00301122665405273,-2.95639038085938e-05,-7.08103179931641e-05,-0.00354886054992676,-1.52587890625e-05,-0.000860333442687988,-0.00572037696838379,-6.866455078125e-05,0,-0.00852656364440918,-8.58306884765625e-06,-0.000283598899841309,-0.0154216289520264,-4.10079956054688e-05,0.000194311141967773,-0.00894904136657715,0.00193500518798828,-0.000672101974487305,-0.00466084480285645,-2.288818359375e-05,0.00207912921905518,-0.0219631195068359,0.0189027786254883,-0.00426316261291504,-0.0169141292572021,0.000329017639160156,-0.00237190723419189,-0.00930905342102051,-0.000101089477539063,-0.00156807899475098,-0.00660347938537598,-0.000104904174804688,-0.00158107280731201,-0.0125532150268555,-0.000116348266601563,-0.00490415096282959,-0.0188047885894775,-0.000292778015136719,0,-0.0706679821014404,0.00625133514404297,0,-0.0550811290740967,0.00125694274902344,0,-0.0361802577972412,0,-0.00104475021362305,-0.0225558280944824,-9.82284545898438e-05,-0.00287497043609619,-0.0151834487915039,-0.00019073486328125,0.0126142501831055,-0.0360686779022217,0.0583381652832031,0.00346684455871582,-0.00327277183532715,0.00105953216552734,0.000506401062011719,6.81877136230469e-05,2.288818359375e-05,0.0196239948272705,-0.00479722023010254,0.0486927032470703,0.0258920192718506,-0.0835793018341064,0.354113578796387,0.0225052833557129,-0.00703549385070801,0.171073913574219,0.000362873077392578,-0.080474853515625,0.360455513000488,0.00388431549072266,-0.00555229187011719,0.174657821655273, --0.00224137306213379,-0.0513179302215576,0.335763931274414,0,0,0.103813171386719,-0.0953588485717773,0.0147140026092529,0.234951019287109,-0.15399169921875,-0.047004222869873,0.206435203552246,-0.0903549194335938,-0.00663018226623535,0.104671478271484,-0.0795669555664063,-0.0322055816650391,0.095557689666748,-0.093109130859375,-0.0252103805541992,0.117368698120117,-0.06854248046875,-0.0415053367614746,0.113208293914795,-0.0693645477294922,-0.0266938209533691,0.10210132598877,-0.0355496406555176,-0.0302267074584961,0.0747895240783691,-0.0462660789489746,-0.0210490226745605,0.0732331275939941,-0.05523681640625,-0.0577483177185059,0.123578071594238,-0.06866455078125,-0.049079418182373,0.129384517669678,-0.116348266601563,-0.0465736389160156,0.179004669189453,-0.0849609375,-0.0468487739562988,0.153185367584229,-0.0513992309570313,-0.0509777069091797,0.119544506072998,-0.0494537353515625,-0.0573124885559082,0.103248596191406,-0.0369963645935059,-0.0471773147583008,0.0287513732910156,-0.051424503326416,-0.0365896224975586,0.056190013885498,-0.0111536979675293,0.00195789337158203,0.0216426849365234,-0.0244269371032715,0.0116386413574219,0.0373053550720215,-0.00295329093933105,0.00177955627441406,0.00475263595581055,-0.0270071029663086,0.0119771957397461,0.0406351089477539,-0.0563843250274658,0.0325155258178711,0.0854358673095703,-0.0430126190185547,0.0318632125854492,0.0538196563720703,-0.0683050155639648,0.0386276245117188,0.084564208984375,-0.0586800575256348,0.0242204666137695,0.0551271438598633,-0.0680313110351563,-0.085141658782959,0.130546092987061,-0.052032470703125,-0.0637950897216797,0.105812072753906,0.00150752067565918,-0.0755078792572021,0.17586612701416,0.000399768352508545,-0.0773060321807861,0.135909080505371,-0.00187939405441284,-0.0822079181671143,0.108979225158691,-0.00768482685089111,-0.0920848846435547,0.110317230224609,-0.0145406723022461,-0.097928524017334,0.10930347442627,-0.0232795476913452,-0.101917743682861,0.0993127822875977,0.00107777118682861,-0.0752639770507813,0.205281257629395,0.000440120697021484, --0.0735232830047607,0.244522094726563,5.14388084411621e-05,-0.0752227306365967,0.27393627166748,0,-0.0823452472686768,0.281021118164063,-0.000261187553405762,-0.0943868160247803,0.268973350524902,-0.00202655792236328,-0.108516693115234,0.223397254943848,-0.00693643093109131,-0.115869045257568,0.166912078857422,-0.014776885509491,-0.113116979598999,0.129596710205078,-0.0260344743728638,-0.108770132064819,0.103801727294922,-0.000401496887207031,-0.088925838470459,0.198792457580566,-0.00182223320007324,-0.0946898460388184,0.169625282287598,-0.00537484884262085,-0.0988585948944092,0.143039703369141,-0.0125702619552612,-0.102908372879028,0.123965263366699,3.5405158996582e-05,-0.0826058387756348,0.219475746154785,-0.00205680727958679,0.0371642112731934,0.0703182220458984,-0.00540661811828613,-0.0920596122741699,0.133270263671875,-0.00412535667419434,-0.0210552215576172,0.0898036956787109,0.00830376148223877,-0.226092338562012,-0.109767913818359,-0.0671076774597168,-0.291175365447998,-0.0841827392578125,-0.0494121313095093,-0.127303600311279,0.0648689270019531,-0.0296036005020142,-0.0862035751342773,0.101109504699707,-0.00294995307922363,-0.0108532905578613,0.0703258514404297,0,0,0.0304336547851563,0,0,0.0427331924438477,0,0,0.0429906845092773,0,0,0.0354795455932617,0,0.000260829925537109,0.0473451614379883,0.000169515609741211,0.000373363494873047,0.0353937149047852,0.036704421043396,0.115095138549805,0.742537498474121,0.0745730996131897,0.0331034660339355,0.709671020507813,-0.050870954990387,-0.159089088439941,0.680973052978516,-0.198330760002136,-0.295037746429443,0.712183952331543,-0.490028142929077,-0.222812652587891,0.926936149597168,-0.664120674133301,-0.133093357086182,1.07386302947998,-0.797453641891479,-0.0658082962036133,0.965202331542969,-0.933014392852783,0.022428035736084,0.875049591064453,-0.897272348403931,-0.0379824638366699,0.710650444030762,-0.780546426773071,-0.0288467407226563,0.589520454406738,-0.603030204772949,-0.0265927314758301,0.479490280151367,-0.408274173736572,-0.0308599472045898,0.373950004577637, --0.271157503128052,-0.0433487892150879,0.289896965026855,-0.178205966949463,-0.0204610824584961,0.244139671325684,0.118922650814056,0.00645112991333008,0.333915710449219,0.186554491519928,-0.0653076171875,0.116684913635254,0.0750095844268799,-0.24109935760498,0.041773796081543,-0.0307177305221558,-0.423150062561035,0.141491889953613,-0.358466506004333,-0.388642311096191,0.36810302734375,-0.698696851730347,-0.482269763946533,0.671316146850586,-0.854441046714783,-0.330268383026123,0.716963768005371,-1.00376152992249,-0.151043891906738,0.75828742980957,-0.980063438415527,-0.112119197845459,0.678241729736328,-0.854207515716553,-0.0541300773620605,0.582310676574707,-0.668467044830322,-0.0416340827941895,0.452406883239746,-0.448434829711914,-0.0338292121887207,0.351312637329102,-0.242157697677612,0.0400943756103516,0.292271614074707,-0.0892610549926758,0.0514893531799316,0.161590576171875,0.000847101211547852,-0.00340080261230469,0.000279426574707031,1.28746032714844e-05,-6.65187835693359e-05,5.7220458984375e-06,0.000226259231567383,-0.00289487838745117,0.000212669372558594,-0.00011754035949707,-3.93390655517578e-05,-2.86102294921875e-06,0,-0.00122261047363281,-0.00104284286499023,0,-0.00154876708984375,-0.00133609771728516,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-1.96695327758789e-06,0,0,-2.5331974029541e-06,0,0,5.24520874023438e-06,0,0,2.68220901489258e-06,0,0,1.07288360595703e-06,0,0,2.05636024475098e-06,0,0,2.14576721191406e-06,0,0,-1.60932540893555e-06,0,0,3.87430191040039e-06,0,0,-2.17556953430176e-06,0,0,-3.26335430145264e-06,0,0,5.39422035217285e-06,0,0,-3.12924385070801e-06,0,0,-1.57952308654785e-06,0,0,-2.44379043579102e-06,0,0,1.43051147460938e-06,0,0,-2.98023223876953e-06,0,0,2.41398811340332e-06,0,0,2.83122062683105e-06,0,0,-5.27501106262207e-06,0,0,2.95042991638184e-06,0,0,1.46031379699707e-06,0 - } - Normals: *2277 { - a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.697922846870561,0.218657426536083,0.243624031543732,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.37752080016508,-0.215317510068417,-1.91366750001907,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589, -0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224, --0.226044476032257,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449, --1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.317191332578659,0.422314759343863,-1.34763860702515,0.221148788928986,0.310832679271698,-1.26058748364449,0.676499664783478,0.394543980248272,-1.38882184028625,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671, --0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874, -0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842, -0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442, --0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,0.376216888427734,-0.614558279514313,-0.556118197739124,0.0134696960449219,-0.3723304271698,-0.660809934139252,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431, --0.420463636517525,-0.682044595479965,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.261731175705791,0.211270391941071, -1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807, -1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-0.738990459194355,1.26655244827271,1.06764000654221,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431, --0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365, --1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-1.06108289957047,4.1671097278595e-05, -0.163650870323181,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-1.06437003612518,0.84141793847084,0.424562990665436,-1.30209255218506,0.681211248040199,0.375398635864258,-0.862383862957358,0.426683764904737,0.597152233123779,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431, -0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326, --1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047, -0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023, --1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.68354600667953,0.430448427796364,0.169923663139343,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854, --0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912, --0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.74395287036896,-0.529954386875033,-0.258157923817635,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,-0.444174110889435,-1.52680599689484,0.167733874171972,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.962147414684296,-1.56267940998077,-0.75883275270462,0.76577752828598,-1.23354479670525, --0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.419496715068817,-0.747102489694953,-0.682158470153809,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855 - } - } - Geometry: 2805454334880, "Geometry::Mouth_Lower_Overturn", "Shape" { - Version: 100 - Indexes: *442 { - a: 5883,5884,5886,5888,5890,5892,5894,5902,5903,5904,5917,5918,5922,5924,5929,5930,5933,5936,5938,5939,5940,5941,5942,5947,5979,5980,5981,5982,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6156,6165,6167,6169,6179,6183,6184,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6343,6344,6352,6362,6364,6366,6367,6368,6372,6373,6374,6375,6376,6377,6378,6379,6380,6382,6383,6384,6385,6386,6387,6390,6391,6392,6393,6394,6397,6400,6401,6402,6403,6404,6407,6408,6409,6410,6411,7165,7167,7168,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7240,7241,7242,7243,7244,7247,7331,7361,7362,7363,7364,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7538,7547,7549,7551,7561,7565,7566,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7725,7726,7734,7744,7746,7748,7749,7750,7754,7755,7756,7757,7758,7759,7760,7761,7762,7764,7765,7766,7767,7768,7769,7772,7773,7774,7775,7776,7779,7782,7783,7784,7785,7786,7789,7790,7791,7792,7793,8547,8548,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8590,8591,8592,8593,8594,8595,8596,8597, -8598,8599,8600,8601,8602,8615,8616,8617,8618,8619,8698,8699,8700,8712,8723,8724,8725,8737,8748,8749,8750,8761,8767,8768,8769,8770,8773,8774,8775,8786,8789,8792,8793,8794,8795 - } - Vertices: *1326 { - a: -0.0006238959467737,-0.483419895172119,0.784582138061523,2.68064177362248e-05,-0.472735404968262,1.03938674926758,2.23803235712694e-05,-0.701373100280762,0.987392425537109,2.68065050477162e-05,-0.609458446502686,1.15764713287354,-0.00136933943758777,-0.294312000274658,0.750221252441406,-0.00122776276839431,-0.335236072540283,0.80193042755127,-0.0335820913314819,-0.0693998336791992,0.821723937988281,0,-0.000870704650878906,0.000601768493652344,0,-2.00271606445313e-05,0,-0.0010448438115418,0.0961427688598633,0.558370590209961,0,-0.00478267669677734,0.173303604125977,0,-0.00520133972167969,0.0104713439941406,0,1.81198120117188e-05,0,0,-6.43730163574219e-06,0,0,1.04904174804688e-05,0,0,-2.00271606445313e-05,0,0,-2.09808349609375e-05,0,0,-2.57492065429688e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,2.09808349609375e-05,0,0,3.0517578125e-05,0,0.307615995407104,0.012183666229248,0.415993690490723,0.230115413665771,0.0524640083312988,0.419035911560059,0.114784717559814,0.0134496688842773,0.266748428344727,0.132806062698364,-0.00998735427856445,0.2723388671875,0.331608295440674,0.0357961654663086,0.498334884643555,0.445063352584839,-0.0284843444824219,0.504423141479492,0.451865673065186,-0.0273666381835938,0.56884765625,0.575550317764282,-0.0486178398132324,0.619497299194336,0.498192310333252,-0.114270210266113,0.654051780700684,0.675529956817627,-0.0746269226074219,0.735013008117676,0.512622356414795,-0.227178573608398,0.778054237365723,0.756835699081421,-0.123231410980225,0.874102592468262,0.590872645378113,-0.153339862823486,0.899144172668457,0.402610063552856,-0.183499336242676,0.850724220275879,0.458375930786133,-0.137711048126221,0.86231803894043,0.379595279693604,-0.123825550079346,0.794178009033203,0.437676787376404,-0.201735496520996,0.822293281555176,0.390217542648315,-0.162132263183594,0.833274841308594,0.389851689338684,-0.370441436767578,0.709674835205078,0.163115739822388,-0.133504867553711,0.721637725830078,0.240984797477722, --0.404284477233887,0.679520606994629,-0.0102294683456421,-0.187110900878906,0.746468544006348,0.00102663040161133,-0.44001579284668,0.696071624755859,-0.220902025699615,-0.303369045257568,0.828703880310059,-0.148422718048096,-0.510412693023682,0.752713203430176,-0.211330890655518,-0.455160617828369,0.932422637939453,0.107774257659912,0.0223231315612793,0.292866706848145,0.220107316970825,0.0286107063293457,0.439066886901855,0.330280303955078,-0.00374126434326172,0.522384643554688,0.442702770233154,-0.0462536811828613,0.628232955932617,0.504257440567017,-0.101635932922363,0.747920036315918,0.529944658279419,-0.17549467086792,0.907588958740234,0.344403982162476,-0.262936115264893,0.944353103637695,0.300145626068115,-0.244541168212891,0.880239486694336,0.304213523864746,-0.362518310546875,0.995491981506348,0.145293235778809,-0.434634685516357,0.844383239746094,0.00497567653656006,-0.480399608612061,0.832744598388672,-0.0958244204521179,-0.616430282592773,0.926680564880371,-0.147905707359314,-0.719480991363525,0.976479530334473,0.113415241241455,0.00474834442138672,0.29416561126709,0.255190372467041,0.00689554214477539,0.437051773071289,0.377891778945923,-0.0277585983276367,0.531100273132324,0.492504596710205,-0.0550875663757324,0.65485668182373,0.571025848388672,-0.0798540115356445,0.786896705627441,0.619766473770142,-0.143640041351318,0.939120292663574,0.446822881698608,-0.222053050994873,0.985501289367676,0.372065663337708,-0.211862087249756,0.889538764953613,0.317242503166199,-0.253729343414307,0.990479469299316,0.125524401664734,-0.322347164154053,0.899962425231934,-0.0153677463531494,-0.365593910217285,0.936932563781738,-0.207525074481964,-0.43060302734375,1.00467491149902,-0.18245655298233,-0.59083890914917,1.10133171081543,0.0899574756622314,-0.0726423263549805,0.246062278747559,0.219343900680542,0.0151972770690918,0.376761436462402,0.309159994125366,0.0142383575439453,0.432737350463867,0.358412027359009,-0.00658559799194336,0.440622329711914,0.404325008392334,-0.0593647956848145,0.49611759185791,0.429628610610962, --0.0898027420043945,0.651723861694336,0.43409276008606,-0.0607919692993164,0.841485023498535,0.416836977005005,0.0281238555908203,0.793318748474121,-0.116600394248962,-0.317013263702393,0.814275741577148,-0.0447801947593689,-0.265531063079834,0.755805015563965,0.0808781385421753,-0.305002689361572,0.67192554473877,0.235603928565979,-0.194816589355469,0.75192928314209,0.397628545761108,-0.065192699432373,0.903663635253906,0.112113952636719,0.0129876136779785,0.256590843200684,0.226774930953979,0.0734882354736328,0.402619361877441,0.306519508361816,0.0445065498352051,0.47314453125,0.403445482254028,-0.00309467315673828,0.52286434173584,0.424606800079346,-0.0783476829528809,0.58194637298584,0.434771299362183,-0.191352367401123,0.690985679626465,0.442982912063599,-0.172104835510254,0.830883026123047,0.398187637329102,-0.107427597045898,0.774344444274902,0.462687969207764,-0.155696868896484,0.834476470947266,0.330689311027527,-0.263789176940918,0.722058296203613,0.206771850585938,-0.298539161682129,0.67429256439209,-0.000215470790863037,-0.334412097930908,0.702715873718262,-0.137507021427155,-0.39373254776001,0.769412994384766,0.062671422958374,-0.0635313987731934,0.247284889221191,0.169333457946777,-0.0453190803527832,0.318758964538574,0.398783922195435,-0.0326690673828125,0.712525367736816,0.396896600723267,-0.0866298675537109,0.521881103515625,0.391916513442993,-0.0673789978027344,0.434962272644043,0.35525369644165,-0.0266580581665039,0.405059814453125,0.247511625289917,-0.0408086776733398,0.347761154174805,0.0317386984825134,-0.0511617660522461,0.803583145141602,0.0901289582252502,-0.0642375946044922,0.775375366210938,0.116502642631531,-0.0310211181640625,0.652098655700684,0.279475808143616,0.0553865432739258,0.616022109985352,0.461694478988647,0.150577545166016,0.755233764648438,0.419474363327026,0.060523509979248,0.706240653991699,-0.000616550445556641,-1.09672546386719e-05,0.00286197662353516,0.0113155841827393,-0.0105953216552734,0.00677108764648438,0.0347833633422852,0.00793933868408203,0.0438451766967773,0.0530104637145996, -0.0308732986450195,0.0845990180969238,0.00240802764892578,0.00145053863525391,0.0038752555847168,0.000403881072998047,0.000244140625,0.000649929046630859,0.00334405899047852,0.00201320648193359,0.00538158416748047,0.0111589431762695,-0.0447945594787598,0.148898124694824,0.110037803649902,-0.0960283279418945,0.249149322509766,0.136924266815186,-0.0641469955444336,0.267109870910645,0.185328006744385,-0.0313706398010254,0.319867134094238,0.219977855682373,-0.0344266891479492,0.349639892578125,0.279334306716919,0.00760412216186523,0.417605400085449,0.284247398376465,0.0701198577880859,0.527901649475098,0.288183450698853,0.162148475646973,0.526695251464844,0.282460689544678,0.237651824951172,0.53803825378418,0.190878868103027,0.110481262207031,0.475432395935059,0.123686075210571,0.0638370513916016,0.495452880859375,0.130833029747009,0.0745439529418945,0.55661678314209,0.121218115091324,0.0802669525146484,0.588569641113281,-0.00562644004821777,-0.00175881385803223,0.0427684783935547,-9.17911529541016e-05,-0.0201187133789063,0.090113639831543,0.0795669555664063,-0.0322055816650391,0.095557689666748,0.06854248046875,-0.0415050983428955,0.113206386566162,0.0462279319763184,-0.0177936553955078,0.0680532455444336,0.0592498779296875,-0.0503778457641602,0.124649047851563,0.0308442115783691,-0.0140328407287598,0.0488200187683105,0.05523681640625,-0.0577483177185059,0.12357759475708,0.0478439331054688,-0.0934891700744629,0.0372381210327148,0.0849609375,-0.0468487739562988,0.153185367584229,0.0513992309570313,-0.0509777069091797,0.119544506072998,0.0494537353515625,-0.0573124885559082,0.103248596191406,0.0554943084716797,-0.0707621574401855,0.0431203842163086,0.0771369934082031,-0.0548839569091797,0.084284782409668,0.0722122192382813,-0.0806980133056641,0.0948853492736816,0.0260179042816162,0.00458908081054688,0.0504388809204102,0.0569961071014404,0.0271568298339844,0.0870466232299805,0.00729250907897949,0.00439453125,0.0117344856262207,0.0666840076446533,0.0295734405517578,0.100334167480469,0.139200210571289,0.0803260803222656,0.210864067077637, -0.10620379447937,0.07867431640625,0.132890701293945,0.208542585372925,0.117978096008301,0.25809383392334,0.179176092147827,0.0739545822143555,0.168333053588867,0.0183215141296387,-0.00660324096679688,0.0165004730224609,0.111440181732178,0.0422229766845703,0.0821876525878906,0.207371234893799,0.10316276550293,0.198845863342285,0.0875314474105835,-0.00724983215332031,0.129048347473145,0.0297852754592896,-0.0249452590942383,0.0184307098388672,0.0114630460739136,-0.0107345581054688,0.00685787200927734,0.0114914774894714,-0.0102510452270508,0.00655174255371094,0.122914612293243,-0.0190191268920898,0.19697380065918,0.100697040557861,-0.024968147277832,0.145277976989746,0.060733437538147,-0.0255584716796875,0.0289373397827148,0.0768558382987976,-0.0255584716796875,0.028895378112793,0.00843062996864319,-0.00747299194335938,0.00477504730224609,0.114405691623688,-0.012211799621582,0.201597213745117,0.072242259979248,-0.0190334320068359,0.0219879150390625,0.0680313110351563,-0.085141658782959,0.130546092987061,0.052032470703125,-0.0637950897216797,0.105812072753906,3.56697705683473e-06,0.236507415771484,-0.359658241271973,0.00133752822875977,-0.023015022277832,0.0334396362304688,0.00177645683288574,-0.00902366638183594,0.0387411117553711,0,0,0.020665168762207,0,0,0.0430173873901367,0,0,0.0644979476928711,0,-1.43051147460938e-06,0.0827083587646484,0,0.000646591186523438,0.117155075073242,-0.000517606735229492,0.00113916397094727,0.108170509338379,0.0597255229949951,0.461997985839844,0.105563163757324,-0.0189690589904785,0.551415920257568,-0.148783683776855,-0.0419668555259705,0.358753204345703,-0.274959564208984,-0.0328803658485413,0.222307682037354,-0.319223403930664,-0.0116217434406281,0.232020854949951,-0.340732574462891,0.199231624603271,-0.0163378715515137,0.240839004516602,0.400888919830322,0.00920724868774414,0.3743896484375,0.597562551498413,-0.0263504981994629,0.476189613342285,0.779067754745483,-0.028954029083252,0.594712257385254,0.90300440788269,-0.0386900901794434,0.725760459899902,0.952827453613281,-0.0689578056335449, -0.879892349243164,0.756719589233398,-0.10551118850708,0.907960891723633,0.544144034385681,-0.0625224113464355,0.746904373168945,0.505744814872742,-0.00129890441894531,0.757048606872559,0.245566725730896,-0.0383577346801758,0.54488468170166,0.0620806217193604,-0.0190677642822266,0.428594589233398,-0.222905576229095,-0.105296611785889,0.408242225646973,-0.212205648422241,-0.221711158752441,0.495352745056152,2.68064450210659e-05,-0.248584270477295,0.524032592773438,0.213632106781006,-0.0829963684082031,0.179266929626465,0.428929328918457,-0.0660977363586426,0.323993682861328,0.651111125946045,-0.0771279335021973,0.450858116149902,0.850667476654053,-0.0561413764953613,0.580391883850098,0.999810218811035,-0.0633559226989746,0.676947593688965,1.04620611667633,-0.0759425163269043,0.821157455444336,0.901939034461975,0.105040550231934,0.724281311035156,0.709603548049927,0.157584190368652,0.493256568908691,0.631578326225281,0.454818725585938,0.265034675598145,0.277613639831543,0.462442874908447,0.0330371856689453,0.102648556232452,0.34022331237793,-0.106995582580566,-0.137146294116974,0.253963470458984,-0.198402404785156,-0.203539609909058,0.125116348266602,-0.228947639465332,2.68065705313347e-05,0.115657329559326,-0.23289680480957,0,-0.00301742553710938,-0.00257253646850586,0,-0.00473213195800781,-0.00408458709716797,0,-0.000291824340820313,-0.000249862670898438,0.00416100025177002,0.00414276123046875,0.000548362731933594,0.00358211994171143,0.00364112854003906,0.000463485717773438,0,-2.00271606445313e-05,0,0,-1.04904174804688e-05,0,-0.307246685028076,0.0117406845092773,0.416439056396484,-0.230122566223145,0.052579402923584,0.418962478637695,-0.11487889289856,0.0136890411376953,0.266660690307617,-0.132911682128906,-0.0100302696228027,0.272100448608398,-0.33186936378479,0.0359091758728027,0.49791145324707,-0.444702863693237,-0.0286378860473633,0.504392623901367,-0.452150106430054,-0.0274181365966797,0.568637847900391,-0.576723337173462,-0.0483303070068359,0.615510940551758,-0.498064041137695,-0.114713191986084,0.654589653015137, --0.676246881484985,-0.0753927230834961,0.728410720825195,-0.511785745620728,-0.228606224060059,0.778693199157715,-0.755295753479004,-0.124358654022217,0.871062278747559,-0.589671850204468,-0.153394222259521,0.898089408874512,-0.402669429779053,-0.183751583099365,0.850914001464844,-0.457761764526367,-0.137688636779785,0.861245155334473,-0.379121541976929,-0.124040603637695,0.79401969909668,-0.437321901321411,-0.203742980957031,0.821797370910645,-0.38908863067627,-0.161987781524658,0.832240104675293,-0.389018535614014,-0.370156288146973,0.710299491882324,-0.161711812019348,-0.1330885887146,0.72097110748291,-0.238088011741638,-0.403781890869141,0.677477836608887,0.0112818479537964,-0.186862468719482,0.746562957763672,0.00159144401550293,-0.434976577758789,0.69677734375,0.221327722072601,-0.303234100341797,0.829916954040527,0.148475646972656,-0.510854244232178,0.752106666564941,0.211548298597336,-0.455183506011963,0.933463096618652,-0.107855081558228,0.0222873687744141,0.292641639709473,-0.220252513885498,0.0287842750549316,0.438804626464844,-0.330600261688232,-0.00391435623168945,0.521749496459961,-0.442610025405884,-0.0461411476135254,0.627749443054199,-0.504199743270874,-0.101494789123535,0.748332977294922,-0.529829502105713,-0.175447940826416,0.908385276794434,-0.343616962432861,-0.262941837310791,0.944035530090332,-0.299153804779053,-0.244632244110107,0.879868507385254,-0.303041815757751,-0.362663269042969,0.995268821716309,-0.144462466239929,-0.434739589691162,0.84422779083252,-0.00438094139099121,-0.480259895324707,0.83219051361084,0.0959926247596741,-0.616256713867188,0.926619529724121,0.14783987402916,-0.720043659210205,0.975674629211426,-0.113515615463257,0.00469160079956055,0.293926239013672,-0.255096912384033,0.00692892074584961,0.436952590942383,-0.37779712677002,-0.0276045799255371,0.530763626098633,-0.492115020751953,-0.0546040534973145,0.653114318847656,-0.570716381072998,-0.0798158645629883,0.785598754882813,-0.61935830116272,-0.143598556518555,0.938422203063965,-0.446003198623657,-0.22203540802002,0.984624862670898, --0.371169567108154,-0.211858749389648,0.888848304748535,-0.315858960151672,-0.253742694854736,0.989869117736816,-0.124307155609131,-0.322128295898438,0.899797439575195,0.0159332752227783,-0.365464687347412,0.936792373657227,0.20783531665802,-0.430492401123047,1.00551223754883,0.182539165019989,-0.590809345245361,1.10149765014648,-0.0898528099060059,-0.0721368789672852,0.246136665344238,-0.219187259674072,0.0156345367431641,0.376684188842773,-0.309062242507935,0.0144166946411133,0.432540893554688,-0.358113050460815,-0.00653409957885742,0.439970970153809,-0.403997659683228,-0.0595364570617676,0.495634078979492,-0.429223537445068,-0.0901346206665039,0.651371955871582,-0.433570861816406,-0.0613255500793457,0.840755462646484,-0.415909767150879,0.0272741317749023,0.792238235473633,0.115644991397858,-0.305534839630127,0.804839134216309,0.0437561869621277,-0.262321949005127,0.754545211791992,-0.0796886682510376,-0.307677745819092,0.670780181884766,-0.23516833782196,-0.195967674255371,0.751559257507324,-0.395434379577637,-0.0673489570617676,0.901754379272461,-0.112032175064087,0.0132298469543457,0.256518363952637,-0.22693133354187,0.0736517906188965,0.402645111083984,-0.306312322616577,0.0448875427246094,0.472867012023926,-0.403532981872559,-0.0031123161315918,0.522571563720703,-0.424099922180176,-0.0790133476257324,0.582021713256836,-0.434191226959229,-0.192093372344971,0.691287994384766,-0.442966222763062,-0.17289400100708,0.831162452697754,-0.397560596466064,-0.1077880859375,0.773981094360352,-0.461665749549866,-0.156483173370361,0.834136962890625,-0.330043077468872,-0.263080596923828,0.722240447998047,-0.20345401763916,-0.298011779785156,0.671525001525879,-0.000908136367797852,-0.331383228302002,0.704668998718262,0.137660443782806,-0.391825199127197,0.769172668457031,-0.0627062320709229,-0.0633707046508789,0.247502326965332,-0.169697523117065,-0.0455136299133301,0.319358825683594,-0.397958993911743,-0.0330820083618164,0.711591720581055,-0.396037578582764,-0.0870242118835449,0.521835327148438,-0.392024993896484,-0.0674591064453125, -0.435357093811035,-0.355955123901367,-0.026641845703125,0.405994415283203,-0.248226404190063,-0.0410337448120117,0.34861946105957,-0.0353135466575623,-0.0610971450805664,0.797797203063965,-0.0981817841529846,-0.0566549301147461,0.772909164428711,-0.115908741950989,-0.0337028503417969,0.651735305786133,-0.279147505760193,0.0543794631958008,0.615731239318848,-0.461770534515381,0.150187492370605,0.75670337677002,-0.418741703033447,0.0599627494812012,0.705353736877441,0.000616550445556641,-1.09672546386719e-05,0.00286197662353516,-0.0113155841827393,-0.0105953216552734,0.00677108764648438,-0.034782886505127,0.00793933868408203,0.0438451766967773,-0.0530104637145996,0.0308732986450195,0.0845990180969238,-0.00240802764892578,0.00145053863525391,0.0038752555847168,-0.000403881072998047,0.000244140625,0.000649929046630859,-0.00334405899047852,0.00201320648193359,0.00538158416748047,-0.0111589431762695,-0.0447945594787598,0.148874282836914,-0.110091209411621,-0.0960607528686523,0.249238014221191,-0.137029647827148,-0.0641632080078125,0.267210006713867,-0.185422420501709,-0.0313668251037598,0.31999683380127,-0.22001314163208,-0.0344514846801758,0.349737167358398,-0.278754711151123,0.00737190246582031,0.417606353759766,-0.283939599990845,0.0698795318603516,0.527624130249023,-0.28774881362915,0.161848068237305,0.526434898376465,-0.282467126846313,0.237576484680176,0.538200378417969,-0.19083297252655,0.110335350036621,0.475393295288086,-0.1236172914505,0.063450813293457,0.495586395263672,-0.131933689117432,0.0756320953369141,0.556674003601074,-0.121730893850327,0.0788602828979492,0.588338851928711,0.00562644004821777,-0.00175881385803223,0.0427684783935547,9.08374786376953e-05,-0.0201187133789063,0.090113639831543,-0.0795669555664063,-0.0322055816650391,0.095557689666748,-0.06854248046875,-0.0415053367614746,0.113208293914795,-0.0462431907653809,-0.0177960395812988,0.0680675506591797,-0.0592498779296875,-0.0503778457641602,0.124649047851563,-0.0308442115783691,-0.0140328407287598,0.0488219261169434,-0.05523681640625,-0.0577483177185059, -0.123578071594238,-0.0478439331054688,-0.0934891700744629,0.0372376441955566,-0.0849609375,-0.0468487739562988,0.153185367584229,-0.0513992309570313,-0.0509777069091797,0.119544506072998,-0.0494537353515625,-0.0573124885559082,0.103248596191406,-0.0554943084716797,-0.0707659721374512,0.0431270599365234,-0.0771369934082031,-0.0548830032348633,0.084284782409668,-0.0722122192382813,-0.0806980133056641,0.0948853492736816,-0.0260255336761475,0.00456714630126953,0.0504980087280273,-0.0569961071014404,0.0271568298339844,0.0870447158813477,-0.00729250907897949,0.00439453125,0.0117344856262207,-0.0666844844818115,0.0295734405517578,0.100334167480469,-0.139220476150513,0.0802860260009766,0.210954666137695,-0.10620379447937,0.0786733627319336,0.13288688659668,-0.208564281463623,0.117947578430176,0.258213043212891,-0.179176092147827,0.0739536285400391,0.168329238891602,-0.0183215141296387,-0.00660324096679688,0.0165004730224609,-0.111440181732178,0.0422220230102539,0.0821866989135742,-0.207382917404175,0.103168487548828,0.198872566223145,-0.087537407875061,-0.00725269317626953,0.12905216217041,-0.0297852754592896,-0.0249452590942383,0.0184307098388672,-0.0114630460739136,-0.0107345581054688,0.00685787200927734,-0.0114914774894714,-0.0102510452270508,0.00655174255371094,-0.122888684272766,-0.019012451171875,0.196959495544434,-0.100705027580261,-0.0249691009521484,0.145283699035645,-0.060733437538147,-0.0255584716796875,0.0289373397827148,-0.0768558382987976,-0.0255584716796875,0.028895378112793,-0.00843062996864319,-0.00747299194335938,0.00477504730224609,-0.114439010620117,-0.0122194290161133,0.201729774475098,-0.072242259979248,-0.0190334320068359,0.0219879150390625,-0.0680313110351563,-0.085141658782959,0.130546092987061,-0.052032470703125,-0.0637950897216797,0.105812072753906,-0.00135159492492676,-0.023015022277832,0.0333175659179688,-0.00176787376403809,-0.00902366638183594,0.038487434387207,0,0,0.020289421081543,0,0,0.0427331924438477,0,0,0.0644845962524414,0,-1.43051147460938e-06,0.0827865600585938,0,0.000643730163574219, -0.116901397705078,0.000517606735229492,0.00113868713378906,0.108073234558105,-0.0604430437088013,0.286600589752197,0.104964256286621,0.0183802843093872,0.376058101654053,-0.149049758911133,0.0418922305107117,0.183372497558594,-0.27491569519043,0.0326692461967468,0.049558162689209,-0.318086624145508,0.0114204883575439,0.234650135040283,-0.339345932006836,-0.199363231658936,-0.0164523124694824,0.241300582885742,-0.399863243103027,0.00961208343505859,0.375020980834961,-0.598181486129761,-0.0253214836120605,0.473767280578613,-0.780546426773071,-0.0288467407226563,0.589520454406738,-0.904545307159424,-0.039888858795166,0.719235420227051,-0.952639579772949,-0.0720067024230957,0.872550964355469,-0.756174802780151,-0.107033729553223,0.905914306640625,-0.544140338897705,-0.0624775886535645,0.745464324951172,-0.505107879638672,-0.00108432769775391,0.756327629089355,-0.244449019432068,-0.0382628440856934,0.546135902404785,-0.0610541105270386,-0.0189766883850098,0.429902076721191,0.223538219928741,-0.104866027832031,0.40395450592041,0.212110221385956,-0.221365928649902,0.486811637878418,-0.213610172271729,-0.0825672149658203,0.179241180419922,-0.430183410644531,-0.0647330284118652,0.324979782104492,-0.653375625610352,-0.0747466087341309,0.45216178894043,-0.854207515716553,-0.0541300773620605,0.582310676574707,-1.0027003288269,-0.0624508857727051,0.678610801696777,-1.04634809494019,-0.0789356231689453,0.819728851318359,-0.900554180145264,0.0989980697631836,0.721657752990723,-0.709150791168213,0.157218933105469,0.493406295776367,-0.634402513504028,0.452764987945557,0.261700630187988,-0.279871463775635,0.461830139160156,0.0318374633789063,-0.102716863155365,0.340213775634766,-0.107175827026367,0.138886213302612,0.254633903503418,-0.19809627532959,0.203883975744247,0.125581741333008,-0.228060722351074,0,-0.00302028656005859,-0.00257349014282227,0,-0.004730224609375,-0.00407981872558594,0,-0.000291824340820313,-0.000243186950683594,-0.00416100025177002,0.00414276123046875,0.000548362731933594,-0.00358211994171143,0.00364112854003906, -0.000463485717773438,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-1.96695327758789e-06,0,0,-2.5331974029541e-06,0,0,5.24520874023438e-06,0,0,2.68220901489258e-06,0,0,1.07288360595703e-06,0,0,2.05636024475098e-06,0,0,2.14576721191406e-06,0,0,-1.60932540893555e-06,0,0,3.87430191040039e-06,0,0,-2.17556953430176e-06,0,0,-3.26335430145264e-06,0,0,5.39422035217285e-06,0,0,-3.12924385070801e-06,0,0,-1.57952308654785e-06,0,0,-2.44379043579102e-06,0,0,1.43051147460938e-06,0,0,-2.98023223876953e-06,0,0,2.41398811340332e-06,0,0,-1.02818012237549e-06,0,0,2.83122062683105e-06,0,0,-5.27501106262207e-06,0,0,2.95042991638184e-06,0,0,1.46031379699707e-06,0 - } - Normals: *1326 { - a: -0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.697922846870561,0.218657426536083,0.243624031543732,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.37752080016508,-0.215317510068417,-1.91366750001907,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465, -0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116, -1.00598068535328,-0.406233571004122,-0.586036771535873,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517, -0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.00140410661697388,0.47925940901041,-1.30150604248047,0.317191332578659,0.422314759343863,-1.34763860702515,0.221148788928986,0.310832679271698,-1.26058748364449,0.676499664783478,0.394543980248272,-1.38882184028625,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,0.376216888427734,-0.614558279514313,-0.556118197739124,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328, -0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812, --0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.998503710208251,-0.881174180656672,0.356345940381289,-0.768468946218491,0.565167635679245,0.388752035796642, --1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983, --0.992238243576139,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547, --0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-1.15227884054184,0.806445047259331,0.284897208213806,-1.06437003612518,0.84141793847084,0.424562990665436,-1.30209255218506,0.681211248040199,0.375398635864258,-0.862383862957358,0.426683764904737,0.597152233123779,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494, --0.364190399646759,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.68354600667953,0.430448427796364,0.169923663139343,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.730625748634338,0.771656796336174,0.32690155506134,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,1.0665990114212, -0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404, --0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.74395287036896,-0.529954386875033,-0.258157923817635,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,-0.444174110889435,-1.52680599689484,0.167733874171972,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.962147414684296,-1.56267940998077,-0.75883275270462,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.419496715068817,-0.747102489694953,-0.682158470153809,0.899685729295015,-0.94619420170784,-0.482682764530182,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855 - } - } - Geometry: 2805454332576, "Geometry::Mouth_Pout", "Shape" { - Version: 100 - Indexes: *1940 { - a: 636,643,648,669,672,681,700,703,708,711,716,719,982,989,993,1014,1017,1025,1044,1047,1052,1055,1060,1063,1359,1367,1436,1438,1441,1457,1460,1503,1509,1523,1531,1545,1553,2223,2231,2301,2302,2306,2321,2324,2368,2373,2387,2395,2409,2417,3065,3110,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6171,6173,6177,6178,6179,6182,6183,6184,6185,6186,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286, -6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6396,6397,6400,6401,6402,6403,6404,6407,6408,6409,6410,6411,6414,6415,6418,6419,6420,6422,6423,6424,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804, -6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7167,7168,7169,7170,7171,7172,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7553,7555,7559,7560,7561,7564,7565,7566,7567,7568,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604, -7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7778,7779,7782,7783,7784,7785,7786,7789,7790,7791,7792,7793,7796,7797,7800,7801,7802,7804,7805,7806,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092, -8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8547,8548,8549,8550,8551,8552,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *5820 { - a: -0.0280719995498657,-0.00618362426757813,0.0348062515258789,-0.0267033576965332,-0.00023961067199707,0.0013580322265625,-0.00365817546844482,-0.000661611557006836,0.00375080108642578,-0.0205808877944946,-0.00344133377075195,0.0193700790405273,-0.0153587460517883,0,0,-0.0218974351882935,-0.00449442863464355,0.0252981185913086,-0.00585612654685974,0,0,-0.0248583555221558,0,0,-0.0242902040481567,-0.00165748596191406,0.00932979583740234,-0.0203883647918701,-0.00468873977661133,0.0263910293579102,-0.0285946130752563,-0.00603437423706055,0.0339651107788086,-0.0121395587921143,-0.00240039825439453,0.0135116577148438,0.0280829668045044,-0.00618553161621094,0.0348167419433594,0.0267101526260376,-0.000240564346313477,0.00136280059814453,0.00365793704986572,-0.000661611557006836,0.00375080108642578,0.0205880403518677,-0.00344395637512207,0.0193853378295898,0.015363872051239,0,0,0.0218991041183472,-0.00449466705322266,0.025299072265625,0.00585946440696716,0,0,0.024867832660675,0,0,0.024297833442688,-0.00165963172912598,0.00934219360351563,0.0203932523727417,-0.00468969345092773,0.0263967514038086,0.0285981893539429,-0.00603485107421875,0.0339679718017578,0.0121399164199829,-0.00240039825439453,0.0135107040405273,-0.0207590460777283,0,0,-0.017116904258728,-0.00345778465270996,0.0194625854492188,-0.0196256637573242,-0.00417399406433105,0.023493766784668,-0.0257688760757446,-0.000865697860717773,0.00487232208251953,-0.00230244547128677,0,0,-0.000987887382507324,-0.000153541564941406,0.000870704650878906,-0.029505729675293,-0.00633907318115234,0.035679817199707,-0.00988286733627319,0,0,-0.0267400741577148,0,0,-0.0225288867950439,-0.00255608558654785,0.0143871307373047,-0.0244241952896118,-0.00557994842529297,0.0314064025878906,-0.0258880853652954,-0.0053861141204834,0.0303163528442383,-0.00752520561218262,-0.00144052505493164,0.00810718536376953,0.0207646489143372,0,0,0.0171178579330444,-0.00345778465270996,0.0194625854492188,0.0196279287338257,-0.00417518615722656,0.0235013961791992,0.0257765650749207,-0.000867366790771484, -0.00488185882568359,0.00444768369197845,0,0,0.000987648963928223,-0.000153541564941406,0.000870704650878906,0.0295100212097168,-0.00633978843688965,0.0356836318969727,0.00988760590553284,0,0,0.0267477631568909,0,0,0.0225363969802856,-0.00255846977233887,0.0144014358520508,0.0244362354278564,-0.00558209419250488,0.0314188003540039,0.0258908271789551,-0.0053865909576416,0.0303192138671875,0.00752508640289307,-0.00144028663635254,0.00810623168945313,0.00230558216571808,0,0,-0.00444579124450684,0,0,0,-0.0486528873443604,-0.00214290618896484,0,-0.0342142581939697,-0.000125885009765625,-7.74058571550995e-06,-0.0936927795410156,1.14999961853027,1.85562385013327e-06,0.766011238098145,1.01820468902588,-2.38652910411474e-06,-0.558505058288574,0.627824783325195,-1.73602165887132e-06,-0.418153762817383,1.42077732086182,0,0.758654117584229,1.27795505523682,0,-0.80862283706665,1.05367279052734,-2.72628744824033e-06,0.206398010253906,1.39727020263672,-1.52428128785687e-06,-0.828648567199707,1.42115211486816,0,0.305794715881348,0.890608787536621,0,0.0880327224731445,0.57000732421875,2.00947033590637e-06,0.624016761779785,0.891023635864258,-2.48992660090153e-06,-0.289889335632324,0.685052871704102,-1.70393582266115e-06,-0.072664737701416,0.515542030334473,0,0.337884902954102,0.498977661132813,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,0.171541213989258,0.184432029724121,-1.46215575114184e-06,-0.0434048175811768,0.0951452255249023,-1.69886425283039e-06,-0.0649046897888184,0.25960636138916,-2.3299508029595e-06,-0.101208686828613,0.246250152587891,-2.05451578949578e-06,-0.087007999420166,0.392825126647949,-1.1137086630697e-06,-0.0405027866363525,-4.67300415039063e-05,0,-0.0298962593078613,-0.00133037567138672,0,-0.00128507614135742,0.0112953186035156,0,1.15633010864258e-05,0.00525569915771484,0,-1.19209289550781e-06,0.000155448913574219,0,-0.0245873928070068,0.00817298889160156,0,-0.0373220443725586,0.00341796875,0,3.03983688354492e-06, -0,0,0.223786354064941,-0.00894927978515625,-1.07656524050981e-06,0.13687801361084,-0.00559902191162109,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0.0165462493896484,-0.0837588310241699,-0.0032196044921875,0.0105196833610535,-0.101094245910645,-0.00390434265136719,0.138515681028366,-0.0743870735168457,1.12447166442871,0.0902243405580521,0.72950553894043,1.01178073883057,1.24612236022949,-0.0643234252929688,1.82181930541992,1.1265435218811,0.120970249176025,1.86682319641113,0.910613536834717,0.141136646270752,1.69851303100586,0.926835298538208,-0.113376140594482,1.68156051635742,0.545521855354309,0.405107021331787,1.37164402008057,0.721802949905396,-0.107110500335693,1.51807022094727,0.503060102462769,0.665344715118408,1.11981296539307,0.61636883020401,-0.0986113548278809,1.29601955413818,0.368877649307251,0.734985828399658,1.08320903778076,0.490359008312225,-0.119518280029297,1.20316314697266,0.184995889663696,0.810925006866455,1.01382160186768,0.311962425708771,-0.0695981979370117,1.17402458190918,0.702011585235596,-0.131602764129639,1.53373908996582,0.697089195251465,0.216283321380615,1.50236988067627,1.12633979320526,0.0440335273742676,1.7389965057373,1.27531814575195,-0.0674862861633301,1.79403400421143,1.12399733066559,-0.0265288352966309,1.71488475799561,1.30372285842896,-0.0648908615112305,1.79680442810059,1.06831288337708,-0.102293014526367,1.73597621917725,1.27602577209473, --0.0603981018066406,1.81012439727783,1.01820349693298,-0.203010559082031,1.78181076049805,1.24373161792755,-0.0573902130126953,1.84066867828369,0.920946598052979,-0.12823486328125,1.74450397491455,0.876150608062744,-0.205070972442627,1.75480270385742,0.725940704345703,-0.17232608795166,1.59896183013916,0.707846283912659,-0.216055870056152,1.64770698547363,0.613118886947632,-0.33568286895752,1.35220050811768,0.534717798233032,-0.177016258239746,1.48744869232178,0.540050148963928,-0.457663059234619,1.03502655029297,0.295615553855896,-0.230406284332275,1.33524990081787,0.388238668441772,-0.548883438110352,0.830607414245605,0.20011568069458,-0.323071002960205,1.36502742767334,0.222888350486755,-0.622731685638428,0.699822425842285,0.1039137840271,-0.357163906097412,1.43537616729736,0.0697868466377258,-0.629575729370117,0.646885871887207,0.0426046550273895,-0.404194831848145,1.45178413391113,0.0795712172985077,0.729808807373047,1.25760173797607,0.154894828796387,0.716662406921387,1.2846565246582,0.255991578102112,0.656645774841309,1.3705940246582,0.254681706428528,0.524643898010254,1.49331760406494,0.422273278236389,0.306268692016602,1.57961940765381,0.67939305305481,0.150420188903809,1.58522987365723,0.923160791397095,0.0754485130310059,1.73225975036621,1.18590939044952,0.081200122833252,1.88308906555176,1.16648304462433,0.0166134834289551,1.81193828582764,1.16310000419617,-0.0437769889831543,1.79360294342041,1.1224000453949,-0.105210781097412,1.81616497039795,1.08792948722839,-0.175295829772949,1.86599254608154,0.89497184753418,-0.201094150543213,1.74888134002686,0.776916265487671,-0.230991840362549,1.65040302276611,0.525286912918091,-0.392139911651611,1.40890693664551,0.198050737380981,-0.59315013885498,1.15940856933594,0.0166076421737671,-0.720341205596924,1.10639381408691,-0.0180944204330444,-0.81830883026123,1.13427066802979,-0.0686206519603729,-0.844464778900146,1.09683227539063,0.10246416926384,0.206964015960693,1.37886333465576,0.193633079528809,0.229889392852783,1.47779846191406,0.340832531452179,0.236762046813965, -1.56236267089844,0.364490389823914,0.0951275825500488,1.58118152618408,0.509030818939209,-0.0147414207458496,1.63594245910645,0.66141414642334,-0.00132989883422852,1.61590766906738,0.90923011302948,-0.000475406646728516,1.73818302154541,1.19344258308411,0.0318593978881836,1.92363357543945,1.20765256881714,-0.0171880722045898,1.86989784240723,1.22565865516663,-0.0581207275390625,1.86256408691406,1.19155836105347,-0.0881271362304688,1.88432121276855,1.15637850761414,-0.116644859313965,1.93814945220947,0.876046895980835,-0.153602123260498,1.77949714660645,0.707821011543274,-0.194891452789307,1.6545991897583,0.453423976898193,-0.319567680358887,1.49263000488281,0.14663553237915,-0.497655868530273,1.28659248352051,-0.0270283222198486,-0.670139789581299,1.30507659912109,0.0572209358215332,-0.786372661590576,1.36337184906006,0.0192448198795319,-0.843400478363037,1.38870429992676,0.0473075956106186,0.265225410461426,0.796100616455078,0.133938133716583,0.196861267089844,0.671639442443848,0.304033517837524,0.142562389373779,0.778558731079102,0.326179027557373,0.0737261772155762,0.810773849487305,0.478107810020447,0.213042736053467,0.874772071838379,0.464175343513489,0.320868015289307,0.959881782531738,0.55970573425293,0.322802066802979,1.15174007415771,0.818610191345215,0.256730079650879,1.35046768188477,0.907676935195923,0.168004512786865,1.32721328735352,0.895837783813477,0.0977802276611328,1.32287979125977,0.858353853225708,0.0343890190124512,1.36650276184082,0.805769443511963,0.0129685401916504,1.48892211914063,0.696508646011353,0.0144557952880859,1.57327938079834,0.620182514190674,0.0508813858032227,1.48771381378174,0.0330678820610046,0.102782726287842,0.594552993774414,0.151700735092163,0.0968108177185059,0.761104583740234,0.287907481193542,0.00344944000244141,0.957118034362793,0.397139549255371,-0.0295872688293457,1.18705272674561,0.497955918312073,0.0176281929016113,1.27950286865234,0.0695285946130753,0.634988784790039,0.9066162109375,0.18825101852417,0.687826633453369,0.897958755493164,0.372314631938934,0.601865291595459, -0.962961196899414,0.485832810401917,0.570577621459961,1.07892227172852,0.560514688491821,0.396418571472168,1.26258087158203,0.658795595169067,0.376108646392822,1.36605548858643,0.767912268638611,0.383140563964844,1.53935813903809,0.911657571792603,0.333117961883545,1.65134239196777,0.893252611160278,0.170229434967041,1.56511688232422,0.916664123535156,0.0302639007568359,1.54444694519043,0.899690389633179,-0.0672607421875,1.58188438415527,0.851233720779419,-0.190281391143799,1.64876079559326,0.77498459815979,-0.220962047576904,1.68405342102051,0.662224650382996,-0.190363883972168,1.57850170135498,0.597487807273865,-0.181910037994385,1.3675537109375,0.562122821807861,-0.177636623382568,1.16014194488525,0.385238766670227,-0.220780372619629,0.92536449432373,0.214353263378143,-0.313804149627686,0.766253471374512,0.0852431058883667,-0.324009418487549,0.700218200683594,0.0872533172369003,-0.0794820785522461,0.510658264160156,0.224404186010361,-0.120526790618896,0.55238151550293,0.221068978309631,-0.0842885971069336,0.449455261230469,0.238696575164795,-0.114346504211426,0.351573944091797,0.21546733379364,0.0376663208007813,0.477810859680176,0.12018346786499,0.0159120559692383,0.536430358886719,0.309984445571899,0.160501956939697,0.817009925842285,0.523997783660889,0.139523029327393,0.944397926330566,0.634828805923462,0.218649387359619,1.37127017974854,0.765333414077759,0.149158954620361,1.32050037384033,0.851195096969604,0.122529983520508,1.26589393615723,0.935102701187134,0.0849928855895996,1.25625610351563,0.685797452926636,0.0564637184143066,1.00169372558594,0.107610553503036,0.315487861633301,0.579801559448242,0.23013037443161,0.310166358947754,0.744465827941895,0.233587145805359,0.281110763549805,0.930473327636719,0.190808534622192,0.361569404602051,0.96785831451416,0.333194375038147,0.386055469512939,1.0456075668335,0.521645069122314,0.278665065765381,1.2666187286377,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06, -0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0.00485467910766602,-0.00187122821807861,0.0108599662780762,0.0152664184570313,-0.00589656829833984,0.0341510772705078,0.0233654975891113,-0.00732064247131348,0.0498008728027344,0.0769968032836914,-0.0221179723739624,0.161165237426758,0.00980615615844727,-0.00103139877319336,0.0179224014282227,0.041248083114624,-0.00496888160705566,0.0762901306152344,0,6.07967376708984e-06,0,0.00861108303070068,4.05311584472656e-06,0.00151920318603516,0,4.58955764770508e-06,0,0.000308394432067871,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0.052466869354248,-0.0188095569610596,0.115289688110352,0.016303539276123,-0.00622570514678955,0.0363674163818359,0.0680069923400879,-0.0140891075134277,0.134384155273438,0.0190887451171875,-0.00421178340911865,0.0381088256835938,0.0141706466674805,-0.000128865242004395,0.0239048004150391,0.00261211395263672,-1.54972076416016e-06,0.00436687469482422,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0.000101685523986816,0.000138282775878906,0.000552177429199219,0.00581526756286621,0.00790309906005859,0.0315942764282227,0.000327110290527344,0.000444412231445313,0.00177669525146484,0.0438611507415771,0.0485687255859375,0.22911548614502,0.00112676620483398,0.0005340576171875,0.00529193878173828,0.0807013511657715,0.0608291625976563,0.399410247802734,0.000780105590820313,-0.0118722915649414,0.109848499298096,0.0100545883178711,0.00371599197387695,0.0295639038085938,0,-7.62939453125e-06,0,0.000254392623901367,0.000120162963867188,0.00119495391845703,0.0429458618164063,0.0169801712036133,0.275956153869629,0.00176310539245605, -0.00239658355712891,0.00957870483398438,0.0143945217132568,0.0164728164672852,0.0756363868713379,0.0273580551147461,0.0176734924316406,0.132405281066895,0.0156359672546387,0.00754928588867188,0.0735516548156738,0.00199079513549805,0.000943183898925781,0.00935077667236328,0.113381624221802,-0.0200455188751221,0.132864952087402,0.0991657972335815,-0.0510165691375732,0.113883018493652,0.106261014938354,-0.0570931434631348,0.116336822509766,0.118895769119263,-0.0243780612945557,0.137514114379883,0.086111307144165,-0.0726714134216309,0.0723152160644531,0.0741567611694336,-0.0604960918426514,0.0635910034179688,0.0571126937866211,-0.0602517127990723,0.00146293640136719,0.0790995359420776,-0.0831136703491211,0.00491428375244141,0.0152920484542847,-0.03208327293396,-0.000972747802734375,0.0458744764328003,-0.0743918418884277,-0.00433826446533203,0.119079113006592,-0.0216083526611328,0.141249656677246,0.114765763282776,-0.0197875499725342,0.135354042053223,0.0855660438537598,-0.00256466865539551,0.222524642944336,0.0654759407043457,-0.00212526321411133,0.275635719299316,0.293443202972412,-0.208890914916992,0.483055114746094,0.470399141311646,-0.144723415374756,0.922346115112305,0.542214155197144,0.00242328643798828,1.00513553619385,0.586232423782349,0.0652875900268555,0.968788146972656,0.588658094406128,0.205205917358398,1.03964614868164,0.424860239028931,0.27068567276001,0.983441352844238,0.321038722991943,0.333558082580566,0.829522132873535,0.194063186645508,0.435211181640625,0.597278594970703,0.0884238481521606,0.317569732666016,0.382608413696289,0.0415083169937134,0.193239212036133,0.266154289245605,0.026027500629425,0.169173240661621,0.198989868164063,0.0106138586997986,0.179964065551758,0.204939842224121,0.151599496603012,-0.152306318283081,0.212970733642578,0.109981834888458,-0.108041763305664,0.314367294311523,0.167576938867569,-0.120150804519653,0.386052131652832,0.196993082761765,-0.163892269134521,0.236108779907227,0.120401561260223,-0.133008718490601,0.177053451538086,0.0608351230621338,-0.0759496688842773,0.249595642089844, -0.100803822278976,-0.117209672927856,0.121546745300293,0.0489711910486221,-0.0690279006958008,0.132835388183594,0.0799372792243958,-0.0945398807525635,0.0521879196166992,0.0516102313995361,-0.0868470668792725,0.0331611633300781,0.0650304555892944,-0.0748016834259033,0.0274763107299805,0.0433295965194702,-0.0903770923614502,0.00199127197265625,0.0659658908843994,-0.0449938774108887,0.0176334381103516,0.0515621900558472,-0.0639824867248535,-0.00144767761230469,0.0951215028762817,-0.0478179454803467,0.0338058471679688,0.0903251171112061,-0.0737097263336182,0.0144643783569336,0.149954915046692,-0.0657634735107422,0.0734472274780273,0.131759643554688,-0.0771353244781494,0.0736293792724609,0.17966103553772,-0.0652973651885986,0.0791463851928711,0.184612393379211,-0.0665688514709473,0.0959568023681641,0.139828979969025,-0.0384652614593506,0.0552396774291992,0.189348578453064,-0.0256514549255371,0.204097747802734,0.252066493034363,-0.108272790908813,0.402693748474121,0.194252789020538,-0.113952159881592,0.167401313781738,0.146708607673645,-0.0423238277435303,0.050537109375,0.177260160446167,-0.053248405456543,0.065333366394043,0.147740840911865,-0.134284257888794,0.245786666870117,0.112267136573792,-0.112709760665894,0.21419620513916,0.0920431613922119,-0.103140354156494,0.13982105255127,0.0751029849052429,-0.0936293601989746,0.0478811264038086,0.0601911544799805,-0.0762853622436523,0.0184421539306641,0.0640955567359924,-0.0502111911773682,0.0109090805053711,0.0968102216720581,-0.0568735599517822,0.0283145904541016,0.146971464157104,-0.0707480907440186,0.0714225769042969,0.188331961631775,-0.0695798397064209,0.0824966430664063,0.159196972846985,-0.0486607551574707,0.0568418502807617,0.153907656669617,-0.0375123023986816,0.0697450637817383,0.212317228317261,-0.109641313552856,0.195158958435059,0.201994180679321,-0.153678178787231,0.261665344238281,0.199875980615616,-0.14152193069458,0.276413917541504,0.224847912788391,-0.102237701416016,0.217104911804199,0.164343297481537,-0.0343217849731445,0.0810604095458984,0.169204235076904, --0.0520954132080078,0.0614414215087891,0.189442157745361,-0.0692033767700195,0.0846538543701172,0.141839385032654,-0.0753118991851807,0.0723152160644531,0.0935431718826294,-0.0664401054382324,0.0194978713989258,0.058998703956604,-0.0547189712524414,0.00511646270751953,0.0533826947212219,-0.0800912380218506,0.0105752944946289,0.0721742808818817,-0.094318151473999,0.0489492416381836,0.0824134051799774,-0.094874382019043,0.13889217376709,0.0967466533184052,-0.0994341373443604,0.229960441589355,0.139747947454453,-0.124706268310547,0.261016845703125,0.0834720283746719,-0.092167854309082,0.413443565368652,0.0284125208854675,-0.0959501266479492,-0.00401592254638672,0.0465515851974487,-0.0771181583404541,-0.00504016876220703,0.0477617383003235,-0.0862104892730713,-0.00561809539794922,0.0123087167739868,-0.0769288539886475,-0.00352859497070313,0.0791137218475342,-0.0819027423858643,0.00608444213867188,0.0838046073913574,-0.0787734985351563,0.00893306732177734,0.118619799613953,-0.0768682956695557,0.0755672454833984,0.102502584457397,-0.0756101608276367,0.0779180526733398,0.166959166526794,-0.0726046562194824,0.0834980010986328,0.176047325134277,-0.0801255702972412,0.0880746841430664,0.177106022834778,-0.0838346481323242,0.0941982269287109,0.170537352561951,-0.0828299522399902,0.10374641418457,0.156669735908508,-0.0774290561676025,0.114052772521973,0.132074594497681,-0.0677499771118164,0.118844032287598,0.164704322814941,-0.0529434680938721,0.117908477783203,0.132739424705505,-0.0335545539855957,0.13683032989502,0.168862581253052,-0.0483884811401367,0.102370262145996,0.127496123313904,-0.017871618270874,0.141994476318359,0.164459228515625,-0.0415487289428711,0.207463264465332,0.123081088066101,-0.00256681442260742,0.260991096496582,0.118953704833984,-0.0190167427062988,0.239471435546875,0.115789771080017,-0.019442081451416,0.185459136962891,0.110624432563782,-0.0281190872192383,0.12641716003418,0.118142008781433,-0.0352003574371338,0.129730224609375,0.139095306396484,-0.0495758056640625,0.129579544067383,0.166253328323364,-0.0635242462158203, -0.118806838989258,0.180410027503967,-0.0720508098602295,0.101071357727051,0.187896132469177,-0.0768451690673828,0.0923995971679688,0.187523484230042,-0.0769057273864746,0.0878238677978516,0.177815079689026,-0.0709400177001953,0.0840330123901367,0.00366342067718506,-0.00352978706359863,0.00497627258300781,0.00588381290435791,-0.000100255012512207,0.000494003295898438,0.030728816986084,0,9.5367431640625e-06,0.000963151454925537,0,0.00108432769775391,0.0037950873374939,-3.33786010742188e-06,2.6702880859375e-05,0.0277286767959595,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,5.94854354858398e-05,7.62939453125e-06,0,0.0218377113342285,-6.07967376708984e-06,0,0.00349724292755127,-0.0493150949478149,0.00231361389160156,0.00288867950439453,-0.00494241714477539,0.000145912170410156,0.0301204919815063,-0.0135719776153564,0.000596046447753906,0.0972031354904175,-0.0197889804840088,0.125034332275391,0.0964757204055786,-0.0198071002960205,0.124006271362305,0.056491494178772,-0.0133974552154541,0.0791816711425781,0.0635141134262085,-0.0152959823608398,0.0906543731689453,0.0424963235855103,-0.00725126266479492,0.0412397384643555,0.0505993366241455,-0.0118930339813232,0.0683021545410156,0.0412883758544922,-0.00436687469482422,0.024622917175293,0.0470231771469116,-0.00977468490600586,0.0548610687255859,0.0413578748703003,-0.00350332260131836,0.0197019577026367,0.0465866327285767,-0.0107221603393555,0.0381937026977539,0.0727128982543945,-0.0186779499053955,0.105146408081055,0.0589041709899902,-0.0147490501403809,0.084864616394043,0.0936394929885864,-0.0229930877685547,0.120640754699707,0.0899337530136108,-0.0397562980651855,0.113433837890625,0.074453592300415,-0.0266051292419434,0.104527473449707,0.0588288307189941,-0.0166900157928467,0.0829696655273438,0.0551546812057495,-0.0175402164459229,0.0727453231811523,0.0771856307983398,-0.0438065528869629,0.0926837921142578,0.0038793683052063,-0.0850729942321777,-0.00196075439453125,0.00375300645828247,-0.0152394771575928,-0.00041961669921875,0.042101263999939,-0.0373353958129883,0.00117588043212891, -0.0604404211044312,-0.0371041297912598,0.0434627532958984,0.0655561685562134,-0.030137300491333,0.0855731964111328,0.0986794233322144,-0.0193572044372559,0.126169204711914,0.0560089349746704,-0.0130519866943359,0.0783205032348633,0.0382711887359619,-0.00430893898010254,0.0246152877807617,0.00988662242889404,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0.0352210998535156,-0.00698637962341309,0.0568075180053711,0.0823705196380615,-0.00836992263793945,0.105536460876465,0.0438098907470703,-0.00157070159912109,0.07562255859375,0.0814578533172607,-0.00438070297241211,0.142724990844727,0.0960109233856201,-0.0125041007995605,0.178936004638672,0.142843723297119,-0.0207035541534424,0.269308090209961,0.144420623779297,-0.0297155380249023,0.285107612609863,0.195950508117676,-0.0395863056182861,0.387392044067383,0.217062473297119,-0.0256633758544922,0.477450370788574,0.207442283630371,-0.0381572246551514,0.426576614379883,0.147157669067383,-0.0394644737243652,0.303921699523926,0.146442413330078,-0.0273797512054443,0.318548679351807,0.092125415802002,-0.0322139263153076,0.201239109039307,0.0314145088195801,-0.00880289077758789,0.0702009201049805,0.0220184326171875,-0.00848901271820068,0.0492548942565918,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0.276563167572021,-0.00448274612426758,0.621041774749756,0.0570759773254395,0.0116100311279297,0.126935958862305,0.230039596557617,0.014528751373291,0.526444911956787,0,4.52995300292969e-06,0,0.194972038269043,-0.00900077819824219,0.595002174377441,0.0759634971618652,0.0331487655639648,0.169338226318359,0.236279964447021,0.0371007919311523,0.616759777069092,0.274289131164551,0.0149030685424805,0.75838041305542,0.168790340423584,0.035123348236084,0.525218963623047,0.0795660018920898,0.0400300025939941,0.179971218109131,0.177898406982422,0.00433540344238281,0.674627304077148,0.10294246673584,-0.0205001831054688,0.584411144256592,0.0486421585083008,-0.0326886177062988,0.533014297485352,0.0876574516296387, --0.0192327499389648,0.588948249816895,0.105810165405273,-0.00179243087768555,0.503730297088623,0.120527267456055,0.0357522964477539,0.391182422637939,0.0754208564758301,-0.000941276550292969,0.571249008178711,0.0554604530334473,0.00443744659423828,0.498860836029053,0.0123481750488281,-0.0416312217712402,0.400515079498291,0.234369516372681,0.139843940734863,0.79525089263916,0.110416173934937,0.072413444519043,0.570082664489746,0.00063014030456543,0.000461578369140625,0.00309514999389648,0.0241339206695557,0.0213956832885742,0.121633529663086,0.0702564716339111,0.0638942718505859,0.355465888977051,0.160174131393433,0.166935920715332,0.616198539733887,0.0930037498474121,0.0780525207519531,0.466331481933594,0.0941462516784668,0.110830307006836,0.379291534423828,0.0572338104248047,0.0607137680053711,0.296871185302734,0.000276923179626465,0.000376701354980469,0.00150442123413086,0.0061798095703125,0.00835132598876953,0.0335359573364258,0.0202460289001465,0.0263843536376953,0.109057426452637,0.0315008163452148,0.0381507873535156,0.154505729675293,0.0806822776794434,0.140786170959473,0.227526664733887,0.0720673799514771,0.17531681060791,0.0895538330078125,0.0142850875854492,0.0368690490722656,0.0509719848632813,0.000289440155029297,0.000392913818359375,0.00157260894775391,0.000981330871582031,0.00133323669433594,0.00533199310302734,3.89814376831055e-05,5.340576171875e-05,0.000211715698242188,0.00862467288970947,0.213484764099121,-0.00480461120605469,0.0266172885894775,0.196139335632324,0.00649833679199219,0.002288818359375,0.0648794174194336,0.00791454315185547,0.0172761678695679,0.0985479354858398,-0.00272178649902344,0.000355124473571777,0.000796318054199219,-3.52859497070313e-05,0.0314179360866547,0.222631454467773,-0.00800323486328125,0.0376603603363037,0.134963035583496,-0.00516033172607422,0.0207486152648926,-0.0362668037414551,0.314972877502441,0.0494914054870605,-0.00307655334472656,0.250094890594482,0.000745773315429688,-0.00678014755249023,0.0411806106567383,0.0616836547851563,0.0252671241760254,0.169345378875732, -0.00375795364379883,0.00194644927978516,0.0083315372467041,0.0162458419799805,0.00841569900512695,0.0360174179077148,0.0553522109985352,0.028346061706543,0.124311447143555,0.000231266021728516,0.000119686126708984,0.000512599945068359,0.000691413879394531,0.000364065170288086,0.00153255462646484,1.95503234863281e-05,1.00135803222656e-05,4.29153442382813e-05,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0, -6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0.000428915023803711,3.45706939697266e-06,0.0007171630859375,0.00240635871887207,-0.000160098075866699,0.00425243377685547,0.0062408447265625,-0.00146591663360596,0.0125789642333984,0.0087132453918457,-0.00294637680053711,0.0188941955566406,0.00668716430664063,-0.00258409976959229,0.0149593353271484,0.00182914733886719,-0.000707030296325684,0.00409126281738281,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,4.29153442382813e-05,-1.81496143341064e-05,9.63211059570313e-05,0.000787734985351563,-0.000300765037536621,0.00176143646240234,0.000792026519775391,-0.000303924083709717,0.00177097320556641,0.000115394592285156,-3.4630298614502e-05,0.000249862670898438,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06, -0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, -0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06, -0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0635228157043457,-0.0415182113647461,0.038395881652832,0.0626983642578125,-0.0240070819854736,0.0330438613891602,0.0761091709136963,-0.0180385112762451,0.0337104797363281,0.102037727832794,-0.0226156711578369,0.0465326309204102,0.117515325546265,-0.0284810066223145,0.0537633895874023,0.13060462474823,-0.0365338325500488,0.0583429336547852,0.0706300139427185,-0.0621206760406494,0.0468835830688477,0.0855915546417236,-0.0958395004272461,0.0637111663818359,0.103821873664856,-0.120132684707642,0.0841970443725586,0.109449148178101,-0.128532648086548,0.0852222442626953,0.112493842840195,-0.110007762908936,0.0751247406005859,0.105921745300293,-0.064943790435791,0.0580739974975586,0.112974226474762,-0.0338873863220215,0.0405025482177734,0.122671067714691,-0.0297207832336426,0.0423870086669922,0.13787853717804,-0.0375330448150635,0.0560989379882813,0.0828190445899963,-0.052443265914917,0.0497474670410156,0.0840600728988647,-0.0278487205505371,0.0428743362426758,0.0976268649101257,-0.0207538604736328,0.0400753021240234,0.114110171794891,-0.0249664783477783,0.0457839965820313,0.0847916007041931,-0.0773303508758545,0.0559158325195313,0,6.19888305664063e-06,0,0.0538616180419922,0.00499629974365234,0.137451171875,0.072526216506958,0.0115556716918945,0.231487274169922,0.0158500671386719,0.00410985946655273,0.0199260711669922,0.0316977500915527,0.00115537643432617,0.0637378692626953, -0.00744068622589111,0.0109996795654297,-0.0325164794921875,-0.00118416547775269,0.000767707824707031,-0.00222969055175781,0.0867624282836914,0.0176000595092773,0.313218116760254,0.08481764793396,0.0220518112182617,0.352771759033203,0.0781352519989014,0.0225505828857422,0.346470832824707,0.0636916160583496,0.0198311805725098,0.296347618103027,0.0348398685455322,0.0109767913818359,0.163346290588379,0.00974702835083008,0.00327491760253906,0.048731803894043,0.0446419715881348,0.0860409736633301,0.0139846801757813,-0.0204155445098877,0.104367733001709,-0.109431266784668,-0.0504937767982483,0.0143294334411621,-0.0102643966674805,-0.0381883382797241,-0.000192642211914063,0.00250244140625,-0.0123233795166016,0,0,-2.54295446211472e-06,-0.059199333190918,0.923863410949707,0.0674786567687988,-0.0844459533691406,0.923213958740234,0.155135184526443,-0.10215425491333,0.975153923034668,0.29925549030304,-0.137851715087891,1.05715656280518,0.426023960113525,-0.128699779510498,1.18498420715332,0.643330454826355,-0.121294975280762,1.42224597930908,0.804385542869568,-0.0911312103271484,1.59635257720947,0.963687419891357,-0.0668826103210449,1.61636352539063,1.18903231620789,-0.030754566192627,1.66070652008057,1.23678123950958,-0.0261554718017578,1.65697288513184,1.26670908927917,-0.0059514045715332,1.65248775482178,1.24905073642731,-0.0297932624816895,1.67095851898193,1.2088395357132,-0.0609335899353027,1.74968814849854,1.00496566295624,-0.153861999511719,1.69235038757324,0.727814555168152,-0.100196838378906,1.57497882843018,0.492871761322021,-0.0680537223815918,1.35210990905762,0.294223308563232,-0.0764541625976563,1.09921932220459,0.205953598022461,-0.0985260009765625,0.983359336853027,0.0708158016204834,-0.116298198699951,0.943935394287109,0.0449875295162201,-0.125604629516602,0.955224990844727,0,-0.127365589141846,0.94149112701416,0,-0.280145645141602,0.705107688903809,-0.0388620793819427,-0.287216663360596,0.6607666015625,0.0594136714935303,-0.290189743041992,0.659320831298828,0.331970691680908,-0.30087423324585,0.668166160583496, -0.592724800109863,-0.337290287017822,0.786624908447266,0.703126788139343,-0.32349681854248,0.904684066772461,0.716201901435852,-0.324467658996582,0.974400520324707,0.849264860153198,-0.261682987213135,1.11627674102783,1.04402709007263,-0.156473159790039,1.22489547729492,1.08725380897522,-0.034182071685791,1.33133506774902,1.09447622299194,0.053886890411377,1.3731746673584,1.09657025337219,0.0101509094238281,1.37302303314209,1.02580404281616,-0.0223555564880371,1.40661144256592,0.885868668556213,-0.106058597564697,1.34639930725098,0.634175777435303,-0.0232353210449219,1.23357582092285,0.438769578933716,0.0352892875671387,1.11203670501709,0.26885998249054,-0.0329174995422363,0.895625114440918,0.16429191827774,-0.038383960723877,0.757973670959473,0.0588620901107788,-0.0627312660217285,0.684978485107422,0.0225707590579987,-0.0597748756408691,0.6937255859375,0,-0.0434060096740723,0.667597770690918,0,5.96046447753906e-06,0,0.0589752197265625,0.00106191635131836,0.108132839202881,0.0656559467315674,0.0055232048034668,0.16210412979126,0.0286147594451904,3.38554382324219e-05,0.0478401184082031,0.0508105754852295,6.00814819335938e-05,0.0849485397338867,0.00862336158752441,5.7220458984375e-06,0.0144166946411133,0.00142943859100342,-2.86102294921875e-06,0.00238990783691406,0,3.09944152832031e-06,0,0.0692713260650635,0.0110344886779785,0.221133708953857,0.0773286819458008,0.020561695098877,0.3260178565979,0.0747449398040771,0.0227789878845215,0.343037128448486,0.062802791595459,0.0197868347167969,0.294450283050537,0.0367288589477539,0.0115718841552734,0.172203063964844,0.0118539333343506,0.00373458862304688,0.055577278137207,0.00365710258483887,0.00115203857421875,0.0171470642089844,0.000163435935974121,5.14984130859375e-05,0.000766754150390625,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06, -0,0,7.62939453125e-06,0,2.14576721191406e-06,0,9.5367431640625e-06,0.000784397125244141,0.000240802764892578,0.00367641448974609,0.00475025177001953,0.00149679183959961,0.0222721099853516,0.00496339797973633,0.00156354904174805,0.0232696533203125,0.00131773948669434,0.000414848327636719,0.00617790222167969,9.5367431640625e-06,2.86102294921875e-06,4.48226928710938e-05,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,-0.0165463089942932,-0.0837583541870117,-0.0032196044921875,-0.0105195641517639,-0.101093292236328,-0.00390434265136719,-0.13858637213707,-0.0743889808654785,1.12446403503418,-0.0902179926633835,0.729514598846436,1.0117769241333,-1.24637162685394,-0.0643930435180664,1.82155609130859,-1.12572109699249,0.123678684234619,1.86664390563965,-0.910574913024902,0.141265869140625,1.6989688873291,-0.927593588829041,-0.113683223724365,1.6825647354126,-0.545573711395264,0.404888153076172,1.37205791473389,-0.721786141395569,-0.107086181640625,1.51797199249268,-0.503376007080078,0.665034294128418,1.12030029296875,-0.616374313831329,-0.098604679107666,1.29594707489014,-0.368882119655609,0.734985828399658,1.08320903778076,-0.490340113639832,-0.11951208114624,1.20312976837158,-0.184996128082275,0.810928821563721,1.01381874084473,-0.311957865953445,-0.0696120262145996,1.17401218414307,-0.702031373977661,-0.131597995758057,1.53361797332764,-0.695483565330505,0.220945835113525,1.50023460388184,-1.12590610980988,0.0454106330871582,1.73871421813965,-1.27476513385773,-0.0673956871032715,1.79278659820557,-1.12376415729523, --0.0259170532226563,1.7145357131958,-1.30148947238922,-0.0645685195922852,1.79309272766113,-1.06749105453491,-0.101866245269775,1.7351188659668,-1.27325916290283,-0.0603599548339844,1.80564022064209,-1.01794373989105,-0.202756881713867,1.78169536590576,-1.24206244945526,-0.0576505661010742,1.83747863769531,-0.919230103492737,-0.128848075866699,1.74353408813477,-0.876092910766602,-0.204911708831787,1.7547779083252,-0.724586009979248,-0.17264986038208,1.59853935241699,-0.707116603851318,-0.216085433959961,1.64782047271729,-0.611564517021179,-0.336343288421631,1.35167407989502,-0.532760143280029,-0.177492141723633,1.48689079284668,-0.539419293403625,-0.457696437835693,1.03508949279785,-0.292943477630615,-0.231550216674805,1.33509635925293,-0.387871146202087,-0.548853874206543,0.830622673034668,-0.197878301143646,-0.323661327362061,1.36493110656738,-0.22268134355545,-0.622656345367432,0.699831962585449,-0.103489816188812,-0.357103824615479,1.43530654907227,-0.0698111653327942,-0.629575729370117,0.646873474121094,-0.0425493717193604,-0.404093265533447,1.45177745819092,-0.0795678049325943,0.729809761047363,1.25760269165039,-0.154898464679718,0.716663837432861,1.28465843200684,-0.255913972854614,0.656765460968018,1.37055587768555,-0.254593253135681,0.524856567382813,1.49327754974365,-0.422187566757202,0.306483268737793,1.57963943481445,-0.67875337600708,0.152934074401855,1.58432483673096,-0.923088073730469,0.0764265060424805,1.7319917678833,-1.18568801879883,0.0824184417724609,1.88301753997803,-1.16669988632202,0.0169568061828613,1.81188678741455,-1.1622953414917,-0.0433187484741211,1.79258155822754,-1.12084639072418,-0.104998588562012,1.81447219848633,-1.08763265609741,-0.175115585327148,1.86567783355713,-0.894677639007568,-0.201057910919189,1.7488431930542,-0.776068449020386,-0.230864524841309,1.65037155151367,-0.526989698410034,-0.391197681427002,1.40762329101563,-0.206227779388428,-0.590402126312256,1.15432739257813,-0.0155637264251709,-0.720652103424072,1.10672187805176,0.0182724595069885,-0.818277359008789,1.13423252105713, -0.0683674514293671,-0.844549655914307,1.0968189239502,-0.102464273571968,0.206994533538818,1.37887191772461,-0.193632364273071,0.229891777038574,1.4778003692627,-0.340831756591797,0.236766815185547,1.5623664855957,-0.364490747451782,0.095128059387207,1.58114910125732,-0.509033560752869,-0.0147099494934082,1.6358699798584,-0.661543130874634,-0.00145149230957031,1.61567974090576,-0.908762216567993,-0.000379562377929688,1.73838138580322,-1.19340753555298,0.0319547653198242,1.92343044281006,-1.20635628700256,-0.016629695892334,1.86843490600586,-1.22272849082947,-0.0575394630432129,1.85890579223633,-1.18752264976501,-0.0881829261779785,1.87920570373535,-1.15507650375366,-0.116753101348877,1.93598365783691,-0.875325560569763,-0.153643608093262,1.77926921844482,-0.706586956977844,-0.194984436035156,1.65437698364258,-0.452343344688416,-0.319190502166748,1.49261283874512,-0.146449565887451,-0.497779846191406,1.2853889465332,0.0282218456268311,-0.670102596282959,1.3045768737793,-0.056760311126709,-0.786325454711914,1.36339950561523,-0.0192149877548218,-0.843390941619873,1.38869953155518,-0.047307163476944,0.265224456787109,0.796100616455078,-0.133940517902374,0.196860313415527,0.671636581420898,-0.304112553596497,0.142651081085205,0.778641700744629,-0.326242446899414,0.0737709999084473,0.8109130859375,-0.478456735610962,0.211966037750244,0.875822067260742,-0.464506864547729,0.319849491119385,0.961211204528809,-0.563010931015015,0.315792083740234,1.15202903747559,-0.81905460357666,0.25860595703125,1.35001277923584,-0.907761335372925,0.169079780578613,1.32765579223633,-0.897095441818237,0.0982060432434082,1.32481861114502,-0.85977578163147,0.0348548889160156,1.36812210083008,-0.806588411331177,0.0130252838134766,1.49012279510498,-0.696712732315063,0.0142860412597656,1.57248878479004,-0.620248317718506,0.0506410598754883,1.48604297637939,-0.0330787003040314,0.102784156799316,0.594548225402832,-0.151847898960114,0.0964155197143555,0.761147499084473,-0.288043200969696,0.00276756286621094,0.957281112670898,-0.397069454193115,-0.029998779296875, -1.18700504302979,-0.497757911682129,0.017247200012207,1.27875232696533,-0.0695189237594604,0.634998798370361,0.906612396240234,-0.188251197338104,0.687829971313477,0.897954940795898,-0.372321009635925,0.601866722106934,0.962961196899414,-0.486086249351501,0.570383071899414,1.07925701141357,-0.560328602790833,0.395712375640869,1.2634859085083,-0.657769799232483,0.373247146606445,1.36856651306152,-0.776168346405029,0.366487503051758,1.54977607727051,-0.913264274597168,0.331709384918213,1.6532564163208,-0.893663883209229,0.170721530914307,1.56623840332031,-0.9175865650177,0.0305123329162598,1.54618167877197,-0.898844242095947,-0.0661725997924805,1.58029842376709,-0.851342678070068,-0.190045833587646,1.64898777008057,-0.775041103363037,-0.220809459686279,1.68427085876465,-0.661967396736145,-0.190720558166504,1.5775146484375,-0.596876621246338,-0.182852268218994,1.36685371398926,-0.561652541160583,-0.178015232086182,1.16026973724365,-0.384939312934875,-0.220856666564941,0.925393104553223,-0.214115560054779,-0.313662528991699,0.766269683837891,-0.0852595567703247,-0.324005126953125,0.700222015380859,-0.0872565656900406,-0.0794796943664551,0.510663986206055,-0.224404990673065,-0.120523452758789,0.552385330200195,-0.221062541007996,-0.0842742919921875,0.449436187744141,-0.238678097724915,-0.114344120025635,0.3515625,-0.215468406677246,0.0376720428466797,0.477817535400391,-0.119986534118652,0.016819953918457,0.536818504333496,-0.310260534286499,0.163385391235352,0.819992065429688,-0.524248361587524,0.140439510345459,0.944460868835449,-0.634854555130005,0.218128204345703,1.36868858337402,-0.766534805297852,0.149049282073975,1.32269477844238,-0.855541706085205,0.123769760131836,1.27164649963379,-0.93822193145752,0.0853385925292969,1.26089286804199,-0.685307741165161,0.0575051307678223,1.00149440765381,-0.107611030340195,0.315488815307617,0.579799652099609,-0.230147004127502,0.310172080993652,0.744458198547363,-0.233744859695435,0.281533241271973,0.93089485168457,-0.190723896026611,0.361682891845703,0.967920303344727,-0.333163022994995, -0.386080265045166,1.04425048828125,-0.521956920623779,0.278782367706299,1.26350498199463,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,-0.00485467910766602,-0.00187122821807861,0.0108599662780762,-0.0152664184570313,-0.00589644908905029,0.0341506004333496,-0.0233654975891113,-0.00732076168060303,0.0498008728027344,-0.0769963264465332,-0.0221179723739624,0.161164283752441,-0.00980639457702637,-0.00103139877319336,0.0179233551025391,-0.0412485599517822,-0.00496912002563477,0.0762901306152344,0,6.07967376708984e-06,0,-0.00861108303070068,4.05311584472656e-06,0.00152015686035156,0,4.58955764770508e-06,0,-0.000308394432067871,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,-0.052466869354248,-0.01880943775177,0.115288734436035,-0.016303539276123,-0.00622570514678955,0.0363674163818359,-0.0680074691772461,-0.0140891075134277,0.134384155273438,-0.0190887451171875,-0.00421178340911865,0.0381097793579102,-0.0141711235046387,-0.000128865242004395,0.0239048004150391,-0.00261211395263672,-1.54972076416016e-06,0.00436687469482422,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,-0.000101685523986816,0.000138282775878906,0.000552177429199219,-0.00581538677215576,0.00790309906005859,0.0315952301025391,-0.000327110290527344,0.000444412231445313,0.00177717208862305,-0.0438616275787354,0.0485696792602539,0.229117393493652,-0.00112676620483398,0.0005340576171875,0.00529193878173828,-0.0807013511657715,0.0608291625976563,0.399409294128418, --0.000779628753662109,-0.0118722915649414,0.109847068786621,-0.0100545883178711,0.00371646881103516,0.0295639038085938,0,-7.62939453125e-06,0,-0.000254392623901367,0.000120162963867188,0.00119495391845703,-0.042945384979248,0.0169801712036133,0.275954246520996,-0.00176310539245605,0.00239658355712891,0.00957965850830078,-0.014394998550415,0.0164737701416016,0.0756373405456543,-0.0273580551147461,0.0176734924316406,0.132405757904053,-0.0156359672546387,0.00754928588867188,0.0735511779785156,-0.00199079513549805,0.000943183898925781,0.00935077667236328,-0.11338198184967,-0.020045280456543,0.132865905761719,-0.0991660356521606,-0.0510163307189941,0.113883972167969,-0.106260538101196,-0.0570919513702393,0.116337776184082,-0.118895888328552,-0.0243773460388184,0.137515068054199,-0.0861105918884277,-0.0726699829101563,0.0723152160644531,-0.0741562843322754,-0.060495138168335,0.0635910034179688,-0.0571129322052002,-0.0602519512176514,0.00146293640136719,-0.0790992975234985,-0.0831124782562256,0.00491428375244141,-0.0152920484542847,-0.0320818424224854,-0.000972747802734375,-0.0458747148513794,-0.0743916034698486,-0.00433826446533203,-0.119079351425171,-0.0216076374053955,0.141250610351563,-0.114766120910645,-0.0197875499725342,0.135354995727539,-0.085566520690918,-0.00256490707397461,0.222524642944336,-0.0649640560150146,-0.00155925750732422,0.275775909423828,-0.293444633483887,-0.208890914916992,0.483057975769043,-0.47039008140564,-0.14472484588623,0.922342300415039,-0.542439699172974,0.00238847732543945,1.00564479827881,-0.58759880065918,0.065617561340332,0.971320152282715,-0.588406801223755,0.203607082366943,1.03859806060791,-0.421276092529297,0.267416477203369,0.977153778076172,-0.319023847579956,0.332162857055664,0.826595306396484,-0.194023370742798,0.435199737548828,0.59722900390625,-0.0884245634078979,0.317569732666016,0.382606506347656,-0.041508674621582,0.193240165710449,0.266156196594238,-0.0260278582572937,0.169175148010254,0.198989868164063,-0.0106141269207001,0.179964065551758,0.204939842224121,-0.151602625846863, --0.152304649353027,0.212974548339844,-0.109986007213593,-0.108040332794189,0.314370155334473,-0.167581021785736,-0.120149850845337,0.38606071472168,-0.196996927261353,-0.163891792297363,0.236114501953125,-0.120404422283173,-0.133007764816284,0.177054405212402,-0.060838058590889,-0.0759506225585938,0.249598503112793,-0.100804597139359,-0.117208003997803,0.121547698974609,-0.0489732325077057,-0.0690293312072754,0.132834434509277,-0.0799336731433868,-0.0945377349853516,0.0521888732910156,-0.0516108274459839,-0.0868477821350098,0.0331611633300781,-0.0650296211242676,-0.0747997760772705,0.0274772644042969,-0.0433285236358643,-0.0903754234313965,0.00199127197265625,-0.0659635663032532,-0.0449943542480469,0.017634391784668,-0.0515626668930054,-0.0639820098876953,-0.00144863128662109,-0.0951210260391235,-0.0478196144104004,0.0338039398193359,-0.0903247594833374,-0.0737104415893555,0.0144634246826172,-0.149953603744507,-0.0657656192779541,0.0734453201293945,-0.131758570671082,-0.0771348476409912,0.0736284255981445,-0.17966091632843,-0.0652987957000732,0.0791444778442383,-0.18461275100708,-0.0665686130523682,0.0959558486938477,-0.139828443527222,-0.0384650230407715,0.0552406311035156,-0.189345896244049,-0.0256528854370117,0.204092979431152,-0.252066195011139,-0.108268260955811,0.402693748474121,-0.194254875183105,-0.113951683044434,0.167403221130371,-0.146707892417908,-0.0423243045806885,0.0505361557006836,-0.177259922027588,-0.0532467365264893,0.0653219223022461,-0.147744804620743,-0.134284257888794,0.245791435241699,-0.112269401550293,-0.112709283828735,0.214199066162109,-0.0920363664627075,-0.103140354156494,0.13982105255127,-0.0751029551029205,-0.0936279296875,0.0478792190551758,-0.0601902008056641,-0.0762829780578613,0.0184421539306641,-0.0640954971313477,-0.0502114295959473,0.0109090805053711,-0.0968091487884521,-0.0568752288818359,0.0283145904541016,-0.14697003364563,-0.0707483291625977,0.0714206695556641,-0.188331484794617,-0.0695805549621582,0.0824956893920898,-0.159195899963379,-0.0486612319946289,0.0568399429321289, --0.153906404972076,-0.0375120639801025,0.0697422027587891,-0.212318539619446,-0.109639406204224,0.195159912109375,-0.201997637748718,-0.153677463531494,0.261669158935547,-0.199877113103867,-0.141520500183105,0.276420593261719,-0.22484889626503,-0.102235317230225,0.217104911804199,-0.164341866970062,-0.0343220233917236,0.0810585021972656,-0.169203877449036,-0.0520961284637451,0.0614395141601563,-0.189441919326782,-0.0692033767700195,0.0846519470214844,-0.141838073730469,-0.0753121376037598,0.0723142623901367,-0.0935419797897339,-0.0664405822753906,0.0194978713989258,-0.0589963793754578,-0.0547189712524414,0.00511550903320313,-0.0533819198608398,-0.0800890922546387,0.0105724334716797,-0.0721744298934937,-0.0943171977996826,0.0489482879638672,-0.0824150145053864,-0.0948741436004639,0.138893127441406,-0.096749484539032,-0.0994336605072021,0.229961395263672,-0.139750897884369,-0.124704837799072,0.261019706726074,-0.0834757834672928,-0.0921649932861328,0.413447380065918,-0.0284118056297302,-0.0959501266479492,-0.00401592254638672,-0.0465517640113831,-0.0771174430847168,-0.00504016876220703,-0.0477619767189026,-0.086209774017334,-0.00561809539794922,-0.012308657169342,-0.0769290924072266,-0.00352859497070313,-0.0791136026382446,-0.081902027130127,0.00608444213867188,-0.0838046073913574,-0.0787732601165771,0.00893211364746094,-0.118619084358215,-0.0768675804138184,0.075566291809082,-0.102501511573792,-0.0756087303161621,0.0779180526733398,-0.166958570480347,-0.0726065635681152,0.08349609375,-0.176046371459961,-0.0801260471343994,0.0880727767944336,-0.17710542678833,-0.0838344097137451,0.0941972732543945,-0.170536756515503,-0.0828287601470947,0.103745460510254,-0.156668901443481,-0.0774276256561279,0.114052772521973,-0.132073640823364,-0.0677480697631836,0.118844032287598,-0.164704322814941,-0.0529420375823975,0.11790943145752,-0.132738947868347,-0.0335526466369629,0.136832237243652,-0.16886293888092,-0.0483870506286621,0.102370262145996,-0.127495527267456,-0.0178694725036621,0.141993522644043,-0.164459347724915,-0.0415468215942383, -0.207463264465332,-0.123080492019653,-0.0025639533996582,0.260991096496582,-0.118953943252563,-0.0190162658691406,0.239472389221191,-0.115790367126465,-0.019442081451416,0.185460090637207,-0.11062490940094,-0.0281190872192383,0.126418113708496,-0.118141770362854,-0.0351996421813965,0.129731178283691,-0.139094114303589,-0.0495743751525879,0.129579544067383,-0.166252851486206,-0.0635225772857666,0.118807792663574,-0.180410027503967,-0.0720500946044922,0.101072311401367,-0.187895536422729,-0.0768451690673828,0.0923986434936523,-0.187522888183594,-0.076906681060791,0.0878238677978516,-0.177814245223999,-0.0709414482116699,0.0840320587158203,-0.00366336107254028,-0.00352978706359863,0.00497627258300781,-0.00588375329971313,-0.000100255012512207,0.000494003295898438,-0.030728816986084,0,9.5367431640625e-06,-0.000963151454925537,0,0.00108432769775391,-0.0037950873374939,-3.33786010742188e-06,2.6702880859375e-05,-0.0277286767959595,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,-5.94854354858398e-05,7.62939453125e-06,0,-0.0218377113342285,-6.07967376708984e-06,0,-0.00349718332290649,-0.0493148565292358,0.00231361389160156,-0.00288867950439453,-0.00494194030761719,0.000145912170410156,-0.030120849609375,-0.0135726928710938,0.000596046447753906,-0.0972034931182861,-0.0197889804840088,0.125034332275391,-0.0964760780334473,-0.0198071002960205,0.124007225036621,-0.0564916133880615,-0.0133974552154541,0.0791816711425781,-0.063514232635498,-0.0152959823608398,0.0906543731689453,-0.0424941778182983,-0.00725126266479492,0.0412397384643555,-0.0505994558334351,-0.0118932723999023,0.0683021545410156,-0.0412883758544922,-0.00436687469482422,0.024622917175293,-0.0470231771469116,-0.00977468490600586,0.0548610687255859,-0.0413578748703003,-0.00350332260131836,0.0197019577026367,-0.0465866327285767,-0.0107223987579346,0.0381937026977539,-0.0727130174636841,-0.0186781883239746,0.105145454406738,-0.0589042901992798,-0.0147490501403809,0.084864616394043,-0.0936397314071655,-0.0229930877685547,0.120640754699707,-0.0899339914321899,-0.0397562980651855, -0.113433837890625,-0.0744538307189941,-0.0266053676605225,0.104527473449707,-0.0588288307189941,-0.0166902542114258,0.0829696655273438,-0.0551549196243286,-0.017540454864502,0.0727453231811523,-0.0771855115890503,-0.0438063144683838,0.0926828384399414,-0.00387930870056152,-0.0850722789764404,-0.00196075439453125,-0.00375306606292725,-0.0152380466461182,-0.00041961669921875,-0.0421015024185181,-0.0373365879058838,0.00117588043212891,-0.0604401826858521,-0.0371041297912598,0.0434627532958984,-0.0655561685562134,-0.030137300491333,0.0855731964111328,-0.0986796617507935,-0.0193572044372559,0.126169204711914,-0.05600905418396,-0.0130519866943359,0.0783214569091797,-0.0382711887359619,-0.00430893898010254,0.0246152877807617,-0.00988662242889404,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,-0.0352213382720947,-0.00698637962341309,0.0568094253540039,-0.0823712348937988,-0.00837016105651855,0.105538368225098,-0.0438103675842285,-0.0015709400177002,0.0756235122680664,-0.0814588069915771,-0.00438070297241211,0.142725944519043,-0.0960116386413574,-0.0125043392181396,0.178936958312988,-0.142844915390015,-0.0207037925720215,0.269309997558594,-0.144420623779297,-0.0297157764434814,0.285107612609863,-0.195950984954834,-0.039586067199707,0.387392997741699,-0.217062950134277,-0.0256633758544922,0.477452278137207,-0.207442283630371,-0.0381569862365723,0.426575660705566,-0.147157192230225,-0.0394644737243652,0.303920745849609,-0.146441459655762,-0.0273797512054443,0.318546772003174,-0.0921244621276855,-0.0322139263153076,0.201237678527832,-0.0314140319824219,-0.00880289077758789,0.0701990127563477,-0.0220179557800293,-0.00848877429962158,0.0492539405822754,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,-0.276562690734863,-0.00448274612426758,0.621041774749756,-0.057075023651123,0.0116097927093506,0.126934051513672,-0.230038642883301,0.014528751373291,0.526442050933838,0,4.52995300292969e-06,0,-0.194972515106201,-0.00900077819824219,0.595001220703125,-0.075963020324707, -0.0331487655639648,0.169335842132568,-0.236279964447021,0.0371007919311523,0.616757869720459,-0.274289131164551,0.0149035453796387,0.758379459381104,-0.168789863586426,0.035123348236084,0.525217056274414,-0.0795660018920898,0.0400300025939941,0.179969310760498,-0.17789888381958,0.00433492660522461,0.674626350402832,-0.102942943572998,-0.0205001831054688,0.584413051605225,-0.0486416816711426,-0.0326886177062988,0.533013343811035,-0.0876569747924805,-0.0192322731018066,0.588947772979736,-0.105809688568115,-0.00179195404052734,0.503729343414307,-0.120526313781738,0.0357522964477539,0.391181468963623,-0.0754194259643555,-0.000941753387451172,0.571246147155762,-0.0554599761962891,0.00443744659423828,0.49885892868042,-0.0123472213745117,-0.041630744934082,0.400513172149658,-0.23436164855957,0.139839172363281,0.795241355895996,-0.110416412353516,0.0724124908447266,0.570082664489746,-0.00063014030456543,0.000462532043457031,0.00309514999389648,-0.0241341590881348,0.0213956832885742,0.121634483337402,-0.0702567100524902,0.0638942718505859,0.355467796325684,-0.160175085067749,0.166934013366699,0.616199493408203,-0.0930042266845703,0.0780534744262695,0.466333389282227,-0.094146728515625,0.110831260681152,0.379293441772461,-0.0572340488433838,0.0607137680053711,0.296872138977051,-0.000276923179626465,0.000376701354980469,0.00150489807128906,-0.0061798095703125,0.00835132598876953,0.0335359573364258,-0.0202465057373047,0.0263843536376953,0.10905933380127,-0.0315010547637939,0.038151741027832,0.154507637023926,-0.0806818008422852,0.14078426361084,0.22752857208252,-0.0720680952072144,0.17531681060791,0.0895557403564453,-0.0142854452133179,0.0368680953979492,0.0509729385375977,-0.000289440155029297,0.000393867492675781,0.00157260894775391,-0.000981330871582031,0.00133419036865234,0.00533199310302734,-3.89814376831055e-05,5.340576171875e-05,0.000211715698242188,-0.00862401723861694,0.213482856750488,-0.00480270385742188,-0.0266185998916626,0.196136474609375,0.00649833679199219,-0.00228893756866455,0.0648784637451172,0.00791549682617188, --0.0172752141952515,0.098546028137207,-0.00272178649902344,-0.000355124473571777,0.000796318054199219,-3.52859497070313e-05,-0.0314178466796875,0.222633361816406,-0.00800323486328125,-0.0376601815223694,0.134963035583496,-0.00516033172607422,-0.0207481384277344,-0.0362663269042969,0.314971446990967,-0.0494914054870605,-0.00307607650756836,0.250094413757324,-0.000746250152587891,-0.00678014755249023,0.0411806106567383,-0.061683177947998,0.0252671241760254,0.169343948364258,-0.00375795364379883,0.00194644927978516,0.008331298828125,-0.0162453651428223,0.00841522216796875,0.0360169410705566,-0.055351734161377,0.028346061706543,0.12431001663208,-0.000231266021728516,0.000119686126708984,0.000512599945068359,-0.000691413879394531,0.000364065170288086,0.00153255462646484,-1.95503234863281e-05,1.00135803222656e-05,4.29153442382813e-05,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06, -0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,-0.000428915023803711,3.45706939697266e-06,0.0007171630859375,-0.00240659713745117,-0.000160098075866699,0.00425243377685547,-0.0062408447265625,-0.00146603584289551,0.0125799179077148,-0.0087132453918457,-0.00294637680053711,0.0188941955566406,-0.00668716430664063,-0.00258409976959229,0.0149593353271484,-0.00182914733886719,-0.000707030296325684,0.00409126281738281,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,-4.29153442382813e-05,-1.81198120117188e-05,9.63211059570313e-05,-0.000787734985351563,-0.000300765037536621,0.00176143646240234,-0.000792026519775391,-0.000303924083709717,0.00177097320556641,-0.000115394592285156,-3.4630298614502e-05,0.000249862670898438,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06, -0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06, -0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0, -6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0635226964950562,-0.0415160655975342,0.038395881652832,-0.0626983642578125,-0.0240061283111572,0.0330429077148438,-0.0761091709136963,-0.0180389881134033,0.0337085723876953,-0.102036654949188,-0.0226173400878906,0.0465316772460938,-0.117514848709106,-0.0284817218780518,0.0537624359130859,-0.130604028701782,-0.0365347862243652,0.0583419799804688,-0.0706301927566528,-0.0621180534362793,0.0468854904174805,-0.0855923891067505,-0.0958378314971924,0.0637130737304688,-0.103823512792587,-0.120131015777588,0.084197998046875,-0.109450608491898,-0.128530263900757,0.0852241516113281,-0.112495422363281,-0.110007524490356,0.0751276016235352,-0.105922341346741,-0.0649428367614746,0.0580739974975586,-0.112973928451538,-0.0338864326477051,0.0405025482177734,-0.122670590877533,-0.0297210216522217,0.0423860549926758,-0.137877941131592,-0.0375335216522217,0.0560970306396484,-0.082818865776062, --0.0524404048919678,0.049748420715332,-0.0840598344802856,-0.0278468132019043,0.0428733825683594,-0.0976263284683228,-0.0207533836364746,0.0400753021240234,-0.114109337329865,-0.0249667167663574,0.0457830429077148,-0.0847922563552856,-0.0773289203643799,0.0559167861938477,-0.0538625717163086,0.00499629974365234,0.137453079223633,-0.0725269317626953,0.0115556716918945,0.231490135192871,-0.0159136056900024,0.00415325164794922,0.019780158996582,-0.03169846534729,0.00115537643432617,0.0637397766113281,-0.0073167085647583,0.0109372138977051,-0.0324678421020508,0.00119280815124512,0.000765323638916016,-0.002227783203125,-0.0867631435394287,0.0176005363464355,0.313220977783203,-0.0848181247711182,0.0220518112182617,0.352773666381836,-0.0781357288360596,0.0225505828857422,0.34647274017334,-0.0636920928955078,0.0198311805725098,0.296350479125977,-0.0348403453826904,0.0109772682189941,0.163349151611328,-0.00974750518798828,0.00327491760253906,0.0487337112426758,-0.0453580617904663,0.0858607292175293,0.0135889053344727,0.0198210477828979,0.104231357574463,-0.10975456237793,0.050416886806488,0.0142898559570313,-0.0102567672729492,0.038081169128418,-0.000192165374755859,0.00249862670898438,0.0122838914394379,0,0,-0.0672456026077271,-0.0844335556030273,0.923186302185059,-0.154504954814911,-0.102213859558105,0.975102424621582,-0.298427224159241,-0.137921810150146,1.05711650848389,-0.425821423530579,-0.128724098205566,1.184889793396,-0.643164157867432,-0.121382236480713,1.42208957672119,-0.804945707321167,-0.091069221496582,1.59694862365723,-0.965088486671448,-0.0660128593444824,1.61970043182373,-1.18935537338257,-0.0297904014587402,1.66130447387695,-1.23650515079498,-0.0252985954284668,1.65642833709717,-1.26665496826172,-0.00529623031616211,1.65083980560303,-1.24855184555054,-0.0297484397888184,1.66928005218506,-1.20662224292755,-0.0620632171630859,1.74559497833252,-1.00195455551147,-0.156440734863281,1.68936538696289,-0.726179122924805,-0.101122379302979,1.57367706298828,-0.491834044456482,-0.0684099197387695,1.35189342498779,-0.293142318725586, --0.0764369964599609,1.0994815826416,-0.204978227615356,-0.0984597206115723,0.98362922668457,-0.0700191855430603,-0.116316795349121,0.943905830383301,-0.0447364747524261,-0.125581741333008,0.955217361450195,0.0388298332691193,-0.286779880523682,0.659859657287598,-0.0591113567352295,-0.29035472869873,0.659570693969727,-0.331305086612701,-0.301082134246826,0.668506622314453,-0.592473864555359,-0.337268829345703,0.786520004272461,-0.705474138259888,-0.324235439300537,0.906167030334473,-0.717394471168518,-0.324953079223633,0.976117134094238,-0.850099563598633,-0.260262012481689,1.11837768554688,-1.04463863372803,-0.153125762939453,1.22748565673828,-1.08677053451538,-0.029240608215332,1.33181953430176,-1.09483408927917,0.0571622848510742,1.37327480316162,-1.09713530540466,0.011293888092041,1.37278461456299,-1.02203464508057,-0.0244607925415039,1.39639663696289,-0.88234531879425,-0.109829425811768,1.34258079528809,-0.631603479385376,-0.0258045196533203,1.23192405700684,-0.441863059997559,0.0350179672241211,1.11023044586182,-0.271353244781494,-0.0333023071289063,0.893952369689941,-0.164370536804199,-0.038517951965332,0.757294654846191,-0.0572287440299988,-0.0623836517333984,0.686832427978516,-0.0218119025230408,-0.0593051910400391,0.696707725524902,0,5.96046447753906e-06,0,-0.0589754581451416,0.00106191635131836,0.108133316040039,-0.0656564235687256,0.005523681640625,0.162105560302734,-0.0286154747009277,3.38554382324219e-05,0.0478410720825195,-0.0508112907409668,6.00814819335938e-05,0.0849494934082031,-0.00862371921539307,5.7220458984375e-06,0.0144176483154297,-0.00142955780029297,-2.86102294921875e-06,0.00238990783691406,0,3.09944152832031e-06,0,-0.0692715644836426,0.0110344886779785,0.221134662628174,-0.0773289203643799,0.0205621719360352,0.326018333435059,-0.0747451782226563,0.0227789878845215,0.343037605285645,-0.0628030300140381,0.0197873115539551,0.294451713562012,-0.0367295742034912,0.0115718841552734,0.172206878662109,-0.0118544101715088,0.00373458862304688,0.0555791854858398,-0.00365734100341797,0.00115203857421875, -0.0171470642089844,-0.000163555145263672,5.14984130859375e-05,0.000766754150390625,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,-2.14576721191406e-06,0,9.5367431640625e-06,-0.000784397125244141,0.000240802764892578,0.00367641448974609,-0.00475025177001953,0.00149679183959961,0.0222721099853516,-0.00496339797973633,0.00156354904174805,0.0232696533203125,-0.00131773948669434,0.000414848327636719,0.00617790222167969,-9.5367431640625e-06,2.86102294921875e-06,4.48226928710938e-05,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06, -0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *5820 { - a: -0.597092765817582,-1.20674596726894,-0.819351315498352,-0.384596306972981,-1.27944368124008,-0.820560738444328,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.35247701406479,0.038206547498703,-0.535711735486984,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.774938248097897,0.881902649998665,-0.456946484744549,0.519307337701321,0.680022969841957,-0.320886075496674,0.427825834602118,0.611639320850372,-0.43081459403038,1.24984148144722,0.743428140878677,0.0101923048496246,1.24035313725471,-0.716003447771072,-0.429137527942657,0.6684610247612,-1.17865699529648,-0.558192223310471,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.287638731300831,0.364852160215378,-0.134946346282959,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.468268631026149,0.433664247393608,-0.103400349617004,0.715243133594754,0.00880149006843567,0.305856227874756,0.837141009857419,0.0635102242231369,0.449118494987488,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.33883160352707,0.271105103194714,0.201965391635895,-0.185629397630692,0.60392153263092,-0.423017710447311,0.0953263938426971,0.519869685173035,-0.52972674369812,0.382831320166588,0.495755851268768,-0.813438422977924,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.149402499198914,0.649232625961304,-0.918700143694878,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.896484866738319,0.121514856815338,0.316224336624146,-0.597992211580276,0.508298240602016, -0.248544991016388,1.33693334460258,-0.428975835442543,-0.875247816555202,1.69533205032349,-0.0761311762034893,-0.074331670999527,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.12227132916451,-0.257228456437588,-0.548864245414734,1.84295350313187,-0.358152143657207,-0.155432343482971,1.63278758525848,-0.373890697956085,-0.890541508793831,1.26172557473183,-0.546142593026161,-0.859731506556273,1.28755939006805,-0.494611859321594,-0.535688370466232,1.31134834885597,0.147582679986954,-0.629765912890434,1.40888613462448,-0.331198558211327,-0.354947298765182,1.56502795219421,0.032392218708992,-0.075869619846344,1.19551733136177,0.0307884961366653,0.431280195713043,0.825121775269508,-0.218170151114464,-0.178467690944672,0.769775316119194,-0.0740673840045929,-0.92814214900136,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393, --0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688, --0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449, -0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254, -0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137, -0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182, --0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047, --0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.437944859266281,0.259957488626242,-1.2592768073082,0.608295112848282,0.10823181271553,-1.25950562953949,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246, --0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851, --1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812, --0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883, --0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382, -0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686, --1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917, -0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755, --1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449, --0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145, -0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322, --0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842, --0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038, -0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248, --0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295, -1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499, --0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293, --0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382, -0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651, -0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542, --1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031, --0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248, --0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299, --1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.31432190537453,0.719328045845032,0.437053114175797,-1.30395328998566,0.315785571932793,0.602485001087189,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753, -0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603, --0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969, -0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263, --0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586, --0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833, -0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874, --1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971, --1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599, --0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309, --1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736, -0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396, --1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568, -0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706, -0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719, --0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856, -0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814, -0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434, -0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524, -0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193, --0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805454334592, "Geometry::Mouth_Raiser_Left", "Shape" { - Version: 100 - Indexes: *1717 { - a: 703,1359,1509,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6096,6098,6100,6101,6102,6103,6104,6105,6106,6107,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6267,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496, -6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7167,7168,7172,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392, -7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7765,7766,7767,7768,7769,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856, -7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7949,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7980,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8698,8699,8700,8701,8702, -8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 - } - Vertices: *5151 { - a: 0.000429093837738037,0,0,6.09755516052246e-05,0,0,0.000388860702514648,0,0,0,0.0421245098114014,0,0,0.00739669799804688,0,0.0696006715515978,0.00740814208984375,0.0133209228515625,0.0696006715370459,0.0683817863464355,0.0133209228515625,0.0766299367678585,0.0806794166564941,0.0133209228515625,0.0766299367169267,0.0654416084289551,0.0133209228515625,0.0696006715515978,0.00740337371826172,0.0133199691772461,0.076629936680547,0.0806884765625,0.0133209228515625,0.0696006715443218,0.007415771484375,0.0133218765258789,0.0766299367169267,0.088066577911377,0.0133209228515625,0.0232002250850201,0.024627685546875,0.00497531890869141,0.0255433134498162,0.0268921852111816,0.0742597579956055,0.0464004501664022,0.0492429733276367,0.0437917709350586,0.0510866268450627,0.0537962913513184,0.0437908172607422,0,0.0110573768615723,0,0,2.86102294921875e-06,0.0132322311401367,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,0.0273797512054443,0,0,0.0232882499694824,0,0,0.016993522644043,0,0,0.0143084526062012,0,0,0.0193789005279541,0,0,0.0420000553131104,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,0.000456094741821289,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,9.39369201660156e-05,0,0,5.96046447753906e-06, -0,0.0394487977027893,0.0274462699890137,0.052729606628418,0.0394487082958221,0.0424103736877441,0.052729606628418,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.101092338562012,0,0,0.104729652404785,0,0,0.0697479248046875,0,0,0.104729652404785,0.000134706497192383,0.00014495849609375,0.104552268981934,0.000133872032165527,0.000132560729980469,0.10455322265625,0.00360167026519775,0.00388479232788086,0.0999813079833984,0.00360143184661865,0.00387096405029297,0.0999813079833984,0.0166193842887878,0.017909049987793,0.0828094482421875,0.0166193246841431,0.017909049987793,0.0828094482421875,0,0,0.104729652404785,0,-6.19888305664063e-06,0.0888071060180664,0,0,0.103442192077637,0,0,0.104729652404785,0,7.62939453125e-06,0.101931571960449,0,0,0.104729652404785,0,0,0.103560447692871,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.0928316116333008,0,0,0.0898313522338867,0,0,0.104729652404785,6.47306442260742e-05,6.24656677246094e-05,0.0843000411987305,6.52074813842773e-05,7.15255737304688e-05,0.104652404785156,0.00341200828552246,0.00358438491821289,0.100663185119629,0.00341212749481201,0.00357341766357422,0.100663185119629,0.015791654586792,0.0165753364562988,0.085902214050293,0.0157915353775024,0.0165829658508301,0.085902214050293,0.0406132340431213,0.042633056640625,0.0563030242919922,0.0406131744384766,0.0254340171813965,0.0563030242919922,0.0394487977027893,0.028897762298584,0.0527305603027344,0.0166194438934326,0.0179076194763184,0.0828094482421875,0.00360190868377686,0.00387716293334961,0.0999813079833984,0.000134468078613281,0.0001373291015625,0.10455322265625,0,7.62939453125e-06,0.0959863662719727,0,0,0.102462768554688,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104368209838867,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,6.4849853515625e-05,6.103515625e-05,0.10465145111084,0.00341212749481201,0.00358247756958008,0.100663185119629,0.015791118144989, -0.0165772438049316,0.0859012603759766,0.0406129360198975,0.0426449775695801,0.0563030242919922,0.0394485890865326,0.0283288955688477,0.052729606628418,0.0166194438934326,0.0179076194763184,0.0828094482421875,0.00360167026519775,0.00388479232788086,0.099980354309082,0.00013422966003418,0.000132560729980469,0.10455322265625,0,0,0.103616714477539,0,0,0.104729652404785,0,7.62939453125e-06,0.104729652404785,0,0,0.104729652404785,0,-7.62939453125e-06,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,6.52074813842773e-05,5.76972961425781e-05,0.104652404785156,0.00341212749481201,0.00357675552368164,0.100662231445313,0.0157917737960815,0.0165772438049316,0.0859012603759766,0.040613204240799,0.0374655723571777,0.0563039779663086,0.0131495594978333,0.0141477584838867,0.0137128829956055,0.00553977489471436,0.00597810745239258,0.0255918502807617,0.00120055675506592,0.00128602981567383,0.0191125869750977,4.48226928710938e-05,4.10079956054688e-05,0.0101308822631836,0,-6.19888305664063e-06,0.00400543212890625,0,-6.19888305664063e-06,0.00336647033691406,0,0,0.0117177963256836,0,-7.62939453125e-06,0.0366878509521484,0,0,0.0408420562744141,0,0,0.0431509017944336,0,0,0.045191764831543,0,0,0.0399274826049805,0,-7.62939453125e-06,0.0276222229003906,0,0,0.0171642303466797,0.0135377049446106,0.0142226219177246,0.088587760925293,0.00526392459869385,0.00552225112915039,0.0984535217285156,0.001137375831604,0.00120067596435547,0.103373527526855,2.14576721191406e-05,1.66893005371094e-05,0.051997184753418,0,0,0.0114431381225586,0.0262991189956665,0.0282807350158691,0.0700626373291016,0.0110795497894287,0.0119490623474121,0.0901174545288086,0.00240123271942139,0.00258779525756836,0.101564407348633,8.95261764526367e-05,0.000100612640380859,0.104612350463867,0,0,0.0572309494018555,0,0,0.0777311325073242,0,6.19888305664063e-06,0.0950441360473633,0,0,0.103164672851563,0,0,0.0995683670043945,0,0,0.0936498641967773,0,0,0.0936498641967773,0,0,0.0987100601196289, -0,0,0.0947999954223633,0,0,0.0738611221313477,0,0,0.0541276931762695,4.3034553527832e-05,4.43458557128906e-05,0.0626544952392578,0.00227487087249756,0.00238323211669922,0.102017402648926,0.0105277895927429,0.0110487937927246,0.0921773910522461,0.0270755290985107,0.0284209251403809,0.0724449157714844,0,0.000100612640380859,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,0,0.000119209289550781,0,0,2.76565551757813e-05,0,-7.62939453125e-06,0,0,0,6.4849853515625e-05,0,0,0.0163049697875977,0,0,0.0214643478393555,0,0,0.018803596496582,0,0,0.0004425048828125,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,2.81333923339844e-05,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,0.00449800491333008,0,0,-4.52995300292969e-06,0,0,0.00131440162658691,0,0,5.96046447753906e-06, -0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.000245809555053711,0,0,-6.19888305664063e-06,0,0,0.000917911529541016,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06, -0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06, -0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06, -0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06, -0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06, -0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-0.000458705888377153,-0.000176906585693359,6.38961791992188e-05,0,-4.76837158203125e-06,0.0449857711791992,0,0,0.000668525695800781,0,0,0.00848865509033203,0,-4.76837158203125e-06,0,0,0,0.00336742401123047,0,0,0.00652885437011719,0,0,0.00856399536132813,0,0,0.00561046600341797,0,0,0.00773048400878906,0,0,0.00408172607421875,0,0,0.00456142425537109,0,0,0.0442171096801758,0,0,0.055537223815918,0,0,0.0409917831420898,0,0,0.0400629043579102,0.0696006715515978,0.0504183769226074,-0.000292778015136719,0.0394486784934998,0.0375738143920898,0.0419416427612305,0.0166196227073669,0.0179104804992676,0.0700235366821289,0.00360214710235596,0.00387859344482422,0.0875091552734375,0.000133872032165527,0.00014495849609375,0.0919170379638672,0,0,0.0923519134521484,0,0,0.0908584594726563,0,0,0.0911197662353516,0,-7.62939453125e-06,0.0967369079589844,0,0,0.0888681411743164,0,0,0.0865936279296875,0,0,0.0893936157226563,0,7.62939453125e-06,0.0935306549072266,0,0,0.0888271331787109,0,-7.62939453125e-06,0.0908946990966797,0,0,0.0914020538330078,6.43730163574219e-05,6.38961791992188e-05,0.0923614501953125,0.00341236591339111,0.003570556640625,0.0929136276245117,0.015791654586792,0.0165829658508301,0.0807085037231445,0.0406131148338318,0.0312938690185547,0.0514488220214844,0.0766299367169267,0.0753226280212402,0.008575439453125,0,-0.00189733505249023,0.0750246047973633,0,0,0.0738906860351563,0,7.62939453125e-06,0.0669460296630859,0,0,0.0626935958862305,0,0,0.0556468963623047,0,0,0.0612640380859375,0,0,0.0732097625732422,0,0,0.0699834823608398,0,0,0.0647001266479492,0,0,0.0496320724487305,0,0,0.0491180419921875, -0,0,0.054377555847168,0,0,0.0644302368164063,0,0,0.0867624282836914,0,0,0.0737533569335938,0,-7.62939453125e-06,0.0622406005859375,0,0,0.0638942718505859,0,0,0.0686674118041992,0,0,0.0743417739868164,0,-7.62939453125e-06,0.0777769088745117,0,-0.0078129768371582,0.0794687271118164,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,0.0980789661407471,0,0,0.0537068843841553,0,0.109404176473618,0.00635051727294922,-0.041346549987793,0.11065486073494,0.119833469390869,-0.0415019989013672,0.577010631561279,1.1142578125,-1.19161701202393,0.651965379714966,1.29945230484009,-1.18517398834229,0.735209465026855,1.13890743255615,-0.985410690307617,0.675071954727173,0.901994705200195,-1.19204711914063,0.342524528503418,0.707215309143066,-0.515114784240723,0.493985533714294,0.498385906219482,-0.652111053466797,0.223673820495605,0.461632251739502,-0.318572998046875,0.268253445625305,0.280452728271484,-0.440461158752441,0.171403765678406,0.247918605804443,-0.249712944030762,0.159429550170898,0.0912680625915527,-0.294137001037598,0.171427130699158,0.133952617645264, --0.172199249267578,0.147028148174286,0.023859977722168,-0.117494583129883,0.628770351409912,0.701540946960449,-0.873368263244629,0.58311915397644,0.895533561706543,-0.637057304382324,0.675577163696289,1.28249168395996,-1.28822898864746,0.634757280349731,1.17517137527466,-1.33303356170654,0.720823764801025,1.28418254852295,-1.34038925170898,0.598799467086792,1.18098497390747,-1.28858184814453,0.780188798904419,1.11220645904541,-1.20008563995361,0.585317850112915,1.16025304794312,-1.21508598327637,0.760004997253418,0.988587856292725,-1.06015682220459,0.555882930755615,1.12059926986694,-1.09805297851563,0.601966857910156,0.980047702789307,-1.12635231018066,0.853412389755249,1.00761413574219,-0.970894813537598,0.665758609771729,0.838160991668701,-0.998209953308105,0.813812017440796,0.942248821258545,-0.811418533325195,0.645570039749146,0.712018013000488,-0.585637092590332,0.467674612998962,0.649681568145752,-0.566285133361816,0.453079700469971,0.466160297393799,-0.448667526245117,0.407931923866272,0.493937015533447,-0.43466854095459,0.292707204818726,0.305967807769775,-0.258566856384277,0.266164779663086,0.294405937194824,-0.254031181335449,0.202662706375122,0.214481830596924,-0.140233993530273,0.180864691734314,0.201183795928955,-0.13611888885498,0.128797888755798,0.135787963867188,-0.0486831665039063,0.125245183706284,0.125740051269531,-0.04803466796875,0.165018886327744,0.116413116455078,-0.0414524078369141,0.202110707759857,0.189950466156006,-0.123610496520996,0.218051075935364,0.236100673675537,-0.218132972717285,0.317161440849304,0.455863475799561,-0.354351043701172,0.438881754875183,0.712942123413086,-0.524405479431152,0.640414237976074,0.933218002319336,-0.701214790344238,0.791547298431396,1.15863513946533,-1.06826019287109,0.673439741134644,1.29688930511475,-1.17191028594971,0.705335140228271,1.27984809875488,-1.2864933013916,0.734445810317993,1.28334712982178,-1.34778022766113,0.765701532363892,1.22369050979614,-1.28171634674072,0.83477520942688,1.16091203689575,-1.14033126831055,0.920667886734009,1.09050607681274, --1.01376724243164,0.914158344268799,0.954336643218994,-0.901653289794922,0.671273946762085,0.692586421966553,-0.641805648803711,0.490262746810913,0.467108249664307,-0.418026924133301,0.328194737434387,0.292797565460205,-0.254822731018066,0.245366990566254,0.203634738922119,-0.137659072875977,0.182820051908493,0.135326862335205,-0.0485391616821289,0.109731793403625,0.00693893432617188,-0.0413904190063477,0.146625280380249,0.0206613540649414,-0.118207931518555,0.174119710922241,0.136242389678955,-0.228367805480957,0.287082433700562,0.361271381378174,-0.363458633422852,0.473078489303589,0.600516319274902,-0.54026985168457,0.676202535629272,0.840977668762207,-0.759921073913574,0.777014255523682,0.999681949615479,-1.07364940643311,0.644418001174927,1.16472482681274,-1.09964752197266,0.65627908706665,1.20963764190674,-1.22374153137207,0.720222473144531,1.23949432373047,-1.29627990722656,0.755663871765137,1.24152612686157,-1.27911281585693,0.783680200576782,1.20311784744263,-1.1577320098877,0.7833092212677,1.0578408241272,-1.14925575256348,0.802698612213135,0.912711143493652,-0.957178115844727,0.62076997756958,0.705772876739502,-0.606789588928223,0.431336998939514,0.49042797088623,-0.417122840881348,0.267547369003296,0.291525363922119,-0.253942489624023,0.183407664299011,0.200567722320557,-0.136415481567383,0.126437336206436,0.13662052154541,-0.0482444763183594,0.0360139012336731,0.0395994186401367,-0.0118923187255859,0.051430344581604,0.0621609687805176,-0.0296230316162109,0.0532042980194092,0.0991911888122559,-0.0663909912109375,0.068458080291748,0.162514686584473,-0.115501403808594,0.162719249725342,0.410398960113525,-0.208106994628906,0.270444631576538,0.551486015319824,-0.251461982727051,0.478776693344116,0.766640663146973,-0.612368583679199,0.479750394821167,1.08522367477417,-1.01621150970459,0.482890844345093,1.3445029258728,-1.05967712402344,0.550342798233032,1.30738687515259,-1.07348251342773,0.64227294921875,0.792848110198975,-0.839774131774902,0.516250371932983,0.503678798675537,-0.50274658203125,0.388018608093262, -0.488545894622803,-0.21129322052002,0.302158117294312,0.423520088195801,-0.202205657958984,0.0429326295852661,0.0452742576599121,0.0535917282104492,0.0693684816360474,0.0746598243713379,0.0225582122802734,0.105386018753052,0.117594718933105,-0.0187616348266602,0.153674125671387,0.179139614105225,-0.139959335327148,0.212814331054688,0.264853000640869,-0.240682601928711,0.0738129317760468,0.0799012184143066,0.00723648071289063,0.162980318069458,0.119552612304688,-0.141581535339355,0.123478889465332,0.220269680023193,-0.199660301208496,0.190977811813354,0.40557336807251,-0.279606819152832,0.303928375244141,0.672940731048584,-0.471795082092285,0.518782377243042,0.928863525390625,-0.515346527099609,0.651650190353394,1.17559814453125,-0.84105110168457,0.638954401016235,1.33206415176392,-1.1961784362793,0.671753406524658,1.32497882843018,-1.2897777557373,0.709600687026978,1.29039812088013,-1.32439422607422,0.753500699996948,0.96449613571167,-1.09985065460205,0.735457897186279,0.833239555358887,-0.943358421325684,0.690157413482666,0.791527271270752,-0.721676826477051,0.668200731277466,0.767022609710693,-0.585491180419922,0.570119857788086,0.574554443359375,-0.516372680664063,0.30520236492157,0.336688995361328,-0.323385238647461,0.207812547683716,0.222201347351074,-0.140748023986816,0.138684451580048,0.148377895355225,-0.0595273971557617,0.0858651101589203,0.0905394554138184,0.00245475769042969,0.00985977053642273,0.0285630226135254,0,0.0273736715316772,0.0221238136291504,0,0.0124967098236084,0.0326979160308838,0.000164031982421875,-0.00385177135467529,0.15786600112915,0.000667572021484375,-0.00200724601745605,0.208488464355469,-0.00113773345947266,0.0959780216217041,0.381638765335083,-0.311526298522949,0.311861753463745,0.6244797706604,-0.43171501159668,0.366658687591553,1.08328342437744,-0.648689270019531,0.00522279739379883,0.0829877853393555,0.0881490707397461,0.13139820098877,0.211676120758057,-0.113384246826172,0.351564407348633,0.668519496917725,-0.275273323059082,0.28621244430542,1.17311573028564,-0.357152938842773, -0.37065052986145,1.18894910812378,-0.553585052490234,0,0,0.0141019821166992,0,0,0.0166645050048828,0,0,0.00992870330810547,0,0,0.000542640686035156,0.0393860340118408,0.141563892364502,0.0782108306884766,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,0.120375096797943,9.20295715332031e-05,0,0.144842565059662,0.000103473663330078,0.00714349746704102,0.379486083984375,-0.00335121154785156,0.00373125076293945,0.545555114746094,0.106529712677002,0.00739955902099609,0.4706130027771,0.0239486694335938,0,0.685157716274261,0.180377960205078,0.00619411468505859,0.456957936286926,0.0373802185058594,0,0.650361657142639,0.141945838928223,-0.0015866756439209,0.277819752693176,0.00592899322509766,0,0.40487802028656,0.0621328353881836,0,0.0759490728378296,0,0,0.0753723382949829,0,0,0.0290725827217102,0,-0.00152325630187988,0.0247269868850708,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,5.57899475097656e-05,0.278158582746983,0.0129108428955078,0,0.37528076954186,0.0232467651367188,0,0.707083106040955,0.180951118469238,-0.00357770919799805,0.488700866699219,0.0616827011108398,0,0.534188747406006,0.0881557464599609,0.0109691619873047,0.383949279785156,0.0203104019165039,0,0.187425255775452,0.0332279205322266,-0.000374078750610352,0.157466053962708,-0.000298500061035156,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.0812101364135742,0.0812087059020996,0,0.0385951995849609,0.0386033058166504,0,0.35653018951416,0.356534957885742,0,0.06097412109375,0.0609786510467529,0,0.48246431350708,0.482460498809814,0,0.002197265625,0.00219053030014038,0,0.283894062042236,0.283892869949341, -0,0.164848327636719,0.164837598800659,0,0.010859489440918,0.0108604431152344,0,0.225071907043457,0.225070476531982,0,0.0221662521362305,0.022168755531311,0,0.400735378265381,0.400734424591064,0,0.022221565246582,0.0222148895263672,0,0.103660583496094,0.103664398193359,0,0.192276954650879,0.192270278930664,0,0.254675388336182,0.254682540893555,0,0.186977863311768,0.186983585357666,0,0.120741367340088,0.120741128921509,0,0.0624985694885254,0.0624922513961792,0.0999999046325684,0.410187959671021,0,0.0999999046325684,0.236515283584595,0,0.162853717803955,0.268378019332886,0,0.162853717803955,0.377988338470459,0,0.162506341934204,0.248990774154663,-0.000658035278320313,0.100000023841858,0.230084419250488,0,0.100000023841858,0.271437883377075,0,0.163744807243347,0.290322303771973,-0.000491142272949219,0.00406110286712646,0.0789573192596436,0,0.014385461807251,0.255821466445923,0,0.0999999046325684,0.265031576156616,-0.00277328491210938,0.0999999046325684,0.420051336288452,0,0.0405309200286865,0.439738750457764,0.109830856323242,0.162686824798584,0.419004201889038,0.139925956726074,0.2295241355896,0.542010307312012,0.0779399871826172,0.330397605895996,0.919257164001465,-0.0116300582885742,0.294425010681152,0.811666965484619,0.0427913665771484,0.157881736755371,0.365872859954834,0.11107063293457,-0.0398588180541992,0.177743434906006,0.120985984802246,0.000526189804077148,0.0747222900390625,0.0753364562988281,0.0093543529510498,0.0254364013671875,0.0364246368408203,0.0430151522159576,0.0315632820129395,0,0.0209885537624359,0.0359420776367188,0,0.0348715484142303,0.03594970703125,0,0.0489092767238617,0.0331461429595947,0,0.041869729757309,0.0412425994873047,0,0.0152446925640106,0.0377686023712158,0,0.0454334914684296,0.0618398189544678,0,0.0150698721408844,0.0638890266418457,0,0.057433545589447,0.0652675628662109,0,0.0196424424648285,0.0703232288360596,0,0.0667752623558044,0.0528552532196045,0,0.0479891300201416,0.0641906261444092,0,0.122839212417603,0.192924022674561,0.0151157379150391,0.116623759269714,0.259340524673462,0.0159435272216797, -0.151784062385559,0.193490505218506,0.00856685638427734,0.1623375415802,0.263237476348877,-0.00216388702392578,0.163622617721558,0.179462671279907,0.00551033020019531,0.165335536003113,0.227160453796387,-0.00662994384765625,0.162202835083008,0.169953107833862,0,0.121521353721619,0.255175590515137,0,0.0907981395721436,0.00604057312011719,0,0.0651452541351318,0.0447161197662354,0,0.0573937296867371,0.0166680812835693,0,0.0628357529640198,0.016005277633667,0,0.111344695091248,0.0330820083618164,0,0.0889623165130615,0.0943939685821533,0,0.0401086211204529,0.0348308086395264,0,0.0382111072540283,0.0445799827575684,0,0.0405855476856232,0.0686328411102295,0,0.0538530349731445,0.0719857215881348,0,0.067048966884613,0.0582754611968994,0,0.127467453479767,0.2298583984375,0.0203866958618164,0.16060471534729,0.219604253768921,0.00880336761474609,0.171759247779846,0.195117473602295,0.00356292724609375,0.163466691970825,0.195428371429443,0,0.112754821777344,0.0538473129272461,0,0.0902532935142517,0.0127358436584473,0,0.0643498301506042,0.0170843601226807,0,0.047791600227356,0.0353140830993652,0,0.0441147089004517,0.0359435081481934,0,0.0629429221153259,0.0172994136810303,0,0.0821250081062317,0.019451379776001,0,0.104676008224487,0.0716896057128906,0,0.151944279670715,0.220437526702881,0,0.174617409706116,0.209667921066284,-0.00084686279296875,0.164431691169739,0.239760875701904,0.00404834747314453,0.124161064624786,0.238654851913452,0.0195045471191406,0.0621252655982971,0.0596387386322021,0,0.0472608208656311,0.0744917392730713,0,0.0352332592010498,0.0696706771850586,0,0.0311589241027832,0.0434043407440186,0,0.0337567925453186,0.0359435081481934,0,0.0103150010108948,0.0329136848449707,0,0.0189869403839111,0.0666244029998779,0,0.100939512252808,0.294716835021973,0.00936031341552734,0.0692451000213623,0.28000283241272,6.96182250976563e-05,0.000391244888305664,0.0713791847229004,0,0.180607318878174,0.313431978225708,0.00115489959716797,0.15175187587738,0.295029163360596,-0.0108089447021484,0.145132422447205,0.24541187286377,-0.0143833160400391, -0.169746279716492,0.26386570930481,-0.00206947326660156,0.169936060905457,0.174321889877319,0.00407218933105469,0.17670202255249,0.181179285049438,0.00182437896728516,0.168173313140869,0.193114519119263,0.000481605529785156,0.149486660957336,0.213171482086182,1.1444091796875e-05,0.12571656703949,0.23421311378479,0,0.157601594924927,0.263725996017456,0.0133800506591797,0.0845487117767334,0.307615995407104,0,0.105027079582214,0.362545490264893,0,0.0471242666244507,0.194660663604736,0,0.0650398731231689,0.263664960861206,0,0.0239908695220947,0.176133394241333,9.5367431640625e-06,0.0633293390274048,0.270389556884766,-0.000301361083984375,0.0931510925292969,0.257895469665527,-0.0111618041992188,0.094136118888855,0.425754547119141,-0.000995635986328125,0.0999999046325684,0.294389247894287,0,0.162853717803955,0.338751554489136,0,0.153993129730225,0.330218553543091,0.0133800506591797,0.0917040109634399,0.283359289169312,0,0.125476241111755,0.254048824310303,0,0.15634024143219,0.215863704681396,0,0.168752431869507,0.185629367828369,0,0.166390538215637,0.165019989013672,0.000479698181152344,0,-6.07967376708984e-06,0,0.00741666555404663,0.0185325145721436,0,0.0199999809265137,0.0999908447265625,0,0,-4.64916229248047e-06,0,0.00211912393569946,0.00816428661346436,0,0.0199999809265137,0.0999847650527954,0,0,-4.58955764770508e-06,0,-0.000686109066009521,0.000141739845275879,0,0.0199999809265137,0.0999847650527954,0,0,0.00477266311645508,0,0.0198195576667786,0.026484489440918,0,0.0610345602035522,0.235920667648315,0,0.0940465927124023,0.424496173858643,0,0.0923123359680176,0.413531064987183,0,0.0552965402603149,0.297423124313354,0,0.0610345602035522,0.293076753616333,0,0.0199999809265137,0.253825187683105,0,0.0312525033950806,0.262957096099854,0,0.0199999809265137,0.0999987125396729,0,0.03873610496521,0.230994462966919,0,0.0199999809265137,0.0999877452850342,0,0.0423910617828369,0.229442358016968,0,0.0777370929718018,0.277410984039307,0,0.0544322729110718,0.263275623321533,0,0.099763035774231,0.286029100418091,0,0.100000023841858, -0.243182897567749,0,0.097464919090271,0.243473529815674,0,0.0740594863891602,0.237645387649536,0,0.071816086769104,0.229446887969971,0,0.100000023841858,0.229449510574341,0,0,0.0286219120025635,0,0.0141246914863586,0.0441789627075195,0,0.094832181930542,0.256793022155762,0,0.0882402658462524,0.232730388641357,0,0.0929419994354248,0.229453563690186,0,0.0878140926361084,0.436149597167969,0.000123977661132813,0.0559799671173096,0.314321756362915,0,0.0134904384613037,0.117861747741699,0,0.00705611705780029,0.060289740562439,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0.00851058959960938,0.250736474990845,0.156147003173828,-0.0144195556640625,0.344099044799805,0.197043418884277,0,0.175024509429932,0.241936683654785,0.00196146965026855,0.197541952133179,0.257369041442871,0,0.363320589065552,0.296060562133789,0.0285332202911377,0.32060980796814,0.34233283996582,0,0.610493421554565,0.206000328063965,0.0401010513305664,0.578113555908203,0.30206298828125,0.0841460227966309,0.651404619216919,0.256318092346191,0,0.708309888839722,0.425711631774902,0,0.756303310394287,0.25572681427002,0,0.789532423019409,0.469202041625977,0,0.819888234138489,0.30653190612793,0,0.72809898853302,0.425552368164063,0,0.776386857032776,0.279592514038086,0,0.501426696777344,0.255244731903076,0,0.597012221813202,0.162715911865234,0,0.199398815631866,0.0667128562927246,0,0.285688757896423,0.0304265022277832,0,0.720053195953369,0.547023296356201,0,0.74214768409729,0.571880340576172,0,0.808605909347534,0.625621795654297,0,0.498356342315674,0.364551067352295,0.154631614685059,0.844466686248779,0.295870780944824,0,0.732550144195557,0.646092891693115,0,0.818905115127563,0.724274635314941,0,0.732923984527588,0.643249034881592,0,0.79356050491333,0.751604080200195,0,0.706692218780518,0.671451091766357,0,0.724737167358398,0.68503999710083,0.128349781036377,0.796257495880127,0.301641941070557,0.120188236236572,0.377138614654541,0.389564514160156,0,0.590972423553467,0.590951919555664,0,0.70997142791748,0.698229312896729,0,0.73881196975708,0.726625919342041, --0.0284929275512695,0.170897483825684,0.257709503173828,0,0.312698841094971,0.312702178955078,0,0.450172424316406,0.450164318084717,0,0.183678150177002,0.183680534362793,0,0.145829200744629,0.145834922790527,0,0.012782096862793,0.0127763748168945,0,0.0641012191772461,0.0641098022460938,0,0.040924072265625,0.0409202575683594,0,0.00790977478027344,0.00790214538574219,0,0.00108146667480469,0.00107765197753906,0,0.566425800323486,0.566432476043701,0,0.634742736816406,0.634739875793457,0,0.058074951171875,0.0580766201019287,0,0.247834205627441,0.247835636138916,0,0.44639253616333,0.446391105651855,0,0.637979030609131,0.637984752655029,0,0.0464558601379395,0.04644775390625,0,0.235540866851807,0.235541343688965,0,0.465264797210693,0.465257167816162,0,0.559603214263916,0.559608459472656,0,0.645765781402588,0.645771980285645,0,0.401989459991455,0.401984930038452,0,0.452390909194946,0.452389240264893,0,0.494573831558228,0.471117496490479,0,0.501083374023438,0.435564994812012,0,0.213491916656494,0.213487386703491,0,0.241825819015503,0.24182653427124,0,0.227441310882568,0.227444648742676,0,0.233962774276733,0.201238870620728,0,0.223219275474548,0.151006698608398,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0, -0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,3.96817922592163e-05,4.57763671875e-05,0,0.000466920435428619,0.000459671020507813,0,0.000103771686553955,0.000103950500488281,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,0.0226364135742188,0,0,0.0552688241004944,0,-0.0020442008972168,0.126040577888489,-0.00647926330566406,0.000676631927490234,0.210137963294983,0.0100793838500977,0.00312042236328125,0.274165272712708,0.011932373046875,-0.000406742095947266,0.34236752986908,0.0237598419189453,-0.0237593650817871,0.367411732673645,0.0458641052246094,-0.0117788314819336,0.347425818443298,0.0448651313781738,-0.0675268173217773,0.289352416992188,0.0308055877685547,-0.0162677764892578,0.16912841796875,0.0201258659362793,0,0.0786499381065369,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,0.037646472454071,0,0,0.0778884887695313,0.00159406661987305,-0.000454902648925781,0.121151734143496,0.00970458984375,0,0.149458304047585,0.0168819427490234,0,0.154101550579071,0.0146684646606445,0,0.140580713748932,0.00717926025390625,0,0.114933788776398,0.000848770141601563,1.52587890625e-05,0.0828307867050171,-3.14712524414063e-05, -0,0.0519378781318665,0,0,0.0281478762626648,0,0,0.0124145448207855,0,0,0.00284118950366974,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,0.113494873046875,0.0001373291015625,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,0.00354146957397461,0.0035322904586792,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.814697265625e-05,3.44514846801758e-05,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,0.00470590591430664,0.00470209121704102,0,0.0348846912384033,0.0348873138427734,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.00231170654296875,0.00231665372848511,0,0.0138809680938721,0.0138884782791138,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0, --2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,0.0199539661407471,0.0199553966522217,0,0.0264022350311279,0.0264006853103638,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,0.00271916389465332,0.00271803140640259,0,0.00397491455078125,0.00396817922592163,0,0.00499272346496582,0.00500035285949707,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,0.00308370590209961,0.00308513641357422,0,-6.19888305664063e-06,0,0,9.00030136108398e-05,8.02278518676758e-05,0,0.019775390625,0.0197718143463135,0,0.000436365604400635,0.000435829162597656,0,0.0632720962166786,0.00306224822998047, -0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.11570405960083,0.115694999694824,0,0.0984954833984375,0.098491907119751,0,0.0666244029998779,0.0666210651397705,0,0.04841148853302,0.0484087467193604,0,0.0756164193153381,0.032548189163208,0,0.00139617919921875,0.00139927864074707,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.001953125,0.00194966793060303,0,0.0414900779724121,0.0414818525314331,0,0.0817303657531738,0.0817365646362305,0,0.102120876312256,0.102127432823181,0,0.0428450107574463,0.0428465604782104,0,0.0418884754180908,0.0418946743011475,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06, -0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0686224699020386,0.131339311599731,0,0.0803417563438416,0.140960931777954,0,0.0946940779685974,0.149560451507568,0,0.104705691337585,0.142169237136841,0,0.109913229942322,0.146900415420532,0,0.115104675292969,0.159123420715332,0,0.0611746311187744,0.129290580749512,0,0.0532138347625732,0.129290580749512,0,0.0504551529884338,0.00510430335998535,0,0.0479691624641418,0.00735092163085938,0,0.052191436290741,0.00653171539306641,0,0.0658787488937378,0.00151586532592773,0,0.0840401649475098,9.5367431640625e-06,0,0.0992790460586548,0.00682330131530762,0,0.113266706466675,0.0306658744812012,0,0.0678815245628357,0.129284381866455,0,0.079240620136261,0.129491090774536,0,0.0907720923423767,0.129478216171265,0,0.102042198181152,0.13684606552124,0,0.0595511794090271,0.129290580749512,0,-0.00674924254417419,-0.00326251983642578,-0.138082504272461,0.092125415802002,0.8501296043396,-1.13014602661133,0.142074108123779,0.937809944152832,-1.20134019851685,0.123252630233765,0.654169082641602,-0.926348686218262,0.0559718608856201,0.787017822265625,-1.03789234161377,0.107673525810242,0.406932353973389,-0.765750885009766,-0.0166324973106384,0.0922679901123047,-0.741513252258301,-0.00344139337539673,-0.0169658660888672,-0.407352447509766,0.148383378982544,0.842872142791748,-1.18830633163452,0.297156095504761,0.756353855133057,-1.20088815689087,0.30971097946167,0.580183029174805,-1.17550230026245,0.347258567810059,0.196982860565186,-0.814088821411133,0.285465478897095,0.0538492202758789,-0.665604591369629,0.276171922683716,-0.0137624740600586,-0.410099983215332,0.227282643318176,-0.0408000946044922,-0.275561332702637,0.110105633735657,-0.0171394348144531,-0.238299369812012,0,0,0.0628519058227539,0,0,0.0505285263061523,0,0,0.0454206466674805,0.107136756181717,0.119833946228027,-0.0525178909301758,0.130377471446991,0.200599193572998, --0.152209281921387,0.149489760398865,0.295027732849121,-0.310447692871094,0.253184676170349,0.462238788604736,-0.387774467468262,0.425948739051819,0.745505809783936,-0.602468490600586,0.528151035308838,0.938767910003662,-0.834512710571289,0.492781639099121,1.07602024078369,-1.08432006835938,0.320883512496948,1.12324237823486,-1.07913398742676,0.382086515426636,1.19590950012207,-1.18410778045654,0.4806227684021,1.03061532974243,-1.18275547027588,0.461478233337402,0.927089214324951,-1.08271789550781,0.373913049697876,0.797740936279297,-0.969921112060547,0.333985090255737,0.571910858154297,-0.817037582397461,0.335246801376343,0.493689060211182,-0.614094734191895,0.353063344955444,0.407426357269287,-0.571516036987305,0.28676700592041,0.278003215789795,-0.380960464477539,0.267441868782043,0.294036865234375,-0.262039184570313,0.179674208164215,0.199520587921143,-0.141022682189941,0.124505043029785,0.131499767303467,-0.0527372360229492,0.0557845234870911,0.0366582870483398,-0.0273752212524414,0.105253517627716,0.163015842437744,-0.111342430114746,0.11329460144043,0.288881301879883,-0.294978141784668,0.175743460655212,0.531348705291748,-0.376167297363281,0.323932290077209,0.874509334564209,-0.63753604888916,0.383604526519775,1.08052539825439,-0.814425468444824,0.324109792709351,1.30893468856812,-0.907532691955566,0.0459296703338623,1.35073900222778,-0.968086242675781,0.0832781791687012,1.1246452331543,-1.09744834899902,0.440655946731567,0.8722243309021,-1.06291961669922,0.371651411056519,0.650352954864502,-1.10626268386841,0.433174610137939,0.261968612670898,-0.664688110351563,0.340415477752686,0.00135946273803711,-0.433822631835938,0.351510047912598,-0.166252136230469,-0.245529174804688,0.249775528907776,-0.205191135406494,-0.0955390930175781,0.168144941329956,-0.206719875335693,-0.0158805847167969,-0.0277719497680664,-0.0340471267700195,0.081904411315918,-0.00919568538665771,-0.00837421417236328,0.0852508544921875,-0.000849455595016479,-0.0018916130065918,0.0795812606811523,0,5.96046447753906e-06,0,-0.274328470230103,0.0927848815917969, --0.648492336273193,0,0.304619312286377,-0.875658988952637,-0.0547678470611572,0.143083095550537,-0.0654087066650391,-0.250402927398682,0.023106575012207,-0.40710973739624,0,0.0891194343566895,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,0.122697353363037,-0.896142959594727,0,0.248271942138672,-0.907111167907715,-0.0504250526428223,0.119516849517822,-0.842813014984131,0,-0.134779930114746,-0.488653659820557,-0.0878419876098633,2.86102294921875e-06,-0.317373752593994,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,0.059497594833374,-0.110101222991943,0,0.0478353500366211,-0.162425518035889,0,0.231618881225586,-0.251439094543457,0,0.122671604156494,-0.395650386810303,0,0.339669704437256,-0.513039112091064,0,0.0894670486450195,-0.276107311248779,0,3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06, -0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *5151 { - a: -0.361779465851725,0.701383203268051,-0.769705891609192,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763, --1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243, -1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116, -0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017, --0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695, --0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668, --0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385, --0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831, --0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004, --0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447, --0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043, --1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399, --0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099, --0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848, --0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891, -0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733, -0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762, -0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147, -0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.180295750498772,0.379578433930874,1.83726984262466,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773, -0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043, -0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245, -0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629, --1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698, --0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143, -0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567, --0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759, --0.766009718179703,0.116848640143871,0.689910739660263,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434, -1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933, -1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301, --1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262, --0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583, --1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816, -0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879, --0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352, --1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101, --0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815, -0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266, --0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414, -0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578, --1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612, -0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328, --0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318, -0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007, --0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074, -0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146, -0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 - } - } - Geometry: 2805454333728, "Geometry::Mouth_Raiser_Right", "Shape" { - Version: 100 - Indexes: *7177 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971, -2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409,3410, -3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820, -3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243, -4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658,4659, -4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082, -5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497, -5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954, -5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6383,6384,6385,6386,6387,6410,6411,6412, -6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6444,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6567,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191, -7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7478,7480,7482,7483,7484,7485,7486,7487,7488,7489,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7649,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7826,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853, -7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8547,8548,8552,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741, -8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799 - } - Vertices: *21531 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, -0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, -0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, -0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, -4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, --7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05, -0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348, -0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699, -0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05, -0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05, -0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,-0.000269412994384766,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05, -0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699, -0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625, -0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05, -0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05, -0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0, -8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, -0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05, -0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05, -0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05, -0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05, -0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05, -0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05, -0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0, -0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,2.18749046325684e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, -0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0, -8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,-0.000228703022003174,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, -0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05, -0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05, -0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05, -0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05, -0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05, -0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, -0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05, -0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05, -0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0, -0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05, -0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05, -0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0, -0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781, -0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0, -0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05, -0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05, -0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0, -0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05, -0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0, -0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944, -0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05, -0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0, -0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578, -0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05, -0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, -8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05, -0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0, -0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0, -9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781, -0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0, -0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0, -0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05, -0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0, -0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0, -8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05, -0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803, -0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0, -0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, -0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05, -0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05, -0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,1.66221145432263e-29,0.0421245098114014,0,1.67509351823815e-29,0.00739669799804688,0,-0.069600671507942,0.00740814208984375,0.0133209228515625,-0.0696006715224939,0.0683817863464355,0.0133209228515625,-0.0766299366223393,0.0806794166564941,0.0133209228515625,-0.076629936673271,0.0654416084289551,0.0133209228515625,-0.069600671507942,0.00740337371826172,0.0133199691772461,-0.0766299367096508,0.0806884765625,0.0133209228515625,-0.069600671515218,0.007415771484375,0.0133218765258789,-0.076629936673271,0.088066577911377,0.0133209228515625,-0.0232002250850201,0.024627685546875,0.00497531890869141,-0.0255433134971099,0.0268921852111816,0.0742597579956055,-0.0464004501736781,0.0492429733276367,0.0437917709350586,-0.0510866270487895,0.0537962913513184,0.0437908172607422,1.63308522456914e-29,0.0110573768615723,0,1.31183529502049e-29,2.86102294921875e-06,0.0132322311401367,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,-2.98023223876953e-06,0,1.6494232794919e-29,6.09457492828369e-06,0,1.76704839760241e-29,-6.10947608947754e-06,0,1.76704839760241e-29,1.54972076416016e-06,0,1.76704839760241e-29,3.09944152832031e-06,0,1.63431706741717e-29,0.0273797512054443,0,1.63516402520287e-29,0.0232882499694824,0,1.63594763794899e-29,0.016993522644043,0,1.63467396630998e-29,0.0143084526062012,0,1.63873030579207e-29,0.0193789005279541,0,1.64724848328751e-29,0.0420000553131104,0,1.69452569998719e-29,-6.07967376708984e-06,0,1.70417235205941e-29,-3.09944152832031e-06,0,1.71227329488799e-29,-1.54972076416016e-06, -0,1.68687870486503e-29,4.52995300292969e-06,0,1.68150235105465e-29,0.000456094741821289,0,1.6823769940833e-29,3.03983688354492e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,1.20450953867742e-29,4.52995300292969e-06,0,1.25386284767183e-29,4.58955764770508e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,0.00030970573425293,0,0,-6.09457492828369e-06,0,0,0.000513523817062378,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,0.0980789661407471,0,0,0.0537068843841553,0,-0.109404057264328,0.00635051727294922,-0.041346549987793,-0.11065486073494,0.119833469390869,-0.0415019989013672,-0.577010154724121,1.1142578125,-1.19161701202393,-0.651964664459229,1.29945230484009,-1.18517398834229,-0.735210418701172,1.13890743255615,-0.985410690307617,-0.675071477890015,0.901994705200195,-1.19204711914063,-0.342523813247681,0.707215309143066,-0.515114784240723,-0.493984937667847,0.498385906219482,-0.652111053466797,-0.223673462867737,0.461632251739502,-0.318572998046875,-0.268253922462463,0.280452728271484,-0.440461158752441,-0.171403765678406,0.247918605804443,-0.249712944030762,-0.159429550170898,0.0912680625915527,-0.294137001037598,-0.171427130699158,0.133952617645264,-0.172199249267578,-0.147028148174286,0.023859977722168,-0.117494583129883,-0.628769874572754,0.701540946960449,-0.873368263244629,-0.58311915397644,0.895533561706543,-0.637057304382324,-0.675577163696289,1.28249168395996,-1.28822898864746,-0.63475775718689,1.17517137527466,-1.33303356170654,-0.720822334289551,1.28418254852295,-1.34038925170898,-0.598799467086792,1.18098497390747,-1.28858184814453, --0.780187368392944,1.11220645904541,-1.20008563995361,-0.585318088531494,1.16025304794312,-1.21508598327637,-0.760005235671997,0.988587856292725,-1.06015682220459,-0.555883646011353,1.12059926986694,-1.09805297851563,-0.601967334747314,0.980047702789307,-1.12635231018066,-0.853413105010986,1.00761413574219,-0.970894813537598,-0.665758848190308,0.838160991668701,-0.998209953308105,-0.813811540603638,0.942248821258545,-0.811418533325195,-0.645570278167725,0.712018013000488,-0.585637092590332,-0.467674970626831,0.649681568145752,-0.566285133361816,-0.453079462051392,0.466160297393799,-0.448667526245117,-0.407931327819824,0.493937015533447,-0.43466854095459,-0.292707443237305,0.305967807769775,-0.258566856384277,-0.266164898872375,0.294405937194824,-0.254031181335449,-0.202662706375122,0.214481830596924,-0.140233993530273,-0.180864691734314,0.201183795928955,-0.13611888885498,-0.128797709941864,0.135787963867188,-0.0486831665039063,-0.12524539232254,0.125740051269531,-0.04803466796875,-0.165018856525421,0.116413116455078,-0.0414524078369141,-0.202110588550568,0.189950466156006,-0.123610496520996,-0.218051195144653,0.236100673675537,-0.218132972717285,-0.317160964012146,0.455863475799561,-0.354351043701172,-0.438881635665894,0.712942123413086,-0.524405479431152,-0.640413999557495,0.933218002319336,-0.701214790344238,-0.791547060012817,1.15863513946533,-1.06826019287109,-0.673439979553223,1.29688930511475,-1.17191028594971,-0.705334901809692,1.27984809875488,-1.2864933013916,-0.734445810317993,1.28334712982178,-1.34778022766113,-0.765701532363892,1.22369050979614,-1.28171634674072,-0.834775924682617,1.16091203689575,-1.14033126831055,-0.920666933059692,1.09050607681274,-1.01376724243164,-0.914159536361694,0.954336643218994,-0.901653289794922,-0.671274185180664,0.692586421966553,-0.641805648803711,-0.490262627601624,0.467108249664307,-0.418026924133301,-0.328195452690125,0.292797565460205,-0.254822731018066,-0.245367348194122,0.203634738922119,-0.137659072875977,-0.182820320129395,0.135326862335205,-0.0485391616821289,-0.109731942415237, -0.00693893432617188,-0.0413904190063477,-0.146625280380249,0.0206613540649414,-0.118207931518555,-0.174119710922241,0.136242389678955,-0.228367805480957,-0.287082552909851,0.361271381378174,-0.363458633422852,-0.473078846931458,0.600516319274902,-0.54026985168457,-0.676203489303589,0.840977668762207,-0.759921073913574,-0.777013301849365,0.999681949615479,-1.07364940643311,-0.644418239593506,1.16472482681274,-1.09964752197266,-0.65627908706665,1.20963764190674,-1.22374153137207,-0.72022271156311,1.23949432373047,-1.29627990722656,-0.755663394927979,1.24152612686157,-1.27911281585693,-0.78368067741394,1.20311784744263,-1.1577320098877,-0.783309936523438,1.0578408241272,-1.14925575256348,-0.802698373794556,0.912711143493652,-0.957178115844727,-0.620769500732422,0.705772876739502,-0.606789588928223,-0.431336641311646,0.49042797088623,-0.417122840881348,-0.267547607421875,0.291525363922119,-0.253942489624023,-0.183407783508301,0.200567722320557,-0.136415481567383,-0.126437455415726,0.13662052154541,-0.0482444763183594,-0.0360139012336731,0.0395994186401367,-0.0118923187255859,-0.051430344581604,0.0621609687805176,-0.0296230316162109,-0.0532042980194092,0.0991911888122559,-0.0663909912109375,-0.068458080291748,0.162514686584473,-0.115501403808594,-0.162719249725342,0.410398960113525,-0.208106994628906,-0.270444631576538,0.551486015319824,-0.251461982727051,-0.478776693344116,0.766640663146973,-0.612368583679199,-0.479750394821167,1.08522367477417,-1.01621150970459,-0.482890844345093,1.3445029258728,-1.05967712402344,-0.550342798233032,1.30738687515259,-1.07348251342773,-0.64227294921875,0.792848110198975,-0.839774131774902,-0.516250371932983,0.503678798675537,-0.50274658203125,-0.388018608093262,0.488545894622803,-0.21129322052002,-0.302158117294312,0.423520088195801,-0.202205657958984,-0.0429326295852661,0.0452742576599121,0.0535917282104492,-0.0693684816360474,0.0746598243713379,0.0225582122802734,-0.105386018753052,0.117594718933105,-0.0187616348266602,-0.153674125671387,0.179139614105225,-0.139959335327148,-0.212814331054688, -0.264853000640869,-0.240682601928711,-0.0738129317760468,0.0799012184143066,0.00723648071289063,-0.162980318069458,0.119552612304688,-0.141581535339355,-0.123478889465332,0.220269680023193,-0.199660301208496,-0.190977931022644,0.40557336807251,-0.279606819152832,-0.30392861366272,0.672940731048584,-0.471795082092285,-0.518782615661621,0.928863525390625,-0.515346527099609,-0.651650190353394,1.17559814453125,-0.84105110168457,-0.638954401016235,1.33206415176392,-1.1961784362793,-0.671753406524658,1.32497882843018,-1.2897777557373,-0.709600448608398,1.29039812088013,-1.32439422607422,-0.753500699996948,0.96449613571167,-1.09985065460205,-0.735458135604858,0.833239555358887,-0.943358421325684,-0.690157413482666,0.791527271270752,-0.721676826477051,-0.668200492858887,0.767022609710693,-0.585491180419922,-0.570119857788086,0.574554443359375,-0.516372680664063,-0.30520236492157,0.336688995361328,-0.323385238647461,-0.207812428474426,0.222201347351074,-0.140748023986816,-0.138684511184692,0.148377895355225,-0.0595273971557617,-0.0858651101589203,0.0905394554138184,0.00245475769042969,-0.00985977053642273,0.0285630226135254,0,-0.0273736715316772,0.0221238136291504,0,-0.0124967098236084,0.0326979160308838,0.000164031982421875,0.00385177135467529,0.15786600112915,0.000667572021484375,0.00200724601745605,0.208488464355469,-0.00113773345947266,-0.0959780216217041,0.381638765335083,-0.311526298522949,-0.311861753463745,0.6244797706604,-0.43171501159668,-0.366658687591553,1.08328342437744,-0.648689270019531,-0.00522279739379883,0.0829877853393555,0.0881490707397461,-0.13139820098877,0.211676120758057,-0.113384246826172,-0.351564407348633,0.668519496917725,-0.275273323059082,-0.28621244430542,1.17311573028564,-0.357152938842773,-0.37065052986145,1.18894910812378,-0.553585052490234,0,0,0.0141019821166992,0,0,0.0166645050048828,0,0,0.00992870330810547,0,0,0.000542640686035156,-0.0393860340118408,0.141563892364502,0.0782108306884766,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06, -0,0,3.09944152832031e-06,0,0,4.05311584472656e-06,9.5367431640625e-07,0,-4.52995300292969e-06,0,0,2.38418579101563e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,-4.76837158203125e-07,0,0.120375096797943,9.25064086914063e-05,0,0.144842565059662,0.000103473663330078,-0.00714349746704102,0.379486083984375,-0.00335121154785156,-0.00373125076293945,0.545555114746094,0.106529712677002,-0.00739955902099609,0.4706130027771,0.0239486694335938,0,0.685157716274261,0.180377960205078,-0.00619411468505859,0.456957936286926,0.0373802185058594,0,0.650361657142639,0.141945838928223,0.0015866756439209,0.277819752693176,0.00592899322509766,0,0.40487802028656,0.0621328353881836,0,0.0759490728378296,0,0,0.0753723382949829,0,0,0.0290725827217102,0,0.00152325630187988,0.0247269868850708,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,-5.57899475097656e-05,0.278158582746983,0.0129108428955078,0,0.37528076954186,0.0232467651367188,0,0.707083106040955,0.180951118469238,0.00357770919799805,0.488700866699219,0.0616827011108398,0,0.534188747406006,0.0881557464599609,-0.0109705924987793,0.383941650390625,0.0203123092651367,0,0.187425255775452,0.0332279205322266,0.000374078750610352,0.157466053962708,-0.000298500061035156,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.0812101364135742,0.0812087059020996,0,0.0385951995849609,0.0386033058166504,0,0.35653018951416,0.356534957885742,0,0.06097412109375,0.0609786510467529,0,0.48246431350708,0.482460498809814,0,0.002197265625,0.00219053030014038,0,0.283894062042236,0.283892869949341,0,0.164848327636719,0.164837598800659,0,0.010859489440918,0.0108604431152344,0,0.225071907043457,0.225070476531982,0,0.0221662521362305,0.022168755531311,0,0.400735378265381,0.400734424591064,0,0.022221565246582,0.0222148895263672,0,0.103660583496094,0.103664398193359, -0,0.192276954650879,0.192270278930664,0,0.254675388336182,0.254682540893555,0,0.186977863311768,0.186983585357666,0,0.120741367340088,0.120741128921509,0,0.0624985694885254,0.0624922513961792,-0.0999999046325684,0.410187959671021,0,-0.0999999046325684,0.236515283584595,0,-0.162853717803955,0.268378019332886,0,-0.162853717803955,0.377988338470459,0,-0.162506341934204,0.248990774154663,-0.000658035278320313,-0.100000023841858,0.230084419250488,0,-0.100000023841858,0.271437883377075,0,-0.163744807243347,0.290322303771973,-0.000491142272949219,-0.00406110286712646,0.0789573192596436,0,-0.014385461807251,0.255821466445923,0,-0.0999999046325684,0.265031576156616,-0.00277328491210938,-0.0999999046325684,0.420051336288452,0,-0.0405309200286865,0.439738750457764,0.109830856323242,-0.162686824798584,0.419004201889038,0.139925956726074,-0.2295241355896,0.542010307312012,0.0779399871826172,-0.330397605895996,0.919257164001465,-0.0116300582885742,-0.294425010681152,0.811666965484619,0.0427913665771484,-0.157881736755371,0.365872859954834,0.11107063293457,0.0398588180541992,0.177743434906006,0.120985984802246,-0.000526189804077148,0.0747222900390625,0.0753364562988281,-0.0093543529510498,0.0254364013671875,0.0364246368408203,-0.0430151522159576,0.0315632820129395,0,-0.0209885537624359,0.0359420776367188,0,-0.0348715484142303,0.03594970703125,0,-0.0489092767238617,0.0331461429595947,0,-0.041869729757309,0.0412425994873047,0,-0.0152446925640106,0.0377686023712158,0,-0.0454334914684296,0.0618398189544678,0,-0.0150698721408844,0.0638890266418457,0,-0.057433545589447,0.0652675628662109,0,-0.0196424424648285,0.0703232288360596,0,-0.0667752623558044,0.0528552532196045,0,-0.0479891300201416,0.0641906261444092,0,-0.122839212417603,0.192924022674561,0.0151157379150391,-0.116623759269714,0.259340524673462,0.0159435272216797,-0.151784062385559,0.193490505218506,0.00856685638427734,-0.1623375415802,0.263237476348877,-0.00216388702392578,-0.163622617721558,0.179462671279907,0.00551033020019531,-0.165335536003113,0.227160453796387,-0.00662994384765625, --0.162202835083008,0.169953107833862,0,-0.121521353721619,0.255175590515137,0,-0.0907981395721436,0.00604057312011719,0,-0.0651452541351318,0.0447161197662354,0,-0.0573937296867371,0.0166680812835693,0,-0.0628357529640198,0.016005277633667,0,-0.111344695091248,0.0330820083618164,0,-0.0889623165130615,0.0943939685821533,0,-0.0401086211204529,0.0348308086395264,0,-0.0382111072540283,0.0445799827575684,0,-0.0405855476856232,0.0686328411102295,0,-0.0538530349731445,0.0719857215881348,0,-0.067048966884613,0.0582754611968994,0,-0.127467453479767,0.2298583984375,0.0203866958618164,-0.16060471534729,0.219604253768921,0.00880336761474609,-0.171759247779846,0.195117473602295,0.00356292724609375,-0.163466691970825,0.195428371429443,0,-0.112754821777344,0.0538473129272461,0,-0.0902532935142517,0.0127358436584473,0,-0.0643498301506042,0.0170843601226807,0,-0.047791600227356,0.0353140830993652,0,-0.0441147089004517,0.0359435081481934,0,-0.0629429221153259,0.0172994136810303,0,-0.0821250081062317,0.019451379776001,0,-0.104676008224487,0.0716896057128906,0,-0.151944279670715,0.220437526702881,0,-0.174617409706116,0.209667921066284,-0.00084686279296875,-0.164431691169739,0.239760875701904,0.00404834747314453,-0.124161064624786,0.238654851913452,0.0195045471191406,-0.0621252655982971,0.0596387386322021,0,-0.0472608208656311,0.0744917392730713,0,-0.0352332592010498,0.0696706771850586,0,-0.0311589241027832,0.0434043407440186,0,-0.0337567925453186,0.0359435081481934,0,-0.0103150010108948,0.0329136848449707,0,-0.0189869403839111,0.0666244029998779,0,-0.100939512252808,0.294716835021973,0.00936031341552734,-0.0692451000213623,0.28000283241272,6.96182250976563e-05,-0.000391244888305664,0.0713791847229004,0,-0.180607318878174,0.313431978225708,0.00115489959716797,-0.15175187587738,0.295029163360596,-0.0108089447021484,-0.145132422447205,0.24541187286377,-0.0143833160400391,-0.169746279716492,0.26386570930481,-0.00206947326660156,-0.169936060905457,0.174321889877319,0.00407218933105469,-0.17670202255249,0.181179285049438,0.00182437896728516, --0.168173313140869,0.193114519119263,0.000481605529785156,-0.149486660957336,0.213171482086182,1.1444091796875e-05,-0.12571656703949,0.23421311378479,0,-0.157601594924927,0.263725996017456,0.0133800506591797,-0.0845487117767334,0.307615995407104,0,-0.105027079582214,0.362545490264893,0,-0.0471242666244507,0.194660663604736,0,-0.0650398731231689,0.263664960861206,0,-0.0239908695220947,0.176133394241333,9.5367431640625e-06,-0.0633293390274048,0.270389556884766,-0.000301361083984375,-0.0931510925292969,0.257895469665527,-0.0111618041992188,-0.094136118888855,0.425754547119141,-0.000995635986328125,-0.0999999046325684,0.294389247894287,0,-0.162853717803955,0.338751554489136,0,-0.153993129730225,0.330218553543091,0.0133800506591797,-0.0917040109634399,0.283359289169312,0,-0.125476241111755,0.254048824310303,0,-0.15634024143219,0.215863704681396,0,-0.168752431869507,0.185629367828369,0,-0.166390538215637,0.165019989013672,0.000479698181152344,0,-6.07967376708984e-06,0,-0.00741666555404663,0.0185325145721436,0,-0.0199999809265137,0.0999908447265625,0,0,-4.64916229248047e-06,0,-0.00211912393569946,0.00816428661346436,0,-0.0199999809265137,0.0999847650527954,0,0,-4.58955764770508e-06,0,0.000686109066009521,0.000141739845275879,0,-0.0199999809265137,0.0999847650527954,0,0,0.00477266311645508,0,-0.0198195576667786,0.026484489440918,0,-0.0610345602035522,0.235920667648315,0,-0.0940465927124023,0.424496173858643,0,-0.0923123359680176,0.413531064987183,0,-0.0552965402603149,0.297423124313354,0,-0.0610345602035522,0.293076753616333,0,-0.0199999809265137,0.253825187683105,0,-0.0312525033950806,0.262957096099854,0,-0.0199999809265137,0.0999987125396729,0,-0.03873610496521,0.230994462966919,0,-0.0199999809265137,0.0999877452850342,0,-0.0423910617828369,0.229442358016968,0,-0.0777370929718018,0.277410984039307,0,-0.0544322729110718,0.263275623321533,0,-0.099763035774231,0.286029100418091,0,-0.100000023841858,0.243182897567749,0,-0.097464919090271,0.243473529815674,0,-0.0740594863891602,0.237645387649536,0,-0.071816086769104,0.229446887969971, -0,-0.100000023841858,0.229449510574341,0,0,0.0286219120025635,0,-0.0141246914863586,0.0441789627075195,0,-0.094832181930542,0.256793022155762,0,-0.0882402658462524,0.232730388641357,0,-0.0929419994354248,0.229453563690186,0,-0.0878140926361084,0.436149597167969,0.000123977661132813,-0.0559799671173096,0.314321756362915,0,-0.0134904384613037,0.117861747741699,0,-0.00705611705780029,0.060289740562439,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,-0.00851058959960938,0.250736474990845,0.156147003173828,0.0144195556640625,0.344099044799805,0.197043418884277,0,0.175024509429932,0.241936683654785,-0.00196146965026855,0.197541952133179,0.257369041442871,0,0.363320589065552,0.296060562133789,-0.0285332202911377,0.32060980796814,0.34233283996582,0,0.610493421554565,0.206000328063965,-0.0401010513305664,0.578113555908203,0.30206298828125,-0.0841460227966309,0.651404619216919,0.256318092346191,0,0.708309888839722,0.425711631774902,0,0.756303310394287,0.25572681427002,0,0.789532423019409,0.469202041625977,0,0.819888234138489,0.30653190612793,0,0.72809898853302,0.425552368164063,0,0.776386857032776,0.279592514038086,0,0.501426696777344,0.255244731903076,0,0.597012221813202,0.162715911865234,0,0.199398815631866,0.0667128562927246,0,0.285688772797585,0.0304265022277832,0,0.720053195953369,0.547023296356201,0,0.74214768409729,0.571880340576172,0,0.808605909347534,0.625621795654297,0,0.498356342315674,0.364551067352295,-0.154631614685059,0.844466686248779,0.295870780944824,0,0.732550144195557,0.646092891693115,0,0.818905115127563,0.724274635314941,0,0.732923984527588,0.643249034881592,0,0.79356050491333,0.751604080200195,0,0.706692218780518,0.671451091766357,0,0.724737167358398,0.68503999710083,-0.128349781036377,0.796257495880127,0.301641941070557,-0.120188236236572,0.377138614654541,0.389564514160156,0,0.590972423553467,0.590951919555664,0,0.70997142791748,0.698229312896729,0,0.73881196975708,0.726625919342041,0.0284929275512695,0.170897483825684,0.257709503173828,0,0.312698841094971,0.312702178955078,0,0.450172424316406, -0.450164318084717,0,0.183678150177002,0.183680534362793,0,0.145829200744629,0.145834922790527,0,0.012782096862793,0.0127763748168945,0,0.0641012191772461,0.0641098022460938,0,0.040924072265625,0.0409202575683594,0,0.00790977478027344,0.00790214538574219,0,0.00108146667480469,0.00107765197753906,0,0.566425800323486,0.566432476043701,0,0.634742736816406,0.634739875793457,0,0.058074951171875,0.0580766201019287,0,0.247834205627441,0.247835636138916,0,0.44639253616333,0.446391105651855,0,0.637979030609131,0.637984752655029,0,0.0464558601379395,0.04644775390625,0,0.235540866851807,0.235541343688965,0,0.465264797210693,0.465257167816162,0,0.559603214263916,0.559608459472656,0,0.645765781402588,0.645771980285645,0,0.401989459991455,0.401984930038452,0,0.452390909194946,0.452389240264893,0,0.494573831558228,0.471117496490479,0,0.501083374023438,0.435564994812012,0,0.213491916656494,0.213487386703491,0,0.241825819015503,0.24182653427124,0,0.227441310882568,0.227444648742676,0,0.233962774276733,0.201238870620728,0,0.223219275474548,0.151006698608398,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,0.000113487243652344,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,-3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,0.000143557786941528,0,1.19209289550781e-06,-1.39474868774414e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,0.000310592353343964,0,0,0.000773891806602478,0,0,0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.49011611938477e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06, -0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,-9.29832458496094e-05,-5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.49011611938477e-06,0,0,-6.07967376708984e-06,0,0,3.96817922592163e-05,4.57763671875e-05,0,0.000466920435428619,0.000459671020507813,0,0.000103771686553955,0.000103950500488281,0,4.55975532531738e-06,0,0,0.0001564621925354,-0.000370025634765625,0,0.000211834907531738,0,0,8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,8.0108642578125e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,0.0226364135742188,0,0,0.0552688241004944,0,0.0020442008972168,0.126040577888489,-0.00647926330566406,-0.000676631927490234,0.210137963294983,0.0100793838500977,-0.00312709808349609,0.274137377738953,0.0119400024414063,0.000406742095947266,0.34236752986908,0.0237598419189453,0.0237593650817871,0.367411732673645,0.0458641052246094,0.0117788314819336,0.347425818443298,0.0448651313781738,0.0675268173217773,0.289352416992188,0.0308055877685547,0.0162677764892578,0.16912841796875,0.0201263427734375,0,0.0786499381065369,4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,4.76837158203125e-07,0,-6.07967376708984e-06,4.76837158203125e-07,-4.76837158203125e-07,-6.31809234619141e-06,0,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,9.5367431640625e-07,4.29153442382813e-06,-5.96046447753906e-06,-2.86102294921875e-06, --1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-0.000197052955627441,0,0,-3.21865081787109e-06,0,0,0.0376464128494263,0,0,0.0778884887695313,0.00159406661987305,0.000454902648925781,0.121151734143496,0.00970458984375,0,0.149458304047585,0.0168819427490234,0,0.154101550579071,0.0146684646606445,0,0.140580713748932,0.00717926025390625,-3.814697265625e-06,0.114898264408112,0.000853538513183594,-1.52587890625e-05,0.0828307867050171,-3.14712524414063e-05,0,0.0519378781318665,0,0,0.0281478762626648,0,0,0.0124145448207855,0,0,0.00284118950366974,0,-7.51018524169922e-06,-6.05583190917969e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030672550201416,-2.57492065429688e-05,0.000108718872070313,-0.000706672668457031,-9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,0.113494873046875,0.0001373291015625,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,0.00354146957397461,0.0035322904586792,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.814697265625e-05,3.44514846801758e-05,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06, -0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,0.00470590591430664,0.00470209121704102,0,0.0348846912384033,0.0348873138427734,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.00231170654296875,0.00231665372848511,0,0.0138809680938721,0.0138884782791138,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,0.0199539661407471,0.0199553966522217,0,0.0264022350311279,0.0264006853103638,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,0.00271916389465332,0.00271803140640259,0,0.00397491455078125,0.00396817922592163,0,0.00499272346496582,0.00500035285949707,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06, -0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,0.00308370590209961,0.00308513641357422,0,-6.19888305664063e-06,0,0,9.00030136108398e-05,8.02278518676758e-05,0,0.019775390625,0.0197718143463135,0,0.000436365604400635,0.000435829162597656,0,0.0632720962166786,0.00306224822998047,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.11570405960083,0.115694999694824,0,0.0984954833984375,0.098491907119751,0,0.0666244029998779,0.0666210651397705,0,0.04841148853302,0.0484087467193604,0,0.0756164193153381,0.032548189163208,0,0.00139617919921875,0.00139927864074707,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.001953125,0.00194966793060303,0,0.0414900779724121,0.0414818525314331,0,0.0817303657531738,0.0817365646362305,0,0.102120876312256,0.102127432823181,0,0.0428450107574463,0.0428465604782104,0,0.0418884754180908,0.0418946743011475,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06, -0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0686224699020386,0.131339311599731,0,-0.0803417563438416,0.140960931777954,0,-0.0946940779685974,0.149560451507568,0,-0.104705691337585,0.142169237136841,0,-0.109913229942322,0.146900415420532,0,-0.115104675292969,0.159123420715332,0,-0.0611746311187744,0.129290580749512,0,-0.0532138347625732,0.129290580749512,0,-0.0504551529884338,0.00510430335998535,0,-0.0479691624641418,0.00735092163085938,0,-0.052191436290741,0.00653171539306641,0,-0.0658787488937378,0.00151586532592773,0,-0.0840401649475098,9.5367431640625e-06,0,-0.0992790460586548,0.00682330131530762,0,-0.113266706466675,0.0306658744812012,0,-0.0678815245628357,0.129284381866455,0,-0.079240620136261,0.129491090774536,0,-0.0907720923423767,0.129478216171265,0,-0.102042198181152,0.13684606552124,0,-0.0595511794090271,0.129290580749512,0,0.000458705870187259,-0.000176906585693359,6.38961791992188e-05,-7.27595761418343e-12,-4.76837158203125e-06,0.0449857711791992,0.00674924254417419,-0.00326251983642578,-0.138082504272461,-0.092125415802002,0.8501296043396,-1.13014602661133,-0.142074108123779,0.937809944152832,-1.20134019851685,-0.123252630233765,0.654169082641602, --0.926348686218262,-0.0559718608856201,0.787017822265625,-1.03789234161377,-0.107673525810242,0.406932353973389,-0.765750885009766,0.0166324973106384,0.0922679901123047,-0.741513252258301,0.00344139337539673,-0.0169658660888672,-0.407352447509766,-0.148383378982544,0.842872142791748,-1.18830633163452,-0.297156095504761,0.756353855133057,-1.20088815689087,-0.30971097946167,0.580183029174805,-1.17550230026245,-0.347258567810059,0.196982860565186,-0.814088821411133,-0.285465478897095,0.0538492202758789,-0.665604591369629,-0.276171922683716,-0.0137624740600586,-0.410099983215332,-0.227282643318176,-0.0408000946044922,-0.275561332702637,-0.110105633735657,-0.0171394348144531,-0.238299369812012,0,0,0.0628519058227539,0,0,0.0505285263061523,0,0,0.0454206466674805,-0.069600671507942,0.0504183769226074,-0.000292778015136719,-0.107136756181717,0.119833946228027,-0.0525178909301758,-0.13037770986557,0.200599193572998,-0.152209281921387,-0.149489521980286,0.295027732849121,-0.310447692871094,-0.253185391426086,0.462238788604736,-0.387774467468262,-0.425949215888977,0.745505809783936,-0.602468490600586,-0.528150320053101,0.938767910003662,-0.834512710571289,-0.492782592773438,1.07602024078369,-1.08432006835938,-0.320883512496948,1.12324237823486,-1.07913398742676,-0.382085800170898,1.19590950012207,-1.18410778045654,-0.480622529983521,1.03061532974243,-1.18275547027588,-0.461478471755981,0.927089214324951,-1.08271789550781,-0.373913049697876,0.797740936279297,-0.969921112060547,-0.333985567092896,0.571910858154297,-0.817037582397461,-0.335246801376343,0.493689060211182,-0.614094734191895,-0.353063106536865,0.407426357269287,-0.571516036987305,-0.286767244338989,0.278003215789795,-0.380960464477539,-0.267441868782043,0.294036865234375,-0.262039184570313,-0.17967414855957,0.199520587921143,-0.141022682189941,-0.12450510263443,0.131499767303467,-0.0527372360229492,-0.076629936673271,0.0753226280212402,0.008575439453125,4.36557456851006e-11,-0.00189733505249023,0.0750246047973633,-0.0557844340801239,0.0366582870483398,-0.0273752212524414, --0.105253994464874,0.163015842437744,-0.111342430114746,-0.113294124603271,0.288881301879883,-0.294978141784668,-0.175743341445923,0.531348705291748,-0.376167297363281,-0.323931455612183,0.874509334564209,-0.63753604888916,-0.383604049682617,1.08052539825439,-0.814425468444824,-0.324109792709351,1.30893468856812,-0.907532691955566,-0.0459282398223877,1.35073900222778,-0.968086242675781,-0.0832779407501221,1.1246452331543,-1.09744834899902,-0.44065523147583,0.8722243309021,-1.06291961669922,-0.371651887893677,0.650352954864502,-1.10626268386841,-0.433173656463623,0.261968612670898,-0.664688110351563,-0.340415954589844,0.00135946273803711,-0.433822631835938,-0.351510763168335,-0.166252136230469,-0.245529174804688,-0.249775886535645,-0.205191135406494,-0.0955390930175781,-0.168144941329956,-0.206719875335693,-0.0158805847167969,0.0277719497680664,-0.0340471267700195,0.081904411315918,0.00919538736343384,-0.00837421417236328,0.0852508544921875,0.000849723815917969,-0.0018916130065918,0.0795812606811523,2.98459781333804e-08,-0.0078129768371582,0.0794687271118164,0,5.96046447753906e-06,0,0.274328470230103,0.0927848815917969,-0.648492336273193,0,0.304619312286377,-0.875658988952637,0.0547678470611572,0.143083095550537,-0.0654087066650391,0.250402927398682,0.023106575012207,-0.40710973739624,0,0.0891194343566895,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,0.122697353363037,-0.896142959594727,0,0.248271942138672,-0.907111167907715,0.0504250526428223,0.119516849517822,-0.842813014984131,0,-0.134779930114746,-0.488653659820557,0.0878419876098633,2.86102294921875e-06,-0.317373752593994,1.53641994185809e-29,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,1.69348870708276e-29,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,0.059497594833374,-0.110101222991943,0,0.0478353500366211,-0.162425518035889,0,0.231618881225586,-0.251439094543457,0,0.122671604156494, --0.395650386810303,0,0.339669704437256,-0.513039112091064,0,0.0894670486450195,-0.276107311248779,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-0.000312685966491699,0,0,-6.09457492828369e-06,0,0,-0.000525712966918945,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,9.39369201660156e-05,0,0,5.96046447753906e-06,0,-0.0394486784934998,0.0274462699890137,0.052729606628418,-0.0394487082958221,0.0424103736877441,0.052729606628418,4.76837158203125e-07,0,0.104729652404785,7.15255737304688e-07,0,0.104729652404785,-9.5367431640625e-07,0,0.101092338562012,4.76837158203125e-07,0,0.104729652404785,7.15255737304688e-07,0,0.0697479248046875,5.96046447753906e-07,0,0.104729652404785,-0.00013434886932373,0.00014495849609375,0.104552268981934,-0.00013434886932373,0.000132560729980469,0.10455322265625,-0.00360167026519775,0.00388479232788086,0.0999813079833984,-0.00360143184661865,0.00387096405029297,0.0999813079833984,-0.0166193842887878,0.017909049987793,0.0828094482421875,-0.0166193246841431,0.017909049987793,0.0828094482421875,4.76837158203125e-07,0,0.104729652404785,0,-6.19888305664063e-06,0.0888071060180664,0,0,0.103442192077637,-4.76837158203125e-07,0,0.104729652404785,1.43051147460938e-06,7.62939453125e-06,0.101931571960449,0,0,0.104729652404785,1.43051147460938e-06,0,0.103560447692871,-2.38418579101563e-07,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,-4.76837158203125e-07,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,4.76837158203125e-07,0,0.0928316116333008,-2.38418579101563e-07,0,0.0898313522338867,-3.57627868652344e-07, -0,0.104729652404785,-6.44922256469727e-05,6.24656677246094e-05,0.0843000411987305,-6.46114349365234e-05,7.15255737304688e-05,0.104652404785156,-0.00341224670410156,0.00358438491821289,0.100663185119629,-0.00341224670410156,0.00357341766357422,0.100663185119629,-0.015791654586792,0.0165753364562988,0.085902214050293,-0.0157915353775024,0.0165829658508301,0.085902214050293,-0.040613055229187,0.042633056640625,0.0563030242919922,-0.0406133830547333,0.0254340171813965,0.0563030242919922,-0.0394487679004669,0.028897762298584,0.0527305603027344,-0.0166193246841431,0.0179076194763184,0.0828094482421875,-0.00360202789306641,0.00387716293334961,0.0999813079833984,-0.000133991241455078,0.0001373291015625,0.10455322265625,1.19209289550781e-07,7.62939453125e-06,0.0959863662719727,2.38418579101563e-07,0,0.102462768554688,2.38418579101563e-07,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,2.38418579101563e-07,0,0.104729652404785,0,0,0.104368209838867,0,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,9.5367431640625e-07,0,0.104729652404785,-1.19209289550781e-06,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,-6.47306442260742e-05,6.103515625e-05,0.10465145111084,-0.00341284275054932,0.00358247756958008,0.100663185119629,-0.0157914757728577,0.0165772438049316,0.0859012603759766,-0.040613204240799,0.0426449775695801,0.0563030242919922,-0.0394487380981445,0.0283288955688477,0.052729606628418,-0.0166194438934326,0.0179076194763184,0.0828094482421875,-0.00360167026519775,0.00388479232788086,0.099980354309082,-0.00013434886932373,0.000132560729980469,0.10455322265625,-3.57627868652344e-07,0,0.103616714477539,-9.5367431640625e-07,0,0.104729652404785,9.5367431640625e-07,7.62939453125e-06,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,0,-7.62939453125e-06,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,4.76837158203125e-07,0,0.104729652404785,-4.76837158203125e-07,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,2.38418579101563e-07,0,0.104729652404785,4.76837158203125e-07, -0,0.104729652404785,-6.4849853515625e-05,5.76972961425781e-05,0.104652404785156,-0.00341236591339111,0.00357675552368164,0.100662231445313,-0.0157918930053711,0.0165772438049316,0.0859012603759766,-0.0406133234500885,0.0374655723571777,0.0563039779663086,-0.0131495594978333,0.0141477584838867,0.0137128829956055,-0.00553977489471436,0.00597810745239258,0.0255918502807617,-0.00120055675506592,0.00128602981567383,0.0191125869750977,-4.48226928710938e-05,4.10079956054688e-05,0.0101308822631836,0,-6.19888305664063e-06,0.00400543212890625,0,-6.19888305664063e-06,0.00336647033691406,0,0,0.0117177963256836,0,-7.62939453125e-06,0.0366878509521484,0,0,0.0408420562744141,0,0,0.0431509017944336,0,0,0.045191764831543,0,0,0.0399274826049805,0,-7.62939453125e-06,0.0276222229003906,0,0,0.0171642303466797,-0.0135377049446106,0.0142226219177246,0.088587760925293,-0.00526392459869385,0.00552225112915039,0.0984535217285156,-0.001137375831604,0.00120067596435547,0.103373527526855,-2.14576721191406e-05,1.66893005371094e-05,0.051997184753418,0,0,0.0114431381225586,-0.0262991189956665,0.0282807350158691,0.0700626373291016,-0.0110795497894287,0.0119490623474121,0.0901174545288086,-0.00240123271942139,0.00258779525756836,0.101564407348633,-8.96453857421875e-05,0.000100612640380859,0.104612350463867,-2.38418579101563e-07,0,0.0572309494018555,-2.38418579101563e-07,0,0.0777311325073242,0,6.19888305664063e-06,0.0950441360473633,0,0,0.103164672851563,0,0,0.0995683670043945,2.38418579101563e-07,0,0.0936498641967773,0,0,0.0936498641967773,-2.38418579101563e-07,0,0.0987100601196289,0,0,0.0947999954223633,2.38418579101563e-07,0,0.0738611221313477,0,0,0.0541276931762695,-4.3034553527832e-05,4.43458557128906e-05,0.0626544952392578,-0.00227475166320801,0.00238323211669922,0.102017402648926,-0.0105278491973877,0.0110487937927246,0.0921773910522461,-0.0270755290985107,0.0284209251403809,0.0724449157714844,0,0.000100612640380859,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,0,0.000119209289550781, -0,0,2.76565551757813e-05,0,-7.62939453125e-06,0,0,0,6.4849853515625e-05,0,0,0.0163049697875977,0,0,0.0214643478393555,0,0,0.018803596496582,0,0,0.0004425048828125,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,2.14576721191406e-06,-9.5367431640625e-07,0,-4.52995300292969e-06,0,0,3.814697265625e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,4.76837158203125e-07,0,-1.49011611938477e-06,-4.76837158203125e-07,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.11133873462677e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,-1.43051147460938e-06,1.52587890625e-05,-1.9073486328125e-06,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,2.81333923339844e-05,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,0.00449800491333008,0,0,-4.52995300292969e-06,0,0,0.00131440162658691,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06, -0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.000245809555053711,0,0,-6.19888305664063e-06,0,0,0.000917911529541016,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06, -0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,-0.000116467475891113,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,-0.000146627426147461,0,1.19209289550781e-06,1.70469284057617e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,-0.000307537615299225,0,0,-0.000783011317253113,0,0,-0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.54972076416016e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,-9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,8.392333984375e-05,5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.60932540893555e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,-0.000150382518768311,0.000370025634765625,0,-0.000223994255065918,0,0,-8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-8.63075256347656e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,6.07967376708984e-06,0,0,-4.58955764770508e-06, -0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,-6.67572021484375e-06,2.32458114624023e-05,-7.62939453125e-06,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,-4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,-4.76837158203125e-07,0,-6.07967376708984e-06,-4.76837158203125e-07,-4.76837158203125e-07,-5.84125518798828e-06,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-4.52995300292969e-06,0,0,1.43051147460938e-06,-9.5367431640625e-07,4.29153442382813e-06,2.12192535400391e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,0.000193953514099121,0,0,-2.86102294921875e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,-3.814697265625e-06,4.01139259338379e-05,-4.76837158203125e-06,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-7.51018524169922e-06,6.98566436767578e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030982494354248,2.57492065429688e-05,0.000108718872070313,0.000691413879394531,9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0, --6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06, -0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06, -0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,0,0.000668525695800781,0,0,0.00848865509033203,0,-4.76837158203125e-06,0,0,0,0.00336742401123047,0,0,0.00652885437011719,0,0,0.00856399536132813,0,0,0.00561046600341797,0,0,0.00773048400878906,0,0,0.00408172607421875,0,0,0.00456142425537109,0,0,0.0442171096801758,0,0,0.055537223815918,0,0,0.0409917831420898,0,0,0.0400629043579102,-0.0394486784934998,0.0375738143920898,0.0419416427612305,-0.016619861125946,0.0179104804992676,0.0700235366821289,-0.00360190868377686,0.00387859344482422,0.0875091552734375,-0.000134587287902832,0.00014495849609375,0.0919170379638672,-4.76837158203125e-07,0,0.0923519134521484,7.15255737304688e-07,0,0.0908584594726563,-9.5367431640625e-07,0,0.0911197662353516,0,-7.62939453125e-06,0.0967369079589844,7.15255737304688e-07,0,0.0888681411743164,2.38418579101563e-07,0,0.0865936279296875,-2.38418579101563e-07,0,0.0893936157226563,0,7.62939453125e-06,0.0935306549072266,-4.76837158203125e-07,0,0.0888271331787109,0,-7.62939453125e-06,0.0908946990966797,2.38418579101563e-07,0,0.0914020538330078,-6.46114349365234e-05,6.38961791992188e-05,0.0923614501953125, --0.00341236591339111,0.003570556640625,0.0929136276245117,-0.0157915949821472,0.0165829658508301,0.0807085037231445,-0.0406131744384766,0.0312938690185547,0.0514488220214844,8.94069671630859e-08,0,0.0738906860351563,-4.76837158203125e-07,7.62939453125e-06,0.0669460296630859,4.76837158203125e-07,0,0.0626935958862305,1.19209289550781e-07,0,0.0556468963623047,8.34465026855469e-07,0,0.0612640380859375,4.76837158203125e-07,0,0.0732097625732422,0,0,0.0699834823608398,1.43051147460938e-06,0,0.0647001266479492,2.38418579101563e-07,0,0.0496320724487305,7.15255737304688e-07,0,0.0491180419921875,-4.76837158203125e-07,0,0.054377555847168,9.5367431640625e-07,0,0.0644302368164063,-4.76837158203125e-07,0,0.0867624282836914,-7.15255737304688e-07,0,0.0737533569335938,-3.57627868652344e-07,-7.62939453125e-06,0.0622406005859375,0,0,0.0638942718505859,0,0,0.0686674118041992,-2.98023223876953e-07,0,0.0743417739868164,2.68220901489258e-07,-7.62939453125e-06,0.0777769088745117,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,-2.38418579101563e-07,-3.39746475219727e-05,0,2.38418579101563e-07,-0.000373542308807373,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-0.000886619091033936,9.5367431640625e-07,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,0.000717267394065857,0,0,0.000729367136955261,0,0,-8.20755958557129e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,-2.38418579101563e-07, -4.1663646697998e-05,0,2.38418579101563e-07,0.000361323356628418,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,0.000874459743499756,-9.5367431640625e-07,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,-0.000714197754859924,0,0,-0.000735461711883545,0,0,7.29560852050781e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.814697265625e-06,0.00030362606048584,0,7.15255737304688e-07,0.000399649143218994,0,5.00679016113281e-06,0.000416934490203857,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,-0.00023651123046875,0,-4.76837158203125e-07,7.68899917602539e-06,0,0,4.58955764770508e-06,0,-4.64916229248047e-05,0.00096428394317627,0,0,1.53481960296631e-06,0,-6.19888305664063e-05,-1.78068876266479e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.75224447250366e-05,0,1.43051147460938e-06,3.27751040458679e-05,-9.5367431640625e-07,0,4.61935997009277e-06,0,0,-1.22189521789551e-06,0,0,-1.43051147460938e-06,0,0,6.13927841186523e-06,0,0,7.68899917602539e-06,0,-3.814697265625e-06,-0.000311195850372314,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000415384769439697,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,0.000233650207519531,0,-4.76837158203125e-07,7.56978988647461e-06,0,-4.64916229248047e-05,-0.000970363616943359,0,0,1.53481960296631e-06,0,-6.19888305664063e-05,1.01774930953979e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,1.53332948684692e-05,0,1.43051147460938e-06,-3.88696789741516e-05, -9.5367431640625e-07,0,-3.06963920593262e-06,0,0,-1.81794166564941e-06,0,0,-1.60932540893555e-06,0,0,6.13927841186523e-06,0,0,7.56978988647461e-06,0,0,1.84774398803711e-06,0,0,-3.33786010742188e-06,0 - } - Normals: *21531 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, -0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, --0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, --1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, -0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, -0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, --0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, -3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, --0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, --0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, --0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, --0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, -0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, --0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, --0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, -0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, -0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, -0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, -0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, --0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, -0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, -0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, -0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, -0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, -0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, -0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, --1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, -1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, -0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, --1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, --0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, --0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, --0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, --0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, -0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, --1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, --0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, --0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, -0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, -1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, -0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, -0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, --0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, -0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, -1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, -0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, -1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, --1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, -1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, -0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, --0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, -0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, -0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, -0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, -0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, -0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008, -1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725, -0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397, --0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403, --0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725, -0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397, --0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513, -0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882, -0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183, --0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171, -0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949, -1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573, -0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265, --0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102, -0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853, -0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868, --0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439, -0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784, -0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456, -0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415, -0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229, -1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123, -1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998, -1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356, -0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413, --1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632, --0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368, --0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621, -0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802, --0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883, --1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984, --0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193, --0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867, --0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607, --0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346, --0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263, --1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784, -0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208, --1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694, -0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266, --0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709, --0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695, --1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901, --0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686, -0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874, --0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368, --1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843, --0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535, --0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957, -0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487, -0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031, --1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867, --1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023, --1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025, --0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785, -0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809, --1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731, --1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885, --1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671, --1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257, -0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835, --0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219, --1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225, --1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308, --1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291, --1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, --0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209, --0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725, --0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392, -1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102, --0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208, --0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207, --0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127, --1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673, --0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602, -0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554, --1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722, --1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228, --1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647, -0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336, -1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798, -0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394, --0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393, -0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574, -1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375, --0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363, --0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974, --0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862, --0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116, -0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151, --1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651, -0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233, -1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169, -1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673, --0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746, -0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486, -0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,0.146543323993683,-0.399054899811745,-0.195634871721268, --0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442, -0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853, --0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429, --1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022, -0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316, --0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,0.283098638057709,-1.00639636814594,-1.30733358860016,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246, --1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085, -0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249, --1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673, -0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264, --0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874, --0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329, -0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952, -0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295, --0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156, -1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792, -0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551, --0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065, --0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094, -0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189, --1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778, --0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119, --1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437, -0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976, --1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028, -0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898, --0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825, -0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368, -0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591, --0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944, --1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797, --0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632, --0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292, --1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315, --0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.663957834243774,-0.292329281568527,0.231935441493988,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054, -0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311, -0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671, --0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254, --1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805454334304, "Geometry::Mouth_Stretcher_Left", "Shape" { - Version: 100 - Indexes: *1640 { - a: 636,643,648,669,672,681,703,708,711,716,719,724,1359,1367,1436,1438,1457,1460,1509,1523,1531,1545,1553,1567,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5985,5986,5987,5988,5989,5990,5992,5995,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6030,6031,6032,6033,6034,6035,6036,6037,6040,6042,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6060,6065,6067,6068,6069,6070,6072,6073,6074,6075,6078,6087,6088,6089,6090,6091,6092,6093,6096,6098,6102,6104,6105,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6267,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6401,6408,6409,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536, -6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7166,7172,7173,7183,7184,7185,7186,7187,7188,7189,7193,7197,7199,7201,7202,7203,7204,7205,7206,7207,7208,7209,7221,7224,7225,7226,7228,7233,7234,7235,7236,7247,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453, -7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7547,7549,7551,7553,7559,7561,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7765,7766,7767,7768,7769,7772,7773,7774,7775,7776,7783,7784,7785,7786,7790,7791,7792,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950, -7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8695,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797, -8799 - } - Vertices: *4920 { - a: -0.0589675903320313,-0.0377306938171387,-0.0104227066040039,-0.0320440530776978,-0.0259759426116943,0.00125503540039063,-0.0250627994537354,-0.00778627395629883,-0.00145149230957031,-0.0479824542999268,-0.0239481925964355,-0.00742816925048828,-0.00089302659034729,-0.00103998184204102,0,-0.0693792104721069,-0.029712438583374,-0.00790500640869141,-0.0113372206687927,-0.012258768081665,0,-0.0457133054733276,-0.0276517868041992,-0.0013427734375,-0.0389324426651001,-0.0215480327606201,-0.0118541717529297,-0.0733824968338013,-0.0413720607757568,-0.00867366790771484,-0.0497547388076782,-0.0161523818969727,-0.00550270080566406,-0.0050966739654541,-0.00153803825378418,0,-0.00457799434661865,-0.00548720359802246,0,-0.0609126091003418,-0.0222251415252686,-0.00713920593261719,-0.0447736978530884,-0.0214264392852783,-0.0104236602783203,-0.0404189229011536,-0.0279853343963623,0.000581741333007813,-0.0136034488677979,-0.00416302680969238,-0.000306129455566406,-0.0683120489120483,-0.0420777797698975,-0.00938320159912109,-0.0212366580963135,-0.0198662281036377,0.00051116943359375,-0.0482180118560791,-0.0263514518737793,-0.0041961669921875,-0.0467844009399414,-0.0293359756469727,-0.0114326477050781,-0.0737040042877197,-0.0366992950439453,-0.00827598571777344,-0.0375151634216309,-0.0118982791900635,-0.00326347351074219,-0.000623941421508789,-0.000185966491699219,0,0,-0.0576834678649902,0,0,-0.00913190841674805,0,-0.00593897418730194,-0.0462260246276855,-0.0453395843505859,0.00353378803265514,-0.0517654418945313,-0.0434350967407227,0.0402948484552326,-0.0463104248046875,0.00263881683349609,0.00693869173846906,-0.0533323287963867,-0.0393276214599609,-0.00401326127030188,-0.0514993667602539,-0.042724609375,0.0102280899736797,-0.0266036987304688,-0.00683975219726563,-0.00596592666988727,-0.0488252639770508,-0.0441675186157227,0.00648529876343673,-0.0535697937011719,-0.0380611419677734,0.00272510759532452,-0.0148100852966309,-0.0155248641967773,0.011669239936964,-0.00778388977050781,-0.0398683547973633,0.000943863993597915, --0.031834602355957,-0.0272378921508789,0.0510754658753285,0.00851631164550781,-0.056696891784668,0.00975990388542414,-0.0413398742675781,-0.00844097137451172,-0.024855699390173,0.0416440963745117,0.109015464782715,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,-0.0402112565934658,0.0395736694335938,0.158485412597656,0,-0.0212080478668213,0,0.00350005575455725,-0.0288643836975098,-0.00302600860595703,0.00805237982422113,-0.037968635559082,-0.00696277618408203,0.00947846099734306,-0.0422544479370117,-0.00819587707519531,0,-0.0608837604522705,0,0,-0.0616207122802734,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,-0.0142997605726123,-0.00781917572021484,0.140799522399902,0.00327401864342391,-0.00852489471435547,0.0109024047851563,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.000132560729980469,0,0,5.96046447753906e-06,0,-0.00190287828445435,-0.020164966583252,-0.0272045135498047,0.00496849417686462,-0.0261220932006836,-0.0284862518310547,3.40938568115234e-05,-0.00011444091796875,-0.000101089477539063,3.31401824951172e-05,-0.000111579895019531,-0.000100135803222656,0.000894069671630859,-0.00310373306274414,-0.00270843505859375,0.000108718872070313,-0.00150012969970703,-0.00252532958984375,0.0031125545501709, --0.0122575759887695,-0.01226806640625,2.46763229370117e-05,-0.00623846054077148,-0.0115423202514648,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,9.65595245361328e-06,-4.43458557128906e-05,-4.38690185546875e-05,1.01327896118164e-05,-5.05447387695313e-05,-4.29153442382813e-05,0.000504732131958008,-0.00247335433959961,-0.00232505798339844,0.000504851341247559,-0.00246906280517578,-0.00232505798339844,0.00233542919158936,-0.0114550590515137,-0.0107622146606445,0.00233489274978638,-0.0114479064941406,-0.0107612609863281,0.00223764777183533,-0.0267033576965332,-0.00794029235839844,0.00468435883522034,-0.030519962310791,-0.0243406295776367,0.00100508332252502,-0.0229973793029785,-0.0276737213134766,0.0016205906867981,-0.00923776626586914,-0.0119161605834961,0.000613570213317871,-0.00253152847290039,-0.00264263153076172,3.38554382324219e-05,-0.0001220703125,-0.000100135803222656,0,7.62939453125e-06,0,9.77516174316406e-06,-4.57763671875e-05,-4.38690185546875e-05,0.000504732131958008,-0.00246000289916992,-0.00232505798339844,0.0023348331451416,-0.0114531517028809,-0.0107622146606445,0.00500518083572388,-0.0303573608398438,-0.0252475738525391,-0.00120186805725098,-0.0213470458984375,-0.0272560119628906,0.00057673454284668,-0.00720739364624023,-0.0116710662841797,0.000307321548461914,-0.00191354751586914,-0.00257110595703125,3.36170196533203e-05,-0.000111579895019531,-0.000101089477539063,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,1.01327896118164e-05,-4.91142272949219e-05,-4.38690185546875e-05,0.000504732131958008,-0.00246572494506836,-0.00232601165771484,0.00233554840087891,-0.0114531517028809,-0.0107622146606445,0.00464034080505371,-0.0306401252746582,-0.024205207824707,0.00226542353630066,-0.00928974151611328,-0.00965595245361328,0.00139486789703369,-0.00482511520385742,-0.00417423248291016,0.000304818153381348,-0.00104856491088867,-0.000904083251953125,1.13248825073242e-05,-5.05447387695313e-05,-3.4332275390625e-05,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,-0.0014166533946991, --0.0144171714782715,0.00410842895507813,0.000715672969818115,-0.00373315811157227,-0.00340747833251953,0.000168323516845703,-0.000828742980957031,-0.000774383544921875,3.09944152832031e-06,-1.38282775878906e-05,-1.43051147460938e-05,0.0025259256362915,-0.0155544281005859,-0.0188150405883789,0.00203967094421387,-0.00810098648071289,-0.00817108154296875,0.000609278678894043,-0.00209665298461914,-0.00180912017822266,2.26497650146484e-05,-6.72340393066406e-05,-6.67572021484375e-05,0,6.19888305664063e-06,0,6.19888305664063e-06,-3.19480895996094e-05,-2.86102294921875e-05,0.000336647033691406,-0.00164508819580078,-0.00155067443847656,0.00155699253082275,-0.00762796401977539,-0.00717449188232422,0.00397387146949768,-0.0194106101989746,-0.0184392929077148,0.00198480486869812,-0.00680875778198242,-0.00171661376953125,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0171114504337311,0.0231513977050781,0.0523567199707031,-0.000499308109283447,0.000660896301269531,0.00143623352050781,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06, -0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,-0.000788748264312744,0.00127792358398438,0.00260543823242188,-0.0143816471099854,0.0203933715820313,0.0560894012451172,1.42753124237061e-05,-3.36170196533203e-05,-1.23977661132813e-05,0.00100600719451904,-0.00304913520812988,-0.0008697509765625,0.000263869762420654,-0.000623703002929688,-0.000227928161621094,9.68575477600098e-06,-1.83582305908203e-05,-8.58306884765625e-06,0,-4.52995300292969e-06,0,0.000370591878890991,-0.00505781173706055,-0.0003204345703125,0,-4.52995300292969e-06,0,0,-0.00261306762695313,0,0,5.96046447753906e-06,0,0,-0.0111865997314453,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,6.95884227752686e-05,-0.000169038772583008,-6.00814819335938e-05,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,2.50339508056641e-05,-6.53266906738281e-05,-2.19345092773438e-05,6.37173652648926e-05,-0.000156879425048828,-5.53131103515625e-05,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-05,0,1.15633010864258e-05,-0.000298976898193359,-9.5367431640625e-06,0.000264942646026611,-0.000632286071777344,-0.0002288818359375,0.00217738747596741,-0.00834751129150391,-0.00188255310058594,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0, --6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-4.73260879516602e-05,-3.71932983398438e-05,0.00158500671386719,-0.00225603580474854,-0.000981330871582031,0.0431232452392578,0.000925719738006592,-0.00188541412353516,0.00178337097167969,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06, -0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06, -0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06, -0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06, -0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-0.00152464747407066,0.00308847427368164,0.000359535217285156,0.00540309212738066,0.0166411399841309,-0.00294113159179688,-0.000475853681564331,0.000964164733886719,0.000112533569335938,0,-4.76837158203125e-06,0,-1.94907188415527e-05,4.72068786621094e-05,4.76837158203125e-06,2.74181365966797e-06,1.38282775878906e-05,-3.814697265625e-06,0.000884085893630981,0.00387859344482422, --0.000905036926269531,-0.00313858080335194,-0.0388274192810059,-0.0482187271118164,-0.00157240033149719,-0.0177373886108398,-0.0275440216064453,-0.000131547451019287,-0.0058445930480957,-0.011505126953125,4.76837158203125e-05,-0.00138568878173828,-0.00250911712646484,3.3259391784668e-05,-0.00011444091796875,-0.000100135803222656,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,9.29832458496094e-06,-4.29153442382813e-05,-4.38690185546875e-05,0.000504970550537109,-0.002471923828125,-0.00232505798339844,0.0023273229598999,-0.0114583969116211,-0.0107507705688477,0.00477752089500427,-0.0298943519592285,-0.0243797302246094,0.00759205270878738,-0.0514554977416992,-0.0401153564453125,-0.0181202143212431,0.0201129913330078,0.00498676300048828,-0.00989773869514465,0.0152416229248047,0.00197601318359375,-0.00373005867004395,0.00754547119140625,0.000879287719726563,-0.000690460205078125,0.00139284133911133,0.000163078308105469,0,-7.62939453125e-06,0,-1.58548355102539e-05,-2.24113464355469e-05,8.58306884765625e-06,-0.000870317220687866,0.000861167907714844,0.00276279449462891,-0.00239426128246123,0.00665950775146484,0.0103416442871094,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,-0.000101773992355447,0.000173568725585938,0.000220298767089844,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06, -0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.0795361995697021,0,-0.000128269195556641,-0.00920772552490234,0,-0.00498637557029724,-0.0964298248291016,-0.0639190673828125,0.00550204515457153,-0.101284980773926,-0.0546321868896484,-0.167726516723633,-0.707053184509277,0.142163276672363,-0.109456539154053,-0.741019248962402,0.223371505737305,0.0940566062927246,-0.675601482391357,0.0781106948852539,0.0334873199462891,-0.719618797302246,0.030573844909668,0.0555353164672852,-0.252529621124268,0.0121860504150391,0.042960524559021,-0.334860801696777,-0.0444984436035156,0.0517963171005249,-0.246419906616211,-0.0425214767456055,0.101143479347229,-0.222472190856934,-0.129537582397461,0.0263551473617554,-0.267362117767334,-0.0779170989990234,0.0453908443450928,-0.179988384246826,-0.11833381652832,0.00726300477981567,-0.192025661468506,-0.0548105239868164,0.0126553773880005,-0.141599178314209,-0.0928783416748047,0.104473352432251,-0.534534931182861,0.0262203216552734,0.112606287002563,-0.446418285369873,0.0187110900878906,-0.14988374710083,-0.762790679931641,0.195289611816406,-0.137470722198486,-0.769210338592529,0.0529022216796875,-0.176609754562378,-0.754067897796631,0.210469245910645,-0.156377077102661,-0.837718486785889,0.0548114776611328,-0.197515249252319,-0.720362663269043,0.256500244140625,-0.158542633056641,-0.729660987854004,0.0714702606201172,-0.159824848175049,-0.721329212188721,0.309762001037598,-0.209766864776611,-0.669604301452637,0.129140853881836,-0.00728487968444824,-0.625784873962402,0.0303220748901367,-0.0166008472442627,-0.647607803344727,0.303556442260742,0.0566720962524414,-0.487497329711914,-0.0139369964599609,0.116071462631226,-0.534886837005615,0.233206748962402,0.163299798965454,-0.372396469116211,0.135809898376465,0.0476363897323608,-0.196175098419189,-0.0834922790527344,0.148544073104858,-0.224846363067627,-0.0106544494628906,0.0852837562561035, --0.0948033332824707,-0.182416915893555,0.141568064689636,-0.176172733306885,-0.0844278335571289,0.0481961965560913,-0.00137519836425781,-0.162002563476563,0.0826737284660339,-0.164953231811523,-0.046234130859375,0.0227411985397339,-0.0376501083374023,-0.10823917388916,0.10946524143219,-0.131124973297119,0.00213336944580078,0.00895139575004578,-0.0644469261169434,-0.0621795654296875,-0.00632467865943909,-0.108116626739502,-0.0529565811157227,0.000113368034362793,-0.182186603546143,-0.0617666244506836,0.0325863361358643,-0.22346305847168,-0.0776729583740234,0.0781035423278809,-0.214998722076416,-0.0737829208374023,0.0792993307113647,-0.26906156539917,0.0221261978149414,0.149080276489258,-0.468070507049561,0.0195894241333008,0.0867183208465576,-0.697486877441406,0.0547037124633789,-0.142313003540039,-0.762638092041016,0.254510879516602,-0.192344665527344,-0.780982494354248,0.182248115539551,-0.238631248474121,-0.795376777648926,0.188342094421387,-0.22704005241394,-0.770657539367676,0.216961860656738,-0.193722724914551,-0.735584735870361,0.25253963470459,0.0112526416778564,-0.680306911468506,0.207609176635742,0.114402532577515,-0.567344665527344,0.118124961853027,0.142995119094849,-0.314630031585693,0.0662651062011719,0.173714637756348,-0.180995941162109,-0.0756750106811523,0.185614347457886,-0.119808197021484,-0.114728927612305,0.102967083454132,-0.118278980255127,-0.0327386856079102,0.0998779237270355,-0.11268138885498,0.0238971710205078,-0.0068744421005249,-0.102608203887939,-0.0594100952148438,0.00691664218902588,-0.156805038452148,-0.0806035995483398,0.0406844615936279,-0.195703506469727,-0.100480079650879,0.0886775255203247,-0.223677158355713,-0.094761848449707,0.0838901996612549,-0.337005615234375,0.00339031219482422,0.134994268417358,-0.513887882232666,0.0180263519287109,0.0766236782073975,-0.70979642868042,0.0489416122436523,-0.168264865875244,-0.784878730773926,0.23723316192627,-0.21098780632019,-0.79949426651001,0.163568496704102,-0.220479488372803,-0.805167675018311,0.140676498413086,-0.228994131088257,-0.776212692260742, -0.152286529541016,-0.229021549224854,-0.721557140350342,0.208309173583984,-0.0356760025024414,-0.617142677307129,0.0723762512207031,0.0894346237182617,-0.470705509185791,0.020751953125,0.058655858039856,-0.161410808563232,-0.0621671676635742,0.079453706741333,-0.0173778533935547,-0.177101135253906,0.0533576011657715,0.0335345268249512,-0.158036231994629,0.0275824069976807,0.000315666198730469,-0.106034278869629,0.00722584128379822,-0.0567750930786133,-0.0593929290771484,0.00797432661056519,-0.036219596862793,-0.0228395462036133,0.0170378088951111,-0.0767474174499512,-0.0315208435058594,0.0256466865539551,-0.11336612701416,-0.045292854309082,0.000334858894348145,-0.234844207763672,-0.00475120544433594,-0.0757415294647217,-0.299776554107666,0.0559616088867188,-0.10783863067627,-0.363600254058838,0.137477874755859,-0.106349468231201,-0.387628078460693,0.278562545776367,-0.274105548858643,-0.380926132202148,0.451558113098145,-0.262244462966919,-0.353853225708008,0.493288040161133,-0.166119337081909,-0.37518835067749,0.496253967285156,-0.0945303440093994,-0.401963233947754,0.509078025817871,-0.0280852317810059,-0.414980888366699,0.528519630432129,-0.0757715702056885,-0.33463716506958,0.667523384094238,-0.0791964530944824,-0.170750141143799,0.572446823120117,0.0357803106307983,-0.0180191993713379,-0.0350379943847656,0.103539884090424,-0.00188827514648438,-0.0635833740234375,0.161513566970825,-0.0141973495483398,-0.0502090454101563,0.0756851434707642,-0.00939798355102539,0.0800800323486328,0.00588631629943848,-0.0366373062133789,0.338019371032715,0.00038561224937439,-0.066072940826416,-0.0299501419067383,0.000314593315124512,-0.131531715393066,-0.0184755325317383,0.00663220882415771,-0.197669506072998,-0.0280685424804688,0.0206787586212158,-0.15138578414917,-0.00490665435791016,0.044464111328125,-0.224893569946289,0.0191326141357422,0.0829598903656006,-0.424555778503418,0.0534496307373047,0.0932474136352539,-0.68114709854126,0.0914478302001953,-0.142927169799805,-0.747771263122559,0.254244804382324,-0.198576927185059,-0.755668640136719, -0.263683319091797,-0.222572803497314,-0.715573310852051,0.270094871520996,-0.179933786392212,-0.643553256988525,0.292718887329102,-0.0871350765228271,-0.638719081878662,0.392474174499512,-0.0797231197357178,-0.588850021362305,0.470881462097168,0.0195214748382568,-0.437413215637207,0.392663955688477,0.0477912425994873,-0.239221096038818,0.182730674743652,0.0698374509811401,-0.0854630470275879,-0.0133848190307617,0.104779958724976,-0.0183811187744141,-0.120841026306152,0.0449415445327759,-0.0567131042480469,-0.115802764892578,0.0688556730747223,-0.0385465621948242,-0.112002372741699,0.0305933952331543,-0.101837635040283,-0.0182895660400391,0.0536583662033081,-0.185341358184814,-0.029292106628418,0.00520038604736328,-0.289676666259766,-0.0327377319335938,-0.0736359357833862,-0.214948654174805,-0.0131511688232422,-0.185658693313599,-0.149147033691406,-0.0467300415039063,-0.122040033340454,-0.121195316314697,0.045018196105957,-0.357045888900757,-0.14184045791626,0.445835113525391,-0.51034140586853,-0.227692127227783,0.742347717285156,-0.144267320632935,-0.134767055511475,0.833705902099609,-0.113757848739624,-0.244824886322021,0.777538299560547,-0.118153810501099,-0.0993251800537109,0.750201225280762,-0.308660745620728,-0.018369197845459,0.842061996459961,-0.313722848892212,-0.216243743896484,0.790835380554199,0.0235203504562378,0.0661125183105469,0.133912086486816,0.0815248489379883,0.0606679916381836,0.10490608215332,0.136619210243225,0.140710830688477,0.0932235717773438,0.0676562786102295,0.247998237609863,0.19444751739502,-0.0118014812469482,0.268400192260742,0.446456909179688,-0.114112854003906,0.0535593032836914,0.715588569641113,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06, -0,7.62939453125e-05,-0.000768542289733887,-0.000599861145019531,-0.000210285186767578,0.00428009033203125,-0.0126781463623047,-0.000516653060913086,-0.00181329250335693,-0.000432014465332031,-0.0351629257202148,0.000364065170288086,-0.00266933441162109,0,6.07967376708984e-06,0,-0.0434468984603882,-0.0133141279220581,0.000108718872070313,0,4.58955764770508e-06,0,-0.00100159645080566,-0.000419974327087402,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0.00463342666625977,0.000942707061767578,-0.0316810607910156,0.00211668014526367,-0.00695216655731201,-0.00376510620117188,-0.00289416313171387,0.00115525722503662,0.00498676300048828,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0.00612294673919678,9.5367431640625e-06,-0.00084686279296875,-0.0115430355072021,-0.087982177734375,0.106958389282227,-0.00119400024414063,0.000330924987792969,0.00242137908935547,-0.00289678573608398,-0.00140380859375,-0.000468730926513672,0,-7.62939453125e-06,0,-0.0116147994995117,-0.0056915283203125,-0.00332260131835938,-0.119580030441284,-0.302328109741211,-0.0388898849487305,-0.136605501174927,-0.242403984069824,-0.0477495193481445,-0.11903965473175,-0.283511638641357,-0.054814338684082,-0.115921378135681,-0.278347969055176,-0.018951416015625,-0.129915714263916,-0.237297773361206,0.000964164733886719,-0.136843085289001,-0.192579746246338,0.0146560668945313,-0.134613394737244,-0.0806000232696533,0.000291824340820313,-0.136571645736694,-0.116618871688843,-0.00439929962158203,-0.0532984137535095,-0.0322082042694092,-4.10079956054688e-05,-0.0631358623504639,-0.0671646595001221,-0.000357627868652344,-0.124946117401123,-0.281020879745483,-0.000731468200683594,-0.128237724304199,-0.30337929725647, --0.0282754898071289,-0.214116811752319,-0.144962072372437,0.171842575073242,-0.300072908401489,-0.125400543212891,0.530242919921875,-0.465940237045288,-0.320194244384766,0.927966117858887,-0.273812532424927,-0.0705442428588867,0.997319221496582,0.00665760040283203,-0.101917266845703,0.716825485229492,0.0354046821594238,-0.119463920593262,0.670452117919922,-0.0732190608978271,-0.254147052764893,0.783779144287109,-0.0712542533874512,-0.129192352294922,0.820082664489746,-0.0676846504211426,0.0308856964111328,0.670964241027832,-0.00272321701049805,0.126842498779297,0.367378234863281,0.0457656383514404,0.0914125442504883,0.0935611724853516,0.0705642700195313,0.0806369781494141,0.126322746276855,0.0645126104354858,0.0843467712402344,0.174030303955078,-0.019076943397522,0.0506734848022461,0.190317153930664,0.0195336937904358,-0.0780885219573975,-0.0149612426757813,0.0246294736862183,-0.0883474349975586,-0.0166988372802734,0.0435788333415985,-0.134240388870239,-0.0220727920532227,0.0427044928073883,-0.132663726806641,-0.0213918685913086,0.00970616936683655,-0.0554168224334717,-0.0089111328125,0.00785991549491882,-0.0490517616271973,-0.00679588317871094,0.00312402844429016,-0.0380928516387939,-0.00408554077148438,0.0012284517288208,-0.0201444625854492,-0.00106239318847656,-0.00647437572479248,-0.0484809875488281,-0.00126743316650391,0,-0.0238173007965088,0,-0.0189366340637207,-0.0684750080108643,-0.000870704650878906,-0.0107969641685486,-0.0855319499969482,0,-0.0679417252540588,-0.0870499610900879,-0.00183391571044922,-0.0743304491043091,-0.106987953186035,-0.000689506530761719,-0.0980051755905151,-0.122912645339966,-0.00167655944824219,-0.124503135681152,-0.140937328338623,0.000575065612792969,-0.0712776184082031,-0.243460416793823,0.00328254699707031,-0.107540011405945,-0.255214691162109,0.00321006774902344,-0.0119647979736328,-0.303377389907837,-0.0421991348266602,-0.0494800806045532,-0.297999858856201,-0.0466804504394531,0.0153950452804565,-0.22166633605957,-0.0201253890991211,-0.00167548656463623,-0.351958751678467,-0.0267791748046875, -0.0429309010505676,-0.203388214111328,-0.0305681228637695,0.0450254678726196,-0.168829679489136,-0.0260295867919922,0.00448977947235107,-0.29612398147583,-0.0246753692626953,-0.0134559869766235,-0.375608921051025,-0.0360240936279297,0.0220198333263397,-0.0832886695861816,-0.0161161422729492,0.0107205510139465,-0.0558915138244629,-0.00928783416748047,0.00387045741081238,-0.0324335098266602,-0.00349330902099609,-0.00370979309082031,-0.0442633628845215,-0.000658035278320313,-0.0199108719825745,-0.0760433673858643,-0.000370025634765625,-0.0752038359642029,-0.0985968112945557,-0.00133132934570313,-0.110967636108398,-0.134450912475586,8.0108642578125e-05,-0.0852237939834595,-0.251287698745728,0.00582313537597656,-0.018220067024231,-0.340681076049805,-0.0434541702270508,-0.00223767757415771,-0.350618839263916,-0.0266828536987305,0.0190670490264893,-0.287073135375977,-0.0186014175415039,0.0461785793304443,-0.185637712478638,-0.0280513763427734,0.0439959168434143,-0.136505126953125,-0.0223655700683594,0.0448614954948425,-0.138725757598877,-0.0227985382080078,0.0452690720558167,-0.195338487625122,-0.0292987823486328,0.0146248936653137,-0.317225933074951,-0.0197906494140625,-0.00829386711120605,-0.37549877166748,-0.0312986373901367,-0.0338753461837769,-0.336306095123291,-0.0454273223876953,-0.0966982841491699,-0.257723331451416,0.00417804718017578,-0.119940280914307,-0.139416456222534,0.000696182250976563,-0.0762315988540649,-0.102967023849487,-0.00099945068359375,-0.0180333852767944,-0.0806200504302979,-0.000110626220703125,-0.00138366222381592,-0.0375957489013672,-0.000460624694824219,0.00315892696380615,-0.0279786586761475,-0.0027313232421875,0.0100553631782532,-0.0542371273040771,-0.00869464874267578,0.0246151089668274,-0.0889782905578613,-0.0169076919555664,0.0248807072639465,-0.0886197090148926,-0.0166263580322266,-0.00143653154373169,-0.0838282108306885,0,-0.0684974193572998,-0.106259346008301,-0.000537872314453125,-0.0648385286331177,-0.0906441211700439,-0.00043487548828125,0,-0.0910055637359619,0,-0.132523059844971, --0.127844333648682,-0.00339603424072266,-0.128351330757141,-0.133800983428955,-0.00170040130615234,-0.116295337677002,-0.250047206878662,0.00274372100830078,-0.124015808105469,-0.2461256980896,0.00100517272949219,-0.0471670627593994,-0.254444360733032,-0.0202932357788086,-0.0534218549728394,-0.291066408157349,-0.0250301361083984,-0.0666069984436035,-0.313311815261841,-0.0315799713134766,-0.0773952007293701,-0.317652940750122,-0.0385541915893555,-0.0849733352661133,-0.316620588302612,-0.0443410873413086,-0.0983016490936279,-0.309927701950073,-0.0500679016113281,-0.0654712915420532,-0.25761866569519,-0.0406942367553711,-0.0892236232757568,-0.242030143737793,-0.0283107757568359,-0.0563420057296753,-0.262618064880371,-0.0335922241210938,-0.0945515632629395,-0.239954233169556,-0.0145540237426758,-0.0588303804397583,-0.258345127105713,-0.0249490737915039,-0.104153394699097,-0.233547210693359,-0.00527286529541016,-0.142007231712341,-0.291941165924072,0.0215978622436523,-0.142019748687744,-0.299408674240112,-0.00891017913818359,-0.115203261375427,-0.288045167922974,-0.053980827331543,-0.0996671915054321,-0.283831834793091,-0.0466928482055664,-0.0819567441940308,-0.27769660949707,-0.0467519760131836,-0.0676670074462891,-0.279029607772827,-0.0478715896606445,-0.0597274303436279,-0.303161382675171,-0.0473060607910156,-0.0457112789154053,-0.33193039894104,-0.043034553527832,-0.0338702201843262,-0.322593927383423,-0.038264274597168,-0.0231921672821045,-0.285815238952637,-0.0310268402099609,0,-6.07967376708984e-06,0,-0.0141082406044006,-0.00860726833343506,0,-0.0961838960647583,-0.103501558303833,0.0215959548950195,0,-4.64916229248047e-06,0,-0.00987130403518677,-0.00623989105224609,0,-0.0881932973861694,-0.0834919214248657,0.0153312683105469,0,-4.58955764770508e-06,0,-0.000165343284606934,-9.46521759033203e-05,0,-0.0736716985702515,-0.0500165224075317,0.00543212890625,-0.0277493596076965,-0.0163333415985107,0,-0.072702169418335,-0.0669779777526855,0.0106668472290039,-0.136532545089722,-0.266479015350342,-0.0454301834106445,-0.133278489112854, --0.265169143676758,-0.0499696731567383,-0.149012923240662,-0.205379486083984,-0.00474166870117188,-0.146393299102783,-0.2134850025177,-0.018733024597168,-0.153683185577393,-0.184826135635376,0.0247392654418945,-0.150251388549805,-0.194205760955811,0.00481033325195313,-0.143749952316284,-0.179279327392578,0.0388689041137695,-0.149310231208801,-0.183638334274292,0.0244722366333008,-0.135659337043762,-0.177609205245972,0.0427064895629883,-0.137852311134338,-0.178603410720825,0.0376577377319336,-0.149329662322998,-0.216079950332642,-0.0287981033325195,-0.151182293891907,-0.200815916061401,-0.00862503051757813,-0.137813806533813,-0.247759103775024,-0.0484066009521484,-0.146873235702515,-0.221318483352661,-0.034820556640625,-0.150578379631042,-0.205209493637085,-0.0174026489257813,-0.151825547218323,-0.19232702255249,0.00401782989501953,-0.144701719284058,-0.184939622879028,0.020319938659668,-0.143356084823608,-0.19916296005249,-0.0042572021484375,0,7.62939453125e-06,0,-0.0475343465805054,-0.027705192565918,-1.9073486328125e-05,-0.110070824623108,-0.0802860260009766,0.00799846649169922,-0.134823203086853,-0.179481983184814,0.0325784683227539,-0.143168687820435,-0.190149068832397,0.00953865051269531,-0.147493481636047,-0.258228302001953,-0.0384416580200195,-0.155404448509216,-0.199044466018677,-0.00294589996337891,-0.155054211616516,-0.158332109451294,0.0276098251342773,-0.0355198383331299,-0.0169088840484619,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,-0.105685949325562,-0.0522723197937012,-0.0142831802368164,-0.152413129806519,-0.126888036727905,0.0403661727905273,-0.0276894569396973,0.0147716999053955,0.0741233825683594,-0.163995504379272,-0.0777838230133057,0.36451530456543,-0.074923038482666,-0.0536940097808838,0.161096572875977,-0.13459587097168,-0.184607028961182,0.601090431213379,-0.018002986907959,-0.0495200157165527,0.0715866088867188,0.00438928604125977,-0.134623289108276,0.364879608154297,-0.0498814582824707,-0.156900882720947,0.721939086914063,0.0331320762634277,-0.0549306869506836,0.0870695114135742, --0.00677680969238281,-0.00474262237548828,-0.00342082977294922,-0.000134944915771484,0.000563383102416992,-0.000584125518798828,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,-0.0330362319946289,0.00607633590698242,0.202304363250732,0,5.96046447753906e-06,0,0.000411510467529297,0.00241661071777344,0.00239372253417969,0,4.52995300292969e-06,0,-0.00303888320922852,-0.0660796165466309,0.672313690185547,0,6.19888305664063e-06,0,0.0101795196533203,0.0323071479797363,0.0179848670959473,-0.0174503326416016,0.0767865180969238,0.172672748565674,0.0187740325927734,0.0318608283996582,0.00374221801757813,0.0580286979675293,0.0809292793273926,0.0781421661376953,0.131928443908691,-0.0563111305236816,0.442511081695557,0.0450310707092285,-0.310181617736816,0.195218086242676,0.0286564826965332,-0.0920791625976563,0.138073921203613,0.0493745803833008,0.00300455093383789,0.0418462753295898,0.00179719924926758,0.00173091888427734,-0.00110769271850586,0.0095524787902832,-0.304445743560791,0.368039131164551,-0.0835781097412109,-0.112734794616699,0.153359889984131,-0.0322589874267578,-0.0897607803344727,0.0813107490539551,-0.0967540740966797,-0.326504707336426,0.624225616455078,-0.103562593460083,-0.084202766418457,0.165948867797852,-0.0110960006713867,-0.0432615280151367,0.05010986328125,-0.0847980976104736,-0.172977447509766,0.747123718261719,-0.0697212219238281,-0.159865379333496,0.363869667053223,-0.0431375503540039,-0.0650119781494141,0.62578296661377,-0.0188391208648682,-0.162288665771484,0.363728523254395,0.0348238945007324,-0.0222187042236328,0.0228996276855469,0.0629951953887939,-0.0594263076782227,0.119637489318848,0.0390932559967041,-0.0150880813598633,0.275566101074219,0.0455694198608398,0.0178298950195313,0.0371475219726563,0.0298333168029785,0.00333118438720703,-0.00201416015625,0.0425919890403748,0.040165901184082,0.186580657958984,0.0385414361953735,0.0520877838134766,0.125638008117676,0.00260508060455322, -0.00583267211914063,0.0120220184326172,0.00686538219451904,0.00400066375732422,0.0156774520874023,0.0071098804473877,0.000806808471679688,0.19408130645752,0.00323605537414551,-0.00634765625,0.0169363021850586,0.0251994132995605,-0.031590461730957,0.00908470153808594,0.0018620491027832,-0.000360488891601563,9.67979431152344e-05,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06, -0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,3.00407409667969e-05,0.000217556953430176,-1.81198120117188e-05,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06, -0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06, -0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06, -0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0244932174682617,-0.0368142127990723,-0.00387382507324219,-0.0380070805549622,-0.0468306541442871,-0.00460529327392578,-0.0454353094100952,-0.0639605522155762,-0.00764369964599609,-0.0296103954315186,-0.0882976055145264,-0.00953197479248047,-0.019112229347229,-0.115752220153809,-0.0153121948242188,-0.00607931613922119,-0.143117427825928,-0.0280351638793945,-0.0139689445495605,-0.0324935913085938,-0.00442218780517578,-0.00339990854263306,-0.032750129699707,-0.00576972961425781,0.00253641605377197,-0.0399138927459717,-0.00796604156494141,0.00889366865158081,-0.0431594848632813,-0.00963401794433594,0.0161603689193726,-0.0558526515960693,-0.0118579864501953,0.0176183581352234,-0.0624206066131592,-0.0154838562011719,0.00451403856277466,-0.0740993022918701,-0.0226230621337891,-0.00285929441452026,-0.109077453613281,-0.0282688140869141,-0.00268316268920898,-0.159327745437622,-0.0351848602294922,-0.00916439294815063,-0.0346791744232178,-0.00759696960449219,-0.00922173261642456,-0.0391330718994141,-0.0113296508789063,-0.00377541780471802,-0.0494551658630371,-0.0169963836669922,-0.00286996364593506,-0.0837657451629639,-0.0236454010009766,-0.00665634870529175,-0.0328068733215332,-0.00633811950683594,-0.00222310423851013,0.00410175323486328,0.00111198425292969,0.364614248275757,0.574792861938477,-0.636462211608887,0.460901975631714,0.509015560150146,-0.835040092468262,0.134209394454956,0.455369472503662,-0.687342643737793,0.303750991821289,0.61398458480835,-0.666497230529785,0.111141681671143,0.322372436523438,-0.691246032714844,0.0606871247291565,0.228277683258057,-0.706578254699707,0.0233358144760132,0.139857769012451,-0.70640754699707,0.454293727874756,0.151336193084717,-0.893330574035645,0.469332218170166, -0.096127986907959,-0.935287475585938,0.60266375541687,-0.1347975730896,-1.00005435943604,0.541651487350464,-0.180011749267578,-1.00350332260132,0.221770524978638,-0.246203422546387,-1.03447151184082,0.273691177368164,-0.117496967315674,-0.828937530517578,0.151746034622192,0.0676932334899902,-0.799908638000488,0.0408051013946533,0.156614303588867,-0.916275024414063,-0.0338757634162903,0.0912995338439941,-0.657970428466797,0.0173113942146301,0.102922916412354,-0.44096565246582,0.0137591958045959,0.0411825180053711,-0.00121307373046875,0.00185549259185791,-0.0809445381164551,-0.0719242095947266,0.0237480401992798,-0.11609935760498,-0.106504440307617,0.0537909269332886,-0.133247852325439,-0.121820449829102,0.0849208831787109,-0.127762794494629,-0.063507080078125,-0.0369312763214111,-0.147495269775391,0.00800609588623047,-0.0852258205413818,-0.176612377166748,0.108213424682617,-0.152630567550659,-0.186233043670654,0.0965089797973633,-0.288655996322632,-0.197507858276367,0.12209415435791,-0.175417900085449,-0.286369323730469,0.0368862152099609,-0.282756090164185,-0.4581618309021,-0.0734109878540039,-0.319236040115356,-0.49191951751709,-0.17020320892334,-0.283263921737671,-0.570595741271973,-0.227787017822266,-0.0713152885437012,-0.733841419219971,-0.428863525390625,-0.0415422916412354,-0.701671600341797,-0.195104598999023,0.0210299491882324,-0.349779605865479,-0.0189714431762695,0.0240277051925659,-0.115889549255371,-0.251388549804688,0.0451579093933105,-0.062556266784668,-0.322501182556152,0.0276469588279724,-0.038177490234375,-0.307347297668457,0.0116085708141327,-0.0625114440917969,-0.0640792846679688,-0.0265197455883026,0.0104126930236816,0.0176668167114258,-0.0291095972061157,0.0115132331848145,0.0398693084716797,-0.0274507403373718,0.148880958557129,0.114439964294434,-0.0223040580749512,0.362350463867188,0.215750694274902,-0.0533874034881592,0.297615528106689,0.277132034301758,-0.0437569618225098,0.19870138168335,0.260843276977539,-0.13357949256897,0.245926380157471,0.358005523681641,-0.218405485153198,0.258342742919922, -0.258685111999512,-0.0358688831329346,0.12598991394043,0.0509824752807617,0.129164218902588,-0.0927414894104004,-0.357649803161621,0.165540218353271,-0.360909938812256,-0.627902984619141,0.184454917907715,-0.590910911560059,-0.670075416564941,0.131800889968872,-0.635167598724365,-0.683856964111328,-0.0197577476501465,-0.693347930908203,-0.453692436218262,-0.08121657371521,-0.48192310333252,-0.285200119018555,-0.0439728498458862,-0.387962818145752,-0.484800338745117,-0.00147342681884766,-0.303205966949463,-0.514575004577637,-0.00217938423156738,-0.309125423431396,-0.382747650146484,-0.00380048155784607,0.0295343399047852,0.0206241607666016,0,5.96046447753906e-06,0,0,-2.86102294921875e-06,-0.587490081787109,0.122285604476929,0.0852017402648926,-0.739159107208252,0,-1.43051147460938e-06,-0.587490081787109,0,1.66893005371094e-06,-0.587490081787109,0,-4.52995300292969e-06,-0.587491035461426,0,-4.52995300292969e-06,-0.587491035461426,0,3.09944152832031e-06,-0.587490081787109,-0.000552654266357422,0.000251293182373047,-0.720715045928955,-0.0052790641784668,0.00950860977172852,-0.728108882904053,-0.00435256958007813,0.0169181823730469,-0.721095561981201,-0.00591182708740234,0.0156598091125488,-0.506240844726563,0.0168051719665527,-0.0160017013549805,-0.466192245483398,0.018043041229248,0.00841331481933594,-0.462890625,0.0102481842041016,0.0684337615966797,-0.450016021728516,-0.00214982032775879,0.112611770629883,-0.469596862792969,-0.00584173202514648,0.0999736785888672,-0.507693290710449,-0.00563454627990723,0.0404777526855469,-0.555027008056641,-0.00441253185272217,0.00831890106201172,0.011723518371582,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.33786010742188e-06,-0.179092884063721,0,-6.19888305664063e-06,-0.217879772186279,0,-6.19888305664063e-06,-0.30161190032959,0,-0.233698844909668,-0.285504817962646, -0,-0.10120964050293,-0.187989234924316,0,-0.0786333084106445,-0.219666957855225,-4.83989715576172e-05,2.288818359375e-05,9.72747802734375e-05,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06, -0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4920 { - a: -0.597092765817582,-1.20674596726894,-0.819351315498352,-0.384596306972981,-1.27944368124008,-0.820560738444328,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.35247701406479,0.038206547498703,-0.535711735486984,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.33883160352707,0.271105103194714,0.201965391635895,-0.185629397630692,0.60392153263092,-0.423017710447311,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.149402499198914,0.649232625961304,-0.918700143694878,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.896484866738319,0.121514856815338,0.316224336624146,-0.597992211580276,0.508298240602016,0.248544991016388,-0.456251949071884,0.331182681024075,0.38022056221962,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276, --1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209, --0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881, --0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888, --0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986, --0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954, -0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359, -0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703, --0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,-0.100254029035568,-0.732699543237686,-1.28549030423164,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822, --0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028, -0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752, --1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443, --0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157, -0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844, --0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474, -0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852, -0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243, --0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682, -0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888, -0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886, -0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001, --1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017, --1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074, --0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028, -0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.15227884054184,0.806445047259331,0.284897208213806,-1.06437003612518,0.84141793847084,0.424562990665436,-1.30209255218506,0.681211248040199,0.375398635864258,-1.31432190537453,0.719328045845032,0.437053114175797,-0.981949830893427,0.209982231259346,0.852725625038147,-0.862383862957358,0.426683764904737,0.597152233123779,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481, --0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403, --0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361, --0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199, -0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901, --1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047, --0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167, --0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436, --0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229, -0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713, --1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496, -1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344, --0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877, --0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308, --0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025, -0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709, --0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649, -1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.353135406970978,-1.14357566833496,0.00262853503227234,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216, --0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997, -0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805454335168, "Geometry::Mouth_Stretcher_Right", "Shape" { - Version: 100 - Indexes: *7082 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970, -2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409, -3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819, -3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242, -4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658, -4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081, -5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496, -5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5950,5951, -5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6165,6167,6169,6171,6177,6179,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6383,6384,6385,6386,6387,6390,6391,6392,6393,6394,6401,6402,6403,6404,6408, -6409,6410,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6444,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6525,6526,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215, -7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7328,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7367,7368,7369,7370,7371,7372,7374,7377,7379,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7410,7412,7413,7414,7415,7416,7417,7418,7419,7422,7424,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7442,7447,7449,7450,7451,7452,7454,7455,7456,7457,7460,7469,7470,7471,7472,7473,7474,7475,7478,7480,7484,7486,7487,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7649,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7783,7790,7791,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7826,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923, -7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8546,8552,8553,8563,8564,8565,8566,8567,8568,8572,8576,8578,8580,8581,8582,8583,8584,8585,8586,8591,8598,8601,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *21246 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, -0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, -0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, -0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, -4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, --7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05, -0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348, -0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699, -0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05, -0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.0591270923614502,-0.0377306938171387,-0.0104227066040039,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.0322041511535645,-0.0259759426116943,0.00125503540039063,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05, -0,0,0.0251395702362061,-0.00778627395629883,-0.00145149230957031,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.0481420755386353,-0.0239481925964355,-0.00742816925048828,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000970304012298584,-0.00103998184204102,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,0.0694565773010254,-0.029712438583374,-0.00790500640869141,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.011496901512146,-0.012258768081665,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.0458734035491943,-0.0276517868041992,-0.0013427734375,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.0390095710754395,-0.0215480327606201,-0.0118541717529297,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.0734621286392212,-0.0413720607757568,-0.00867366790771484,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,0.049837589263916,-0.0161523818969727,-0.00550270080566406,7.7366828918457e-05, -0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.00525617599487305,-0.00153803825378418,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05, -0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625, -0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05, -0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945, -0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0, -7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05, -0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05, -0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05, -0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348, -0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302, -0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05, -0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05, -0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05, -0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.00466084480285645,-0.00548720359802246,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.0609959363937378,-0.0222251415252686,-0.00713920593261719,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05, -0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,0.0448509454727173,-0.0214264392852783,-0.0104236602783203,0.0405791997909546,-0.0279853343963623,0.000581741333007813,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,0.0136862993240356,-0.00416302680969238,-0.000306129455566406,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.0683871507644653,-0.0420777797698975,-0.00938320159912109,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05, -0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.021396815776825,-0.0198662281036377,0.00051116943359375,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.0483782291412354,-0.0263514518737793,-0.0041961669921875,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.0469439029693604,-0.0293359756469727,-0.0114326477050781,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,0.0737874507904053,-0.0366992950439453,-0.00827598571777344,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.0376752614974976,-0.0118982791900635,-0.00326347351074219,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047, -0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000624418258666992,-0.000185966491699219,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05, -0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0, -0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05, -0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0, -8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945, -0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05, -0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, -0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072, -0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05, -0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0, -8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05, -0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0, -0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05, -0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0, -8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05, -0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332, -0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0, -8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05, -0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05, -0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0, -0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477, -0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0, -9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05, -0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0, -0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0, -0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05, -0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0, -0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05, -0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0, -8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05, -0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0, -0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05, -0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0, -0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0, -0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883, -0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05, -0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0, -0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0, -9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168, -0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0, -0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,1.66221145432263e-29,-0.0576834678649902,0,1.67509351823815e-29,-0.00913190841674805,0,0.00593897423095768,-0.0462260246276855,-0.0453395843505859,-0.00353378801810322,-0.0517654418945313,-0.0434350967407227,-0.0402948483097134,-0.0463104248046875,0.00263881683349609,-0.00693869169481331,-0.0533323287963867,-0.0393276214599609,0.00401326131395763,-0.0514993667602539,-0.042724609375,-0.0102280900027836,-0.0266036987304688,-0.00683975219726563,0.0059659266989911,-0.0488252639770508,-0.0441675186157227,-0.00648529871978099,-0.0535697937011719,-0.0380611419677734,-0.00272510759532452,-0.0148100852966309,-0.0155248641967773,-0.0116692399842577,-0.00778388977050781,-0.0398683547973633,-0.000943864000873873,-0.031834602355957,-0.0272378921508789, --0.0510754660790553,0.00851631164550781,-0.056696891784668,-0.00975990388542414,-0.0413398742675781,-0.00844097137451172,0.024855699390173,0.0416440963745117,0.109015464782715,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,-2.98023223876953e-06,0,1.6494232794919e-29,6.09457492828369e-06,0,1.76704839760241e-29,-6.10947608947754e-06,0,1.76704839760241e-29,1.54972076416016e-06,0,1.76704839760241e-29,3.09944152832031e-06,0,0.0402112565934658,0.0395736694335938,0.158485412597656,1.63431706741717e-29,-0.0212080478668213,0,-0.00350005575455725,-0.0288643836975098,-0.00302600860595703,-0.00805237982422113,-0.037968635559082,-0.00696277618408203,-0.00947846099734306,-0.0422544479370117,-0.00819587707519531,1.63873030579207e-29,-0.0608837604522705,0,1.64724848328751e-29,-0.0616207122802734,0,1.69452569998719e-29,-6.07967376708984e-06,0,1.70417235205941e-29,-3.09944152832031e-06,0,1.71227329488799e-29,-1.54972076416016e-06,0,1.68687870486503e-29,4.52995300292969e-06,0,1.6823769940833e-29,3.03983688354492e-06,0,0.0142997605726123,-0.00781917572021484,0.140799522399902,-0.00327401864342391,-0.00852489471435547,0.0109024047851563,1.76704839760241e-29,6.19888305664063e-06,0,1.20450953867742e-29,4.52995300292969e-06,0,1.25386284767183e-29,4.58955764770508e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,0.00030970573425293,0,0,-6.09457492828369e-06,0,0,0.000513523817062378,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.0795361995697021,0,0.000128269195556641,-0.00920772552490234,0,0.00498649477958679,-0.0964298248291016,-0.0639190673828125, --0.00550204515457153,-0.101284980773926,-0.0546321868896484,0.167726993560791,-0.707053184509277,0.142163276672363,0.10945725440979,-0.741019248962402,0.223371505737305,-0.094057559967041,-0.675601482391357,0.0781106948852539,-0.0334868431091309,-0.719618797302246,0.030573844909668,-0.0555346012115479,-0.252529621124268,0.0121860504150391,-0.0429599285125732,-0.334860801696777,-0.0444984436035156,-0.0517959594726563,-0.246419906616211,-0.0425214767456055,-0.101143956184387,-0.222472190856934,-0.129537582397461,-0.0263551473617554,-0.267362117767334,-0.0779170989990234,-0.0453908443450928,-0.179988384246826,-0.11833381652832,-0.00726300477981567,-0.192025661468506,-0.0548105239868164,-0.0126553773880005,-0.141599178314209,-0.0928783416748047,-0.104472875595093,-0.534534931182861,0.0262203216552734,-0.112606287002563,-0.446418285369873,0.0187110900878906,0.14988374710083,-0.762790679931641,0.195289611816406,0.137470245361328,-0.769210338592529,0.0529022216796875,0.176611185073853,-0.754067897796631,0.210469245910645,0.156377077102661,-0.837718486785889,0.0548114776611328,0.197516679763794,-0.720362663269043,0.256500244140625,0.158542394638062,-0.729660987854004,0.0714702606201172,0.15982460975647,-0.721329212188721,0.309762001037598,0.209766149520874,-0.669604301452637,0.129140853881836,0.00728440284729004,-0.625784873962402,0.0303220748901367,0.0166001319885254,-0.647607803344727,0.303556442260742,-0.0566723346710205,-0.487497329711914,-0.0139369964599609,-0.116070985794067,-0.534886837005615,0.233206748962402,-0.163300037384033,-0.372396469116211,0.135809898376465,-0.0476367473602295,-0.196175098419189,-0.0834922790527344,-0.148543834686279,-0.224846363067627,-0.0106544494628906,-0.0852831602096558,-0.0948033332824707,-0.182416915893555,-0.141568303108215,-0.176172733306885,-0.0844278335571289,-0.0481963157653809,-0.00137519836425781,-0.162002563476563,-0.0826737284660339,-0.164953231811523,-0.046234130859375,-0.0227411985397339,-0.0376501083374023,-0.10823917388916,-0.109465062618256,-0.131124973297119,0.00213336944580078, --0.00895160436630249,-0.0644469261169434,-0.0621795654296875,0.00632470846176147,-0.108116626739502,-0.0529565811157227,-0.000113248825073242,-0.182186603546143,-0.0617666244506836,-0.0325864553451538,-0.22346305847168,-0.0776729583740234,-0.0781030654907227,-0.214998722076416,-0.0737829208374023,-0.0792992115020752,-0.26906156539917,0.0221261978149414,-0.149080038070679,-0.468070507049561,0.0195894241333008,-0.0867180824279785,-0.697486877441406,0.0547037124633789,0.14231276512146,-0.762638092041016,0.254510879516602,0.192344903945923,-0.780982494354248,0.182248115539551,0.238631248474121,-0.795376777648926,0.188342094421387,0.22704005241394,-0.770657539367676,0.216961860656738,0.193722009658813,-0.735584735870361,0.25253963470459,-0.01125168800354,-0.680306911468506,0.207609176635742,-0.11440372467041,-0.567344665527344,0.118124961853027,-0.142995357513428,-0.314630031585693,0.0662651062011719,-0.173714518547058,-0.180995941162109,-0.0756750106811523,-0.185615062713623,-0.119808197021484,-0.114728927612305,-0.102967441082001,-0.118278980255127,-0.0327386856079102,-0.099878191947937,-0.11268138885498,0.0238971710205078,0.00687429308891296,-0.102608203887939,-0.0594100952148438,-0.00691664218902588,-0.156805038452148,-0.0806035995483398,-0.0406844615936279,-0.195703506469727,-0.100480079650879,-0.0886776447296143,-0.223677158355713,-0.094761848449707,-0.0838905572891235,-0.337005615234375,0.00339031219482422,-0.134995222091675,-0.513887882232666,0.0180263519287109,-0.0766227245330811,-0.70979642868042,0.0489416122436523,0.168264627456665,-0.784878730773926,0.23723316192627,0.21098780632019,-0.79949426651001,0.163568496704102,0.220479249954224,-0.805167675018311,0.140676498413086,0.228994607925415,-0.776212692260742,0.152286529541016,0.229021072387695,-0.721557140350342,0.208309173583984,0.0356752872467041,-0.617142677307129,0.0723762512207031,-0.0894343852996826,-0.470705509185791,0.020751953125,-0.0586553812026978,-0.161410808563232,-0.0621671676635742,-0.0794533491134644,-0.0173778533935547,-0.177101135253906,-0.0533578395843506, -0.0335345268249512,-0.158036231994629,-0.0275825262069702,0.000315666198730469,-0.106034278869629,-0.00722596049308777,-0.0567750930786133,-0.0593929290771484,-0.00797432661056519,-0.036219596862793,-0.0228395462036133,-0.0170378088951111,-0.0767474174499512,-0.0315208435058594,-0.0256466865539551,-0.11336612701416,-0.045292854309082,-0.000334858894348145,-0.234844207763672,-0.00475120544433594,0.0757415294647217,-0.299776554107666,0.0559616088867188,0.10783863067627,-0.363600254058838,0.137477874755859,0.106349468231201,-0.387628078460693,0.278562545776367,0.274105548858643,-0.380926132202148,0.451558113098145,0.262244462966919,-0.353853225708008,0.493288040161133,0.166119337081909,-0.37518835067749,0.496253967285156,0.0945303440093994,-0.401963233947754,0.509078025817871,0.0280852317810059,-0.414980888366699,0.528519630432129,0.0757715702056885,-0.33463716506958,0.667523384094238,0.0791964530944824,-0.170750141143799,0.572446823120117,-0.0357803106307983,-0.0180191993713379,-0.0350379943847656,-0.103539884090424,-0.00188827514648438,-0.0635833740234375,-0.161513566970825,-0.0141973495483398,-0.0502090454101563,-0.0756851434707642,-0.00939798355102539,0.0800800323486328,-0.00588631629943848,-0.0366373062133789,0.338019371032715,-0.00038561224937439,-0.066072940826416,-0.0299501419067383,-0.000314593315124512,-0.131531715393066,-0.0184755325317383,-0.00663220882415771,-0.197669506072998,-0.0280685424804688,-0.0206788778305054,-0.15138578414917,-0.00490665435791016,-0.0444643497467041,-0.224893569946289,0.0191326141357422,-0.0829601287841797,-0.424555778503418,0.0534496307373047,-0.0932474136352539,-0.68114709854126,0.0914478302001953,0.142927169799805,-0.747771263122559,0.254244804382324,0.198576927185059,-0.755668640136719,0.263683319091797,0.222573041915894,-0.715573310852051,0.270094871520996,0.179933786392212,-0.643553256988525,0.292718887329102,0.087134838104248,-0.638719081878662,0.392474174499512,0.0797231197357178,-0.588850021362305,0.470881462097168,-0.0195212364196777,-0.437413215637207,0.392663955688477, --0.0477912425994873,-0.239221096038818,0.182730674743652,-0.0698374509811401,-0.0854630470275879,-0.0133848190307617,-0.104779839515686,-0.0183811187744141,-0.120841026306152,-0.0449416041374207,-0.0567131042480469,-0.115802764892578,-0.0688556730747223,-0.0385465621948242,-0.112002372741699,-0.0305933952331543,-0.101837635040283,-0.0182895660400391,-0.0536583662033081,-0.185341358184814,-0.029292106628418,-0.00520038604736328,-0.289676666259766,-0.0327377319335938,0.0736359357833862,-0.214948654174805,-0.0131511688232422,0.185658693313599,-0.149147033691406,-0.0467300415039063,0.122040033340454,-0.121195316314697,0.045018196105957,0.357045888900757,-0.14184045791626,0.445835113525391,0.51034140586853,-0.227692127227783,0.742347717285156,0.144267320632935,-0.134767055511475,0.833705902099609,0.113757848739624,-0.244824886322021,0.777538299560547,0.118153810501099,-0.0993251800537109,0.750201225280762,0.308660745620728,-0.018369197845459,0.842061996459961,0.313722848892212,-0.216243743896484,0.790835380554199,-0.0235203504562378,0.0661125183105469,0.133912086486816,-0.0815248489379883,0.0606679916381836,0.10490608215332,-0.136619210243225,0.140710830688477,0.0932235717773438,-0.0676562786102295,0.247998237609863,0.19444751739502,0.0118014812469482,0.268400192260742,0.446456909179688,0.114112854003906,0.0535593032836914,0.715588569641113,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.05311584472656e-06,9.5367431640625e-07,0,-4.52995300292969e-06,0,0,2.38418579101563e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,-4.76837158203125e-07,0,-1.49011611938477e-06,4.76837158203125e-07,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,-7.62939453125e-05,-0.000768542289733887,-0.000599861145019531,0.000210285186767578,0.00428009033203125,-0.0126781463623047,0.000516653060913086,-0.00181329250335693,-0.000432014465332031,0.0351629257202148,0.000364065170288086,-0.00266933441162109, -0,6.07967376708984e-06,0,0.0434468984603882,-0.0133141279220581,0.000108718872070313,0,4.58955764770508e-06,0,0.00100159645080566,-0.000419974327087402,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,-0.00463342666625977,0.000942707061767578,-0.0316810607910156,-0.00211811065673828,-0.00695979595184326,-0.00376319885253906,0.00289416313171387,0.00115525722503662,0.00498676300048828,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,-0.00612294673919678,9.5367431640625e-06,-0.00084686279296875,0.0115430355072021,-0.087982177734375,0.106958389282227,0.00119400024414063,0.000330924987792969,0.00242137908935547,0.00289678573608398,-0.00140380859375,-0.000468730926513672,0,-7.62939453125e-06,0,0.0116147994995117,-0.0056915283203125,-0.00332260131835938,0.119580030441284,-0.302328109741211,-0.0388898849487305,0.136605501174927,-0.242403984069824,-0.0477495193481445,0.11903965473175,-0.283511638641357,-0.054814338684082,0.115921378135681,-0.278347969055176,-0.018951416015625,0.129915714263916,-0.237297773361206,0.000964164733886719,0.136843085289001,-0.192579746246338,0.0146560668945313,0.134613394737244,-0.0806000232696533,0.000291824340820313,0.136571645736694,-0.116618871688843,-0.00439929962158203,0.0532984137535095,-0.0322082042694092,-4.10079956054688e-05,0.0631358623504639,-0.0671646595001221,-0.000357627868652344,0.124946117401123,-0.281020879745483,-0.000731468200683594,0.128237724304199,-0.30337929725647,-0.0282754898071289,0.214116811752319,-0.144962072372437,0.171842575073242,0.300072908401489,-0.125400543212891,0.530242919921875,0.465940237045288,-0.320194244384766,0.927966117858887,0.273812532424927,-0.0705442428588867,0.997319221496582,-0.00665760040283203,-0.101917266845703, -0.716825485229492,-0.0354046821594238,-0.119463920593262,0.670452117919922,0.0732190608978271,-0.254147052764893,0.783779144287109,0.0712542533874512,-0.129192352294922,0.820082664489746,0.0676846504211426,0.0308856964111328,0.670964241027832,0.00272321701049805,0.126842498779297,0.367378234863281,-0.0457656383514404,0.0914125442504883,0.0935611724853516,-0.0705642700195313,0.0806369781494141,0.126322746276855,-0.0645126104354858,0.0843467712402344,0.174030303955078,0.019076943397522,0.0506734848022461,0.190317153930664,-0.0195336937904358,-0.0780885219573975,-0.0149612426757813,-0.0246294736862183,-0.0883474349975586,-0.0166988372802734,-0.0435788333415985,-0.134240388870239,-0.0220727920532227,-0.0427044928073883,-0.132663726806641,-0.0213918685913086,-0.00970616936683655,-0.0554168224334717,-0.0089111328125,-0.00785991549491882,-0.0490517616271973,-0.00679588317871094,-0.00312402844429016,-0.0380928516387939,-0.00408554077148438,-0.0012284517288208,-0.0201444625854492,-0.00106239318847656,0.00647437572479248,-0.0484809875488281,-0.00126743316650391,0,-0.0238173007965088,0,0.0189366340637207,-0.0684750080108643,-0.000870704650878906,0.0107969641685486,-0.0855319499969482,0,0.0679417252540588,-0.0870499610900879,-0.00183391571044922,0.0743304491043091,-0.106987953186035,-0.000689506530761719,0.0980051755905151,-0.122912645339966,-0.00167655944824219,0.124503135681152,-0.140937328338623,0.000575065612792969,0.0712776184082031,-0.243460416793823,0.00328254699707031,0.107540011405945,-0.255214691162109,0.00321006774902344,0.0119647979736328,-0.303377389907837,-0.0421991348266602,0.0494800806045532,-0.297999858856201,-0.0466804504394531,-0.0153950452804565,-0.22166633605957,-0.0201253890991211,0.00167548656463623,-0.351958751678467,-0.0267791748046875,-0.0429309010505676,-0.203388214111328,-0.0305681228637695,-0.0450254678726196,-0.168829679489136,-0.0260295867919922,-0.00448977947235107,-0.29612398147583,-0.0246753692626953,0.0134559869766235,-0.375608921051025,-0.0360240936279297,-0.0220198333263397,-0.0832886695861816, --0.0161161422729492,-0.0107205510139465,-0.0558915138244629,-0.00928783416748047,-0.00387045741081238,-0.0324335098266602,-0.00349330902099609,0.00370979309082031,-0.0442633628845215,-0.000658035278320313,0.0199108719825745,-0.0760433673858643,-0.000370025634765625,0.0752038359642029,-0.0985968112945557,-0.00133132934570313,0.110967636108398,-0.134450912475586,8.0108642578125e-05,0.0852237939834595,-0.251287698745728,0.00582313537597656,0.018220067024231,-0.340681076049805,-0.0434541702270508,0.00223767757415771,-0.350618839263916,-0.0266828536987305,-0.0190670490264893,-0.287073135375977,-0.0186014175415039,-0.0461785793304443,-0.185637712478638,-0.0280513763427734,-0.0439959168434143,-0.136505126953125,-0.0223655700683594,-0.0448614954948425,-0.138725757598877,-0.0227985382080078,-0.0452690720558167,-0.195338487625122,-0.0292987823486328,-0.0146248936653137,-0.317225933074951,-0.0197906494140625,0.00829386711120605,-0.37549877166748,-0.0312986373901367,0.0338753461837769,-0.336306095123291,-0.0454273223876953,0.0966982841491699,-0.257723331451416,0.00417804718017578,0.119940280914307,-0.139416456222534,0.000696182250976563,0.0762315988540649,-0.102967023849487,-0.00099945068359375,0.0180333852767944,-0.0806200504302979,-0.000110626220703125,0.00138366222381592,-0.0375957489013672,-0.000460624694824219,-0.00315892696380615,-0.0279786586761475,-0.0027313232421875,-0.0100553631782532,-0.0542371273040771,-0.00869464874267578,-0.0246151089668274,-0.0889782905578613,-0.0169076919555664,-0.0248807072639465,-0.0886197090148926,-0.0166263580322266,0.00143653154373169,-0.0838282108306885,0,0.0684974193572998,-0.106259346008301,-0.000537872314453125,0.0648385286331177,-0.0906441211700439,-0.00043487548828125,0,-0.0910055637359619,0,0.132523059844971,-0.127844333648682,-0.00339603424072266,0.128351330757141,-0.133800983428955,-0.00170040130615234,0.116295337677002,-0.250047206878662,0.00274372100830078,0.124015808105469,-0.2461256980896,0.00100517272949219,0.0471670627593994,-0.254444360733032,-0.0202932357788086,0.0534218549728394, --0.291066408157349,-0.0250301361083984,0.0666069984436035,-0.313311815261841,-0.0315799713134766,0.0773952007293701,-0.317652940750122,-0.0385541915893555,0.0849733352661133,-0.316620588302612,-0.0443410873413086,0.0983016490936279,-0.309927701950073,-0.0500679016113281,0.0654712915420532,-0.25761866569519,-0.0406942367553711,0.0892236232757568,-0.242030143737793,-0.0283107757568359,0.0563420057296753,-0.262618064880371,-0.0335922241210938,0.0945515632629395,-0.239954233169556,-0.0145540237426758,0.0588303804397583,-0.258345127105713,-0.0249490737915039,0.104153394699097,-0.233547210693359,-0.00527286529541016,0.142007231712341,-0.291941165924072,0.0215978622436523,0.142019748687744,-0.299408674240112,-0.00891017913818359,0.115203261375427,-0.288045167922974,-0.053980827331543,0.0996671915054321,-0.283831834793091,-0.0466928482055664,0.0819567441940308,-0.27769660949707,-0.0467519760131836,0.0676670074462891,-0.279029607772827,-0.0478715896606445,0.0597274303436279,-0.303161382675171,-0.0473060607910156,0.0457112789154053,-0.33193039894104,-0.043034553527832,0.0338702201843262,-0.322593927383423,-0.038264274597168,0.0231921672821045,-0.285815238952637,-0.0310268402099609,0,-6.07967376708984e-06,0,0.0141082406044006,-0.00860726833343506,0,0.0961838960647583,-0.103501558303833,0.0215959548950195,0,-4.64916229248047e-06,0,0.00987130403518677,-0.00623989105224609,0,0.0881932973861694,-0.0834919214248657,0.0153312683105469,0,-4.58955764770508e-06,0,0.000165343284606934,-9.46521759033203e-05,0,0.0736716985702515,-0.0500165224075317,0.00543212890625,0.0277493596076965,-0.0163333415985107,0,0.072702169418335,-0.0669779777526855,0.0106668472290039,0.136532545089722,-0.266479015350342,-0.0454301834106445,0.133278489112854,-0.265169143676758,-0.0499696731567383,0.149012923240662,-0.205379486083984,-0.00474166870117188,0.146393299102783,-0.2134850025177,-0.018733024597168,0.153683185577393,-0.184826135635376,0.0247392654418945,0.150251388549805,-0.194205760955811,0.00481033325195313,0.143749952316284,-0.179279327392578,0.0388689041137695, -0.149310231208801,-0.183638334274292,0.0244722366333008,0.135659337043762,-0.177609205245972,0.0427064895629883,0.137852311134338,-0.178603410720825,0.0376577377319336,0.149329662322998,-0.216079950332642,-0.0287981033325195,0.151182293891907,-0.200815916061401,-0.00862503051757813,0.137813806533813,-0.247759103775024,-0.0484066009521484,0.146873235702515,-0.221318483352661,-0.034820556640625,0.150578379631042,-0.205209493637085,-0.0174026489257813,0.151825547218323,-0.19232702255249,0.00401782989501953,0.144701719284058,-0.184939622879028,0.020319938659668,0.143356084823608,-0.19916296005249,-0.0042572021484375,0,7.62939453125e-06,0,0.0475343465805054,-0.027705192565918,-1.9073486328125e-05,0.110070824623108,-0.0802860260009766,0.00799846649169922,0.134823203086853,-0.179481983184814,0.0325784683227539,0.143168687820435,-0.190149068832397,0.00953865051269531,0.147493481636047,-0.258228302001953,-0.0384416580200195,0.155404448509216,-0.199044466018677,-0.00294589996337891,0.155054211616516,-0.158332109451294,0.0276098251342773,0.0355198383331299,-0.0169088840484619,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0.105685949325562,-0.0522723197937012,-0.0142831802368164,0.152413129806519,-0.126888036727905,0.0403661727905273,0.0276894569396973,0.0147716999053955,0.0741233825683594,0.163995504379272,-0.0777838230133057,0.36451530456543,0.074923038482666,-0.0536940097808838,0.161096572875977,0.13459587097168,-0.184607028961182,0.601090431213379,0.018002986907959,-0.0495200157165527,0.0715866088867188,-0.00438928604125977,-0.134623289108276,0.364879608154297,0.0498814582824707,-0.156900882720947,0.721939086914063,-0.0331320762634277,-0.0549306869506836,0.0870695114135742,0.00677680969238281,-0.00474262237548828,-0.00342082977294922,0.000134944915771484,0.000563383102416992,-0.000584125518798828,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0.0330362319946289,0.00607633590698242,0.202304363250732, -0,5.96046447753906e-06,0,-0.000411510467529297,0.00241661071777344,0.00239372253417969,0,4.52995300292969e-06,0,0.00303888320922852,-0.0660796165466309,0.672313690185547,0,6.19888305664063e-06,0,-0.0101795196533203,0.0323071479797363,0.0179848670959473,0.0174503326416016,0.0767865180969238,0.172672748565674,-0.0187740325927734,0.0318608283996582,0.00374221801757813,-0.0580286979675293,0.0809292793273926,0.0781421661376953,-0.131928443908691,-0.0563111305236816,0.442511081695557,-0.0450310707092285,-0.310181617736816,0.195218086242676,-0.0286564826965332,-0.0920791625976563,0.138073921203613,-0.0493745803833008,0.00300455093383789,0.0418462753295898,-0.00179719924926758,0.00173091888427734,-0.00110769271850586,-0.0095524787902832,-0.304445743560791,0.368039131164551,0.0835781097412109,-0.112734794616699,0.153359889984131,0.0322589874267578,-0.0897607803344727,0.0813107490539551,0.0967540740966797,-0.326504707336426,0.624225616455078,0.103562593460083,-0.084202766418457,0.165948867797852,0.0110960006713867,-0.0432615280151367,0.05010986328125,0.0847980976104736,-0.172977447509766,0.747123718261719,0.0697212219238281,-0.159865379333496,0.363869667053223,0.0431375503540039,-0.0650119781494141,0.62578296661377,0.0188391208648682,-0.162288665771484,0.363728523254395,-0.0348238945007324,-0.0222187042236328,0.0228996276855469,-0.0629951953887939,-0.0594263076782227,0.119637489318848,-0.0390932559967041,-0.0150880813598633,0.275566101074219,-0.0455694198608398,0.0178298950195313,0.0371475219726563,-0.0298333168029785,0.00333118438720703,-0.00201416015625,-0.0425919890403748,0.040165901184082,0.186580657958984,-0.0385414361953735,0.0520877838134766,0.125638008117676,-0.00260508060455322,0.00583267211914063,0.0120220184326172,-0.00686538219451904,0.00400066375732422,0.0156774520874023,-0.0071098804473877,0.000806808471679688,0.19408130645752,-0.00323605537414551,-0.00634765625,0.0169363021850586,-0.0251994132995605,-0.031590461730957,0.00908470153808594,-0.0018620491027832,-0.000360488891601563,9.67979431152344e-05,0,5.96046447753906e-06, -0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,0.000113487243652344,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,-3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,0.000143557786941528,0,1.19209289550781e-06,-1.39474868774414e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,0.000310592353343964,0,0,0.000773891806602478,0,0,0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.49011611938477e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,-9.29832458496094e-05,-5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.49011611938477e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,0.0001564621925354,-0.000370025634765625,0,0.000211834907531738,0,0,8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,8.0108642578125e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,0,6.07967376708984e-06, -0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,-3.67164611816406e-05,0.000189661979675293,-1.04904174804688e-05,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,4.76837158203125e-07,0,-6.07967376708984e-06,4.76837158203125e-07,-4.76837158203125e-07,-6.31809234619141e-06,0,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,9.5367431640625e-07,4.29153442382813e-06,-5.96046447753906e-06,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-0.000197052955627441,0,0,-3.21865081787109e-06,0,0,2.98023223876953e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,-3.814697265625e-06,-3.09348106384277e-05,4.76837158203125e-06,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-7.51018524169922e-06,-6.05583190917969e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030672550201416,-2.57492065429688e-05,0.000108718872070313,-0.000706672668457031,-9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06, -0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06, -0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06, -0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0244932174682617,-0.0368142127990723,-0.00387382507324219,0.0380070805549622,-0.0468306541442871,-0.00460529327392578,0.0454353094100952,-0.0639605522155762,-0.00764369964599609,0.0296103954315186,-0.0882976055145264,-0.00953197479248047,0.019112229347229,-0.115752220153809,-0.0153121948242188,0.00607931613922119,-0.143117427825928,-0.0280351638793945,0.0139689445495605,-0.0324935913085938,-0.00442218780517578,0.00339990854263306,-0.032750129699707,-0.00576972961425781,-0.00253641605377197,-0.0399138927459717,-0.00796604156494141,-0.00889366865158081,-0.0431594848632813,-0.00963401794433594,-0.0161603689193726,-0.0558526515960693,-0.0118579864501953,-0.0176183581352234,-0.0624206066131592,-0.0154838562011719,-0.00451403856277466,-0.0740993022918701,-0.0226230621337891,0.00285929441452026,-0.109077453613281,-0.0282688140869141,0.00268316268920898,-0.159327745437622,-0.0351848602294922,0.00916439294815063,-0.0346791744232178,-0.00759696960449219,0.00922173261642456,-0.0391330718994141,-0.0113296508789063,0.00377541780471802,-0.0494551658630371,-0.0169963836669922,0.00286996364593506,-0.0837657451629639,-0.0236454010009766,0.00665634870529175,-0.0328068733215332,-0.00633811950683594,0.00152464745588077,0.00308847427368164, -0.000359535217285156,-0.00540309213465662,0.0166411399841309,-0.00294113159179688,0.00222310423851013,0.00410175323486328,0.00111198425292969,-0.364614248275757,0.574792861938477,-0.636462211608887,-0.460901975631714,0.509015560150146,-0.835040092468262,-0.134209394454956,0.455369472503662,-0.687342643737793,-0.303750991821289,0.61398458480835,-0.666497230529785,-0.111141681671143,0.322372436523438,-0.691246032714844,-0.0606871247291565,0.228277683258057,-0.706578254699707,-0.0233358144760132,0.139857769012451,-0.70640754699707,-0.454293727874756,0.151336193084717,-0.893330574035645,-0.469332218170166,0.096127986907959,-0.935287475585938,-0.60266375541687,-0.1347975730896,-1.00005435943604,-0.541651487350464,-0.180011749267578,-1.00350332260132,-0.221770524978638,-0.246203422546387,-1.03447151184082,-0.273691177368164,-0.117496967315674,-0.828937530517578,-0.151746034622192,0.0676932334899902,-0.799908638000488,-0.0408051013946533,0.156614303588867,-0.916275024414063,0.0338757634162903,0.0912995338439941,-0.657970428466797,-0.0173113942146301,0.102922916412354,-0.44096565246582,-0.0137591958045959,0.0411825180053711,-0.00121307373046875,0.00313858084700769,-0.0388274192810059,-0.0482187271118164,-0.00185549259185791,-0.0809445381164551,-0.0719242095947266,-0.0237482786178589,-0.11609935760498,-0.106504440307617,-0.0537906885147095,-0.133247852325439,-0.121820449829102,-0.0849215984344482,-0.127762794494629,-0.063507080078125,0.0369307994842529,-0.147495269775391,0.00800609588623047,0.0852265357971191,-0.176612377166748,0.108213424682617,0.152629613876343,-0.186233043670654,0.0965089797973633,0.288655996322632,-0.197507858276367,0.12209415435791,0.175418615341187,-0.286369323730469,0.0368862152099609,0.282756328582764,-0.4581618309021,-0.0734109878540039,0.319235801696777,-0.49191951751709,-0.17020320892334,0.283263921737671,-0.570595741271973,-0.227787017822266,0.071314811706543,-0.733841419219971,-0.428863525390625,0.0415422916412354,-0.701671600341797,-0.195104598999023,-0.0210297107696533,-0.349779605865479,-0.0189714431762695, --0.024027943611145,-0.115889549255371,-0.251388549804688,-0.0451579093933105,-0.062556266784668,-0.322501182556152,-0.0276468992233276,-0.038177490234375,-0.307347297668457,-0.0116086304187775,-0.0625114440917969,-0.0640792846679688,-0.00759205266513163,-0.0514554977416992,-0.0401153564453125,0.0181202143648989,0.0201129913330078,0.00498676300048828,0.0265198349952698,0.0104126930236816,0.0176668167114258,0.0291091203689575,0.0115132331848145,0.0398693084716797,0.02745121717453,0.148880958557129,0.114439964294434,0.0223041772842407,0.362350463867188,0.215750694274902,0.053388237953186,0.297615528106689,0.277132034301758,0.043757438659668,0.19870138168335,0.260843276977539,0.13357949256897,0.245926380157471,0.358005523681641,0.218406915664673,0.258342742919922,0.258685111999512,0.0358691215515137,0.12598991394043,0.0509824752807617,-0.129163503646851,-0.0927414894104004,-0.357649803161621,-0.16554069519043,-0.360909938812256,-0.627902984619141,-0.184453964233398,-0.590910911560059,-0.670075416564941,-0.13180136680603,-0.635167598724365,-0.683856964111328,0.0197570323944092,-0.693347930908203,-0.453692436218262,0.0812162160873413,-0.48192310333252,-0.285200119018555,0.0439728498458862,-0.387962818145752,-0.484800338745117,0.00147342681884766,-0.303205966949463,-0.514575004577637,0.00217908620834351,-0.309125423431396,-0.382747650146484,0.00380074977874756,0.0295343399047852,0.0206241607666016,0.00239429112843936,0.00665950775146484,0.0103416442871094,0,5.96046447753906e-06,0,0,-2.86102294921875e-06,-0.587490081787109,-0.122285604476929,0.0852017402648926,-0.739159107208252,0,-1.43051147460938e-06,-0.587490081787109,0,1.66893005371094e-06,-0.587490081787109,0,-4.52995300292969e-06,-0.587491035461426,0,-4.52995300292969e-06,-0.587491035461426,0,3.09944152832031e-06,-0.587490081787109,0.000552654266357422,0.000251293182373047,-0.720715045928955,0.0052790641784668,0.00950860977172852,-0.728108882904053,0.00435256958007813,0.0169181823730469,-0.721095561981201,0.00591182708740234,0.0156598091125488,-0.506240844726563,-0.0168051719665527, --0.0160017013549805,-0.466192245483398,-0.018043041229248,0.00841331481933594,-0.462890625,-0.0102481842041016,0.0684337615966797,-0.450016021728516,0.00214982032775879,0.112611770629883,-0.469596862792969,0.00584173202514648,0.0999736785888672,-0.507693290710449,0.00563454627990723,0.0404777526855469,-0.555027008056641,0.00441253185272217,0.00831890106201172,0.011723518371582,0.000101773992355447,0.000173568725585938,0.000220298767089844,1.53641994185809e-29,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,1.69348870708276e-29,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.33786010742188e-06,-0.179092884063721,0,-6.19888305664063e-06,-0.217879772186279,0,-6.19888305664063e-06,-0.30161190032959,0,-0.233698844909668,-0.285504817962646,0,-0.10120964050293,-0.187989234924316,0,-0.0786333084106445,-0.219666957855225,4.83989715576172e-05,2.288818359375e-05,9.72747802734375e-05,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-0.000312685966491699,0,0,-6.09457492828369e-06,0,0,-0.000525712966918945,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.000132560729980469,0,0,5.96046447753906e-06,0,0.0019029974937439,-0.020164966583252,-0.0272045135498047,-0.00496849417686462,-0.0261220932006836,-0.0284862518310547,-3.37362289428711e-05,-0.00011444091796875,-0.000101089477539063,-3.36170196533203e-05,-0.000111579895019531,-0.000100135803222656,-0.000894069671630859,-0.00310373306274414,-0.00270843505859375,-0.000108718872070313, --0.00150012969970703,-0.00252532958984375,-0.0031125545501709,-0.0122575759887695,-0.01226806640625,-2.46763229370117e-05,-0.00623846054077148,-0.0115423202514648,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,1.43051147460938e-06,0,0,-9.41753387451172e-06,-4.43458557128906e-05,-4.38690185546875e-05,-9.5367431640625e-06,-5.05447387695313e-05,-4.29153442382813e-05,-0.000504970550537109,-0.00247335433959961,-0.00232505798339844,-0.000504970550537109,-0.00246906280517578,-0.00232505798339844,-0.00233542919158936,-0.0114550590515137,-0.0107622146606445,-0.00233489274978638,-0.0114479064941406,-0.0107612609863281,-0.002237468957901,-0.0267033576965332,-0.00794029235839844,-0.00468456745147705,-0.030519962310791,-0.0243406295776367,-0.00100505352020264,-0.0229973793029785,-0.0276737213134766,-0.00162047147750854,-0.00923776626586914,-0.0119161605834961,-0.000613689422607422,-0.00253152847290039,-0.00264263153076172,-3.33786010742188e-05,-0.0001220703125,-0.000100135803222656,1.19209289550781e-07,7.62939453125e-06,0,-1.19209289550781e-06,0,0,-9.65595245361328e-06,-4.57763671875e-05,-4.38690185546875e-05,-0.000505447387695313,-0.00246000289916992,-0.00232505798339844,-0.00233519077301025,-0.0114531517028809,-0.0107622146606445,-0.00500544905662537,-0.0303573608398438,-0.0252475738525391,0.00120171904563904,-0.0213470458984375,-0.0272560119628906,-0.00057673454284668,-0.00720739364624023,-0.0116710662841797,-0.000307321548461914,-0.00191354751586914,-0.00257110595703125,-3.37362289428711e-05,-0.000111579895019531,-0.000101089477539063,9.5367431640625e-07,7.62939453125e-06,0,0,-7.62939453125e-06,0,-9.77516174316406e-06,-4.91142272949219e-05,-4.38690185546875e-05,-0.000504970550537109,-0.00246572494506836,-0.00232601165771484,-0.00233566761016846,-0.0114531517028809,-0.0107622146606445,-0.00464046001434326,-0.0306401252746582,-0.024205207824707,-0.00226542353630066,-0.00928974151611328,-0.00965595245361328,-0.00139486789703369,-0.00482511520385742,-0.00417423248291016,-0.000304818153381348,-0.00104856491088867, --0.000904083251953125,-1.13248825073242e-05,-5.05447387695313e-05,-3.4332275390625e-05,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0.0014166533946991,-0.0144171714782715,0.00410842895507813,-0.000715672969818115,-0.00373315811157227,-0.00340747833251953,-0.000168323516845703,-0.000828742980957031,-0.000774383544921875,-3.09944152832031e-06,-1.38282775878906e-05,-1.43051147460938e-05,-0.0025259256362915,-0.0155544281005859,-0.0188150405883789,-0.00203967094421387,-0.00810098648071289,-0.00817108154296875,-0.000609278678894043,-0.00209665298461914,-0.00180912017822266,-2.27689743041992e-05,-6.72340393066406e-05,-6.67572021484375e-05,0,6.19888305664063e-06,0,-6.19888305664063e-06,-3.19480895996094e-05,-2.86102294921875e-05,-0.000336527824401855,-0.00164508819580078,-0.00155067443847656,-0.00155705213546753,-0.00762796401977539,-0.00717449188232422,-0.00397387146949768,-0.0194106101989746,-0.0184392929077148,-0.00198480486869812,-0.00680875778198242,-0.00171661376953125,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0171114504337311,0.0231513977050781,0.0523567199707031,0.000499308109283447,0.000660896301269531,0.00143623352050781,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,2.14576721191406e-06,-9.5367431640625e-07,0,-4.52995300292969e-06,0,0,3.814697265625e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,4.76837158203125e-07,0,-1.49011611938477e-06,-4.76837158203125e-07,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06, -0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,-1.43051147460938e-06,1.52587890625e-05,-1.9073486328125e-06,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0.000788748264312744,0.00127792358398438,0.00260543823242188,0.0143816471099854,0.0203933715820313,0.0560894012451172,-1.42753124237061e-05,-3.36170196533203e-05,-1.23977661132813e-05,-0.00100600719451904,-0.00304913520812988,-0.0008697509765625,-0.000263869762420654,-0.000623703002929688,-0.000227928161621094,-9.68575477600098e-06,-1.83582305908203e-05,-8.58306884765625e-06,0,-4.52995300292969e-06,0,-0.000370591878890991,-0.00505781173706055,-0.0003204345703125,0,-4.52995300292969e-06,0,0,-0.00261306762695313,0,0,5.96046447753906e-06,0,0,-0.0111865997314453,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,-6.95884227752686e-05,-0.000169038772583008,-6.00814819335938e-05,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,-2.50339508056641e-05,-6.53266906738281e-05,-2.19345092773438e-05,-6.37173652648926e-05,-0.000156879425048828,-5.53131103515625e-05,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-05,0,-1.15633010864258e-05,-0.000298976898193359,-9.5367431640625e-06,-0.000264942646026611,-0.000632286071777344,-0.0002288818359375,-0.00217738747596741,-0.00834751129150391, --0.00188255310058594,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,4.73260879516602e-05,-3.71932983398438e-05,0.00158500671386719,0.00225603580474854,-0.000981330871582031,0.0431232452392578,-0.000925719738006592,-0.00188541412353516,0.00178337097167969,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06, -0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,-0.000116467475891113,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,-0.000146627426147461,0,1.19209289550781e-06,1.70469284057617e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,-0.000307537615299225,0,0,-0.000783011317253113,0,0,-0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.54972076416016e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,-9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,8.392333984375e-05,5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.60932540893555e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,-0.000150382518768311,0.000370025634765625,0,-0.000223994255065918,0,0,-8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-8.63075256347656e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06, -0,0,-6.07967376708984e-06,0,-6.67572021484375e-06,2.32458114624023e-05,-7.62939453125e-06,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,-4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,-4.76837158203125e-07,0,-6.07967376708984e-06,-4.76837158203125e-07,-4.76837158203125e-07,-5.84125518798828e-06,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-4.52995300292969e-06,0,0,1.43051147460938e-06,-9.5367431640625e-07,4.29153442382813e-06,2.12192535400391e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,0.000193953514099121,0,0,-2.86102294921875e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,-3.814697265625e-06,4.01139259338379e-05,-4.76837158203125e-06,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-7.51018524169922e-06,6.98566436767578e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030982494354248,2.57492065429688e-05,0.000108718872070313,0.000691413879394531,9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0, -3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, -0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06, -0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0.000475853681564331,0.000964164733886719,0.000112533569335938,0,-4.76837158203125e-06,0,1.94907188415527e-05,4.72068786621094e-05,4.76837158203125e-06,-2.74181365966797e-06,1.38282775878906e-05,-3.814697265625e-06,-0.000884085893630981,0.00387859344482422,-0.000905036926269531,0.00157240033149719,-0.0177373886108398,-0.0275440216064453,0.000131309032440186,-0.0058445930480957,-0.011505126953125,-4.74452972412109e-05,-0.00138568878173828,-0.00250911712646484,-3.39746475219727e-05,-0.00011444091796875,-0.000100135803222656,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,-9.5367431640625e-06,-4.29153442382813e-05,-4.38690185546875e-05,-0.000504970550537109,-0.002471923828125,-0.00232505798339844,-0.00232726335525513,-0.0114583969116211,-0.0107507705688477,-0.00477758049964905,-0.0298943519592285,-0.0243797302246094,0.00989782810211182,0.0152416229248047,0.00197601318359375,0.00372958183288574,0.00754547119140625,0.000879287719726563,0.000690937042236328,0.00139284133911133,0.000163078308105469,1.43051147460938e-06,0,0,-3.57627868652344e-07,-7.62939453125e-06,0,1.5556812286377e-05,-2.24113464355469e-05,8.58306884765625e-06,0.000870585441589355,0.000861167907714844,0.00276279449462891, -0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-2.38418579101563e-07,-2.93850898742676e-05,0,2.38418579101563e-07,-0.000370502471923828,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-0.000886619091033936,9.5367431640625e-07,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,0.000717267394065857,0,0,0.000729367136955261,0,0,-8.20755958557129e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,-2.38418579101563e-07,3.7074089050293e-05,0,2.38418579101563e-07,0.000358283519744873,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,0.000874459743499756,-9.5367431640625e-07,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,-0.000714197754859924,0,0,-0.000735461711883545,0,0,7.29560852050781e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.814697265625e-06,0.000299036502838135,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000409305095672607,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,-0.00023651123046875,0,-4.76837158203125e-07,7.68899917602539e-06,0,-4.64916229248047e-05,0.00096428394317627, -0,0,1.53481960296631e-06,0,-6.19888305664063e-05,-1.93268060684204e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.75224447250366e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-6.04987144470215e-06,0,0,4.85777854919434e-06,0,0,1.60932540893555e-06,0,0,6.13927841186523e-06,0,0,7.68899917602539e-06,0,-3.814697265625e-06,-0.000306606292724609,0,7.15255737304688e-07,-0.000405728816986084,0,5.00679016113281e-06,-0.000407755374908447,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,0.000233650207519531,0,-4.76837158203125e-07,7.56978988647461e-06,0,0,4.58955764770508e-06,0,-4.64916229248047e-05,-0.000970363616943359,0,0,1.53481960296631e-06,0,-6.19888305664063e-05,1.16974115371704e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,1.53332948684692e-05,0,1.43051147460938e-06,-4.49642539024353e-05,9.5367431640625e-07,0,7.5995922088623e-06,0,0,-7.89761543273926e-06,0,0,-4.64916229248047e-06,0,0,6.13927841186523e-06,0,0,7.56978988647461e-06,0,0,-1.84774398803711e-06,0 - } - Normals: *21246 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, -0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, --0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, --1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, -0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, -0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, --0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, -3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, --0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, --0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, --0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, --0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, -0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, --0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, --0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, -0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, -0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, -0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, -0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, --0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, -0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, -0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, -0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, -0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, -0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, -0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, --1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, -1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, -0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, --1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, --0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, --0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, --0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, --0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, -0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, --1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, --0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, --0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, -0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, -1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, -0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, -0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, --0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, -0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, -1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, -0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, -1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, --1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, -1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, -0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, --0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, -0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, -0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, -0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, -0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, -0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.36057752370834,0.0150644034147263,0.473320543766022,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049, -1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384, -1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423, --0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204, -0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011, -0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994, -0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311, -0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383, --0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517, --0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139, -1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198, -1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082, -0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835, -0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964, --0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651, -0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508, --0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456, -0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079, -1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721, -1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455, -1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495, -1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719, -1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466, -1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771, -1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202, --1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848, --0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612, --0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242, -0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181, --0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855, --0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711, --1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518, -0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979, --0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534, --0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875, --0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252, --1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172, --0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547, --1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015, -0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835, --0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528, --0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414, --0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398, -0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798, -0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311, --0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775, --1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194, --0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996, --0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797, -0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146, --0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401, --0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144, --0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578, --0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146, --0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273, --1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938, --0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377, -0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444, --0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755, -0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208, --1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682, --1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201, --0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424, --0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353, --0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819, --1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789, --0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984, --0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211, --0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374, --0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726, --0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611, --0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045, --0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669, --0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468, --0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811, -0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817, --1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923, --1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899, --1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841, --0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172, -0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915, -0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966, --0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318, -0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223, -0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276, --0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637, --1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695, --0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132, -0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158, -0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065, --1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793, -0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307, -1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334, -1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437, --0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404, -0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.00140410661697388,0.47925940901041, --1.30150604248047,0.317191332578659,0.422314759343863,-1.34763860702515,0.221148788928986,0.310832679271698,-1.26058748364449,0.437944859266281,0.259957488626242,-1.2592768073082,0.580531150102615,0.0278149172663689,-1.05323074758053,0.676499664783478,0.394543980248272,-1.38882184028625,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089, -0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438, --0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256, --1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753, --0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538, --0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784, --1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,0.283098638057709,-1.00639636814594,-1.30733358860016,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974, --1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294, -0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305, --0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874, --0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265, -0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455, -0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724, -0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757, --0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648, --0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707, -0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407, -0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-0.457435488700867,-0.52697029709816,0.442069187760353,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306, -0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454, --0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-0.862624652683735,-0.616199009120464, --0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093, --0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101, --0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172, -0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537, --1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258, -0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124, --1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961, --1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914, --1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266, --0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023, --1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976, -0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562, -0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105, --0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.513018878176808,0.462569477036595,0.0529692769050598,0.663957834243774,-0.292329281568527, -0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.714810416102409,0.279693081974983,-0.203442215919495,0.992890149354935,-0.246238062158227,-0.146641075611115,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682, -0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534, -0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762, -0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805454332864, "Geometry::Cheek_Puff_Left", "Shape" { - Version: 100 - Indexes: *2503 { - a: 5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6134,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6150,6151,6152,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327, -6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6513,6514,6515,6516,6544,6545,6546,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855, -6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265, -7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7532,7533,7534,7535,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715, -7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7895,7896,7897,7898,7899,7900,7901,7902,7927,7928,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240, -8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650, -8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 - } - Vertices: *7509 { - a: -0.00163092371076345,-0.0015721321105957,0.000338554382324219,-0.000443189026555046,-0.000391006469726563,9.1552734375e-05,-0.111760452367889,-0.00277996063232422,0.421629905700684,-0.161375373594637,-0.0233550071716309,0.415858268737793,-0.131131693648058,0.0207018852233887,0.402071952819824,-0.106857568003761,-0.00281429290771484,0.42170524597168,-0.142538055755722,-0.0129146575927734,0.418899536132813,-0.137582048788317,0.0151009559631348,0.412527084350586,-0.124444447443238,-0.00602912902832031,0.421350479125977,-0.122971408047306,0.00464057922363281,0.418312072753906,-0.133612081408501,-0.0245723724365234,0.314766883850098,-0.0596447028456168,0.0142645835876465,0.247822761535645,-0.140041917566123,-0.0274224281311035,0.352447509765625,-0.0970137418335071,0.0197787284851074,0.329452514648438,-0.0713537782430649,-0.0348601341247559,0.153958320617676,-0.0210610181093216,0.00221157073974609,0.14530086517334,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0113422805443406,7.91549682617188e-05,0.0692024230957031,-0.0292403679341078,-0.033461332321167,0.0250930786132813,-0.040963888168335,-0.0378713607788086,0.0333375930786133,-0.0468014441430569,-0.0325336456298828,0.0384235382080078,-0.0609319321811199,-0.0332555770874023,0.0981807708740234,-0.0158042963594198,-0.0183501243591309,0.0113506317138672,-0.00586307095363736,-0.00612926483154297,0.00204181671142578,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-3.79388393412228e-06,4.57763671875e-05,0,-0.000141997603350319,-9.1552734375e-05,2.95639038085938e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06, -0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,-0.000934302806854248,-0.000879287719726563,0.000193595886230469,-0.000162243843078613,-0.000111818313598633,3.33786010742188e-05,-0.0899026989936829,-0.00349187850952148,0.346687316894531,-0.14049831032753,-0.0209107398986816,0.35748291015625,0.121631145477295,4.57763671875e-05,0.00466823577880859,0.118788957595825,4.57763671875e-05,-0.0112161636352539,0.0770378112792969,4.57763671875e-05,0.0256862640380859,0.0812840461730957,4.57763671875e-05,0.0447206497192383,-0.0111258029937744,4.9591064453125e-05,0.100346565246582,0.00525665283203125,4.9591064453125e-05,0.118742942810059,-0.0543028116226196,5.86509704589844e-05,0.152242660522461,-0.0381326675415039,6.00814819335938e-05,0.172468185424805,-0.0875810384750366,-0.00198078155517578,0.206466674804688,-0.0597066879272461,-0.000670433044433594,0.222519874572754,-0.11832720041275,-0.0106453895568848,0.280047416687012,-0.0721175074577332,-0.00249147415161133,0.282980918884277,0.0436098575592041,4.91142272949219e-05,0.0803594589233398,0.0305626392364502,4.9591064453125e-05,0.0598583221435547,0.124475002288818,4.57763671875e-05,-0.0178194046020508,0.123031616210938,4.57763671875e-05,-0.000267982482910156,0.129391670227051, -4.57763671875e-05,-0.0221796035766602,0.124817609786987,4.57763671875e-05,-0.00444126129150391,0.131565093994141,4.57763671875e-05,-0.014369010925293,0.124322175979614,4.57763671875e-05,-0.000194549560546875,0.1299729347229,4.57763671875e-05,-0.00170612335205078,0.122555494308472,4.57763671875e-05,0.00566291809082031,0.0887582302093506,4.57763671875e-05,0.0467863082885742,0.112319469451904,4.57763671875e-05,0.0274744033813477,0.0504522323608398,4.9591064453125e-05,0.0806388854980469,0.0750906467437744,4.57763671875e-05,0.0616674423217773,0.0249204635620117,4.9591064453125e-05,0.100232124328613,0.0120793581008911,4.9591064453125e-05,0.119688987731934,-0.0256892442703247,4.9591064453125e-05,0.144893646240234,-0.0324974060058594,4.9591064453125e-05,0.173041343688965,-0.063605785369873,0.00046539306640625,0.196734428405762,-0.0531834363937378,-0.000680923461914063,0.223200798034668,-0.0863432288169861,0.00305414199829102,0.254944801330566,-0.0649380087852478,-0.00262594223022461,0.282669067382813,-0.106033265590668,0.0101280212402344,0.327436447143555,-0.0809994041919708,-0.00349760055541992,0.348152160644531,-0.123056322336197,-0.0113115310668945,0.346755027770996,-0.103726744651794,-0.00615978240966797,0.277449607849121,-0.0814437866210938,-0.00138664245605469,0.211535453796387,-0.0513715744018555,6.00814819335938e-05,0.159921646118164,-0.00556302070617676,4.9591064453125e-05,0.107809066772461,0.0346803665161133,4.9591064453125e-05,0.0682640075683594,0.0772371292114258,4.57763671875e-05,0.0340194702148438,0.119433641433716,4.57763671875e-05,-0.00314712524414063,0.122930526733398,4.57763671875e-05,-0.00858688354492188,0.12684440612793,4.57763671875e-05,-0.0126476287841797,0.127958536148071,4.57763671875e-05,-0.00665569305419922,0.126145362854004,4.57763671875e-05,0.00235557556152344,0.0969138145446777,4.57763671875e-05,0.0371112823486328,0.058957576751709,4.9591064453125e-05,0.0681209564208984,0.0122793912887573,4.9591064453125e-05,0.107086181640625,-0.038832426071167,4.9591064453125e-05,0.157730102539063,-0.0696665048599243, -0.000472545623779297,0.209334373474121,-0.0867364406585693,0.00162649154663086,0.26375675201416,-0.106139421463013,0.00605583190917969,0.332069396972656,-0.103304505348206,-0.00604963302612305,0.346283912658691,-0.085151195526123,-0.00377273559570313,0.280163764953613,-0.0690734386444092,-0.000956058502197266,0.21795654296875,-0.0432484149932861,6.00814819335938e-05,0.167815208435059,0.00106751918792725,4.9591064453125e-05,0.114607810974121,0.0399432182312012,4.91142272949219e-05,0.0756397247314453,0.0796370506286621,4.57763671875e-05,0.0407590866088867,0.120520114898682,4.57763671875e-05,0.00174045562744141,0.122784614562988,4.57763671875e-05,-0.00324440002441406,0.125581979751587,4.57763671875e-05,-0.00730800628662109,0.125608921051025,4.57763671875e-05,-0.00245857238769531,0.123833894729614,4.57763671875e-05,0.00451278686523438,0.0880985260009766,4.57763671875e-05,0.0432329177856445,0.0495169162750244,4.9591064453125e-05,0.0754566192626953,0.00827956199645996,4.9591064453125e-05,0.11475944519043,-0.0386298894882202,4.9591064453125e-05,0.167208671569824,-0.0633599758148193,-6.62803649902344e-05,0.217529296875,-0.07704097032547,-0.000621318817138672,0.275382041931152,-0.0948716402053833,0.000863075256347656,0.342033386230469,-0.0855074822902679,-0.0292229652404785,0.229031562805176,-0.0570191144943237,-0.0191826820373535,0.162273406982422,-0.0287865400314331,-0.00409078598022461,0.115525245666504,-0.00710487365722656,-8.0108642578125e-05,0.086207389831543,0.0139720439910889,4.9591064453125e-05,0.0527133941650391,0.0282785892486572,4.9591064453125e-05,0.0294885635375977,0.0495901107788086,4.57763671875e-05,0.003265380859375,0.0770242214202881,4.57763671875e-05,-0.0308389663696289,0.0875155925750732,4.57763671875e-05,-0.0449533462524414,0.0913500785827637,4.57763671875e-05,-0.0456762313842773,0.0938806533813477,4.57763671875e-05,-0.0396337509155273,0.0962648391723633,4.57763671875e-05,-0.0255403518676758,0.0919787883758545,4.57763671875e-05,-0.00289630889892578,0.0721676349639893,4.57763671875e-05,0.020721435546875, --0.0413184463977814,0.00617790222167969,0.196380615234375,-0.0271099209785461,0.00163507461547852,0.15288257598877,-0.0136791467666626,0.000175952911376953,0.118377685546875,0.00927853584289551,4.9591064453125e-05,0.0846500396728516,0.0386874675750732,4.9591064453125e-05,0.0512475967407227,-0.114856392145157,-0.0240645408630371,0.295466423034668,-0.0927788615226746,-0.0126490592956543,0.222781181335449,-0.0659645795822144,-0.0023808479309082,0.161237716674805,-0.039610743522644,4.9591064453125e-05,0.117231369018555,-0.0061185359954834,4.9591064453125e-05,0.0769128799438477,0.025841236114502,4.9591064453125e-05,0.0449686050415039,0.0597963333129883,4.57763671875e-05,0.0174455642700195,0.0934689044952393,4.57763671875e-05,-0.014683723449707,0.100438356399536,4.57763671875e-05,-0.0234460830688477,0.106301069259644,4.57763671875e-05,-0.0291614532470703,0.110231399536133,4.57763671875e-05,-0.024754524230957,0.110573768615723,4.57763671875e-05,-0.0111017227172852,0.102506875991821,4.57763671875e-05,0.0110616683959961,0.0752310752868652,4.57763671875e-05,0.0422754287719727,0.0335657596588135,4.91142272949219e-05,0.0764007568359375,-0.00526654720306396,4.9591064453125e-05,0.113943099975586,-0.0367050170898438,0.000369548797607422,0.156717300415039,-0.0578942894935608,0.00276374816894531,0.205227851867676,-0.0757105946540833,0.00967979431152344,0.265080451965332,-0.0548308491706848,-0.0339045524597168,0.113742828369141,-0.0374653935432434,-0.0197005271911621,0.0963468551635742,-0.0135055780410767,-0.00595712661743164,0.0749654769897461,0.00350439548492432,-0.000132560729980469,0.052617073059082,0.0148172378540039,4.9591064453125e-05,0.0327854156494141,0.0232219696044922,4.57763671875e-05,0.0175638198852539,0.041820764541626,4.57763671875e-05,-0.0038604736328125,0.0572435855865479,4.57763671875e-05,-0.0277767181396484,0.0712871551513672,4.57763671875e-05,-0.0124416351318359,0.0760440826416016,4.57763671875e-05,-0.0312719345092773,0.0802950859069824,4.57763671875e-05,-0.0452289581298828,0.0808768272399902,4.57763671875e-05,-0.0502309799194336, -0.0691497325897217,4.57763671875e-05,-0.0418672561645508,-0.0157101154327393,0.000753402709960938,0.119224548339844,-0.00628578662872314,7.15255737304688e-05,0.0946502685546875,0.0018002986907959,4.9591064453125e-05,0.0759048461914063,0.0141143798828125,4.9591064453125e-05,0.0542755126953125,0.0338106155395508,4.57763671875e-05,0.0305604934692383,0.0565090179443359,4.57763671875e-05,0.00664043426513672,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,0.00421679019927979,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05, -1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-6.91413879394531e-06,4.26769256591797e-05,0,-0.000178694725036621,-0.000128030776977539,3.814697265625e-05,-0.000106394290924072,-5.62667846679688e-05,2.19345092773438e-05,-0.000885248184204102,-0.000830650329589844,0.000185012817382813,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.012364387512207,4.57763671875e-05,0.0064239501953125,0.0200600624084473,4.57763671875e-05,-0.00381088256835938,0.0256261825561523,4.57763671875e-05,-0.0144882202148438,0.0378260612487793,4.57763671875e-05,-0.0245857238769531,0.0386185646057129,4.57763671875e-05,-0.024134635925293,0.046332836151123,4.57763671875e-05,-0.0263347625732422,0.0454823970794678,4.57763671875e-05,-0.0201778411865234,0.0395617485046387,4.57763671875e-05,-0.00847148895263672,0.0305740833282471,4.57763671875e-05,0.00187873840332031,0.0187242031097412,4.57763671875e-05,0.0132761001586914,0.00800907611846924,4.9591064453125e-05,0.0254793167114258,0.000470280647277832,4.9591064453125e-05,0.0361595153808594,-0.00523191690444946,4.9591064453125e-05,0.0464000701904297,-0.00944387912750244,4.9591064453125e-05,0.0573959350585938,-0.0253473818302155,-0.0268192291259766,0.00975322723388672,-0.0364633798599243,-0.0325846672058105,0.0351190567016602,-0.0365979969501495,-0.0283854007720947,0.0491018295288086,-0.0237701237201691,-0.024594783782959,0.00744724273681641,-0.0243672430515289,-0.0262298583984375,0.0104866027832031,-0.0306651294231415,-0.034416675567627,0.0201835632324219,-0.0209643244743347,-0.0227327346801758,0.00934314727783203,-0.024369478225708,-0.0284430980682373,0.0177984237670898,-0.0144584774971008,-0.0153779983520508,0.00549983978271484,-0.0144740045070648,-0.0166592597961426,0.00910186767578125,-0.0111609697341919,-0.0114388465881348,0.00324058532714844,-0.00731664896011353, --0.00753402709960938,0.00224685668945313,-0.00642353296279907,-0.00633740425109863,0.00133323669433594,-0.0037921667098999,-0.00372099876403809,0.000787734985351563,-0.0040585994720459,-0.00398588180541992,0.000843048095703125,-0.00163662433624268,-0.00157785415649414,0.000340461730957031,-0.00184917449951172,-0.00178909301757813,0.000384330749511719,-0.000434279441833496,-0.000382184982299805,9.05990600585938e-05,-0.00183796882629395,-0.00177788734436035,0.000382423400878906,-0.000229358673095703,-0.00017857551574707,4.86373901367188e-05,-0.00770890712738037,-0.00761532783508301,0.00159931182861328,-0.00657820701599121,-0.00466465950012207,0.0285434722900391,-0.0233488082885742,-0.0164003372192383,0.0429563522338867,-0.0175461769104004,-0.0175278186798096,0.00395011901855469,-0.004020094871521,-0.00394773483276367,0.000834465026855469,-0.00200378894805908,-0.00194287300109863,0.000416755676269531,-0.0264965891838074,-0.0284459590911865,0.0115108489990234,-0.0255756378173828,-0.0281357765197754,0.0129375457763672,-0.0217279195785522,-0.024205207824707,0.0116729736328125,-0.0136995911598206,-0.0149056911468506,0.00606250762939453,-0.00936782360076904,-0.00965285301208496,0.00286006927490234,-0.00528275966644287,-0.0052030086517334,0.00109672546386719,-0.00315093994140625,-0.00308346748352051,0.000654220581054688,-0.00137901306152344,-0.00132155418395996,0.000287055969238281,-0.00117135047912598,-0.00111508369445801,0.000244140625,-0.00328576564788818,-0.00321745872497559,0.000682830810546875,-0.00733834505081177,-0.00724697113037109,0.00152301788330078,-0.01719069480896,-0.0172219276428223,0.00398826599121094,-0.024316132068634,-0.0254127979278564,0.00828456878662109,-0.0249825716018677,-0.0263214111328125,0.00915050506591797,-0.0167893171310425,-0.0168662071228027,0.00400733947753906,-0.00692206621170044,-0.00683307647705078,0.00143623352050781,-0.00269722938537598,-0.00263237953186035,0.000560760498046875,-0.000690817832946777,-0.000637292861938477,0.000144004821777344,-0.000845909118652344,-0.000791549682617188, -0.000176429748535156,-0.00230169296264648,-0.00223898887634277,0.000478744506835938,-0.00462597608566284,-0.00454998016357422,0.000960350036621094,-0.00835525989532471,-0.0086066722869873,0.00255680084228516,-0.0140905380249023,-0.0155677795410156,0.00688838958740234,-0.0220258235931396,-0.0248768329620361,0.0129404067993164,-0.027087390422821,-0.0301637649536133,0.0151920318603516,-0.0279492437839508,-0.030134916305542,0.0130252838134766,-0.0481632053852081,-0.0340099334716797,0.0757474899291992,-0.00575399398803711,-0.00584125518798828,0.00159549713134766,-0.00280129909515381,-0.00273585319519043,0.000581741333007813,-0.00168120861053467,-0.00162196159362793,0.000349998474121094,-0.00298506021499634,-0.00291848182678223,0.000619888305664063,-0.000514626502990723,-0.000462055206298828,0.000107765197753906,-0.00102889537811279,-0.00097346305847168,0.000214576721191406,-0.000152826309204102,-0.00010228157043457,3.24249267578125e-05,-6.19888305664063e-06,4.33921813964844e-05,0,-0.00148022174835205,-0.00142216682434082,0.000308036804199219,-0.000967621803283691,-0.000912666320800781,0.000201225280761719,-0.000488400459289551,-0.000436067581176758,0.000102043151855469,-0.000143289566040039,-9.29832458496094e-05,3.0517578125e-05,-4.76837158203125e-06,4.48226928710938e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000106334686279297,-5.60283660888672e-05,2.288818359375e-05,0,4.9591064453125e-05,0,0.000744342803955078,-0.000132322311401367,0.024073600769043,0.0045851469039917,4.9591064453125e-05,0.0178050994873047,0.00724434852600098,4.9591064453125e-05,0.0130605697631836,0.00467777252197266,4.57763671875e-05,0.00712299346923828,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000118494033813477,-6.81877136230469e-05,2.57492065429688e-05,-0.00052344799041748,-0.000470876693725586,0.000109672546386719,-0.00105667114257813,-0.00100111961364746,0.000220298767089844,-0.00165319442749023,-0.00159430503845215,0.000344276428222656,0,4.9591064453125e-05, -0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-1.25765800476074e-05,3.71932983398438e-05,2.86102294921875e-06,-2.26497650146484e-06,4.74452972412109e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, -4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06, -0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05, -2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06, -0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0, -4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,-0.0115255117416382,-0.0114102363586426,0.00239086151123047,-0.0087246298789978,-0.00862526893615723,0.00181007385253906,-0.00613337755203247,-0.00604891777038574,0.00127315521240234,-0.00483870506286621,-0.0047614574432373,0.00100421905517578,-0.00419068336486816,-0.00411725044250488,0.0008697509765625,-0.00353085994720459,-0.00346112251281738,0.000733375549316406,-0.0138244032859802,-0.0137186050415039,0.00292110443115234,-0.0168894529342651,-0.0168626308441162,0.00378513336181641,-0.0186611413955688,-0.0187015533447266,0.00433444976806641,-0.0195284485816956,-0.0194871425628662,0.00441932678222656,-0.0178924798965454,-0.0177679061889648,0.00378513336181641,-0.0132693648338318,-0.0131442546844482,0.00275325775146484,-0.0083199143409729,-0.00822281837463379,0.00172615051269531,-0.00550222396850586,-0.00542140007019043,0.00114250183105469,-0.00373363494873047,-0.0036628246307373,0.000775337219238281,-0.0122660398483276,-0.0121464729309082,0.00254440307617188,-0.00933539867401123,-0.00923252105712891,0.00193691253662109,-0.00691050291061401,-0.00682163238525391,0.001434326171875,-0.0051196813583374,-0.00504088401794434,0.00106239318847656,-0.0147477388381958,-0.0146265029907227,0.00308895111083984,-0.0231020543815248,-0.025029182434082,0.0179281234741211,-0.0115948431230208,0.00667524337768555,0.0213642120361328,-0.0174013078212738,-0.0195126533508301,0.0108499526977539,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000140070915222168,-8.96453857421875e-05,2.95639038085938e-05,-0.00319629907608032, --0.00321626663208008,0.000870704650878906,-0.00994426012039185,-0.0109128952026367,0.00479984283447266,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,-0.000127255916595459,0.000134944915771484,0.000262260437011719,-0.00147277116775513,0.00103616714477539,0.00302886962890625,-0.00515854358673096,0.00320053100585938,0.00994682312011719,-0.0767005607267492,0.00159263610839844,0.417016983032227,-0.0559877455234528,-0.000159740447998047,0.344879150390625,-0.038210391998291,-0.000724315643310547,0.283628463745117,-0.0256938934326172,-0.000164985656738281,0.226056098937988,-0.00368118286132813,6.00814819335938e-05,0.17790412902832,0.040841817855835,4.91142272949219e-05,0.122526168823242,0.0805473327636719,4.57763671875e-05,0.0771522521972656,0.119408130645752,4.57763671875e-05,0.0369710922241211,0.147720098495483,4.57763671875e-05,-0.00371265411376953,0.156679153442383,4.57763671875e-05,-0.019129753112793,0.158758878707886,4.57763671875e-05,-0.0274467468261719,0.158167362213135,4.57763671875e-05,-0.0217342376708984,0.155740976333618,4.57763671875e-05,-0.00566482543945313,0.120764255523682,4.57763671875e-05,0.0392923355102539,0.0809054374694824,4.57763671875e-05,0.0833396911621094,0.0413978099822998,4.91142272949219e-05,0.125871658325195,-0.00417327880859375,4.9591064453125e-05,0.178096771240234,-0.031165599822998,-0.000363826751708984,0.226388931274414,-0.0472381711006165,-0.0017085075378418,0.283908843994141,-0.063207745552063,-0.0021815299987793,0.347779273986816,-0.0885624363800162,-0.00164079666137695,0.419951438903809,-0.0145060876166099,-0.00393390655517578,0.0331525802612305,-0.00532492995262146,-0.00298786163330078,0.0153007507324219,-0.000999331474304199,-0.00139427185058594,0.00462532043457031,-2.83718109130859e-05,-0.000117778778076172,0.000335693359375,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00013267993927002,0.000110626220703125,0.000315666198730469,-0.00176060199737549,-0.000157833099365234,0.00529670715332031,-0.00786560773849487,0.000425815582275391,0.0186290740966797,-0.0200067348559969,0.0016779899597168,0.042017936706543,-2.25360890908632e-05,2.33650207519531e-05,5.7220458984375e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05, -2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.00540220737457275,-0.00282764434814453,0.00146102905273438,-0.00244230031967163,-0.00114631652832031,0.00118064880371094,-0.0912066549062729,-0.00296926498413086,0.396718978881836,-0.153615117073059,-0.0241103172302246, -0.446992874145508,-0.496079921722412,0.168283939361572,1.50814056396484,-0.472243309020996,0.168550491333008,1.50536251068115,-0.454502582550049,0.0976943969726563,1.28577327728271,-0.52208423614502,0.151006698608398,1.27116107940674,-0.497352480888367,0.0983405113220215,0.97866153717041,-0.57843816280365,0.13075590133667,1.00329113006592,-0.429036021232605,0.104555606842041,0.854087829589844,-0.41688597202301,0.0709090232849121,0.737983703613281,-0.29463529586792,0.0423707962036133,0.668708801269531,-0.2834712266922,0.0251898765563965,0.607094764709473,-0.206919968128204,-0.00793743133544922,0.529261589050293,-0.150299966335297,0.00181865692138672,0.466658592224121,-0.605844259262085,0.153275012969971,1.14843463897705,-0.46296238899231,0.101705551147461,1.10691738128662,-0.384437322616577,0.145184516906738,1.53133106231689,-0.449356555938721,0.153040409088135,1.50346946716309,-0.405590057373047,0.143306255340576,1.56307888031006,-0.397512435913086,0.151094436645508,1.50220489501953,-0.402194261550903,0.131279945373535,1.57107639312744,-0.454372644424438,0.165160655975342,1.51166820526123,-0.440876722335815,0.117146968841553,1.55735206604004,-0.503969669342041,0.183385848999023,1.51574039459229,-0.55935001373291,0.144500255584717,1.35329055786133,-0.605750322341919,0.180456161499023,1.50767612457275,-0.611722230911255,0.144687175750732,1.18411350250244,-0.681203603744507,0.245982646942139,1.36668586730957,-0.636487483978271,0.202836036682129,1.08494091033936,-0.572916030883789,0.129280090332031,0.99631404876709,-0.493260502815247,0.14922571182251,0.79279613494873,-0.466166257858276,0.0726542472839355,0.750367164611816,-0.333110630512238,0.0804347991943359,0.576826095581055,-0.302544236183167,0.0271077156066895,0.590445518493652,-0.159108400344849,0.0478482246398926,0.441702842712402,-0.151560693979263,0.000737667083740234,0.466983795166016,-0.112070068717003,0.0332999229431152,0.429425239562988,-0.0852233320474625,-0.00245141983032227,0.399282455444336,-0.121977299451828,-0.0167574882507324,0.43260669708252,-0.16964727640152, --0.0103778839111328,0.492929458618164,-0.288821399211884,0.0291361808776855,0.638309478759766,-0.40442943572998,0.0750832557678223,0.823626518249512,-0.537361025810242,0.120270729064941,1.01245021820068,-0.508352398872375,0.129139423370361,1.15933132171631,-0.489007949829102,0.13176155090332,1.28878498077393,-0.471152782440186,0.174188613891602,1.50615882873535,-0.41678786277771,0.155145168304443,1.50948047637939,-0.412880659103394,0.146074295043945,1.52925109863281,-0.402519464492798,0.140751838684082,1.54309558868408,-0.473680734634399,0.166221141815186,1.54815196990967,-0.5910964012146,0.166050434112549,1.42112445831299,-0.639099955558777,0.185564041137695,1.27666187286377,-0.590459227561951,0.17370080947876,1.05356884002686,-0.480820655822754,0.133223533630371,0.790040016174316,-0.325577259063721,0.0826091766357422,0.593918800354004,-0.18570739030838,0.0468688011169434,0.492312431335449,-0.120839610695839,0.0274138450622559,0.448963165283203,-0.104991286993027,-0.00789976119995117,0.39765739440918,-0.159883260726929,-0.00303983688354492,0.473395347595215,-0.284864366054535,0.0262775421142578,0.621394157409668,-0.40929114818573,0.0644598007202148,0.778014183044434,-0.550127625465393,0.120011329650879,1.02122974395752,-0.570742964744568,0.15038537979126,1.15109252929688,-0.504306316375732,0.144131660461426,1.27503108978271,-0.494148969650269,0.162392616271973,1.50158500671387,-0.464741706848145,0.157248020172119,1.50764942169189,-0.454112529754639,0.156954765319824,1.51901245117188,-0.462091207504272,0.167641162872314,1.52247619628906,-0.501156091690063,0.185912609100342,1.52161598205566,-0.60172700881958,0.177432060241699,1.36970806121826,-0.632905244827271,0.167493343353271,1.19025039672852,-0.576487421989441,0.147260665893555,0.99442195892334,-0.479573369026184,0.110386848449707,0.772055625915527,-0.322094917297363,0.0570526123046875,0.607304573059082,-0.168365955352783,0.0193915367126465,0.517355918884277,-0.0982814580202103,0.00862884521484375,0.484910011291504,-0.1558977663517,-0.0192852020263672,0.343053817749023, --0.168643951416016,0.0124473571777344,0.395943641662598,-0.176306962966919,-0.0369358062744141,0.57200813293457,-0.173178553581238,0.0250935554504395,0.809830665588379,-0.313502073287964,0.0914535522460938,1.12785148620605,-0.344350576400757,0.111648082733154,1.29959201812744,-0.396620988845825,0.0973591804504395,1.53944206237793,-0.58690071105957,0.105615139007568,1.8801908493042,-0.53264045715332,0.155951023101807,1.95163059234619,-0.485357999801636,0.147543907165527,1.91780281066895,-0.487787246704102,0.106702327728271,1.86956787109375,-0.469266653060913,0.133047103881836,1.85712623596191,-0.38940691947937,0.160372257232666,1.77031517028809,-0.324235200881958,0.209689617156982,1.49044990539551,-0.0557039976119995,0.0241103172302246,0.259607315063477,-0.0623806118965149,0.0345497131347656,0.29591178894043,-0.0852494239807129,0.0546951293945313,0.385111808776855,-0.155084609985352,0.152819156646729,0.646639823913574,-0.233898639678955,0.181911945343018,1.04897880554199,-0.140314489603043,-0.0245518684387207,0.347535133361816,-0.193712830543518,-0.00411224365234375,0.450103759765625,-0.26139771938324,0.0481300354003906,0.583757400512695,-0.389865040779114,0.210843086242676,0.744058609008789,-0.462051630020142,0.21345853805542,0.875240325927734,-0.397588729858398,0.195805549621582,1.02561473846436,-0.405396223068237,0.23095178604126,1.31195449829102,-0.488669395446777,0.295629024505615,1.62527751922607,-0.327401161193848,0.207535743713379,1.63455581665039,-0.368279218673706,0.152582168579102,1.66745090484619,-0.41990852355957,0.118014335632324,1.66846370697021,-0.432518243789673,0.0684223175048828,1.65896034240723,-0.516419649124146,0.0926942825317383,1.64123630523682,-0.469200849533081,0.132978439331055,1.41868114471436,-0.400745153427124,0.168729782104492,1.08222579956055,-0.341106772422791,0.143210887908936,0.735932350158691,-0.221442103385925,0.090059757232666,0.520211219787598,-0.105147302150726,0.0477433204650879,0.354975700378418,-0.0798524916172028,0.032768726348877,0.312179565429688,-0.0937626659870148,-0.0185928344726563, -0.187541961669922,-0.129110395908356,0.0160961151123047,0.262725830078125,-0.206474363803864,0.0335330963134766,0.471966743469238,-0.19465696811676,0.075251579284668,0.71794605255127,-0.353838443756104,0.231824636459351,0.988322257995605,-0.426651000976563,0.244785308837891,1.317702293396,-0.374788045883179,0.082636833190918,1.76680755615234,-0.308649063110352,0.0916910171508789,2.1830587387085,-0.242093563079834,0.110772609710693,1.76633834838867,-0.360467433929443,0.00367116928100586,1.91899108886719,-0.438642978668213,0.00509214401245117,2.20515918731689,-0.446281433105469,0.0912361145019531,2.43235492706299,-0.242685556411743,0.0194158554077148,2.35827350616455,-0.0255694091320038,0.00487232208251953,0.17575740814209,-0.0272464156150818,0.0174226760864258,0.245524406433105,-0.0116976499557495,0.0438013076782227,0.358451843261719,-0.0428295135498047,0.165467262268066,0.576217651367188,0.00255560874938965,0.256905555725098,0.939101219177246,-0.0930507183074951,0.162072658538818,1.39078521728516,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0753593444824219,0.0197952091693878,0.151402473449707,0.0897960662841797,0.0941253304481506,0.189964294433594,0.154628753662109,0.0471512079238892,0.218108177185059,0.291264057159424,0.251311182975769,0.344815731048584,0.0703721046447754,0.0661032199859619,0.118640899658203,0.320487499237061,0.372848391532898,0.527549743652344,0.00183796882629395,0.0234962701797485,0.0316019058227539,-0.0957028865814209,0.1285320520401,0.597674369812012,-0.00062251091003418,6.04391098022461e-05,0.00157642364501953,-0.484714508056641,-0.0989919900894165,0.506077766418457,-8.82148742675781e-06,4.57763671875e-05,2.47955322265625e-05,-0.130656123161316,-0.0790562629699707,0.125581741333008,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0.00701475143432617,0.000515744090080261,0.0882377624511719,0.0128154754638672,7.78157263994217e-05,0.025505542755127,0.370195388793945,0.316527605056763,0.421140670776367,0.141891002655029,0.0628664493560791,0.170815467834473,0.15791654586792,0.230051040649414,0.491595268249512,0.020024299621582,0.0491354465484619,0.0741615295410156,-0.224169969558716,0.0376908779144287,0.553531646728516,-0.00364160537719727,0.00278115272521973,0.00871753692626953,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,-0.00574707984924316,0.00431632995605469,-0.0187778472900391,0,4.57763671875e-05,1.9073486328125e-06,0.0428798198699951,-0.0527811050415039,0.00497913360595703,0.000112533569335938,4.57763671875e-05,0.000226974487304688,0.156652450561523,-0.100918769836426,0.151751041412354,0.0493311882019043,4.57763671875e-05,0.0986642837524414,0.333480358123779,-0.250406265258789,0.44207763671875,0.072298526763916,4.57763671875e-05,0.144598245620728,0.481326580047607,-0.143180847167969,0.658619403839111,0.006134033203125,4.57763671875e-05,0.0122683346271515,0.294757843017578,-0.00768756866455078,0.353692293167114,3.57627868652344e-05,4.57763671875e-05,7.11267348378897e-05,0.122544288635254,0.000120639801025391,0.244267225265503,0.0182666778564453,4.57763671875e-05,0.0365347862243652,0.183066844940186,-0.229484558105469,0.289061069488525,0.0274777412414551,4.57763671875e-05,0.0549572706222534,0.520839214324951,-0.128692150115967,0.556059598922729,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.0144643783569336,4.57763671875e-05,0.0289306640625,0.0772266387939453,4.57763671875e-05,0.154454708099365,0.148436069488525,4.29153442382813e-05,0.296858310699463,0.197999477386475,4.57763671875e-05,0.395999431610107,0.140644550323486,4.57763671875e-05,0.281291484832764,0.086707592010498,4.57763671875e-05,0.173415899276733,0.0428485870361328,4.57763671875e-05,0.085698127746582,-0.195231318473816,0.0418212413787842,0.579584121704102,-0.136224985122681,0.0225005149841309, -0.383407592773438,-0.13637900352478,0.0493006706237793,0.357051849365234,-0.198992490768433,0.0847976207733154,0.583436965942383,-0.084907054901123,0.0434858798980713,0.139411926269531,-0.0862531661987305,0.0308046340942383,0.142521858215332,-0.0438110828399658,0.0148494243621826,0.0301380157470703,-0.0559374094009399,0.0217373371124268,0.0334444046020508,-0.0131728053092957,0.00153064727783203,0.0077972412109375,-0.026193380355835,0.00366091728210449,0.0108489990234375,-0.198741912841797,0.0910375118255615,0.587281227111816,-0.197914242744446,0.0535178184509277,0.580921173095703,-0.510722756385803,0.175629377365112,1.33125495910645,-0.404936075210571,0.0737879276275635,1.71976852416992,0.0559604167938232,0.200148582458496,2.21100330352783,0.217696189880371,0.220017433166504,2.42553520202637,0.191464900970459,-0.109786510467529,2.47250747680664,0.147121906280518,-0.461048126220703,2.11341381072998,-0.110345602035522,-0.330268383026123,1.74042224884033,-0.0374834537506104,-0.168135643005371,1.3767032623291,0.00597047805786133,-3.33786010742188e-05,0.99695873260498,0.0225801467895508,0.112486839294434,0.583847999572754,0.027135968208313,0.0884437561035156,0.296010971069336,0.000458002090454102,0.015385627746582,0.145888328552246,-0.00808769464492798,0.000850677490234375,0.0948286056518555,-0.0111770331859589,0.000245094299316406,0.0815525054931641,-0.0776686072349548,-0.00273299217224121,0.0716075897216797,-0.078475683927536,-0.013181209564209,0.0968351364135742,-0.0981456339359283,0.00161409378051758,0.141754150390625,-0.0944826006889343,0.0139532089233398,0.0917997360229492,-0.0623182654380798,-0.0164997577667236,0.0504617691040039,-0.0523374825716019,-0.0321478843688965,0.0473356246948242,-0.0502186715602875,-0.0243875980377197,0.0337944030761719,-0.0382629185914993,-0.0367143154144287,0.0314540863037109,-0.0429816246032715,-0.0220499038696289,0.0228509902954102,-0.0305759012699127,-0.0275111198425293,0.0228633880615234,-0.0428981781005859,-0.0161592960357666,0.0188455581665039,-0.0313440561294556,-0.0151669979095459, -0.0147438049316406,-0.0544736385345459,-0.0014650821685791,0.020960807800293,-0.0450935959815979,-0.000265121459960938,0.0172281265258789,-0.0684434175491333,0.0115320682525635,0.038731575012207,-0.0641235113143921,0.0178437232971191,0.0358390808105469,-0.0878407955169678,0.056096076965332,0.137775421142578,-0.0854336023330688,0.0604178905487061,0.136402130126953,-0.120386600494385,0.0894842147827148,0.25855827331543,-0.156355023384094,0.135223627090454,0.370790481567383,-0.104708075523376,0.0406656265258789,0.144598007202148,-0.139255523681641,0.076683521270752,0.309577941894531,-0.126082003116608,0.0335683822631836,0.192451477050781,-0.108143627643585,0.031775951385498,0.107792854309082,-0.108863711357117,0.0576739311218262,0.209635734558105,-0.142087578773499,0.109066724777222,0.31070613861084,-0.0782718062400818,-0.0051424503326416,0.0758113861083984,-0.0616743564605713,-0.0209982395172119,0.0536632537841797,-0.0479562878608704,-0.0295312404632568,0.0354185104370117,-0.0399639010429382,-0.024500846862793,0.0235834121704102,-0.0403286814689636,-0.0162055492401123,0.0187931060791016,-0.0522253513336182,-0.00140166282653809,0.0204248428344727,-0.0677332878112793,0.0135514736175537,0.0388383865356445,-0.0874671936035156,0.058969259262085,0.135955810546875,-0.135145664215088,0.109858512878418,0.299212455749512,-0.118566870689392,0.07403564453125,0.248467445373535,-0.110551774501801,0.0483944416046143,0.166784286499023,-0.112474262714386,0.0340287685394287,0.115860939025879,-0.0952340066432953,0.0124738216400146,0.0947980880737305,-0.0945950746536255,0.0103697776794434,0.095942497253418,-0.115318179130554,0.0351462364196777,0.121784210205078,-0.114998579025269,0.0550904273986816,0.183808326721191,-0.12857186794281,0.0891640186309814,0.278640747070313,-0.146088004112244,0.124289512634277,0.330964088439941,-0.0876009464263916,0.0624456405639648,0.139823913574219,-0.0658937692642212,0.0157172679901123,0.0370893478393555,-0.0497213006019592,-0.0010528564453125,0.019505500793457,-0.0373828411102295,-0.0157175064086914,0.0176897048950195, --0.03834068775177,-0.0261416435241699,0.0242729187011719,-0.0452525317668915,-0.03212571144104,0.0343217849731445,-0.0587976574897766,-0.025059700012207,0.0524730682373047,-0.0780001878738403,-0.00670695304870605,0.0779685974121094,-0.0833382159471512,-0.0187411308288574,0.135395050048828,-0.0210502147674561,-0.0127224922180176,0.00888252258300781,-0.0387219190597534,0.000967741012573242,0.014134407043457,-0.0317308902740479,0.00277805328369141,0.0116281509399414,-0.0117248892784119,-0.00687956809997559,0.00332164764404297,-0.0590654611587524,0.0216507911682129,0.0322370529174805,-0.0615994930267334,0.019486665725708,0.0329685211181641,-0.0825655460357666,0.0547816753387451,0.130915641784668,-0.0821807384490967,0.0486066341400146,0.132192611694336,-0.101539969444275,0.0772392749786377,0.190147399902344,-0.111626029014587,0.0926084518432617,0.223092079162598,-0.119515061378479,0.103384494781494,0.250795364379883,-0.123297691345215,0.104411125183105,0.273031234741211,-0.12539279460907,0.0950381755828857,0.292600631713867,-0.129465818405151,0.0754425525665283,0.317309379577637,-0.166170477867126,0.135408639907837,0.429548263549805,-0.178193807601929,0.116474390029907,0.505083084106445,-0.167652487754822,0.142944812774658,0.40680980682373,-0.177815198898315,0.123466491699219,0.500401496887207,-0.174663305282593,0.139792203903198,0.487847328186035,-0.18143355846405,0.12575364112854,0.592026710510254,-0.199115037918091,0.0884099006652832,0.682358741760254,-0.198258519172668,0.0580084323883057,0.638368606567383,-0.180877566337585,0.00743389129638672,0.537413597106934,-0.181360721588135,0.0701749324798584,0.513494491577148,-0.165619492530823,0.101117134094238,0.452702522277832,-0.154574751853943,0.121329069137573,0.396435737609863,-0.146408677101135,0.12587833404541,0.348176002502441,-0.137389063835144,0.11916184425354,0.30666446685791,-0.12529468536377,0.104049205780029,0.267478942871094,-0.111554503440857,0.0848958492279053,0.227785110473633,-0.000442206859588623,-0.000253915786743164,0.000761985778808594,-0.00575143098831177, --0.000383734703063965,0.006439208984375,-0.0198287963867188,0.000850677490234375,0.0256147384643555,-1.96993350982666e-05,3.61204147338867e-05,3.4332275390625e-05,-0.00217002630233765,-0.00113344192504883,0.00363445281982422,-0.0192872285842896,-0.0102602243423462,0.040257453918457,0,4.9591064453125e-05,0,-0.000840067863464355,-0.000472426414489746,0.00154018402099609,-0.0430558919906616,-0.0723477602005005,0.126120567321777,-0.00075143575668335,-0.000394105911254883,0.000954627990722656,-0.00882333517074585,0.000495195388793945,0.00787258148193359,-0.0286571979522705,0.00571489334106445,0.0264825820922852,-0.188571691513062,0.0197112560272217,0.519399642944336,-0.197062373161316,0.0137507915496826,0.536905288696289,-0.178429007530212,-0.0337555408477783,0.427173614501953,-0.184251189231873,-0.0263564586639404,0.451886177062988,-0.133030772209167,-0.0487148761749268,0.307110786437988,-0.159236788749695,-0.0411581993103027,0.369842529296875,-0.0687556266784668,-0.02947998046875,0.157450675964355,-0.100876331329346,-0.0270652770996094,0.22492790222168,-0.0412800312042236,-0.00698494911193848,0.0809230804443359,-0.0524349212646484,0.00269508361816406,0.0937080383300781,-0.165475726127625,-0.00745630264282227,0.426980972290039,-0.158253312110901,-0.0274064540863037,0.383954048156738,-0.168388366699219,0.00886631011962891,0.493756294250488,-0.141046047210693,0.013756275177002,0.36594295501709,-0.126988887786865,0.00392389297485352,0.324748039245605,-0.122379422187805,-0.0148558616638184,0.285800933837891,-0.0870227813720703,-0.00132060050964355,0.182782173156738,-0.111643671989441,0.0191051959991455,0.232548713684082,-0.0013696551322937,-0.000675439834594727,0.00103092193603516,-0.011113703250885,0.00118613243103027,0.0081634521484375,-0.0351452827453613,0.00955462455749512,0.0275678634643555,-0.0624556541442871,0.0168578624725342,0.0937032699584961,-0.094653844833374,0.0110862255096436,0.197508811950684,-0.21039080619812,0.0159881114959717,0.565969467163086,-0.200155019760132,-0.0372245311737061,0.465599060058594,-0.136245846748352, --0.0522747039794922,0.303382873535156,-0.0347899198532104,-0.1284419298172,0.182060241699219,0,4.9591064453125e-05,0,-8.21352005004883e-05,-6.79492950439453e-06,0.000141143798828125,-0.476842403411865,0.00686502456665039,0.820951461791992,-0.543681383132935,0.172092914581299,1.10493850708008,-0.294943571090698,0.139740467071533,1.03482151031494,-0.452796220779419,0.0294671058654785,1.49821376800537,-0.126797676086426,0.206727504730225,1.22148323059082,-0.0263919830322266,0.110484600067139,1.80345153808594,0.169441223144531,0.370425939559937,1.10349082946777,0.401983737945557,0.547997951507568,1.46753406524658,0.690550327301025,0.630499124526978,1.77655410766602,0.958969116210938,0.648314476013184,1.07548999786377,0.595145702362061,0.518774747848511,0.784878730773926,0.948807716369629,0.585750579833984,0.762885093688965,0.589752197265625,0.440557837486267,0.606231689453125,0.665275573730469,0.390104055404663,0.578547954559326,0.40149450302124,0.272027850151062,0.413376331329346,0.374548435211182,0.141891479492188,0.427975654602051,0.223008155822754,0.0530561208724976,0.258133888244629,0.0437870025634766,4.57763671875e-05,0.0875730514526367,0.0174107551574707,4.57614660263062e-05,0.0348224639892578,1.3076171875,0.779091358184814,1.37289381027222,0.922341823577881,0.482083320617676,0.802279949188232,1.28080034255981,0.718641519546509,1.01203298568726,0.533634185791016,0.215083599090576,0.708419799804688,0.955363273620605,0.525122165679932,2.00088787078857,1.13083124160767,0.375576496124268,0.965540885925293,1.62671136856079,0.590461730957031,1.1269063949585,1.55928516387939,0.60658073425293,1.50315713882446,1.66362905502319,0.381349086761475,1.23895978927612,1.1532130241394,0.202535629272461,0.905195236206055,1.5915699005127,0.240335941314697,1.60168313980103,1.09360265731812,0.112430095672607,2.06551027297974,0.814552307128906,-0.773806095123291,1.51357173919678,1.24971675872803,-0.329543113708496,1.67502117156982,1.49701976776123,0.0391106605529785,1.40546274185181,1.47579479217529,0.143168926239014,1.16267347335815, -0.371504783630371,-0.884945392608643,1.5100154876709,0.251954555511475,-0.485884666442871,0.808689594268799,0.629468441009521,-0.48081111907959,0.825149536132813,0.0946609973907471,-0.592116355895996,1.2390308380127,0.151287078857422,-0.35060977935791,0.590707778930664,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.0742201805114746,-0.0579214096069336,0.053156852722168,0.0929169654846191,-0.305057525634766,0.927199363708496,0.157821178436279,-0.216730117797852,0.385636329650879,0.0766899585723877,-0.0962276458740234,0.586169242858887,0.110671997070313,-0.11202335357666,0.191343307495117,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.017167329788208,-0.0140609741210938,-0.0736160278320313,0.0240023136138916,-0.0334186553955078,0.0380430221557617,0.0280845165252686,0.0168209075927734,0.269829750061035,0.00370132923126221,0.0312986373901367,0.0677261352539063,-0.0303030014038086,0.00900554656982422,-0.0528011322021484,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.000813007354736328,0.00190639495849609,0.00374507904052734,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,1.05209541320801,-0.356701374053955,0.865079879760742,1.21054267883301,-0.174500942230225,0.937239170074463,0.0681958198547363,4.57763671875e-05,0.136391878128052,0.192473888397217,4.57763671875e-05,0.38494873046875,0.465262889862061,-0.228355884552002,0.554149627685547,1.04614114761353,-0.0202617645263672,0.858506202697754,0.0558652877807617,4.57763671875e-05,0.111731290817261,0.181558132171631,4.57763671875e-05, -0.363116979598999,0.530718326568604,-0.0867462158203125,0.670158863067627,0.814110279083252,-0.0201897621154785,0.666767597198486,1.11972522735596,0.0399999618530273,0.834645748138428,0.528068065643311,-0.0615401268005371,0.51902437210083,0.739956855773926,-0.0659852027893066,0.705760955810547,0.728589534759521,0.0179581642150879,0.656323432922363,0.667332172393799,0.114625930786133,0.663304805755615,0.179313182830811,-0.000979423522949219,0.356032609939575,0.196282863616943,-0.00199437141418457,0.389111518859863,0.207540512084961,-0.0712509155273438,0.410078048706055,0.204543590545654,-0.0141603946685791,0.329749822616577,0.171186923980713,-0.0153884887695313,0.250921249389648,-1.02519989013672e-05,0.000253081321716309,7.15255737304688e-05,0.00128006935119629,0.00890529155731201,0.00653553009033203,0.0100069046020508,0.0222426652908325,0.030029296875,0.0294094085693359,0.026430606842041,0.0585298538208008,0.0656723976135254,0.0240135788917542,0.111780166625977,0.0764603614807129,0.0207953453063965,0.193331241607666,0.0384883880615234,0.00981900095939636,0.15935230255127,0.00304269790649414,0.000259369611740112,0.126978874206543,-5.340576171875e-05,0.00113832950592041,0.000375747680664063,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00282526016235352,4.57763671875e-05,0.00565141439437866,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00124645233154297,4.57763671875e-05,0.00249266624450684,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00307703018188477,4.57763671875e-05,0.00615447759628296,0.0253543853759766,4.57763671875e-05,0.0507098436355591,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00278711318969727,4.57763671875e-05,0.00557500123977661,0.00940132141113281,4.57763671875e-05,0.0188028812408447,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000574111938476563,4.57763671875e-05,0.00114792585372925,0.016045093536377,4.57763671875e-05,0.0320912599563599,0.0222930908203125,4.57763671875e-05,0.0445866584777832,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00107145309448242,4.57763671875e-05,0.00214308500289917,0.00653839111328125,4.57763671875e-05,0.013077437877655,0.00662565231323242,4.57763671875e-05,0.0132526159286499,0.0020294189453125,4.57763671875e-05,0.00405991077423096,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000258445739746094,0.00140213966369629,-0.000211119651794434,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0140867233276367,-0.00186610221862793,0.0659031867980957,0,4.57763671875e-05,0,0.000481128692626953,4.57763671875e-05,0.0009613037109375,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0.087557315826416,-7.20024108886719e-05,0.175322771072388,0.0694007873535156,-0.00223994255065918,0.168082475662231,0.0460281372070313,0.00024867057800293,0.0952138900756836,0.0303611755371094,4.56571578979492e-05,0.0607223510742188,0.0187702178955078,4.57763671875e-05,0.0375411510467529,2.47955322265625e-05,4.57763671875e-05,4.88758087158203e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0018305778503418,4.57763671875e-05,0.00366169214248657,0.0291404724121094,4.57763671875e-05,0.0582817792892456,0.0681333541870117,4.57763671875e-05,0.13626754283905,0.0813484191894531,4.57763671875e-05,0.162697076797485,0.0337252616882324,4.57763671875e-05,0.0674507617950439,0.0342960357666016,4.57763671875e-05,0.06859290599823,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06, -0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, -4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0.000168323516845703,4.57763671875e-05,0.000338315963745117,4.29153442382813e-06,4.57763671875e-05,1.02519989013672e-05,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05, -3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,-0.0603125095367432,-0.00146269798278809,0.0291624069213867,-0.0653135776519775,0.00411868095397949,0.0319242477416992,-0.0717939138412476,0.0122079849243164,0.0444698333740234,-0.0785301327705383,0.0220575332641602,0.0776348114013672,-0.0842498540878296,0.0310795307159424,0.109946250915527,-0.0907691717147827,0.0417277812957764,0.147930145263672,-0.060210645198822,-0.0029597282409668,0.0315608978271484,-0.0625045001506805,-0.00297665596008301,0.0376968383789063,-0.068547785282135,0.000679254531860352,0.0474643707275391,-0.0730924904346466,0.00469398498535156,0.0546836853027344,-0.08048015832901,0.0120267868041992,0.0634231567382813,-0.0879670977592468,0.0201320648193359,0.0731544494628906,-0.0915313959121704,0.026479959487915,0.0968685150146484,-0.0936827063560486,0.0338990688323975,0.130402565002441,-0.0966775417327881,0.0462436676025391,0.168240547180176,-0.0730260610580444,0.00786328315734863,0.0457592010498047,-0.0788542032241821,0.0144553184509277,0.0557765960693359,-0.08309006690979,0.0210418701171875,0.0773048400878906, --0.0876574516296387,0.029716968536377,0.111587524414063,-0.0672163367271423,0.00198149681091309,0.0408649444580078,-0.0328217744827271,-0.0296263694763184,0.0267877578735352,-0.075814962387085,0.0644741058349609,0.428897857666016,-0.04522705078125,0.13163948059082,0.607892036437988,-0.0498461723327637,-0.0162973403930664,0.113898277282715,-0.0740776062011719,0.0180950164794922,0.262751579284668,-0.0452369451522827,-0.0262598991394043,0.0708656311035156,-0.0439265966415405,-0.0238165855407715,0.0464677810668945,-0.0394489765167236,-0.026270866394043,0.0321493148803711,0.0711033344268799,0.144748687744141,0.770784378051758,0.0892558097839355,0.143639087677002,0.862894058227539,0.0171005725860596,0.0806674957275391,0.775216102600098,-0.0612697601318359,0.0491290092468262,0.586565971374512,-0.0922152996063232,0.0407323837280273,0.39898681640625,-0.0423500537872314,0.0508937835693359,0.24345874786377,-0.0235553979873657,0.0547356605529785,0.185766220092773,-0.0212404727935791,0.0364193916320801,0.111922264099121,-0.0236454010009766,0.0193171501159668,0.0499238967895508,-0.0201236009597778,0.0149369239807129,0.0339565277099609,-0.0159532725811005,0.0109105110168457,0.0280733108520508,-0.0619915872812271,0.00301790237426758,0.403645515441895,-0.126994550228119,0.00738239288330078,0.471827507019043,-0.267653584480286,0.0181756019592285,0.585397720336914,-0.390980005264282,0.0401101112365723,0.755876541137695,-0.523493647575378,0.0929255485534668,1.0847635269165,-0.594367742538452,0.12542200088501,1.34188461303711,-0.472407817840576,0.130880355834961,1.47902202606201,-0.41059947013855,0.143818855285645,1.63209056854248,-0.375559091567993,0.123701572418213,1.7311840057373,-0.39721155166626,0.136543750762939,1.77730464935303,-0.39542031288147,0.14130973815918,1.75236320495605,-0.406593799591064,0.139073848724365,1.69548320770264,-0.487781763076782,0.123972415924072,1.49551296234131,-0.612424612045288,0.121927261352539,1.32989501953125,-0.523171901702881,0.0970120429992676,1.04672718048096,-0.419385015964508,0.0452890396118164, -0.741824150085449,-0.283147156238556,0.0234012603759766,0.59251594543457,-0.137803703546524,0.00411033630371094,0.471415519714355,-0.0699324160814285,-0.000354766845703125,0.403323173522949,-0.0153074562549591,-0.00652933120727539,0.034296989440918,-0.0357983112335205,-0.00702762603759766,0.0556344985961914,-0.0955552458763123,-0.00357818603515625,0.108292579650879,-0.127790093421936,0.00384759902954102,0.177730560302734,-0.205942392349243,0.0477972030639648,0.370638847351074,-0.33866286277771,0.103124141693115,0.619852066040039,-0.365204572677612,0.1522216796875,0.793634414672852,-0.296106338500977,0.157322406768799,0.840658187866211,-0.205310344696045,0.137688159942627,0.911896705627441,-0.184102773666382,0.112148284912109,1.04478454589844,-0.218239545822144,0.0933880805969238,0.993690490722656,-0.266821384429932,0.0989556312561035,0.824082374572754,-0.388710498809814,0.146683216094971,0.85521125793457,-0.313970327377319,0.0923476219177246,0.59220027923584,-0.194828867912292,0.0508308410644531,0.384221076965332,-0.14317786693573,0.0197248458862305,0.192501068115234,-0.119518876075745,0.0148649215698242,0.119693756103516,-0.0448674559593201,0.00540590286254883,0.0548477172851563,-0.0136526823043823,0.00266027450561523,0.0285615921020508,-3.98159027099609e-05,2.288818359375e-05,7.62939453125e-06,0.227958202362061,-0.0549411773681641,0.44747257232666,0.344064712524414,0.00674247741699219,0.675629138946533,0.047072172164917,-0.0733017921447754,0.0487165451049805,0.0799179077148438,-0.262475490570068,0.0380277633666992,0.00673651695251465,0.0016019344329834,0.0159235000610352,-0.00137782096862793,0.00176835060119629,-4.29153442382813e-05,-0.000422179698944092,0.000573635101318359,-1.23977661132813e-05,0.461037158966064,0.0269193649291992,0.836468696594238,0.535700559616089,0.0162277221679688,0.935246467590332,0.445451974868774,0.00911521911621094,0.780385494232178,0.271408081054688,0.00930213928222656,0.499908924102783,0.113525629043579,-0.000188827514648438,0.227436065673828,0.0356531143188477,4.57763671875e-05,0.0713081359863281, -0.00805878639221191,4.57763671875e-05,0.016118049621582,0.000261187553405762,0.000655174255371094,0.00189590454101563,5.48362731933594e-06,5.62667846679688e-05,4.00543212890625e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.091090202331543,4.57763671875e-05,0.182181835174561,0.110629081726074,4.57763671875e-05,0.221258640289307,0.0310518741607666,4.57763671875e-05,0.0621042251586914,0.0666606426239014,4.57763671875e-05,0.13332200050354,0.00697708129882813,4.57763671875e-05,0.0139544010162354,5.5849552154541e-05,4.57763671875e-05,0.000112056732177734,0,4.57763671875e-05,0,0.109734535217285,4.57763671875e-05,0.219469785690308,0.0837774276733398,4.57763671875e-05,0.167555809020996,0.0485594272613525,4.57763671875e-05,0.0971202850341797,0.00761294364929199,4.57763671875e-05,0.0152273178100586,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06, -0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,0,4.64916229248047e-06,4.57763671875e-05,1.00135803222656e-05,0.00875377655029297,4.57763671875e-05,0.0175085067749023,0.041359543800354,4.57763671875e-05,0.0827198028564453,0.128973484039307,4.57763671875e-05,0.257946968078613,0.25335168838501,4.57763671875e-05,0.506703853607178,0.367084980010986,4.57763671875e-05,0.734169960021973,0.466518878936768,0.00283336639404297,0.92064905166626,0.532763481140137,0.0118589401245117,1.01298666000366,0.495234489440918,0.016932487487793,0.915375709533691,0.369162082672119,0.00661468505859375,0.709118366241455,0.192490339279175,4.57763671875e-05,0.384982585906982,0.0676751136779785,0.000729560852050781,0.136476516723633,0.0130739212036133,4.57763671875e-05,0.0261497497558594,0.00206708908081055,4.57763671875e-05,0.00413608551025391,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06 - } - Normals: *7509 { - a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453, --1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666, -1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428, -0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255, --0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868, --0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014, --0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229, -0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595, --0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476, --1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735, -0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654, --0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996, --0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324, --0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636, --1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033, --0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668, --0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074, -0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273, --0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303, -0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383, -0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634, --0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598, --0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739, -0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415, --0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001, --0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201, -0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165, --0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067, --0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683, -1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757, -0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776, --1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647, --1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413, -0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769, -0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178, --0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082, --1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675, --1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223, -0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308, --0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009, --1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439, -0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915, -1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106, --1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298, --0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284, --1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727, -0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952, --0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962, -0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671, -0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266, --0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515, --0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008, --1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292, --1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176, --0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943, --0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043, -0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124, -0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555, --0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199, -0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122, --0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448, --1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322, --0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402, --1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913, -0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101, --0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567, -1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272, -1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 - } - } - Geometry: 2805454335456, "Geometry::Cheek_Puff_Right", "Shape" { - Version: 100 - Indexes: *8033 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971, -2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409,3410, -3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820, -3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243, -4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658,4659, -4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082, -5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497, -5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922, -5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5965,5967,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6150,6151,6152,6153,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370, -6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6513,6514,6515,6516,6517,6518,6519,6520,6525,6526,6529,6530,6531,6536,6544,6545,6546,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871, -6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281, -7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7347,7349,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7516,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7532,7533,7534,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732, -7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7895,7896,7897,7898,7907,7908,7911,7912,7913,7918,7926,7927,7928,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237, -8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647, -8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 - } - Vertices: *24099 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, -0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, -0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, -0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, -4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, --7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05, -0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348, -0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699, -0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05, -0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05, -0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05, -0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699, -0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625, -0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05, -0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05, -0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0, -8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, -0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05, -0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05, -0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05, -0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05, -0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05, -0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05, -0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0, -0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, -0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0, -8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, -0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05, -0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05, -0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05, -0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05, -0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05, -0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, -0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05, -0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05, -0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0, -0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05, -0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05, -0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0, -0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781, -0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0, -0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05, -0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05, -0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0, -0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05, -0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0, -0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944, -0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05, -0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0, -0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578, -0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05, -0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, -8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05, -0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0, -0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0, -9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781, -0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0, -0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0, -0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05, -0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0, -0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0, -8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05, -0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803, -0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0, -0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, -0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05, -0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05, -0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0.00163092371076345,-0.0015721321105957,0.000338554382324219,0.000443189026555046,-0.000391006469726563,9.1552734375e-05,0.111760452411545,-0.00277996063232422,0.421629905700684,0.161375373609189,-0.0233550071716309,0.415858268737793,0.131131693793577,0.0207018852233887,0.402071952819824,0.106857568047417,-0.00281429290771484,0.42170524597168,0.142538055799378,-0.0129146575927734,0.418899536132813,0.137582048759214,0.0151009559631348,0.412527084350586,0.124444447472342,-0.00602912902832031,0.421350479125977,0.122971408090962,0.00464057922363281,0.418312072753906,0.133612081408501,-0.0245723724365234,0.314766883850098,0.0596447027983231,0.0142645835876465,0.247822761535645,0.140041917558847,-0.0274224281311035,0.352447509765625,0.0970137416297803,0.0197787284851074,0.329452514648438,0.0713537782430649,-0.0348601341247559,0.153958320617676,0.0210610181093216,0.00221157073974609,0.14530086517334,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.9591064453125e-05,0,1.6494232794919e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.16397638697519e-29,4.57763671875e-05,1.9073486328125e-06,1.2030073133208e-29,4.9591064453125e-05,1.9073486328125e-06,1.17687680741049e-29,4.57763671875e-05,1.9073486328125e-06,0.0113422805443406,7.91549682617188e-05,0.0692024230957031,0.0292403679341078,-0.033461332321167,0.0250930786132813,0.040963888168335,-0.0378713607788086,0.0333375930786133,0.0468014441430569, --0.0325336456298828,0.0384235382080078,0.0609319321811199,-0.0332555770874023,0.0981807708740234,0.0158042963594198,-0.0183501243591309,0.0113506317138672,0.00586307095363736,-0.00612926483154297,0.00204181671142578,1.69452569998719e-29,4.9591064453125e-05,0,1.70417235205941e-29,4.9591064453125e-05,0,1.71227329488799e-29,4.9591064453125e-05,0,3.79388393412228e-06,4.57763671875e-05,0,0.000141997603350319,-9.1552734375e-05,2.95639038085938e-05,1.6823769940833e-29,4.9591064453125e-05,0,1.25674060830592e-29,4.9591064453125e-05,1.9073486328125e-06,1.23097723279127e-29,4.9591064453125e-05,1.9073486328125e-06,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.11006020387699e-29,4.57763671875e-05,0,1.20450953867742e-29,4.57763671875e-05,0,1.25386284767183e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.76704839760241e-29,4.57763671875e-05,-2.14576721191406e-06,1.76704839760241e-29,4.57763671875e-05,-2.14576721191406e-06,1.76704839760241e-29,4.57763671875e-05,-2.14576721191406e-06,1.026728826302e-29,4.57763671875e-05,0,1.96628296081702e-16,4.57763671875e-05,1.9073486328125e-06,-1.93790846881475e-15,4.57763671875e-05,3.814697265625e-06,8.77084445781299e-30,4.57763671875e-05,0,9.80023445286197e-30,4.57763671875e-05,1.9073486328125e-06,9.58355604937264e-30,4.57763671875e-05,0,1.18770504759626e-29,4.57763671875e-05,1.9073486328125e-06,7.4275955903035e-30,4.57763671875e-05,1.9073486328125e-06,6.59519281550426e-16,4.57763671875e-05,2.62260437011719e-06,6.5952056590738e-30,4.57763671875e-05,1.9073486328125e-06,-2.37353751358763e-15,4.57763671875e-05,2.86102294921875e-06,5.74120017348389e-30,4.57763671875e-05,1.9073486328125e-06, --1.83593396053657e-15,4.57763671875e-05,3.33786010742188e-06,8.17811092940521e-30,4.57763671875e-05,0,7.57453707368001e-16,4.57763671875e-05,2.38418579101563e-06,0,0.000311195850372314,0,0,0.000519618391990662,0,0.00540220737457275,-0.00282764434814453,0.00146102905273438,0.00244230031967163,-0.00114631652832031,0.00118064880371094,0.0912067741155624,-0.00296926498413086,0.396718978881836,0.153615117073059,-0.0241103172302246,0.446992874145508,0.49608039855957,0.168283939361572,1.50814056396484,0.472244024276733,0.168550491333008,1.50536251068115,0.454501628875732,0.0976943969726563,1.28577327728271,0.522084712982178,0.151006698608398,1.27116107940674,0.497353196144104,0.0983405113220215,0.97866153717041,0.578438758850098,0.13075590133667,1.00329113006592,0.429036378860474,0.104555606842041,0.854087829589844,0.416885495185852,0.0709090232849121,0.737983703613281,0.29463529586792,0.0423707962036133,0.668708801269531,0.2834712266922,0.0251898765563965,0.607094764709473,0.206919968128204,-0.00793743133544922,0.529261589050293,0.150299966335297,0.00181865692138672,0.466658592224121,0.605844736099243,0.153275012969971,1.14843463897705,0.46296238899231,0.101705551147461,1.10691738128662,0.384437322616577,0.145184516906738,1.53133106231689,0.449356079101563,0.153040409088135,1.50346946716309,0.405591487884521,0.143306255340576,1.56307888031006,0.397512435913086,0.151094436645508,1.50220489501953,0.402195692062378,0.131279945373535,1.57107639312744,0.454372406005859,0.165160655975342,1.51166820526123,0.440876483917236,0.117146968841553,1.55735206604004,0.503968954086304,0.183385848999023,1.51574039459229,0.559349536895752,0.144500255584717,1.35329055786133,0.605749607086182,0.180456161499023,1.50767612457275,0.611721992492676,0.144687175750732,1.18411350250244,0.681204080581665,0.245982646942139,1.36668586730957,0.636487245559692,0.202836036682129,1.08494091033936,0.57291567325592,0.129280090332031,0.99631404876709,0.493260741233826,0.14922571182251,0.79279613494873,0.466166853904724,0.0726542472839355,0.750367164611816,0.333110392093658, -0.0804347991943359,0.576826095581055,0.302544116973877,0.0271077156066895,0.590445518493652,0.159108400344849,0.0478482246398926,0.441702842712402,0.151560693979263,0.000737667083740234,0.466983795166016,0.112070232629776,0.0332999229431152,0.429425239562988,0.0852231234312057,-0.00245141983032227,0.399282455444336,0.12197732925415,-0.0167574882507324,0.43260669708252,0.169647395610809,-0.0103778839111328,0.492929458618164,0.288821280002594,0.0291361808776855,0.638309478759766,0.404429912567139,0.0750832557678223,0.823626518249512,0.537361145019531,0.120270729064941,1.01245021820068,0.508352637290955,0.129139423370361,1.15933132171631,0.489008188247681,0.13176155090332,1.28878498077393,0.471152544021606,0.174188613891602,1.50615882873535,0.416788101196289,0.155145168304443,1.50948047637939,0.412880659103394,0.146074295043945,1.52925109863281,0.402519464492798,0.140751838684082,1.54309558868408,0.473680019378662,0.166221141815186,1.54815196990967,0.591097354888916,0.166050434112549,1.42112445831299,0.639098763465881,0.185564041137695,1.27666187286377,0.590458989143372,0.17370080947876,1.05356884002686,0.480820775032043,0.133223533630371,0.790040016174316,0.325576543807983,0.0826091766357422,0.593918800354004,0.185707032680511,0.0468688011169434,0.492312431335449,0.120839342474937,0.0274138450622559,0.448963165283203,0.104991137981415,-0.00789976119995117,0.39765739440918,0.159883260726929,-0.00303983688354492,0.473395347595215,0.284864366054535,0.0262775421142578,0.621394157409668,0.40929102897644,0.0644598007202148,0.778014183044434,0.550127267837524,0.120011329650879,1.02122974395752,0.570742011070251,0.15038537979126,1.15109252929688,0.504307270050049,0.144131660461426,1.27503108978271,0.494148731231689,0.162392616271973,1.50158500671387,0.464741706848145,0.157248020172119,1.50764942169189,0.45411229133606,0.156954765319824,1.51901245117188,0.462091684341431,0.167641162872314,1.52247619628906,0.501155614852905,0.185912609100342,1.52161598205566,0.601726293563843,0.177432060241699,1.36970806121826,0.63290548324585, -0.167493343353271,1.19025039672852,0.576487898826599,0.147260665893555,0.99442195892334,0.479573726654053,0.110386848449707,0.772055625915527,0.322094678878784,0.0570526123046875,0.607304573059082,0.168365836143494,0.0193915367126465,0.517355918884277,0.0982813388109207,0.00862884521484375,0.484910011291504,0.1558977663517,-0.0192852020263672,0.343053817749023,0.168643951416016,0.0124473571777344,0.395943641662598,0.176306962966919,-0.0369358062744141,0.57200813293457,0.173178553581238,0.0250935554504395,0.809830665588379,0.313502073287964,0.0914535522460938,1.12785148620605,0.344350576400757,0.111648082733154,1.29959201812744,0.396620988845825,0.0973591804504395,1.53944206237793,0.58690071105957,0.105615139007568,1.8801908493042,0.53264045715332,0.155951023101807,1.95163059234619,0.485357999801636,0.147543907165527,1.91780281066895,0.487787246704102,0.106702327728271,1.86956787109375,0.469266653060913,0.133047103881836,1.85712623596191,0.38940691947937,0.160372257232666,1.77031517028809,0.324235200881958,0.209689617156982,1.49044990539551,0.0557039976119995,0.0241103172302246,0.259607315063477,0.0623806118965149,0.0345497131347656,0.29591178894043,0.0852494239807129,0.0546951293945313,0.385111808776855,0.155084609985352,0.152819156646729,0.646639823913574,0.233898639678955,0.181911945343018,1.04897880554199,0.140314489603043,-0.0245518684387207,0.347535133361816,0.193712830543518,-0.00411224365234375,0.450103759765625,0.26139771938324,0.0481300354003906,0.583757400512695,0.389864921569824,0.210843086242676,0.744058609008789,0.462051391601563,0.21345853805542,0.875240325927734,0.397588491439819,0.195805549621582,1.02561473846436,0.405396223068237,0.23095178604126,1.31195449829102,0.488669395446777,0.295629024505615,1.62527751922607,0.327401161193848,0.207535743713379,1.63455581665039,0.368279457092285,0.152582168579102,1.66745090484619,0.41990852355957,0.118014335632324,1.66846370697021,0.432518005371094,0.0684223175048828,1.65896034240723,0.516419649124146,0.0926942825317383,1.64123630523682,0.46920108795166,0.132978439331055, -1.41868114471436,0.400745153427124,0.168729782104492,1.08222579956055,0.341106772422791,0.143210887908936,0.735932350158691,0.221442222595215,0.090059757232666,0.520211219787598,0.105147242546082,0.0477433204650879,0.354975700378418,0.0798524916172028,0.032768726348877,0.312179565429688,0.0937626659870148,-0.0185928344726563,0.187541961669922,0.129110395908356,0.0160961151123047,0.262725830078125,0.206474363803864,0.0335330963134766,0.471966743469238,0.19465696811676,0.075251579284668,0.71794605255127,0.353838443756104,0.231824636459351,0.988322257995605,0.426651000976563,0.244785308837891,1.317702293396,0.374788045883179,0.082636833190918,1.76680755615234,0.308649063110352,0.0916910171508789,2.1830587387085,0.242093563079834,0.110772609710693,1.76633834838867,0.360467433929443,0.00367116928100586,1.91899108886719,0.438642978668213,0.00509214401245117,2.20515918731689,0.446281433105469,0.0912361145019531,2.43235492706299,0.242685556411743,0.0194158554077148,2.35827350616455,0.0255694091320038,0.00487232208251953,0.17575740814209,0.0272464156150818,0.0174226760864258,0.245524406433105,0.0116976499557495,0.0438013076782227,0.358451843261719,0.0428295135498047,0.165467262268066,0.576217651367188,-0.00255560874938965,0.256905555725098,0.939101219177246,0.0930507183074951,0.162072658538818,1.39078521728516,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0753593444824219,0.0197952091693878,0.151402473449707,-0.0897960662841797,0.0941253304481506,0.189964294433594,-0.154628753662109,0.0471512079238892,0.218108177185059,-0.291264057159424,0.251311182975769,0.344815731048584,-0.0703721046447754,0.0661032199859619,0.118640899658203,-0.320487499237061,0.372848391532898,0.527549743652344,-0.00183796882629395,0.0234962701797485,0.0316019058227539,0.0957028865814209,0.1285320520401,0.597674369812012,0.00062251091003418,6.04391098022461e-05, -0.00157642364501953,0.484714508056641,-0.0989919900894165,0.506077766418457,8.82148742675781e-06,4.57763671875e-05,2.47955322265625e-05,0.130656123161316,-0.0790562629699707,0.125581741333008,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00701475143432617,0.000515744090080261,0.0882377624511719,-0.0128154754638672,7.78157263994217e-05,0.025505542755127,-0.370195388793945,0.316527605056763,0.421140670776367,-0.141891002655029,0.0628664493560791,0.170815467834473,-0.15791654586792,0.230051040649414,0.491595268249512,-0.0200257301330566,0.0491278171539307,0.0741634368896484,0.224169969558716,0.0376908779144287,0.553531646728516,0.00364160537719727,0.00278115272521973,0.00871753692626953,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0.00574707984924316,0.00431632995605469,-0.0187778472900391,0,4.57763671875e-05,1.9073486328125e-06,-0.0428798198699951,-0.0527811050415039,0.00497913360595703,-0.000112533569335938,4.57763671875e-05,0.000226974487304688,-0.156652450561523,-0.100918769836426,0.151751041412354,-0.0493311882019043,4.57763671875e-05,0.0986642837524414,-0.333480358123779,-0.250406265258789,0.44207763671875,-0.072298526763916,4.57763671875e-05,0.144598245620728,-0.481326580047607,-0.143180847167969,0.658619403839111,-0.006134033203125,4.57763671875e-05,0.0122683346271515,-0.294757843017578,-0.00768756866455078,0.353692293167114,-3.57627868652344e-05,4.57763671875e-05,7.11267348378897e-05,-0.122544288635254,0.000120639801025391,0.244267225265503,-0.0182666778564453,4.57763671875e-05,0.0365347862243652,-0.183066844940186,-0.229484558105469,0.289061069488525,-0.0274777412414551,4.57763671875e-05,0.0549572706222534,-0.520839214324951,-0.128692150115967,0.556059598922729,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0144643783569336,4.57763671875e-05,0.0289306640625,-0.0772266387939453,4.57763671875e-05,0.154454708099365,-0.148436069488525,4.29153442382813e-05, -0.296858310699463,-0.197999477386475,4.57763671875e-05,0.395999431610107,-0.140644550323486,4.57763671875e-05,0.281291484832764,-0.086707592010498,4.57763671875e-05,0.173415899276733,-0.0428485870361328,4.57763671875e-05,0.085698127746582,0.195231318473816,0.0418212413787842,0.579584121704102,0.136224985122681,0.0225005149841309,0.383407592773438,0.13637900352478,0.0493006706237793,0.357051849365234,0.198992490768433,0.0847976207733154,0.583436965942383,0.084907054901123,0.0434858798980713,0.139411926269531,0.0862531661987305,0.0308046340942383,0.142521858215332,0.0438110828399658,0.0148494243621826,0.0301380157470703,0.0559374094009399,0.0217373371124268,0.0334444046020508,0.0131728053092957,0.00153064727783203,0.0077972412109375,0.026193380355835,0.00366091728210449,0.0108489990234375,0.198741912841797,0.0910375118255615,0.587281227111816,0.197914242744446,0.0535178184509277,0.580921173095703,0.510722756385803,0.175629377365112,1.33125495910645,0.404936075210571,0.0737879276275635,1.71976852416992,-0.0559604167938232,0.200148582458496,2.21100330352783,-0.217696189880371,0.220017433166504,2.42553520202637,-0.191464900970459,-0.109786510467529,2.47250747680664,-0.147121906280518,-0.461048126220703,2.11341381072998,0.110345602035522,-0.330268383026123,1.74042224884033,0.0374834537506104,-0.168135643005371,1.3767032623291,-0.00597047805786133,-3.33786010742188e-05,0.99695873260498,-0.0225801467895508,0.112486839294434,0.583847999572754,-0.027135968208313,0.0884437561035156,0.296010971069336,-0.000458002090454102,0.015385627746582,0.145888328552246,0.00808769464492798,0.000850677490234375,0.0948286056518555,0.0111770331859589,0.000245094299316406,0.0815525054931641,0.0776686072349548,-0.00273299217224121,0.0716075897216797,0.078475683927536,-0.013181209564209,0.0968351364135742,0.0981456339359283,0.00161409378051758,0.141754150390625,0.0944826006889343,0.0139532089233398,0.0917997360229492,0.0623182654380798,-0.0164997577667236,0.0504617691040039,0.0523374825716019,-0.0321478843688965,0.0473356246948242,0.0502186715602875, --0.0243875980377197,0.0337944030761719,0.0382629185914993,-0.0367143154144287,0.0314540863037109,0.0429816246032715,-0.0220499038696289,0.0228509902954102,0.0305759012699127,-0.0275111198425293,0.0228633880615234,0.0428981781005859,-0.0161592960357666,0.0188455581665039,0.0313440561294556,-0.0151669979095459,0.0147438049316406,0.0544736385345459,-0.0014650821685791,0.020960807800293,0.0450935959815979,-0.000265121459960938,0.0172281265258789,0.0684434175491333,0.0115320682525635,0.038731575012207,0.0641235113143921,0.0178437232971191,0.0358390808105469,0.0878407955169678,0.056096076965332,0.137775421142578,0.0854336023330688,0.0604178905487061,0.136402130126953,0.120386600494385,0.0894842147827148,0.25855827331543,0.156355023384094,0.135223627090454,0.370790481567383,0.104708075523376,0.0406656265258789,0.144598007202148,0.139255523681641,0.076683521270752,0.309577941894531,0.126082003116608,0.0335683822631836,0.192451477050781,0.108143627643585,0.031775951385498,0.107792854309082,0.108863711357117,0.0576739311218262,0.209635734558105,0.142087578773499,0.109066724777222,0.31070613861084,0.0782718062400818,-0.0051424503326416,0.0758113861083984,0.0616743564605713,-0.0209982395172119,0.0536632537841797,0.0479562878608704,-0.0295312404632568,0.0354185104370117,0.0399639010429382,-0.024500846862793,0.0235834121704102,0.0403286814689636,-0.0162055492401123,0.0187931060791016,0.0522253513336182,-0.00140166282653809,0.0204248428344727,0.0677332878112793,0.0135514736175537,0.0388383865356445,0.0874671936035156,0.058969259262085,0.135955810546875,0.135145664215088,0.109858512878418,0.299212455749512,0.118566870689392,0.07403564453125,0.248467445373535,0.110551774501801,0.0483944416046143,0.166784286499023,0.112474262714386,0.0340287685394287,0.115860939025879,0.0952340066432953,0.0124738216400146,0.0947980880737305,0.0945950746536255,0.0103697776794434,0.095942497253418,0.115318179130554,0.0351462364196777,0.121784210205078,0.114998579025269,0.0550904273986816,0.183808326721191,0.12857186794281,0.0891640186309814,0.278640747070313, -0.146088004112244,0.124289512634277,0.330964088439941,0.0876009464263916,0.0624456405639648,0.139823913574219,0.0658937692642212,0.0157172679901123,0.0370893478393555,0.0497213006019592,-0.0010528564453125,0.019505500793457,0.0373828411102295,-0.0157175064086914,0.0176897048950195,0.03834068775177,-0.0261416435241699,0.0242729187011719,0.0452525317668915,-0.03212571144104,0.0343217849731445,0.0587976574897766,-0.025059700012207,0.0524730682373047,0.0780001878738403,-0.00670695304870605,0.0779685974121094,0.0833382159471512,-0.0187411308288574,0.135395050048828,0.0210502147674561,-0.0127224922180176,0.00888252258300781,0.0387219190597534,0.000967741012573242,0.014134407043457,0.0317308902740479,0.00277805328369141,0.0116281509399414,0.0117248892784119,-0.00687956809997559,0.00332164764404297,0.0590654611587524,0.0216507911682129,0.0322370529174805,0.0615994930267334,0.019486665725708,0.0329685211181641,0.0825655460357666,0.0547816753387451,0.130915641784668,0.0821807384490967,0.0486066341400146,0.132192611694336,0.101539969444275,0.0772392749786377,0.190147399902344,0.111626029014587,0.0926084518432617,0.223092079162598,0.119515061378479,0.103384494781494,0.250795364379883,0.123297691345215,0.104411125183105,0.273031234741211,0.12539279460907,0.0950381755828857,0.292600631713867,0.129465818405151,0.0754425525665283,0.317309379577637,0.166170477867126,0.135408639907837,0.429548263549805,0.178193807601929,0.116474390029907,0.505083084106445,0.167652487754822,0.142944812774658,0.40680980682373,0.177815198898315,0.123466491699219,0.500401496887207,0.174663305282593,0.139792203903198,0.487847328186035,0.18143355846405,0.12575364112854,0.592026710510254,0.199115037918091,0.0884099006652832,0.682358741760254,0.198258519172668,0.0580084323883057,0.638368606567383,0.180877566337585,0.00743389129638672,0.537413597106934,0.181360721588135,0.0701749324798584,0.513494491577148,0.165619492530823,0.101117134094238,0.452702522277832,0.154574751853943,0.121329069137573,0.396435737609863,0.146408677101135,0.12587833404541,0.348176002502441, -0.137389063835144,0.11916184425354,0.30666446685791,0.12529468536377,0.104049205780029,0.267478942871094,0.111554503440857,0.0848958492279053,0.227785110473633,0.000442206859588623,-0.000253915786743164,0.000761985778808594,0.00575143098831177,-0.000383734703063965,0.006439208984375,0.0198287963867188,0.000850677490234375,0.0256147384643555,1.96993350982666e-05,3.61204147338867e-05,3.4332275390625e-05,0.00217002630233765,-0.00113344192504883,0.00363445281982422,0.0192872285842896,-0.0102602243423462,0.040257453918457,0,4.9591064453125e-05,0,0.000840067863464355,-0.000472426414489746,0.00154018402099609,0.0430558919906616,-0.0723477602005005,0.126120567321777,0.00075143575668335,-0.000394105911254883,0.000954627990722656,0.00882333517074585,0.000495195388793945,0.00787258148193359,0.0286571979522705,0.00571489334106445,0.0264825820922852,0.188571691513062,0.0197112560272217,0.519399642944336,0.197062373161316,0.0137507915496826,0.536905288696289,0.178429007530212,-0.0337555408477783,0.427173614501953,0.184251189231873,-0.0263564586639404,0.451886177062988,0.133030772209167,-0.0487148761749268,0.307110786437988,0.159236788749695,-0.0411581993103027,0.369842529296875,0.0687556266784668,-0.02947998046875,0.157450675964355,0.100876331329346,-0.0270652770996094,0.22492790222168,0.0412800312042236,-0.00698494911193848,0.0809230804443359,0.0524349212646484,0.00269508361816406,0.0937080383300781,0.165475726127625,-0.00745630264282227,0.426980972290039,0.158253312110901,-0.0274064540863037,0.383954048156738,0.168388366699219,0.00886631011962891,0.493756294250488,0.141046047210693,0.013756275177002,0.36594295501709,0.126988887786865,0.00392389297485352,0.324748039245605,0.122379422187805,-0.0148558616638184,0.285800933837891,0.0870227813720703,-0.00132060050964355,0.182782173156738,0.111643671989441,0.0191051959991455,0.232548713684082,0.0013696551322937,-0.000675439834594727,0.00103092193603516,0.011113703250885,0.00118613243103027,0.0081634521484375,0.0351452827453613,0.00955462455749512,0.0275678634643555,0.0624556541442871, -0.0168578624725342,0.0937032699584961,0.094653844833374,0.0110862255096436,0.197508811950684,0.21039080619812,0.0159881114959717,0.565969467163086,0.200155019760132,-0.0372245311737061,0.465599060058594,0.136245846748352,-0.0522747039794922,0.303382873535156,0.0347899198532104,-0.1284419298172,0.182060241699219,0,4.9591064453125e-05,0,8.21352005004883e-05,-6.79492950439453e-06,0.000141143798828125,0.476842403411865,0.00686502456665039,0.820951461791992,0.543681383132935,0.172092914581299,1.10493850708008,0.294943571090698,0.139740467071533,1.03482151031494,0.452796220779419,0.0294671058654785,1.49821376800537,0.126797676086426,0.206727504730225,1.22148323059082,0.0263919830322266,0.110484600067139,1.80345153808594,-0.169441223144531,0.370425939559937,1.10349082946777,-0.401983737945557,0.547997951507568,1.46753406524658,-0.690550327301025,0.630499124526978,1.77655410766602,-0.958969116210938,0.648314476013184,1.07548999786377,-0.595145702362061,0.518774747848511,0.784878730773926,-0.948807716369629,0.585750579833984,0.762885093688965,-0.589752197265625,0.440557837486267,0.606231689453125,-0.665275573730469,0.390104055404663,0.578547954559326,-0.40149450302124,0.272027850151062,0.413376331329346,-0.374548435211182,0.141891479492188,0.427975654602051,-0.223008155822754,0.0530561208724976,0.258133888244629,-0.0437870025634766,4.57763671875e-05,0.0875730514526367,-0.0174107551574707,4.57614660263062e-05,0.0348224639892578,-1.3076171875,0.779091358184814,1.37289381027222,-0.922341823577881,0.482083320617676,0.802279949188232,-1.28080034255981,0.718641519546509,1.01203298568726,-0.533634185791016,0.215083599090576,0.708419799804688,-0.955363273620605,0.525122165679932,2.00088787078857,-1.13083124160767,0.375576496124268,0.965540885925293,-1.62671136856079,0.590461730957031,1.1269063949585,-1.55928516387939,0.60658073425293,1.50315713882446,-1.66362905502319,0.381349086761475,1.23895978927612,-1.1532130241394,0.202535629272461,0.905195236206055,-1.5915699005127,0.240335941314697,1.60168313980103,-1.09360265731812,0.112430095672607, -2.06551027297974,-0.814552307128906,-0.773806095123291,1.51357173919678,-1.24971675872803,-0.329543113708496,1.67502117156982,-1.49701976776123,0.0391106605529785,1.40546274185181,-1.47579479217529,0.143168926239014,1.16267347335815,-0.371504783630371,-0.884945392608643,1.5100154876709,-0.251954555511475,-0.485884666442871,0.808689594268799,-0.629468441009521,-0.48081111907959,0.825149536132813,-0.0946609973907471,-0.592116355895996,1.2390308380127,-0.151287078857422,-0.35060977935791,0.590707778930664,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0742201805114746,-0.0579214096069336,0.053156852722168,-0.0929169654846191,-0.305057525634766,0.927199363708496,-0.157821178436279,-0.216730117797852,0.385636329650879,-0.0766899585723877,-0.0962276458740234,0.586169242858887,-0.110671997070313,-0.11202335357666,0.191343307495117,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.017167329788208,-0.0140609741210938,-0.0736160278320313,-0.0240023136138916,-0.0334186553955078,0.0380430221557617,-0.0280845165252686,0.0168209075927734,0.269829750061035,-0.00370132923126221,0.0312986373901367,0.0677261352539063,0.0303030014038086,0.00900554656982422,-0.0528011322021484,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.000813007354736328,0.00190639495849609,0.00374507904052734,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-1.05209541320801,-0.356701374053955,0.865079879760742,-1.21054267883301,-0.174500942230225,0.937239170074463,-0.0681958198547363,4.57763671875e-05,0.136391878128052,-0.192473888397217, -4.57763671875e-05,0.38494873046875,-0.465262889862061,-0.228355884552002,0.554149627685547,-1.04614114761353,-0.0202617645263672,0.858506202697754,-0.0558652877807617,4.57763671875e-05,0.111731290817261,-0.181558132171631,4.57763671875e-05,0.363116979598999,-0.530718326568604,-0.0867462158203125,0.670158863067627,-0.814110279083252,-0.0201897621154785,0.666767597198486,-1.11972522735596,0.0399999618530273,0.834645748138428,-0.528068065643311,-0.0615401268005371,0.51902437210083,-0.739956855773926,-0.0659852027893066,0.705760955810547,-0.728589534759521,0.0179581642150879,0.656323432922363,-0.667332172393799,0.114625930786133,0.663304805755615,-0.179313182830811,-0.000979423522949219,0.356032609939575,-0.196282863616943,-0.00199437141418457,0.389111518859863,-0.207540512084961,-0.0712509155273438,0.410078048706055,-0.204543590545654,-0.0141603946685791,0.329749822616577,-0.171186923980713,-0.0153884887695313,0.250921249389648,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,1.02519989013672e-05,0.000253081321716309,7.15255737304688e-05,-0.00128006935119629,0.00890529155731201,0.00653553009033203,-0.0100135803222656,0.0222147703170776,0.0300369262695313,-0.0294094085693359,0.026430606842041,0.0585298538208008,-0.0656723976135254,0.0240135788917542,0.111780166625977,-0.0764603614807129,0.0207953453063965,0.193331241607666,-0.0384883880615234,0.00981900095939636,0.15935230255127,-0.00304269790649414,0.000259369611740112,0.126979351043701,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078, -9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,5.340576171875e-05,0.00113832950592041,0.000375747680664063,0,4.57763671875e-05,0,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00282526016235352,4.57763671875e-05,0.00565141439437866,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00124645233154297,4.57763671875e-05,0.00249266624450684,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00307703018188477,4.57763671875e-05,0.00615447759628296,-0.0253543853759766,4.57763671875e-05,0.0507098436355591,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00278711318969727,4.57763671875e-05,0.00557500123977661,-0.00940132141113281,4.57763671875e-05,0.0188028812408447,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000574111938476563,4.57763671875e-05,0.00114792585372925,-0.016045093536377,4.57763671875e-05,0.0320912599563599,-0.0222930908203125,4.57763671875e-05,0.0445866584777832,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00107145309448242,4.57763671875e-05,0.00214308500289917,-0.00653839111328125,4.57763671875e-05,0.013077437877655,-0.00662565231323242,4.57763671875e-05,0.0132526159286499,-0.0020294189453125,4.57763671875e-05,0.00405991077423096,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000258445739746094,0.00140213966369629,-0.000211119651794434,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0140867233276367,-0.00186610221862793,0.0659031867980957,0,4.57763671875e-05,0,-0.000481128692626953,4.57763671875e-05,0.0009613037109375,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.087557315826416,-7.20024108886719e-05,0.175322771072388,-0.0694007873535156,-0.00223994255065918,0.168082475662231,-0.0460281372070313,0.00024867057800293,0.0952138900756836,-0.0303611755371094,4.56571578979492e-05,0.0607223510742188,-0.0187702178955078,4.57763671875e-05,0.0375411510467529,-2.47955322265625e-05,4.57763671875e-05,4.88758087158203e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0018305778503418,4.57763671875e-05,0.00366169214248657,-0.0291404724121094,4.57763671875e-05,0.0582817792892456,-0.0681333541870117,4.57763671875e-05,0.13626754283905,-0.0813484191894531,4.57763671875e-05,0.162697076797485,-0.0337252616882324, -4.57763671875e-05,0.0674507617950439,-0.0342960357666016,4.57763671875e-05,0.06859290599823,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05, --2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06, -0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.000168323516845703,4.57763671875e-05,0.000338315963745117,-4.29153442382813e-06,4.57763671875e-05,1.02519989013672e-05,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, -1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05, -2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06, -0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0.0603125095367432,-0.00146269798278809,0.0291624069213867,0.0653135776519775,0.00411868095397949,0.0319242477416992,0.0717939138412476,0.0122079849243164,0.0444698333740234,0.0785301327705383,0.0220575332641602,0.0776348114013672,0.0842498540878296,0.0310795307159424,0.109946250915527,0.0907691717147827,0.0417277812957764,0.147930145263672,0.060210645198822,-0.0029597282409668,0.0315608978271484,0.0625045001506805,-0.00297665596008301,0.0376968383789063,0.068547785282135,0.000679254531860352,0.0474643707275391,0.0730924904346466,0.00469398498535156,0.0546836853027344,0.08048015832901,0.0120267868041992,0.0634231567382813,0.0879670977592468,0.0201320648193359,0.0731544494628906,0.0915313959121704,0.026479959487915,0.0968685150146484,0.0936827063560486,0.0338990688323975,0.130402565002441,0.0966775417327881,0.0462436676025391,0.168240547180176,0.0730260610580444,0.00786328315734863,0.0457592010498047,0.0788542032241821,0.0144553184509277,0.0557765960693359,0.08309006690979,0.0210418701171875,0.0773048400878906,0.0876574516296387,0.029716968536377,0.111587524414063,0.0672163367271423,0.00198149681091309,0.0408649444580078,0.0231020543633349,-0.025029182434082,0.0179281234741211,0.0115948431157449,0.00667524337768555,0.0213642120361328,0.0328217744827271,-0.0296263694763184,0.0267877578735352,0.075814962387085,0.0644741058349609,0.428897857666016,0.04522705078125,0.13163948059082,0.607892036437988,0.0498461723327637,-0.0162973403930664,0.113898277282715,0.0740776062011719,0.0180950164794922,0.262751579284668,0.0452369451522827,-0.0262598991394043,0.0708656311035156,0.0439265966415405,-0.0238165855407715,0.0464677810668945,0.0394489765167236,-0.026270866394043,0.0321493148803711,-0.0711033344268799, -0.144748687744141,0.770784378051758,-0.0892558097839355,0.143639087677002,0.862894058227539,-0.0171005725860596,0.0806674957275391,0.775216102600098,0.0612697601318359,0.0491290092468262,0.586565971374512,0.0922152996063232,0.0407323837280273,0.39898681640625,0.0423500537872314,0.0508937835693359,0.24345874786377,0.0235553979873657,0.0547356605529785,0.185766220092773,0.0212404727935791,0.0364193916320801,0.111922264099121,0.0236454010009766,0.0193171501159668,0.0499238967895508,0.0201236009597778,0.0149369239807129,0.0339565277099609,0.0159532725811005,0.0109105110168457,0.0280733108520508,0.076700560770405,0.00159263610839844,0.417016983032227,0.0619915872812271,0.00301790237426758,0.403645515441895,0.12699431180954,0.00738239288330078,0.471827507019043,0.267653822898865,0.0181756019592285,0.585397720336914,0.390979290008545,0.0401101112365723,0.755876541137695,0.52349317073822,0.0929255485534668,1.0847635269165,0.594368457794189,0.12542200088501,1.34188461303711,0.47240686416626,0.130880355834961,1.47902202606201,0.41059947013855,0.143818855285645,1.63209056854248,0.37555980682373,0.123701572418213,1.7311840057373,0.397211790084839,0.136543750762939,1.77730464935303,0.395420074462891,0.14130973815918,1.75236320495605,0.406593799591064,0.139073848724365,1.69548320770264,0.487781286239624,0.123972415924072,1.49551296234131,0.612424612045288,0.121927261352539,1.32989501953125,0.52317214012146,0.0970120429992676,1.04672718048096,0.419384777545929,0.0452890396118164,0.741824150085449,0.283147156238556,0.0234012603759766,0.59251594543457,0.137803763151169,0.00411033630371094,0.471415519714355,0.0699323564767838,-0.000354766845703125,0.403323173522949,0.0885624364236719,-0.00164079666137695,0.419951438903809,0.0145060876602656,-0.00393390655517578,0.0331525802612305,0.0153075456619263,-0.00652933120727539,0.034296989440918,0.0357978343963623,-0.00702762603759766,0.0556344985961914,0.0955557227134705,-0.00357818603515625,0.108292579650879,0.127790212631226,0.00384759902954102,0.177730560302734,0.20594322681427,0.0477972030639648, -0.370638847351074,0.338663339614868,0.103124141693115,0.619852066040039,0.365204572677612,0.1522216796875,0.793634414672852,0.296107769012451,0.157322406768799,0.840658187866211,0.205310583114624,0.137688159942627,0.911896705627441,0.184103488922119,0.112148284912109,1.04478454589844,0.218239068984985,0.0933880805969238,0.993690490722656,0.266822338104248,0.0989556312561035,0.824082374572754,0.388710021972656,0.146683216094971,0.85521125793457,0.313969612121582,0.0923476219177246,0.59220027923584,0.194828510284424,0.0508308410644531,0.384221076965332,0.14317786693573,0.0197248458862305,0.192501068115234,0.119518876075745,0.0148649215698242,0.119693756103516,0.0448671579360962,0.00540590286254883,0.0548477172851563,0.0136529505252838,0.00266027450561523,0.0285615921020508,0.020006764701975,0.0016779899597168,0.042017936706543,2.25360890908632e-05,2.33650207519531e-05,5.7220458984375e-06,3.98159027099609e-05,2.288818359375e-05,7.62939453125e-06,-0.227958202362061,-0.0549411773681641,0.44747257232666,-0.344064712524414,0.00674247741699219,0.675629138946533,-0.047072172164917,-0.0733017921447754,0.0487165451049805,-0.0799179077148438,-0.262475490570068,0.0380277633666992,-0.00673651695251465,0.0016019344329834,0.0159235000610352,0.00137782096862793,0.00176835060119629,-4.29153442382813e-05,0.000422179698944092,0.000573635101318359,-1.23977661132813e-05,-0.461037158966064,0.0269193649291992,0.836468696594238,-0.535700559616089,0.0162277221679688,0.935246467590332,-0.445451974868774,0.00911521911621094,0.780385494232178,-0.271408081054688,0.00930213928222656,0.499908924102783,-0.113525629043579,-0.000188827514648438,0.227436065673828,-0.0356531143188477,4.57763671875e-05,0.0713081359863281,-0.00805878639221191,4.57763671875e-05,0.016118049621582,-0.000261187553405762,0.000655174255371094,0.00189590454101563,-5.48362731933594e-06,5.62667846679688e-05,4.00543212890625e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,1.37974147837371e-29,4.57763671875e-05,0,1.53641994185809e-29,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.091090202331543, -4.57763671875e-05,0.182181835174561,-0.110629081726074,4.57763671875e-05,0.221258640289307,-0.0310518741607666,4.57763671875e-05,0.0621042251586914,-0.0666606426239014,4.57763671875e-05,0.13332200050354,-0.00697708129882813,4.57763671875e-05,0.0139544010162354,-5.5849552154541e-05,4.57763671875e-05,0.000112056732177734,0,4.57763671875e-05,0,-0.109734535217285,4.57763671875e-05,0.219469785690308,-0.0837774276733398,4.57763671875e-05,0.167555809020996,-0.0485594272613525,4.57763671875e-05,0.0971202850341797,-0.00761294364929199,4.57763671875e-05,0.0152273178100586,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,1.45414240907454e-29,4.57763671875e-05,1.43051147460938e-06,1.73472347597681e-18,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,1.30104260698261e-18,4.57763671875e-05,2.20537185668945e-06,1.68087296316736e-29,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06, -0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,1.28982296899908e-29,4.57763671875e-05,1.66893005371094e-06,1.69348870708276e-29,4.57763671875e-05,0,0,4.57763671875e-05,0,-4.64916229248047e-06,4.57763671875e-05,1.00135803222656e-05,-0.00875377655029297,4.57763671875e-05,0.0175085067749023,-0.041359543800354,4.57763671875e-05,0.0827198028564453,-0.128973484039307,4.57763671875e-05,0.257946968078613,-0.25335168838501,4.57763671875e-05,0.506703853607178,-0.367084980010986,4.57763671875e-05,0.734169960021973,-0.466518878936768,0.00283336639404297,0.92064905166626,-0.532763481140137,0.0118589401245117,1.01298666000366,-0.495234489440918,0.016932487487793,0.915375709533691,-0.369162082672119,0.00661468505859375,0.709118366241455,-0.192490339279175,4.57763671875e-05,0.384982585906982,-0.0676751136779785,0.000729560852050781,0.136476516723633,-0.0130739212036133,4.57763671875e-05,0.0261497497558594,-0.00206708908081055,4.57763671875e-05,0.00413608551025391,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,1.40932586880537e-29,4.57763671875e-05,1.43051147460938e-06,0,-0.000311195850372314,0,0,-0.000519618391990662,0,0.000934302806854248,-0.000879287719726563,0.000193595886230469,0.000162243843078613,-0.000111818313598633,3.33786010742188e-05,0.0899028182029724,-0.00349187850952148,0.346687316894531,0.14049831032753,-0.0209107398986816,0.35748291015625,-0.121630668640137,4.57763671875e-05,0.00466823577880859,-0.118788242340088,4.57763671875e-05,-0.0112161636352539,-0.0770387649536133, -4.57763671875e-05,0.0256862640380859,-0.0812835693359375,4.57763671875e-05,0.0447206497192383,0.0111265182495117,4.9591064453125e-05,0.100346565246582,-0.0052560567855835,4.9591064453125e-05,0.118742942810059,0.0543031692504883,5.86509704589844e-05,0.152242660522461,0.0381321907043457,6.00814819335938e-05,0.172468185424805,0.0875810384750366,-0.00198078155517578,0.206466674804688,0.0597066879272461,-0.000670433044433594,0.222519874572754,0.11832720041275,-0.0106453895568848,0.280047416687012,0.0721175074577332,-0.00249147415161133,0.282980918884277,-0.0436093807220459,4.91142272949219e-05,0.0803594589233398,-0.0305626392364502,4.9591064453125e-05,0.0598583221435547,-0.124475002288818,4.57763671875e-05,-0.0178194046020508,-0.123032093048096,4.57763671875e-05,-0.000267982482910156,-0.129390239715576,4.57763671875e-05,-0.0221796035766602,-0.124817609786987,4.57763671875e-05,-0.00444126129150391,-0.131563663482666,4.57763671875e-05,-0.014369010925293,-0.124322414398193,4.57763671875e-05,-0.000194549560546875,-0.129973173141479,4.57763671875e-05,-0.00170612335205078,-0.122556209564209,4.57763671875e-05,0.00566291809082031,-0.0887587070465088,4.57763671875e-05,0.0467863082885742,-0.112320184707642,4.57763671875e-05,0.0274744033813477,-0.0504524707794189,4.9591064453125e-05,0.0806388854980469,-0.0750901699066162,4.57763671875e-05,0.0616674423217773,-0.0249207019805908,4.9591064453125e-05,0.100232124328613,-0.0120797157287598,4.9591064453125e-05,0.119688987731934,0.0256894826889038,4.9591064453125e-05,0.144893646240234,0.0324980020523071,4.9591064453125e-05,0.173041343688965,0.0636055469512939,0.00046539306640625,0.196734428405762,0.0531833171844482,-0.000680923461914063,0.223200798034668,0.0863432288169861,0.00305414199829102,0.254944801330566,0.0649380087852478,-0.00262594223022461,0.282669067382813,0.106033444404602,0.0101280212402344,0.327436447143555,0.0809991955757141,-0.00349760055541992,0.348152160644531,0.123056352138519,-0.0113115310668945,0.346755027770996,0.103726863861084,-0.00615978240966797,0.277449607849121, -0.0814436674118042,-0.00138664245605469,0.211535453796387,0.0513720512390137,6.00814819335938e-05,0.159921646118164,0.00556313991546631,4.9591064453125e-05,0.107809066772461,-0.0346801280975342,4.9591064453125e-05,0.0682640075683594,-0.0772368907928467,4.57763671875e-05,0.0340194702148438,-0.119433879852295,4.57763671875e-05,-0.00314712524414063,-0.122930288314819,4.57763671875e-05,-0.00858688354492188,-0.12684440612793,4.57763671875e-05,-0.0126476287841797,-0.127958536148071,4.57763671875e-05,-0.00665569305419922,-0.126146078109741,4.57763671875e-05,0.00235557556152344,-0.0969128608703613,4.57763671875e-05,0.0371112823486328,-0.0589587688446045,4.9591064453125e-05,0.0681209564208984,-0.0122796297073364,4.9591064453125e-05,0.107086181640625,0.0388325452804565,4.9591064453125e-05,0.157730102539063,0.069665789604187,0.000472545623779297,0.209334373474121,0.0867360830307007,0.00162649154663086,0.26375675201416,0.106139153242111,0.00605583190917969,0.332069396972656,0.103304356336594,-0.00604963302612305,0.346283912658691,0.085151195526123,-0.00377273559570313,0.280163764953613,0.0690734386444092,-0.000956058502197266,0.21795654296875,0.0432482957839966,6.00814819335938e-05,0.167815208435059,-0.0010678768157959,4.9591064453125e-05,0.114607810974121,-0.0399441719055176,4.91142272949219e-05,0.0756397247314453,-0.0796360969543457,4.57763671875e-05,0.0407590866088867,-0.120520353317261,4.57763671875e-05,0.00174045562744141,-0.122784614562988,4.57763671875e-05,-0.00324440002441406,-0.125582218170166,4.57763671875e-05,-0.00730800628662109,-0.125608444213867,4.57763671875e-05,-0.00245857238769531,-0.123834371566772,4.57763671875e-05,0.00451278686523438,-0.0880992412567139,4.57763671875e-05,0.0432329177856445,-0.0495166778564453,4.9591064453125e-05,0.0754566192626953,-0.00827908515930176,4.9591064453125e-05,0.11475944519043,0.0386302471160889,4.9591064453125e-05,0.167208671569824,0.0633597373962402,-6.62803649902344e-05,0.217529296875,0.0770408511161804,-0.000621318817138672,0.275382041931152,0.0948715209960938,0.000863075256347656, -0.342033386230469,0.0855074822902679,-0.0292229652404785,0.229031562805176,0.0570191144943237,-0.0191826820373535,0.162273406982422,0.0287865400314331,-0.00409078598022461,0.115525245666504,0.00710487365722656,-8.0108642578125e-05,0.086207389831543,-0.0139720439910889,4.9591064453125e-05,0.0527133941650391,-0.0282785892486572,4.9591064453125e-05,0.0294885635375977,-0.0495901107788086,4.57763671875e-05,0.003265380859375,-0.0770242214202881,4.57763671875e-05,-0.0308389663696289,-0.0875155925750732,4.57763671875e-05,-0.0449533462524414,-0.0913500785827637,4.57763671875e-05,-0.0456762313842773,-0.0938806533813477,4.57763671875e-05,-0.0396337509155273,-0.0962648391723633,4.57763671875e-05,-0.0255403518676758,-0.0919787883758545,4.57763671875e-05,-0.00289630889892578,-0.0721676349639893,4.57763671875e-05,0.020721435546875,0.0413184463977814,0.00617790222167969,0.196380615234375,0.0271099209785461,0.00163507461547852,0.15288257598877,0.0136791467666626,0.000175952911376953,0.118377685546875,-0.00927853584289551,4.9591064453125e-05,0.0846500396728516,-0.0386874675750732,4.9591064453125e-05,0.0512475967407227,0.114856392145157,-0.0240645408630371,0.295466423034668,0.0927788615226746,-0.0126490592956543,0.222781181335449,0.0659645795822144,-0.0023808479309082,0.161237716674805,0.0396106243133545,4.9591064453125e-05,0.117231369018555,0.0061182975769043,4.9591064453125e-05,0.0769128799438477,-0.0258414745330811,4.9591064453125e-05,0.0449686050415039,-0.0597963333129883,4.57763671875e-05,0.0174455642700195,-0.0934689044952393,4.57763671875e-05,-0.014683723449707,-0.100438356399536,4.57763671875e-05,-0.0234460830688477,-0.106300830841064,4.57763671875e-05,-0.0291614532470703,-0.110231399536133,4.57763671875e-05,-0.024754524230957,-0.110574007034302,4.57763671875e-05,-0.0111017227172852,-0.102506875991821,4.57763671875e-05,0.0110616683959961,-0.0752308368682861,4.57763671875e-05,0.0422754287719727,-0.0335657596588135,4.91142272949219e-05,0.0764007568359375,0.00526654720306396,4.9591064453125e-05,0.113943099975586,0.0367051362991333, -0.000369548797607422,0.156717300415039,0.057894229888916,0.00276374816894531,0.205227851867676,0.0757105946540833,0.00967979431152344,0.265080451965332,0.0548308491706848,-0.0339045524597168,0.113742828369141,0.0374653935432434,-0.0197005271911621,0.0963468551635742,0.0135055780410767,-0.00595712661743164,0.0749654769897461,-0.00350439548492432,-0.000132560729980469,0.052617073059082,-0.0148172378540039,4.9591064453125e-05,0.0327854156494141,-0.0232219696044922,4.57763671875e-05,0.0175638198852539,-0.041820764541626,4.57763671875e-05,-0.0038604736328125,-0.0572435855865479,4.57763671875e-05,-0.0277767181396484,-0.0712871551513672,4.57763671875e-05,-0.0124416351318359,-0.0760440826416016,4.57763671875e-05,-0.0312719345092773,-0.0802950859069824,4.57763671875e-05,-0.0452289581298828,-0.0808768272399902,4.57763671875e-05,-0.0502309799194336,-0.0691497325897217,4.57763671875e-05,-0.0418672561645508,0.0157101154327393,0.000753402709960938,0.119224548339844,0.00628578662872314,7.15255737304688e-05,0.0946502685546875,-0.0018002986907959,4.9591064453125e-05,0.0759048461914063,-0.0141143798828125,4.9591064453125e-05,0.0542755126953125,-0.0338106155395508,4.57763671875e-05,0.0305604934692383,-0.0565090179443359,4.57763671875e-05,0.00664043426513672,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,0.00421679019927979,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-1.43051147460938e-06,5.340576171875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05, -0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,6.91413879394531e-06,4.26769256591797e-05,0,0.000178694725036621,-0.000128030776977539,3.814697265625e-05,0.000106394290924072,-5.62667846679688e-05,2.19345092773438e-05,0.000885248184204102,-0.000830650329589844,0.000185012817382813,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.012364387512207,4.57763671875e-05,0.0064239501953125,-0.0200600624084473,4.57763671875e-05,-0.00381088256835938,-0.0256261825561523,4.57763671875e-05,-0.0144882202148438,-0.0378260612487793,4.57763671875e-05,-0.0245857238769531,-0.0386185646057129,4.57763671875e-05,-0.024134635925293,-0.046332836151123,4.57763671875e-05,-0.0263347625732422,-0.0454823970794678,4.57763671875e-05,-0.0201778411865234,-0.0395617485046387,4.57763671875e-05,-0.00847148895263672,-0.0305740833282471,4.57763671875e-05,0.00187873840332031,-0.0187242031097412,4.57763671875e-05,0.0132761001586914,-0.00800907611846924, -4.9591064453125e-05,0.0254793167114258,-0.000470280647277832,4.9591064453125e-05,0.0361595153808594,0.00523191690444946,4.9591064453125e-05,0.0464000701904297,0.00944387912750244,4.9591064453125e-05,0.0573959350585938,0.0253473818302155,-0.0268192291259766,0.00975322723388672,0.0364633798599243,-0.0325846672058105,0.0351190567016602,0.0365979969501495,-0.0283854007720947,0.0491018295288086,0.0237701237201691,-0.024594783782959,0.00744724273681641,0.0243672430515289,-0.0262298583984375,0.0104866027832031,0.0306651294231415,-0.034416675567627,0.0201835632324219,0.0209643244743347,-0.0227327346801758,0.00934314727783203,0.024369478225708,-0.0284430980682373,0.0177984237670898,0.0144584774971008,-0.0153779983520508,0.00549983978271484,0.0144740045070648,-0.0166592597961426,0.00910186767578125,0.0111609697341919,-0.0114388465881348,0.00324058532714844,0.00731664896011353,-0.00753402709960938,0.00224685668945313,0.00642353296279907,-0.00633740425109863,0.00133323669433594,0.0037921667098999,-0.00372099876403809,0.000787734985351563,0.0040585994720459,-0.00398588180541992,0.000843048095703125,0.00163662433624268,-0.00157785415649414,0.000340461730957031,0.00184917449951172,-0.00178909301757813,0.000384330749511719,0.000434279441833496,-0.000382184982299805,9.05990600585938e-05,0.00183796882629395,-0.00177788734436035,0.000382423400878906,0.000229358673095703,-0.00017857551574707,4.86373901367188e-05,0.00770890712738037,-0.00761532783508301,0.00159931182861328,0.00657820701599121,-0.00466465950012207,0.0285434722900391,0.0233488082885742,-0.0164003372192383,0.0429563522338867,0.0175461769104004,-0.0175278186798096,0.00395011901855469,0.004020094871521,-0.00394773483276367,0.000834465026855469,0.00200378894805908,-0.00194287300109863,0.000416755676269531,0.0264965891838074,-0.0284459590911865,0.0115108489990234,0.0255756378173828,-0.0281357765197754,0.0129375457763672,0.0217279195785522,-0.024205207824707,0.0116729736328125,0.0136995911598206,-0.0149056911468506,0.00606250762939453,0.00936782360076904,-0.00965285301208496, -0.00286006927490234,0.00528275966644287,-0.0052030086517334,0.00109672546386719,0.00315093994140625,-0.00308346748352051,0.000654220581054688,0.00137901306152344,-0.00132155418395996,0.000287055969238281,0.00117135047912598,-0.00111508369445801,0.000244140625,0.00328576564788818,-0.00321745872497559,0.000682830810546875,0.00733834505081177,-0.00724697113037109,0.00152301788330078,0.01719069480896,-0.0172219276428223,0.00398826599121094,0.024316132068634,-0.0254127979278564,0.00828456878662109,0.0249825716018677,-0.0263214111328125,0.00915050506591797,0.0167893171310425,-0.0168662071228027,0.00400733947753906,0.00692206621170044,-0.00683307647705078,0.00143623352050781,0.00269722938537598,-0.00263237953186035,0.000560760498046875,0.000690817832946777,-0.000637292861938477,0.000144004821777344,0.000845909118652344,-0.000791549682617188,0.000176429748535156,0.00230169296264648,-0.00223898887634277,0.000478744506835938,0.00462597608566284,-0.00454998016357422,0.000960350036621094,0.00835525989532471,-0.0086066722869873,0.00255680084228516,0.0140905380249023,-0.0155677795410156,0.00688838958740234,0.0220258235931396,-0.0248768329620361,0.0129404067993164,0.027087390422821,-0.0301637649536133,0.0151920318603516,0.0279492437839508,-0.030134916305542,0.0130252838134766,0.0481632053852081,-0.0340099334716797,0.0757474899291992,0.00575399398803711,-0.00584125518798828,0.00159549713134766,0.00280129909515381,-0.00273585319519043,0.000581741333007813,0.00168120861053467,-0.00162196159362793,0.000349998474121094,0.00298506021499634,-0.00291848182678223,0.000619888305664063,0.000514626502990723,-0.000462055206298828,0.000107765197753906,0.00102889537811279,-0.00097346305847168,0.000214576721191406,0.000152826309204102,-0.00010228157043457,3.24249267578125e-05,6.19888305664063e-06,4.33921813964844e-05,0,0.00148022174835205,-0.00142216682434082,0.000308036804199219,0.000967621803283691,-0.000912666320800781,0.000201225280761719,0.000488400459289551,-0.000436067581176758,0.000102043151855469,0.000143289566040039,-9.29832458496094e-05, -3.0517578125e-05,4.76837158203125e-06,4.48226928710938e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000106334686279297,-5.60283660888672e-05,2.288818359375e-05,0,4.9591064453125e-05,0,-0.000744342803955078,-0.000132322311401367,0.024073600769043,-0.0045851469039917,4.9591064453125e-05,0.0178050994873047,-0.00724434852600098,4.9591064453125e-05,0.0130605697631836,-0.00467777252197266,4.57763671875e-05,0.00712299346923828,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000118494033813477,-6.81877136230469e-05,2.57492065429688e-05,0.00052344799041748,-0.000470876693725586,0.000109672546386719,0.00105667114257813,-0.00100111961364746,0.000220298767089844,0.00165319442749023,-0.00159430503845215,0.000344276428222656,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,1.25765800476074e-05,3.71932983398438e-05,2.86102294921875e-06,2.26497650146484e-06,4.74452972412109e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06, -0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-6.67572021484375e-06,7.36713409423828e-05,-7.62939453125e-06,0,4.57763671875e-05,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,8.13007354736328e-05,-4.76837158203125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, -4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06, -0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06, -0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05, -3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, -0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06, -0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0, -4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0.0115255117416382,-0.0114102363586426,0.00239086151123047,0.0087246298789978,-0.00862526893615723,0.00181007385253906,0.00613337755203247,-0.00604891777038574,0.00127315521240234,0.00483870506286621,-0.0047614574432373,0.00100421905517578,0.00419068336486816,-0.00411725044250488,0.0008697509765625,0.00353085994720459,-0.00346112251281738,0.000733375549316406,0.0138244032859802,-0.0137186050415039,0.00292110443115234,0.0168894529342651,-0.0168626308441162,0.00378513336181641,0.0186611413955688,-0.0187015533447266,0.00433444976806641,0.0195284485816956,-0.0194871425628662,0.00441932678222656,0.0178924798965454,-0.0177679061889648,0.00378513336181641,0.0132693648338318,-0.0131442546844482,0.00275325775146484,0.0083199143409729,-0.00822281837463379,0.00172615051269531,0.00550222396850586,-0.00542140007019043,0.00114250183105469,0.00373363494873047,-0.0036628246307373,0.000775337219238281,0.0122660398483276,-0.0121464729309082,0.00254440307617188,0.00933539867401123,-0.00923252105712891,0.00193691253662109,0.00691050291061401,-0.00682163238525391,0.001434326171875,0.0051196813583374,-0.00504088401794434,0.00106239318847656,0.0147477388381958,-0.0146265029907227,0.00308895111083984,0.0174013078212738,-0.0195126533508301,0.0108499526977539,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000140070915222168,-8.96453857421875e-05,2.95639038085938e-05,0.00319629907608032,-0.00321626663208008,0.000870704650878906,0.00994426012039185,-0.0109128952026367,0.00479984283447266,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0.000127255916595459,0.000134944915771484,0.000262260437011719,0.00147277116775513,0.00103616714477539,0.00302886962890625,0.00515854358673096,0.00320053100585938,0.00994682312011719,0.0559877455234528,-0.000159740447998047,0.344879150390625,0.0382101535797119,-0.000724315643310547,0.283628463745117,0.0256941318511963,-0.000164985656738281,0.226056098937988,0.00368046760559082,6.00814819335938e-05,0.17790412902832,-0.0408422946929932,4.91142272949219e-05,0.122526168823242,-0.0805466175079346,4.57763671875e-05,0.0771522521972656,-0.119409084320068,4.57763671875e-05,0.0369710922241211,-0.147720098495483,4.57763671875e-05,-0.00371265411376953,-0.156678438186646,4.57763671875e-05,-0.019129753112793,-0.158758640289307,4.57763671875e-05,-0.0274467468261719,-0.158167600631714,4.57763671875e-05,-0.0217342376708984,-0.155740976333618,4.57763671875e-05,-0.00566482543945313,-0.12076473236084,4.57763671875e-05,0.0392923355102539,-0.0809054374694824,4.57763671875e-05,0.0833396911621094,-0.0413975715637207,4.91142272949219e-05,0.125871658325195,0.00417304039001465,4.9591064453125e-05,0.178096771240234,0.031165599822998,-0.000363826751708984,0.226388931274414,0.0472382307052612,-0.0017085075378418,0.283908843994141,0.0632076859474182,-0.0021815299987793,0.347779273986816,0.00532501935958862,-0.00298786163330078,0.0153007507324219,0.000998854637145996,-0.00139427185058594,0.00462532043457031,2.88486480712891e-05,-0.000117778778076172,0.000335693359375,1.19209289550781e-07,4.9591064453125e-05,0,8.34465026855469e-07,4.57763671875e-05,0,4.76837158203125e-07,4.57763671875e-05,0,0,4.57763671875e-05,0,1.43051147460938e-06,4.57763671875e-05,0,2.38418579101563e-07,4.57763671875e-05,0,7.15255737304688e-07,4.57763671875e-05,0,-4.76837158203125e-07,4.57763671875e-05,0,9.5367431640625e-07,4.57763671875e-05,0,-4.76837158203125e-07,4.57763671875e-05,0,-7.15255737304688e-07,4.57763671875e-05,0,-3.57627868652344e-07,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00013267993927002,0.000110626220703125, -0.000315666198730469,0.00176030397415161,-0.000157833099365234,0.00529670715332031,0.00786587595939636,0.000425815582275391,0.0186290740966797,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, -0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06, -3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 - } - Normals: *24099 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, -0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, --0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, --1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, -0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, -0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, --0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, -3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, --0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, --0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, --0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, --0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, -0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, --0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, --0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, -0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, -0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, -0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, -0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, --0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, -0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, -0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, -0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, -0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, -0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, -0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, --1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, -1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, -0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, --1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, --0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, --0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, --0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, --0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, -0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, --1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, --0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, --0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, -0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, -1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, -0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, -0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, --0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, -0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, -1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, -0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, -1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, --1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, -1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, -0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, --0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, -0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, -0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, -0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, -0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, -0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008, -1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725, -0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397, --0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403, --0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725, -0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397, --0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513, -0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882, -0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183, --0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171, -0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949, -1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573, -0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265, --0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102, -0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853, -0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868, --0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439, -0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784, -0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456, -0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415, -0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229, -1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123, -1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998, -1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356, -0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413, --1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632, --0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368, --0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621, -0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802, --0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883, --1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984, --0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193, --0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867, --0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607, --0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346, --0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263, --1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784, -0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208, --1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694, -0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266, --0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709, --0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695, --1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901, --0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686, -0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874, --0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368, --1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843, --0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535, --0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957, -0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487, -0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031, --1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867, --1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023, --1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025, --0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785, -0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809, --1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731, --1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885, --1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671, --1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257, -0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835, --0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219, --1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225, --1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308, --1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291, --1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, --0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209, --0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725, --0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392, -1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102, --0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208, --0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207, --0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127, --1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673, --0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602, -0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554, --1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722, --1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228, --1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647, -0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336, -1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798, -0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394, --0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393, -0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574, -1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375, --0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363, --0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974, --0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862, --0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116, -0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151, --1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972, --0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864, -0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675, -1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652, --0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615, --1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769, --0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648, --0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759, --0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994, --0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203, --0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342, --0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342, -0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777, --0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752, --1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568, --0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806, --0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325, --0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918, -0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643, -0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906, -1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104, --0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598, --0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116, --0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018, --0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525, --0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977, --0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347, -1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029, --0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969, -0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209, -0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795, --0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036, -0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939, --1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028, --1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.83026814460754, -0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608, --1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562, --0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994, -0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479, --1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427, -0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481, --0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403, --0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361, --0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583, --0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619, --1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206, --0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667, -0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428, -0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004, --0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201, -0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662, -0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977, --1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385, --0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151, --0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966, --1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904, --0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977, --0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906, --0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938, -0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727, --0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067, -0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552, --0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908, --1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248, --0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894, -0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083, -1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392, -1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562, -0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177,-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805454333152, "Geometry::Cheek_Suck", "Shape" { - Version: 100 - Indexes: *404 { - a: 5979,5980,5981,5982,5991,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6021,6022,6023,6024,6025,6026,6027,6028,6040,6041,6042,6043,6044,6045,6046,6047,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6070,6071,6078,6079,6080,6081,6082,6083,6084,6085,6086,6095,6096,6097,6098,6099,6100,6101,6102,6103,6107,6108,6109,6131,6132,6133,6134,6135,6152,6153,6154,6169,6171,6173,6175,6179,6181,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6383,6384,6385,6386,6387,6391,6392,6410,6411,6414,6415,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6517,6518,7167,7168,7169,7170,7174,7175,7176,7177,7178,7179,7180,7191,7192,7193,7194,7195,7196,7197,7198,7199,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7229,7230,7231,7232,7236,7237,7238,7239,7240,7241,7242,7243,7244,7317,7318,7319,7320,7321,7322,7361,7362,7363,7364,7373,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7403,7404,7405,7406,7407,7408,7409,7410,7422,7423,7424,7425,7426,7427,7428,7429,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7452,7453,7460,7461,7462,7463,7464,7465,7466,7467,7468,7477,7478,7479,7480,7481,7482,7483,7484,7485,7489,7490,7491,7513,7514,7515,7516,7517,7534,7535,7536,7551,7553,7555,7557,7561,7563,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7765,7766,7767,7768,7769,7773,7774,7792,7793,7796,7797,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7899,7900,8547,8548,8549,8550,8554,8555,8556,8557,8558,8559,8560,8570,8571,8572,8573,8574,8575,8576,8577,8578,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8604,8605,8606,8607,8611,8612,8613,8614,8615,8616,8617,8618,8619,8684,8685,8686,8687,8688,8689 - } - Vertices: *1212 { - a: 0.0545086860656738,0.00699329376220703,0.00427436828613281,0.0631110668182373,0.00683259963989258,0.00446224212646484,0.00381231307983398,0.000863552093505859,0.000585556030273438,0.00570392608642578,0.00108146667480469,0.0006561279296875,2.86102294921875e-06,0,-1.9073486328125e-06,0.0827200412750244,0.00837135314941406,0.00530529022216797,0.0616199970245361,0.00750398635864258,0.00442600250244141,0.102176427841187,0.010282039642334,0.00630569458007813,0.0697081089019775,0.00814247131347656,0.00475025177001953,0.0993554592132568,0.0110201835632324,0.00663948059082031,0.0643336772918701,0.00781583786010742,0.00457382202148438,0.0825188159942627,0.0100650787353516,0.00637340545654297,0.0560104846954346,0.00723075866699219,0.00435256958007813,0.00660848617553711,0.00126314163208008,0.000761985778808594,0.041903018951416,0.00776052474975586,0.00461101531982422,3.33786010742188e-06,0,-1.9073486328125e-06,0.014742374420166,0.00273656845092773,0.00171375274658203,0.000276803970336914,4.62532043457031e-05,2.86102294921875e-05,0.00447487831115723,0.000871181488037109,0.000532150268554688,0.0576918125152588,0.00683307647705078,0.00432014465332031,0.0701711177825928,0.00785207748413086,0.00485610961914063,0.0838692188262939,0.00911521911621094,0.00560188293457031,0.0799834728240967,0.00925493240356445,0.00562667846679688,0.0678634643554688,0.00852823257446289,0.00535869598388672,0.0185437202453613,0.00357913970947266,0.00214004516601563,0.00327134132385254,0.000580787658691406,0.000379562377929688,0.00526928901672363,0.00100231170654297,0.000606536865234375,0.0554921627044678,0.00692272186279297,0.00432872772216797,0.0644149780273438,0.00759553909301758,0.00466346740722656,0.0746603012084961,0.00847244262695313,0.00520610809326172,0.069697380065918,0.0083155632019043,0.00505828857421875,0.0599210262298584,0.00767135620117188,0.00479221343994141,0.0102343559265137,0.00195693969726563,0.00117969512939453,0.000346183776855469,5.76972961425781e-05,3.62396240234375e-05,8.46385955810547e-05,2.33650207519531e-05, -1.81198120117188e-05,0.00710892677307129,0.00197744369506836,0.00153255462646484,0.0307555198669434,0.00855827331542969,0.00653648376464844,0.1734459400177,0.0173053741455078,0.0157938003540039,0.260770559310913,0.01983642578125,0.0103521347045898,0.283731698989868,0.0222158432006836,0.00242519378662109,0.286908864974976,0.0259099006652832,0.00584030151367188,0.264732360839844,0.0352945327758789,0.0196704864501953,0.193708658218384,0.0334963798522949,0.0225124359130859,0.10844874382019,0.0206336975097656,0.0126943588256836,7.74860382080078e-06,1.43051147460938e-06,0,0.0203628540039063,0.0036168098449707,0.00240039825439453,0.00402116775512695,0.00102853775024414,0.00075531005859375,0.0713415145874023,0.00737762451171875,0.00488567352294922,0.104624509811401,0.00988483428955078,0.00575160980224609,0.13650107383728,0.0122156143188477,0.00681591033935547,0.147218704223633,0.0151157379150391,0.00840377807617188,0.127811431884766,0.0139265060424805,0.0091400146484375,0.087662935256958,0.0142011642456055,0.00906944274902344,0.0391547679901123,0.00738954544067383,0.00455570220947266,0.00425148010253906,0.000720024108886719,0.000499725341796875,0.000673770904541016,0.000187397003173828,0.00014495849609375,0.0136668682098389,0.00380134582519531,0.00294685363769531,0.101882457733154,0.0258636474609375,0.0224065780639648,0.314298152923584,0.038963794708252,0.0309972763061523,0.274093151092529,0.0515999794006348,0.0346736907958984,0.417988777160645,0.0455131530761719,0.0179986953735352,0.573041915893555,0.0487828254699707,0.0264158248901367,0.642817497253418,0.0658769607543945,0.0515890121459961,0.481409549713135,0.0316057205200195,0.00435161590576172,0.000380873680114746,6.38961791992188e-05,4.1961669921875e-05,0.0299556255340576,0.00527667999267578,0.00355243682861328,0.156131029129028,0.0296821594238281,0.0183820724487305,0.00361108779907227,-2.00271606445313e-05,0.000504016876220703,0.00436973571777344,-0.00220572948455811,0.000896453857421875,0.0370573997497559,-0.0144606828689575,0.00704431533813477,0.00242757797241211, --0.00122523307800293,0.000497817993164063,0.0824093818664551,-0.0108017921447754,0.00475025177001953,0.0960988998413086,-0.0247530937194824,0.0101795196533203,0.00857973098754883,-0.00433075428009033,0.00175952911376953,0.0172085762023926,-0.00058436393737793,0.000286102294921875,0.00444412231445313,0.000842094421386719,0.000524997711181641,0.0330352783203125,-0.00155544281005859,-0.00158500671386719,0.0140600204467773,-0.00127601623535156,-0.00568962097167969,4.62532043457031e-05,-2.09808349609375e-05,-5.31673431396484e-05,0.00490522384643555,0,0.000719070434570313,0.00249290466308594,-0.000644683837890625,-0.00755214691162109,0.0112917423248291,0.00314092636108398,0.00243473052978516,0.108549833297729,0.025627613067627,0.0192975997924805,0.420191764831543,0.0516371726989746,-0.00186824798583984,0.645887851715088,0.0880222320556641,-0.0984201431274414,0.657078981399536,0.0684075355529785,-0.21234130859375,0.639330863952637,-0.00280237197875977,-0.0488948822021484,0.488193035125732,0.0602998733520508,0.0350370407104492,0.263581275939941,0.0490007400512695,0.0298748016357422,0.136419057846069,0.0254945755004883,0.0160102844238281,0.0213534832000732,0.00368213653564453,0.0025482177734375,0.000787734985351563,0.000219106674194336,0.000169754028320313,0.000130176544189453,3.62396240234375e-05,2.76565551757813e-05,0.0252549648284912,0.00702404975891113,0.00544357299804688,0.0314173698425293,0.00182700157165527,0.00178432464599609,0.221463203430176,0.0161831378936768,0.0173625946044922,0.187217235565186,-0.00262904167175293,0.00648403167724609,0.536834716796875,0.0374431610107422,-0.0134153366088867,0.645248889923096,0.154645919799805,-0.139743804931641,0.617063999176025,0.08138108253479,-0.0628242492675781,0.374299049377441,-0.0298254489898682,0.0152530670166016,0.559171676635742,0.0611326694488525,-0.0468964576721191,0.336005210876465,-0.0550546646118164,0.0250411033630371,0.325201511383057,0.0913379192352295,-0.0265474319458008,0.116791248321533,-0.0251628160476685,0.0153951644897461,0.0656461715698242,0.00670242309570313, -0.00574159622192383,0.0183992385864258,-5.7220458984375e-06,0.00255727767944336,0.715144634246826,0.219384670257568,-0.118073463439941,0.327560901641846,0.221970796585083,0.037895679473877,0.608446598052979,0.171632766723633,-0.00334739685058594,0.148478031158447,0.0887339115142822,0.119101524353027,0.720613956451416,0.25721263885498,-0.264826774597168,0.359880924224854,0.179759502410889,0.0894832611083984,0.689394474029541,0.261315822601318,0.0337848663330078,0.759232997894287,0.334928512573242,-0.184019088745117,0.619020938873291,0.242360591888428,-0.0287322998046875,0.332739353179932,0.0978293418884277,0.0219335556030273,0.743425369262695,0.303231716156006,-0.215710639953613,0.703357219696045,0.270619869232178,-0.356438159942627,0.565763473510742,-0.143006324768066,-0.347825527191162,0.678959369659424,0.0909819602966309,-0.219685554504395,0.626595497131348,0.133241653442383,-0.106175899505615,0.438014507293701,0.119640827178955,-0.0805306434631348,0.563973426818848,-0.16411304473877,-0.0896973609924316,0.329719543457031,-0.029841423034668,0.0120201110839844,0.40621280670166,0.00352764129638672,-0.0408730506896973,0.395936489105225,-0.00877094268798828,0.0122814178466797,0.156213521957397,0.0196590423583984,0.00848102569580078,0.00256538391113281,0.000429153442382813,0.00031280517578125,0.209339618682861,0.0401926040649414,0.0245323181152344,0.0839722156524658,0.0157880783081055,0.00986099243164063,0.08432936668396,0.0154256820678711,0.00996208190917969,0.02099609375,0.00366878509521484,0.00251388549804688,6.103515625e-05,1.04904174804688e-05,7.62939453125e-06,0.00772976875305176,0.00128650665283203,0.000929832458496094,0.391454696655273,0.0285382270812988,-0.0628170967102051,0.280606269836426,0.0424919128417969,-0.0607500076293945,0.0363907814025879,-0.00231790542602539,-0.00983762741088867,0.128737926483154,0.0643854141235352,-0.12018346786499,0.0077362060546875,-0.0012507438659668,-0.00594663619995117,0.063347339630127,0.0232028961181641,-0.0591866970062256,0.208731174468994,0.0202388763427734,-0.0390119552612305, -0.0201268196105957,-0.0187807083129883,-0.00135660171508789,0.0701537132263184,-0.0462555885314941,-0.00872659683227539,0.12571907043457,-0.0172379016876221,-0.0107021331787109,0.158661365509033,0.0348398685455322,0.0288195610046387,6.67572021484375e-06,-7.15255737304688e-06,1.9073486328125e-06,0.000810623168945313,-0.000828027725219727,0.000221490859985352,0.000781536102294922,-0.000968456268310547,0.000506877899169922,0.0027613639831543,-0.00100564956665039,0.00174736976623535,0.000715732574462891,-0.000411629676818848,-2.24113464355469e-05,0.00112295150756836,-0.000566959381103516,0.000230789184570313,0.000410079956054688,-0.000207066535949707,8.392333984375e-05,0.109497547149658,0.0186748504638672,0.0149316787719727,0.236546754837036,0.0227084159851074,0.0105628967285156,0.00179862976074219,0.000500202178955078,0.000388145446777344,0.0278706550598145,0.00773906707763672,0.00600719451904297,0.372360467910767,0.022423267364502,-0.0113115310668945,0.428354501724243,0.0449542999267578,-0.0594844818115234,0.407017946243286,0.025425910949707,-0.075160026550293,0.31668758392334,0.0441389083862305,-0.0269384384155273,0.175528287887573,0.0362539291381836,0.00820541381835938,0.0641608238220215,0.0119123458862305,0.00751399993896484,0.0101804733276367,0.00174951553344727,0.0012054443359375,0.00168633460998535,0.000299930572509766,0.000192642211914063,0.0217230319976807,0.00379467010498047,0.00230789184570313,0.10452127456665,0.0107178688049316,0.00707054138183594,0.149770259857178,0.0125870704650879,0.00881576538085938,0.17488431930542,0.0147495269775391,0.00955677032470703,0.163638830184937,0.0143632888793945,0.00931072235107422,0.128540277481079,0.0127615928649902,0.00987911224365234,0.0203635692596436,0.00354528427124023,0.00217723846435547,0.000870227813720703,0.000150203704833984,9.82284545898438e-05,0.00160408020019531,0.000391006469726563,0.000285148620605469,0.0431375503540039,0.00546503067016602,0.0038604736328125,0.155473709106445,0.0148382186889648,0.00929069519042969,0.234984874725342,0.0164728164672852,0.0118932723999023, -0.274059295654297,0.0183911323547363,0.0110254287719727,0.260868549346924,0.0136866569519043,0.0110197067260742,0.208119630813599,0.0106916427612305,0.0179557800292969,0.0575730800628662,0.00809764862060547,0.00519847869873047,0.00864195823669434,0.00160741806030273,0.00100135803222656,2.26497650146484e-06,0,0,0.332823276519775,0.0271992683410645,0.0218815803527832,0.49573540687561,0.0205655097961426,0.0180835723876953,0.0105876922607422,0.00294351577758789,0.00228023529052734,0.119949102401733,0.0179519653320313,0.0139579772949219,0.637979507446289,-0.0496716499328613,-0.0110063552856445,0.62885308265686,-0.106375217437744,-0.100169658660889,0.533644437789917,-0.198410034179688,-0.113406658172607,0.391431093215942,-0.104763507843018,-0.0181913375854492,0.221136808395386,0.0112571716308594,0.000596523284912109,0.103288650512695,0.0193119049072266,0.0111885070800781,0.0444769859313965,0.00808429718017578,0.00525665283203125,0.00728487968444824,0.001220703125,0.000873565673828125,4.55379486083984e-05,7.62939453125e-06,4.76837158203125e-06,0.00780987739562988,0,0,0.0768561363220215,0,0,0.186596632003784,0,8.63075256347656e-05,0.199281692504883,0,0.000105857849121094,0.111838817596436,-0.000716209411621094,-0.00229263305664063,0.0384578704833984,-0.000117301940917969,-0.000150680541992188,-0.0545082092285156,0.00699329376220703,0.00427436828613281,-0.0631144046783447,0.00683450698852539,0.00446605682373047,-0.00381326675415039,0.000863552093505859,0.000585556030273438,-0.00570368766784668,0.00108146667480469,0.0006561279296875,-2.38418579101563e-06,0,-1.9073486328125e-06,-0.0827205181121826,0.00836992263793945,0.00530529022216797,-0.0616204738616943,0.00750398635864258,0.00442600250244141,-0.102177143096924,0.010282039642334,0.00630569458007813,-0.0697109699249268,0.00814294815063477,0.00475406646728516,-0.0993540287017822,0.0110201835632324,0.00663948059082031,-0.0643362998962402,0.00781583786010742,0.00457763671875,-0.0825185775756836,0.0100655555725098,0.00637245178222656,-0.0560100078582764,0.00723028182983398,0.00435352325439453, --0.00660896301269531,0.00126314163208008,0.000761985778808594,-0.0419034957885742,0.00776100158691406,0.00461101531982422,-3.57627868652344e-06,0,-1.9073486328125e-06,-0.0147418975830078,0.00273656845092773,0.00171375274658203,-0.000277042388916016,4.62532043457031e-05,2.86102294921875e-05,-0.00447463989257813,0.000871181488037109,0.000532150268554688,-0.0576908588409424,0.00683212280273438,0.00431728363037109,-0.0701711177825928,0.00785207748413086,0.00485706329345703,-0.083869457244873,0.00911521911621094,0.00560188293457031,-0.0799834728240967,0.00925540924072266,0.00562667846679688,-0.0678644180297852,0.00852823257446289,0.00535869598388672,-0.0185427665710449,0.00357913970947266,0.00214004516601563,-0.00327253341674805,0.000580787658691406,0.000379562377929688,-0.00526833534240723,0.00100231170654297,0.000606536865234375,-0.0554904937744141,0.00692224502563477,0.00432682037353516,-0.0644152164459229,0.00759553909301758,0.00466346740722656,-0.0746603012084961,0.00847244262695313,0.00520515441894531,-0.0696971416473389,0.0083155632019043,0.00505828857421875,-0.0599186420440674,0.00767135620117188,0.00478935241699219,-0.010235071182251,0.00195693969726563,0.00117969512939453,-0.000345945358276367,5.76972961425781e-05,3.62396240234375e-05,-8.46385955810547e-05,2.33650207519531e-05,1.81198120117188e-05,-0.00710892677307129,0.00197744369506836,0.00153255462646484,-0.0307562351226807,0.0085601806640625,0.00651836395263672,-0.173642873764038,0.0173239707946777,0.0158891677856445,-0.261015653610229,0.0199685096740723,0.0102939605712891,-0.283844232559204,0.0223169326782227,0.00232982635498047,-0.286803722381592,0.0258650779724121,0.00582695007324219,-0.264779090881348,0.035273551940918,0.0196065902709961,-0.193721532821655,0.0335178375244141,0.0225811004638672,-0.108448505401611,0.0206332206726074,0.0126924514770508,-7.74860382080078e-06,1.43051147460938e-06,0,-0.0203628540039063,0.0036168098449707,0.00240039825439453,-0.00402116775512695,0.00102853775024414,0.00075531005859375,-0.0713467597961426,0.00740337371826172, -0.00489521026611328,-0.104608058929443,0.00990200042724609,0.00573635101318359,-0.136496305465698,0.0122122764587402,0.00680160522460938,-0.147217273712158,0.015113353729248,0.00839614868164063,-0.127812623977661,0.0139150619506836,0.00913810729980469,-0.0876600742340088,0.0142087936401367,0.00906658172607422,-0.0391547679901123,0.00738954544067383,0.00455570220947266,-0.00425171852111816,0.000720024108886719,0.000499725341796875,-0.000673770904541016,0.000187397003173828,0.00014495849609375,-0.0136668682098389,0.00380134582519531,0.00294685363769531,-0.101871728897095,0.0258378982543945,0.0224761962890625,-0.314730167388916,0.0391063690185547,0.0306234359741211,-0.274133682250977,0.051609992980957,0.0346364974975586,-0.418336629867554,0.0452160835266113,0.0179901123046875,-0.574235439300537,0.048609733581543,0.0258874893188477,-0.645241260528564,0.0666112899780273,0.0536012649536133,-0.480997800827026,0.0322532653808594,0.00325107574462891,-0.000380992889404297,6.38961791992188e-05,4.1961669921875e-05,-0.0299558639526367,0.00527667999267578,0.00355243682861328,-0.156131267547607,0.0296821594238281,0.0183830261230469,-0.00361108779907227,-2.00271606445313e-05,0.000504016876220703,-0.00436973571777344,-0.00220572948455811,0.000896453857421875,-0.0370578765869141,-0.0144606828689575,0.00704431533813477,-0.00242757797241211,-0.00122523307800293,0.000497817993164063,-0.0824093818664551,-0.0108017921447754,0.00475025177001953,-0.0960984230041504,-0.0247530937194824,0.0101795196533203,-0.00857973098754883,-0.00433075428009033,0.00175952911376953,-0.0172085762023926,-0.00058436393737793,0.000286102294921875,-0.00444412231445313,0.000842094421386719,0.000524997711181641,-0.0328774452209473,-0.00147724151611328,-0.00182867050170898,-0.013826847076416,-0.00125694274902344,-0.00559139251708984,-4.1961669921875e-05,-1.9073486328125e-05,-4.81605529785156e-05,-0.00490522384643555,0,0.000719070434570313,-0.00244522094726563,-0.000654697418212891,-0.00735235214233398,-0.0112917423248291,0.00314092636108398,0.00243473052978516,-0.108506202697754, -0.0256452560424805,0.019190788269043,-0.417878866195679,0.0525922775268555,-0.00389385223388672,-0.644408941268921,0.0893034934997559,-0.0982980728149414,-0.657952785491943,0.069669246673584,-0.210561752319336,-0.640648365020752,-0.00229358673095703,-0.0477199554443359,-0.487074613571167,0.0569162368774414,0.0344457626342773,-0.263873815536499,0.0489339828491211,0.0298624038696289,-0.136419534683228,0.0254945755004883,0.0160102844238281,-0.0213534832000732,0.00368213653564453,0.0025482177734375,-0.000787734985351563,0.000219106674194336,0.000169754028320313,-0.000130176544189453,3.62396240234375e-05,2.76565551757813e-05,-0.0252552032470703,0.00702404975891113,0.00544357299804688,-0.0314173698425293,0.00182700157165527,0.00178432464599609,-0.221426248550415,0.0161263942718506,0.017242431640625,-0.187229633331299,-0.00263142585754395,0.0064849853515625,-0.537430286407471,0.037214994430542,-0.0133285522460938,-0.640662908554077,0.157147884368896,-0.141234397888184,-0.615224361419678,0.0823347568511963,-0.0634870529174805,-0.374266624450684,-0.0298018455505371,0.0152320861816406,-0.55884313583374,0.0617332458496094,-0.0464134216308594,-0.33600378036499,-0.0550539493560791,0.0250415802001953,-0.32531213760376,0.0911424160003662,-0.0269746780395508,-0.116767406463623,-0.0251709222793579,0.0154047012329102,-0.0657224655151367,0.00674247741699219,0.00574207305908203,-0.0183992385864258,-5.7220458984375e-06,0.00255727767944336,-0.717929363250732,0.21838903427124,-0.114730834960938,-0.32643985748291,0.220819234848022,0.0382895469665527,-0.612044811248779,0.170247316360474,-0.000821590423583984,-0.148127555847168,0.0889401435852051,0.119209766387939,-0.715335369110107,0.259250164031982,-0.265450000762939,-0.35115909576416,0.174678564071655,0.088496208190918,-0.68652868270874,0.260441303253174,0.0353527069091797,-0.762342929840088,0.333708763122559,-0.179423809051514,-0.609147071838379,0.243983745574951,-0.0291428565979004,-0.32738733291626,0.0988931655883789,0.0221500396728516,-0.738240242004395,0.304128170013428,-0.215379238128662, --0.701484203338623,0.271622180938721,-0.355126857757568,-0.563187599182129,-0.145651340484619,-0.349198341369629,-0.679356098175049,0.0902194976806641,-0.218510150909424,-0.636141300201416,0.131162643432617,-0.102325916290283,-0.431825637817383,0.122373580932617,-0.0809955596923828,-0.568020343780518,-0.162410736083984,-0.0860319137573242,-0.329783916473389,-0.0293521881103516,0.012723445892334,-0.404910087585449,0.00345039367675781,-0.040863037109375,-0.394742488861084,-0.010350227355957,0.0117912292480469,-0.156508445739746,0.0200290679931641,0.0086512565612793,-0.00256538391113281,0.000429153442382813,0.00031280517578125,-0.209317445755005,0.0401573181152344,0.0245170593261719,-0.0839717388153076,0.0157880783081055,0.00986099243164063,-0.0843296051025391,0.0154256820678711,0.00996208190917969,-0.02099609375,0.00366878509521484,0.00251388549804688,-6.103515625e-05,1.04904174804688e-05,7.62939453125e-06,-0.00772976875305176,0.00128650665283203,0.000929832458496094,-0.388625621795654,0.0282297134399414,-0.0625147819519043,-0.27852201461792,0.0428543090820313,-0.0613393783569336,-0.0358753204345703,-0.00232505798339844,-0.00964450836181641,-0.12709903717041,0.0649294853210449,-0.119941234588623,-0.0075993537902832,-0.00119638442993164,-0.00585460662841797,-0.0636987686157227,0.021388053894043,-0.0572957992553711,-0.205371856689453,0.0250105857849121,-0.0413675308227539,-0.0200481414794922,-0.0187239646911621,-0.00127220153808594,-0.0694718360900879,-0.0455865859985352,-0.00870776176452637,-0.124289989471436,-0.0165162086486816,-0.0105161666870117,-0.155260562896729,0.0389671325683594,0.0284771919250488,-6.67572021484375e-06,-7.15255737304688e-06,1.9073486328125e-06,-0.000810623168945313,-0.000828027725219727,0.000221490859985352,-0.000754833221435547,-0.000936746597290039,0.000490188598632813,-0.00269317626953125,-0.000960350036621094,0.00171566009521484,-0.000713348388671875,-0.000410556793212891,-2.24113464355469e-05,-0.00112295150756836,-0.000566840171813965,0.000230789184570313,-0.000410079956054688,-0.000207066535949707, -8.392333984375e-05,-0.109498023986816,0.0186748504638672,0.0149316787719727,-0.236474752426147,0.0230312347412109,0.00967502593994141,-0.00179874897003174,0.000500202178955078,0.000388145446777344,-0.0278708934783936,0.00773954391479492,0.00600719451904297,-0.371204137802124,0.0230774879455566,-0.022181510925293,-0.418875455856323,0.0440177917480469,-0.101924896240234,-0.395332813262939,0.0119881629943848,-0.118900299072266,-0.309459209442139,0.0380840301513672,-0.0445756912231445,-0.175397396087646,0.0361876487731934,0.00695419311523438,-0.0641610622406006,0.0119123458862305,0.00751399993896484,-0.0101805925369263,0.00174951553344727,0.0012054443359375,-0.00168561935424805,0.000299930572509766,0.000192642211914063,-0.0217242240905762,0.00379467010498047,0.00230789184570313,-0.104661703109741,0.0107951164245605,0.00716018676757813,-0.150028944015503,0.0125818252563477,0.00898075103759766,-0.175468444824219,0.0148434638977051,0.00964736938476563,-0.164111137390137,0.0143013000488281,0.00938701629638672,-0.128985166549683,0.0127453804016113,0.0104074478149414,-0.0203642845153809,0.00354576110839844,0.00217723846435547,-0.000870227813720703,0.000150203704833984,9.82284545898438e-05,-0.00160360336303711,0.000391006469726563,0.000285148620605469,-0.0431382656097412,0.00546646118164063,0.00386142730712891,-0.155773639678955,0.0155830383300781,0.00948715209960938,-0.235061168670654,0.0168266296386719,0.0116672515869141,-0.274167776107788,0.0186009407043457,0.00811100006103516,-0.260829448699951,0.0111713409423828,0.0076446533203125,-0.208608388900757,0.00805187225341797,0.0187473297119141,-0.0575668811798096,0.00810813903808594,0.00518226623535156,-0.00864267349243164,0.00160741806030273,0.00100135803222656,-2.62260437011719e-06,0,0,-0.332822799682617,0.0271992683410645,0.0218815803527832,-0.495748281478882,0.0206136703491211,0.0181260108947754,-0.0105876922607422,0.00294375419616699,0.00228023529052734,-0.119949579238892,0.0179519653320313,0.0139579772949219,-0.632829427719116,-0.0653576850891113,-0.0188460350036621,-0.594865083694458, --0.153493881225586,-0.133562564849854,-0.505844831466675,-0.259515285491943,-0.141905307769775,-0.387782335281372,-0.141111373901367,-0.0238862037658691,-0.223525285720825,0.00192928314208984,-0.00482082366943359,-0.103298187255859,0.0192775726318359,0.0111684799194336,-0.044477105140686,0.00808429718017578,0.00525665283203125,-0.00728487968444824,0.001220703125,0.000873565673828125,-4.55379486083984e-05,7.62939453125e-06,4.76837158203125e-06,-0.00781011581420898,0,0,-0.0768561363220215,0,0,-0.186595916748047,0,8.63075256347656e-05,-0.199282169342041,0,0.000105857849121094,-0.112082481384277,-0.000777721405029297,-0.00243139266967773,-0.0389366149902344,-0.000320911407470703,-0.000376224517822266 - } - Normals: *1212 { - a: 0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,0.512022675946355,1.34185579419136,0.66503818333149,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153, -1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,0.221148788928986, -0.310832679271698,-1.26058748364449,0.437944859266281,0.259957488626242,-1.2592768073082,0.608295112848282,0.10823181271553,-1.25950562953949,0.801428377628326,0.168200765736401,-1.22813148796558,0.676499664783478,0.394543980248272,-1.38882184028625,0.614756196737289,0.162919949740171,-1.23879411816597,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223, -0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549, --0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082, -0.914712131023407,0.769653141498566,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-0.959292871877551,0.826793894171715,0.163627862930298,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449, --1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201, --0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-1.30209255218506,0.681211248040199,0.375398635864258,-1.31432190537453,0.719328045845032,0.437053114175797,-1.30395328998566,0.315785571932793,0.602485001087189,-0.987312516197562,0.200340773910284,0.75784258544445,-0.862383862957358,0.426683764904737,0.597152233123779,-0.766009718179703,0.116848640143871,0.689910739660263,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028, -0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.33592736721039,0.67454619705677,0.0972495675086975, --1.05477386713028,0.454157344996929,0.189654588699341,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821, --1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007 - } - } - Geometry: 2805454332000, "Geometry::Mouth_Upper_UpLeft", "Shape" { - Version: 100 - Indexes: *1472 { - a: 635,636,643,648,669,672,681,700,703,708,711,716,719,724,1359,1367,1436,1438,1441,1457,1460,1503,1509,1523,1531,1545,1553,1567,3065,3110,5880,5881,5882,5883,5885,5887,5888,5889,5890,5891,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,6015,6016,6017,6018,6019,6020,6021,6022,6023,6034,6035,6036,6037,6038,6039,6040,6041,6042,6053,6054,6055,6056,6057,6058,6059,6060,6061,6065,6072,6073,6074,6075,6076,6077,6078,6079,6080,6091,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6245,6246,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6266,6267,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543, -6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7153,7156,7157,7159,7160,7161,7164,7165,7172,7180,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7197,7199,7204,7206,7207,7208,7209,7210,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7397,7398,7399,7400,7401,7402,7403,7404,7405,7416,7417,7418,7419,7420,7421,7422,7423,7424,7435,7436,7437,7438,7439,7440,7441,7442,7443,7447,7454,7455,7456,7457,7458,7459,7460,7461,7462,7473,7474,7475,7476,7477,7478,7479,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539, -7540,7541,7542,7543,7545,7559,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119, -8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8547,8548,8549,8550,8551,8552,8553,8560,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8576,8578,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8598,8602,8603,8606,8607,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 - } - Vertices: *4416 { - a: 0,0.00165987014770508,0,0.0113600492477417,0.00912189483642578,0.0103044509887695,0.00967609882354736,0.0102636814117432,0.00877571105957031,0.00329363346099854,0.00141119956970215,0.00297164916992188,0.0111244916915894,0.00925469398498535,0.0100946426391602,0.000448763370513916,0.00751352310180664,0.000403404235839844,0.0103975534439087,0.00532746315002441,0.00943088531494141,0,0.00575780868530273,0,0.00457936525344849,0.00829124450683594,0.00413608551025391,0.0116451978683472,0.010596752166748,0.0105762481689453,0.00847148895263672,0.00775384902954102,0.00766849517822266,0.0123339891433716,0.00765705108642578,0.0111989974975586,0.00692939758300781,0.00331211090087891,0.00626945495605469,0.000635147094726563,0.000216007232666016,0.000571250915527344,0.00210464000701904,0.00714993476867676,0.00189685821533203,0.00876593589782715,0.00436019897460938,0.00794219970703125,0.0100082159042358,0.00830817222595215,0.00907230377197266,0.0110384225845337,0.0106570720672607,0.0100212097167969,0,0.00244522094726563,0,0.00174331665039063,0.00067448616027832,0.00157070159912109,0.0122932195663452,0.00872611999511719,0.0111598968505859,0,0.00702929496765137,0,0.0073552131652832,0.00951862335205078,0.00665855407714844,0.0116806030273438,0.0100860595703125,0.0106058120727539,0.00962293148040771,0.0084996223449707,0.00871753692626953,0.0116403102874756,0.00639605522155762,0.0105657577514648,0.00506913661956787,0.00232052803039551,0.00457954406738281,0,3.79085540771484e-05,4.57763671875e-05,0,0.000743865966796875,0,0,0.00443625450134277,0,0,8.10623168945313e-06,0,0,0.625221729278564,0.0546998977661133,0,0.599854946136475,-0.0191240310668945,0,8.58306884765625e-06,0,0,0.62521505355835,0.0546979904174805,0,0.625211238861084,0.0546989440917969,0,-1.04904174804688e-05,0,0.00013883646170143,0.372093200683594,0.0213184356689453,0,8.58306884765625e-06,0,0,0.581961631774902,-0.107844352722168,0,-8.58306884765625e-06,0,0.000229898621910252,0.0665550231933594,0.0402717590332031,0,8.34465026855469e-06,0,0,-4.05311584472656e-06, -0,0,8.22544097900391e-06,0,0,-8.2552433013916e-06,0,0,2.08616256713867e-06,0,0,4.17232513427734e-06,0,-1.26401073430316e-05,0.113314867019653,0.0308637619018555,4.99820525874384e-05,0.0932981967926025,0.0424404144287109,0.000167526726727374,0.0941486358642578,0.0398797988891602,0.000212308048503473,0.095822811126709,0.0415964126586914,-9.45455485634739e-06,0.0699036121368408,0.00784492492675781,0,0.000186681747436523,-1.23977661132813e-05,0,-8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-2.08616256713867e-06,0,0,6.07967376708984e-06,0,0,4.11272048950195e-06,0,0,8.58306884765625e-06,0,0,6.07967376708984e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,-0.00439980626106262,0.517575263977051,0.0448122024536133,-0.00491273403167725,0.433036804199219,0.0448551177978516,-0.000164508819580078,0.00391578674316406,0.000117301940917969,-0.000165224075317383,0.00390720367431641,0.000109672546386719,-0.00192666053771973,0.0425376892089844,0.00149726867675781,-0.00190854072570801,0.0425209999084473,0.00159740447998047,-0.00740861892700195,0.168084144592285,0.00922489166259766,-0.00716876983642578,0.168070316314697,0.00955009460449219,-0.00945734977722168,0.210323810577393,0.0168657302856445,-0.00919854640960693,0.251285076141357,0.0173206329345703,-0.00968825817108154,0.21852970123291,0.0248012542724609,-0.00918245315551758,0.325525283813477,0.0251855850219727,-0.00825071334838867, -0.304775238037109,0.0346517562866211,-0.00749325752258301,0.416677474975586,0.0347995758056641,-0.00453925132751465,0.101328372955322,0.00474834442138672,-0.00467371940612793,0.101361274719238,0.00450992584228516,-3.95774841308594e-05,0.000939369201660156,2.57492065429688e-05,-3.88622283935547e-05,0.000926971435546875,2.6702880859375e-05,0,1.04904174804688e-05,0,-0.00479486584663391,0.517581462860107,0.0448036193847656,-0.00809139013290405,0.416696071624756,0.0346736907958984,-0.00964546203613281,0.32557487487793,0.024937629699707,-0.00946342945098877,0.251312255859375,0.0170431137084961,-0.007346510887146,0.16808032989502,0.00935840606689453,-0.00464105606079102,0.101348876953125,0.004608154296875,-0.00192928314208984,0.0425310134887695,0.00154209136962891,-0.000165462493896484,0.00391197204589844,0.000113487243652344,-3.95774841308594e-05,0.000926971435546875,2.57492065429688e-05,-0.00456351041793823,0.517577648162842,0.0448064804077148,-0.00775003433227539,0.416675567626953,0.0347461700439453,-0.0093914270401001,0.325543880462646,0.0250873565673828,-0.00930345058441162,0.251285076141357,0.0172185897827148,-0.00723922252655029,0.168055534362793,0.00947856903076172,-0.00458335876464844,0.101344585418701,0.00469398498535156,-0.00191712379455566,0.0425271987915039,0.00157833099365234,-0.000165224075317383,0.00390958786010742,0.000115394592285156,-3.93390655517578e-05,0.000937461853027344,2.6702880859375e-05,-0.00138106942176819,0.174463748931885,0.0148143768310547,-0.00243347883224487,0.138896942138672,0.0115547180175781,-0.00281989574432373,0.108523368835449,0.00824451446533203,-0.0027461051940918,0.0837712287902832,0.00560855865478516,-0.00218415260314941,0.0560426712036133,0.00302505493164063,-0.00143527984619141,0.0337743759155273,0.00147438049316406,-0.000608921051025391,0.0141968727111816,0.000462532043457031,-5.17368316650391e-05,0.00130796432495117,2.86102294921875e-05,-1.21593475341797e-05,0.000323295593261719,4.76837158203125e-06,0,-1.04904174804688e-05,0,-0.0192690491676331,0.43364429473877,0.00717926025390625, --0.00544548034667969,0.27778434753418,-0.077479362487793,-0.00637984275817871,0.217047214508057,-0.0483465194702148,-0.00623095035552979,0.16754674911499,-0.0815544128417969,-0.0048830509185791,0.112064361572266,-0.0705051422119141,-0.00308465957641602,0.0675640106201172,-0.034794807434082,-0.0012822151184082,0.028353214263916,0.000987052917480469,-0.000110149383544922,0.00261783599853516,7.05718994140625e-05,-2.55107879638672e-05,0.000623703002929688,1.52587890625e-05,2.98023223876953e-05,0.00639581680297852,0.00542831420898438,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-0.00416469573974609,0,7.12275505065918e-06,-0.000834941864013672,0.003082275390625,0,-0.00478029251098633, -0,0,-0.00177645683288574,0,0,-0.00488185882568359,0,0,0.0162150859832764,0.0102510452270508,0,-0.00275206565856934,0,-1.16229057312012e-06,0.0046694278717041,0.00311088562011719,0,-0.000292301177978516,0,0,-0.00450038909912109,-2.09808349609375e-05,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-0.00536847114562988,0,0,-0.00615191459655762,0,0,-0.00347018241882324,0,0,-0.00066375732421875,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-0.00232410430908203,0,0,-0.0029299259185791,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-0.00137019157409668,0,0,-0.00381922721862793,0,0,-0.0049736499786377,0.00102901458740234,0,-0.00697517395019531,0,3.10242176055908e-05,0.0138659477233887,0.00889492034912109,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06, -0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.05636024475098e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,2.0638108253479e-06,0,0,-6.18398189544678e-06,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06, -0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06, -0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06, -0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0, -0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,0.000345706939697266,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,2.86102294921875e-06,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,0.625209331512451,0.0546998977661133,-0.00399598479270935,0.517569541931152,0.0448226928710938,-0.00681787729263306,0.416679382324219,0.0348310470581055,-0.00837445259094238,0.325535774230957,0.0252447128295898,-0.00837588310241699,0.251260757446289,0.017399787902832,-0.00649583339691162,0.168055534362793,0.00957965850830078,-0.00409340858459473,0.101336479187012,0.00468254089355469,-0.00171017646789551,0.0425310134887695,0.00154399871826172,-0.000151872634887695,0.00390338897705078,0.000111579895019531,-3.64780426025391e-05,0.000943183898925781,2.57492065429688e-05,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,0.581068992614746,0,0,0.525304317474365,0,0,0.436078071594238,0,0,0.391105175018311,0,0,0.280177593231201,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, -0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,-0.000207781791687012,0.0245532989501953,0.00350666046142578,0,0.0354187488555908,-0.0103969573974609,0.00645774602890015,0.755786418914795,0.0654315948486328,0.00721031427383423,0.651564121246338,0.0654945373535156,0.00112771987915039,0.026801586151123,0.000799179077148438,0.00113558769226074,0.0268139839172363,0.0007476806640625,0.00976204872131348,0.432011604309082,0.00847816467285156,0.0118255615234375,0.420721530914307,0.0100240707397461,0.0136048793792725,0.888204097747803,0.0478706359863281,0.0383621454238892,0.896750450134277,0.0504426956176758,0.0446834564208984,1.0450005531311,0.0729484558105469,0.0404008626937866,1.09091520309448,0.0747718811035156,0.0325756072998047,0.992218494415283,0.0808525085449219,0.0303802490234375,1.06364154815674,0.0820674896240234,0.0183617472648621,0.848072528839111,0.0761556625366211,0.0166680812835693,0.917777538299561,0.0765933990478516,-0.0101799964904785,0.71897554397583,0.0275468826293945,-0.013451099395752,0.740117073059082,0.0244245529174805,0.000269412994384766,0.006439208984375, -0.00017547607421875,0.000269412994384766,0.00644779205322266,0.000187873840332031,0,1.04904174804688e-05,0,0.00703737139701843,0.755792617797852,0.0654182434082031,0.0179984569549561,0.91779613494873,0.0763101577758789,0.03191077709198,1.06371212005615,0.081242561340332,0.0416066646575928,1.09096956253052,0.0735578536987305,0.0387028455734253,0.899975299835205,0.0491504669189453,-0.0107951164245605,0.725334644317627,0.0262012481689453,0.0113451480865479,0.423914432525635,0.00941085815429688,0.00113368034362793,0.0267977714538574,0.000773429870605469,0.000270605087280273,0.00644779205322266,0.000180244445800781,0.00669744610786438,0.755788803100586,0.0654220581054688,0.0172392725944519,0.91779613494873,0.076472282409668,0.0310711860656738,1.06368112564087,0.0817384719848633,0.0408620834350586,1.09095668792725,0.0743227005004883,0.0385837554931641,0.897578239440918,0.0499868392944336,-0.0102519989013672,0.720681667327881,0.0270853042602539,0.0117130279541016,0.421597003936768,0.00982189178466797,0.00113034248352051,0.0268158912658691,0.000789642333984375,0.00027012825012207,0.00643730163574219,0.000186920166015625,0.00238016247749329,0.521926403045654,0.0653915405273438,0.0105714201927185,0.565833568572998,0.050196647644043,0.056550145149231,0.721290826797485,0.0206060409545898,0.0386338233947754,0.753669500350952,0.0195217132568359,0.0120680332183838,0.72503137588501,0.00529766082763672,-0.0269381999969482,0.828293800354004,-0.00887298583984375,-0.033233642578125,0.676615715026855,-0.0116863250732422,-0.0017998218536377,0.0200862884521484,-0.000698089599609375,8.24928283691406e-05,0.00215625762939453,4.10079956054688e-05,0,-1.04904174804688e-05,0,0.0102051198482513,0.754615783691406,0.00870609283447266,0.012187123298645,0.928916454315186,-0.0700969696044922,0.024221658706665,1.02108192443848,0.0188570022583008,0.0350800752639771,1.07532501220703,0.0137729644775391,0.0248866081237793,1.00788879394531,0.0249185562133789,-0.0077824592590332,0.794155120849609,0.00853824615478516,0.00378155708312988,0.455960273742676,-0.000884056091308594, -0.000746726989746094,0.0179233551025391,0.000477790832519531,0.000178098678588867,0.00429058074951172,0.000109672546386719,0.000324130058288574,0.219309091567993,0.0564250946044922,0.0247697234153748,0.233216285705566,0.0305051803588867,0.0912512540817261,0.34543251991272,0.0277090072631836,0.0456092357635498,0.229515075683594,0.0218381881713867,-0.0164978504180908,0.639513492584229,0.0104579925537109,-0.0589981079101563,0.331307411193848,-0.0161275863647461,-0.0687851905822754,0.289051532745361,-0.0238990783691406,-0.00958347320556641,0.0459351539611816,-0.00373649597167969,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,-0.00826478004455566,0.00652158260345459,-0.00689125061035156,0,6.19888305664063e-06,0,-0.000351905822753906,0.000107288360595703,-0.000316619873046875,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,-0.00440287590026855,7.80820846557617e-05,-0.000230789184570313,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,-0.0038917064666748,0.209569215774536,-0.0108680725097656,0.0760703086853027,0.288944721221924,0.0102376937866211,0.116413116455078,0.287445068359375,0.0392980575561523,0.00628423690795898,0.271638154983521,0.00808143615722656, -0.100013136863708,0.352385282516479,0.0306806564331055,0.0618683099746704,0.358146190643311,-0.00499248504638672,0.0458624362945557,0.332109928131104,0.0516653060913086,0.0606355667114258,0.33014440536499,0.128809928894043,0.0014769434928894,0.179417371749878,-0.0376434326171875,0.004081130027771,0.211915016174316,0.085658073425293,-0.00159692764282227,0.278982639312744,0.0107526779174805,-0.00873994827270508,0.195996999740601,-0.00588130950927734,-0.0730884075164795,0.280040740966797,-0.0112800598144531,-0.108134746551514,0.321375370025635,-0.0274362564086914,-0.0170812606811523,0.0733165740966797,-0.00606250762939453,9.04202461242676e-05,0.221079349517822,0.0371360778808594,0.000237941741943359,0.225179672241211,0.0496273040771484,0.00130623579025269,0.229325294494629,0.0464344024658203,0.00122720003128052,0.219708681106567,0.034942626953125,-0.000685840845108032,0.229705095291138,0.0365839004516602,7.04675912857056e-05,0.216396570205688,0.0529537200927734,-0.0057181715965271,0.267945289611816,0.0305585861206055,-0.00134307146072388,0.266021251678467,0.0447587966918945,-0.0181542634963989,0.305384874343872,0.0260677337646484,-0.0112742781639099,0.318174123764038,0.0292339324951172,-0.0200811624526978,0.299572944641113,0.031550407409668,-0.0261296629905701,0.317383527755737,0.024622917175293,-0.00447320938110352,0.274620056152344,0.0849571228027344,-0.0108854174613953,0.26762843132019,0.0886831283569336,0.0238493680953979,0.304083585739136,0.0853090286254883,0.0444456338882446,0.332689762115479,0.0983448028564453,0.0658355951309204,0.378058671951294,0.0360250473022461,0.0957770347595215,0.370858192443848,0.0462675094604492,0.0858683586120605,0.351141929626465,0.0215988159179688,0.0936354398727417,0.317138671875,0.0419235229492188,0.0364720225334167,0.323412179946899,0.014434814453125,0.0940687656402588,0.401812791824341,0.0318126678466797,0.0311322808265686,0.31005597114563,0.0309610366821289,0.0124737620353699,0.246675968170166,0.0252685546875,0.0606476068496704,0.350630521774292,0.015223503112793,0.0961501598358154, -0.339097023010254,0.0322952270507813,0.000104695558547974,0.222729206085205,0.04266357421875,-0.000386953353881836,0.228110313415527,0.0434179306030273,-0.00504574179649353,0.270585298538208,0.0365028381347656,-0.0200161933898926,0.318885803222656,0.026127815246582,-0.0227074027061462,0.303089380264282,0.0350122451782227,-0.00698608160018921,0.266458034515381,0.0892333984375,0.0301823616027832,0.308229684829712,0.0911026000976563,0.0739552974700928,0.372309446334839,0.0417442321777344,0.0965045690536499,0.329387187957764,0.0306615829467773,0.0783208608627319,0.360106945037842,0.0219898223876953,0.0524944663047791,0.362272262573242,0.0199012756347656,0.0181271433830261,0.268814563751221,0.0278844833374023,0.00176471471786499,0.224229335784912,0.038996696472168,0.00203204154968262,0.22784161567688,0.0422534942626953,0.0236565470695496,0.288830995559692,0.0295829772949219,0.066938579082489,0.3922438621521,0.0239658355712891,0.0896177291870117,0.358153820037842,0.0274257659912109,0.0998822450637817,0.315372943878174,0.0376310348510742,0.085384726524353,0.363654375076294,0.0440874099731445,0.0365442037582397,0.312684059143066,0.0941066741943359,-0.00861990451812744,0.263624668121338,0.0879421234130859,-0.0242231488227844,0.308136701583862,0.0332546234130859,-0.0190340280532837,0.322310447692871,0.0256614685058594,-0.00445556640625,0.273171424865723,0.0387287139892578,-4.68790531158447e-05,0.225960731506348,0.0471343994140625,0.000161170959472656,0.224664688110352,0.0457429885864258,0.000293046236038208,0.221037149429321,0.0534124374389648,-0.0239631533622742,0.317543745040894,0.00891494750976563,-0.0120065212249756,0.267500638961792,0.0914688110351563,-0.00610935688018799,0.228328943252563,0.0976858139038086,-0.0113705992698669,0.215920925140381,-0.00163173675537109,0.0593676567077637,0.331184387207031,0.119748115539551,0.0530027151107788,0.343633413314819,0.106705665588379,0.102969408035278,0.375547409057617,0.0465583801269531,0.106029272079468,0.359499216079712,0.0430288314819336,0.0821728706359863,0.374294996261597, -0.0272769927978516,0.0931681394577026,0.355748653411865,0.0296497344970703,0.103262305259705,0.328924179077148,0.0363988876342773,0.116287231445313,0.327475070953369,0.0438652038574219,0.125649690628052,0.319050550460815,0.0483522415161133,0.128890991210938,0.29535436630249,0.0497426986694336,0.0681842565536499,0.323263883590698,0.0381383895874023,0.0328676700592041,0.295997142791748,0.0253171920776367,0.0588729381561279,0.30604362487793,0.0351772308349609,0.0164283514022827,0.310169458389282,0.0238962173461914,0.0539472103118896,0.284495115280151,0.0330324172973633,0.00815927982330322,0.316786289215088,0.0248270034790039,-0.0100841522216797,0.268871545791626,0.0110940933227539,-0.0159760713577271,0.200824975967407,-0.00121212005615234,0.0257208347320557,0.229422569274902,-0.00671768188476563,0.0621352195739746,0.271791219711304,0.0253992080688477,0.0845792293548584,0.285221576690674,0.0399227142333984,0.101680636405945,0.314624309539795,0.0466976165771484,0.108863949775696,0.316025972366333,0.0466594696044922,0.105158090591431,0.309003114700317,0.039586067199707,0.0970295667648315,0.33769702911377,0.0309982299804688,0.0827312469482422,0.36312198638916,0.021031379699707,0,0.00338232517242432,-0.00158405303955078,-0.00429451465606689,0.0592513084411621,-0.0305633544921875,-0.0211195945739746,0.139804482460022,-0.0502300262451172,0,-6.31809234619141e-06,0,-0.00433343648910522,0.00294828414916992,-0.00389480590820313,-0.0252722501754761,0.0320888757705688,-0.0225429534912109,0,-6.19888305664063e-06,0,-9.29832458496094e-06,4.16040420532227e-05,-1.04904174804688e-05,-0.0228914022445679,0.0155409574508667,-0.0204372406005859,0,0.000717401504516602,-0.00932979583740234,-0.00132960081100464,0.0811953544616699,-0.0579986572265625,0.0152758359909058,0.235925436019897,-0.0399532318115234,-0.00755047798156738,0.110235929489136,-0.0141963958740234,-0.00755584239959717,0.123297452926636,-0.0199966430664063,-0.0156934261322021,0.0302205085754395,-0.0118398666381836,-0.01642906665802,0.0568747520446777,-0.0121850967407227,-0.0275267362594604, -0.0770039558410645,-0.0206851959228516,-0.0272289514541626,0.114178895950317,-0.0165262222290039,-0.0348739624023438,0.14709997177124,-0.0115022659301758,-0.0410184860229492,0.251644849777222,-0.0207042694091797,-0.0344020128250122,0.150479078292847,-0.0272340774536133,-0.0157496929168701,0.292929410934448,-0.0247974395751953,-0.0179822444915771,0.171730756759644,-0.0133705139160156,-0.0292209386825562,0.180231332778931,-0.014042854309082,-0.0018455982208252,0.180527925491333,-0.0185117721557617,0.030372142791748,0.306731224060059,-0.00818157196044922,-0.00414001941680908,0.29831862449646,-0.0112419128417969,-0.0319081544876099,0.280459403991699,-0.0141963958740234,-0.0158529281616211,0.305838584899902,-0.0123748779296875,0.0260626077651978,0.333413600921631,-0.00878429412841797,0,0.00750064849853516,-0.0115270614624023,0.000171542167663574,0.158647775650024,-0.0788593292236328,0.0292532444000244,0.30135703086853,-0.0233163833618164,0.0321931838989258,0.336346387863159,-0.0120134353637695,0.00671994686126709,0.340452432632446,-0.0129766464233398,-0.0181764364242554,0.109813690185547,-0.0156803131103516,-0.019172191619873,0.0287120342254639,-0.0126934051513672,-0.0277440547943115,0.0352063179016113,-0.0233974456787109,-0.0118551254272461,0.00458157062530518,-0.0106267929077148,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,-0.035552978515625,0.0257267951965332,-0.00863170623779297,-0.0657587051391602,0.143848180770874,-0.00960063934326172,-0.0401880741119385,0.0125713348388672,-0.00293827056884766,-0.0869941711425781,0.144849300384521,-0.0144081115722656,-0.00554919242858887,0.00792217254638672,-0.000844955444335938,-0.022808313369751,0.0733199119567871,-0.00635623931884766,0,6.19888305664063e-06,0,-0.000807762145996094,0.00329065322875977,-0.000274658203125,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05, -0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.08616256713867e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,2.0638108253479e-06,0,0,-6.15417957305908e-06,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06, -0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06, -0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06, -0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05, -0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0.00321632623672485,0.324505567550659,0.0185317993164063,0.00622808933258057,0.322984218597412,0.0276298522949219,0.0102658867835999,0.325830698013306,0.0279827117919922,0.0180141925811768,0.34404182434082,0.0183572769165039,0.0282357931137085,0.363718032836914,0.0104436874389648,0.0412914752960205,0.372288942337036,0.00556373596191406,0.00249552726745605,0.314595222473145,0.0110912322998047,0.00195574760437012,0.290990352630615,0.00876235961914063,0.00182050466537476,0.269870281219482,0.0119142532348633,0.000958710908889771,0.251556634902954,0.0110855102539063,0.000898241996765137,0.233148097991943,0.00906944274902344,0.00387734174728394,0.236122369766235,0.00534439086914063,0.0134809017181396,0.289217710494995,0.00197982788085938,0.0271432399749756,0.336067914962769,0.0020294189453125,0.0458550453186035,0.365183353424072,0.00526332855224609,0.00401544570922852,0.300765991210938,0.00600051879882813,0.00627082586288452,0.295955896377563,0.0047760009765625,0.0112379789352417,0.315004110336304,0.00195121765136719,0.0230578184127808,0.347858428955078,0.00159168243408203,0.00301611423492432,0.303436756134033,0.006683349609375,-0.0136566162109375,0.447099685668945,-0.14747428894043,-0.00156354904174805,0.148046493530273,-0.0865316390991211,-0.00944364070892334,0.709800720214844,-0.244275093078613,-0.0313374996185303,0.774456977844238,-0.176634788513184,0.210403084754944,0.587462902069092,-0.37300968170166,0.13475376367569,0.411040782928467,-0.189296722412109,0.000753223896026611,0.163462162017822,6.67572021484375e-05,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0.00586485862731934,0.755780220031738,0.0654458999633789,0.0151662826538086,0.917779445648193,0.0766630172729492,0.0277106761932373,1.06363153457642,0.0822687149047852,0.0367882251739502,1.09089088439941,0.0751352310180664,0.0341120958328247, -0.899980545043945,0.050358772277832,-0.0134449005126953,0.722182273864746,0.0269041061401367,0.0532670021057129,0.451332092285156,0.00956821441650391,-0.00796389579772949,0.0724587440490723,0.000767707824707031,0.000245809555053711,0.00644302368164063,0.000172615051269531,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,0.675493240356445,0,0,0.908459186553955,-0.0588235855102539,0,1.15421676635742,-0.164273262023926,0.000523805618286133,1.18589067459106,-0.24884033203125,-0.00607633590698242,1.08390760421753,-0.177225112915039,-0.0457947254180908,0.960368156433105,-0.219592094421387,-0.0046236515045166,0.68829870223999,-0.140535354614258,-5.45978546142578e-05,0.208590507507324,-0.117132186889648,0,0.0654382705688477,-0.0427227020263672,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,-0.00121021270751953,0.00485825538635254,-0.000398635864257813,-1.83582305908203e-05,9.48905944824219e-05,-7.62939453125e-06,-0.000323295593261719,0.00412917137145996,-0.000304222106933594,0.000167965888977051,4.98294830322266e-05,3.814697265625e-06,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,-6.19888305664063e-06,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,2.08616256713867e-06, -0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.11272048950195e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,2.05636024475098e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0,0,-4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0 - } - Normals: *4416 { - a: 0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.384596306972981,-1.27944368124008,-0.820560738444328,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.35247701406479,0.038206547498703,-0.535711735486984,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.33883160352707,0.271105103194714,0.201965391635895,-0.185629397630692,0.60392153263092,-0.423017710447311,0.0953263938426971,0.519869685173035,-0.52972674369812,0.382831320166588,0.495755851268768,-0.813438422977924,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.149402499198914,0.649232625961304,-0.918700143694878,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.896484866738319,0.121514856815338,0.316224336624146,-0.597992211580276,0.508298240602016,0.248544991016388,-0.456251949071884,0.331182681024075,0.38022056221962,0.825121775269508,-0.218170151114464,-0.178467690944672,0.769775316119194,-0.0740673840045929,-0.92814214900136,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471, --1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807, --0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786, -1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087, --0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681, --1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316, --0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697, -0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911, --0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881, --0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672, --1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245, --0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949, --0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166, -0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683, -0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148, -0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912, -0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687, --0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,0.517195463180542,-0.210257351398468,0.607364043593407,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.180295750498772,0.379578433930874,1.83726984262466,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402, --1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133, --0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571, --0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917, -0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437, -0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636, --1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863, -0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884, --1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722, -0.0708772093057632,-0.336878478527069,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001, --0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943, --0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272, --0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086, -0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773, --0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313, --0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283, --1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172, --0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751, -0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,0.824516475200653,-1.17877915501595,0.0225204229354858,0.262745406478643, --1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481, --0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162, --0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678, -1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 - } - } - Geometry: 2805454332288, "Geometry::Mouth_Upper_UpRight", "Shape" { - Version: 100 - Indexes: *6911 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970, -2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409, -3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819, -3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242, -4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658, -4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081, -5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496, -5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5880,5881,5882,5883,5885,5887,5888,5889,5890,5891,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958, -5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5997,6015,6016,6017,6018,6019,6020,6021,6022,6023,6028,6034,6035,6036,6037,6038,6039,6040,6041,6042,6053,6054,6055,6056,6057,6058,6059,6060,6061,6065,6072,6073,6074,6075,6076,6077,6078,6079,6080,6091,6092,6093,6094,6095,6096,6097,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6177,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6444,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6525,6526,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564, -6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7167,7168,7169,7170,7171,7172,7173,7180,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7197,7199,7204,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7221,7225,7228,7231,7232,7233,7234,7235,7236,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7379,7397,7398,7399,7400,7401,7402,7403,7404,7405,7410,7416,7417,7418,7419,7420,7421,7422,7423,7424,7435,7436,7437,7438,7439,7440,7441,7442,7443,7447,7454,7455,7456,7457,7458,7459,7460,7461,7462,7473,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528, -7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7627,7628,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7648,7649,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7826,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164, -8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8535,8538,8539,8541,8542,8543,8552,8560,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8576,8578,8583,8584,8585,8586,8587,8591,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799 - } - Vertices: *20733 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, -0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, -0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, -0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, -4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, --7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0.00165987014770508,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05, -0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05, -0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05, -0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05, -0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,-0.0112005472183228,0.00912189483642578,0.0103044509887695,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,-0.00951600074768066,0.0102636814117432,0.00877571105957031,7.72476196289063e-05,0,0,0.000159978866577148, -0,0,7.77244567871094e-05,0,0,-0.00321686267852783,0.00141119956970215,0.00297164916992188,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,-0.0109648704528809,0.00925469398498535,0.0100946426391602,0.000159740447998047,0,0,8.34465026855469e-05,0,0,-0.000371485948562622,0.00751352310180664,0.000403404235839844,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,-0.0103201866149902,0.00532746315002441,0.00943088531494141,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0.00575780868530273,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,-0.00441968441009521,0.00829124450683594,0.00413608551025391,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,-0.0114850997924805,0.010596752166748,0.0105762481689453,0.000159621238708496,0,0,7.72476196289063e-05,0,0,-0.00839436054229736,0.00775384902954102,0.00766849517822266,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,-0.0122543573379517,0.00765705108642578,0.0111989974975586,7.71284103393555e-05,0,0,8.32080841064453e-05, -0,0,-0.00684654712677002,0.00331211090087891,0.00626945495605469,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,-0.000475645065307617,0.000216007232666016,0.000571250915527344,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05, -0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148, -0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348, -0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05, -0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0.000743865966796875,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05, -0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625, -0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05, -0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05, -0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05, -0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05, -0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05, -0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05, -0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05, -0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,-0.00202178955078125,0.00714993476867676,0.00189685821533203,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,-0.00868260860443115,0.00436019897460938,0.00794219970703125,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05, -0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,-0.00993096828460693,0.00830817222595215,0.00907230377197266,-0.0108781456947327,0.0106570720672607,0.0100212097167969,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0.00443625450134277,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,-0.00166046619415283,0.00067448616027832,0.00157070159912109,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,-0.0122181177139282,0.00872611999511719,0.0111598968505859,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05, -0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0.00702929496765137,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,-0.00719505548477173,0.00951862335205078,0.00665855407714844,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,-0.0115203857421875,0.0100860595703125,0.0106058120727539,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,-0.00946342945098877,0.0084996223449707,0.00871753692626953,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,-0.01155686378479,0.00639605522155762,0.0105657577514648,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,-0.00490903854370117, -0.00232052803039551,0.00457954406738281,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,4.76837158203125e-07,3.79085540771484e-05,4.57763671875e-05,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05, -0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0, -7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05, -0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0, -8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625, -0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945, -0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05, -0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0.00244522094726563,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05, -0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, -0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0, -0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05, -0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0, -9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05, -0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05, -0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0, -0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05, -0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944, -0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0, -0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05, -0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0, -0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05, -0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0, -9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05, -0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0, -0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0, -0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05, -0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0, -0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365, -0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05, -0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332, -0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0, -0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05, -0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, -8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0, -9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05, -0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477, -0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0, -0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05, -0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0, -9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05, -0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,1.67509351823815e-29,8.10623168945313e-06,0,4.36557456851006e-11,0.625221729278564,0.0546998977661133,1.45519152283669e-11,0.599854946136475,-0.0191240310668945,1.45519152283669e-10,8.58306884765625e-06,0,4.36557456851006e-11,0.62521505355835,0.0546979904174805,2.91038304567337e-11,0.625211238861084,0.0546989440917969,4.36557456851006e-11,-1.04904174804688e-05,0,-0.00013883646170143,0.372093200683594,0.0213184356689453,-4.72937244921923e-11,8.58306884765625e-06,0,-7.27595761418343e-12,0.581961631774902,-0.107844352722168,-2.03726813197136e-10, --8.58306884765625e-06,0,-0.000229898621910252,0.0665550231933594,0.0402717590332031,1.76704839760241e-29,8.34465026855469e-06,0,1.76704839760241e-29,-4.05311584472656e-06,0,1.6494232794919e-29,8.22544097900391e-06,0,1.76704839760241e-29,-8.2552433013916e-06,0,1.76704839760241e-29,2.08616256713867e-06,0,1.76704839760241e-29,4.17232513427734e-06,0,1.26401073430316e-05,0.113314867019653,0.0308637619018555,-4.99820525874384e-05,0.0932981967926025,0.0424404144287109,-0.000167526726727374,0.0941486358642578,0.0398797988891602,-0.000212308048503473,0.095822811126709,0.0415964126586914,9.45455485634739e-06,0.0699036121368408,0.00784492492675781,1.64724848328751e-29,0.000186681747436523,-1.23977661132813e-05,1.69452569998719e-29,-8.22544097900391e-06,0,1.70417235205941e-29,-4.17232513427734e-06,0,1.71227329488799e-29,-2.08616256713867e-06,0,1.68687870486503e-29,6.07967376708984e-06,0,1.6823769940833e-29,4.11272048950195e-06,0,1.76704839760241e-29,8.58306884765625e-06,0,1.20450953867742e-29,6.07967376708984e-06,0,1.25386284767183e-29,6.19888305664063e-06,0,1.76704839760241e-29,8.34465026855469e-06,0,1.76704839760241e-29,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,0.000309169292449951,0,0,-8.22544097900391e-06,0,0,0.000511392951011658,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0.000207781791687012,0.0245532989501953,0.00350666046142578,0,0.0354187488555908,-0.0103969573974609,-0.0064576268196106,0.755786418914795,0.0654315948486328,-0.00721031427383423,0.651564121246338,0.0654945373535156,-0.00112724304199219,0.026801586151123,0.000799179077148438,-0.00113487243652344,0.0268139839172363, -0.0007476806640625,-0.00976300239562988,0.432011604309082,0.00847816467285156,-0.0118250846862793,0.420721530914307,0.0100240707397461,-0.0136041641235352,0.888204097747803,0.0478706359863281,-0.0383615493774414,0.896750450134277,0.0504426956176758,-0.0446830987930298,1.0450005531311,0.0729484558105469,-0.0404013395309448,1.09091520309448,0.0747718811035156,-0.0325756072998047,0.992218494415283,0.0808525085449219,-0.0303802490234375,1.06364154815674,0.0820674896240234,-0.0183617472648621,0.848072528839111,0.0761556625366211,-0.0166680812835693,0.917777538299561,0.0765933990478516,0.0101804733276367,0.71897554397583,0.0275468826293945,0.013451099395752,0.740117073059082,0.0244245529174805,-0.000269412994384766,0.006439208984375,0.00017547607421875,-0.000269889831542969,0.00644779205322266,0.000187873840332031,1.43051147460938e-06,1.04904174804688e-05,0,1.43051147460938e-06,0,0,-0.00703734159469604,0.755792617797852,0.0654182434082031,-0.0179983377456665,0.91779613494873,0.0763101577758789,-0.0319108963012695,1.06371212005615,0.081242561340332,-0.0416061878204346,1.09096956253052,0.0735578536987305,-0.0387027263641357,0.899975299835205,0.0491504669189453,0.0107953548431396,0.725334644317627,0.0262012481689453,-0.0113449096679688,0.423914432525635,0.00941085815429688,-0.00113391876220703,0.0267977714538574,0.000773429870605469,-0.000270366668701172,0.00644779205322266,0.000180244445800781,-1.19209289550781e-06,0,0,-0.00669759511947632,0.755788803100586,0.0654220581054688,-0.0172392725944519,0.91779613494873,0.076472282409668,-0.0310711860656738,1.06368112564087,0.0817384719848633,-0.0408622026443481,1.09095668792725,0.0743227005004883,-0.0385841131210327,0.897578239440918,0.0499868392944336,0.0102510452270508,0.720681667327881,0.0270853042602539,-0.0117120742797852,0.421597003936768,0.00982189178466797,-0.00113058090209961,0.0268158912658691,0.000789642333984375,-0.00027012825012207,0.00643730163574219,0.000186920166015625,-0.00238016247749329,0.521926403045654,0.0653915405273438,-0.0105714201927185,0.565833568572998, -0.050196647644043,-0.056550145149231,0.721290826797485,0.0206060409545898,-0.0386338233947754,0.753669500350952,0.0195217132568359,-0.0120680332183838,0.72503137588501,0.00529766082763672,0.0269381999969482,0.828293800354004,-0.00887298583984375,0.033233642578125,0.676615715026855,-0.0116863250732422,0.0017998218536377,0.0200862884521484,-0.000698089599609375,-8.24928283691406e-05,0.00215625762939453,4.10079956054688e-05,0,-1.04904174804688e-05,0,-0.0102051198482513,0.754615783691406,0.00870609283447266,-0.012187123298645,0.928916454315186,-0.0700969696044922,-0.024221658706665,1.02108192443848,0.0188570022583008,-0.0350801944732666,1.07532501220703,0.0137729644775391,-0.0248868465423584,1.00788879394531,0.0249185562133789,0.0077822208404541,0.794155120849609,0.00853824615478516,-0.00378155708312988,0.455960273742676,-0.000884056091308594,-0.000746726989746094,0.0179233551025391,0.000477790832519531,-0.000178098678588867,0.00429058074951172,0.000109672546386719,-0.000324130058288574,0.219309091567993,0.0564250946044922,-0.0247697234153748,0.233216285705566,0.0305051803588867,-0.0912512540817261,0.34543251991272,0.0277090072631836,-0.0456092357635498,0.229515075683594,0.0218381881713867,0.0164978504180908,0.639513492584229,0.0104579925537109,0.0589981079101563,0.331307411193848,-0.0161275863647461,0.0687851905822754,0.289051532745361,-0.0238990783691406,0.00958347320556641,0.0459351539611816,-0.00373649597167969,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,5.24520874023438e-06,9.5367431640625e-07,0,-6.19888305664063e-06,0,0,3.57627868652344e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,-4.76837158203125e-07,0,-2.02655792236328e-06,4.76837158203125e-07,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0.00826478004455566,0.00652158260345459,-0.00689125061035156, -0,6.19888305664063e-06,0,0.000351905822753906,0.000107288360595703,-0.000316619873046875,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,-1.43051147460938e-06,2.62260437011719e-06,1.9073486328125e-06,0.00440287590026855,7.80820846557617e-05,-0.000230789184570313,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0.0038917064666748,0.209569215774536,-0.0108680725097656,-0.0760703086853027,0.288944721221924,0.0102376937866211,-0.116413116455078,0.287445068359375,0.0392980575561523,-0.00628423690795898,0.271638154983521,0.00808143615722656,-0.100013136863708,0.352385282516479,0.0306806564331055,-0.0618683099746704,0.358146190643311,-0.00499248504638672,-0.0458624362945557,0.332109928131104,0.0516653060913086,-0.0606355667114258,0.33014440536499,0.128809928894043,-0.0014769434928894,0.179417371749878,-0.0376434326171875,-0.004081130027771,0.211915016174316,0.085658073425293,0.00159692764282227,0.278982639312744,0.0107526779174805,0.00873994827270508,0.195996999740601,-0.00588130950927734,0.0730884075164795,0.280040740966797,-0.0112800598144531,0.108134746551514,0.321375370025635,-0.0274362564086914,0.0170812606811523,0.0733165740966797,-0.00606250762939453,-9.04202461242676e-05,0.221079349517822,0.0371360778808594,-0.000237941741943359,0.225179672241211,0.0496273040771484,-0.00130623579025269,0.229325294494629,0.0464344024658203,-0.00122720003128052,0.219708681106567,0.034942626953125,0.000685840845108032,0.229705095291138,0.0365839004516602,-7.04675912857056e-05,0.216396570205688,0.0529537200927734,0.0057181715965271,0.267945289611816,0.0305585861206055,0.00134307146072388,0.266021251678467,0.0447587966918945,0.0181542634963989, -0.305384874343872,0.0260677337646484,0.0112742781639099,0.318174123764038,0.0292339324951172,0.0200811624526978,0.299572944641113,0.031550407409668,0.0261296629905701,0.317383527755737,0.024622917175293,0.00447320938110352,0.274620056152344,0.0849571228027344,0.0108854174613953,0.26762843132019,0.0886831283569336,-0.0238493680953979,0.304083585739136,0.0853090286254883,-0.0444456338882446,0.332689762115479,0.0983448028564453,-0.0658355951309204,0.378058671951294,0.0360250473022461,-0.0957770347595215,0.370858192443848,0.0462675094604492,-0.0858683586120605,0.351141929626465,0.0215988159179688,-0.0936354398727417,0.317138671875,0.0419235229492188,-0.0364720225334167,0.323412179946899,0.014434814453125,-0.0940687656402588,0.401812791824341,0.0318126678466797,-0.0311322808265686,0.31005597114563,0.0309610366821289,-0.0124737620353699,0.246675968170166,0.0252685546875,-0.0606476068496704,0.350630521774292,0.015223503112793,-0.0961501598358154,0.339097023010254,0.0322952270507813,-0.000104695558547974,0.222729206085205,0.04266357421875,0.000386953353881836,0.228110313415527,0.0434179306030273,0.00504574179649353,0.270585298538208,0.0365028381347656,0.0200161933898926,0.318885803222656,0.026127815246582,0.0227074027061462,0.303089380264282,0.0350122451782227,0.00698608160018921,0.266458034515381,0.0892333984375,-0.0301823616027832,0.308229684829712,0.0911026000976563,-0.0739552974700928,0.372309446334839,0.0417442321777344,-0.0965045690536499,0.329387187957764,0.0306615829467773,-0.0783208608627319,0.360106945037842,0.0219898223876953,-0.0524944663047791,0.362272262573242,0.0199012756347656,-0.0181271433830261,0.268814563751221,0.0278844833374023,-0.00176471471786499,0.224229335784912,0.038996696472168,-0.00203204154968262,0.22784161567688,0.0422534942626953,-0.0236565470695496,0.288830995559692,0.0295829772949219,-0.066938579082489,0.3922438621521,0.0239658355712891,-0.0896177291870117,0.358153820037842,0.0274257659912109,-0.0998822450637817,0.315372943878174,0.0376310348510742,-0.085384726524353,0.363654375076294,0.0440874099731445, --0.0365442037582397,0.312684059143066,0.0941066741943359,0.00861990451812744,0.263624668121338,0.0879421234130859,0.0242231488227844,0.308136701583862,0.0332546234130859,0.0190340280532837,0.322310447692871,0.0256614685058594,0.00445556640625,0.273171424865723,0.0387287139892578,4.68790531158447e-05,0.225960731506348,0.0471343994140625,-0.000161170959472656,0.224664688110352,0.0457429885864258,-0.000293046236038208,0.221037149429321,0.0534124374389648,0.0239631533622742,0.317543745040894,0.00891494750976563,0.0120065212249756,0.267500638961792,0.0914688110351563,0.00610935688018799,0.228328943252563,0.0976858139038086,0.0113705992698669,0.215920925140381,-0.00163173675537109,-0.0593676567077637,0.331184387207031,0.119748115539551,-0.0530027151107788,0.343633413314819,0.106705665588379,-0.102969408035278,0.375547409057617,0.0465583801269531,-0.106029272079468,0.359499216079712,0.0430288314819336,-0.0821728706359863,0.374294996261597,0.0272769927978516,-0.0931681394577026,0.355748653411865,0.0296497344970703,-0.103262305259705,0.328924179077148,0.0363988876342773,-0.116287231445313,0.327475070953369,0.0438652038574219,-0.125649690628052,0.319050550460815,0.0483522415161133,-0.128890991210938,0.29535436630249,0.0497426986694336,-0.0681842565536499,0.323263883590698,0.0381383895874023,-0.0328676700592041,0.295997142791748,0.0253171920776367,-0.0588729381561279,0.30604362487793,0.0351772308349609,-0.0164283514022827,0.310169458389282,0.0238962173461914,-0.0539472103118896,0.284495115280151,0.0330324172973633,-0.00815927982330322,0.316786289215088,0.0248270034790039,0.0100841522216797,0.268871545791626,0.0110940933227539,0.0159760713577271,0.200824975967407,-0.00121212005615234,-0.0257208347320557,0.229422569274902,-0.00671768188476563,-0.0621352195739746,0.271791219711304,0.0253992080688477,-0.0845792293548584,0.285221576690674,0.0399227142333984,-0.101680636405945,0.314624309539795,0.0466976165771484,-0.108863949775696,0.316025972366333,0.0466594696044922,-0.105158090591431,0.309003114700317,0.039586067199707,-0.0970295667648315, -0.33769702911377,0.0309982299804688,-0.0827312469482422,0.36312198638916,0.021031379699707,0,0.00338232517242432,-0.00158405303955078,0.00429451465606689,0.0592513084411621,-0.0305633544921875,0.0211195945739746,0.139804482460022,-0.0502300262451172,0,-6.31809234619141e-06,0,0.00433343648910522,0.00294828414916992,-0.00389480590820313,0.0252722501754761,0.0320888757705688,-0.0225429534912109,0,-6.19888305664063e-06,0,9.29832458496094e-06,4.16040420532227e-05,-1.04904174804688e-05,0.0228914022445679,0.0155409574508667,-0.0204372406005859,0,0.000717401504516602,-0.00932979583740234,0.00132960081100464,0.0811953544616699,-0.0579986572265625,-0.0152758359909058,0.235925436019897,-0.0399532318115234,0.00755047798156738,0.110235929489136,-0.0141963958740234,0.00755584239959717,0.123297452926636,-0.0199966430664063,0.0156934261322021,0.0302205085754395,-0.0118398666381836,0.01642906665802,0.0568747520446777,-0.0121850967407227,0.0275267362594604,0.0770039558410645,-0.0206851959228516,0.0272289514541626,0.114178895950317,-0.0165262222290039,0.0348739624023438,0.14709997177124,-0.0115022659301758,0.0410184860229492,0.251644849777222,-0.0207042694091797,0.0344020128250122,0.150479078292847,-0.0272340774536133,0.0157496929168701,0.292929410934448,-0.0247974395751953,0.0179822444915771,0.171730756759644,-0.0133705139160156,0.0292209386825562,0.180231332778931,-0.014042854309082,0.0018455982208252,0.180527925491333,-0.0185117721557617,-0.030372142791748,0.306731224060059,-0.00818157196044922,0.00414001941680908,0.29831862449646,-0.0112419128417969,0.0319081544876099,0.280459403991699,-0.0141963958740234,0.0158529281616211,0.305838584899902,-0.0123748779296875,-0.0260626077651978,0.333413600921631,-0.00878429412841797,0,0.00750064849853516,-0.0115270614624023,-0.000171542167663574,0.158647775650024,-0.0788593292236328,-0.0292532444000244,0.30135703086853,-0.0233163833618164,-0.0321931838989258,0.336346387863159,-0.0120134353637695,-0.00671994686126709,0.340452432632446,-0.0129766464233398,0.0181764364242554,0.109813690185547,-0.0156803131103516, -0.019172191619873,0.0287120342254639,-0.0126934051513672,0.0277440547943115,0.0352063179016113,-0.0233974456787109,0.0118551254272461,0.00458157062530518,-0.0106267929077148,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0.035552978515625,0.0257267951965332,-0.00863170623779297,0.0657587051391602,0.143848180770874,-0.00960063934326172,0.0401880741119385,0.0125713348388672,-0.00293827056884766,0.0869941711425781,0.144849300384521,-0.0144081115722656,0.00554919242858887,0.00792217254638672,-0.000844955444335938,0.022808313369751,0.0733199119567871,-0.00635623931884766,0,6.19888305664063e-06,0,0.000807762145996094,0.00329065322875977,-0.000274658203125,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,5.24520874023438e-06,0.000112950801849365,0,0,2.08616256713867e-06,0,-2.38418579101563e-06,-3.91006469726563e-05,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,2.86102294921875e-06,0.00014302134513855,0,1.19209289550781e-06,-1.34110450744629e-05,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,0.000311128795146942,0,0,0.000772282481193542,0,0,0.0005522221326828,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.02655792236328e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06, -9.5367431640625e-07,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,-4.93526458740234e-05,-9.46521759033203e-05,-5.81741333007813e-05,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,0.000157535076141357,-0.000370025634765625,0,0.000209689140319824,0,0,8.65459442138672e-05,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,7.89165496826172e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,-6.67572021484375e-06,-3.42130661010742e-05,7.62939453125e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,4.76837158203125e-07,-4.76837158203125e-07,-8.22544097900391e-06,4.76837158203125e-07,0,-8.22544097900391e-06,4.76837158203125e-07,-4.76837158203125e-07,-8.46385955810547e-06,0,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,9.5367431640625e-07,4.29153442382813e-06,-3.33786010742188e-06,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-0.000197649002075195, -0,0,-4.29153442382813e-06,0,0,4.05311584472656e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,-3.814697265625e-06,-2.93254852294922e-05,4.76837158203125e-06,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,-7.51018524169922e-06,-5.88893890380859e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.000306129455566406,-2.57492065429688e-05,0.000108718872070313,-0.000709295272827148,-9.5367431640625e-06,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06, -0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06, -0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,-0.00321632623672485,0.324505567550659,0.0185317993164063, --0.00622808933258057,0.322984218597412,0.0276298522949219,-0.0102658867835999,0.325830698013306,0.0279827117919922,-0.0180141925811768,0.34404182434082,0.0183572769165039,-0.0282357931137085,0.363718032836914,0.0104436874389648,-0.0412914752960205,0.372288942337036,0.00556373596191406,-0.00249552726745605,0.314595222473145,0.0110912322998047,-0.00195574760437012,0.290990352630615,0.00876235961914063,-0.00182050466537476,0.269870281219482,0.0119142532348633,-0.000958710908889771,0.251556634902954,0.0110855102539063,-0.000898241996765137,0.233148097991943,0.00906944274902344,-0.00387734174728394,0.236122369766235,0.00534439086914063,-0.0134809017181396,0.289217710494995,0.00197982788085938,-0.0271432399749756,0.336067914962769,0.0020294189453125,-0.0458550453186035,0.365183353424072,0.00526332855224609,-0.00401544570922852,0.300765991210938,0.00600051879882813,-0.00627082586288452,0.295955896377563,0.0047760009765625,-0.0112379789352417,0.315004110336304,0.00195121765136719,-0.0230578184127808,0.347858428955078,0.00159168243408203,-0.00301611423492432,0.303436756134033,0.006683349609375,-1.81898940354586e-11,8.58306884765625e-06,0,-7.27595761418343e-12,2.86102294921875e-06,0,0.0136566162109375,0.447099685668945,-0.14747428894043,0.00156354904174805,0.148046493530273,-0.0865316390991211,0.00944364070892334,0.709800720214844,-0.244275093078613,0.0313374996185303,0.774456977844238,-0.176634788513184,-0.210403084754944,0.587462902069092,-0.37300968170166,-0.13475376367569,0.411040782928467,-0.189296722412109,-0.000753223896026611,0.163462162017822,6.67572021484375e-05,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,4.36557456851006e-11,0.625209331512451,0.0546998977661133,-0.00586485862731934,0.755780220031738,0.0654458999633789,-0.0151665210723877,0.917779445648193,0.0766630172729492,-0.0277104377746582,1.06363153457642,0.0822687149047852,-0.0367889404296875,1.09089088439941,0.0751352310180664,-0.0341125726699829,0.899980545043945,0.050358772277832,0.0134456157684326,0.722182273864746,0.0269041061401367, --0.0532679557800293,0.451332092285156,0.00956821441650391,0.00796389579772949,0.0724587440490723,0.000767707824707031,-0.000245094299316406,0.00644302368164063,0.000172615051269531,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-5.96046447753906e-08,-8.58306884765625e-06,0,4.36557456851006e-11,0.581068992614746,0,8.94069671630859e-08,0.675493240356445,0,-4.76837158203125e-07,0.908459186553955,-0.0588235855102539,4.76837158203125e-07,1.15421676635742,-0.164273262023926,-0.000523686408996582,1.18589067459106,-0.24884033203125,0.00607717037200928,1.08390760421753,-0.177225112915039,0.045795202255249,0.960368156433105,-0.219592094421387,0.0046236515045166,0.68829870223999,-0.140535354614258,5.60283660888672e-05,0.208590507507324,-0.117132186889648,2.38418579101563e-07,0.0654382705688477,-0.0427227020263672,-3.57627868652344e-07,-1.04904174804688e-05,0,2.68220901489258e-07,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0.00121021270751953,0.00485825538635254,-0.000398635864257813,1.83582305908203e-05,9.48905944824219e-05,-7.62939453125e-06,0.000323295593261719,0.00412917137145996,-0.000304222106933594,-0.000167965888977051,4.98294830322266e-05,3.814697265625e-06,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,1.53641994185809e-29,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,1.45414240907454e-29,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,1.69348870708276e-29,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-0.000313222408294678, -0,0,-8.22544097900391e-06,0,0,-0.000527843832969666,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0.00439992547035217,0.517575263977051,0.0448122024536133,0.00491273403167725,0.433036804199219,0.0448551177978516,0.000164985656738281,0.00391578674316406,0.000117301940917969,0.000165939331054688,0.00390720367431641,0.000109672546386719,0.00192570686340332,0.0425376892089844,0.00149726867675781,0.00190901756286621,0.0425209999084473,0.00159740447998047,0.00740933418273926,0.168084144592285,0.00922489166259766,0.00716936588287354,0.168070316314697,0.00955009460449219,0.00945770740509033,0.210323810577393,0.0168657302856445,0.00919806957244873,0.251285076141357,0.0173206329345703,0.00968825817108154,0.21852970123291,0.0248012542724609,0.00918245315551758,0.325525283813477,0.0251855850219727,0.00825071334838867,0.304775238037109,0.0346517562866211,0.00749325752258301,0.416677474975586,0.0347995758056641,0.00453972816467285,0.101328372955322,0.00474834442138672,0.00467371940612793,0.101361274719238,0.00450992584228516,3.95774841308594e-05,0.000939369201660156,2.57492065429688e-05,3.83853912353516e-05,0.000926971435546875,2.6702880859375e-05,1.43051147460938e-06,1.04904174804688e-05,0,1.43051147460938e-06,0,0,0.0047948956489563,0.517581462860107,0.0448036193847656,0.0080915093421936,0.416696071624756,0.0346736907958984,0.00964534282684326,0.32557487487793,0.024937629699707,0.00946390628814697,0.251312255859375,0.0170431137084961,0.00734663009643555,0.16808032989502,0.00935840606689453,0.00464129447937012,0.101348876953125,0.004608154296875,0.00192952156066895,0.0425310134887695,0.00154209136962891,0.000165224075317383,0.00391197204589844,0.000113487243652344,3.98159027099609e-05,0.000926971435546875,2.57492065429688e-05,-1.19209289550781e-06,0,0,0.00456336140632629,0.517577648162842,0.0448064804077148,0.00775003433227539,0.416675567626953,0.0347461700439453,0.0093914270401001, -0.325543880462646,0.0250873565673828,0.00930333137512207,0.251285076141357,0.0172185897827148,0.00723886489868164,0.168055534362793,0.00947856903076172,0.00458240509033203,0.101344585418701,0.00469398498535156,0.00191807746887207,0.0425271987915039,0.00157833099365234,0.000164985656738281,0.00390958786010742,0.000115394592285156,3.93390655517578e-05,0.000937461853027344,2.6702880859375e-05,0.00138106942176819,0.174463748931885,0.0148143768310547,0.00243347883224487,0.138896942138672,0.0115547180175781,0.00281989574432373,0.108523368835449,0.00824451446533203,0.0027461051940918,0.0837712287902832,0.00560855865478516,0.00218415260314941,0.0560426712036133,0.00302505493164063,0.00143527984619141,0.0337743759155273,0.00147438049316406,0.000608921051025391,0.0141968727111816,0.000462532043457031,5.17368316650391e-05,0.00130796432495117,2.86102294921875e-05,1.21593475341797e-05,0.000323295593261719,4.76837158203125e-06,0,-1.04904174804688e-05,0,0.0192690491676331,0.43364429473877,0.00717926025390625,0.00544548034667969,0.27778434753418,-0.077479362487793,0.00637984275817871,0.217047214508057,-0.0483465194702148,0.00623083114624023,0.16754674911499,-0.0815544128417969,0.0048828125,0.112064361572266,-0.0705051422119141,0.00308442115783691,0.0675640106201172,-0.034794807434082,0.0012822151184082,0.028353214263916,0.000987052917480469,0.000110149383544922,0.00261783599853516,7.05718994140625e-05,2.55107879638672e-05,0.000623703002929688,1.52587890625e-05,-2.98023223876953e-05,0.00639581680297852,0.00542831420898438,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,3.33786010742188e-06,-9.5367431640625e-07,0,-6.19888305664063e-06,0,0,5.00679016113281e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,4.76837158203125e-07,0,-2.02655792236328e-06,-4.76837158203125e-07,0,8.2850456237793e-06,0,0,1.03116035461426e-05, -0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,-1.43051147460938e-06,1.78813934326172e-05,-1.9073486328125e-06,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-0.00416469573974609,0,-7.12275505065918e-06,-0.000834941864013672,0.003082275390625,0,-0.00478029251098633,0,0,-0.00177645683288574,0,0,-0.00488185882568359,0,0,0.0162150859832764,0.0102510452270508,0,-0.00275206565856934,0,1.16229057312012e-06,0.0046694278717041,0.00311088562011719,0,-0.000292301177978516,0,0,-0.00450038909912109,-2.09808349609375e-05,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-0.00536847114562988,0,0,-0.00615191459655762,0,0,-0.00347018241882324,0,0,-0.00066375732421875,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-0.00232410430908203,0,0,-0.0029299259185791,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-0.00137019157409668,0,0,-0.00381922721862793,0,0,-0.0049736499786377,0.00102901458740234, -0,-0.00697517395019531,0,-3.10242176055908e-05,0.0138659477233887,0.00889492034912109,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0, --8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,5.24520874023438e-06,-0.000117003917694092,0,0,2.08616256713867e-06,0,-2.38418579101563e-06,3.91006469726563e-05,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,2.86102294921875e-06,-0.000147163867950439,0,1.19209289550781e-06,1.75833702087402e-05,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,-0.000307001173496246,0,0,-0.000784620642662048,0,0,-0.0005522221326828,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.08616256713867e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,-9.5367431640625e-07,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,-4.93526458740234e-05,8.22544097900391e-05,5.81741333007813e-05,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,-0.000149309635162354,0.000370025634765625,0,-0.000226140022277832,0,0,-8.65459442138672e-05,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-8.74996185302734e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06, -0,-6.67572021484375e-06,2.15768814086914e-05,-7.62939453125e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,-4.76837158203125e-07,-4.76837158203125e-07,-8.22544097900391e-06,-4.76837158203125e-07,0,-8.22544097900391e-06,-4.76837158203125e-07,-4.76837158203125e-07,-7.98702239990234e-06,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-6.19888305664063e-06,0,0,2.62260437011719e-06,-9.5367431640625e-07,4.29153442382813e-06,2.38418579101563e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,0.000193357467651367,0,0,-3.93390655517578e-06,0,0,4.17232513427734e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,-3.814697265625e-06,4.17232513427734e-05,-4.76837158203125e-06,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,-7.51018524169922e-06,7.15255737304688e-05,1.04904174804688e-05,2.11000442504883e-05,0.000310420989990234,2.57492065429688e-05,0.000108718872070313,0.000688791275024414,9.5367431640625e-06,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06, -0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06, -0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0, -4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,0.000345706939697266,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0.00399598479270935,0.517569541931152,0.0448226928710938,0.00681763887405396,0.416679382324219,0.0348310470581055,0.00837469100952148,0.325535774230957,0.0252447128295898,0.00837516784667969,0.251260757446289,0.017399787902832,0.00649535655975342,0.168055534362793,0.00957965850830078,0.00409412384033203,0.101336479187012,0.00468254089355469,0.0017092227935791,0.0425310134887695,0.00154399871826172,0.000151872634887695,0.00390338897705078,0.000111579895019531,3.71932983398438e-05,0.000943183898925781,2.57492065429688e-05,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-5.96046447753906e-08,-8.58306884765625e-06,0,8.94069671630859e-08,0.525304317474365,0,-4.76837158203125e-07,0.436078071594238,0,4.76837158203125e-07,0.391105175018311,0,1.19209289550781e-07,0.280177593231201,0,1.43051147460938e-06,0,0,-3.57627868652344e-07,-1.04904174804688e-05,0,2.68220901489258e-07,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0, --8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,4.11272048950195e-06,0,-2.38418579101563e-07,-3.34382057189941e-05,0,2.38418579101563e-07,-0.000376224517822266,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-0.00088876485824585,9.5367431640625e-07,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,0.000717803835868835,0,0,0.000728294253349304,0,0,-8.36849212646484e-05,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,-2.38418579101563e-07,4.38094139099121e-05,0,2.38418579101563e-07,0.000359714031219482,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,0.000872313976287842,-9.5367431640625e-07,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,-0.000713661313056946,0,0,-0.000736534595489502,0,0,7.13467597961426e-05,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,-3.814697265625e-06,0.000303089618682861,0,7.15255737304688e-07,0.000398576259613037,0,5.00679016113281e-06,0.000418543815612793,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,-4.29153442382813e-06,-0.000237107276916504,0,-4.76837158203125e-07,1.0371208190918e-05,0,0,6.19888305664063e-06,0,-4.64916229248047e-05,0.000963211059570313,0,0,2.07126140594482e-06,0,-6.19888305664063e-05,-1.8879771232605e-05,3.33786010742188e-05, -6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.96533107757568e-05,0,1.43051147460938e-06,3.06442379951477e-05,-9.5367431640625e-07,0,6.76512718200684e-06,0,0,-2.83122062683105e-06,0,0,-2.50339508056641e-06,0,0,8.2850456237793e-06,0,0,1.0371208190918e-05,0,-3.814697265625e-06,-0.000313341617584229,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000416457653045654,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,-4.29153442382813e-06,0.000233054161071777,0,-4.76837158203125e-07,1.02519989013672e-05,0,-4.64916229248047e-05,-0.000971436500549316,0,0,2.07126140594482e-06,0,-6.19888305664063e-05,8.58306884765625e-06,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,1.3202428817749e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,-4.67896461486816e-06,0,0,-1.2814998626709e-06,0,0,-1.60932540893555e-06,0,0,8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,1.84774398803711e-06,0,0,-3.87430191040039e-06,0 - } - Normals: *20733 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, -0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, --0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, --1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, -0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, -0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, --0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, -3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, --0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, --0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, --0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, --0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, -0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, --0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, --0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, -0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, -0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, -0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, -0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, --0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, -0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, -0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, -0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, -0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, -0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, -0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, --1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, -1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, -0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, --1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, --0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, --0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, --0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, --0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, -0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, --1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, --0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, --0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, -0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, -1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, -0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, -0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, --0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, -0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, -1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, -0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, -1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, --1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, -1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, -0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, --0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, -0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, -0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, -0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, -0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, -0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.36057752370834,0.0150644034147263,0.473320543766022,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049, -1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384, -1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423, --0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204, -0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011, -0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994, -0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311, -0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383, --0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517, --0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139, -1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198, -1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082, -0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835, -0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964, --0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651, -0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508, --0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456, -0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079, -1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721, -1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455, -1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495, -1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719, -1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466, -1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771, -1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202, --1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848, --0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612, --0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242, -0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181, --0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855, --0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711, --1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518, -0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979, --0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534, --0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875, --0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252, --1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172, --0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547, --1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015, -0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835, --0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528, --0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414, --0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398, -0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798, -0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311, --0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775, --1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194, --0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996, --0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797, -0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146, --0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401, --0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144, --0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578, --0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146, --0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273, --1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938, --0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377, -0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444, --0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755, -0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208, --1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682, --1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201, --0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424, --0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353, --0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819, --1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789, --0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984, --0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211, --0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374, --0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726, --0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611, --0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045, --0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669, --0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468, --0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811, -0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817, --1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923, --1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899, --1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841, --0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172, -0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915, -0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966, --0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318, -0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223, -0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276, --0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637, --1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695, --0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132, -0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158, -0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566, --0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864, -0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.61700159311295,0.242999859154224,-0.226044476032257,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749, -0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271, --0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615, -0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578, --0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133, --0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174, --0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.338748961687088,-0.697140499949455, --0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,0.283098638057709,-1.00639636814594,-1.30733358860016,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422, --0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877, --0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254, --1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621, --0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001, --1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877, --0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891, -0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541, -0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664, -0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906, -1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213, --1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223, --0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912, --0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293, --0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346, -0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193, -0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537, --0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552, -0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958, --0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744, --0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727, -0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681, --0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475, --1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397, -0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276, -0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247, --0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965, --0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,-0.605291366577148,0.27814160194248,-1.08560347557068,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.824516475200653,-1.17877915501595,0.0225204229354858,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.714810416102409,0.279693081974983,-0.203442215919495,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111, --0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226, --0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074, --1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805454334016, "Geometry::Mouth_Lower_DownLeft", "Shape" { - Version: 100 - Indexes: *1419 { - a: 5880,5881,5883,5884,5886,5888,5890,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6016,6019,6025,6026,6027,6028,6029,6030,6031,6032,6033,6035,6036,6040,6042,6044,6045,6046,6047,6048,6049,6050,6051,6052,6056,6057,6058,6060,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6074,6075,6078,6082,6083,6084,6085,6086,6087,6088,6089,6090,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578, -6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7172,7180,7183,7184,7186,7189,7193,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7208,7221,7222,7223,7224,7225,7226,7228,7233,7234,7235,7236,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7364,7367,7369,7373,7374,7377,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7398,7401,7407,7408,7409,7410,7411,7412,7413,7414,7415,7417,7418,7421,7422,7424,7426,7427,7428,7429,7430,7431,7432,7433,7434,7438,7439,7440,7442,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7456,7457,7460,7464,7465,7466,7467,7468,7469,7470,7471,7472,7474,7475,7478,7480,7481,7484,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541, -7542,7543,7545,7549,7559,7573,7575,7577,7578,7580,7581,7582,7587,7591,7592,7593,7594,7595,7596,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7761,7766,7767,7768,7769,7772,7773,7774,7775,7776,7784,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178, -8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8568,8570,8572,8575,8576,8577,8578,8579,8580,8581,8582,8583,8585,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8608,8609,8610,8611,8618,8619,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 - } - Vertices: *4257 { - a: 0,8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0.00497248682950158,-0.548084735870361,-0.0485563278198242,0.00417620504595106,-0.563624382019043,-0.0475301742553711,0.00435526434739586,-0.555325984954834,-0.0480413436889648,0.00472632844321197,-0.565429210662842,-0.0475082397460938,0.0003048554117413,-0.182418823242188,-0.0159969329833984,0.00335480239300523,-0.365375518798828,-0.0323753356933594,0,-6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.2552433013916e-06,0,0,2.08616256713867e-06,0,0,4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-2.08616256713867e-06,0,0,6.07967376708984e-06,0,0,4.11272048950195e-06,0,0,8.58306884765625e-06,0,0,6.07967376708984e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,2.88486480712891e-05,-0.000675678253173828,-1.81198120117188e-05,2.76565551757813e-05,-0.000678062438964844,-1.9073486328125e-05,0.00017094612121582,-0.00409936904907227,-0.000115394592285156,0.000173091888427734,-0.00410127639770508,-0.000120162963867188,0.00176191329956055,-0.0390834808349609,-0.00142669677734375, -0.00166797637939453,-0.039097785949707,-0.00132179260253906,0.00432300567626953,-0.0943741798400879,-0.00426387786865234,0.00411057472229004,-0.0944113731384277,-0.00402450561523438,0.00689554214477539,-0.160648822784424,-0.00858211517333984,0.00699412822723389,-0.160629749298096,-0.0089569091796875,0.00916850566864014,-0.242638111114502,-0.0158901214599609,0.00911581516265869,-0.242584705352783,-0.0165596008300781,0.00955605506896973,-0.316099166870117,-0.0237951278686523,0.00906503200531006,-0.316031455993652,-0.0243692398071289,0.00808817148208618,-0.38785982131958,-0.0318822860717773,0.00742655992507935,-0.387808322906494,-0.0322637557983398,0.00476086139678955,-0.465483665466309,-0.0401735305786133,0.00433620810508728,-0.465532779693604,-0.0402641296386719,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,2.83718109130859e-05,-0.000684261322021484,-1.9073486328125e-05,0.000172615051269531,-0.00409364700317383,-0.000118255615234375,0.00173592567443848,-0.0391020774841309,-0.00137519836425781,0.00426602363586426,-0.0943880081176758,-0.00411224365234375,0.00706684589385986,-0.160632133483887,-0.00872230529785156,0.00937855243682861,-0.242619514465332,-0.0162086486816406,0.00958573818206787,-0.316060543060303,-0.0240983963012695,0.00799673795700073,-0.387836456298828,-0.0320215225219727,0.00471046566963196,-0.465488433837891,-0.0401906967163086,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,2.88486480712891e-05,-0.00067138671875,-1.81198120117188e-05,0.000173568725585938,-0.00408506393432617,-0.000120162963867188,0.00177097320556641,-0.0390958786010742,-0.00140762329101563,0.00435376167297363,-0.0943822860717773,-0.00420379638671875,0.00709772109985352,-0.160627841949463,-0.00886917114257813,0.00930821895599365,-0.24258279800415,-0.0164308547973633,0.0093611478805542,-0.316047668457031,-0.0242681503295898,0.00772321224212646,-0.387836456298828,-0.0321779251098633,0.00454488396644592,-0.465593338012695,-0.0402345657348633,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06, -0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,8.34465026855469e-06,-0.000238895416259766,-3.814697265625e-06,5.26905059814453e-05,-0.00137615203857422,-3.24249267578125e-05,0.000499963760375977,-0.0130290985107422,-0.000383377075195313,0.00122761726379395,-0.0314841270446777,-0.00122451782226563,0.00145566463470459,-0.155152320861816,-0.0133819580078125,0.00245857238769531,-0.129283428192139,-0.0106134414672852,0.00291895866394043,-0.105371952056885,-0.00792312622070313,0.00279653072357178,-0.0808711051940918,-0.0052490234375,0.00210881233215332,-0.0535497665405273,-0.00275802612304688,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,1.83582305908203e-05,-0.000444889068603516,-1.04904174804688e-05,0.000111579895019531,-0.0027313232421875,-7.2479248046875e-05,0.00106692314147949,-0.0260767936706543,-0.000834465026855469,0.00261330604553223,-0.0629329681396484,-0.00260543823242188,0.00442695617675781,-0.107118606567383,-0.00565147399902344,0.0058671236038208,-0.161768913269043,-0.0105381011962891,0.0061410665512085,-0.210727691650391,-0.0158357620239258,0.00522565841674805,-0.258561134338379,-0.0212469100952148,0.00307896733283997,-0.310317039489746,-0.0267753601074219,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05, -0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05, -0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.05636024475098e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,2.0638108253479e-06,0,0,-6.18398189544678e-06,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06, -0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06, -0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06, -0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05, -0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-0.125165939331055,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,2.50339508056641e-05,-0.000678062438964844,-1.71661376953125e-05,0.000157594680786133,-0.0040888786315918,-0.000111579895019531,0.00160455703735352,-0.0391020774841309,-0.00137901306152344,0.00396609306335449,-0.0943760871887207,-0.00427341461181641,0.00645017623901367,-0.160614967346191,-0.00903701782226563,0.00844407081604004,-0.242574214935303,-0.016636848449707,0.00854134559631348,-0.316035270690918,-0.0244255065917969,0.00707042217254639,-0.387808322906494, --0.0322942733764648,0.00412115454673767,-0.465522289276123,-0.0402717590332031,0.00387136058270698,-0.562459945678711,-0.0475521087646484,0,1.04904174804688e-05,0,0,-0.293715953826904,0,0,-0.594390869140625,0,0,-0.670866012573242,0,0,-0.72140645980835,0,4.29153442382813e-06,-0.731537342071533,0,0.0031350325079984,-0.729241847991943,0.000248908996582031,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0.00113272666931152,-0.000380992889404297,-0.000149726867675781,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0.00057220458984375,-0.000192642211914063,-7.62939453125e-05,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-0.000138282775878906,-0.00335359573364258,-9.1552734375e-05,-0.000141382217407227,-0.00335597991943359,-9.63211059570313e-05,-0.000836849212646484,-0.0200638771057129,-0.000566482543945313,-0.00085139274597168,-0.020045280456543,-0.000585556030273438,0.0105223655700684,-0.275701999664307,-0.00945758819580078, -0.0160839557647705,-0.188828468322754,-0.00928401947021484,0.128478765487671,-0.484806537628174,-0.0395536422729492,0.181526660919189,-0.465046882629395,-0.0455951690673828,0.321631669998169,-0.741750717163086,-0.0801725387573242,0.182223200798035,-0.612441062927246,-0.0649843215942383,0.260512948036194,-0.880172729492188,-0.0922937393188477,0.277344346046448,-0.775943279266357,-0.105476379394531,0.287640810012817,-0.889443874359131,-0.104708671569824,0.304984211921692,-0.937394618988037,-0.106192588806152,0.191274523735046,-0.816108226776123,-0.0884895324707031,0.169410407543182,-0.895352840423584,-0.0811996459960938,0.0576695799827576,-0.660966873168945,-0.0640077590942383,0.0380387008190155,-0.717542171478271,-0.0578584671020508,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-0.000139951705932617,-0.00336217880249023,-9.44137573242188e-05,-0.000844955444335938,-0.0200371742248535,-0.000576972961425781,0.0149757862091064,-0.182690143585205,-0.00959110260009766,0.195186138153076,-0.432412147521973,-0.0476484298706055,0.337922334671021,-0.681324005126953,-0.0844602584838867,0.386741161346436,-0.809456348419189,-0.118122100830078,0.389187693595886,-0.912434101104736,-0.119653701782227,0.234145522117615,-0.870603084564209,-0.0920467376708984,0.0672255158424377,-0.705062389373779,-0.0629396438598633,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,6.72340393066406e-05,-2.33650207519531e-05,-8.58306884765625e-06,0.000461578369140625,-0.00014495849609375,-6.00814819335938e-05,0,-1.04904174804688e-05,0,-0.000140905380249023,-0.00336980819702148,-9.5367431640625e-05,-0.000849008560180664,-0.0200495719909668,-0.000583648681640625,0.0114765167236328,-0.1755051612854,-0.00948238372802734,0.15228796005249,-0.407019138336182,-0.0425567626953125,0.257792949676514,-0.628143310546875,-0.0752763748168945,0.325756549835205,-0.762980461120605,-0.113333702087402,0.362725496292114,-0.923375129699707,-0.115665435791016,0.21198308467865,-0.898251533508301,-0.0873584747314453,0.0530782341957092,-0.722977161407471,-0.0598583221435547, -0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,-4.31537628173828e-05,-0.00112438201904297,-2.19345092773438e-05,-0.000258207321166992,-0.00669097900390625,-0.000153541564941406,0.0141499042510986,-0.0776057243347168,-0.0071868896484375,0.121555805206299,-0.263933658599854,-0.0142650604248047,0.0299618542194366,-0.227768898010254,-0.0224905014038086,0.122154951095581,-0.3158860206604,-0.035700798034668,0.15530002117157,-0.348066329956055,-0.0407819747924805,0.100840449333191,-0.473615169525146,-0.0424022674560547,0.181271553039551,-0.4158616065979,-0.0803050994873047,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,-9.13143157958984e-05,-0.00225734710693359,-5.62667846679688e-05,-0.000546455383300781,-0.0133605003356934,-0.000356674194335938,0.00746440887451172,-0.124982357025146,-0.00553321838378906,0.134799242019653,-0.345272541046143,-0.0343046188354492,0.263775825500488,-0.541497230529785,-0.0651464462280273,0.182172775268555,-0.640108108520508,-0.0618410110473633,0.258599400520325,-0.624015331268311,-0.0779609680175781,0.199482977390289,-0.574315547943115,-0.0680780410766602,0.0555310249328613,-0.445511341094971,-0.044947624206543,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0.021773099899292,-0.0238652229309082,0.000736236572265625,0,-1.04904174804688e-05,0,0.000370532274246216,-0.000278472900390625,-4.00543212890625e-05,0.0154443979263306,-0.0115947723388672,-0.00166606903076172,0.0260686874389648,-0.0203762054443359,-0.00623416900634766,0.14681088924408,-0.0818672180175781,-0.0597782135009766,0.243725299835205,-0.113347053527832,-0.0929985046386719,0.163993120193481,-0.174602508544922,-0.0414905548095703,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06, -0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0.00545048713684082,-0.00289821624755859,-0.00213623046875,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,-0.000940561294555664,0.00029754638671875,0.000397682189941406,0.088651180267334,-0.0675191879272461,-0.0163068771362305,0.174848794937134,-0.141706466674805,-0.0596170425415039,0.219730138778687,-0.122831344604492,-0.109250068664551,0.1439129114151,-0.0647592544555664,-0.0815811157226563,0.0266549587249756,-0.00977802276611328,-0.0179338455200195,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06, -0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0.00027775764465332,-0.000945091247558594,-0.000173568725585938,0.0937416553497314,-0.108132362365723,-0.0215005874633789,0.0438785552978516, --0.105669975280762,-0.0109701156616211,0.212418794631958,-0.179454803466797,-0.0837669372558594,0.174186229705811,-0.0958642959594727,-0.0681295394897461,0.00127434730529785,-0.00134181976318359,-0.000440597534179688,0.0795769691467285,-0.0723543167114258,-0.0287027359008789,0.201508045196533,-0.163234710693359,-0.0896081924438477,0.0491526126861572,-0.0349664688110352,-0.0228328704833984,0.000831007957458496,-0.000875473022460938,-0.000287055969238281,0.00208234786987305,-0.00147533416748047,-0.000783920288085938,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.08616256713867e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,2.0638108253479e-06,0,0,-6.15417957305908e-06,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06, -0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06, -0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06, -0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0, -0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,-0.160641670227051,0,-1.9073486328125e-06,-0.369204521179199,0,8.58306884765625e-06,-0.449555397033691,0,1.9073486328125e-06,-0.375125885009766,0,0,-0.417221069335938,0.0233571529388428,-0.0369486808776855,-0.462124824523926,0.000219345092773438,-0.11104679107666,-0.445558547973633,0.00853723287582397,-0.194488525390625,-0.313217163085938,0.00408732891082764,-0.222535610198975,-0.11424446105957,0.000196278095245361,-0.185385227203369,-0.0578193664550781,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0.0014042854309082,-0.000472545623779297,-0.000185012817382813,0,-1.04904174804688e-05,0,-0.000128507614135742,-0.00335597991943359,-8.7738037109375e-05,-0.000771522521972656,-0.0200533866882324,-0.000551223754882813,-0.00309538841247559,-0.340774536132813,-0.00697517395019531,0.0789673328399658,-0.48833703994751,-0.0323381423950195,0.183896780014038,-0.690641403198242,-0.0647144317626953,0.223771810531616,-0.788996696472168,-0.095576286315918,0.288812398910522,-0.930753231048584,-0.104083061218262,0.161680936813354,-0.890554904937744,-0.0802450180053711,0.03642937541008,-0.714728355407715,-0.0577220916748047,0,1.04904174804688e-05,0,0,-4.29153442382813e-06,-0.0955801010131836,0,1.9073486328125e-06, --0.110593795776367,0,-4.29153442382813e-06,-0.240964889526367,0.000408649444580078,-0.415371894836426,-0.233325004577637,0.0615160465240479,-0.645479202270508,-0.173598289489746,0.0748404264450073,-0.82729434967041,-0.131120681762695,0.171642065048218,-0.91435718536377,-0.223723411560059,0.16468334197998,-0.956822395324707,-0.216363906860352,0.109791815280914,-0.865742206573486,-0.13390064239502,0.0293015241622925,-0.783292293548584,-0.0689687728881836,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0.00594437122344971,-0.00591850280761719,-0.000782966613769531,0.00511729717254639,-0.00520133972167969,-0.000662803649902344,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,-6.19888305664063e-06,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.11272048950195e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06, -0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,2.05636024475098e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0,0,-4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0 - } - Normals: *4257 { - a: -0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222, -0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473, -0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255, -0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559, -0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959, -0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158, -0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634, -0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714, --1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903, --1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921, --0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886, --0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733, -0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923, --0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427, -0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116, -0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356, -1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.180295750498772,0.379578433930874,1.83726984262466,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088, --1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306, --0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.941988617181778,0.707468748092651,0.298143722116947,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512, --0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959, --0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186, -0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06437003612518,0.84141793847084,0.424562990665436,-0.981949830893427, -0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849, --1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606, -1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201, -0.0914812311530113,0.278137892484665,-1.453280210495,0.33342457190156,0.103442192077637,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-1.25451999902725,0.224796816706657,-0.214592695236206,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707, --0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421, -0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977, -0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048, --0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431, --1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508, -0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391, -0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877, --0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636, --0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.934356838464737,0.651812255382538,-0.385107487440109,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013, -0.297500908374786,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052, -0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382, -1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193, --1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 - } - } - Geometry: 2805454333440, "Geometry::Mouth_Lower_DownRight", "Shape" { - Version: 100 - Indexes: *1417 { - a: 5880,5881,5883,5884,5886,5888,5890,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5982,5985,5987,5991,5992,5995,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6016,6019,6025,6026,6027,6028,6029,6030,6031,6032,6033,6035,6036,6039,6040,6042,6044,6045,6046,6047,6048,6049,6050,6051,6052,6056,6057,6058,6060,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6074,6075,6078,6082,6083,6084,6085,6086,6087,6088,6089,6090,6092,6093,6096,6098,6099,6102,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6167,6177,6191,6193,6195,6196,6198,6199,6200,6205,6209,6210,6211,6212,6213,6214,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6379,6384,6385,6386,6387,6390,6391,6392,6393,6394,6402,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538, -6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7172,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7186,7189,7191,7193,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7208,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7233,7234,7235,7236,7243,7244,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7398,7401,7407,7408,7409,7410,7411,7412,7413,7414,7415,7417,7418,7422,7424,7426,7427,7428,7429,7430,7431,7432,7433,7434,7438,7439,7440,7442,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7456,7457,7460,7464,7465,7466,7467,7468,7469,7470,7471,7472,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498, -7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159, -8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8564,8565,8568,8572,8575,8576,8577,8578,8579,8580,8581,8582,8583,8585,8598,8599,8600,8601,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *4251 { - a: 0,8.10623168945313e-06,0,0,-1.04904174804688e-05,0,-0.00497248714964371,-0.548084735870361,-0.0485563278198242,-0.00417620500229532,-0.563624382019043,-0.0475301742553711,-0.00435526437649969,-0.555325984954834,-0.0480413436889648,-0.00472632839955622,-0.565429210662842,-0.0475082397460938,-0.000304855429931195,-0.182418823242188,-0.0159969329833984,-0.0033548023639014,-0.365375518798828,-0.0323753356933594,0,-6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.2552433013916e-06,0,0,2.08616256713867e-06,0,0,4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-2.08616256713867e-06,0,0,6.07967376708984e-06,0,0,4.11272048950195e-06,0,0,8.58306884765625e-06,0,0,6.07967376708984e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,-0.00113272666931152,-0.000380992889404297,-0.000149726867675781,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,-0.00057220458984375,-0.000192642211914063,-7.62939453125e-05,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0.000138282775878906,-0.00335359573364258,-9.1552734375e-05,0.000141382217407227,-0.00335597991943359,-9.63211059570313e-05,0.000836849212646484,-0.0200638771057129,-0.000566482543945313, -0.000850915908813477,-0.0200457572937012,-0.000585556030273438,-0.0105223655700684,-0.275702476501465,-0.00945758819580078,-0.0160839557647705,-0.18882942199707,-0.00928401947021484,-0.128478765487671,-0.484806537628174,-0.0395536422729492,-0.181526660919189,-0.465046882629395,-0.0455951690673828,-0.321631669998169,-0.741750717163086,-0.0801725387573242,-0.182223320007324,-0.612441062927246,-0.0649843215942383,-0.260512948036194,-0.880172729492188,-0.0922937393188477,-0.277344346046448,-0.775943279266357,-0.105476379394531,-0.287640810012817,-0.889443874359131,-0.104708671569824,-0.304984211921692,-0.937394618988037,-0.106192588806152,-0.191274523735046,-0.816108226776123,-0.0884895324707031,-0.169410407543182,-0.895352840423584,-0.0811996459960938,-0.05766960978508,-0.660966873168945,-0.0640077590942383,-0.0380387008190155,-0.717542171478271,-0.0578584671020508,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0.000139951705932617,-0.00336217880249023,-9.44137573242188e-05,0.000844955444335938,-0.0200371742248535,-0.000576972961425781,-0.0149757862091064,-0.182689189910889,-0.00959110260009766,-0.195186138153076,-0.432412624359131,-0.0476484298706055,-0.337922334671021,-0.681324005126953,-0.0844602584838867,-0.386741161346436,-0.809456348419189,-0.118122100830078,-0.389187335968018,-0.912434101104736,-0.119653701782227,-0.23414534330368,-0.870603084564209,-0.0920467376708984,-0.067225456237793,-0.705062389373779,-0.0629396438598633,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,-6.72340393066406e-05,-2.33650207519531e-05,-8.58306884765625e-06,-0.000461578369140625,-0.00014495849609375,-6.00814819335938e-05,0,-1.04904174804688e-05,0,0.000140905380249023,-0.00336980819702148,-9.5367431640625e-05,0.000849008560180664,-0.0200495719909668,-0.000583648681640625,-0.0114767551422119,-0.175506114959717,-0.00948238372802734,-0.15228796005249,-0.407019138336182,-0.0425567626953125,-0.257792949676514,-0.628143310546875,-0.0752763748168945,-0.325756549835205,-0.762980461120605,-0.113333702087402,-0.362725377082825,-0.923375129699707, --0.115665435791016,-0.211983025074005,-0.898251533508301,-0.0873584747314453,-0.0530782341957092,-0.722977161407471,-0.0598583221435547,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,4.31537628173828e-05,-0.00112438201904297,-2.19345092773438e-05,0.000258207321166992,-0.00669097900390625,-0.000153541564941406,-0.0141499042510986,-0.0776057243347168,-0.0071868896484375,-0.121555805206299,-0.263933658599854,-0.0142650604248047,-0.0299618542194366,-0.227768898010254,-0.0224905014038086,-0.122154951095581,-0.3158860206604,-0.035700798034668,-0.15530002117157,-0.348066329956055,-0.0407819747924805,-0.100840449333191,-0.473615169525146,-0.0424022674560547,-0.181271553039551,-0.4158616065979,-0.0803050994873047,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,9.13143157958984e-05,-0.00225734710693359,-5.62667846679688e-05,0.000546455383300781,-0.0133605003356934,-0.000356674194335938,-0.00746440887451172,-0.124982357025146,-0.00553321838378906,-0.134799242019653,-0.345272541046143,-0.0343046188354492,-0.263775825500488,-0.541497230529785,-0.0651464462280273,-0.182172775268555,-0.640108108520508,-0.0618410110473633,-0.258599400520325,-0.624015331268311,-0.0779609680175781,-0.199482977390289,-0.574315547943115,-0.0680780410766602,-0.0555310249328613,-0.445511341094971,-0.044947624206543,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,-0.021773099899292,-0.0238652229309082,0.000736236572265625,0,-1.04904174804688e-05,0,-0.000370532274246216,-0.000278472900390625,-4.00543212890625e-05,-0.0154443979263306,-0.0115947723388672,-0.00166606903076172,-0.0260686874389648,-0.0203762054443359,-0.00623416900634766,-0.14681088924408,-0.0818672180175781,-0.0597782135009766,-0.243725299835205,-0.113347053527832,-0.0929985046386719,-0.163993120193481,-0.174602508544922,-0.0414905548095703,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, -0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,-0.00545048713684082,-0.00289821624755859,-0.00213623046875,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0.000940561294555664,0.00029754638671875,0.000397682189941406,-0.088651180267334,-0.0675191879272461,-0.0163068771362305,-0.174848794937134,-0.141706466674805,-0.0596170425415039,-0.219730138778687,-0.122831344604492,-0.109250068664551,-0.1439129114151,-0.0647592544555664,-0.0815811157226563,-0.0266549587249756,-0.00977802276611328,-0.0179338455200195,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05, -0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05, -0,-0.00027775764465332,-0.000945091247558594,-0.000173568725585938,-0.0937416553497314,-0.108132362365723,-0.0215005874633789,-0.0438785552978516,-0.105669975280762,-0.0109701156616211,-0.212418794631958,-0.179454803466797,-0.0837669372558594,-0.174186229705811,-0.0958642959594727,-0.0681295394897461,-0.00127434730529785,-0.00134181976318359,-0.000440597534179688,-0.0795769691467285,-0.0723543167114258,-0.0287027359008789,-0.201508045196533,-0.163234710693359,-0.0896081924438477,-0.0491526126861572,-0.0349664688110352,-0.0228328704833984,-0.000831007957458496,-0.000875473022460938,-0.000287055969238281,-0.00208234786987305,-0.00147533416748047,-0.000783920288085938,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.05636024475098e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,2.0638108253479e-06,0,0,-6.18398189544678e-06,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05, -0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05, -0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06, -0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0, -0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-0.125165939331055,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,-0.160641670227051,0,-1.9073486328125e-06,-0.369204521179199,0,8.58306884765625e-06,-0.449555397033691,0,1.9073486328125e-06,-0.375125885009766,0,0,-0.417221069335938,-0.0233571529388428,-0.0369510650634766,-0.462124824523926,-0.000219821929931641,-0.111046314239502,-0.445558547973633,-0.00853997468948364,-0.194486141204834,-0.313217163085938,-0.00408762693405151,-0.2225341796875,-0.11424446105957,-0.000199466943740845,-0.185388088226318,-0.0578193664550781,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-0.0014042854309082,-0.000472545623779297,-0.000185012817382813,0,-1.04904174804688e-05,0,0.000128507614135742,-0.00335597991943359,-8.7738037109375e-05,0.000771522521972656,-0.0200533866882324,-0.000551223754882813,0.00309538841247559,-0.340774536132813,-0.00697517395019531,-0.0789673328399658,-0.48833703994751,-0.0323381423950195,-0.183896780014038,-0.690641403198242,-0.0647144317626953,-0.223771810531616,-0.788996696472168,-0.095576286315918,-0.288812398910522,-0.930753231048584,-0.104083061218262, --0.161680936813354,-0.890554904937744,-0.0802450180053711,-0.03642937541008,-0.714728355407715,-0.0577220916748047,-0.00387136053905124,-0.562459945678711,-0.0475521087646484,0,1.04904174804688e-05,0,0,-4.29153442382813e-06,-0.0955801010131836,0,1.9073486328125e-06,-0.110593795776367,0,-4.29153442382813e-06,-0.240964889526367,-0.000408649444580078,-0.415371894836426,-0.233325004577637,-0.0615160465240479,-0.645479202270508,-0.173598289489746,-0.0748379230499268,-0.827291488647461,-0.131120681762695,-0.171644806861877,-0.914356231689453,-0.223723411560059,-0.164683938026428,-0.95682430267334,-0.216363906860352,-0.109791696071625,-0.865742206573486,-0.13390064239502,-0.0293015837669373,-0.783292293548584,-0.0689687728881836,-0.00313503246434266,-0.729241847991943,0.000248908996582031,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,-0.00594437122344971,-0.00591850280761719,-0.000782966613769531,-0.00511729717254639,-0.00520133972167969,-0.000662803649902344,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06, -0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-2.88486480712891e-05,-0.000675678253173828,-1.81198120117188e-05,-2.76565551757813e-05,-0.000678062438964844,-1.9073486328125e-05,-0.00017094612121582,-0.00409936904907227,-0.000115394592285156,-0.000173091888427734,-0.00410127639770508,-0.000120162963867188,-0.00176191329956055,-0.0390834808349609,-0.00142669677734375,-0.00166797637939453,-0.039097785949707,-0.00132179260253906,-0.00432300567626953,-0.0943741798400879,-0.00426387786865234,-0.00411057472229004,-0.0944113731384277,-0.00402450561523438,-0.00689554214477539,-0.160648822784424,-0.00858211517333984,-0.00699412822723389,-0.160629749298096,-0.0089569091796875,-0.00916850566864014,-0.242638111114502,-0.0158901214599609,-0.00911581516265869,-0.242584705352783,-0.0165596008300781,-0.00955605506896973,-0.316099166870117,-0.0237951278686523,-0.00906503200531006,-0.316031455993652,-0.0243692398071289,-0.00808817148208618,-0.38785982131958,-0.0318822860717773,-0.00742655992507935,-0.387808322906494,-0.0322637557983398,-0.00476086139678955,-0.465483665466309,-0.0401735305786133,-0.00433620810508728,-0.465532779693604,-0.0402641296386719,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-2.83718109130859e-05,-0.000684261322021484,-1.9073486328125e-05,-0.000172615051269531,-0.00409364700317383,-0.000118255615234375,-0.00173592567443848,-0.0391020774841309,-0.00137519836425781,-0.00426602363586426,-0.0943880081176758,-0.00411224365234375,-0.00706684589385986,-0.160632133483887,-0.00872230529785156,-0.00937855243682861,-0.242619514465332,-0.0162086486816406,-0.00958573818206787,-0.316060543060303,-0.0240983963012695,-0.00799673795700073,-0.387836456298828,-0.0320215225219727,-0.00471046566963196,-0.465488433837891,-0.0401906967163086,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-2.88486480712891e-05,-0.00067138671875,-1.81198120117188e-05,-0.000173568725585938,-0.00408506393432617, --0.000120162963867188,-0.00177097320556641,-0.0390958786010742,-0.00140762329101563,-0.00435376167297363,-0.0943822860717773,-0.00420379638671875,-0.00709772109985352,-0.160627841949463,-0.00886917114257813,-0.00930821895599365,-0.24258279800415,-0.0164308547973633,-0.0093611478805542,-0.316047668457031,-0.0242681503295898,-0.00772321224212646,-0.387836456298828,-0.0321779251098633,-0.00454488396644592,-0.465593338012695,-0.0402345657348633,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,-8.34465026855469e-06,-0.000238895416259766,-3.814697265625e-06,-5.26905059814453e-05,-0.00137615203857422,-3.24249267578125e-05,-0.000499963760375977,-0.0130290985107422,-0.000383377075195313,-0.00122761726379395,-0.0314841270446777,-0.00122451782226563,-0.00145566463470459,-0.155152320861816,-0.0133819580078125,-0.00245857238769531,-0.129283428192139,-0.0106134414672852,-0.00291895866394043,-0.105371952056885,-0.00792312622070313,-0.00279653072357178,-0.0808711051940918,-0.0052490234375,-0.00210881233215332,-0.0535497665405273,-0.00275802612304688,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,-1.83582305908203e-05,-0.000444889068603516,-1.04904174804688e-05,-0.000111579895019531,-0.0027313232421875,-7.2479248046875e-05,-0.00106692314147949,-0.0260767936706543,-0.000834465026855469,-0.00261330604553223,-0.0629329681396484,-0.00260543823242188,-0.00442695617675781,-0.107118606567383,-0.00565147399902344,-0.0058671236038208,-0.161768913269043,-0.0105381011962891,-0.0061410665512085,-0.210727691650391,-0.0158357620239258,-0.00522565841674805,-0.258561134338379,-0.0212469100952148,-0.00307896733283997,-0.310317039489746,-0.0267753601074219,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06, -0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06, -0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05, -0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.08616256713867e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,2.0638108253479e-06,0,0,-6.15417957305908e-06,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06, -0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05, -0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06, -0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,1.43051147460938e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-2.50339508056641e-05,-0.000678062438964844,-1.71661376953125e-05,-0.000157594680786133, --0.0040888786315918,-0.000111579895019531,-0.00160455703735352,-0.0391020774841309,-0.00137901306152344,-0.00396609306335449,-0.0943760871887207,-0.00427341461181641,-0.00645017623901367,-0.160614967346191,-0.00903701782226563,-0.00844407081604004,-0.242574214935303,-0.016636848449707,-0.00854134559631348,-0.316035270690918,-0.0244255065917969,-0.00707042217254639,-0.387808322906494,-0.0322942733764648,-0.00412115454673767,-0.465522289276123,-0.0402717590332031,0,1.04904174804688e-05,0,0,-0.293715953826904,0,0,-0.594390869140625,0,0,-0.670866012573242,0,0,-0.72140645980835,0,-4.29153442382813e-06,-0.731537342071533,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,8.2850456237793e-06,0,0,-6.19888305664063e-06,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.11272048950195e-06,0,0,-6.16908073425293e-06, -0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,2.05636024475098e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0 - } - Normals: *4251 { - a: -0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222, -0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.464228086173534,1.34762564301491,0.747778013348579,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715, -0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809, -0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271, --0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.317191332578659,0.422314759343863,-1.34763860702515,0.580531150102615, -0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634, -0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059, -0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022, -0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,0.0425741374492645,-0.749953493475914,-1.20673528313637,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941, --1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287, -0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892, --1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937, -0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026, -0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606, -0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329, -0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513, --0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955, -0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.180295750498772,0.379578433930874,1.83726984262466,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.04941457509995,0.156741976737976,0.038623034954071,-1.32715570926666,0.719766840338707,0.45976210385561,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556, --0.960159841911985,-0.729522794485092,0.174396470189095,-1.1230471432209,0.452305108308792,0.757969871163368,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995, --0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086, --0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.4566365480423,-0.102446258068085,-0.783346317708492, --1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582, --1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104, --0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659, --0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915, --0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, --0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496, --0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299, --0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199, --0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372, --1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927, -0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916, --1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833, --0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009, --0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522, -0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236, --0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934, -0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030774448, "Geometry::Mouth_Upper_Inside", "Shape" { - Version: 100 - Indexes: *172 { - a: 5881,5882,5885,5887,5889,5891,5893,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5998,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6053,6054,6055,6056,6057,6058,6059,6060,6061,6072,6073,6074,6075,6076,6077,6078,6079,6080,6091,6092,7164,7166,7172,7173,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7206,7207,7208,7209,7210,7211,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7380,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7435,7436,7437,7438,7439,7440,7441,7442,7443,7454,7455,7456,7457,7458,7459,7460,7461,7462,7473,7474,8546,8552,8553,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8584,8585,8586,8587,8588 - } - Vertices: *516 { - a: 9.83761201496236e-05,0.264973163604736,-0.836542129516602,-0.000279413645330351,-0.974118709564209,-0.719202995300293,-1.99062269530259e-05,-0.712031841278076,-1.1245813369751,5.13340091856662e-06,-0.4106125831604,-1.37310886383057,-0.000431368214776739,-0.412858963012695,0.0205974578857422,-0.00152949907715083,-0.724937915802002,-0.34149169921875,0,0,0.00439834594726563,0.00491288304328918,0.220133781433105,-0.883733749389648,-0.0440585911273956,-1.10382986068726,-0.634349822998047,-0.102494478225708,0.0683712959289551,-0.323273658752441,0.0161700248718262,-0.157132625579834,0.0556793212890625,0.102559328079224,-0.292766094207764,-0.119150161743164,0.0702409744262695,0.0688929557800293,-0.369180679321289,0.258182764053345,-0.51924467086792,-0.226705551147461,0.100175619125366,0.106053829193115,-0.898855209350586,0.223742961883545,-0.780326366424561,-0.395401954650879,0.0771993398666382,0.166711807250977,-1.01431179046631,0.161176323890686,-0.991139888763428,-0.500823974609375,0.052678108215332,0.193344593048096,-1.0997200012207,0.0614325404167175,-1.155930519104,-0.56517505645752,0.0192216038703918,0.200572967529297,-0.948493957519531,0.0882942676544189,0.0705275535583496,-0.588351249694824,0.248382091522217,-0.37091064453125,-0.099644660949707,-0.0382206439971924,-0.039093017578125,0.0206508636474609,-0.0507736206054688,0.0930790901184082,-0.11922550201416,-0.0149548053741455,0.00752925872802734,-0.0126333236694336,-0.0573105812072754,0.11890983581543,-0.115507125854492,-0.00491762161254883,0.0260553359985352,-0.0678768157958984,0.0729407072067261,-0.761091709136963,-1.12329292297363,0.136681377887726,-0.764311790466309,-1.15578556060791,0.253924608230591,-0.692450523376465,-1.11016941070557,0.404941916465759,-0.515819072723389,-0.969767570495605,0.372553944587708,-0.328228950500488,-0.73603343963623,0.315007925033569,-0.22042179107666,-0.492423057556152,0.253969192504883,-0.172928810119629,-0.300533294677734,0.123613119125366,-0.144972324371338,-0.10676383972168,0.0501945018768311,-0.0556221008300781, --0.0735244750976563,0.0319111347198486,0.022705078125,-0.074188232421875,0.052381306886673,-0.442896842956543,-1.41551113128662,0.043260395526886,-0.419477462768555,-1.40836715698242,0.13701868057251,-0.371632099151611,-1.38526248931885,0.245442628860474,-0.273650646209717,-1.21821594238281,0.273274898529053,-0.170646667480469,-0.888178825378418,0.277605652809143,-0.0604081153869629,-0.631057739257813,0.234273910522461,-0.0607857704162598,-0.387771606445313,0.137215137481689,-0.0510315895080566,-0.249722480773926,0.129687547683716,-0.0198707580566406,-0.0894651412963867,0.00830411911010742,0.0492153167724609,0.0659236907958984,0.000200748443603516,0.000857353210449219,-0.003082275390625,-0.00538510084152222,-0.43292236328125,0.0719728469848633,-0.00211423635482788,-0.435808181762695,-0.00144004821777344,-0.0246642827987671,-0.397202491760254,0.0956563949584961,0.0263996124267578,-0.330748081207275,0.23835563659668,0.0755774974822998,-0.311208248138428,0.323648452758789,0.093454122543335,-0.305083751678467,0.179335594177246,0.111202716827393,-0.137352466583252,0.0100679397583008,-0.000843286514282227,-0.124556064605713,-0.0527744293212891,0.000478506088256836,-0.00427150726318359,-0.000130653381347656,-0.0625057816505432,-0.799593448638916,-0.296247482299805,-0.0269572734832764,-0.879314422607422,-0.247371673583984,0.0593546628952026,-0.78093433380127,-0.131237030029297,0.089669942855835,-0.583806991577148,-0.030705451965332,0.101280450820923,-0.41724681854248,0.0969629287719727,0.104849815368652,-0.259567260742188,0.126723289489746,0.0039665699005127,-0.174550533294678,-0.00496196746826172,-0.0689308643341064,-0.0682244300842285,0.0976686477661133,-0.091679573059082,-0.0163650512695313,0.0468482971191406,0,0,0.00326442718505859,0,0,0.00599479675292969,0,0.00560235977172852,0.0157318115234375,-0.00166052579879761,0.0160508155822754,-0.0104598999023438,-0.000184297561645508,0.00051116943359375,-0.000616073608398438,-0.000318348407745361,0.00143718719482422,-0.000998497009277344,-0.00107936069980497,0.554325580596924, --0.127054214477539,0.0206130743026733,0.559921264648438,-0.207831382751465,0.0440825223922729,0.544809818267822,-0.34220027923584,-0.00133860111236572,0.566536903381348,-0.581121444702148,-0.0444616079330444,0.540414333343506,-0.611271858215332,-0.137894034385681,0.27228832244873,-0.64060115814209,-0.166476726531982,0.18254566192627,-0.433635711669922,-0.123983860015869,0.142982482910156,-0.287375450134277,-0.315650224685669,0.0997052192687988,-0.198620796203613,-0.305276155471802,0.155130863189697,-0.248817443847656,-0.178049325942993,0.164198875427246,-0.270977020263672,-0.0397944450378418,0.0665149688720703,-0.130270957946777,-2.77239923889283e-05,0.356693744659424,-0.0313014984130859,-0.000546693801879883,0.302002906799316,-0.211447715759277,0.00439000129699707,0.217612266540527,-0.175760269165039,0.0624765157699585,0.157349586486816,-0.268678665161133,0.0929781198501587,0.0375809669494629,-0.13072681427002,-0.000442385673522949,0.0107316970825195,-0.0235557556152344,-0.0051732063293457,0.218974113464355,-0.884933471679688,0.0434487164020538,-1.10382509231567,-0.634343147277832,0.102497816085815,0.0683712959289551,-0.323276519775391,-0.0162973403930664,-0.156865119934082,0.0556488037109375,-0.101153612136841,-0.289481163024902,-0.12019157409668,-0.0701746940612793,0.0665802955627441,-0.36761474609375,-0.255658149719238,-0.513010025024414,-0.229918479919434,-0.100532412528992,0.107163429260254,-0.899310111999512,-0.223618507385254,-0.777478218078613,-0.397295951843262,-0.0781576633453369,0.166965961456299,-1.01476764678955,-0.16225802898407,-0.9854416847229,-0.505571365356445,-0.0533081293106079,0.188173770904541,-1.10159587860107,-0.0617461204528809,-1.1546573638916,-0.571175575256348,-0.0206561088562012,0.194790363311768,-0.94945240020752,-0.0885665416717529,0.0704741477966309,-0.588430404663086,-0.247412919998169,-0.365104675292969,-0.101463317871094,0.0382235050201416,-0.0390920639038086,0.0206499099731445,0.0507690906524658,0.0930767059326172,-0.119226455688477,0.0151016712188721,0.00760459899902344,-0.0127792358398438, -0.057309627532959,0.11890983581543,-0.115509986877441,0.0048987865447998,0.025996208190918,-0.0677328109741211,-0.0733015835285187,-0.761437892913818,-1.12486457824707,-0.136756241321564,-0.764547348022461,-1.15636348724365,-0.253859043121338,-0.691919326782227,-1.10989189147949,-0.404706954956055,-0.51509428024292,-0.969894409179688,-0.372541069984436,-0.327349185943604,-0.73560619354248,-0.314859867095947,-0.218734741210938,-0.493096351623535,-0.253413438796997,-0.171648025512695,-0.300848007202148,-0.123555660247803,-0.144927501678467,-0.106752395629883,-0.0501880645751953,-0.0556135177612305,-0.0735311508178711,-0.0321276187896729,0.0227546691894531,-0.0742368698120117,-0.0532432794570923,-0.44514274597168,-1.42012977600098,-0.0431574583053589,-0.417911529541016,-1.40660285949707,-0.137547433376312,-0.371486186981201,-1.38527774810791,-0.245414257049561,-0.272830009460449,-1.21724033355713,-0.273131132125854,-0.16963529586792,-0.888771057128906,-0.278321981430054,-0.0596194267272949,-0.630565643310547,-0.234041213989258,-0.0609464645385742,-0.387404441833496,-0.137149810791016,-0.0510315895080566,-0.249722480773926,-0.129671573638916,-0.0198631286621094,-0.0894584655761719,-0.00831341743469238,0.0492181777954102,0.0659370422363281,-0.000198841094970703,0.000844001770019531,-0.0030364990234375,0.00423160195350647,-0.43189525604248,0.0701055526733398,0.00138962268829346,-0.433747291564941,-0.000655174255371094,0.0244554281234741,-0.396140575408936,0.0968084335327148,-0.0260058641433716,-0.33067798614502,0.239084243774414,-0.0752062797546387,-0.312009334564209,0.32337474822998,-0.0937669277191162,-0.304873943328857,0.178987503051758,-0.111493349075317,-0.137731552124023,0.0102300643920898,0.000829219818115234,-0.124531269073486,-0.0527553558349609,-0.000478506088256836,-0.00427150726318359,-0.000130653381347656,0.061273604631424,-0.799002170562744,-0.296610832214355,0.0266731381416321,-0.877855777740479,-0.245580673217773,-0.0596326589584351,-0.779997825622559,-0.13050651550293,-0.089236855506897,-0.583010196685791, --0.0278940200805664,-0.101186394691467,-0.416294097900391,0.0965023040771484,-0.105106115341187,-0.25786304473877,0.126214027404785,-0.00511693954467773,-0.174532890319824,-0.00461578369140625,0.0688884258270264,-0.0680460929870605,0.0977516174316406,0.0916776657104492,-0.0163655281066895,0.0468482971191406,0,0,0.00341415405273438,0,0,0.00610923767089844,0.00165808200836182,0.0162954330444336,-0.010807991027832,0.000184118747711182,0.00051116943359375,-0.000616073608398438,0.000320732593536377,0.00150728225708008,-0.00112342834472656,-0.0212534964084625,0.566376209259033,-0.211854934692383,-0.0446540713310242,0.544893264770508,-0.34278678894043,0.000844120979309082,0.566322326660156,-0.582232475280762,0.0439695119857788,0.541242122650146,-0.6109619140625,0.138633608818054,0.273661613464355,-0.639838218688965,0.165903568267822,0.181288242340088,-0.433648109436035,0.125811100006104,0.143109798431396,-0.287419319152832,0.315620183944702,0.0997118949890137,-0.198627471923828,0.305273056030273,0.155130863189697,-0.248815536499023,0.178048610687256,0.164200782775879,-0.270980834960938,0.0397975444793701,0.0665216445922852,-0.130284309387207,0.0004710853099823,0.301598072052002,-0.210446357727051,-0.00464189052581787,0.217383861541748,-0.176094055175781,-0.0628244876861572,0.157877445220947,-0.26973819732666,-0.0938283205032349,0.038935661315918,-0.132510185241699,0.00111925601959229,0.0116348266601563,-0.0234603881835938 - } - Normals: *516 { - a: -0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.78397116983399,-0.0509446412324905,-1.60343343019485,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.348103940486908,-0.395256578922272,0.762886703014374,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188, --0.540710747241974,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.261731175705791,0.211270391941071,1.82060474157333,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142, -1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094, -0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914, --0.730387195944786,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.513018878176808,0.462569477036595,0.0529692769050598,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274 - } - } - Geometry: 2807030774736, "Geometry::Mouth_Lower_Inside", "Shape" { - Version: 100 - Indexes: *167 { - a: 5883,5884,5886,5888,5892,5979,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6069,6070,6071,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,7181,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7219,7220,7221,7222,7223,7224,7225,7226,7361,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7451,7452,7453,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,8561,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8596,8597,8598,8599,8600,8601,8602 - } - Vertices: *501 { - a: -2.70461405307287e-05,0.763498306274414,-0.235407829284668,-0.00230447782814736,0.318803787231445,-1.55941295623779,-0.000749007289414294,0.604796886444092,-0.852235794067383,-0.00145135224011028,0.709862232208252,-1.46103954315186,-0.000161001400556415,0.446483612060547,0.0411624908447266,0.0297865867614746,0.00381183624267578,-0.137162208557129,0.0426449775695801,-0.00567531585693359,-0.00106716156005859,-0.0235831737518311,-0.0152664184570313,-0.369030952453613,-0.0301084518432617,0.000814437866210938,1.43051147460938e-05,-0.0285699367523193,-0.0106048583984375,-0.486817359924316,0.0278604030609131,-0.0161161422729492,-0.0308122634887695,0.0494105815887451,0.0266504287719727,-0.627289772033691,0.0859191417694092,0.0577297210693359,0.00701904296875,0.113036394119263,0.0355758666992188,-0.709623336791992,0.158552885055542,0.0920600891113281,-0.782981872558594,0.172260046005249,0.11857795715332,-0.00458240509033203,0.140530586242676,0.130449295043945,-0.844780921936035,0.118054866790771,0.202941417694092,-0.0644397735595703,0.0790327787399292,0.314110279083252,-0.117555618286133,0.13386869430542,0.250745296478271,-1.01576995849609,0.10005509853363,0.452828884124756,-0.195915222167969,0.124919295310974,0.326183795928955,-1.29343700408936,0.13308048248291,0.572915554046631,-0.275124549865723,0.0314028263092041,0.277085781097412,-1.42619800567627,0.0480632781982422,0.667794704437256,-0.22968578338623,-0.0384621620178223,0.288966178894043,-1.47849559783936,0.0130373239517212,0.717281341552734,-0.232457160949707,-3.30805778503418e-05,0.299435615539551,-1.53100490570068,0.0595517158508301,0.00171232223510742,-0.0369234085083008,0.0474343299865723,0.030766487121582,-0.0936546325683594,0.106277704238892,0.0141544342041016,-0.19071102142334,0.140248537063599,0.105278968811035,-0.217930793762207,0.288350105285645,0.227232933044434,-0.193829536437988,0.383161902427673,0.353421688079834,-0.260561943054199,0.216305494308472,0.400806427001953,-0.358429908752441,0.214191079139709,0.416906833648682,-0.548280715942383, -0.174666941165924,0.480797290802002,-0.698230743408203,0.1148442029953,0.525673389434814,-0.74302864074707,0.0466086268424988,0.559209823608398,-0.807645797729492,0.00583100318908691,0.00188064575195313,-0.0110807418823242,0.0434548854827881,0.0174055099487305,-0.120907783508301,0.109357118606567,0.0417909622192383,-0.307561874389648,0.169449806213379,0.0442876815795898,-0.41342830657959,0.184521198272705,0.0493688583374023,-0.577927589416504,0.218900203704834,0.172773361206055,-0.565780639648438,0.305397987365723,0.318597793579102,-0.634899139404297,0.328881502151489,0.511224746704102,-0.84493350982666,0.211824297904968,0.62405252456665,-1.11331939697266,0.12043434381485,0.624173164367676,-1.32041263580322,0.0669474005699158,0.662400245666504,-1.42130374908447,0.0267734527587891,0.680657863616943,-1.45926952362061,0.011117696762085,0.0114030838012695,-0.0202369689941406,0.0322781801223755,0.00313854217529297,-0.0407466888427734,0.000108718872070313,-0.000105857849121094,-9.25064086914063e-05,0.0232889652252197,0.00427722930908203,0,-0.00016474723815918,-9.63211059570313e-05,0.000104904174804688,0.00368571281433105,-0.00894355773925781,0.0105485916137695,-0.000910282135009766,0.008575439453125,0.009552001953125,0.0006256103515625,0.000467300415039063,0.000377655029296875,0.00313401222229004,0.00261497497558594,-0.00175380706787109,0.0381870269775391,0.117680549621582,-0.0624179840087891,0.0628317594528198,0.260064125061035,0.0231657028198242,0.0276733636856079,0.319535255432129,-0.0216331481933594,0.000665545463562012,0.381089210510254,-0.0295495986938477,-0.0244817435741425,0.418164730072021,-0.00564670562744141,-0.00233983993530273,-0.00119400024414063,-0.00467586517333984,0.0011134147644043,-0.000236988067626953,-0.0102128982543945,-0.14204478263855,-0.0589389801025391,-0.430228233337402,-0.216675996780396,-0.073272705078125,-0.583067893981934,-0.201990365982056,-0.0551042556762695,-0.601783752441406,-0.110421180725098,-0.0469970703125,-0.623761177062988,-0.0183045864105225,-0.0494041442871094,-0.623546600341797, --0.0767421722412109,-0.0544614791870117,-0.650055885314941,-0.174311876296997,0.00937557220458984,-0.722831726074219,-0.173001289367676,0.087975025177002,-0.856549263000488,-0.139737844467163,-0.0805048942565918,-0.95118522644043,-0.119748651981354,0.00619745254516602,-0.967282295227051,-0.00112482905387878,0.108748912811279,-1.04435157775879,-1.88899848581059e-05,0.138114452362061,-1.04312133789063,0.00315594673156738,0.00720405578613281,-0.00537109375,-0.156967401504517,-0.0439243316650391,-0.122879028320313,-0.21790599822998,-0.240766525268555,-0.347532272338867,-0.409540057182312,-0.227946758270264,-0.333504676818848,-0.311888456344604,-0.731653690338135,-0.329139709472656,-0.293747901916504,-0.66138744354248,-0.37105655670166,0,-0.575873851776123,-0.55072021484375,0,-0.550355434417725,-0.527105331420898,-0.0297904014587402,0.00381231307983398,-0.137177467346191,-0.0426483154296875,-0.00567531585693359,-0.00105953216552734,0.0235798358917236,-0.0152654647827148,-0.369035720825195,0.0298247337341309,0.000703811645507813,-0.000464439392089844,0.028564453125,-0.0106039047241211,-0.486824989318848,-0.027369499206543,-0.0150270462036133,-0.0315113067626953,-0.0495150089263916,0.0267267227172852,-0.62736988067627,-0.0865275859832764,0.0577449798583984,0.00716400146484375,-0.113443851470947,0.0359859466552734,-0.710144996643066,-0.158673763275146,0.0921487808227539,-0.783200263977051,-0.171882152557373,0.117822647094727,-0.00474739074707031,-0.141632795333862,0.129726409912109,-0.845343589782715,-0.116820812225342,0.200923442840576,-0.0638332366943359,-0.0788211822509766,0.312885761260986,-0.11719799041748,-0.134242296218872,0.250565528869629,-1.01566696166992,-0.10038149356842,0.452253818511963,-0.198004722595215,-0.12480902671814,0.325608253479004,-1.2935094833374,-0.13303530216217,0.572110652923584,-0.277095794677734,-0.031578540802002,0.276672840118408,-1.42654037475586,-0.0476642847061157,0.665435314178467,-0.231822967529297,0.0387281179428101,0.285823822021484,-1.48029804229736,-0.013216495513916,0.717693328857422, --0.235692024230957,-0.000843912363052368,0.295653343200684,-1.53235816955566,-0.0595331192016602,0.00170183181762695,-0.0368766784667969,-0.0479037761688232,0.0309772491455078,-0.0943317413330078,-0.106857538223267,0.0140457153320313,-0.190996170043945,-0.140916109085083,0.105019569396973,-0.217940330505371,-0.288522958755493,0.226367950439453,-0.192853927612305,-0.381563544273376,0.351653575897217,-0.257959365844727,-0.215432643890381,0.399954795837402,-0.355401039123535,-0.214250445365906,0.416777610778809,-0.547671318054199,-0.175041079521179,0.480886936187744,-0.698040962219238,-0.115442514419556,0.525739669799805,-0.743653297424316,-0.0468676090240479,0.557793140411377,-0.807651519775391,-0.00591063499450684,0.00190591812133789,-0.0112333297729492,-0.043400764465332,0.0173854827880859,-0.120787620544434,-0.109225273132324,0.0416936874389648,-0.307538986206055,-0.169638872146606,0.0445499420166016,-0.413835525512695,-0.184769630432129,0.0502376556396484,-0.579148292541504,-0.219529628753662,0.172070503234863,-0.566020011901855,-0.30627703666687,0.317389488220215,-0.63587474822998,-0.326684474945068,0.509975433349609,-0.845430374145508,-0.212963700294495,0.624229907989502,-1.11327075958252,-0.127035737037659,0.626885890960693,-1.31365585327148,-0.0690954923629761,0.66270112991333,-1.42324638366699,-0.0304022133350372,0.682924270629883,-1.46314334869385,-0.0113301277160645,0.01239013671875,-0.0204648971557617,-0.0324537754058838,0.00402927398681641,-0.0406532287597656,-0.000100374221801758,-9.82284545898438e-05,-8.58306884765625e-05,-0.0232889652252197,0.00427722930908203,0,0.000161170959472656,-9.918212890625e-05,0.000102043151855469,-0.0042271614074707,-0.00898456573486328,0.00988483428955078,0.000911712646484375,0.00859260559082031,0.00957107543945313,-0.000620126724243164,0.000462532043457031,0.00037384033203125,-0.00310707092285156,0.00304985046386719,-0.00179290771484375,-0.0379025936126709,0.117417335510254,-0.0621986389160156,-0.0636634826660156,0.263751029968262,0.0223903656005859,-0.031353235244751,0.326218128204346, --0.0257596969604492,-0.00105458498001099,0.381654739379883,-0.0270719528198242,0.0244026184082031,0.417428970336914,-0.00601863861083984,0.00233709812164307,-0.00118923187255859,-0.00470161437988281,-0.0011136531829834,-0.000237464904785156,-0.010218620300293,0.14204740524292,-0.0589399337768555,-0.430230140686035,0.216673374176025,-0.0732717514038086,-0.583073616027832,0.201974630355835,-0.0550985336303711,-0.601787567138672,0.110238552093506,-0.0457868576049805,-0.623173713684082,0.017996072769165,-0.0492038726806641,-0.623743057250977,0.0767083168029785,-0.0542421340942383,-0.649928092956543,0.175302743911743,0.00943470001220703,-0.72299861907959,0.172837018966675,0.0883450508117676,-0.857049942016602,0.139736890792847,-0.0805020332336426,-0.951187133789063,0.119752287864685,0.00618219375610352,-0.967276573181152,0.00113877654075623,0.108677387237549,-1.04433727264404,-0.00315594673156738,0.00720405578613281,-0.00537109375,0.157021999359131,-0.0439767837524414,-0.122810363769531,0.220717787742615,-0.241227149963379,-0.345990180969238,0.407706737518311,-0.226451396942139,-0.334771156311035,0.311888694763184,-0.731653690338135,-0.329139709472656,0.293747901916504,-0.661388397216797,-0.371058464050293,0,-0.575876712799072,-0.550724029541016 - } - Normals: *501 { - a: -0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576263497523,0.332329265773296,-0.884727489203215,0.758668020367622,1.37624508142471,0.466036655008793,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608, --0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.64750936627388,-0.886254876852036,1.64454412460327,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693, --0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.768468946218491,0.565167635679245,0.388752035796642,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049, -0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,0.565207481384277,-1.27340400218964,0.0968380570411682,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849, --0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688 - } - } - Geometry: 2807030772720, "Geometry::Mouth_Lower_Overlay", "Shape" { - Version: 100 - Indexes: *1957 { - a: 5880,5883,5884,5886,5888,5890,5892,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5979,5980,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6193,6195,6196,6198,6199,6200,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440, -6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142, -7143,7146,7147,7156,7157,7159,7160,7161,7165,7168,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7361,7362,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7575,7577,7578,7580,7581,7582,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712, -7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186, -8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8528,8529,8538,8539,8541,8542,8543,8548,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *5871 { - a: 0,5.96046447753906e-06,0,0,0.820554256439209,0.653059005737305,0,0.845953941345215,0.774177551269531,0,0.819602012634277,0.707551956176758,0,0.834578514099121,0.752799987792969,0,0.427282810211182,0.43388557434082,0,0.559930324554443,0.456537246704102,0,0.285525321960449,0.419831275939941,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,0.283172607421875,0.476954460144043,0,0.285736083984375,0.481281280517578,0,0.285822868347168,0.481415748596191,0,0.276473999023438,0.465673446655273,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,0.280339241027832,0.472173690795898,0,0.283677101135254,0.47780704498291,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,0.217860221862793,0.36695671081543,0,0.27680492401123,0.466226100921631,0,0.212079048156738,0.357207775115967,0,0.190122604370117,0.320228338241577,0,0.00551605224609375,0.00928926467895508,0,0.201388359069824,0.339219331741333,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0.0365476608276367,0.132401943206787,0.16335391998291,0.0317087173461914,0.119441032409668,0.180035591125488,0.00770211219787598,0.125497341156006,0.205921173095703, -0.0086216926574707,0.13751220703125,0.218227386474609,0,0.146385192871094,0.246554374694824,0,0.149244785308838,0.251375198364258,-0.000148534774780273,0.170611381530762,0.287445068359375,-0.000257968902587891,0.173966884613037,0.293784141540527,-0.00156497955322266,0.196243286132813,0.32856273651123,-0.00220751762390137,0.186583042144775,0.314642906188965,-0.014427661895752,0.262995719909668,0.38924503326416,-0.00841498374938965,0.272018432617188,0.396062850952148,-0.0275588035583496,0.338051795959473,0.425239562988281,-0.0125529766082764,0.339611053466797,0.412490844726563,-0.0133521556854248,0.498847007751465,0.505549430847168,-0.0381619930267334,0.503621578216553,0.534141540527344,-0.0124855041503906,0.618789672851563,0.55654239654541,-0.0569864511489868,0.683191299438477,0.594762802124023,-0.0123051404953003,0.72717809677124,0.634589195251465,-0.0377475023269653,0.746728897094727,0.719662666320801,-0.0100971460342407,0.777842998504639,0.644651412963867,-0.0250123143196106,0.80604887008667,0.754465103149414,-0.00554800033569336,0.80966854095459,0.654092788696289,-0.0107839703559875,0.83771276473999,0.772236824035645,0.0351583957672119,0.125380039215088,0.170425415039063,0.00837874412536621,0.128250122070313,0.206520080566406,0,0.148385524749756,0.249919891357422,-0.000202417373657227,0.171963214874268,0.290075302124023,-0.00190234184265137,0.192020893096924,0.322684288024902,-0.0112876892089844,0.264553546905518,0.388331413269043,-0.0192849636077881,0.33405876159668,0.412874221801758,-0.0246868133544922,0.501651763916016,0.524785995483398,-0.0411198139190674,0.674056053161621,0.588776588439941,-0.0250496864318848,0.732104778289795,0.67955207824707,-0.0182400345802307,0.787122249603271,0.70533275604248,-0.00887811183929443,0.816516399383545,0.71776294708252,0.0364408493041992,0.130566120147705,0.16722297668457,0.00859260559082031,0.137504577636719,0.219629287719727,0,0.150552272796631,0.253569602966309,-0.000237703323364258,0.173605442047119,0.29306697845459,-0.00209927558898926,0.185175895690918,0.311875343322754, --0.0129125118255615,0.2619948387146,0.386637687683105,-0.0237891674041748,0.334719181060791,0.41862964630127,-0.0320138931274414,0.49863338470459,0.524624824523926,-0.0501612424850464,0.675487041473389,0.599513053894043,-0.0326724052429199,0.737317562103271,0.700977325439453,-0.0225074291229248,0.797986507415771,0.737817764282227,-0.0102527737617493,0.82785701751709,0.753236770629883,5.65052032470703e-05,0.117701530456543,0.200788497924805,4.31537628173828e-05,0.141842365264893,0.238812446594238,4.26769256591797e-05,0.168219089508057,0.28272533416748,0.000245571136474609,0.198824882507324,0.331281661987305,0.00055384635925293,0.242912292480469,0.382946014404297,0.00232887268066406,0.262887477874756,0.380683898925781,0.00223261117935181,0.423539638519287,0.430620193481445,0.00546395778656006,0.408888339996338,0.422101974487305,0.00879573822021484,0.38727855682373,0.421172142028809,0.00976741313934326,0.350358486175537,0.422521591186523,0.00617456436157227,0.304449081420898,0.405952453613281,0.00997424125671387,0.126359462738037,0.21147346496582,0.0018002986907959,0.127323627471924,0.214204788208008,-1.62124633789063e-05,0.142767429351807,0.240663528442383,-2.21729278564453e-05,0.166845798492432,0.280317306518555,-0.000303506851196289,0.205648899078369,0.342340469360352,-0.00241303443908691,0.265275478363037,0.401622772216797,-0.00386357307434082,0.308348178863525,0.407146453857422,-0.0023038387298584,0.36219596862793,0.415961265563965,0.00150454044342041,0.436171054840088,0.427900314331055,0.000754237174987793,0.493273735046387,0.441099166870117,-0.00134581327438354,0.532151699066162,0.455874443054199,-0.00104492902755737,0.554589748382568,0.461030006408691,0.00147271156311035,0.223246574401855,0.372969627380371,0.000393390655517578,0.205801486968994,0.345155715942383,9.48905944824219e-05,0.173678398132324,0.292160987854004,0.000107288360595703,0.147224426269531,0.247665405273438,-0.000814676284790039,0.113017082214355,0.192517280578613,0.00383821129798889,0.284485816955566,0.418965339660645,0.00807434320449829,0.281293869018555, -0.416671752929688,0.014316201210022,0.26994800567627,0.418091773986816,0.0137287378311157,0.25698184967041,0.409930229187012,0.00948381423950195,0.24262809753418,0.39681339263916,0.00413846969604492,0.227852344512939,0.378138542175293,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.276616096496582,0.465914726257324,0,0.282456398010254,0.475753784179688,0,0.265462875366211,0.447128772735596,0,0.276081085205078,0.465022087097168,0,0.24632740020752,0.414892196655273,0,0.264269828796387,0.445117950439453,0,0.214681625366211,0.36158561706543,0,0.243294715881348,0.409794807434082,0,0.163360595703125,0.275151491165161,0,0.207333087921143,0.349218845367432,0,0.03680419921875,0.0619814991950989,0,0.120975971221924,0.20375657081604,0,0.0942764282226563,0.158810377120972,0,0.23243236541748,0.391499042510986,0,0.255223274230957,0.429879188537598,0,0.0870161056518555,0.146575331687927,0,0.151864528656006,0.255794286727905,0,0.282223701477051,0.47536563873291,0,0.27515697479248,0.463444232940674,0,0.261876106262207,0.44108247756958,0,0.251548767089844, -0.423690319061279,0,0.237565040588379,0.400134086608887,0,0.194143295288086,0.3269944190979,0,0.127941608428955,0.215488433837891,0,0.0905289649963379,0.15246844291687,0,0.0612473487854004,0.103165984153748,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,0.112856864929199,0.190079689025879,0,0.161555290222168,0.27211856842041,0,0.192152500152588,0.323646545410156,0,0.212716579437256,0.358280181884766,0,0.228806018829346,0.385370254516602,0,0.242095947265625,0.407754898071289,0,0.253103256225586,0.42632007598877,0,0.26192569732666,0.441171646118164,0,0.268569946289063,0.452362060546875,0,0.273099899291992,0.459980010986328,0,0.275652885437012,0.464296340942383,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0, -0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,0.0159194469451904,0.0268154144287109,0,0.0413360595703125,0.0696144104003906,0,0.0742936134338379,0.125144004821777,0,0.0466125011444092,0.0785026550292969,0,0.0211348533630371,0.0356035232543945,0,0.0444304943084717,0.0748295783996582,0,0.0203735828399658,0.0343260765075684,0,0.0356247425079346,0.060002326965332,0,0.0142867565155029,0.0240654945373535,0,0.0202560424804688,0.0341272354125977,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,0.0764527320861816,0.128768920898438,0,0.060903787612915,0.102587223052979,0,0.0719420909881592,0.121177196502686,0,0.0440871715545654,0.0742459297180176,0,0.112709045410156,0.18982982635498,0,0.0881257057189941,0.148448467254639,0,0.101711750030518,0.171316146850586,0,0.109678745269775,0.184738636016846,0,0.132076740264893,0.222472667694092,0,0.115414142608643,0.194402694702148,0,0.144049167633057,0.242646217346191,0,0.152807712554932,0.257372379302979,0,0.202125549316406,0.340429306030273,0,0.18928337097168,0.318812370300293,0,0.176203727722168,0.29677677154541,0,0.159908771514893,0.26932954788208,0,0.219555377960205,0.369791984558105,0,0.243118762969971,0.409502983093262,0,0.230323791503906,0.387921333312988,0,0.234673023223877,0.395261764526367,0,0.253876686096191,0.427613258361816,0,0.257110595703125,0.433070659637451, -0,0.269521713256836,0.453964233398438,0,0.271052360534668,0.45651912689209,0,0.246977806091309,0.415992736816406,0,0.262511253356934,0.442159652709961,0,0.256917953491211,0.43275260925293,0,0.269254684448242,0.453500747680664,0,0.271835327148438,0.45785665512085,0,0.279275894165039,0.470401763916016,0,0.279803276062012,0.471269607543945,0,0.274415016174316,0.462207794189453,0,0.264813423156738,0.446045875549316,0,0.270922660827637,0.456303596496582,0,0.278252601623535,0.468677520751953,0,0.279969215393066,0.471574783325195,0,0.284199714660645,0.478676795959473,0,0.284235954284668,0.478737831115723,0,0.282015800476074,0.474995613098145,0,0.28529167175293,0.480524063110352,0,0.285223007202148,0.480422973632813,0,0.278266906738281,0.468684196472168,0,0.275350570678711,0.463770866394043,0,0.280950546264648,0.473209381103516,0,0.282613754272461,0.476016998291016,0,0.282940864562988,0.476560592651367,0,0.285736083984375,0.481257438659668,0,0.28565788269043,0.48112964630127,0,0.279838562011719,0.471354484558105,0,0.283444404602051,0.47740650177002,0,0.216511249542236,0.364694118499756,0,0.199882507324219,0.336668968200684,0,0.19195556640625,0.323321580886841,0,0.218781471252441,0.368503093719482,0,0.227734088897705,0.383570194244385,0,0.179086208343506,0.301628589630127,0,0.128441333770752,0.216340780258179,0,0.163488864898682,0.275368690490723,0,0.181680202484131,0.305999279022217,0,0.154314994812012,0.259908199310303,0,0.139509677886963,0.234982490539551,0,0.12766695022583,0.215015649795532,0,0.116224765777588,0.19575023651123,0,0.094778299331665,0.159652709960938,0,0.069580078125,0.117192268371582,0,0.102499485015869,0.172654628753662,0,0.0925796031951904,0.155925512313843,0,0.0724883079528809,0.122083187103271,0,0.047943115234375,0.0807664394378662,0,0.0232223272323608,0.0391144752502441,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06, -0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06, -0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,0.00228273868560791,0.00383841991424561,0,0.00171351432800293,0.00288009643554688,0,0.00576019287109375,0.00969934463500977,0,0.00452566146850586,0.00763237476348877,0,0.0110607147216797,0.0186180472373962,0,0.00924825668334961,0.0155826807022095,0,0.0182387828826904,0.0307085420936346,0,0.01595139503479,0.0268786549568176,0,0.0267653465270996,0.0450838804244995,0,0.0237088203430176,0.0399268269538879,0,0.0359816551208496,0.0605974793434143,0,0.0300979614257813,0.0506913065910339,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,0.00243830680847168,0.00409722328186035,0,0.0060882568359375,0.010257363319397,0,0.0117065906524658,0.0197114944458008,0,0.0192215442657471,0.0323871597647667,0,0.0278351306915283,0.0468840003013611,0,0.0360488891601563,0.060724139213562,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,0.00039362907409668,0.00066375732421875,0,0.00128626823425293,0.00217878818511963, -0,0.00324392318725586,0.00544583797454834,0,0.0066680908203125,0.0112484693527222,0,0.0122847557067871,0.0206936299800873,0,0.0235657691955566,0.0396797657012939,0,0.0499298572540283,0.0841038227081299,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,0.00074005126953125,0.00124883651733398,0,0.00225973129272461,0.00381958484649658,0,0.00536346435546875,0.00903880596160889,0,0.0107131004333496,0.0180515646934509,0,0.0189025402069092,0.0318417623639107,0,0.0308914184570313,0.0520331859588623,0,0.0454208850860596,0.0765190124511719,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,0.00217890739440918,0.00367832183837891,0,0.00557088851928711,0.00937032699584961,0,0.0108885765075684,0.0183485746383667,0,0.0181427001953125,0.0305507928133011,0,0.0263335704803467,0.0443464815616608,0,0.0338802337646484,0.0570684671401978,0,0.0472671985626221,0.0796009302139282,0,0.0484206676483154,0.0815457105636597,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,0.00119173526763916,0.00200843811035156,0,0.00336289405822754,0.00567007064819336,0,0.00736379623413086,0.0123950242996216,0,0.0135848522186279,0.0228914618492126,0,0.0218429565429688,0.0367847587913275,0,0.0311646461486816,0.0525016784667969, -0,0.0397064685821533,0.0668666362762451,0,0.0419082641601563,0.0706021785736084,0,0.0303070545196533,0.0510427951812744,0,0.0216002464294434,0.0363991856575012,0,0.0144133567810059,0.0242701172828674,0,0.00863957405090332,0.0145582258701324,0,0.00441431999206543,0.00743317604064941,0,0.00157320499420166,0.00265121459960938,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,0.00222933292388916,0.00374054908752441,0,0.00469970703125,0.0079120397567749,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,0.0079498291015625,0.0133854448795319,0,0.0120329856872559,0.0202595591545105,0,7.62939453125e-06,0,0,0.00683748722076416,0.0115162134170532,0,0.0170423984527588,0.028706431388855,0,0.0135513544082642,0.0228368043899536,0,0.0138870477676392,0.0233789682388306,0,0.017822265625,0.030021071434021,0,0.0164321660995483,0.0276666879653931,0,0.00948631763458252,0.0159788131713867,0,0.00925290584564209,0.0155812501907349,0,0.0217299461364746,0.0365978479385376,0,0.0166411399841309,0.0280300378799438,0,-1.54972076416016e-06,0,0,0.0314178466796875,0.0529062747955322,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.0705533027648926,0.118836164474487,0,0.0507049560546875,0.0853927135467529,0,0.0248916149139404,0.041921854019165,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.0487532615661621,0.0821069478988647,0,0.0760235786437988,0.128036618232727,0,0.0812621116638184,0.136878252029419,0,0.0636427402496338,0.107203722000122,0,0.0658752918243408,0.110955238342285,0,4.29153442382813e-06,0,0,0.00181126594543457,0.00303983688354492,0,6.19888305664063e-06, -0,0,0.00122976303100586,0.00206708908081055,0,0.00027155876159668,0.00045013427734375,0,0.00053095817565918,0.00089573860168457,0,0.000150918960571289,0.000252723693847656,0,0.00015413761138916,0.000268936157226563,0,4.87565994262695e-05,8.05854797363281e-05,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,2.12192535400391e-05,4.48226928710938e-05,0,1.82390213012695e-05,1.9073486328125e-05,0,4.52995300292969e-06,1.43051147460938e-06,0,6.07967376708984e-06,1.9073486328125e-06,0,2.98023223876953e-06,0,0,5.96046447753906e-06,8.58306884765625e-06,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,0.0418300628662109,0.0704513788223267,0,0.0790586471557617,0.133155226707458,0,0.111124992370605,0.187179327011108,0,0.138723373413086,0.233659505844116,0, -0.162836074829102,0.274285793304443,0,0.151838302612305,0.255735874176025,0,0.167304992675781,0.281778812408447,0,0.180829048156738,0.304555177688599,0,0.192268371582031,0.323851108551025,0,0.201589584350586,0.339560508728027,0,0.209114074707031,0.35222053527832,0,0.214340209960938,0.361018180847168,0,0.217077255249023,0.365616798400879,0,0.0442714691162109,0.074573814868927,0,0.0860147476196289,0.144879698753357,0,0.122729301452637,0.206731200218201,0,0.153885841369629,0.259195327758789,0,0.179829597473145,0.302879571914673,0,0.201462745666504,0.339318037033081,0,0.219515800476074,0.369733810424805,0,0.234515190124512,0.394994258880615,0,0.246769905090332,0.415653705596924,0,0.256726264953613,0.432425022125244,0,0.264649391174316,0.445757865905762,0,0.270566940307617,0.455721378326416,0,0.274373054504395,0.462133884429932,0,0.276275634765625,0.465337753295898,0,0.0129709243774414,0.0218643844127655,0,0.0316190719604492,0.0532589554786682,0,0.055058479309082,0.0927153825759888,0,0.0765609741210938,0.128948092460632,0,0.0980768203735352,0.165205597877502,0,0.121386528015137,0.204470753669739,0,0.144671440124512,0.243689775466919,0,0.159274101257324,0.268261909484863,0,0.175028800964355,0.294784307479858,0,0.189848899841309,0.319766044616699,0,0.206705093383789,0.348170280456543,0,0.214818000793457,0.361827611923218,0,0.0642423629760742,0.108212769031525,0,0.0803794860839844,0.135396838188171,0,0.0943984985351563,0.158991098403931,0,0.116857528686523,0.196829199790955,0,0.145086288452148,0.24436891078949,0,0.143693923950195,0.242032766342163,0,0.154560089111328,0.260334849357605,0,0.166681289672852,0.280746459960938,0,0.178991317749023,0.301467418670654,0,0.18864631652832,0.317739129066467,0,0.006866455078125,0.0115642547607422,0,0.0371150970458984,0.062524676322937,0,0.0689802169799805,0.11618435382843,0,0.0965089797973633,0.162568092346191,0,0.121211051940918,0.204147934913635,0,0.143879890441895,0.24235463142395,0,0.164898872375488,0.277732610702515,0,0.150025367736816,0.252686023712158,0,0.164416313171387,0.276927471160889, -0,0.177491188049316,0.298945426940918,0,0.188400268554688,0.317317724227905,0,0.196043014526367,0.330198049545288,0,0.200170516967773,0.337162017822266,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,0.247248649597168,0.416436195373535,0,0.0879058837890625,0.148063659667969,0,0.093745231628418,0.157906532287598,0,0.140150547027588,0.236056327819824,0,0.141401767730713,0.238161087036133,0,0.123663425445557,0.208284378051758,0,0.14755392074585,0.24852466583252,0,0.165206909179688,0.278254508972168,0,0.18348217010498,0.309049606323242,0,0.204825878143311,0.34498405456543,0,0.222747802734375,0.375168800354004,0,0.236189365386963,0.397808074951172,0,0.244454860687256,0.411723136901855,0.0194270610809326,0.137870788574219,0.16407585144043,0.00212836265563965,0.14323091506958,0.22758960723877,0,0.145605564117432,0.245250701904297,0.000308036804199219,0.160508632659912,0.269485473632813,-0.000394821166992188,0.181098937988281,0.30024528503418,-0.0138270854949951,0.265408039093018,0.387040138244629,-0.0274505615234375,0.342704296112061,0.420310974121094,-0.038422703742981,0.514297962188721,0.531996726989746,-0.0417444705963135,0.651353359222412,0.599813461303711,-0.0348756313323975,0.762030601501465,0.684944152832031,-0.0224441289901733,0.82240629196167,0.682287216186523,-0.00935095548629761,0.855240345001221,0.701972961425781,0,0.862894058227539,0.704019546508789,0.000811576843261719,-0.0077056884765625,0.00187873840332031,0.000594019889831543,-0.009918212890625,0.00310134887695313,0.000155091285705566,0.0022125244140625,-0.000777244567871094,0.000329375267028809,0.0011749267578125,-0.000447273254394531,0.0011594295501709,0.002471923828125,-0.00139617919921875,1.40666961669922e-05,3.0517578125e-05,-2.288818359375e-05,-0.00347661972045898,0.153153896331787,0.210897445678711,-0.00330471992492676,0.152126789093018,0.245725631713867,0,0.143993854522705,0.242537498474121,0.000575542449951172,0.153886318206787, -0.258514404296875,0.00110745429992676,0.169979572296143,0.284336090087891,-0.00502634048461914,0.214471340179443,0.361686706542969,-0.0106785297393799,0.239355564117432,0.400896072387695,-0.0157655477523804,0.341958999633789,0.508696556091309,-0.0169687271118164,0.395692348480225,0.590663909912109,-0.0128370523452759,0.441530227661133,0.678530693054199,-0.00699156522750854,0.448785781860352,0.696142196655273,-0.00195497274398804,0.449141502380371,0.700783729553223,0,0.44813871383667,0.699953079223633,0,0.0155012607574463,0.0261020660400391,0,0.0166990756988525,0.0281133651733398,0,0.0574002265930176,0.0966858863830566,0,0.0639677047729492,0.107743263244629,0,0.0410749912261963,0.0691709518432617,0,0.0496077537536621,0.0835428237915039,0,0.0327560901641846,0.0551681518554688,0,0.0255844593048096,0.0431070327758789,0,0.0201294422149658,0.0339107513427734,0,0.0698485374450684,0.117643356323242,0,0.0765180587768555,0.128879070281982,0,0.0855698585510254,0.144144535064697,0,0.104119777679443,0.175373077392578,0,0.116274356842041,0.19584846496582,0,0.137637138366699,0.231825828552246,0,0.160675048828125,0.270639419555664,0,0.183285713195801,0.308711051940918,0,0.203404426574707,0.342597007751465,0,0.219274044036865,0.369329452514648,0,0.229457378387451,0.386465072631836,0,0.232951641082764,0.392348289489746,0,0.00498509407043457,0.00838589668273926,0,0.00532674789428711,0.00898456573486328,0,0.0175414085388184,0.0295324325561523,0,0.0200695991516113,0.033804178237915,0,0.012507438659668,0.0210680961608887,0,0.0150327682495117,0.0253372192382813,0,0.0100874900817871,0.0170013904571533,0,0.00798177719116211,0.013460636138916,0,0.00637054443359375,0.010725736618042,0,0.0233855247497559,0.0393815040588379,0,0.0300307273864746,0.0505669116973877,0,0.0374231338500977,0.0630369186401367,0,0.0473175048828125,0.0797045230865479,0,0.0616607666015625,0.103858470916748,0,0.0820827484130859,0.138250827789307,0,0.105807304382324,0.178205013275146,0,0.131014823913574,0.220664024353027,0,0.155586242675781,0.262051582336426,0,0.17652416229248, -0.297322273254395,0,0.190653800964355,0.321128845214844,0,0.195640563964844,0.329518795013428,0,0.0349569320678711,0.0588787794113159,0,0.0349559783935547,0.0588786602020264,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788986206055,0,0.0349559783935547,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349559783935547,0.0588788986206055,0,0.0349559783935547,0.0588787198066711,0,0.0349569320678711,0.0588788390159607,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788390159607,0,0.0349559783935547,0.0588787198066711,0,0.0363063812255859,0.0611531734466553,0,0.0373172760009766,0.0628542900085449,0,0.0382575988769531,0.0644375085830688,0,0.0391626358032227,0.0659620761871338,0,0.039947509765625,0.0672838687896729,0,0.0404853820800781,0.0681908130645752,0,0.0406770706176758,0.0685139894485474,0,6.19888305664063e-06,0,0,0.0111551284790039,0.0188044011592865,0,0.0170526504516602,0.0287371873855591,0,0.0234537124633789,0.0394983291625977,0,0.0340986251831055,0.0574177503585815,0,0.0571928024291992,0.0963191986083984,0,0.0824432373046875,0.138874292373657,0,0.108834266662598,0.183314085006714,0,0.134903907775879,0.227211952209473,0,0.157544136047363,0.265340566635132,0,0.173019409179688,0.291410684585571,0,0.178509712219238,0.300680875778198,0,0.01021409034729,0.0172233581542969,0,0.0109755992889404,0.0184817314147949,0,0.01314377784729,0.0221266746520996,0,0.0165588855743408,0.0278935432434082,0,0.0210037231445313,0.0353751182556152,0,0.0261290073394775,0.0440058708190918,0,0.0314285755157471,0.052943229675293,0,0.0364913940429688,0.0614643096923828,0,0.0411648750305176,0.0693416595458984,0,0.0460448265075684,0.0775575637817383,0,0.0524230003356934,0.0882959365844727,0,0.0609221458435059,0.102613925933838,0,0.0729293823242188,0.122838973999023,0,0.0894365310668945,0.150627136230469,0,0.110260963439941,0.185714721679688,0,0.133652687072754,0.225111961364746,0,0.157646179199219,0.265541553497314, -0,0.180123329162598,0.303370952606201,0,0.198626518249512,0.334553718566895,0,0.210838317871094,0.355114936828613,0,0.215100288391113,0.362306118011475,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,-0.0365471839904785,0.132401943206787,0.16335391998291,-0.0317080020904541,0.119441032409668,0.180035591125488,-0.00770211219787598,0.125497341156006,0.205921173095703,-0.00862216949462891,0.13751220703125,0.218227386474609,0,0.146385192871094,0.246554374694824,0,0.149244785308838,0.251375198364258,0.000149965286254883,0.170611381530762,0.287445068359375,0.000257730484008789,0.173966884613037,0.293784141540527,0.00156474113464355,0.196243286132813,0.32856273651123,0.00220680236816406,0.186583042144775,0.314642906188965,0.0144271850585938,0.262995719909668,0.38924503326416,0.00841426849365234,0.272018432617188,0.396062850952148,0.0275585651397705,0.338051795959473,0.425239562988281,0.0125534534454346,0.339611053466797,0.412490844726563,0.0133519172668457,0.498847007751465,0.505549430847168,0.0381616353988647,0.503621578216553,0.534141540527344,0.0124857425689697,0.618789672851563,0.55654239654541,0.0569870471954346,0.683191299438477,0.594762802124023,0.0123049020767212,0.72717809677124,0.634589195251465,0.0377473831176758,0.746728897094727,0.719662666320801,0.0100971460342407,0.777842998504639,0.644651412963867,0.0250123143196106,0.80604887008667,0.754463195800781,0.00554817914962769,0.80966854095459,0.654092788696289,0.0107837617397308,0.83771276473999,0.772236824035645, --0.035158634185791,0.125380039215088,0.170425415039063,-0.00837850570678711,0.128250122070313,0.206520080566406,0,0.148385524749756,0.249919891357422,0.000202417373657227,0.171963214874268,0.290075302124023,0.00190162658691406,0.192020893096924,0.322684288024902,0.0112886428833008,0.264553546905518,0.388331413269043,0.0192837715148926,0.33405876159668,0.412874221801758,0.0246865749359131,0.501651763916016,0.524785995483398,0.0411199331283569,0.674056053161621,0.588776588439941,0.0250489711761475,0.732104778289795,0.67955207824707,0.0182396769523621,0.787122249603271,0.70533275604248,0.00887784361839294,0.816516399383545,0.71776294708252,-0.0364410877227783,0.130566120147705,0.16722297668457,-0.00859260559082031,0.137504577636719,0.219629287719727,0,0.150552272796631,0.253569602966309,0.000238180160522461,0.173605442047119,0.29306697845459,0.00209879875183105,0.185175895690918,0.311875343322754,0.0129117965698242,0.2619948387146,0.386637687683105,0.0237894058227539,0.334719181060791,0.41862964630127,0.0320143699645996,0.49863338470459,0.524624824523926,0.050161600112915,0.675487041473389,0.599513053894043,0.0326721668243408,0.737317562103271,0.700977325439453,0.0225073099136353,0.797986507415771,0.737817764282227,0.0102526545524597,0.82785701751709,0.753236770629883,-5.65052032470703e-05,0.117701530456543,0.200788497924805,-4.31537628173828e-05,0.141842365264893,0.238812446594238,-4.26769256591797e-05,0.168219089508057,0.28272533416748,-0.000245571136474609,0.198824882507324,0.331281661987305,-0.00055384635925293,0.242912292480469,0.382946014404297,-0.00232887268066406,0.262887477874756,0.380683898925781,-0.00223261117935181,0.423539638519287,0.430620193481445,-0.00546395778656006,0.408888339996338,0.422101974487305,-0.00879573822021484,0.38727855682373,0.421172142028809,-0.00976741313934326,0.350358486175537,0.422521591186523,-0.00617456436157227,0.304449081420898,0.405952453613281,-0.00997424125671387,0.126359462738037,0.21147346496582,-0.0018002986907959,0.127323627471924,0.214204788208008,1.64508819580078e-05,0.142767429351807, -0.240663528442383,2.21729278564453e-05,0.166845798492432,0.280317306518555,0.000303268432617188,0.205648899078369,0.342340469360352,0.00241303443908691,0.265275478363037,0.401622772216797,0.00386381149291992,0.308348178863525,0.407146453857422,0.0023038387298584,0.36219596862793,0.415961265563965,-0.00150454044342041,0.436171054840088,0.427900314331055,-0.000754117965698242,0.493273735046387,0.441099166870117,0.00134575366973877,0.532151699066162,0.455874443054199,0.00104492902755737,0.554589748382568,0.461030006408691,-0.00147271156311035,0.223246574401855,0.372969627380371,-0.000393390655517578,0.205801486968994,0.345155715942383,-9.48905944824219e-05,0.173678398132324,0.292160987854004,-0.000107288360595703,0.147224426269531,0.247665405273438,0.000814676284790039,0.113017082214355,0.192517280578613,-0.00383821129798889,0.284485816955566,0.418965339660645,-0.00807434320449829,0.281293869018555,0.416671752929688,-0.014316201210022,0.26994800567627,0.418091773986816,-0.0137287378311157,0.25698184967041,0.409930229187012,-0.00948381423950195,0.24262809753418,0.39681339263916,-0.00413846969604492,0.227852344512939,0.378138542175293,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06, -0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.276616096496582,0.465914726257324,0,0.282456398010254,0.475753784179688,0,0.265462875366211,0.447128772735596,0,0.276081085205078,0.465022087097168,0,0.24632740020752,0.414892196655273,0,0.264269828796387,0.445117950439453,0,0.214681625366211,0.36158561706543,0,0.243294715881348,0.409794807434082,0,0.163360595703125,0.275151491165161,0,0.207333087921143,0.349218845367432,0,0.03680419921875,0.0619814991950989,0,0.120975971221924,0.20375657081604,0,0.0942764282226563,0.158810377120972,0,0.23243236541748,0.391499042510986,0,0.255223274230957,0.429879188537598,0,0.0870161056518555,0.146575331687927,0,0.151864528656006,0.255794286727905,0,0.282223701477051,0.47536563873291,0,0.27515697479248,0.463444232940674,0,0.261876106262207,0.44108247756958,0,0.251548767089844,0.423690319061279,0,0.237565040588379,0.400134086608887,0,0.194143295288086,0.3269944190979,0,0.127941608428955,0.215488433837891,0,0.0905289649963379,0.15246844291687,0,0.0612473487854004,0.103165984153748,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,0.112856864929199,0.190079689025879,0,0.161555290222168,0.27211856842041,0,0.192152500152588,0.323646545410156,0,0.212716579437256,0.358280181884766,0,0.228806018829346,0.385370254516602,0,0.242095947265625,0.407754898071289,0,0.253103256225586,0.42632007598877,0,0.26192569732666,0.441171646118164,0,0.268569946289063,0.452362060546875,0,0.273099899291992,0.459980010986328,0,0.275652885437012,0.464296340942383,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06, -0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,0.0159194469451904,0.0268154144287109,0,0.0413360595703125,0.0696144104003906,0,0.0742936134338379,0.125144004821777,0,0.0466125011444092,0.0785026550292969,0,0.0211348533630371,0.0356035232543945,0,0.0444304943084717,0.0748295783996582,0,0.0203735828399658,0.0343260765075684,0,0.0356247425079346,0.060002326965332,0,0.0142867565155029,0.0240654945373535,0,0.0202560424804688,0.0341272354125977,0,-3.09944152832031e-06, -0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,0.0764527320861816,0.128768920898438,0,0.060903787612915,0.102587223052979,0,0.0719420909881592,0.121177196502686,0,0.0440871715545654,0.0742459297180176,0,0.112709045410156,0.18982982635498,0,0.0881257057189941,0.148448467254639,0,0.101711750030518,0.171316146850586,0,0.109678745269775,0.184738636016846,0,0.132076740264893,0.222472667694092,0,0.115414142608643,0.194402694702148,0,0.144049167633057,0.242646217346191,0,0.152807712554932,0.257372379302979,0,0.202125549316406,0.340429306030273,0,0.18928337097168,0.318812370300293,0,0.176203727722168,0.29677677154541,0,0.159908771514893,0.26932954788208,0,0.219555377960205,0.369791984558105,0,0.243118762969971,0.409502983093262,0,0.230323791503906,0.387921333312988,0,0.234673023223877,0.395261764526367,0,0.253876686096191,0.427613258361816,0,0.257110595703125,0.433070659637451,0,0.269521713256836,0.453964233398438,0,0.271052360534668,0.45651912689209,0,0.246977806091309,0.415992736816406,0,0.262511253356934,0.442159652709961,0,0.256917953491211,0.43275260925293,0,0.269254684448242,0.453500747680664,0,0.271835327148438,0.45785665512085,0,0.279275894165039,0.470401763916016,0,0.279803276062012,0.471269607543945,0,0.274415016174316,0.462207794189453,0,0.264813423156738,0.446045875549316,0,0.270922660827637,0.456303596496582,0,0.278252601623535,0.468677520751953,0,0.279969215393066,0.471574783325195,0,0.284199714660645,0.478676795959473,0,0.284235954284668,0.478737831115723,0,0.282015800476074,0.474995613098145,0,0.28529167175293,0.480524063110352,0,0.285223007202148,0.480422973632813,0,0.278266906738281,0.468684196472168,0,0.275350570678711,0.463770866394043,0,0.280950546264648,0.473209381103516,0,0.282613754272461,0.476016998291016,0,0.282940864562988,0.476560592651367,0,0.285736083984375,0.481257438659668,0,0.28565788269043,0.48112964630127,0,0.279838562011719,0.471354484558105,0,0.283444404602051,0.47740650177002,0,0.216511249542236,0.364694118499756,0,0.199882507324219,0.336668968200684,0,0.19195556640625,0.323321580886841, -0,0.218781471252441,0.368503093719482,0,0.227734088897705,0.383570194244385,0,0.179086208343506,0.301628589630127,0,0.128441333770752,0.216340780258179,0,0.163488864898682,0.275368690490723,0,0.181680202484131,0.305999279022217,0,0.154314994812012,0.259908199310303,0,0.139509677886963,0.234982490539551,0,0.12766695022583,0.215015649795532,0,0.116224765777588,0.19575023651123,0,0.094778299331665,0.159652709960938,0,0.069580078125,0.117192268371582,0,0.102499485015869,0.172654628753662,0,0.0925796031951904,0.155925512313843,0,0.0724883079528809,0.122083187103271,0,0.047943115234375,0.0807664394378662,0,0.0232223272323608,0.0391144752502441,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06, -0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,0.00228273868560791,0.00383841991424561,0,0.00171351432800293,0.00288009643554688,0,0.00576019287109375,0.00969934463500977,0,0.00452566146850586,0.00763237476348877,0,0.0110607147216797,0.0186180472373962,0,0.00924825668334961,0.0155826807022095,0,0.0182387828826904,0.0307085420936346,0,0.01595139503479,0.0268786549568176,0,0.0267653465270996, -0.0450838804244995,0,0.0237088203430176,0.0399268269538879,0,0.0359816551208496,0.0605974793434143,0,0.0300979614257813,0.0506913065910339,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,0.00243830680847168,0.00409722328186035,0,0.0060882568359375,0.010257363319397,0,0.0117065906524658,0.0197114944458008,0,0.0192215442657471,0.0323871597647667,0,0.0278351306915283,0.0468840003013611,0,0.0360488891601563,0.060724139213562,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,0.00039362907409668,0.00066375732421875,0,0.00128626823425293,0.00217878818511963,0,0.00324392318725586,0.00544583797454834,0,0.0066680908203125,0.0112484693527222,0,0.0122847557067871,0.0206936299800873,0,0.0235657691955566,0.0396797657012939,0,0.0499298572540283,0.0841038227081299,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,0.00074005126953125,0.00124883651733398,0,0.00225973129272461,0.00381958484649658,0,0.00536346435546875,0.00903880596160889,0,0.0107131004333496,0.0180515646934509,0,0.0189025402069092,0.0318417623639107,0,0.0308914184570313,0.0520331859588623,0,0.0454208850860596,0.0765190124511719,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06, -0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,0.00217890739440918,0.00367832183837891,0,0.00557088851928711,0.00937032699584961,0,0.0108885765075684,0.0183485746383667,0,0.0181427001953125,0.0305507928133011,0,0.0263335704803467,0.0443464815616608,0,0.0338802337646484,0.0570684671401978,0,0.0472671985626221,0.0796009302139282,0,0.0484206676483154,0.0815457105636597,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,0.00119173526763916,0.00200843811035156,0,0.00336289405822754,0.00567007064819336,0,0.00736379623413086,0.0123950242996216,0,0.0135848522186279,0.0228914618492126,0,0.0218429565429688,0.0367847587913275,0,0.0311646461486816,0.0525016784667969,0,0.0397064685821533,0.0668666362762451,0,0.0419082641601563,0.0706021785736084,0,0.0303070545196533,0.0510427951812744,0,0.0216002464294434,0.0363991856575012,0,0.0144133567810059,0.0242701172828674,0,0.00863957405090332,0.0145582258701324,0,0.00441431999206543,0.00743317604064941,0,0.00157320499420166,0.00265121459960938,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,0.00222933292388916,0.00374054908752441,0,0.00469970703125,0.0079120397567749,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,0.0079498291015625,0.0133854448795319,0,0.0120329856872559,0.0202595591545105,0,7.62939453125e-06,0,0,0.00683748722076416,0.0115162134170532,0,0.0170423984527588,0.028706431388855,0,0.0135513544082642,0.0228368043899536,0,0.0138870477676392,0.0233789682388306, -0,0.017822265625,0.030021071434021,0,0.0164321660995483,0.0276666879653931,0,0.00948631763458252,0.0159788131713867,0,0.00925290584564209,0.0155812501907349,0,0.0217299461364746,0.0365978479385376,0,0.0166411399841309,0.0280300378799438,0,-1.54972076416016e-06,0,0,0.0314178466796875,0.0529062747955322,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.0705533027648926,0.118836164474487,0,0.0507049560546875,0.0853927135467529,0,0.0248916149139404,0.041921854019165,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.0487532615661621,0.0821069478988647,0,0.0760235786437988,0.128036618232727,0,0.0812621116638184,0.136878252029419,0,0.0636427402496338,0.107203722000122,0,0.0658752918243408,0.110955238342285,0,4.29153442382813e-06,0,0,0.00181126594543457,0.00303983688354492,0,6.19888305664063e-06,0,0,0.00122976303100586,0.00206708908081055,0,0.00027155876159668,0.00045013427734375,0,0.00053095817565918,0.00089573860168457,0,0.000150918960571289,0.000252723693847656,0,0.00015413761138916,0.000268936157226563,0,4.87565994262695e-05,8.05854797363281e-05,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,2.12192535400391e-05,4.48226928710938e-05,0,1.82390213012695e-05,1.9073486328125e-05,0,4.52995300292969e-06,1.43051147460938e-06,0,6.07967376708984e-06,1.9073486328125e-06,0,2.98023223876953e-06,0,0,5.96046447753906e-06,8.58306884765625e-06,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06, -0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,0.0418300628662109,0.0704513788223267,0,0.0790586471557617,0.133155226707458,0,0.111124992370605,0.187179327011108,0,0.138723373413086,0.233659505844116,0,0.162836074829102,0.274285793304443,0,0.151838302612305,0.255735874176025,0,0.167304992675781,0.281778812408447,0,0.180829048156738,0.304555177688599,0,0.192268371582031,0.323851108551025,0,0.201589584350586,0.339560508728027,0,0.209114074707031,0.35222053527832,0,0.214340209960938,0.361018180847168,0,0.217077255249023,0.365616798400879,0,0.0442714691162109,0.074573814868927,0,0.0860147476196289,0.144879698753357,0,0.122729301452637,0.206731200218201,0,0.153885841369629,0.259195327758789,0,0.179829597473145,0.302879571914673,0,0.201462745666504,0.339318037033081,0,0.219515800476074,0.369733810424805,0,0.234515190124512,0.394994258880615,0,0.246769905090332,0.415653705596924,0,0.256726264953613,0.432425022125244,0,0.264649391174316,0.445757865905762,0,0.270566940307617,0.455721378326416,0,0.274373054504395,0.462133884429932,0,0.276275634765625,0.465337753295898,0,0.0129709243774414,0.0218643844127655,0,0.0316190719604492,0.0532589554786682,0,0.055058479309082,0.0927153825759888,0,0.0765609741210938,0.128948092460632,0,0.0980768203735352,0.165205597877502,0,0.121386528015137,0.204470753669739,0,0.144671440124512, -0.243689775466919,0,0.159274101257324,0.268261909484863,0,0.175028800964355,0.294784307479858,0,0.189848899841309,0.319766044616699,0,0.206705093383789,0.348170280456543,0,0.214818000793457,0.361827611923218,0,0.0642423629760742,0.108212769031525,0,0.0803794860839844,0.135396838188171,0,0.0943984985351563,0.158991098403931,0,0.116857528686523,0.196829199790955,0,0.145086288452148,0.24436891078949,0,0.143693923950195,0.242032766342163,0,0.154560089111328,0.260334849357605,0,0.166681289672852,0.280746459960938,0,0.178991317749023,0.301467418670654,0,0.18864631652832,0.317739129066467,0,0.006866455078125,0.0115642547607422,0,0.0371150970458984,0.062524676322937,0,0.0689802169799805,0.11618435382843,0,0.0965089797973633,0.162568092346191,0,0.121211051940918,0.204147934913635,0,0.143879890441895,0.24235463142395,0,0.164898872375488,0.277732610702515,0,0.150025367736816,0.252686023712158,0,0.164416313171387,0.276927471160889,0,0.177491188049316,0.298945426940918,0,0.188400268554688,0.317317724227905,0,0.196043014526367,0.330198049545288,0,0.200170516967773,0.337162017822266,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,0.0879058837890625,0.148063659667969,0,0.093745231628418,0.157906532287598,0,0.140150547027588,0.236056327819824,0,0.141401767730713,0.238161087036133,0,0.123663425445557,0.208284378051758,0,0.14755392074585,0.24852466583252,0,0.165206909179688,0.278254508972168,0,0.18348217010498,0.309049606323242,0,0.204825878143311,0.34498405456543,0,0.222747802734375,0.375168800354004,0,0.236189365386963,0.397808074951172,0,0.244454860687256,0.411723136901855,-0.0194270610809326,0.137870788574219,0.16407585144043,-0.00212764739990234,0.14323091506958,0.22758960723877,0,0.145605564117432,0.245250701904297,-0.00030827522277832,0.160508632659912,0.269485473632813,0.000394821166992188,0.181098937988281,0.30024528503418,0.0138266086578369,0.265408039093018,0.387040138244629,0.0274505615234375,0.342704296112061, -0.420310974121094,0.0384229421615601,0.514297962188721,0.531996726989746,0.0417442321777344,0.651353359222412,0.599813461303711,0.0348756313323975,0.762030601501465,0.684944152832031,0.0224441885948181,0.82240629196167,0.682287216186523,0.00935089588165283,0.855240345001221,0.701972961425781,0.00362014770507813,0.153932094573975,0.210271835327148,0.00325441360473633,0.152050495147705,0.245761871337891,0,0.143993854522705,0.242537498474121,-0.000567913055419922,0.153886318206787,0.258506774902344,-0.00108623504638672,0.169933795928955,0.28429126739502,0.00488519668579102,0.214364528656006,0.361503601074219,0.0108332633972168,0.239447116851807,0.401032447814941,0.0153824090957642,0.341653823852539,0.508362770080566,0.016676664352417,0.395387172698975,0.590236663818359,0.0127778053283691,0.441438674926758,0.678349494934082,0.00706791877746582,0.449090957641602,0.696718215942383,0.00198569893836975,0.449629783630371,0.701723098754883,0,0.0166990756988525,0.0281133651733398,0,0.0574002265930176,0.0966858863830566,0,0.0639677047729492,0.107743263244629,0,0.0410749912261963,0.0691709518432617,0,0.0496077537536621,0.0835428237915039,0,0.0327560901641846,0.0551681518554688,0,0.0255844593048096,0.0431070327758789,0,0.0201294422149658,0.0339107513427734,0,0.0698485374450684,0.117643356323242,0,0.0765180587768555,0.128879070281982,0,0.0855698585510254,0.144144535064697,0,0.104119777679443,0.175373077392578,0,0.116274356842041,0.19584846496582,0,0.137637138366699,0.231825828552246,0,0.160675048828125,0.270639419555664,0,0.183285713195801,0.308711051940918,0,0.203404426574707,0.342597007751465,0,0.219274044036865,0.369329452514648,0,0.229457378387451,0.386465072631836,0,0.00532674789428711,0.00898456573486328,0,0.0175414085388184,0.0295324325561523,0,0.0200695991516113,0.033804178237915,0,0.012507438659668,0.0210680961608887,0,0.0150327682495117,0.0253372192382813,0,0.0100874900817871,0.0170013904571533,0,0.00798177719116211,0.013460636138916,0,0.00637054443359375,0.010725736618042,0,0.0233855247497559,0.0393815040588379,0,0.0300307273864746, -0.0505669116973877,0,0.0374231338500977,0.0630369186401367,0,0.0473175048828125,0.0797045230865479,0,0.0616607666015625,0.103858470916748,0,0.0820827484130859,0.138250827789307,0,0.105807304382324,0.178205013275146,0,0.131014823913574,0.220664024353027,0,0.155586242675781,0.262051582336426,0,0.17652416229248,0.297322273254395,0,0.190653800964355,0.321128845214844,0,0.0349559783935547,0.0588786602020264,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788986206055,0,0.0349559783935547,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349559783935547,0.0588788986206055,0,0.0349559783935547,0.0588787198066711,0,0.0349569320678711,0.0588788390159607,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788390159607,0,0.0349559783935547,0.0588787198066711,0,0.0363063812255859,0.0611531734466553,0,0.0373172760009766,0.0628542900085449,0,0.0382575988769531,0.0644375085830688,0,0.0391626358032227,0.0659620761871338,0,0.039947509765625,0.0672838687896729,0,0.0404853820800781,0.0681908130645752,0,6.19888305664063e-06,0,0,0.0111551284790039,0.0188044011592865,0,0.0170526504516602,0.0287371873855591,0,0.0234537124633789,0.0394983291625977,0,0.0340986251831055,0.0574177503585815,0,0.0571928024291992,0.0963191986083984,0,0.0824432373046875,0.138874292373657,0,0.108834266662598,0.183314085006714,0,0.134903907775879,0.227211952209473,0,0.157544136047363,0.265340566635132,0,0.173019409179688,0.291410684585571,0,0.0109755992889404,0.0184817314147949,0,0.01314377784729,0.0221266746520996,0,0.0165588855743408,0.0278935432434082,0,0.0210037231445313,0.0353751182556152,0,0.0261290073394775,0.0440058708190918,0,0.0314285755157471,0.052943229675293,0,0.0364913940429688,0.0614643096923828,0,0.0411648750305176,0.0693416595458984,0,0.0460448265075684,0.0775575637817383,0,0.0524230003356934,0.0882959365844727,0,0.0609221458435059,0.102613925933838,0,0.0729293823242188,0.122838973999023,0,0.0894365310668945,0.150627136230469, -0,0.110260963439941,0.185714721679688,0,0.133652687072754,0.225111961364746,0,0.157646179199219,0.265541553497314,0,0.180123329162598,0.303370952606201,0,0.198626518249512,0.334553718566895,0,0.210838317871094,0.355114936828613,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06, -0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *5871 { - a: -0.884116136967485,-0.543078005313873,-1.34448239207268,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288, --1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068, --0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328, --0.406233571004122,-0.586036771535873,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163, --0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379, --1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033, --0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442, --0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682, -0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918, --0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362, --0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709, --1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431, --1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854, --0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956, -0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422, -0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088, --1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917, -0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008, -0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852, -0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243, --0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.0419488549232483, -0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586, -0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853, -0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755, -0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043, -0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606, --0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168, --1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298, --1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798, --0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978, -1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155, --0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, --0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739, -0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427, --1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833, -0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551, --0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507, --0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098, --1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792, -0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232, -0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201, -0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579, --0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483, --1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373, --0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425, -0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476, -0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,1.05388695001602,-0.322993129491806,-0.0338871479034424,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675, -0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126, -0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341, --1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824, -0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079, -1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421, --0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030772144, "Geometry::Eye_Left_Blink", "Shape" { - Version: 100 - Indexes: *1439 { - a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484, -6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541, -7542,7543,7544,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7945,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171, -8172,8173,8174,8175,8176,8178,8179,8182,8184,8185,8186,8187,8188,8189,8190,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8796,8797,8799 - } - Vertices: *4317 { - a: -0.00613665580749512,0.0182564854621887,0.0243701934814453,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00358819961547852,-0.0769793391227722,-0.0126619338989258,0.024446964263916,-0.169486105442047,-0.0646982192993164,0.0529365539550781,-0.458391129970551,-0.0494594573974609,0.0454597473144531,-0.678797662258148,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0472264289855957,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459413051605,0.0511989593505859,0.0672264099121094,-0.893106400966644,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.298909664154053,-0.00198650360107422,0.0389174222946167,-0.0977756083011627,0.0240745544433594,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.032780647277832,-0.160450369119644,-0.000295639038085938,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0495243072509766,-1.08459424972534,0.0203657150268555,0.0288047790527344,-1.08314323425293,-0.0128793716430664,0.0271816253662109,-0.954351663589478,-0.0837669372558594,-0.00526714324951172,-0.790514469146729,-0.0908432006835938,-0.00865554809570313,-0.620952308177948,-0.125743865966797,-0.0264496803283691,-0.368094146251678,-0.135475158691406,-0.0226020812988281,-0.208823055028915,-0.115944862365723,-0.0389270782470703,-0.137027770280838,-0.0579833984375,-0.000884056091308594,-0.0108398497104645,-0.000719070434570313,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00490427017211914,-0.0891427993774414,-0.0122623443603516,0.0220603942871094,-0.198800206184387,-0.0688571929931641,0.0529365539550781,-0.458391040563583,-0.0494594573974609,0.0454597473144531,-0.678797721862793,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094, -0.0472259521484375,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459424972534,0.0511989593505859,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.032780647277832,-0.160450369119644,-0.000295639038085938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.0213150978088379,0.0400071740150452,0.0177621841430664,-0.00638437271118164,0.0888170897960663,0.0231914520263672,-0.0175461769104004,0.139472648501396,0.0379095077514648,-0.0256650447845459,0.174823373556137,0.0525550842285156,-0.0207691192626953,0.195090867578983,0.0683212280273438,0.0213427543640137,0.218668770045042,0.0630502700805664,0.010951042175293,0.217465281486511,0.0562944412231445,-0.000445365905761719,0.190029501914978,0.0493602752685547,-0.00952959060668945,0.156094163656235,0.0419826507568359,-0.00745296478271484,0.077526867389679,0.0218887329101563,-0.00565242767333984,0.0358172655105591,0.011347770690918,0.0367529392242432,0.000832945108413696,0.00252914428710938,0.0493695735931396,0.0568453222513199,0.0177621841430664,-0.0257575511932373,0.133793652057648,0.0231914520263672,-0.0175461769104004,0.174690082669258,0.0453577041625977,-0.0256650447845459,0.234229490160942,0.0448799133300781,-0.0207691192626953,0.254496991634369,0.0606479644775391,0.022613525390625,0.265651524066925,0.0310649871826172,0.0122213363647461,0.310270339250565,-0.0122919082641602,0.000825881958007813,0.298430889844894,-0.01922607421875,-0.0105600357055664,0.269753575325012,-0.0241279602050781,-0.0487661361694336,0.238443367183208,-0.0187444686889648,-0.0182666778564453,0.153886333107948,0.0003814697265625,-0.00854206085205078,0.0186165273189545,0.0586395263671875,-0.00773286819458008,-0.00297999382019043,0.0135889053344727,-0.0222549438476563,0.0918513536453247,-0.0103788375854492,-0.0164384841918945,0.142634898424149,-0.0246381759643555,-0.0362467765808105,0.215277269482613, --0.0750608444213867,0.000824928283691406,0.259828560054302,-0.01922607421875,0.0122218132019043,0.287264347076416,-0.0122919082641602,0.022613525390625,0.265651524066925,0.0310649871826172,-0.0207691192626953,0.227679088711739,0.0526962280273438,-0.0256650447845459,0.207411557435989,0.0369291305541992,-0.0175461769104004,0.139472603797913,0.0379095077514648,-0.027350902557373,0.110749125480652,-0.00228404998779297,0.0213150978088379,0.0370644330978394,-0.011016845703125,0.00869870185852051,-0.018947958946228,-0.0262508392333984,-0.00613665580749512,0.0182564854621887,0.0243701934814453,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00358819961547852,-0.0769793391227722,-0.0126619338989258,0.024446964263916,-0.169486105442047,-0.0646982192993164,0.0529365539550781,-0.458391129970551,-0.0494594573974609,0.0454597473144531,-0.678797662258148,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0472264289855957,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459413051605,0.0511989593505859,0.0672264099121094,-0.893106400966644,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.298909664154053,-0.00198650360107422,0.0389174222946167,-0.0977756083011627,0.0240745544433594,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.032780647277832,-0.160450354218483,-0.000295639038085938,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0495243072509766,-1.08459424972534,0.0203657150268555,0.0288047790527344,-1.08314323425293,-0.0128793716430664,0.0271816253662109,-0.954351663589478,-0.0837669372558594,-0.00526714324951172,-0.790514469146729,-0.0908432006835938,-0.00865554809570313,-0.620952308177948,-0.125743865966797,-0.0264496803283691,-0.368094205856323,-0.135475158691406,-0.0226020812988281, --0.208823069930077,-0.115944862365723,-0.0389270782470703,-0.137027770280838,-0.0579833984375,-0.000884056091308594,-0.0108398497104645,-0.000719070434570313,-0.000884056091308594,-0.0108398497104645,-0.000719070434570313,0.00490427017211914,-0.0891428291797638,-0.0122623443603516,0.0220603942871094,-0.198800176382065,-0.0688571929931641,0.0529365539550781,-0.458391070365906,-0.0494594573974609,0.0454597473144531,-0.678797721862793,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0472259521484375,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459424972534,0.0511989593505859,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.032780647277832,-0.160450369119644,-0.000295639038085938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.0213150978088379,0.0400071740150452,0.0177621841430664,-0.00638437271118164,0.0888170897960663,0.0231914520263672,-0.0175461769104004,0.139472648501396,0.0379095077514648,-0.0256650447845459,0.174823373556137,0.0525550842285156,-0.0207691192626953,0.195090867578983,0.0683212280273438,0.0213427543640137,0.218668770045042,0.0630502700805664,0.010951042175293,0.217465281486511,0.0562944412231445,-0.000445365905761719,0.190029501914978,0.0493602752685547,-0.00952959060668945,0.156094163656235,0.0419826507568359,-0.00745296478271484,0.077526867389679,0.0218887329101563,-0.00565242767333984,0.0358172655105591,0.011347770690918,0.0367529392242432,0.000832945108413696,0.00252914428710938,0.0493694543838501,0.0568453222513199,0.0177621841430664,-0.0257575511932373,0.133793652057648,0.0231914520263672,-0.0175461769104004,0.174690052866936,0.0453577041625977,-0.0256650447845459,0.234229490160942,0.0448799133300781,-0.0207691192626953,0.254497021436691,0.0606479644775391,0.022613525390625,0.265651524066925,0.0310649871826172,0.0122213363647461,0.310270369052887,-0.0122919082641602, -0.000825881958007813,0.298430889844894,-0.01922607421875,-0.0105600357055664,0.269753575325012,-0.0241279602050781,-0.0487661361694336,0.238443367183208,-0.0187444686889648,-0.0182666778564453,0.153886348009109,0.0003814697265625,-0.00854206085205078,0.0186165273189545,0.0586395263671875,-0.00773286819458008,-0.00297996401786804,0.0135889053344727,-0.0222549438476563,0.0918513536453247,-0.0103788375854492,-0.0164384841918945,0.142634898424149,-0.0246381759643555,-0.0362467765808105,0.215277280658484,-0.0750608444213867,0.000824928283691406,0.259828567504883,-0.01922607421875,0.0122218132019043,0.287264347076416,-0.0122919082641602,0.022613525390625,0.265651531517506,0.0310649871826172,-0.0207691192626953,0.227679088711739,0.0526962280273438,-0.0256650447845459,0.207411553710699,0.0369291305541992,-0.0175461769104004,0.139472618699074,0.0379095077514648,-0.027350902557373,0.110749155282974,-0.00228404998779297,0.0213150978088379,0.0370644330978394,-0.011016845703125,0.00869870185852051,-0.018947958946228,-0.0262508392333984,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-0.0943996906280518,0,0,-0.0857940912246704,0,0,7.3164701461792e-06,0,0,-7.33137130737305e-06,0,0,-0.0207539200782776,0,0,-0.0901124477386475,0,0,5.48362731933594e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0,0,-0.0399999618530273,0,0,-0.0399923324584961,0,0,5.48362731933594e-06,0,0,5.51342964172363e-06,0,0,7.39097595214844e-06,0,0,7.62939453125e-06,0,0,-3.63588333129883e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,5.60283660888672e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,-1.78813934326172e-06, -0,0,-7.3164701461792e-06,0,0,-7.3164701461792e-06,0,0,-5.51342964172363e-06,0,0,-1.81794166564941e-06,0,0,5.51342964172363e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-0.0136702060699463,0,0,-0.0124053955078125,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,-0.0120682716369629,0,0,7.27176666259766e-06,0,0,-7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06, -0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06, -0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,3.63588333129883e-06,0,0,-7.27176666259766e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,1.84774398803711e-06,0,0,1.84774398803711e-06,0,0,-5.49107789993286e-06,0,0,9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,1.81794166564941e-06,0,0,-1.81794166564941e-06,0,0,1.84774398803711e-06,0,0,-9.14931297302246e-06,0,0,5.51342964172363e-06,0,0,5.49107789993286e-06,0,0,3.66568565368652e-06,0,0,1.83284282684326e-06,0,0,-5.48362731933594e-06,0,0,-3.66196036338806e-06,0,0,7.33137130737305e-06,0,0,-1.81794166564941e-06,0,0,3.69548797607422e-06,0,0,3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,5.60283660888672e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,-7.3164701461792e-06,0,0,-7.32392072677612e-06, -0,0,-3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.15676355361938e-06,0,0,9.14931297302246e-06,0,0,-3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-7.15255737304688e-06,0,0,7.39097595214844e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06,0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,5.60283660888672e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,-7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.7220458984375e-06,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06, -0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06, -0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06,0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06, -0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06,0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-3.63588333129883e-06,0,0.0719904899597168,-0.335909783840179,-0.00125217437744141,0.103817462921143,-0.653789639472961,-0.00158977508544922,0.0944199562072754,-0.944258689880371,0.00712871551513672,0.046954870223999,-1.09558320045471,0.0221452713012695,0.0539760589599609,-1.07823133468628,0.0170736312866211,0.0313563346862793,-0.834603786468506,-0.0230865478515625,0.0450286865234375,-0.683069407939911,-0.0421733856201172,0.0507678985595703,-0.457954943180084,-0.0657100677490234,0.0264682769775391,-0.176083385944366,-0.0685710906982422,0.0484662055969238, --0.971887111663818,-0.0062103271484375,-0.00789809226989746,0.0853742957115173,-0.02447509765625,-0.0227470397949219,0.138722091913223,-0.0287714004516602,0.0258917808532715,0.0638108849525452,0.0247535705566406,0.0370893478393555,-0.109590411186218,0.00440788269042969,-0.0390474796295166,0.163282424211502,-0.0239686965942383,-0.0381176471710205,0.194449409842491,-0.0046234130859375,0.04280686378479,0.223922356963158,-0.015141487121582,0.0143651962280273,0.212872624397278,-0.0196247100830078,-0.0044865608215332,0.1906917989254,-0.0235729217529297,-0.0213871002197266,0.16936469078064,-0.0265483856201172,-0.0111227035522461,0.0880334377288818,0.0241603851318359,-0.00842905044555664,0.0469152927398682,0.0145893096923828,0.00635719299316406,-0.0766314268112183,-0.0149068832397461,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-0.25,0,0,-0.249994397163391,0,0,-0.310001969337463,0,0,-0.31000542640686,0,0,-0.31000542640686,0,0,-0.309996128082275,0,0,-0.289996147155762,0,0,-0.290005445480347,0,0,-0.289996147155762,0,0,-0.289994478225708,0,0,-0.269999980926514,0,0,-0.269999980926514,0,0,-0.269999980926514,0,0,-0.269999980926514,0,0,-0.250007152557373,0,0,-0.25,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06, -0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,-0.00563430786132813,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-0.0411733388900757,0,0,-0.00100231170654297,0,0,-0.130781769752502,0,0,-0.0918408036231995,0,0,-0.309999942779541,0,0,-0.310007095336914,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06, -0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0.0546555519104004,-0.298909664154053,-0.00198650360107422,0.0709989070892334,-0.625110149383545,0.00778675079345703,0.0672264099121094,-0.893106341362,0.024907112121582,0.0441427230834961,-1.08459413051605,0.0511989593505859,0.0491378307342529,-1.08314299583435,0.0494852066040039,0.0472264289855957,-0.983750700950623,0.0270214080810547,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0454597473144531,-0.678797662258148,-0.00773525238037109,0.0529365539550781,-0.458391129970551,-0.0494594573974609,0.024446964263916,-0.169486105442047,-0.0646982192993164,0.00358819961547852,-0.0769793391227722,-0.0126619338989258,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00565242767333984, -0.0358172655105591,0.0113458633422852,-0.00745296478271484,0.077526867389679,0.0218887329101563,-0.00952959060668945,0.156094133853912,0.0419826507568359,-0.000445365905761719,0.190029501914978,0.0493602752685547,0.010951042175293,0.21746526658535,0.0562944412231445,0.0213427543640137,0.21866874396801,0.0630502700805664,-0.0207691192626953,0.195145769976079,0.0683212280273438,-0.0256650447845459,0.174823373556137,0.0525550842285156,-0.0175461769104004,0.139472648501396,0.0379095077514648,-0.00638437271118164,0.0888170599937439,0.0231914520263672,0.0213150978088379,0.0400071740150452,0.0177621841430664,0.00869870185852051,-0.016005277633667,0.00252914428710938,0.032780647277832,-0.116032093763351,-0.000295639038085938,0.0130568742752075,-0.027932733297348,0.00307083129882813,0.00412702560424805,0.0275995135307312,0.00987148284912109,-0.00396728515625,0.0130437687039375,0.0199928283691406,-0.0104598999023438,0.0111056417226791,0.0327205657958984,-0.0119936466217041,0.027458131313324,0.0446872711181641,-0.00636911392211914,0.075976125895977,0.0555171966552734,0.00494480133056641,0.0625671967864037,0.0552425384521484,0.00642633438110352,0.0570730082690716,0.0484247207641602,0.00280380249023438,0.033774696290493,0.040095329284668,-0.00116777420043945,0.0304486900568008,0.0298900604248047,-0.00310802459716797,0.0562353730201721,0.0172252655029297,-0.00281715393066406,0.0205114483833313,0.00700759887695313,-0.00122737884521484,-0.0181951522827148,-0.00153827667236328,0.00131416320800781,-0.0689611434936523,-0.00949764251708984,0.00488185882568359,-0.137587249279022,-0.014796257019043,-0.0117464065551758,-0.434331357479095,0.00862979888916016,0.00377321243286133,-0.659897267818451,0.0266170501708984,-0.0286707878112793,-0.833466589450836,0.0447959899902344,0.0396900177001953,-0.954945623874664,0.0559635162353516,0.0582427978515625,-1.04775166511536,0.0366306304931641,0.0653562545776367,-1.03327929973602,0.0272712707519531,0.078188419342041,-0.823152959346771,0.000416755676269531,0.0963766574859619,-0.552937269210815,-0.0381383895874023, -0.0354306697845459,-0.239714562892914,0.00300502777099609,0.0239667892456055,-0.102134346961975,-0.00159263610839844,0.0149809122085571,-0.0710668563842773,0.00239372253417969,0.0204463005065918,-0.145775675773621,0.0129108428955078,0.0199558734893799,-0.340906798839569,0.0338478088378906,0.0199229717254639,-0.543250441551208,0.0631084442138672,0.0230839252471924,-0.691357254981995,0.0923376083374023,0.0313692092895508,-0.752342462539673,0.214449882507324,0.036280632019043,-0.727460145950317,0.202787399291992,0.035942554473877,-0.653368353843689,0.0707530975341797,0.0278997421264648,-0.492339849472046,0.0386972427368164,0.0162563323974609,-0.285652816295624,0.0117349624633789,0.0058588981628418,-0.0896759629249573,-0.00365829467773438,0.00110626220703125,-0.0495007038116455,-0.00581836700439453,-0.000835418701171875,-0.0145183801651001,-0.00137710571289063,-0.000934600830078125,0.0112353563308716,0.00554847717285156,0.000607013702392578,0.0359363406896591,0.0154228210449219,0.00318527221679688,0.0525256283581257,0.0241231918334961,0.00628662109375,0.0788415670394897,0.0370941162109375,0.00737667083740234,0.0936639010906219,0.0456809997558594,0.00456380844116211,0.102689206600189,0.051508903503418,-0.00258588790893555,0.103868395090103,0.0520229339599609,-0.00746250152587891,0.0912048518657684,0.0427255630493164,-0.00766563415527344,0.0742730498313904,0.0319356918334961,-0.00343561172485352,0.0501214563846588,0.0195245742797852,0.0032961368560791,0.0185577422380447,0.00885105133056641,0.00913393497467041,-0.0224213004112244,0.00222206115722656,0,-0.128376483917236,0,0,-0.108676433563232,0,0,-0.118945598602295,0,0,-0.0472696423530579,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-0.0221973657608032,0,0,-0.0860745906829834,0,0,-0.130787372589111, -0,0,-0.136725664138794,0,0,-0.13853931427002,0,0,-0.131679773330688,0,0,-0.174082517623901,0,0,-0.184972763061523,0,0,-0.156406164169312,0,0,-0.121402382850647,0,0,-0.109190225601196,0,0,7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06,0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,-0.0075075626373291,0,0,-0.135537505149841,0,0,-0.135991215705872,0,0,-0.159062504768372,0,0,-0.100007057189941,0,0,-0.100342512130737,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999941825866699,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.000915765762329102,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06, -0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06, -0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06,0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999922752380371,0,0,-0.0999922752380371,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06, -0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-5.7220458984375e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-9.17911529541016e-06,0,0,1.84774398803711e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,5.60283660888672e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-7.33137130737305e-06,0,0,1.84774398803711e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0.000100612640380859,-0.000289261341094971,1.1444091796875e-05,0.0349197387695313,-0.105186700820923,0.00534343719482422,0.0692038536071777,-0.326201558113098,-0.000250816345214844,0.100544452667236,-0.632219910621643,-0.00325107574462891,0.0919408798217773,-0.91099214553833,0.000206947326660156,0.0454273223876953,-1.05459702014923,0.00995445251464844,0.0499629974365234,-1.02758324146271,0.00211238861083984,0.0426387786865234, --0.916395306587219,0.0196857452392578,0.0266876220703125,-0.792064666748047,0.0164098739624023,0.0201129913330078,-0.58563905954361,-0.0386867523193359,0.0119137763977051,-0.445987164974213,-0.0396060943603516,0.00371837615966797,-0.171265840530396,-0.0376319885253906,0.0059051513671875,-0.0744451880455017,-0.0148038864135742,-0.00719714164733887,0.0647470057010651,0.0226249694824219,0.0260047912597656,0.0610789358615875,0.0230607986450195,-0.0212240219116211,0.0821790099143982,0.0375766754150391,-0.0370116233825684,0.108748763799667,0.0505990982055664,-0.0365900993347168,0.137288138270378,0.0686187744140625,0.0403835773468018,0.168377906084061,0.0582714080810547,0.0127854347229004,0.163542419672012,0.046478271484375,-0.00535821914672852,0.143106520175934,0.0436458587646484,-0.021174430847168,0.11872386932373,0.050114631652832,-0.0108180046081543,0.0857025384902954,0.023529052734375,-0.00806713104248047,0.0457141399383545,0.0143814086914063,0,-1.78813934326172e-06,0,0,-3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,-1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0,-3.63588333129883e-06,0,0,1.84029340744019e-06,0,0,-3.66568565368652e-06,0,0,-7.3164701461792e-06,0,0,-7.3164701461792e-06,0,0,7.33137130737305e-06,0,0,-5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,9.77516174316406e-06,-4.02927398681641e-05,4.76837158203125e-06,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,-1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0,5.51342964172363e-06,0,0,-3.63588333129883e-06,0,0,-0.0213926583528519,0,-4.52995300292969e-06,-0.0412797331809998,9.5367431640625e-06,0,-0.0535429716110229,0,0,-0.0413181856274605,0,0,-0.0213944986462593,0,0,-5.46872615814209e-06,0,0,1.81794166564941e-06,0,0,7.39097595214844e-06, -0,0,9.17911529541016e-06,0,0,-1.78813934326172e-06,0 - } - Normals: *4317 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, -0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, --1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, --0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, -0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051, --0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962, --0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984, --1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678, -0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861, --0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886, --0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159, --0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167, -0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507, --1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734, --0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045, -0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575, --0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784, -0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017, -0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954, --0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551, --0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495, --0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059, -0.464356422424316,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049, --1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458, -0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823, --1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711, -0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711, -0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561, --0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225, -0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812, --0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507, --0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842, --0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226, --1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402, --0.719538241624832,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569, -0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658, --1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789, -0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763, --1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030773584, "Geometry::Eye_Left_Wide", "Shape" { - Version: 100 - Indexes: *409 { - a: 326,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,484,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,5895,5896,5900,5919,5920,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6123,6124,6146,6147,6160,6161,6162,6163,6505,6506,6507,6508,6524,6525,6527,6528,6529,6530,6531,6532,6533,6534,6535,6552,6553,6554,6555,6556,6557,6558,6559,6561,6562,6564,6794,6800,6804,6805,6806,6807,6808,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7528,7529,7542,7543,7544,7545,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7946,8176,8182,8183,8184,8185,8186,8187,8188,8189,8190,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784 - } - Vertices: *1227 { - a: -0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235199928283691,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0,0.000999689102172852,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453, -0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234334230423,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197255611419678,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556478276848793,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523, -1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,1.52587890625e-05,0.00242425501346588,0.00070953369140625,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.00789570808410645,-0.00230312347412109,-1.83582305908203e-05, -0.00841885805130005,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199636816978455,-0.000123977661132813,0,0.000999718904495239,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082, -0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318154692649841,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556483864784241,0.00016021728515625,-6.00814819335938e-05,0.00105259753763676,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,1.52587890625e-05,0.00242424011230469,0.00070953369140625,3.71932983398438e-05,0.00251369178295135,0.000734329223632813,3.57627868652344e-05,0.00203084945678711,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,0.039896696805954,0.055370569229126,-0.00553607940673828,0.0503910481929779,0.052578330039978,0.00574207305908203,0.0330334566533566,0.0302760601043701,0.00151157379150391,-0.0356791242957115,0.117853164672852,-0.00406074523925781,9.95717418845743e-05,0.113386154174805,0.000700950622558594,0.016003280878067,0.0216991901397705,-0.001373291015625,0.0212710797786713,0.00931870937347412,0.00263309478759766,0.00859534740447998,0.000510334968566895,0.00250911712646484,0.00213241577148438,0.000141382217407227,5.340576171875e-05,0.00301539897918701,-0.00167322158813477, -0.00063323974609375,0.000489115715026855,-0.00162339210510254,-0.000336647033691406,0.000546932220458984,-0.00104355812072754,-0.000135421752929688,-0.000103950500488281,-0.000948190689086914,-0.000379562377929688,0,1.66893005371094e-06,0,0.000159740447998047,-0.000432729721069336,-0.000136375427246094,9.82284545898438e-05,-9.1552734375e-05,-2.57492065429688e-05,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,3.814697265625e-06,0,0,1.66893005371094e-06,0,0.0174713730812073,0.0117024183273315,0.00120639801025391,0.0092894434928894,0.00257408618927002,0.00249671936035156,6.43730163574219e-06,-0.0013573169708252,-0.000384330749511719,0.00122332572937012,-0.00149083137512207,0.000101089477539063,0.00172257423400879,-0.00109267234802246,0.00105953216552734,0.00364315509796143,-0.00128936767578125,0.00200176239013672,0.00442993640899658,-0.00024878978729248,0.00256443023681641,0.00262439250946045,0.00153881311416626,0.00220489501953125,0,4.64916229248047e-06,0,7.15255737304688e-06,2.288818359375e-05,9.5367431640625e-06,0,-2.14576721191406e-06,0,0.000412225723266602,-0.000344038009643555,8.86917114257813e-05,0.000767946243286133,-0.000776529312133789,0.000371932983398438,0.000914335250854492,-0.000514984130859375,0.000566482543945313,0.000428676605224609,-9.84668731689453e-05,0.000191688537597656,0.000179767608642578,3.50475311279297e-05,5.05447387695313e-05,7.72476196289063e-05,1.07288360595703e-05,2.288818359375e-05,2.90870666503906e-05,1.1444091796875e-05,1.43051147460938e-05,9.05990600585938e-06,1.06096267700195e-05,3.814697265625e-06,0.00231671333312988,-0.000142693519592285,0.00180912017822266,0.00245881080627441,-0.000624775886535645,0.0019073486328125,0.00167679786682129,-0.000713348388671875,0.0014190673828125,-0.014453798532486,0.00105643272399902,-0.00242519378662109,-0.00671088695526123,0.000211477279663086,-0.00153541564941406,-0.00267446041107178,-0.000466108322143555,-0.000857353210449219,-0.000793099403381348,-0.000756978988647461,-0.000493049621582031,-3.57627868652344e-06,-0.000531673431396484,-0.000212669372558594, -5.86509704589844e-05,-6.103515625e-05,3.52859497070313e-05,1.43051147460938e-06,6.19888305664063e-06,0,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,0,-4.29153442382813e-06,0,-2.86102294921875e-06,-4.29153442382813e-06,0,-7.74860382080078e-06,1.76429748535156e-05,2.86102294921875e-06,-1.05500221252441e-05,2.43186950683594e-05,1.04904174804688e-05,-1.95801258087158e-05,3.95774841308594e-05,-2.95639038085938e-05,-0.000513553619384766,0.0024259090423584,-0.00019073486328125,-0.000608205795288086,0.00463926792144775,-0.000814437866210938,-0.000313997268676758,0.00642824172973633,-0.00204086303710938,1.09672546386719e-05,0.00789940357208252,-0.00334358215332031,-4.41074371337891e-05,0.00858867168426514,-0.00359725952148438,0.000218391418457031,0.00763392448425293,-0.00202846527099609,0.000766754150390625,0.00606966018676758,-0.00130748748779297,0.000406742095947266,0.00478005409240723,-0.000611305236816406,0.000275135040283203,0.00206238031387329,-0.000124931335449219,3.91006469726563e-05,0.00839114189147949,-0.002838134765625,8.36849212646484e-05,0.000929087400436401,0.000258445739746094,8.55922698974609e-05,0.00178617238998413,0.000478744506835938,0.000128269195556641,0.00021892786026001,0.000127792358398438,-0.000263690948486328,0.000653624534606934,-7.62939453125e-05,5.43594360351563e-05,0.00266426801681519,0.000682830810546875,5.26905059814453e-05,0.003371462225914,0.000856399536132813,1.43051147460938e-06,0.00316940248012543,0.000822067260742188,-4.91142272949219e-05,0.00245356559753418,0.000665664672851563,-7.05718994140625e-05,0.00195887684822083,0.0005340576171875,-0.000115394592285156,0.00129884481430054,0.000383377075195313,-7.39097595214844e-05,0.000541746616363525,0.000162124633789063,-5.81741333007813e-05,0.000188291072845459,8.20159912109375e-05,0.000144481658935547,0.000964581966400146,-3.14712524414063e-05,0.0719225704669952,0.171999216079712,-0.00208282470703125,0.0741032660007477,0.1179119348526,0.0199785232543945,0.074039101600647,0.488242030143738,0.190054893493652,0.0410565733909607, -0.419480562210083,0.0693569183349609,-0.00157749652862549,0.581050157546997,0.218133926391602,-0.02801513671875,0.540443420410156,0.0999221801757813,0.087191104888916,0.702215433120728,0.213652610778809,0.0153965950012207,0.68410325050354,0.12642765045166,0.0501279830932617,0.637698888778687,0.200088500976563,0.0429248809814453,0.617223262786865,0.155679702758789,0.0902509689331055,0.462861061096191,0.17335033416748,0.0830488204956055,0.480314970016479,0.147052764892578,0.115661144256592,0.285030364990234,0.0782508850097656,0.0203766822814941,0.267393827438354,0.138752937316895,0.0863628387451172,0.129194498062134,-0.007965087890625,0.0104227066040039,0.0373415946960449,-0.00250101089477539,0,3.814697265625e-06,0,0.0199103355407715,0.03977370262146,-0.00685930252075195,0.0359668731689453,0.0510199069976807,-0.00460624694824219,-0.0772476196289063,0.0599876642227173,0.0402641296386719,0.00830459594726563,0.681066274642944,0.147480964660645,0.0256655216217041,0.694765329360962,0.218293190002441,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000133037567138672,0.000999689102172852,-2.76565551757813e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656, -1.52587890625e-05,0.00242425128817558,0.00070953369140625,3.71932983398438e-05,0.00251471623778343,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351130962371826,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-8.0108642578125e-05,0.000617355108261108,6.96182250976563e-05,-1.02519989013672e-05,0.000482231378555298,0.000119209289550781,1.23977661132813e-05,0.000700816512107849,0.000223159790039063,1.9073486328125e-05,0.00102675892412663,0.0003509521484375,1.97887420654297e-05,0.00132780522108078,0.000464439392089844,2.38418579101563e-05,0.00156024098396301,0.00055694580078125,2.288818359375e-05,0.00153917074203491,0.000550270080566406,1.28746032714844e-05,0.00132940709590912,0.000472068786621094,-1.9073486328125e-06,0.00105854868888855,0.000367164611816406,-1.33514404296875e-05,0.000743985176086426,0.00025177001953125,-1.43051147460938e-05,0.000490725040435791,0.000143051147460938,4.29153442382813e-06,0.000372767448425293,6.96182250976563e-05,4.76837158203125e-05,0.000525236129760742,2.38418579101563e-05,0.000109195709228516,0.000935256481170654,-2.38418579101563e-05,0.000169754028320313,0.00164282321929932,-0.000112533569335938,0.000182628631591797,0.00367176532745361,-0.000372886657714844,0.0001373291015625,0.00537204742431641,-0.000761032104492188,6.43730163574219e-05,0.00575852394104004,-0.001190185546875,6.67572021484375e-06,0.00727617740631104,-0.00153160095214844,-2.33650207519531e-05,0.00761747360229492,-0.00174236297607422,-4.41074371337891e-05,0.00732779502868652,-0.00153732299804688,-0.000128984451293945,0.00651943683624268,-0.000931739807128906,-0.000224590301513672,0.00456857681274414,-0.000405311584472656,-0.000244379043579102,0.00204652547836304,-0.000105857849121094,-0.000171065330505371,0.00106459856033325,3.24249267578125e-05, --0.000105381011962891,0.000781118869781494,0,-0.000135302543640137,0.00145900249481201,-0.000147819519042969,-0.000100135803222656,0.00208628177642822,0.000453948974609375,-0.000118732452392578,0.002960205078125,4.57763671875e-05,-9.58442687988281e-05,0.00358128547668457,-0.000405311584472656,-4.38690185546875e-05,0.00400543212890625,-0.000701904296875,-9.05990600585938e-05,0.00331759452819824,-0.000609397888183594,-9.918212890625e-05,0.00294971466064453,-0.000368118286132813,-4.48226928710938e-05,0.00240528583526611,-0.000832557678222656,1.57356262207031e-05,0.0017249584197998,-0.000451087951660156,5.38825988769531e-05,0.00107395648956299,-0.000173568725585938,5.14984130859375e-05,0.000679433345794678,-5.81741333007813e-05,3.19480895996094e-05,0.000389456748962402,1.1444091796875e-05,1.85966491699219e-05,0.000298202037811279,6.4849853515625e-05,1.85966491699219e-05,0.00035993754863739,0.000140190124511719,2.47955322265625e-05,0.00044279545545578,0.000209808349609375,3.76701354980469e-05,0.000672340393066406,0.000335693359375,4.33921813964844e-05,0.000835835933685303,0.000429153442382813,3.76701354980469e-05,0.000956177711486816,0.000493049621582031,2.33650207519531e-05,0.000984609127044678,0.000504493713378906,7.62939453125e-06,0.000854820013046265,0.000423431396484375,-1.9073486328125e-06,0.000686496496200562,0.000327110290527344,-1.02519989013672e-05,0.000517368316650391,0.000219345092773438,-2.81333923339844e-05,0.000440716743469238,0.00012969970703125,-6.05583190917969e-05,0.000494927167892456,5.81741333007813e-05,0.0115840435028076,0.612931489944458,0.214901924133301,0.0111932754516602,0.521907329559326,0.21419620513916,-0.0225270986557007,0.313108801841736,0.0894336700439453,-0.0535176992416382,0.0552123785018921,0.0429706573486328,0.0189471244812012,0.0448840856552124,-0.00684499740600586,0.0692782402038574,0.134331703186035,0.000301361083984375,0.112018585205078,0.283711433410645,0.0628395080566406,0.0924129486083984,0.444191694259644,0.1826171875,0.0430886745452881,0.523174047470093,0.225696563720703,0.0513632297515869, -0.577847480773926,0.242834091186523,-0.0269534587860107,0.419760227203369,0.0882482528686523,-0.00270533561706543,0.374822854995728,0.0538339614868164,0.0383625030517578,0.285292387008667,0.0128908157348633,0.0269880294799805,0.184450626373291,0.00119113922119141,0.025871753692627,0.0903611183166504,-0.0297765731811523,0.0308051109313965,0.0477136373519897,-0.0128669738769531,-0.0514130592346191,0.108309864997864,0.0243253707885742,-0.0500757694244385,0.232627272605896,0.102014541625977,-0.0562922954559326,0.388509392738342,0.171122550964355,-0.0304321646690369,0.278913021087646,-0.00598716735839844,0.00974196195602417,0.467592000961304,-0.00692558288574219,0.0123574733734131,0.458104610443115,-0.00974369049072266,0.0474120378494263,0.499452352523804,-0.00387859344482422,-0.0140345096588135,0.518790245056152,-0.0316677093505859,0.0553662776947021,0.497079372406006,-0.0471725463867188,0.105998516082764,0.374053478240967,-0.0496273040771484,-0.00850725173950195,0.129849433898926,-0.0193643569946289,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,3.76701354980469e-05,0.000108242034912109,-9.10758972167969e-05,0.0331077575683594,0.251204013824463,0.00354146957397461,0.0174629688262939,0.268531322479248,0.00681018829345703,0.0244226455688477,0.284929752349854,0.00650882720947266,0.0313739776611328,0.281942367553711,0.00528144836425781,-0.0125900506973267,0.280825614929199,0.0121126174926758,-0.00841838121414185,0.298995018005371,0.00684452056884766,0.000121742486953735,0.283126354217529,0.00475978851318359,0,1.78813934326172e-06,0,-0.00024867057800293,0.000627219676971436,-8.0108642578125e-05,-0.00049281120300293,0.00234889984130859,-0.000192642211914063,-0.000592708587646484,0.00481593608856201,-0.000767707824707031,-0.000319004058837891,0.00675666332244873,-0.00189018249511719,3.09944152832031e-06,0.00842452049255371,-0.00307559967041016,-2.31266021728516e-05,0.00935912132263184,-0.00327968597412109,6.53266906738281e-05,0.00914978981018066,-0.00255298614501953,0.000235080718994141,0.00837099552154541, --0.00183773040771484,0.000354766845703125,0.00665366649627686,-0.00122642517089844,0.000401973724365234,0.0046461820602417,-0.000583648681640625,0.000266075134277344,0.0020061731338501,-0.000123023986816406,0.000139713287353516,0.000937461853027344,-3.14712524414063e-05,8.22544097900391e-05,0.000895410776138306,0.000245094299316406,0.000124692916870117,0.000211358070373535,0.000123023986816406,8.65459442138672e-05,0.00171753764152527,0.000447273254394531,5.62667846679688e-05,0.00255855917930603,0.000630378723144531,5.00679016113281e-05,0.00323455035686493,0.000787734985351563,-5.96046447753906e-06,0.00305303931236267,0.000757217407226563,-5.7220458984375e-05,0.002378910779953,0.000620841979980469,-7.67707824707031e-05,0.00190240144729614,0.000501632690429688,-0.000115394592285156,0.00125032663345337,0.000363349914550781,-7.20024108886719e-05,0.000527322292327881,0.000157356262207031,-5.57899475097656e-05,0.000183284282684326,8.10623168945313e-05,0,0.00131899118423462,0,0,0.00380241870880127,0,0,0.00561583042144775,0,0,0.00630033016204834,0,0,0.00630021095275879,0,0,0.00630033016204834,0,0,0.00522923469543457,0,0,0.00472331047058105,0,0,0.00311636924743652,0,0,0.0016065239906311,0 - } - Normals: *1227 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, -0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, --1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, --0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, -0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.107066869735718,-0.0274820327758789,-1.34571528434753, -0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.83636599034071,-0.958253972232342,-0.844457536935806,0.433115065097809,-0.226518977433443,0.52702921628952,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314, --0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059,0.464356422424316,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291, -0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986, -0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672, --0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343, --0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224, -1.22639819979668,0.864633291959763,-0.881134361028671 - } - } - Geometry: 2807030773872, "Geometry::Eye_Left_Right", "Shape" { - Version: 100 - Indexes: *1418 { - a: 326,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,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,460,461,462,463,464,465,466,467,468,469,470,471,484,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,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,618,619,620,621,622,623,624,625,626,627,628,629,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496, -6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544,7545,7559,7573,7575,7577,7578,7580,7581, -7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208, -8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8792,8793,8794,8796,8797,8799 - } - Vertices: *4254 { - a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449098825454712,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.373579978942871,-0.00995814800262451,-0.156295776367188,-0.243783712387085,-0.0108641386032104,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0375492572784424,0.00956952571868896,-0.00772762298583984,-0.0145010948181152,-0.00116109848022461,-0.00990867614746094,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.137148857116699,0.00349897146224976,0.0875425338745117,-0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043, --0.0703115463256836,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.132277488708496,0.00881282985210419,-0.031951904296875,-0.134203910827637,0.0119159072637558,-0.00823402404785156,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239880204201,0.0300846099853516,-0.19727611541748,-0.0363855138421059,0.0537042617797852,-0.0876650810241699,-0.014349639415741,0.0323572158813477,-0.071815013885498,0.00169742107391357,0.0300350189208984,-0.0239934921264648,-0.00214302539825439,0.014979362487793,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0145010948181152,-0.00116115808486938,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.142739057540894,0.0284625440835953,-0.0102090835571289,-0.168860912322998,0.039720207452774,-0.0202426910400391,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239507675171,0.0300846099853516,-0.158125400543213,-0.019367128610611,0.0534534454345703,-0.0304460525512695,0.0133194625377655,-0.0105266571044922,-0.0192008018493652,0.0329480022192001,-0.0340337753295898,-0.0239934921264648,-0.00214299559593201,0.014979362487793,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0239934921264648,-0.00214299559593201,0.014979362487793,-0.0305619239807129,0.0217394530773163,-0.010218620300293,-0.0532975196838379,0.00251196324825287,0.00622272491455078,-0.169595241546631,-0.0245697200298309,0.0512323379516602,-0.178987741470337,-0.00883239507675171,0.0300846099853516,-0.147934436798096, -0.00172980129718781,0.000176429748535156,-0.15197491645813,0.0258671194314957,-0.0171632766723633,-0.136911392211914,0.0223250016570091,-0.0242319107055664,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.00511384010314941,0.0152137279510498,0.0203084945678711,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449098825454712,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.373579978942871,-0.00995814800262451,-0.156295776367188,-0.243783712387085,-0.0108641386032104,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0375492572784424,0.00956952571868896,-0.00772762298583984,-0.0145010948181152,-0.00116109848022461,-0.00990867614746094,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.457818746566772,-0.00489765405654907,-0.0703115463256836,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.137148857116699,0.00349897146224976,0.0875425338745117,-0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,-0.137148857116699, -0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.132277488708496,0.00881282985210419,-0.031951904296875,-0.134203910827637,0.0119159072637558,-0.00823402404785156,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239880204201,0.0300846099853516,-0.19727611541748,-0.0363855138421059,0.0537042617797852,-0.0876650810241699,-0.014349639415741,0.0323572158813477,-0.071815013885498,0.00169742107391357,0.0300350189208984,-0.0239934921264648,-0.00214302539825439,0.014979362487793,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0145010948181152,-0.00116115808486938,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606224685907364,-0.013580322265625,-0.142739057540894,0.0284624919295311,-0.0102090835571289,-0.168860912322998,0.039720207452774,-0.0202426910400391,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239507675171,0.0300846099853516,-0.158125400543213,-0.0193670690059662,0.0534534454345703,-0.0304460525512695,0.0133194625377655,-0.0105266571044922,-0.0192008018493652,0.0329480022192001,-0.0340337753295898,-0.0239934921264648,-0.0021430030465126,0.014979362487793,-0.00954198837280273,-0.00186002999544144,0.00846481323242188,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0239934921264648, --0.00214299559593201,0.014979362487793,-0.0305619239807129,0.021739449352026,-0.010218620300293,-0.0532975196838379,0.00251196324825287,0.00622272491455078,-0.169595241546631,-0.0245697274804115,0.0512323379516602,-0.178987741470337,-0.0088324174284935,0.0300846099853516,-0.147934436798096,0.00172980129718781,0.000176429748535156,-0.15197491645813,0.0258671082556248,-0.0171632766723633,-0.136911392211914,0.0223250091075897,-0.0242319107055664,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06, -0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06, -0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06, -0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06, -0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06, -0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06, -0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06, -0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,-0.104260444641113,-0.0151748061180115,-0.0817766189575195,-0.243622779846191,-0.0144773721694946,-0.157573699951172,-0.356208324432373,-0.0147475004196167,-0.160111427307129,-0.456611156463623,-0.0088956356048584,-0.0859260559082031,-0.49645733833313,0.00385284423828125,0.0355138778686523,-0.35156774520874,0.0133101940155029,0.188139915466309,-0.269849300384521,0.00949859619140625,0.210864067077637,-0.170101642608643,0.00426638126373291,0.10014533996582,-0.0621051788330078,-0.00112074613571167,0.0590801239013672,-0.429880857467651,0.0122146606445313,0.157896995544434,-0.0566027164459229,0.00390651822090149,-0.0168790817260742,-0.11329460144043,0.00616878271102905,-0.0420942306518555,-0.00918054580688477,0.000947564840316772,-0.00546550750732422,-0.0336756706237793,-0.00682216882705688,-0.022273063659668,-0.131659746170044,0.00679731369018555,-0.0179595947265625,-0.151692628860474,-0.00391058623790741,-0.0036163330078125,-0.150131702423096,-0.0124808549880981,0.0252065658569336,-0.194314956665039,-0.0375706255435944,0.0534324645996094,-0.103732109069824,-0.0193227529525757,0.0375385284423828, --0.0803518295288086,-0.00123482942581177,0.001251220703125,-0.0255184173583984,-0.00187379121780396,0.0143709182739258,-0.0063629150390625,-0.0016140341758728,0.00507354736328125,-0.0253682136535645,-0.00208240747451782,0.0204629898071289,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0199603140354156,0.0113003253936768,-0.00263786315917969,-0.00975272059440613,0.00552606582641602,-0.00128936767578125,-1.78813934326172e-06,-1.54972076416016e-06,0,1.01327896118164e-06,-1.66893005371094e-06,0,-0.0269619226455688,0.0113177299499512,0.00885009765625,-0.0221642255783081,0.0175728797912598,0.00786972045898438,-0.0378122329711914,0.0285334587097168,0.0133228302001953,-0.0218844413757324,0.0352559089660645,0.00905799865722656,-0.0734541416168213,0.0578579902648926,-0.0244379043579102,-0.0660488605499268,0.0706672668457031,-0.0304670333862305,-0.0916662216186523,0.0411264896392822,-0.0118961334228516,-0.117982387542725,0.0577690601348877,-0.0151214599609375,-0.0254726409912109,0.00959873199462891,-0.00327491760253906,-0.00680398941040039,0.0025639533996582,-0.000874519348144531,-0.000240802764892578,-0.000154495239257813,5.53131103515625e-05,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,-0.00340890884399414,0.00430166721343994,0.000877857208251953,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06, -0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0.00107049942016602,-0.00165319442749023,-0.000279426574707031,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,-9.82284545898438e-05,0.000180959701538086,2.6702880859375e-05,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,-0.0272376537322998,0.000174105167388916,0.00655269622802734,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,-0.0275740623474121,0.0353116989135742,0.0107564926147461,-0.0432562828063965,0.0227468013763428,0.0145292282104492,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0, -0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.243783712387085,-0.0108641386032104,-0.141231536865234,-0.373579978942871,-0.00995802879333496,-0.156295776367188,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.449098825454712,0.0252542495727539,0.155594825744629,-0.334151268005371,0.0235977172851563,0.180244445800781,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.0621218681335449,-3.09944152832031e-06, -0.0612897872924805,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.00950193405151367,-0.0006561279296875,0.00911808013916016,-0.00954198837280273,-0.00186002254486084,0.00846385955810547,-0.0239934921264648,-0.00214302539825439,0.014979362487793,-0.071815013885498,0.00169739127159119,0.0300350189208984,-0.0876650810241699,-0.0143496096134186,0.0323572158813477,-0.19727611541748,-0.0363855287432671,0.0537042617797852,-0.178987741470337,-0.00883240252733231,0.0300846099853516,-0.147934436798096,0.00177557021379471,0.000176429748535156,-0.134203910827637,0.0119158998131752,-0.00823402404785156,-0.132277488708496,0.00881284475326538,-0.031951904296875,-0.0642046928405762,0.00606220960617065,-0.013580322265625,-0.0163464546203613,0.000596731901168823,-0.00969505310058594,-0.0145010948181152,-0.00116121768951416,-0.00990867614746094,-0.0426630973815918,-0.00564414262771606,-0.0280361175537109,-0.0247988700866699,-0.00176239013671875,-0.0180149078369141,-0.0219948291778564,0.000664412975311279,-0.0123424530029297,-0.0747983455657959,0.0151237621903419,-0.00421333312988281,-0.1527419090271,0.0162039827555418,-0.00968647003173828,-0.14022421836853,0.0178578123450279,0.00266170501708984,-0.139949321746826,0.0179325938224792,0.00835895538330078,-0.219900846481323,-0.00494733452796936,0.0422067642211914,-0.192359447479248,-0.0328969284892082,0.0512838363647461,-0.0590925216674805,-0.00599932670593262,0.0233230590820313,-0.0552554130554199,0.0030975341796875,0.0235662460327148,-0.0165929794311523,-0.00262224674224854,0.0132026672363281,-0.010587215423584,-0.00162965059280396,0.0105953216552734,-0.0145664215087891,-0.000950992107391357,0.0152626037597656,-0.0272364616394043,-0.000262439250946045,0.0258302688598633,-0.0529909133911133,0.000549674034118652,0.0579338073730469,-0.0976862907409668,0.00253605842590332,0.0731906890869141,-0.148930549621582,0.00423431396484375,0.181401252746582,-0.270235538482666,0.0264279842376709,0.167301177978516,-0.389108180999756,0.0214017629623413,0.146491050720215,-0.40769362449646, -0.00215303897857666,0.0509681701660156,-0.420200109481812,0.00350797176361084,-0.0454769134521484,-0.373639583587646,0.00190949440002441,-0.113078117370605,-0.234936237335205,-0.00633871555328369,-0.119570732116699,-0.0837616920471191,-0.0062713623046875,-0.071746826171875,-0.0432713031768799,-0.00388944149017334,-0.0299768447875977,-0.0388623476028442,-0.00165754556655884,-0.0220394134521484,-0.0618753433227539,-0.00225460529327393,-0.0387287139892578,-0.179849147796631,0.00682032108306885,-0.0692987442016602,-0.308836698532104,0.05329430103302,-0.0582733154296875,-0.248277902603149,0.0200564861297607,-0.000338554382324219,-0.235311985015869,0.0581557750701904,0.0205535888671875,-0.246797800064087,0.046625018119812,0.0577030181884766,-0.267519950866699,-0.0156550407409668,0.0909872055053711,-0.217994689941406,-0.0408935546875,0.0900602340698242,-0.224246978759766,-0.0420398712158203,0.0937004089355469,-0.0969524383544922,-0.0289382934570313,0.0548238754272461,-0.12263298034668,-0.0158578157424927,0.0525789260864258,-0.102671146392822,-0.0114836692810059,0.0389642715454102,-0.084012508392334,-0.0104409456253052,0.0303964614868164,-0.00968265533447266,-0.00200499594211578,0.0123167037963867,-0.0140361785888672,-0.00256958603858948,0.0126266479492188,-0.0242152214050293,-0.00348204374313354,0.0146427154541016,-0.11257791519165,-0.0114530920982361,0.0321006774902344,-0.193585157394409,0.0066453218460083,0.0450401306152344,-0.0742344856262207,0.0139896869659424,0.0065765380859375,-0.106448173522949,0.044166088104248,0.00919818878173828,-0.0974111557006836,0.0725729465484619,0.00562572479248047,-0.0554413795471191,0.0118582397699356,-0.00443458557128906,-0.017391562461853,-0.000358574092388153,-0.013397216796875,-0.0193077325820923,-0.00130462646484375,-0.0158481597900391,-0.0750501155853271,0.055222749710083,-0.0115242004394531,-0.0514262914657593,0.027684211730957,-0.0149755477905273,-0.0882445573806763,0.0582420825958252,0.0144567489624023,-0.0906147956848145,-0.00106757879257202,0.0214967727661133,-0.0729591846466064, -0.0188553035259247,0.017765998840332,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,-0.000917673110961914,0.000937342643737793,0.000233650207519531,-1.43051147460938e-05,1.29938125610352e-05,3.814697265625e-06,-0.000987052917480469,0.00064241886138916,0.000247955322265625,-0.0596766471862793,0.114591956138611,0.0159931182861328,-0.0827960968017578,0.104445457458496,0.0213212966918945,-0.0657963752746582,0.0096701979637146,0.0158658027648926,-0.123732566833496,8.04662704467773e-06,0.0295352935791016,-0.090184211730957,-0.0100013613700867,0.0213437080383301,-0.0502614974975586,-0.00972408056259155,0.0118327140808105,-0.0467782020568848,-0.016068696975708,0.0109939575195313,0.0183010101318359,-0.0742177963256836,-0.00532817840576172,-0.0457687377929688,-0.0282473564147949,0.0105381011962891,-0.0121359825134277,0.00457310676574707,-0.00156021118164063,-0.0750899314880371,0.0384180545806885,0.00353050231933594,-0.0358788967132568,0.0322830677032471,-0.00492477416992188,-0.065187931060791,0.0619609355926514,-0.00493049621582031,-0.127501010894775,0.0626354217529297,0.0312042236328125,-0.0742924213409424,0.048267126083374,0.0184459686279297,-0.0274176597595215,0.037442684173584,0.00707817077636719,-0.115433692932129,-0.0273041725158691,0.0270891189575195,-0.12520694732666,-0.0460220575332642,0.0292901992797852,-0.096381664276123,-0.0179497003555298,0.0227766036987305,-0.0663161277770996,-0.0582417249679565,0.0149679183959961,-0.0870394706726074,-0.0224457979202271,0.0205087661743164,-0.105979442596436,-0.021424412727356,0.024960994720459,-0.10612154006958,-0.0123015344142914,0.0250129699707031,-0.0721683502197266,0.00932585075497627,0.0175495147705078,-0.118720054626465,0.0563452243804932,0.0292024612426758,-0.0439791679382324,0.0731871128082275,0.0117616653442383,-0.147531032562256,0.0444884896278381,0.0359678268432617,-0.0748624801635742,0.0554708242416382,0.0187892913818359,-0.0254771709442139,0.026197075843811,0.00649452209472656,-0.0275394916534424,0.0192332863807678, -0.00691127777099609,-0.0233209133148193,0.0794694423675537,0.00684642791748047,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-0.00243031978607178,0.000277459621429443,0.000583648681640625,-0.0836323499679565,0.00968503952026367,0.0200862884521484,-0.114145040512085,0.043732762336731,-0.00831413269042969,-0.170982360839844,0.0942243337631226,0.00810527801513672,-0.1872239112854,0.065908670425415,0.00882148742675781,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,1.16825103759766e-05,4.76837158203125e-06,1.9073486328125e-06,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0, --4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06, -0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06, -0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-9.01222229003906e-05,-2.74181365966797e-05,-6.103515625e-05,-0.0321485996246338,-0.00655514001846313,-0.0216398239135742,-0.0700879096984863,-0.0146988034248352,-0.0824975967407227,-0.223358631134033,-0.0139434337615967,-0.15715503692627,-0.330886125564575,-0.01417076587677,-0.159114837646484,-0.437490463256836,-0.00856173038482666,-0.0840988159179688,-0.476159811019897,0.00368964672088623,-0.0123558044433594,-0.402390956878662,0.0114609003067017,0.160143852233887,-0.331011295318604,0.0125656127929688,0.187532424926758,-0.26105260848999,0.00920569896697998,0.210186004638672,-0.16370964050293,0.00413811206817627,0.100796699523926,-0.0594801902770996,-0.00112771987915039,0.0589199066162109,-0.0241637229919434,-0.00204008817672729,0.020411491394043,-0.0523378849029541,0.00293377041816711,-0.0175380706787109,-0.00878310203552246,0.000914007425308228,-0.00543689727783203,-0.075472354888916, -0.00424244999885559,-0.0241355895996094,-0.114959001541138,0.00276842713356018,-0.0207653045654297,-0.143499851226807,-0.00477446615695953,-0.00384235382080078,-0.133800268173218,-0.012367382645607,0.0228404998779297,-0.167060375213623,-0.0316793918609619,0.0475444793701172,-0.0866408348083496,-0.0136468112468719,0.0339651107788086,-0.0755414962768555,-0.00162374973297119,0.0325021743774414,-0.0195083618164063,-0.00312268733978271,0.0130949020385742,-0.00583982467651367,-0.00163877010345459,0.00503444671630859,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-9.77516174316406e-06,-3.03983688354492e-06,-0.0216598510742188,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-1.28746032714844e-05,-4.57465648651123e-06,-2.86102294921875e-06,-0.000710010528564453,-6.02006912231445e-06,0.000169754028320313,-0.000545978546142578,-6.47455453872681e-05,0.00012969970703125,-0.000487804412841797,0.000121057033538818,0.000118255615234375,-0.000793933868408203,0.000205874443054199,0.000191688537597656,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4254 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668,0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031, --0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106, -0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.608315385878086,0.0309087634086609,0.337096847593784,-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983, -1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041, --0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807, --0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543, --1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643, --0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899, --0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962, --1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679, --0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903, -0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593, -0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014, -0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704, --0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916, --0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385, -0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395, -0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853, --0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877, -0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688, --0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527, --0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354, --1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456, -0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976, --1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028, -0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495, --1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532, --0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716, --0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309, --1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736, -0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396, --1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568, -0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706, -0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719, --0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527, -0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151, -0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382, -1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193, --1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030774160, "Geometry::Eye_Left_Left", "Shape" { - Version: 100 - Indexes: *1431 { - a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486, -6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7510,7511,7512,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544, -7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179, -8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *4293 { - a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.0903201103210449,0.0162455439567566,-0.375970840454102,0.192007541656494,0.0213414430618286,-0.45504093170166,0.310050964355469,0.0252300500869751,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898,-0.296371459960938,0.329407691955566,0.0257493257522583,-0.113393783569336,0.261270046234131,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297415256500244,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.043103814125061,0.0167997479438782,0.0434961318969727,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.101550102233887,0.00887632369995117,0.0476627349853516,0.138259410858154,0.00297409296035767,0.0624895095825195,0.24837589263916,0.0165941715240479,0.0442428588867188,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.329407691955566,0.0257493257522583,-0.11480712890625,0.338678359985352,0.0275640487670898,-0.297785758972168,0.326820850372314,0.0247514247894287,-0.408695220947266,0.310050964355469,0.0252300500869751,-0.502775192260742,0.164108276367188,0.0490363240242004,-0.496404647827148,0.0962176322937012,0.00350004434585571,-0.394233703613281,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.123275756835938,0.0382112860679626,-0.40921688079834,0.192007541656494,0.0213413834571838,-0.45504093170166,0.310050964355469,0.0252299308776855,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898, --0.297785758972168,0.329407215118408,0.0257493257522583,-0.11480712890625,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297409296035767,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.169617414474487,-0.00934772193431854,0.0134963989257813,0.262131690979004,-0.0169035717844963,-0.000680923461914063,0.19421911239624,-0.00468742474913597,-0.0219268798828125,0.137040138244629,0.00615224242210388,-0.136188507080078,0.107697486877441,0.00664103031158447,-0.248453140258789,0.0621771812438965,0.00528210401535034,-0.23625659942627,0.0284223556518555,-0.0141885280609131,-0.21666431427002,0.0133295059204102,0.00161898136138916,-0.236495971679688,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650472939014435,0.0149145126342773,0.143210172653198,-0.0115275532007217,0.0188655853271484,0.169617414474487,-0.00934773683547974,0.0134963989257813,0.262131690979004,-0.0169035792350769,-0.000680923461914063,0.194218635559082,-0.00468742847442627,-0.0219268798828125,0.167585372924805,0.0298169553279877,-0.121891975402832,0.153645992279053,0.0369060039520264,-0.253515243530273,0.129809379577637,0.0621353089809418,-0.290690422058105,0.0969195365905762,0.0606474205851555,-0.327178955078125,0.0744624137878418,0.0981739610433578,-0.332362174987793,0.0135793685913086,0.0106267333030701,-0.214198112487793,0.00246715545654297,0.00920170545578003,-0.22663402557373,0.055539608001709,0.0514180064201355,-0.289390563964844,0.0837244987487793,0.0425230860710144,-0.295361518859863,0.107307434082031,0.0409700870513916,-0.270119667053223,0.134385585784912, -0.0260509103536606,-0.253552436828613,0.15485668182373,0.0213298052549362,-0.12946891784668,0.194218635559082,-0.00468741357326508,-0.0219268798828125,0.262131690979004,-0.0169035494327545,-0.000680923461914063,0.169617414474487,-0.00934772938489914,0.0134963989257813,0.143210172653198,-0.0115275830030441,0.0188655853271484,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.0903201103210449,0.0162455439567566,-0.375970840454102,0.192007541656494,0.0213414430618286,-0.45504093170166,0.310050964355469,0.0252300500869751,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898,-0.296371459960938,0.329407691955566,0.0257493257522583,-0.113393783569336,0.261270046234131,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297415256500244,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.043103814125061,0.0167997479438782,0.0434961318969727,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.101550102233887,0.00887632369995117,0.0476627349853516,0.138259410858154,0.00297409296035767,0.0624895095825195,0.24837589263916,0.0165941715240479,0.0442428588867188,0.26127028465271,0.00660628080368042,-0.0108213424682617,0.329407930374146,0.0257493257522583,-0.11480712890625,0.338678359985352,0.0275640487670898,-0.297785758972168,0.326820850372314,0.0247514247894287,-0.408695220947266,0.310050964355469,0.0252300500869751,-0.502775192260742,0.164108276367188,0.0490363240242004,-0.496404647827148,0.0962176322937012,0.00350004434585571,-0.394233703613281,0.0507545471191406, -0.00104856491088867,-0.318170547485352,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.123275756835938,0.0382112860679626,-0.40921688079834,0.192007541656494,0.0213413834571838,-0.45504093170166,0.310050964355469,0.0252299904823303,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898,-0.297785758972168,0.329407453536987,0.0257493257522583,-0.11480712890625,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297409296035767,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.169617414474487,-0.00934772193431854,0.0134963989257813,0.262131690979004,-0.0169035717844963,-0.000680923461914063,0.19421911239624,-0.00468742474913597,-0.0219268798828125,0.137040138244629,0.00615224242210388,-0.136188507080078,0.107697486877441,0.00664103031158447,-0.248453140258789,0.0621771812438965,0.00528210401535034,-0.23625659942627,0.0284223556518555,-0.0141885280609131,-0.21666431427002,0.0133295059204102,0.00161898136138916,-0.236495971679688,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.143210172653198,-0.0115275830030441,0.0188655853271484,0.169617414474487,-0.00934773683547974,0.0134963989257813,0.262131690979004,-0.0169035792350769,-0.000680923461914063,0.194218635559082,-0.00468742847442627,-0.0219268798828125,0.167585372924805,0.0298169851303101,-0.121891975402832,0.153645992279053,0.0369060039520264,-0.253515243530273, -0.129809379577637,0.0621353089809418,-0.290690422058105,0.0969195365905762,0.0606474205851555,-0.327178955078125,0.0744624137878418,0.098173975944519,-0.332362174987793,0.0135793685913086,0.0106267333030701,-0.214198112487793,0.00246715545654297,0.00920170545578003,-0.22663402557373,0.055539608001709,0.0514180064201355,-0.289390563964844,0.0837244987487793,0.0425230860710144,-0.295361518859863,0.107307434082031,0.0409700833261013,-0.270119667053223,0.134385585784912,0.0260509103536606,-0.253552436828613,0.15485668182373,0.0213298127055168,-0.12946891784668,0.194218635559082,-0.00468743592500687,-0.0219268798828125,0.262131690979004,-0.0169035494327545,-0.000680923461914063,0.169617414474487,-0.00934774056077003,0.0134963989257813,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0137698650360107,0.000629693269729614,0.00848674774169922,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06, -0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06, -0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06, -0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06, -0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06, -0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06, -0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06, -0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0.000238180160522461,0.000132977962493896,9.5367431640625e-06,0.0990467071533203,0.0082821249961853,0.047633171081543,0.142971277236938,-0.00980150699615479,0.0699443817138672,0.26461386680603,0.00175583362579346,0.0467805862426758,0.266428709030151,-0.00530350208282471,-0.00621604919433594,0.339926481246948,0.0198181867599487,-0.150485038757324,0.361836433410645,0.0361200571060181,-0.467625617980957,0.344032764434814,0.0346287488937378,-0.535763740539551,0.216418743133545,0.0182749032974243,-0.477591514587402,0.103751659393311,0.0199064612388611,-0.383056640625,-0.0022883415222168,0,-0.2498779296875,0.37465763092041,0.0185005664825439,-0.336268424987793,0.0582830905914307,-0.00549057126045227,0.0147705078125,0.128053903579712,-0.00937643647193909,0.0211477279663086, -0.00806570053100586,-0.000226080417633057,0.0035247802734375,0.0270147323608398,0.00050884485244751,0.0165061950683594,0.158831119537354,-0.0127155631780624,0.0145635604858398,0.240624904632568,-0.0171034783124924,-0.00535202026367188,0.208769559860229,-0.0020211935043335,-0.0298299789428711,0.143869400024414,0.00723865628242493,-0.149331092834473,0.136171817779541,0.00775185227394104,-0.282914161682129,0.0536060333251953,-0.00206896662712097,-0.28546142578125,0.024200439453125,-0.0144634246826172,-0.253257751464844,0.014124870300293,0.00166624784469604,-0.248126983642578,0.0588760375976563,0.0109925866127014,-0.321419715881348,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0.0116305351257324,-0.00467574596405029,0.000390052795410156,0.00164312124252319,-0.00114583969116211,5.81741333007813e-05,0.0498316287994385,-0.0116705894470215,0.00176620483398438,0.0818784236907959,-0.0551135540008545,0.00291061401367188,0.121216297149658,-0.0266857147216797,0.00438308715820313,0.0238196849822998,-0.0143837928771973,0.000828742980957031,0.129374980926514,0.0206098556518555,0.0049591064453125,0.12768816947937,0.0371713638305664,0.00509929656982422,0.0865483283996582,0.0504584312438965,0.00355625152587891,0.174444198608398,0.0191357135772705,0.00681304931640625,0.0886101722717285,0.0533926486968994,-0.0409784317016602,0.0495104789733887,0.00175237655639648,0.00190639495849609,0.135512351989746, -0.00797843933105469,-0.120069026947021,-1.9073486328125e-06,-1.07288360595703e-06,0,0,6.13927841186523e-06,0,1.43051147460938e-06,-1.19209289550781e-06,0,0,7.62939453125e-06,0,-0.00158405303955078,0.00531435012817383,-5.14984130859375e-05,0,-7.62939453125e-06,0,0.0241680145263672,0.0255273580551147,0.00104236602783203,0.0157561302185059,0.00699925422668457,0.000629425048828125,0.0175750255584717,0.00735747814178467,0.000706672668457031,0,2.98023223876953e-06,0,0.047046422958374,0.0202135443687439,0.00189781188964844,0,1.54972076416016e-06,0,0.0119510889053345,-0.00140209496021271,0.000448226928710938,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0.0515360832214355,0.0475425720214844,-0.0366711616516113,0,-2.98023223876953e-06,0,3.814697265625e-06,-1.07288360595703e-06,0,-1.43051147460938e-06,-1.11013650894165e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0.00529813766479492,0.017688512802124,0.000266075134277344,0,-6.19888305664063e-06,0,0.01129150390625,0.00424492359161377,0.000452041625976563,0.0207185745239258,0.00426256656646729,0.000791549682617188,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0.00424426794052124,-0.00169980525970459,0.000143051147460938,0.11449146270752,-0.034414529800415,0.00429821014404297,0.194644212722778,-0.0192775726318359,0.00722885131835938,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06, -0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06, -0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.101550102233887,0.00887632369995117,0.0476627349853516,0.138259410858154,0.00297415256500244,0.0624895095825195,0.24837589263916,0.0165942907333374,0.0442428588867188,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.329407691955566,0.0257494449615479,-0.113393783569336,0.338678359985352,0.0275641679763794,-0.296371459960938,0.326820850372314,0.0247514247894287,-0.408696174621582,0.310050964355469,0.0252299308776855,-0.502775192260742,0.192007541656494,0.0213413238525391,-0.45504093170166,0.0903201103210449,0.0162455439567566,-0.375970840454102,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.000130653381347656,0.000640869140625,-0.235055923461914,0.0133295059204102,0.00161898136138916,-0.236496925354004,0.0284223556518555,-0.0141884684562683,-0.21666431427002,0.0621771812438965,0.00528204441070557,-0.23625659942627,0.107697486877441,0.00664100050926208,-0.248453140258789,0.137040138244629,0.00615222752094269,-0.136188507080078,0.19421911239624,-0.00468742847442627,-0.0219268798828125,0.262131690979004,-0.0168577879667282,-0.000680923461914063,0.169617414474487,-0.00934771448373795,0.0134963989257813,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.0636618137359619,-0.000650495290756226,0.0149145126342773,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0137696266174316,0.000629633665084839,0.00848674774169922,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.0242965221405029,0.00126487016677856,0.015660285949707,0.0265774726867676,0.0039711594581604,0.0113620758056641,0.0735821723937988,0.0134950950741768,0.0148000717163086,0.135603427886963,0.00944078154861927,0.0160617828369141,0.171540260314941,-0.00206577777862549,0.0120716094970703,0.256332397460938,-0.0157688409090042,0.00373935699462891,0.177870273590088,-0.00625723600387573,-0.0124368667602539,0.131528377532959,0.00614805147051811,-0.110476493835449,0.112782001495361,0.0129797235131264,-0.226679801940918,0.0486507415771484,0.00343582034111023, --0.22941780090332,0.00263786315917969,0.00204774737358093,-0.216222763061523,0.011970043182373,0.00126951932907104,-0.214228630065918,0.0156960487365723,0.000843822956085205,-0.211348533630371,0.048250675201416,0.000329852104187012,-0.277787208557129,0.0756072998046875,0.00605154037475586,-0.329646110534668,0.170723915100098,0.0229471921920776,-0.415866851806641,0.269514560699463,0.0256234407424927,-0.437540054321289,0.259909629821777,0.0068666934967041,-0.353434562683105,0.277475833892822,0.0240838527679443,-0.255824089050293,0.328291654586792,0.0210464000701904,-0.0850362777709961,0.258634805679321,0.0130612850189209,0.00355052947998047,0.201249599456787,0.0189461708068848,0.0386104583740234,0.127920627593994,0.00530815124511719,0.050994873046875,0.102397203445435,0.012145459651947,0.0449333190917969,0.040884256362915,0.00200074911117554,0.0264787673950195,0.0292434692382813,0.00143510103225708,0.0217084884643555,0.110448837280273,0.021564245223999,0.0381650924682617,0.165137052536011,0.0363199710845947,0.0440025329589844,0.198148250579834,0.0513136386871338,0.0378808975219727,0.201098442077637,0.0288066864013672,0.0166292190551758,0.185127258300781,0.0102483034133911,-0.0133810043334961,0.190587520599365,-0.00922918319702148,-0.0637855529785156,0.242588520050049,-0.0653148889541626,-0.159163475036621,0.247251033782959,-0.0288717746734619,-0.224226951599121,0.0689969062805176,-0.00318300724029541,-0.273089408874512,0.0297422409057617,8.392333984375e-05,-0.11963939666748,0.0163331031799316,0.000384390354156494,-0.0535240173339844,0.00680637359619141,0.00193840265274048,-0.0337743759155273,0.00688457489013672,0.00114214420318604,-0.0135650634765625,0.0182156562805176,0.00880126655101776,-0.0140447616577148,0.0221033096313477,0.00809766352176666,-0.0282840728759766,0.0744905471801758,0.00708749890327454,-0.0490274429321289,0.108960151672363,0.00850477814674377,-0.0291824340820313,0.124290466308594,-0.000273227691650391,-0.00786876678466797,0.183624744415283,-0.00733697414398193,0.00388145446777344,0.131885528564453, -0.0210279822349548,0.00943088531494141,0.0979771614074707,0.0647347569465637,0.012598991394043,0.0859107971191406,0.0420075058937073,0.0135459899902344,0.0298558473587036,0.00723016262054443,0.0121135711669922,0.0177936553955078,0.000237077474594116,0.0140390396118164,0.239066362380981,-0.0176901817321777,0.00895023345947266,0.237991213798523,-0.0321437120437622,0.00878524780273438,0.0749275684356689,-0.0245360136032104,0.00254726409912109,0.0107104778289795,-0.00430947542190552,0.000360488891601563,0.0103861093521118,-0.00122860074043274,0.000390052795410156,0.110658168792725,-0.0130277872085571,0.00415229797363281,0.109701037406921,0.0416576266288757,0.00438690185546875,0.0632960796356201,0.026045560836792,0.00249862670898438,0.0798726081848145,0.0210157632827759,0.00307559967041016,0.0700716972351074,0.0304704904556274,0.00280094146728516,0.0584845542907715,0.0240632295608521,0.00235080718994141,0.0715188980102539,0.0815666913986206,0.00310325622558594,0.0225114822387695,0.0756710171699524,0.00113391876220703,-0.0200138092041016,0.0668308138847351,-0.000905513763427734,2.38418579101563e-06,-1.22189521789551e-06,0,0,-1.16229057312012e-06,0,-2.38418579101563e-06,-1.13248825073242e-06,0,2.38418579101563e-06,-1.13248825073242e-06,0,0.0406279563903809,-0.0100667476654053,-0.0183992385864258,0.0552353858947754,0.0131537914276123,-0.0195140838623047,0.145007610321045,-0.0158710479736328,0.00544261932373047,0.0801806449890137,0.0102994441986084,0.00306606292724609,0.11051869392395,-0.020923376083374,0.00404262542724609,0.0452847480773926,0.0173771381378174,0.00187873840332031,0.0458097457885742,0.0145988464355469,0.00185012817382813,0.233118057250977,-0.00167036056518555,0.00936508178710938,0.21418285369873,-0.0645043849945068,-0.0406532287597656,0.161038398742676,-0.0880333185195923,-0.00156593322753906,0.0701031684875488,-0.0269216299057007,0.0433931350708008,0,-1.19209289550781e-06,0,-2.86102294921875e-06,-1.19209289550781e-06,0,0,-1.19209289550781e-06,0,2.86102294921875e-06,-1.22189521789551e-06,0,-3.814697265625e-06, --1.27404928207397e-06,0,-0.00567293167114258,0.0775673985481262,9.72747802734375e-05,0.0197963714599609,0.0499762296676636,0.000940322875976563,0.0636119842529297,0.0398548245429993,0.00260734558105469,0.0590910911560059,0.0180896520614624,0.00233554840087891,0.0805466175079346,0.0224337577819824,0.00314140319824219,0.0872180461883545,0.0300605297088623,0.00339126586914063,0.071399450302124,0.0734748840332031,0.00300216674804688,0.0938503742218018,0.0383623838424683,0.00372505187988281,0.0577132701873779,-0.0066697746515274,0.00216579437255859,0.0115294456481934,-0.00135704874992371,0.000432968139648438,0.00011599063873291,-1.51991844177246e-05,3.814697265625e-06,0.0658905506134033,0.00966393947601318,0.00250530242919922,0.16734504699707,0.00797879695892334,0.00637054443359375,0.0751156806945801,0.0209629535675049,0.00299167633056641,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06, -0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06, -0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06, -0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,7.17639923095703e-05,3.09944152832031e-06,4.67300415039063e-05,0.0257148742675781,0.000463902950286865,0.0160846710205078,0.0926861763000488,0.0072779655456543,0.0483837127685547,0.155390739440918,0.00201785564422607,0.070404052734375,0.29344630241394,0.0338937044143677,0.0481891632080078,0.30637788772583,-0.00040435791015625,-0.0275583267211914,0.351467370986938,0.025180459022522,-0.15907096862793,0.36540699005127,0.00854885578155518,-0.344948768615723,0.363742351531982,0.0110155344009399,-0.469780921936035,0.338369369506836, -0.0225290060043335,-0.514941215515137,0.18055248260498,0.0312654972076416,-0.469051361083984,0.0892510414123535,0.0103706121444702,-0.365453720092773,0.0293307304382324,0.0019804835319519,-0.299956321716309,0.0449695587158203,-0.00594067573547363,0.0144062042236328,0.00570559501647949,-0.000830203294754028,0.00343036651611328,0.113539218902588,-0.0111568570137024,0.0209140777587891,0.138956546783447,-0.0116026103496552,0.0142955780029297,0.208453178405762,-0.0144858658313751,-0.00601863861083984,0.187669992446899,-0.000535920262336731,-0.0302619934082031,0.130633354187012,0.00658252835273743,-0.146069526672363,0.129236698150635,0.00711768865585327,-0.282761573791504,0.0567002296447754,0.00697898864746094,-0.245926856994629,-0.00708150863647461,-0.015288770198822,-0.226593017578125,-0.0309848785400391,-0.000244617462158203,-0.263739585876465,-0.0559554100036621,0,-0.18452262878418,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,8.10623168945313e-06,-3.03983688354492e-06,5.7220458984375e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,-0.058558464050293,0,0,-0.17643928527832,0.00276803970336914,0.000644445419311523,-0.175441741943359,0.00547885894775391,0.0013120174407959,-0.188865661621094,8.48770141601563e-05,1.54972076416016e-05,-0.194449424743652,0,0,-0.192206859588623,-0.0872402191162109,7.56978988647461e-06,-0.192206859588623,5.24520874023438e-06,4.05311584472656e-06,0,0,-3.03983688354492e-06,0,0.0122737884521484,-0.00113092362880707,0.000457763671875,0.0131425857543945, --0.001299649477005,0.000491142272949219,0.00882458686828613,-0.00153090059757233,0.00032806396484375,0.0192015171051025,-0.00154019892215729,0.000720024108886719,0.0138607025146484,0.00033886730670929,-0.0785455703735352,0.00478076934814453,0.0001392662525177,-0.176295280456543,0.00820493698120117,1.51991844177246e-06,-0.176238059997559,0.00127601623535156,0,-0.176407814025879,-0.106726169586182,6.13927841186523e-06,-0.17643928527832,-0.193301200866699,-0.00720059871673584,-0.023188591003418,0,-1.49011611938477e-06,0 - } - Normals: *4293 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, -0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, --1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, --0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, -0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603, -0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845, --0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763, --1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417, -0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729, --1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455, --0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917, -0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755, --1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449, --0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145, -0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322, --0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842, --0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038, -0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248, --0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295, -1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823, -0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.632933646440506,0.395189315080643,-0.627764709293842,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094, -0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769, --0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291, -0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, --0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365, --0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, --0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724, -0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026, --0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116, --0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725, --1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247, --0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874, --1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839, --0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931, --0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246, --0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629, --0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285, --1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.45670014619827,-0.404784709215164,-0.154245809651911,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224, -1.22639819979668,0.864633291959763,-0.881134361028671,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030775024, "Geometry::Eye_Left_Up", "Shape" { - Version: 100 - Indexes: *1433 { - a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485, -6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544,7545, -7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178, -8179,8182,8184,8185,8186,8187,8188,8189,8190,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *4299 { - a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.089337170124054,-0.00554847717285156,0.0207724571228027,0.182315468788147,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103086471557617,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966549873352,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.00541162490844727,0.0586265325546265,0.0198440551757813,-0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00215601921081543,0.0157150626182556,0.00160980224609375,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0190379619598389,0.199966490268707,-0.0269260406494141,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.00152707099914551,0.353335618972778,-0.103085517883301,-0.000825643539428711,0.376742601394653,-0.116958618164063,0.00203275680541992,0.350414991378784,-0.0986337661743164,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.0207724571228027,0.182315528392792,-0.0221233367919922,0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,0.00134897232055664,0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.0893371105194092,-0.00554847717285156,0.0207724571228027,0.182315647602081,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.000825643539428711,0.376742601394653, --0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103085517883301,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.00561618804931641,0.0023496150970459,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978596448898,0.0188179016113281,0.00159883499145508,0.0908813327550888,0.026524543762207,0.00166559219360352,0.112487778067589,0.0328731536865234,0.000680923461914063,0.108485396951437,0.0317630767822266,-0.000680446624755859,0.0882735997438431,0.0263462066650391,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.00268125534057617,0.0471039116382599,0.0145492553710938,-0.00215721130371094,0.02490234375,0.00716114044189453,-0.001190185546875,0.0142379999160767,0.00361347198486328,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.005615234375,0.0023493766784668,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978447437286,0.0188188552856445,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00166559219360352,0.112487852573395,0.0328731536865234,0.000680923461914063,0.108485400676727,0.0317630767822266,-0.000680446624755859,0.0882736146450043,0.0263462066650391,-0.00168085098266602,0.0699157416820526,0.020665168762207,-0.00268125534057617,0.0471038967370987,0.0145492553710938,-0.00215721130371094,0.0249023661017418,0.00716209411621094,-0.001190185546875,0.0142379105091095,0.00361251831054688,0.00134897232055664,0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.001190185546875,0.0142379105091095,0.00361347198486328,-0.00215721130371094,0.02490234375,0.00716209411621094,-0.00268077850341797,0.0471039116382599,0.0145492553710938,-0.00168085098266602,0.0699157640337944,0.020665168762207, --0.000680446624755859,0.0882736444473267,0.0263462066650391,0.000680923461914063,0.108485400676727,0.0317630767822266,0.00166559219360352,0.112487807869911,0.0328731536865234,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00224781036376953,0.0636978000402451,0.0188179016113281,0.0023493766784668,0.0375702530145645,0.0109281539916992,0.00262594223022461,0.0172897279262543,0.00561618804931641,-0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00511384010314941,0.0152137279510498,0.0203084945678711,0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.089337170124054,-0.00554847717285156,0.0207724571228027,0.182315468788147,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103086471557617,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966549873352,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.00541162490844727,0.0586265325546265,0.0198440551757813,-0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00215601921081543,0.0157150626182556,0.00160980224609375,-0.0105254650115967,0.0434127748012543,-0.000464439392089844,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.00152707099914551,0.353335559368134,-0.103085517883301,-0.000825643539428711,0.376742601394653,-0.116958618164063,0.00203275680541992,0.350415110588074,-0.0986337661743164,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.0207724571228027,0.182315528392792,-0.0221233367919922,0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,0.00134897232055664, -0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824653148651,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.0893371105194092,-0.00554847717285156,0.0207724571228027,0.182315587997437,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484035491943,-0.0725994110107422,0.00203275680541992,0.350414991378784,-0.0986337661743164,-0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103085517883301,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.00561618804931641,0.0023496150970459,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978596448898,0.0188179016113281,0.00159883499145508,0.0908813327550888,0.026524543762207,0.00166559219360352,0.112487778067589,0.0328731536865234,0.000680923461914063,0.108485396951437,0.0317630767822266,-0.000680446624755859,0.0882735997438431,0.0263462066650391,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.00268125534057617,0.0471039116382599,0.0145492553710938,-0.00215721130371094,0.02490234375,0.00716114044189453,-0.001190185546875,0.0142379999160767,0.00361347198486328,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.005615234375,0.0023493766784668,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978000402451,0.0188188552856445,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00166559219360352,0.112487822771072,0.0328731536865234,0.000680923461914063,0.108485400676727,0.0317630767822266,-0.000680446624755859,0.0882736444473267,0.0263462066650391,-0.00168085098266602,0.0699157416820526,0.020665168762207,-0.00268125534057617,0.0471038967370987,0.0145492553710938,-0.00215721130371094, -0.0249023586511612,0.00716209411621094,-0.001190185546875,0.0142379030585289,0.00361251831054688,0.00134897232055664,0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.001190185546875,0.0142379105091095,0.00361347198486328,-0.00215721130371094,0.02490234375,0.00716209411621094,-0.00268077850341797,0.0471039079129696,0.0145492553710938,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.000680446624755859,0.0882736593484879,0.0263462066650391,0.000680923461914063,0.108485378324986,0.0317630767822266,0.00166559219360352,0.112487807869911,0.0328731536865234,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00224781036376953,0.0636978149414063,0.0188179016113281,0.0023493766784668,0.0375702530145645,0.0109281539916992,0.00262594223022461,0.0172897279262543,0.00561618804931641,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,-0.00490435818210244,0.0584185123443604,0.000736236572265625,-8.69575378601439e-05,0.112455129623413,0.000485420227050781,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,-6.22060470050201e-05,0.0804512500762939,0.000347137451171875,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,-0.000254413869697601,0.00131130218505859,-0.000378608703613281,0,0.0500063896179199,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06, -0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0, --7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06, -0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06, -0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06, -0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06, -0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, -0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,-0.0229835510253906,0.108558654785156,-0.00851726531982422,-0.0272183418273926,0.207606196403503,-0.0364656448364258,-0.0140557289123535,0.287662386894226,-0.0913305282592773,0.000494956970214844,0.353499531745911,-0.149645805358887,-0.00197863578796387,0.384345054626465,-0.160956382751465,0.0097804069519043,0.341617822647095,-0.0907707214355469,0.0343132019042969,0.271619081497192,-0.0584993362426758,0.0182085037231445,0.21390688419342,-0.0273571014404297,0.0123066902160645,0.0922927856445313,-0.00557327270507813,0.00175285339355469,0.375501990318298,-0.127015113830566,0.00374102592468262,0.041577160358429,0.011561393737793, -0.00382757186889648,0.0799316465854645,0.0214080810546875,0.00574183464050293,0.00979766249656677,0.00573348999023438,-0.01180100440979,0.0292496085166931,-0.00340080261230469,0.00243163108825684,0.119226068258286,0.030548095703125,0.00235915184020996,0.150872811675072,0.0383310317993164,6.81877136230469e-05,0.141830459237099,0.036773681640625,-0.00219440460205078,0.109797656536102,0.0297889709472656,-0.00316810607910156,0.0876602232456207,0.023895263671875,-0.0051722526550293,0.0581252574920654,0.0171747207641602,-0.00331211090087891,0.024243175983429,0.00723648071289063,-0.00261068344116211,0.00842589139938354,0.00366020202636719,0.00647449493408203,0.0431656241416931,-0.00140380859375,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0246649980545044,0.246665000915527,0.00303173065185547,-0.00334277749061584,0.456263422966003,0.0108251571655273,-0.154863953590393,0.703448176383972,0.137066841125488,-0.109751880168915,0.378051519393921,0.0480270385742188,-0.137885212898254,0.523767709732056,0.0637903213500977,-0.191741824150085,0.490942001342773,-0.00625991821289063,-0.00177502632141113,0.590751647949219,0.0753660202026367,0.00606799125671387,0.55527925491333,0.00229835510253906,0.0103864669799805,0.47050952911377,-0.0252504348754883,0.0473291873931885,0.452560424804688,-0.0395317077636719,0.107317447662354,0.126441240310669,-0.0330076217651367,0.0490045547485352,0.334876775741577,-0.0190849304199219,0, --5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,-0.000286787748336792,0.270729660987854,0.00114631652832031,-0.0226919651031494,0.109617352485657,-0.00602340698242188,-0.0693250894546509,0.558444738388062,0.0153436660766602,-0.0296266078948975,0.571545124053955,0.108798027038574,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, -0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.00152707099914551,0.353335618972778,-0.103086471557617,-0.000825643539428711,0.376742720603943,-0.116958618164063,0.00203275680541992,0.350415229797363,-0.0986337661743164, -0.00718212127685547,0.302484154701233,-0.0725994110107422,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.0207724571228027,0.182315468788147,-0.0221233367919922,0.0106840133666992,0.089337170124054,-0.00554847717285156,0.00594902038574219,0.0447372794151306,-0.00125312805175781,0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.001190185546875,0.0142379999160767,0.00361251831054688,-0.00215721130371094,0.02490234375,0.00716114044189453,-0.00268077850341797,0.0471038818359375,0.0145492553710938,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.000680446624755859,0.0882736295461655,0.0263462066650391,0.000680923461914063,0.108485400676727,0.0317630767822266,0.00166559219360352,0.112533560954034,0.0328731536865234,0.00159883499145508,0.0908813327550888,0.026524543762207,0.00224804878234863,0.0636978000402451,0.0188179016113281,0.0023496150970459,0.0375702083110809,0.0109281539916992,0.00262618064880371,0.0172897279262543,0.00561618804931641,-0.00215601921081543,0.0157150030136108,0.00160980224609375,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.00358390808105469,0.0276260375976563,0.00311565399169922,-0.000456571578979492,0.0215805172920227,0.00531768798828125,0.000558376312255859,0.0313613787293434,0.0100059509277344,0.000854730606079102,0.0459472741931677,0.0157155990600586,0.000890493392944336,0.0594192519783974,0.0207805633544922,0.00107145309448242,0.0698196664452553,0.0249290466308594,0.00102090835571289,0.0688781663775444,0.0246143341064453,0.000574111938476563,0.0594909638166428,0.0211057662963867,-8.96453857421875e-05,0.0473694130778313,0.0164384841918945,-0.000590801239013672,0.0332931578159332,0.0112724304199219,-0.000636577606201172,0.0219604671001434,0.00639247894287109,0.000194072723388672,0.016680896282196,0.00312709808349609,0.0021357536315918,0.0235031247138977,0.00108718872070313,0.00487947463989258,0.041851818561554,-0.00106239318847656,0.00759124755859375,0.0735153555870056,-0.00502490997314453,0.0081634521484375,0.164313793182373,-0.0167045593261719, -0.00613927841186523,0.24040162563324,-0.0340747833251953,0.00288772583007813,0.257696390151978,-0.053257942199707,0.000299453735351563,0.325610280036926,-0.0685253143310547,-0.00104475021362305,0.340882778167725,-0.0779905319213867,-0.00197219848632813,0.327918887138367,-0.0687875747680664,-0.0057682991027832,0.291744232177734,-0.0416946411132813,-0.01004958152771,0.204445838928223,-0.0181217193603516,-0.0109395980834961,0.091583251953125,-0.00472450256347656,-0.00765681266784668,0.0476394891738892,0.00145149230957031,-0.00471532344818115,0.034954845905304,3.33786010742188e-05,-0.00605249404907227,0.0652878284454346,-0.00660610198974609,-0.00448155403137207,0.0933593511581421,0.020319938659668,-0.00531435012817383,0.132469296455383,0.00202846527099609,-0.00429344177246094,0.160261631011963,-0.018157958984375,-0.00195860862731934,0.179245471954346,-0.0314254760742188,-0.00404453277587891,0.148461580276489,-0.0272750854492188,-0.00444650650024414,0.132002234458923,-0.0164871215820313,-0.00200700759887695,0.107638597488403,-0.0372381210327148,0.00069427490234375,0.0771942138671875,-0.020167350769043,0.00242185592651367,0.0480575561523438,-0.00778484344482422,0.00230503082275391,0.0304046869277954,-0.00259780883789063,0.00143051147460938,0.0174270868301392,0.000502586364746094,0.000823020935058594,0.0133453607559204,0.0028839111328125,0.000825881958007813,0.0161071866750717,0.00625228881835938,0.00110626220703125,0.0198150649666786,0.00937938690185547,0.00169134140014648,0.0300872921943665,0.0150079727172852,0.00193500518798828,0.0374038517475128,0.0191936492919922,0.00168800354003906,0.0427886843681335,0.0220518112182617,0.00104331970214844,0.0440613031387329,0.0225696563720703,0.000339508056640625,0.0382537841796875,0.0189647674560547,-8.72611999511719e-05,0.0307205021381378,0.0146484375,-0.000461101531982422,0.023152157664299,0.00980377197265625,-0.00125837326049805,0.0197219848632813,0.00579357147216797,-0.00271117687225342,0.0221481025218964,0.00260639190673828,-0.08687424659729,0.509587526321411,0.10395336151123, --0.146368622779846,0.498939990997314,0.055079460144043,-0.0327569246292114,0.444639205932617,-0.00915050506591797,-0.00209164619445801,0.056284487247467,-0.000683784484863281,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0.000103950500488281,0.000472068786621094,-8.58306884765625e-06,0.0344047546386719,0.210867881774902,-0.0122623443603516,0.0315563678741455,0.444688558578491,0.00304508209228516,-0.0296940803527832,0.507054805755615,0.0551080703735352,-0.0460715293884277,0.337499141693115,-0.0439329147338867,0.0221738815307617,0.31860089302063,-0.0515708923339844,0.0225749015808105,0.194423675537109,-0.0497236251831055,0.000167369842529297,0.0625293254852295,-0.0184745788574219,0,0.0660445690155029,-0.0184612274169922,0,0.0660582780838013,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-0.00201606750488281,0.0542576313018799,-0.000658988952636719,-0.113526344299316,0.178548812866211,-0.0131702423095703,-0.0675196647644043,0.282259106636047,-0.0125761032104492,-0.0391246676445007,0.185465097427368,-0.0582218170166016,-0.0527400970458984,0.188737392425537,-0.0711154937744141,-0.0569877624511719,0.17251443862915,-0.0540847778320313,-0.0293891429901123,0.231223821640015,-0.0753583908081055,-0.00630688667297363,0.115139007568359,-0.0435619354248047,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06, -0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06, -0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0, -0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.100006103515625,0,0,0.100006103515625,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0500001907348633,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0, -0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.31401824951172e-05,7.93933868408203e-05,-6.67572021484375e-06,-0.0111274719238281,0.0280670523643494,-0.00357913970947266,-0.0220537185668945,0.105113208293915,-0.00862216949462891,-0.026519775390625,0.215512752532959,-0.0343732833862305,-0.0142712593078613,0.302361130714417,-0.0845785140991211,0.000134944915771484,0.376999497413635,-0.137645721435547,-0.00103354454040527,0.418821334838867,-0.146785736083984,0.0029139518737793,0.409454941749573,-0.114259719848633,0.010528564453125,0.3746018409729,-0.0822439193725586,0.0158753395080566,0.297749400138855,-0.0548686981201172,0.0179834365844727,0.207919239997864,-0.0261011123657227,0.0119132995605469,0.0897766351699829,-0.00549793243408203,0.00624799728393555,0.0419510006904602,-0.00141334533691406,0.00368404388427734,0.040069580078125,0.0109777450561523,0.00557565689086914,0.00945892930030823,0.00550460815429688,0.00386810302734375,0.0768585503101349,0.0200071334838867,0.00251674652099609,0.114495843648911,0.0282278060913086,0.00223827362060547,0.144746407866478,0.0352497100830078,-0.000264644622802734,0.136624127626419,0.0338764190673828,-0.00255155563354492,0.106455981731415,0.0277719497680664,-0.00343847274780273,0.0851318836212158,0.0224676132202148,-0.00516510009765625,0.0559524297714233,0.0162391662597656,-0.00321483612060547,0.0235977172851563,0.00705528259277344,-0.00249433517456055,0.00820314884185791,0.00362396240234375,0,-1.49011611938477e-06, -0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.09944152832031e-06,0.0590249300003052,0,0,0.170155763626099,0,0,0.251310229301453,0,0,0.281938791275024,0,0,0.281935691833496,0,0,0.28193724155426,0,0,0.234009504318237,0,0,0.211369156837463,0,0,0.139455080032349,0,0,0.0718922019004822,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,1.06841325759888e-05,4.76837158203125e-06,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4299 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, -0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, --1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, --0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, -0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051, --0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962, --0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851, --1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479, -0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359, -0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703, --0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204, -0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909, -0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764, --1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297, -0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772, --0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344, -0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593, -0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161, --0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238, -1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738, -1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295, -0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769, --0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291, -0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, --0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365, --0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, --0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724, -0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026, --0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142, --0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215, --1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931, --0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806, --0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385, --0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058, -0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606, -0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576, -0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105, -1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044, --0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.22639819979668,0.864633291959763,-0.881134361028671,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030771568, "Geometry::Eye_Left_Down", "Shape" { - Version: 100 - Indexes: *1429 { - a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485, -6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544,7545, -7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182, -8184,8185,8186,8187,8188,8189,8190,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 - } - Vertices: *4287 { - a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000557422637939453,-0.0152435302734375,-0.00279998779296875,7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882,0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.480979561805725,0.13865852355957,-0.00423359870910645,-0.351379334926605,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0141469240188599,-0.0298134088516235,0.0185604095458984,0.00112724304199219,-0.0158247947692871,-0.00244331359863281,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.00174903869628906,-0.48097962141037,0.13865852355957,0.0076596736907959,-0.516691148281097,0.135008811950684,0.011866569519043,-0.491652429103851,0.0999355316162109,0.00965499877929688,-0.43150407075882,0.0530052185058594,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00244855880737305,-0.213907301425934,-0.00314903259277344,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000416278839111328,-0.11182028055191,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882, -0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.48097962141037,0.13865852355957,-0.00423359870910645,-0.35137939453125,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.00112748146057129,-0.0158248245716095,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534191131592,-0.0131378173828125,-0.00699329376220703,-0.0618515014648438,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00181961059570313,-0.110366828739643,-0.038330078125,0.0057673454284668,-0.106037903577089,-0.0383234024047852,0.0084538459777832,-0.0857223197817802,-0.0327425003051758,0.00986433029174805,-0.0639732033014297,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550664901733,-0.00519371032714844,0.00112724304199219,-0.0158248543739319,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534340143204,-0.0131378173828125,-0.00699329376220703,-0.0618514865636826,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00181961059570313,-0.110366821289063,-0.038330078125,0.0057673454284668,-0.106037884950638,-0.0383234024047852,0.0084538459777832,-0.0857223570346832,-0.0327425003051758,0.00986433029174805,-0.0639732182025909,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550664901733,-0.00519466400146484,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.00285625457763672,-0.0136550664901733,-0.00519466400146484,0.00494718551635742, --0.0237579345703125,-0.00962543487548828,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00986433029174805,-0.0639731958508492,-0.0230445861816406,0.0084538459777832,-0.0857223272323608,-0.0327425003051758,0.0057673454284668,-0.106037884950638,-0.0383234024047852,-0.00181961059570313,-0.11036679148674,-0.038330078125,-0.00543522834777832,-0.0888824537396431,-0.0306100845336914,-0.00699329376220703,-0.0618515238165855,-0.0219583511352539,-0.0060875415802002,-0.0360534191131592,-0.0131378173828125,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,-0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000557422637939453,-0.0152435302734375,-0.00279998779296875,7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882,0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.480979561805725,0.13865852355957,-0.00423359870910645,-0.351379334926605,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0141469240188599,-0.0298134088516235,0.0185604095458984,0.00112724304199219,-0.0158247947692871,-0.00244331359863281,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.00174903869628906,-0.480979681015015,0.13865852355957,0.0076596736907959,-0.516691148281097,0.135008811950684,0.011866569519043,-0.491652429103851,0.0999355316162109,0.00965499877929688,-0.43150407075882,0.0530052185058594,0.00641536712646484, --0.353680908679962,0.0443191528320313,0.00244855880737305,-0.213907301425934,-0.00314903259277344,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000416278839111328,-0.11182028055191,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882,0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.48097962141037,0.13865852355957,-0.00423359870910645,-0.35137939453125,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.00112748146057129,-0.0158248245716095,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534191131592,-0.0131378173828125,-0.00699329376220703,-0.0618515014648438,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00181961059570313,-0.110366828739643,-0.038330078125,0.0057673454284668,-0.106037903577089,-0.0383234024047852,0.0084538459777832,-0.0857223197817802,-0.0327425003051758,0.00986433029174805,-0.0639732033014297,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550664901733,-0.00519371032714844,0.00112724304199219,-0.0158248543739319,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534340143204,-0.0131378173828125,-0.00699329376220703,-0.0618515312671661,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625, --0.0306100845336914,-0.00181961059570313,-0.110366821289063,-0.038330078125,0.0057673454284668,-0.10603791475296,-0.0383234024047852,0.0084538459777832,-0.0857223272323608,-0.0327425003051758,0.00986433029174805,-0.0639732182025909,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550739407539,-0.00519466400146484,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.00285625457763672,-0.0136550664901733,-0.00519466400146484,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00751304626464844,-0.0452880598604679,-0.0185632705688477,0.00986433029174805,-0.0639731884002686,-0.0230445861816406,0.0084538459777832,-0.0857223123311996,-0.0327425003051758,0.0057673454284668,-0.106037892401218,-0.0383234024047852,-0.00181961059570313,-0.110366821289063,-0.038330078125,-0.00543522834777832,-0.088882464915514,-0.0306100845336914,-0.00699329376220703,-0.0618515089154243,-0.0219583511352539,-0.0060875415802002,-0.0360534116625786,-0.0131378173828125,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,-0.0499999523162842,0,0,-0.0499939918518066,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06, -0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06, -0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06, -0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06, -0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06, -0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06, -0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06, -0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0.0191645622253418,-0.125084578990936,4.9591064453125e-05,0.0165534019470215,-0.257076680660248,0.046295166015625,0.00422120094299316,-0.426436960697174,0.114619255065918,-0.00702023506164551,-0.544161915779114,0.16934871673584,0.0083315372467041,-0.576777756214142,0.165057182312012,0.00770854949951172,-0.458649933338165,0.056675910949707,0.00443410873413086,-0.376652419567108,0.0436382293701172,0.000653743743896484,-0.277825951576233, --0.00839424133300781,-0.000598430633544922,-0.119400441646576,-0.00846767425537109,0.0125722885131836,-0.533011376857758,0.11861515045166,-0.00862360000610352,-0.039508044719696,-0.0143470764160156,-0.0107743740081787,-0.0773254185914993,-0.0262718200683594,-0.00820565223693848,-0.00790253281593323,-0.00690746307373047,0.0118691921234131,-0.0319076180458069,0.00249385833740234,-0.00865936279296875,-0.116445906460285,-0.0377359390258789,-0.00370097160339355,-0.147833228111267,-0.0485076904296875,0.00942730903625488,-0.138458237051964,-0.0479660034179688,0.0127339363098145,-0.106282025575638,-0.0392827987670898,0.0123934745788574,-0.0843368470668793,-0.0317935943603516,0.0111179351806641,-0.0555984675884247,-0.0223064422607422,0.00623226165771484,-0.022753894329071,-0.00963211059570313,0.00362730026245117,-0.00764161348342896,-0.00446796417236328,0.000436782836914063,-0.0446792244911194,-0.00568962097167969,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-6.52670860290527e-06,-0.00385260581970215,-1.71661376953125e-05,-0.000580698251724243,-0.00824034214019775,-2.19345092773438e-05,-0.0117418766021729,-0.16671621799469,-0.000441551208496094,-0.000373780727386475,-0.138628959655762,-0.000613212585449219,0.0117788314819336,-0.206770181655884,-0.00222301483154297,0.0296263694763184,-0.188898086547852,-0.00255203247070313,0.042130708694458,-0.250246286392212,-0.00860118865966797,0.0418314933776855,-0.176600694656372, --0.0030670166015625,0.0432720184326172,-0.151551485061646,-0.00738811492919922,0.0383427143096924,-0.222984313964844,-0.00935173034667969,0.00338983535766602,-0.167868852615356,-0.00711345672607422,0.0198945999145508,-0.0924186706542969,-0.00468349456787109,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,-0.000568151473999023,-0.00806033611297607,-2.09808349609375e-05,0.0628702640533447,-0.210161447525024,-0.00443077087402344,0.0167453289031982,-0.231987714767456,-0.00416755676269531,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06, -0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0106139183044434,-0.213683724403381,0.0355854034423828, --0.00423359870910645,-0.351379334926605,0.0896282196044922,-0.00174903869628906,-0.480979561805725,0.13865852355957,0.0076596736907959,-0.516691088676453,0.135008811950684,0.011866569519043,-0.491652309894562,0.0999355316162109,0.00965499877929688,-0.43150407075882,0.053004264831543,0.00641536712646484,-0.353680968284607,0.0443191528320313,0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000557422637939453,-0.0152435302734375,-0.00279998779296875,0.00285625457763672,-0.0136550664901733,-0.00519561767578125,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00751304626464844,-0.0452880859375,-0.0185632705688477,0.00871515274047852,-0.0675506591796875,-0.0262365341186523,0.0084538459777832,-0.0857223346829414,-0.0327425003051758,0.0057673454284668,-0.106037899851799,-0.0383234024047852,-0.00181961059570313,-0.110321038402617,-0.038330078125,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00699329376220703,-0.0618514865636826,-0.0219583511352539,-0.0060875415802002,-0.0360534489154816,-0.0131378173828125,-0.00487399101257324,-0.0161117613315582,-0.00691032409667969,0.00112724304199219,-0.0158249139785767,-0.00244331359863281,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.00187087059020996,-0.0277328491210938,-0.00473880767822266,-0.00128746032714844,-0.0211288332939148,-0.00659275054931641,-0.00291347503662109,-0.0305130034685135,-0.0114994049072266,-0.00334739685058594,-0.0448425188660622,-0.0173091888427734,-0.00237441062927246,-0.0581802278757095,-0.0223617553710938,-0.00032496452331543,-0.0683944374322891,-0.0268135070800781,0.00235128402709961,-0.0673828125,-0.0272741317749023,0.00393962860107422,-0.0579864457249641,-0.0243015289306641,0.00445699691772461,-0.0459991171956062,-0.0195913314819336,0.00391054153442383,-0.0322280824184418,-0.0139694213867188,0.00293302536010742,-0.0212524235248566,-0.00861263275146484,0.00165700912475586,-0.016369640827179, --0.00518131256103516,0.000564098358154297,-0.0235702395439148,-0.00437831878662109,-8.82148742675781e-05,-0.042285144329071,-0.00474929809570313,6.43730163574219e-05,-0.0741744637489319,-0.00485515594482422,0.00319194793701172,-0.188803791999817,0.0233917236328125,0.0071415901184082,-0.279118776321411,0.0496578216552734,0.0098423957824707,-0.36152195930481,0.0690212249755859,0.00989532470703125,-0.428463101387024,0.0898170471191406,0.00661206245422363,-0.46946108341217,0.0869722366333008,0.00178408622741699,-0.435204982757568,0.0762434005737305,0.00174069404602051,-0.322332978248596,0.0442295074462891,0.00500082969665527,-0.177214503288269,0.00792407989501953,0.00705790519714355,-0.0926971435546875,-0.00158786773681641,0.00539016723632813,-0.0483230352401733,-0.00421810150146484,0.00295746326446533,-0.0353729128837585,-0.00200176239013672,0.00321483612060547,-0.0660598278045654,0.00277805328369141,0.00125360488891602,-0.0946289300918579,0.0371036529541016,-0.000171661376953125,-0.126208424568176,0.0536413192749023,0.00149178504943848,-0.19132673740387,0.0718708038330078,0.00674843788146973,-0.205310940742493,0.116900444030762,0.0113058090209961,-0.193929314613342,0.112403869628906,0.0128793716430664,-0.177929043769836,0.100587844848633,0.010322093963623,-0.109509229660034,0.0487117767333984,0.00585556030273438,-0.07806396484375,0.0336751937866211,0.00178766250610352,-0.048469603061676,0.000369071960449219,0.0002899169921875,-0.0306609869003296,-0.00276660919189453,-2.57492065429688e-05,-0.0174392461776733,-0.00375843048095703,0.000283718109130859,-0.0131438970565796,-0.00510883331298828,0.000630378723144531,-0.0156768709421158,-0.00828647613525391,0.000720024108886719,-0.0192474201321602,-0.0112266540527344,0.000934123992919922,-0.0292693972587585,-0.0170164108276367,0.000777244567871094,-0.0364944636821747,-0.0208749771118164,0.000343799591064453,-0.0418670773506165,-0.0231542587280273,-0.00043487548828125,-0.0431579351425171,-0.0231838226318359,-0.0010840892791748,-0.0374755859375,-0.0195121765136719,-0.00136923789978027, --0.0300247371196747,-0.0153970718383789,-0.00108027458190918,-0.022624209523201,-0.0107765197753906,-0.000132322311401367,-0.0194320641458035,-0.00695133209228516,0.00140392780303955,-0.0222244262695313,-0.00390911102294922,0.0333895683288574,-0.191328883171082,-0.0201625823974609,0.00441551208496094,-0.169866681098938,-0.0175151824951172,-0.000931024551391602,-0.0132135152816772,-3.52859497070313e-05,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,-0.00822925567626953,-0.108883857727051,-0.0105037689208984,0.0246572494506836,-0.162688732147217,-0.0220460891723633,0.05692458152771,-0.196503162384033,-0.0225763320922852,0.00115275382995605,-0.00273442268371582,-0.000508308410644531,-0.000392913818359375,-0.00357317924499512,-0.000339508056640625,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0.000145435333251953,-0.000645995140075684,-9.63211059570313e-05,0,-0.100005865097046,0,0,-0.100004434585571,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999951362609863,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06, -0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06, -0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999937057495117, -0,0,-0.0999937057495117,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06, -0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,3.29017639160156e-05,-8.84532928466797e-05,5.7220458984375e-06,0.0111849308013916,-0.0306182503700256,0.00272750854492188,0.0184440612792969,-0.121572017669678,0.000260353088378906,0.0163445472717285,-0.237301707267761,0.0329160690307617,0.0048067569732666,-0.405415177345276,0.0750932693481445,-0.00640010833740234,-0.51403397321701,0.108180999755859,0.00716185569763184,-0.535477042198181,0.103034973144531,0.010465145111084,-0.476750791072845,0.0643882751464844,0.00588798522949219,-0.412103235721588,0.0458545684814453,0.00331544876098633,-0.360806167125702,0.0175142288208008,4.10079956054688e-05,-0.266052424907684,-0.00919628143310547,-0.000714302062988281,-0.0928317308425903,-0.00841236114501953,0.000329017639160156,-0.0433914065361023,-0.00564098358154297,-0.00834178924560547,-0.0380859375,-0.0137662887573242,-0.0079197883605957,-0.00763091444969177,-0.00670337677001953,-0.0105183124542236,-0.0743560492992401,-0.0248041152954102,-0.00850081443786621,-0.11189877986908,-0.0351934432983398,-0.00352954864501953,-0.141950964927673,-0.0450172424316406,0.0094139575958252,-0.133486956357956,-0.044764518737793,0.012753963470459,-0.103092938661575,-0.0370893478393555,0.0123543739318848,-0.0819518864154816,-0.0302667617797852,0.0108718872070313,-0.0536600947380066,-0.0212211608886719,0.00600862503051758,-0.0221481323242188,-0.00945186614990234,0.00346231460571289,-0.00745236873626709,-0.00443553924560547,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06, -0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,3.33786010742188e-06,-3.03983688354492e-06,1.9073486328125e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,-4.76837158203125e-06,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4287 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, -0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, --1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, --0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, -0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051, --0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962, --0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851, --1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479, -0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359, -0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703, --0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204, -0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909, -0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764, --1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297, -0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772, --0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344, -0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593, -0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161, --0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238, -1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738, -1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295, -0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769, --0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291, -0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, --0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365, --0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, --0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724, -0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026, --0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575, --0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725, --1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247, --0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874, --1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839, --0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571, -0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124, -0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689, --0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854, --1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373, -0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030773296, "Geometry::Eye_Right_Blink", "Shape" { - Version: 100 - Indexes: *1460 { - a: 4,39,40,45,70,72,73,98,99,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,405,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,563,3208,3212,3215,3221,3224,4174,4212,4213,4214,4215,4667,4992,5867,5875,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447, -6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6802,6803,6804,6805,6806,6807,6808,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474, -7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142, -8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8755,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *4380 { - a: -0.00168840959668159,0,0,-0.00984275341033936,0.0014185905456543,-0.0127344131469727,-0.00297075510025024,0.000523567199707031,-0.00387859344482422,0.00100362300872803,-0.000124454498291016,0.00149679183959961,-0.00118720903992653,0,0,-0.00675380229949951,0.00101900100708008,-0.00865650177001953,-0.0012824535369873,0.000151157379150391,-0.00148963928222656,-8.75294208526611e-05,0.0262999534606934,0,-8.82148742675781e-05,0.0144534111022949,0,-0.00675362348556519,0.00101900100708008,-0.00875234603881836,-0.00128239393234253,0.0132813453674316,-0.00149679183959961,-0.00457102060317993,0.00100231170654297,-0.00577354431152344,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00358819961547852,-0.0769793391227722,-0.0126619338989258,-0.0244507789611816,-0.175540030002594,-0.0646982192993164,0.0218987464904785,-0.537538945674896,-0.0882892608642578,0.0230975151062012,-0.769942820072174,-0.0740146636962891,-0.0361833572387695,-0.858754396438599,0.0111770629882813,-0.0472183227539063,-0.982832670211792,0.0331611633300781,-0.0491397380828857,-1.08145761489868,0.056330680847168,-0.0441849231719971,-1.0831526517868,0.0576028823852539,-0.512169599533081,-0.965107917785645,-0.0337409973144531,0.155428886413574,-0.578757584095001,-0.201613426208496,-0.0547187328338623,-0.298291444778442,0.00206947326660156,-0.0389173030853271,-0.0977756083011627,0.0240745544433594,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.032780647277832,-0.160450369119644,-0.000295639038085938,-0.0546555519104004,-0.356360077857971,-0.00198650360107422,-0.0703508853912354,-0.626972615718842,0.0155954360961914,-0.0671441555023193,-0.894608676433563,0.0327558517456055,-0.0496175289154053,-1.08584415912628,0.0218677520751953,-0.0288047790527344,-1.08314323425293,-0.0128793716430664,-0.0271816253662109,-0.954351663589478,-0.0837669372558594,0.00526714324951172,-0.790514469146729,-0.0908432006835938,0.00865554809570313,-0.620952308177948,-0.125743865966797, -0.0264496803283691,-0.368094205856323,-0.135475158691406,0.0226020812988281,-0.208823055028915,-0.115944862365723,0.0389270782470703,-0.137027770280838,-0.0579833984375,0.000884056091308594,-0.0108398497104645,-0.000719070434570313,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00490427017211914,-0.0891427993774414,-0.0122623443603516,-0.0220603942871094,-0.198800206184387,-0.0688571929931641,-0.0528545379638672,-0.476084202528,-0.0494527816772461,-0.0453777313232422,-0.6925950050354,-0.00772857666015625,-0.0364518165588379,-0.850202083587646,0.0101642608642578,-0.0481338500976563,-0.983209252357483,0.037602424621582,-0.0499575138092041,-1.08139753341675,0.0589437484741211,-0.0442349910736084,-1.08369696140289,0.0584983825683594,-0.0671918392181396,-0.894178867340088,0.0338821411132813,-0.0705699920654297,-0.624351382255554,0.0164661407470703,-0.0547049045562744,-0.354735434055328,0.000637054443359375,-0.032780647277832,-0.160450369119644,-0.000295639038085938,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.0609581470489502,0.0352079570293427,0.187995910644531,-0.0470197200775146,0.237833827733994,-0.0594625473022461,-0.0136327743530273,0.298582762479782,-0.051243782043457,0.0191915035247803,0.277715243399143,-0.0421037673950195,0.0207672119140625,0.196598827838898,0.0683212280273438,-0.0213425159454346,0.219815544784069,0.0630502700805664,-0.010951042175293,0.217465281486511,0.0562944412231445,0.000445365905761719,0.190029501914978,0.0493602752685547,0.00952959060668945,0.156094193458557,0.0419826507568359,0.00745296478271484,0.077526867389679,0.0218887329101563,0.00565242767333984,0.0358172655105591,0.011347770690918,-0.0367529392242432,0.000832945108413696,0.00252914428710938,-0.0494046211242676,0.070903405547142,0.0177621841430664,0.0257585048675537,0.163810864090919,0.0231914520263672,0.0178329944610596,0.184557631611824,0.0453577041625977,0.0256650447845459,0.234229236841202,0.0448799133300781,0.0207691192626953,0.254496991634369,0.0606479644775391,-0.022613525390625,0.265651524066925, -0.0310649871826172,-0.0122213363647461,0.310270369052887,-0.0122919082641602,-0.000825881958007813,0.298430919647217,-0.01922607421875,0.0105600357055664,0.269753575325012,-0.0241279602050781,0.0487661361694336,0.238443367183208,-0.0187444686889648,0.0182666778564453,0.153886556625366,0.0003814697265625,0.00854206085205078,0.0186165273189545,0.0586395263671875,0.00773286819458008,-0.00297999382019043,0.0135889053344727,0.0222549438476563,0.0918516516685486,-0.0103788375854492,0.0164384841918945,0.142634898424149,-0.0246381759643555,0.0362467765808105,0.215277284383774,-0.0750608444213867,-0.000824928283691406,0.259828560054302,-0.01922607421875,-0.0122218132019043,0.287264347076416,-0.0122919082641602,-0.0226130485534668,0.265651524066925,0.0310649871826172,0.0207691192626953,0.227679073810577,0.0526962280273438,0.0256650447845459,0.207411587238312,0.0369291305541992,0.0175678730010986,0.183445997536182,0.0379095077514648,0.0273518562316895,0.145345225930214,-0.00228404998779297,-0.021221399307251,0.0580994486808777,-0.011016845703125,-0.00871849060058594,-0.0167021751403809,-0.0262508392333984,0.00613653659820557,0.0182564854621887,0.0243701934814453,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00358819961547852,-0.0769793391227722,-0.0126619338989258,-0.024446964263916,-0.169486105442047,-0.0646982192993164,0.439456462860107,-0.678084373474121,0.252486228942871,-0.0454459190368652,-0.717539012432098,-0.00773525238037109,-0.0361833572387695,-0.858754515647888,0.0111770629882813,-0.0472183227539063,-0.982832670211792,0.0331611633300781,-0.0491397380828857,-1.08145785331726,0.056330680847168,-0.0614516735076904,-1.10238456726074,-0.0513820648193359,-0.945381879806519,-0.941291332244873,-0.0497703552246094,-1.66557860374451,-0.68113112449646,-0.0754938125610352,-0.0546555519104004,-0.298909664154053,-0.00198650360107422,-0.0389173030853271,-0.0977756083011627,0.0240745544433594,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.00869870185852051,-0.0160052180290222,0.00252914428710938, --0.0329468250274658,-0.154467031359673,-0.000295639038085938,-0.0546555519104004,-0.356360077857971,-0.00198650360107422,-0.0709989070892334,-0.62511020898819,0.00778675079345703,-0.0672264099121094,-0.894297003746033,0.024907112121582,-0.0495243072509766,-1.08626401424408,0.0203657150268555,-0.0288047790527344,-1.08314323425293,-0.0128793716430664,-0.0271816253662109,-0.954351663589478,-0.0837669372558594,0.00526714324951172,-0.790514469146729,-0.0908432006835938,0.00865554809570313,-0.620952308177948,-0.125743865966797,0.0264496803283691,-0.368094205856323,-0.135475158691406,0.0226020812988281,-0.208823069930077,-0.115944862365723,0.0389270782470703,-0.137027770280838,-0.0579833984375,0.000884056091308594,-0.0108398497104645,-0.000719070434570313,0.000884056091308594,-0.0108398497104645,-0.000719070434570313,-0.00490427017211914,-0.0891428291797638,-0.0122623443603516,-0.0220603942871094,-0.198800176382065,-0.0688571929931641,-0.0527534484863281,-0.455540657043457,-0.0494451522827148,-0.0449533462524414,-0.672406315803528,-0.006927490234375,-0.0361003875732422,-0.843256831169128,0.00669956207275391,-0.0476107597351074,-0.981390833854675,0.0323114395141602,-0.0495254993438721,-1.08106279373169,0.0544929504394531,-0.0442583560943604,-1.08296310901642,0.058110237121582,-0.0669772624969482,-0.893133699893951,0.0344524383544922,-0.0707616806030273,-0.623941123485565,0.0128679275512695,-0.0547895431518555,-0.354333341121674,-0.00199985504150391,-0.032780647277832,-0.160450369119644,-0.000295639038085938,-0.00871551036834717,-0.00712162256240845,0.00253868103027344,-0.0215325355529785,0.0554695725440979,0.0196628570556641,0.158217191696167,0.246479451656342,-0.100991249084473,0.0175478458404541,0.19693124294281,0.0379104614257813,0.0256638526916504,0.176783956587315,0.0525550842285156,0.0207672119140625,0.196598827838898,0.0683212280273438,-0.0213425159454346,0.219815544784069,0.0630502700805664,-0.010951042175293,0.217465281486511,0.0562944412231445,0.000445365905761719,0.190029501914978,0.0493602752685547,0.00952959060668945, -0.156094193458557,0.0419826507568359,0.00745296478271484,0.077526867389679,0.0218887329101563,0.00565242767333984,0.0358172655105591,0.011347770690918,-0.0367529392242432,0.000832945108413696,0.00252914428710938,-0.0493606328964233,0.0583002269268036,0.0177621841430664,0.0257694721221924,0.151492804288864,0.0231914520263672,0.0178115367889404,0.182273373007774,0.0453577041625977,0.0256650447845459,0.234229236841202,0.0448799133300781,0.0207691192626953,0.254497021436691,0.0606479644775391,-0.022613525390625,0.265651524066925,0.0310649871826172,-0.0122213363647461,0.310270369052887,-0.0122919082641602,-0.000825881958007813,0.298430919647217,-0.01922607421875,0.0105600357055664,0.269753575325012,-0.0241279602050781,0.0487661361694336,0.23844338953495,-0.0187444686889648,0.0182666778564453,0.153886586427689,0.0003814697265625,0.00854206085205078,0.0186165273189545,0.0586395263671875,0.00773286819458008,-0.00297996401786804,0.0135889053344727,0.0222549438476563,0.0918516516685486,-0.0103788375854492,0.0164384841918945,0.142634898424149,-0.0246381759643555,0.0362467765808105,0.215277284383774,-0.0750608444213867,-0.000824928283691406,0.259828567504883,-0.01922607421875,-0.0122218132019043,0.287264384329319,-0.0122919082641602,-0.022613525390625,0.265651524066925,0.0310649871826172,0.0207691192626953,0.227679044008255,0.0526962280273438,0.0256650447845459,0.207411587238312,0.0369291305541992,0.017500638961792,0.175722390413284,0.0378952026367188,0.0273284912109375,0.136438108980656,-0.00228404998779297,-0.0213671922683716,0.043411910533905,-0.0110311508178711,-0.00869870185852051,-0.018947958946228,-0.0262508392333984,0.00613653659820557,0.0182564854621887,0.0243701934814453,-0.00143316946923733,0,0,-0.00868558883666992,0.000990390777587891,-0.0114612579345703,0.00107622146606445,-8.67843627929688e-05,0.00134754180908203,-0.00590550899505615,0.000710964202880859,-0.00787734985351563,0.00645136833190918,-0.000720977783203125,0.008056640625,0.00161337852478027,-0.000173091888427734,0.00197124481201172,0.00501120090484619, --0.000625133514404297,0.00645065307617188,-0.00492310523986816,0.000634193420410156,-0.00653553009033203,0.00608682632446289,-0.000720977783203125,0.00779151916503906,0.00412213802337646,-0.000547885894775391,0.00519657135009766,-0.000895023345947266,0.000182628631591797,-0.00125312805175781,0.0010761022567749,-9.63211059570313e-05,0.00134754180908203,0.00608646869659424,-0.000615596771240234,0.00788497924804688,-0.00394177436828613,0.000451564788818359,-0.00519752502441406,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,7.3164701461792e-06,0,0,-7.33137130737305e-06,0,0,1.84774398803711e-06,0,0,3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0,0,-0.0399999618530273,0,0,-0.0399923324584961,0,0,5.48362731933594e-06,0,0,5.51342964172363e-06,0,0,7.39097595214844e-06,0,0,7.62939453125e-06,0,0,0.00106477737426758,0,-0.0721924304962158,-0.335842788219452,0.006378173828125,-0.103594779968262,-0.653714299201965,0.00961971282958984,-0.0944406986236572,-0.944674849510193,0.018406867980957,-0.0469682216644287,-1.09627151489258,0.0330877304077148,-0.0539760589599609,-1.07876014709473,0.0287675857543945,-0.0313563346862793,-0.834603786468506,-0.0230865478515625,-0.0450286865234375,-0.683069407939911,-0.0421733856201172,-0.0507678985595703,-0.457954943180084,-0.0657081604003906,-0.0264682769775391,-0.182955265045166,-0.0685710906982422,-0.0484662055969238,-0.973202466964722,0.00466060638427734,0.00789809226989746,0.1434106528759,-0.02447509765625,0.3584885597229,0.139305770397186,-0.0935688018798828,0.0317821502685547,0.00755873322486877,0.0887107849121094,-0.0370893478393555,-0.109590411186218,0.00440788269042969,0.0390474796295166,0.164991766214371,-0.0239686965942383,0.0381176471710205,0.19444939494133,-0.0046234130859375, --0.04280686378479,0.224969819188118,-0.015141487121582,-0.0143651962280273,0.212872624397278,-0.0196247100830078,0.0044865608215332,0.1906917989254,-0.0235729217529297,0.0213871002197266,0.169364720582962,-0.0265483856201172,0.0111227035522461,0.0880334377288818,0.0241603851318359,0.00842905044555664,0.0469152927398682,0.0145893096923828,-0.00635719299316406,-0.0766314268112183,-0.0149068832397461,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,1.66893005371094e-06,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-0.0999999046325684,0,0,-0.099994421005249,0,0,-0.160001873970032,0,0,-0.160005569458008,0,0,-0.160005450248718,0,0,-0.159996271133423,0,0,-0.139996290206909,0,0,-0.140005588531494,0,0,-0.139996290206909,0,0,-0.139994621276855,0,0,-0.120000123977661,0,0,-0.119999885559082,0,0,-0.120000123977661,0,0,-0.120000123977661,0,0,-0.100007057189941,0,0,-0.0999999046325684,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06, -0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-0.160000085830688,0,0,-0.160007238388062,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06, -0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,-0.0547187328338623,-0.298291444778442,0.00206947326660156,-0.070777416229248,-0.624725341796875,0.0162553787231445,-0.0672852993011475,-0.893011629581451,0.0343790054321289,-0.0441849231719971,-1.0831526517868,0.0576028823852539,-0.0491397380828857,-1.0814573764801,0.0563011169433594,-0.0472183227539063,-0.982832551002502,0.0331611633300781,-0.0361833572387695,-0.858754396438599,0.0111780166625977,-0.0454459190368652,-0.717539012432098,-0.00773429870605469,-0.0529227256774902,-0.497410953044891,-0.0494594573974609,-0.024446964263916,-0.169486105442047,-0.0646982192993164,-0.00358819961547852,-0.0769793391227722,-0.0126619338989258,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00565242767333984,0.0358172655105591,0.0113458633422852,0.00745296478271484,0.077526867389679,0.0218887329101563,0.00952959060668945,0.156094133853912,0.0419826507568359,0.000445365905761719,0.190029501914978,0.0493602752685547,-0.010951042175293,0.21746526658535,0.0562944412231445,-0.0213425159454346,0.219815518707037,0.0630502700805664,0.0207672119140625, -0.196655332110822,0.0683212280273438,0.0256638526916504,0.176783964037895,0.0525550842285156,0.0175478458404541,0.19693124294281,0.0379104614257813,0.00638437271118164,0.146174550056458,0.0231914520263672,-0.0215325355529785,0.0554695725440979,0.0196628570556641,-0.00869870185852051,-0.0160052478313446,0.00252914428710938,-0.032780647277832,-0.116032093763351,-0.000295639038085938,-0.0130568742752075,-0.027932733297348,0.00307083129882813,-0.00412702560424805,0.0312104523181915,0.00987148284912109,0.00396728515625,0.0481315180659294,0.0199928283691406,0.0104598999023438,0.0480238348245621,0.0327205657958984,0.0119936466217041,0.027458131313324,0.0446872711181641,0.00636911392211914,0.0759761035442352,0.0555171966552734,-0.00494480133056641,0.0625671967864037,0.0552425384521484,-0.00642633438110352,0.0570730082690716,0.0484247207641602,-0.00280380249023438,0.0337746813893318,0.040095329284668,0.00116777420043945,0.0304486900568008,0.0298900604248047,0.00310802459716797,0.0562353730201721,0.0172252655029297,0.00281715393066406,0.0205114483833313,0.00700759887695313,0.00122737884521484,-0.0181951522827148,-0.00153732299804688,-0.00131416320800781,-0.0689611434936523,-0.00949764251708984,-0.00488376617431641,-0.141428768634796,-0.014796257019043,0.0117535591125488,-0.473827540874481,0.00862979888916016,-0.00376605987548828,-0.699254214763641,0.0266180038452148,0.0286769866943359,-0.843723595142365,0.0469398498535156,-0.0396857261657715,-0.954486310482025,0.0590333938598633,-0.0582437515258789,-1.04688048362732,0.040125846862793,-0.0653927326202393,-1.03260266780853,0.0304594039916992,-0.0782749652862549,-0.823628723621368,0.00821018218994141,-0.0963118076324463,-0.553277015686035,-0.0326976776123047,-0.0354306697845459,-0.239714562892914,0.00300502777099609,-0.0239667892456055,-0.102134346961975,-0.00159263610839844,-0.0149809122085571,-0.0710668563842773,0.00239372253417969,-0.0204463005065918,-0.145775675773621,0.0129108428955078,-0.0200197696685791,-0.341560423374176,0.0365676879882813,-0.0200350284576416,-0.544153213500977, -0.0678939819335938,-0.0231072902679443,-0.691145062446594,0.0935144424438477,-0.031369686126709,-0.751999139785767,0.215743064880371,-0.0362792015075684,-0.727290153503418,0.203923225402832,-0.0359401702880859,-0.66069757938385,0.0717124938964844,-0.0278973579406738,-0.521489500999451,0.0399322509765625,-0.0162534713745117,-0.312926828861237,0.0127878189086914,-0.0058598518371582,-0.0915582776069641,-0.00398349761962891,-0.00110626220703125,-0.0495007038116455,-0.00581836700439453,0.000835418701171875,-0.0145183801651001,-0.00137710571289063,0.000934600830078125,0.0112353563308716,0.00554847717285156,-0.000607013702392578,0.0359363406896591,0.0154228210449219,-0.00318527221679688,0.0525256283581257,0.0241231918334961,-0.00628662109375,0.0788415670394897,0.0370941162109375,-0.00737667083740234,0.0936639010906219,0.0456809997558594,-0.00456380844116211,0.102689206600189,0.0508909225463867,0.00258588790893555,0.103868395090103,0.0520229339599609,0.00746250152587891,0.0912048518657684,0.0427255630493164,0.00766563415527344,0.0846101641654968,0.0319356918334961,0.00343561172485352,0.0599460303783417,0.0195245742797852,-0.0032961368560791,0.0195688083767891,0.00885105133056641,-0.00913393497467041,-0.0224213004112244,0.00222206115722656,0,-3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-0.0999909639358521,0,0,-0.0999999046325684,0,0,-0.100007057189941,0,1.19209289550781e-05,-0.101494193077087,0.00034332275390625,0,-0.105572700500488,6.19888305664063e-05,0,-0.00478947162628174,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06, -0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,-0.099994421005249,0,0,-0.0999981164932251,0,0,-0.100009202957153,0,0,-0.100007057189941,0,0,-0.100005388259888,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999941825866699,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06, -0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06,0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0, -3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999922752380371,0,0,-0.0999922752380371,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06,0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06, -0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-3.63588333129883e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,-0.000591278076171875,0,5.60283660888672e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,9.29832458496094e-06,-0.000949859619140625,0,-3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,-1.78813934326172e-06,0,0,-7.3164701461792e-06,0,0,-7.3164701461792e-06,0,0,-5.51342964172363e-06,0,0,-1.81794166564941e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,1.66893005371094e-06,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06, -0,0,5.60283660888672e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06, -0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,3.63588333129883e-06,0,0,-7.27176666259766e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,-0.00017547607421875,0,-3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.60283660888672e-06, -0,0,5.60283660888672e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,1.84774398803711e-06,0,0,1.84774398803711e-06,0,0,-5.49480319023132e-06,0,0,9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,1.81794166564941e-06,0,0,-1.84774398803711e-06,0,0,1.84774398803711e-06,0,0,-9.14931297302246e-06,0,0,5.51342964172363e-06,0,0,5.49107789993286e-06,0,0,3.66941094398499e-06,0,0,1.83284282684326e-06,0,0,-5.45382499694824e-06,0,0,-3.66196036338806e-06,0,0,7.34627246856689e-06,0,0,-1.81794166564941e-06,0,0,3.69548797607422e-06,0,0,3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,5.60283660888672e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,-7.3164701461792e-06,0,0,-7.32392072677612e-06,0,0,-3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0.00061798095703125,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.15676355361938e-06,0,0,9.14931297302246e-06,0,0,-3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-7.15255737304688e-06,0,0,7.39097595214844e-06,0.000269889831542969,0,-9.17911529541016e-06,0,0, -7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06,0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,5.60283660888672e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,-7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.7220458984375e-06,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0, -0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06, -0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06,0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-5.7220458984375e-06, -0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,-0.000100612640380859,0.00140702724456787,1.1444091796875e-05,-0.0349197387695313,-0.105187654495239,0.00534343719482422,-0.0692038536071777,-0.326200604438782,-0.000250816345214844,-0.100541830062866,-0.632233262062073,0.00990009307861328,-0.0919437408447266,-0.911430358886719,0.0128726959228516,-0.0454225540161133,-1.05669844150543,0.0250167846679688,-0.0499629974365234,-1.02965998649597,0.0177030563354492,-0.0426387786865234,-0.918564319610596,0.0317831039428711,-0.0266876220703125,-0.798952341079712,0.0216407775878906,-0.0201129913330078,-0.605583250522614,-0.0386867523193359,-0.0119137763977051,-0.472547948360443,-0.0396060943603516,-0.00371837615966797,-0.171265840530396,-0.0376300811767578,-0.0059051513671875,-0.0744451880455017,-0.0148038864135742,0.00719714164733887,0.115697115659714,0.0226249694824219,-0.0260047912597656,0.0734522938728333,0.0230617523193359,0.0212240219116211,0.132207274436951,0.0375766754150391,0.0370116233825684,0.111141264438629,0.0505990982055664,0.0365900993347168,0.137288138270378,0.0686187744140625,-0.0403835773468018,0.168377891182899,0.0582714080810547,-0.0127854347229004,0.163542449474335,0.046478271484375,0.00535821914672852,0.143106520175934,0.0436458587646484,0.021174430847168,0.11872386932373,0.050114631652832,0.0108180046081543,0.0857025384902954,0.023529052734375,0.00806713104248047,0.0457141399383545,0.0143814086914063,0,-1.00135803222656e-05, -0,0,2.80141830444336e-06,0,0,-1.0073184967041e-05,0,0,3.69548797607422e-06,0,0,5.60283660888672e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0.000393867492675781,0,1.9073486328125e-06,0,0,9.17911529541016e-06,0,0,5.60283660888672e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-6.40749931335449e-06,0,0,-7.33137130737305e-06,0,0,1.84774398803711e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-6.3776969909668e-06,0,-9.77516174316406e-06,-4.02927398681641e-05,4.76837158203125e-06,-0.000375986099243164,-0.00341486930847168,0.00826930999755859,-7.31945037841797e-05,0.00083315372467041,0.0136070251464844,0.000144004821777344,-0.0120859146118164,0.00249958038330078,1.1444091796875e-05,-0.0124963521957397,0.00222492218017578,-5.07831573486328e-05,-0.010983943939209,0.000151634216308594,-3.57627868652344e-05,-0.00402688980102539,0,-5.76972961425781e-05,-0.00462007522583008,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0.000149250030517578,-0.00140845775604248,0,0,-3.63588333129883e-06,0,0.000326395034790039,-0.0235596001148224,0,-6.17504119873047e-05,-0.0412412881851196,5.7220458984375e-05,6.91413879394531e-06,-0.0534147992730141,0,0,-0.0413181856274605,0,0,-0.0213926583528519,0,0,-6.40749931335449e-06,0,0,3.69548797607422e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-2.74181365966797e-06,0,0,-4.58955764770508e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,-1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0,-3.63588333129883e-06,0,0,1.84029340744019e-06,0,-6.62803649902344e-05,-4.21106815338135e-05,-4.76837158203125e-05,6.91413879394531e-06,-0.000128172338008881,0,0,-7.3164701461792e-06,0,0,-9.14931297302246e-06,0,0,8.2552433013916e-06,0,0,-7.33137130737305e-06,0,0,-4.58955764770508e-06,0,0,7.39097595214844e-06, -0,0,9.17911529541016e-06,0,0,-1.78813934326172e-06,0 - } - Normals: *4380 { - a: -0.619063988793641,0.343783676624298,-1.09118802845478,0.426372540480628,-0.785622093826532,-1.41663271188736,0.506949675566688,-0.713540825992823,-1.45706206560135,0.547586327167592,-0.404298648238182,-1.52142816781998,0.634757091291249,-0.133753955364227,-1.52174496650696,1.16869607567787,-0.144422948360443,-0.762338221073151,1.38663822412491,-0.273440778255463,-0.938469022512436,0.223192602396011,0.497557729482651,-0.241826444864273,-0.137279778718948,1.54084533452988,0.373667314648628,0.474539913237095,0.346394777297974,-0.675818756222725,1.12679368257523,-0.00707453489303589,-0.884533584117889,0.987802267074585,-0.147653222084045,-1.24377107620239,0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005, -1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355,0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.474317714571953,-1.08626279234886,-0.799897104501724,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533, --1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.26907205581665,-1.25665864348412,-0.533412426710129,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054, -0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016, -0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064,-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,0.873636121163145,-0.376826524734497,-0.367784887552261,1.34601473808289,-0.80495909973979,-0.174851790070534,1.31610041856766,-1.08115969598293,-0.155530869960785,1.25783395767212,-0.479136273264885,-0.867621898651123,0.789135560393333,-0.736478731036186,-0.400099456310272,-1.25670471787453,-0.932411693036556,-0.580859676003456,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.824748605489731,-1.79644429683685,-0.255595020949841,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.685561671853065,-0.861295877490193,-1.05978813767433, --0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643, --0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479, --0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289, --0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314, --0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697, -0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911, --0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999, --0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766, --0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238, -0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575, --1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469, -0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467, -0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625, -0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497, -0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854, --0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203, --1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273, --0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074, --0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669, -0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193, -0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174, --0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375, --0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866, --0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979, --0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142, --0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087, --1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609, --1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968, --1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112, --0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257, --0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916, -0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236, --0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426, -0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388, -1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030771856, "Geometry::Eye_Right_Wide", "Shape" { - Version: 100 - Indexes: *409 { - a: 326,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,484,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,5895,5896,5900,5919,5920,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6146,6147,6160,6161,6162,6163,6505,6506,6507,6508,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6564,6794,6800,6801,6802,6803,6804,6805,6806,6807,6808,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7505,7506,7528,7529,7542,7543,7544,7545,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7906,7907,7909,7910,7911,7912,7913,7914,7915,7916,7917,7934,7935,7936,7937,7938,7939,7940,7941,7943,7944,7946,8176,8182,8186,8187,8188,8189,8190,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784 - } - Vertices: *1227 { - a: -0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235199928283691,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0,0.000999689102172852,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453, -0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234334230423,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197255611419678,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556478276848793,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523, -1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,1.52587890625e-05,0.00242425501346588,0.00070953369140625,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.00789570808410645,-0.00230312347412109,-1.83582305908203e-05, -0.00841885805130005,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199636816978455,-0.000123977661132813,0,0.000999718904495239,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082, -0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318154692649841,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556483864784241,0.00016021728515625,-6.00814819335938e-05,0.00105259753763676,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,1.52587890625e-05,0.00242424011230469,0.00070953369140625,3.71932983398438e-05,0.00251369178295135,0.000734329223632813,3.57627868652344e-05,0.00203084945678711,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.039896696805954,0.055370569229126,-0.00553607940673828,-0.0503910481929779,0.052578330039978,0.00574207305908203,-0.0330334566533566,0.0302760601043701,0.00151157379150391,0.0356791242957115,0.117853164672852,-0.00406074523925781,-9.95717418845743e-05,0.113386154174805,0.000700950622558594,-0.0719225704669952,0.171999216079712,-0.00208282470703125,-0.0741032660007477,0.1179119348526,0.0199785232543945,-0.074039101600647,0.488242030143738,0.190054893493652,-0.0410565733909607,0.419480562210083,0.0693569183349609,0.00157749652862549,0.581050157546997, -0.218133926391602,0.02801513671875,0.540443420410156,0.0999221801757813,-0.087191104888916,0.702215433120728,0.213652610778809,-0.0153965950012207,0.68410325050354,0.12642765045166,-0.0501279830932617,0.637698888778687,0.200088500976563,-0.0429248809814453,0.617223262786865,0.155679702758789,-0.0902509689331055,0.462861061096191,0.17335033416748,-0.0830488204956055,0.480314970016479,0.147052764892578,-0.115661144256592,0.285030364990234,0.0782508850097656,-0.0203766822814941,0.267393827438354,0.138752937316895,-0.0863628387451172,0.129194498062134,-0.007965087890625,-0.0104227066040039,0.0373415946960449,-0.00250101089477539,0,3.814697265625e-06,0,-0.0199103355407715,0.03977370262146,-0.00685930252075195,-0.0359668731689453,0.0510199069976807,-0.00460624694824219,0.0772476196289063,0.0599876642227173,0.0402641296386719,-0.00830459594726563,0.681066274642944,0.147480964660645,-0.0256655216217041,0.694765329360962,0.218293190002441,-0.0115840435028076,0.612931728363037,0.214901924133301,-0.0111932754516602,0.521907210350037,0.21419620513916,0.0225270986557007,0.313108801841736,0.0894336700439453,0.0535176992416382,0.0552123785018921,0.0429706573486328,-0.0189471244812012,0.0448840856552124,-0.00684499740600586,-0.0692782402038574,0.134331703186035,0.000301361083984375,-0.112018585205078,0.283711433410645,0.0628395080566406,-0.0924129486083984,0.444191694259644,0.1826171875,-0.0430886745452881,0.523174047470093,0.225696563720703,-0.0513632297515869,0.577847480773926,0.242834091186523,0.0269534587860107,0.419760227203369,0.0882482528686523,0.00270533561706543,0.374822854995728,0.0538339614868164,-0.0383625030517578,0.285292387008667,0.0128908157348633,-0.0269880294799805,0.184450626373291,0.00107860565185547,-0.025871753692627,0.0903611183166504,-0.0297765731811523,-0.0308051109313965,0.0477136373519897,-0.0128660202026367,0.0514130592346191,0.108309864997864,0.0243253707885742,0.0500757694244385,0.232627272605896,0.102014541625977,0.0562922954559326,0.388509392738342,0.171122550964355,0.0304321646690369,0.278913021087646, --0.00598716735839844,-0.00974196195602417,0.467592000961304,-0.00692558288574219,-0.0123574733734131,0.458104610443115,-0.00974369049072266,-0.0474120378494263,0.499452352523804,-0.00387859344482422,0.0140345096588135,0.518790245056152,-0.0316677093505859,-0.0553662776947021,0.497079372406006,-0.0471725463867188,-0.105998516082764,0.374053478240967,-0.0496273040771484,0.00850725173950195,0.129849433898926,-0.0193643569946289,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,-3.76701354980469e-05,0.000108242034912109,-9.10758972167969e-05,-0.0331077575683594,0.251204013824463,0.00354146957397461,-0.0174629688262939,0.268531322479248,0.00681018829345703,-0.0244226455688477,0.284929752349854,0.00650882720947266,-0.0313739776611328,0.281942367553711,0.00528144836425781,0.0125900506973267,0.280825614929199,0.0121126174926758,0.00841838121414185,0.298995018005371,0.00684452056884766,-0.000121742486953735,0.283126354217529,0.00475978851318359,-0.000513553619384766,0.0024259090423584,-0.00019073486328125,-0.000608205795288086,0.00463926792144775,-0.000814437866210938,-0.000313997268676758,0.00642824172973633,-0.00204086303710938,1.09672546386719e-05,0.00789940357208252,-0.00334358215332031,-4.41074371337891e-05,0.00858867168426514,-0.00359725952148438,0.000218391418457031,0.00763392448425293,-0.00202846527099609,0.000766754150390625,0.00606966018676758,-0.00130748748779297,0.000406742095947266,0.00478005409240723,-0.000611305236816406,0.000275135040283203,0.00206238031387329,-0.000124931335449219,3.91006469726563e-05,0.00839114189147949,-0.002838134765625,8.36849212646484e-05,0.000929087400436401,0.000258445739746094,8.55922698974609e-05,0.00178617238998413,0.000478744506835938,0.000128269195556641,0.00021892786026001,0.000127792358398438,-0.000263690948486328,0.000653624534606934,-7.62939453125e-05,5.43594360351563e-05,0.00266426801681519,0.000682830810546875,5.26905059814453e-05,0.003371462225914,0.000856399536132813,1.43051147460938e-06,0.00316940248012543,0.000822067260742188,-4.91142272949219e-05, -0.00245356559753418,0.000665664672851563,-7.05718994140625e-05,0.00195887684822083,0.0005340576171875,-0.000115394592285156,0.00129884481430054,0.000383377075195313,-7.39097595214844e-05,0.000541746616363525,0.000162124633789063,-5.81741333007813e-05,0.000188291072845459,8.20159912109375e-05,0.000144481658935547,0.000964581966400146,-3.14712524414063e-05,-0.016003280878067,0.0216991901397705,-0.001373291015625,-0.0212710797786713,0.00931870937347412,0.00263309478759766,-0.00859534740447998,0.000510334968566895,0.00250911712646484,-0.00213241577148438,0.000141382217407227,5.340576171875e-05,-0.00301539897918701,-0.00167322158813477,0.00063323974609375,-0.000489115715026855,-0.00162339210510254,-0.000336647033691406,-0.000546932220458984,-0.00104355812072754,-0.000135421752929688,0.000103950500488281,-0.000948190689086914,-0.000379562377929688,0,1.66893005371094e-06,0,-0.000159740447998047,-0.000432729721069336,-0.000136375427246094,-9.82284545898438e-05,-9.1552734375e-05,-2.57492065429688e-05,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,3.814697265625e-06,0,0,1.66893005371094e-06,0,-0.0174713730812073,0.0117024183273315,0.00120639801025391,-0.0092894434928894,0.00257408618927002,0.00249671936035156,-6.43730163574219e-06,-0.0013573169708252,-0.000384330749511719,-0.00122332572937012,-0.00149083137512207,0.000101089477539063,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000133037567138672,0.000999689102172852,-2.76565551757813e-05,3.00407409667969e-05, -0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,1.52587890625e-05,0.00242425128817558,0.00070953369140625,3.71932983398438e-05,0.00251471623778343,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351130962371826,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-8.0108642578125e-05,0.000617355108261108,6.96182250976563e-05,-1.02519989013672e-05,0.000482231378555298,0.000119209289550781,1.23977661132813e-05,0.000700816512107849,0.000223159790039063,1.9073486328125e-05,0.00102675892412663,0.0003509521484375,1.97887420654297e-05,0.00132780522108078,0.000464439392089844,2.38418579101563e-05,0.00156024098396301,0.00055694580078125,2.288818359375e-05,0.00153917074203491,0.000550270080566406,1.28746032714844e-05,0.00132940709590912,0.000472068786621094,-1.9073486328125e-06,0.00105854868888855,0.000367164611816406,-1.33514404296875e-05,0.000743985176086426,0.00025177001953125,-1.43051147460938e-05,0.000490725040435791,0.000143051147460938,4.29153442382813e-06,0.000372767448425293,6.96182250976563e-05,4.76837158203125e-05,0.000525236129760742,2.38418579101563e-05,0.000109195709228516,0.000935256481170654,-2.38418579101563e-05,0.000169754028320313,0.00164282321929932,-0.000112533569335938,0.000182628631591797,0.00367176532745361,-0.000372886657714844,0.0001373291015625,0.00537204742431641,-0.000761032104492188,6.43730163574219e-05,0.00575852394104004,-0.001190185546875,6.67572021484375e-06,0.00727617740631104,-0.00153160095214844,-2.33650207519531e-05, -0.00761747360229492,-0.00174236297607422,-4.41074371337891e-05,0.00732779502868652,-0.00153732299804688,-0.000128984451293945,0.00651943683624268,-0.000931739807128906,-0.000224590301513672,0.00456857681274414,-0.000405311584472656,-0.000244379043579102,0.00204652547836304,-0.000105857849121094,-0.000171065330505371,0.00106459856033325,3.24249267578125e-05,-0.000105381011962891,0.000781118869781494,0,-0.000135302543640137,0.00145900249481201,-0.000147819519042969,-0.000100135803222656,0.00208628177642822,0.000453948974609375,-0.000118732452392578,0.002960205078125,4.57763671875e-05,-9.58442687988281e-05,0.00358128547668457,-0.000405311584472656,-4.38690185546875e-05,0.00400543212890625,-0.000701904296875,-9.05990600585938e-05,0.00331759452819824,-0.000609397888183594,-9.918212890625e-05,0.00294971466064453,-0.000368118286132813,-4.48226928710938e-05,0.00240528583526611,-0.000832557678222656,1.57356262207031e-05,0.0017249584197998,-0.000451087951660156,5.38825988769531e-05,0.00107395648956299,-0.000173568725585938,5.14984130859375e-05,0.000679433345794678,-5.81741333007813e-05,3.19480895996094e-05,0.000389456748962402,1.1444091796875e-05,1.85966491699219e-05,0.000298202037811279,6.4849853515625e-05,1.85966491699219e-05,0.00035993754863739,0.000140190124511719,2.47955322265625e-05,0.00044279545545578,0.000209808349609375,3.76701354980469e-05,0.000672340393066406,0.000335693359375,4.33921813964844e-05,0.000835835933685303,0.000429153442382813,3.76701354980469e-05,0.000956177711486816,0.000493049621582031,2.33650207519531e-05,0.000984609127044678,0.000504493713378906,7.62939453125e-06,0.000854820013046265,0.000423431396484375,-1.9073486328125e-06,0.000686496496200562,0.000327110290527344,-1.02519989013672e-05,0.000517368316650391,0.000219345092773438,-2.81333923339844e-05,0.000440716743469238,0.00012969970703125,-6.05583190917969e-05,0.000494927167892456,5.81741333007813e-05,-0.00172257423400879,-0.00109267234802246,0.00105953216552734,-0.00364315509796143,-0.00128936767578125,0.00200176239013672,-0.00442993640899658, --0.00024878978729248,0.00256443023681641,-0.00262439250946045,0.00153881311416626,0.00220489501953125,0,4.64916229248047e-06,0,-7.15255737304688e-06,2.288818359375e-05,9.5367431640625e-06,0,-2.14576721191406e-06,0,-0.000412225723266602,-0.000344038009643555,8.86917114257813e-05,-0.000767946243286133,-0.000776529312133789,0.000371932983398438,-0.000914335250854492,-0.000514984130859375,0.000566482543945313,-0.000428676605224609,-9.84668731689453e-05,0.000191688537597656,-0.000179767608642578,3.50475311279297e-05,5.05447387695313e-05,-7.72476196289063e-05,1.07288360595703e-05,0.000135421752929688,-2.90870666503906e-05,1.1444091796875e-05,1.43051147460938e-05,-9.05990600585938e-06,1.06096267700195e-05,3.814697265625e-06,-0.00231671333312988,-0.000142693519592285,0.00180912017822266,-0.00245881080627441,-0.000624775886535645,0.0019073486328125,-0.00167679786682129,-0.000713348388671875,0.0014190673828125,0.014453798532486,0.00105643272399902,-0.00242519378662109,0.00671088695526123,0.000211477279663086,-0.00153541564941406,0.00267446041107178,-0.000466108322143555,-0.000857353210449219,0.000793099403381348,-0.000756978988647461,-0.000493049621582031,3.57627868652344e-06,-0.000531673431396484,-0.000212669372558594,-5.86509704589844e-05,-6.103515625e-05,3.52859497070313e-05,-1.43051147460938e-06,6.19888305664063e-06,0,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,0,-4.29153442382813e-06,0,2.86102294921875e-06,-4.29153442382813e-06,0,7.74860382080078e-06,1.76429748535156e-05,2.86102294921875e-06,1.05500221252441e-05,2.43186950683594e-05,1.04904174804688e-05,1.95801258087158e-05,3.95774841308594e-05,-2.95639038085938e-05,0,1.78813934326172e-06,0,-0.00024867057800293,0.000627219676971436,-8.0108642578125e-05,-0.00049281120300293,0.00234889984130859,-0.000192642211914063,-0.000592708587646484,0.00481593608856201,-0.000767707824707031,-0.000319004058837891,0.00675666332244873,-0.00189018249511719,3.09944152832031e-06,0.00842452049255371,-0.00307559967041016,-2.31266021728516e-05,0.00935912132263184, --0.00327968597412109,6.53266906738281e-05,0.00914978981018066,-0.00255298614501953,0.000235080718994141,0.00837099552154541,-0.00183773040771484,0.000354766845703125,0.00665366649627686,-0.00122642517089844,0.000401973724365234,0.0046461820602417,-0.000583648681640625,0.000266075134277344,0.0020061731338501,-0.000123023986816406,0.000139713287353516,0.000937461853027344,-3.14712524414063e-05,8.22544097900391e-05,0.000895410776138306,0.000245094299316406,0.000124692916870117,0.000211358070373535,0.000123023986816406,8.65459442138672e-05,0.00171753764152527,0.000447273254394531,5.62667846679688e-05,0.00255855917930603,0.000630378723144531,5.00679016113281e-05,0.00323455035686493,0.000787734985351563,-5.96046447753906e-06,0.00305303931236267,0.000757217407226563,-5.7220458984375e-05,0.002378910779953,0.000620841979980469,-7.67707824707031e-05,0.00190240144729614,0.000501632690429688,-0.000115394592285156,0.00125032663345337,0.000363349914550781,-7.20024108886719e-05,0.000527322292327881,0.000157356262207031,-5.57899475097656e-05,0.000183284282684326,8.10623168945313e-05,0,0.00131899118423462,0,0,0.00380241870880127,0,0,0.00561583042144775,0,0,0.00630033016204834,0,0,0.00630021095275879,0,0,0.00630033016204834,0,0,0.00522923469543457,0,0,0.00472331047058105,0,0,0.00311636924743652,0,0,0.0016065239906311,0 - } - Normals: *1227 { - a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, -0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, --1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, --0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, -0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594, --0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.83636599034071,-0.958253972232342,-0.844457536935806,0.433115065097809,-0.226518977433443,0.52702921628952,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485, --0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218, -0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551, --0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493, -0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218, --0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.22639819979668, -0.864633291959763,-0.881134361028671 - } - } - Geometry: 2807030772432, "Geometry::Eye_Right_Right", "Shape" { - Version: 100 - Indexes: *1432 { - a: 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,405,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,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6128,6129,6130,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470, -6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523, -7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179, -8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *4296 { - a: -0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.0903201103210449,0.0162455439567566,-0.375970840454102,-0.192007541656494,0.0213413238525391,-0.45504093170166,-0.310050964355469,0.0252300500869751,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.33867883682251,0.0275640487670898,-0.296371459960938,-0.329407691955566,0.0257493257522583,-0.113393783569336,-0.261270046234131,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297415256500244,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0431039333343506,0.0167997479438782,0.0434961318969727,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.24837589263916,0.0165941119194031,0.0442428588867188,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.329407691955566,0.0257493257522583,-0.11480712890625,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.326820850372314,0.0247514247894287,-0.408695220947266,-0.310050964355469,0.0252300500869751,-0.502775192260742,-0.164108276367188,0.0490363240242004,-0.496404647827148,-0.0962176322937012,0.00350004434585571,-0.394233703613281,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.123275756835938,0.0382112860679626,-0.40921688079834,-0.192007541656494,0.0213413834571838,-0.45504093170166,-0.310050964355469,0.0252299308776855,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.329407691955566, -0.0257493257522583,-0.11480712890625,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.262131690979004,-0.0169035643339157,-0.000680923461914063,-0.194218873977661,-0.00468742102384567,-0.0219268798828125,-0.137040138244629,0.00615224242210388,-0.136188507080078,-0.107697486877441,0.00664103031158447,-0.248453140258789,-0.0621771812438965,0.00528210401535034,-0.23625659942627,-0.0284223556518555,-0.0141885280609131,-0.21666431427002,-0.0133295059204102,0.00161898136138916,-0.236495971679688,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934773683547974,0.0134963989257813,-0.262131690979004,-0.0169035792350769,-0.000680923461914063,-0.194218635559082,-0.00468742847442627,-0.0219268798828125,-0.167585372924805,0.0298169851303101,-0.121891975402832,-0.153645992279053,0.0369060337543488,-0.253515243530273,-0.129809379577637,0.0621353089809418,-0.290690422058105,-0.0969195365905762,0.0606474205851555,-0.327178955078125,-0.0744624137878418,0.098174124956131,-0.332362174987793,-0.0135793685913086,0.0106267333030701,-0.214198112487793,-0.00246715545654297,0.00920170545578003,-0.22663402557373,-0.055539608001709,0.0514179468154907,-0.289390563964844,-0.0837244987487793,0.0425230860710144,-0.295361518859863,-0.107307434082031,0.0409700870513916,-0.270119667053223,-0.134385585784912, -0.0260509103536606,-0.253552436828613,-0.15485668182373,0.0213298052549362,-0.12946891784668,-0.19421911239624,-0.00468742847442627,-0.0219268798828125,-0.262131690979004,-0.0169035494327545,-0.000680923461914063,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0137698650360107,0.000629693269729614,0.00848674774169922,0.00511372089385986,0.0152137279510498,0.0203084945678711,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.0903201103210449,0.0162455439567566,-0.375970840454102,-0.192007541656494,0.0213413238525391,-0.45504093170166,-0.310050964355469,0.0252300500869751,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.33867883682251,0.0275640487670898,-0.296371459960938,-0.329407691955566,0.0257493257522583,-0.113393783569336,-0.261270046234131,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297415256500244,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0431039333343506,0.0167997479438782,0.0434961318969727,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.329407930374146,0.0257493257522583,-0.11480712890625,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.326820850372314,0.0247514247894287,-0.408695220947266,-0.310050964355469,0.0252299904823303,-0.502775192260742,-0.164108276367188,0.0490363240242004,-0.496404647827148,-0.0962176322937012,0.00350004434585571, --0.394233703613281,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.123275756835938,0.0382112860679626,-0.40921688079834,-0.192007541656494,0.0213413834571838,-0.45504093170166,-0.310050964355469,0.0252299904823303,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.329407453536987,0.0257493257522583,-0.11480712890625,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.262131690979004,-0.0169035643339157,-0.000680923461914063,-0.194218873977661,-0.00468742102384567,-0.0219268798828125,-0.137040138244629,0.00615224242210388,-0.136188507080078,-0.107697486877441,0.00664103031158447,-0.248453140258789,-0.0621771812438965,0.00528210401535034,-0.23625659942627,-0.0284223556518555,-0.0141885280609131,-0.21666431427002,-0.0133295059204102,0.00161898136138916,-0.236495971679688,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934773683547974,0.0134963989257813,-0.262131690979004,-0.0169035792350769,-0.000680923461914063,-0.194218635559082,-0.00468742847442627,-0.0219268798828125,-0.167585372924805,0.0298169851303101, --0.121891975402832,-0.153645992279053,0.0369060337543488,-0.253515243530273,-0.129809379577637,0.0621353089809418,-0.290690422058105,-0.0969195365905762,0.0606474280357361,-0.327178955078125,-0.0744624137878418,0.0981741100549698,-0.332362174987793,-0.0135793685913086,0.0106267333030701,-0.214198112487793,-0.00246715545654297,0.00920170545578003,-0.22663402557373,-0.055539608001709,0.0514179468154907,-0.289390563964844,-0.0837244987487793,0.0425230860710144,-0.295361518859863,-0.107307434082031,0.0409700870513916,-0.270119667053223,-0.134385585784912,0.0260509103536606,-0.253552436828613,-0.15485668182373,0.0213298052549362,-0.12946891784668,-0.194218635559082,-0.00468742847442627,-0.0219268798828125,-0.262131690979004,-0.0169035643339157,-0.000680923461914063,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.0636618137359619,-0.000650458037853241,0.0149145126342773,-0.0174218416213989,0.000653326511383057,0.00787448883056641,-0.0137698650360107,0.000629693269729614,0.00848674774169922,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,-0.000238180160522461,0.000132977962493896,9.5367431640625e-06,-0.0990467071533203,0.0082821249961853,0.047633171081543,-0.142971277236938,-0.00980150699615479,0.0699443817138672,-0.26461386680603,0.00175583362579346,0.0467805862426758,-0.266428709030151,-0.00530350208282471,-0.00621604919433594, --0.339926481246948,0.0198181867599487,-0.149991989135742,-0.361836433410645,0.0361200571060181,-0.467625617980957,-0.344032764434814,0.0346287488937378,-0.535763740539551,-0.216418743133545,0.0182749032974243,-0.477590560913086,-0.103751659393311,0.0199064612388611,-0.383056640625,0.0022883415222168,0,-0.2498779296875,-0.37465763092041,0.0185004472732544,-0.335476875305176,-0.0582830905914307,-0.00549057126045227,0.0147705078125,-0.128053903579712,-0.00937643647193909,0.0211477279663086,-0.00806570053100586,-0.000226080417633057,0.0035247802734375,-0.0270147323608398,0.00050884485244751,0.0165061950683594,-0.158831119537354,-0.0127155631780624,0.0145635604858398,-0.240624904632568,-0.017103485763073,-0.00535202026367188,-0.208769559860229,-0.0020211935043335,-0.0298299789428711,-0.143869400024414,0.00723865628242493,-0.149331092834473,-0.136171817779541,0.00775185227394104,-0.282914161682129,-0.0536060333251953,-0.00206893682479858,-0.28546142578125,-0.024200439453125,-0.0144634246826172,-0.253257751464844,-0.014124870300293,0.00166624784469604,-0.248126983642578,-0.0588760375976563,0.0109925866127014,-0.321419715881348,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,-0.0116305351257324,-0.00467574596405029,0.000390052795410156,-0.00164312124252319,-0.00114583969116211,5.81741333007813e-05,-0.0498316287994385,-0.0116705894470215,0.00176620483398438,-0.0818784236907959, --0.0551135540008545,0.00291061401367188,-0.121216297149658,-0.0266857147216797,0.00438308715820313,-0.0238196849822998,-0.0143837928771973,0.000828742980957031,-0.129374980926514,0.0206098556518555,0.0049591064453125,-0.12768816947937,0.0371713638305664,0.00509929656982422,-0.0865483283996582,0.0504584312438965,0.00355625152587891,-0.174444198608398,0.0191357135772705,0.00681304931640625,-0.0886101722717285,0.0533926486968994,-0.0409784317016602,-0.0495104789733887,0.00175237655639648,0.00190639495849609,-0.135512351989746,0.00797843933105469,-0.120069026947021,1.9073486328125e-06,-1.07288360595703e-06,0,0,6.13927841186523e-06,0,-1.43051147460938e-06,-1.19209289550781e-06,0,0,7.62939453125e-06,0,0.00158405303955078,0.00531435012817383,-5.14984130859375e-05,0,-7.62939453125e-06,0,-0.0241680145263672,0.0255273580551147,0.00104236602783203,-0.0157561302185059,0.00699925422668457,0.000629425048828125,-0.0175750255584717,0.00735747814178467,0.000706672668457031,0,2.98023223876953e-06,0,-0.047046422958374,0.0202135443687439,0.00189781188964844,0,1.54972076416016e-06,0,-0.0119510889053345,-0.00140209496021271,0.000448226928710938,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,-0.0515360832214355,0.0475425720214844,-0.0366711616516113,0,-2.98023223876953e-06,0,-3.814697265625e-06,-1.07288360595703e-06,0,1.43051147460938e-06,-1.11013650894165e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,-0.00529813766479492,0.017688512802124,0.000266075134277344,0,-6.19888305664063e-06,0,-0.01129150390625,0.00424492359161377,0.000452041625976563,-0.0207185745239258,0.00426256656646729,0.000791549682617188,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,-0.00424426794052124,-0.00169980525970459,0.000143051147460938,-0.11449146270752,-0.034414529800415,0.00429821014404297,-0.194644212722778,-0.0192775726318359,0.00722885131835938,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06, -0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06, -0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.138259410858154,0.00297415256500244,0.0624895095825195,-0.24837589263916,0.0165942907333374,0.0442428588867188,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.329407691955566,0.0257494449615479,-0.113247871398926,-0.33867883682251,0.0275641679763794,-0.296371459960938,-0.326820850372314,0.0247514247894287,-0.408695220947266,-0.310050964355469,0.0252299308776855,-0.502774238586426,-0.192007541656494,0.0213414430618286,-0.45504093170166,-0.0903201103210449,0.0162455439567566,-0.375970840454102,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.000130653381347656,0.000640869140625,-0.235055923461914,-0.0133295059204102,0.00161898136138916,-0.236496925354004,-0.0284223556518555,-0.0141884684562683,-0.21666431427002,-0.0621771812438965,0.00528204441070557,-0.23625659942627,-0.107697486877441,0.00664100050926208,-0.248453140258789,-0.137040138244629,0.00615222752094269,-0.136188507080078,-0.194218873977661,-0.00468742474913597,-0.0219268798828125,-0.262131690979004,-0.0168577879667282,-0.000680923461914063,-0.169617414474487,-0.00934770703315735,0.0134963989257813,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.0636618137359619,-0.000650495290756226,0.0149145126342773,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0137696266174316,0.000629663467407227,0.00848674774169922,-0.0379900932312012,0.00158601999282837,0.0231876373291016, --0.0242965221405029,0.00126487016677856,0.015660285949707,-0.0265774726867676,0.0039711594581604,0.0113620758056641,-0.0735821723937988,0.0134951025247574,0.0148000717163086,-0.135603427886963,0.00944077782332897,0.0160617828369141,-0.171540260314941,-0.00206577777862549,0.0120716094970703,-0.256332397460938,-0.0157688707113266,0.00373935699462891,-0.177870273590088,-0.00625723600387573,-0.0124368667602539,-0.131528377532959,0.00614805147051811,-0.110476493835449,-0.112782001495361,0.0129797086119652,-0.226679801940918,-0.0486507415771484,0.00343582034111023,-0.22941780090332,-0.00263786315917969,0.00204774737358093,-0.216222763061523,-0.011970043182373,0.00126951932907104,-0.214228630065918,-0.0156960487365723,0.000843822956085205,-0.211347579956055,-0.048250675201416,0.000329852104187012,-0.277787208557129,-0.0756072998046875,0.00605154037475586,-0.329646110534668,-0.170723915100098,0.0229473114013672,-0.415866851806641,-0.269514560699463,0.0256234407424927,-0.437540054321289,-0.259909629821777,0.0068666934967041,-0.353434562683105,-0.277475833892822,0.0240838527679443,-0.255824089050293,-0.328291654586792,0.0210464000701904,-0.0850362777709961,-0.258634805679321,0.0130612850189209,0.00355052947998047,-0.201249599456787,0.0189461708068848,0.0386104583740234,-0.127920627593994,0.00530815124511719,0.050994873046875,-0.102397203445435,0.012145459651947,0.0449333190917969,-0.040884256362915,0.00200074911117554,0.0264787673950195,-0.0292434692382813,0.00143510103225708,0.0217084884643555,-0.110448837280273,0.021564245223999,0.0381650924682617,-0.165137052536011,0.0363199710845947,0.0440025329589844,-0.198148250579834,0.0513136386871338,0.0378808975219727,-0.201098442077637,0.0288066864013672,0.0166292190551758,-0.185127258300781,0.0102483034133911,-0.0133810043334961,-0.190587520599365,-0.00922918319702148,-0.0637855529785156,-0.242588520050049,-0.0653148889541626,-0.159162521362305,-0.247251033782959,-0.0288717746734619,-0.224226951599121,-0.0689969062805176,-0.00318300724029541,-0.273089408874512,-0.0297422409057617, -8.392333984375e-05,-0.119638442993164,-0.0163331031799316,0.000384390354156494,-0.0535240173339844,-0.00680637359619141,0.00193840265274048,-0.0337743759155273,-0.00688457489013672,0.00114214420318604,-0.0135650634765625,-0.0182156562805176,0.00880126655101776,-0.0140447616577148,-0.0221033096313477,0.00809766352176666,-0.0282840728759766,-0.0744905471801758,0.00708749890327454,-0.0490274429321289,-0.108960151672363,0.00850477814674377,-0.0291824340820313,-0.124290466308594,-0.000273227691650391,-0.00838375091552734,-0.183624744415283,-0.00733697414398193,0.00388145446777344,-0.131885528564453,0.0210279822349548,0.00943088531494141,-0.0979771614074707,0.0647347569465637,0.012598991394043,-0.0859107971191406,0.0420075058937073,0.0135459899902344,-0.0298558473587036,0.00723016262054443,0.0121135711669922,-0.0177936553955078,0.000237077474594116,0.0140390396118164,-0.239066362380981,-0.0176901817321777,0.00895023345947266,-0.237991213798523,-0.0321437120437622,0.00878524780273438,-0.0749275684356689,-0.0245360136032104,0.00254726409912109,-0.0107104778289795,-0.00430947542190552,0.000360488891601563,-0.0103861093521118,-0.00122860074043274,0.000390052795410156,-0.110658168792725,-0.0130277872085571,0.00415229797363281,-0.109701037406921,0.0416576266288757,0.00438690185546875,-0.0632960796356201,0.026045560836792,0.00249862670898438,-0.0798726081848145,0.0210157632827759,0.00307559967041016,-0.0700716972351074,0.0304704904556274,0.00280094146728516,-0.0584845542907715,0.0240632295608521,0.00235080718994141,-0.0715188980102539,0.0815666913986206,0.00310325622558594,-0.0225114822387695,0.0756710171699524,0.00113391876220703,0.0200138092041016,0.0668308138847351,-0.000905513763427734,-2.38418579101563e-06,-1.22189521789551e-06,0,0,-1.16229057312012e-06,0,2.38418579101563e-06,-1.13248825073242e-06,0,-2.38418579101563e-06,-1.13248825073242e-06,0,-0.0406279563903809,-0.0100667476654053,-0.0183992385864258,-0.0552353858947754,0.0131537914276123,-0.0195140838623047,-0.145007610321045,-0.0158710479736328,0.00544261932373047,-0.0801806449890137, -0.0102994441986084,0.00306606292724609,-0.11051869392395,-0.020923376083374,0.00404262542724609,-0.0452847480773926,0.0173771381378174,0.00187873840332031,-0.0458097457885742,0.0145988464355469,0.00185012817382813,-0.233118057250977,-0.00167036056518555,0.00936508178710938,-0.21418285369873,-0.0645043849945068,-0.0408782958984375,-0.161038398742676,-0.0880333185195923,-0.00156593322753906,-0.0701031684875488,-0.0269216299057007,0.0433940887451172,0,-1.19209289550781e-06,0,2.86102294921875e-06,-1.19209289550781e-06,0,0,-1.19209289550781e-06,0,-2.86102294921875e-06,-1.22189521789551e-06,0,3.814697265625e-06,-1.27404928207397e-06,0,0.00567293167114258,0.0775673985481262,9.72747802734375e-05,-0.0197963714599609,0.0499762296676636,0.000940322875976563,-0.0636119842529297,0.0398548245429993,0.00260734558105469,-0.0590910911560059,0.0180896520614624,0.00233554840087891,-0.0805466175079346,0.0224337577819824,0.00314140319824219,-0.0872180461883545,0.0300605297088623,0.00339126586914063,-0.071399450302124,0.0734748840332031,0.00300216674804688,-0.0938503742218018,0.0383623838424683,0.00372505187988281,-0.0577132701873779,-0.0066697746515274,0.00216579437255859,-0.0115294456481934,-0.00135704874992371,0.000432968139648438,-0.00011599063873291,-1.51991844177246e-05,3.814697265625e-06,-0.0658905506134033,0.00966393947601318,0.00250530242919922,-0.16734504699707,0.00797879695892334,0.00637054443359375,-0.0751156806945801,0.0209629535675049,0.00299167633056641,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06, -0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06, -0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06, -0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06, -0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06, -0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06, -0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06, -0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06, -0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06, -0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06, -0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-7.17639923095703e-05,3.814697265625e-06,4.67300415039063e-05,-0.0257148742675781,0.000463128089904785,0.0160846710205078,-0.0926861763000488,0.00727874040603638,0.0483837127685547,-0.155390739440918,0.00201785564422607,0.070404052734375,-0.29344630241394,0.0338938236236572,0.0481891632080078,-0.30637788772583,-0.00040435791015625,-0.0275583267211914,-0.351467370986938,0.025180459022522,-0.159399032592773,-0.36540699005127,0.00854885578155518,-0.344948768615723,-0.363742351531982,0.0110155344009399,-0.469780921936035,-0.338369369506836,0.0225290060043335,-0.514941215515137,-0.18055248260498,0.0312654972076416,-0.469051361083984,-0.0892510414123535, -0.0103706121444702,-0.365452766418457,-0.0293307304382324,0.0019804835319519,-0.299956321716309,-0.0449695587158203,-0.00594067573547363,0.0144062042236328,-0.00570559501647949,-0.000830978155136108,0.00343132019042969,-0.113539218902588,-0.0111568868160248,0.0209140777587891,-0.138956546783447,-0.0116026103496552,0.0142955780029297,-0.208453178405762,-0.0144858658313751,-0.00601863861083984,-0.187669992446899,-0.000535905361175537,-0.0302619934082031,-0.130633354187012,0.00658252835273743,-0.146069526672363,-0.129236698150635,0.00711768865585327,-0.282761573791504,-0.0567002296447754,0.00697898864746094,-0.245926856994629,0.00708150863647461,-0.015288770198822,-0.226593017578125,0.0309848785400391,-0.000244617462158203,-0.263739585876465,0.0559554100036621,0,-0.18452262878418,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,-8.10623168945313e-06,-3.03983688354492e-06,5.7220458984375e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,-0.058558464050293,0,0,-0.17643928527832,-0.00276803970336914,0.000644445419311523,-0.175441741943359,-0.00547885894775391,0.0013120174407959,-0.188865661621094,-8.48770141601563e-05,1.54972076416016e-05,-0.194449424743652,0,0,-0.192206859588623,0.0872402191162109,7.56978988647461e-06,-0.192206859588623,-5.24520874023438e-06,3.27825546264648e-06,0,0,-3.03983688354492e-06,0,-0.0122737884521484,-0.00113092362880707,0.000457763671875,-0.0131978988647461,-0.00126761198043823,0.000531196594238281,-0.0088188648223877, --0.00142408907413483,0.00032806396484375,-0.0192015171051025,-0.00154019892215729,0.000720024108886719,-0.0138607025146484,0.000340394675731659,-0.0785455703735352,-0.00478076934814453,0.00013849139213562,-0.176295280456543,-0.00820493698120117,3.06963920593262e-06,-0.176238059997559,-0.00127601623535156,0,-0.176407814025879,0.106726169586182,6.13927841186523e-06,-0.17643928527832,0.193301200866699,-0.00720059871673584,-0.023188591003418,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4296 { - a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, -0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, --1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714, --0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064, --0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598, --1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.419200159609318,0.837365716695786,0.256595432758331,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089, --0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354, --0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314, -0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234, -0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743, -0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999, --1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595, --1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848, -0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392, --1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036, -0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119, --1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198, -0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779, -0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386, -0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875, --0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314, --0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004, --0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755, -0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459, --1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438, -0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647, --1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592, -0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744, --0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221, --0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709, --0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922, --0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936, -0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438, --1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946, --0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235, -0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211, -0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0890900492668152,0.431337656453252,-0.086775922216475,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261, -0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.11738583445549,-0.0391004681587219,-0.793925583362579,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373, -0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807030773008, "Geometry::Eye_Right_Left", "Shape" { - Version: 100 - Indexes: *1420 { - a: 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,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,381,382,383,384,385,386,387,388,389,390,391,392,405,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,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,539,540,541,542,543,544,545,546,547,548,549,550,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478, -6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529, -7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208, -8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *4260 { - a: 0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449098825454712,0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995814800262451,-0.156295776367188,0.243783712387085,-0.0108641386032104,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0375492572784424,0.00956952571868896,-0.00772762298583984,0.0145010948181152,-0.00116109848022461,-0.00990867614746094,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.243783712387085,-0.0108641982078552,-0.141231536865234,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.491699457168579,0.00249981880187988,0.0465059280395508,0.449099063873291,0.0252541303634644,0.155594825744629,0.334151268005371,0.0235978364944458,0.180244445800781,0.212483406066895,0.00690162181854248,0.197136878967285,0.137148857116699,0.00349897146224976,0.0875425338745117,0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449099063873291,0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.243783712387085, --0.0108641982078552,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.132277488708496,0.00881282985210419,-0.031951904296875,0.134203910827637,0.0119159072637558,-0.00823402404785156,0.147934436798096,0.00172979384660721,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.19727611541748,-0.0363855138421059,0.0537042617797852,0.0876650810241699,-0.014349639415741,0.0323572158813477,0.071815013885498,0.00169742107391357,0.0300350189208984,0.0239934921264648,-0.00214302539825439,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0145010948181152,-0.00116115808486938,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.142739057540894,0.0284625291824341,-0.0102090835571289,0.168860912322998,0.0397201180458069,-0.0202426910400391,0.147934436798096,0.00172978639602661,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.158125400543213,-0.0193670690059662,0.0534534454345703,0.0304460525512695,0.0133194923400879,-0.0105266571044922,0.0192008018493652,0.0329480022192001,-0.0340337753295898,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.0305619239807129,0.0217394530773163,-0.010218620300293,0.0532975196838379,0.00251196324825287,0.00622272491455078,0.169595241546631,-0.0245697200298309,0.0512323379516602,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.147934436798096,0.00172980129718781,0.000176429748535156,0.15197491645813,0.0258671268820763,-0.0171632766723633,0.136911392211914,0.0223250240087509, --0.0242319107055664,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.00511372089385986,0.0152137279510498,0.0203084945678711,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449098825454712,0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995814800262451,-0.156295776367188,0.243783712387085,-0.0108641386032104,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0375492572784424,0.00956952571868896,-0.00772762298583984,0.0145010948181152,-0.00116109848022461,-0.00990867614746094,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.243783712387085,-0.0108641982078552,-0.141231536865234,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.491699457168579,0.00249981880187988,0.0465059280395508,0.449099063873291,0.0252541303634644,0.155594825744629,0.334151268005371,0.0235978364944458,0.180244445800781,0.212483406066895,0.00690162181854248,0.197136878967285,0.137148857116699,0.00349897146224976,0.0875425338745117,0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449099063873291, -0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.243783712387085,-0.0108641982078552,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.132277488708496,0.00881282985210419,-0.031951904296875,0.134203910827637,0.0119159072637558,-0.00823402404785156,0.147934436798096,0.00172979384660721,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.19727611541748,-0.0363855138421059,0.0537042617797852,0.0876650810241699,-0.014349639415741,0.0323572158813477,0.071815013885498,0.00169742107391357,0.0300350189208984,0.0239934921264648,-0.00214302539825439,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0145010948181152,-0.00116115808486938,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.142739057540894,0.0284625142812729,-0.0102090835571289,0.168860912322998,0.0397201180458069,-0.0202426910400391,0.147934436798096,0.00172978639602661,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.158125400543213,-0.0193670690059662,0.0534534454345703,0.0304460525512695,0.0133194923400879,-0.0105266571044922,0.0192008018493652,0.0329480022192001,-0.0340337753295898,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.0305619239807129,0.0217394530773163,-0.010218620300293,0.0532975196838379,0.00251196324825287,0.00622272491455078,0.169595241546631,-0.0245697274804115, -0.0512323379516602,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.147934436798096,0.00172980129718781,0.000176429748535156,0.15197491645813,0.0258671268820763,-0.0171632766723633,0.136911392211914,0.0223250389099121,-0.0242319107055664,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0.104260444641113,-0.0151748061180115,-0.0817766189575195,0.243622779846191,-0.0144773721694946,-0.157573699951172,0.356208324432373,-0.0147475004196167,-0.160111427307129,0.456611156463623,-0.0088956356048584,-0.0859260559082031,0.49645733833313,0.00385284423828125,0.0360069274902344,0.35156774520874,0.0133101940155029,0.188139915466309,0.269849300384521,0.00949859619140625,0.210864067077637,0.170101642608643,0.00426638126373291,0.100146293640137,0.0621051788330078,-0.00112074613571167,0.0590801239013672,0.429880857467651,0.0122145414352417,0.158688545227051,0.0566027164459229,0.00390651822090149,-0.0168790817260742,0.11329460144043,0.00616878271102905,-0.0420942306518555,0.00918054580688477,0.000947564840316772,-0.00546550750732422,0.0336756706237793,-0.00682216882705688,-0.022273063659668,0.131659746170044,0.00679731369018555,-0.0179595947265625,0.151692628860474,-0.00391058623790741,-0.0036163330078125, -0.150131702423096,-0.0124808549880981,0.0252065658569336,0.194314956665039,-0.0375706255435944,0.0534324645996094,0.103732109069824,-0.0193227529525757,0.0375385284423828,0.0803518295288086,-0.00123479962348938,0.001251220703125,0.0255184173583984,-0.00187379121780396,0.0143709182739258,0.0063629150390625,-0.0016140341758728,0.00507354736328125,0.0253682136535645,-0.00208240747451782,0.0204629898071289,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0199603140354156,0.0113003253936768,-0.00263786315917969,0.00975272059440613,0.00552606582641602,-0.00128936767578125,1.78813934326172e-06,-1.54972076416016e-06,0,-1.01327896118164e-06,-1.66893005371094e-06,0,0.0269619226455688,0.0113177299499512,0.00885009765625,0.0221642255783081,0.0175728797912598,0.00786972045898438,0.0378122329711914,0.0285334587097168,0.0133228302001953,0.0218844413757324,0.0352559089660645,0.00905799865722656,0.0734541416168213,0.0578579902648926,-0.0244379043579102,0.0660488605499268,0.0706672668457031,-0.0304670333862305,0.0916662216186523,0.0411264896392822,-0.0118961334228516,0.117982387542725,0.0577690601348877,-0.0151214599609375,0.0254726409912109,0.00959873199462891,-0.00327491760253906,0.00680398941040039,0.0025639533996582,-0.000874519348144531,0.000240802764892578,-0.000154495239257813,5.53131103515625e-05,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0.00340890884399414, -0.00430166721343994,0.000877857208251953,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,-0.00107049942016602,-0.00165319442749023,-0.000279426574707031,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,9.82284545898438e-05,0.000180959701538086,2.6702880859375e-05,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0.0272376537322998,0.000174105167388916,0.00655269622802734,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0.0275740623474121,0.0353116989135742,0.0107564926147461,0.0432562828063965,0.0227468013763428,0.0145292282104492,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, -0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.243783712387085,-0.0108641386032104,-0.141231536865234,0.373579978942871,-0.00995802879333496,-0.156295776367188,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.491699457168579,0.00249981880187988,0.0466518402099609,0.449098825454712,0.0252542495727539,0.155594825744629,0.334151268005371,0.0235977172851563,0.180245399475098, -0.212483406066895,0.00690162181854248,0.197137832641602,0.137148857116699,0.00349879264831543,0.0875415802001953,0.0621218681335449,-3.09944152832031e-06,0.0612897872924805,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.00950193405151367,-0.0006561279296875,0.00911808013916016,0.00954198837280273,-0.00186002254486084,0.00846385955810547,0.0239934921264648,-0.00214302539825439,0.014979362487793,0.071815013885498,0.00169739127159119,0.0300350189208984,0.0876650810241699,-0.0143496096134186,0.0323572158813477,0.19727611541748,-0.0363855287432671,0.0537042617797852,0.178987741470337,-0.00883239880204201,0.0300846099853516,0.147934436798096,0.00177557021379471,0.000176429748535156,0.134203910827637,0.0119159072637558,-0.00823402404785156,0.132277488708496,0.00881284475326538,-0.031951904296875,0.0642046928405762,0.00606220960617065,-0.013580322265625,0.0163464546203613,0.000596731901168823,-0.00969505310058594,0.0145010948181152,-0.00116118788719177,-0.00990867614746094,0.0426630973815918,-0.00564414262771606,-0.0280361175537109,0.0247988700866699,-0.00176239013671875,-0.0180149078369141,0.0219948291778564,0.000664412975311279,-0.0123424530029297,0.0747983455657959,0.0151237696409225,-0.00421333312988281,0.1527419090271,0.0162039790302515,-0.00968647003173828,0.14022421836853,0.0178578123450279,0.00266170501708984,0.139949321746826,0.0179325640201569,0.00835895538330078,0.219900846481323,-0.00494733452796936,0.0422067642211914,0.192359447479248,-0.0328969284892082,0.0512838363647461,0.0590925216674805,-0.00599934160709381,0.0233230590820313,0.0552554130554199,0.0030975341796875,0.0235662460327148,0.0165929794311523,-0.00262224674224854,0.0132026672363281,0.010587215423584,-0.00162965059280396,0.0105953216552734,0.0145664215087891,-0.000950992107391357,0.015263557434082,0.0272364616394043,-0.000262439250946045,0.0258302688598633,0.0529909133911133,0.000549674034118652,0.0579338073730469,0.0976862907409668,0.00253593921661377,0.0731906890869141,0.148930549621582,0.00423431396484375,0.181401252746582,0.270235538482666, -0.0264279842376709,0.167301177978516,0.389108180999756,0.0214017629623413,0.146491050720215,0.40769362449646,0.00215303897857666,0.0509681701660156,0.420200109481812,0.00350797176361084,-0.0454769134521484,0.373639583587646,0.00190949440002441,-0.113078117370605,0.234936237335205,-0.00633871555328369,-0.119570732116699,0.0837616920471191,-0.0062713623046875,-0.071746826171875,0.0432713031768799,-0.00388944149017334,-0.0299768447875977,0.0388623476028442,-0.00165754556655884,-0.0220394134521484,0.0618753433227539,-0.00225460529327393,-0.0387287139892578,0.179849147796631,0.00682032108306885,-0.0692987442016602,0.308836698532104,0.05329430103302,-0.0582733154296875,0.248277902603149,0.0200564861297607,-0.000338554382324219,0.235311985015869,0.0581557750701904,0.0205535888671875,0.246797800064087,0.046625018119812,0.0577030181884766,0.267519950866699,-0.0156550407409668,0.0909881591796875,0.217994689941406,-0.0408935546875,0.0900602340698242,0.224246978759766,-0.0420398712158203,0.0937004089355469,0.0969524383544922,-0.0289382934570313,0.0548248291015625,0.12263298034668,-0.0158578157424927,0.0525789260864258,0.102671146392822,-0.0114836692810059,0.0389642715454102,0.084012508392334,-0.0104409456253052,0.0303964614868164,0.00968265533447266,-0.00200499594211578,0.0123167037963867,0.0140361785888672,-0.00256958603858948,0.0126266479492188,0.0242152214050293,-0.00348204374313354,0.0146427154541016,0.11257791519165,-0.0114530920982361,0.0321006774902344,0.193585157394409,0.0066453218460083,0.044525146484375,0.0742344856262207,0.0139896869659424,0.0065765380859375,0.106448173522949,0.044166088104248,0.00919818878173828,0.0974111557006836,0.0725729465484619,0.00562572479248047,0.0554413795471191,0.0118582397699356,-0.00443458557128906,0.017391562461853,-0.000358574092388153,-0.013397216796875,0.0193077325820923,-0.00130462646484375,-0.0158481597900391,0.0750501155853271,0.0552229881286621,-0.0115242004394531,0.0514262914657593,0.027684211730957,-0.0149755477905273,0.0882445573806763,0.0582420825958252,0.0144567489624023,0.0906147956848145, --0.00106757879257202,0.0214967727661133,0.0729591846466064,0.0188553035259247,0.017765998840332,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0.000917673110961914,0.000937342643737793,0.000233650207519531,1.43051147460938e-05,1.29938125610352e-05,3.814697265625e-06,0.000987052917480469,0.00064241886138916,0.000247955322265625,0.0596766471862793,0.114591956138611,0.0159931182861328,0.0827960968017578,0.104445457458496,0.0213212966918945,0.0657963752746582,0.0096701979637146,0.0158658027648926,0.123732566833496,8.04662704467773e-06,0.0295357704162598,0.090184211730957,-0.0100013613700867,0.0213441848754883,0.0502614974975586,-0.00972408056259155,0.0118331909179688,0.0467782020568848,-0.016068696975708,0.0109944343566895,-0.0183010101318359,-0.0742177963256836,-0.00532817840576172,0.0457687377929688,-0.0282473564147949,0.0105381011962891,0.0121359825134277,0.00457310676574707,-0.00156021118164063,0.0750899314880371,0.0384180545806885,0.00353050231933594,0.0358788967132568,0.0322830677032471,-0.00492477416992188,0.065187931060791,0.0619609355926514,-0.00493049621582031,0.127501010894775,0.0626354217529297,0.0312042236328125,0.0742924213409424,0.048267126083374,0.0184459686279297,0.0274176597595215,0.037442684173584,0.00707817077636719,0.115433692932129,-0.0273041725158691,0.0268640518188477,0.12520694732666,-0.0460220575332642,0.0292901992797852,0.096381664276123,-0.0179497003555298,0.0227775573730469,0.0663161277770996,-0.0582417249679565,0.0149679183959961,0.0870394706726074,-0.0224457979202271,0.0205087661743164,0.105979442596436,-0.021424412727356,0.024960994720459,0.10612154006958,-0.0123015344142914,0.0250129699707031,0.0721683502197266,0.00932585075497627,0.0175495147705078,0.118720054626465,0.0563452243804932,0.0292024612426758,0.0439791679382324,0.0731871128082275,0.0117616653442383,0.147531032562256,0.0444884896278381,0.0359678268432617,0.0748624801635742,0.0554708242416382,0.0187892913818359,0.0254771709442139,0.026197075843811,0.00649452209472656,0.0275394916534424, -0.0192332863807678,0.00691127777099609,0.0233209133148193,0.0794694423675537,0.00684642791748047,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0.00243031978607178,0.000277459621429443,0.000583648681640625,0.0836323499679565,0.00968503952026367,0.0200862884521484,0.114145040512085,0.043732762336731,-0.00831413269042969,0.170982360839844,0.0942243337631226,0.00810527801513672,0.1872239112854,0.065908670425415,0.00882148742675781,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,-1.16825103759766e-05,4.76837158203125e-06,1.9073486328125e-06,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06, -0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06, -0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06, -0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06, -0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, -0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06, -0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0, -0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06, -0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06, -0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0, -5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,9.01222229003906e-05,-2.6702880859375e-05,-6.103515625e-05,0.0321485996246338,-0.00655591487884521,-0.0216398239135742,0.0700879096984863,-0.0146980285644531,-0.0824975967407227,0.223358631134033,-0.0139434337615967,-0.15715503692627,0.330886125564575,-0.01417076587677,-0.159114837646484,0.437490463256836,-0.00856173038482666,-0.0840988159179688,0.476159811019897,0.00368964672088623,-0.0126838684082031,0.402390956878662,0.0114609003067017,0.160143852233887,0.331011295318604,0.0125656127929688,0.187532424926758,0.26105260848999,0.00920557975769043,0.210186004638672,0.16370964050293,0.00413811206817627,0.100796699523926,0.0594801902770996,-0.00112771987915039,0.0589208602905273,0.0241637229919434,-0.00204008817672729,0.020411491394043,0.0523378849029541,0.00293377041816711,-0.0175380706787109,0.00878310203552246,0.000913232564926147,-0.00543594360351563,0.075472354888916,0.0042424201965332,-0.0241355895996094,0.114959001541138,0.00276842713356018,-0.0207653045654297,0.143499851226807,-0.00477446615695953,-0.00384235382080078,0.133800268173218,-0.0123673677444458,0.0228404998779297,0.167060375213623,-0.0316794216632843,0.0475444793701172,0.0866408348083496,-0.0136468112468719,0.0339651107788086,0.0755414962768555,-0.00162374973297119,0.0325021743774414,0.0195083618164063,-0.00312268733978271,0.0130949020385742,0.00583982467651367,-0.00163877010345459,0.00503444671630859,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06, -0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,9.77516174316406e-06,-3.03983688354492e-06,-0.0216598510742188,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,3.814697265625e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-4.24385070800781e-05,2.74628400802612e-05,3.71932983398438e-05,5.7220458984375e-06,0.0001068115234375,0,0.000710010528564453,-6.02006912231445e-06,0.000169754028320313,0.000545978546142578,-6.32107257843018e-05,0.00012969970703125,0.000487804412841797,0.000120282173156738,0.000118255615234375,0.000793933868408203,0.000207424163818359,0.000191688537597656,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4260 { - a: 0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355,0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739, --0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454, -0.314069658517838,-0.133558943867683,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537, --1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064,-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421, --0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978, --0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543, --1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662, --0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458, --0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722, --1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367, --0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742, --0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119, -0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453, --1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342, --0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806, --0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698, -0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681, -0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704, -1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554, --0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614, -0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091, --0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545, --0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207, --0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888, --0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403, --0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588, --0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418, --0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686, --0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952, --0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393, --1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373, --0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661, --0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877, -0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027, --0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128, -0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524, -0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816, --0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285, --0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807663840112, "Geometry::Eye_Right_Up", "Shape" { - Version: 100 - Indexes: *1436 { - a: 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,405,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,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471, -6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6802,6803,6804,6805,6806,6807,6808,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515, -7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172, -8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *4308 { - a: -0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.089337170124054,-0.00554847717285156,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778,-0.103086471557617,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.0190379619598389,0.199966549873352,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.00541162490844727,0.0586265325546265,0.0198440551757813,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00215601921081543,0.0157150626182556,0.00160980224609375,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0190379619598389,0.199966371059418,-0.0269260406494141,0.0111958980560303,0.298364341259003,-0.0650091171264648,0.00152707099914551,0.353335618972778,-0.103085517883301,0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00203275680541992,0.350414991378784,-0.0986337661743164,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.0207724571228027,0.182315528392792,-0.0221233367919922,-0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.0893371105194092,-0.00554847717285156,-0.0207724571228027,0.182315528392792,-0.0221233367919922,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778, --0.103085517883301,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.0190379619598389,0.199966490268707,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.00561618804931641,-0.0023496150970459,0.0375702381134033,0.0109281539916992,-0.00224804878234863,0.0636978447437286,0.0188179016113281,-0.00159883499145508,0.0908813253045082,0.026524543762207,-0.00166559219360352,0.11248779296875,0.0328731536865234,-0.000680923461914063,0.108485393226147,0.0317630767822266,0.000680446624755859,0.0882735997438431,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471039116382599,0.0145492553710938,0.00215721130371094,0.02490234375,0.00716114044189453,0.001190185546875,0.0142379999160767,0.00361347198486328,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.005615234375,-0.0023493766784668,0.0375702232122421,0.0109281539916992,-0.00224804878234863,0.0636978298425674,0.0188188552856445,-0.00159883499145508,0.0908813178539276,0.026524543762207,-0.00166559219360352,0.112487852573395,0.0328731536865234,-0.000680923461914063,0.108485400676727,0.0317630767822266,0.000680446624755859,0.0882736444473267,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471038967370987,0.0145492553710938,0.00215721130371094,0.0249023661017418,0.00716209411621094,0.001190185546875,0.0142379105091095,0.00361251831054688,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0.001190185546875,0.0142379701137543,0.00361347198486328,0.00215721130371094,0.02490234375,0.00716209411621094,0.00268077850341797,0.0471039116382599,0.0145492553710938,0.00168085098266602,0.0699157640337944,0.020665168762207,0.000680446624755859,0.0882736444473267,0.0263462066650391,-0.000680923461914063, -0.108485393226147,0.0317630767822266,-0.00166559219360352,0.112487807869911,0.0328731536865234,-0.00159883499145508,0.0908813253045082,0.026524543762207,-0.00224781036376953,0.0636978298425674,0.0188179016113281,-0.0023493766784668,0.0375702381134033,0.0109281539916992,-0.00262594223022461,0.0172897279262543,0.00561618804931641,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00511372089385986,0.0152137279510498,0.0203084945678711,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.089337170124054,-0.00554847717285156,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778,-0.103086471557617,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.0190379619598389,0.199966549873352,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.00541162490844727,0.0586265325546265,0.0198440551757813,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00215601921081543,0.0157150626182556,0.00160980224609375,0.0105254650115967,0.0434127748012543,-0.000464439392089844,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0190379619598389,0.199966430664063,-0.0269260406494141,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.00152707099914551,0.353335618972778,-0.103085517883301,0.000825643539428711,0.376742660999298,-0.116958618164063,-0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.0185613632202148,0.259619772434235,-0.0453500747680664,-0.0207724571228027,0.182315528392792,-0.0221233367919922,-0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824653148651, -0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.0893371105194092,-0.00554847717285156,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0185613632202148,0.25961971282959,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778,-0.103085517883301,0.0111958980560303,0.298364222049713,-0.0650091171264648,0.0190379619598389,0.199966430664063,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.00561618804931641,-0.0023496150970459,0.0375702381134033,0.0109281539916992,-0.00224804878234863,0.0636978447437286,0.0188179016113281,-0.00159883499145508,0.0908813253045082,0.026524543762207,-0.00166559219360352,0.11248779296875,0.0328731536865234,-0.000680923461914063,0.108485393226147,0.0317630767822266,0.000680446624755859,0.0882735997438431,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471039116382599,0.0145492553710938,0.00215721130371094,0.02490234375,0.00716114044189453,0.001190185546875,0.0142379999160767,0.00361347198486328,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.005615234375,-0.0023493766784668,0.0375702232122421,0.0109281539916992,-0.00224804878234863,0.0636978149414063,0.0188188552856445,-0.00159883499145508,0.0908813029527664,0.026524543762207,-0.00166559219360352,0.112487822771072,0.0328731536865234,-0.000680923461914063,0.108485400676727,0.0317630767822266,0.000680446624755859,0.0882736444473267,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471038967370987,0.0145492553710938,0.00215721130371094,0.0249023661017418,0.00716209411621094,0.001190185546875,0.0142379105091095, -0.00361251831054688,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0.001190185546875,0.0142379701137543,0.00361347198486328,0.00215721130371094,0.02490234375,0.00716209411621094,0.00268077850341797,0.0471039116382599,0.0145492553710938,0.00168085098266602,0.069915771484375,0.020665168762207,0.000680446624755859,0.0882736369967461,0.0263462066650391,-0.000680923461914063,0.108485393226147,0.0317630767822266,-0.00166559219360352,0.112487807869911,0.0328731536865234,-0.00159883499145508,0.0908813178539276,0.026524543762207,-0.00224781036376953,0.0636978447437286,0.0188179016113281,-0.0023493766784668,0.0375702455639839,0.0109281539916992,-0.00262594223022461,0.0172897279262543,0.00561618804931641,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0.00490435818210244,0.0584185123443604,0.000736236572265625,8.69575378601439e-05,0.112455129623413,0.000485420227050781,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,6.22060470050201e-05,0.0804512500762939,0.000347137451171875,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0.000254413869697601,0.00131130218505859,-0.000378608703613281,0,0.0500063896179199,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0.0229835510253906,0.108558654785156,-0.00851726531982422,0.0272183418273926,0.207606196403503,-0.0364656448364258,0.0140557289123535,0.287662386894226,-0.0913305282592773,-0.000494956970214844,0.353499531745911,-0.149645805358887,0.00197863578796387,0.384345054626465,-0.160463333129883,-0.0097804069519043,0.341617822647095,-0.0907707214355469, --0.0343132019042969,0.271619081497192,-0.0584993362426758,-0.0182085037231445,0.21390688419342,-0.0273561477661133,-0.0123066902160645,0.0922927856445313,-0.00557327270507813,-0.00175285339355469,0.375501871109009,-0.126223564147949,-0.00374102592468262,0.041577160358429,0.011561393737793,-0.00382757186889648,0.0799316465854645,0.0214080810546875,-0.00574183464050293,0.00979766249656677,0.00573348999023438,0.01180100440979,0.0292496085166931,-0.00340080261230469,-0.00243163108825684,0.119226098060608,0.030548095703125,-0.00235915184020996,0.150872826576233,0.0383310317993164,-6.81877136230469e-05,0.141830429434776,0.036773681640625,0.00219440460205078,0.109797656536102,0.0297889709472656,0.00316810607910156,0.0876602232456207,0.023895263671875,0.0051722526550293,0.0581252872943878,0.0171747207641602,0.00331211090087891,0.024243175983429,0.00723648071289063,0.00261068344116211,0.00842589139938354,0.00366020202636719,-0.00647449493408203,0.0431656241416931,-0.00140380859375,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0246649980545044,0.246665000915527,0.00303173065185547,0.00334277749061584,0.456263422966003,0.0108251571655273,0.154863953590393,0.703448176383972,0.137066841125488,0.109751880168915,0.378051519393921,0.0480270385742188,0.137885212898254,0.523767709732056,0.0637903213500977,0.191741824150085,0.490942001342773,-0.00625991821289063,0.00177502632141113,0.590751647949219,0.0753660202026367, --0.00606799125671387,0.55527925491333,0.00229835510253906,-0.0103864669799805,0.47050952911377,-0.0252504348754883,-0.0473291873931885,0.452560424804688,-0.0395317077636719,-0.107317447662354,0.126441240310669,-0.0330076217651367,-0.0490045547485352,0.334876775741577,-0.0190849304199219,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0.000286787748336792,0.270729660987854,0.00114631652832031,0.0226919651031494,0.109617352485657,-0.00602340698242188,0.0693250894546509,0.558444738388062,0.0153436660766602,0.0296266078948975,0.571545124053955,0.108798027038574,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, -0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.0175065994262695,0.105868518352509,-0.00580120086669922, -0.0190379619598389,0.199966430664063,-0.0269260406494141,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.00152707099914551,0.353335618972778,-0.103086471557617,0.000825643539428711,0.376742720603943,-0.116812705993652,-0.00203275680541992,0.350415229797363,-0.0986337661743164,-0.00718212127685547,0.302484154701233,-0.0725984573364258,-0.0185613632202148,0.259619832038879,-0.04534912109375,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0106840133666992,0.089337170124054,-0.00554847717285156,-0.00594902038574219,0.0447372794151306,-0.00125312805175781,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0.001190185546875,0.0142379999160767,0.00361251831054688,0.00215721130371094,0.02490234375,0.00716114044189453,0.00268077850341797,0.0471038818359375,0.0145492553710938,0.00168085098266602,0.069915771484375,0.020665168762207,0.000680446624755859,0.0882736295461655,0.0263462066650391,-0.000680923461914063,0.108485426753759,0.0317630767822266,-0.00166559219360352,0.112533560954034,0.0328731536865234,-0.00159883499145508,0.09088134765625,0.026524543762207,-0.00224804878234863,0.0636978149414063,0.0188179016113281,-0.0023496150970459,0.0375702083110809,0.0109281539916992,-0.00262618064880371,0.0172897279262543,0.00561618804931641,0.00215601921081543,0.0157150328159332,0.00160980224609375,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.00358390808105469,0.0276260375976563,0.00311565399169922,0.000456571578979492,0.0215805172920227,0.00531768798828125,-0.000558376312255859,0.031361386179924,0.0100059509277344,-0.000854730606079102,0.0459472686052322,0.0157155990600586,-0.000890493392944336,0.0594192519783974,0.0207805633544922,-0.00107145309448242,0.0698196366429329,0.0249290466308594,-0.00102090835571289,0.0688781663775444,0.0246143341064453,-0.000574111938476563,0.0594909638166428,0.0211057662963867,8.96453857421875e-05,0.0473693981766701,0.0164384841918945,0.000590801239013672,0.0332931578159332,0.0112724304199219,0.000636577606201172,0.0219604671001434,0.00639247894287109, --0.000194072723388672,0.016680896282196,0.00312709808349609,-0.0021357536315918,0.0235031247138977,0.00108814239501953,-0.00487947463989258,0.041851818561554,-0.00106239318847656,-0.00759124755859375,0.0735152363777161,-0.00502490997314453,-0.0081634521484375,0.164313912391663,-0.0167045593261719,-0.00613927841186523,0.24040162563324,-0.0340747833251953,-0.00288772583007813,0.257696390151978,-0.053257942199707,-0.000299453735351563,0.325610280036926,-0.0685253143310547,0.00104475021362305,0.340882778167725,-0.0779905319213867,0.00197219848632813,0.327918887138367,-0.0687875747680664,0.0057682991027832,0.291744232177734,-0.0416946411132813,0.01004958152771,0.204445838928223,-0.0181217193603516,0.0109395980834961,0.0915831923484802,-0.00472450256347656,0.00765681266784668,0.0476394891738892,0.00145149230957031,0.00471532344818115,0.034954845905304,3.33786010742188e-05,0.00605249404907227,0.0652878284454346,-0.00660610198974609,0.00448155403137207,0.0933593511581421,0.020319938659668,0.00531435012817383,0.132469296455383,0.00202846527099609,0.00429344177246094,0.160261631011963,-0.018157958984375,0.00195860862731934,0.179245471954346,-0.0314254760742188,0.00404453277587891,0.148461580276489,-0.0272750854492188,0.00444650650024414,0.132002234458923,-0.0164861679077148,0.00200700759887695,0.107638597488403,-0.0372381210327148,-0.00069427490234375,0.0771942138671875,-0.020167350769043,-0.00242185592651367,0.0480575561523438,-0.00778388977050781,-0.00230503082275391,0.0304046869277954,-0.00259780883789063,-0.00143051147460938,0.0174270868301392,0.000502586364746094,-0.000823020935058594,0.0133453607559204,0.0028839111328125,-0.000825881958007813,0.0161071866750717,0.00625228881835938,-0.00110626220703125,0.0198150649666786,0.00937938690185547,-0.00169134140014648,0.0300872921943665,0.0150079727172852,-0.00193500518798828,0.0374038517475128,0.0191936492919922,-0.00168800354003906,0.0427886843681335,0.0215368270874023,-0.00104331970214844,0.0440613031387329,0.0225696563720703,-0.000339508056640625,0.0382537841796875,0.0189647674560547, -8.72611999511719e-05,0.0307205021381378,0.0146484375,0.000461101531982422,0.023152157664299,0.00980377197265625,0.00125837326049805,0.0197219848632813,0.00579357147216797,0.00271117687225342,0.0221481025218964,0.00260639190673828,0.08687424659729,0.509587287902832,0.10395336151123,0.146368622779846,0.498939871788025,0.055079460144043,0.0327569246292114,0.444639205932617,-0.00915050506591797,0.00209164619445801,0.056284487247467,-0.000683784484863281,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,-0.000103950500488281,0.000472068786621094,-8.58306884765625e-06,-0.0344047546386719,0.210867881774902,-0.0122623443603516,-0.0315563678741455,0.444688558578491,0.00304508209228516,0.0296940803527832,0.507054805755615,0.0551080703735352,0.0460715293884277,0.337499141693115,-0.0439329147338867,-0.0221738815307617,0.31860089302063,-0.0515708923339844,-0.0225749015808105,0.194423675537109,-0.0497236251831055,-0.000167369842529297,0.0625293254852295,-0.0186996459960938,0,0.0660445690155029,-0.0184612274169922,0,0.0660582780838013,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0.00201606750488281,0.0542576313018799,-0.000658988952636719,0.113526344299316,0.178548812866211,-0.0131702423095703,0.0675196647644043,0.282259106636047,-0.0125761032104492,0.0391246676445007,0.185465097427368,-0.0582218170166016,0.0527400970458984,0.188737392425537,-0.0711154937744141,0.0569877624511719,0.17251443862915,-0.0540847778320313,0.0293891429901123, -0.231223821640015,-0.0753583908081055,0.00630688667297363,0.115139007568359,-0.0435619354248047,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06, -0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0, -0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.100006103515625,0,0,0.100006103515625,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0500001907348633,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06, -0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06, -0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06, -0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06, -0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06, -0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06, -0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06, -0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0, -5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,3.31401824951172e-05,8.0108642578125e-05,-6.67572021484375e-06,0.0111274719238281,0.0280662775039673,-0.00357913970947266,0.0220537185668945,0.105113983154297,-0.00862216949462891,0.026519775390625,0.215512752532959,-0.0343732833862305,0.0142712593078613,0.302361130714417,-0.0845785140991211,-0.000134944915771484,0.376999497413635,-0.137645721435547,0.00103354454040527,0.418821334838867,-0.147113800048828,-0.0029139518737793,0.409454941749573,-0.114259719848633,-0.010528564453125,0.3746018409729,-0.0822439193725586,-0.0158753395080566,0.297749280929565,-0.0548686981201172,-0.0179834365844727,0.207919239997864,-0.0261011123657227,-0.0119132995605469,0.0897766351699829,-0.00549697875976563,-0.00624799728393555,0.0419510006904602,-0.00141334533691406,-0.00368404388427734,0.040069580078125,0.0109777450561523,-0.00557565689086914,0.00945815443992615,0.00550556182861328,-0.00386810302734375,0.0768585205078125,0.0200071334838867,-0.00251674652099609,0.114495843648911,0.0282278060913086,-0.00223827362060547,0.144746407866478,0.0352497100830078,0.000264644622802734,0.136624112725258,0.0338764190673828,0.00255155563354492,0.106455981731415,0.0277719497680664,0.00343847274780273,0.0851318836212158,0.0224676132202148,0.00516510009765625,0.0559524297714233,0.0162391662597656,0.00321483612060547,0.0235977172851563,0.00705528259277344,0.00249433517456055,0.00820314884185791,0.00362396240234375,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06, -0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,3.09944152832031e-06,0.0590249300003052,0,0,0.170155763626099,0,0,0.251310229301453,0,0,0.281938791275024,0,0,0.281935691833496,0,0,0.28193724155426,0,0,0.234009504318237,0,0,0.211369156837463,0,0,0.139455080032349,0,0,0.0718922019004822,0,0,7.62939453125e-06,0,0,3.814697265625e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,4.27216291427612e-05,4.48226928710938e-05,5.7220458984375e-06,0.0001068115234375,0,0,-6.09457492828369e-06,0,0,1.53481960296631e-06,0,0,-5.33461570739746e-06,0,0,3.06963920593262e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4308 { - a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, -0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, --1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714, --0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064, --0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796, -0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089, --0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705, --0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653, --0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454, -0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694, --0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369, --1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974, --1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487, -0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869, --1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045, -0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687, --0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682, -0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737, -0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389, -0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297, --0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077, --0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191, --0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393, -0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608, --0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542, -0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835, --1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281, --0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435, --1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527, --1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743, -1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444, -0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027, -0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137, -0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074, --0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337, -0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912, -1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653, --0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.11738583445549,-0.0391004681587219,-0.793925583362579,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205, -0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807663838096, "Geometry::Eye_Right_Down", "Shape" { - Version: 100 - Indexes: *1432 { - a: 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,405,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,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471, -6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6802,6803,6804,6805,6806,6807,6808,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518, -7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174, -8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 - } - Vertices: *4296 { - a: -0.000557422637939453,-0.0152435302734375,-0.00279998779296875,-7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.0118670463562012,-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.480979561805725,0.13865852355957,0.00423359870910645,-0.351379334926605,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0141468048095703,-0.0298134088516235,0.0185604095458984,-0.00112724304199219,-0.0158247947692871,-0.00244331359863281,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0106139183044434,-0.213683784008026,0.0355854034423828,0.00423359870910645,-0.35137939453125,0.0896282196044922,0.00174903869628906,-0.48097962141037,0.13865852355957,-0.0076596736907959,-0.516691148281097,0.135008811950684,-0.011866569519043,-0.491652429103851,0.0999355316162109,-0.00965499877929688,-0.43150407075882,0.0530052185058594,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00244855880737305,-0.213907301425934,-0.00314903259277344,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000416278839111328,-0.11182028055191,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.011866569519043, --0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.48097962141037,0.13865852355957,0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.00112748146057129,-0.0158248245716095,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515014648438,-0.0219583511352539,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037892401218,-0.0383234024047852,-0.0084538459777832,-0.0857223197817802,-0.0327425003051758,-0.00986433029174805,-0.0639732033014297,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519371032714844,-0.00112724304199219,-0.0158248543739319,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515014648438,-0.0219583511352539,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037884950638,-0.0383234024047852,-0.0084538459777832,-0.0857223570346832,-0.0327425003051758,-0.00986433029174805,-0.0639731884002686,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519466400146484,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.00285625457763672,-0.0136551260948181,-0.00519466400146484,-0.00494718551635742,-0.0237579345703125, --0.00962543487548828,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00986433029174805,-0.0639731958508492,-0.0230445861816406,-0.0084538459777832,-0.0857223272323608,-0.0327425003051758,-0.0057673454284668,-0.106037884950638,-0.0383234024047852,0.00181961059570313,-0.110366821289063,-0.038330078125,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00699329376220703,-0.0618515089154243,-0.0219583511352539,0.0060875415802002,-0.036053404211998,-0.0131378173828125,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.00511372089385986,0.0152137279510498,0.0203084945678711,-0.000557422637939453,-0.0152435302734375,-0.00279998779296875,-7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.0118670463562012,-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.480979561805725,0.13865852355957,0.00423359870910645,-0.351379334926605,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0141468048095703,-0.0298134088516235,0.0185604095458984,-0.00112724304199219,-0.0158247947692871,-0.00244331359863281,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0106139183044434,-0.213683784008026,0.0355854034423828,0.00423359870910645,-0.35137939453125,0.0896282196044922,0.00174903869628906,-0.48097962141037,0.13865852355957,-0.0076596736907959,-0.516691148281097,0.135008811950684,-0.011866569519043,-0.491652429103851,0.0999355316162109,-0.00965499877929688,-0.43150407075882,0.0530052185058594,-0.00641536712646484, --0.353680908679962,0.0443191528320313,-0.00244855880737305,-0.213907301425934,-0.00314903259277344,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000416278839111328,-0.11182028055191,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.011866569519043,-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.48097962141037,0.13865852355957,0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.00112748146057129,-0.0158248245716095,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515014648438,-0.0219583511352539,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037892401218,-0.0383234024047852,-0.0084538459777832,-0.0857223197817802,-0.0327425003051758,-0.00986433029174805,-0.0639732033014297,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519371032714844,-0.00112724304199219,-0.0158248543739319,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515163660049,-0.0219583511352539,0.00543522834777832,-0.0888824462890625, --0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037884950638,-0.0383234024047852,-0.0084538459777832,-0.0857223570346832,-0.0327425003051758,-0.00986433029174805,-0.0639731884002686,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519466400146484,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.00285625457763672,-0.0136551260948181,-0.00519466400146484,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00986433029174805,-0.0639731884002686,-0.0230445861816406,-0.0084538459777832,-0.0857223197817802,-0.0327425003051758,-0.0057673454284668,-0.106037870049477,-0.0383234024047852,0.00181961059570313,-0.110366836190224,-0.038330078125,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00699329376220703,-0.0618515089154243,-0.0219583511352539,0.0060875415802002,-0.036053404211998,-0.0131378173828125,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,-0.0499999523162842,0,0,-0.0499939918518066,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,-0.0191645622253418,-0.125084578990936, -4.9591064453125e-05,-0.0165534019470215,-0.257076680660248,0.046295166015625,-0.00422120094299316,-0.426436960697174,0.114619255065918,0.00702023506164551,-0.544161915779114,0.16934871673584,-0.0083315372467041,-0.576777756214142,0.165550231933594,-0.00770854949951172,-0.458649933338165,0.056675910949707,-0.00443410873413086,-0.376652419567108,0.0436382293701172,-0.000653743743896484,-0.277825951576233,-0.00839328765869141,0.000598430633544922,-0.119400441646576,-0.00846767425537109,-0.0125722885131836,-0.533011496067047,0.119406700134277,0.00862360000610352,-0.039508044719696,-0.0143470764160156,0.0107743740081787,-0.0773254185914993,-0.0262718200683594,0.00820565223693848,-0.00790253281593323,-0.00690746307373047,-0.0118691921234131,-0.0319076180458069,0.00249385833740234,0.00865936279296875,-0.116445906460285,-0.0377359390258789,0.00370097160339355,-0.147833228111267,-0.0485076904296875,-0.00942730903625488,-0.138458237051964,-0.0479660034179688,-0.0127339363098145,-0.106282025575638,-0.0392827987670898,-0.0123934745788574,-0.0843368470668793,-0.0317935943603516,-0.0111179351806641,-0.0555984377861023,-0.0223064422607422,-0.00623226165771484,-0.022753894329071,-0.00963211059570313,-0.00362730026245117,-0.00764161348342896,-0.00446796417236328,-0.000436782836914063,-0.0446792244911194,-0.00568962097167969,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,6.52670860290527e-06,-0.00385260581970215, --1.71661376953125e-05,0.000580698251724243,-0.00824034214019775,-2.19345092773438e-05,0.0117418766021729,-0.16671621799469,-0.000441551208496094,0.000373780727386475,-0.138628959655762,-0.000613212585449219,-0.0117788314819336,-0.206770181655884,-0.00222301483154297,-0.0296263694763184,-0.188898086547852,-0.00255203247070313,-0.042130708694458,-0.250246286392212,-0.00860118865966797,-0.0418314933776855,-0.176600694656372,-0.0030670166015625,-0.0432720184326172,-0.151551485061646,-0.00738811492919922,-0.0383427143096924,-0.222984313964844,-0.00935173034667969,-0.00338983535766602,-0.167868852615356,-0.00711345672607422,-0.0198945999145508,-0.0924186706542969,-0.00468349456787109,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0.000568151473999023,-0.00806033611297607,-2.09808349609375e-05,-0.0628702640533447,-0.210161447525024,-0.00443077087402344,-0.0167453289031982,-0.231987714767456,-0.00416755676269531,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06, -0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06, -0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0106139183044434,-0.213683724403381,0.0355854034423828,0.00423359870910645,-0.351379334926605,0.0896282196044922,0.00174903869628906,-0.480979561805725,0.13865852355957,-0.0076596736907959,-0.516691088676453,0.135154724121094,-0.0118670463562012,-0.491652309894562,0.0999355316162109,-0.00965499877929688,-0.43150407075882,0.0530052185058594,-0.00641536712646484,-0.353680968284607,0.0443201065063477,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000557422637939453,-0.0152435302734375,-0.00279998779296875,-0.00285625457763672,-0.0136550664901733,-0.00519561767578125,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00751304626464844,-0.0452880859375,-0.0185632705688477,-0.00871515274047852,-0.0675506591796875,-0.0262365341186523,-0.0084538459777832,-0.0857223346829414,-0.0327425003051758,-0.0057673454284668,-0.106037903577089,-0.0383234024047852,0.00181961059570313,-0.110321038402617,-0.038330078125,0.00543522834777832,-0.0888824388384819,-0.0306100845336914,0.00699329376220703,-0.0618514940142632,-0.0219583511352539,0.0060875415802002,-0.0360534489154816,-0.0131378173828125,0.00487399101257324,-0.0161117613315582,-0.00691032409667969,-0.00112724304199219,-0.0158248841762543,-0.00244331359863281,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.00187087059020996,-0.0277328491210938,-0.00473880767822266,0.00128746032714844,-0.0211288332939148,-0.00659275054931641,0.00291347503662109,-0.0305130034685135,-0.0114994049072266,0.00334739685058594,-0.0448425244539976,-0.0173091888427734, -0.00237441062927246,-0.0581802427768707,-0.0223617553710938,0.00032496452331543,-0.0683944672346115,-0.0268135070800781,-0.00235128402709961,-0.0673828125,-0.0272741317749023,-0.00393962860107422,-0.0579864457249641,-0.0243015289306641,-0.00445699691772461,-0.0459991320967674,-0.0195913314819336,-0.00391054153442383,-0.0322280824184418,-0.0139694213867188,-0.00293302536010742,-0.0212524235248566,-0.00861263275146484,-0.00165700912475586,-0.016369640827179,-0.00518131256103516,-0.000564098358154297,-0.0235702395439148,-0.00437736511230469,8.82148742675781e-05,-0.042285144329071,-0.00474929809570313,-6.43730163574219e-05,-0.0741744637489319,-0.00485515594482422,-0.00319194793701172,-0.188803791999817,0.0233917236328125,-0.0071415901184082,-0.279118776321411,0.0496578216552734,-0.0098423957824707,-0.36152195930481,0.0690212249755859,-0.00989532470703125,-0.428463220596313,0.0898170471191406,-0.00661206245422363,-0.46946108341217,0.0869722366333008,-0.00178408622741699,-0.435204982757568,0.0762434005737305,-0.00174069404602051,-0.322332978248596,0.0442295074462891,-0.00500082969665527,-0.177214503288269,0.00792407989501953,-0.00705790519714355,-0.0926971435546875,-0.00158786773681641,-0.00539016723632813,-0.0483230352401733,-0.00421810150146484,-0.00295746326446533,-0.0353729128837585,-0.00200176239013672,-0.00321483612060547,-0.0660598278045654,0.00277805328369141,-0.00125360488891602,-0.0946289300918579,0.0371036529541016,0.000171661376953125,-0.126208424568176,0.0536413192749023,-0.00149178504943848,-0.19132673740387,0.0718708038330078,-0.00674843788146973,-0.205310940742493,0.116900444030762,-0.0113058090209961,-0.193929314613342,0.112403869628906,-0.0128793716430664,-0.177929043769836,0.100588798522949,-0.010322093963623,-0.109509229660034,0.0487117767333984,-0.00585556030273438,-0.07806396484375,0.0336751937866211,-0.00178766250610352,-0.048469603061676,0.000370025634765625,-0.0002899169921875,-0.0306609869003296,-0.00276660919189453,2.57492065429688e-05,-0.0174392461776733,-0.00375843048095703,-0.000283718109130859, --0.0131438970565796,-0.00510883331298828,-0.000630378723144531,-0.0156768709421158,-0.00828647613525391,-0.000720024108886719,-0.0192474201321602,-0.0112266540527344,-0.000934123992919922,-0.0292693972587585,-0.0170164108276367,-0.000777244567871094,-0.0364944636821747,-0.0208749771118164,-0.000343799591064453,-0.0418670773506165,-0.0236692428588867,0.00043487548828125,-0.0431579351425171,-0.0231838226318359,0.0010840892791748,-0.0374755859375,-0.0195121765136719,0.00136923789978027,-0.0300247371196747,-0.0153970718383789,0.00108027458190918,-0.022624209523201,-0.0107765197753906,0.000132322311401367,-0.0194320641458035,-0.00695133209228516,-0.00140392780303955,-0.0222244262695313,-0.00390911102294922,-0.0333895683288574,-0.191328883171082,-0.0201625823974609,-0.00441551208496094,-0.169866681098938,-0.0175151824951172,0.000931024551391602,-0.0132135152816772,-3.52859497070313e-05,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0.00822925567626953,-0.108883857727051,-0.0105037689208984,-0.0246572494506836,-0.162688732147217,-0.0220460891723633,-0.05692458152771,-0.196503162384033,-0.0225763320922852,-0.00115275382995605,-0.00273442268371582,-0.000508308410644531,0.000392913818359375,-0.00357317924499512,-0.000339508056640625,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,-0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06, -0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,-0.000145435333251953,-0.000645995140075684,-9.63211059570313e-05,0,-0.100005865097046,0,0,-0.100004434585571,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999951362609863,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0, --6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0, -0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999937057495117,0,0,-0.0999937057495117,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06, -0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0, -4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06, -0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0, --7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0, -0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06, -0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06, -0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0, -0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-3.29017639160156e-05,-8.7738037109375e-05,5.7220458984375e-06,-0.0111849308013916,-0.0306190252304077,0.00272750854492188,-0.0184440612792969,-0.121571242809296,0.000260353088378906,-0.0163445472717285,-0.237301707267761,0.0329160690307617,-0.0048067569732666,-0.405415177345276,0.0750932693481445,0.00640010833740234,-0.51403397321701,0.108180999755859,-0.00716185569763184,-0.535477042198181,0.102706909179688,-0.010465145111084,-0.476750791072845,0.0643882751464844,-0.00588798522949219,-0.412103235721588,0.0458545684814453,-0.00331544876098633,-0.360806167125702,0.0175142288208008,-4.10079956054688e-05,-0.266052424907684,-0.00919628143310547,0.000714302062988281,-0.0928317308425903,-0.00841140747070313,-0.000329017639160156,-0.0433914065361023,-0.00564098358154297,0.00834178924560547,-0.0380859375,-0.0137662887573242,0.0079197883605957,-0.00763168931007385,-0.00670242309570313,0.0105183124542236,-0.0743560791015625,-0.0248041152954102,0.00850081443786621,-0.11189877986908,-0.0351934432983398,0.00352954864501953,-0.141950964927673,-0.0450172424316406,-0.0094139575958252,-0.133486926555634,-0.044764518737793,-0.012753963470459,-0.103092938661575,-0.0370893478393555,-0.0123543739318848,-0.0819518864154816,-0.0302667617797852,-0.0108718872070313,-0.0536600947380066,-0.0212211608886719,-0.00600862503051758,-0.0221481323242188,-0.00945186614990234,-0.00346231460571289,-0.00745236873626709,-0.00443553924560547,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06, -0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,-3.33786010742188e-06,-3.03983688354492e-06,1.9073486328125e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,3.814697265625e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,2.74628400802612e-05,3.52859497070313e-05,5.7220458984375e-06,0.0001068115234375,0,0,-6.09457492828369e-06,0,0,1.53481960296631e-06,0,0,-5.33461570739746e-06,0,0,3.06963920593262e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 - } - Normals: *4296 { - a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, -0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, --1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714, --0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064, --0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796, -0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089, --0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705, --0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653, --0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454, -0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694, --0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369, --1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974, --1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487, -0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774, --1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726, -0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157, --1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917, -0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531, -0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947, -0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641, --0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995, --0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702, --0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095, -0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661, --0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097, -0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897, --1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552, --0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352, --0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119, --1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603, --0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365, --0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006, -0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514, --0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394, -0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863, -0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043, --0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581, --0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808, -1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807663838672, "Geometry::Eye_Frown", "Shape" { - Version: 100 - Indexes: *2113 { - a: 315,316,317,318,319,320,321,322,323,324,325,329,330,331,332,333,334,335,336,337,338,339,340,343,344,345,346,347,348,349,350,351,352,353,354,394,395,396,397,398,399,400,401,402,403,404,408,409,410,411,412,413,414,415,416,417,418,419,422,423,424,425,426,427,428,429,430,431,432,433,473,474,475,476,477,478,479,480,481,482,483,487,488,489,490,491,492,493,494,495,496,497,498,501,502,503,504,505,506,507,508,509,510,511,512,552,553,554,555,556,557,558,559,560,561,562,566,567,568,569,570,571,572,573,574,575,576,577,580,581,582,583,584,585,586,587,588,589,590,591,5879,5880,5884,5885,5886,5887,5889,5891,5894,5895,5896,5897,5898,5899,5900,5901,5902,5904,5905,5906,5907,5908,5909,5910,5912,5913,5914,5915,5916,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5931,5934,5935,5938,5940,5943,5944,5945,5946,5948,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5968,5969,5970,5971,5972,5973,5974,5976,5978,5979,5981,5982,5984,5991,5994,5996,5997,5998,5999,6000,6002,6005,6006,6007,6009,6010,6011,6013,6014,6015,6017,6018,6020,6022,6023,6026,6028,6029,6030,6032,6034,6038,6044,6046,6047,6048,6050,6051,6052,6053,6054,6055,6059,6064,6067,6068,6070,6072,6073,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6091,6093,6094,6095,6096,6097,6101,6104,6105,6106,6108,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6155,6156,6157,6158,6159,6160,6161,6162,6163,6165,6169,6172,6174,6175,6176,6179,6186,6189,6190,6191,6192,6193,6194,6196,6197,6198,6199,6200,6201,6202,6203,6204,6206,6208,6210,6211,6214,6215,6216,6217,6219,6220,6225,6226,6228,6229,6231,6235,6236,6237,6238,6240,6241,6242,6245,6246,6248,6249,6250,6251,6252,6253,6254,6258,6259,6260,6261,6263,6264,6265,6266,6267,6269,6270,6271,6272,6275,6277,6278,6279,6282,6283,6284,6285,6286,6287,6289,6290,6291,6293,6295,6296,6297,6298,6299,6301,6302,6303,6304, -6306,6307,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6330,6331,6332,6333,6334,6336,6337,6338,6339,6340,6341,6342,6343,6344,6346,6347,6348,6349,6350,6351,6352,6353,6355,6356,6357,6358,6359,6360,6361,6362,6363,6365,6366,6367,6369,6370,6371,6373,6377,6380,6381,6384,6385,6387,6388,6390,6391,6393,6395,6398,6399,6406,6407,6410,6412,6413,6419,6420,6422,6423,6424,6425,6426,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6496,6497,6498,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6515,6516,6517,6518,6519,6520,6521,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6569,6570,6571,6572,6573,6574,6575,6577,6578,6579,6581,6583,6584,6585,6586,6587,6589,6590,6592,6593,6594,6595,6596,6597,6598,6600,6601,6602,6604,6605,6606,6607,6608,6609,6610,6611,6612,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6643,6644,6645,6646,6647,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6668,6669,6670,6671,6672,6673,6674,6676,6678,6679,6681,6682,6683,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6702,6704,6705,6706,6707,6710,6711,6712,6714,6715,6716,6717,6718,6719,6720,6721,6723,6724,6725,6726,6727,6728,6729,6730,6731,6733,6734,6735,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6748,6749,6752,6753,6754,6755,6756,6757,6759,6760,6761,6762,6763,6764,6766,6767,6768,6769,6771,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6785,6786,6787,6788,6789,6793,6794,6795,6797, -6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6812,6814,6816,6817,6819,6821,6822,6823,6828,6829,6834,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6850,6851,6852,6853,6855,6856,6857,6858,6859,6860,6861,6864,6865,6867,6868,6869,6871,6874,6878,6881,6882,6883,6884,6885,6886,6888,6889,6890,6891,6892,6897,6898,6899,6901,6902,6903,6904,6905,6906,6907,6908,6909,6911,6912,6913,6914,6915,6916,6917,6920,6921,6924,6925,6927,6932,6934,6935,6936,6937,6938,6939,6940,6945,6946,6948,6949,6950,6951,6958,6960,6962,6964,6971,6975,6982,6985,6987,6989,6992,6993,6995,6997,7001,7007,7010,7013,7014,7018,7019,7020,7023,7024,7025,7027,7028,7029,7032,7033,7035,7038,7040,7042,7045,7051,7060,7063,7065,7066,7067,7069,7070,7071,7073,7090,7093,7095,7096,7097,7098,7099,7103,7106,7109,7117,7118,7121,7122,7123,7125,7126,7138,7140,7141,7142,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7158,7160,7162,7163,7164,7166,7167,7168,7169,7173,7175,7176,7178,7179,7182,7183,7185,7188,7190,7191,7195,7196,7200,7201,7202,7205,7206,7207,7209,7210,7213,7214,7217,7220,7222,7224,7227,7228,7229,7230,7231,7232,7235,7238,7240,7241,7242,7244,7245,7249,7251,7253,7254,7255,7256,7258,7260,7261,7263,7264,7290,7291,7292,7293,7294,7297,7298,7300,7302,7304,7305,7307,7309,7311,7312,7313,7314,7315,7316,7324,7325,7326,7329,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7350,7351,7352,7353,7354,7355,7356,7358,7360,7361,7363,7364,7366,7373,7376,7378,7379,7380,7381,7382,7384,7387,7388,7389,7391,7392,7393,7395,7396,7397,7399,7400,7402,7404,7405,7408,7410,7411,7412,7414,7416,7420,7426,7428,7429,7430,7432,7433,7434,7435,7436,7437,7441,7446,7449,7450,7452,7454,7455,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7473,7475,7476,7477,7478,7479,7483,7486,7487,7488,7490,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534, -7535,7537,7538,7539,7540,7541,7542,7543,7544,7545,7547,7551,7554,7556,7557,7558,7561,7568,7571,7572,7573,7574,7575,7576,7578,7579,7580,7581,7582,7583,7584,7585,7586,7588,7590,7592,7593,7596,7597,7598,7599,7601,7602,7607,7608,7610,7611,7613,7617,7618,7619,7620,7622,7623,7624,7627,7628,7630,7631,7632,7633,7634,7635,7636,7640,7641,7642,7643,7645,7646,7647,7648,7649,7651,7652,7653,7654,7657,7659,7660,7661,7664,7665,7666,7667,7668,7669,7671,7672,7673,7675,7677,7678,7679,7680,7681,7683,7684,7685,7686,7688,7689,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7712,7713,7714,7715,7716,7718,7719,7720,7721,7722,7723,7724,7725,7726,7728,7729,7730,7731,7732,7733,7734,7735,7737,7738,7739,7740,7741,7742,7743,7744,7745,7747,7748,7749,7751,7752,7753,7755,7759,7762,7763,7766,7767,7769,7770,7772,7773,7775,7777,7780,7781,7788,7789,7792,7794,7795,7801,7802,7804,7805,7806,7807,7808,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7878,7879,7880,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7897,7898,7899,7900,7901,7902,7903,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7951,7952,7953,7954,7955,7956,7957,7959,7960,7961,7963,7965,7966,7967,7968,7969,7971,7972,7974,7975,7976,7977,7978,7979,7980,7982,7983,7984,7986,7987,7988,7989,7990,7991,7992,7993,7994,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8025,8026,8027,8028,8029,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8050,8051,8052,8053,8054,8055, -8056,8058,8060,8061,8063,8064,8065,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8084,8086,8087,8088,8089,8092,8093,8094,8096,8097,8098,8099,8100,8101,8102,8103,8105,8106,8107,8108,8109,8110,8111,8112,8113,8115,8116,8117,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8130,8131,8134,8135,8136,8137,8138,8139,8141,8142,8143,8144,8145,8146,8148,8149,8150,8151,8153,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8167,8168,8169,8170,8171,8175,8176,8177,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8194,8196,8198,8199,8201,8203,8204,8205,8210,8211,8216,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8232,8233,8234,8235,8237,8238,8239,8240,8241,8242,8243,8246,8247,8249,8250,8251,8253,8256,8260,8263,8264,8265,8266,8267,8268,8270,8271,8272,8273,8274,8279,8280,8281,8283,8284,8285,8286,8287,8288,8289,8290,8291,8293,8294,8295,8296,8297,8298,8299,8302,8303,8306,8307,8309,8314,8316,8317,8318,8319,8320,8321,8322,8327,8328,8330,8331,8332,8333,8340,8342,8344,8346,8353,8357,8364,8367,8369,8371,8374,8375,8377,8379,8383,8389,8392,8395,8396,8400,8401,8402,8405,8406,8407,8409,8410,8411,8414,8415,8417,8420,8422,8424,8427,8433,8442,8445,8447,8448,8449,8451,8452,8453,8455,8472,8475,8477,8478,8479,8480,8481,8485,8488,8491,8499,8500,8503,8504,8505,8507,8508,8520,8522,8523,8524,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8540,8542,8544,8545,8546,8547,8548,8549,8553,8555,8556,8558,8559,8562,8563,8567,8569,8570,8574,8575,8579,8580,8581,8584,8586,8587,8590,8591,8594,8597,8599,8601,8603,8604,8605,8606,8607,8610,8613,8615,8616,8617,8619,8620,8622,8624,8626,8627,8628,8629,8631,8633,8634,8636,8637,8660,8661,8662,8663,8666,8667,8669,8671,8673,8674,8676,8678,8679,8680,8681,8682,8683,8691,8692,8693,8696,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8710,8711,8713,8715,8716,8717,8718,8719,8720,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8735,8736,8737,8738,8740,8741,8742,8743,8744,8745,8747,8748,8749,8750,8751,8752,8753,8754, -8755,8757,8758,8759,8760,8761,8762,8763,8764,8765,8768,8769,8770,8771,8772,8774,8775,8776,8777,8778,8779,8780,8782,8783,8784,8785,8786,8787,8788,8789,8790,8792,8793,8794,8795,8796,8797,8798,8799 - } - Vertices: *6339 { - a: -0.000566005706787109,-0.0170508623123169,-0.000692367553710938,0.00303840637207031,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431003570557,-0.011993408203125,0.0131235122680664,-0.0528204441070557,-0.00647544860839844,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340700149536133,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.085599422454834,-0.011622428894043,-0.00211310386657715,-0.0798652172088623,-0.0209531784057617,0.00265836715698242,-0.0556373596191406,-0.00635147094726563,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,-0.00211334228515625,-0.0798652172088623,-0.0209522247314453,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.00702142715454102,-0.0759894847869873,0.0001373291015625,0.0131235122680664,-0.0528203845024109,-0.00647544860839844,0.00488185882568359,-0.0435431599617004,-0.011993408203125,0.00303840637207031,-0.0311987996101379,-0.00477218627929688,-0.000566005706787109,-0.0170509219169617,-0.000692367553710938,-0.000565528869628906,-0.0170509219169617,-0.000692367553710938,0.00303792953491211,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431599617004,-0.011993408203125,0.0131235122680664,-0.0528204441070557,-0.00647449493408203,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.00211334228515625,-0.0798652172088623,-0.0209522247314453,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00173830986022949,-0.0393043756484985, --0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.000566005706787109,-0.0170508623123169,-0.000692367553710938,-0.00303840637207031,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435432195663452,-0.011993408203125,-0.0131235122680664,-0.0528204441070557,-0.00647544860839844,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00425052642822266,-0.085599422454834,-0.011622428894043,0.00211310386657715,-0.0798652172088623,-0.0209531784057617,-0.00265836715698242,-0.0556373596191406,-0.00635147094726563,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00425052642822266,-0.0855995416641235,-0.0116214752197266,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.00702142715454102,-0.0759894847869873,0.0001373291015625,-0.0131235122680664,-0.0528203845024109,-0.00647544860839844,-0.00488185882568359,-0.0435431599617004,-0.011993408203125,-0.00303840637207031,-0.0311987996101379,-0.00477218627929688,0.000566005706787109,-0.0170509219169617,-0.000692367553710938,0.000565528869628906,-0.0170509219169617,-0.000692367553710938,-0.00303792953491211,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435431599617004,-0.011993408203125,-0.0131235122680664,-0.0528204441070557,-0.00647449493408203,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00425052642822266,-0.0855995416641235,-0.0116214752197266,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00265860557556152, --0.0556374192237854,-0.00635242462158203,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,-0.000566005706787109,-0.0170508623123169,-0.000692367553710938,0.00303840637207031,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431003570557,-0.011993408203125,0.0131235122680664,-0.0528204441070557,-0.00647544860839844,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340700149536133,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.085599422454834,-0.011622428894043,-0.00211310386657715,-0.0798652172088623,-0.0209531784057617,0.00265836715698242,-0.0556373596191406,-0.00635147094726563,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,-0.00211334228515625,-0.0798652172088623,-0.0209522247314453,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.00702142715454102,-0.0759894847869873,0.0001373291015625,0.0131235122680664,-0.0528203845024109,-0.00647544860839844,0.00488185882568359,-0.0435431599617004,-0.011993408203125,0.00303840637207031,-0.0311987996101379,-0.00477218627929688,-0.000566005706787109,-0.0170509219169617,-0.000692367553710938,-0.000565528869628906,-0.0170509219169617,-0.000692367553710938,0.00303792953491211,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431599617004,-0.011993408203125,0.0131235122680664,-0.0528203845024109,-0.00647449493408203,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.00211334228515625, --0.0798652172088623,-0.0209522247314453,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.000566005706787109,-0.0170508623123169,-0.000692367553710938,-0.00303840637207031,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435432195663452,-0.011993408203125,-0.0131235122680664,-0.0528204441070557,-0.00647544860839844,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00425052642822266,-0.085599422454834,-0.011622428894043,0.00211310386657715,-0.0798652172088623,-0.0209531784057617,-0.00265836715698242,-0.0556373596191406,-0.00635147094726563,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00425052642822266,-0.0855996012687683,-0.0116214752197266,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.00702142715454102,-0.0759894847869873,0.0001373291015625,-0.0131235122680664,-0.0528203845024109,-0.00647544860839844,-0.00488185882568359,-0.0435431599617004,-0.011993408203125,-0.00303840637207031,-0.0311987996101379,-0.00477218627929688,0.000566005706787109,-0.0170509219169617,-0.000692367553710938,0.000565528869628906,-0.0170509219169617,-0.000692367553710938,-0.00303792953491211,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435431599617004,-0.011993408203125,-0.0131235122680664,-0.0528203845024109,-0.00647449493408203,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297, --0.00425052642822266,-0.0855995416641235,-0.0116214752197266,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00265860557556152,-0.0556374192237854,-0.00635242462158203,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-0.0627508163452148,-0.0162181854248047,0,-0.115747690200806,-0.0369243621826172,0,-6.89923763275146e-06,0,0,-9.23275947570801e-05,0.000410079956054688,0,-0.0451819896697998,0.0201606750488281,0,-0.0940375328063965,-0.00228500366210938,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-9.77516174316406e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.00135803222656e-05,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-2.21729278564453e-05,0,0,-1.00135803222656e-05,0,0,-2.24113464355469e-05,0,0,-1.29938125610352e-05,0,0,-1.71661376953125e-05,0,0,-0.271533966064453,-0.142976760864258,0,-0.00580501556396484,0.00164985656738281,0,-2.09808349609375e-05,0,0,-9.5367431640625e-06,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-9.89437103271484e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,-2.86102294921875e-05,-7.09295272827148e-05,-8.96453857421875e-05,6.24656677246094e-05,-0.000263214111328125,-5.91278076171875e-05,0.000182390213012695,-0.000272393226623535,-4.86373901367188e-05,0.000196933746337891,-0.000431060791015625,-0.000131607055664063,0.000128030776977539,-0.000278472900390625,0.000164031982421875, -0.000115394592285156,-0.000629425048828125,0.000411033630371094,-0.000132560729980469,-0.000238656997680664,-0.000151634216308594,5.29289245605469e-05,-0.000141143798828125,-0.000199317932128906,-8.91685485839844e-05,-0.000214338302612305,-9.918212890625e-05,-3.19480895996094e-05,1.1444091796875e-05,2.86102294921875e-06,1.09672546386719e-05,-3.814697265625e-06,-8.0108642578125e-05,-7.86781311035156e-05,-0.000385284423828125,-0.000125885009765625,0,5.36441802978516e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,1.09672546386719e-05,-3.73125076293945e-05,-7.72476196289063e-05,0,-1.9073486328125e-05,0,0,2.29477882385254e-06,0,0,-2.21133232116699e-05,0,0,-9.89437103271484e-06,0,0,5.36441802978516e-06,0,0,-1.29938125610352e-05,0,-2.81333923339844e-05,-8.30888748168945e-05,-7.62939453125e-05,0,-7.15255737304688e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05, -0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-9.5367431640625e-06,0,0,-2.288818359375e-05,0,0.198601305484772,-0.233448028564453,0.0351734161376953,0.181233584880829,-0.0730688571929932,0.073124885559082,0.393107891082764,-0.222312331199646,0.207329750061035,0.619045376777649,-0.284741878509521,0.127145767211914,0.496301651000977,-0.656781673431396,0.277639389038086,0.458295345306396,-0.572644710540771,0.187798500061035,-0.0321366786956787,-0.709088683128357,0.0310096740722656,-0.0113766193389893,-0.725598812103271,-0.0391607284545898,-0.048736572265625,-0.771039605140686,0.066248893737793,-0.166918039321899,-0.78978967666626,-0.0831832885742188,-0.150293827056885,-0.760715484619141,0.0342578887939453,-0.0663290023803711,-0.672333240509033,0.146062850952148,0.00377178192138672,-0.410556793212891,0.20185661315918,-0.0562400817871094,-0.475208282470703,0.0470952987670898,-0.0753993988037109,-0.0409398078918457,-0.043940544128418,0.00100612640380859,-0.00134944915771484,0.00163745880126953,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-2.20537185668945e-05,0,0,-6.79492950439453e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-1.31130218505859e-05,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,-1.62124633789063e-05,0,0,-6.91413879394531e-06,0,0,-1.31130218505859e-05,0,0,-9.89437103271484e-06,0,0,-1.59740447998047e-05,0,0,-9.90927219390869e-06, -0,0,-1.60932540893555e-05,0,0.0435707271099091,0.0315025150775909,0.0380573272705078,0,-1.29938125610352e-05,0,0,-3.814697265625e-06,0,-7.15255737304688e-05,-1.28746032714844e-05,-9.10758972167969e-05,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-6.85453414916992e-06,0,0,-6.86012208461761e-06,0,0,-6.91413879394531e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,2.14576721191406e-06,0,0.0575366020202637,0.0370140075683594,0.0461807250976563,0.0562986731529236,0.037187933921814,0.049687385559082,0.0939074456691742,-0.0960333347320557,0.0430774688720703,0.247199416160583,-0.147589981555939,0.134914398193359,0.192692637443542,-0.650681018829346,0.10606575012207,0.203786373138428,-0.704376697540283,0.156311988830566,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,5.24520874023438e-06,0,0,-2.26497650146484e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05, -0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,2.14576721191406e-06,0,0,2.14576721191406e-06,0,0,2.32458114624023e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05, -0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,5.36441802978516e-06,0,0,-2.21580266952515e-05,0,0,-6.67572021484375e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,4.76837158203125e-06,0,0,-2.19345092773438e-05,0,0,4.76837158203125e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00265836715698242,-0.0556373596191406,-0.00635147094726563,-0.00211310386657715,-0.0798652172088623,-0.0209522247314453,0.00425052642822266,-0.085599422454834,-0.011622428894043,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.0131235122680664,-0.0528204441070557,-0.0457086563110352,0.00488138198852539,-0.0435432195663452,-0.011993408203125,0.00303840637207031,-0.0311988592147827,-0.00477218627929688,-0.000566005706787109,-0.0170508623123169,-0.000691413879394531,-7.62939453125e-05,-0.000263214111328125,0.00017547607421875,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.60038471221924e-05,0,0,2.29477882385254e-06,0,0,-1.9073486328125e-05, -0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.60336494445801e-05,0,-5.43594360351563e-05,-0.00015944242477417,-0.000225067138671875,0.00511384010314941,-0.015213668346405,-0.0203084945678711,-9.58442687988281e-05,-0.000400543212890625,-9.918212890625e-05,0,-9.89437103271484e-06,0,0,-9.92417335510254e-06,0,0,-1.29640102386475e-05,0,0,-1.60187482833862e-05,0,0,2.29477882385254e-06,0,0,-1.9073486328125e-05,0,0,5.33834099769592e-06,0,0,-6.85453414916992e-06,0,0,-2.21133232116699e-05,0,0,-1.29342079162598e-05,0,0,-1.29938125610352e-05,0,-3.29017639160156e-05,5.36441802978516e-06,-2.38418579101563e-05,-0.00038909912109375,-0.0136665105819702,0.000261306762695313,0.00375270843505859,-0.0486670732498169,0.000476837158203125,0.0146803855895996,-0.0940529108047485,-0.00689125061035156,0.0110211372375488,-0.111713409423828,-0.0127944946289063,-0.00789356231689453,-0.147260189056396,-0.0035400390625,-0.0175118446350098,-0.153586626052856,0.00140762329101563,-0.00359797477722168,-0.148538827896118,-0.00735378265380859,0.00955343246459961,-0.142941951751709,-0.0207509994506836,0.0134623050689697,-0.135285139083862,-0.0278902053833008,0.0101485252380371,-0.113632917404175,-0.0218610763549805,-0.00143623352050781,-0.0886878967285156,-0.0259761810302734,-0.0046234130859375,-0.0507667064666748,-0.0211696624755859,0.000264406204223633,-0.0841621160507202,-0.0196971893310547,0.0259188413619995,-0.126172602176666,-0.0308198928833008,0.0564348697662354,-0.168204545974731,-0.0282449722290039,0.0518314838409424,-0.211633920669556,-0.0366058349609375,0.0191142559051514,-0.228726863861084,-0.0295343399047852,-0.015955924987793,-0.254142045974731,0.0115470886230469,-0.0563993453979492,-0.219217538833618,-0.02032470703125,-0.0640130043029785,-0.208976030349731,-0.0344362258911133,-0.0160698890686035,-0.169751644134521,-0.0448808670043945,0.0117130279541016,-0.100040435791016,-0.0353326797485352,0.00673294067382813,-0.0469399094581604,-0.0134868621826172,0.00221538543701172,-0.0010993480682373,-0.00461578369140625, -4.48226928710938e-05,6.03199005126953e-05,-6.19888305664063e-05,0,5.36441802978516e-06,0,0,-9.95397567749023e-06,0,0,-1.29938125610352e-05,0,0,-1.9073486328125e-05,0,0,-9.92417335510254e-06,0,0,-9.92417335510254e-06,0,0,-3.814697265625e-06,0,-7.48634338378906e-05,-0.000659942626953125,-0.0001373291015625,0.117941856384277,-0.702539920806885,0.113059997558594,0.445447325706482,-0.632663726806641,0.154514312744141,0.301316738128662,-0.242453813552856,0.107141494750977,0.162029385566711,-0.0936257243156433,0.0846195220947266,0.0691169500350952,0.0293723940849304,0.0563573837280273,0,5.34951686859131e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-6.79492950439453e-06,0,-0.000739574432373047,7.55786895751953e-05,0.000294685363769531,0.000155448913574219,-0.000107526779174805,-0.000415802001953125,-0.0234146118164063,-0.142871856689453,0.0171165466308594,-0.0492358207702637,-0.392490386962891,0.267827033996582,-0.0761919021606445,-0.664289116859436,0.219707489013672,-0.0780789852142334,-0.740393757820129,0.167500495910645,-0.0397133827209473,-0.721021294593811,0.0830955505371094,0.02530837059021,-0.417987942695618,0.0143365859985352,-0.0278544425964355,-0.45692503452301,0.115342140197754,-0.0813326835632324,-0.380844712257385,0.133084297180176,-0.0796103477478027,-0.22330379486084,0.00683116912841797,-0.0153617858886719,-0.115528106689453,-0.0500507354736328,0.00555896759033203,-0.0514595508575439,-0.0303335189819336,0.000191688537597656,-0.000174760818481445,-0.000385284423828125,-0.0001220703125,5.36441802978516e-06,4.24385070800781e-05,-2.62260437011719e-05,3.27825546264648e-05,1.66893005371094e-05,0,-3.814697265625e-06,0,0,5.33834099769592e-06,0,0,-2.21133232116699e-05,0,0,-1.29938125610352e-05,0,0,-1.60932540893555e-05,0,0,-9.89437103271484e-06,0,0,-6.91413879394531e-06,0,0,5.36441802978516e-06,0,0,2.26497650146484e-06,0,0,-1.29640102386475e-05, -0,0.00468754768371582,0.000560760498046875,0.00362491607666016,0.0479890108108521,-0.0748481750488281,0.0213432312011719,0.157313585281372,-0.166788339614868,0.0218429565429688,0.164013147354126,-0.205063581466675,0.0148906707763672,0.070509672164917,-0.316425323486328,-0.0101642608642578,0.130076199769974,-0.283966541290283,0.100852012634277,0.189201891422272,-0.218106746673584,0.0156993865966797,0.195440411567688,-0.517203330993652,0.0190715789794922,-0.0195471048355103,-0.751078128814697,0.142290115356445,0.01531982421875,-0.765299081802368,0.109026908874512,-0.0976181030273438,-0.836844444274902,0.152434349060059,-0.143328666687012,-0.645481109619141,0.0880002975463867,0.0182294845581055,-0.187814712524414,0.0611109733581543,0,-1.57356262207031e-05,0,0,5.24520874023438e-06,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,-1.9073486328125e-05,0,0,-2.21133232116699e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.57356262207031e-05,0,0,-3.814697265625e-06,0,0,-2.19345092773438e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29677355289459e-05,0,0,-1.29658728837967e-05,0,0,-6.91413879394531e-06,0,0,-2.21729278564453e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.62124633789063e-05,0,0,-1.60932540893555e-05,0,0,-1.29640102386475e-05,0,0,-9.89437103271484e-06,0,0,-1.9073486328125e-05,0,0,2.38418579101563e-06,0,0,-6.91413879394531e-06,0,0,2.26497650146484e-06,0,0,-9.92044806480408e-06,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.29938125610352e-05,0,0,-1.29669206216931e-05,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.59740447998047e-05,0,0,-6.79492950439453e-06, -0,0,-6.86943531036377e-06,0,0,-9.89437103271484e-06,0,0,5.24520874023438e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.28746032714844e-05,0,0,-9.98377799987793e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-3.814697265625e-06,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,2.38418579101563e-06,0,0,5.48362731933594e-06,0,0,-2.21729278564453e-05,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.59740447998047e-05,0,0,-2.19345092773438e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.29640102386475e-05,0,0,-2.21729278564453e-05,0,0,-6.91413879394531e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,2.38418579101563e-06,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-9.92044806480408e-06,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.77516174316406e-06,0,0,-6.91413879394531e-06,0,0,-6.85453414916992e-06,0,0,5.36441802978516e-06,0,0,-1.59740447998047e-05,0,0,-9.77516174316406e-06,0,0,-2.19345092773438e-05,0,0,2.38418579101563e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-6.86012208461761e-06,0,0,2.26497650146484e-06,0,0,-1.59740447998047e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,-1.31130218505859e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-1.59740447998047e-05,0,0,5.33758429810405e-06,0,0,-1.29938125610352e-05,0,0,-6.85453414916992e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05, -0,0,5.36441802978516e-06,0,0,-6.86058774590492e-06,0,0,5.27501106262207e-06,0,0,-1.29640102386475e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,2.32458114624023e-06,0,0,-6.86757266521454e-06,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,0,-1.31130218505859e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,-1.62124633789063e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,2.14576721191406e-06,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-2.24113464355469e-05,0,0,-1.28746032714844e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-6.67572021484375e-06,0,0,5.48362731933594e-06,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.31130218505859e-05,0,0,-6.88433647155762e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.59740447998047e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,5.7220458984375e-06,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0.000611782073974609,-0.00208759307861328,0.00178861618041992,0.00208330154418945,-0.00717544555664063,0.00326395034790039,0.000888824462890625,-0.0125370025634766,0.00101089477539063,0.000283718109130859,-0.0128240585327148,0.000726699829101563,-0.000833272933959961,-0.0128240585327148,0.00227832794189453,-0.000962257385253906,-0.0122013092041016, -0.00332450866699219,-0.000764250755310059,-0.0101289749145508,8.20159912109375e-05,-0.00137609243392944,-0.00813007354736328,0.00103569030761719,0,-1.52587890625e-05,0,0,-9.5367431640625e-06,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.23977661132813e-05,0,0,-1.62124633789063e-05,0,0,-1.23977661132813e-05,0,0,-2.09808349609375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-7.15255737304688e-06,0,0,-1.31130218505859e-05,0,0,-1.00135803222656e-05,0,0,-6.79492950439453e-06,0,0,-1.62124633789063e-05,0,0,-2.20537185668945e-05,0,0,5.24520874023438e-06,0,0,-1.32322311401367e-05,0,0,-7.15255737304688e-06,0,0,-1.60932540893555e-05,0,0,-1.60187482833862e-05,0,0,5.33461570739746e-06,0,0,2.27987766265869e-06,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-9.5367431640625e-06,0,0,-1.23977661132813e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.52587890625e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-1.31130218505859e-05,0,0,5.24520874023438e-06,0,0,2.32458114624023e-06,0,0,-2.19345092773438e-05,0,0,5.7220458984375e-06,0,0,-2.09808349609375e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.31130218505859e-05,0,0,5.36441802978516e-06,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,2.14576721191406e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.33514404296875e-05,0,0,-1.52587890625e-05, -0,0,-2.09808349609375e-05,0,0,-1.32322311401367e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-9.77516174316406e-06,0,0,2.14576721191406e-06,0,0,-6.85453414916992e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05, -0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-9.5367431640625e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05, -0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.288818359375e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,2.86102294921875e-05,-7.09295272827148e-05,-8.96453857421875e-05,-6.24656677246094e-05,-0.000263214111328125,-5.91278076171875e-05,-0.000182390213012695,-0.000272393226623535,-4.86373901367188e-05,-0.000196933746337891,-0.000431060791015625,-0.000131607055664063,-0.000128030776977539,-0.000278472900390625,0.000164031982421875,-0.000115394592285156,-0.000629425048828125,0.000411033630371094,0.000132560729980469,-0.000238656997680664,-0.000151634216308594,-5.29289245605469e-05,-0.000141143798828125,-0.000199317932128906,8.91685485839844e-05,-0.000214338302612305,-9.918212890625e-05,3.19480895996094e-05,1.1444091796875e-05,2.86102294921875e-06,-1.09672546386719e-05,-3.814697265625e-06,-8.0108642578125e-05,7.86781311035156e-05,-0.000385165214538574,-0.000125885009765625,0,5.36441802978516e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,-1.09672546386719e-05,-3.73125076293945e-05,-7.72476196289063e-05,0,-1.9073486328125e-05,0,0,2.29477882385254e-06,0,0,-2.21133232116699e-05,0,0,-9.92417335510254e-06,0,0,5.36441802978516e-06,0,0,-1.29938125610352e-05,0,2.81333923339844e-05,-8.30888748168945e-05,-7.62939453125e-05,0,-7.15255737304688e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05, -0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-9.5367431640625e-06,0,0,-2.288818359375e-05,0,-0.198601305484772,-0.233448028564453,0.0351734161376953,-0.181233584880829,-0.0730688571929932,0.073124885559082,-0.393107891082764,-0.222312331199646,0.207329750061035,-0.619045376777649,-0.284741878509521,0.127145767211914,-0.496301651000977,-0.656781673431396,0.277639389038086,-0.458295345306396,-0.572644710540771,0.187798500061035,0.0321366786956787,-0.709088683128357,0.0310096740722656,0.0113766193389893,-0.725598812103271,-0.0391607284545898,0.048736572265625,-0.771039605140686,0.066248893737793, -0.166918039321899,-0.78978967666626,-0.0831832885742188,0.150293827056885,-0.760715484619141,0.0342578887939453,0.0663290023803711,-0.672333240509033,0.146062850952148,-0.00377178192138672,-0.410556793212891,0.20185661315918,0.0562400817871094,-0.475208282470703,0.0470952987670898,0.0753993988037109,-0.0409398078918457,-0.043940544128418,-0.00100612640380859,-0.00134944915771484,0.00163745880126953,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-2.20537185668945e-05,0,0,-6.79492950439453e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-1.31130218505859e-05,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,-1.62124633789063e-05,0,0,-6.91413879394531e-06,0,0,-1.31130218505859e-05,0,0,-9.89437103271484e-06,0,0,-1.59740447998047e-05,0,0,-9.90927219390869e-06,0,0,-1.60932540893555e-05,0,-0.0435707271099091,0.0315025150775909,0.0380573272705078,0,-1.29938125610352e-05,0,0,-3.814697265625e-06,0,7.15255737304688e-05,-1.28746032714844e-05,-9.10758972167969e-05,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-6.85453414916992e-06,0,0,-6.86012208461761e-06,0,0,-6.91413879394531e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,2.14576721191406e-06,0,-0.0575366020202637,0.0370140075683594,0.0461807250976563,-0.0562986731529236,0.037187933921814,0.049687385559082,-0.0939074456691742,-0.0960333347320557,0.0430774688720703,-0.247199416160583,-0.147589981555939,0.134914398193359,-0.192692637443542,-0.650681018829346,0.10606575012207,-0.203786373138428,-0.704376697540283,0.156311988830566,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06, -0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,5.24520874023438e-06,0,0,-2.26497650146484e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,2.14576721191406e-06,0,0,2.14576721191406e-06,0,0,2.32458114624023e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06, -0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,5.36441802978516e-06,0,0,-2.21580266952515e-05,0,0,-6.67572021484375e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,4.76837158203125e-06,0,0,-2.19345092773438e-05,0,0,4.76837158203125e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867, --0.00265836715698242,-0.0556373596191406,-0.00635147094726563,0.00211310386657715,-0.0798652172088623,-0.0209522247314453,-0.00425052642822266,-0.085599422454834,-0.011622428894043,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.0131235122680664,-0.0528204441070557,-0.00647544860839844,-0.00488138198852539,-0.0435432195663452,-0.011993408203125,-0.00303840637207031,-0.0311988592147827,-0.00477218627929688,0.000566005706787109,-0.0170508623123169,-0.000691413879394531,7.62939453125e-05,-0.000263214111328125,0.00017547607421875,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.60038471221924e-05,0,0,2.29105353355408e-06,0,0,-1.9073486328125e-05,0,0,-1.90809369087219e-05,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.60336494445801e-05,0,5.43594360351563e-05,-0.000159472227096558,-0.000225067138671875,-0.00511384010314941,-0.015213668346405,-0.0203084945678711,9.58442687988281e-05,-0.000400543212890625,-9.918212890625e-05,0,-9.89437103271484e-06,0,0,-9.92417335510254e-06,0,0,-1.2960284948349e-05,0,0,-1.60187482833862e-05,0,0,2.32458114624023e-06,0,0,-1.9073486328125e-05,0,0,5.33834099769592e-06,0,0,-6.83963298797607e-06,0,0,-2.21133232116699e-05,0,0,-1.29342079162598e-05,0,0,-1.29938125610352e-05,0,3.29017639160156e-05,5.36441802978516e-06,-2.38418579101563e-05,0.00038909912109375,-0.0136665105819702,0.000261306762695313,-0.00375270843505859,-0.0486670732498169,0.000476837158203125,-0.0146803855895996,-0.0940529108047485,-0.00689125061035156,-0.0110211372375488,-0.111713409423828,-0.0127944946289063,0.00789356231689453,-0.147260189056396,-0.0035400390625,0.0175118446350098,-0.153586626052856,0.00140762329101563,0.00359797477722168,-0.148538827896118,-0.00735378265380859,-0.00955343246459961,-0.142941951751709,-0.0207509994506836,-0.0134623050689697,-0.135285139083862,-0.0278902053833008,-0.0101485252380371,-0.113632917404175, --0.0218610763549805,0.00143623352050781,-0.0886878967285156,-0.0259761810302734,0.0046234130859375,-0.0507667064666748,-0.0211696624755859,-0.000264406204223633,-0.0841621160507202,-0.0196971893310547,-0.0259188413619995,-0.126172602176666,-0.0308198928833008,-0.0564348697662354,-0.168204545974731,-0.0282449722290039,-0.0518314838409424,-0.211633920669556,-0.0366058349609375,-0.0191142559051514,-0.228726863861084,-0.0295343399047852,0.015955924987793,-0.254142045974731,0.0115470886230469,0.0563993453979492,-0.219217538833618,-0.02032470703125,0.0640130043029785,-0.208976030349731,-0.0344362258911133,0.0160698890686035,-0.169751644134521,-0.0448808670043945,-0.0117130279541016,-0.100040435791016,-0.0353326797485352,-0.00673294067382813,-0.0469399094581604,-0.0134868621826172,-0.00221538543701172,-0.0010993480682373,-0.00461578369140625,-4.48226928710938e-05,6.03199005126953e-05,-6.19888305664063e-05,0,5.36441802978516e-06,0,0,-9.95397567749023e-06,0,0,-1.29938125610352e-05,0,0,-1.9073486328125e-05,0,0,-9.92417335510254e-06,0,0,-9.92417335510254e-06,0,0,-3.814697265625e-06,0,7.48634338378906e-05,-0.000659942626953125,-0.0001373291015625,-0.117941856384277,-0.702539920806885,0.113059997558594,-0.445447325706482,-0.632663726806641,0.154514312744141,-0.301316738128662,-0.242453813552856,0.107141494750977,-0.162029385566711,-0.0936257243156433,0.0846195220947266,-0.0691169500350952,0.0293723940849304,0.0563573837280273,0,5.34951686859131e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-6.79492950439453e-06,0,0.000739574432373047,7.55786895751953e-05,0.000294685363769531,-0.000155448913574219,-0.000107526779174805,-0.000415802001953125,0.0234146118164063,-0.142871856689453,0.0171165466308594,0.0492358207702637,-0.392490386962891,0.267827033996582,0.0761919021606445,-0.664289116859436,0.219707489013672,0.0780789852142334,-0.740393757820129, -0.167500495910645,0.0397133827209473,-0.721021294593811,0.0830955505371094,-0.02530837059021,-0.417987942695618,0.0143365859985352,0.0278544425964355,-0.45692503452301,0.115342140197754,0.0813326835632324,-0.380844712257385,0.133084297180176,0.0796103477478027,-0.22330379486084,0.00683116912841797,0.0153617858886719,-0.115528106689453,-0.0500507354736328,-0.00555896759033203,-0.0514595508575439,-0.0303335189819336,-0.000191688537597656,-0.000174760818481445,-0.000385284423828125,0.0001220703125,5.36441802978516e-06,4.24385070800781e-05,2.62260437011719e-05,3.27825546264648e-05,1.66893005371094e-05,0,-3.814697265625e-06,0,0,5.33834099769592e-06,0,0,-2.21133232116699e-05,0,0,-1.29938125610352e-05,0,0,-1.60932540893555e-05,0,0,-9.89437103271484e-06,0,0,-6.91413879394531e-06,0,0,5.36441802978516e-06,0,0,2.26497650146484e-06,0,0,-1.29640102386475e-05,0,-0.00468754768371582,0.000560760498046875,0.00362491607666016,-0.0479890108108521,-0.0748481750488281,0.0213432312011719,-0.157313585281372,-0.166788339614868,0.0218429565429688,-0.164013147354126,-0.205063581466675,0.0148906707763672,-0.070509672164917,-0.316425323486328,-0.0101642608642578,-0.130076199769974,-0.283966541290283,0.100852012634277,-0.189201891422272,-0.218106746673584,0.0156993865966797,-0.195440411567688,-0.517203330993652,0.0190715789794922,0.0195471048355103,-0.751078128814697,0.142290115356445,-0.01531982421875,-0.765299081802368,0.109026908874512,0.0976181030273438,-0.836844444274902,0.152434349060059,0.143328666687012,-0.645481109619141,0.0880002975463867,-0.0182294845581055,-0.187814712524414,0.0611109733581543,0,-1.57356262207031e-05,0,0,5.24520874023438e-06,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,-1.9073486328125e-05,0,0,-2.21133232116699e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.57356262207031e-05,0,0,-3.814697265625e-06,0,0,-2.19345092773438e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29677355289459e-05, -0,0,-1.29658728837967e-05,0,0,-6.91413879394531e-06,0,0,-2.21729278564453e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.62124633789063e-05,0,0,-1.60932540893555e-05,0,0,-1.29640102386475e-05,0,0,-9.89437103271484e-06,0,0,-1.9073486328125e-05,0,0,2.38418579101563e-06,0,0,-6.91413879394531e-06,0,0,2.26497650146484e-06,0,0,-9.92044806480408e-06,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.29938125610352e-05,0,0,-1.29669206216931e-05,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.59740447998047e-05,0,0,-6.79492950439453e-06,0,0,-6.86943531036377e-06,0,0,-9.89437103271484e-06,0,0,5.24520874023438e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.28746032714844e-05,0,0,-9.98377799987793e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-3.814697265625e-06,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,2.38418579101563e-06,0,0,5.48362731933594e-06,0,0,-2.21729278564453e-05,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.59740447998047e-05,0,0,-2.19345092773438e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.29640102386475e-05,0,0,-2.21729278564453e-05,0,0,-6.91413879394531e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,2.38418579101563e-06,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-9.92044806480408e-06, -0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.77516174316406e-06,0,0,-6.91413879394531e-06,0,0,-6.85453414916992e-06,0,0,5.36441802978516e-06,0,0,-1.59740447998047e-05,0,0,-9.77516174316406e-06,0,0,-2.19345092773438e-05,0,0,2.38418579101563e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-6.86012208461761e-06,0,0,2.26497650146484e-06,0,0,-1.59740447998047e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,-1.31130218505859e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-1.59740447998047e-05,0,0,5.33758429810405e-06,0,0,-1.29938125610352e-05,0,0,-6.85453414916992e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,5.36441802978516e-06,0,0,-6.86058774590492e-06,0,0,5.27501106262207e-06,0,0,-1.29640102386475e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,2.32458114624023e-06,0,0,-6.86757266521454e-06,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,0,-1.31130218505859e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,-1.62124633789063e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,2.14576721191406e-06,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-2.24113464355469e-05,0,0,-1.28746032714844e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-6.67572021484375e-06,0,0,5.48362731933594e-06,0,0,5.24520874023438e-06, -0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.31130218505859e-05,0,0,-6.88433647155762e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.59740447998047e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,5.7220458984375e-06,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,-0.000611782073974609,-0.00208759307861328,0.00178861618041992,-0.00208330154418945,-0.00717544555664063,0.00326395034790039,-0.000888824462890625,-0.0125370025634766,0.00101089477539063,-0.000283718109130859,-0.0128240585327148,0.000726699829101563,0.000833272933959961,-0.0128240585327148,0.00227832794189453,0.000962257385253906,-0.0122013092041016,0.00332450866699219,0.000764250755310059,-0.0101289749145508,8.20159912109375e-05,0.00137609243392944,-0.00813007354736328,0.00103569030761719,0,-1.52587890625e-05,0,0,-9.5367431640625e-06,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.23977661132813e-05,0,0,-1.62124633789063e-05,0,0,-1.23977661132813e-05,0,0,-2.09808349609375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-7.15255737304688e-06,0,0,-1.31130218505859e-05,0,0,-1.00135803222656e-05,0,0,-6.79492950439453e-06,0,0,-1.62124633789063e-05,0,0,-2.20537185668945e-05,0,0,5.24520874023438e-06,0,0,-1.32322311401367e-05,0,0,-7.15255737304688e-06,0,0,-1.60932540893555e-05,0,0,-1.60187482833862e-05,0,0,5.33461570739746e-06,0,0,2.27987766265869e-06,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-9.5367431640625e-06, -0,0,-1.23977661132813e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.52587890625e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-1.31130218505859e-05,0,0,5.24520874023438e-06,0,0,2.32458114624023e-06,0,0,-2.19345092773438e-05,0,0,5.7220458984375e-06,0,0,-2.09808349609375e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.31130218505859e-05,0,0,5.36441802978516e-06,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,2.14576721191406e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.33514404296875e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.32322311401367e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-9.77516174316406e-06,0,0,2.14576721191406e-06,0,0,-6.85453414916992e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0, -0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05, -0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-7.15255737304688e-06,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-9.5367431640625e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.288818359375e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-3.814697265625e-06,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,-2.21729278564453e-05,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-1.29938125610352e-05,0,0,-9.89437103271484e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.60038471221924e-05,0,0,5.33461570739746e-06,0,0,2.32458114624023e-06,0,0,-1.29342079162598e-05,0,0,-2.21133232116699e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.29342079162598e-05,0,0,-6.79492950439453e-06,0,0,2.26497650146484e-06,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,-2.21729278564453e-05,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-1.29938125610352e-05,0,0,-9.89437103271484e-06,0, -0,-1.9073486328125e-05,0,0,-2.21133232116699e-05,0,0,-1.90436840057373e-05,0,0,-1.60038471221924e-05,0,0,5.33461570739746e-06,0,0,2.32458114624023e-06,0,0,-1.29342079162598e-05,0,0,-2.21133232116699e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,5.36441802978516e-06,0,0,-9.89437103271484e-06,0,0,-6.79492950439453e-06,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,-2.20537185668945e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,5.36441802978516e-06,0,0,-1.60038471221924e-05,0,0,5.33461570739746e-06,0,0,-1.9073486328125e-05,0,0,-6.85453414916992e-06,0,0,2.32458114624023e-06,0,0,5.36441802978516e-06,0,0,-6.79492950439453e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,5.36441802978516e-06,0,0,-6.79492950439453e-06,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,-2.20537185668945e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,5.36441802978516e-06,0,0,-1.60038471221924e-05,0,0,2.29477882385254e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,2.32458114624023e-06,0,0,-1.60336494445801e-05,0,0,-1.9073486328125e-05,0,0,-6.79492950439453e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0 - } - Normals: *6339 { - a: 0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355,0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555, --1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668,0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256, -1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172, -0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.608315385878086,0.0309087634086609,0.337096847593784,-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.692408370046412,-0.241693571209908, --1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.370050924001761,-0.229002796113491, -0.0665469765663147,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.364103219533249,-0.526631146669388,0.0684242248535156,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.419200159609318,0.837365716695786,0.256595432758331,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,0.570867847651243,1.01464876160026,0.668222844600677,0.512022675946355,1.34185579419136,0.66503818333149,0.623119197785854,1.33687299489975,0.805279240012169,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864, -0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.984691768884659,0.696901172399521,0.0457341074943542,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.41945570707321,0.463434951379895,-0.165035128593445,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.46459203958511,0.643265664577484,-0.808811432681978,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.687775045633316,1.07771757245064,0.0519442558288574,1.29794338345528,0.945635974407196,-1.05976921319962,1.2098775357008,0.436104170978069,-0.8449338786304,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.42057728767395,0.372901432216167,-1.14907959103584,1.36756077408791,0.497534438967705,-0.684602692723274,1.02537946403027, -0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.44287520647049,0.552613228559494,-1.11964479088783,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271, --0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.368729919195175, --0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.00140410661697388,0.47925940901041,-1.30150604248047,0.221148788928986,0.310832679271698,-1.26058748364449,0.333373188972473,0.675805615261197,-0.773726150393486,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.676499664783478,0.394543980248272,-1.38882184028625,0.452907145023346,0.55881055444479,-1.04075067490339,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666, --0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-1.2552170753479,0.745801657438278,-0.115406408905983,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011, --0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,0.244752883911133,-0.12813925743103,-1.25832629203796,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.601733505725861,-0.137450002133846,-1.00589925050735,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442, --0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219, --0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.429701536893845,-0.711980909109116,-0.587764203548431,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,0.159278452396393,-0.363652423024178,-0.80483865737915,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.15667587518692,0.0235023200511932,-0.802159786224365, -0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329, -0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593, -0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017, -0.106667190790176,-1.16624844074249,-1.44245409965515,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,-0.162997160106897,-1.70171070098877,0.190538376569748,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613, --0.940774857997894,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445, --0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454, -0.4240742623806,-1.45122596621513,0.541838407516479,0.497268289327621,-0.941780988126993,0.791523288935423,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047, -0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.229765117168427,0.313936576247215, -0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0395613312721252,0.165233947336674,0.374344136565924,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.679157763719559,-0.67513132840395, --0.508659213781357,-0.307712733745575,-0.354712724685669,-0.232395797967911,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.689141154289246,-1.14236959815025,-0.102435827255249,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.146608233451843,-0.578842431306839, -0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,-0.287382066249847,-0.415506526827812,0.151525691151619,0.0126810073852539,-0.38159042596817,-0.104233548045158,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549, -0.0594245493412018,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.166223287582397,0.184119202196598,0.202192723751068,0.185904085636139,0.424326695501804,0.42782136797905,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,-0.0135191082954407,-0.000640269368886948,0.0919049754738808, -0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.612220779061317,0.123990327119827,0.571332842111588,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.201127409934998,-0.263784028589725,0.835683688521385,0.207353413105011,-0.0282991118729115,0.780848473310471,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.502622842788696,-0.0493782872799784,0.314061641693115,0.412790149450302,-0.202578075230122,0.237927377223969,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744, -0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.255338251590729,0.529279805719852,0.331624269485474,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.853419095277786,0.742612265050411,0.394881129264832,-0.185455948114395,0.710533395409584,0.712371826171875,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.154679639264941,0.355617590248585,1.87958270311356,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073, -1.69242018461227,-0.351349028235973,0.86887588351965,1.18702557682991,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.02857578545809,0.990798711776733,0.914303988218307,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375, -0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306, --0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.632933646440506,0.395189315080643,-0.627764709293842,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-0.895843179896474,0.870013058185577,0.290084332227707,-0.959292871877551,0.826793894171715,0.163627862930298,-0.798909850418568,0.777520745992661,0.604770466685295,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883, --1.11727793514729,0.647259816527367,-1.11005578935146,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208, -0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,-0.077882413752377,0.0258926427923143,0.00258094072341919,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.978266507387161,-0.218800947070122,0.148283898830414,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.962225139141083,0.0184548236429691,0.183243811130524,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059,0.464356422424316,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2809898853302,-0.44488637149334,0.498575985431671, --1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.15227884054184,0.806445047259331,0.284897208213806,-1.30209255218506,0.681211248040199,0.375398635864258,-1.00561791658401,1.06915476918221,1.03261466324329,-1.08500897884369, -0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.862383862957358,0.426683764904737,0.597152233123779,-0.67862244695425,0.640427019447088,0.899562202394009,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-1.27592891454697,0.119089629501104,0.149021685123444,-0.84610041975975,0.464426472783089,0.377565741539001,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-0.526979327201843,0.954100735485554,0.742093294858932,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424, --0.799145758152008,-0.113252222537994,-0.0412226319313049,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.891574680805206,0.588285773992538,0.370067834854126,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987, --0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839, --1.51877892017365,-0.667408674955368,0.237299561500549,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.06144091486931,0.0493755340576172,0.590569108724594,-0.983450084924698,0.157140016555786,0.486277043819427,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.60283923149109,-0.148395121097565, --0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.38249570131302,0.226804383099079,-0.124686896800995,-0.806758642196655,1.40689265727997,0.663175418972969,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469, -0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286, --1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.86806565523148,-0.157209141179919,-0.552420981228352, --1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632, --0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-0.865469738841057,-1.17828106880188,0.665479935705662,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982, --0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369, --1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108, --0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.277940087020397,0.448024749755859,1.40409678220749,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.20496526360512,-0.472699493169785, -0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621, --0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.636734634637833,-0.627089126035571,-0.369751781225204,0.393649280071259,-0.455633457750082,-0.548892661929131,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.914770636707544,-0.366567794233561,-0.678669601678848,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,0.256948933005333,-0.881695672869682,-1.53926718235016,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827, -0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,0.163015127182007,-1.0039718747139,-0.0889919996261597,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389, --0.698288276791573,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.439901292324066,-0.0864635333418846,0.677239313721657,0.49987781047821,-0.913534943014383,-0.167973596602678,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702, --0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.459296517074108,-0.461047172546387,-1.7522748708725,0.226979196071625,-0.684362143278122,-1.74488377571106,0.355570636689663,-0.246009276248515,0.0557888746261597,-0.103397965431213,-0.221767159178853,-0.0563671588897705,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.562031090259552,0.547952054068446,-1.36980891227722,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.572800360620022,-0.498271927237511,0.362047255039215,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.931183822453022,0.921684209257364,-0.27465096116066, -0.316058143973351,-0.347322851419449,0.106490790843964,0.535619050264359,-0.304663639515638,0.763191848993301,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.637456744909286,0.452046165242791,-0.715856239199638,0.257763039320707,-1.13430336117744,0.448242098093033,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,-0.0983486175537109,-0.14288803935051,-0.574262671172619,0.937761824578047,-0.341998286545277,1.00905486941338,0.695688724517822,-0.488705735653639,0.942707635462284,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.188907444477081,-0.547060191631317,-0.855315566062927,0.484361410140991,-0.270236793905497,-0.912284769117832,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927, -0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.965870946645737,0.69016756862402,-1.28132930397987,0.27747730910778,0.872976876795292,-1.01354433596134,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.450418576598167,-0.29188334941864,0.272377371788025,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.569539815187454,0.770786583423615,-0.613855600357056,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.0816755332052708,-0.535643100738525,0.359934389591217,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.586801003730216,0.225314557552338, --0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.839720577001572,-0.502113223075867,-0.24354749917984,0.974294751882553,-0.355075240135193,-0.139003753662109,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.860623337328434,0.683679968118668,-0.122190892696381,1.67791867256165,-0.393890544772148,-0.389094859361649,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.01705601811409,0.938295260071754,-1.31072622537613,1.33740389347076,0.40354148298502,-1.17478397488594,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.25535067915916,0.0136107448488474,-1.09491683542728,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.36689883470535,-0.889552593231201,-0.840845614671707,1.21114584803581,-1.2469482421875,-0.58731796219945,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596, --1.61235952377319,-0.0890781879425049,0.125362932682037,-0.986302703619003,-0.147522479295731,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.083863228559494,-1.63346266746521,-0.117123454809189,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.17831620573997,-0.784377802163363,0.0281682014465332,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.0890900492668152,0.431337656453252,-0.086775922216475,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097, -0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.45670014619827,-0.404784709215164,-0.154245809651911,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.11738583445549,-0.0391004681587219,-0.793925583362579,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281, --0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.22639819979668,0.864633291959763,-0.881134361028671,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2807663838960, "Geometry::Eye_Left_squeeze", "Shape" { - Version: 100 - Indexes: *403 { - a: 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,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,6925,6926,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7522,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7543,7544,7545,7727,7729,7733,7735,7737,7739,7741,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8773,8778,8779,8781,8782,8787 - } - Vertices: *1209 { - a: -0.00286102294921875,-0.20377904176712,0.0404777526855469,-0.00300788879394531,-0.210299670696259,0.0236577987670898,-0.00304937362670898,-0.21112859249115,0.0152950286865234,-0.0023961067199707,-0.147439897060394,-0.0160465240478516,-0.00193166732788086,-0.101453185081482,-0.0464906692504883,-0.00154542922973633,-0.0660508871078491,-0.0672950744628906,-0.00127172470092773,-0.0415349006652832,-0.0870685577392578,-0.00101041793823242,-0.0255123376846313,-0.0962123870849609,-0.000740528106689453,-0.0128453969955444,-0.0994892120361328,-0.00103545188903809,-0.0492388010025024,-0.0944423675537109,-0.00129437446594238,-0.082125186920166,-0.0875654220581055,-0.0017547607421875,-0.135447263717651,-0.0673322677612305,-0.00123906135559082,-0.104509294033051,-0.0512857437133789,-0.00108087062835693,-0.096275806427002,-0.0455036163330078,-0.000594258308410645,-0.0428833067417145,-0.0789728164672852,-0.000262022018432617,-0.0108810663223267,-0.08465576171875,-6.03199005126953e-05,0.0190056562423706,-0.105630874633789,0.000349044799804688,0.0682026743888855,-0.130517959594727,0.00104761123657227,0.13851261138916,-0.143711090087891,0.0015251636505127,0.189130902290344,-0.146093368530273,0.00117254257202148,0.172051191329956,-0.138432502746582,0.000514507293701172,0.120815634727478,-0.117051124572754,-3.38554382324219e-05,0.0743827819824219,-0.0958766937255859,-0.000434398651123047,0.0326504707336426,-0.0648126602172852,-0.00125741958618164,-0.0445335507392883,-0.0278778076171875,-0.000916481018066406,-0.029113233089447,0.0161542892456055,-0.000696659088134766,-0.0176739096641541,0.0329856872558594,-0.00113582611083984,-0.0580503344535828,0.0501375198364258,-0.00200414657592773,-0.134766697883606,0.0489692687988281,-0.00214433670043945,-0.139021337032318,0.0283699035644531,-0.00211286544799805,-0.133341610431671,0.0164031982421875,-0.00156116485595703,-0.0771165490150452,-0.0182952880859375,-0.0012049674987793,-0.0376050472259521,-0.054347038269043,-0.000658035278320313,0.0112801790237427,-0.0749149322509766,-0.000277996063232422, -0.0473924875259399,-0.101345062255859,0.000176429748535156,0.0818288326263428,-0.117767333984375,0.000576972961425781,0.102610468864441,-0.120171546936035,0.000230312347412109,0.0603909492492676,-0.112528800964355,-0.000459432601928711,-0.00616490840911865,-0.106705665588379,-0.000814914703369141,-0.0517572164535522,-0.0841245651245117,-0.000587940216064453,-0.0457003712654114,-0.0649433135986328,-0.000786066055297852,-0.0661399662494659,-0.060664176940918,-0.000854253768920898,-0.0757374167442322,-0.0442056655883789,-0.000715494155883789,-0.0557965934276581,-0.0524139404296875,-0.000515222549438477,-0.0227409303188324,-0.0738048553466797,6.07967376708984e-05,0.0374546945095062,-0.0848217010498047,0.000348091125488281,0.0757640823721886,-0.0935440063476563,-5.17368316650391e-05,0.0537442676723003,-0.0840024948120117,-0.000807285308837891,-0.0117491185665131,-0.0552902221679688,-0.00137233734130859,-0.0611621886491776,-0.0361223220825195,-0.0019679069519043,-0.119128733873367,-0.00442886352539063,-0.00223302841186523,-0.147785276174545,0.0192670822143555,-0.00253057479858398,-0.175825715065002,0.0341386795043945,-0.00033271312713623,-0.0276492834091187,-0.0641441345214844,4.05311584472656e-05,0.00574542582035065,-0.0638160705566406,0.000304460525512695,0.0325441658496857,-0.0683841705322266,0.00187945365905762,0.173324167728424,-0.0806522369384766,0.00231289863586426,0.22527576982975,-0.0951757431030273,0.00265073776245117,0.27017468214035,-0.10882568359375,0.00234794616699219,0.256758451461792,-0.0975255966186523,0.00213098526000977,0.235725551843643,-0.0668649673461914,0.00176048278808594,0.200132772326469,-0.0399637222290039,0.00117588043212891,0.146041959524155,-0.0111618041992188,0.000413894653320313,0.0761356800794601,0.014338493347168,-0.000294685363769531,0.0139240622520447,0.0293617248535156,-0.00118446350097656,-0.0616727769374847,0.0362071990966797,-0.00223588943481445,-0.149069577455521,0.0354232788085938,-0.00157594680786133,-0.0933359861373901,0.0286989212036133,-0.0007781982421875,-0.0243522673845291, -0.0149354934692383,-0.000112056732177734,0.0338084399700165,-0.00301170349121094,0.000371932983398438,0.0833520963788033,-0.0365972518920898,0.000573635101318359,0.105000339448452,-0.061518669128418,0.00101518630981445,0.145446687936783,-0.0931024551391602,0.00139260292053223,0.165128588676453,-0.103127479553223,0.00104665756225586,0.120299600064754,-0.0910568237304688,0.000469207763671875,0.0596703290939331,-0.0809526443481445,0.000205755233764648,0.0243206918239594,-0.0650749206542969,-0.00044560432434082,-0.0366076529026031,-0.0567235946655273,-0.000580430030822754,-0.0510348975658417,-0.0552635192871094,-0.00286102294921875,-0.20377904176712,0.0404777526855469,-0.00300788879394531,-0.210299670696259,0.0236577987670898,-0.00304937362670898,-0.21112859249115,0.0152950286865234,-0.0023961067199707,-0.147439897060394,-0.0160465240478516,-0.00193166732788086,-0.101453185081482,-0.0464906692504883,-0.00154542922973633,-0.0660507678985596,-0.0672950744628906,-0.00127172470092773,-0.0415349006652832,-0.0870685577392578,-0.00101041793823242,-0.0255122184753418,-0.0962123870849609,-0.000740528106689453,-0.0128452777862549,-0.0994892120361328,-0.00103545188903809,-0.0492386817932129,-0.0944423675537109,-0.00129437446594238,-0.082125186920166,-0.0875654220581055,-0.0017547607421875,-0.135447263717651,-0.0673322677612305,-0.00123906135559082,-0.104509294033051,-0.0512857437133789,-0.00108087062835693,-0.096275806427002,-0.0455036163330078,-0.000490307807922363,-0.0342818796634674,-0.0786285400390625,0.000280857086181641,0.0376265048980713,-0.0937976837158203,0.00109577178955078,0.112919688224792,-0.10840892791748,0.00209259986877441,0.204368531703949,-0.123381614685059,0.00244688987731934,0.250494241714478,-0.14033317565918,0.00287342071533203,0.302327334880829,-0.152194023132324,0.00292825698852539,0.317885756492615,-0.141921997070313,0.00215339660644531,0.251474618911743,-0.109152793884277,0.00157356262207031,0.203578591346741,-0.0923309326171875,0.00131750106811523,0.173618197441101,-0.0556507110595703,0.000587940216064453, -0.108357191085815,-0.0269956588745117,0.000143051147460938,0.0639296770095825,0.00140571594238281,0.000113010406494141,0.0608757436275482,0.00918483734130859,-0.000573635101318359,0.0056908130645752,0.0217456817626953,-0.0013270378112793,-0.0763925611972809,0.0481910705566406,-0.00103902816772461,-0.0487661957740784,0.0299835205078125,-0.00133943557739258,-0.0709472894668579,0.0149021148681641,-0.000399589538574219,0.0167046785354614,-0.0176906585693359,-4.76837158203125e-06,0.0646713972091675,-0.0603485107421875,0.000302314758300781,0.0916818380355835,-0.0790910720825195,0.000843524932861328,0.14270806312561,-0.106949806213379,0.00136160850524902,0.179784893989563,-0.120696067810059,0.00131940841674805,0.16503119468689,-0.12494945526123,0.0011742115020752,0.138805627822876,-0.119051933288574,0.000691652297973633,0.086955189704895,-0.108499526977539,4.79221343994141e-05,0.0202484130859375,-0.0880184173583984,-0.00079345703125,-0.0592456459999084,-0.068023681640625,-0.000897407531738281,-0.0743114650249481,-0.0614509582519531,-0.000854253768920898,-0.0757374167442322,-0.0442056655883789,-0.000715494155883789,-0.0557965934276581,-0.0524139404296875,-0.000515222549438477,-0.0227409303188324,-0.0738048553466797,6.07967376708984e-05,0.0374546945095062,-0.0848217010498047,0.000348091125488281,0.0757640823721886,-0.0935440063476563,-5.17368316650391e-05,0.0537442676723003,-0.0840024948120117,-0.000807285308837891,-0.0117491185665131,-0.0552902221679688,-0.00137233734130859,-0.0611621886491776,-0.0361223220825195,-0.0019679069519043,-0.119128733873367,-0.00442886352539063,-0.00223302841186523,-0.147785276174545,0.0192670822143555,-0.00253057479858398,-0.175825715065002,0.0341386795043945,-0.000274896621704102,-0.0223970711231232,-0.0701169967651367,0.000159502029418945,0.016204759478569,-0.0699930191040039,0.000382184982299805,0.0402449518442154,-0.0753450393676758,0.00165867805480957,0.158826887607574,-0.0910968780517578,0.00191330909729004,0.196976274251938,-0.10590648651123,0.0021965503692627,0.23856994509697,-0.120806694030762, -0.00191450119018555,0.22761307656765,-0.109344482421875,0.00181245803833008,0.21644327044487,-0.078526496887207,0.00167083740234375,0.199369266629219,-0.0506124496459961,0.00131368637084961,0.16362763941288,-0.020472526550293,0.000823974609375,0.115170687437057,0.00701141357421875,0.000257015228271484,0.0634316802024841,0.0246295928955078,-0.000221729278564453,0.0192385613918304,0.0354528427124023,-0.00143718719482422,-0.0825520157814026,0.0363941192626953,-0.000844478607177734,-0.0310283601284027,0.0272378921508789,-0.00023651123046875,0.0235298573970795,0.0112085342407227,0.000200271606445313,0.0638344846665859,-0.00902462005615234,0.000438690185546875,0.0937049016356468,-0.0440864562988281,0.000406265258789063,0.0963839590549469,-0.0700273513793945,0.000679492950439453,0.122897267341614,-0.102184295654297,0.0010371208190918,0.140160724520683,-0.112140655517578,0.000672817230224609,0.0930686295032501,-0.0997200012207031,0.000329971313476563,0.0507889539003372,-0.0892467498779297,0.000246047973632813,0.0288881212472916,-0.0716638565063477,-0.000303268432617188,-0.0247719287872314,-0.0616655349731445,-0.000529170036315918,-0.0465693175792694,-0.060511589050293,-0.164582967758179,-0.0242424011230469,0.110223770141602,-0.167819261550903,-0.0515785217285156,0.116046905517578,-0.00147438049316406,-0.130784094333649,-0.0367908477783203,-0.00148820877075195,-0.116860449314117,-0.057042121887207,-0.000974416732788086,-0.0591869354248047,-0.0767030715942383,-0.000674962997436523,-0.0250838994979858,-0.080418586730957,-0.000564098358154297,-0.00524616241455078,-0.0835723876953125,-0.000768661499023438,-0.0121790170669556,-0.0817251205444336,-0.00123929977416992,-0.0476366281509399,-0.0565557479858398,-0.00153779983520508,-0.0758291482925415,-0.0361871719360352,-0.00209760665893555,-0.127816736698151,-0.00986576080322266,-0.00287818908691406,-0.19909805059433,0.0147848129272461,-0.00308561325073242,-0.220526337623596,0.0318536758422852,-0.00104951858520508,-0.0301001071929932,-0.0736856460571289,-0.00131082534790039,-0.107336759567261, --0.0419721603393555,-0.00117349624633789,-0.080241397023201,-0.0625839233398438,-0.00132870674133301,-0.116319954395294,-0.0361528396606445,-0.00162458419799805,-0.138894319534302,-0.0412788391113281,-0.000587224960327148,-0.0201903879642487,-0.0728015899658203,-0.000480890274047852,0.00254975259304047,-0.0800657272338867,-0.000910043716430664,-0.0227148681879044,-0.0688676834106445,-0.00146293640136719,-0.0718749910593033,-0.0409917831420898,-0.00204849243164063,-0.12301641702652,-0.0232992172241211,-0.00261783599853516,-0.175588697195053,0.000971794128417969,-0.00278663635253906,-0.191632509231567,0.0134410858154297,-0.00286006927490234,-0.200675666332245,0.0249128341674805,-0.00302028656005859,-0.212208807468414,0.0209140777587891,0.144130378961563,-0.350588798522949,-0.108823776245117,0.142196327447891,-0.0557607412338257,0,0.208171129226685,-0.44498884677887,-0.157761573791504,0.158511459827423,-0.708098888397217,-0.227814674377441,0.0623327493667603,-0.716661691665649,-0.119623184204102,0.158004283905029,-0.795922994613647,-0.213644981384277,0.184415817260742,-0.709466457366943,-0.0463142395019531,0.198340177536011,-0.775245189666748,-0.175933837890625,0.0704524517059326,-0.920334339141846,0.0787591934204102,0.0314090251922607,-0.919525384902954,-0.0177745819091797,-0.0777192115783691,-1.01470279693604,0.20340633392334,-0.0631051063537598,-1.07269167900085,0.227492332458496,-0.237175464630127,-1.0917159318924,0.473533630371094,-0.235237121582031,-1.01119065284729,0.42475414276123,-0.199289321899414,-1.02208209037781,0.603397369384766,-0.132351398468018,-0.942432165145874,0.85004997253418,-0.272266864776611,-0.432155966758728,1.07955694198608,-0.203939914703369,-0.444496154785156,0.970632553100586,-0.686311721801758,-0.0274044275283813,0.995948791503906,-0.591937065124512,-0.0298993587493896,1.02861928939819,-0.473684787750244,0.6211097240448,0.779248714447021,-0.110342979431152,0.481724858283997,0.787898063659668,-0.37762451171875,0.902147114276886,0.756945610046387,-0.083256721496582,0.648464024066925,0.634397983551025, --0.165984153747559,0.927796125411987,0.381620407104492,0.0269308090209961,0.654579281806946,0.424444198608398,-0.12627387046814,0.757961452007294,0.0951871871948242,-0.0365395545959473,0.418406963348389,0.203545570373535,0.0353436470031738,0.400692641735077,-0.123965263366699,0,0.249039351940155,-0.0338373184204102,-0.0866632461547852,-0.673081398010254,0.868857860565186,-0.182016372680664,-0.670921921730042,0.770665168762207,-0.415093898773193,-0.322959542274475,1.12902736663818,-0.489314556121826,-0.263749778270721,1.11561346054077,-0.560000896453857,0.366446055471897,0.949146270751953,-0.435007572174072,0.41328159160912,0.890422344207764,-0.0314865112304688,0.680991291999817,0.502910614013672,-0.284119606018066,0.945544302463531,0.58000373840332,0.0363144874572754,0.607114553451538,0.32652473449707,-0.0912303924560547,0.860274851322174,0.199061393737793,-0.0781440734863281,0.200825810432434,0.0301017761230469,-0.021873950958252,0.550387024879456,-0.0300531387329102,0.100814402103424,-0.0674614906311035,0,0.199730157852173,-0.7635498046875,-0.203272819519043,0.156222343444824,-0.728736758232117,-0.0757036209106445,0.00955677032470703,0.271506071090698,0.118659973144531,0.0389881134033203,0.367816209793091,0.240447998046875,0.0802750587463379,0.366623401641846,0.310160636901855,0.0644207000732422,0.361501216888428,0.353473663330078,0.0631422996520996,0.329118728637695,0.419689178466797,0.0462298393249512,0.321691274642944,0.594432830810547,-0.228595733642578,0.246746063232422,0.629973411560059,-0.0017547607421875,-0.135446488857269,-0.0673322677612305,-0.00129437446594238,-0.0821244716644287,-0.0875654220581055,-0.00103545188903809,-0.0492380857467651,-0.0944423675537109,-0.000740528106689453,-0.012844443321228,-0.0994892120361328,-0.00101041793823242,-0.025511622428894,-0.0962123870849609,-0.00127172470092773,-0.0415340662002563,-0.0870685577392578,-0.00154542922973633,-0.0660501718521118,-0.0672950744628906,-0.00193166732788086,-0.101452469825745,-0.0464906692504883,-0.0023961067199707,-0.147439122200012,-0.0160465240478516, --0.00304937362670898,-0.211127817630768,0.0152950286865234,-0.00300788879394531,-0.210298955440521,0.0236577987670898,-0.00286102294921875,-0.203778326511383,0.0404777526855469,-0.00253057479858398,-0.175824999809265,0.0341386795043945,-0.00223302841186523,-0.147784531116486,0.0192670822143555,-0.00196743011474609,-0.119127988815308,-0.00442886352539063,-0.00137233734130859,-0.0611613988876343,-0.0361223220825195,-0.000807285308837891,-0.0117483288049698,-0.0552902221679688,-5.17368316650391e-05,0.0537450984120369,-0.0840024948120117,0.000348091125488281,0.0757726645097136,-0.0935440063476563,6.07967376708984e-05,0.0374554991722107,-0.0848217010498047,-0.000515222549438477,-0.0227401256561279,-0.0738048553466797,-0.000715494155883789,-0.0557957887649536,-0.0524139404296875,-0.000854253768920898,-0.0757366120815277,-0.0442056655883789,-0.00108087062835693,-0.0962750613689423,-0.0455036163330078,-0.0012664794921875,-0.106848299503326,-0.050999641418457,-0.000667452812194824,-0.056363433599472,-0.054570198059082,4.3034553527832e-05,-0.00300714373588562,-0.0427713394165039,0.00105929374694824,0.0627417489886284,0.0100498199462891,0.00174045562744141,0.137893183156848,-0.0417633056640625,0.00236010551452637,0.208969354629517,-0.0328502655029297,0.00243425369262695,0.213236421346664,-0.037200927734375,0.00215053558349609,0.198134422302246,-0.0293188095092773,0.0015101432800293,0.179737776517868,-0.0237874984741211,0.00121116638183594,0.14141620695591,-0.0153560638427734,0.000304698944091797,0.0519838929176331,0.00530433654785156,-0.00110101699829102,-0.0525684058666229,0.0289573669433594,-0.00221920013427734,-0.146055847406387,0.0454540252685547,-0.00263643264770508,-0.142357289791107,0.0334157943725586,0.00977087020874023,-0.188816845417023,0.0453968048095703,0.0395112037658691,-0.237677037715912,0.0288848876953125,-0.00245141983032227,-0.214508712291718,-0.0496950149536133,0.0713620185852051,-0.147210836410522,-0.00486373901367188,0.0497546195983887,-0.129267454147339,0.0102558135986328,0.0501418113708496,-0.103359580039978, -0.00647354125976563,-0.00113439559936523,-0.0893709659576416,0.0515594482421875,-0.000878572463989258,-0.093894362449646,0.0575065612792969,-0.00127768516540527,-0.123712182044983,0.0353469848632813,-0.00162410736083984,-0.14739203453064,0.0169219970703125,-0.00153040885925293,-0.15049684047699,-0.0103321075439453,-0.00139057636260986,-0.0957322120666504,-0.0537624359130859,0.0376648902893066,-0.000407040119171143,-6.67572021484375e-06,0.0816409587860107,-0.188710451126099,-0.00480556488037109,0.108362197875977,-0.259911179542542,0.0639801025390625,0.0783317089080811,-0.308813571929932,0.113951683044434,0.0754907131195068,-0.38100528717041,0.167710304260254,0.0551035404205322,-0.388614177703857,0.0748414993286133,0.0687947273254395,-0.347057461738586,0.0648250579833984,-0.0517268180847168,-0.293858647346497,0.146702766418457,-0.000881671905517578,-0.273022651672363,0.104891777038574,0.0502266883850098,-0.185625195503235,0.0645999908447266,0.0865926742553711,-0.169196903705597,0.0157756805419922,0.00951194763183594,-0.140897870063782,-0.0507793426513672,-0.0992903709411621,-0.0630801916122437,-0.126720428466797,-0.0710229873657227,-0.0138210654258728,0.0750389099121094,-0.0741367340087891,0.116271212697029,0.219128608703613,-0.102123260498047,0.271922416985035,0.234209060668945,-0.0188732147216797,0.395222276449203,0.212471008300781,-0.00284862518310547,0.40361499786377,0.171840667724609,0.0158681869506836,0.334085404872894,0.183735847473145,0.0252542495727539,0.372327327728271,0.138895988464355,0.0740256309509277,0.324200838804245,0.126879692077637,0.0023038387298584,0.272351026535034,0.0485429763793945,0.000941991806030273,0.180589854717255,0.0552616119384766,0.0533242225646973,0.0572187229990959,-0.0146141052246094,0.0375640392303467,-0.00513893365859985,-0.0142478942871094,0.317132711410522,-0.813201308250427,-0.326605796813965,0.375768542289734,-0.70371288061142,-0.277327537536621,0.489056706428528,-0.502800583839417,-0.153005599975586,0.364308714866638,-0.120689868927002,0,0.080317497253418,0,0,0.0818809270858765, -0.0635456293821335,0,0.0690330266952515,0.414361506700516,-0.165244102478027,0.0517547130584717,0.559303760528564,-0.176733016967773,-0.0326416492462158,0.672659635543823,-0.132767677307129,-0.0885100364685059,0.682797849178314,0.00822639465332031,-0.0733470916748047,0.710878312587738,0.0347833633422852,-0.215682983398438,0.756072342395782,0.145392417907715,-0.398495197296143,0.718379855155945,0.342863082885742,-0.459701538085938,0.61292290687561,0.363532543182373,-0.524814605712891,0.450003206729889,0.438201904296875,-0.582118034362793,0.271450728178024,0.557196617126465,-0.586634159088135,0.0212851762771606,0.582931518554688,-0.41298770904541,-0.190651178359985,0.686676979064941,-0.304150104522705,-0.381133258342743,0.708871841430664,-0.304475784301758,-0.67447304725647,0.543445587158203,-0.249585628509521,-1.00937032699585,0.460536956787109,-0.276689529418945,-1.17841041088104,0.363770484924316,-0.0483541488647461,-1.1635023355484,0.270567893981934,0.095689058303833,-1.06626391410828,0.0925083160400391,0.25893759727478,-0.984095215797424,-0.134723663330078,0.29863166809082,-0.946109056472778,0.23159122467041,0.137356519699097,-1.02608156204224,0.290213584899902,0.00890016555786133,-0.984704732894897,0.337482452392578,-0.108830451965332,-0.914581060409546,0.279216766357422,-0.0755476951599121,-0.773639798164368,0.267004013061523,-0.0539007186889648,-0.501099765300751,0.256549835205078,-0.153902053833008,-0.246700584888458,0.211710929870605,-0.149906158447266,-0.13207870721817,0.150218963623047,-0.3155198097229,-0.010032057762146,0.080258846282959,-0.261213302612305,0.139643788337708,0.226344585418701,-0.267131805419922,0.323273796588182,0.363592624664307,-0.262065410614014,0.502895951271057,0.368078231811523,-0.267836570739746,0.619417190551758,0.389430999755859,-0.0217571258544922,0.548386752605438,0.249654769897461,0.00347900390625,0.510560154914856,0.224294662475586,-0.0260305404663086,0.493815809488297,0.151609420776367,-0.00434041023254395,0.523340821266174,-0.00800228118896484,0.0163586139678955,0.460755288600922, --0.0139265060424805,0.0770086050033569,0.266324430704117,0.0189456939697266,0.0678503513336182,0.117022693157196,0,0.0881632566452026,0,0,0.269426584243774,-0.0844272971153259,0,0.35125207901001,-0.445446729660034,-0.0812654495239258,0.41232967376709,-0.622344374656677,-0.0108060836791992,0.363458156585693,-0.760687589645386,0.0885000228881836,0.0137416124343872,-0.101747274398804,0,-0.0034325122833252,-0.253147125244141,0.02838134765625,-0.0266480445861816,-0.286109924316406,0.0775690078735352,-0.0401268005371094,-0.302005767822266,0.125029563903809,-0.061455249786377,-0.298107147216797,0.15529203414917,-0.0772528648376465,-0.233085632324219,0.27659273147583,-0.16134786605835,-0.277328491210938,0.611410140991211,-0.188381195068359,-0.178329467773438,0.677287101745605,-0.196249485015869,-0.127300262451172,0.655929088592529,-0.298870086669922,0.0207136869430542,0.609638690948486,-0.00171470642089844,-0.114283949136734,-0.0185585021972656,-0.00190138816833496,-0.133228480815887,-0.0240650177001953,-0.00148487091064453,-0.103191077709198,-0.031951904296875,-0.000908136367797852,-0.0554419159889221,-0.0583696365356445,-0.000510215759277344,-0.0181514024734497,-0.0614194869995117,-0.000350475311279297,-0.0017474889755249,-0.0529870986938477,-0.00051569938659668,-0.00651836395263672,-0.0500497817993164,-0.000778675079345703,-0.022652268409729,-0.0347089767456055,-0.0011744499206543,-0.0492199659347534,-0.0345516204833984,-0.00203704833984375,-0.119726777076721,-0.0180683135986328,-0.00213193893432617,-0.125425100326538,0.00196647644042969,-0.0029139518737793,-0.18490469455719,0.0207252502441406,-0.00301504135131836,-0.19495701789856,0.0297031402587891,-0.00143885612487793,-0.115382850170135,-0.0359745025634766,-0.00164294242858887,-0.115668565034866,-0.0206871032714844,-0.00113773345947266,-0.0778682231903076,-0.0598487854003906,-0.000685453414916992,-0.0284913033246994,-0.0713281631469727,-0.000569581985473633,-0.00572562217712402,-0.0774383544921875,-0.00107383728027344,-0.0368082374334335,-0.0660362243652344,-0.00158929824829102, --0.0818494260311127,-0.0398063659667969,-0.00211620330810547,-0.127741128206253,-0.0229215621948242,-0.00262069702148438,-0.167717039585114,-3.14712524414063e-05,-0.00291299819946289,-0.183605074882507,0.0210466384887695,-0.00298023223876953,-0.197807192802429,0.0346212387084961,-0.00305795669555664,-0.180809795856476,0.0366973876953125,-8.91685485839844e-05,-0.00366640090942383,0,0,0,0.00970172882080078,0,0,0.0064697265625,0,-0.00581908226013184,0.0119009017944336,0,-0.00472557544708252,0.0140342712402344,-9.84668731689453e-05,-0.00426703691482544,0.000152587890625 - } - Normals: *1209 { - a: -1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668,0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506, --0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632, -1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784,-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849, -0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575,0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319, --1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.632933646440506,0.395189315080643,-0.627764709293842,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-0.479762978851795, -0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059,0.464356422424316,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739, -0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.61001873016357,0.601040259934962,0.209741085767746,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953, -0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592, --1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143, --1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386, --1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.45670014619827,-0.404784709215164,-0.154245809651911,0.145425140857697,0.00856729596853256,-0.920645862817764,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,0.101619184017181,-0.218093574047089,-0.982465595006943 - } - } - Geometry: 2807663839824, "Geometry::Eye_Right_squeeze", "Shape" { - Version: 100 - Indexes: *411 { - a: 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,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,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6140,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6161,6162,6163,6345,6347,6351,6353,6355,6357,6359,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8761,8762,8763,8765,8767 - } - Vertices: *1233 { - a: 0.00286102294921875,-0.20377904176712,0.0404777526855469,0.00299215316772461,-0.210259735584259,0.0236854553222656,0.00019073486328125,-0.212266504764557,0.0145111083984375,-0.00428104400634766,-0.167659163475037,-0.0250368118286133,-0.0256428718566895,-0.112285375595093,-0.0291223526000977,-0.00609207153320313,-0.0681486129760742,-0.0581560134887695,0.00104188919067383,-0.0408704280853271,-0.0860557556152344,0.000921964645385742,-0.02419114112854,-0.0947198867797852,0.000708818435668945,-0.0122897624969482,-0.0982255935668945,0.00107669830322266,-0.0465710163116455,-0.0923843383789063,0.00185084342956543,-0.080646276473999,-0.0860748291015625,0.00186395645141602,-0.135030090808868,-0.066777229309082,0.00123929977416992,-0.104504257440567,-0.0512819290161133,0.00108063220977783,-0.0962211787700653,-0.0454998016357422,0.000594258308410645,-0.0428833067417145,-0.0789728164672852,0.000262022018432617,-0.0108810663223267,-0.08465576171875,6.93798065185547e-05,0.0190180540084839,-0.105713844299316,-0.000316858291625977,0.0652027726173401,-0.129213333129883,-0.00119686126708984,0.135568678379059,-0.14224910736084,-0.00148749351501465,0.188489079475403,-0.146014213562012,-0.00117254257202148,0.17205023765564,-0.138434410095215,-0.000494003295898438,0.120852589607239,-0.116884231567383,3.38554382324219e-05,0.0743827819824219,-0.0958766937255859,0.000432014465332031,0.0326594114303589,-0.0647602081298828,0.00124788284301758,-0.0445285439491272,-0.0278530120849609,0.000917434692382813,-0.0291134715080261,0.0161533355712891,0.000696659088134766,-0.0176739096641541,0.0329856872558594,0.00113582611083984,-0.0580503344535828,0.0501375198364258,0.00200414657592773,-0.134766697883606,0.0489692687988281,0.00214433670043945,-0.139021337032318,0.0283699035644531,0.00203037261962891,-0.133288681507111,0.0165042877197266,0.00319290161132813,-0.0820963382720947,-0.0228071212768555,0.0017695426940918,-0.0401890277862549,-0.0577793121337891,0.000646114349365234,0.0088423490524292,-0.0742340087890625,6.96182250976563e-05, -0.0421328544616699,-0.0979108810424805,-4.62532043457031e-05,0.0781317949295044,-0.115104675292969,-0.000867366790771484,0.0996009111404419,-0.118234634399414,-0.000865936279296875,0.0556321144104004,-0.110071182250977,0.000105619430541992,-0.00962555408477783,-0.104707717895508,0.000849246978759766,-0.0525725483894348,-0.0835447311401367,0.000584602355957031,-0.0457067787647247,-0.0649280548095703,0.000786066055297852,-0.0661399662494659,-0.060664176940918,0.000177860260009766,-0.0722299218177795,-0.0401592254638672,0.00487303733825684,-0.0354873090982437,-0.0317668914794922,0.0028231143951416,0.0102202892303467,-0.0595331192016602,-2.38418579101563e-05,0.0388921573758125,-0.0839643478393555,-0.000368595123291016,0.0765859261155128,-0.0929927825927734,1.1444091796875e-05,0.0545099601149559,-0.0835485458374023,0.000807285308837891,-0.0117491185665131,-0.0552902221679688,0.00137233734130859,-0.0611621886491776,-0.0361223220825195,0.0019683837890625,-0.119148403406143,-0.00442600250244141,0.00223302841186523,-0.147785276174545,0.0192670822143555,0.00253057479858398,-0.175825715065002,0.0341386795043945,0.00033271312713623,-0.0276450514793396,-0.0641469955444336,-0.000113725662231445,0.0109503567218781,-0.0645456314086914,-0.000387191772460938,0.0413159504532814,-0.0703182220458984,-0.00218033790588379,0.215430960059166,0.00156688690185547,-0.00231313705444336,0.225456327199936,-0.095179557800293,-0.00265192985534668,0.270286560058594,-0.108829498291016,-0.00235271453857422,0.25683856010437,-0.0975246429443359,-0.00213098526000977,0.235725596547127,-0.0668649673461914,-0.00176048278808594,0.200132787227631,-0.0399637222290039,-0.00117588043212891,0.146041959524155,-0.0111618041992188,-0.000413894653320313,0.0761356800794601,0.014338493347168,0.000294685363769531,0.0139241516590118,0.0293617248535156,0.00118446350097656,-0.0616727769374847,0.0362071990966797,0.00223875045776367,-0.149097055196762,0.035426139831543,0.00157594680786133,-0.0933356881141663,0.0286989212036133,0.0007781982421875,-0.024353101849556,0.0149354934692383, -0.000112056732177734,0.0338084474205971,-0.00301170349121094,-0.000371932983398438,0.0833520963788033,-0.0365972518920898,-0.000573635101318359,0.105000346899033,-0.061518669128418,-0.00102806091308594,0.145772606134415,-0.0931005477905273,-0.00139451026916504,0.165484726428986,-0.103137969970703,-0.00104665756225586,0.120713911950588,-0.0910663604736328,-0.000639438629150391,0.0799714103341103,-0.0809555053710938,-0.000206708908081055,0.0338632762432098,-0.0690288543701172,0.000460147857666016,-0.032802015542984,-0.0575323104858398,0.000559210777282715,-0.0504498183727264,-0.055445671081543,0.00286102294921875,-0.20377904176712,0.0404777526855469,0.00299215316772461,-0.210259735584259,0.0236854553222656,0.00019073486328125,-0.212266504764557,0.0145111083984375,-0.00428104400634766,-0.167659163475037,-0.0250368118286133,-0.0256428718566895,-0.112285375595093,-0.0291223526000977,-0.00609207153320313,-0.0681486129760742,-0.0581560134887695,0.00104188919067383,-0.0408704280853271,-0.0860557556152344,0.000921964645385742,-0.02419114112854,-0.0947198867797852,0.000708818435668945,-0.0122897624969482,-0.0982255935668945,0.00107669830322266,-0.0465710163116455,-0.0923843383789063,0.00185084342956543,-0.080646276473999,-0.0860748291015625,0.00186395645141602,-0.135030090808868,-0.066777229309082,0.00123929977416992,-0.104504257440567,-0.0512819290161133,0.00108063220977783,-0.0962211787700653,-0.0454998016357422,0.000490307807922363,-0.0342818796634674,-0.0786285400390625,-0.000466108322143555,0.0379849076271057,-0.0928659439086914,-0.00111603736877441,0.112947940826416,-0.108323097229004,-0.00208544731140137,0.204307913780212,-0.123449325561523,-0.00237607955932617,0.250284790992737,-0.140501022338867,-0.00279974937438965,0.302086234092712,-0.152440071105957,-0.00292253494262695,0.31780332326889,-0.142016410827637,-0.00215291976928711,0.251471877098083,-0.109155654907227,-0.00157356262207031,0.203578591346741,-0.0923309326171875,-0.00131082534790039,0.173610091209412,-0.0556716918945313,-0.000587940216064453,0.108357191085815, --0.0269956588745117,-0.000143051147460938,0.0639296770095825,0.00140571594238281,-0.000113010406494141,0.0608757436275482,0.00918483734130859,0.000573635101318359,0.0056908130645752,0.0217456817626953,0.0013270378112793,-0.0763925611972809,0.0481910705566406,0.00103902816772461,-0.0487662255764008,0.0299835205078125,0.00133943557739258,-0.0709472894668579,0.0149021148681641,0.000273227691650391,0.0170870423316956,-0.01690673828125,-0.000488758087158203,0.0652350783348083,-0.0588970184326172,-0.000270843505859375,0.0922058820724487,-0.0780668258666992,-0.00104045867919922,0.140550494194031,-0.10511589050293,-0.00135231018066406,0.177872061729431,-0.119175910949707,-0.00171160697937012,0.162193775177002,-0.123085021972656,-0.00209689140319824,0.133691012859344,-0.116239547729492,-0.000886201858520508,0.0843643546104431,-0.107098579406738,-8.67843627929688e-05,0.0203579068183899,-0.0877542495727539,0.000604629516601563,-0.0588826537132263,-0.0671005249023438,0.000761747360229492,-0.0739213824272156,-0.0606584548950195,0.000177860260009766,-0.0722299218177795,-0.0401592254638672,0.00487303733825684,-0.0354873090982437,-0.0317668914794922,0.0028231143951416,0.0102202892303467,-0.0595331192016602,-2.38418579101563e-05,0.0388921573758125,-0.0839643478393555,-0.000368595123291016,0.0765859261155128,-0.0929927825927734,1.1444091796875e-05,0.0545099601149559,-0.0835485458374023,0.000807285308837891,-0.0117491185665131,-0.0552902221679688,0.00137233734130859,-0.0611621886491776,-0.0361223220825195,0.0019683837890625,-0.119148403406143,-0.00442600250244141,0.00223302841186523,-0.147785276174545,0.0192670822143555,0.00253057479858398,-0.175825715065002,0.0341386795043945,0.000274896621704102,-0.0223970711231232,-0.0701169967651367,-0.000161170959472656,0.0166914612054825,-0.070073127746582,-0.000427007675170898,0.0456086471676826,-0.0766277313232422,-0.00166821479797363,0.162214398384094,-0.0911626815795898,-0.00191259384155273,0.197150439023972,-0.105912208557129,-0.0021967887878418,0.238614082336426,-0.120807647705078,-0.00191831588745117, -0.227655306458473,-0.109341621398926,-0.00181245803833008,0.216443285346031,-0.078526496887207,-0.00167083740234375,0.19936928153038,-0.0506124496459961,-0.00131368637084961,0.16362763941288,-0.020472526550293,-0.000823974609375,0.115170069038868,0.00701141357421875,-0.000257015228271484,0.0634318590164185,0.0246295928955078,0.000221729278564453,0.0192385613918304,0.0354528427124023,0.00143718719482422,-0.0825520157814026,0.0363941192626953,0.000844478607177734,-0.0310282111167908,0.0272378921508789,0.00023651123046875,0.0235298573970795,0.0112085342407227,-0.000200271606445313,0.0638344883918762,-0.00902462005615234,-0.000438690185546875,0.0937054678797722,-0.0440864562988281,-0.000406265258789063,0.0963839590549469,-0.0700273513793945,-0.000692844390869141,0.123100593686104,-0.102171897888184,-0.0010378360748291,0.140414282679558,-0.112147331237793,-0.000670433044433594,0.0934210121631622,-0.0997314453125,-0.000386238098144531,0.0670327320694923,-0.0895252227783203,-0.000115633010864258,0.0357663109898567,-0.0747308731079102,0.000315666198730469,-0.0226834714412689,-0.0620212554931641,0.000529885292053223,-0.0465756952762604,-0.060511589050293,0.00147318840026855,-0.130485117435455,-0.0367870330810547,0.00141286849975586,-0.115769684314728,-0.055720329284668,0.00115561485290527,-0.0587246417999268,-0.0745067596435547,0.000806093215942383,-0.0244141817092896,-0.0786066055297852,0.00054621696472168,-0.00534546375274658,-0.0815935134887695,0.000627517700195313,-0.0122730731964111,-0.0797567367553711,0.000241756439208984,-0.0479729175567627,-0.0564870834350586,-0.00221824645996094,-0.0794105529785156,-0.0406284332275391,-0.00025177001953125,-0.129735350608826,-0.0148887634277344,0.00240755081176758,-0.198403775691986,0.0142850875854492,0.00308561325073242,-0.220526337623596,0.0318536758422852,0.000776767730712891,-0.0297248363494873,-0.0715312957763672,0.00304555892944336,-0.0881166458129883,-0.0447368621826172,0.00106382369995117,-0.0516267567873001,-0.0680837631225586,0.00159931182861328,-0.113758742809296,-0.0347480773925781, -0.00162911415100098,-0.138876140117645,-0.0412607192993164,0.000578403472900391,-0.0193333327770233,-0.0729808807373047,0.000477313995361328,0.00281193852424622,-0.0801124572753906,0.000889778137207031,-0.0222322642803192,-0.0689487457275391,0.00146293640136719,-0.0718749910593033,-0.0409917831420898,0.00204849243164063,-0.12301641702652,-0.0232992172241211,0.00261783599853516,-0.175588667392731,0.000971794128417969,0.00278663635253906,-0.191632509231567,0.0134410858154297,0.00286006927490234,-0.200675666332245,0.0249128341674805,0.00302028656005859,-0.212208807468414,0.0209140777587891,-0.144130378961563,-0.350588798522949,-0.108823776245117,-0.142196327447891,-0.0557607412338257,0,-0.208171129226685,-0.44498884677887,-0.157761573791504,-0.158511459827423,-0.708098888397217,-0.227814674377441,-0.0623327493667603,-0.716661691665649,-0.119623184204102,-0.158004283905029,-0.795922994613647,-0.213644981384277,-0.184416055679321,-0.709467649459839,-0.0463142395019531,-0.198340177536011,-0.775245189666748,-0.175933837890625,-0.0704524517059326,-0.920334339141846,0.0787591934204102,-0.0314090251922607,-0.919525384902954,-0.0177745819091797,0.0777192115783691,-1.01470279693604,0.20340633392334,0.0631051063537598,-1.07269167900085,0.227492332458496,0.237175464630127,-1.0917159318924,0.473533630371094,0.235237121582031,-1.01119065284729,0.42475414276123,0.199289321899414,-1.02208209037781,0.603397369384766,0.132351398468018,-0.942432165145874,0.85004997253418,0.272266864776611,-0.432156085968018,1.07955694198608,0.203939914703369,-0.444496154785156,0.970632553100586,0.686311721801758,-0.0274044275283813,0.995948791503906,0.591937065124512,-0.0298993587493896,1.02861928939819,0.473684787750244,0.6211097240448,0.779248714447021,0.110342979431152,0.481724858283997,0.787898063659668,0.37762451171875,0.902147114276886,0.756945610046387,0.083256721496582,0.648464024066925,0.634397983551025,0.165984153747559,0.927796125411987,0.381620407104492,-0.0269308090209961,0.654579281806946,0.424444198608398,0.12627387046814,0.757961452007294, -0.0951871871948242,0.0365395545959473,0.418406963348389,0.203545570373535,-0.0353436470031738,0.400692641735077,-0.123965263366699,0,0.249039351940155,-0.0338373184204102,0.0866632461547852,-0.673081398010254,0.868857860565186,0.182016372680664,-0.670921921730042,0.770665168762207,0.415093898773193,-0.322959542274475,1.12902736663818,0.489314556121826,-0.263749778270721,1.11561346054077,0.560000896453857,0.366446055471897,0.949146270751953,0.435007572174072,0.41328159160912,0.890422344207764,0.0314865112304688,0.680991291999817,0.502910614013672,0.284119606018066,0.945544302463531,0.58000373840332,-0.0363144874572754,0.607114553451538,0.32652473449707,0.0912294387817383,0.860270798206329,0.199058532714844,0.0781440734863281,0.200825810432434,0.0301017761230469,0.021873950958252,0.550387024879456,-0.0300531387329102,-0.100814402103424,-0.0674614906311035,0,-0.199730157852173,-0.7635498046875,-0.203272819519043,-0.156222343444824,-0.728736758232117,-0.0757036209106445,-0.00955677032470703,0.271506071090698,0.118659973144531,-0.0389881134033203,0.367816209793091,0.240447998046875,-0.0802750587463379,0.366623401641846,0.310160636901855,-0.0644207000732422,0.361501216888428,0.353473663330078,-0.0631422996520996,0.329118728637695,0.419689178466797,-0.0462298393249512,0.321691274642944,0.594432830810547,0.228595733642578,0.246746063232422,0.629973411560059,0.00186395645141602,-0.135030150413513,-0.066777229309082,0.00185060501098633,-0.0806463956832886,-0.0860748291015625,0.00107669830322266,-0.0465710163116455,-0.0923852920532227,0.000708818435668945,-0.0122897624969482,-0.0982255935668945,0.000918865203857422,-0.0241646766662598,-0.0946884155273438,0.00104236602783203,-0.0408703088760376,-0.0860557556152344,-0.00609207153320313,-0.0681474208831787,-0.0581569671630859,-0.0256423950195313,-0.112284541130066,-0.0291233062744141,-0.00428056716918945,-0.167658448219299,-0.0250368118286133,0.000191211700439453,-0.212266266345978,0.0145111083984375,0.00299167633056641,-0.210259258747101,0.0236854553222656,0.00286102294921875, --0.203778326511383,0.0404777526855469,0.00253057479858398,-0.175824999809265,0.0341386795043945,0.00223302841186523,-0.147784531116486,0.0192670822143555,0.0019683837890625,-0.119147747755051,-0.00442600250244141,0.00137233734130859,-0.0611613988876343,-0.0361223220825195,0.000807285308837891,-0.0117483288049698,-0.0552902221679688,1.1444091796875e-05,0.0545109547674656,-0.0835475921630859,-0.000369787216186523,0.0766268214210868,-0.0929651260375977,-2.38418579101563e-05,0.0388932377099991,-0.0839633941650391,0.0028233528137207,0.0102211385965347,-0.0595331192016602,0.00487327575683594,-0.0354868024587631,-0.0317668914794922,0.000177621841430664,-0.0722295045852661,-0.0401582717895508,0.00108063220977783,-0.0962206423282623,-0.0454998016357422,0.0012660026550293,-0.10684996843338,-0.0510005950927734,0.000667452812194824,-0.056363433599472,-0.054570198059082,-0.000716805458068848,-0.00246372818946838,-0.0418291091918945,0.000238656997680664,0.0709294453263283,0.0155534744262695,-0.00173521041870117,0.149340802803636,-0.0331621170043945,-0.00241851806640625,0.209076553583145,-0.0327291488647461,-0.00247693061828613,0.213649079203606,-0.036870002746582,-0.00215291976928711,0.198420986533165,-0.0290422439575195,-0.0015101432800293,0.179737776517868,-0.0237874984741211,-0.00121116638183594,0.141416192054749,-0.0153560638427734,-0.000304698944091797,0.0519839227199554,0.00530433654785156,0.00110101699829102,-0.0525684058666229,0.0289573669433594,0.00221920013427734,-0.146055847406387,0.0454540252685547,0.00263690948486328,-0.142357051372528,0.0334157943725586,-0.00977087020874023,-0.188816845417023,0.0453968048095703,-0.0397896766662598,-0.237166821956635,0.0291366577148438,0.000343799591064453,-0.217133462429047,-0.0334854125976563,-0.0592732429504395,-0.162153601646423,0.0121603012084961,-0.0475835800170898,-0.134692311286926,0.0149974822998047,-0.0510826110839844,-0.100868105888367,0.00743770599365234,0.000583648681640625,-0.0862799882888794,0.053339958190918,0.0013575553894043,-0.0906038284301758,0.0584173202514648, -0.00420570373535156,-0.117558479309082,0.0415277481079102,0.00397729873657227,-0.144026100635529,0.018549919128418,0.00145220756530762,-0.150547862052917,-0.0103158950805664,0.00139057636260986,-0.0957322120666504,-0.0537624359130859,-0.0376648902893066,-0.000407040119171143,-6.67572021484375e-06,-0.0817152261734009,-0.188802480697632,-0.00482177734375,-0.10766863822937,-0.258968949317932,0.0669679641723633,-0.0774309635162354,-0.307624578475952,0.120946884155273,-0.0754022598266602,-0.380276083946228,0.169735908508301,-0.0554866790771484,-0.387714147567749,0.0772476196289063,-0.069176197052002,-0.346333265304565,0.0658845901489258,0.0531120300292969,-0.304465293884277,0.146931648254395,0.0116958618164063,-0.307540059089661,0.106858253479004,-0.0425205230712891,-0.212070226669312,0.0718526840209961,-0.0860676765441895,-0.170181274414063,0.0165519714355469,-0.00951194763183594,-0.140897870063782,-0.0507793426513672,0.0992903709411621,-0.0630801916122437,-0.126720428466797,0.0710229873657227,-0.0138210654258728,0.0750389099121094,0.0741367340087891,0.116271212697029,0.219128608703613,0.102123260498047,0.271922416985035,0.234209060668945,0.0188732147216797,0.395222276449203,0.212471008300781,0.00284862518310547,0.40361499786377,0.171840667724609,-0.0158376693725586,0.334211468696594,0.183747291564941,-0.0252201557159424,0.372402787208557,0.138893127441406,-0.0740115642547607,0.3242506980896,0.126851081848145,-0.00331902503967285,0.277940630912781,0.0471973419189453,-0.00296282768249512,0.182815656065941,0.0549173355102539,-0.0533115863800049,0.0574151873588562,-0.0144119262695313,-0.0375640392303467,-0.00513893365859985,-0.0142478942871094,-0.317112445831299,-0.813110113143921,-0.32652473449707,-0.375754714012146,-0.703682243824005,-0.277302742004395,-0.489056706428528,-0.502800583839417,-0.153005599975586,-0.364308714866638,-0.120689868927002,0,-0.080317497253418,0,0,-0.0818809270858765,0.0635456293821335,0,-0.0690330266952515,0.414361506700516,-0.165244102478027,-0.0517547130584717,0.559303760528564,-0.176733016967773, -0.0326416492462158,0.672659635543823,-0.132767677307129,0.0885100364685059,0.682797849178314,0.00822639465332031,0.0733418464660645,0.710869550704956,0.0347976684570313,0.215682983398438,0.756072342395782,0.145392417907715,0.398495197296143,0.718379855155945,0.342863082885742,0.459701538085938,0.61292290687561,0.363532543182373,0.524814605712891,0.450003206729889,0.438201904296875,0.582118034362793,0.27145066857338,0.557196617126465,0.586634159088135,0.0212851166725159,0.582931995391846,0.41298770904541,-0.190650820732117,0.686676979064941,0.304150104522705,-0.381133139133453,0.708871841430664,0.304475784301758,-0.674473285675049,0.543445587158203,0.24956750869751,-1.00929868221283,0.460567474365234,0.276658535003662,-1.17838072776794,0.363765716552734,0.0483541488647461,-1.1635023355484,0.270567893981934,-0.095689058303833,-1.0662636756897,0.0925083160400391,-0.25893759727478,-0.984093904495239,-0.134721755981445,-0.298631429672241,-0.946122169494629,0.23157787322998,-0.137356519699097,-1.02607607841492,0.290217399597168,-0.00890016555786133,-0.984704732894897,0.337482452392578,0.109194278717041,-0.915401220321655,0.279370307922363,0.0776505470275879,-0.776934385299683,0.26833438873291,0.0553760528564453,-0.504206657409668,0.257953643798828,0.153925895690918,-0.246819734573364,0.211785316467285,0.149906158447266,-0.13207882642746,0.150218963623047,0.3155198097229,-0.0100321173667908,0.080258846282959,0.261213302612305,0.139643788337708,0.226344585418701,0.267131805419922,0.323273796588182,0.363592624664307,0.262065410614014,0.502895951271057,0.368078231811523,0.267836570739746,0.619417190551758,0.389430999755859,0.0217571258544922,0.548386752605438,0.249654769897461,-0.00348043441772461,0.510543763637543,0.22429084777832,0.0260305404663086,0.493815809488297,0.151609420776367,0.00434041023254395,0.523340821266174,-0.00800228118896484,-0.0163586139678955,0.460755288600922,-0.0139265060424805,-0.0770086050033569,0.266324430704117,0.0189456939697266,-0.0678503513336182,0.117022693157196,0,-0.0881632566452026,0,0,-0.269426584243774, --0.0844272971153259,0,-0.351263403892517,-0.445469617843628,-0.0812835693359375,-0.412430882453918,-0.622620284557343,-0.011012077331543,-0.363645315170288,-0.761506199836731,0.0880203247070313,-0.0137416124343872,-0.101747274398804,0,0.0034325122833252,-0.253147125244141,0.02838134765625,0.0266480445861816,-0.286109924316406,0.0775690078735352,0.0401268005371094,-0.302005767822266,0.125029563903809,0.061455249786377,-0.298107147216797,0.15529203414917,0.0772528648376465,-0.233085632324219,0.27659273147583,0.16134786605835,-0.277328491210938,0.611410140991211,0.188381195068359,-0.178329467773438,0.677287101745605,0.196249485015869,-0.127300262451172,0.655929088592529,0.298870086669922,0.0207136869430542,0.609638690948486,0.00166440010070801,-0.114236921072006,-0.0187788009643555,0.00190114974975586,-0.133217334747314,-0.0240631103515625,0.00148105621337891,-0.103152990341187,-0.0318975448608398,0.000875711441040039,-0.0532523989677429,-0.0573759078979492,0.000596284866333008,-0.0170965194702148,-0.0603981018066406,0.000378847122192383,-0.00135385990142822,-0.0513181686401367,0.000590324401855469,-0.00602579116821289,-0.0484523773193359,0.000969886779785156,-0.0220435857772827,-0.033660888671875,0.000946044921875,-0.0483163595199585,-0.0331182479858398,0.000468730926513672,-0.118765115737915,-0.0166940689086914,0.000940322875976563,-0.124072372913361,0.00554084777832031,0.00284576416015625,-0.184698939323425,0.0207204818725586,0.00301504135131836,-0.19495701789856,0.0297031402587891,8.24928283691406e-05,-0.106680572032928,-0.0329551696777344,0.00108599662780762,-0.115105032920837,-0.0233983993530273,-0.000810146331787109,-0.0708597600460052,-0.0542325973510742,0.000578165054321289,-0.0283589959144592,-0.071136474609375,0.000561714172363281,-0.00569820404052734,-0.0773811340332031,0.00109672546386719,-0.0367720127105713,-0.0659894943237305,0.00158500671386719,-0.0818553268909454,-0.0398082733154297,0.00211620330810547,-0.127741128206253,-0.0229215621948242,0.00262069702148438,-0.167717039585114,-3.14712524414063e-05, -0.00291299819946289,-0.183605074882507,0.0210466384887695,0.00298023223876953,-0.197807192802429,0.0346212387084961,0.00305795669555664,-0.180809795856476,0.0366973876953125,8.96453857421875e-05,-0.00369387865066528,-4.76837158203125e-06,0,-5.35845756530762e-05,-7.62939453125e-06,0,-4.17232513427734e-05,-9.5367431640625e-06,-5.7220458984375e-06,0.000255823135375977,0.000191688537597656,-2.98023223876953e-05,1.1444091796875e-05,-1.71661376953125e-05,-4.83989715576172e-05,-0.000208854675292969,0.0107479095458984,-3.79085540771484e-05,-0.000138759613037109,0.0074462890625,-0.000208854675292969,-2.288818359375e-05,0.000807762145996094,-0.000132083892822266,-0.00573110580444336,0.0122547149658203,-0.000106334686279297,-0.00455629825592041,0.0145206451416016,-5.7220458984375e-06,1.37090682983398e-05,1.52587890625e-05,0,-2.63601541519165e-05,-1.9073486328125e-06,9.96589660644531e-05,-0.00423955917358398,0.000155448913574219,6.866455078125e-05,-0.00031508132815361,-0.000194549560546875,-2.14576721191406e-06,5.15952706336975e-06,1.52587890625e-05,1.43051147460938e-06,2.25752592086792e-06,0 - } - Normals: *1233 { - a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, -0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, --1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089, --0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064,-0.373649805784225,-0.114552080631256,0.166332602500916, --0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.419200159609318,0.837365716695786,0.256595432758331,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929, --0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681, --1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.31858891248703,-0.32805510610342,-0.90739917755127,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0193964242935181,-0.174777860753238,-0.323619153350592,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941, --1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227, --1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293, -0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816, --0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0890900492668152,0.431337656453252,-0.086775922216475,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.820662484504282, --1.22292999923229,-0.639594420790672,0.76577752828598,-1.23354479670525,-0.510584950447083 - } - } - Geometry: 2807663837520, "Geometry::Tongue_LongStep1", "Shape" { - Version: 100 - Indexes: *181 { - a: 19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,119,120,121,122,123,124,125,127,129,130,131,132,133,134,135,136,137,138,141,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,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,274,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307 - } - Vertices: *543 { - a: 0,0.187673091888428,-0.00956583023071289,0,0.180512428283691,0,0,0.294208526611328,0,0,0.180512428283691,0,0,0.336992740631104,0.385053157806396,0,0.522496223449707,0.359954357147217,0,0.723875999450684,0.316071033477783,0,0.522496223449707,0.359954357147217,0,0.722837448120117,0.828493118286133,0,0.75377082824707,0.804118156433105,0,0.811850070953369,0.781644821166992,0,0.75377082824707,0.804118156433105,0,0.738060474395752,1.2620325088501,0,0.772225379943848,1.24532222747803,0,0.812665939331055,1.2726469039917,0,0.772225379943848,1.24532222747803,0,0.76690149307251,1.61725044250488,0,0.784619331359863,1.486741065979,0,0.790802955627441,1.5978422164917,0,0.784619331359863,1.486741065979,0,0.222600936889648,-0.018549919128418,0,0.0989336967468262,0,0,0.0649251937866211,0.0247335433959961,0,0.222600936889648,-0.018549919128418,0,0.0649251937866211,0.0247335433959961,0,0.269845962524414,0.0446667671203613,0,0.0833778381347656,0.0446667671203613,0,0.180512428283691,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.15064811706543,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.180512428283691,0,0,0.180512428283691,0,0,0.333643436431885,0.385502815246582,0,0.22156810760498,0.0825347900390625,0,0.217616558074951,0.0825347900390625,0,0.333643436431885,0.385502815246582,0,0.217616081237793,0.0825347900390625,0,0.440893173217773,0.377697467803955,0,0.331032752990723,0.0825347900390625,0,0.390588760375977,0.0825347900390625,0,0.594545364379883,0.344237804412842,0,0.430413246154785,0.0825347900390625,0,0.713373184204102,0.318408966064453,0,0.493996143341064,0.0825347900390625,0,0.734828948974609,0.313683032989502,0,0.49793529510498,0.0825347900390625,0,0.506249904632568,0.0825347900390625,0,0.734829425811768,0.313682556152344,0,0.506249904632568,0.0825347900390625,0,0.751954555511475,0.310015678405762,0,0.517498016357422,0.0825347900390625,0,0.594545364379883,0.344237804412842,0,0.390588760375977,0.0825347900390625,0,0.430413246154785, -0.0825347900390625,0,0.488492012023926,0.367390632629395,0,0.367498874664307,0.0825347900390625,0,0.726333141326904,0.829377174377441,0,0.662723541259766,0.574379444122314,0,0.665483474731445,0.573187351226807,0,0.726333141326904,0.829377174377441,0,0.665483474731445,0.573187828063965,0,0.735027313232422,0.82557201385498,0,0.680834293365479,0.56638240814209,0,0.711684226989746,0.552332878112793,0,0.774704933166504,0.797505378723145,0,0.745489597320557,0.537163734436035,0,0.80958366394043,0.787747383117676,0,0.802063465118408,0.511935234069824,0,0.816407203674316,0.780303001403809,0,0.806463241577148,0.509801387786865,0,0.812239646911621,0.507215023040771,0,0.816407203674316,0.780303001403809,0,0.812239646911621,0.507215023040771,0,0.821882247924805,0.781024932861328,0,0.820404529571533,0.503688335418701,0,0.774704933166504,0.797505378723145,0,0.711684226989746,0.552332878112793,0,0.745489597320557,0.537163734436035,0,0.746676445007324,0.807805061340332,0,0.698855400085449,0.558159351348877,0,0.742495059967041,1.26186752319336,0,0.73460578918457,1.07140064239502,0,0.737247943878174,1.07379531860352,0,0.742495059967041,1.26186752319336,0,0.737247943878174,1.07379531860352,0,0.751983165740967,1.25812149047852,0,0.744959354400635,1.07658576965332,0,0.76621150970459,1.07359218597412,0,0.787219524383545,1.25014686584473,0,0.783115386962891,1.08249950408936,0,0.81043815612793,1.26607131958008,0,0.810575485229492,1.09775924682617,0,0.816539764404297,1.27387142181396,0,0.813676357269287,1.09429264068604,0,0.817821979522705,1.09658622741699,0,0.816539764404297,1.27387142181396,0,0.817821979522705,1.09658622741699,0,0.82039213180542,1.27486324310303,0,0.821866512298584,1.10081100463867,0,0.787219524383545,1.25014686584473,0,0.76621150970459,1.07359218597412,0,0.783115386962891,1.08249950408936,0,0.765985488891602,1.24741649627686,0,0.760364055633545,1.07143115997314,0,0.768522262573242,1.61169052124023,0,0.743864059448242,1.44948959350586,0,0.748948097229004,1.44581985473633,0,0.768522262573242,1.61169052124023,0,0.748948097229004, -1.44581985473633,0,0.776587963104248,1.57653617858887,0,0.758716583251953,1.42446422576904,0,0.778730392456055,1.3733434677124,0,0.791953563690186,1.49379253387451,0,0.79108190536499,1.37275981903076,0,0.800856113433838,1.52603054046631,0,0.808991432189941,1.40214347839355,0,0.792611598968506,1.59503936767578,0,0.808026313781738,1.4379940032959,0,0.811019420623779,1.43738269805908,0,0.792612075805664,1.59503936767578,0,0.811019420623779,1.4373836517334,0,0.798752784729004,1.57704544067383,0,0.81517505645752,1.43052577972412,0,0.791953563690186,1.49379253387451,0,0.778730392456055,1.3733434677124,0,0.79108190536499,1.37276077270508,0,0.782088279724121,1.51567268371582,0,0.77278470993042,1.38754177093506,0,0.779191493988037,1.63731861114502,0,0.78056812286377,1.63240814208984,0,0.798752784729004,1.57704544067383,0,0.78678560256958,1.60179328918457,0,0.780568599700928,1.63240814208984,0,0.800856113433838,1.52603054046631,0,0.791548252105713,1.53793144226074,0,0.294208526611328,0,0,0.15064811706543,0,0,0.713373184204102,0.318408966064453,0,0.493996143341064,0.0825347900390625,0,0.80958366394043,0.787747383117676,0,0.802063465118408,0.511935234069824,0,0.810437679290771,1.26607227325439,0,0.810575485229492,1.09775924682617,0,0.808991432189941,1.40214347839355,0,0.776587963104248,1.57653617858887,0,0.78678560256958,1.60179328918457,0,0.751983165740967,1.25812149047852,0,0.758716583251953,1.42446422576904,0,0.735027313232422,0.82557201385498,0,0.744959354400635,1.07658576965332,0,0.440893173217773,0.377697467803955,0,0.680834293365479,0.566382884979248,0,0.269845962524414,0.0446667671203613,0,0.331032752990723,0.0825347900390625,0,0.0833778381347656,0.0446667671203613,0,0.180512428283691,0,0,0.488492488861084,0.367390632629395,0,0.367498874664307,0.0825347900390625,0,0.746675968170166,0.807806015014648,0,0.698855400085449,0.558159351348877,0,0.765985488891602,1.24741649627686,0,0.760364055633545,1.07143115997314,0,0.782088279724121,1.51567268371582,0,0.77278470993042,1.38754177093506,0,0.791548252105713,1.53793144226074, -0,0.82039213180542,1.27486324310303,0,0.81517505645752,1.43052673339844,0,0.821882247924805,0.781024932861328,0,0.821866512298584,1.10081100463867,0,0.751954555511475,0.310015678405762,0,0.820404529571533,0.503688812255859,0,0.294208526611328,0,0,0.517498016357422,0.0825347900390625,0,0.15064811706543,0 - } - Normals: *543 { - a: -0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.944908827543259,1.31607159972191,0.47273375466466,-0.921599141576962,1.37235361337662,-0.12590342387557,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.0860351920127869,-0.115906327962875,-0.718861132860184,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.684338128286157,-0.712757617235184,-0.929008990526199,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049, --1.0406131669879,0.281359016895294,-1.001324608922,-1.25743305683136,1.07243165373802,-0.607321448624134,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082, --1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284, --0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.598149731755257,-0.00678813457489014,-0.199082851409912,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.16607412695885,-0.595094352960587,-0.701343905180693,0.926006108522415,-1.40033829212189,-0.595672160387039,1.05335786938667,-1.47649538516998,-0.191695690155029,0.300833195570476,-1.29680508375168,0.00777071714401245,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.638551711913578,-1.2888200879097,0.264883786439896,-0.845786213874817,-0.41208028793335,-0.494110137224197,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.337564095854759,-1.01062850654125,-0.674264281988144,-0.387330010533333,-1.54228508472443,-0.804431803524494,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525, --0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.894153416156769,1.25129035115242,-0.576352939009666,0.702015891671181,1.80767601728439,0.0715821126941592,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.0642043994739652,-0.338101089000702,-1.00382301211357 - } - } - Geometry: 2807663836656, "Geometry::Tongue_LongStep2", "Shape" { - Version: 100 - Indexes: *304 { - a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,45,46,47,48,49,50,51,52,54,55,56,58,59,60,61,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,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,313 - } - Vertices: *912 { - a: 0.298460721969604,-2.38418579101563e-06,0,0,4.76837158203125e-06,0,-0.298447489738464,-2.38418579101563e-06,0,0,1.9073486328125e-06,0,0,2.86102294921875e-06,0,0,1.9073486328125e-06,0,0.295654296875,3.814697265625e-06,0,0,-3.814697265625e-06,0,-0.295654296875,3.814697265625e-06,0,0,1.9073486328125e-06,0.62092399597168,0,-4.29153442382813e-06,0.315820217132568,0,1.9073486328125e-06,0.621030807495117,0.25104284286499,0,0.350605010986328,0,0.00147867202758789,0,-0.251043915748596,0,0.350605487823486,0,0.0891499519348145,0.820659160614014,0.353261947631836,-0.0530796051025391,0.804751873016357,0,0.102138519287109,0.546422004699707,-0.353261828422546,-0.0530796051025391,0.804751873016357,0,0.167038440704346,1.54842329025269,0.418906927108765,0.133477210998535,1.63512516021729,0,0.313694000244141,1.71888160705566,-0.418906927108765,0.133476734161377,1.63512468338013,0,-0.180120468139648,2.67286396026611,0.417097449302673,-0.171124935150146,2.68819570541382,0,-0.0608830451965332,2.89190196990967,-0.417098045349121,-0.171124935150146,2.68819570541382,0,-0.144774436950684,3.38189888000488,0.319933772087097,-0.114799022674561,3.40964317321777,0,-0.0109982490539551,3.43304252624512,-0.319933533668518,-0.114799022674561,3.40964317321777,0,-0.0791492462158203,3.56278228759766,0.290642738342285,-0.0858731269836426,3.54627513885498,0,0.0191793441772461,3.524977684021,-0.290643811225891,-0.0858731269836426,3.54627513885498,0,-0.0347309112548828,3.68325805664063,0.24822473526001,-0.0647068023681641,3.63838195800781,0,-0.00930070877075195,3.66595840454102,-0.2508864402771,-0.0651793479919434,3.63198566436768,0,-3.814697265625e-06,0,0.0185188055038452,-2.38418579101563e-06,0,0.310891628265381,-2.86102294921875e-06,0,0.240737795829773,9.5367431640625e-07,0,0.296840906143188,-3.814697265625e-06,0,0.279513716697693,0,0,0.102843284606934,-3.814697265625e-06,0,0.140187501907349,3.814697265625e-06,0,0.119377970695496,9.5367431640625e-07,0,0,4.76837158203125e-06,0,0,-2.86102294921875e-06,0,0,3.814697265625e-06,0,0,-2.86102294921875e-06, -0,0,3.814697265625e-06,0,-0.0519960522651672,-2.38418579101563e-06,0,-0.057947039604187,9.5367431640625e-07,0,-0.055777907371521,-3.814697265625e-06,0,-0.240737676620483,9.5367431640625e-07,0,-0.310877084732056,-2.86102294921875e-06,0,-0.296841621398926,-3.814697265625e-06,0,-0.279513478279114,0,0,-0.21926736831665,-3.814697265625e-06,0,0,-2.86102294921875e-06,0,0,3.814697265625e-06,0,0,3.814697265625e-06,0,0,-2.38418579101563e-06,0,0.00226438045501709,-2.86102294921875e-06,0,0.00529718399047852,0,0.533062934875488,0.0265829563140869,-2.38418579101563e-06,0,0.268007516860962,-9.5367431640625e-07,0,0.195124864578247,3.814697265625e-06,0,0.220188617706299,4.76837158203125e-06,0,0.0971983671188354,0,0,0.0933150053024292,2.86102294921875e-06,0,0,0.00565910339355469,0,0,-2.86102294921875e-06,0,0,0.00565910339355469,0,-6.27338886260986e-05,9.5367431640625e-07,0,-0.0529602766036987,0.00239944458007813,0,-0.0533127188682556,-3.814697265625e-06,0,-0.195112705230713,3.814697265625e-06,0,-0.268007278442383,-9.5367431640625e-07,0,-0.220189571380615,4.76837158203125e-06,0,-0.157735586166382,0,0.449384689331055,-0.209065556526184,2.86102294921875e-06,0,0,0.0642914772033691,0.87494421005249,0,0.0444116592407227,0.584774017333984,0,-2.38418579101563e-06,0.404292106628418,0,0.044410228729248,0.633496761322021,0,0.0642914772033691,0.87494421005249,0,-2.38418579101563e-06,0.404292106628418,0,0.044410228729248,0.633496284484863,0.0110411643981934,-0.0367631912231445,0.92303466796875,0.0241326093673706,2.86102294921875e-06,0.712357521057129,0.277857899665833,2.38418579101563e-06,0.470832347869873,0.337912678718567,-0.0499286651611328,0.703420639038086,0.250848412513733,-2.86102294921875e-06,0,0.17339813709259,0.0617070198059082,0.601244449615479,0.133182883262634,9.5367431640625e-07,0,0,0.0918192863464355,0.544517517089844,0,0.0148978233337402,0,0,0.0286645889282227,0,0,0.0918192863464355,0.544517517089844,0,0.0286645889282227,0,-0.0284221172332764,0.0563998222351074,0.546029567718506,-0.0466420650482178,0.0045170783996582,0,-0.337912440299988, --0.0499286651611328,0.703420162200928,-0.277857899665833,2.38418579101563e-06,0.470832347869873,-0.25084924697876,-2.86102294921875e-06,0,-0.261481046676636,-0.0424008369445801,0.877210140228271,-0.20198929309845,-4.29153442382813e-06,0.53693675994873,0,0.140053749084473,1.65809679031372,0,0.138479709625244,1.09061098098755,0,0.156541347503662,1.14548444747925,0,0.140053749084473,1.65809679031372,0,0.156541347503662,1.14548444747925,0.0229523181915283,0.0663371086120605,1.6963324546814,0.0273973941802979,0.0169744491577148,1.26308012008667,0.402652502059937,0.0357837677001953,1.07817649841309,0.391128540039063,0.151822566986084,1.59884834289551,0.378832340240479,0.053194522857666,1.02306938171387,0.173742651939392,0.215082168579102,1.53208065032959,0.182240724563599,0.086606502532959,0.958737373352051,0,0.297698020935059,1.69873476028442,0,0.261649131774902,1.18369293212891,0,0.245674610137939,1.16274881362915,0,0.297698020935059,1.69873476028442,0,0.245674610137939,1.16274881362915,-0.0141924619674683,0.248825073242188,1.60572719573975,-0.0104990005493164,0.211533069610596,1.1324782371521,-0.3911292552948,0.151822566986084,1.59884834289551,-0.402652263641357,0.0357837677001953,1.07817697525024,-0.378817558288574,0.053194522857666,1.02306938171387,-0.325470685958862,0.125279903411865,1.66555166244507,-0.305439472198486,0.0364322662353516,1.13663387298584,0,-0.161754131317139,2.64732933044434,0,0.0138816833496094,2.07099056243896,0,0.0213661193847656,2.1135082244873,0,-0.161754131317139,2.64732933044434,0,0.0213656425476074,2.11350727081299,0.131826877593994,-0.176462650299072,2.67409753799438,0.141389966011047,-0.0518226623535156,2.23256397247314,0.412746429443359,-0.0463972091674805,2.16204309463501,0.357690453529358,-0.160445213317871,2.6955132484436,0.381201982498169,-0.0318150520324707,2.15104293823242,0.19710373878479,-0.14202880859375,2.71328639984131,0.181077122688293,-0.00959539413452148,2.11824417114258,0,-0.0759873390197754,2.85682010650635,0,0.0871706008911133,2.38461494445801,0,0.0698714256286621,2.35037994384766, -0,-0.075986385345459,2.85682106018066,0,0.0698714256286621,2.35037994384766,-0.0283493995666504,-0.13284969329834,2.76042795181274,-0.0152958631515503,0.0208282470703125,2.26888704299927,-0.357691526412964,-0.160445213317871,2.69551277160645,-0.412747383117676,-0.0463972091674805,2.16204261779785,-0.38120174407959,-0.0318150520324707,2.15104293823242,-0.34891939163208,-0.177542209625244,2.67255926132202,-0.334402680397034,-0.0512552261352539,2.19090175628662,0,-0.134435653686523,3.3816967010498,0,-0.158763885498047,3.07975244522095,0,-0.138489723205566,3.06558179855347,0,-0.134435653686523,3.3816967010498,0,-0.138490200042725,3.06558227539063,0.121262907981873,-0.116376399993896,3.38311004638672,0.125357627868652,-0.136521816253662,3.06630992889404,0.351033329963684,-0.136722564697266,3.0627965927124,0.294175386428833,-0.106605529785156,3.40964984893799,0.321293592453003,-0.125565528869629,3.10069942474365,0.163648128509521,-0.0758256912231445,3.43843555450439,0.185388922691345,-0.110358238220215,3.11969184875488,0,-0.0182828903198242,3.43333721160889,0,-0.0355515480041504,3.27271509170532,0,-0.0456171035766602,3.2604832649231,0,-0.0182828903198242,3.43333721160889,0,-0.0456171035766602,3.2604832649231,-0.0434439182281494,-0.0666294097900391,3.43695163726807,-0.0348807573318481,-0.101242542266846,3.17178106307983,-0.294176340103149,-0.106605529785156,3.40964984893799,-0.351035118103027,-0.136722564697266,3.0627965927124,-0.321277976036072,-0.125565528869629,3.10069942474365,-0.287428379058838,-0.117464542388916,3.4115743637085,-0.310929179191589,-0.139772415161133,3.06449842453003,-0.0163765251636505,-0.0938305854797363,3.5619535446167,0,-0.128186225891113,3.48684883117676,0,-0.119556427001953,3.48358345031738,0.0154803097248077,-0.0938630104064941,3.56195545196533,0,-0.119556427001953,3.48358345031738,0.151097655296326,-0.105112075805664,3.55817890167236,0.121285855770111,-0.101095199584961,3.47776031494141,0.310375452041626,-0.0973672866821289,3.48279762268066,0.272701621055603,-0.0651049613952637,3.53918933868408, -0.286442279815674,-0.087684154510498,3.46957015991211,0.173955082893372,-0.0333218574523926,3.5293140411377,0.166538000106812,-0.0276741981506348,3.47884941101074,0.0110068917274475,0.00843906402587891,3.52434921264648,0,0.021937370300293,3.47943878173828,0.00043100118637085,0.00929927825927734,3.47868251800537,-0.0109143853187561,0.00843906402587891,3.52434921264648,-0.00043100118637085,0.00929927825927734,3.47868251800537,-0.0805292725563049,-0.0241193771362305,3.52545070648193,-0.0577948689460754,-0.0241289138793945,3.47782707214355,-0.272702693939209,-0.0651049613952637,3.53918933868408,-0.310375213623047,-0.0973672866821289,3.48279857635498,-0.286425590515137,-0.087684154510498,3.46957015991211,-0.268575549125671,-0.0948514938354492,3.54974555969238,-0.283764958381653,-0.100555896759033,3.48793983459473,-0.0518088936805725,-0.0393714904785156,3.68231201171875,0,-0.0494170188903809,3.64352893829346,-0.0476897358894348,-0.0639810562133789,3.64241409301758,0.0518091022968292,-0.0393500328063965,3.68235778808594,0.0468094646930695,-0.0639758110046387,3.64241409301758,0.137817084789276,-0.056513786315918,3.67803001403809,0.139931201934814,-0.078984260559082,3.63288497924805,0.277220368385315,-0.0750179290771484,3.58734703063965,0.229841947555542,-0.0580859184265137,3.64872169494629,0.257107377052307,-0.0630874633789063,3.57737636566162,0.205419719219208,-0.0476822853088379,3.6871919631958,0.187644183635712,-0.0451693534851074,3.60916328430176,0.0401111841201782,-0.013554573059082,3.66479969024658,0,0.000185489654541016,3.60293674468994,0.0309822559356689,-0.0070033073425293,3.60223388671875,-0.0401111096143723,-0.0135540962219238,3.66479969024658,-0.0310016274452209,-0.0070033073425293,3.60223388671875,-0.122735917568207,-0.0352258682250977,3.67249774932861,-0.163097679615021,-0.0375070571899414,3.61946392059326,-0.23868453502655,-0.0585098266601563,3.64305114746094,-0.277221083641052,-0.0750174522399902,3.58734607696533,-0.257108449935913,-0.0630702972412109,3.57799434661865,-0.246168971061707,-0.0620956420898438, -3.67756271362305,-0.254979372024536,-0.0791902542114258,3.59969043731689,0,-0.0220098495483398,3.69055461883545,0.045039564371109,-0.025270938873291,3.68978118896484,0.120193541049957,-0.0354828834533691,3.66908740997314,0.122028291225433,-0.043327808380127,3.68140602111816,-0.045040637254715,-0.025270938873291,3.68978118896484,-0.224817931652069,-0.0476846694946289,3.68712329864502,-0.228068113327026,-0.0523171424865723,3.70450782775879,-0.152491211891174,3.814697265625e-06,0,-0.119194149971008,-3.814697265625e-06,0,-0.14048957824707,9.5367431640625e-07,0,-0.0181286334991455,9.5367431640625e-07,0,-0.111320495605469,0,0,-0.106593132019043,2.86102294921875e-06,0,-0.196863532066345,0.0617070198059082,0.601244449615479,-0.151251912117004,9.5367431640625e-07,0,-0.202544450759888,0.214639186859131,1.53018474578857,-0.211577177047729,0.0866060256958008,0.958737373352051,-0.21239173412323,-0.14202880859375,2.71328639984131,-0.202323913574219,-0.00971364974975586,2.11747550964355,-0.175418496131897,-0.0758252143859863,3.43843555450439,-0.197821974754333,-0.110358238220215,3.11969184875488,-0.182199478149414,-0.0333213806152344,3.5293140411377,-0.175503134727478,-0.0287003517150879,3.48351955413818,-0.197173416614532,-0.0453948974609375,3.60856437683105,-0.160684108734131,-0.0561904907226563,3.68141078948975,-0.128614485263824,-0.0430870056152344,3.68475437164307,-0.150892972946167,-0.105112075805664,3.55817890167236,-0.17569500207901,-0.0780086517333984,3.6369104385376,-0.12126350402832,-0.116376399993896,3.38310813903809,-0.121285378932953,-0.101095199584961,3.47776031494141,-0.131827116012573,-0.176462650299072,2.67409753799438,-0.125357508659363,-0.136521816253662,3.06630945205688,-0.0229523181915283,0.0663371086120605,1.6963324546814,-0.141390204429626,-0.0518226623535156,2.23256397247314,-0.0110411643981934,-0.0367631912231445,0.92303466796875,-0.0273973941802979,0.0169744491577148,1.26307964324951,-0.00529718399047852,0,0.533062934875488,-0.0241310596466064,2.86102294921875e-06,0.712357521057129,-0.00239384174346924, -0,0,-0.0265810489654541,-2.38418579101563e-06,0,0.219266533851624,-3.814697265625e-06,0,0.0337250232696533,9.5367431640625e-07,0,0.0235904455184937,-2.38418579101563e-06,0,0.0295599699020386,-3.814697265625e-06,0,0.157735586166382,0,0.449384212493896,0.209065794944763,2.86102294921875e-06,0,0.261480331420898,-0.0424008369445801,0.87721061706543,0.201988458633423,-4.29153442382813e-06,0.53693675994873,0.325470685958862,0.125279903411865,1.66555166244507,0.305452108383179,0.0364322662353516,1.13663291931152,0.34891951084137,-0.177541732788086,2.67255830764771,0.334401845932007,-0.0512552261352539,2.19090175628662,0.287451028823853,-0.117464065551758,3.4115743637085,0.310927510261536,-0.139772415161133,3.06449842453003,0.268593430519104,-0.0948519706726074,3.5497465133667,0.283763885498047,-0.100555896759033,3.48793888092041,0.222552061080933,-0.061678409576416,3.68146228790283,0.254917025566101,-0.0790629386901855,3.6013879776001,0.197322428226471,-0.0522642135620117,3.70504379272461,0.0705982446670532,-0.0247268676757813,3.52549648284912,0.161838948726654,-0.038020133972168,3.61581516265869,0.0204588174819946,-0.0680766105651855,3.43706035614014,0.0398297309875488,-0.0241308212280273,3.47719764709473,0.00209450721740723,-0.133209228515625,2.76046848297119,0.00935029983520508,-0.10222864151001,3.17185592651367,0,0.248824119567871,1.60572242736816,6.04391098022461e-05,0.0208282470703125,2.26888704299927,0.00441503524780273,0.0563998222351074,0.546030044555664,0,0.211533069610596,1.1324782371521,0.0286592245101929,0.00184869766235352,0,0.0200525522232056,0.00309085845947266,0,0.0290156006813049,-3.814697265625e-06,0,0,-2.38418579101563e-06,0,0,-3.814697265625e-06,0 - } - Normals: *912 { - a: -0.00549158453941345,-0.000439047813415527,0.0171330198645592,9.13804498736681e-09,-9.29459929466248e-07,0,0.00549674034118652,-0.000446796417236328,0.0171155035495758,0.00113576650619507,0.00536841154098511,-0.0132306218147278,1.91107392311096e-06,-1.10268592834473e-06,4.76837158203125e-07,-0.00123083591461182,0.0053558349609375,-0.0132727026939392,-0.0469234585762024,-0.0379617810249329,0.0576065480709076,-6.09927819361644e-09,7.5995922088623e-07,2.98023223876953e-07,0.0306386351585388,-0.0608815848827362,-0.011548325419426,-0.240852236747742,-0.504639774560928,-0.169179111719131,0.0116647626273334,-0.87309318780899,-0.74423161149025,0.240640997886658,-0.495761096477509,-0.170645385980606,-0.0642208456993103,-0.0711469873785973,0.194584652781487,-2.90841413175258e-08,-0.00897115468978882,-0.0076177716255188,0.0642392635345459,-0.0711903050541878,0.19460791349411,0.00429483510379214,-0.0111492872238159,-0.0411160737276077,-0.101342678070068,0.00301565229892731,0.242801457643509,-1.18008811611503e-08,-0.00332576036453247,-0.103429585695267,0.101332247257233,0.00302742421627045,0.242789939045906,9.97704887595319e-08,-0.000657975673675537,-0.149826906621456,-0.0213176608085632,0.102664098143578,0.00131142325699329,5.10852178337018e-08,0.0382972359657288,-0.107468575239182,0.0213174223899841,0.102661684155464,0.00133166648447514,7.9384150808437e-08,0.00283581018447876,-0.0853761099278927,-0.0415295958518982,0.0409038662910461,-0.102171041071415,-9.4388633442577e-07,0.0186227560043335,-0.0670008361339569,0.0415265560150146,0.0408938229084015,-0.102188907563686,6.21454091742635e-07,1.69873237609863e-05,0.000287678092718124,-0.0429233908653259,0.0314661264419556,-0.0685340464115143,6.94460364769611e-08,0.00126171112060547,-0.0534973375033587,0.0429326295852661,0.0314772129058838,-0.0685345232486725,1.9748312084289e-05,0.00994348526000977,0.0468751937150955,-0.0639887452125549,0.0358259677886963,-0.0991558730602264,-7.68798997796694e-08,-0.000282704830169678,0.00237007439136505,0.0638748407363892,0.0357319712638855, --0.098987877368927,1.3473821852017e-05,-0.0241700410842896,-0.0202606320381165,-0.214526236057281,-0.050701480358839,-0.209534347057343,-1.12277257358073e-06,0.0587729215621948,-0.0636444687843323,0.182596623897552,-0.0518911629915237,-0.170115053653717,-0.315634727478027,-0.583707138895988,0.0920990705490112,-0.0700230002403259,0.0542425513267517,-0.164472430944443,-0.0325081348419189,-0.018704891204834,0.0381356179714203,-0.0775009393692017,-0.0162788331508636,0.146931409835815,-0.0272242426872253,-0.00719565153121948,0.0440544039011002,-0.0673033595085144,-0.0300320982933044,0.104334995150566,-0.11912739276886,0.017590343952179,0.112595677375793,-0.0890138149261475,-0.0176835656166077,0.105541467666626,-0.105757117271423,0.00762400031089783,0.127563059329987,-1.78029884168041e-08,5.66244125366211e-07,1.19209289550781e-07,-0.00503037869930267,-0.000885426998138428,0.000794470310211182,-0.00356630980968475,-2.42888927459717e-05,0.000464141368865967,0.00942835211753845,0.00446962751448154,0.00137907266616821,0.00730820000171661,0.0018007904291153,0.00123804807662964,0.0315828025341034,0.0029757171869278,0.00879895687103271,0.0509201288223267,0.0246032606810331,0.0185671448707581,0.0364857316017151,0.00605951249599457,0.0116674304008484,0.0689535737037659,-0.0306984484195709,0.127593398094177,0.0325065851211548,-0.018711268901825,0.0381294786930084,0.0217227339744568,-0.00414139032363892,0.041860818862915,0.0619962215423584,-0.028319776058197,0.0921760499477386,0.0909970998764038,0.0179468393325806,-0.238663241267204,0.27434054017067,-0.962919324636459,-0.00516366958618164,-1.16787850856781e-06,2.02655792236328e-06,-1.13248825073242e-06,-8.94069671630859e-07,1.43051147460938e-06,-1.01327896118164e-06,-0.0954701602458954,-0.106054604053497,0.0599478483200073,-0.298286855220795,-0.608213998377323,-0.00743797421455383,-0.00263869762420654,-0.315793052315712,-0.363231524825096,-0.293938994407654,-0.42407806598203,-0.302054643630981,-0.0195923447608948,-0.071926087141037,0.0249086767435074,-0.120343089103699,-0.10123487142846, -0.176825523376465,-0.0940954685211182,-0.0475573092699051,0.178466737270355,-0.0995184183120728,-0.0645154118537903,0.0532761812210083,-0.109153509140015,-0.0283857882022858,0.0957165956497192,-0.0017338590696454,-0.004669189453125,-0.00376629829406738,-4.51949100366278e-09,-0.000689208507537842,-0.000245332717895508,0.00174065958708525,-0.00377762317657471,-0.00304341316223145,0.00424329191446304,-0.000176429748535156,0.000267386436462402,0.0231729820370674,-0.00606900453567505,-0.000818133354187012,0.0256788730621338,-0.000521421432495117,0.00527602434158325,0.115518569946289,-0.0933587190229446,0.16737774014473,0.0195905566215515,-0.0719042867422104,0.0249078869819641,0.0886344909667969,-0.0461857169866562,0.164018213748932,0.0337298512458801,0.0382765233516693,-0.188007431570441,0.179482221603394,-0.182240188121796,-0.435851749032736,-0.0498250424861908,-0.0101257562637329,0.09041877835989,0.0196886828634888,-0.0768895149230957,-0.19751763343811,-0.27463111281395,-1.12290060520172,-0.389275729656219,-0.0761202871799469,-0.0318406820297241,-0.0127349868416786,0.0562313497066498,-0.0123149752616882,0.0853153485804796,0.267052382230759,-1.13983443379402,-0.398438334465027,0.0928095281124115,-0.0425657033920288,-0.0249636843800545,-0.0796191990375519,0.0341975092887878,0.0924011245369911,-0.0559398531913757,0.0377939939498901,-0.0310379527509212,-0.134376287460327,-0.0544292330741882,0.304607033729553,-0.0982664823532104,-0.18638198915869,0.214110121130943,-0.17125016450882,-0.118322169408202,0.273120790719986,-0.185094475746155,-0.195315629243851,0.0922132730484009,-0.218989729881287,-0.0841751396656036,0.199348598718643,-0.0279862657189369,-0.00102657079696655,-0.0884247089270502,-4.38197922392192e-08,0.0152902603149414,0.0494339764118195,-0.00303380936384201,0.0239834189414978,0.0691345632076263,0.0261376276612282,-0.00112444162368774,-0.087421512696892,0.000788696110248566,0.0243030786514282,0.070753276348114,0.044535543769598,-0.00814205408096313,-0.0625454261898994,0.0279081165790558,0.0370974540710449,0.0949774086475372, -0.0986180305480957,-0.166407458949834,0.215116128325462,0.134392917156219,-0.0544507950544357,0.304629445075989,0.170752108097076,-0.100530439987779,0.270983070135117,0.213555872440338,0.185623228549957,0.114776015281677,0.19021999835968,0.217219710350037,0.0513653755187988,-0.0878991931676865,-0.00587010383605957,-0.0865378566086292,-3.36919129040325e-07,0.00153070688247681,0.0410062596201897,-0.00422455370426178,-0.0120635032653809,0.142077540047467,0.0879015438258648,-0.00587064027786255,-0.0865356493741274,0.00421991944313049,-0.0120617747306824,0.14207399636507,-0.0623205006122589,0.0206954479217529,0.0287649892270565,-0.111248582601547,0.0299385786056519,0.161821406334639,-0.041817307472229,0.0600658804178238,0.140647053718567,-0.0649778246879578,-0.196767121553421,-0.121385097503662,-0.0348122119903564,-0.208728585392237,0.0167390704154968,-0.220013856887817,-0.175674915313721,-0.177563458681107,-0.183146476745605,-0.232691764831543,-0.118076331913471,-0.0562283545732498,0.0443741083145142,-0.103724598884583,-7.87344660579947e-08,0.0290990471839905,-0.187513623386621,-0.0354302898049355,0.0322660803794861,-0.18212915584445,0.0555886551737785,0.0444013476371765,-0.103969752788544,0.0344051346182823,0.0321372151374817,-0.181774515658617,0.113862428814173,0.0345174670219421,-0.122832000255585,0.0860692709684372,0.0170570611953735,-0.168109014630318,0.0606793165206909,-0.169757515192032,-0.115775763988495,0.0418136715888977,0.0600643008947372,0.140641644597054,0.0334976315498352,-0.183674514293671,0.0195615813136101,0.223243713378906,0.211416006088257,0.0581481549888849,0.240498602390289,0.22320955991745,0.153504945337772,-0.0158529579639435,-0.000150561332702637,-0.0869312528520823,1.67029270414787e-08,0.00140637159347534,-0.250888220965862,-0.0859462209045887,-0.00984078645706177,-0.216800332069397,0.0158528536558151,-0.000150740146636963,-0.08693016320467,0.0859508998692036,-0.00984203815460205,-0.216798461973667,-0.0288849622011185,0.00695091485977173,-0.0650799684226513,0.000955581665039063,-0.00256997346878052, --0.140860512852669,-0.0457597374916077,0.0830264687538147,-0.112398214638233,-0.105993866920471,-0.246870398521423,-0.183940246701241,-0.11015111207962,-0.209913596510887,-0.188238516449928,-0.239423930644989,-0.16538017988205,-0.131368011236191,-0.250273168087006,-0.166951835155487,-0.155991226434708,-0.0728084482252598,0.021506667137146,-0.0623918622732162,-5.02894863529946e-07,0.0267866253852844,-0.0597796440124512,-0.0719958040863276,0.0333043336868286,-0.0596955716609955,0.0722446916624904,0.0214492678642273,-0.0621913075447083,0.0715587474405766,0.0333309173583984,-0.0597928762435913,0.104585569351912,0.0105478167533875,-0.0669874846935272,0.120917335152626,0.0237715244293213,-0.0753731429576874,0.103581786155701,-0.225867696106434,-0.180840983986855,0.0457587242126465,0.0830256640911102,-0.112396433949471,0.105494320392609,-0.1863032579422,-0.181946784257889,0.137062758207321,0.0620736479759216,-0.0270407075295225,0.183741748332977,0.123345732688904,-0.0590026532299817,0.0411141514778137,0.00564169883728027,-0.000347040593624115,2.53583255727108e-07,-0.000933229923248291,0.0336460862308741,0.0294365733861923,0.00320309400558472,0.0302092495840043,-0.0411180779337883,0.00564253330230713,-0.000348702073097229,-0.0294399484992027,0.00320374965667725,0.0302099117543548,-0.0727100372314453,0.0175341367721558,-0.00212904065847397,-0.058954045176506,0.0137805938720703,0.0322238565422595,-0.0379325151443481,0.0311228036880493,-0.0747550576925278,-0.0746996402740479,-0.237446680665016,-0.0923348665237427,-0.0839422345161438,-0.23805283010006,-0.144100055098534,-0.212273061275482,-0.177811741828918,-0.0522442758083344,-0.210213840007782,-0.161219775676727,-0.0967001020908356,-0.0545811243355274,0.00482320785522461,-0.0533482236787677,-2.57667693404073e-07,0.00532352924346924,-0.062974713742733,-0.0612397994846106,0.00805246829986572,-0.0607918128371239,0.0525957047939301,0.00473904609680176,-0.0531884976662695,0.0598493441939354,0.00802701711654663,-0.0609810724854469,0.0751987174153328,-0.00466090440750122,-0.060451865196228, -0.0771814286708832,-0.000527441501617432,-0.068591944873333,0.073223352432251,-0.219981230795383,-0.0937048494815826,0.0379276275634766,0.0311158299446106,-0.0747637003660202,0.0824703574180603,-0.218966417014599,-0.144023582339287,0.105701178312302,0.0394635200500488,0.00122687965631485,0.114504128694534,0.0437241792678833,0.0331530869007111,0.0132445394992828,0.0085640549659729,0.0257802456617355,8.81902678884217e-06,0.0040823221206665,0.0206951051950455,0.0359650105237961,0.00610166788101196,0.0041518360376358,-0.0113196074962616,0.00749003887176514,0.0229279845952988,-0.0359371155500412,0.00608134269714355,0.00407767295837402,-0.0694315284490585,0.0181838274002075,-0.0101154148578644,-0.0846981406211853,0.0202493071556091,-0.0146416425704956,-0.033605694770813,0.023029088973999,-0.0561355948448181,-0.116639137268066,-0.19146990776062,-0.0274702906608582,-0.0896766185760498,-0.238399475812912,-0.0258659720420837,-0.152810633182526,-0.110562324523926,0.0366315692663193,-0.190393209457397,-0.153124034404755,-0.011164203286171,-0.0429717376828194,0.00324887037277222,0.00162535160779953,4.41726566435818e-08,0.00125813484191895,-0.0449493802152574,-0.0484923236072063,0.00523549318313599,-0.0450856471434236,0.0414399467408657,0.00319498777389526,0.00132207572460175,0.046863354742527,0.0051453709602356,-0.0448396345600486,0.07004114985466,-0.00986999273300171,0.0193511694669724,0.0639722272753716,-0.00294613838195801,-0.0465111769735813,0.111982524394989,-0.178762555122375,-0.0296431481838226,0.0336105823516846,0.0230293869972229,-0.0561456382274628,0.0873653888702393,-0.223869040608406,-0.0298457145690918,0.111897319555283,0.04268479347229,-0.0264488458633423,0.109280198812485,0.0394690036773682,-0.0229991674423218,0.0236587822437286,-0.0232856869697571,-0.0243145823478699,8.73622502695071e-06,-0.00758486986160278,-0.0155946314334869,0.00898562371730804,-0.00627297163009644,-0.0151373147964478,-0.0203970521688461,-0.0211575627326965,-0.0217125415802002,-0.0051683634519577,-0.00607645511627197,-0.0131984055042267,-0.0483944714069366, --0.0407143831253052,-0.0486472845077515,-0.059316873550415,0.00600540637969971,-0.0267833471298218,-0.107136905193329,0.0114564299583435,-0.134416937828064,-0.177898943424225,0.00617086887359619,-0.18280041217804,-0.135518312454224,-0.125271499156952,-0.0619670450687408,-0.0530048906803131,0.0957213044166565,-0.121822118759155,-0.100055932998657,-0.0282116532325745,-0.0414532124996185,-0.0123754981905222,0.0628252625465393,-0.0635785460472107,1.09132088255137e-07,0.027984082698822,-0.0606123805046082,-0.0231134742498398,0.0332717895507813,-0.0680201053619385,0.00816730596125126,0.0630649924278259,-0.0639211535453796,0.0202075615525246,0.0335490107536316,-0.0691089630126953,0.0312149748206139,0.0725522041320801,-0.0744215250015259,0.0336615703999996,0.0246574282646179,-0.0580344498157501,0.158253908157349,-0.00521910190582275,-0.147022306919098,0.100082993507385,0.0121089220046997,-0.123053967952728,0.125621795654297,-0.113906592130661,-0.0569882988929749,0.118651390075684,-0.0388532876968384,-0.0975689888000488,0.106009751558304,0.0309460163116455,-0.045490562915802,2.36750144040343e-05,0.0337097197771072,-0.00665026903152466,-0.030910313129425,0.027860552072525,-0.00863975286483765,-0.0296475365757942,0.0744860768318176,-0.0762688517570496,-0.0425284057855606,0.0160199850797653,-0.0137848854064941,0.0284493789076805,0.0271121859550476,-0.00817114114761353,0.0695152282714844,0.0853905081748962,-0.119610190391541,0.10642072558403,-0.00974224507808685,-0.0517296195030212,0.0681144595146179,0.00410979986190796,0.107703149318695,0.100178003311157,-0.00441053509712219,0.1038738489151,0.0928391814231873,0.00072401762008667,0.105177998542786,0.0700771808624268,0.0540834069252014,-0.164279192686081,0.0873916745185852,-0.0535174906253815,0.0467520952224731,0.0931477546691895,-0.0256233811378479,0.0791788101196289,0.178485929965973,-0.183155357837677,0.0938983410596848,0.20939314365387,-0.0676749348640442,0.199189275503159,0.215296030044556,-0.168246448040009,-0.177815079689026,0.177255272865295,-0.222218811511993,-0.116824004799128, -0.226351022720337,-0.148749649524689,-0.131701856851578,0.241929411888123,-0.155278742313385,-0.155283719301224,0.197272777557373,-0.159445524215698,-0.0571294277906418,0.194733321666718,-0.142825484275818,-0.0994837284088135,0.146016299724579,-0.103106021881104,0.0309293419122696,0.17922055721283,-0.139814555644989,-0.0178620964288712,0.104885280132294,-0.0323926210403442,-0.038785308599472,0.0597186088562012,-0.0383471250534058,-0.0521543025970459,0.0531551986932755,0.012141153216362,-0.016133725643158,0.0728194117546082,0.0222219824790955,-0.000878065824508667,0.0597282946109772,0.00995504856109619,-0.0203821957111359,0.0727142542600632,0.0175360441207886,-0.00212959200143814,0.0846233367919922,0.0202332735061646,-0.0146120935678482,0.0288844853639603,0.00695067644119263,-0.065080177038908,0.0589545071125031,0.013780951499939,0.0322209987789392,0.0623211264610291,0.020695686340332,0.0287663303315639,-0.000956147909164429,-0.00257009267807007,-0.140859559178352,0.0805562138557434,0.0335447788238525,0.0933870747685432,0.111251354217529,0.0299385190010071,0.161822404712439,0.00285124778747559,-0.315199017524719,-0.363266184926033,0.0590389668941498,0.0390922427177429,-0.0282151661813259,0.298007428646088,-0.613493297249079,-0.00909486413002014,0.293877303600311,-0.424029324669391,-0.302435606718063,-0.0908902883529663,0.0181207656860352,-0.238814637064934,-0.0470696985721588,0.00114213488996029,0.0164289474487305,-0.0239491164684296,0.00408796966075897,0.00689125061035156,-0.0313381254673004,0.00426697731018066,0.00978833436965942,-0.0337358713150024,0.0383342504501343,-0.187973286025226,-0.179404139518738,-0.182131767272949,-0.435919981449842,-0.213582098484039,0.185654938220978,0.11478528380394,-0.190206229686737,0.217217296361923,0.0513540357351303,-0.223247766494751,0.211421489715576,0.0581418480724096,-0.240488409996033,0.223204493522644,0.153504304587841,-0.13706237077713,0.0620735883712769,-0.0270421724999323,-0.183742731809616,0.123345732688904,-0.0590045005083084,-0.105699002742767,0.0394627451896667,0.00122889131307602, --0.114504873752594,0.0437244176864624,0.0331561770290136,-0.117285013198853,0.0426678061485291,-0.0345642864704132,-0.109245836734772,0.0394611358642578,-0.0229635238647461,-0.130186587572098,-0.0366350710391998,-0.104884147644043,-0.120323330163956,0.0307188034057617,-0.0605748295783997,-0.0885584950447083,0.000539705157279968,-0.0436334609985352,-0.0680410824716091,-0.00975227355957031,0.020150363445282,-0.0317628718912601,0.0253192186355591,-0.0592219829559326,-0.0735411010682583,-0.00443094968795776,-0.0605462361127138,-0.062094658613205,-0.0027165412902832,-0.0460708700120449,-0.103277489542961,0.0106711387634277,-0.0666900277137756,-0.0757106356322765,-0.000355064868927002,-0.0681848302483559,-0.110797911882401,0.0350560545921326,-0.122850924730301,-0.117594256997108,0.0243160128593445,-0.0752205848693848,-0.0439349748194218,-0.0080762505531311,-0.0623966977000237,-0.0822428837418556,0.0175790786743164,-0.168270144611597,-0.019941546022892,-0.00418698787689209,3.55839729309082e-05,-0.0268620327115059,0.0375651717185974,0.0960762798786163,-0.0209942162036896,0.000393480062484741,0.00452655553817749,1.9371509552002e-06,3.57627868652344e-06,-2.08616256713867e-06,2.98023223876953e-08,7.15255737304688e-07,-6.55651092529297e-07 - } - } - Geometry: 2807663836944, "Geometry::Tongue_Left", "Shape" { - Version: 100 - Indexes: *133 { - a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,143,146,148,151,153,155,158,160,162,165,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,256,258,259,260,261,262,263,264,265,266,267,268,269,270,289,291,292,293,294,295,296,297,298,299,300,301,302,303 - } - Vertices: *399 { - a: 0.635910803452134,0,-0.137022972106934,0.654233455657959,0,0.207207202911377,0.704220946878195,0,-0.144786834716797,0.576516389846802,0,-0.476607799530029,2.00815437920392,0,-1.36818695068359,2.63889765739441,0,-0.335431098937988,2.1319927982986,0,-1.43447971343994,1.46730995178223,0,-2.45318269729614,3.23191015981138,0,-2.16118574142456,4.18942487239838,0,-0.959047317504883,3.24998900666833,0,-2.17578887939453,2.18175852298737,0,-3.28719806671143,4.04522655159235,0,-2.86883926391602,4.49901211261749,0,-1.55556869506836,3.98328971117735,0,-2.81072807312012,2.807000041008,0,-3.49796152114868,0.60919326543808,0,-0.252548217773438,0.63579660654068,0,-0.0184712409973145,0.635469973087311,0,0.1195969581604,0.665620803833008,0,0.232763767242432,0.682176470756531,0,0.217867374420166,0.70434957742691,0,-0.0386743545532227,0.68053463101387,0,-0.248219966888428,0.628820061683655,0,-0.420516490936279,0.581878423690796,0,-0.504067897796631,0.571819186210632,0,-0.449136734008789,1.81638231873512,0,-1.72769021987915,1.15356215275824,0,-0.760390758514404,1.06741738319397,0,-1.01813459396362,2.21138834953308,0,-1.01368141174316,1.22595998644829,0,-0.497836112976074,2.42778825759888,0,-0.646540641784668,1.31814193725586,0,-0.215489864349365,1.38339424133301,0,0.019139289855957,2.68695402145386,0,-0.286664009094238,1.44196391105652,0,0.0537128448486328,2.73334217071533,0,-0.363518714904785,1.47143566608429,0,0.0114016532897949,2.31312364339828,0,-1.11504745483398,1.35910852998495,0,-0.821870803833008,1.42127883434296,0,-0.585699558258057,1.95808079838753,0,-1.75681972503662,1.27909287810326,0,-1.05232095718384,1.68678557872772,0,-2.26672792434692,1.08964359760284,0,-1.41637897491455,1.4532253742218,0,-2.51674032211304,0.909520506858826,0,-1.53600692749023,0.939279317855835,0,-1.59598255157471,1.53748893737793,0,-2.32573938369751,0.935054779052734,0,-1.44769191741943,2.91812455654144,0,-2.52475881576538,2.67144435271621,0,-1.74041652679443,2.37987330555916,0,-2.13337898254395,3.54719206690788,0,-1.79527854919434,2.96685186028481, -0,-1.34849691390991,3.86469548940659,0,-1.40733528137207,3.27234899997711,0,-0.948871612548828,3.55613112449646,0,-0.605266571044922,4.19024133682251,0,-0.976071357727051,3.58729028701782,0,-0.578062057495117,4.09093701839447,0,-1.16506814956665,3.58397138118744,0,-0.711846351623535,3.50313660502434,0,-1.88805770874023,2.7661452293396,0,-1.8085880279541,3.01899385452271,0,-1.4797306060791,3.00360557436943,0,-2.46732950210571,2.52325052022934,0,-2.14261865615845,2.62966644763947,0,-2.90548086166382,2.15649455785751,0,-2.64484596252441,2.20133876800537,0,-3.28246212005615,1.83040833473206,0,-2.91283273696899,1.81650173664093,0,-2.945885181427,2.30299258232117,0,-3.16180992126465,1.93447470664978,0,-2.77552509307861,3.83676049113274,0,-3.0804295539856,3.73461525142193,0,-2.59983587265015,3.48708745837212,0,-2.86987447738647,4.22405955195427,0,-2.63144779205322,3.96631130576134,0,-2.31415271759033,4.45654588937759,0,-2.17679929733276,4.25724178552628,0,-1.84949588775635,4.40590000152588,0,-1.30303859710693,4.50732612609863,0,-1.61920595169067,4.37775850296021,0,-1.3143630027771,4.47480297088623,0,-1.945481300354,4.32342493534088,0,-1.64152717590332,4.13850831985474,0,-2.61385583877563,3.68431042134762,0,-2.55583000183105,3.87483862042427,0,-2.33125162124634,3.81172657012939,0,-2.99280166625977,3.49085277318954,0,-2.776535987854,3.51232302188873,0,-3.27440595626831,3.2619463801384,0,-3.05748224258423,2.88253808021545,0,-3.48587608337402,2.54869294166565,0,-3.45671367645264,2.55866634845734,0,-3.42574405670166,3.04618036746979,0,-3.50621509552002,2.69773161411285,0,-3.38833379745483,4.1138014793396,0,-2.9251708984375,4.27099451422691,0,-2.71631908416748,4.37265002727509,0,-2.26623392105103,4.4763885140419,0,-2.30006694793701,3.9305003285408,0,-3.11116600036621,3.22611105442047,0,-3.39328956604004,3.23055863380432,0,-3.49529075622559,0.601954817771912,0,-0.487987518310547,1.55414235591888,0,-2.49503087997437,0.99126136302948,0,-1.56442165374756,2.38886165618896,0,-3.13884830474854,1.96508455276489,0,-2.89071941375732,2.88870394229889, -0,-3.30340099334717,3.4565931558609,0,-3.34680986404419,3.56354463100433,0,-3.36894512176514,2.57935404777527,0,-2.89785623550415,3.12190955877304,0,-3.17857265472412,1.62019848823547,0,-2.1063289642334,2.08252561092377,0,-2.53985166549683,0.577891826629639,0,-0.387022018432617,0.986512422561646,0,-1.3038215637207,0.643491387367249,0,0.181492328643799,2.56769132614136,0,-0.463551998138428,1.35518884658813,0,-0.0689077377319336,4.08212852478027,0,-1.09867286682129,3.4525671005249,0,-0.745595455169678,4.56575298309326,0,-1.75611591339111,4.36205863952637,0,-1.46356010437012,4.58952176570892,0,-1.92104911804199,3.89779156446457,0,-1.43497276306152,4.11765199899673,0,-2.05390167236328,2.61882066726685,0,-0.582058906555176,3.41856628656387,0,-0.955323696136475,0.693648636341095,0,0.14989709854126,1.47404301166534,0,-0.154926776885986 - } - Normals: *399 { - a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.120483659207821,1.22050394117832,-0.975012172013521,0.20459649618715,1.60866624116898,-0.80628751963377,0.758160121738911,0.279101312160492,-1.14875745773315,0.508439189754426,-0.123756885528564,-1.16271796822548,-0.0839923524401627,-0.612549155950546,-1.24820390343666,0.0839898160554924,-0.612549930810928,-1.24820226430893,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721, --0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532, -0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508, --0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,0.344773926102203,1.88571286201477,-0.345818737521768,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994 - } - } - Geometry: 2807663839248, "Geometry::Tongue_Right", "Shape" { - Version: 100 - Indexes: *5553 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,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,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963, -2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401, -3402,3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812, -3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235, -4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649, -4651,4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074, -5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489, -5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5965,5967,5995,5997,6028,6155,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6515,6525,6526,6529,6530,6531,6536,6544,6552,6553,6554,7214,7347,7349,7377,7379, -7410,7537,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7897,7907,7908,7911,7912,7913,7918,7926,7934,7935,7936,8591,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 - } - Vertices: *16659 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,0,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,0,0,-0.63590688072145,0,-0.137022972106934,-0.576609373092651,0,-0.476607799530029,-0.70421702042222,0,-0.144786834716797,-0.654326438903809,0,0.207207202911377,-2.00815440528095,0,-1.36818695068359,-1.46739745140076,0,-2.45318269729614,-2.1319928355515,0,-1.43447971343994,-2.63898515701294,0,-0.335431098937988,-3.23210198618472,0,-2.16118574142456,-2.18185389041901,0,-3.28719806671143,-3.24998905882239,0,-2.17578887939453,-4.18952023983002,0,-0.959047317504883,-4.04522659629583,0,-2.86883926391602,-2.80699241161346,0,-3.49796152114868,-3.98328972607851,0,-2.81072807312012,-4.49900448322296,0,-1.55556869506836,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0, --8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-0.635891735553741,0,-0.0184712409973145,-8.7440013885498e-05,-1.43051147460938e-06,0,-0.609288334846497,0,-0.252548217773438,-8.7440013885498e-05,1.43051147460938e-06,0,-0.57798707485199,0,-0.387022018432617,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,0,-0.581973314285278,0,-0.504067420959473,-8.74996185302734e-05,0,0,-0.6020427942276,0,-0.487987518310547,-8.53538513183594e-05,0,0,-0.680522680282593,0,-0.248219966888428,-9.51886177062988e-05,0,0,-0.704337596893311,0,-0.0386743545532227,-9.51886177062988e-05,0,0,-0.693636536598206,0,0.149897575378418,-9.5367431640625e-05,0,0,-0.66571569442749,0,0.232763290405273,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-0.643578886985779,0,0.181492328643799,-9.5367431640625e-05,0,0,-2.21148344874382,0,-1.01368141174316,-1.15356246195734,0,-0.760390758514404,-1.22605156898499,0,-0.497835636138916,-1.81647753715515,0,-1.72769021987915, --1.06750896573067,0,-1.01813507080078,-1.62029457092285,0,-2.1063289642334,-0.986603140830994,0,-1.30382108688354,-0.909619212150574,0,-1.53600692749023,-1.45331990718842,0,-2.51674032211304,-0.939271569252014,0,-1.59598255157471,-1.5542368888855,0,-2.49502992630005,-0.991360545158386,0,-1.56442165374756,-1.95807319879532,0,-1.75681972503662,-1.35910884290934,0,-0.821870803833008,-1.27918446063995,0,-1.05232095718384,-2.31311604380608,0,-1.11504745483398,-1.42137041687965,0,-0.585699558258057,-2.61891603469849,0,-0.582058906555176,-1.47414219379425,0,-0.154927253723145,-2.68704867362976,0,-0.286664009094238,-1.38349306583405,0,0.019139289855957,-1.44195628166199,0,0.0537128448486328,-2.56768417358398,0,-0.463552951812744,-1.35528755187988,0,-0.0689067840576172,-3.54727947711945,0,-1.79527854919434,-2.67163616791368,0,-1.74041652679443,-2.96704289317131,0,-1.34849691390991,-2.91821196675301,0,-2.52475881576538,-2.38006433844566,0,-2.13337898254395,-2.57944923639297,0,-2.89785623550415,-2.08261382579803,0,-2.53985166549683,-1.83049595355988,0,-2.91283273696899,-2.20143461227417,0,-3.28246212005615,-1.8164941072464,0,-2.945885181427,-2.38894999027252,0,-3.1388463973999,-1.96507656574249,0,-2.89072036743164,-3.00369313359261,0,-2.46732950210571,-2.7661452293396,0,-1.8085880279541,-2.52333784103394,0,-2.14261865615845,-3.50322416424751,0,-1.88805770874023,-3.0190811753273,0,-1.4797306060791,-3.89787948131561,0,-1.43497276306152,-3.41865450143814,0,-0.955323696136475,-4.19033718109131,0,-0.976071357727051,-3.55621886253357,0,-0.605266571044922,-3.58728265762329,0,-0.578062057495117,-4.08212089538574,-2.86102294921875e-06,-1.09867286682129,-3.45266270637512,0,-0.745596408843994,-4.22414687275887,0,-2.63144779205322,-3.73480708897114,0,-2.59983587265015,-3.96650198101997,0,-2.31415271759033,-3.83684757351875,0,-3.0804295539856,-3.48727813363075,0,-2.86987447738647,-3.45668143033981,0,-3.34680986404419,-3.12200516462326,0,-3.17857265472412,-2.54878067970276,0,-3.45671272277832,-2.88252997398376,1.43051147460938e-06,-3.48587703704834, --2.55876159667969,0,-3.42574214935303,-3.22620677947998,0,-3.39328956604004,-2.88879144191742,0,-3.30340003967285,-3.81181478500366,3.814697265625e-06,-2.99280166625977,-3.68431045114994,0,-2.55583000183105,-3.49094125628471,0,-2.77653408050537,-4.138596534729,-3.814697265625e-06,-2.61385583877563,-3.87492710351944,0,-2.33125352859497,-4.37273824214935,0,-2.26623392105103,-4.11774736642838,0,-2.05389976501465,-4.5073184967041,-1.43051147460938e-06,-1.61920499801636,-4.40598773956299,0,-1.30303955078125,-4.37785375118256,0,-1.31436491012573,-4.56584823131561,0,-1.75611591339111,-4.36214578151703,0,-1.46356010437012,-4.1138014793396,0,-2.9251708984375,-3.93059507012367,2.38418579101563e-06,-3.11116600036621,-3.512411236763,0,-3.27440595626831,-3.56373447179794,1.43051147460938e-06,-3.36894607543945,-4.27108973264694,-2.38418579101563e-06,-2.71631908416748,-4.47489869594574,0,-1.945481300354,-4.5896167755127,0,-1.92104911804199,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,0,-0.682264447212219,0,0.217867374420166,-8.53538513183594e-05,0,0,-2.73343658447266,0,-0.363519668579102,-1.4715348482132,0,0.0114016532897949,-4.09102535247803,0,-1.16507005691528,-3.58396339416504,0,-0.711845397949219,-4.32351243495941,0,-1.64152812957764,-4.45663392543793,0,-2.17679929733276,-4.47657835483551,-1.43051147460938e-06,-2.3000659942627,-3.86479067802429,0,-1.40733528137207,-4.25733715295792,0,-1.84949588775635,-2.42788434028625,0,-0.646540641784668,-3.27243721485138,0,-0.948871612548828,-0.635565280914307,0,0.1195969581604,-1.3182327747345,0,-0.215490341186523,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05, -0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-0.571906685829163,-1.43051147460938e-06,-0.449136734008789,-9.5367431640625e-05,0,0,-1.53748178482056,0,-2.32573843002319,-0.935153365135193,0,-1.44769287109375,-2.30298519134521,2.86102294921875e-06,-3.16180992126465,-1.9345703125,0,-2.7755241394043,-3.04627561569214,0,-3.50621509552002,-2.69781851768494,0,-3.38833379745483,-3.23065388202667,0,-3.49529075622559,-2.62975436449051,0,-2.90548086166382,-3.26204150915146,0,-3.05748414993286,-1.68688094615936,0,-2.26672792434692,-2.15658277273178,0,-2.64484596252441,-0.628807902336121,0,-0.420516967773438,-1.08974277973175,0,-1.41637849807739,-9.52482223510742e-05,0,0,-9.5367431640625e-05,0,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,0,0,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,0,0.000397086143493652,0,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828757882118225,0,0,0.000902518630027771,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06, --0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,0,0,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,0,-0.000397086143493652,0,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0,-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,0,1.43051147460938e-06,0.000117987394332886,0,0,0.000116556882858276,0,-3.33786010742188e-06,0,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543408095836639,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813722610473633,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,0,1.43051147460938e-06,-0.000117987394332886,0,0,-0.000116556882858276,0,-3.33786010742188e-06,0,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945, -0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05, -0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047, -0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05, -0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05, -0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05, -0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047, -0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05, -0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05, -0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496, -0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0, -8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05, -0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047, -0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0, -8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05, -0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05, -0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05, -0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05, -0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508, -0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05, -0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05, -0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945, -0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05, -0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0, -0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05, -0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0, -7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05, -0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699, -0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047, -0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668, -0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578, -0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0, -8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05, -0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0, -0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675, -0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0, -0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0, -0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05, -0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0, -0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477, -0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477, -0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0, -9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05, -0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0, -0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05, -0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05, -0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0, -0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883, -0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0, -0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05, -0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0, -9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, -0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0, -0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883, -0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0, -0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0, -0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05, -0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477, -0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0, -0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0, -0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05, -0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0, -0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0,0.000311195850372314,0,0,0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,-7.62939453125e-06,1.9073486328125e-06,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145077705383301,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778466463088989,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,-6.67572021484375e-06,-2.78949737548828e-05,7.62939453125e-06, -0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,0,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,1.43051147460938e-06,0,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,7.62939453125e-06,-1.9073486328125e-06,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,-6.67572021484375e-06,2.78949737548828e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,0,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,3.55243682861328e-05,-4.76837158203125e-06,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,1.43051147460938e-06,0,0,0,-3.55243682861328e-05,0,0,-0.000365912914276123,0,0,-0.000880539417266846,0,0,0.000715732574462891,0, -0,0.000732406973838806,0,0,-7.75158405303955e-05,0,0,3.55243682861328e-05,0,0,0.000365912914276123,0,0,0.000880539417266846,0,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,0,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,0,0,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,0,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,0,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,0,0,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,0,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 - } - Normals: *16659 { - a: 2.27689743041992e-05,3.20672988891602e-05,0.000124514102935791,-1.16591727733612,-0.240311801433563,-0.206880882382393,-0.913561075925827,0.00994575023651123,-0.584499821066856,-0.315583378076553,-0.177608251571655,-0.60228043794632,-0.0239431262016296,-0.152085363864899,-0.212756350636482,-1.54715305566788,0.132637053728104,-0.185484156012535,-1.63198620080948,0.721433788537979,-0.849138200283051,0.241971671581268,0.613164186477661,-1.0665009021759,0.316049695014954,0.74718501418829,-0.0224082171916962,-1.58791506290436,0.707276023924351,0.0987655520439148,0.196411609649658,0.613466709852219,-0.173938423395157,-1.07356637716293,0.400617688894272,-0.467543333768845,-0.262519783692767,1.13174542784691,-1.03474386036396,0.661105394363403,0.268221111036837,-0.971742909401655,-0.57694870319791,-0.250454187393188,-0.854813247919083,-1.61033010482788,0.63511061668396,-0.683864237740636,-0.262519301498045,1.13484868407249,-0.964971464127302,0.697285160422325,0.677558615803719,-1.17043273150921,-0.149441973067837,-0.97621020115912,-1.2896480858326,-1.12993746995926,0.547495991922915,-1.14102217555046,-0.262514572448254,1.13317188620567,-1.01411463320255,0.512449681758881,0.790123790502548,-1.19419477880001,-0.119208658913621,-0.824118673801422,-1.02771234512329,-0.872981801629066,0.76610954105854,-1.21790581941605,-0.262518899932942,1.11781790852547,-1.13946427404881,0.660008355975151,0.594155862927437,-1.40319916605949,-0.11920838000907,-0.818485379219055,-1.09466391801834,-0.786887782706344,0.673794075846672,-1.39644461870193,1.90639120773994e-05,0.746517777442932,-1.76961463689804,0.42756325006485,-0.00193877331912518,-1.80498969554901,-0.126878530339582,-0.560916766524315,-1.69107401371002,-0.576956666649494,0.136762849986553,-1.80973088741302,0.132587261497974,-0.694139184430242,-1.7294989824295,0.715989142656326,-0.551293224096298,-0.786049470305443,0.876190841197968,-0.355932012200356,-0.546774178743362,0.630465626716614,-0.695573136210442,-0.776317268610001,0.796463400125504,-0.415360301733017, --0.626329571008682,0.791523873806,-0.106114879250526,-0.186304211616516,0.83971780538559,-0.535534754395485,-0.489210397005081,0.94908082485199,-0.367752172984183,-0.287983655929565,0.268673218786716,-0.197480635717511,-0.0111175775527954,0.412016898393631,0.157775579020381,0.0330725908279419,0.389458477497101,-0.00873500108718872,0.0260237455368042,0.126959718763828,-0.00951065123081207,0.0197047591209412,0.496620073914528,0.298215916380286,0.27671355009079,0.51661628484726,0.236968532204628,0.31736296415329,0.348649531602859,0.464357867836952,0.485252887010574,-0.000166714191436768,-0.000764849595725536,-6.41942024230957e-05,4.64916229248047e-05,4.26024198532104e-05,1.88350677490234e-05,-0.173185884952545,0.00339797139167786,-0.2273870408535,0.0804297924041748,-0.135916650295258,-0.159799411892891,6.63399696350098e-05,-6.97970390319824e-05,-0.000123158097267151,-0.117792308330536,0.0394893884658813,-0.121384382247925,-0.0635263323783875,-0.166486769914627,-1.1121646463871,1.67388039827347,0.725799754261971,-0.681956082582474,1.2652713060379,0.342959254980087,-0.814976945519447,1.45459306240082,0.608475118875504,0.000539183616638184,1.46634268760681,0.536579959094524,0.284443229436874,1.45160299539566,0.562016159296036,0.322017297148705,1.01497256755829,0.536536008119583,0.63135538995266,0.903989166021347,0.625417411327362,1.16240686178207,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.43242160230875,0.377818286418915,1.44677823781967,0.291686438024044,0.127883791923523,1.33702057600021,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.541885435581207,0.499287456274033,0.753043949604034,-0.822150065563619,0.466420635581017,1.24807327985764,-0.914204845990753,0.659946888685226,0.760876655578613,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,0.00137031078338623,1.83294171094894,0.273091407492757, --0.0377517342567444,1.66545343399048,0.550613388419151,0.012391597032547,1.56471884250641,0.556147400289774,-0.0966790318489075,-0.0126661956310272,0.976471424102783,0.326926469802856,0.533524811267853,0.916109621524811,0.344792306423187,0.738515704870224,1.03014954924583,0.115300714969635,0.0272664427757263,0.781007051467896,-0.619631245732307,-0.237079322338104,0.439366321777925,-0.959396660327911,-1.16318753361702,0.760816186666489,-0.692750185728073,-1.21914592385292,0.526268573012203,-0.576831176877022,-0.50671261548996,0.988277971744537,-0.684110414236784,-0.573809146881104,0.688385270535946,-0.867743141949177,-1.13132801651955,0.947998553514481,-1.78472995758057,-0.528809487819672,0.653118491172791,-1.59750151634216,0.545366123318672,1.0639106631279,-1.46182864904404,0.456311896443367,1.09796705842018,-1.09547060728073,1.49366742372513,0.742532581090927,-1.30511432886124,1.13225799798965,0.894705176353455,-0.944893509149551,1.31604173779488,0.47277881577611,-1.08428926765919,1.21032673120499,-0.0548665672540665,-0.701022401452065,1.1955229640007,-0.524170788004994,-0.722540110349655,1.26275259256363,-0.282052993774414,-0.637647956609726,1.17633962631226,-0.117716930806637,-0.542793929576874,0.840272910892963,-0.250517711043358,0.163807392120361,0.324556693434715,-0.360174536705017,0.0860381126403809,-0.115832686424255,-0.718836218118668,0.122336030006409,-0.0540967583656311,-0.396296575665474,-0.163195192813873,-0.60698527097702,-1.00095996260643,0.144007086753845,-0.38711816072464,-0.844500996172428,-0.745927020907402,-0.67011870443821,-1.14504119753838,-0.996042430400848,-0.677311837673187,-0.673124119639397,-0.709598660469055,-0.704195737838745,-0.903533548116684,-0.478152826428413,-0.721471443772316,-0.988900542259216,-0.669058781117201,-0.666787043213844,-1.16921213269234,-0.592624947428703,-0.637175917625427,-0.999900132417679,-1.04062359035015,0.281357169151306,-1.00132443010807,-1.12000967562199,0.534246549010277,-0.665408492088318,-1.18508848547935,-0.0327898412942886,-0.836729533970356,-1.25749242305756, -1.07221993803978,-0.607341356575489,-1.21462106704712,1.00049267709255,-0.494261741638184,-0.289901584386826,1.29820761084557,-0.962001727893949,-0.225003533065319,1.21926210820675,-1.08551689237356,-0.120514489710331,1.22040452063084,-0.97502850368619,-0.052766352891922,1.28832253813744,-1.05252977460623,0.204597634263337,1.60867315530777,-0.806281916797161,0.225171983242035,1.27583736181259,-1.02904293686152,0.723326846957207,0.676983207464218,-1.12500961124897,0.758149698376656,0.279099464416504,-1.14875727891922,0.793812900781631,-0.0164097249507904,-1.312395632267,0.508440327830613,-0.123749971389771,-1.16271236538887,0.533544038447928,-0.0200812220573425,-1.20949444174767,-0.0839889591873089,-0.609957695007324,-1.24727627635002,-0.172890312969685,-0.560951113700867,-1.39662304520607,0.0839932093083462,-0.609958469867706,-1.24727463722229,0.102117602632916,-0.662188783288002,-1.42814111709595,-0.0486070728734376,-0.715996816754341,-1.31451740860939,-0.0463023430049816,-0.533515989780426,-1.42870756983757,-0.804806768894196,0.00139874219894409,-1.30235183238983,-0.806599229574203,0.58848175406456,-1.16165420413017,-0.864578778141777,-0.00262144207954407,-1.31020405888557,-0.344774360742974,1.61761999130249,-0.759577307850122,-0.451375104486942,1.51643300056458,-0.826774787157774,-0.0448345988988876,1.3156241774559,-1.00873395055532,0.0707771959399572,1.32349890470505,-0.898691952228546,-0.0897306278347969,1.62783771753311,-0.74655794724822,0.233051717281342,1.59332710504532,-0.855175741016865,0.290112920105457,1.29819542169571,-0.907721446827054,0.427900165319443,1.18217082321644,-1.03836122900248,0.293768122792244,1.19696226716042,-0.966163994278759,0.841730654239655,0.931804478168488,-1.13507458567619,1.08922828733921,-0.0217502117156982,-1.20991575717926,1.08393569290638,0.000399649143218994,-1.24969437718391,0.661719940602779,-0.214362561702728,-0.981971874833107,1.08581501245499,-0.466879904270172,-1.02211675047874,0.522050477564335,-0.755269125103951,-0.79476635158062,0.22848023432249,-0.787170574069023, --1.06715959310532,0.099888451397419,-0.68646103143692,-1.0419784411788,0.714742369949818,-0.755269721150398,-0.794766984879971,0.730974562466145,-0.714991629123688,-0.819240488111973,0.774805270135403,-0.790098503232002,-0.585159309208393,0.759288981556892,-0.611934214830399,-0.571379512548447,-0.258354425430298,-0.0502884984016418,-0.987183451652527,-0.152585625648499,0.846274420619011,-0.940497174859047,-0.127714335918427,-0.209318280220032,-0.944458305835724,0.544471681118011,1.15379427373409,-0.625257395207882,0.328659176826477,1.19594107568264,-0.766841366887093,0.389959335327148,1.29731523990631,-0.992376059293747,0.837137740868002,1.18798451125622,-0.690323755145073,0.647967934608459,1.06689208745956,-0.826868861913681,1.04700767993927,0.886244557797909,-0.666475310921669,1.07445196807384,1.20325626432896,-0.40325391292572,1.06295697391033,1.30363854765892,-0.721705198287964,1.057108938694,1.15375630557537,-0.733633905649185,1.73910254240036,0.772451475262642,-0.498098894953728,1.62194103002548,-0.0591777861118317,-0.470157444477081,1.72104394435883,0.0587849318981171,-0.387019112706184,1.39416420459747,-0.630755826830864,-0.453466445207596,1.33090245723724,-0.504739910364151,0.295772701501846,0.606212481856346,-0.440488159656525,0.327813394367695,0.951020769592995,-0.767956897616386,-0.256127789616585,0.791749842464924,-1.06966439634562,-0.498910740017891,1.01490611582994,-1.34479573369026,0.0719393864274025,0.909953542053699,-0.667586177587509,0.434388171881437,0.750728979706764,-0.660596579313278,0.335528716444969,0.842648290097713,-1.34932360053062,0.0894105508923531,0.0518967509269714,-0.785337090492249,0.211875587701797,-0.137118339538574,0.965204447507858,0.337543934583664,-0.368718445301056,0.32023149728775,0.187582895159721,0.360552787780762,1.4219685792923,0.109510272741318,0.489474326372147,1.23816737532616,0.233746528625488,0.472436383366585,1.02160713076591,-0.151315689086914,0.256481477074885,-0.0710880160331726,-0.440301300492138,0.69925394654274,0.637663692235947,-0.0623703598976135,0.677355363965034, --0.267045795917511,-0.833340048789978,0.51214699447155,-0.0845068097114563,-0.460718646645546,0.551953732967377,-0.441922426223755,-0.793557853903621,0.772852301597595,-0.0453571677207947,-0.554902374744415,1.13468185067177,-0.601791709661484,-0.785137236118317,0.774521112442017,-1.45972961187363,-0.693990321364254,0.967355132102966,-1.55421406030655,-0.453331485390663,0.300829101756221,-1.49604964256287,-0.248082339763641,0.337003856897354,-1.70812374353409,0.00916454195976257,0.696571469306946,-1.20840704441071,-0.279839038848877,0.256493517594663,-1.8599436879158,-0.444375993218273,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0281353355385363,-0.997822552919388,0.216074347496033,0.0838359710760415,-1.2048719227314,0.494569063186646,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.357405807822943,-1.84019339084625,-0.387582819908857,-1.26311898231506,-0.937444299459457,-0.201452910900116,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.638555805727833,-1.48806464672089,0.00903072953224182,-0.750104188919067,-0.506020545959473,-0.775803178548813,-0.696132689714432,-0.192689955234528,-0.472597789019346,-0.314200940420392,-1.12407279014587,-0.923451911658049,-0.24188207089901,-1.10456876456738,-0.955957323312759,-0.361878827214241,-1.54680669307709,-0.883593395352364,-0.281996116042137,-1.02101315557957,-1.00717423856258,-0.982605390250683,-0.396713539958,-0.579211950302124,-0.615037173032761,-1.56529301404953,-0.66562045738101,-0.89607048034668,-1.03760172426701,-0.949972376227379,-1.08366096019745,-1.53172677755356,0.419948473572731,-1.08207410573959,-1.16565904021263,0.578623279929161,-1.23885184526443,-1.11437630653381,0.337048649787903,-1.36567080020905,-0.562188386917114,1.29203933477402,-1.12509119510651,-1.09994253516197,0.702642276883125,-1.31338411569595,-1.38616764545441,0.0610187649726868,-1.50119131803513,-0.777707330882549,-0.815202593803406,-1.47671115398407,-0.941698759794235,-0.649157598614693,-1.27863705158234,-0.666943609714508,-1.03921023011208,-1.30492830276489, --0.604949355125427,-1.10494035482407,-1.33303970098495,-1.03640148043633,-0.766430422663689,-1.38175857067108,-1.03451906144619,-0.742872029542923,-1.31387054920197,-0.68990458548069,-0.708648011088371,-1.27682077884674,-0.739906072616577,-0.843851447105408,-1.10945695638657,-0.72914844751358,-1.09947884082794,-1.16614979505539,0.696242198348045,-1.25934436917305,-0.883820042014122,0.5177171677351,-1.28701350092888,-0.77648589015007,1.45936197042465,-0.944396406412125,-0.818061172962189,1.15447491407394,-1.27228158712387,-0.970825895667076,1.07047528028488,-0.716188944876194,-0.974627047777176,1.03942173719406,-0.876335948705673,-0.750330746173859,1.50793033838272,-0.692312985658646,-0.722409605979919,1.51435732841492,-0.654386334121227,-0.972438663244247,1.62337863445282,-0.23786423355341,-0.329255282878876,1.9490749835968,-0.144308477640152,-0.476024221628904,1.79610055685043,-0.287568464875221,-0.894178092479706,1.2512566447258,-0.576350316405296,-1.35182136297226,0.760815918445587,-1.18189126253128,-0.544864814728498,1.76899069547653,-0.373373601585627,-0.576975360512733,0.507146924734116,-0.988420695066452,0.69166059512645,0.0868802070617676,-1.22141790390015,0.188138350844383,0.58930616080761,0.162414848804474,0.187553364783525,0.736033961176872,0.532335638999939,0.391483128070831,0.856711804866791,0.95176028041169,0.988028988242149,1.28781515359879,-0.550525173544884,0.762719739228487,0.578305721282959,-0.915182113647461,0.562059372663498,1.73156255483627,0.268642760813236,0.728303238749504,1.63895088434219,-0.0935689210891724,0.702010571956635,1.80767667293549,0.0715787443332374,0.596257486219884,1.76136165857315,0.265727765858173,0.344764222641061,1.88381153345108,-0.35139156319201,0.451374453492463,1.51644057035446,-0.826773099601269,0.366639986634254,1.87952637672424,-0.476496465504169,0.289731015701364,1.90240997076035,-0.343881847336888,0.346520279559684,1.55412709712982,-1.07236540317535,0.319236760053229,1.59172290563583,-0.989894062280655,0.41098161532409,1.37985408306122,-1.12718757987022,0.307923376560211, -1.68536382913589,-0.891816407442093,0.404866747558117,0.457042396068573,-1.67737454175949,0.05797723798878,-0.040850818157196,-0.479937955737114,0.0432012275116449,0.107149541378021,-0.437056057155132,-0.0665823630988598,-0.00335431098937988,-0.081670097541064,-0.00255930423736572,-0.0615086555480957,-0.461108490824699,-0.0253458768129349,-0.00861722230911255,-0.698158025741577,-0.0715568028390408,0.00241971015930176,-0.138340964447707,0.0839717946946621,0.0918899178504944,-0.479078274220228,0.0923748351633549,0.0320242047309875,-0.913072228431702,0.15073461458087,-0.395535171031952,-0.731160454452038,0.0642055422067642,-0.33810818195343,-1.00382861495018,0.0434592589735985,0.328439176082611,0.431270867586136,0.0921502821147442,1.78813934326172e-07,4.17232513427734e-07,0.2308827675879,0.599710375070572,0.509127646684647,0.709871176630259,0.162236630916595,-0.32836427539587,-0.133122742176056,-0.318976603448391,-0.859865576028824,0.0143033266067505,-0.324779510498047,-0.603271380066872,-0.00767624378204346,-0.467467963695526,-0.907363831996918,0.94681791216135,-0.925919987261295,-0.968253016471863,1.06833240389824,-1.0865786075592,-0.987176269292831,1.47956556081772,-1.16870227456093,0.0450340956449509,1.33433353900909,-1.05756455659866,-0.54900442995131,1.34067749977112,-1.07716698944569,-0.299261465668678,0.990751534700394,-1.71218031644821,-0.0226578488945961,-0.72856268286705,-1.4468939602375,-0.192890184000134,0.417880442567366,-1.47040221095085,-0.560392320156097,0.291448828406828,-1.22308778762817,-0.721169292926788,-0.151817253244133,-1.16323705017567,-0.89501116424799,-0.136377344635548,-1.22652113437653,-0.954713139683008,0.0928196460008621,-1.28687193989754,-1.07517227530479,0.144289717078209,-1.34973323345184,-1.03733745217323,0.099182665348053,-1.36009323596954,-0.968566492199898,-0.244149163365364,-1.28246656060219,-1.03269822895527,-0.351275527849793,-1.25350540876389,-1.13461817800999,-0.715589217841625,-1.03311812877655,-1.20933565497398,-1.59127080440521,-0.978834420442581,-0.174203000962734,0.200958132743835, -0.314088016748428,-0.133544579148293,0.168514370918274,0.225655555725098,-0.0671069771051407,0.733699407428503,0.41677463054657,-0.0521122068166733,-0.0876788347959518,0.159300684928894,-0.600793473422527,-0.146723762154579,0.0995345115661621,-0.179682344198227,-0.589308530092239,0.174604415893555,-0.173957914113998,-0.574047300964594,0.121808052062988,0.266901347786188,-0.363864406943321,0.0594217777252197,0.587303206324577,-0.415547087788582,0.0772577524185181,0.510293826460838,0.737010195851326,0.538031548261642,-0.214362307917327,-0.546769574284554,0.500250816345215,-0.767823874484748,-0.213439650833607,0.722269684076309,-0.701756045222282,0.184481676667929,0.83559188246727,-1.03362153097987,0.0488868252723478,0.736472383141518,-0.741445705294609,0.461818680167198,0.414966821670532,-0.849434293806553,0.6817587018013,-0.111155182123184,-0.99728599190712,0.158859729766846,0.257875025272369,-0.403835564851761,0.743029892444611,-0.621995031833649,-1.1688694357872,0.871723636053503,-0.164487540721893,-1.40279731154442,1.07469955831766,-0.000428676605224609,-1.06967511773109,1.36484736204147,-1.2315673828125,-0.72735321521759,-0.498848229646683,-1.25451108813286,-0.59922930598259,-0.346862941980362,-1.41308224201202,-0.49173703789711,-0.436936289072037,-1.52126276493073,-0.412930585443974,-0.308584421873093,-1.55669128894806,-0.3058962225914,0.429877117276192,-1.64260691404343,-0.506834477186203,0.543370336294174,-1.63401919603348,-0.359284788370132,0.691940702497959,-1.76409202814102,0.00679948925971985,0.0652283430099487,-1.51649755239487,-0.81645467877388,-1.06056427955627,0.0796251744031906,-0.749038636684418,-0.871898078417871,-0.704578131437302,-1.25933000445366,0.628079399466515,-0.140000253915787,-1.76122575998306,1.0938378572464,-0.715175524353981,-1.48616749048233,-0.116748034954071,0.171392142772675,-0.254009157419205,-0.0419191420078278,-0.12848624587059,0.0665911436080933,-0.0252695495728403,0.281335115432739,-0.2589071393013,-0.679931402206421,0.228977024555206,-0.506842911243439,0.596167698502541,0.355773717164993, --0.170202374458313,-0.81699101626873,0.405151009559631,0.0179863274097443,0.929506316781044,0.492405951023102,0.140824973583221,0.775521914009005,0.347627520561218,0.142375081777573,0.743786791805178,0.308106184005737,0.135519981384277,0.493051379919052,0.304062008857727,-0.11811563372612,-0.20002344250679,0.216682612895966,-0.301098167896271,-0.463107369840145,0.285990357398987,-0.433048009872437,-0.728054195642471,0.139668405056,0.223181366920471,0.445702612400055,-0.916539072990417,-0.279988437891006,0.600562080740929,-1.09894993901253,-0.763939425349236,0.573840637574904,-1.14265102148056,-1.02040545642376,0.609981164336205,-0.748113632202148,-0.441476196050644,-0.0249423384666443,-1.35147961974144,-0.524167999625206,-0.0765139758586884,-1.47887676954269,-0.838672883808613,-0.0722322389483452,-1.5432785153389,-0.650082141160965,0.202096151653677,-1.46086364984512,-0.577644020318985,0.163782548159361,-1.38882067799568,-0.55871370434761,-0.460926342755556,-1.41483873128891,-0.333270043134689,0.0495202177044121,-0.630579322576523,-0.780275493860245,-0.302774691954255,-0.488794773817062,-0.635587155818939,-0.60431457310915,-0.238753199577332,-0.305603448301554,-0.44196816906333,-0.123320996761322,-0.0529126636683941,-0.381088756024837,-0.398500561714172,0.825117975473404,0.0495413427285882,-1.31864747405052,-0.78921315073967,-0.557509567588568,-1.20678924024105,-0.792998533695936,-0.8598344437778,-1.09676097333431,-0.4133539237082,-0.970819424837828,-0.990492119453847,-0.0924414731562138,-0.958506312221289,-0.990505191497505,-0.0793833844363689,-0.219148218631744,-0.93229927495122,-1.37413117289543,-0.687385022640228,-0.497952401638031,-0.748521536588669,-0.612932588905096,-1.13008594512939,-0.764551859349012,-0.427501119673252,-1.28001064062119,-0.857589337974787,-0.0263925202773407,-0.896127469837666,-1.19225949048996,-0.718113601207733,-1.04245716333389,-0.885479599237442,-0.415813148021698,-0.11290317773819,-0.733465850353241,-0.874615434557199,-1.00296080112457,-0.724965631961823,-0.844608254730701,-0.94824930280447, --0.926833838224411,-0.561741888523102,-0.264219455420971,-0.838242888450623,-0.450984291732311,0.243462562561035,-0.757916145026684,-1.0211506485939,-0.998891459777951,-0.454053521156311,-0.811382532119751,-0.898547893390059,-0.653011366724968,-0.53705883026123,-0.362207822501659,-0.983633644878864,0.00817227363586426,0.833131767809391,-0.884735427796841,-0.949409671127796,-0.885149599052966,-0.507975067943335,-0.871264591813087,-0.69038494117558,-0.733752477914095,0.0977547168731689,1.03898254036903,-1.48455548286438,-0.460687480866909,-0.815607383847237,-1.63986420631409,-0.190352082252502,0.616353906691074,-1.28724110126495,-0.322658091783524,0.458958439528942,-1.28474843502045,-0.281652294099331,1.14079090952873,-1.03072134405375,-0.467890411615372,0.106507197022438,-1.31642749905586,0.265003770589828,1.07560221850872,-0.757006302475929,-0.139907240867615,-0.287737026810646,-0.935514688491821,0.222476422786713,0.307526275515556,-1.51780796051025,0.222009897232056,0.230836275964975,-1.46502947807312,-0.0643958747386932,-0.575934290885925,-1.70537197589874,-0.150019824504852,-0.227863185107708,-1.68088710308075,0.337144076824188,-0.435265451669693,-1.43934559822083,0.401588469743729,-0.392907038331032,-1.4823197722435,0.116402894258499,-0.328811623156071,-1.80014801025391,0.115244626998901,-0.0408204793930054,-1.7567440867424,0.731708700267063,-0.776347264647484,-1.40102589130402,-0.509054720401764,0.229806840419769,-0.826576314866543,-0.295067369937897,-0.296818509697914,-1.19507437944412,-0.107051968574524,-0.234913900494576,-1.02455803751945,-0.141582548618317,-0.588111598044634,-0.916000515222549,-0.159929811954498,-0.619622565805912,-0.87579345703125,-0.451551198959351,0.20702787488699,-1.31503438949585,-0.713418357074261,0.895454697310925,-0.710868895053864,-0.715841881930828,0.144833847880363,0.364166557788849,-0.447449594736099,0.255407214164734,-0.646417781710625,-0.264085114002228,-0.595262080430984,-0.49337100610137,-0.918233744800091,0.337570998817682,0.894615828990936,-1.18699295818806,0.470259182155132, -0.71542900800705,-1.22519971430302,0.775374239310622,0.573450308293104,-1.02398102730513,0.689002944156528,0.511006772518158,-1.11435075104237,0.359713144600391,0.477901011705399,-0.836736015975475,0.184727944433689,0.564706385135651,-0.652619756758213,1.77901631593704,0.342711672186852,-1.20380975306034,0.53190490603447,0.656925454735756,-0.920254461467266,0.294568676501513,0.903723876923323,-0.921571366488934,1.00303916539997,-0.163935929536819,-1.2255142480135,0.75722430087626,0.572011940181255,-1.07135639339685,0.99532387778163,0.156832471489906,-1.04091660678387,1.02418839372694,-0.0688746888190508,-1.09371288120747,1.00463353842497,0.0573395863175392,-0.183826453983784,1.09653896093369,-0.204356133937836,-0.475392624735832,0.460821539163589,-0.298561632633209,-0.339534863829613,0.666733264923096,-0.78726714849472,-0.381322160363197,0.908398768631741,-0.543533384799957,-0.432429358363152,0.657692164182663,-0.489996314048767,-0.458168879151344,0.695135205984116,-0.757074117660522,-0.867069013416767,1.53864812850952,-0.272837165743113,-0.59114658087492,0.855700872838497,-0.663952946662903,-0.0199847742915154,1.40435799956322,-0.777230322360992,-0.469850793480873,0.768884211778641,-0.855968402698636,-0.453669361770153,0.718461453914642,-0.959827840328217,-0.496323175728321,0.945143740624189,-0.923772130161524,-0.560075350105762,0.78766168653965,-0.866057071834803,-0.529199622571468,0.747950226068497,-0.928703725337982,-0.787875432521105,1.5454506278038,-0.180727154016495,-0.749938840046525,0.795930430293083,-0.392095893621445,-0.189738755696453,1.49677908420563,-0.418637424707413,-0.832645319402218,0.839809909462929,-0.478948056697845,-0.779034502804279,0.829825073480606,-0.702092919498682,-0.606582814827561,0.79088719189167,-0.52318599820137,-0.849057311192155,0.88332686573267,-0.280277699232101,-0.857151705771685,0.877077177166939,-0.396549224853516,-0.674918621778488,1.16945743560791,1.05252584815025,-0.68424516916275,0.301874488592148,0.421903431415558,-0.360609477036633,1.73919713497162,-0.074934333562851,-0.938058251515031, -0.930165376514196,-0.11629581451416,-0.717036962509155,0.454120151698589,0.442773818969727,-0.391489207744598,0.390144929289818,0.0947073101997375,-0.538487762212753,0.0134483873844147,0.440063834190369,-0.273171901702881,0.0892870798707008,0.285953640937805,-0.258507013320923,1.35590535402298,0.901364430785179,-0.731688737869263,0.424047157168388,0.486240267753601,-0.139996945858002,0.891668010503054,0.516678273677826,-0.581016927957535,0.0203811302781105,0.520251721143723,-0.702541947364807,0.424438409507275,0.41568848490715,-0.735327154397964,0.514795742928982,0.254782736301422,-0.62150827050209,0.0233165845274925,0.620311111211777,-0.797084450721741,-0.00984857603907585,0.674926906824112,-0.317112669348717,0.339220762252808,1.05711169540882,-0.646231591701508,-0.726861029863358,0.722113616764545,0.133086025714874,1.07575894892216,0.616821691393852,-0.668819338083267,0.106064900755882,0.81758963316679,-0.67391300201416,-0.475734036241192,0.682410106062889,-0.395181953907013,-0.548556186258793,0.553023219108582,-0.404858410358429,-0.379585657268763,0.590984418988228,-0.677724957466125,-0.455657867714763,0.71475076675415,-0.372121229767799,-0.0899384021759033,0.634440556168556,-0.685170620679855,-0.94461764395237,0.282999139279127,0.316419819872863,-0.176016688346863,1.77552300691605,0.768094405531883,-0.151183992624283,1.50587207078934,0.609559457749128,-0.14624285697937,0.951593667268753,0.63630573451519,-0.0378770232200623,0.583527788519859,0.689802035689354,-0.166410028934479,0.831897228956223,0.0541072914320466,0.0107587575912476,1.01716905832291,0.019982692029707,0.0438914895057678,0.655938625335693,0.102246737969836,0.0522599816322327,0.472123652696609,0.312812285735617,-0.216204226016998,1.05643135309219,0.568901434540749,-0.828649543225765,1.31358590722084,0.692455902695656,-0.800008356571198,1.12709179520607,0.98581850528717,-0.808042630553246,0.886818677186966,-0.12530572958201,-0.123997151851654,0.791398525238037,-0.0233084973797304,-1.11721317470074,1.17910254001617,0.996688108891249,-0.823536649346352, -0.582245647907257,0.519731350243092,-0.107183396816254,0.58689770847559,0.614579677581787,-0.866657763719559,0.86050683259964,-0.125304145934926,-0.0476542711257935,0.651078641414642,0.865367241203785,-1.02590370178223,0.331386312842369,0.167449086904526,0.08657306432724,0.67796865105629,0.854345560073853,-0.971660170704126,0.445309326052666,-0.204789698123932,0.05516117811203,0.434927776455879,0.867058448493481,-1.07891303300858,0.14052939042449,0.271603941917419,-0.0729292631149292,0.147934578359127,0.924088215455413,-0.897716976702213,0.497158110141754,-0.125307362517106,-0.188588201999664,0.879456520080566,0.183592051267624,-0.404229998588562,0.807277083396912,0.314194105565548,-0.918625220656395,0.952248360961676,0.426132492721081,-0.236506521701813,0.4675496481359,0.709335029125214,-0.957754164934158,0.626164376735687,0.238240577280521,-0.060702919960022,0.0301350429654121,0.927378114312887,-1.17099440097809,0.0364570617675781,0.341235935688019,-0.100039601325989,0.0582759780809283,0.872618965804577,-1.08015181869268,0.031016627792269,0.282363370060921,-0.497328400611877,0.63575504720211,0.451161749660969,-0.867670804262161,0.730479516088963,0.448319382965565,-0.951950665563345,0.740634061396122,0.516804441809654,-0.620344936847687,0.54487369954586,-0.11408372412118,-0.0908119678497314,0.215672552585602,0.277018815279007,-0.682420551776886,0.646812349557877,0.446385644376278,-0.7757882848382,0.426028281450272,-0.0263991699525832,-0.182522654533386,0.407161891460419,-0.11253456935583,-0.759315431118011,0.886641122400761,0.315655022859573,-0.113930881023407,0.0587256848812103,0.790006637573242,-1.00849791616201,0.180730283260345,0.793283484876156,-1.01045148819685,0.113682210445404,0.704503774642944,-0.65729084610939,0.0641524493694305,-0.0783465767218132,0.069439709186554,-0.159093946218491,0.912355296313763,-0.634911432862282,-0.0391612946987152,0.702272236347198,-0.99528175778687,0.339193612337112,-0.0783573232856725,-0.0168549418449402,0.0371524393558502,0.515526309609413,0.192536652088165,-0.506730630993843, -1.37827879190445,-0.482479572296143,-0.700618669390678,1.11475965380669,-0.419550523161888,-0.773624613881111,1.06903950870037,0.546081639826298,-0.87841122597456,0.44413642008135,0.937699280679226,-0.912878233939409,1.10035166144371,-0.30714362859726,-0.775515608489513,0.999115277081728,-0.391892604529858,-0.576796114444733,0.0886271455810507,1.32329684495926,-0.724307358264923,0.668041154742241,0.982287116348743,-0.873288959264755,1.15691123902798,0.0801842920482159,-0.829885885119438,0.9303889721632,0.876772582530975,-0.837953351438046,0.853479845449328,1.13843375444412,-0.270187616348267,0.830951154232025,1.22064083814621,-0.71508027613163,1.26417380571365,0.816851526498795,-0.763406649231911,0.480552773922682,0.540902815759182,-0.0969083905220032,0.492983624339104,0.48174736648798,-0.10304456949234,0.367759764194489,0.539137147367001,0.15456211566925,0.406053900718689,0.913227915763855,0.0951979756355286,0.48439590446651,1.26565882563591,0.121809959411621,0.238570414483547,1.0742819532752,0.90428164601326,0.187189698219299,1.39048939943314,0.852050837129354,0.907123476266861,0.541431784629822,-0.0224199891090393,0.671701967716217,0.697095490992069,-0.0175210237503052,0.453318238258362,1.22743208706379,0.791937049478292,0.639701671898365,1.48281136155128,0.559082388877869,0.35376887768507,1.09510751068592,1.05592730641365,0.44366630166769,1.7158362865448,0.634531930088997,0.869295008480549,1.21117231249809,0.463305771350861,0.892868340015411,1.06395550817251,0.251392509788275,0.714575819671154,1.1473723500967,0.733359038829803,0.401392571628094,1.69975620508194,0.682897001504898,0.607477188110352,1.04913437739015,0.706945952028036,0.433362774550915,1.84788751602173,-0.111240327358246,0.874962382018566,1.11086927354336,0.497199565172195,0.911098353564739,0.972678638063371,0.242602087557316,0.756951093673706,1.05391401425004,0.581466084346175,0.248643895611167,1.69987511634827,0.657517662115424,0.583041928708553,0.934778835624456,0.955747351050377,0.450547806918621,1.83094227313995,-0.0328228622674942,0.875545194372535, -1.24032531678677,0.351140489645331,0.949769273400307,0.97285451553762,-0.0773661378771067,0.910062149167061,1.20994426310062,0.226922063156962,0.314251443371177,1.87881171703339,0.33001943475756,0.920051988214254,0.800703167915344,0.164953805506229,0.459340579807758,1.86027032136917,-0.150500319898129,0.94717644713819,1.20728163421154,0.0579140352383547,0.91737699508667,0.871071562170982,-0.0628721807152033,0.892391983419657,1.33537197113037,0.00593491643667221,0.432674881070852,1.81937003135681,0.231304474174976,0.920476730912924,0.918502688407898,0.217766590416431,0.0597228966653347,1.04355819150805,0.885596208274364,-0.173991623719303,1.02068129554391,1.1333759278059,0.894026972353458,1.01667575538158,0.399791926145554,0.852215152233839,1.02832289040089,0.626261591911316,0.456165052950382,0.940172292292118,0.774252355098724,0.517605718225241,0.980081074871123,0.738577641546726,0.415599174797535,1.04652307927608,1.01859214901924,0.439799226820469,1.02366504073143,1.00584849715233,0.227856814861298,0.992225287482142,1.04994629323483,0.507450252771378,0.494941743323579,1.30368429422379,0.232405073940754,0.618799231946468,1.76997619867325,0.917831640690565,1.05228360742331,0.480237901210785,0.738510586321354,1.07841853797436,0.724870949983597,0.553445912897587,0.621348090469837,1.59173661470413,1.08499619364738,0.668252892792225,0.784512385725975,1.00271691335365,0.174044173210859,0.949373990297318,1.04261076450348,0.0838333535939455,1.43810364603996,0.612543016672134,0.575624916236848,1.66902977228165,0.685350753366947,0.591713640838861,1.46201121807098,0.635804802179337,0.152695830911398,0.572062879800797,0.998121991287917,0.139506530016661,1.11049492657185,0.842342115938663,0.56448404211551,1.20172166824341,0.631455510854721,0.608086809515953,0.920124776661396,0.993062451016158,0.225226819515228,0.880636103451252,0.694652110338211,0.202257841825485,1.10464087128639,0.680496245622635,-0.431753382086754,1.20896649360657,0.969179853796959,-0.494080670177937,1.01102569699287,1.14471858739853,0.0995677597820759,0.887091986835003, -0.99762625945732,0.162058599293232,1.10822620242834,-0.0157838695449755,0.465012073516846,0.999188527464867,0.126739734658258,0.464493811130524,0.94497337937355,0.17399113997817,0.461660981178284,0.959870167076588,-0.113246269524097,0.465259552001953,0.961811929941177,-0.125926040112972,0.191179156303406,0.724423140287399,0.17483314499259,0.133411765098572,0.61112155765295,0.0285570286214352,0.470995426177979,0.939898990094662,-0.353380486369133,0.519549369812012,0.992522418498993,-0.247399344108999,0.309767305850983,0.680181816685945,0.0151203647255898,0.193029403686523,0.492697440087795,-0.0751502811908722,0.196847319602966,0.692766278982162,-0.311006709933281,0.263892650604248,0.970422565937042,-0.309460807591677,0.150465250015259,0.837539106607437,-0.0850871112197638,0.125404238700867,0.435791932046413,0.0293691903352737,0.143470466136932,0.570843908935785,-0.133135534822941,0.158475637435913,0.878974318504333,-0.125076727941632,0.123730063438416,0.546945787966251,0.0426744371652603,0.0787023901939392,0.352128136903048,-0.418239066144451,0.190589368343353,0.491847731173038,-0.212345828767866,0.0544707775115967,0.439413994550705,-0.234569270163774,0.197132408618927,0.573178477585316,-0.397006079554558,0.335040748119354,0.660291813313961,-0.65015497431159,0.434106945991516,0.666004329919815,-0.4260583082214,0.169828951358795,0.631867423653603,-0.433610709616914,0.327492237091064,0.747396320104599,-0.599584166891873,0.567622572183609,0.714866384863853,-0.423826994374394,0.191806256771088,0.473711907863617,-0.645555379102007,0.440630495548248,0.431500837206841,-0.727635428309441,0.267548501491547,0.620053976774216,-0.650368481874466,-0.905619826167822,-0.846196062862873,-0.204794850911185,-0.738597109913826,-0.689364910125732,-0.0429202020168304,-0.718380220234394,1.33744499087334,-0.332017719187434,-0.885582055896521,1.09986441582441,-0.776427395641804,-0.874976798892021,-0.713985282927752,-0.686915285885334,-0.866178438067436,-0.782202798873186,-0.848137259483337,-0.761579513549805,-0.736957915127277,-0.796661466360092, --0.894630666822195,-0.95854277163744,-0.828227236866951,-0.854743003845215,-0.828205302357674,-0.722264349460602,-0.883511703461409,-0.817877419292927,-1.45930296182632,-0.511492386460304,-0.310423791408539,-1.07310977578163,-0.627074234187603,-0.794555112719536,-1.15289056301117,-0.869795650243759,-0.62708318978548,-0.704671680927277,-0.846612468361855,-0.998987682163715,-1.60429072380066,-0.648740142583847,-0.290646776556969,-1.65304034948349,-0.602148488163948,-0.382173952646554,-1.26896527409554,-0.763120621442795,-0.623342514038086,-0.954379059374332,-0.816452890634537,-0.82806009054184,-0.978793278336525,-0.868084564805031,-0.624860987067223,-1.20353639125824,-0.827508166432381,-0.531260319054127,-1.27766910195351,-0.825638808310032,-0.621417105197906,-1.34706154465675,-0.908306597732008,-0.440240234136581,-1.72661119699478,-0.664770079776645,-0.0182796020526439,-1.69708347320557,-0.47844585776329,-0.315554566215724,-1.28951308131218,-0.503358781337738,-0.388201919384301,-1.05316118150949,-0.642565757036209,-0.462200745940208,-1.31987580657005,-0.676713094115257,-0.43926066160202,-1.33489188551903,-0.756384737789631,-0.543056949973106,-1.12736868858337,-0.878740725107491,-0.493690013885498,-0.944922935217619,-0.418637703172863,-0.951707828789949,-1.25494888424873,-0.344837959855795,-0.966367214918137,0.767077550292015,0.878077119588852,-0.578643918037415,0.942560657858849,0.865909337997437,-0.941024815663695,0.587353676557541,0.142969012260437,-0.796364583075047,0.413822680711746,0.238416641950607,-0.700870633125305,0.576735287904739,0.86704432964325,-0.57956837117672,0.840909227728844,0.688967615365982,-0.672898918390274,0.855101391673088,0.395824804902077,-0.739322267472744,0.633749216794968,0.508840743452311,-0.750847865827382,0.354068338871002,0.824620269238949,-0.087286370806396,0.748346820473671,0.97262842208147,-0.242546707391739,0.924587531015277,0.799122822820209,-0.294930517673492,1.03078930079937,0.534736514091492,-0.657525718212128,0.658329293131828,0.759087309241295,-0.273218393325806,0.521082296967506, -0.868325808085501,0.244045376777649,0.68010301887989,0.814452469348907,-0.00995966792106628,0.324864864349365,0.807530086487532,0.146649725735188,0.231883883476257,0.894995927810669,0.720605731010437,0.433520793914795,0.993116296827793,0.776961967349052,0.795527203008533,0.731671899557114,-0.0362756848335266,0.651420965790749,0.954441279172897,0.0483981370925903,0.358095169067383,1.20019516348839,0.809079691767693,0.373917393386364,1.03403167799115,0.849044770002365,0.31343275308609,0.889975503087044,1.07445585727692,0.44792889803648,1.13160008192062,0.98863160610199,0.328563205897808,1.20047749578953,0.848518520593643,0.0123088657855988,1.03191127628088,1.07196460664272,-0.207959562540054,0.667818514630198,1.31740108132362,0.219538062810898,1.71956259012222,0.636916220188141,0.0527450144290924,1.85010296106339,0.225154802203178,-0.203194707632065,1.58900117874146,0.346324916929007,0.21444308757782,1.79686713218689,0.400537222623825,-0.131012231111526,1.51862323284149,0.652909070253372,-0.14065819978714,1.56071209907532,0.624073058366776,0.140730261802673,1.73827010393143,0.512581631541252,0.350940309464931,1.77892756462097,0.577696472406387,0.129968255758286,1.70244061946869,0.756734430789948,0.00489169359207153,1.68928641080856,0.714499279856682,0.226179599761963,1.73006576299667,0.635472958907485,0.20031949877739,1.69564801454544,0.685658698901534,-0.0624848604202271,1.63000631332397,0.817935094237328,0.120957612991333,1.5619204044342,0.68384213000536,-0.0403440442491956,1.61872214078903,0.672186784446239,-0.0495582818984985,1.42460760474205,-0.670509353280067,-0.0440319776535034,1.50180327892303,-0.0392017364501953,-0.16246297955513,1.58727699518204,0.245766844600439,0.104707062244415,1.5120415687561,0.744127102196217,0.233363389968872,0.720181539654732,-0.693182878196239,0.233962893486023,0.613168060779572,-0.187675446271896,0.396451234817505,0.698597692884505,0.267056837677956,0.638374626636505,0.918328935280442,0.145484279841185,0.21358922123909,0.917995989322662,-0.785639479756355,0.571300450712442,1.48391184210777, --0.72877062112093,0.288599252700806,0.796821340918541,-0.664861135184765,0.0249134600162506,0.628714859485626,-0.672434598207474,0.526522696018219,0.742142140865326,-0.225031912326813,-0.00866490602493286,1.45280021429062,0.134574055671692,0.312623381614685,0.587876074016094,0.0542100667953491,0.315001368522644,0.382575154304504,0.233623832464218,0.80636265873909,0.789811968803406,0.20071566849947,0.00536856055259705,1.84013748168945,0.170614778995514,0.365245282649994,0.448984168469906,0.346927046775818,0.625785499811172,0.467878509312868,0.596582397818565,0.427540898323059,-0.14556872844696,0.758983246982098,0.120415300130844,1.03665797412395,0.968807484954596,0.645794898271561,0.478342856280506,0.775084463879466,0.418915987014771,0.478919509798288,0.631709940731525,-0.205601990222931,0.709535449743271,-0.0268296003341675,-0.153574585914612,0.00877377390861511,-0.0803002715110779,0.029049813747406,1.15370461344719,0.290660172700882,0.246161758899689,0.48972387611866,-0.0283862948417664,-0.162103474140167,1.06648978590965,0.780740212649107,0.314842283725739,0.0941676795482635,0.3398697078228,-0.05000901222229,0.720159828662872,0.69180990755558,0.438033431768417,-0.424659848213196,0.467479050159454,0.091810405254364,0.659353777766228,0.194714069366455,0.0050310492515564,0.153658648952842,-0.00793659687042236,-0.0303018093109131,-0.530596688389778,-0.0437651872634888,0.342403501272202,-0.630544170737267,0.0617758631706238,0.201645970344543,-0.730315119028091,-0.00199639797210693,-0.103575438261032,-0.530145227909088,-0.0794728994369507,-0.0975888967514038,-0.789964079856873,-0.167923510074615,0.0602452754974365,-0.993930220603943,-0.22196239233017,-0.00370442867279053,0.563393771648407,0.755199056118727,0.359087288379669,-0.210257388651371,0.39818149805069,0.359924376010895,-0.325479000806808,0.365694373846054,0.447980105876923,-0.584731474518776,0.255140125751495,0.466184318065643,-0.616358645260334,0.295085102319717,0.351422131061554,-0.316012158989906,0.347369790077209,0.182110786437988,-0.527192652225494,0.061234176158905, -0.359437793493271,-0.799450740218163,0.0172868371009827,0.165477365255356,0.205901563167572,0.795852221548557,0.570441126823425,-0.592312596738338,0.677685551345348,0.561840027570724,-0.606667976826429,0.547782249748707,0.716756463050842,-0.763940948992968,0.370833665132523,0.392326235771179,0.772587822750211,0.233610726892948,0.367178618907928,0.660858076065779,0.208195239305496,-0.00304549932479858,0.0941614508628845,-0.0368596315383911,0.027447521686554,0.0547686442732811,0.0434754192829132,-0.336163520812988,0.969432070851326,0.504820168018341,0.363326072692871,0.466604232788086,0.432600723579526,0.346105694770813,0.710126374848187,0.245098497718573,0.0459786057472229,0.138025503605604,0.219339173287153,0.271516025066376,-0.674058621749282,-0.0703092152252793,0.300345063209534,-0.685163665562868,0.0846877135336399,0.0794318318367004,0.192514901980758,0.275100596249104,0.0450677275657654,0.1440339833498,0.206683315336704,-0.747238650918007,0.540811523795128,-0.475387036800385,-0.668034970760345,-0.116649284958839,-0.562226295471191,-0.455338984727859,-1.02413353323936,-0.786143764853477,-0.364644199609756,-0.678367704385892,-0.6586754322052,-0.588370501995087,-0.126984402537346,-0.61837175488472,-0.290689289569855,0.405006557703018,-0.587615519762039,0.15960681438446,1.29991310834885,-0.346458248794079,-0.523955166339874,-0.0304088965058327,-0.937100253999233,-0.803163394331932,-0.269260793924332,-0.920214054174721,-0.527560174465179,-0.103388383984566,-0.597747296094894,-0.579376637935638,-0.192506447434425,-0.928917549550533,-0.275792717933655,-0.680897120386362,-1.221509963274,-0.0963903963565826,0.480700567364693,-0.428053677082062,-0.153544187545776,0.464620992541313,-0.555044949054718,-0.0682281255722046,0.677758425474167,0.21514219045639,-0.00973939895629883,-0.0262644439935684,-0.00480037927627563,-0.452768683433533,1.28320306539536,-0.51728230714798,0.106331944465637,0.611579895019531,-0.402171105146408,-0.172477543354034,-0.0166295617818832,-0.243584454059601,-0.243178129196167,-0.0511592030525208,-0.251829624176025, --0.000788271427154541,0.0412380993366241,-0.00903606414794922,-0.0505796670913696,0.038079172372818,-0.100322186946869,0.0875415802001953,-0.0764056444168091,0.527470856904984,0.238485157489777,-0.771463826298714,0.11213344335556,-0.474153131246567,0.936504691839218,0.0798209607601166,0.276571989059448,-0.589942164719105,0.141912490129471,0.311506927013397,-0.494635991752148,0.27867192029953,0.01591956615448,-0.0710787326097488,0.0391401648521423,0.32136482000351,-0.212241463363171,0.327338516712189,0.292551815509796,0.139466144144535,0.285905122756958,0.0398882031440735,0.98750427365303,0.968532979488373,0.396585702896118,-0.354040913283825,0.457449376583099,-0.276498883962631,1.08374598622322,0.314418971538544,0.36844801902771,0.545521005988121,0.160903424024582,0.315040588378906,0.142222382128239,0.356795281171799,0.235949873924255,0.179991941899061,0.21100127696991,0.409095644950867,0.548568237572908,0.261309891939163,0.355121612548828,0.622645124793053,0.102635651826859,-0.302612096071243,1.01166114211082,0.868571400642395,0.425136208534241,-0.512604653835297,0.70327752828598,-0.136384546756744,1.11104175448418,0.604433834552765,0.245464384555817,0.163231384009123,0.524789959192276,0.382333278656006,-0.432170358602889,0.527697116136551,1.86744779348373,-0.338365890085697,0.285385861992836,1.53794080018997,0.758489910513163,0.362818710505962,1.64508801698685,0.442684879526496,0.523507997393608,1.35863888263702,0.583166062831879,0.755213752388954,1.54152286052704,0.655609201639891,0.416005227714777,-0.231291890144348,1.20793187618256,1.04676401615143,-0.0651056468486786,1.4628421664238,0.871772259473801,0.179507076740265,1.28644040226936,0.811955869197845,-1.41802662611008,0.658070392906666,-0.0134578049182892,-1.35519951581955,0.302830785512924,0.706148892641068,-1.39867871999741,0.463415667414665,1.28543597459793,-1.69479644298553,-0.226293906569481,0.803167998790741,-1.92779648303986,0.327534206211567,-0.0145390927791595,-1.55407309532166,1.13868057727814,0.00429469347000122,-1.52669411897659,0.614701874554157, -1.01715299487114,-1.78686374425888,0.173180088400841,0.347868740558624,-1.27654930949211,0.655119493603706,-0.346235454082489,-1.76833981275558,-0.230130151845515,-0.373476713895798,-1.64483153820038,-0.79542675614357,-0.158552184700966,-0.976733803749084,0.185774207115173,-0.232898406684399,-1.73607504367828,-0.13571422547102,-0.265151709318161,-1.18640932440758,0.512035198509693,0.309897273778915,-1.27113610506058,-0.276918388903141,1.1228055357933,-1.12327808141708,0.054080069065094,0.181042522192001,-1.78611475229263,-0.219895888119936,0.592060189694166,-1.28583109378815,0.699116915464401,-0.152592062950134,-1.55004549026489,-0.952017799019814,-0.0221297293901443,-1.02419513463974,0.0764378309249878,-0.0708553395234048,-1.93128961324692,-0.318500518798828,-0.272494841367006,-1.23079368472099,0.253095164895058,0.29145735502243,-1.15903162956238,-0.611614793539047,0.489790439605713,-1.1570011973381,-0.723423205316067,0.572729021310806,-0.211574524641037,0.626162171363831,-0.180841207504272,-1.2714379131794,-0.0929728150367737,0.556740671396255,-0.846352577209473,-0.781763933598995,0.749641999602318,-0.354442201554775,1.06474700570107,-0.69051793217659,-1.78441685438156,-0.419084448367357,0.0906862318515778,-1.87424159049988,-0.318098627030849,0.435154180973768,-1.40659785270691,-0.583062216639519,0.425726614892483,-1.31237784028053,-0.640673890709877,0.284446761012077,-0.428148686885834,-0.380881477147341,-0.283975064754486,0.367290854454041,1.11780117452145,-0.433733463287354,-0.521424621343613,0.449745833873749,-0.526352658867836,-0.86578394472599,-0.638641051948071,-0.603278584778309,-0.144948363304138,0.638938322663307,-0.519568212330341,-0.565180033445358,0.447228416800499,-0.784626789391041,-0.861148439347744,0.252867564558983,-0.650788217782974,-0.0399281680583954,1.43996667861938,-0.56834202259779,-0.934463512152433,-0.474690292030573,-0.751866191625595,-0.720409601926804,0.040052056312561,-0.766380026936531,-0.9596146941185,-0.545236796140671,-0.131462931632996,-0.923540115356445,-0.287111937999725,-0.366152830421925, --0.705680042505264,0.0626159906387329,-0.76589298248291,0.361271012574434,0.250706225633621,-0.0503018498420715,-0.19982336461544,-0.376600027084351,0.191761016845703,-0.409709095954895,-0.962275564670563,0.479057550430298,-0.860071688890457,0.136552929878235,0.0240298509597778,-0.770971447229385,0.0838708281517029,-0.165675222873688,-0.677090257406235,-0.777308806777,0.565910965204239,-0.959167242050171,-0.235208243131638,0.563159197568893,-0.728741824626923,-0.103801846504211,-0.0494588613510132,-0.581666838377714,-0.353270016610622,-0.131731152534485,-0.645991921424866,-0.660276040434837,0.38781151175499,-0.916930824518204,-0.364675283432007,0.28737410902977,-0.772519052028656,0.676084250211716,0.168800473213196,-1.51073575019836,0.823063030838966,0.370484925806522,-1.43613147735596,0.979005962610245,0.471741892397404,-1.32089683413506,0.634599946439266,-0.453646689653397,-1.2900405228138,0.00429025292396545,-0.279004156589508,-1.16411653161049,0.0842269062995911,0.211972028017044,-1.66562193632126,0.135618280619383,0.677391447126865,-0.513259276282042,1.27551275491714,0.8334571570158,-0.929542491998291,0.426485739648342,1.30083256959915,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.278077880706405,1.0030974149704,1.61055099964142,-0.640489830635488,0.629454337060452,1.49499142169952,-0.873845905065536,1.61643242835999,0.33424299955368,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.32414641976357,0.983848661184311,0.723856896162033,-0.837900280952454,1.5830836892128,0.840139001607895,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.21703493595123,1.20711943507195,0.527353502810001,-0.118730217218399,1.71798270940781,0.630363941192627,-0.534403562545776,0.753326289355755,0.69902765750885,0.443484500050545,0.756118640303612, -1.44794794917107,-0.491881161928177,0.804494785144925,0.669246643781662,-0.328478515148163,0.743985291570425,0.942258059978485,0.387935876846313,-0.276818979531527,1.28163370490074,-0.0383301973342896,0.687900196760893,1.34410381317139,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.498177303932607,0.708835490047932,1.59841650724411,0.00719901919364929,0.746766468510032,1.46287500858307,-0.142735064029694,-0.524324398022145,0.960010528564453,-0.309598620515317,-0.260747835040092,1.89561355113983,-0.528422653675079,0.79218777269125,0.889612853527069,-0.308773577213287,0.79453682154417,1.0799133181572,0.246253669261932,-0.16310603544116,1.18341228365898,-0.275825202465057,-0.430021159350872,0.420246955007315,-1.88285440206528,-0.175811901688576,0.35868576541543,-1.38638201355934,0.729295546188951,0.961364775896072,-0.89107957482338,0.77775804977864,1.36935120820999,-1.5136878490448,-0.414925260469317,1.13647443056107,-1.29482927918434,0.800419190898538,0.139752745628357,-0.977846040390432,0.693579722195864,0.858340695500374,-0.919537569861859,-0.315047124167904,1.32737845182419,-1.7303638458252,-0.327781707048416,0.622393891215324,-1.87316209077835,-0.124583072960377,0.289658330380917,-1.49147516489029,-0.783689185976982,0.109831839799881,-1.75397902727127,-0.194404773414135,0.882736295461655,-1.87210136651993,-0.202658144757152,0.562340244650841,-1.73919308185577,-0.403113003820181,0.397345408797264,-1.30653265118599,-0.902685165405273,0.176061417907476,0.254716836498119,0.0225028991699219,0.152522145304829,0.671606358140707,0.46372652053833,0.573742613196373,0.978313580155373,0.767198413610458,0.524602666497231,0.566788874566555,0.124650537967682,0.0731849521398544,0.761924207210541,0.76605549454689,0.509227283298969,0.775570198893547,0.767314791679382,0.610820956528187,0.897080361843109,1.58023500442505,0.253774560987949,0.805528913624585,1.57039421796799,0.05234540021047,0.791404128074646,1.44792348146439,0.104263603687286,0.786372436210513,1.6114889383316,0.263295948505402,0.824914243072271,1.56297659873962, -0.461870685219765,0.904906343668699,1.40826106071472,0.514075145125389,0.767078993842006,1.48081406950951,0.331325177103281,0.804073141887784,1.55919504165649,0.333765536546707,0.854419529438019,1.51806861162186,0.559113740921021,0.80709583312273,1.47913321852684,0.442538060247898,0.541278522461653,1.69769322872162,0.401599261909723,0.763734883861616,1.62304073572159,0.222819320857525,0.476286269258708,1.7867277264595,0.527372509241104,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.241786340251565,1.85231685638428,0.520481191575527,0.0346383396536112,1.84534472227097,0.436850316822529,0.173927243798971,1.70951771736145,0.95917996764183,0.234079107642174,0.798541679978371,-0.310554206371307,-0.430840253829956,0.938009135425091,1.44608670473099,0.599733114242554,0.966729655861855,-0.223978281021118,0.479107245802879,0.891885787248611,-0.179714858531952,0.180929332971573,0.956160888075829,-0.309599578380585,0.1994409263134,0.917244024574757,-0.464595317840576,0.440239548683167,0.995934918522835,-0.270433664321899,0.0549269020557404,0.83426870405674,-0.390586853027344,0.297391533851624,0.955099001526833,-0.228224068880081,0.0272106826305389,0.957908324897289,-0.603256464004517,0.274452924728394,0.891553469002247,-0.410135298967361,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.25251829624176,0.735688913613558,-0.0881797075271606,0.360866963863373,0.896096125245094,-0.220817312598228,0.325042307376862,0.95427331328392,-0.285648420453072,0.187124967575073,0.810431003570557,-0.194231033325195,0.142558455467224,0.781528726220131,-0.316094860434532,0.340007245540619,0.95484758913517,-0.474376825615764,0.353493809700012,0.917779207229614,-0.455331353470683,0.240715801715851,0.663647833047435,-0.0865296870470047,0.438927948474884,0.841940166428685,-0.118905684445053, -0.487617492675781,0.994106337428093,-0.185016337782145,0.43466317653656,1.19667482376099,-0.202063365839422,0.378180146217346,1.12411049008369,-0.275479458272457,0.385826468467712,1.04614229500294,-0.401511937379837,0.490427225828171,0.923018462955952,-0.451094344258308,0.509358525276184,0.88222754560411,-0.111206237226725,0.443121075630188,0.831469624303281,-0.20497477427125,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.40941923856735,1.33758389949799,-0.160100666806102,-1.50976824760437,1.26667147874832,-0.00724952667951584,-1.55958217382431,1.15285906195641,0.151922787074,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53299081325531,0.983538240194321,0.0525956079363823,-1.72519201040268,0.530218824744225,-0.0362916961312294,-1.66162168979645,0.682470936328173,-0.110914476215839,-1.5532460808754,0.882755249738693,-0.143395907245576,-1.70872431993484,0.758369371294975,0.333393335342407,-1.7254746556282,0.527642885223031,0.655571073293686,-1.68205934762955,0.851946368813515,0.161585606634617,-1.35043483972549,1.05354301631451,0.452316798269749,-1.40710371732712,0.668399226851761,0.988883852958679,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.61199897527695,0.864360317587852,0.585660323500633,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.34601664543152,0.948496520519257,1.00145864486694,-0.793964833021164,0.818313915282488,1.41629999876022,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.431035026907921,0.866227805614471,1.5694951415062,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.763218224048615,1.68038296699524,0.605878829956055,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185, -1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.612904384732246,1.53679293394089,0.993278384208679,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.505528777837753,0.753839731216431,1.26290223002434,0.586354583501816,0.681657999753952,1.14966779947281,0.306244000792503,1.10367447137833,1.42495876550674,0.536303669214249,0.699480146169662,1.24312499165535,-1.36875620484352,0.643642172217369,1.11405086517334,-1.25596117973328,0.859539300203323,1.16669163107872,-0.947915732860565,1.13605946302414,1.30505931377411,-1.30258357524872,0.76190060377121,1.16452479362488,-0.546696716714337,1.20195457339287,1.3560870885849,-1.21766954660416,1.02789768576622,1.03332209587097,-0.568269863724709,1.337377846241,1.21987202763557,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.586802750825882,0.539950087666512,1.2139892578125,0.400668829679489,0.789114475250244,1.20797851681709,-1.21451711654663,0.802849411964417,1.22674188017845,-1.21269392967224,0.659989893436432,1.16551604866982,-1.2941997051239,0.492052711546421,1.10258683562279,-1.00185072422028,1.16831392049789,1.08244845271111,-0.0574617236852646,1.28118413686752,1.33784940838814,0.721075944602489,1.00636294484138,1.14696523547173,-0.950204253196716,0.801229685544968,1.24357807636261,0.681102558970451,0.703865051269531,1.27471232414246,-0.326379186939448,0.0994954109191895,0.0269807577133179,-0.0896556489169598,0.1895991563797,-0.0497029423713684,-0.18878404982388,0.244311168789864,-0.0658057928085327,-0.744635976385325,-0.0575624108314514,0.404702723026276,-0.200114518404007,-0.00770577788352966,0.049508273601532, --0.510504394769669,0.131151109933853,0.158178627490997,-0.773905918002129,0.120584040880203,0.514672875404358,-0.455355793237686,0.0612860321998596,0.164149522781372,-0.634327322244644,0.0121996700763702,0.380470454692841,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.656252652406693,-0.120608568191528,0.496248990297318,-0.591418780386448,0.071584165096283,0.255991876125336,-0.477094933390617,1.34012526273727,-0.443428367376328,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.0934821665287,0.853552982211113,-0.465439885854721,-1.02829971909523,0.402423679828644,-0.589183270931244,-1.06834062933922,0.35119640827179,-0.651084244251251,-0.820503830909729,1.25021693110466,0.735112234950066,-1.2461499273777,0.446116179227829,0.649007067084312,-1.38036096096039,0.439208500087261,-0.178132712841034,-1.32771369814873,0.371628671884537,0.302949219942093,-1.17716524004936,0.532041683793068,0.344762802124023,-1.3487337231636,0.280740015208721,0.191504657268524,-1.3406537771225,0.280103795230389,0.195976734161377,-0.902281701564789,1.32246601581573,0.911699518561363,-1.42935785651207,0.641811028122902,0.791249100118876,-1.42727488279343,0.647746428847313,0.416027307510376,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.36529433727264,0.801415771245956,0.694614060223103,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.37864512205124,0.398068230599165,0.751972869038582,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.44980016350746,0.399120796471834,0.740584410727024,-1.18500347435474,0.279945932328701,0.93449093028903,-1.3798308968544,0.449068101122975,0.766527581959963,-1.35252270102501,0.366480313241482,0.809917684644461, --0.461360618472099,0.692743569612503,0.0324292182922363,-0.371179051231593,0.403830863535404,0.0157698392868042,-0.31957271695137,0.425106070935726,-0.0917988419532776,-0.455699399113655,0.357299894094467,-0.0475062131881714,-0.907043413957581,0.654803842306137,1.00222692638636,-0.563467055559158,0.427347779273987,0.241067409515381,-0.912817336153239,0.459371879696846,0.554474145174026,-0.990970449289307,0.366819635033607,0.957232819870114,-0.396825715899467,0.0882252678275108,0.141990423202515,-0.624937266111374,0.0259324014186859,0.362180948257446,-0.811688750982285,0.116476520895958,0.62496080994606,-0.310167416930199,0.830153167247772,0.386630892753601,-0.596842333674431,0.108133677393198,0.399664342403412,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.453769475221634,0.331221029162407,0.155710279941559,-0.491521224379539,0.550782762467861,1.49892961978912,-0.583108380436897,0.257034733891487,0.279255032539368,-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-0.993645738810301,-0.0283622741699219,0.915606036782265,-1.22584539651871,0.0200406610965729,1.20189124345779,-0.672045767307281,1.21834576129913,0.731021240353584,-0.850577086210251,0.301119334995747,0.122216999530792,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.20013108849525,1.36957579851151,0.665690571069717,-1.79218149185181,0.7458116710186,-0.0285762399435043,-1.78683006763458,0.761510074138641,0.214624658226967,-1.60606265068054,0.756403684616089,0.703317210078239,-1.75194972753525,0.3806082457304,0.112384349107742,-1.77342611551285,0.255772069096565,0.380891402252018,-1.75368964672089,0.279418751597404,0.636356800794601,-1.72800534963608,0.508586671203375,-0.0394192934036255,-1.68635576963425,0.591353986412287,-0.240835770964622,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.25498670339584,1.36215454339981,0.44971876591444,-1.43590885400772,1.04250253736973,0.333155822008848,-1.26549395918846,1.05410377681255, -0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-0.917216211557388,0.940421804785728,0.0792377889156342,-0.249697178602219,0.631892502307892,-0.290501594543457,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.903638996183872,0.721551805734634,0.282762706279755,-0.175711899995804,0.604710668325424,-0.427588671445847,0.19856333732605,0.605649814009666,-0.44828861951828,-0.241571992635727,0.533301040530205,-0.274403274059296,-0.185482740402222,0.603250205516815,-0.421743780374527,-0.0566655993461609,0.657576113939285,-0.566725105047226,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0514789521694183,0.826781917363405,-0.391633152961731,0.400801718235016,0.555962085723877,-0.819476217031479,0.383083328604698,0.495546758174896,-0.813162714242935,0.79310967028141,0.75305388122797,-0.726190805435181,0.467153547331691,0.941840976476669,-0.645289123058319,0.20493745803833,0.920929588377476,-0.815384298563004,-0.124387264251709,1.49059879779816,0.372635249048471,-0.130213439464569,0.744007501751184,-0.431461662054062,-0.34743195772171,0.76735969632864,0.347086533904076,-0.429402053356171,0.875981895253062,0.259458247572184,-0.270273298025131,0.690806180238724,-0.819258883595467,-0.424518287181854,0.579331994056702,-0.110154324909672,-0.262359201908112,0.505715474486351,0.323556065559387,-0.406826347112656,0.549784809350967,-0.512648120522499,-0.161262691020966,0.548809677362442,-0.991916865110397,-0.285753965377808,0.508508622646332,-0.596434727311134,-0.333628058433533,0.728943966329098,-0.583914592862129,-0.42655423283577,0.831785634160042,-0.454749375581741,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.101015448570251,0.670929044485092,-0.892550125718117,-0.109624981880188,0.632421255111694,-0.876050248742104, --0.154679208993912,0.993957683444023,-0.909663677215576,-0.131892740726471,0.880829989910126,-0.606689994921908,0.1440709233284,1.49266523122787,0.334777161478996,-0.399873971939087,0.994403928518295,-0.404680743813515,-0.423723638057709,0.971185341477394,-0.0185007154941559,-0.277063071727753,0.86094468832016,0.246667250990868,-0.199632406234741,0.440934523940086,-0.43396957218647,-0.250260651111603,0.422530353069305,0.274030655622482,-0.362357258796692,0.550051629543304,0.203494653105736,-0.243884801864624,0.440618053078651,-0.0958574526011944,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.316095530986786,0.460210919380188,0.183956660330296,-0.300198912620544,0.738231666386127,0.0755893401801586,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.247799098491669,0.656695164740086,-0.178893506526947,-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.58144947886467,0.824715122580528,0.147110491991043,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.863145858049393,0.517763301730156,0.854377835988998,-0.490903168916702,0.593229323625565,1.04636949300766,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.817409843206406,0.327746510505676,0.665667092427611,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452, -0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.798140270992008,0.445560028776526,-0.630533367395401,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.00167497992516,0.253881990909576,-0.486727476119995,-1.16618254780769,0.178021669387817,-0.703141152858734,-1.19124701619148,0.41465725377202,-0.54842022061348,-0.328065127134323,0.438839361071587,-0.755996108055115,-1.23930078744888,0.167767137289047,-0.672516524791718,-1.26743048429489,0.169245854020119,-0.685623347759247,-1.20555165410042,0.408584967255592,-0.790624126791954,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254553347826004,0.300624512135983,0.0427093505859375,-0.352783150970936,0.39579326659441,0.0319750905036926,-0.0365146100521088,0.339040011167526,-0.107451736927032,0.142280012369156,0.0704751014709473,-0.100045561790466,-0.311332046985626,-0.0443573892116547,0.227989494800568,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.194156736135483,0.525945246219635,-0.0259293913841248,0.404859213158488,0.401944447308779,-0.217067360877991,0.543864011764526,0.430027171969414,-0.219958901405334,-0.0458362400531769,0.228217661380768,-0.0849301815032959,0.100195616483688,0.204440504312515,-0.148463129997253,0.135972768068314,0.373487427830696,-0.154390037059784,-0.0258847177028656,0.199462383985519,-0.0710670351982117,0.161382228136063,0.183369159698486,-0.152003467082977,0.266897581517696,0.23298816382885,-0.154217481613159,-0.180116504430771,0.402644162997603,-0.00870144367218018,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.192666918039322,0.160686776041985,0.0395709872245789,-0.243194311857224,0.315867632627487,-0.0120335817337036,-0.260843172669411,0.298378847539425,0.0131291151046753,-0.478741854429245,0.3888104185462,0.309565842151642,-0.309121400117874,0.393948033452034,0.055213451385498,-0.417646437883377,0.429838374257088,0.014710545539856,-0.473915989510715,-0.0477802753448486,0.148697197437286,-0.546204790472984,0.0180291831493378, -0.338241994380951,-0.483763217926025,0.0907883644104004,0.143525540828705,-0.918557997792959,0.246096298098564,0.463484674692154,-0.795294687151909,0.367559522390366,0.233894348144531,-0.256049032323062,0.336378956882982,-0.0250588655471802,-0.290663497522473,0.381923042237759,-0.0718626379966736,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.901711478829384,0.0890007317066193,0.324213743209839,-0.871301993727684,0.14758026599884,0.314127504825592,-0.802485201507807,0.237131997942924,0.284457921981812,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.626289620995522,-0.108705788850784,0.156155824661255,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.187909522821428,0.513653934001923,-0.503710597753525,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084,-0.72211679816246,0.451057091355324,0.83918884396553,-0.267322897911072,0.510100498795509,-0.0492933690547943,-0.335849940776825,0.536023497581482,0.0791924893856049,-0.351254642009735,0.773158930242062,-0.0150867998600006,-0.471167206764221,0.21373550593853,0.291065692901611,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.0912895202636719,-0.194613307714462,0.436569198966026,-0.460155636072159,-0.211181133985519,0.543340593576431,-0.256666928529739,0.384433314204216,0.0697574019432068,-0.130031406879425,0.294720023870468,0.000937938690185547,0.344577699899673,0.340148778632283,-0.218709170818329,-0.482782423496246,0.402304880321026,0.383791893720627,-0.259847819805145,0.224504679441452,0.137234151363373,-0.192385077476501,-0.000324517488479614,0.178033232688904,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.422161996364594,0.338037990033627,0.276015937328339,-0.475667625665665,0.360072359442711,0.307514727115631,-0.49616327881813,0.224386170506477, -0.531287372112274,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715291187167168,0.292442731559277,0.491235971450806,-0.607903003692627,-0.115091502666473,0.569381773471832,-0.554920256137848,-0.0701614022254944,0.87789018265903,-0.511365085840225,0.0173673033714294,0.635671123862267,-0.933158631436527,0.308915751054883,0.580741167068481,-0.856651113106636,0.353926531970501,0.469077587127686,-0.580856800079346,0.236465387046337,0.33800083398819,-0.37615804374218,0.32722844183445,0.0794332027435303,-0.418082043528557,0.221983894705772,0.00664085149765015,-1.05972182750702,0.0653276666998863,0.568977206945419,-0.907295212819008,0.164648249745369,0.5567806661129,-0.852034444920719,0.224659480154514,0.428634703159332,-1.03014232218266,0.344440408051014,0.506426423788071,-1.01413621008396,0.060689692851156,0.360238075256348,-0.854551374912262,-0.169787704944611,0.346814870834351,-0.684043750166893,-0.105423122644424,0.221783101558685,-0.473499618470669,0.0951932966709137,0.0252766013145447,-1.18383802473545,0.0178890749812126,0.722534328699112,-1.06865812838078,0.172535806894302,0.583366900682449,-0.733232885599136,0.585884811356664,0.850015304982662,-0.958015060052276,0.239198423922062,0.754502937197685,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.655905693769455,0.0718225687742233,0.577670037746429,-0.543791323900223,-0.239056155085564,0.535560339689255,-0.637500435113907,0.173734903335571,0.690609764307737,-0.589941114187241,-0.105211287736893,0.622145414352417,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.231361925601959,0.657105537131429,-0.136730864644051,0.126119077205658,0.498010899871588,-0.357506543397903,-0.36583948135376,0.692959101870656,0.271704375743866,-0.231545627117157,0.6298598498106,0.155951306223869,-0.165118396282196,0.361909076571465,0.182202056050301,-0.0640793442726135,-0.0363660156726837,0.242534205317497,-0.0801506042480469,0.14455059170723,-0.0279945731163025,0.100906729698181,0.178325116634369,-0.323474377393723, --0.189441621303558,0.330834574997425,0.338515184819698,-0.385633528232574,0.801137775182724,0.626392502337694,-0.380740106105804,0.629274693317711,0.343386620283127,-0.38028883934021,0.66132976859808,0.345506340265274,-0.415777683258057,0.496264897286892,0.57616407237947,-0.669453382492065,0.527967497706413,0.850271113216877,-0.526741057634354,0.576558694243431,0.552982669323683,-0.719019889831543,0.592278338968754,0.641259957104921,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.624315351247787,0.286401301622391,0.670757589861751,-1.05278851091862,0.753886397927999,0.605929002165794,-0.863656722009182,0.888244777917862,0.557989254593849,-0.228835046291351,0.540311858057976,-0.220629811286926,0.144964054226875,0.6220912784338,-0.262327551841736,-0.633623257279396,1.41307371854782,1.19311878085136,-0.75817234069109,0.765670865774155,1.51837641000748,-1.32573828101158,0.767661958932877,0.985001534223557,-1.04566377401352,0.827757999300957,1.32876139879227,-0.132447779178619,1.02659633755684,-0.285555720329285,-0.208488136529922,0.6712866127491,-0.28717428445816,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.07090756297112,0.818924225866795,-0.191334426403046,-0.827712625265121,0.644553519785404,-0.588273167610168,-1.69160836935043,0.61854623653926,0.0686410069465637,-1.22487318515778,0.87166316062212,-0.62318280339241,-0.622070915997028,1.02026319503784,-0.60050842165947,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.699594929814339,0.778316773474216,-0.864000618457794,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.55032300949097,0.672187335789204,0.521258249878883,-0.46096083521843,1.50048846006393, --0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.40120130777359,0.682387210428715,-0.289338707923889,-1.16159385442734,1.41737255454063,0.418005105108023,-1.60119420289993,0.96843521296978,-0.179820585995913,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.5053551197052,0.580322265625,-0.471904963254929,-1.76797503232956,0.442972373217344,0.396708933869377,-1.05868554115295,1.6381961107254,0.360001727938652,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.30246150493622,1.14482977986336,-0.0523116886615753,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.71384954452515,0.583510495722294,0.194381438195705,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708,-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.0958998203277588,0.675446297973394,0.883943349123001,0.462101608514786,0.658518247306347,1.22978001832962,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.885600976645947,0.580853402614594,0.699740178883076,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.0665653944015503,0.747556075453758,1.57862377166748,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.417888276278973,0.605346051976085,1.61671817302704,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.50617808103561,0.928327918052673,0.523524343967438,1.44322448968887, -0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.6871817111969,0.807080835103989,0.689126193523407,1.55508345365524,0.433407412841916,1.0785368680954,1.3575786948204,0.437027879059315,1.2073957324028,0.997346997261047,1.32779806852341,1.07229605317116,1.71216821670532,0.869120836257935,0.234488919377327,1.84124773740768,0.423932887613773,0.495496787130833,1.75871795415878,0.66915725171566,0.602595195174217,1.22337013483047,1.32249301671982,0.590328752994537,1.61997663974762,1.06483486294746,0.37613320350647,1.7342067360878,0.793721824884415,0.447439804673195,1.83863061666489,0.367105107754469,0.546619176864624,1.29198369383812,1.30708065629005,0.562067657709122,0.714746743440628,0.497397970408201,0.976591184735298,0.838513225317001,0.291549673303962,1.13910499215126,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439,-0.192296214401722,1.2836207151413,1.43172496557236,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.350511848926544,0.692471534013748,1.72521591186523,-0.272463694214821,0.625714778900146,1.72132360935211,-0.0190511643886566,0.681022793054581,1.70135480165482,-0.336173713207245,1.11867183446884,1.53591132164001,-0.309674218297005,0.703436762094498,1.71479249000549,0.0927144289016724,0.645044803619385,1.54571837186813,-0.186306640505791,0.553133197128773,1.70965820550919,0.214541107416153,0.472547329962254,1.50920653343201,0.0521100163459778,0.84872242808342,1.59044772386551,0.142795026302338,0.6600192328915,1.6347708106041,0.119093880057335,0.531255599111319,1.75260090827942,0.121861338615417,0.491654865443707,1.60883116722107,-0.1945980489254,0.550001343712211,1.73375475406647,0.668878428637981,1.080013692379,1.16363430023193,0.564696460962296,0.72341026365757,1.28139007091522,0.371859610080719,0.946026176214218,1.32064712047577,0.28640054166317,1.31200331449509,1.29966634511948,0.657175227999687, -1.10517799854279,1.28640753030777,0.590708520263433,1.0811755657196,1.37105542421341,0.25691194832325,0.592578992247581,1.72085440158844,0.937942883465439,0.859512537717819,0.819090597331524,0.341051504015923,1.32787203788757,1.39292103052139,0.415135145187378,1.00713369250298,1.51329308748245,0.648758313152939,0.543215667828918,1.61019289493561,1.06533589959145,0.531957976520061,0.975092381238937,0.414673362392932,0.749678050167859,1.57589775323868,0.892121074721217,0.9887835085392,0.365420460700989,1.06783869862556,0.50284332036972,0.794533431529999,1.01373065263033,0.872377336025238,1.00304339826107,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.910574443638325,0.872335612773895,1.31465956568718,0.900299517437816,0.614159367978573,1.27238127589226,0.557452589273453,1.29768872261047,0.71635739505291,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937,0.585861831903458,0.4289336130023,1.1122690141201,0.656720131635666,0.559883451089263,0.796167030930519,0.408652544021606,0.409350365400314,1.0754606127739,0.353517234325409,0.618586111813784,0.283552289009094,0.216117918491364,1.00146484375,0.457571625709534,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.566276073455811,0.442594319581985,0.643884226679802,0.554420828819275,0.393805809319019,0.867822624742985,0.471678733825684,0.383285038173199,0.772117380052805,0.126732259988785,0.591638810932636,1.50325697660446,-0.072632223367691,0.549328880384564,1.67394810914993,0.380493938922882,0.562906999140978,1.33321893215179,-0.0197220146656036,0.883991479873657,1.51165932416916,0.00785070657730103,0.55509490147233,1.57442915439606,0.092689573764801,0.590341560542583,1.62470299005508,0.44608411192894,0.553566477261484,1.24453687667847,-0.138697624206543,0.492377787828445,1.7299867272377,0.126790314912796,0.456699252128601,1.60525357723236,0.161933720111847, -0.65004962682724,1.59966522455215,0.0521961450576782,0.580633815377951,1.64643222093582,-0.119605541229248,1.21047201752663,1.36179453134537,-0.155653953552246,1.17728525400162,1.41032207012177,0.273381367325783,0.853374361991882,1.66503113508224,0.111633986234665,0.755786389112473,1.6112734079361,-0.337070952885369,1.19873511791229,1.482053399086,-0.109128020703793,1.02114191651344,1.66859894990921,0.0466204197145998,1.27609592676163,1.50844192504883,0.0188791453838348,0.81043715775013,1.7640683054924,-0.0273794382810593,0.467269785702229,1.87020641565323,0.383759722928517,0.586887091398239,1.83147537708282,0.437049776315689,0.49733280390501,1.80879175662994,0.473930737469345,0.785092920064926,1.69110387563705,0.264719650964253,0.324520634952933,1.90968269109726,0.879356190562248,0.395490765571594,1.61324745416641,0.286729969084263,1.01272585988045,1.69671589136124,0.330474853515625,0.634350404143333,1.83057475090027,0.685173317790031,0.1877501308918,1.79579800367355,0.990150734782219,0.144000082276762,1.58114010095596,0.299684910103679,0.534788399934769,1.77247780561447,1.10657197982073,0.473982070572674,0.860886686481535,1.11687548458576,0.11468749307096,1.40443789958954,1.07267771661282,0.221110103651881,1.26496043801308,0.122104078531265,1.36477202177048,1.10897907614708,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0158661603927612,1.08330237865448,1.4027424454689,0.233516812324524,0.81639376282692,1.27687901258469,0.526161521673203,0.763278380036354,1.20843994617462,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.208725869655609,1.03013336658478,0.723546922206879,0.0760306119918823,0.471519562415779,0.828292965888977,0.199108958244324,1.03313887119293,0.392361789941788,-0.31430122256279,1.36796903610229,0.748472452163696,0.0686137676239014,0.883445501327515,0.822417020797729,0.127758383750916,0.385423388332129,0.777634620666504,0.172266125679016, -0.424839813262224,0.548078998923302,0.143039226531982,0.531586855649948,0.786759525537491,0.382920384407043,0.615221317624673,0.398718856275082,0.400903046131134,0.523003600537777,0.753314688801765,0.194376945495605,0.416941944509745,0.489397294819355,-0.207694590091705,1.52493876218796,0.549880966544151,-0.00286179780960083,1.50310152769089,0.713344261050224,0.662809878587723,0.788584798574448,0.783206857740879,0.41286301612854,0.551988702267408,0.581826576963067,0.190988779067993,1.48500770330429,1.0054660141468,0.605264037847519,0.972477644681931,1.04069402813911,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,1.01544828340411,0.738500943407416,0.976765811443329,1.03868880867958,0.730511073023081,1.12606874108315,1.07926705479622,0.55089708417654,1.01543295383453,0.8041972219944,0.597082037478685,1.25169494748116,1.05079159140587,0.645810913294554,1.09733843803406,1.3316322863102,0.613362334668636,0.77452240884304,0.850390881299973,1.261101603508,1.29025113582611,0.906742841005325,1.22872936725616,0.82433920353651,1.17722913622856,1.23493033647537,0.665784360840917,1.26968431472778,1.21677851676941,0.639851093292236,1.48086458444595,0.961934000253677,0.702623561024666,1.37814226746559,0.503906950354576,0.764988668262959,1.45574659109116,1.18024131655693,0.531324476003647,0.60984004131933,0.831286702305079,1.15940298140049,1.08386382460594,0.676765222102404,1.21777212619781,0.699731841683388,1.07210531830788,1.43491864204407,0.941403210163116,0.88403008878231,1.09815903007984,0.812751650810242,0.882923569530249,1.05935399979353,1.12202885746956,0.726719386875629,1.08194985985756,1.0429927110672,0.480728626251221,1.22069931030273,0.983196347951889,0.903832767158747,0.940964341163635,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.1747573018074,0.864833496510983, -1.08104693889618,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,1.05350279808044,0.923352494835854,1.14889085292816,1.5831041932106,0.79563907533884,0.277617287822068,1.20694699883461,0.962949015200138,0.690233498811722,1.47353279590607,0.744059910997748,0.503641996532679,1.75988972187042,0.613422736525536,0.391608830541372,1.45493495464325,0.837829560041428,0.71178837120533,1.134108543396,0.846919842064381,1.11157119274139,1.53506541252136,0.644225090742111,1.02570512890816,1.67474383115768,0.372223552316427,0.920175075531006,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.82544815540314,0.294568922370672,0.661156982183456,1.78063863515854,0.384668463841081,0.700218468904495,1.51091402769089,0.658264398574829,0.892960786819458,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.70371562242508,0.51677143573761,0.361733697354794,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.35327634215355,0.607937067281455,0.949861586093903,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07248941063881,0.76012896001339,0.531120702624321,1.34913751482964,0.490287870168686,0.458579674363136,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07919427752495,0.512475550174713,1.00059545040131,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286, -0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.240583598613739,0.918146431446075,1.01818892359734,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.169898450374603,0.554358348250389,1.17803883552551,-0.102061301469803,1.07679587602615,1.29313892126083,0.035373717546463,0.615011774003506,1.55101817846298,-0.0017511248588562,1.04639029502869,0.994142144918442,0.117601811885834,0.674496322870255,0.668709605932236,-0.30121898651123,1.18963295221329,0.826929241418839,-0.122267425060272,0.623348742723465,0.956350594758987,-0.280924797058105,1.10779559612274,0.0779312551021576,0.127178311347961,0.981413096189499,-0.242779761552811,-0.41663533449173,1.26211383938789,0.810621023178101,-0.133594036102295,0.668438374996185,1.01348438858986,-0.238351941108704,1.19945961236954,-0.190625697374344,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.648926764726639,1.08765107393265,0.658249944448471,1.1410958468914,0.956036388874054,0.491987407207489,0.856487035751343,1.39781534671783,0.930317118763924,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24206691980362,1.00305864214897,0.468275606632233,0.838156551122665,1.44377225637436,0.760494757443666,1.31618893146515,0.959592074155807,0.842566914856434,0.457283398136497,1.55641722679138,0.81784899532795,0.384722549468279,1.42759495973587,1.19819942116737,0.561840742826462,1.46012604236603,1.09324103593826,0.390379787422717,1.55805540084839,0.888118907809258,0.261906701838598,1.56419408321381,1.11294457316399,0.393707230687141,1.48125398159027,1.14371648430824,0.579362064599991,1.45116829872131,1.09949436783791,0.283373177051544,1.50734502077103,0.891054630279541,0.366661727428436,1.66257601976395,0.969198167324066,0.458482593297958,1.31248831748962, -1.40011382102966,0.0385873913764954,1.48590242862701,0.97580973803997,0.311997603625059,1.50430047512054,1.22777527570724,0.20582576841116,1.54831743240356,1.23645067214966,0.260980806313455,1.48757112026215,0.82818590849638,0.510996043682098,1.34741312265396,1.31980925798416,0.26986663416028,1.60181051492691,1.11559295654297,0.0793850496411324,1.69237869977951,0.851028308272362,0.0675491131842136,1.27372425794601,1.44361686706543,0.212373188696802,1.43047505617142,1.21418261528015,0.0589616466313601,1.73833256959915,0.723696142435074,0.286542192799971,1.60259622335434,1.03581497073174,0.147630304098129,1.31253325939178,1.27988550066948,-0.262685459107161,1.37927967309952,1.20216283202171,0.204205088317394,1.53849869966507,1.2383553981781,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.233444005250931,1.36290764808655,0.942588549107313,0.188678429229185,1.64835333824158,0.968535304069519,0.143057930283248,1.84601807594299,0.556133579462767,0.474871188402176,1.5003958940506,1.03545948863029,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.512217015028,1.4939780831337,1.03123062849045,0.765988543629646,1.53480702638626,0.788900703191757,0.48449133336544,1.44775730371475,1.0841451883316,0.597619533538818,1.31446984410286,1.28455883264542,0.494809497147799,1.47564408183098,0.695721708238125,0.636764049530029,1.50600785017014,0.510344907641411,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.422391961794347,1.51421982049942,0.77144231647253,0.507593574002385,1.48801630735397,0.742639593780041,0.458785824477673,1.40830132365227,1.04178485274315,0.395832534879446,1.47211709618568,0.87605258077383,0.393278025090694,1.52727466821671,0.8836270570755,0.524684447795153,1.49911463260651,0.808099739253521,0.389953009784222,1.38694262504578,1.14987343549728,0.338753052055836,1.37302631139755,1.24951612949371,0.385338760446757,1.52917146682739,0.659825578331947, -0.510006874799728,1.39323651790619,0.406630039215088,0.528459668159485,1.37909415364265,0.367838054895401,0.322532892227173,1.53321641683578,0.78629606962204,0.344595643691719,1.55739039182663,0.864842660725117,0.356290109455585,1.45400711894035,0.846588052809238,0.395894855260849,1.4529176056385,0.940874144434929,0.398648297414184,1.53222250938416,0.796728126704693,0.0956604704260826,1.55730050802231,0.859389871358871,0.31581375002861,1.39564514160156,0.956911310553551,0.293728794902563,1.38751864433289,1.14251574873924,0.333946144208312,1.50524669885635,1.08501622080803,0.0885206526145339,1.51787811517715,0.870611058548093,0.403696820139885,1.35661441087723,0.655460581183434,0.102981418371201,1.54878735542297,0.953972488641739,-0.0713489642366767,1.4256409406662,1.11241199076176,-0.164067151024938,1.21605791151524,1.1602541655302,0.0446670821402222,1.29617789387703,1.18836380541325,0.0117078889161348,1.51834869384766,0.934160687029362,-0.120163585059345,1.42015159130096,0.999753087759018,-0.102120481431484,1.1052967980504,1.12366013228893,-0.165045505389571,1.15940184891224,1.34554305672646,0.00249281898140907,1.36494785547256,1.29045259952545,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.117201916873455,1.10630731284618,0.824526518583298,-0.164182338863611,1.42254930734634,0.951596718281507,0.298433436313644,1.53632539510727,0.940364703536034,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.328864740207791,1.30362224578857,0.826449804008007,0.203960306942463,1.23524588346481,1.28763064742088,0.296377932652831,1.54851514101028,0.821255791932344,0.602477446198463,1.48340728878975,0.811082571744919,0.148699004203081,1.17739178240299,0.592778235673904,0.351911798119545,0.574663504958153,0.0681134462356567,0.101074865087867,1.08075318485498,1.10454161465168,0.347320780158043,0.990546859800816,0.585145592689514,0.164727479219437,1.19267705082893, -0.52667024731636,0.0978744998574257,1.16025938093662,0.56032258272171,-0.232026621699333,0.981006242334843,0.915338862687349,0.112368404865265,1.01548182964325,0.682232603430748,-0.156652837991714,1.13963796198368,0.678029477596283,-0.328567266464233,1.03558692336082,1.01253943890333,0.424286969006062,1.29150089621544,0.360896408557892,0.516025424003601,1.04302650690079,0.327120661735535,-0.045341819524765,1.13971470296383,0.641746371984482,0.143559187650681,1.16447098553181,0.561333984136581,-0.147349208593369,1.17237478494644,0.845213025808334,-0.0364854037761688,1.05116778612137,0.715809270739555,0.44061878323555,1.34315302968025,0.309181272983551,-0.249392569065094,1.19567164778709,1.03658580780029,0.123620200902224,0.954829134047031,0.546366035938263,0.724539622664452,0.892716467380524,0.142723083496094,0.476542055606842,1.4169260263443,0.41668526083231,0.390247255563736,1.38079288601875,0.460262194275856,0.262142986059189,1.04373985528946,1.04861217737198,0.524688929319382,1.14583529531956,0.580978725105524,0.437107548117638,1.37750574946404,0.945022165775299,0.654868116602302,1.59590142965317,0.380249194800854,0.56653868407011,1.55239349603653,0.358442366123199,0.224513391032815,1.33944287896156,0.96784170717001,0.576722141355276,1.42648926377296,0.709250761196017,0.40707340836525,1.5411502122879,0.901400446891785,0.201731376349926,1.52201598882675,0.925108656287193,0.698487251996994,1.28407377004623,0.625918969511986,0.375814899802208,1.12817291915417,1.24755501747131,0.582259923219681,1.05191443115473,0.788859821856022,0.910072579979897,0.963576108217239,0.153034538030624,0.940684154629707,1.2902737557888,0.517099894583225,0.822379060089588,1.2775547504425,0.703661605715752,0.81085591390729,1.05633267760277,0.771742343902588,0.989243894815445,1.05564788356423,0.454044684767723,0.748199601657689,1.28601223230362,0.615315264090896,0.795783579349518,1.22959986329079,0.781165987253189,0.749641140922904,1.49143955111504,0.406605329422746,0.726844418793917,1.41293209791183,0.307656854391098,0.57882659137249,1.2271686643362, -0.966429010033607,0.756107434805017,1.26731598377228,0.783488869667053,0.618400759994984,1.41971224546432,0.811244383454323,0.483239183202386,1.36255121231079,0.910232163965702,0.789731457829475,1.21223947405815,0.548054099082947,0.720706358551979,1.02260863780975,0.941194593906403,0.581082653254271,1.36676892638206,0.697804242372513,0.662010446190834,1.41791495680809,0.388943895697594,0.887888219207525,1.11057209968567,0.602740690112114,0.956131261773407,1.0665557384491,0.457156255841255,0.768860287964344,1.46034127473831,0.233292933553457,0.638734337873757,1.36630222201347,0.629049606621265,0.461299523711205,1.26542553305626,1.09382116794586,0.721343450248241,1.44445812702179,0.417471945285797,0.726209849119186,0.0341058671474457,-0.704343795776367,0.627437017858028,0.309128142893314,-0.367496371269226,1.06984287500381,0.30245915055275,1.47600746154785,0.903901547193527,0.454076372087002,1.64292258024216,1.6348015666008,0.653499662876129,0.806804105639458,1.64182180166245,0.848871514201164,0.564398005604744,0.802523963153362,-0.0669861137866974,1.00343684852123,1.11218893527985,-0.360115021467209,0.91341146081686,1.1314722597599,0.056167259812355,1.11100126802921,0.821736216545105,0.0339390188455582,1.33539977669716,0.924061357975006,-0.408654555678368,1.42191350460052,1.27426609396935,-0.552661139518023,1.11882984638214,1.22475519776344,0.029291570186615,1.46270138025284,0.967522650957108,-0.0420372262597084,1.5580957531929,0.677230626344681,0.143213480710983,1.77787792682648,0.952547341585159,0.0333831608295441,1.71363008022308,0.816545009613037,0.387746848165989,1.77177929878235,-0.281853854656219,-0.387340813875198,0.0357833504676819,0.15725269401446,-0.110616065561771,-0.0250723361968994,0.280074991285801,-0.148695714771748,0.00454401969909668,0.299058441072702,-0.00126899778842926,1.93764042854309,0.0289127230644226,-0.190749142318964,0.0167955160140991,0.277189195156097,-0.273920681327581,-0.0638006925582886,-0.392199367284775,-0.579085394740105,0.474678456783295,0.630767319351435,-0.152489330619574,-0.217157781124115, -0.12188458442688,-0.315924044698477,0.00804060697555542,-0.107978612184525,-0.214399367570877,0.10776823759079,-0.41194361448288,-0.494149997830391,0.597491785883904,0.549963489174843,-0.345434248447418,-0.107604146003723,-0.223748415708542,-0.273902744054794,0.28739857673645,-0.537672191858292,-0.0798127055168152,0.555885285139084,-0.530341297388077,-0.349816061556339,1.04811570048332,0.121527820825577,-0.0674814805388451,-0.031764805316925,-0.400227934122086,-0.132704526185989,0.376587212085724,-0.562626659870148,-0.193415828049183,0.717222481966019,-0.517308980226517,-0.282739020884037,1.07619133591652,0.00589627027511597,0.160150989890099,-0.0400698781013489,-0.421682357788086,-1.23339575529099,-0.0675026476383209,-0.432728290557861,-1.09687849879265,-0.119953379034996,0.058233380317688,-0.651419550180435,0.692128419876099,-0.151727259159088,-0.427030220627785,0.107324421405792,-0.389981746673584,-1.26988473534584,-0.0364431738853455,-0.438418745994568,-1.10599258542061,0.0480654370039701,0.133604526519775,-0.733775556087494,0.568409398198128,0.153263211250305,-0.44246444106102,-0.305652141571045,0.0281141400337219,-0.686229169368744,0.0994481593370438,-0.0264811515808105,-0.522714197635651,0.210148313548416,0.0833495259284973,-0.107583962380886,0.693268358707428,0.033613383769989,-0.218302831053734,0.703986525535583,1.55593591928482,-0.344813726842403,0.922244712710381,1.87833124399185,-0.311895783990622,0.0979272425174713,1.88523191213608,0.10871596634388,0.611550107598305,1.55562686920166,0.12871316075325,0.545722275972366,1.8217009305954,-0.137501403689384,0.769961923360825,1.75055068731308,-0.0402876413427293,0.00155806541442871,1.65464669466019,-0.167108124122024,1.10268062353134,1.75808167457581,-0.0716285035014153,0.124991029500961,1.66931998729706,0.0120432302355766,1.08895754814148,1.47139459848404,-0.0541041344404221,1.23658648133278,1.64837288856506,-0.184711936861277,1.11000740528107,1.2464519739151,0.192007809877396,1.47282344102859,1.52305883169174,0.824069768190384,0.651345364749432,1.58377206325531, -0.549292206764221,0.817581444978714,1.56160867214203,0.661233260296285,0.651598237454891,1.61530333757401,0.726069279015064,0.644787937402725,1.63711136579514,0.568571462295949,0.648804396390915,1.68377667665482,0.546138717792928,0.623555399477482,1.62581592798233,0.665293991565704,0.799176082015038,1.1832160949707,-0.367303013801575,0.609199121594429,1.30104941129684,-0.421952784061432,0.214672096073627,1.68752121925354,0.128578066825867,0.383432175964117,1.56936460733414,0.0843597650527954,0.81597700715065,1.27428758144379,-0.463010281324387,0.320013262331486,1.05184829235077,-0.272804200649261,0.36603207886219,1.48222655057907,0.280182778835297,0.497622665017843,1.56135785579681,0.225555390119553,0.459284838289022,1.31038269400597,0.3074771463871,0.592597510665655,1.2613465487957,0.29095870256424,0.646978672593832,1.37879094481468,0.667990811169147,0.678982332348824,1.28009563684464,0.728668294847012,0.653182591311634,1.07509791851044,0.255273461341858,1.08677762746811,1.20998722314835,0.284722000360489,0.665091600269079,1.81537526845932,0.43435775488615,0.407675887458026,1.40329983830452,0.738315358757973,0.259642608463764,1.7245876789093,0.468619987368584,0.0856633372604847,1.62568300962448,0.285640060901642,0.164401732385159,1.67668688297272,0.28479677438736,0.312367416918278,1.80343306064606,0.352229401469231,0.175434693694115,1.78329932689667,0.341788545250893,0.129883818328381,1.74009865522385,0.175525665283203,0.201726482249796,1.65956526994705,0.0956613421440125,0.546134881675243,1.68150854110718,0.609087787568569,0.770144551992416,1.67453002929688,0.587872639298439,0.806666702032089,1.60238122940063,0.573034956119955,0.869703233242035,1.65703850984573,0.573317736387253,0.783568352460861,1.38339582085609,0.674463301897049,0.981402516365051,1.45381826162338,0.684985654428601,0.872674614191055,1.34294220805168,0.732651732861996,0.99566051363945,1.30491551756859,0.664359802380204,0.721560729667544,1.25968915224075,0.705753073096275,0.378498107194901,1.19824859499931,0.978599697351456,0.43976067006588,1.25232344865799, -0.943106770515442,0.662914466112852,1.28706189990044,0.778536839410663,0.593264553695917,1.30182772874832,0.712315136566758,0.676617098972201,1.23415261507034,0.948261141777039,0.665388356894255,0.964390499230561,1.1015128493309,0.604351498186588,1.0807486101985,0.876088613644242,0.535977555438876,1.07210683822632,0.824746711179614,0.595506343990564,0.911971118951683,0.454064190387726,0.5544213950634,1.02188050746918,0.502095878124237,0.590468287467957,1.03119684010744,0.91998790204525,0.190114229917526,1.03155984729528,0.505017340183258,0.583577424287796,1.00600475072861,0.570551544427872,0.200670123100281,0.994700410188955,0.835389740765095,0.563740022480488,1.10373143851757,0.869854755699635,0.474801503121853,1.07920914888382,1.06926068663597,0.35405295342207,0.999303092861307,0.972015645354986,0.328273056074977,1.1005153208971,0.911021120846272,0.369504623115063,1.10341727733612,0.915925414301455,0.395559955388308,0.95035739273537,1.26270812749863,0.196269020438194,1.0799932256341,1.15222164988518,0.148301385343075,1.10115119069815,0.937303626909852,0.347497805953026,0.998633540547969,0.958243932574987,0.301235895603895,1.11488930881023,0.949854951351881,0.243969779461622,1.10914126038551,0.9373175855726,0.287669841200113,0.997308572724524,0.967668557539582,0.239166140556335,1.12878140807152,0.95905558206141,0.171874161809683,1.12165332585573,0.950348267331719,0.199172142893076,0.99262184662895,0.9573909714818,0.19861463457346,0.260785058140755,0.501815497875214,0.840435421094298,0.362874954938889,0.525737017393112,0.93079587072134,0.358599126338959,-0.656340956687927,-0.115613877773285,0.684404850006104,-0.761836618185043,-0.141334414482117,0.608028396964073,-0.380680814385414,-0.0487523674964905,0.559701502323151,-0.409437134861946,0.0567005276679993,0.985845476388931,-0.524356380105019,0.425230026245117,1.0036316215992,-0.525131925940514,0.197448909282684,0.937368988990784,-0.131524175405502,0.137863457202911,1.07840903103352,-0.175803981721401,0.570825159549713,0.911526754498482,-0.357483506202698,0.412563681602478, -1.04200956225395,-0.514553144574165,0.505001664161682,1.03888739645481,-0.383148960769176,0.689392119646072,0.961055606603622,0.091929268091917,0.528031170368195,1.47324168682098,-0.918651789426804,-0.475481420755386,0.855151019990444,-0.359897874295712,-1.0203142054379,1.42338162660599,-0.134748034179211,-0.921277459710836,1.086430773139,0.255990996956825,-0.588349193334579,1.09740418195724,-0.35785461217165,-1.00283478572965,1.04674237966537,-0.302208006381989,-0.205250382423401,1.12380582094193,-0.433604389429092,-0.123213112354279,1.32460090517998,-0.500027805566788,-0.917971666902304,1.32619270682335,-0.462739408016205,-0.928970690816641,1.29389905929565,-0.126485764980316,-0.0291976928710938,1.64426326751709,0.0119933038949966,0.496616169810295,1.48654133081436,0.846072794869542,-0.0755251608788967,1.82338118553162,-0.0567377358675003,-0.543413456529379,1.87700968980789,-0.0896599795669317,-0.422756772488356,1.73531103134155,-0.0862840600311756,-0.154026240110397,1.69375932216644,0.135163046419621,-0.146106600761414,1.69457417726517,0.537077650427818,0.206701874732971,1.89428329467773,0.234795372933149,0.419232936576009,1.46736836433411,0.855893017724156,0.179981712251902,1.50193113088608,0.291849479079247,0.8800283446908,1.80926430225372,0.573381438851357,0.338370732963085,1.99536955356598,0.0465367902070284,0.00151222571730614,1.60380566120148,-0.151136197149754,0.37191241979599,1.80247455835342,0.150155991315842,0.0515779256820679,1.48458248376846,0.0276113376021385,1.1172768175602,1.40998819470406,0.143178626894951,0.827120184898376,1.75164115428925,0.306792750954628,0.52861300483346,1.78311264514923,0.321295324712992,0.474007472395897,1.8707240819931,0.107886664569378,0.460414126515388,1.75120544433594,0.376246701925993,0.494530521333218,1.72676402330399,0.504632133990526,0.431931726634502,0.263685211539268,-0.54284717515111,-0.184852004051208,0.814386457204819,-0.615576684474945,-0.343519866466522,0.797770991921425,0.170045718550682,-0.0939892530441284,0.401455774903297,-0.160216089338064,-0.00967413187026978, -1.35611701011658,-0.560175135731697,0.195358097553253,1.26948541402817,-0.571063309907913,-0.356178760528564,1.71419161558151,0.205656468868256,0.581114688888192,1.55382078886032,-0.0846295356750488,0.783141990192235,1.33309209346771,-0.454107210040092,0.206796824932098,1.35538965463638,-0.291179902851582,-0.281504571437836,1.74094527959824,0.0323794633150101,0.225568771362305,0.832222983241081,0.235355041921139,-0.179677844047546,0.990917578339577,-0.175632812082767,0.389584004878998,1.02472719550133,0.448228046298027,0.210378110408783,1.19891780614853,0.205967105925083,-0.00959283113479614,1.17038571834564,0.0630742688663304,1.14892543852329,1.45435100793839,-0.505841091275215,-0.996936231851578,1.40496903657913,-0.018859326839447,0.0133788585662842,1.74298113584518,-0.101057916879654,-0.025638222694397,1.89927715063095,-0.459514573216438,-0.307536117732525,1.46431934833527,-0.704765722155571,-1.12289148569107,1.55186474323273,-0.925499424338341,0.632813006639481,1.42499387264252,-0.0897993817925453,-0.340661972761154,1.23191571235657,0.805128954350948,-0.669217765331268,1.68493461608887,-0.0549819469451904,-0.0679343640804291,1.81216382980347,0.24767155200243,0.699169784784317,1.82497620582581,0.380347371101379,-0.667854443192482,1.38439276814461,0.615861847996712,0.22832202911377,1.69051724672318,0.0410497263073921,0.0414721071720123,1.87419807910919,-0.132345750927925,-0.41738255508244,1.94276314973831,-0.0322520881891251,-0.350826993584633,1.82937014102936,0.0941538512706757,0.222539260983467,1.84417319297791,0.347706001251936,-0.377578564919531,1.9188546538353,0.0957033298909664,-0.502496093511581,1.67851436138153,0.0752215925604105,-1.05535486340523,1.7240709066391,0.443823158740997,0.190509468317032,1.90839791297913,0.517737105488777,-0.25906328111887,1.35573989152908,0.9739790558815,-0.348637126386166,1.81575894355774,0.29220736771822,0.48704694584012,1.81682461500168,0.0497762560844421,-0.634884372353554,1.77594125270844,-0.0143281817436218,0.463442727923393,1.78620541095734,0.525312080979347,-0.470908594317734, -1.20280247926712,0.487537384033203,-0.938943990506232,1.78750324249268,0.795491814613342,-0.284638412296772,1.63991278409958,0.362682774662971,-0.479497596621513,0.58430540561676,-0.900055274367332,-0.348526000976563,1.34880554676056,-1.01524133235216,-0.059325709939003,0.936714887619019,-0.492982655763626,-0.455384790897369,0.965104907751083,-0.491486370563507,-0.0169048309326172,0.715562045574188,-1.12617413699627,-0.717127904295921,0.855347812175751,-1.17913228273392,-0.785385396331549,1.28090772032738,-0.653185606002808,-0.588395148515701,1.19452178478241,-0.544647231698036,-0.368739724159241,1.18677088618279,-0.27188479155302,-0.398717045783997,1.07594306766987,-0.653434336185455,-0.655246406793594,1.12098273634911,-0.265335258096457,-0.544327229261398,0.8283836171031,0.215667515993118,-0.395815551280975,0.356774628162384,-0.198170997202396,-0.156734645366669,1.14381435513496,-0.22240486741066,-0.412122249603271,1.79667121171951,0.124164838343859,0.677714429795742,1.33725887537003,0.0963493846356869,0.299988269805908,1.11383014917374,-0.193306565284729,0.109578967094421,1.42742502689362,-0.679910358041525,-0.231526076793671,1.75068855285645,-0.522315561771393,-0.556985232280567,1.65663367509842,-0.502436488866806,-0.913343399763107,1.43289369344711,-0.904804781079292,-0.331988885998726,1.13377705216408,-1.15091893076897,-0.714448451530188,1.78641927242279,-0.739661812782288,-0.189516454935074,1.62413430213928,-0.578761368989944,-1.00439804792404,1.65979069471359,-0.372716009616852,-1.03025364875793,1.80636650323868,-0.500377170741558,-0.25973829627037,1.89974415302277,-0.0988556034862995,-0.233685508370399,1.74352061748505,0.0753192126285285,-0.963374137878418,1.55994772911072,-0.528294652700424,-1.00883820652962,1.43969249725342,-0.416307419538498,-1.3002073764801,1.46637183427811,0.127048109425232,-1.31373989582062,1.76446211338043,0.136198402382433,-0.816214740276337,1.85846781730652,0.369006380438805,-0.290514349937439,1.90454035997391,0.428065091371536,-0.359362632036209,1.48933333158493,0.754880444146693, -0.215987145900726,1.77111315727234,0.114471745444462,-0.205640554428101,1.91049814224243,-0.0253509283065796,0.235082492232323,1.80173176527023,-0.0227923989295959,-0.728881686925888,1.7430659532547,-0.279750923858956,-0.22880282998085,1.90534162521362,-0.302803043276072,-0.13758759200573,1.84699702262878,-0.0325394421815872,-0.473390821367502,1.92607045173645,0.00177383422851563,0.0104216188192368,1.9012822508812,0.455560453236103,0.0259315967559814,1.80071365833282,0.402935519814491,-0.569512024521828,1.94985085725784,0.270766297820956,-0.221383258700371,1.87478917837143,0.305055774748325,-0.460141371935606,1.71135997772217,0.320456892251968,-0.842193126678467,1.76876884698868,0.421234052628279,-0.524044685065746,1.65571761131287,0.122209912864491,0.182592123746872,1.83078336715698,0.0696938075125217,0.0428470373153687,1.56626760959625,0.245684081106447,1.16353672742844,1.51666116714478,0.191061269491911,1.26335078477859,1.91883379220963,-0.202154088765383,0.442035645246506,1.55121266841888,-0.100261592539027,1.25393563508987,1.58446091413498,0.0394265055656433,1.14154976606369,1.81626296043396,-0.106471419334412,0.379697531461716,1.67017424106598,-0.429665521951392,0.55154475569725,1.93462789058685,-0.230024863034487,0.220747757703066,1.82450467348099,-0.759786695241928,0.223461993038654,1.7334771156311,-0.320428021252155,0.524274945259094,1.90416216850281,0.0304534868337214,0.354143537580967,1.77120584249496,0.0197948857676238,0.594449952244759,1.73477029800415,-0.310357745736837,0.550308302044868,1.875483751297,-0.34327996103093,0.285555865615606,1.48692199587822,-0.814253479242325,0.0512557625770569,1.47082898020744,-0.863179143518209,-0.176255531609058,1.88257974386215,-0.204070955514908,-0.225469579920173,1.87161612510681,-0.30928311496973,0.240460954606533,1.43051865696907,-1.11284683644772,-0.253381907939911,-0.105548709630966,-0.580687314271927,-0.80137187615037,0.324466407299042,-0.41704926546663,-0.762280017137527,1.22596928477287,-0.653482258319855,-0.905310576781631,1.21649590134621,-0.689445942640305, --0.89677113853395,1.39103516936302,-0.0790865737944841,-0.8562574647367,0.496913224458694,-0.110320838633925,-0.744702227413654,1.28484392166138,-0.215091165155172,-0.472820490598679,1.24972152709961,-0.635166853666306,-0.551405608654022,1.79918307065964,-0.424995683133602,-0.476926034316421,1.34249484539032,-0.0805384763516486,-0.817520268261433,1.25782451033592,0.312533922493458,-0.445133030414581,1.43861526250839,-0.0464224331080914,-0.422149807214737,1.63731014728546,-0.423309410456568,-0.516939111053944,1.305070489645,-0.390277909114957,-0.814358320087194,1.3338917195797,0.111802861094475,-0.844822488725185,1.37963983416557,-0.152773082256317,-0.596081241965294,1.02202714048326,-0.0395475910045207,-0.883085377514362,1.55551183223724,0.295159310102463,-0.58692954480648,0.869923800230026,0.240557631477714,-0.921985112130642,1.28716054558754,0.305204495787621,-0.774817906320095,1.2489752471447,0.23458069562912,-0.580483466386795,0.970655113458633,0.124443113803864,-0.36564964056015,1.3093698322773,-0.00316588580608368,-0.387102365493774,1.24033877253532,0.217685684561729,-0.750669106841087,0.88620250672102,0.266979977488518,-0.689539879560471,1.31558531522751,-0.500694140791893,-0.593734353780746,1.37753635644913,-0.595076953992248,-0.721827745437622,1.49277174472809,-0.411355346441269,-0.626311674714088,1.43621355295181,-0.451407819986343,-0.461802870035172,1.67604869604111,-0.608973741531372,-0.403672277927399,0.876668184995651,-0.612723223865032,-0.144597291946411,1.14650678634644,-0.260631017386913,0.0879289507865906,1.69432044029236,-0.592093586921692,-0.36652047932148,1.42901012301445,-0.602206707000732,-0.59802158176899,0.997764557600021,-0.217847801744938,-0.0198141932487488,1.02487862110138,-0.389698110055178,0.159576535224915,1.64992219209671,0.101508749648929,-0.481523439288139,1.78577369451523,-0.352172955870628,-0.105800032615662,1.22226560115814,-0.293471455574036,-0.765855923295021,1.22489100694656,-0.00639055366627872,-0.723354205489159,0.754629001021385,0.0151997162029147,-0.55293795466423,1.70074033737183, -0.0564145967364311,-0.362785696983337,1.59127652645111,0.0764265954494476,-0.133652210235596,1.67938244342804,0.182311063632369,-0.169732183218002,1.72506648302078,-0.147580871358514,-0.396618649363518,0.833537220954895,-0.341581434011459,0.0711892247200012,1.42592471837997,-0.181992098689079,-0.521589934825897,1.39114719629288,-0.130566263571382,-0.654869183897972,0.462863914959598,-0.365927330683917,-0.0420143008232117,1.80234926939011,0.0937238410115242,-0.226624011993408,1.35264495015144,0.0861126780509949,0.348388850688934,1.63188725709915,0.151389613747597,0.785786226391792,1.72996681928635,0.125814810395241,-0.367828249931335,1.76866245269775,0.0375420600175858,0.201258987188339,1.83806782960892,0.219950206577778,-0.16407510638237,1.87895530462265,0.132960379123688,-0.0544660985469818,1.64560973644257,-0.154488533735275,0.278110668063164,0.984596937894821,-0.323261678218842,0.422778189182281,0.955530405044556,0.0230503678321838,0.3995760679245,0.696795020252466,-0.538483839482069,0.654862016439438,0.854654550552368,-0.0307268276810646,0.223382472991943,1.15929394960403,0.24471016228199,0.131965100765228,0.522292852401733,0.237980525940657,-0.0770048499107361,1.12132686376572,0.0310899242758751,0.578385502099991,1.16412305831909,-0.0988916456699371,0.260975480079651,1.23744657635689,0.206042602658272,0.142080307006836,0.760573327541351,-0.036560982465744,-0.0287860631942749,1.0807814002037,0.306843943893909,0.616016328334808,1.20456305146217,0.109842345118523,0.437036335468292,1.285963088274,0.252726852893829,0.332845389842987,1.10147048532963,0.166682228446007,0.423562467098236,1.42743065953255,0.154345847666264,0.913141198456287,1.3831370472908,0.124904364347458,0.579163670539856,1.42662262916565,-0.376330580562353,0.863775540143251,1.27307456731796,-0.157443732023239,0.503590285778046,1.42476266622543,-0.0596231408417225,0.446531563997269,1.43826186656952,-0.354380998760462,0.652871325612068,1.29660665988922,0.376598201692104,0.357160747051239,1.32881984114647,0.251379629597068,0.513995230197906,0.964835584163666, -0.213172666728497,0.054518461227417,1.21730080246925,0.0299750417470932,0.320615649223328,0.722066581249237,0.0773456320166588,-0.0516181588172913,1.32596009969711,0.202798619866371,0.450503349304199,1.32766914367676,0.017332412302494,0.494344890117645,1.32549697160721,0.22644754499197,0.436214059591293,1.26956254243851,0.165053077042103,0.351795494556427,1.00901448726654,-0.241420447826385,0.152306437492371,1.1227313876152,-0.217879600822926,0.272651731967926,1.16547065973282,-0.0362953247968107,0.313991487026215,0.824809223413467,-0.300418248400092,-0.0160447359085083,1.38592648506165,0.0696912966668606,0.649093300104141,1.37996107339859,-0.0772476475685835,1.0212929546833,1.29892694950104,-0.102681871503592,0.550210148096085,1.10681124031544,0.284935034811497,0.73127593100071,1.12655214965343,0.305792709812522,0.870774082839489,0.937113502266584,-0.187887743115425,1.2510646879673,1.07570432126522,-0.355830654501915,0.921812862157822,1.00311206281185,-0.105718165636063,0.512940436601639,1.11841623485088,0.147497028112411,0.56962525844574,1.03145931661129,-0.356190130114555,0.696901082992554,1.17288237810135,0.138755137100816,0.645896434783936,0.945133527740836,-0.117448609322309,0.753583714365959,0.687616181894555,-0.16861529275775,0.251922965049744,0.993926748873491,-0.0364023968577385,0.894680425524712,0.803580075502396,0.0371933598071337,0.876991137862206,0.803796967491508,-0.598142057657242,0.6325743496418,0.675937741994858,-0.444893004372716,0.814588278532028,0.976020599715412,-0.0404109917581081,0.814398005604744,0.73468005657196,-0.42830416187644,0.347533822059631,1.35749247670174,0.355820246040821,0.944965295493603,1.36647433042526,-0.013879269361496,0.851849779486656,1.32698404788971,-0.0483450703322887,0.787966310977936,1.36249634623528,-0.0506377499550581,0.774818927049637,1.36340749263763,0.0087469294667244,1.04664359241724,1.36234745383263,0.0248398035764694,0.907651083543897,1.39258828759193,-0.151987794786692,0.85510041937232,1.20459145307541,-0.547803677618504,1.13503706455231,1.53581172227859,-1.1514778137207, --0.318151824176311,1.65065997838974,-0.726897060871124,-0.436478868126869,1.84904426336288,-0.577982157468796,-0.254676615819335,1.91321957111359,0.0675471276044846,-0.360178351402283,1.65123927593231,-0.6173913218081,-0.472443886101246,0.688986212015152,-0.823947012424469,-0.62076735496521,0.567611396312714,-0.26258560270071,-0.449685513973236,1.89071804285049,0.0114145129919052,0.00350624322891235,1.59408193826675,-0.012716680765152,0.464403867721558,1.3461993932724,0.528389543294907,1.00575324892998,1.55590695142746,0.192903593182564,1.22030729055405,0.751329630613327,0.413649968802929,-1.2005490064621,0.797504529356956,-0.127005502581596,-1.1294481754303,1.53247475624084,0.413023054599762,-0.870974957942963,1.62943947315216,0.162021175026894,-1.0152342915535,1.2360071092844,0.0242011472582817,-1.08616668730974,1.92105561494827,0.306649587699212,-0.283220045268536,1.57709103822708,0.172072350978851,-1.05881249904633,0.721711054444313,0.590898290276527,-0.372089564800262,0.813421845436096,0.358795635402203,-1.10536526143551,1.1705470085144,-0.00739461928606033,-1.25262492895126,1.67243272066116,0.955744653940201,-0.246855735778809,1.78753352165222,0.20544717926532,0.283141225576401,1.71897524595261,0.125465214252472,0.939046263694763,1.02280359715223,1.00050565600395,-0.807630237191916,1.10386410355568,0.401561945676804,-1.02535853534937,1.46861726045609,1.21784535050392,-0.0519144795835018,1.86455726623535,0.516755871474743,-0.326332047581673,1.78728419542313,0.249231666326523,0.70030514895916,0.688400328159332,0.909292370080948,-0.0489234328269958,0.859544664621353,0.165223315358162,-0.158844888210297,1.72875273227692,0.0615035071969032,-0.183768272399902,1.2873432636261,1.22352203726768,0.343764904886484,1.79103285074234,0.53208202123642,0.314982265233994,1.78313285112381,0.130931979045272,0.876584708690643,1.20584686100483,0.950938545167446,-0.23951667547226,1.42176127433777,0.600102961063385,-0.295136958360672,1.8936715722084,0.249202311038971,0.322522734757513,1.29690408706665,1.31963521242142,0.436742343008518, -1.62438732385635,0.651559874415398,0.563461307436228,1.51346075534821,0.236226700246334,1.06090486049652,1.23649382591248,1.16266006231308,0.0750444233417511,1.40878140926361,0.648182660341263,-0.0079658031463623,1.38480839133263,0.41662784665823,0.684937439858913,1.37013325095177,0.969653934240341,0.379293516278267,1.8627445101738,0.306742444634438,0.386463232338428,0.571044921875,0.0314972065389156,1.39501541852951,0.72337295114994,-0.0337509057862917,1.47230261564255,0.699273109436035,0.153471283614635,1.48345020413399,0.0573427677154541,0.0224369317293167,1.05742138624191,-0.0823995471000671,0.0162046290934086,0.814425617456436,0.0163770318031311,0.161145359277725,1.03138962388039,-0.0704935789108276,-0.0231626853346825,0.551354810595512,-0.026358425617218,0.0237425155937672,0.0631731748580933,-0.103690207004547,-0.0658670933917165,0.393324572592974,-0.0821288228034973,-0.0658220909535885,0.336027145385742,0.729245960712433,0.481962729245424,1.22737300395966,0.465925008058548,0.122807085514069,1.28774285316467,0.550484180450439,0.0206425562500954,1.32940462231636,0.581795394420624,0.143655870109797,1.28307402133942,0.664901226758957,0.1171535551548,1.35838970541954,0.385775983333588,-0.0415047872811556,1.25332885980606,0.351487159729004,0.143868289887905,1.25308269262314,0.871873639523983,0.741378683596849,0.998831421136856,0.84878072142601,0.817086264491081,0.953617453575134,0.83813039958477,0.808679915033281,1.01841878890991,0.444348633289337,0.836225651204586,0.56008517742157,0.0766724944114685,0.303576253354549,0.889667332172394,-0.327205896377563,0.230773262679577,1.06134867668152,-0.299450218677521,0.574845030903816,0.682459615170956,-0.251980423927307,0.385767000727355,1.05400970578194,-0.185588359832764,-0.0495078591629863,1.22829818725586,-0.188382029533386,0.188604323193431,1.1602229475975,0.256953328847885,0.760293830186129,1.17909348011017,0.276047825813293,1.06368139386177,0.876518726348877,-0.164850950241089,0.448504466563463,0.87120409309864,-0.311810314655304,0.101593931205571,0.821942217648029, --0.308125972747803,0.333362743258476,0.669957354664803,-0.201722323894501,0.331137046217918,0.841219812631607,-0.30920398235321,0.0450001349672675,0.872892901301384,-0.325043976306915,0.285037624649704,0.867653243243694,0.041186511516571,0.725873067975044,1.0050528049469,-0.144442021846771,0.0447970917448401,0.665764719247818,-0.0689182281494141,0.429419948719442,0.610817231237888,-0.203818619251251,-0.0912688095122576,0.807604745030403,0.708848938345909,0.957490103319287,0.66878442466259,0.718683332204819,0.759387030266225,1.18928813934326,0.668933063745499,0.88483202457428,0.987084746360779,0.688205853104591,0.434927210211754,1.39676719903946,0.447359472513199,0.0388784408569336,1.55133670568466,0.444952182471752,-0.727170672267675,0.701436370611191,0.482837714254856,-0.539619714021683,0.564758986234665,0.80277281999588,-0.0956397652626038,0.649007081985474,0.490433722734451,0.0202175974845886,0.631159782409668,-0.069568932056427,-0.783566512167454,0.359000355005264,0.3586335927248,-0.852240968495607,0.99767098762095,0.394017279148102,-0.24500348418951,1.04565744102001,0.505509376525879,-0.245574034750462,0.584019899368286,0.394977748394012,-0.301990918815136,0.526280879974365,0.555142551660538,-0.305488005280495,1.13071148097515,0.814253091812134,0.02654451970011,1.21822844445705,0.499687403440475,0.833859093487263,0.172681391239166,0.207937717437744,0.0860516726970673,0.36566960811615,0.0835193395614624,-0.182168014347553,0.230513453483582,0.15228134393692,0.417419649660587,0.19414296746254,0.284348845481873,0.432606652379036,0.440709829330444,0.522132158279419,0.949314206838608,0.407532811164856,-0.0187800526618958,0.666541695594788,-0.23370748385787,0.564691603183746,0.103599175810814,0.729100346565247,0.31306916475296,0.431559629738331,0.376985281705856,0.510995507240295,0.30323414131999,1.07858656346798,-0.073691189289093,0.372098457068205,0.332572117447853,0.247889518737793,0.352401500567794,0.475153267383575,0.533548980951309,0.0856984644196928,0.596339136362076,0.48723292350769,1.24109455943108,-0.219664238393307, -0.012925922870636,0.714441478252411,0.363677442073822,-0.150942921638489,0.493727669119835,0.182198710739613,-0.107733011245728,0.777372628450394,-0.679004460573196,-0.0142504572868347,0.679476857185364,-0.227699637413025,0.581241458654404,1.13919320702553,0.214594781398773,-0.0563105940818787,0.97877237200737,-0.11771659553051,-0.108396232128143,0.56122225522995,0.117428660392761,0.151193678379059,0.684477239847183,0.524950720369816,0.168780028820038,0.671405166387558,0.975679308176041,-0.079550564289093,0.0117095806635916,0.427792526781559,0.0708513259887695,-0.0863255709409714,0.340647394768894,0.0412774085998535,0.174347929656506,0.416823714971542,-0.00729471445083618,0.330954790115356,-0.181359820067883,0.591375678777695,0.936980508267879,0.132173384539783,0.120704114437103,0.488577581942081,0.134940288960934,-0.0404625535011292,0.324306778609753,0.169996060431004,0.0775210857391357,0.705461055040359,0.00578208640217781,-0.160027384757996,0.396406717598438,0.385207764804363,-0.115424752235413,0.229931756854057,0.273572005331516,-0.0397088527679443,0.200772598385811,0.144419495016336,0.360930562019348,0.877741724252701,1.0679669380188,-0.119677901268005,0.501437354832888,1.15747648477554,0.65720009803772,-0.0237952740862966,0.987643294036388,0.382170736789703,0.0708739385008812,0.828739449381828,0.471812039613724,-0.183817390352488,0.901585780084133,0.119954943656921,-0.181854258291423,0.542158141732216,0.514554679393768,0.0303914770483971,0.945309698581696,0.691986739635468,-0.174670033156872,0.989449456334114,0.470973789691925,-0.0661039650440216,0.930600054562092,0.441634654998779,-0.0394846759736538,0.902388244867325,0.540439695119858,0.0653267372399569,1.08163937926292,0.642189472913742,0.676257509738207,0.805153355002403,0.693066537380219,0.688404493499547,0.815265730023384,0.523121327161789,0.135708514600992,1.0124694108963,0.555957913398743,0.20243152230978,0.972133450210094,0.88372041285038,0.623044312000275,0.92670838534832,0.938923165202141,0.663091085851192,0.775588385760784,0.8004380017519,0.00912458077073097, -1.1279444694519,0.818289756774902,0.170125268399715,0.929830309003592,0.623762935400009,-0.110131211578846,0.870061784982681,0.604408144950867,0.204586673527956,1.03404647111893,0.801474541425705,0.507679302245378,1.00944386422634,0.257343471050262,0.137608928605914,0.614756803959608,0.732594460248947,-0.0811557790730149,0.942446228116751,0.429844200611115,0.3444589599967,1.25184562802315,0.649007618427277,0.238264039158821,1.36483377218246,0.0811614990234375,-0.00384399574249983,1.09788966178894,0.335910201072693,-0.0606972179375589,1.30342954397202,0.639198899269104,0.0232388339936733,1.32399213314056,-0.0149003267288208,-0.0317486966960132,0.906879425048828,-0.110943496227264,-0.00174367427825928,0.443259114399552,-0.0264505743980408,0.0551880914717913,0.670103400945663,0.355757534503937,0.758894967380911,0.834260791540146,0.374245941638947,0.655233897268772,0.837467342615128,-0.0829628705978394,0.133871527854353,0.682644873857498,-0.0514835119247437,0.194695484824479,0.808770000934601,0.488493800163269,0.630046635866165,0.990041643381119,0.0821364521980286,0.243825094774365,0.754080086946487,0.178179085254669,0.358333915472031,0.941275417804718,0.108712017536163,-0.0521758683025837,0.966604709625244,0.15271520614624,0.192459505051374,0.732054844498634,0.493721604347229,0.792570501565933,0.843735933303833,-0.00331825017929077,0.382606281898916,0.584682002663612,0.00772947072982788,-0.0679565016180277,0.903191298246384,0.0630080103874207,0.318081744015217,0.746470391750336,-0.0818446278572083,0.334328308701515,-0.18964010477066,-0.259087920188904,-0.0406114710494876,-0.507421880960464,-0.0958176851272583,0.052771769464016,-0.178482294082642,-0.0479025840759277,0.165823616087437,-0.043325275182724,-0.0433600544929504,0.044161781668663,-0.168010175228119,-0.260628938674927,0.0294538307934999,-0.782109692692757,-0.154712975025177,0.196512324735522,-0.421102657914162,0.281554162502289,0.915660783648491,-0.621611386537552,0.380602538585663,0.553599923849106,-0.217196486890316,-0.328560173511505,-0.238211644347757,-0.716837417334318, --0.257261157035828,0.181278356350958,-0.641535826027393,0.140454351902008,0.537964597344398,-0.377076119184494,-0.237046539783478,0.00965404510498047,-0.346381992101669,-0.0399124026298523,0.478038176894188,-0.110405564308167,-0.12622731924057,0.124493062496185,-0.266607999801636,-0.00144016742706299,0.274218276143074,-0.01811483502388,-0.040376603603363,0.397695519030094,0.0764736831188202,0.0490396022796631,0.261494617909193,0.242307618260384,-0.125146329402924,0.135747350752354,-0.25469097495079,-0.0524778366088867,0.31299052387476,0.0477461218833923,-0.142561793327332,0.424989894032478,-0.0639037787914276,0.399426281452179,0.985701322555542,0.538812400773168,0.0107405781745911,1.082390666008,-0.0276532117277384,0.051356315612793,1.10032680630684,-0.143643375486135,0.00992625951766968,0.680239766836166,0.144715996459126,0.0633538365364075,0.834159702062607,0.171520136296749,-0.0330420732498169,0.997608810663223,0.237090460956097,-0.147753715515137,0.434154719114304,0.0153942368924618,0.696979522705078,0.979407042264938,0.832087893038988,0.470328539609909,0.572914607822895,1.01832727342844,0.632716864347458,0.362132899463177,1.01063666492701,0.551617562770844,0.325568951666355,0.886875461786985,0.605108320713043,0.305225854739547,0.714594528079033,0.516866624355316,0.338734075427055,0.736200511455536,0.368469834327698,0.575774300843477,0.828068811446428,0.587738424539566,0.44203220307827,0.888872694224119,0.806431546807289,0.0396889010444283,1.06020737439394,0.626989901065826,0.0712647549808025,0.998284317553043,0.182555973529816,-0.0675185183063149,0.63705700263381,0.300867021083832,0.0671730432659388,0.775353860110044,0.412270784378052,0.0364231588318944,0.889823921024799,0.407186329364777,0.0933191394433379,0.860082719475031,0.399365305900574,0.0460610399022698,0.859365176409483,0.469375669956207,0.119424127973616,0.900888569653034,0.528275936841965,0.152651228941977,0.929696567356586,0.75975789129734,0.0781210996210575,1.00578220561147,-0.00038832426071167,0.0147827919572592,0.0366087597794831,0.156263053417206, --0.0383975734002888,0.584107831120491,0.130357325077057,0.0210095886141062,0.525640033185482,0.00559788942337036,0.0891341883689165,0.0213602632284164,0.193111538887024,0.0777847431600094,0.637315448373556,0.230325698852539,0.136246274691075,0.67000450193882,0.447824656963348,0.076159686781466,0.892495222389698,0.223433017730713,0.0379861476831138,0.67629899084568,0.102572083473206,0.0757880434393883,-0.390804011374712,0.0188530683517456,0.033193183131516,-0.148329760879278,0.0631003379821777,-0.0288830944336951,0.398403987288475,0.0445347428321838,-0.0448822639882565,0.348745610564947,0.200872778892517,0.00683235097676516,0.663678672164679,0.152632474899292,-0.044054489582777,0.57607264444232,0.279596865177155,0.0756869614124298,0.806459382176399,0.538905113935471,-0.0468698963522911,0.927941329777241,0.138838589191437,-0.00536786764860153,-0.47095787525177,0.0291935801506042,0.000774599611759186,0.444271191954613,0.00567179918289185,-0.142108300700784,0.162399791181087,0.00595033168792725,0.0293859373778105,-0.0420274138450623,0.0130259990692139,-0.0967321675270796,0.413219377398491,-0.00843942165374756,0.0248674303293228,0.223139554262161,0.0161646604537964,-0.20150338858366,0.256739363074303,0.0565828084945679,-0.288779571652412,0.462302938103676,-0.0130654573440552,-0.0465164184570313,0.0200507938861847,0.0110371708869934,-0.206075079739094,-0.040692463517189,-0.00548934936523438,-0.205870792269707,0.204105846583843,-0.00820720195770264,-0.239211723208427,0.212636563926935,-0.046333372592926,-0.183011393994093,0.489532813429832,-0.0198727250099182,-0.294046379625797,0.489667236804962,-0.0808365345001221,0.471391394734383,0.604393035173416,0.00151562690734863,0.290407687425613,0.606976687908173,0.652824074029922,0.00621411204338074,1.04287469387054,0.438637435436249,0.704330638051033,0.471901640295982,0.12930029630661,0.686412960290909,0.701593339443207,0.0499045848846436,0.755306631326675,0.317303501069546,0.170554935932159,0.360294756479561,0.479114200919867,0.450433969497681,0.242467269301414,0.896494626998901, --0.715470894880127,-0.0207322048954666,1.69906282424927,-1.18335139751434,0.473240859806538,1.43801057338715,-1.27456015348434,0.184091728180647,1.52878540754318,-0.48543012648588,0.594707183539867,1.69173574447632,-0.531296953267884,0.100479220971465,1.83933520317078,-0.672075120033696,0.268076121807098,1.30846786499023,-1.46983605623245,-0.200388699769974,1.03289502859116,-1.11911404132843,0.728842027485371,1.1988713145256,-1.36985272169113,0.357928939163685,1.31746917963028,-1.11145222187042,0.34169727563858,0.413717448711395,-1.04449531435966,-0.201697945594788,0.39029723405838,-0.635916993021965,0.717203743755817,1.41122508049011,-1.01877179741859,0.405802495777607,1.56918269395828,-1.18246549367905,0.722736593335867,0.247741281986237,-1.42019045352936,0.156792633235455,0.219640851020813,-0.588925555348396,0.83621884137392,1.13097946345806,-0.53230881690979,0.543151721358299,1.17591165006161,-0.141328662633896,0.892683409154415,0.6355339884758,-0.562221556901932,0.751352578401566,0.597260594367981,-0.15302100777626,1.19660285115242,1.09454371035099,-0.545269429683685,0.535586550831795,1.1393503844738,-0.217180863022804,1.18769428133965,0.733014672994614,-0.625588893890381,0.753941833972931,0.65602433681488,-0.144410133361816,1.0641114115715,0.9732785243541,-0.567096531391144,0.413280885666609,1.04437383264303,0.372286593541503,1.09521648287773,1.03033689409494,0.436824411619455,0.836339391767979,1.34760400652885,0.320744003402069,0.888386210426688,1.33984032273293,0.381146879866719,1.0893414914608,1.0735090970993,0.226619765162468,1.14759692549706,1.25838959217072,0.354596465826035,0.825019218027592,1.31075185537338,0.397495996206999,0.939143218100071,0.968108966946602,-0.188668058544863,0.972940165549517,1.347286850214,-0.729329347610474,1.03170343488455,1.17570689320564,0.0279355347156525,1.09130495786667,1.17236585915089,-0.299312349307002,0.804353717714548,1.58632057905197,-0.544478848576546,0.971017979085445,1.37255001068115,-0.256778345734347,1.02102442458272,0.973516983911395,-0.165550415811595,0.870565764605999, -1.56289291381836,-0.993223667144775,0.845824237912893,1.27210688591003,-0.097641047090292,1.17688725888729,1.12180544435978,-0.512742847204208,1.04211938381195,1.3761490881443,-0.620743185281754,0.935031019151211,1.41650146245956,-0.197358404286206,1.19845469295979,1.01483767479658,0.194088160991669,1.01103117316961,1.27044090628624,0.125442832708359,1.00415061414242,1.22750568389893,0.558544456958771,1.21374467015266,1.2009482383728,0.0976521670818329,1.17577767372131,1.27041977643967,0.306032486259937,0.947195135056973,1.43531262874603,0.149706855416298,1.23008894920349,0.608246594667435,0.10452888906002,1.2551437318325,1.0464989989996,0.0443711876869202,1.04426466673613,0.959328424185514,0.62225662637502,1.07072997838259,0.83778015896678,0.727589026093483,0.985615905374289,0.657173454761505,0.613056495785713,1.24268460273743,0.801353067159653,0.531592498533428,1.28704315423965,0.937521532177925,0.136054128408432,1.18895235657692,1.28124243021011,0.152266129851341,1.02372175455093,1.18070206046104,0.693338669836521,0.924394138157368,1.30557471513748,0.368220388889313,1.25128757953644,1.05861580371857,0.492746405303478,0.891799934208393,1.35004276037216,0.326319042593241,1.07309383153915,0.824777856469154,0.336560357362032,0.832534775137901,0.838183261454105,0.540099367499352,0.771184310317039,0.55890879034996,0.937702880473807,0.765464559197426,0.297230783849955,0.914298440162383,1.03412371501327,0.472628898918629,0.591410962864757,1.0716100409627,0.809659505262971,0.706413578242064,0.784291610121727,0.830851912498474,0.649644695222378,1.20067000389099,1.09684014320374,0.60952652618289,1.15131014585495,0.941128015518188,0.512955665588379,0.843999773263931,1.3363134264946,0.341063406318426,0.936146568506956,1.02401416003704,0.676479808986187,1.02120721340179,1.29691278934479,0.310880206525326,0.995128266513348,0.550220996141434,0.3897276497446,0.940377980470657,0.830242276191711,0.311585113406181,0.854192823171616,0.504156649112701,0.592887323349714,1.25122034549713,0.886881239712238,0.507288254797459,1.25642722845078, -0.923089027404785,0.551224388182163,1.48515602946281,0.806829541921616,0.719519907608628,1.48430523276329,0.529732193797827,0.454119123518467,1.24646782875061,1.04193027317524,0.438769966363907,1.22308984398842,0.945783481001854,0.363036159425974,1.3741999566555,1.15605288743973,0.368762500584126,1.48369655013084,0.800418928265572,0.488668059930205,1.43196418881416,1.07157251238823,0.232567995786667,1.27630439400673,0.923275917768478,0.328396826982498,1.24982857704163,0.568259015679359,0.795947742648423,1.26675993204117,0.766781702637672,0.78490548953414,1.47374925017357,0.625015735626221,0.498523358255625,1.47092768549919,0.931257918477058,0.509445066563785,1.29297226667404,0.883517004549503,-0.169689882546663,0.973447176162153,1.23569294810295,-0.0323542570695281,1.03753139451146,1.09986863285303,0.180814489722252,1.11883047223091,1.35226398706436,-0.0230482667684555,1.10966491699219,1.14072887599468,0.459627255797386,1.00202928483486,1.24729543924332,0.645860727876425,0.928131863474846,0.610674418509007,-0.177314382046461,1.00283387536183,1.018869234249,-0.0340477600693703,1.10996180772781,0.847372025251389,-0.120789093431085,0.991506608668715,1.15350185334682,0.728491369634867,0.933432504534721,0.787751670926809,0.666007071733475,0.773555129766464,0.8691436201334,-0.188123513944447,0.875536471605301,0.894299559295177,-0.159998595714569,0.862933307886124,0.935605518519878,-0.0288218641653657,1.04071636870503,0.935741454362869,-0.118702107109129,1.00369575852528,1.03440712019801,-0.312594816088676,0.811237007379532,1.31310218572617,0.350183449685574,1.07003668695688,0.965052433311939,0.544902347028255,0.957285806536674,0.510703861713409,0.39915793389082,1.26555329561234,0.974915236234665,0.192971333861351,0.639504998922348,-0.0389863252639771,0.325986355543137,0.990100659430027,0.487028419971466,0.572639748454094,1.18824511766434,0.485766112804413,0.518339857459068,1.19189789891243,0.47557744383812,0.873410075902939,1.02240434288979,0.828586596995592,0.636268854141235,1.06514076888561,0.667064979672432,0.618788182735443, -0.996288537979126,0.687748432159424,0.796188443899155,0.96749772131443,1.07240954786539,0.141079820692539,1.14474672079086,0.442350894212723,0.0314747989177704,0.871544063091278,0.365956604480743,0.558603748679161,0.998286359012127,0.588913977146149,0.465901803225279,1.09511862695217,0.505750834941864,0.579220086336136,1.11202909052372,0.891126044094563,0.432243853807449,1.13936527073383,0.72024305164814,0.569967314600945,1.09105031192303,0.524804085493088,1.02724426984787,0.941425666213036,0.97929185628891,0.136020205914974,1.02454102039337,0.554304420948029,0.0267487466335297,0.949222952127457,0.323407769203186,0.497306331992149,1.24032229185104,0.832263335585594,0.357151910662651,1.16567774116993,0.747646346688271,0.412610359489918,1.03066056966782,1.24972206354141,0.671057373285294,1.08702604472637,0.938784196972847,0.707681447267532,1.04524972289801,1.09821727871895,0.46690408885479,0.969735393300653,0.78924036026001,0.500023871660233,1.05907102674246,0.570645779371262,0.565559526905417,1.06140658259392,0.905055485665798,0.538331739604473,0.79192279279232,0.861127568408847,0.687481641769409,0.854740545153618,1.0939679145813,0.637968637049198,1.02687072008848,0.927856244146824,0.689614623785019,1.00981091242284,0.811147090047598,0.663088664412498,1.11791279911995,1.26232302188873,0.435733295977116,1.23070111870766,0.757766626775265,0.475409470498562,0.926430575549603,0.370668649673462,0.361449003219604,1.24168793857098,0.954978972673416,0.377637840807438,1.24898201227188,0.972405523061752,0.536533418111503,1.0419748686254,1.01410475373268,0.600885577499866,1.06832096725702,0.815260738134384,0.906640651635826,1.02702262066305,0.462546611204743,0.894706476479769,1.15997651219368,0.861231297254562,0.61487041041255,1.28673133254051,0.751895321765915,0.410012494772673,1.26646974682808,0.570771604776382,0.393373716622591,1.08260510116816,1.04362766444683,0.666604416095652,1.05419562011957,0.935658007860184,0.659163884818554,1.25640615820885,0.987857326865196,0.649844000115991,1.06750962883234,0.847018286585808,0.526261672377586, -1.08565203100443,1.00444619357586,0.549326330423355,0.734469711780548,1.28504100441933,0.73352300748229,0.802601590752602,0.712529573589563,0.960460465401411,0.765315011143684,0.193936139345169,0.845828339457512,1.02394040487707,0.49992574006319,0.6572544882074,1.06293157488108,0.88434337079525,0.762659914791584,0.800341442227364,0.667691580951214,0.765337118878961,1.23075856268406,0.529988542199135,0.68964546918869,0.997781373560429,1.25495347380638,0.711761355400085,1.37537330389023,0.857437238097191,0.942033782601357,0.473667100071907,-0.566378861665726,0.246969372034073,0.186474904417992,1.80398380756378,0.180058568716049,-0.0661267042160034,1.76743084192276,-0.391782611608505,0.796994090080261,0.974476456642151,-0.20359879732132,0.997589230537415,0.804935202002525,-0.327237188816071,0.779581487178802,0.824723117053509,-0.485779136419296,0.556926563382149,0.877340495586395,-0.513781666755676,0.517282322049141,0.97509591281414,-0.327501475811005,0.455021858215332,1.10088151693344,0.0443229079246521,0.36913837492466,1.09864413738251,-0.0940499305725098,0.437085021287203,0.828057855367661,-0.200942575931549,0.59822116792202,1.28569722175598,-0.209067523479462,0.402386471629143,1.33564919233322,0.262841284275055,0.533030405640602,1.3904801607132,0.385425090789795,0.418110504746437,1.20635911822319,0.373559206724167,0.249457329511642,1.54445135593414,1.08423739671707,-0.0427224189043045,-0.574242204427719,0.706173305865377,0.176829513162374,-0.296075165271759,0.59029957652092,-0.332200646400452,-0.232300937175751,0.406707227230072,-0.086718175560236,1.60328334569931,0.302520588040352,-0.240722008980811,0.157644510269165,0.42473229765892,-0.257286421954632,0.0625402927398682,1.08737802505493,-0.0393229126930237,0.503989160060883,-0.126418221043423,0.0869241431355476,-0.0208954811096191,0.888761579990387,-0.17022716999054,0.00313067436218262,1.06818133592606,-0.232513285707682,0.126440405845642,0.714820042252541,-0.278700240887702,0.743865296244621,-0.232179209589958,0.0453146398067474,-0.00955981016159058,0.330125883221626, --0.566962250508368,0.366114854812622,1.32147413492203,-0.377202115487307,0.544703334569931,1.39451766014099,-0.612223237752914,0.967332482337952,0.120188906788826,-0.307223945856094,0.0248538851737976,0.912916854023933,-0.641717657446861,0.447404742240906,1.12154644727707,-0.225951068103313,0.775357589125633,0.692243114113808,-0.381553300656378,1.13826385140419,0.202539250254631,-0.28649839758873,0.0473060607910156,1.48175936937332,-0.420302574522793,0.0955170392990112,1.73235386610031,-0.272875159978867,0.346160173416138,1.62958377599716,-0.242365822196007,0.971135318279266,1.50366693735123,-0.0257961601018906,-0.0645906925201416,1.65211963653564,-0.423325245268643,0.476522073149681,1.71008843183517,-0.10151007771492,0.62518753297627,1.55250453948975,-0.308662697672844,1.01324516534805,1.47382092475891,-0.156564678996801,0.0589717626571655,1.39591616392136,-0.145542293787003,0.581547304987907,1.68148511648178,0.0088459849357605,0.655867043416947,1.66300231218338,-0.37995083630085,1.0239973962307,1.57617473602295,-0.443602129817009,1.02780976891518,-0.272179305553436,0.17728179693222,0.792332634329796,-0.208351910114288,0.212488602846861,0.361296236515045,-0.195788025856018,-0.201278068125248,0.829510539770126,-0.176499843597412,-0.119312109425664,0.339029341936111,-0.438004016876221,0.157986782491207,1.08076164126396,-0.510432243347168,0.198893737047911,0.42578250169754,-0.719800919294357,0.353082304820418,1.50826025009155,-0.659381985664368,0.572500918060541,0.407432377338409,-0.428999781608582,0.25118525326252,1.51301109790802,0.0716357827186584,0.393656566739082,1.50879883766174,-0.713371187448502,0.335506372153759,1.51579785346985,-0.352725297212601,0.44545429199934,1.81482857465744,-0.138454735279083,0.88691782951355,0.910553157329559,-0.223801821470261,0.878560036420822,0.924176268279552,-0.857492968440056,0.865602716803551,1.06339723616838,-0.555607855319977,0.922018021345139,0.991789117455482,-0.535588383674622,1.13480567932129,0.899562351405621,-0.750144869089127,0.922708660364151,1.00954462587833,-0.898762628436089, -0.705962643027306,1.34104064106941,0.0630924105644226,0.546663416782394,0.747610598802567,0.0629082918167114,0.441690958105028,0.773201644420624,0.11304783821106,0.599795527756214,0.905876964330673,0.109143257141113,0.590901382267475,0.910100817680359,0.061413049697876,0.414761139312759,0.930830329656601,0.283676862716675,0.756981335580349,1.06908339262009,0.216968774795532,0.73506485670805,1.0217818915844,0.21363240480423,0.601352049969137,1.030676394701,0.618266075849533,0.843628540635109,0.933457970619202,0.59149831533432,0.81865282356739,0.449268043041229,0.545987963676453,1.01906594634056,0.683833531104028,0.560712873935699,1.10939672589302,1.03085917234421,0.447447270154953,1.14749777317047,1.17677539587021,0.528826236724854,0.84035749733448,1.25933086872101,0.132708370685577,0.588120356202126,0.671741932630539,0.204048573970795,0.854302063584328,0.307199943810701,0.343910574913025,1.05944748222828,0.707130029797554,0.0862219333648682,0.478711545467377,0.59189111739397,0.194829225540161,0.451254531741142,0.290325798094273,0.129954099655151,0.411680355668068,-0.125350281596184,0.161012351512909,0.719452992081642,-0.088697075843811,0.136298418045044,0.737740889191628,0.450793325901031,0.207688212394714,0.318376645445824,0.624239087104797,0.127683520317078,0.846349745988846,0.723443210124969,0.191935658454895,0.762241572141647,0.63533079624176,0.213625431060791,0.550025818869472,0.879539549350739,0.11916971206665,0.522999541833997,0.944601684808731,0.438292801380157,0.829232797026634,1.02361968159676,0.405659258365631,0.616050563752651,0.981771439313889,0.493774831295013,0.638631222769618,1.06408241391182,0.580613642930984,0.966723054647446,1.03385874629021,0.484682828187943,0.935402363538742,1.22307628393173,0.459263235330582,1.26152098178864,1.00511008501053,0.540419459342957,1.21265989542007,0.768391683697701,0.525228507816792,1.28913670778275,1.18503379821777,0.658549539744854,1.44394332170486,0.836448848247528,0.57272631675005,1.44204562902451,1.00498908758163,0.636569492518902,1.31286996603012,1.01720136404037, -0.744433857500553,1.29762294888496,0.84804892539978,0.823850184679031,1.24086502194405,0.512565336190164,0.735887169837952,1.40997982025146,0.578362360596657,0.633393459022045,1.49997562170029,0.726047158241272,0.725643366575241,1.31793329119682,0.808716088533401,0.0163927152752876,0.956421859562397,1.2988885641098,0.484869562089443,1.02986346185207,1.15267458558083,0.459257446229458,1.28689053654671,1.02323204278946,0.175626792013645,1.1678092032671,1.21280199289322,0.694261163473129,1.20530571043491,0.744700953364372,0.734647050499916,1.01908033341169,0.783146232366562,-0.0102516412734985,0.992634542286396,1.12560461461544,0.156657814979553,1.19170577824116,1.09725217521191,-0.0155015736818314,1.00060594826937,0.969879861921072,0.710322678089142,1.04554974287748,0.606124028563499,0.762631550431252,-0.228037402033806,-0.127166867256165,0.278774127364159,-0.251888357102871,0.0409068465232849,-0.0806576162576675,0.504840359091759,1.66986960172653,0.720924541354179,0.769250128418207,1.00147369503975,0.716839119791985,0.629387859255075,1.17549216747284,0.919417372962926,-0.0369231700897217,-0.607786595821381,0.558883428573608,-0.118913017213345,-0.528307944536209,0.936791630592779,-0.0185791924595833,-0.651646673679352,0.372181475162506,-0.0238330774009228,-0.477322071790695,0.634101629257202,-0.00707738380879164,-0.55974879860878,0.695746738983871,1.22909986972809,0.408909648656845,0.442675232887268,1.14991475641727,0.378830432891846,0.244854167103767,0.935344517230988,1.67307275533676,0.388452067738399,1.37714344263077,1.18181905150414,0.406666129827499,0.385185196995735,1.62745994329453,0.892910341688548,0.173817499540746,1.41177746653557,0.439313769340515,0.31991202943027,1.38963806629181,0.110264867544174,0.652036160230637,1.77628260850906,0.209602326154709,0.996355891227722,1.62263530492783,0.70951572060585,1.12375751137733,1.08213716745377,0.707091994583607,0.973956719040871,1.20223063230515,0.152702450752258,1.02323766052723,1.50774854421616,0.448520913720131,1.12881568074226,1.34505182504654,0.248540818691254, -1.27933394908905,1.34473782777786,0.230651006102562,1.20375573635101,1.40445816516876,0.120444387197495,1.05122442543507,1.4570295214653,0.544865101575851,1.09622877836227,1.20077776908875,0.641489297151566,1.08335202932358,1.02914601564407,0.764244392514229,0.744340747594833,0.8601895570755,0.726577475667,0.835462529212236,0.810060799121857,0.632058754563332,1.09776282310486,1.00062853097916,0.695345312356949,1.13341209292412,0.722155421972275,0.729066804051399,0.840022176504135,0.626785039901733,0.66700279712677,0.925007843412459,0.786756455898285,0.647460609674454,1.05292698740959,0.76319631934166,0.628618836402893,1.07602970302105,0.629331864416599,0.643347129225731,0.949220323003829,0.660627946257591,0.609380662441254,1.09373443573713,0.507511598989367,0.606678813695908,1.0954349860549,0.596849076449871,0.638454958796501,0.945389553904533,0.61841494590044,0.748660862445831,1.0893736705184,0.155912855640054,0.77326937019825,1.01602242141962,0.224814347922802,0.752690121531487,-0.0185385644435883,-0.966090060770512,1.05085023492575,0.994696348905563,0.922226712107658,1.31785747408867,-0.0620433017611504,-0.649480640888214,1.49452412128448,0.235623553395271,-0.614027217030525,1.25971084833145,0.122725846711546,-0.781026661396027,1.20762431621552,1.04306402057409,-0.0390657484531403,1.06244871020317,0.280911684036255,1.02941189706326,0.964131467277184,0.682693660259247,0.519383564591408,1.25815859436989,-0.0354150235652924,0.798710405826569,1.36390721797943,0.077078215777874,0.805342070758343,1.23403698205948,0.368946485221386,1.11095869541168,1.14941941201687,0.391388654708862,0.888897404074669,1.16414324939251,0.949482440948486,0.836948648095131,1.12975449860096,0.921509578824043,0.981075286865234,1.09633646905422,1.19795024394989,0.720619201660156,1.09086990356445,1.17992126941681,0.494538471102715,1.15368720889091,0.990119829773903,0.892843544483185,1.10354982316494,0.96549317240715,1.02031403779984,1.06759226322174,1.24351865053177,0.904789596796036,1.12234348058701,1.23880660533905,0.658920049667358,1.16873291134834, -1.27117413282394,0.587941467761993,1.08483159542084,1.25678312778473,0.876468867063522,1.19337663054466,1.15849950909615,0.751078903675079,1.22168883681297,1.1325463950634,0.688034877181053,1.26090759038925,1.19895794987679,0.288288466632366,1.18888542056084,1.35638380050659,0.389708906412125,1.23729109764099,1.20289769768715,0.523906752467155,1.25350990891457,1.05030378699303,0.56098935008049,1.16307324171066,0.829110316932201,0.650867998600006,1.15924409031868,0.817834109067917,0.704619869589806,1.23786160349846,1.09633019566536,0.292053434997797,1.16507804393768,0.984450723975897,0.586339496076107,1.12809133529663,0.846409060060978,0.594274088740349,1.11971256136894,0.852045170962811,0.524750862270594,0.536921292543411,0.942133583128452,1.24819424748421,-0.10873681306839,0.608922399580479,1.41916900873184,-0.463509857654572,0.355425946414471,0.858071781694889,-0.52602207660675,0.308062300086021,1.36779743432999,1.6902163028717,0.532566979527473,0.894745171070099,1.73980396986008,0.191534280776978,0.959405988454819,1.17393219470978,0.0573369264602661,1.35835766792297,1.30370855331421,0.16898246621713,1.2393781542778,1.1619331240654,0.00895499065518379,1.38634771108627,1.77902513742447,0.389643639326096,0.682572901248932,1.35673183202744,0.553427070379257,0.956390976905823,1.11487233638763,0.211811020970345,1.29978016018867,0.625971280038357,0.67048841714859,1.23588153719902,0.383622825145721,0.912718512117863,1.36104202270508,0.326069809496403,0.890191055834293,1.46323624253273,-0.0601856410503387,0.67481292784214,1.38253369927406,0.608171254396439,0.791070996550843,0.98862424492836,1.74170434474945,0.479499913752079,0.793176591396332,1.25134208798409,0.818694472312927,0.960645973682404,1.89352881908417,0.072761996416375,0.458058365620673,1.85730558633804,0.121779773384333,0.730639636516571,1.92710083723068,0.106106661260128,0.338222263380885,1.84449732303619,-0.0116309244185686,0.752726882696152,-0.169178545475006,0.284415900707245,1.10708838701248,-0.0581165552139282,0.557735458016396,0.899765163660049,-0.039203405380249, --0.069698978215456,0.854671806097031,-0.0647168159484863,-0.123540813103318,0.777272701263428,-0.0963637232780457,0.198896722868085,0.963225811719894,0.345390200614929,0.987565070390701,0.890440702438354,-0.037010133266449,0.248142912983894,0.596221819519997,0.0240679979324341,0.279046140611172,0.811824291944504,0.847776979207993,1.00824651122093,1.17637723684311,0.584840223193169,0.999328956007957,1.10380005836487,0.307786680757999,1.14299473166466,1.37885564565659,1.08365160226822,0.920055270195007,1.36488395929337,1.02702814340591,0.937160238623619,1.13077676296234,1.14637130498886,0.823269750922918,1.05592530965805,-0.0118221044540405,0.620065093040466,0.974485665559769,0.241803497076035,1.0428971350193,1.51152592897415,0.139839008450508,1.03189095854759,1.49396425485611,0.941853940486908,0.993642866611481,1.17796629667282,1.81947445869446,0.201961064711213,0.487658575177193,1.35540628433228,0.190031363628805,0.8637630417943,1.4915589094162,0.259308353066444,1.083879083395,-0.496767580509186,0.387496344745159,1.07434970140457,-0.615856200456619,0.316178303211927,0.795707181096077,-0.641493618488312,0.190034140832722,0.863740369677544,-0.0286292433738708,0.0322893916600151,0.214092439040542,0.0260074734687805,-0.0410592933185399,0.483193472027779,-0.0314732789993286,0.112338826060295,0.269083758816123,0.0355250835418701,0.0859814919531345,0.619939357042313,-0.0281358361244202,0.0121994244836969,0.190108954906464,1.94370585680008,0.104001674801111,0.224189333617687,1.9402596950531,0.183877229690552,0.354945112019777,1.83413618803024,0.163472088053823,0.757545500993729,1.29808506369591,-0.936148091219366,-0.191644607111812,0.640466332435608,-0.681051760911942,-0.0475493371486664,0.579852551221848,-0.608600586652756,-0.0261948108673096,1.26317200064659,-0.832333113998175,0.0852363705635071,1.50818228721619,-0.816296819597483,0.164199411869049,0.394584476947784,-0.566430538892746,0.251163210719824,1.36895203590393,-1.22364503145218,-0.293250045739114,0.50284531712532,-0.869683786295354,-0.220455338712782,0.557341665029526, --0.847416643053293,-0.0219660848379135,1.36618703603745,-0.543429732322693,-0.197231601458043,0.973959440627368,0.295155763626099,-1.09124489873648,1.25310003757477,-0.158792646601796,-0.994564551860094,1.62509948015213,-0.606249384582043,-0.394089296460152,1.32567366957664,-0.484607398509979,-0.411598260980099,1.45586603879929,-0.484698712825775,0.698567867279053,0.834981146369955,0.791572451591492,-0.690128296613693,1.47135478258133,0.69518905878067,-0.854656808078289,1.73125332593918,0.420266091823578,-0.20399883389473,1.82806044816971,0.293777007609606,0.195916995406151,1.76633298397064,0.488621425349265,0.317145474255085,1.18956902623177,0.864105880260468,-0.592903167009354,1.40814697742462,0.279131472110748,-0.531906753778458,1.31679898500443,0.974206358194351,-0.278363406658173,1.22180080413818,0.573696404695511,-0.46752342581749,0.920226154127249,0.547801434993744,-0.695392549037933,1.78858309984207,0.720255464315414,-0.399591416120529,1.65843600034714,-0.104708135128021,-0.287415497004986,1.60793536901474,0.734775483608246,-0.321422666311264,1.83250963687897,0.385115571320057,-0.127707183361053,1.56937479972839,0.218007661402225,0.534403637051582,1.27973389625549,-0.865034789312631,0.0483781397342682,1.68264347314835,0.65221956372261,-0.103583157062531,1.63140189647675,0.380866296589375,0.204306870698929,1.87818646430969,0.657418072223663,0.0607057753950357,1.35428231954575,-0.981148350983858,0.0457699969410896,1.59297782182693,0.0431596264243126,1.04578298330307,1.73253703117371,0.235956076532602,0.575804933905602,0.911105453968048,0.349003858864307,-0.101808309555054,0.984196647448698,0.282892238348722,-0.772726103663445,1.19942048192024,-0.569323733448982,-0.809260845184326,1.01811751723289,-0.110578060150146,-0.07603520154953,1.10450741648674,0.00870943069458008,-0.456682205200195,1.65106844902039,0.5140091474168,-0.0583954751491547,0.895815849304199,0.308315612375736,-0.124674081802368,1.23071789741516,-0.836995601654053,0.165314018726349,1.81482893228531,0.232441395521164,-0.305961467325687,1.66466999053955, -0.256744280457497,-0.490457333624363,1.86200398206711,0.156553012318909,-0.367433026432991,1.80701798200607,0.204541467130184,-0.440863370895386,1.33885079622269,-1.07139122486115,-0.146910332143307,1.87400138378143,0.0560384087730199,-0.320562541484833,1.77647942304611,0.342900052666664,-0.371715471148491,1.83438217639923,0.107470996677876,-0.376693822443485,1.75879848003387,0.429081737995148,-0.249873161315918,1.38098558783531,-0.603951871395111,-0.0715865790843964,1.5804455280304,0.561020731925964,0.642378907650709,1.54697674512863,0.726381957530975,0.137623488903046,1.31708666682243,0.645549654960632,-0.497980684041977,1.31250929832458,-0.00594876706600189,-1.01254674047232,1.40302136540413,0.803628444671631,-0.69944354146719,1.06394669413567,0.640967756509781,-0.153417587280273,1.18769752979279,0.60234072804451,-0.0832114219665527,1.36886963248253,0.677405148744583,-0.769216381013393,1.32490414381027,0.517477244138718,-0.805853620171547,1.03403526544571,0.531509160995483,-0.285542488098145,1.17489069700241,0.589316755533218,-0.53628221154213,0.686885677476994,0.726673752069473,-0.393495440483093,1.51544052362442,0.720302194356918,0.471566542983055,1.33515685796738,-0.53264194726944,0.508325226604939,1.77546072006226,0.542434424161911,-0.157422602176666,1.79729378223419,0.357659056782722,-0.410107955336571,1.79668891429901,-0.0983667075634003,-0.615775220096111,1.81633532047272,0.025428906083107,-0.598971575498581,1.88025832176208,0.308992028236389,-0.269750222563744,1.769790828228,0.309677466750145,-0.545871276408434,1.72271633148193,-0.212869942188263,-0.580659761093557,1.90474218130112,-0.0784183889627457,-0.390412412583828,1.38176721334457,-1.00966115295887,-0.118836835026741,1.89104229211807,0.196592509746552,-0.124147906899452,1.92723935842514,0.0455111055634916,-0.169938772916794,1.94360965490341,0.014707971829921,-0.123417869210243,1.92417067289352,-0.0456735193729401,-0.195406451821327,1.89002633094788,0.0986175588332117,-0.265638515353203,1.82044982910156,0.147253584582359,-0.37972703576088,1.81833475828171, -0.0162236839532852,-0.449926130473614,1.94520175457001,0.154318001121283,0.360370673239231,1.52689719200134,-0.765007957816124,-0.147120490670204,1.78336083889008,0.319031030870974,0.308015301823616,1.89644914865494,0.603388577699661,0.155455388128757,1.96540075540543,0.235271374695003,-0.00871531292796135,1.99565958976746,0.0246102279052138,-0.0772919878363609,1.99531137943268,0.0236060228198767,0.00443623587489128,1.95799165964127,0.261588318273425,-0.0340401828289032,1.98422878980637,0.0323306587524712,-0.0969115570187569,1.99101501703262,0.0266321593662724,-0.119588807225227,1.00017523765564,0.0398596525192261,-0.945151809602976,1.03435808420181,-0.369405195116997,-0.975797530263662,1.1613736897707,-0.00736126303672791,-1.13826805353165,1.20809097588062,0.370601817965508,-1.10661923885345,1.21750748157501,0.365065131336451,-0.85635893791914,1.26641416549683,-0.0702604353427887,-0.886451121419668,1.31117409467697,0.448371812701225,-0.97990732640028,1.75203078985214,0.490969508886337,-0.541123732924461,1.6539620757103,0.114034742116928,-0.535457201302052,1.22148779034615,0.960963219404221,-1.12361651659012,1.04406905174255,0.530504554510117,-0.915603563189507,0.92529071867466,0.0851420685648918,-0.939042586833239,1.29627084732056,0.742184609174728,-0.784333407878876,1.27252632379532,0.784995526075363,-0.970490463078022,1.20206487178802,0.904965698719025,-0.957030184566975,1.37222188711166,0.717374980449677,-0.749817967414856,1.46952921152115,0.493202015757561,-0.783347606658936,1.77999097108841,0.647175163030624,-0.417767561972141,1.72617453336716,-0.0548187494277954,-0.653991863131523,1.48951953649521,1.01531139016151,-0.84608119726181,1.08447134494781,0.968555361032486,-0.966639287769794,1.14948005974293,0.0407315492630005,-0.93116632848978,1.66934990882874,0.346035823225975,-0.783121638000011,1.68065756559372,0.332609713077545,-0.719660975039005,1.34039878845215,0.246748566627502,-0.457397222518921,1.77865546941757,-0.229087240993977,-0.255671218037605,1.86348181962967,0.266064092516899,-0.492797948420048,1.87959599494934, -0.415753573179245,0.43267448246479,1.80091392993927,-0.693649932742119,0.471856117248535,1.77179437875748,0.186573415994644,0.0654842108488083,0.814056590199471,0.32375431060791,0.393818438053131,0.624554127454758,-0.581420682370663,0.491482734680176,0.586518079042435,0.200432166457176,0.504932045936584,0.631745055317879,0.0436294749379158,0.498281270265579,0.302307039499283,0.595927961170673,0.336921572685242,0.896723836660385,0.228003568947315,0.439725041389465,0.942123055458069,0.369568765163422,0.42204737663269,0.796991422772408,0.388579607009888,1.01538985595107,0.391513675451279,-0.6279481574893,1.04376699775457,0.753617003560066,0.49292953312397,0.773437187075615,0.0902669131755829,0.355521075427532,0.0876941680908203,-0.301094442605972,-0.690930370241404,0.197704672813416,1.38793861865997,-0.681000739336014,-0.688134476542473,1.31823894381523,-0.534981116652489,-1.06168031692505,1.36594372987747,0.0455358475446701,-1.35686963796616,1.76931005716324,-0.148947238922119,-0.786989897489548,1.33937409520149,-0.539249911904335,-1.02738043665886,1.46969106793404,-0.492188606411219,-0.838397815823555,1.11962124705315,-1.12949195504189,-0.748291108757257,1.5734635591507,0.0994263142347336,-0.957634806632996,1.41629904508591,-0.349470943212509,0.132049918174744,0.208873838186264,-1.18398684263229,0.460963875055313,0.737055420875549,-0.0415540188550949,0.592287570238113,1.56351512670517,-0.107601784169674,0.340492218732834,0.665394991636276,-0.085304856300354,0.470803588628769,0.819656245410442,-0.400172986090183,0.527385979890823,0.830048739910126,-0.0481603220105171,0.62873962521553,0.793846607208252,0.0590397715568542,0.861347511410713,0.882689505815506,-1.43999570608139,0.558896750211716,1.51675379276276,-0.302762627601624,0.449396915733814,0.7488754093647,0.137150540947914,-0.240435004234314,0.435620102078246,0.174429655075073,-0.0541679859161377,1.52006220817566,-0.66763237118721,0.855526685714722,1.60916256904602,-0.701877139508724,0.762579411268234,1.48327594995499,-0.0055721253156662,-0.434118419885635,0.678498872555792, -0.109091892838478,-0.251933395862579,0.729985922574997,-0.185449123382568,-0.0905522704124451,1.4020614027977,-0.365817666053772,0.0923951864242554,1.4964696764946,-0.0137602388858795,0.194172978401184,0.597554504871368,0.134966269135475,-0.028784453868866,0.839154571294785,-0.309094071388245,-0.355040907859802,1.02624718844891,-0.239262521266937,-0.734138518571854,1.70171266794205,0.178330674767494,-0.220515519380569,1.62035942077637,0.0428337901830673,0.878156363964081,1.20415073633194,-0.192158728837967,0.209122180938721,0.644358277320862,-0.0847869217395782,0.326420605182648,0.835776969790459,0.0511182993650436,0.833402246236801,1.49293529987335,-0.0894406288862228,0.920997001230717,0.752993702888489,-0.268927812576294,0.407226204872131,0.736291036009789,-0.434779107570648,0.0190691947937012,1.06974466145039,-0.189500115811825,0.522462457418442,0.856391057372093,-0.244153290987015,0.865303084254265,1.41659247875214,-0.835089460015297,-0.189541637897491,1.51845240592957,-0.750128023326397,-0.471374332904816,1.89562886953354,-0.201509017497301,-0.15624475479126,1.78895676136017,-0.213971104531083,0.363038927316666,1.53508949279785,-0.645801149308681,-0.44569194316864,1.59922730922699,-0.553368579596281,-0.815953224897385,1.94865053892136,-0.192388743162155,-0.348953679203987,0.962019126565792,-0.700845196843147,1.05770838260651,0.0822919607162476,-1.29638129472733,0.955606341362,-0.537241116166115,-1.36518377065659,0.989726170897484,-0.283614233136177,-1.07742591202259,0.806832984089851,0.279859244823456,-0.983105733990669,0.687950134277344,0.30044261533738,-1.81091159582138,0.621730610728264,0.209941953420639,-0.598152667284012,1.64918518066406,-0.346202716231346,-0.57608138024807,1.76108849048615,-0.134225487709045,-1.22568255662918,0.718945719301701,0.567887491146848,-1.71249604225159,0.480717232450843,0.960383305807795,-0.409549221396446,1.12425570189953,0.0296421647071838,-0.5628362596035,0.492895677685738,-0.0676820278167725,-1.58341240882874,-0.10772698558867,-0.163397014141083,-0.967857241630554,0.318642348051071, -0.970801037487036,-1.14475132524967,0.150288969278336,-0.0196623802185059,-0.140093915164471,0.309149339795113,0.130782425403595,-1.62834793329239,0.445629179477692,-0.865040957927704,-0.637436904013157,0.95800107717514,-0.731158792972565,-0.271326206624508,1.0512218773365,0.499184310436249,-1.11584803462029,0.461908034980297,-0.860618710517883,-0.752570226788521,0.859164509922266,0.00302593410015106,-1.12734270095825,1.48622578382492,0.502294871076899,-0.558213204145432,1.77852821350098,0.0269546359777451,-0.889530345797539,1.60482931137085,-0.108541965484619,-1.17367380857468,0.891442690044641,0.0913198590278625,-1.08731374144554,0.901740873232484,0.188003063201904,-0.731832712888718,0.670293584465981,0.0851486921310425,-0.655736893415451,0.819778352975845,0.0193407535552979,-1.76335382461548,0.295484686270356,-0.517059981822968,-1.01896771788597,-0.357562642544508,0.157423317432404,-0.479105398058891,0.376229494810104,-0.0484738349914551,-0.32195708528161,0.326836317777634,-0.29873314499855,-0.996609650552273,0.605785787571222,-0.142347991466522,-1.73418188095093,0.519896988058463,-0.419527649879456,-0.428409909829497,1.05976071953773,-0.00718396902084351,-0.319244883954525,0.560541093349457,-0.738118380308151,-0.7688541226089,0.377193138003349,-0.591340780258179,-0.863024963065982,0.284137036651373,0.399349302053452,-1.31016260385513,0.203643441200256,-0.463741838932037,-0.405962363816798,0.868942439556122,-0.55726945400238,-1.00364496558905,-0.0484598949551582,0.0542485415935516,-1.24899762868881,0.722111701965332,0.623834878206253,-1.00360751152039,0.697813395410776,0.375003576278687,-0.57158850133419,0.771991964429617,-0.0231792628765106,-1.1974678337574,0.698775053024292,0.00590455532073975,-1.31498193740845,0.355607181787491,0.932275079608189,-1.20108875632286,0.215802580118179,0.584653496742249,-0.864606618881226,0.79330712929368,0.22078537940979,-1.20789632201195,0.883399466052651,0.436302502438139,-1.64217269420624,0.947871387004852,0.735810186226189,-0.828217446804047,1.45836794376373,-0.00108098983764648, --0.456256568431854,0.55945260822773,-0.050881028175354,-1.6791290640831,0.446108289062977,-0.407360106706619,-0.882479760795832,0.612631291151047,-0.0130870342254639,-0.44923984259367,0.776799917221069,-0.0939424633979797,-0.653073340654373,1.04626303911209,0.424048833024244,-1.88983678817749,0.15832107886672,-0.308165967464447,-1.27332192659378,0.522899731993675,0.181443512439728,-0.595394223928452,0.705093026161194,0.911956329056011,-1.32267850637436,0.450083792209625,-0.431563019752502,-0.916507203131914,0.462154820561409,0.171669781208038,-1.74175596237183,-0.0712037533521652,0.000227689743041992,-0.119624048471451,0.082533210515976,-0.00046849250793457,-0.594211414456367,0.365158051252365,-0.730573922395706,-0.830768927931786,-1.01094622164965,-1.20995086431503,-0.365544214844704,-0.668606877326965,-1.20491737127304,-0.215960614383221,-0.514683306217194,-0.0849076803290245,-1.0547373816371,-0.952918540686369,-1.83849841356277,-0.0614531096071005,-0.190193921327591,-1.28464597463608,-0.94377376511693,-0.581432949751616,-1.75971353054047,-0.201607551425695,-0.304537653923035,-1.76610064506531,-0.122834204696119,-0.462159514427185,-1.57704252004623,-0.717907667160034,0.018039233982563,-1.66862559318542,-0.590749129652977,-0.204161770641804,-1.52898073196411,-0.946218639612198,-0.0514306128025055,-1.05531069636345,-0.42083815485239,1.06040028482676,-0.999451508745551,-0.839050889015198,0.469658926129341,-1.24967411160469,-0.60520201176405,0.741101585328579,-1.34514006972313,-0.00934290885925293,1.12048453092575,-1.31956449151039,-0.511401705443859,0.617215916514397,-1.31218215823174,-0.393884710967541,0.826501272618771,-1.41116687655449,-0.696432307362556,0.593861073255539,-1.18280658125877,-0.131618931889534,1.08268664777279,-1.44312080740929,-0.206108130514622,1.02975684404373,-0.46668952703476,-1.04887673258781,-0.0553324818611145,-0.807729601860046,-0.650833681225777,-0.153243899345398,-0.893245041370392,-0.456527814269066,-0.256984055042267,-0.685196846723557,-0.980426698923111,-0.143725872039795,-0.866134881973267, --0.494745686650276,-0.0966969132423401,-0.982046604156494,-0.69289499334991,-0.32956200838089,-0.590152949094772,-0.30468674749136,-0.0493873357772827,-1.11162108182907,-0.450657650828362,-0.556061774492264,-0.67029881477356,-0.99453954398632,-0.60187953710556,-0.928277730941772,-0.493730209767818,-0.35448145866394,-1.37289595603943,-0.239189296960831,-0.534076571464539,-1.18498155474663,-0.577147543430328,-0.341707050800323,-0.791735053062439,-0.803073287010193,-0.122597813606262,-0.654040306806564,-1.00113521516323,-0.598122119903564,-1.03305062651634,-0.427367746829987,-0.111113727092743,-1.38304430246353,-0.606695048511028,-0.865842998027802,-1.07190757989883,-0.752625599503517,-1.13682898879051,-1.41907197237015,-0.491849556565285,-0.388255536556244,-1.48875331878662,-0.00462963432073593,-0.765265047550201,-1.43725913763046,-0.162607811391354,-0.33188396692276,-1.13562434911728,-0.350135907530785,-0.00347441434860229,-0.895014703273773,-1.17255401611328,-0.276205867528915,-1.0295637845993,-0.0830616112798452,-0.170616447925568,-1.42158329486847,0.14521811157465,-1.2375363111496,-0.521698961079039,-1.57157212495804,-0.957662343978882,-0.85390295144407,-1.13856384158134,-0.16223406791687,-1.03632051870227,-0.914773553609848,-0.474397510290146,-0.929077055305243,-1.08979475498199,-0.274638742208481,-0.85266239997236,-0.7593729570508,-0.0542676448822021,-0.341750054700242,-1.74012452363968,-0.298218756914139,-0.963910710066557,-0.764820486307144,-0.140092074871063,-1.03184581920505,-0.839100867509842,-0.407520309090614,-0.554166566580534,-1.6749786734581,-0.648374766111374,-0.962878298014402,-1.16767948865891,-0.301082670688629,-1.1578293889761,-0.598554193973541,-0.460778623819351,-0.903581723570824,-1.44715112447739,-0.628012440050952,-0.873119380325079,-0.848896954208612,-0.0669371485710144,-0.455847065895796,-1.70472776889801,-0.366433650255203,-1.06489984691143,-0.775853406637907,-0.164395034313202,-0.220823232084513,-1.06110319495201,0.291654646396637,-0.49291515430923,-1.20130622386932,1.05614075809717,-1.83919382095337, --0.56214315444231,0.409875735640526,-1.80247133970261,-0.567187651991844,0.0530340671539307,-0.926065236330032,-1.11078375577927,0.726765438914299,-1.29117161035538,-0.723930329084396,1.00436292588711,-1.40058037638664,-0.457128740847111,0.974693164229393,-1.45196878910065,-0.418963298201561,0.497003555297852,-1.22493603825569,-0.721112787723541,0.626941323280334,-1.64995622634888,-0.704423755407333,0.293758630752563,-1.2014542222023,-0.402486249804497,0.613510310649872,-1.71816098690033,-0.38051924854517,-0.0119504332542419,-1.53161299228668,-0.747268915176392,0.125927746295929,-1.06147575378418,-1.23145437240601,0.588747009634972,-1.82457000017166,-0.622008517384529,-0.456000208854675,-1.77899831533432,-0.501893490552902,-0.635654106736183,-1.36370524764061,-1.00807820260525,0.047736257314682,-1.49064320325851,-0.0650096535682678,0.356037706136703,-1.70423352718353,-0.159550745040178,0.122943550348282,-1.76370847225189,0.0977462735027075,-0.930122166872025,-1.90058702230453,0.0371815375983715,-0.218647137284279,-1.73899048566818,-0.0665366500616074,0.0873284637928009,-1.7941220998764,-0.243850700557232,-0.110888779163361,-1.67624545097351,-0.0784554332494736,-0.57764108479023,-1.76667404174805,-0.0519344136118889,-0.122323334217072,-1.34550225734711,-0.867100439965725,0.108521580696106,-1.48239752650261,-0.802333015948534,-0.470667848363519,-1.24443897604942,-0.885014601051807,-0.681248471140862,-1.25995567440987,-0.976186320185661,-0.330917507410049,-0.486139563261531,-1.74066579341888,-0.467791281407699,-0.464510654197511,-1.74209469556808,-0.538680426776409,-0.292619522660971,-1.80995500087738,-0.566382735967636,-0.166699454188347,-1.81565880775452,-0.562846273183823,-0.464050516486168,-1.83363926410675,0.10533157736063,-0.992384672164917,-1.43760401010513,0.109053652733564,-0.929022345691919,-1.45130768418312,-0.204309269785881,-0.341341689229012,-1.87577986717224,-0.16778425918892,-0.893366533331573,-1.43318259716034,0.010294184088707,-1.04746413230896,-1.110810354352,-0.138006284832954,-0.969349037855864,-1.14533430337906, --0.147463902831078,-0.823200859129429,-1.4430425465107,0.0196515768766403,-0.843598861247301,-1.44477745890617,0.014500692486763,-1.02501486614347,-1.12616682052612,-0.279251962900162,-0.946347655728459,-1.14809873700142,-0.253699786961079,-0.763989873230457,-1.47176820039749,-0.0686710029840469,-0.429237423464656,-1.87648075819016,-0.256721891462803,-0.913021933287382,-1.43501695990562,-0.325279295444489,-0.851805302780122,-1.47832816839218,-0.27811523526907,-0.376118409913033,-1.90490400791168,-0.213640358299017,-1.02605958655477,-0.87540652602911,-0.209691789001226,-1.00127235241234,-1.1927143484354,-0.229854710400105,-0.979000560939312,-0.956899520009756,-0.275376603007317,-0.979171882150695,-0.824665322899818,-0.139392465353012,-0.984406445175409,-1.18291117250919,-0.284203194081783,-0.950439067557454,-1.3151241838932,-0.282172158360481,-0.965690556447953,-1.12858086824417,-0.306730955839157,-0.98445822740905,-0.93871134147048,-0.392067193984985,-0.544748429208994,-1.78554344177246,-0.0952215977013111,-0.322734922170639,-0.59909962117672,-1.15748496353626,-0.302196311871967,-0.875172659754753,-1.15822838246822,0.307814329862595,-0.824038624763489,-0.900322549045086,-0.0591813921928406,-0.680595740675926,-1.05057306587696,-0.125631332397461,-0.670450292527676,-1.14883249998093,0.16244500875473,-0.751149654388428,-1.08852171897888,0.356289774179459,-0.844406969845295,-0.906852409243584,-0.609937965869904,0.0956849008798599,-1.18515652418137,-0.228693246841431,-0.0747651271522045,-0.772361628711224,-0.673522651195526,0.264771297574043,-1.09953773021698,-0.110943138599396,0.245427995920181,-0.767741233110428,-0.651721656322479,-0.00793486088514328,-1.05538486689329,-0.0542639493942261,-0.00609476864337921,-0.464912660419941,-0.0957034230232239,0.206104598939419,-0.544877476990223,-0.134338140487671,0.1446184925735,-0.691834151744843,-0.144901633262634,-0.145283620804548,-0.778575599193573,-0.15267950296402,-0.152913877740502,-0.609392400830984,-0.0536032915115356,-0.460355024784803,-0.501324091106653,-0.0899946093559265, --0.334577264264226,-0.783477216959,-0.0884239673614502,-0.108429118990898,-0.494447108358145,-0.0260921120643616,-0.187631014734507,-0.351181335747242,0.107293009757996,-0.671474054455757,-0.233653217554092,0.00956422090530396,-0.780769437551498,-0.271670941263437,0.872193294002273,-1.21620745956898,-0.578461915254593,0.920931573231883,-1.06282295286655,-0.755489081144333,0.855658411979675,-1.01015500724316,-0.642877787351608,0.884270548820496,-0.984411586890928,-0.207635745406151,0.998715157826609,-0.919945491215913,-0.443682335317135,0.99621409864676,-0.785138307139277,-0.721505157649517,-0.999622702598572,-1.15112197399139,-0.793987452983856,-0.991140782833099,-1.37292703986168,-0.480253599584103,0.00278621912002563,-0.45132452249527,-1.26752743124962,-0.0897233424093429,-0.428726881742477,-1.57358801364899,-0.434112787246704,-1.05886769294739,0.380450904369354,-0.254408139868247,-1.13442598283291,0.628105223178864,0.143776267766953,-0.4623042345047,-0.956279814243317,0.504058063030243,-0.391462564468384,-0.982198864221573,0.164098054170609,-0.48619070649147,-1.15153014659882,-0.0771439522504807,-0.470518320798874,-0.974792882800102,0.378690648823977,-0.0727807283401489,-1.48581564426422,0.635822497308254,0.297039791941643,-1.40577670931816,0.273305892944336,0.311612337827682,-1.74637311697006,0.19834777712822,0.00552821159362793,-1.5076756477356,0.556948862969875,0.417023941874504,-1.36831557750702,0.755226865410805,0.447333008050919,-1.01071699149907,0.643093459308147,0.455561049282551,-1.45169135928154,0.519230574369431,0.346971541643143,-1.53500556945801,0.745323807001114,0.241499662399292,-1.2710080742836,0.851863853633404,0.294184841215611,-1.00505090504885,0.421869397163391,0.269054748117924,-1.53755229711533,0.238587558269501,0.203827887773514,-1.65686374902725,0.717065691947937,-0.259334295988083,-1.25769221782684,0.8267442882061,0.0999690294265747,-1.19650326669216,0.556044161319733,0.121087610721588,-1.28372523188591,0.510725170373917,-0.239844679832458,-1.21649673581123,0.437468767166138,-0.18588325381279, --0.984633684158325,0.426901310682297,0.264759592711926,-0.877218304201961,0.372847467660904,0.371560888364911,-1.40906384587288,0.3645159304142,0.0194253921508789,-1.29554498195648,0.434713512659073,0.24480127543211,-0.889921806752682,0.484876155853271,0.302418215200305,-0.666592225432396,0.584122389554977,0.12071012891829,-0.431529104709625,-1.37123766541481,-0.0193565180525184,-0.655046612024307,-1.36066064238548,0.085420610383153,-0.635902225971222,-1.23557361960411,0.166581364348531,-0.827077686786652,-1.62738358974457,0.244999900460243,-0.829522654414177,-1.65206283330917,0.200240798294544,-0.685259837657213,-1.26701989769936,-0.342539545148611,-0.279273092746735,-1.32059141993523,0.0381719153374434,-0.514594256877899,-1.63601982593536,0.222604431211948,-0.569912403821945,-1.55163109302521,0.0182569175958633,-0.604788333177567,-0.903372257947922,0.246038313955069,-0.489904403686523,-1.39123332500458,0.161012190626934,-0.558140963315964,-1.59364581108093,0.236801043152809,-1.03073060512543,-1.09491583704948,-0.0415222253650427,-0.427335619926453,-1.1487158536911,-0.846018850803375,0.361924827098846,-1.70152688026428,-0.517796151340008,-0.0731456279754639,-1.6696645617485,-0.506313867866993,-0.59005718678236,-1.42166021466255,-0.94501505792141,-0.50648233294487,-1.36352467536926,-0.726731181144714,0.284653306007385,-1.64938598871231,-0.456160299479961,0.241219818592072,-1.67098569869995,-0.428161889314651,-0.275805830955505,-1.41423797607422,-0.751261293888092,-0.0373532176017761,-1.06907618045807,-0.82092672586441,0.204488635063171,-1.2626745402813,-0.559174835681915,0.148875594139099,-1.39323824644089,-0.471212238073349,0.157405614852905,-1.09066367149353,-0.722430765628815,0.303166031837463,-0.701947033405304,-1.09819906949997,0.412889271974564,-0.934877336025238,-0.785335004329681,0.272385358810425,-1.09725022315979,-1.33580037951469,-0.630688983947039,-0.67162136733532,-1.72156411409378,-0.622165247797966,-0.824669480323792,-1.61250567436218,-0.680863469839096,-1.04113739728928,-1.26568609476089,-0.62704286724329, --0.979790568351746,-1.13772946596146,-0.64931608736515,-0.896679610013962,-1.47225594520569,-0.430031001567841,-1.04159826040268,-1.23452764749527,-0.471734836697578,-1.01761928200722,-0.966731026768684,-0.46951162815094,-0.782133758068085,-0.91235876083374,-0.532573074102402,-0.808202356100082,-1.11979115009308,-0.378116011619568,-0.773569732904434,-1.10953378677368,-0.337618798017502,-0.650785014033318,-0.871305108070374,-0.370510995388031,-1.19474333524704,-0.921041257679462,0.312703534960747,-1.1860765516758,-0.462247937917709,-1.12575645744801,-1.0630419254303,-1.29870027303696,-1.02901753783226,-0.879200428724289,-1.1038573384285,-1.24036455154419,-1.48430532217026,-1.07096537947655,0.193994835019112,-1.27377957105637,-0.508619159460068,-0.91082376241684,-1.26491045951843,0.152085232082754,-1.43895787000656,-1.92374485731125,-0.0282487124204636,-0.534638002514839,-1.96022379398346,-0.121605850290507,-0.326082251966,-0.763555258512497,0.315046280622482,-1.76455497741699,-1.10541099309921,-1.00213177502155,-0.507812589406967,-1.41714149713516,0.177633047103882,-0.298994541168213,-1.27912321686745,-0.129705220460892,-0.852427270263433,-1.26555091142654,-0.442269295454025,-0.386246338486671,-1.65626889467239,-0.889097154140472,0.180802941322327,-1.66545420885086,0.189035575836897,-0.135686457157135,-1.90121293067932,0.0141359195113182,-0.276794455945492,-1.84393239021301,-0.120873719453812,-0.195095162838697,-1.27357256412506,-1.27224346995354,-0.307155903428793,-1.79460471868515,0.263519577682018,-0.357470117509365,-1.88889729976654,0.0199171975255013,-0.502173736691475,-1.78789603710175,-0.0722425580024719,-0.155241556465626,-0.808798670768738,-1.81803530454636,-0.176167331635952,-1.86727410554886,-0.29575265198946,0.317009005695581,-1.87039130926132,-0.494172206148505,-0.179802093654871,-0.630833864212036,-0.509398281574249,-0.995537295937538,-0.664758205413818,-0.983352288603783,-1.32324820756912,-1.25457882881165,-0.130283623933792,-1.28980597853661,-0.971336990594864,0.0119220018386841,-1.4552646279335,-1.06274026632309, --0.281759083271027,-0.961124688386917,-1.02126988768578,-0.0625640153884888,-1.36491134762764,-1.59280222654343,-0.491183146834373,-1.02492791414261,-1.64079201221466,0.294526696205139,-0.96603924036026,-1.3747296333313,0.0730762481689453,-1.12755870819092,-1.54864752292633,-0.247016251087189,-1.06806609034538,-1.62170553207397,0.114397317171097,-1.11925101280212,-1.31267634034157,-1.11154673993587,-0.433923721313477,-1.70352983474731,-0.483589816838503,-0.662283167243004,-1.1183340549469,-0.453667670488358,-1.02533441781998,-1.52711725234985,-0.221233114600182,-1.0964672267437,-1.64176720380783,-0.324663028120995,-0.725728288292885,-0.905495703220367,-1.68645226955414,-0.521621465682983,-1.95366758108139,0.307116627693176,-0.257263422012329,-1.85502946376801,0.35056309401989,-0.366564311087132,-1.3449159860611,0.238008037209511,-1.0139347165823,-1.14740726351738,-0.313705384731293,-1.49575811624527,-1.48170939087868,0.25202988088131,-0.63991367816925,-1.41147619485855,0.113196462392807,-0.539171099662781,-1.56932401657104,0.290550790727139,-0.58361804485321,-1.44931063055992,0.375822767615318,-0.711424246430397,-1.30465790629387,0.13422480225563,-0.584082365036011,-1.29215651750565,0.182317465543747,-0.997518822550774,-1.28633779287338,0.331233061850071,-1.05596728622913,-1.8971443772316,0.408552132546902,-0.0287268161773682,-1.07191473245621,-1.67070978879929,-0.065690103918314,-1.70417279005051,-0.168680548667908,-0.355867579579353,-1.68824887275696,-0.339958325028419,-0.680767118930817,-1.24700748920441,-0.765017852187157,-0.675676628947258,-1.69221425056458,-0.335137948393822,-0.459587529301643,-1.89279270172119,-0.0286080166697502,-0.262600064277649,-1.77005231380463,0.0160769373178482,-0.708713851869106,-1.65565532445908,-0.329584732651711,-0.724906623363495,-1.79474377632141,-0.33677627146244,-0.462158620357513,-1.38431629538536,-1.01429881155491,-0.357849679887295,-1.89204567670822,0.154070898890495,-0.406478531658649,-1.7961733341217,-0.453401409089565,-0.457147352397442,-1.37812238931656,-0.87947204709053, --0.416614070534706,-1.80163866281509,-0.407736517488956,-0.467937767505646,-1.75719887018204,-0.397271633148193,-0.540801100432873,-1.21119517087936,-0.770622074604034,-0.625305995345116,-1.82574057579041,0.283320806920528,-0.560027249157429,-1.93665075302124,0.221025742590427,0.191255234181881,-1.52804958820343,-0.982516691088676,-0.0867748968303204,-1.84624928236008,-0.143433098681271,0.402047909796238,-1.45575833320618,-0.208209455013275,-0.53547939658165,-1.5810187458992,-0.158741881139576,-0.855059415102005,-1.51423794031143,-0.0524542389903218,-0.941681355237961,-1.47650429606438,-0.426040180027485,-0.835716515779495,-1.58095592260361,-0.162227442488074,-0.855130411684513,-1.52293288707733,-0.0453366031870246,-1.00354933738708,-1.41569289565086,-0.00140200964233372,-1.03573098778725,-0.587349370121956,0.354601506143808,-1.76621001958847,-0.612432077527046,-0.0778808034956455,-1.84903484582901,-0.653165653347969,0.288233796818531,-1.83535242080688,-1.09148965775967,0.329710125923157,-1.42855530977249,-1.00164303183556,0.330506347585469,-1.54380816221237,-0.804751992225647,-0.139249593019485,-1.68258970975876,-0.846253722906113,0.23338646069169,-1.75533252954483,-1.54488980770111,0.345592163968831,-1.17308723926544,-1.4101168513298,-0.785920739173889,-1.13117066025734,-0.661263927817345,0.408932959660888,-1.75976324081421,-0.897118996828794,0.337895911186934,-1.4620868563652,-0.804491844028234,-0.0445880517363548,-1.49674844741821,-0.851628512144089,0.254161129458225,-1.7731568813324,-0.933860898017883,0.205989234149456,-1.72427701950073,-0.877350032329559,0.260540261864662,-1.69529807567596,-0.957239270210266,0.163310796022415,-1.72169309854507,-0.774408876895905,0.197659082710743,-1.79106724262238,-1.17836353182793,-0.374227076768875,-1.00668239593506,-1.13822188973427,-1.10572916269302,-1.06047576665878,-0.915488734841347,-0.309674441814423,-1.06998807191849,-0.4521654099226,-0.359226822853088,-1.41025984287262,-0.524048566818237,-0.960471138358116,-1.55926287174225,-0.995802193880081,-0.540162608027458,-1.32546371221542, --0.889210134744644,-0.598722785711288,-1.27471768856049,-0.629511132836342,-0.263477265834808,-1.29341024160385,-1.17860302329063,-0.598897837102413,-1.10037681460381,-1.15274253487587,-0.585418879985809,-1.11466577649117,-1.12325643002987,-0.443718254566193,-0.474171087145805,-1.07039430737495,-1.24179738759995,-0.383933171629906,-1.13380178809166,-0.23535293340683,-0.851318284869194,-0.949458718299866,-0.267294973134995,-1.25784933567047,-0.732812270522118,-1.44001162052155,-1.11102670431137,-1.07867388427258,-0.668565414845943,-1.03694662451744,-1.26990035176277,-0.234300509095192,-1.31051084399223,-1.006556391716,0.148901164531708,-1.45401000976563,-1.27838504314423,-0.0710253715515137,-1.41707479953766,-1.23091122508049,-0.0567376464605331,-1.43412411212921,-1.38287264108658,-0.171912923455238,-0.78874396905303,-1.11000263690948,-1.06412941217422,-0.744668878614902,-1.51075941324234,0.136054813861847,-0.993271380662918,-1.03929334878922,0.0319636613130569,-1.63960957527161,-0.340659010209492,-1.42264926433563,-1.30697190761566,-0.839174669336899,-0.622239798307419,-1.17415940761566,-0.874400794506073,-0.599730640649796,-1.17461228370667,-0.767462320625782,-0.373658001422882,-1.40091043710709,-0.859906952929123,-0.618788987398148,-1.1385306417942,-0.859916398346343,-0.640269249677658,-1.09687313437462,-1.02081098780036,-0.729475907981396,-0.771950140595436,-0.496418684720993,-1.64302635192871,-0.68949343636632,-0.937770783901215,-0.411098212003708,-0.911768227815628,-0.875376667827368,-0.657394960522652,-1.13722217082977,-0.562582522630692,-1.5421090722084,-1.09860736131668,-1.07665847241879,-0.632939472794533,-1.06722423434258,-0.98770297318697,-0.556259818375111,-1.13220235705376,-0.886113822460175,-0.461536109447479,-1.08874651789665,-1.08889858424664,-0.660840377211571,-1.04155248403549,-1.10828657448292,-0.547435067594051,-1.11031180620193,-1.15106123685837,0.129435647279024,-1.09758391976357,-0.521319341627532,-0.879205860197544,-1.15353141725063,-0.94543673874432,-0.035929948091507,-1.03193531930447,-0.223362304270267, --0.0160293579101563,-1.86379235982895,-1.12276202440262,-0.103828925639391,-0.671667098999023,-1.00447502732277,-0.452539168298244,-0.396147191524506,-0.835270404815674,-0.145921424031258,-1.68528974056244,-0.27718001883477,0.221678785979748,-1.9070833325386,-0.765525162220001,0.34000049601309,-1.78347849845886,-1.23813849687576,-0.0042186975479126,-1.33731833100319,-1.16487124562263,0.209085715934634,-1.46430921554565,-0.61376728117466,0.329545384272933,-1.84369575977325,-0.675203204154968,0.052505761384964,-1.78480696678162,-0.624891117215157,-0.0633637309074402,-1.73627346754074,-1.07106679677963,0.339613765478134,-1.44050848484039,-1.28869810700417,0.265648586675525,-0.780259519815445,-1.0086242556572,-0.380578190088272,-1.20168751478195,-1.17895343899727,0.0198130011558533,-1.42572474479675,-1.23667713999748,0.0211539417505264,-1.09231339395046,-1.19770234823227,-0.465277716517448,-0.730295933783054,-1.28818097710609,-0.164351165294647,-1.34396257996559,-1.06913474202156,0.0782136097550392,-1.66843265295029,-1.08706375956535,-0.00238357298076153,-1.42150962352753,-1.2572890818119,-0.27424743771553,-1.0605168864131,-1.09798088669777,-0.289635479450226,-1.49367362260818,-1.00597164034843,-0.0688581969588995,-1.55689638853073,-1.83787190914154,-0.0575915370136499,-0.782964169979095,-1.89775145053864,-0.121153999265516,-0.571504652500153,-1.03819960355759,-0.498790010809898,-1.35380923748016,-1.12257876992226,-0.137333635240793,-1.4641278386116,-1.91080844402313,-0.175667628645897,-0.463956691324711,-0.161867260932922,-1.2530979514122,0.316438287496567,0.301705211400986,-0.65508995950222,-0.732180863618851,-0.456359028816223,-0.937167137861252,-0.659497663378716,-0.326664626598358,-0.828345984220505,-0.213210448622704,0.170521259307861,-0.361315248534083,-0.111880838871002,-0.481031388044357,-0.356872241944075,0.499253630638123,-0.236932635307312,-0.340466663241386,0.209731161594391,0.0301447510719299,-0.368355758488178,-0.177548378705978,-0.312831223011017,-0.853977307677269,-0.434941560029984,0.224387049674988, --0.965942248702049,0.195473521947861,0.415420889854431,-0.631681650876999,-0.207493558526039,0.149884521961212,-1.80140089988708,-0.227415472269058,0.694506168365479,-0.973972335457802,-0.147198006510735,0.425101757049561,-0.835578516125679,-0.277871005237103,-0.260138094425201,-1.63642740249634,-0.430337738245726,0.692029684782028,-1.07514859735966,-0.289077833294868,-0.0424682796001434,-1.26334425806999,0.595608472824097,-0.372171521186829,-1.41883647441864,0.269437879323959,-0.0425566136837006,-1.00756177306175,0.454984128475189,0.0494227409362793,-1.06025131046772,0.541202932596207,0.442787796258926,-1.24873307347298,0.243371188640594,0.263202905654907,-1.03716421127319,0.155624389648438,-0.106455683708191,-1.60402208566666,-0.107611358165741,0.706307858228683,-1.03633670508862,-0.505530975759029,0.455596685409546,-1.01474691927433,0.276786595582962,0.122621476650238,-0.230595458298922,-0.209620609879494,-0.112111449241638,-0.362107239663601,0.232695162296295,-0.584279924631119,-1.08972409367561,-0.135523120872676,0.0784714818000793,-0.262670170515776,-0.106309622526169,0.003162682056427,-0.121328048408031,0.047299712896347,0.0860549211502075,-0.114807080477476,-0.546926736831665,0.0105286240577698,-0.0197413004934788,-0.104866690933704,-0.56134369969368,-1.05854311585426,-0.326278194785118,0.527078092098236,-0.732290930114686,-0.351518705487251,0.602403998374939,-0.875806882977486,-0.443721510469913,0.214094489812851,-1.19815424084663,0.275061249732971,0.0712830722332001,-1.47476750612259,0.148380160331726,0.166879773139954,-0.973095029592514,0.292156219482422,0.160477846860886,-1.07430797815323,0.219528436660767,0.329386651515961,-1.34090775251389,0.0988287925720215,0.128231853246689,-1.33733153343201,0.238403916358948,-0.271597474813461,-0.797350943088531,0.18985241651535,0.247770667076111,-0.509300038218498,-0.27249276638031,-0.426638722419739,-1.10417397320271,-0.284256588667631,0.217013359069824,-0.3674451187253,-0.22006556391716,0.212950110435486,-0.479293182492256,-0.185326039791107,0.10627007484436,-0.609709650278091, --0.174255132675171,-0.148631632328033,-0.436133731156588,0.123717814683914,-0.165104508399963,-0.47068490087986,0.285595566034317,0.0866464376449585,0.0300491750240326,-0.1551553606987,-0.45862203836441,-1.0987598747015,-0.428638860583305,0.119581699371338,0.190686877816916,-0.234042584896088,0.107491612434387,-0.159526959061623,-0.283963054418564,-0.232008755207062,-0.974036440253258,-0.539348967373371,0.0958866477012634,-0.543858379125595,-0.211779117584229,0.16492623090744,-0.220581647008657,-0.257446557283401,0.169616460800171,0.0099270585924387,-0.330563634634018,-0.00922748446464539,-1.68805354833603,-0.382825396955013,0.123779058456421,-0.447309389710426,-0.103730618953705,0.185886144638062,-0.345273127779365,-0.327450409531593,0.129072517156601,-1.56348061561584,-0.535447061061859,-0.14657187461853,-1.11867502331734,-0.430201880633831,-0.385686457157135,-0.931590527296066,-0.347146017476916,-0.815052315592766,-0.395255532115698,0.471891283988953,-0.773804541677237,-1.08471223711967,0.203096598386765,-0.547897011041641,-0.888229161500931,0.326796382665634,-0.512645661830902,-0.160128060728312,0.455894231796265,-0.661014348268509,-0.647040456533432,0.679027810692787,-0.580028116703033,-0.744662910699844,0.761743798851967,-0.0409272611141205,-1.3953600525856,0.172465801239014,-0.602970600128174,-0.606892347335815,0.467066258192062,-0.430325299501419,-0.718225955963135,0.703239038586617,-0.31782703101635,-1.43091726303101,0.627389535307884,-0.487035572528839,-0.454901300370693,0.299909889698029,-0.336730718612671,-0.248993210494518,0.554051265120506,-0.501437574625015,-0.593170970678329,0.628696218132973,-0.42058390378952,-0.42745703086257,0.340079128742218,-0.520628750324249,-0.654297769069672,0.452204115688801,-0.6667859852314,-0.21264011785388,0.744630008935928,-0.106990933418274,-0.44138303399086,0.254436925053596,-0.557214349508286,-0.978922784328461,0.280337765812874,0.156661182641983,-1.31259870529175,0.547540087252855,0.391495108604431,-1.0171487480402,0.260983668267727,0.478960484266281,-1.37150341272354, -0.566141907125711,0.349506482481956,-1.28557473421097,0.613147094845772,-0.114683955907822,-1.68183481693268,0.264705799520016,-0.0414023399353027,-1.02856466174126,0.673489317297935,0.700453579425812,-1.04930993169546,-0.0760187953710556,0.266860693693161,-1.76040428876877,-0.270253475755453,0.238802790641785,-1.0443702340126,0.322256579995155,0.403842031955719,-0.876057460904121,-0.00760461390018463,0.551438599824905,-1.17230871319771,0.4213039688766,0.29405665397644,-1.08754473924637,0.828320994973183,-0.245462745428085,-1.61196106672287,0.367835588753223,0.0529963374137878,-0.898548401892185,0.599454030394554,0.623480051755905,-0.870830714702606,-0.489475302398205,0.221883207559586,-1.73134851455688,-0.403145480901003,-0.12006539106369,-0.512134417891502,0.292263112962246,0.014275848865509,-0.297845184803009,0.0117675140500069,-0.105693340301514,-0.306659058202058,0.382189352065325,-0.144893527030945,-0.0094885379076004,0.526309747714549,-0.63409548997879,-1.10509151220322,0.163390904664993,-0.0680680871009827,-0.130869403481483,0.321011811494827,-0.0099225640296936,0.0495082400739193,0.229730524122715,-0.490814208984375,-0.865957066882402,-0.0267265774309635,0.27107310295105,-1.05232042074203,-0.0371726453304291,0.400172054767609,-0.570402756333351,-0.195442050695419,0.429417997598648,-1.60318034887314,-0.276849056128412,0.534460306167603,-0.984960325062275,0.322804868221283,-0.164007216691971,-1.63172721862793,-0.135003924369812,0.319743692874908,-0.752515889704227,0.0912326276302338,-0.240173194557428,-1.23271772265434,0.650220066308975,0.6582912504673,-1.03113120049238,0.000526726245880127,0.0953496098518372,-0.412402883172035,-0.141948372125626,-0.390061110258102,-0.517783135175705,0.436228185892105,-0.48186269402504,-0.566487729549408,0.512133926153183,-0.347667008638382,-0.590064346790314,0.255034267902374,-0.358923256397247,-0.615238279104233,0.385126620531082,-0.518757373094559,-0.530904248356819,0.48393115401268,-0.171636939048767,-0.466369554400444,0.353467643260956,-0.634886980056763,-0.597543001174927, -0.558372288942337,-0.103210151195526,-0.301517689600587,0.113359808921814,-0.213774979114532,-0.520200043916702,0.289391726255417,-0.347961962223053,-0.362412502989173,0.419369608163834,0.00715452432632446,-0.173598356544971,-0.491564586758614,0.0336188673973083,-0.27473209798336,-0.472171545028687,-0.0122740268707275,-0.396566286683083,0.117824092507362,-0.384112238883972,-0.31392177939415,0.63079497218132,-0.146400511264801,-0.157719692215323,0.275413125753403,0.0327419638633728,-0.0893615074455738,-0.885388433933258,0.0948615074157715,-0.136915434151888,-0.26893025636673,-0.0710887908935547,0.0279721021652222,0.138681352138519,0.0598639249801636,-0.103415735065937,-0.14306977391243,0.0931967496871948,-0.230934232473373,-0.303735077381134,-0.0458182692527771,-0.228127621114254,0.1222785115242,-0.124405741691589,-0.0091896578669548,0.279114872217178,0.0827516317367554,0.0175598375499249,-0.399981701280922,0.00074458122253418,-0.211037091910839,-0.29518311470747,0.00440806150436401,-0.294201582670212,0.0200431570410728,-0.978784050559625,-0.886991456151009,-0.162180289858952,-0.940927870571613,-0.891385100781918,-0.142000179737806,-1.07610688358545,-1.16291238367558,-0.153346821665764,-1.05030568689108,-1.17079359292984,-0.0884987413883209,-0.846892915666103,-0.880539238452911,-0.315472241491079,-0.932804372161627,-0.882820978760719,-0.237788140773773,-0.714796051383018,-1.57059174776077,-0.548302025534213,-0.588282856158912,-1.59975337982178,-0.669621333479881,-0.182153299450874,-1.61395770311356,-1.00776356458664,-0.306853611022234,-1.68484991788864,-0.738649420440197,-0.660320993512869,-1.59988933801651,-0.365964025259018,-0.661747757345438,-1.73061722517014,-0.105790734291077,-0.228995535522699,-1.75813961029053,-0.770264491438866,-0.2881482206285,-1.65888768434525,-0.808508284389973,-0.894219882786274,-1.58352959156036,0.0588093735277653,-0.789857339113951,-1.6258253455162,-0.144459918141365,-0.798244070261717,-1.53691309690475,-0.216908061876893,-0.849562797229737,-1.52079194784164,-0.192495547235012,-0.779349364340305, --1.63012462854385,-0.0747807901352644,-0.785712279379368,-1.55408805608749,-0.240479871630669,-0.811278145760298,-1.53068804740906,-0.0849152952432632,-0.833982669748366,-1.55280786752701,-0.113594399765134,-0.904856814624509,-1.41437256336212,-0.12956104055047,-0.863512429408729,-1.45935073494911,-0.296830430626869,-0.909424915909767,-1.3167367875576,-0.38617616891861,-0.938505575992167,-1.29518890380859,-0.277635186910629,-0.870515186921693,-1.45885524153709,-0.299293667078018,-0.877362057566643,-1.5516175031662,-0.0360435098409653,-1.17330926656723,-0.210334867238998,-1.14197710156441,-1.53048777580261,-0.212719239294529,-0.979735240340233,-1.51798731088638,-0.0528367310762405,-0.958590127527714,-1.49932718276978,-0.0500786490738392,-0.972195960581303,-1.33678928017616,-0.286769866943359,-1.03026811778545,-1.5037140250206,-0.429954119026661,-0.845174431800842,-1.33674713969231,0.10394499450922,-1.02962885051966,-1.753302693367,-0.00404740124940872,-0.704540878534317,-1.20822003483772,-0.234839245676994,-1.13551679253578,-1.72067421674728,-0.328600108623505,-0.673594757914543,-0.333164599163865,-0.196015916764736,-1.88493144512177,-0.928145405967371,0.0972405821084976,-1.34496703743935,-1.21348017454147,0.0172704458236694,-1.38279813528061,-0.962750963866711,-0.394314173609018,-1.42927867174149,-0.818899152000085,-0.0158789344131947,-1.57278960943222,-0.831283870502375,-0.0178453382104635,-1.55520343780518,-1.21054276823997,-0.0283797411248088,-1.48473608493805,-1.13914060592651,-0.0553648229688406,-1.51745384931564,-1.21568721532822,-0.0182617977261543,-1.38491061329842,-1.34035083651543,-0.0517212385311723,-1.21273133158684,-1.28755381703377,-0.183337140828371,-1.24153313040733,-1.16369667649269,-0.524397224187851,-1.27023828029633,-0.988663427531719,-0.652743399143219,-1.33084332942963,-1.24157583713531,-0.225758858025074,-1.30582743883133,-1.2358755171299,-0.307749807834625,-1.19232767820358,-1.082549482584,-0.618860181246419,-0.846830457448959,-1.40191307663918,-0.066195247520227,-0.963404387235641,-1.45534926652908, --0.0160301229916513,-0.973918877542019,0.463012427091599,-0.399076085537672,-1.05532047152519,0.473171502351761,-0.426787847653031,-1.0028777346015,-0.568633250892162,0.461203601676971,-1.76745009422302,-0.290632411837578,-0.20784330368042,0.0591739416122437,-0.643232792615891,0.431973963975906,-1.73210948705673,-1.05799779295921,0.506798107177019,-1.48795562982559,-0.635327786207199,0.508501514792442,-1.77859276533127,-0.499645665287971,0.569148600101471,-1.79546529054642,-0.415160820615711,0.624556291848421,-1.71288400888443,-0.730841032993339,0.610997498035431,-1.43282625079155,-0.71064954996109,0.616002380847931,-1.70805931091309,-0.61155766248703,0.703620404005051,-1.66852462291718,-0.86862975358963,0.7359469383955,-1.37119683623314,-1.23374655842781,0.603831201791763,-0.940894015133381,-0.986086428165436,0.505680155940354,-1.42272534966469,-1.05250853300095,0.53170613758266,-1.46187174320221,-1.36509758234024,0.401145558804274,-1.15019479393959,-1.35000750422478,0.268483005464077,-0.917313430458307,-1.259616792202,0.278904568403959,-1.44404339790344,-0.88599818944931,0.328463323414326,-1.67602497339249,-1.09106206893921,0.264863982796669,-1.42981365323067,-1.34013596177101,0.221117757260799,-1.12923595309258,-1.29205501079559,0.141854986548424,-1.25630441308022,-1.03679569065571,0.268717058002949,-1.43940562009811,-1.26934358477592,0.164550870656967,-1.18400457501411,-1.33162161707878,0.170840576291084,-0.902971304953098,-1.00687392055988,0.299742586910725,-1.46472823619843,-0.998554944992065,0.352160945534706,-1.44832834601402,-1.23310708999634,0.294229298830032,-0.979626348242164,-1.2874656021595,0.143346101045609,-0.677727848291397,-1.2423554956913,0.0294600501656532,-0.377243399620056,0.643371492624283,-0.0647464115172625,-0.685947507619858,0.541984170675278,0.0188703611493111,-0.628669857978821,0.690366208553314,0.0452869087457657,-0.812984392046928,0.662474185228348,0.0978323332965374,-1.0123852416873,0.789737045764923,0.0577396303415298,-0.918662808835506,0.579181492328644,0.0175862992182374,-0.419731378555298, -0.501993507146835,-0.0282794646918774,-0.507614195346832,0.258750915527344,0.149798773229122,-0.518481612205505,0.459853887557983,0.177019538357854,-0.670243561267853,-0.00187498331069946,0.282978817820549,-0.0338888168334961,0.103685975074768,0.2212273478508,-0.231545686721802,0.113430440425873,0.223217144608498,-0.810355663299561,0.196762144565582,0.0192168429493904,-0.221711575984955,0.171051442623138,-0.0962959348689765,-0.118139326572418,0.0858519077301025,-0.0620643347501755,-0.167870730161667,0.588023543357849,-0.256728708744049,-0.874326517805457,0.352475464344025,-0.301404908299446,-0.78772203810513,-0.252145886421204,-0.271027490496635,0.189877271652222,0.2628413438797,-0.340760406805202,-0.285640478134155,0.264218509197235,-0.40560057759285,-0.430792301893234,0.00673335790634155,-0.409826710820198,-0.0992251634597778,-0.325407147407532,-0.377569124102592,0.126673996448517,-0.341061055660248,-0.370486065745354,0.202517211437225,-0.0038030743598938,-0.406974390149117,-0.0593679547309875,-0.295335173606873,-0.380059115588665,0.139750480651855,-0.378143936395645,-0.375140596181154,0.133414447307587,-0.326081782579422,-0.321459792554379,0.0798966288566589,-0.288774698972702,-0.993327848613262,-0.794550366699696,-0.533366590738297,-1.02985824644566,-0.84886822104454,-0.173271685838699,-1.06655183434486,-0.913937158882618,-0.17359933257103,-0.90988864377141,-0.673690974712372,0.0973314642906189,-0.923509158194065,-0.745869144797325,-0.0737363696098328,-0.894560519605875,-0.615725085139275,-0.162564188241959,-0.906132575124502,-0.525563254952431,-0.140157580375671,-0.972464360296726,-0.50644513964653,-0.255940586328506,-0.90506773814559,-0.397646546363831,-0.140161037445068,-0.905071318149567,-0.444031953811646,-0.243930250406265,-0.953189566731453,-0.357929766178131,-0.310792580246925,-0.92523542791605,-0.28504741191864,-0.366210520267487,-0.888447150588036,-0.247598528862,-0.674130722880363,0.214514032006264,-1.80752056837082,-0.739031746983528,0.183690540492535,-1.75959813594818,-0.572887051850557,0.0100230872631073, --1.83275264501572,-0.34566493332386,0.248469546437263,-1.80144190788269,0.0206318795681,0.360508054494858,-1.82097536325455,0.0365314781665802,0.267589949071407,-1.76064372062683,-0.0940841436386108,0.185770235955715,-1.65970820188522,-0.330398947000504,-0.22897476144135,-1.52610743045807,-0.162240538746119,-1.08599814772606,-1.02792278677225,-0.275509208440781,-0.811426743865013,-0.159524917602539,-0.342796564102173,-0.646792143583298,0.238619327545166,0.140015810728073,-0.384338945150375,-0.0822890996932983,0.0821325778961182,-0.211420252919197,-0.0450571775436401,-0.0624195039272308,-0.094107611104846,0.0159868001937866,-0.225993797183037,-0.679272338747978,-0.0697017312049866,-0.811735868453979,-0.849480699747801,0.409611508250237,-0.735841482877731,-0.958130948245525,0.149634480476379,-0.795555338263512,-0.916591975837946,0.440091006457806,-0.764659389853477,-0.905681870877743,0.602942109107971,-0.757105529308319,-0.932175133377314,0.390058718621731,-0.601646989583969,-0.877216130495071,-0.176920831203461,-0.57350155711174,-0.979913700371981,-0.320035368204117,-0.719186455011368,-0.979765556752682,0.346137285232544,-0.547452092170715,-0.978800300508738,-0.500799655914307,-0.642797008156776,-0.992736341431737,-0.487750496715307,-0.648183912038803,-0.895484276115894,-0.675601825118065,-0.645232990384102,0.362064525485039,-1.50454533100128,-0.695700973272324,0.280720619484782,-1.40536314249039,-0.935022719204426,0.0897950530052185,-1.15775060653687,-1.09173680841923,0.282906364649534,-1.27161803841591,-1.18121129274368,0.456614784896374,-1.35181203484535,-1.17167216539383,0.0875909924507141,-1.45870733261108,-1.44891166687012,0.166395127773285,-0.826002279296517,-1.40183541178703,-0.0147994179278612,-0.740057706832886,-0.872867062687874,-1.03983943536878,-0.589378334581852,-1.12381169199944,-0.797221004962921,0.749100049957633,-1.32908597588539,-0.359024465084076,0.716595113277435,-1.32193976640701,-0.3348781876266,0.746855601668358,-1.35681283473969,-0.208520866930485,1.08027583360672,-0.874048799276352,-0.109540186822414, -0.108479976654053,-0.788078486919403,-0.639991953969002,0.042119562625885,-0.996080100536346,-0.96117427945137,0.00461292266845703,-0.952278882265091,-0.870966598391533,-0.135560870170593,-1.02222387492657,-1.0112302005291,-0.0868613719940186,-1.02047815918922,-1.02362504601479,-0.146691769361496,-1.06340983510017,-0.933931786566973,-0.149877548217773,-1.02598792314529,-0.940486714243889,-0.321092069149017,-1.17816039919853,-1.14380159974098,-0.141303181648254,-0.867534726858139,-1.07741844654083,-0.610852882266045,-0.982541620731354,-1.12641708552837,-0.588861063122749,-1.10812251269817,-1.22243219614029,-0.443361626937985,-0.824484929442406,-1.086365878582,-0.976465716958046,-1.53789275884628,-0.452678106725216,-0.775227652862668,-1.6736888885498,-0.364900331944227,-0.689049578155391,-1.71539217233658,-0.219601273536682,-0.596222884953022,-1.79130858182907,-0.185483548790216,-0.490969687700272,-1.74739122390747,-0.0674339309334755,-0.6325961984694,0.129272639751434,-0.364242721349001,-0.565939485713898,0.170876204967499,-0.43559592962265,-0.654213185422122,0.362071692943573,-0.22637601941824,-0.687422588467598,0.440185129642487,-0.0428324453532696,-0.753406144678593,0.236232101917267,-0.0577331185340881,-0.616674195975065,0.0155924558639526,-0.158999383449554,0.129345624591224,-0.117947399616241,-0.800696611404419,0.536330007016659,-0.837090738117695,-1.00896234810352,0.488801307976246,-1.48684495687485,-0.877386868000031,0.680726021528244,-1.9494606256485,-0.243343941867352,-0.120817333459854,-1.94921433925629,-0.1126778870821,-0.190003544092178,-1.92570245265961,-0.0345001723617315,0.43361933529377,-1.87324464321136,-0.473251849412918,-0.385259501636028,-1.9014036655426,-0.479943133890629,0.0957311317324638,-1.44762003421783,-0.873938336968422,0.360749019309878,-0.4359050989151,-0.92002559453249,-0.303055366501212,-0.0642603039741516,-0.479574747383595,0.0958379060029984,-0.0367724895477295,-0.277581246569753,-0.0164004750549793,-0.000214815139770508,0.00446730200201273,0.115737710148096,0.066347599029541,-0.0668699890375137, -0.471642404794693,0.0681577324867249,-0.0968799479305744,-0.28078731149435,-0.328589081764221,-0.739094954915345,-0.0987741053104401,-1.03931672871113,-0.959939545020461,-0.198773354291916,-1.65169352293015,-0.611183874309063,-0.36436827853322,-1.96124738454819,-0.0193110825493932,-0.271962734870613,-1.99372178316116,0.000945808365941048,0.1198187507689,0.00547277927398682,-0.0266299424692988,-0.0372786670923233,-0.0291199088096619,-0.360936975106597,-0.360554218292236,0.402258992195129,-0.263919807970524,-0.789403036236763,-1.38874754309654,-0.45251377671957,-0.927004743367434,-1.70813924074173,-0.428895942866802,-0.576294593513012,-0.798242865522752,-0.9472302980721,-0.690667703747749,-0.899437974672765,-0.781065449118614,-1.01064538955688,-1.08784112334251,-0.932668766006827,-0.663268275558949,-0.952260315418243,-0.876212898641825,-0.960829481482506,-0.235816597938538,-0.969483587890863,-0.979091890156269,-0.287616968154907,-1.02457296103239,-0.924376294016838,-0.603197932243347,0.153914332389832,-1.48801898956299,-0.315858885645866,0.484160389751196,-1.72313296794891,-0.0358567237854004,0.557182665914297,-1.44492346048355,-0.176533997058868,0.703897319734097,-1.2642530798912,0.154013276100159,0.112214632332325,-1.33277887105942,-0.2021364569664,0.45886567234993,-0.206949084997177,-0.760505020618439,-0.20684977248311,-0.533713161945343,-0.453402370214462,0.117212038487196,-0.339777648448944,-0.748437851667404,0.369959194213152,-0.550714522600174,-0.867775611579418,0.135796960443258,-0.403814733028412,-0.385615468025208,0.191159754991531,-1.33512955904007,-0.466694861650467,0.0887733027338982,-0.510048478841782,-0.639357924461365,0.385494664311409,-1.18107467889786,-0.67744380235672,0.321061376482248,-0.998740330338478,-0.348982870578766,-0.827579278498888,-0.367344483733177,0.0385461449623108,-0.0530496388673782,-0.382382594048977,-0.0468879342079163,0.291289303451777,-0.285233974456787,-0.184431731700897,0.00773943588137627,-0.482649482786655,0.0324724316596985,-0.22056663222611,-0.322937473654747,-0.142232596874237, -0.0835350416600704,-0.761234298348427,0.0382455587387085,-0.158981988206506,-1.15702819824219,-0.148173868656158,-0.0046728104352951,-0.56984081491828,-0.0738230347633362,0.179101053625345,-0.129256397485733,-0.432093590497971,-0.914709061384201,-0.708982557058334,-0.133158147335052,-0.47569876909256,-0.429983850568533,-0.0513978004455566,-0.0898447073996067,-0.230612255632877,-0.200741529464722,-0.247204452753067,-0.239507287740707,-0.0610010623931885,-0.314633082598448,0.0227584838867188,0.0141163468360901,0.236317418515682,-0.635228008031845,-0.0153646469116211,-0.35969839990139,-0.840994983911514,-0.130035877227783,0.0621507614850998,-0.753082320094109,-0.100749731063843,0.342332988977432,-0.803736090660095,0.0178537368774414,0.0721935480833054,-0.214795255102217,0.00691515207290649,-0.132657086476684,-0.125388767570257,-0.0162264704704285,0.337592884898186,0.0201275944709778,0.0562210083007813,0.170903712511063,-0.359164923429489,0.0132299661636353,0.0545078292489052,0.094386875629425,-0.000348985195159912,0.0376177038997412,-0.111659239977598,-0.797183007001877,-0.181507673114538,-1.00614205561578,-0.687916219234467,0.0951725319027901,-0.929187695961446,-0.830732047557831,0.38325572013855,-0.970275308936834,-0.886030741035938,0.297257609665394,-1.20028293132782,-0.792864665389061,0.0555050075054169,-1.11754658818245,-0.0707588791847229,-0.534370124340057,-0.077602656558156,-0.360055685043335,0.172607861459255,-1.07318836450577,0.0568665266036987,0.170895107090473,-0.440014980733395,-0.0464766621589661,0.128741379827261,-0.731457054615021,0.00754618644714355,-0.0282463133335114,-0.178801883012056,0.0132384300231934,0.332321956753731,-0.570051297545433,-0.163530051708221,0.514390625059605,-0.628096759319305,-0.430397987365723,-0.170853137969971,-1.09583702683449,-0.141789257526398,0.371360719203949,-0.856171011924744,-0.414947867393494,0.447247892618179,-0.614659637212753,-0.768319383263588,0.00466416776180267,-0.795937642455101,-0.375596284866333,-0.023324266076088,-0.536932975053787,-0.220144867897034,-0.355490427464247, -0.736695349216461,-0.0464559197425842,-0.1133873462677,-0.170537620782852,-0.0740815401077271,-0.0950425714254379,0.250872626900673,-0.0232149958610535,0.129019301384687,0.294588513672352,-0.125794053077698,0.00348544120788574,0.744616985321045,-0.0805718898773193,0.269427016377449,0.539594203233719,-0.0567589402198792,0.439677678048611,0.493677347898483,-0.585567384958267,-0.826716344803572,-0.0757768750190735,-0.125147521495819,-0.222824946045876,-0.327450312674046,-0.132217824459076,0.164514519274235,-0.291331887245178,-0.347519755363464,-0.00542111694812775,-0.596240565180779,-0.159460723400116,-0.18150383234024,-0.406012147665024,-0.500164836645126,-0.80200145766139,0.452740222215652,-0.228857755661011,-0.262933552265167,-0.671826362609863,-0.034987211227417,-0.000542029738426208,0.251134811900556,-0.0599483251571655,-0.205343455076218,-0.086547520942986,-0.0914236307144165,-0.200725957751274,0.162488639354706,-0.0152613520622253,0.138587918365374,0.211169718764722,-0.0206103920936584,0.342012815177441,0.338891059160233,-0.579052925109863,-0.834397487342358,-0.00940825045108795,-0.0872521996498108,-0.25827494263649,-0.12809815723449,0.0763322710990906,0.042439341545105,-0.502073459327221,-0.0989903211593628,-0.366794526576996,-0.867701411247253,-0.0599526166915894,-0.535392314195633,-0.282717771828175,0.00795555114746094,0.236040290445089,-0.387159138917923,-0.0612795948982239,0.248815357685089,-0.364061430096626,-0.089681088924408,-0.613943129777908,-0.180897079408169,-0.753768607974052,0.214332286268473,-1.12567630410194,0.0209605097770691,0.206476356834173,-0.305673565715551,-0.0992363095283508,0.165238294750452,-0.609658181667328,0.0276575088500977,0.00722385942935944,-0.285554103553295,0.00196003913879395,0.299101080745459,-0.32029052823782,-0.0619013905525208,0.422793675214052,-0.250468760728836,-0.742988139390945,0.495338633656502,-1.11489436030388,-0.635218232870102,0.546896709129214,-1.10856205224991,-0.431254863739014,0.32899209856987,-1.22919631004333,-0.572363048791885,0.320035573095083,-1.12945121526718, --0.572726726531982,0.160638570785522,-1.09005330502987,-0.569332957267761,0.13165832310915,-1.24069529771805,-0.799389734864235,0.0323106944561005,-1.14488813281059,-0.770677775144577,0.00378203392028809,-1.12211884558201,-1.16459730267525,0.222936488687992,-1.26460558176041,-0.937081795185804,0.0957242082804441,-1.3199542760849,-0.670822530984879,-0.00947555899620056,-1.15963505208492,-0.250731587409973,-0.883877962827682,0.122405141592026,0.733480557799339,0.000668663531541824,-1.42722949385643,0.857880428433418,-0.0279158391058445,-0.724990725517273,0.645498186349869,-0.163523640483618,-0.837678663432598,0.610428184270859,-0.0192349478602409,-0.639753371477127,0.631235688924789,0.217839807271957,-0.714297235012054,0.606724709272385,0.218199577182531,-0.788194075226784,0.498619824647903,0.335383258759975,-1.21077424287796,0.434503048658371,0.574754863977432,-1.35413587093353,0.332120031118393,-0.701145634055138,-0.65551770478487,0.0554982423782349,-0.348574616014957,-0.626843899488449,0.108081459999084,-0.305856555700302,-0.819723635911942,0.389957427978516,-0.680741392076015,-0.681289792060852,-0.215940952301025,-0.254692897200584,-0.981877267360687,-0.301165342330933,0.0969648361206055,-0.996201634407043,-0.307521402835846,0.00446648895740509,-1.25043386220932,-0.0144059658050537,-0.317300237715244,-1.03228399157524,-0.300880610942841,-1.26066425442696,-0.31252558529377,-0.108462750911713,-0.359794087707996,-1.01667851209641,0.118328154087067,-0.130401063710451,-0.363320618867874,0.134030103683472,-0.712735027074814,-0.693208903074265,0.411148130893707,-1.12217515707016,-0.229966007173061,0.166491568088531,-0.242042377591133,-0.269087687134743,0.100769519805908,-0.0249356031417847,-0.20678374171257,0.42602664232254,-0.580700010061264,-0.783620983362198,0.29514491558075,0.191806554794312,-1.12503057718277,0.286261320114136,0.18598335236311,-1.06536403298378,0.184738636016846,0.0971902809105814,-1.0837641954422,0.386663913726807,-0.216013811528683,-1.18722641468048,0.282788872718811,0.0394869595766068,-1.07675874233246, -0.196935176849365,0.218870207667351,-1.28898072242737,0.00193029642105103,0.224289774894714,-1.06246054172516,0.107405245304108,0.017353821080178,-1.23489212989807,0.111573040485382,0.0501781939528883,-1.22688108682632,-0.0700199604034424,0.0918472558259964,0.0994082093238831,0.210371851921082,-0.104765390977263,-0.174280643463135,0.441082060337067,0.0913872420787811,-0.420010358095169,0.400219619274139,0.0507009327411652,-0.722297675907612,0.204039335250854,0.362598819192499,-0.616779312491417,0.591549932956696,-0.135766692925245,-0.984824597835541,0.722402930259705,-0.469493796583265,-0.921722784638405,0.605838894844055,-0.535340715199709,-0.811921644955873,0.552903383970261,-0.189206102862954,-0.92776882275939,0.362987041473389,-0.158865392906591,-0.804672259837389,0.342929363250732,-0.153157711029053,-0.793451622128487,0.548156529664993,-0.194033382460475,-0.986717030405998,-0.454008137738128,0.226529628038406,-1.84478384256363,-1.11771890521049,-0.00465207546949387,-1.6460702419281,-1.07663878798485,0.0748495608568192,-1.62030977010727,-1.14704442024231,0.135617822408676,-1.5607618689537,-1.13093340396881,0.188261423259974,-1.60446971654892,-0.265436202287674,0.25481715425849,-1.76076924800873,-0.307622671127319,0.136973440647125,-1.71950018405914,-0.28661322593689,-0.165765523910522,-1.50846338272095,-0.289139449596405,-0.0144284814596176,-1.68091893196106,-1.06449216604233,0.16429740190506,-1.62029737234116,-0.93946036696434,-0.195855438709259,-1.51280826330185,-0.168468117713928,0.220657639205456,-1.75623780488968,0.0676005780696869,0.221289999783039,-1.86325097084045,-0.0438088178634644,0.413723709061742,-1.64981490373611,-0.219627469778061,0.333161994814873,-1.50773352384567,0.500883191823959,0.428133022040129,-1.72054809331894,0.0874418020248413,0.201159508898854,-1.88936537504196,-0.104937493801117,0.434357030317187,-1.73069816827774,0.140124291181564,0.530587268061936,-1.71039319038391,-0.269499510526657,0.310482388362288,-1.91517037153244,-0.530347302556038,0.282722512944019,-1.85887986421585,-0.0905241668224335, -0.223207470029593,-1.70004618167877,0.063707172870636,0.180934749543667,-1.77629834413528,-0.0909239947795868,-0.230772614479065,-1.654576420784,-0.288127761334181,0.252406626939774,-1.82939797639847,-0.052735298871994,0.232838809490204,-1.61703699827194,0.0571478605270386,-0.448117449879646,-1.50010633468628,0.205808341503143,0.0550332516431808,-1.73953950405121,0.220967292785645,0.166275478899479,-1.76006007194519,0.0477449297904968,0.390975039452314,-1.55329662561417,0.0494479537010193,0.17322900891304,-1.57371354103088,-0.0181276202201843,0.291402906179428,-1.56210047006607,0.01323002576828,0.525906722992659,-1.47996717691422,0.442232847213745,0.37661231867969,-1.18142274022102,0.146359294652939,-0.012157067656517,-1.61957740783691,-0.596102751791477,-0.231007367372513,-1.60335147380829,-0.652210488915443,0.107852101325989,-1.78869479894638,0.234708577394485,0.0607026889920235,-1.5190954208374,0.262033522129059,-0.358142033219337,-1.38127291202545,-0.00537121295928955,0.138566911220551,-1.31071496009827,-0.0582769513130188,0.0675136898644269,-1.31206732988358,-0.679475575685501,0.234143733978271,-1.17335957288742,-0.676183562725782,-0.153554499149323,-1.30300667881966,0.106845140457153,0.123424612451345,-1.06818357110023,0.0222182869911194,0.147744096815586,-0.948643147945404,-0.140829265117645,0.409215357154608,-0.247837863862514,-0.0127153396606445,0.131514966487885,-0.545257464051247,0.00775164365768433,0.143591076135635,-0.368070356547832,-0.0898277759552002,0.0905200950801373,-0.418094225227833,-0.155887126922607,0.384046860039234,-0.754146486520767,-0.0252849459648132,0.200729846954346,-0.702101469039917,-0.411120072007179,-0.262889742851257,-1.32877799868584,-0.705314218997955,0.0516978800296783,-1.25852936506271,0.0419220924377441,-0.242114245891571,-0.998775660991669,0.32399445772171,-0.610424071550369,-0.930039167404175,0.462609618902206,0.461068645119667,-1.6298394203186,0.255940847098827,0.465041346848011,-1.77761292457581,0.632156863808632,0.369754046201706,-1.51210629940033,0.704165622591972,0.12577336654067, --1.4799485206604,-0.0647416114807129,0.107844009995461,-1.0303907096386,0.0376410484313965,0.00665517151355743,-1.17634838819504,0.0231376886367798,0.150520838797092,-0.52772182226181,-0.0115888118743896,0.123230401426554,-0.289502084255219,0.421325504779816,-0.43221440911293,-0.759446322917938,0.194569170475006,-0.0228681266307831,-0.737771019339561,0.221550822257996,-0.215182900428772,-0.744309440255165,0.326380729675293,-0.733021283522248,-0.98417916893959,-0.377445101737976,-0.181986272335052,-1.4828507900238,-0.486113905906677,0.0166554600000381,-1.51554173231125,0.0147702097892761,0.0138760507106781,-1.07909941673279,0.102820456027985,-0.28395876288414,-1.06152606010437,0.0150561332702637,-0.105585098266602,-1.11052399873734,-0.00397872924804688,-0.13348994590342,-1.13116753101349,0.0103103518486023,0.129484310746193,-1.53780144453049,-0.213049620389938,-0.0510594248771667,-1.59130167961121,0.382210373878479,-0.621823787689209,-0.872920542955399,0.154180228710175,-0.302593365311623,-0.976602524518967,0.339866876602173,-0.264115899801254,-1.10626715421677,0.510487020015717,-0.736781142652035,-0.924184381961823,0.520186543464661,0.274489196483046,-0.817852407693863,0.540424436330795,-0.0178348831832409,-1.22088515758514,0.224027454853058,0.219388946890831,-1.23713928461075,0.298263549804688,0.344210304319859,-1.23256596922874,-0.0634363889694214,-0.620739951729774,-0.922543346881866,-0.374611437320709,-0.366030670702457,-0.997961834073067,0.106493771076202,-0.245501197874546,0.0930648744106293,0.370196163654327,-0.703705534338951,-0.0575125813484192,-0.137447535991669,-0.0703853368759155,-0.722220674157143,-0.318381726741791,0.214258722960949,-0.924633994698524,0.0359195470809937,0.177406877279282,0.161966532468796,0.111692905426025,-0.568989440798759,0.169617921113968,0.103977918624878,-0.257176958024502,0.0838595926761627,0.0682847499847412,-0.0691134892404079,0.12217104434967,-0.0523295402526855,0.0488855466246605,-0.191036209464073,0.0351663827896118,-0.439706685487181,-0.257327750325203,0.366866767406464, --0.449902355670929,0.103290528059006,0.0910968780517578,0.0147271752357483,0.251713916659355,0.0864912867546082,-0.210443735122681,0.159328484907746,0.387841522693634,-1.04322250187397,-0.322349332273006,-1.08312141895294,0.422586668282747,-1.20102614164352,-1.10356965661049,0.241086706519127,-1.23276489973068,-0.493199408054352,-0.909265495836735,0.507795587182045,-0.19731193780899,-0.326896509155631,0.544070176780224,0.476401537656784,-1.2058097422123,-0.0324674695730209,-0.122202157974243,-0.726261854171753,0.194405853748322,-0.853511467576027,-0.36427537270356,-1.61668556928635,-0.521425902843475,-0.624645039439201,-1.41182786226273,-0.245866000652313,-0.673794537782669,-1.23480641841888,-0.282564461231232,0.0582860633730888,-1.25619229674339,-0.250638604164124,-0.356486402451992,-1.43396711349487,-0.133592188358307,-0.2663344591856,-1.46021920442581,-0.761410094797611,-0.426963053643703,-1.62630927562714,-0.866676189005375,0.0856470391154289,-1.61124390363693,0.381631344556808,-0.517334334552288,-1.14434051513672,0.527702778577805,-0.152318477630615,-1.078982681036,-0.214929386973381,-1.25127476453781,-1.33237832784653,-0.469105780124664,-0.248903259634972,-1.60081297159195,0.200961798429489,-1.07428467273712,-0.960251972079277,0.762152016162872,-0.790796764194965,-0.778181903064251,-0.178391739726067,-0.368736907839775,-1.81416642665863,0.12020468711853,-0.0293937218375504,-1.93254292011261,-0.0846894085407257,-0.963947467505932,-1.07995803654194,0.356544315814972,-0.249869830906391,-1.15155106782913,-0.471363976597786,-1.35420006513596,-0.9652478992939,-0.448629140853882,-0.390840359032154,-1.22568047046661,-0.376381784677505,-1.05825978517532,0.226501762866974,0.27772444486618,-0.953276187181473,0.0737495124340057,-0.472710579633713,-0.994943477213383,-0.582672357559204,0.0172239542007446,-0.401337951421738,-0.567493855953217,-0.895330056548119,-0.40309813991189,1.51029872894287,-0.980291947722435,-0.554458558559418,1.4665607213974,-1.5454478263855,-0.55990469455719,1.12814402580261,-1.5892379283905,-0.391152862459421, -1.11267399787903,-1.88917517662048,-0.00648706406354904,0.388452935963869,-1.85883259773254,-0.159394964575768,0.436783999204636,-0.851359277963638,-1.02338251471519,1.38277241587639,-1.07232999801636,-0.532640337944031,1.45300197601318,-0.690925374627113,-1.41546297073364,1.05513277649879,-1.18937362730503,-0.313736081123352,0.972320899367332,-1.49995857477188,-0.583377160131931,0.821843005716801,-1.30910131335258,-0.304084751754999,1.32313668727875,-1.48129147291183,-0.0909471064805984,1.18151101469994,-0.853959232568741,-1.11013090610504,0.721328064799309,-0.930892370641232,-1.3547942340374,0.222435534000397,-0.545844286680222,-1.74158501625061,0.351296409964561,-0.951610714197159,-1.30235821008682,0.425487771630287,-1.85602921247482,-0.458981513977051,-0.504848018288612,-1.81369471549988,-0.631077468395233,-0.06206114590168,-1.71592944860458,-0.906637728214264,-0.0161633640527725,-1.4623014330864,-0.952802389860153,-0.318580336868763,-1.78614324331284,-0.511006966233253,-0.391287650913,-1.64717763662338,-0.620683878660202,-0.0417197048664093,-1.13010331988335,-1.04167272150517,0.447480604052544,-1.74264240264893,-0.532696090638638,0.185702353715897,-1.63085150718689,-0.504386804997921,0.0205581188201904,-0.744760751724243,-1.70357537269592,-0.0278804004192352,-1.27743226289749,-0.717862784862518,0.191107541322708,-1.06206524372101,-0.989286959171295,-0.190398156642914,-1.23233529925346,-0.955416187644005,-0.13196074962616,-1.25813439488411,-0.677021682262421,0.0568366646766663,-1.3654742538929,-1.28675165772438,-0.0870075188577175,-1.75141614675522,-0.659917101264,0.142200157046318,-1.64303416013718,-0.949483752250671,0.630430608987808,-0.932287633419037,-1.70001357793808,0.432819783687592,-1.67106920480728,-0.96702978014946,0.101887658238411,-1.78376793861389,-0.750919327139854,-0.0703714340925217,-1.85708826780319,-0.52555413544178,0.512821957468987,-1.75179898738861,-0.401551082730293,0.648750603199005,-1.75341892242432,-0.601584665477276,0.637222588062286,-1.40931317210197,-1.08453164994717,0.392961367964745, --1.34733957052231,-1.08081252872944,0.291617624461651,-1.13474169373512,-1.41225218772888,0.192779205739498,-0.878051310777664,-1.73098349571228,0.342948369681835,-1.18596038222313,-1.41595283150673,0.381008334457874,-1.86426413059235,-0.558666743338108,0.298503488302231,-1.51823765039444,-0.826895393431187,0.297242760658264,-1.98488795757294,-0.0210322737693787,0.0499650910496712,-1.89763432741165,-0.530276238918304,-0.226696684956551,-1.03037869930267,-0.59287728369236,1.06929267942905,-1.06063417345285,-0.270408898591995,1.04112049937248,-0.638205826282501,-1.31259471178055,0.687829554080963,-0.926499560475349,-1.21300995349884,0.495304524898529,-0.943718507885933,-0.879640102386475,0.693118751049042,-0.863223999738693,-1.23036402463913,0.633564412593842,-1.04159760475159,-0.759744763374329,0.758570611476898,-1.49952191114426,-0.380917891860008,0.675932660698891,-1.31748721003532,-0.667100876569748,0.571535483002663,-1.18243199586868,-0.766466587781906,0.686324059963226,-1.00085233151913,-0.752799510955811,0.735671281814575,-1.06018090993166,-0.432585000991821,0.750644996762276,-1.58429032564163,-0.635883241891861,0.139007747173309,-1.53351134061813,-0.748148202896118,0.244270116090775,-1.05724003911018,-1.47772413492203,0.304423391819,-1.2332224547863,-1.30185294151306,0.178337514400482,-1.40510106086731,-0.975409179925919,0.203669100999832,-1.0514360666275,-1.38627135753632,0.199929505586624,-1.29026916623116,-0.267177425324917,0.400921761989594,-1.77864891290665,-0.438603099435568,-0.697722122073174,-1.2877149283886,-0.879167884588242,0.117925941944122,-1.36930450797081,-0.453225895762444,0.323707342147827,-0.893499493598938,-1.15298178792,0.710799798369408,-1.2900019288063,-0.738800823688507,0.733068183064461,-1.74011224508286,-0.6532923579216,-0.17549791932106,-1.48310613632202,-0.862524006515741,0.0711011439561844,-1.82559072971344,-0.769520193338394,0.000752195715904236,-1.44107580184937,-0.978308409452438,-0.194970101118088,-1.89396893978119,-0.408830046653748,0.191876962780952,-1.61219692230225,-0.862357258796692, -0.753236293792725,-1.62113213539124,-0.564137786626816,0.866755723953247,-1.75916051864624,-0.582179516553879,0.663698434829712,-1.29840937256813,-0.97822542488575,0.561706393957138,-1.51970273256302,-0.874302923679352,0.733191832900047,-1.31860905885696,-0.83112508058548,0.742040738463402,-1.71377682685852,-0.278888076543808,0.700498998165131,-1.73066824674606,-0.964147984981537,-0.0969871282577515,-1.46020311117172,-0.996108829975128,0.143066849559546,-1.83178973197937,-0.426006816327572,0.0215511545538902,-1.35459944605827,-1.06168521940708,-0.113118636887521,-1.82737982273102,-0.659979358315468,0.201379254460335,-1.98000228404999,0.143802164122462,0.21457352489233,-1.36491316556931,-0.768517062067986,-0.0247228890657425,-1.40649098157883,-0.905725300312042,0.608873136341572,-1.20605182647705,-0.802933037281036,0.790233246982098,-1.13511908054352,-1.24076288938522,0.585671983659267,-1.24472552537918,-1.13467478752136,0.548663504421711,-1.41199922561646,-0.513445898890495,0.705326221883297,-1.26331126689911,-0.462090224027634,0.779774911701679,-1.06214952468872,-0.84990069270134,0.814807407557964,-1.20178762078285,-0.838416188955307,0.778324536979198,-1.47303432226181,-0.514006674289703,0.661759681999683,-1.25527662038803,-0.934269174933434,0.200979053974152,-1.11606302857399,-1.2794209420681,0.24252387881279,-0.640323355793953,-1.77115559577942,0.411368541419506,-1.14503771066666,-1.33939158916473,0.344363681972027,-0.755591481924057,-1.67703872919083,0.391960196197033,-0.234375884232577,-1.80412703752518,0.447068743407726,-0.194881268384052,-1.69943159818649,-0.0412715375423431,-0.192005924880505,-1.70613634586334,0.0457171201705933,-0.404392806813121,-1.52264219522476,0.659222006797791,-0.547100581767154,-1.19036221504211,0.23501443862915,-0.370621975882386,-0.717644929885864,-0.112930178642273,-0.592798851430416,-0.823005229234695,-0.112784087657928,-0.122724734246731,-1.62428992986679,0.180711269378662,-0.0687365010380745,-1.39055752754211,0.385701775550842,-0.116589408391633,-1.16131886839867,-0.219797670841217, --0.17666457593441,-1.35584181547165,-0.112828373908997,0.0193755724781113,-1.21633598208427,0.579300284385681,-0.234933672472835,-1.29419723153114,0.829838931560516,-0.0933448597788811,-1.17624199390411,0.477655351161957,-0.312937723472714,-1.46658021211624,0.395166754722595,-0.30516398139298,-1.2927413880825,0.804861046373844,-0.384849738329649,-0.825255393981934,0.146866738796234,-0.393230676651001,-0.847223624587059,0.143220245838165,-0.614399719983339,-1.32831957936287,0.306152611970901,-0.26857396797277,-1.10272684693336,0.564468204975128,-0.920190215110779,-0.86971116065979,-0.291613161563873,-0.519395589828491,-1.28520333766937,-0.0575651526451111,-0.485629081726074,-1.24189877510071,0.516371816396713,-0.328310687094927,-1.05325524508953,0.546986609697342,-0.386695224791765,-0.993607208132744,0.534125715494156,-1.13231262564659,-1.04350331425667,-0.137260779738426,-1.0004771463573,-1.11394952982664,0.163265988230705,-0.463788636960089,-1.85062557458878,0.0729230046272278,-0.362159757176414,-1.82723772525787,-0.152773082256317,-0.307359952479601,-1.86006772518158,-0.210607081651688,-0.379855879582465,-1.89566832780838,0.0480754822492599,-0.375485095195472,-1.89864063262939,0.086219847202301,-0.722654044628143,-1.4587100148201,-0.47538822889328,-0.751472502946854,-1.4927584528923,-0.405363857746124,-0.607874810695648,-1.8132227063179,-0.0425317287445068,-1.01889339089394,-1.25963166356087,0.0239564776420593,-1.43535846471786,-0.699727430939674,-0.389288663864136,-1.32187908887863,-0.861916273832321,-0.326683729887009,-1.10962924361229,-1.1350222080946,-0.190585523843765,-0.587684899568558,-1.76790511608124,0.0962185263633728,-0.484073892235756,-1.79313713312149,0.114237576723099,-0.43966880440712,-1.78147608041763,0.0516079962253571,-0.851617220789194,-1.21379317343235,0.45924886316061,-0.777992457151413,-1.33424833416939,0.298772543668747,-0.776343647390604,-1.39247491955757,0.468365870416164,-0.740006756037474,-1.2495428621769,0.55755527317524,-1.20947253704071,-0.654478326439857,-0.0605450868606567,-1.15805235505104, --0.54863665997982,-0.16521555185318,-0.832186296582222,-1.29304194450378,-0.0553335249423981,-0.950881451368332,-1.03231889009476,0.222504585981369,-1.32189217209816,-0.812145739793777,-0.894412882626057,-0.973778545856476,-1.00564056634903,-0.452193260192871,-1.03124424815178,-1.17903816699982,-0.0222998857498169,-0.864741936326027,-0.926129221916199,0.0724740624427795,-0.864429667592049,-0.86581713706255,0.0767650604248047,-1.22821405529976,-0.812691085040569,-0.218740999698639,-0.887125369161367,-0.918667249381542,0.225832797586918,-0.44985431432724,-1.86183714866638,-0.510055303573608,-0.354679152369499,-1.80033093690872,-0.661525294184685,0.264612719416618,-1.86197292804718,-0.475547760725021,-0.0350046157836914,-1.93645352125168,-0.330878540873528,-1.02681395411491,-1.048284471035,-0.802069023251534,-0.743076205253601,-1.29944670200348,-0.889553643763065,-0.682023853063583,-1.75624537467957,-0.510017395019531,-1.20811030268669,-1.07537117600441,-0.302408367395401,-1.49387413263321,-0.291535228490829,-0.552198559045792,-1.24155253171921,-0.530676513910294,-0.59744967520237,-1.16207055747509,-0.859291308559477,-0.283162772655487,-0.79697048664093,-1.68245422840118,-0.258616968989372,-0.601822853088379,-1.77148908376694,-0.31625309586525,-0.559275224804878,-1.75693166255951,-0.32527169585228,-1.00524298846722,-1.32530882954597,0.388850154355168,-1.19002372026443,-1.19157475233078,0.366874925792217,-1.0726412832737,-1.08396196365356,-0.0186066031455994,-1.22799548506737,-1.11794903874397,-0.122551620006561,-1.15139299631119,-1.23150652647018,0.439961962401867,-0.864384885877371,-1.11817359924316,0.273695535957813,-1.17626905441284,-0.530707262456417,-0.415912121534348,-1.09286117553711,-0.563081435859203,-0.4252028465271,-1.00461935997009,-0.96320928633213,-0.107542991638184,-1.09132532775402,-0.88857201859355,-0.0775275230407715,-1.120336830616,-0.433145936578512,-0.481177926063538,-1.38102453947067,-0.618312552571297,-0.651536151766777,-1.20387966930866,-0.734976515173912,-0.254118904471397,-0.74822610616684,-1.59902209043503, --0.63611226528883,-0.917395532131195,-1.42439728975296,-0.609659284353256,-1.07035453617573,-1.4066344499588,-0.442899455316365,-0.868665728718042,-1.56840002536774,-0.177421126514673,-0.887462627142668,-1.50465905666351,-0.0279987528920174,-1.07307456433773,-1.28735533356667,-0.365555986762047,-1.11090862751007,-0.893728286027908,-0.465363472700119,-0.0397175438010891,-1.32926258444786,0.791519865393639,-0.41941000521183,-1.31358194351196,0.888326080515981,-0.701276659965515,-0.898508459329605,0.107318878173828,-0.673782490193844,-1.11005675792694,0.191516220569611,-0.53720723092556,-1.251470297575,0.582803398370743,-0.590114429593086,-1.00522099435329,0.471776932477951,-0.783992767333984,-0.695052310824394,0.339039742946625,-0.810086041688919,-0.736258983612061,0.26465916633606,-0.594605326652527,-1.19415983557701,0.471272855997086,-0.67627215385437,-1.24424633383751,0.536215096712112,-0.477632105350494,-1.20831525325775,0.612148016691208,-0.460409015417099,-1.11254039406776,0.545432835817337,-0.184993952512741,-1.34990379214287,0.690535336732864,-0.782488390803337,-1.17292700707912,0.562862686812878,-0.995044603943825,-1.06168819963932,0.163606375455856,-0.879366099834442,-1.24472737312317,0.412400275468826,-0.800592705607414,-1.22947986423969,0.520336680114269,-0.689237210899591,-1.22485226392746,0.615918308496475,-1.09179949760437,-0.856329649686813,0.0826091766357422,-1.02455332875252,-0.792149037122726,-0.0316346287727356,-0.574461355805397,-1.0665325820446,0.327211201190948,-0.676351219415665,-1.33826804161072,0.360445350408554,-0.740519344806671,-0.747393816709518,0.127136945724487,-1.58240377902985,-0.566831558942795,-0.612812653183937,-1.23382277786732,-1.04238896071911,-0.396029232913861,-0.926291719079018,-0.977624341845512,0.0350078940391541,-1.05373068153858,-1.10784259438515,-0.321607753634453,-1.22870941460133,-1.05785296857357,-0.465992674231529,-0.768681741785258,-1.35034438967705,0.556347751989961,-0.53722882270813,-1.26500454545021,0.26512485742569,-0.793601989746094,-1.24385154247284,0.322352856397629, --0.787471726536751,-1.02600176632404,0.184037983417511,-0.478963673114777,-1.26408904790878,0.333372354507446,-0.70016148686409,-1.02050566673279,-0.718514531850815,-1.47793310880661,-0.409449525177479,-1.18533053994179,-1.62180942296982,-0.796792715787888,-0.490153484046459,-1.25770607590675,-0.983967304229736,-0.439720198512077,-1.18814815580845,-0.939005769789219,-0.063877135515213,-1.50579035282135,-0.790312692523003,0.0394201576709747,-1.37364327907562,-0.878070257604122,0.0923251509666443,-1.0892716050148,-1.00885073840618,0.404826700687408,-1.17116960883141,-1.0561157092452,0.442082896828651,-0.900979727506638,-1.14019006490707,0.713964834809303,-1.0812274813652,-0.918132077902555,-0.691895246505737,-0.961542375385761,-0.912949360907078,-0.339091345667839,-1.15125063061714,-0.893315613269806,0.571142584085464,-1.20591099560261,-1.09345696866512,-0.206777527928352,-1.22847208380699,-0.813259050250053,-0.490063354372978,-1.11116054654121,-0.966053929179907,0.691002637147903,-0.909350789617747,-0.932469367980957,0.432995850220323,-1.46174842119217,-0.702360659837723,-0.085252970457077,-1.30843737721443,-0.63158804923296,-0.00721648335456848,-1.03963203728199,-0.754452228546143,0.200305938720703,-1.24084168672562,-1.09448412060738,-0.154189996421337,-1.43987521529198,-0.769126303493977,-0.460899069905281,-1.46285647153854,-0.637604832649231,-0.371455207467079,-1.18490648269653,-0.790815442800522,-0.248828620649874,-1.11660666763783,-0.747377932071686,0.00867092609405518,-1.07122565805912,-1.0711155757308,0.163090378046036,-1.0905984044075,-0.992386501282454,0.181972295045853,-0.88358919788152,-0.900385797023773,0.338240951299667,-0.873719562776387,-0.958199694752693,0.413782611489296,-1.15006786584854,-1.07472056895494,0.283574223518372,-0.391198858618736,-1.27051711082458,0.656626582145691,-0.202375297434628,-1.31196242570877,0.875545337796211,-0.953634031116962,-1.46073082089424,0.34811307489872,-1.31517493724823,-1.19887468218803,-0.142963945865631,-1.01236516237259,-1.60399687290192,-0.273047909140587,-1.03211691975594, --1.38926088809967,0.112640261650085,-0.633986264467239,-1.43984496593475,0.486493140459061,-1.11441606283188,-1.02230304479599,0.322989493608475,-0.90489473938942,-1.39390003681183,-0.0311989188194275,-0.740920469164848,-1.29712155461311,0.296314775943756,-0.61351016163826,-1.62314432859421,0.354639798402786,-0.649395346641541,-1.31689158082008,0.56018140912056,-0.748848482966423,-1.64281940460205,-0.0974538624286652,-0.778938256204128,-1.36109262704849,-0.00581496953964233,-0.439560475293547,-1.84619051218033,0.113900348544121,-0.875815808773041,-1.54395121335983,0.159456968307495,-0.794289261102676,-1.57770824432373,-0.774581640958786,-0.779444190207869,-1.2159686088562,-0.720534756779671,-0.450665880925953,-1.85588788986206,0.113594755530357,-1.23089468479156,-1.12774243950844,-0.159943789243698,-1.0016992688179,-1.15467953681946,-1.28012180328369,-0.956293344497681,-0.896863721311092,-1.14873373508453,-0.542681470513344,-1.81654000282288,-0.341999061405659,-1.30138969421387,-0.997445374727249,-0.337774753570557,-1.20072257518768,-1.5119880437851,-0.460267901420593,-1.08075724542141,-1.36266753077507,-0.425272345542908,-0.556694239377975,-1.72906059026718,-0.487355813384056,-0.974354088306427,-1.27824255824089,-0.218909651041031,-0.572378680109978,-1.86311817169189,-0.367323659360409,-0.818884413689375,-1.45795226097107,-0.288963444530964,0.0838503522788869,-1.74076449871063,-0.121455281972885,-0.177360259302077,-1.84836250543594,-0.139423370361328,-0.165409622713923,-1.81476652622223,-0.609067257493734,0.09610247425735,-1.76697736978531,-0.183095097541809,-0.0750925466418266,-1.89633339643478,-0.109338358044624,-0.687955246306956,-1.72376525402069,-0.12889464572072,-0.560183585388586,-1.73145431280136,0.58500349521637,-0.156204342842102,-1.94650095701218,0.38752281665802,-0.347471177577972,-1.91049379110336,-0.0507314503192902,-0.589725956320763,-1.76433283090591,0.204981580376625,-0.705002471804619,-1.82182246446609,0.30112911015749,-0.307164274156094,-1.83242255449295,0.575662642717361,0.176013514399529,-1.9374583363533, -0.203479513525963,-0.156553357839584,-1.90928035974503,0.493107080459595,-0.209476612508297,-1.87417191267014,0.538257122039795,-0.276239927858114,-1.94831657409668,-0.134511053562164,-0.32076495885849,-1.8628306388855,0.456437185406685,-0.384620577096939,-1.87702763080597,0.04534050822258,-0.1628093495965,-1.9858735203743,0.0989267090335488,-0.136634305119514,-1.89003926515579,0.487113013863564,-0.13151865825057,-1.9095384478569,-0.1266248524189,-0.505670567043126,-1.85438501834869,-0.0103633925318718,-0.702739596366882,-1.83624881505966,0.0433178544044495,-0.250723950564861,-1.93479919433594,0.253809813410044,0.110781244933605,-1.95149922370911,0.306682169437408,-0.533962972462177,-1.79748547077179,0.270687773823738,-0.647045820951462,-1.83558851480484,-0.26012715883553,-0.18322644563159,-1.84076261520386,-0.570888854563236,-0.339974515140057,-1.94294011592865,-0.11363622918725,-0.194907627999783,-1.97863394021988,0.0915522091090679,0.00944800773868337,-1.98992401361465,-0.190293483436108,-0.128462307155132,-1.97802364826202,0.0650659836828709,-0.165099805686623,-1.96338188648224,0.179436923936009,-0.0548043623566628,-1.99333465099335,0.0575764738023281,-0.219255797564983,-1.97558510303497,0.0765773020684719,-0.165535515639931,-1.98367512226105,0.0256561692804098,0.0560283102095127,-1.92482841014862,0.423413127660751,-0.544241867959499,-1.77869564294815,0.100569188594818,-0.429946377873421,-1.78776425123215,-0.681295186281204,-0.0364293530583382,-1.94943517446518,-0.424009501934052,-0.148849913792219,-1.92492008209229,-0.409195251762867,-0.365573929157108,-1.81360536813736,-0.543720737099648,-0.225093530025333,-1.69819575548172,-0.805993139743805,0.0447436384856701,-1.91665470600128,-0.515677750110626,0.0848930962383747,-1.97155380249023,0.0112903565168381,0.0667486377060413,-1.98539900779724,-0.202664002776146,0.0858816616237164,-1.9275621175766,-0.385680295526981,0.0477862283587456,-1.94441014528275,-0.379368640482426,0.164767969399691,-1.94820499420166,0.141643323004246,0.0958041456178762,-1.92979747056961,0.285060487687588, -0.0256503522396088,-1.95774286985397,-0.397978916764259,-0.0507841296494007,-1.85119640827179,-0.624594174325466,-0.0856902077794075,-1.83351105451584,-0.594736743718386,-0.136731520295143,-1.69622099399567,-0.788607865571976,-0.194629788398743,-1.55635899305344,-0.85572062805295,0.134162116795778,-1.84564191102982,-0.61060106754303,0.105648837983608,-1.92704021930695,-0.379608883522451,-0.212973221205175,-1.55035960674286,-0.9252764955163,-0.633268989622593,-1.64785772562027,-0.413764253258705,-0.232928462326527,-1.97488224506378,-0.208503291010857,0.0926768332719803,-1.84526908397675,-0.398550972342491,0.0730715449899435,-1.84139251708984,-0.36570917069912,-0.227513827383518,-1.96925270557404,-0.25191530585289,-0.089194156229496,-1.80810737609863,-0.799206554889679,0.0841022431850433,-1.92306226491928,-0.463967405259609,0.0715946778655052,-1.85321342945099,-0.521056060213596,0.106164284981787,-1.90251219272614,-0.429921836592257,0.0401018895208836,-1.94684851169586,-0.306745946174487,-0.710797085426748,-1.64420127868652,-0.45109748840332,-0.595790583640337,-1.6376713514328,0.347865208983421,-0.214047819375992,-1.88381332159042,0.193556502461433,-0.109926341101527,-1.97541749477386,0.0572715103626251,-0.631836347281933,-1.63160717487335,0.675078198313713,-0.596420414745808,-1.77507132291794,0.0853815078735352,-0.0249181510880589,-1.98014408349991,0.0752858892083168,-0.129300507949665,-1.90801614522934,0.382712760008872,-0.140253589488566,-1.90772253274918,0.369713244959712,-0.106553390622139,-1.96649158000946,-0.00871315598487854,-0.0475050846580416,-1.96978664398193,-0.0970494076609612,-0.0979433301836252,-1.90915232896805,0.166358232498169,-0.292630597949028,-1.9709689617157,-0.0107731074094772,-0.127934990916401,-1.90230828523636,0.289494566619396,-0.201954089105129,-1.91939640045166,0.295635618269444,0.0269043906591833,-1.79559236764908,-0.617895229719579,-0.640638157725334,-0.810512077994645,-0.708678513765335,-0.714767068624496,-1.62827849388123,-0.678990289568901,0.0527494624257088,-1.99345725774765,-0.111299760639668, --0.132528565824032,-1.75598293542862,-0.460375279188156,-0.295334935188293,-1.66440945863724,-0.68023394048214,-0.26881281286478,-1.69241374731064,-0.761854961514473,0.537473782896996,-1.85373014211655,-0.319894209504128,0.44613990932703,-1.7797018289566,-0.570087440311909,0.742128029465675,-1.76096832752228,-0.0755043663084507,-0.0942403830122203,-1.68722665309906,-0.795744940638542,-0.202818733640015,-1.53198838233948,-0.936270751059055,0.113360352814198,-1.79185420274734,-0.400510996580124,0.123144816607237,-1.77121645212173,-0.70232517272234,0.459767418913543,-1.854507625103,-0.362058453261852,0.234301876276731,-1.82571345567703,-0.363288067281246,-0.196249529719353,-1.72009384632111,-0.711292698979378,0.133276432752609,-1.77827334403992,-0.0858389064669609,0.116630539298058,-1.73250377178192,-0.720828883349895,-0.0799011886119843,-1.82525873184204,-0.482083544135094,-0.136716201901436,-1.72376781702042,-0.824698716402054,0.42311098985374,-1.88310623168945,-0.0565916299819946,0.399916406720877,-1.9268895983696,-0.191762246191502,0.257490944117308,-1.96809458732605,0.0921490117907524,0.409507809206843,-1.79955577850342,0.215338155627251,0.013725979370065,-1.95428228378296,-0.417447179555893,-0.0602630889043212,-1.90558588504791,-0.452873080968857,0.136390425264835,-1.98747932910919,-0.157448552548885,0.0895682964473963,-1.98828762769699,-0.174471996724606,0.12366230878979,-1.98399740457535,0.0854983925819397,0.066956675844267,-1.99371618032455,-0.126838549971581,-0.292855888605118,-1.84394359588623,-0.508713155984879,-0.157593637704849,-1.73875725269318,-0.233788639307022,-0.0742549132555723,-1.90937352180481,-0.574936747550964,-0.0961234290152788,-1.79119896888733,-0.775413438677788,-0.422962948679924,-1.78731381893158,-0.574609115719795,-0.527469508349895,-1.87605774402618,-0.193906769156456,-0.124350121710449,-1.99123650789261,-0.0511809578165412,-0.0665118005126715,-1.93476539850235,-0.42172783613205,0.0196490045636892,-1.92401969432831,-0.520210757851601,-0.0481994673609734,-1.9741525053978,0.110431578010321, --0.00170093029737473,-1.97610527276993,-0.233903480693698,-0.00161627307534218,-1.84989231824875,-0.73977866768837,0.010050481185317,-1.97430771589279,-0.294545643031597,0.0335499159991741,-1.93970614671707,-0.370242604985833,0.113502707332373,-1.95047003030777,-0.33842384442687,0.0207738960161805,-1.97232586145401,-0.330744817852974,-0.399195309728384,-1.84895402193069,-0.382304653525352,-0.411362491548061,-1.7797287106514,0.45008285343647,-0.16490276530385,-1.91635513305664,0.0105029791593552,-0.133199444040656,-1.98693776130676,-0.152861829847097,-0.50738868303597,-1.79645246267319,0.270953219383955,-0.44889984279871,-1.81948655843735,-0.029864490032196,-0.112383186817169,-1.972012758255,-0.164947362616658,-0.0373523831367493,-1.91958290338516,0.362977966666222,-0.10263404995203,-1.93746024370193,0.239099843543954,0.0479686409235001,-0.700417369604111,-0.910456063225865,0.100774772465229,-0.824277073144913,-1.00203659199178,-0.476927615702152,-1.05795501172543,1.15114742517471,-1.05026703327894,-1.34284898638725,-0.128897357732058,-0.819509133696556,-1.74752885103226,0.228163983672857,-0.972168572247028,-1.48901063203812,0.292426981031895,-0.704414363950491,-1.73936718702316,-0.0768060591071844,-1.42402350902557,-1.2515752017498,0.310798585414886,-1.34708446264267,-1.21928691864014,0.104365512728691,-1.03553314507008,-1.276979804039,0.337908325716853,-1.3955220580101,-1.00207226723433,0.122417613863945,-1.24322372674942,-1.17470037937164,0.240178555250168,-0.843708395957947,-1.11744053661823,0.216849222779274,-0.799807025119662,-1.25631394982338,0.298980325460434,-0.669726682826877,-1.20338940620422,0.487222224473953,-0.788860976696014,-1.19368241727352,0.306807652115822,-0.913538582157344,-1.07531739026308,0.240576133131981,-0.714515017345548,-1.38080367445946,0.285550341010094,-0.820457294583321,-1.32214218378067,0.671135721728206,-0.665260447189212,-1.35788151621819,0.420799642801285,-0.750924753025174,-1.11392855644226,0.367158338427544,-0.519335649907589,-1.51625126600266,0.678502360358834,-0.766308575868607, --1.24247261881828,0.670463383197784,-0.880473524332047,-1.35429456830025,0.559601068496704,-0.573579590301961,-1.24031122028828,0.677170246839523,-0.254595965147018,-1.52549111843109,0.631055489182472,-0.719851493835449,-1.24266329407692,0.688118100166321,-0.753101199865341,-1.30626773834229,0.448624938726425,-0.398491628468037,-1.23622864484787,0.635345548391342,-0.350405435543507,-1.22556282579899,0.805922299623489,0.0767451492138207,-0.68607097864151,-1.04756560921669,-0.109403554350138,-0.518056392669678,-1.16619983315468,-0.280282759573311,-1.18046878278255,0.709966912865639,-0.425645203329623,-1.90491795539856,-0.105236250907183,-0.359149843454361,-1.88291299343109,-0.199294369667768,-0.50112185953185,-1.85366761684418,-0.165090478956699,-0.538362802006304,-1.84087240695953,-0.143065523356199,-0.659052855800837,-1.73520803451538,-0.0800618007779121,-1.16057348251343,-1.52246505022049,-0.292056493461132,-1.15274003148079,-1.42839127779007,-0.231705039739609,-0.770435616374016,-1.55930238962173,-0.078245997428894,-0.835593201220036,-1.51980096101761,0.059803694486618,-1.14173313975334,-1.41361522674561,-0.167884409427643,-1.18492555618286,-1.49207031726837,0.195061877369881,-0.873676411807537,-1.52154779434204,0.220382660627365,-0.606361910700798,-1.66846561431885,-0.0125921666622162,-0.564778909087181,-1.66319769620895,0.0471876263618469,-0.675359003245831,-1.68457275629044,0.294928222894669,-0.353564645862207,-1.77520263195038,0.368151038885117,-0.283579265698791,-1.69071286916733,0.181759297847748,-0.436130113899708,-1.71034103631973,0.284093052148819,-0.333679482340813,-1.69426029920578,0.168343842029572,-0.196435993537307,-1.68055480718613,0.234883248806,-0.243538150098175,-1.71605157852173,0.396691754460335,-0.911702752113342,-1.75489789247513,0.0972063541412354,-0.605505168437958,-1.85591471195221,0.0230641067028046,-0.815020434558392,-1.67161583900452,0.0411397963762283,-1.16326093673706,-1.58337360620499,0.292300812900066,-1.16679298877716,-1.56494075059891,0.271677780896425,-0.754121266305447,-1.66149526834488, -0.331240171100944,-0.800811469554901,-1.65182453393936,0.460612237453461,-0.805299162864685,-1.65098029375076,0.453004628419876,-0.667658470571041,-1.70947337150574,0.391166710760444,-0.627774649765342,-1.69525802135468,0.325218617916107,-0.581413440406322,-1.72285002470016,0.523289501667023,-0.515085630118847,-1.74221581220627,0.368605077266693,-0.403721801936626,-1.75408172607422,0.647942334413528,-0.280278499936685,-1.74045222997665,0.458124428987503,-0.763040781021118,-1.6377517580986,0.63838093355298,-0.655251935124397,-1.69732755422592,0.425042286515236,-0.252092785201967,-1.75452637672424,0.447234064340591,-0.309307985007763,-1.79365557432175,0.564879590179771,-0.65228083729744,-1.69670289754868,0.427191153168678,-0.378867066463641,-1.81950044631958,0.346965059638023,-0.0199863091111183,-1.89001578092575,0.388408664613962,-0.080187096260488,-1.87711715698242,0.311795175075531,-0.0307004600763321,-1.89837604761124,0.368135128170252,-0.200773507356644,-1.90012681484222,0.417141252662987,0.00540662711665618,-1.91108846664429,0.189582630991936,-0.129324728157371,-1.94236409664154,0.274506479501724,-0.500911585986614,-1.83672642707825,0.290772721171379,-0.105728106573224,-1.97250580787659,0.258055873215199,-0.0404744669795036,-1.95916032791138,0.1915651448071,-0.429300109497355,-1.89186155796051,0.108210988342762,-0.605937860906124,-1.84154999256134,0.0257460549473763,-0.195793747901917,-1.97628378868103,0.205848038196564,0.0098816937816375,-1.99188756942749,0.174859516322613,-0.0932934675365686,-1.99097657203674,0.119460392743349,-0.189280912280083,-1.98274952173233,0.16507975012064,-0.0849461159668863,-1.98901563882828,0.0249173119664192,-0.000612138704127574,-1.97129315137863,-0.106995299458504,0.013793982565403,-1.97567182779312,-0.235560055822134,-0.165542075410485,-0.504774153232574,-0.784791998565197,-0.161826020397712,-0.582810908555984,-0.790643945336342,-0.51628375146538,-0.33912605047226,-0.602520704269409,-1.06402108073235,-0.34699159860611,-0.768655963242054,-1.25491237640381,-0.409948527812958,-0.877571940422058, --0.939701601862907,-0.768164694309235,-0.682123623788357,-0.0321540609002113,-0.805316656827927,-0.933766052126884,-0.706281915307045,-0.464253604412079,-1.23277819156647,-0.872406899929047,-0.552699908614159,-1.38003996014595,-0.268713980913162,-1.05767612159252,-1.36541196703911,-0.60499007999897,-0.93656162917614,-0.99946453422308,-0.620953142642975,-0.679484143853188,-1.22812530398369,-0.260783202946186,-0.637522548437119,-1.2882339656353,-0.314428334939294,-0.725824177265167,-0.988919451832771,-0.8935861364007,-0.937959294766188,-0.53844927251339,-1.09484468400478,-0.728334963321686,-0.302830003201962,-0.992146497475915,-1.06286229193211,-0.167281866073608,-0.622594004031271,-1.76321917772293,-0.0475490093231201,-0.999235096387565,-1.01597082801163,-0.244407810270786,-0.7910325974226,-0.909293353557587,-0.200305759906769,-0.951512806117535,-0.79837691783905,-0.223717242479324,-0.880447955802083,-0.857164621353149,-0.615441225469112,-0.80880568921566,-0.802527382969856,-0.158583283424377,-0.600888967514038,-0.813183158636093,0.257683515548706,-1.14611169695854,-0.552294701337814,0.50159165263176,-0.9778917953372,-1.28499236702919,-0.069793313741684,-0.558555535972118,-1.81407999992371,0.0973458737134933,-1.0680333673954,-0.869257479906082,0.479728251695633,-1.41635638475418,-0.705454409122467,0.339284956455231,-1.17751508951187,-0.882091447710991,-0.0242438614368439,-0.866632191464305,-0.829721763730049,-0.617368459701538,-0.868499668315053,-0.844178050756454,-0.631449960172176,-1.11939667910337,-0.970752045512199,0.267267353832722,-1.21982842683792,-0.765313386917114,0.315930169075727,-0.640534490346909,-0.530971820000559,0.701663114130497,-0.734585806727409,-0.256768718361855,1.03074385225773,-0.894236706197262,-0.935731336474419,0.31419899314642,-0.837061032652855,-0.951510444283485,0.26005595177412,0.144051574170589,-0.245118767023087,-0.115720868110657,-0.0411382168531418,-0.161996722221375,-0.0669472217559814,-0.276443347334862,-0.765567317605019,-0.57093757390976,-0.0892425701022148,-0.955493696033955,-0.594876736402512, --0.0823182687163353,-0.722600847482681,-0.577578395605087,-0.861538276076317,-0.97903061658144,-0.0783508121967316,-0.999778929166496,-0.954920273274183,-0.236203640699387,-0.604658224619925,-0.930090073496103,-0.953419372439384,-0.758197709918022,-1.32320174574852,0.272613044828176,-0.883753262460232,-1.07701839506626,0.3608901463449,-0.816215910948813,-0.553763210773468,-0.552737310528755,-0.997359704226255,-0.792834490537643,-0.361868351697922,0.590547740459442,-0.414133757352829,-0.78797122836113,-0.027884304523468,-0.228313624858856,-0.161988258361816,-0.557966828346252,-0.754317998886108,-0.362314283847809,-0.0362189114093781,-1.24985924363136,-0.760162442922592,-0.0133898258209229,-0.442077159881592,-0.256018340587616,-0.614886850118637,-0.472678210586309,1.00337213277817,-0.722005411982536,-0.821940332651138,0.781667530536652,-0.652833938598633,-0.851177327334881,-0.230546325445175,-0.513396143913269,-1.34989133477211,0.724861681461334,-0.688272520899773,-0.974808484315872,0.851515769958496,-0.953282069414854,-0.63525727391243,0.115134999155998,-0.929473642259836,-0.802266404032707,0.319112740457058,-0.167330712080002,-1.00272104889154,-0.74126335978508,-0.588009238243103,-0.866854354739189,-0.346300423145294,-0.895261470228434,-1.29823759198189,-0.452930994331837,-0.223782598972321,-1.85055005550385,-0.423859298229218,-0.258136034011841,-0.711140185594559,0.157788813114166,-0.0211496949195862,-0.791470855474472,-0.100584726780653,-0.285646319389343,-0.875003382563591,0.176483295857906,-0.427283585071564,-1.28912559151649,-0.240270525217056,0.430766016244888,-1.27180632948875,0.211214404553175,-0.0930300951004028,-0.956474632024765,0.443382114171982,-0.494372457265854,-0.655240505933762,0.193745240569115,-0.305397272109985,-0.735686108004302,0.136478699743748,-0.154227435588837,-1.0154365003109,-0.577941574156284,-0.529074102640152,-0.922717742621899,-0.0854608193039894,-0.733887821435928,-1.39816576242447,-0.248619951307774,-0.0434963405132294,-1.80870336294174,-0.287284187972546,-0.585798442363739,-1.30304542183876, -0.206698708236217,-0.239921391010284,-0.356910973787308,-0.249455519020557,-0.601899087429047,-0.728845685720444,-0.355538427829742,-0.824756916612387,-0.955344099551439,-0.560618780553341,-1.10066682845354,-0.307821348309517,0.826699648052454,-0.416352286934853,-0.212704136967659,-0.0521751046180725,-1.10500635206699,-1.2617821097374,0.520496420562267,-1.12963999807835,-0.925599731504917,0.447628047317266,-1.10800394415855,-0.00390160083770752,0.822474427521229,-0.392028152942657,-0.246405035257339,0.585602752864361,0.014494001865387,-0.363943815231323,-0.494356781244278,-0.443233162164688,-0.38212713599205,-0.323230803012848,-0.702866718173027,-0.553333044052124,-0.282432556152344,-0.0725224912166595,-0.629970818758011,-0.586213499307632,-0.336379822343588,-0.736419826745987,-0.974384568631649,-0.637243419885635,-0.767125397920609,-0.846318192780018,-0.309183672070503,-0.566611409187317,-0.443510919809341,-0.396719411015511,-0.499706894159317,-0.380486309528351,-0.274915715679526,-0.877379775047302,-0.934891052544117,0.066229373216629,-0.701099187135696,-0.951622752472758,0.0643206536769867,-0.477043487131596,-0.233639061450958,-0.854833245277405,-0.657868407666683,0.924803659319878,-0.911543056368828,-0.897989843040705,0.626370668411255,-0.743532583117485,-1.00084422901273,-0.160807549953461,-0.565134644508362,-1.18938559293747,1.14264032244682,-1.06018168479204,-0.573103003203869,1.18121242523193,-1.08343233168125,-0.584100991487503,0.646102279424667,-0.916841015219688,-0.816351905465126,0.580515339970589,-0.712297007441521,-0.435764968395233,-0.0545950531959534,-1.0152537971735,-0.484524756669998,0.209133595228195,-0.988071784377098,-0.83008123934269,-0.554222969338298,-0.955035518854856,-0.888153687119484,-0.538628682494164,-0.766716167330742,-0.853739440441132,-0.102564632892609,-0.868252977728844,-0.821274966001511,-0.0186851024627686,-0.69630379602313,-0.787929624319077,-0.875693872570992,-0.701329920440912,-0.803364217281342,-0.858939856290817,0.184181928634644,-0.486341029405594,-0.570210069417953,-0.221224367618561, --0.525745786726475,-0.0593670010566711,-0.650802791118622,-1.2472707927227,-0.00528690218925476,-0.549788117408752,-0.911935543641448,0.127119798213243,-0.209494113922119,-0.866088032722473,-0.0279685854911804,-0.144716411828995,-1.45510840415955,0.829602815210819,-0.788753613829613,-1.27813473343849,0.355527706444263,-0.617546081542969,-0.559325456619263,0.480999678373337,-0.701535701751709,-0.772186279296875,0.382228314876556,-0.728045091032982,-0.604545325040817,-0.0472893118858337,-0.9905562736094,-0.847769066691399,-0.440080851316452,-0.962236270308495,-0.921850807964802,-0.378142274916172,-0.464772582054138,-0.782085925340652,-0.378716465085745,-0.641094267368317,-0.846180215477943,-0.175404876470566,-0.958952710032463,-1.06834682077169,-0.389020510017872,-0.70031926035881,-0.823124036192894,-0.698808640241623,-0.415598094463348,-0.387395367026329,0.214847385883331,-0.0191260576248169,-0.557579081505537,-0.444146692752838,-0.350357860326767,-0.822190225124359,-0.650429613888264,-0.520811572670937,-1.0190199688077,1.06116217374802,0.0484538674354553,-0.549339672550559,0.745753109455109,-0.0806752443313599,-0.378640681505203,0.72091269493103,-0.487603664398193,-0.539899498224258,0.0903533287346363,-0.433365911245346,-0.485165417194366,-0.0449123084545135,-0.507501214742661,-0.871649220120162,-0.187970943748951,-0.552297174930573,-0.902737041004002,-0.0578521825373173,-0.859042555093765,-0.992439717054367,-0.226817820221186,-0.793766617774963,-0.948447065427899,-0.363346245139837,-0.802345588803291,-0.90319502283819,0.323331505060196,-0.504520446062088,-0.888100121170282,-0.217146046459675,-0.700698435306549,-0.538037329912186,-0.48336797952652,0.509649597574025,-0.701904475688934,-0.787017619237304,0.576934829354286,-0.338325127959251,-0.0592483878135681,0.386054486036301,-0.36025782302022,0.0337961316108704,0.384546466171741,-0.513397216796875,-0.189346492290497,-0.242349229753017,-0.599723726511002,-0.446375757455826,-0.37267655134201,-0.121006965637207,-0.0124907493591309,0.0771581828594208,-0.371480166912079, --0.18418425321579,-0.0794988721609116,-0.530151873826981,-0.510967493057251,0.30353531986475,-0.423970401287079,-0.202922761440277,0.364770032465458,-0.451341778039932,-0.180299460887909,-0.143239989876747,-0.640144884586334,-0.528594076633453,-0.342145032715052,-0.72000515460968,-0.878366207703948,-0.685445547103882,-0.634889930486679,-0.499970465898514,-0.430593095719814,-0.474237948656082,-0.31451079249382,-0.459895305335522,-0.583926245570183,-0.282673239707947,-0.753820985555649,-0.539144665002823,-0.409614771604538,-0.494475193321705,-0.446624338626862,-0.587002113461494,0.258763194084167,-0.274296253919601,-0.471602737903595,0.548213012516499,-0.399638682603836,-0.371125280857086,0.255204178392887,-0.616860091686249,-0.722922787070274,-0.211969241499901,-0.719954714179039,-0.776715844869614,-0.0032336413860321,-0.421653717756271,-0.274381697177887,0.0948298797011375,-0.145672768354416,-0.0955554842948914,-0.173639096319675,-0.515799582004547,-0.434842377901077,-0.335416123270988,-0.836760833859444,-0.615244492888451,-0.275475695729256,-0.566602021455765,-0.568862780928612,-0.506313644349575,-0.661362200975418,-0.340171486139297,-0.631369300186634,-0.750505849719048,-0.654972031712532,-0.572405924089253,-0.670822143554688,-0.792448624968529,-0.327526077628136,-0.533747851848602,-0.619608610868454,-0.326742216944695,-0.385461568832397,-0.409449622035027,-0.504859854467213,-0.552666306495667,-0.780825302004814,-0.632978667505085,-0.884268097579479,-0.8636454641819,-0.130228817462921,-0.202064394950867,-0.578088313341141,0.819546729326248,-0.442355662584305,-0.853850722312927,0.390384204685688,-0.625273168087006,-0.971601169556379,-0.380911082029343,-0.717342674732208,-0.978676676750183,-0.0277779102325439,-0.521649241447449,-0.555127561092377,-0.136352777481079,-0.664414219558239,-0.329995453357697,-0.358608707785606,-0.448385059833527,-0.529874414205551,0.318854667246342,-0.472769320011139,-0.90833793208003,0.0438010841608047,-0.484385758638382,-0.883743327111006,-0.646993800997734,-0.851146645843983,-0.366836458444595, --0.879959930665791,-0.876707144081593,-0.548352777957916,-0.89508572453633,-0.616544306278229,-0.364971041679382,-0.513951033353806,-0.421908020973206,-0.532100081443787,-0.629726022481918,-0.813975781202316,-0.427973251789808,-0.915508838836104,-0.604234755039215,-0.187379371374846,-0.706749819219112,-0.334828972816467,-0.586372911930084,-0.151982307434082,-0.198323130607605,-0.0375571548938751,0.492017760872841,-0.204436242580414,-1.44422733783722,0.116692990064621,-0.408703148365021,-1.41305083036423,-0.628655478358269,-0.830914899706841,-0.60463185608387,-0.130508601665497,-0.340102106332779,-1.04417937994003,0.4041488468647,-0.0763235092163086,-1.08104893565178,-0.245554953813553,-0.391482204198837,-0.949059903621674,-0.524601429700851,-0.714755870401859,-1.00953179597855,-0.395773500204086,-0.354401648044586,-1.03428000211716,-0.472198992967606,-0.747631296515465,-0.872021436691284,-0.757094286382198,-0.774230167269707,-0.907490164041519,-0.892768561840057,-0.672883987426758,-0.686058476567268,-0.736776813864708,-0.7043437063694,-0.249000012874603,-0.562321156263351,-0.393083781003952,-0.68349514901638,-0.81063312292099,-0.51044824719429,-0.852341264486313,-0.786488693207502,-0.918966239318252,-0.890895783901215,-0.652178645133972,-0.604555860161781,0.272463411092758,-0.221965089440346,-0.44904625415802,-0.152294933795929,-0.339335913769901,-0.738790169358253,-0.683120429515839,-0.856700018048286,-0.847643107175827,-0.428485445678234,-0.742512658238411,-0.452003493905067,0.256032705307007,-0.197977602481842,-0.684986308217049,-0.222781121730804,-0.534658595919609,-0.649240016937256,-0.662699833512306,-0.369526769034564,-0.638072818517685,-0.63925576210022,-0.622782106511295,-0.730050623416901,-0.51936662197113,-0.673680230975151,-0.846045732498169,-0.528805181384087,-0.842217545956373,-0.807600319385529,-0.779779762029648,-0.963201433420181,-1.0325640887022,-0.305791452527046,-0.937858715653419,-0.872403144836426,-0.281006298959255,-0.956986422650516,-0.926005758345127,-0.0802290439605713,-0.985802620649338, --0.721775382757187,0.12829977273941,-0.888729330152273,-0.66478157043457,-0.340559005737305,-0.302145898342133,-0.514003545045853,-0.377394042909145,-0.0549384355545044,-0.899184715002775,-0.691756024956703,-0.588723314926028,-0.896153897047043,-0.812288453802466,-0.882915295660496,-0.930705055594444,-0.423874348402023,-0.422665894031525,-0.754498414695263,-0.229142352938652,-0.345273077487946,-0.487356603145599,-0.200153321027756,-0.817553356289864,-0.743827641010284,-0.449223689734936,-0.906790805980563,-1.22364424169064,-0.318269183859229,-0.865563465282321,-0.698424756526947,-0.373128971084952,-0.944466069340706,-0.939898025244474,-0.280706577003002,-0.957904692739248,-0.91018720716238,-0.315090835094452,-0.915662279818207,-0.993642772082239,-0.417623056098819,-0.886512137949467,-0.823749393224716,-0.376695603132248,-0.886189950630069,-0.639962881803513,-0.2360366191715,-0.919992795679718,-0.679154843091965,-0.232245711609721,-0.852530486881733,-1.17885722219944,-0.495072115212679,-0.343433856964111,-0.502553656697273,-0.22197393886745,0.723101198673248,-0.488439112901688,-0.905322978273034,0.18970163911581,-0.60519215464592,-1.03087828308344,-0.78478842228651,-1.29010039567947,-0.0629507154226303,-0.233073532581329,-1.16864487528801,0.512947967275977,0.0364955067634583,-1.63133496046066,0.450751699507236,-0.635100521147251,-1.33716052770615,0.592553377151489,0.233462922275066,-0.989293342921883,-1.10246590524912,0.220160447061062,-0.797038167715073,-1.08541647344828,-0.511524774134159,-1.28473165631294,-0.836622416973114,-0.570714123547077,-0.864291235804558,-0.846863020211458,-0.47767273709178,-1.27067080140114,-0.928326450288296,-0.429212383925915,-0.844298504292965,-1.13611575961113,0.141335651278496,-1.05194901302457,-1.11209873110056,0.138599086552858,-0.829010471701622,-1.1056317910552,-0.759996093809605,-1.40292552113533,-0.567797720432281,-0.389151334762573,-0.577465251088142,0.136380344629288,0.50494310259819,-1.07884839177132,-1.28072366118431,-0.0465318560600281,-0.777259349822998,-1.38420239090919, --0.536429934203625,-1.75634294748306,-0.0198544710874557,-0.335550606250763,-0.729638621211052,-0.501284442842007,0.479443401098251,-1.20054212212563,-1.12124463915825,-0.188305102288723,-0.949761318974197,-1.25802454352379,-0.216141596436501,-1.79582846164703,-0.613619327545166,-0.720426186919212,-1.23280695080757,-0.724120855331421,-0.104747004806995,-1.6397043466568,-0.988957494497299,-0.376070030033588,-1.21831256151199,-1.14663556218147,-0.337606094777584,-1.74552243947983,-0.733245939016342,-0.756054155528545,-1.29523503780365,-0.33052309602499,-0.274545654654503,-1.7686350941658,-0.613585889339447,-0.822384051978588,-1.26400020718575,-0.561461225152016,0.162437045481056,-1.33902618288994,0.912757054902613,0.331048093736172,-1.1198194026947,1.51913034915924,0.895881831645966,-0.909873843193054,1.34661906957626,0.655561380088329,-1.22281447052956,1.05957227945328,0.914127051830292,-0.836303368210793,0.224446121603251,1.11865943670273,-0.517466090619564,0.752023670822382,0.730128526687622,-1.35186058282852,1.13799214363098,0.182557098567486,-1.19550597667694,1.38430643081665,0.199174515902996,-1.2525178194046,1.35742592811584,0.293713502585888,-1.39591297507286,0.986158646643162,0.549173781182617,-1.16798496246338,0.802428022958338,0.331966355443001,-1.17049635946751,1.23781690001488,0.437134206295013,-1.47851419448853,0.875088751316071,0.418582253158092,-1.06357863545418,1.32085013389587,-0.00515203177928925,-1.75810635089874,0.914202302694321,0.14026839658618,-1.8193187713623,0.646054036915302,0.470206409692764,-1.80018705129623,0.527938429266214,0.430174194276333,-1.85663783550262,-0.205045826733112,0.777239836752415,-1.41983529925346,0.126136146485806,1.36061364412308,-1.05292432010174,0.386737987399101,1.13762918114662,-1.14290973544121,0.310707777738571,0.822289288043976,-1.42179927229881,0.23294835537672,0.836415462195873,-1.04697653278708,0.316899701952934,0.705261223018169,-1.11807700991631,0.510761067271233,0.808942854404449,-1.16529084742069,0.605878055095673,0.822742592543364,-1.05953696370125,0.609337665140629, -0.404262918047607,-1.84203386306763,0.231268845498562,0.247255302965641,-1.87359297275543,0.212940044701099,0.190077863633633,-1.87732946872711,0.27145354449749,0.32273634057492,-1.85773468017578,0.271615169942379,0.331062144832686,-1.86745893955231,0.288325980305672,0.873227715492249,-1.73654973506927,-0.169048085808754,1.24834606051445,-1.36603724956512,0.302344942465425,0.866671808063984,-1.11718585342169,0.269320927560329,0.92181367892772,-1.38331246376038,-0.160954963415861,1.2744764983654,-1.33508059382439,0.276339972391725,1.31724226474762,-0.834283776581287,0.40234238281846,0.821190811693668,-1.305305570364,0.140271060168743,0.761457331478596,-1.54096215963364,0.0639271214604378,0.870567090809345,-1.10759177803993,0.261858813464642,0.373511053621769,-1.86407005786896,0.0203338041901588,0.358745790319517,-1.93080419301987,-0.0380757637321949,0.250939742662013,-1.9659276008606,-0.00859390944242477,0.384803635068238,-1.89559185504913,-0.0910954028367996,0.303116418421268,-1.9216468334198,0.00571959465742111,0.981858865357935,-0.990077951923013,0.130773887038231,0.997094828635454,-1.09833196550608,-0.0392749160528183,1.39304903149605,-1.2587134540081,-0.160048856865615,1.46183300018311,-0.773031927645206,-0.397372588515282,0.159525483846664,-1.65681624412537,0.314220756292343,0.332701250910759,-1.40344214439392,0.8301793448627,0.538887530565262,-1.02254182100296,0.418450534343719,0.522065870463848,-1.26443839073181,0.600675344467163,0.0893131019547582,-1.39898493885994,0.689004629850388,0.435714200139046,-1.46165215969086,0.405134350061417,0.611922338604927,-1.15305235981941,0.456537753343582,0.195091617293656,-1.25379082560539,0.728819936513901,0.441457856446505,-1.33685654401779,0.66178996860981,0.355267215520144,-1.26330867409706,0.599586933851242,0.164370596408844,-1.29676833748817,0.903477858752012,0.225875779986382,-1.22196912765503,0.580203801393509,0.406051743775606,-1.79867434501648,0.0916776955127716,0.58911681547761,-1.59802681207657,0.479866938665509,1.10503381490707,-1.23268347978592,0.86597241461277, -0.911159247159958,-1.36146777868271,1.03713738918304,0.537323500961065,-1.53866565227509,0.863916367292404,0.390520043671131,-1.78949844837189,0.530145362019539,1.14736512303352,-1.19142851233482,0.294202864170074,0.882540702819824,-1.21072885394096,0.845132887829095,0.655235812067986,-1.58067786693573,0.521365057677031,0.420998629182577,-1.49217873811722,0.995276182889938,0.361272629350424,-1.27564635872841,1.1437700688839,0.458803370594978,-1.30393946170807,0.82466096803546,0.414632949978113,-1.88581240177155,-0.134190326556563,0.806880764663219,-1.31460565328598,0.351760685443878,1.01963091641665,-1.00915454514325,-0.0740511640906334,0.86015709862113,-1.14004091918468,-0.134143680334091,0.830057315528393,-1.25026497244835,0.101970501244068,0.281949408352375,-1.84764230251312,0.397240767255425,1.25129967927933,-1.34873315691948,0.235835745930672,1.24352717399597,-0.966793484985828,0.519011445343494,0.766672886675224,-1.37051516771317,0.320019736886024,0.575538270175457,-1.3639834523201,0.501056924462318,1.33619022369385,-0.681554451584816,0.352823682129383,1.23654443025589,-0.859223926439881,0.800720110535622,0.395061351358891,-1.92831581830978,0.0317003726959229,0.84145913249813,-1.52257603406906,-0.139770928770304,0.991931773489341,-1.096524477005,-0.105511963367462,0.891562886536121,-1.46770018339157,-0.138115033507347,0.810928769409657,-1.52939802408218,0.0369072500616312,1.0107287298888,-0.816184774041176,-0.180255010724068,0.917568258941174,-0.961733506992459,-0.0744253396987915,0.392100043362007,-1.61217737197876,0.476493015885353,0.730600191280246,-1.30694359540939,0.375190958380699,0.338882916141301,-1.30633559823036,0.734239980578423,1.10220974683762,-1.18414136767387,0.439665824174881,0.925279915332794,-1.23235577344894,0.735728323459625,0.180513020604849,-1.3593578338623,0.806444257497787,0.373613812029362,-1.29594841599464,0.635310441255569,0.983543008565903,-1.25225514173508,0.693051397800446,0.766755551099777,-1.24651774764061,0.756956830620766,0.218614421784878,-1.81605243682861,0.316822662949562, -0.26338804885745,-1.8488741517067,0.335942894220352,0.198585193604231,-1.86320376396179,0.343662112951279,0.173870258033276,-1.82179492712021,0.332581952214241,0.250610499642789,-1.81692487001419,0.453043628484011,0.289769850671291,-1.81062471866608,0.223596006631851,0.221936758607626,-1.80295449495316,0.435426980257034,0.235184251330793,-1.8216278553009,0.453012157231569,0.375924086663872,-1.37778544425964,0.610613718628883,1.09780490398407,-1.17619135975838,0.780740598216653,0.936767011880875,-1.24550360441208,0.343905359506607,0.621744304895401,-1.30081138014793,0.381590455770493,0.232597097754478,-1.4935536980629,0.728645607829094,0.730821818113327,-1.45920413732529,0.231770485639572,0.643038690090179,-1.51970040798187,0.377336472272873,0.303725831210613,-1.25940868258476,0.66660812497139,0.288339540362358,-1.19725981354713,0.542287617921829,0.493968784809113,-1.09298564493656,0.515094727277756,0.370930470526218,-1.25873783230782,0.649167209863663,0.337520575616509,-1.51496607065201,0.546873047947884,0.338532472029328,-1.15201936662197,0.543979048728943,0.336471416056156,-1.67568284273148,0.564213737845421,0.981198519468307,-1.15331028401852,0.0862292051315308,0.299768233671784,-1.10309615731239,0.566598892211914,0.573794786119834,-1.40295532345772,0.565733999013901,0.81290265917778,-1.177354991436,1.07617029547691,0.783113032579422,-0.885344542562962,1.33228367567062,0.355967670679092,-1.12178073823452,1.11279052495956,1.02009796351194,-1.11974647641182,0.295328321866691,1.39919096231461,-0.938432738184929,0.633473888039589,1.00485306978226,-1.69667613506317,0.241036215797067,0.484371282160282,-1.89288192987442,0.0751884132623672,0.335126936435699,-1.92857110500336,0.355185493826866,0.431309849023819,-1.88687402009964,0.394148707389832,0.482723481953144,-1.89172166585922,0.0833336114883423,0.424576554680243,-1.85344809293747,0.130286365747452,0.234747774899006,-1.919946372509,0.37874972820282,0.42233657091856,-1.89404821395874,0.281023803167045,0.927083641290665,-1.31864169239998,0.551529914140701,0.918720729649067, --1.12653444707394,0.394742548465729,0.843141263816506,-1.34665480256081,0.362400203943253,1.38524267077446,-1.12062178552151,0.154936950653791,0.81098797917366,-1.72755026817322,0.33767381310463,0.224650595802814,-1.86585921049118,0.278319180011749,0.212549865245819,-1.85661536455154,0.349575474858284,1.085339397192,-1.29829686880112,0.604962140321732,1.32292768359184,-1.06344345211983,0.706966012716293,0.741419543046504,-1.11683218181133,0.507614105939865,0.759398929774761,-1.2552133500576,0.689954909496009,0.744587129447609,-1.39391028881073,0.494777470827103,0.733806745149195,-1.16619323194027,0.47721840441227,0.310125261545181,-1.84926670789719,0.27887798845768,0.886230636853725,-1.43603420257568,-0.213163197040558,0.80772300157696,-1.09579650312662,0.403147593140602,0.778747319243848,-1.43285432457924,0.397516906261444,1.29177820682526,-1.2209906578064,0.373468115925789,1.29432582855225,-0.879582413006574,0.650307014584541,0.801756545901299,-1.06562159955502,0.644413258880377,1.03659785538912,-0.919624343514442,0.357498407363892,1.42453497648239,-0.907065041363239,0.403047367930412,0.725469946861267,-1.84766209125519,-0.164079654961824,0.0298348963260651,-1.95440942049026,-0.325091108679771,0.291724696755409,-1.93976789712906,-0.0896043963730335,0.192141771316528,-1.95691645145416,-0.138600412756205,0.363290160894394,-1.89182102680206,-0.0709044737741351,0.221743895672262,-1.96826511621475,-0.160042680799961,0.344060891948175,-1.93196094036102,0.0612204372882843,1.05861712247133,-1.06273663789034,0.284703642129898,0.96297113597393,-0.959962695837021,0.296502392739058,0.919241988740396,-1.29150727391243,0.362425282597542,0.977640683297068,-1.00884671509266,0.313638314604759,0.944296181201935,-1.41759580373764,-0.470771700143814,0.743862748146057,-1.64441150426865,-0.39172588288784,0.525470048189163,-1.88021802902222,-0.0192666798830032,1.01883178949356,-1.13932839035988,0.0394126772880554,1.40355989336967,-0.921080246567726,-0.23506698012352,1.39644432067871,-1.15798449516296,0.246510431170464,0.982183523476124, --1.29433858394623,0.381705075502396,1.0539822280407,-1.03680791705847,0.232736960053444,1.0744614303112,-1.09326604753733,0.171952947974205,0.976991541683674,-1.26453492045403,0.418017745018005,0.900046581868082,-1.0798644721508,0.527318328619003,0.907235974562354,-1.03948380053043,0.342614367604256,1.12291121482849,-0.967532560229301,-0.0612344145774841,1.0780157148838,-0.92348163202405,0.181074127554893,0.974002594244666,-0.869671374559402,0.116966634988785,1.04514168947935,-1.02577206492424,-0.272475369274616,0.924053549766541,-0.575293179601431,1.00364428758621,1.12435847520828,-0.62629453279078,0.88272824883461,0.911982953548431,-0.610783994197845,0.857292011380196,1.03884774446487,-0.422331392765045,0.904718674719334,0.860754331573844,-0.608228027820587,1.12008260190487,0.933138847351074,-0.547230359166861,1.11640383303165,1.21893203258514,0.0905089601874352,1.04347217828035,0.287846311926842,-0.489619567990303,1.79687881469727,0.0235127210617065,-0.468263305723667,-0.0848913788795471,-0.123939275741577,-0.415274024009705,-0.00999653339385986,-0.213355645537376,-0.280253142118454,0.0173998475074768,-0.014975517988205,-0.0488753020763397,-0.000348865985870361,0.117156624794006,-0.255795355886221,-0.0489969849586487,-0.0637410283088684,-0.236472941935062,0.00829225778579712,0.00919836759567261,-0.249665975570679,-0.065366268157959,0.194655656814575,-0.201445773243904,-0.108773648738861,0.849412977695465,-0.414097622036934,1.67233085632324,0.957055300474167,-0.363623035140336,1.64251190423965,0.861210763454437,-0.175672046840191,1.74839019775391,1.51060736179352,-0.242154747247696,1.27751874923706,1.3488410115242,-0.13940804451704,1.43108147382736,1.32888525724411,-0.173144612461329,1.41328132152557,1.21347880363464,-0.391003038734198,1.51072365045547,1.38183748722076,-0.2762780636549,1.40004926919937,1.06345611810684,-0.59001450240612,1.57549035549164,1.06966969370842,-0.300901219248772,1.61989170312881,0.965128600597382,-0.355311535298824,1.6302849650383,1.03635910153389,-0.324687466025352,1.6700474023819,0.734101682901382, --0.256532184779644,1.78185719251633,1.42760229110718,-0.0344244837760925,0.889155304379528,1.45342081785202,-0.212558722123504,0.967261962592602,1.3881214261055,-0.23560294508934,1.37787747383118,1.49971556663513,-0.380342200398445,0.75932639092207,1.47624498605728,-0.203791618347168,1.05153036117554,1.26463544368744,-0.237572602927685,1.42565321922302,1.20815458893776,-0.548486933112144,1.4125669002533,1.13333880901337,-0.24199428409338,1.56066733598709,1.45954942703247,-0.104647353291512,1.23379856348038,1.30176639556885,-0.232620548456907,1.4919006228447,1.31496366858482,-0.22676320374012,0.390395790338516,1.5050128698349,-0.152299825102091,0.197685122489929,1.63130164146423,0.0883968062698841,0.34269180893898,1.35159319639206,0.0488086193799973,0.84838243573904,1.53225094079971,-0.139240182936192,1.13443395495415,1.22300148010254,0.0807280167937279,1.40728554129601,1.38755792379379,0.124538317322731,1.2803381383419,1.54381144046783,-0.198553994297981,1.23248970508575,1.42946839332581,-0.135434176772833,1.34438329935074,0.960555255413055,-0.253634333610535,1.71470737457275,1.25733536481857,0.138609737157822,0.420577645301819,1.09597390890121,0.141305256634951,0.403471112251282,1.34056180715561,0.00398420915007591,1.18364790081978,1.16795212030411,0.229973882436752,0.548146694898605,1.3453776538372,-0.0799303203821182,1.10263235867023,1.38277173042297,0.0411798898130655,1.29340004920959,1.3005194067955,-0.068895261734724,1.30338537693024,1.72353374958038,-0.11815532669425,0.926802009344101,1.66069960594177,0.164000853896141,1.06862768530846,1.62775439023972,0.114798280410469,1.13152542710304,1.78917372226715,-0.164739482104778,0.62272191606462,1.75022435188293,-0.1429951088503,0.632745241746306,1.70882761478424,0.173081789165735,0.707946414127946,1.6880264878273,0.034509614109993,0.790921770036221,1.73023599386215,0.0522556602954865,0.868979930877686,1.27898865938187,-0.103673946112394,1.36709636449814,1.30522504448891,-0.0223152562975883,1.3347609937191,1.28841891884804,0.14288866892457,1.3728378713131,1.30528244376183, -0.0397601574659348,1.35139071941376,1.30296388268471,-0.0138936638832092,1.33008721470833,0.603138670325279,-0.206550188362598,1.84013324975967,0.588985204696655,-0.380967784672976,1.84741950035095,0.927376598119736,-0.89985778927803,1.05512601137161,1.62006640434265,-0.611731484532356,0.913511544466019,1.62105691432953,-0.219845533370972,0.782629162073135,1.61139893531799,-0.154482126235962,0.895865947008133,1.21507260203362,-0.602803707122803,1.36945027112961,1.4161411523819,0.0315583050251007,1.26475155353546,1.36655133962631,-0.361881226301193,0.866272658109665,1.41093289852142,-0.431224806234241,1.24877297878265,1.17104163765907,-0.790278792381287,1.2343710064888,0.824949324131012,-0.468810521066189,1.73455172777176,0.946445643901825,-0.527377337217331,1.22362592816353,1.25264719128609,-0.164154946804047,1.21534740924835,0.784858882427216,-0.94499746710062,1.19554129242897,1.09521695971489,-0.337707817554474,1.29418525099754,1.15900659561157,-0.379762411117554,0.255058228969574,1.15963181853294,-0.285224054008722,0.350017666816711,0.797906458377838,-0.949488200247288,1.15459387004375,1.71484041213989,-0.462895102798939,0.827466577291489,1.4604469537735,-0.551370524801314,-0.172843873500824,1.66674780845642,-0.0787818373646587,-0.0901596546173096,1.27125626802444,-0.936897458508611,0.503673955798149,1.7318559885025,-0.380196558078751,0.821877956390381,1.37093478441238,-0.780425951816142,0.211503148078918,1.74213939905167,-0.439036412164569,0.36803837120533,1.30803781747818,-0.922413291409612,0.493073381483555,1.21605524420738,-0.553883157670498,1.25149819254875,0.750524699687958,-0.835550762712955,0.823387682437897,1.19854748249054,-0.391498491168022,0.969192858785391,0.442737848497927,-1.05652948468924,0.847846992313862,0.341289577175758,-0.837172791361809,1.21465638279915,0.26777717191726,-0.773292660713196,1.30810844898224,0.325954689644277,-0.991847673431039,1.22159898281097,0.443804475478828,-1.0578384026885,0.909998526796699,1.04103779792786,-0.999291874468327,0.657277941703796,0.929567828774452,-0.777718260884285, -0.690612256526947,0.725798591971397,-0.763326928019524,0.578015580773354,1.05998794734478,-1.00605318695307,0.649137571454048,0.905953019857407,-0.728702530264854,0.867926001548767,0.400158673524857,-0.687272489070892,0.763185150921345,1.15253192186356,-0.891891937702894,0.885432928800583,0.935419350862503,-0.964727975428104,0.821236401796341,1.13596780598164,-1.090501755476,0.229387775063515,1.02950644493103,-0.916884835809469,0.904489606618881,1.20098528265953,-0.88474902138114,0.826365202665329,0.974638290703297,-1.09842494130135,0.340292363427579,1.10726647078991,-0.950673427432775,0.725612491369247,1.02500866353512,-0.905276924371719,0.8392593562603,0.930395712144673,-1.04540298506618,0.267966151237488,1.10136917233467,-1.06441810727119,0.54981803894043,1.1439174413681,-1.09353098273277,0.59210079908371,0.706956893205643,-0.753684788942337,0.630789831280708,1.15672981739044,-0.720644518733025,0.573020815849304,0.927565880119801,-1.05108113586903,0.908726394176483,1.11083169281483,-0.628059789538383,-0.203562319278717,1.17537122964859,-0.755855858325958,0.201140413060784,1.16021999716759,-1.05717727541924,0.428895279765129,0.836885126307607,-1.12802590429783,0.387828633189201,1.03894776105881,-1.09175737947226,0.594624251127243,1.02975960075855,-0.989734592847526,0.609731152653694,0.847562292590737,-1.01246473845094,0.47532631829381,1.01968710124493,-1.07461155205965,0.720813989639282,1.06149424612522,-0.988957322202623,0.595519885420799,0.774821951985359,-0.94836200773716,0.862712889909744,1.01281788945198,-1.09789881110191,0.578101869672537,0.964708566665649,-1.02989108115435,0.892072558403015,0.919421315193176,-1.07433327287436,0.216820448637009,0.923581123352051,-0.933619175106287,0.273370817303658,0.856404647231102,-0.834004953503609,0.355085432529449,0.879837832879275,-1.10711267590523,0.317111000418663,0.708880468853749,-0.901963010430336,0.599360220134258,0.742485990747809,-0.836115509271622,0.525577187538147,0.831922188401222,-1.11463066190481,0.408103093504906,0.814557820558548,-1.10034480690956,0.620468258857727, -0.87284903600812,-1.08127348124981,0.421754730865359,0.791047498583794,-0.943451867438853,0.67885422706604,0.939085181802511,-0.9928783189971,0.368861749768257,0.783658020198345,-1.03375456482172,0.812842160463333,0.992489784955978,-0.856515706749633,-0.0573326647281647,0.879695290699601,-0.974511390551925,0.214777261018753,0.996080815792084,-0.952621899545193,-0.0814519226551056,0.870287014171481,-1.10052756220102,0.411802601069212,0.80246726423502,-1.07021240890026,0.320407681167126,0.775061443448067,-0.735788613557816,0.350264601409435,0.911853959783912,-0.726732313632965,0.214782789349556,0.88091678917408,-1.04342337697744,0.37216136418283,0.83969683945179,-0.723503291606903,0.205329298973083,0.897927109152079,-0.653295040130615,0.126276966650039,1.07850597053766,-0.926607433706522,0.0683853104710579,0.898541467264295,-1.03228863328695,0.537773177027702,1.07410901039839,-1.01647530123591,0.0269191712141037,1.15870994329453,-0.905348421729286,-0.139153271913528,0.974819343537092,-0.922496430575848,-0.0248711185995489,0.950985612347722,-0.994942547476967,0.144230239093304,0.943990639410913,-0.968860967084765,0.296312068589032,0.994092226028442,-0.924200896173716,0.0188226252794266,1.04749861732125,-0.92144899815321,-0.0247021201066673,1.01942753233016,-1.005575241521,-0.187360782176256,0.94924932718277,-0.78414723277092,0.0524574890732765,1.0102556720376,-0.773394823074341,0.106521487236023,1.05297103524208,-1.06153383105993,0.155584078282118,0.99362600594759,-0.775381624698639,0.110124528408051,0.932819344336167,-0.784252345561981,0.26290808711201,0.973455086350441,-1.13013498485088,-0.154665283858776,1.00411440152675,-1.0786514505744,-0.0494484156370163,0.931535594863817,-1.3505574464798,-0.207257091067731,1.03750549256802,-1.21633885800838,-0.141300342977047,0.996120138093829,-1.14580261707306,-0.114075891673565,0.965626599267125,-1.22557751834393,-0.175980351865292,1.14071686565876,-1.14938205480576,0.160929620265961,1.10596884787083,-1.08072153478861,0.0534033849835396,0.957411650568247,-0.930455014109612,-0.665305227041245, -0.99286924302578,-1.23046331107616,-0.105252228677273,1.20390394330025,-1.10447895526886,-0.619295313023031,1.09412670135498,0.1480294438079,-0.937722105532885,1.08072187006474,-0.620209485292435,-0.621971234679222,0.761943534016609,-1.17416018247604,-0.501334942877293,0.898501262068748,-0.616777807474136,-0.626467630267143,0.546926140785217,-0.694428190588951,-0.342252425849438,0.534310221672058,-1.19151264429092,-0.372918047010899,0.288272202014923,-1.01109464466572,0.258402656763792,1.07894466072321,-0.793413013219833,-0.553605601191521,1.19899122416973,-0.667335703969002,-0.681409552693367,0.763557732105255,-1.09712278842926,-0.297148168087006,0.934983532875776,-0.904496029019356,-0.49561496078968,0.538750320672989,-1.01381962001324,-0.161933071911335,0.631490707397461,-1.18376153707504,-0.254103794693947,0.754992321133614,-1.08483165502548,-0.311859905719757,0.433854401111603,-1.10729749500751,0.372268259525299,0.891996201127768,-0.658652305603027,-0.361171364784241,0.665435165166855,-1.09305122494698,-0.0395717918872833,0.617352589964867,-0.755828201770782,0.0962543487548828,0.473257422447205,-0.682511478662491,0.5835981965065,0.637686431407928,-1.02460025250912,0.0541111975908279,0.752409547567368,-1.15350040793419,0.400135561823845,0.612408429384232,-0.834750088863075,0.481032069772482,0.997107168775983,-0.978960309177637,-0.195984411984682,1.0530934035778,-0.924289500340819,-0.348123028874397,0.95932500064373,-1.02743203938007,0.00231757760047913,0.970050178468227,-1.00937066040933,-0.0579331517219543,0.864430814981461,-1.02365421503782,0.233932293951511,0.911796912550926,-1.0915269702673,0.152430556714535,0.933228351175785,-1.02325929701328,-0.0230425894260406,0.824233964085579,-0.958802255801857,0.33673208579421,1.01124809682369,-0.619830310344696,-0.151305876672268,1.05946686863899,-0.470029056072235,-0.574421225115657,1.09046378731728,-0.999903611838818,-0.019613903015852,1.01351099461317,-0.652961373329163,-0.0583781879395247,0.958124495577067,-0.698778212070465,-0.0685788737609982,1.06903890520334,-1.00875404383987, --0.037697795778513,0.982850031927228,-0.98953615874052,-0.136195573955774,0.928739227354527,-1.00528157874942,0.245288111269474,0.964153751730919,-0.992458573542535,-0.130943112075329,1.03602227568626,-0.930998973548412,-0.379720486700535,1.00860557425767,-1.04217653721571,0.00269708782434464,0.966742355376482,-1.01458268519491,0.0491949338465929,0.921523563563824,-1.00514379795641,0.0200172439217567,0.990271446295083,-1.00160035397857,-0.115987833589315,0.94321171939373,-1.00405561178923,-0.178921572864056,-0.94822533428669,-1.52582323551178,0.218428716063499,-0.877841342240572,-1.53856045007706,-0.313428103923798,-0.865872986614704,-1.4309056699276,-0.270023591816425,-0.896386873908341,-1.46892607212067,0.0293390695005655,-0.965475298464298,-1.41843977570534,-0.340906947851181,-0.906023761257529,-1.31621274352074,-0.502581939101219,-1.09433533251286,-1.33645468950272,-0.0864401608705521,-1.0015022456646,-1.46222466230392,0.0596545138396323,-0.971955224871635,-0.368365570902824,-0.904865562915802,-0.627784550189972,-0.263531848788261,0.869466654956341,-0.192883253097534,-0.784768000245094,-0.0996266596484929,-0.23385488986969,-1.36012768745422,-0.0299153262749314,-0.130534470081329,-0.690414980053902,-0.024736724793911,-0.311539709568024,-0.887965351343155,-0.17375848069787,0.0468752384185791,-0.940580099821091,0.0791756808757782,0.0725891590118408,-0.895767539739609,0.247783889994025,0.0808067321777344,-0.840355813503265,0.213203981518745,0.155022919178009,-0.719922564923763,0.197989955544472,-0.00913655757904053,-0.732146561145782,0.265795275568962,0.128122866153717,-0.729985892772675,0.27254755795002,0.019402027130127,-0.871117353439331,0.441912088543177,-0.153968930244446,-0.74898824095726,0.588450372219086,-0.00206345319747925,-0.669508174061775,0.285857602953911,0.0143896341323853,-0.473256252706051,0.19675225019455,-0.258017182350159,-0.4674082249403,0.48056498169899,-0.302821457386017,-0.402526699006557,0.575615905225277,-0.234735488891602,-0.713369995355606,0.424600496888161,-0.219617962837219,-0.217092595994473, -0.548634551465511,-0.486050367355347,-0.626203894615173,0.492113903164864,-0.550925999879837,-0.636676460504532,0.675299450755119,-0.475134551525116,-0.810461789369583,0.562095001339912,-0.387192845344543,-0.378292635083199,0.563375428318977,-0.603166729211807,-0.872328370809555,0.680870205163956,-0.635059833526611,-0.738412767648697,0.77985006570816,-0.626636177301407,-0.519857287406921,0.709494799375534,-0.639574259519577,-0.879282683134079,0.709501326084137,-0.547238528728485,-0.645444646477699,0.810704275965691,-0.902133151888847,0.142303884029388,-1.08015038073063,-1.01952922344208,0.0653656423091888,-1.14409705996513,-0.682371616363525,-0.339323997497559,0.723034217953682,-0.506403237581253,-0.885198460891843,-0.381910860538483,-0.549569427967072,-0.831898376345634,-0.281067211180925,-0.474488437175751,-0.820031102746725,-0.246036171913147,-0.307786762714386,-0.672041997313499,-0.164272777736187,-0.449926674365997,-0.716494798660278,-0.223998606204987,-0.29023277759552,-0.546244516968727,-0.0287222042679787,-0.291834652423859,-0.608107443898916,0.142960578203201,-0.297622740268707,-0.602202408015728,0.303740479052067,-0.215671241283417,-0.756741300225258,0.236748903989792,-0.314302086830139,-0.763662815093994,0.264997199177742,-0.299935460090637,-0.497104287147522,0.296194027177989,-0.229232132434845,-0.655077159404755,0.274278059601784,-0.506928443908691,-0.63899340480566,0.394871342927217,-0.452068448066711,-0.581197038292885,0.284264624118805,-0.425125002861023,-0.539084315299988,0.429351697675884,-0.682209223508835,-0.694133214652538,0.623108901083469,-0.626397967338562,-0.673295594751835,0.679248586297035,-0.600946396589279,-0.667257137596607,0.815148115158081,-0.772751227021217,-0.763684317935258,0.660621661692858,-0.707462280988693,-0.698539204895496,0.830792427062988,-0.735616192221642,-0.668032050132751,0.781755298376083,-0.576653033494949,-0.910126433242112,-0.0398854650557041,-0.506030738353729,-1.01296117901802,-0.267220243811607,-0.245323538780212,-0.936673238873482,-0.0215231329202652,-0.287521123886108, --0.956392973661423,-0.0496437773108482,-0.293515861034393,-0.827199250459671,0.191876957193017,-0.289187610149384,-0.890402346849442,0.167344152927399,-0.30649322271347,-0.86298830807209,0.205993764102459,-0.325567305088043,-0.738848365843296,0.324087311048061,-0.4038125872612,-0.855670243501663,0.360242718830705,-0.356932103633881,-0.834730714559555,0.205697506666183,-0.42142254114151,-0.650161318480968,0.179025173187256,-0.534808963537216,-0.625794649124146,0.186572939157486,-0.564625442028046,-0.628014743328094,0.205398410558701,-0.676149904727936,-0.635938659310341,0.327130556106567,-0.663269370794296,-0.744546480476856,0.289170950651169,-0.721234232187271,-0.812717160210013,0.259301036596298,-0.694362670183182,-0.961858227849007,0.38715523481369,-0.654529199004173,-1.04216237366199,0.156624466180801,-0.682753354310989,-0.953887298703194,0.181439846754074,-0.873338311910629,-0.953839797526598,0.212987706065178,-0.820867046713829,-1.04237522184849,0.077944815158844,-0.829563803970814,-0.899062359705567,0.0744642019271851,-0.854210287332535,-0.963063079863787,0.188507333397865,-0.870545111596584,-0.992612041532993,0.411489121615887,-0.868120990693569,-1.04822924733162,0.336895678192377,-0.772362641990185,-1.2630929350853,-0.167651757597923,-0.870044939219952,-1.09588006138802,0.193633262068033,-0.67874513566494,-1.16332979500294,-0.444114819169044,-0.653289817273617,-1.23855325579643,-0.431752666831017,-0.784805923700333,-1.28156858682632,-0.306271854788065,-0.589279428124428,-0.942810691893101,-0.600192472338676,-0.786955893039703,-1.09780243784189,-0.547040544450283,-0.780945979058743,-1.18348003923893,-0.679249435663223,-0.804342910647392,0.201000280678272,-1.70084768533707,-0.997315138578415,0.0724038630723953,-1.44076612591743,-0.715825691819191,-0.042640894651413,-1.41737127304077,-0.343753576278687,-0.829532377421856,-1.38228666782379,-0.61540013551712,-0.676144696772099,-0.0299476981163025,-0.593165939673781,-0.919789973646402,-0.537979453802109,-0.645018458366394,-0.39920630119741,0.331149458885193,-0.594678103923798, --0.234829559922218,0.401564359664917,-0.610281392931938,-0.514330586418509,0.256912589073181,-0.657845020294189,-0.271403390914202,0.520430713891983,-0.700594410300255,-0.681485049426556,0.233713001012802,-0.675560310482979,0.375862285494804,-1.4495997428894,-1.11787562072277,0.200661990791559,-1.10966457426548,-1.19731622934341,-0.887471154332161,-1.02027925848961,-0.981103762984276,-0.774565234780312,0.261601120233536,-0.956842578016222,-0.936470514163375,-0.0549813210964203,-1.09005478024483,-0.480968043208122,0.45737561583519,-1.15675580501556,-0.197678819298744,0.486119657754898,-1.13871835172176,-0.476102940738201,0.415987581014633,-1.20794466137886,-0.270452743396163,0.603469461202621,-1.204446002841,-0.784740712493658,0.481132134795189,-0.031291127204895,-0.237404124811292,-0.0905992276966572,-1.89332461357117,-0.479809291660786,0.298818066716194,-1.15143467485905,-1.14651480317116,-0.00637629628181458,-0.699606627225876,-1.0397672727704,0.292611494660378,-1.87866026163101,-0.43340365588665,-0.459529861807823,0.0412471890449524,-0.641991019248962,-0.287508472800255,-0.801710069179535,-1.14648601412773,-0.00629977881908417,-1.00530326366425,-1.00742612406611,-0.557336658239365,-1.75039708614349,-0.626048803329468,-0.480509482324123,-0.107284426689148,-0.95334666967392,-0.353642962872982,0.213781237602234,-0.516896054148674,-0.741904959082603,0.214916944503784,-0.40542371198535,-0.658912912011147,-1.407595038414,-0.673136197030544,-0.786060301586986,-1.48876196146011,-0.706726342439651,-0.567265905439854,-0.908975549042225,-1.01262116804719,-0.603577198460698,-0.724286660552025,-0.917133495211601,-0.57998607866466,1.25144293904305,0.576259195804596,0.718263939023018,0.363243162631989,-0.0671583712100983,-0.0226592421531677,1.14019925892353,0.64166733622551,-0.71885073184967,0.893426939845085,0.592887133359909,-0.276815176010132,1.59522259235382,0.342729933559895,-0.229739189147949,-0.404077678918839,-0.114102229475975,-1.35081419348717,-0.49203360080719,0.316820204257965,-1.24768269062042,0.25893446803093,-0.989785686135292, --1.31457787752151,0.0443081259727478,-0.544210404157639,-1.33236181735992,-0.143218338489532,0.198351174592972,-1.28386896848679,-0.682209894061089,-0.425511911162175,-1.67380183935165,-0.503768846392632,-0.235071465373039,-1.74179488420486,-0.108527362346649,-0.535537675023079,-1.56887990236282,-0.123270452022552,-0.257535189390182,-1.61566752195358,-0.00497177243232727,-0.448853313922882,-1.53370690345764,0.0385787785053253,-0.511959984898567,-1.6048036813736,-0.170205764472485,-0.529170155525208,-1.68782019615173,-0.280951387248933,-0.67754171602428,-1.70212286710739,0.105184704065323,-0.0101376175880432,-1.36131304502487,0.0752409398555756,-0.0852542519569397,-1.46190649271011,0.208667770028114,-0.833349019289017,-1.54560339450836,0.766888989781364,-0.962119929492474,-1.16514247655869,0.546568632125854,-0.909795559942722,-1.32778030633926,0.365222776763403,-0.209681749343872,-1.1919332742691,0.121177189052105,-0.595416158437729,-1.47338259220123,0.15997950732708,-0.798599440604448,-1.5122794508934,0.75181495025754,-0.962957963347435,-1.12837880849838,0.321717543415616,-0.864605777431279,-1.45644116401672,0.408952154219151,-0.532782673835754,-1.344373524189,0.263381034135818,-0.432040840387344,-1.35529083013535,0.0508868545293808,-0.445479094982147,-1.46221899986267,-1.45227003097534,0.723425894975662,0.746835296973586,-1.84532606601715,0.421141415834427,-0.044289231300354,-1.03270083293319,-0.581435285508633,-0.750716969370842,-1.13329201936722,0.285813771188259,-0.534927487373352,-1.0895127505064,0.344778598286211,-0.512023746967316,-1.66517472267151,0.373864464461803,-0.90278622508049,-0.888846158981323,-0.115849040448666,0.0311911702156067,-1.21076026558876,1.05411314964294,-0.642862349748611,-1.56758952140808,0.0588790774345398,-0.788839165121317,-1.50347191095352,0.259934321045876,-0.379451423883438,-1.52456337213516,0.625925779342651,-0.372996479272842,-0.773510031402111,-0.110444935562555,-0.482091307640076,-0.915034212172031,0.0140971690416336,-0.504656463861465,-1.14907425642014,0.173659775406122,-0.435636341571808, --1.11391872167587,0.45937292277813,-0.542100042104721,-1.22893753647804,0.354001544415951,-0.547025859355927,-0.682771563529968,0.459944576025009,-0.0529820919036865,-0.589803740382195,0.487037315964699,-0.180650889873505,-0.542226848192513,0.21022966876626,-0.18542468547821,-0.756023913621902,0.8131502866745,0.258547723293304,-1.08908677101135,0.637085944414139,-0.0479893088340759,-1.33803275227547,-0.0435188747942448,-0.611830294132233,-1.68796944618225,-0.494603030383587,-0.542273543775082,-1.49214798212051,-0.44408643245697,-0.504002898931503,-1.28665387630463,0.26600170135498,-0.582684718072414,-1.17308682203293,0.283020883798599,-0.767066836357117,-1.14630520343781,0.1007414534688,-0.593821406364441,-1.78837269544601,-0.071305189281702,-0.387679055333138,-1.15674492716789,0.479737557470798,-0.685572952032089,-1.3126956820488,0.80001100897789,-0.558557599782944,-1.25510877370834,0.706039726734161,-0.573089927434921,-1.15886178612709,0.616209417581558,-0.565499246120453,0.701195031404495,0.294073577970266,-0.206799149513245,1.78088003396988,-0.150466203689575,-0.507287500426173,1.58131158351898,0.19353398680687,-0.17568701505661,0.214657247066498,0.675421386957169,-0.195025604218245,0.973209209972993,-1.08030294626951,0.0266985148191452,0.712409719824791,-0.895649269223213,-0.248321205377579,0.472452610731125,-0.774934619665146,-0.122793525457382,0.0125998854637146,0.343876972794533,-0.0368145555257797,0.213820278644562,0.592939823865891,0.219484388828278,1.06985890865326,-0.305218577384949,-0.132091097533703,0.608765191398561,-1.75389897823334,0.135980993509293,0.81955361366272,-1.72304463386536,0.112436681985855,0.821520805358887,-1.78040707111359,0.289358017966151,1.77721494436264,-0.150137256830931,-0.685238316655159,1.79716128110886,-0.119714304804802,-0.68211854994297,1.70044130086899,0.51400063931942,-0.399403725285083,0.0857157707214355,-0.0327799916267395,-0.66402442753315,1.20763257145882,-1.03742998838425,-0.884495824575424,0.872195921838284,-1.28340443968773,-0.523295737802982,0.833149538375437,-1.27109894156456, --0.59184630215168,0.701210118830204,-1.25009390711784,-0.695407412946224,0.758091986179352,-1.26933646202087,-0.502768725156784,0.594674944877625,-1.20693811774254,-0.708676278591156,0.48931086063385,-1.12764644622803,-0.727768450975418,0.671341329813004,-1.08524493873119,-0.559135496616364,0.139603495597839,0.0535838331561536,-0.939679950475693,0.13238537311554,0.0854144571349025,-0.858184963464737,0.259522676467896,0.578240705654025,-0.699788063764572,1.20110169053078,0.736815676093102,-0.881436198949814,0.0834463834762573,-0.290423080325127,-1.00825688242912,0.895596612244844,-0.916172951459885,-0.487319201231003,0.873024297878146,-0.954378224909306,-0.643488317728043,1.02674442529678,-1.16398918628693,-0.308839559555054,1.11081853508949,-1.14990539848804,-0.241061389446259,1.24959236383438,-1.06538477540016,-0.413530826568604,1.38740745186806,-0.732375234365463,-0.475363917648792,1.2688884139061,-0.774711169302464,-0.518880769610405,1.1549451649189,0.115493023768067,-1.23781740665436,0.786947146058083,-0.167228072881699,-1.04156735166907 - } - } - Geometry: 2807663838384, "Geometry::Tongue_Up", "Shape" { - Version: 100 - Indexes: *187 { - a: 19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,274,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307 - } - Vertices: *561 { - a: 0,-0.77085018157959,0.730055332183838,0,-0.79951810836792,1.25335168838501,0,-0.762394905090332,0.731472492218018,0,-0.799518585205078,1.25335121154785,0,0.0212016105651855,1.07408428192139,0.00611710548400879,-0.0401554107666016,0.730271816253662,0,-0.178327083587646,0.0572509765625,-0.00611686706542969,-0.0397963523864746,0.733312129974365,-3.7348393107095e-06,1.26465845108032,0.345621109008789,0.0253331661224365,0.997244834899902,0.028752326965332,-3.7348393107095e-06,0.473381042480469,-0.717018127441406,-0.0253349542617798,0.997244358062744,0.0287513732910156,7.04557169228792e-06,2.28074598312378,-0.87570858001709,0.138434767723083,1.79047775268555,-1.11923694610596,-4.83527492178837e-06,1.1506781578064,-1.69099235534668,-0.138368010520935,1.79056262969971,-1.11937856674194,-4.83527492178837e-06,2.63128566741943,-2.28920650482178,0.135891199111938,2.04337072372437,-1.85327100753784,-4.83527492178837e-06,2.14596128463745,-2.48529052734375,-0.129310131072998,2.03684186935425,-1.84626054763794,0.139999985694885,-0.653522491455078,1.07526445388794,0,-0.201223373413086,0.253488540649414,0.139999985694885,-0.15480375289917,0.604459762573242,-0.139999985694885,-0.653522491455078,1.07526445388794,-0.139999985694885,-0.15480375289917,0.604459762573242,0,-0.691389083862305,1.50102663040161,0,-0.255992412567139,0.95796012878418,0,-0.0235934257507324,0.0393218994140625,0,-0.829478740692139,1.08160018920898,0,-0.0235934257507324,0.0393218994140625,0,-0.900844097137451,0.818620204925537,0,-0.0235934257507324,0.0393218994140625,0,-0.77299165725708,0.709499835968018,0,-0.0235934257507324,0.0393218994140625,0,-0.0235934257507324,0.0393218994140625,0,-0.77299165725708,0.709499835968018,0,-0.0235934257507324,0.0393218994140625,0,-0.82275915145874,0.700970649719238,0,-0.0235934257507324,0.0393218994140625,0,-0.829478740692139,1.08160018920898,0,-0.0235934257507324,0.0393218994140625,0,-0.0235934257507324,0.0393218994140625,0,-0.77069091796875,1.35730266571045,0,-0.0235934257507324,0.0393218994140625,0.10480135679245, -0.0365414619445801,1.07473850250244,0,-0.449969291687012,1.41191005706787,0.139999985694885,-0.365424156188965,1.41910934448242,-0.104800879955292,0.0365409851074219,1.07473754882813,-0.139999985694885,-0.365424156188965,1.41910934448242,-0.00239813327789307,0.00588607788085938,0.886659145355225,0,-0.449788093566895,1.31218910217285,0,-0.4818115234375,1.14991426467896,0.00339865684509277,-0.120883464813232,0.565543651580811,0,-0.50985050201416,1.01074171066284,-0.00217306613922119,-0.244430541992188,0.281339168548584,0,-0.558896541595459,0.79278039932251,-0.00407153367996216,-0.208795547485352,0.0749001502990723,0,-0.399961471557617,0.677576065063477,0,-0.423880100250244,0.672278881072998,0.00407156348228455,-0.208796501159668,0.0748982429504395,0,-0.423880100250244,0.672278881072998,0.00673818588256836,-0.26038122177124,0.164176464080811,0,-0.466663837432861,0.681844234466553,-0.00339818000793457,-0.120555400848389,0.568149566650391,0,-0.4818115234375,1.1499137878418,0,-0.50985050201416,1.01074171066284,-0.00419557094573975,-0.00894498825073242,0.818577289581299,0,-0.448850631713867,1.22313165664673,0.049755722284317,1.24168062210083,0.294626235961914,-1.52854840962391e-06,0.351474285125732,0.75521993637085,0.0951043963432312,0.33375072479248,0.728955745697021,-0.0497567057609558,1.24167776107788,0.294625282287598,-0.0951091349124908,0.33375358581543,0.728952407836914,-0.0184521675109863,1.15119123458862,0.187896728515625,-0.00969517230987549,0.290238857269287,0.607819557189941,0.00824964046478271,0.216550350189209,0.492698669433594,0.0415276288986206,0.842169284820557,-0.205562591552734,0.0102047920227051,0.152676582336426,0.262694358825684,0.0601228475570679,0.579555511474609,-0.664704322814941,0.0118780136108398,0.0190048217773438,-0.0660171508789063,-0.0320749878883362,0.451911926269531,-0.758738040924072,-1.52854840962391e-06,0.0577874183654785,-0.316615104675293,-0.0240388214588165,0.0436525344848633,-0.321334838867188,0.0320795774459839,0.451911926269531,-0.758735179901123,0.0240341126918793,0.0436515808105469, --0.321332931518555,-0.0278488397598267,0.484955310821533,-0.780506134033203,-0.0023268461227417,0.00329303741455078,-0.209946155548096,-0.0415304899215698,0.842170238494873,-0.205561637878418,-0.00825464725494385,0.216644287109375,0.499482154846191,-0.0105574131011963,0.153146743774414,0.276750564575195,-0.00830471515655518,1.0565938949585,0.105545997619629,-0.00286030769348145,0.252814769744873,0.566112041473389,0.0771471560001373,2.24955034255981,-0.90688419342041,7.04557169228792e-06,1.90163898468018,-0.23497486114502,0.0531958341598511,1.86164283752441,-0.281675338745117,-0.0771105885505676,2.24965333938599,-0.906881332397461,-0.0532113611698151,1.86164283752441,-0.281675338745117,-0.0568438172340393,2.13219451904297,-0.980380058288574,-0.00645339488983154,1.73879289627075,-0.381110191345215,0.0770277976989746,1.50472497940063,-0.570644378662109,0.108795404434204,1.54497098922729,-1.31096363067627,0.078588604927063,1.31262111663818,-0.785891532897949,0.0141075849533081,1.21222066879272,-1.64133930206299,0.0642863512039185,0.939902305603027,-1.25491046905518,-0.0618820786476135,1.12615585327148,-1.72764348983765,-4.83527492178837e-06,0.848007202148438,-1.2934889793396,-0.0429655313491821,0.832581520080566,-1.33189010620117,0.0618681609630585,1.12606811523438,-1.72767066955566,0.042959451675415,0.832581520080566,-1.33189010620117,0.0187290906906128,1.12117958068848,-1.76162004470825,-0.0262055993080139,0.845939159393311,-1.36768531799316,-0.108526706695557,1.54493808746338,-1.31107473373413,-0.0770342350006104,1.50473642349243,-0.57062816619873,-0.0785901546478271,1.31262111663818,-0.785891532897949,-0.0865561962127686,1.91172170639038,-1.05663681030273,-0.0495171546936035,1.57472515106201,-0.497337341308594,0.0745536983013153,2.59773206710815,-2.27999305725098,7.04557896824554e-06,2.62470436096191,-1.6329288482666,0.089566171169281,2.56701898574829,-1.6540265083313,-0.0804539024829865,2.59814023971558,-2.28053188323975,-0.0919888615608215,2.56718873977661,-1.65420532226563,0.0961069464683533,2.41859674453735,-2.17575550079346, -0.0101682543754578,2.40333461761475,-1.60790967941284,0.110376358032227,1.93968915939331,-1.55472373962402,0.121050596237183,1.95010805130005,-1.98800468444824,0.0843362808227539,1.72420501708984,-1.67240190505981,0.0490161180496216,1.91111326217651,-2.29671049118042,-0.0139743089675903,1.53876543045044,-2.05049610137939,-0.0795484781265259,2.1180248260498,-2.48883295059204,-4.83527492178837e-06,1.62048959732056,-2.15619087219238,-0.0881118774414063,1.59153127670288,-2.18039226531982,0.0764379799365997,2.11838102340698,-2.48783159255981,0.0881195962429047,1.59166431427002,-2.18016815185547,-0.0242535471916199,2.04522657394409,-2.44979286193848,0.0804736614227295,1.56262588500977,-2.22832155227661,-0.11698853969574,1.94531154632568,-1.98019409179688,-0.108785271644592,1.93865728378296,-1.55600166320801,-0.0833849906921387,1.72383737564087,-1.67462062835693,-0.201080203056335,2.20161199569702,-1.97519111633301,-0.0813004970550537,2.0973424911499,-1.55533313751221,-4.83527492178837e-06,2.48262357711792,-2.52855396270752,-0.0757349133491516,2.45193529129028,-2.52119302749634,0.0208317637443542,2.04176712036133,-2.44566822052002,0.0653596520423889,2.31261873245239,-2.41360235214233,0.072517067193985,2.45169067382813,-2.52096557617188,-0.0493685007095337,1.91004371643066,-2.2975926399231,-0.146963536739349,2.11520481109619,-2.23883581161499,0,-0.902185916900635,0.819250583648682,0,-0.0235934257507324,0.0393218994140625,0.00150656700134277,-0.244668960571289,0.279600143432617,0,-0.559442520141602,0.793032646179199,-0.058153510093689,0.57817268371582,-0.672775268554688,-0.0125925540924072,0.0186901092529297,-0.0652742385864258,-0.0129235982894897,1.21194171905518,-1.64144849777222,-0.0624217987060547,0.945513725280762,-1.26271486282349,0.01717209815979,1.53810596466064,-2.05032205581665,-0.096642017364502,2.41986465454102,-2.18255996704102,-0.0689818263053894,2.31557464599609,-2.41828632354736,0.056897759437561,2.13241624832153,-0.980584144592285,-0.0109386444091797,2.40380573272705,-1.61583280563354,0.0184694528579712,1.15118980407715, -0.187895774841309,0.00644707679748535,1.73891401290894,-0.381001472473145,0.00239872932434082,0.00599956512451172,0.887726783752441,0.00969040393829346,0.290238857269287,0.607818126678467,0,-0.691389083862305,1.50102663040161,0,-0.449787139892578,1.31219005584717,0,-0.255992412567139,0.95796012878418,0,-0.77069091796875,1.35730266571045,0,-0.0235934257507324,0.0393218994140625,0.00419604778289795,-0.00924015045166016,0.816054821014404,0,-0.448850631713867,1.22313165664673,0.00830793380737305,1.05659294128418,0.10554313659668,0.00285530090332031,0.252799510955811,0.562643527984619,0.0865849256515503,1.91159152984619,-1.05644941329956,0.0495097637176514,1.57465648651123,-0.497420310974121,0.200732707977295,2.20266103744507,-1.98354196548462,0.0801513195037842,2.09995269775391,-1.55618524551392,0.146638035774231,2.1163387298584,-2.23953723907471,-0.0188493132591248,1.12270736694336,-1.76099395751953,-0.0813963413238525,1.5629186630249,-2.21880769729614,0.0298064947128296,0.487343311309814,-0.776147842407227,0.028447687625885,0.845457553863525,-1.36644697189331,-0.00788378715515137,-0.259999752044678,0.165551662445068,0.00246179103851318,0.00356578826904297,-0.208343505859375,0,-0.822762012481689,0.700972080230713,0,-0.46666431427002,0.681844234466553,0,-0.0235934257507324,0.0393218994140625 - } - Normals: *561 { - a: -0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.944908827543259,1.31607159972191,0.47273375466466,-0.921599141576962,1.37235361337662,-0.12590342387557,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.684338128286157,-0.712757617235184,-0.929008990526199,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781, --0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602, -1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953, --0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.424183025956154,-0.110263764858246,-0.444203998893499,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.10890665650368,-0.614064067602158,-0.783127889037132,0.926006108522415,-1.40033829212189,-0.595672160387039,0.87939116358757,-1.57997101545334,-0.436816837638617,0.30083137422065,-1.60357117652893,-0.557847484946251,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.638553533263405,-1.59558618068695,-0.300734415650368,-0.676092267036438,-0.527703166007996,-0.737274393439293,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.16787014901638,-1.1262513846159,-0.917428538203239,-0.330165073275566,-1.56126272678375,-0.886212259531021,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577, --1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.35912668704987,-1.11923706531525,-0.733461797237396,-1.30834448337555,-0.783228062093258,-0.743068143725395,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.16062372922897,0.602918721735477,-1.29376450181007,-0.863061770796776,0.546797141432762,-1.2658616900444,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.951680392026901,1.65245860815048,-0.216712422668934,-0.354886561632156,1.94521659612656,-0.179306738078594,-0.894153416156769,1.25129035115242,-0.576352939009666,0.708895847201347,1.80676358938217,0.0761847757967189,0.596255257736743,1.7611757516861,0.276752037927508,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0431989990285047,0.106963634490967,-0.426031785085797,-0.0734565518796444,-0.00426602363586426,-0.0770695299725048,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0784309916198254,0.00150799751281738,-0.133740396879148,0.109619896858931,0.0880307555198669,-0.514075212180614,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.0642043994739652, --0.338101089000702,-1.00382301211357 - } - } - Geometry: 2807663837232, "Geometry::Tongue_Down", "Shape" { - Version: 100 - Indexes: *133 { - a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,143,146,148,151,153,155,158,160,162,165,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,256,258,259,260,261,262,263,264,265,266,267,268,269,270,289,291,292,293,294,295,296,297,298,299,300,301,302,303 - } - Vertices: *399 { - a: -3.69267218047753e-06,-0.239584445953369,-0.238216876983643,-0.0722060203552246,-0.24332332611084,-0.069826602935791,-3.69267218047753e-06,-0.354012012481689,0.227151870727539,0.0722060203552246,-0.24332332611084,-0.069826602935791,-3.38279733114177e-06,-0.642720699310303,-1.40660429000854,-0.0722060203552246,-0.85010814666748,-1.15435266494751,-3.38279733114177e-06,-1.29678869247437,-0.575895309448242,0.0722060203552246,-0.85010814666748,-1.15435266494751,4.88052319269627e-06,-1.7404899597168,-2.09220743179321,0.0418063402175903,-1.93653774261475,-1.76021337509155,-3.38279733114177e-06,-2.44303274154663,-1.34915494918823,-0.0418679714202881,-1.93644523620605,-1.76021337509155,-3.38279733114177e-06,-2.67876529693604,-2.92640924453735,0.0525801181793213,-2.47234678268433,-2.23818683624268,-3.38279733114177e-06,-2.93209171295166,-2.61811447143555,-0.052280068397522,-2.46427297592163,-2.22675085067749,0.0722060203552246,-0.225534439086914,-0.224014282226563,-0.0722060203552246,-0.225534439086914,-0.224014282226563,-0.0722060203552246,-0.210052967071533,-0.165724277496338,-0.0722060203552246,-0.298155784606934,0.0144438743591309,-0.0722060203552246,-0.236057281494141,0.191009044647217,-0.0722060203552246,-0.335980892181396,0.234067916870117,0.0722059905529022,-0.335981369018555,0.234068870544434,0.0722060203552246,-0.284581661224365,0.228451251983643,0.0722060203552246,-0.298155784606934,0.0144438743591309,0.0722059011459351,-0.209875583648682,-0.109364032745361,0.0722060203552246,-0.678271770477295,-1.38424968719482,-3.35697473019536e-06,-0.374710083007813,-0.676616191864014,0.0722060203552246,-0.386026382446289,-0.654452800750732,-0.0722060203552246,-0.678271770477295,-1.38424968719482,-0.0722059905529022,-0.386026382446289,-0.654453277587891,-0.0722060203552246,-0.735881328582764,-1.3102855682373,-0.0722060203552246,-0.41362476348877,-0.605199813842773,-0.0722059011459351,-0.4275221824646,-0.502285957336426,-0.0722060203552246,-1.01517343521118,-0.849206447601318,-0.0722059011459351,-0.528650760650635, --0.356384754180908,-0.0230401754379272,-1.28814601898193,-0.657267093658447,-0.0722060203552246,-0.645135879516602,-0.0988736152648926,-0.0722060203552246,-1.32013559341431,-0.562235355377197,-3.35697473019536e-06,-0.792793273925781,-0.0739116668701172,-0.0722060203552246,-0.791234970092773,-0.0633840560913086,0.0722060203552246,-1.32013559341431,-0.562235355377197,0.0722060203552246,-0.791234970092773,-0.0633840560913086,0.0230401754379272,-1.34110116958618,-0.592640399932861,0.0722060203552246,-0.721133232116699,-0.0628924369812012,0.0722060203552246,-1.01517343521118,-0.849206447601318,0.0722059011459351,-0.4275221824646,-0.502285957336426,0.0722060203552246,-0.528650760650635,-0.356384754180908,0.0722060203552246,-0.808088302612305,-1.19887733459473,0.0722060203552246,-0.400754928588867,-0.543442726135254,-0.017675518989563,-1.75803470611572,-2.08037662506104,4.88052319269627e-06,-1.24500513076782,-1.73116683959961,0.0722060203552246,-1.27891635894775,-1.70914459228516,0.017675518989563,-1.75799465179443,-2.08042669296265,-0.0722060203552246,-1.27891635894775,-1.70914459228516,-0.0204902291297913,-1.80761814117432,-2.01042079925537,-0.0722060203552246,-1.35319519042969,-1.62875890731812,-0.0028376579284668,-1.50362062454224,-1.45211887359619,0.080580472946167,-2.05935764312744,-1.56873416900635,0.0378619432449341,-1.63744640350342,-1.22874784469604,0.0844806432723999,-2.32239627838135,-1.41715860366821,0.0742621421813965,-1.97568130493164,-1.03356504440308,-0.0722060203552246,-2.46583223342896,-1.34370994567871,-3.38279755851545e-06,-2.09121084213257,-0.956823348999023,-0.0722060203552246,-2.11462116241455,-0.955212116241455,0.0722060203552246,-2.46583223342896,-1.34370994567871,0.0722060203552246,-2.11462116241455,-0.955212116241455,-0.0338687896728516,-2.45341968536377,-1.35923671722412,-0.0742133259773254,-2.12556123733521,-0.977460861206055,-0.0804687738418579,-2.05953884124756,-1.56873416900635,0.00284647941589355,-1.50362920761108,-1.45211982727051,-0.0378470420837402,-1.6374568939209,-1.22874784469604,0.0343663692474365, --1.87701892852783,-1.82105541229248,0.0668885707855225,-1.4551420211792,-1.49048805236816,0.0722060203552246,-2.68212842941284,-2.89661407470703,4.88052319269627e-06,-2.1487398147583,-2.67491149902344,0.0722060203552246,-2.17598438262939,-2.63278341293335,-0.0722060203552246,-2.68222379684448,-2.89667415618896,-0.0722060203552246,-2.17599391937256,-2.63277721405029,-0.0323070883750916,-2.65062808990479,-2.70951461791992,-0.0302671194076538,-2.17900085449219,-2.47033834457397,0.0707007646560669,-2.22713613510132,-2.02336692810059,0.0584908723831177,-2.61194133758545,-2.21389150619507,0.087824821472168,-2.36184358596802,-1.82981967926025,0.00476181507110596,-2.79014921188354,-2.35010480880737,0.0584908723831177,-2.64439535140991,-1.87631845474243,-0.0722060203552246,-2.94242143630981,-2.59800052642822,-3.38279733114177e-06,-2.86982154846191,-1.9513087272644,-0.0665753185749054,-2.88745832443237,-1.93591213226318,0.0722060203552246,-2.9424262046814,-2.59799766540527,0.0655940175056458,-2.8863377571106,-1.93591165542603,0.0348709225654602,-2.90063571929932,-2.52633619308472,-0.00678020715713501,-2.8057336807251,-1.96252346038818,-0.0584908723831177,-2.6044545173645,-2.20375728607178,-0.0704225301742554,-2.22736787796021,-2.0233678817749,-0.088576078414917,-2.36159086227417,-1.83096075057983,-0.0427811145782471,-2.53950262069702,-2.43772125244141,-0.014262318611145,-2.20211744308472,-2.14593458175659,-3.38279755851545e-06,-2.91316890716553,-2.90567922592163,-0.0722060203552246,-2.91743803024292,-2.87953329086304,-0.0347679257392883,-2.89610195159912,-2.52024364471436,-0.0496422648429871,-2.88527059555054,-2.72208499908447,0.0722060203552246,-2.91744136810303,-2.87952899932861,-0.00202715396881104,-2.79335069656372,-2.34997892379761,-0.0252509117126465,-2.78141403198242,-2.48964405059814,0.0722060203552246,-0.236057281494141,0.191009044647217,0.0230401754379272,-1.28814792633057,-0.657268047332764,0.0722060203552246,-0.645136833190918,-0.0988736152648926,-0.0845239162445068,-2.32232761383057,-1.41716003417969,-0.0749058723449707, --1.98060035705566,-1.04029417037964,-0.0584908723831177,-2.64326524734497,-1.87546396255493,0.0368247032165527,-2.66064548492432,-2.71547365188599,0.0508911609649658,-2.89110374450684,-2.72807693481445,0.0200576782226563,-1.80714797973633,-2.01042079925537,0.0347341895103455,-2.19094467163086,-2.47673749923706,0.0722060203552246,-0.735879421234131,-1.31028461456299,0.0722060203552246,-1.35319519042969,-1.62875890731812,0.0722060203552246,-0.210052967071533,-0.165724277496338,0.0722060203552246,-0.41362476348877,-0.605199813842773,-0.0722059011459351,-0.209875583648682,-0.109363079071045,-0.0722060203552246,-0.808088302612305,-1.19887781143188,-0.0722060203552246,-0.400754928588867,-0.543442726135254,-0.0345139503479004,-1.87725830078125,-1.82105731964111,-0.0668799877166748,-1.4551362991333,-1.49048709869385,0.0439352989196777,-2.54348039627075,-2.44454193115234,0.0142829418182373,-2.20441770553589,-2.14896678924561,0.0296176671981812,-2.77689456939697,-2.49058628082275,0.0340323448181152,-2.45259380340576,-1.36016416549683,0.0050046443939209,-2.80271911621094,-1.95628929138184,-0.0230401754379272,-1.34021425247192,-0.594513893127441,0.0744873285293579,-2.12448644638062,-0.976748466491699,-0.0722060203552246,-0.284557342529297,0.228207588195801,-0.0722060203552246,-0.720892906188965,-0.0638351440429688 - } - Normals: *399 { - a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.120483659207821,1.22050394117832,-0.975012172013521,0.20459649618715,1.60866624116898,-0.80628751963377,0.758160121738911,0.279101312160492,-1.14875745773315,0.508439189754426,-0.123756885528564,-1.16271796822548,-0.0839923524401627,-0.612549155950546,-1.24820390343666,0.0839898160554924,-0.612549930810928,-1.24820226430893,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721, --0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532, -0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508, --0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,0.344773926102203,1.88571286201477,-0.345818737521768,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994 - } - } - Geometry: 2807663837808, "Geometry::Tongue_Roll", "Shape" { - Version: 100 - Indexes: *168 { - a: 20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,124,127,128,129,130,131,133,134,135,136,137,138,140,141,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,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307 - } - Vertices: *504 { - a: 0.0715572834014893,0.343193054199219,0,-0.00134156446438283,0.154120922088623,-0.0751137733459473,-0.0715649127960205,0.343227863311768,0,0.088465690612793,0.822692394256592,-0.066739559173584,-0.00218660989776254,0.371076583862305,-0.184834480285645,-0.088468074798584,0.822755813598633,-0.0668425559997559,-0.000125123930047266,0.188595294952393,-0.25572681427002,0.178546905517578,0.975777149200439,-0.293458938598633,9.85942460829392e-06,0.118123531341553,-0.0542402267456055,-0.181957960128784,0.967661380767822,-0.298497200012207,0.000568211602512747,0.0891423225402832,-0.0137920379638672,0.356341361999512,0.798389911651611,-0.0741910934448242,-0.00296531757339835,-0.0337529182434082,-0.0502605438232422,-0.362590551376343,0.789304256439209,-0.0780181884765625,-0.00384230562485754,0.167460441589355,-0.157939910888672,0.336041331291199,0.581234931945801,-0.0280437469482422,-0.00301364390179515,0.0932011604309082,-0.114194869995117,-0.350623965263367,0.583075046539307,-0.0155735015869141,-0.107942581176758,0.229259967803955,0,0.163111925125122,0.590945243835449,-0.00609159469604492,0.00926899909973145,0.00901126861572266,0.000632286071777344,0.455690622329712,0.59542179107666,-0.0720028877258301,0.177258729934692,0.164892196655273,0.0116372108459473,0.046688437461853,0.145971298217773,-0.0537052154541016,6.92009925842285e-05,0.00106382369995117,-4.43458557128906e-05,-0.0499995946884155,0.146244525909424,-0.0565457344055176,-6.92605972290039e-05,0.00106430053710938,-4.43458557128906e-05,-0.575827062129974,0.411364555358887,-0.135119915008545,-0.269950866699219,0.066047191619873,-0.165488243103027,-0.163333177566528,0.592289924621582,-0.00581693649291992,-0.00926947593688965,0.00901174545288086,0.000632286071777344,0.00390744209289551,0.173913478851318,0,-0.182077169418335,0.117161750793457,-0.0170450210571289,-0.0461926460266113,0.0392417907714844,0,0.110377073287964,0.685339450836182,0,0.374793529510498,1.19657135009766,-0.0519871711730957,0.309398889541626,0.935471534729004,-0.0215024948120117,0.691290140151978, -1.09813499450684,-0.0611386299133301,0.666993975639343,1.02371883392334,-0.0891628265380859,0.145678579807281,0.437658786773682,-0.146846771240234,-0.00266240979544818,0.333650588989258,-0.179123878479004,0.140182912349701,0.397150993347168,-0.14873743057251,-0.152540773153305,0.427947521209717,-0.152379989624023,-0.147996872663498,0.393235206604004,-0.153366088867188,-0.684685230255127,0.754141807556152,-0.00976705551147461,-0.74010443687439,0.702571868896484,-0.10490894317627,-0.375489830970764,1.19634628295898,-0.0519847869873047,-0.11040210723877,0.685403347015381,0,-0.309438228607178,0.935570240020752,-0.0215129852294922,0.110532164573669,0.414016246795654,-0.0435914993286133,0.0601224899291992,0.306078433990479,0,0.0422159731388092,0.201963901519775,-0.272677421569824,-1.68299302458763e-05,0.0516319274902344,-0.0479106903076172,0.0384664535522461,0.0657138824462891,-0.0499210357666016,-0.0434284210205078,0.201858043670654,-0.271865844726563,-0.0387517511844635,0.0659394264221191,-0.0501923561096191,-0.12335467338562,0.277737140655518,-0.276169776916504,-0.161068677902222,0.188144207000732,-0.163179397583008,0.190035104751587,0.930246829986572,-0.0699939727783203,0.351669192314148,1.1606707572937,-0.332165718078613,0.384688377380371,1.18655300140381,-0.0770378112792969,0.552424490451813,0.930849075317383,-0.424801826477051,0.661182284355164,1.01296138763428,-0.136041164398193,0.139345705509186,0.215506076812744,-0.104123115539551,-0.0029457900673151,0.344180107116699,-0.294868469238281,0.132159739732742,0.434080123901367,-0.296662330627441,-0.140015810728073,0.217243194580078,-0.106452941894531,-0.137048900127411,0.422018051147461,-0.299755573272705,-0.479369521141052,0.665101051330566,-0.304807662963867,-0.572630941867828,0.770112037658691,-0.157512664794922,-0.357102155685425,1.15971231460571,-0.331371307373047,-0.18976616859436,0.930533885955811,-0.0706515312194824,-0.387880921363831,1.18733835220337,-0.0784845352172852,0.0340811014175415,0.541533470153809,-0.295461654663086,0.0448670387268066,0.498977184295654, --0.155375480651855,0.00220069289207458,0.111958503723145,-0.00351715087890625,0.000119759613880888,0.137353897094727,-0.0819644927978516,0.00455772876739502,0.15515661239624,-0.0755071640014648,-0.000170469284057617,0.107191562652588,-0.00119876861572266,-0.00600028038024902,0.151247978210449,-0.0706100463867188,0.0197324752807617,0.304113388061523,-0.0268878936767578,-0.00720226764678955,0.276792049407959,-0.0874662399291992,0.25667929649353,0.920315265655518,-0.19080924987793,0.420951366424561,0.820794105529785,-0.0874748229980469,0.393502712249756,1.04579067230225,-0.21924877166748,0.407957851886749,0.591837882995605,-0.119003295898438,0.467503011226654,0.789066791534424,-0.292445182800293,0.102481588721275,0.0930309295654297,-0.0785417556762695,-0.00073300302028656,-0.0144753456115723,-0.0740079879760742,0.105085700750351,0.171563625335693,-0.123377799987793,-0.111301138997078,0.0877385139465332,-0.0828285217285156,-0.109932169318199,0.168755054473877,-0.12276554107666,-0.363543927669525,0.386679172515869,-0.117993354797363,-0.438645303249359,0.539416313171387,-0.217558860778809,-0.429742574691772,0.82070255279541,-0.0843982696533203,-0.262308835983276,0.913708686828613,-0.195096015930176,-0.398830771446228,1.0407190322876,-0.221144676208496,-0.219918727874756,0.542052745819092,-0.0621252059936523,-0.1281898021698,0.549643993377686,-0.135503768920898,-0.00113403797149658,0.180726051330566,-0.137643814086914,-0.0040311967022717,0.159158229827881,-0.0707721710205078,0.00507912039756775,0.129806518554688,-0.0429239273071289,-0.0108998119831085,0.17484188079834,-0.123985290527344,-0.0175063908100128,0.124320507049561,-0.0291709899902344,0.144306778907776,0.262930870056152,-0.0876951217651367,0.079658567905426,0.29421329498291,-0.0360126495361328,0.354766368865967,0.692086219787598,-0.0163402557373047,0.410064041614532,0.553143978118896,-0.0244255065917969,0.423850536346436,0.665680408477783,-0.00746726989746094,0.32252299785614,0.447977542877197,-0.147233009338379,0.332275032997131,0.501938819885254,-0.136701583862305, -0.0411018431186676,0.123730182647705,-0.115963935852051,-0.00378440879285336,0.0492429733276367,-0.0868511199951172,0.0681915432214737,0.125596523284912,-0.119760513305664,-0.0524221956729889,0.120753288269043,-0.111809730529785,-0.0903974175453186,0.118048667907715,-0.108057975769043,-0.227083921432495,0.236329078674316,-0.144240379333496,-0.188726007938385,0.317537784576416,-0.191018104553223,-0.399854779243469,0.545824527740479,-0.0415248870849609,-0.364158987998962,0.688045978546143,-0.018528938293457,-0.43459689617157,0.66435718536377,-0.0128030776977539,-0.300236642360687,0.462316989898682,-0.0783004760742188,-0.240296959877014,0.516739368438721,-0.0181074142456055,-0.00304810586385429,0.140667915344238,-0.147005081176758,0.0206046104431152,0.157440662384033,-0.123921394348145,0.204616993665695,0.238072872161865,-0.147210121154785,0.210114181041718,0.243772029876709,-0.103322982788086,-0.0296792834997177,0.155365943908691,-0.124935150146484,-0.314284324645996,0.451464176177979,-0.158519744873047,-0.343730390071869,0.434899806976318,-0.115299224853516,-0.444213271141052,0.588114261627197,-0.0742883682250977,-0.177285432815552,0.16587495803833,0.0116462707519531,-0.68551242351532,1.08335304260254,-0.061988353729248,-0.668927431106567,1.01338577270508,-0.0940437316894531,-0.543353736400604,0.920538902282715,-0.427005767822266,-0.663886070251465,1.00166988372803,-0.146541118621826,-0.40911990404129,0.586826801300049,-0.116129875183105,-0.463253319263458,0.7872633934021,-0.295866966247559,-0.329006314277649,0.500846862792969,-0.145634651184082,-0.130150496959686,0.255386352539063,-0.110037803649902,-0.219076633453369,0.247342586517334,-0.116979598999023,-0.0342451930046082,0.299649238586426,-0.0309581756591797,-0.0492287278175354,0.262847423553467,-0.0461816787719727,0.121662855148315,0.276943206787109,-0.277545928955078,0.000715136528015137,0.27590799331665,-0.0889768600463867,0.182080626487732,0.117184162139893,-0.0170469284057617,0.157484292984009,0.196347236633301,-0.170912742614746,0.107940793037415,0.229275703430176, -0,0.0461928844451904,0.0392475128173828,0,-0.00391483306884766,0.173878192901611,0,-0.110555291175842,0.413937091827393,-0.0434179306030273,-0.0601413249969482,0.306021690368652,0,-0.0328595638275146,0.544812679290771,-0.292421340942383,-0.0455783605575562,0.497898578643799,-0.153552055358887,0.213374853134155,0.550905227661133,-0.0581779479980469,0.120896816253662,0.555045127868652,-0.128382682800293,0.320579409599304,0.474356174468994,-0.069849967956543,0.225951671600342,0.532892227172852,-0.0135602951049805,0.366815567016602,0.433246612548828,-0.113364219665527,0.365937173366547,0.398444175720215,-0.117471694946289,0.170735776424408,0.32920503616333,-0.183926582336426,0.506812214851379,0.681757926940918,-0.310940742492676,0.455943495035172,0.547447204589844,-0.22027587890625,0.704180836677551,0.790369987487793,-0.0105795860290527,0.611482918262482,0.782426834106445,-0.153314113616943,0.579699575901031,0.419809341430664,-0.130352973937988,0.745508074760437,0.720680713653564,-0.104914665222168,0.270850896835327,0.0686125755310059,-0.168217182159424 - } - Normals: *504 { - a: 0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.637654334306717,1.17631858587265,-0.117711447179317,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951, -0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366, -0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194, --0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.30563378334045,-0.783810615539551,-0.747863724827766,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.15791302919388,0.602336168289185,-1.29856008291245,-0.86223529279232,0.542993351817131,-1.27621719241142,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.950853914022446,1.64865481853485,-0.227067925035954,-0.354275658726692,1.93988382816315, --0.225037895143032,0.70878441631794,1.80671739578247,0.0641667153686285,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0733451209962368,-0.00431221723556519,-0.0890873642638326,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0783195607364178,0.00146180391311646,-0.145758231170475,0.109004940837622,0.0830060243606567,-0.557603970170021,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.0642043994739652,-0.338101089000702,-1.00382301211357 - } - } - Geometry: 2807663839536, "Geometry::Tongue_UpLeft_Morph", "Shape" { - Version: 100 - Indexes: *151 { - a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,272,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305 - } - Vertices: *453 { - a: -0.205587780103087,0.0939607620239258,0.157804489135742,0.00284099578857422,0.168184280395508,0.136541843414307,-0.0607957281172276,-0.0412545204162598,-0.0937509536743164,-0.449215888977051,-0.116327285766602,-0.032132625579834,-0.556366993114352,-0.260055065155029,0.613465309143066,-0.717149496078491,0.109637260437012,0.246726989746094,-0.864271063357592,-0.321128368377686,0.841568946838379,-0.597594857215881,-0.659493923187256,1.14812755584717,-1.13370306231081,-0.323439598083496,1.3339958190918,-1.76935374736786,0.0446782112121582,0.695526123046875,-1.51800348982215,-0.305262565612793,1.43346977233887,-0.762036323547363,-0.653791904449463,1.99246597290039,-1.83868553489447,-0.328373908996582,2.04752540588379,-2.07788980007172,-0.0655932426452637,1.22809028625488,-1.9208126142621,-0.31779670715332,2.00156402587891,-1.14759142696857,-0.621158599853516,2.28331851959229,-0.300505101680756,0.0285043716430664,0.0403261184692383,0.143511466681957,0,0.0105133056640625,0.112142086029053,0,-0.0855584144592285,-0.0649407505989075,0.144923210144043,0.192941188812256,0.264890551567078,0,0.107010364532471,-0.0381768941879272,0.160659790039063,0.166801929473877,0.253685832023621,0,0.186825275421143,0.233543157577515,0,0.250312805175781,0.0232701301574707,0.158554553985596,0.104612827301025,0.22700047492981,0,0.255780220031738,0.040794849395752,0.119499206542969,0.0370821952819824,0.21491527557373,0,0.250821590423584,-0.0303387045860291,0.000758171081542969,-0.0652966499328613,0.235396597534418,0,0.0122828483581543,0.235381275415421,0,0.0848870277404785,-0.356015384197235,-0.0867791175842285,-0.117659568786621,0.225639224052429,0,-0.0596747398376465,-0.39326000213623,-0.156573295593262,-0.14686393737793,0.209286212921143,0,-0.177070140838623,-0.443164825439453,-0.148068428039551,-0.0770344734191895,0.201622009277344,0,-0.22335958480835,0.194405317306519,0,-0.227898597717285,-0.449617385864258,-0.0959153175354004,-0.00537776947021484,0.210345506668091,0,-0.212890148162842,-0.561840891838074,-0.405056953430176, -0.74263858795166,-0.287122135981917,0.039344310760498,0.319331645965576,-0.352616161108017,-0.124626636505127,0.399148464202881,-0.563640356063843,-0.125696659088135,0.491817474365234,-0.119933158159256,0.181807041168213,0.33280086517334,-0.633548498153687,-0.00313234329223633,0.345720291137695,-0.065805196762085,0.237988471984863,0.28097677230835,0.0409787893295288,0.291952133178711,0.285060405731201,-0.774287343025208,0.107777118682861,0.266386032104492,0.0425509214401245,0.390091419219971,0.253280162811279,-0.900406360626221,0.06182861328125,0.38601016998291,0.0165401697158813,0.285684108734131,0.26543140411377,-0.868755400180817,-0.197999954223633,0.741269111633301,-0.437979616224766,-0.126250743865967,0.338989734649658,-0.309081733226776,-0.0116281509399414,0.328869342803955,-0.873090952634811,-0.453324317932129,0.959705352783203,-0.546612948179245,-0.255303859710693,0.351394176483154,-0.820358991622925,-0.630709648132324,1.19718837738037,-0.657158851623535,-0.437699317932129,0.400043964385986,-0.64508318901062,-0.696891307830811,1.21642589569092,-0.619542002677917,-0.271862030029297,0.410511016845703,-0.642108559608459,-0.338783740997314,0.430751800537109,-0.592451691627502,-0.60963249206543,1.07576560974121,-0.585883498191833,-0.367566108703613,0.435452938079834,-1.0608297586441,-0.449479103088379,1.52179718017578,-0.723371688276529,-0.262809276580811,0.899794578552246,-0.645912870764732,-0.40361213684082,1.09421920776367,-1.2699182331562,-0.192031860351563,1.16374397277832,-0.83472153544426,-0.125156879425049,0.719376564025879,-1.47079759836197,-0.0760364532470703,0.947590827941895,-1.02354896068573,-0.00837564468383789,0.508925437927246,-1.2221063375473,0.101638317108154,0.356998443603516,-1.84922528266907,0.0466175079345703,0.719354629516602,-1.30637609958649,0.102786540985107,0.382043838500977,-1.91801631450653,0.00638818740844727,0.869587898254395,-1.47627055644989,0.0718460083007813,0.550663948059082,-1.62093105912209,-0.196600914001465,1.30899810791016,-1.16278171539307,-0.270799160003662,1.15262317657471, --1.24251818656921,-0.151448249816895,1.00997352600098,-1.42838254570961,-0.411989688873291,1.57287979125977,-1.09506845474243,-0.395058155059814,1.31423950195313,-1.22695079445839,-0.532276153564453,1.84154605865479,-0.928067445755005,-0.544066429138184,1.61684131622314,-0.852341294288635,-0.650603771209717,2.00783061981201,-0.518267869949341,-0.629729270935059,1.62970733642578,-0.582103252410889,-0.645744800567627,1.68958473205566,-0.794363141059875,-0.619987487792969,1.92052841186523,-0.542338371276855,-0.58850622177124,1.53691577911377,-1.76674118638039,-0.416779041290283,2.12898731231689,-1.56697984039783,-0.319906711578369,1.77947521209717,-1.4807234108448,-0.421423435211182,1.90398788452148,-1.89864900708199,-0.237202644348145,1.94237327575684,-1.66218081116676,-0.210771560668945,1.6525354385376,-2.04478639364243,-0.158890724182129,1.66092300415039,-1.84852093458176,-0.118727207183838,1.37655353546143,-1.96608114242554,0.00774908065795898,1.00487041473389,-2.12177753448486,-0.069432258605957,1.27757358551025,-2.01122450828552,0.00169086456298828,1.01231384277344,-2.16257762908936,-0.104999542236328,1.50559520721436,-2.08501183986664,-0.0422115325927734,1.25015544891357,-1.96887612342834,-0.236979007720947,1.92259502410889,-1.77265550196171,-0.312553405761719,1.76601982116699,-1.84179064631462,-0.220720767974854,1.67481517791748,-1.86970031261444,-0.396918773651123,2.06748676300049,-1.71176725625992,-0.400557518005371,1.8608226776123,-1.7172269821167,-0.495261192321777,2.22794628143311,-1.59766829013824,-0.469932079315186,2.04171371459961,-1.22836468368769,-0.606243133544922,2.28973770141602,-1.0397941172123,-0.638956546783447,2.19582271575928,-1.10595589876175,-0.636059284210205,2.18136215209961,-1.26343212928623,-0.589789390563965,2.37163829803467,-1.09643679857254,-0.612470626831055,2.17175006866455,-1.94118213653564,-0.318349361419678,2.10329151153564,-1.98970142006874,-0.235515594482422,2.01529312133789,-2.10347664356232,-0.1690993309021,1.71582317352295,-2.10884088277817,-0.164173603057861,1.75329780578613, --1.88303810358047,-0.399067401885986,2.16918468475342,-1.56501263380051,-0.556692123413086,2.27937030792236,-1.44326958060265,-0.569689750671387,2.36939525604248,-0.418766260147095,-0.174753665924072,-0.136759757995605,0.183260917663574,0,-0.21696662902832,-0.783455371856689,-0.701176643371582,1.28617286682129,-0.641582369804382,-0.48029899597168,0.505779266357422,-1.07662944495678,-0.607513904571533,1.96954822540283,-0.821637749671936,-0.614950656890869,1.74565505981445,-1.38731747865677,-0.566314697265625,2.1624870300293,-1.5190252661705,-0.501655578613281,2.30951595306396,-1.63990354537964,-0.491461277008057,2.31882953643799,-0.907750830054283,-0.554007053375244,1.76502227783203,-1.2849308848381,-0.515987873077393,2.08220481872559,-0.568972110748291,-0.539233207702637,0.938935279846191,-0.562056511640549,-0.52604341506958,1.35853481292725,-0.343324065208435,-0.0503606796264648,0.0416269302368164,-0.495702028274536,-0.245667457580566,0.471998691558838,0.0903298854827881,0,-0.163149356842041,-0.011674165725708,0.166523456573486,0.150240421295166,0.240783214569092,0,0.238767147064209,-0.690457344055176,0.0721607208251953,0.291102409362793,0.0027930736541748,0.271498203277588,0.287755966186523,-1.67802023887634,0.00859975814819336,0.776963233947754,-1.1521053314209,0.0629634857177734,0.425430297851563,-2.12539863586426,-0.10247802734375,1.38973903656006,-1.91936182975769,-0.028714656829834,1.11679553985596,-2.19203865528107,-0.105506420135498,1.51102924346924,-1.83379870653152,-0.0651645660400391,1.04610824584961,-1.98031347990036,-0.129661560058594,1.51558303833008,-0.902108907699585,-0.0261454582214355,0.508074760437012,-1.42234843969345,-0.00378990173339844,0.714756011962891,0.0297569036483765,0.0813097953796387,-0.0061192512512207,-0.0711381435394287,0.184239387512207,0.275914192199707,0.235139131546021,0,0.206559658050537 - } - Normals: *453 { - a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842, --0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387, --0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429, --0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.329245887696743,1.94907534122467,-0.144308499991894,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946, -0.00242036581039429,-0.13834481080994,0.0923748388886452,0.0320273637771606,-0.913065552711487 - } - } - Geometry: 2805100583344, "Geometry::Tongue_UpRight_Morph", "Shape" { - Version: 100 - Indexes: *5555 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,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,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962, -2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400, -3401,3402,3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811, -3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234, -4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648, -4649,4651,4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073, -5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, -5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5965,5967,5995,5997,6028,6155,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6515,6525,6526,6529,6530,6531,6536,6544,6552,6553,6554,7214,7347,7349,7377, -7379,7410,7537,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7897,7907,7908,7911,7912,7913,7918,7926,7934,7935,7936,8591,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 - } - Vertices: *16665 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,0.205591702833772,0.0939607620239258,0.157804489135742,0.449122905731201,-0.116327285766602,-0.032132625579834,0.0607996545732021,-0.0412545204162598,-0.0937509536743164,-0.00293397903442383,0.168184280395508,0.136541843414307,0.55636696703732,-0.260055065155029,0.613465309143066,0.597507357597351,-0.659493923187256,1.14812755584717,0.864271026104689,-0.321128368377686,0.841568946838379,0.717061996459961,0.109637260437012,0.246726989746094,1.13351123593748,-0.323439598083496,1.3339958190918,0.761941075325012,-0.653791904449463,1.99246597290039,1.51800343766809,-0.305262565612793,1.43346977233887,1.7692586183548,0.0446782112121582,0.695526123046875,1.83868549019098,-0.328373908996582,2.04752540588379,1.14759910106659,-0.621158599853516,2.28331851959229,1.92081259936094,-0.31779670715332,2.00156402587891,2.07789742946625,-0.0655932426452637,1.22809028625488,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05, -0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.0648455619812012,0.144923210144043,0.192941188812256,-0.143511481583118,0,0.0105133056640625,-0.264977991580963,-1.43051147460938e-06,0.107010364532471,0.300409913063049,0.0285043716430664,0.0403261184692383,-0.112229526042938,1.43051147460938e-06,-0.0855584144592285,0.343228697776794,-0.0503606796264648,0.0416269302368164,-0.0904251337051392,-1.43051147460938e-06,-0.163149356842041,-0.201717138290405,0,-0.223359107971191,0.443069934844971,-0.148068428039551,-0.0770339965820313,-0.194492816925049,9.5367431640625e-07,-0.227898597717285,0.418678283691406,-0.174753665924072,-0.136759757995605, --0.183346271514893,0,-0.21696662902832,0.356027334928513,-0.0867781639099121,-0.117659568786621,-0.23539661988616,0,0.0122828483581543,-0.225734412670135,0,-0.0596747398376465,0.0303506553173065,0.000757217407226563,-0.0652966499328613,-0.235476464033127,0,0.0848870277404785,-0.0297448635101318,0.0813097953796387,-0.0061187744140625,-0.235234498977661,4.76837158203125e-07,0.206559658050537,-0.0233650207519531,0.158554553985596,0.104612350463867,-0.233638286590576,0,0.250312328338623,-0.22708797454834,-9.5367431640625e-07,0.255780220031738,0.0115866661071777,0.166524887084961,0.150240421295166,-0.240878582000732,0,0.238767147064209,0.563545137643814,-0.125696659088135,0.491817474365234,0.287121826782823,0.039344310760498,0.319331645965576,0.119841456413269,0.181807041168213,0.332801342010498,0.561745643615723,-0.405056953430176,0.74263858795166,0.35252445936203,-0.124626636505127,0.399147987365723,0.568876028060913,-0.539233207702637,0.938935279846191,0.495611071586609,-0.245667457580566,0.471999168395996,0.619443297386169,-0.271862030029297,0.410511016845703,0.644988656044006,-0.696891307830811,1.21642589569092,0.642116069793701,-0.338783740997314,0.430751800537109,0.783360838890076,-0.701176643371582,1.28617382049561,0.641483187675476,-0.48029899597168,0.505779266357422,0.87309855222702,-0.453324317932129,0.959705352783203,0.437979303300381,-0.126250743865967,0.338989734649658,0.546521246433258,-0.255303859710693,0.351394176483154,0.868762999773026,-0.197999954223633,0.741269111633301,0.308990031480789,-0.0116281509399414,0.328869342803955,0.902013540267944,-0.0261454582214355,0.508074760437012,0.0710389614105225,0.184239387512207,0.275913715362549,0.774192810058594,0.107777118682861,0.266386032104492,-0.0410774946212769,0.291952133178711,0.285060405731201,-0.0425434112548828,0.390091419219971,0.253280162811279,0.690464735031128,0.0721607208251953,0.291101455688477,-0.0028918981552124,0.271498203277588,0.28775691986084,1.26983082294464,-0.192031860351563,1.16374397277832,0.723179873079062,-0.262809276580811,0.899794578552246, -0.834530264139175,-0.125156879425049,0.719376564025879,1.06074234843254,-0.449479103088379,1.52179718017578,0.645721584558487,-0.40361213684082,1.09421920776367,0.907655656337738,-0.554007053375244,1.76502227783203,0.561968326568604,-0.52604341506958,1.35853481292725,0.518180251121521,-0.629729270935059,1.62970733642578,0.852245569229126,-0.650603771209717,2.00783061981201,0.58211088180542,-0.645744800567627,1.68958473205566,1.07654106616974,-0.607513904571533,1.96955013275146,0.821645855903625,-0.614950656890869,1.74565410614014,1.42829498648643,-0.411989688873291,1.57287979125977,1.16278171539307,-0.270799160003662,1.15262317657471,1.0949809551239,-0.395058155059814,1.31423950195313,1.62084349989891,-0.196600914001465,1.30899810791016,1.24243062734604,-0.151448249816895,1.00997352600098,1.83371078968048,-0.0651645660400391,1.04610824584961,1.42226022481918,-0.00378990173339844,0.714756011962891,1.84912967681885,0.0466175079345703,0.719354629516602,1.22201871871948,0.101638317108154,0.356998443603516,1.30638372898102,0.102786540985107,0.382043838500977,1.67802786827087,0.00859689712524414,0.776963233947754,1.15200996398926,0.0629634857177734,0.425429344177246,1.89856144785881,-0.237202644348145,1.94237327575684,1.56678800284863,-0.319906711578369,1.77947521209717,1.66199013590813,-0.210771560668945,1.6525354385376,1.7666537463665,-0.416779041290283,2.12898731231689,1.48053273558617,-0.421423435211182,1.90398788452148,1.51893693208694,-0.501655578613281,2.30951595306396,1.28483563661575,-0.515987873077393,2.08220481872559,1.03970646858215,-0.638956546783447,2.19582366943359,1.22837233543396,-0.606241703033447,2.2897367477417,1.10586071014404,-0.636059284210205,2.18136405944824,1.56491684913635,-0.556692123413086,2.27937030792236,1.38723003864288,-0.566314697265625,2.16248798370361,1.86961197853088,-0.396914958953857,2.06748676300049,1.77265547215939,-0.312553405761719,1.76601982116699,1.71167901158333,-0.400556564331055,1.86082458496094,1.9687876701355,-0.236982822418213,1.92259502410889,1.84170240163803,-0.22072172164917, -1.67481327056885,2.10338842868805,-0.1690993309021,1.71582317352295,1.9802183508873,-0.129661560058594,1.51558494567871,2.12178516387939,-0.0694336891174316,1.27757453918457,1.96599340438843,0.00774908065795898,1.00486946105957,2.01112926006317,0.00169086456298828,1.0123119354248,2.12530338764191,-0.10247802734375,1.38973903656006,1.91927444934845,-0.028714656829834,1.11679553985596,1.94118213653564,-0.318349361419678,2.10329151153564,1.88294300436974,-0.399065017700195,2.16918468475342,1.71713864803314,-0.495261192321777,2.22794628143311,1.63971334695816,-0.491459846496582,2.31882858276367,1.98960620164871,-0.235517978668213,2.01529312133789,2.16248190402985,-0.104999542236328,1.50559520721436,2.19194340705872,-0.105506420135498,1.51102924346924,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-0.0408828258514404,0.119499206542969,0.0370821952819824,-0.215000629425049,0,0.250821590423584,0.900311827659607,0.06182861328125,0.386009216308594,-0.0166393518447876,0.285684108734131,0.26543140411377,1.91792798042297,0.00638818740844727,0.869585990905762,1.47627878189087,0.0718460083007813,0.550664901733398,2.08492434024811,-0.0422115325927734,1.25015449523926,2.04469811916351,-0.158890724182129,1.66092300415039,2.1086505651474,-0.164175033569336,1.75329875946045,1.47070240974426,-0.0760364532470703,0.947590827941895,1.8484258055687,-0.118727207183838,1.37655353546143,0.633452415466309,-0.00313234329223633,0.345720291137695,1.02346074581146,-0.00837564468383789,0.508925437927246,0.0380815267562866,0.160659790039063,0.166801929473877,0.0657142400741577,0.237988471984863,0.280976295471191,-8.74996185302734e-05,0,0,-0.253781080245972,1.43051147460938e-06,0.186825275421143,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453, -0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.449529886245728,-0.095916748046875,-0.00537776947021484,-0.210440874099731,0,-0.212890148162842,0.592459082603455,-0.60963249206543,1.07576656341553,0.585784673690796,-0.367566108703613,0.435451984405518,0.794370889663696,-0.61998462677002,1.92052841186523,0.542243003845215,-0.58850622177124,1.53691673278809,1.26333689689636,-0.589789390563965,2.37163829803467,1.09634947776794,-0.612470626831055,2.17175006866455,1.44317424297333,-0.569689750671387,2.36939525604248,1.22686284780502,-0.532276153564453,1.84154605865479,1.59757310152054,-0.469932079315186,2.04171180725098,0.820263624191284,-0.630709648132324,1.19718837738037,0.927979290485382,-0.544066429138184,1.61684131622314,0.393272042274475,-0.156573295593262,-0.146864414215088,0.657059669494629,-0.437699317932129,0.400044441223145,-9.52482223510742e-05,0,0,-0.209381580352783,-4.76837158203125e-07,-0.177070140838623,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06, -0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0,-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05, -1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05, -0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05, -0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05, -0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05, -0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05, -0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609, -0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05, -0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05, -0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05, -0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05, -0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0, -8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05, -0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0, -8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05, -0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0, -0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05, -0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05, -0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05, -0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05, -0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05, -0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05, -0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05, -0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0, -8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625, -0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0, -0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05, -0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05, -0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, -0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05, -0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05, -0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0, -8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05, -0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0, -8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05, -0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086, -0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332, -0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05, -0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05, -0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0, -0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05, -0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0, -0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617, -0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05, -0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0, -8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05, -0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0, -0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05, -0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0, -0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05, -0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05, -0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05, -0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0, -0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05, -0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0, -0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0, -9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, -0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05, -0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05, -0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0, -9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05, -0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0, -0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0,0.000311195850372314,0,0,0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,-7.62939453125e-06,1.9073486328125e-06,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06, --3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,-6.67572021484375e-06,-2.78949737548828e-05,7.62939453125e-06,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,1.43051147460938e-06,0,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,7.62939453125e-06,-1.9073486328125e-06,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,-6.67572021484375e-06,2.78949737548828e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078, --9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,3.55243682861328e-05,-4.76837158203125e-06,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,1.43051147460938e-06,0,0,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 - } - Normals: *16665 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662, --0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528,0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668, -0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373,-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579, -1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941, --1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897, --0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461, --1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318, -0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345,3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.831986740231514,-1.45471206307411,-0.256839517503977,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.140986686572433,-1.1514785438776,-0.802622318267822,-0.0494998346839566,-1.23472410440445,-0.980435178615153,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683, -0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.355911031365395,0.0768817663192749,0.541599974036217,-0.407593712210655,0.0947177410125732,0.464590594172478,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.148774564266205,0.249500811100006,-0.373034179210663,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.429313331842422,-1.51347768306732,-0.457492679357529,-0.314539641141891,-1.57477766275406,-0.425196655094624,0.423921898007393,-1.66069328784943,-0.626134909689426,0.406331941485405,-1.68925100564957,-0.553491108119488,0.493490897119045,-1.76123064756393,0.00973547995090485,0.0374980270862579,-1.51087063550949,-0.742654098197818,-1.06436544656754,0.0388029664754868,-0.711108490824699,-0.873245977854822,-0.730827063322067,-0.669198244810104,-0.550414368510246,-0.779912859201431,-0.366896390914917,-0.39802885055542,-0.123441606760025,-0.441001325845718,-0.122196972370148,0.195658624172211,-0.296430170536041,0.283824041485786,0.430972993373871,-0.808780890889466,0.0201019772794098,0.366407930850983,-0.395660787820816,-0.659750461578369,0.22623735666275,-0.47093340754509,0.67371778190136,0.391672521829605,-0.25110524892807, --0.860397607088089,0.414401888847351,-0.0104736983776093,1.00705640017986,0.528304755687714,0.0599220991134644,0.813746120780706,0.326629638671875,0.178752481937408,0.78201099857688,0.287108302116394,0.171897381544113,0.57217625528574,0.202253341674805,0.0774389505386353,0.0925849080085754,0.228675127029419,-0.395070791244507,-0.259149141609669,0.237442493438721,-0.264651149511337,-0.648929320275784,0.0378597378730774,0.418735951185226,0.524482190608978,-0.893576204776764,-0.444915741682053,0.610841885209084,-1.11562320590019,-0.937754448503256,0.645509381662123,-1.06557667255402,-1.14067909121513,0.688760742545128,-0.725150763988495,-0.60640349984169,-0.0146625339984894,-1.3681528866291,-0.697983022779226,-0.0688910186290741,-1.47109168767929,-0.883234977722168,-0.270682044327259,-1.54041713476181,-0.64714615046978,0.065057756844908,-1.51609545946121,-0.77185034006834,0.0222609005868435,-1.44348981976509,-1.00617432594299,-0.614130511879921,-1.48018604516983,-0.827719658613205,-0.188102859181527,-0.623065620660782,-1.00927282124758,-0.534484446048737,-0.452017039060593,-1.0284481793642,-0.906482756137848,-0.113284289836884,-0.670947343111038,-0.832640707492828,-0.0604232549667358,-0.0535344779491425,-0.579538561403751,-0.395639181137085,0.828053966164589,-0.18808173415735,-1.31113377213478,-1.018210478127,-0.948182106018066,-1.14389149844646,-0.793620347976685,-1.12192876636982,-0.994508609175682,-0.0973880887031555,-1.23291374742985,-0.888239755295217,0.223524361848831,-1.34917885065079,-0.927607449702919,-0.0800051987171173,-0.695245057344437,-1.00083227828145,-0.796974241733551,-0.864916890859604,-0.340461075305939,-0.125917017459869,-1.00360512733459,-1.06718820333481,-0.765173673629761,-0.72966930270195,-1.15454173088074,-1.22293323278427,-0.240225639997561,-0.793064124882221,-1.41210687160492,-1.19421043992043,-1.11099016666412,-0.308322668075562,-0.89190998673439,-0.18143618106842,-0.15630891919136,-1.08844855427742,-0.899897456169128,-0.944813013076782,-1.09071457386017,-0.97268059104681,-0.83754900097847, --1.2588307261467,-1.11897388100624,0.293282777070999,-0.64717760682106,0.130110263824463,0.493075855076313,-1.19868251681328,-0.841400133445859,0.168550997972488,-1.28747937083244,-0.96708089672029,-0.0758544355630875,-1.23414766788483,-1.21696224808693,0.147892020642757,-0.688916563987732,-0.0216226577758789,0.246790237724781,-1.19551599025726,-0.909580887295306,-0.418690230697393,-1.23355752229691,-0.846795218065381,-0.481686312705278,-0.709983319044113,-0.440479904413223,-0.548690766096115,-0.656880795955658,-0.928959682583809,-0.38887220621109,-0.887440919876099,-0.238400518894196,-0.155715435743332,-1.13039612770081,-1.02050400525331,-0.348883718252182,-0.742265462875366,0.189440131187439,0.501275680959225,-1.64638417959213,-0.533405408263206,0.0779018700122833,-1.25368764996529,0.228878796100616,-0.00357171893119812,-1.74715322256088,0.429681822657585,-0.528637766838074,-1.26939028501511,0.899260193109512,-0.472641795873642,-1.29668152332306,-0.615887146443129,-0.711594894528389,-0.835555523633957,-0.900930494070053,-1.49201416969299,-1.15248101949692,0.0851616710424423,-1.57785922288895,-1.27010190486908,0.282153397798538,-1.03246867656708,-1.20565751194954,0.324511811137199,-1.07544285058975,-0.886058300733566,-0.0157867670059204,-1.6971201300621,-0.518243715167046,0.671140938997269,-1.00123719125986,-0.12161649534346,0.740867093205452,-1.03162876516581,-1.02173647284508,1.71576446294785,-0.0226936563849449,-1.78693407773972,0.294915407896042,-0.14990821480751,-1.71429795026779,0.482504948973656,-0.617681115865707,-0.99490774422884,0.929102759808302,-0.546603389084339,-1.01325500756502,0.897591792047024,-0.50639633089304,-1.0850395411253,0.918989293277264,-0.559527494013309,-0.585469186306,0.832401685416698,-0.295324176549911,-0.499422878026962,0.812273696064949,-0.478164426982403,-0.960131347179413,1.74136483669281,0.157464876770973,-1.11741030961275,0.921952277421951,-0.12397387996316,-0.701814740896225,1.00501084700227,0.0522848442196846,-0.861249774694443,1.02971842139959,-0.15994302649051,-0.626428782939911, -0.932176595553756,0.167820941656828,-0.654926240444183,0.91271604411304,-0.0285836309194565,-0.788607567548752,0.919172383844852,-0.397471022792161,-0.620317012071609,0.852167792618275,-0.277624599635601,-0.240541517734528,1.67253345251083,0.497809052467346,-0.605038821697235,0.688707262277603,0.25129608809948,-0.7038354575634,0.962008524686098,0.061392892152071,-0.793622195720673,0.939986153505743,0.251608788967133,-0.626743316650391,0.914026657119393,0.166382573544979,-0.659278154373169,0.888841014355421,0.311929851770401,-0.636726498603821,0.914597803726792,0.195043250918388,-0.700076907873154,0.934555940330029,0.195161797106266,0.185228332877159,1.3202520608902,-0.74394653737545,0.123378306627274,0.617623895406723,-0.704190999269485,0.0541011095046997,0.596655666828156,-0.649444937705994,-0.0887138098478317,0.920391282765195,-0.637506008148193,-0.139821007847786,0.669684678316116,-0.583968937397003,-0.0645329058170319,0.625057607889175,-0.619251906871796,-0.641161143779755,1.48843711614609,0.0265544354915619,-0.387188352644444,0.807153008878231,-0.495556086301804,0.373651199042797,1.33428040146828,-0.639408111572266,-0.065660685300827,0.659293621778488,-0.592050462961197,-0.16039252281189,0.675736606121063,-0.698100864887238,-0.270415306091309,0.894932728260756,-0.624380528926849,-0.33416748046875,0.737450674176216,-0.566665470600128,-0.235922783613205,0.705225378274918,-0.666976749897003,-0.507990270853043,1.50947797298431,-0.171180322766304,-0.53793740272522,0.764590248465538,-0.356109917163849,-0.0572948157787323,1.45595961809158,-0.350952506065369,-0.628687091171741,0.791262045502663,-0.310551196336746,-0.553126633167267,0.779614061117172,-0.402701318264008,-0.394581377506256,0.759547010064125,-0.487200021743774,-0.63705587387085,0.851986683905125,-0.244291722774506,-0.577266544103622,0.84110452234745,-0.387002393603325,-0.38139271736145,1.50873792171478,0.393839254975319,-0.432665944099426,0.610702961683273,-0.076494425535202,-0.228165537118912,1.69837766885757,-0.00724941492080688,-0.726056814193726,0.898825194686651, --0.0803098380565643,-0.465457737445831,0.762948624789715,-0.0556240379810333,-0.325801938772202,0.523203298449516,-0.0948881506919861,-0.0672547221183777,0.444165430963039,-0.182048052549362,-0.0875720977783203,0.286989264190197,-0.00326636433601379,-0.192819744348526,1.48896372318268,0.711768969893456,-0.480109512805939,0.732875630259514,-0.0121575891971588,0.317896485328674,1.59475356340408,-0.246473342180252,-0.109783887863159,0.451098173856735,-0.101860165596008,-0.450962722301483,0.7332668825984,-0.0827093720436096,-0.441801249980927,0.854076229035854,-0.403903856873512,-0.150275230407715,0.454033628106117,-0.0018007755279541,-0.339191019535065,0.693236976861954,-0.0882247090339661,-0.0996013581752777,-0.061754584312439,0.341410152614117,-0.406362295150757,-1.08295804262161,-0.107924135401845,0.318685829639435,1.27346113324165,0.327601686120033,-0.197586297988892,0.536781944334507,0.195477746427059,-0.434043705463409,-0.831831048999447,-0.147627646103501,-0.254544377326965,-0.764483876526356,0.0868541300296783,-0.264220833778381,-0.595513347536325,0.124815329909325,-0.437855660915375,-0.811754880473018,-0.11528698541224,-0.4736512824893,-0.179071068763733,0.106227114796638,-0.794781908392906,-1.0294544249773,-0.00998420268297195,0.556289116423613,-0.532113701105118,0.945485254749656,0.985605716705322,-0.552159339189529,0.790170527994633,0.49487092718482,-0.287835359573364,0.374762754887342,0.53477568179369,-0.127009689807892,0.0553143471479416,0.588271982967854,-0.255542695522308,0.303683787584305,-0.0605812391322615,-0.130833745002747,0.440338145941496,-0.133221477094658,-0.0214558243751526,0.161489009857178,-0.0392749096026819,-0.00240916013717651,0.0246630311012268,0.203200998022567,-0.301041007041931,0.763448011130095,0.467371381819248,-0.917782209813595,0.785372465848923,0.550934255123138,-0.854677498340607,0.679631173610687,0.848780110478401,-0.863274440169334,0.692612357437611,-0.227725389077364,-0.135497391223907,0.507149565964937,-0.255018251474212,-1.08043543994427,0.786241516470909,0.843483939766884, --0.888883963227272,0.0877960324287415,0.515427924692631,-0.222154438495636,0.20943409204483,0.674240365624428,-0.913426607847214,0.442288890480995,-0.22772380543028,-0.0591545104980469,0.366829682141542,0.861063815653324,-1.14087474346161,-0.0460773035883904,0.369244858622551,-0.109524130821228,0.127782750874758,0.751925900578499,-0.98316041007638,0.161060366779566,-0.145129010081291,0.008392333984375,0.0167098343372345,0.744878336787224,-1.02300775051117,-0.146492823958397,0.0820964872837067,-0.0132423639297485,-0.106406576931477,0.692378461360931,-0.860939241945744,0.104297086596489,-0.227727022012459,-0.200088441371918,0.595207560807467,-0.00591540336608887,-0.344543099403381,0.552935928106308,0.01202592253685,-0.793156310915947,0.586904466152191,0.123964309692383,-0.111037611961365,0.102205753326416,0.519827574491501,-0.898067265748978,0.371823221445084,0.091616302728653,-0.00960761308670044,-0.110421776771545,0.713544994592667,-1.06793105602264,-0.183390319347382,0.151728481054306,-0.0403527021408081,-0.196065177209675,0.75043885409832,-1.02424653619528,-0.256005586590618,0.149336338043213,-0.45187896490097,0.532603532075882,0.3045374751091,-0.81657549738884,0.589922696352005,0.301695108413696,-0.900855358690023,0.600077241659164,0.383777409791946,-0.57489550113678,0.441722184419632,-0.240957329074469,-0.0855914354324341,0.28106352686882,0.170795395970345,-0.655826210975647,0.619051396846771,0.200279325246811,-0.80021957308054,0.515313118696213,-0.240232289672804,-0.0794593095779419,0.187314510345459,-0.259158843907699,-0.70822012424469,0.746084302663803,0.209431603550911,-0.087336540222168,0.030964732170105,0.68378321826458,-0.981903575360775,0.15296933054924,0.666409879922867,-1.00523095577955,0.179073184728622,0.557842195034027,-0.694899648427963,0.249904841184616,-0.255011048348095,0.0386262536048889,-0.0115646123886108,0.666248977184296,-0.659342721104622,0.050123542547226,0.596048817038536,-0.968687416985631,0.311432659626007,-0.255021794911954,-0.0476683974266052,0.18468177318573,0.153233379125595,0.0361263751983643, --0.254664465785027,0.607119143009186,-0.80747577548027,-0.487260863184929,0.606247782707214,-0.624740108847618,-0.51528562605381,0.371549963951111,1.00516954064369,-0.518979839980602,-0.558324774910716,1.25072413682938,-0.809850353747606,0.591839790344238,-0.51233321428299,-0.517176620662212,0.419113516807556,-0.67004831880331,-0.143240660429001,-0.599281786985592,1.74381375312805,-0.0224224627017975,-0.029448390007019,1.44137501716614,-0.513857573270798,0.459421694278717,0.53927219286561,-0.470454499125481,0.242480039596558,1.29728949069977,-0.13606845587492,0.722952902317047,1.31744480133057,0.459609001874924,0.632004603743553,1.58918434381485,0.0365093983709812,0.630685463547707,1.52881294488907,-0.00789975374937057,-0.521908421069384,0.853927671909332,0.0061194896697998,-0.204505920410156,0.940835267305374,0.256386816501617,0.168813213706017,0.907680653035641,0.906151790171862,0.207107350230217,1.2817714214325,0.84678765013814,0.353868961334229,1.44466987252235,0.851606577634811,0.408855497837067,1.03987254947424,1.2051260471344,0.383370965719223,1.35957080125809,1.10435131192207,0.273635134100914,1.2533932030201,0.733086906373501,0.472755417227745,1.06563899666071,0.734068650752306,0.649499505758286,1.19651348888874,1.04423752427101,0.767650842666626,1.41975834965706,0.974627107381821,0.678758084774017,1.03148193657398,1.17793169617653,0.855744540691376,1.60935342311859,0.789629310369492,0.99724417924881,1.14811930060387,0.878850489854813,1.08904960751534,1.03303690999746,0.503692984580994,1.00693987309933,1.09311406314373,0.88166606426239,0.726381778717041,1.63613063097,0.804901391267776,0.803658455610275,1.0182157792151,0.959246426820755,0.603647857904434,1.81347811222076,0.189604073762894,1.19995158910751,1.04724369943142,0.619203954935074,1.20346240699291,0.918420351110399,0.390909112989902,1.07860803604126,0.976134065538645,0.861018419265747,0.598584592342377,1.62107461690903,0.879706710577011,0.995120167732239,0.828295972198248,1.11084473133087,0.775537014007568,1.76731669902802,0.0891815274953842,1.22548589110374, -1.16152481734753,0.573329538106918,1.35395938158035,0.863263925537467,0.186551801860332,1.31425225734711,1.10035367310047,0.490840002894402,0.664192140102386,1.80001121759415,0.552208483219147,1.17706446349621,0.774484038352966,0.357051722705364,0.752617418766022,1.81754547357559,0.11122665554285,1.2971171438694,1.1284811347723,0.280103083699942,1.23903393745422,0.793291613459587,0.216680154204369,1.08095356822014,1.30927962064743,0.320211574435234,0.689687356352806,1.79315090179443,0.423402391374111,1.17748920619488,0.89228355884552,0.409864507615566,0.248284481465816,1.01746584102511,1.19987286627293,0.165139731566342,1.00739381089807,1.21535348892212,1.22940105199814,0.993805631995201,0.309224497526884,1.1321003139019,0.992350235581398,0.635808423161507,0.749441891908646,0.897447444498539,1.0359793305397,0.774618193507195,0.953861945308745,0.930675558745861,0.750973254442215,1.0236529558897,0.928024720400572,0.775173306465149,1.00079491734505,0.915281068533659,0.566988170146942,0.978937802836299,1.13192385435104,1.14034956693649,0.908330710837618,0.829308807849884,0.680516332387924,0.982598982751369,1.04197276383638,1.19771680235863,1.01631095260382,0.489784732460976,1.07388466596603,1.05554841458797,0.634303521364927,1.00155717134476,0.985147841274738,0.863733179867268,1.37852209806442,1.0075333788991,0.125825792551041,1.50830525159836,0.913478579372168,0.0274816751480103,1.50050419569016,0.786918906494975,0.674952030181885,0.906068921089172,0.91490540234372,1.01034317910671,1.13346201181412,0.955513391643763,0.734007783234119,1.34730851650238,0.825131248682737,0.0551014542579651,1.50371032953262,0.878940936177969,0.188602611422539,1.29045337438583,0.928283792920411,0.473718233406544,1.26435482501984,1.02147577702999,0.445749290287495,1.49865078926086,0.964661225676537,-0.0412562116980553,1.40615582466125,0.874693259596825,0.587679445743561,1.31204545497894,-0.815846130251884,0.727703839540482,1.41650399565697,-0.844704575836658,0.383774325251579,1.60261201858521,0.802653312683105,0.123940370976925,1.50321459770203, -0.90149300545454,0.186333887279034,0.431540272315033,0.114388167858124,0.371937155723572,0.344251045831697,0.0635184645652771,0.229271836578846,0.391502451151609,0.0606856346130371,0.244168624281883,0.334077872335911,0.114635646343231,0.334560558199883,-0.149525463581085,0.00468957424163818,0.276785686612129,0.0601446144282818,-0.00818073749542236,0.0342906452715397,0.475881170481443,0.120371520519257,0.312647618353367,0.278168722987175,0.135456621646881,0.511259764432907,-0.00852472800761461,0.000737369060516357,0.0399162177927792,-0.00847905874252319,0.00653982162475586,0.0450599864125252,-0.0987497046589851,0.0103577375411987,0.245128825306892,-0.0721320938318968,-0.0451372861862183,0.330156967043877,-0.107665035873652,-0.0456319451332092,0.287353206425905,-0.0893905367702246,0.0104331970214844,0.058328315615654,-0.0853193402290344,0.00187796354293823,-0.00598700344562531,-0.156734958291054,-0.0280139446258545,0.431336864829063,-0.129380153492093,0.0087590217590332,0.169482171535492,-0.110529731959105,0.0133550763130188,-0.142321478575468,-0.16453986777924,0.0111052989959717,0.0810438860207796,-0.152685140725225,0.00770193338394165,0.0211960524320602,-0.0327734984457493,0.00103521347045898,0.0229925774037838,-0.0467167049646378,0.00425362586975098,0.123860061168671,-0.234603922814131,0.0394078493118286,0.353079214692116,-0.172359109856188,-0.00965511798858643,0.221063578501344,-0.0833213350269943,-0.00329488515853882,0.210964567959309,-0.119760324247181,0.0546389222145081,0.351719185709953,-0.170127796009183,0.0123221874237061,0.0629080627113581,-0.230004327604547,0.0459313988685608,0.118575721979141,-0.423647359013557,0.0175045132637024,0.391535237431526,-0.613094061613083,-0.914641764014959,-1.07629176974297,-0.145134162868544,-0.785365954041481,-1.10758285224438,0.210778996348381,-0.897864289581776,0.926641145721078,-0.294743298926051,-0.894603993743658,0.869768708944321,-0.898607507348061,-0.819071516394615,-1.00100749731064,-0.809095397591591,-0.81027315557003,-1.06922501325607,-0.810862839221954,-0.770601451396942, --0.96705362200737,-0.785842448472977,-0.892265196889639,-1.01048076152802,-0.961254268884659,-0.809293568134308,-0.931356817483902,-0.684989929199219,-0.892533641308546,-1.04797312617302,-1.15531489253044,-0.761536374688148,-0.538942530751228,-0.762301206588745,-0.843559198081493,-0.871681485325098,-1.14207154512405,-0.867430180311203,-0.679021179676056,-0.693852663040161,-0.844246998429298,-1.05092567205429,-1.29348215460777,-0.865225106477737,-0.367773149162531,-1.30464231967926,-0.83997531235218,-0.321175027638674,-1.18627035617828,-0.804902106523514,-0.554101057350636,-1.08125266432762,-0.811232358217239,-0.762669116258621,-1.11182031035423,-0.822635129094124,-0.728012502193451,-1.19271737337112,-0.825142696499825,-0.583198308944702,-1.19497418403625,-0.867420293390751,-0.552175648510456,-1.2643666267395,-0.950088082812726,-0.370998777449131,-1.37821316719055,-0.902596903964877,0.0427193229552358,-1.4172919690609,-0.753551095724106,-0.00132672488689423,-1.26361003518105,-0.580935776233673,-0.156187471933663,-1.18003478646278,-0.637345224618912,-0.39680977165699,-1.2371808886528,-0.718494579195976,-0.37001920491457,-1.30898883938789,-0.833961732685566,-0.311042502522469,-1.27403026819229,-0.916349527426064,-0.307937622070313,-1.52492469549179,-0.696793417446315,-0.518152374774218,-1.57922410964966,-0.757153805345297,-0.248910024762154,0.344985127449036,1.17636129260063,0.385372720658779,0.254651725292206,1.28642624616623,-0.23913992010057,0.263078451156616,-0.269346833229065,-0.0789073929190636,0.202271223068237,-0.313201010227203,0.110063835978508,0.304666996002197,0.983018100261688,0.51411409676075,0.418816804885864,0.987251788377762,0.29111772030592,0.433008968830109,0.694108977913857,0.22469437122345,0.361680924892426,0.624814514070749,0.342834602110088,0.758714094758034,0.87854190915823,0.540890757925808,0.843510717153549,1.03404707461596,0.47672176361084,0.794060587882996,0.978133869706653,0.434866100549698,0.342880368232727,0.955253422260284,0.0443591773509979,0.236236870288849,1.05737148225307,0.690798245370388, -0.616246193647385,0.929744460619986,0.963313847780228,0.775266915559769,0.875871121883392,0.709308803081512,0.729510620236397,0.861451726406813,0.774826854467392,0.805476531386375,1.01575815677643,0.993087142705917,0.817477691918612,0.988214589655399,1.00896763801575,0.665000259876251,0.910682946443558,0.693520933389664,0.746584862470627,1.01585993170738,0.767666608095169,0.742052067071199,1.19529345631599,1.04108536243439,0.544202476739883,0.999622274190187,1.1498891711235,0.733220264315605,0.867054238915443,1.20763090252876,0.740292951464653,1.07734179496765,1.13693863153458,0.498848289251328,1.16606809198856,1.14936292171478,0.396265763789415,1.02700956910849,1.30397027730942,0.450534731149673,0.803512958809733,1.49220877885818,0.639325574040413,1.69664132595062,0.770091265439987,0.436701912432909,1.84520125389099,0.457160472869873,0.370397940278053,1.70976340770721,0.618806328624487,0.634230598807335,1.77394586801529,0.533712267875671,0.527482062578201,1.65431767702103,0.827716767787933,0.580429740250111,1.6370045542717,0.899696409702301,0.672941416501999,1.69899308681488,0.761743664741516,0.643304362893105,1.724669277668,0.726003497838974,0.549755766987801,1.67951935529709,0.889909476041794,0.537102848291397,1.65000939369202,0.963661313056946,0.547836542129517,1.65228581428528,0.915025293827057,0.521976441144943,1.61786806583405,0.965211033821106,0.469726294279099,1.59072929620743,1.06709712743759,0.568262383341789,1.56316155195236,0.962683647871017,0.148217540551286,1.59262979030609,0.986463442444801,0.482652872800827,1.3853305876255,-0.421347320079803,0.677055962383747,1.57809573411942,0.23642161488533,0.491227134130895,1.70304262638092,0.526716616004705,0.552011832594872,1.51328271627426,1.02296862006187,0.680668160319328,0.72142268717289,-0.414341360330582,0.887653007172048,0.728933691978455,0.09327432513237,0.980139114893973,0.813970350660384,0.444395437836647,1.0796792730689,0.945209616795182,0.279075127094984,0.552720576524734,0.904708504676819,-0.703661918640137,0.759862035512924,1.45781949162483,-0.414493963122368, -0.735904023051262,0.798062488436699,-0.386019617319107,0.46621810644865,0.655595541000366,-0.538843750953674,0.967827342450619,0.769022822380066,-0.0914410650730133,0.575022974051535,1.5681728720665,0.311912655830383,0.962936624884605,0.740978471934795,0.106138646602631,1.09838442504406,0.79025462269783,0.0163510143756866,1.14549401402473,0.776524484157562,0.282693229615688,0.446673206984997,1.86701816320419,0.304205626249313,1.14862833917141,0.856663636863232,0.129654228687286,1.25868481397629,0.881267476826906,0.122206911444664,1.28057399392128,0.486388653516769,0.470830552279949,0.831919014453888,1.70909339189529,0.451846059411764,1.27869421243668,0.891731823794544,0.300708977505565,1.20229904353619,0.886598978191614,0.414437122642994,0.577994704246521,1.06383323669434,-0.0451058745384216,0.699458509683609,0.640731155872345,-0.368452966213226,0.812432870268822,1.56138408184052,0.0733873546123505,0.896475002169609,0.642826274037361,0.0235422849655151,0.690929621458054,1.69844716787338,0.492587517946959,1.09843897819519,0.448465466499329,0.321593433618546,0.67003707587719,0.322135210037231,0.685433998703957,1.16320560872555,-0.92799323797226,0.190843820571899,0.803314119577408,1.33178919553757,-0.322247356176376,0.858064144849777,0.785616030916572,-0.296089291572571,0.694870367646217,-1.03393007814884,-0.320400416851044,0.97395271062851,-1.0146369189024,-0.419486790895462,0.833195179700851,-1.11440786719322,-0.483259052038193,0.621596738696098,-1.03347861766815,-0.356108129024506,0.294847246259451,-1.26009613275528,-0.796605423092842,0.299119891598821,-1.30296015739441,-0.862227991223335,0.72146774828434,0.0600603818893433,0.478563826531172,1.07913337647915,-0.608282007277012,0.391805589199066,0.846494629979134,-0.989711076021194,-0.0583600699901581,0.840416248887777,-1.05486352741718,-0.373541787266731,0.858620461076498,-1.08649069815874,-0.333596810698509,0.837992385029793,-0.980244234204292,-0.0766846537590027,0.66193462908268,-1.0401763021946,-0.301913022994995,0.709727168083191,-1.13023786246777,-0.519144915044308, -0.40435198135674,-0.103128373622894,0.155586622655392,0.96287726983428,-1.06244464963675,0.0490036383271217,0.912129402160645,-0.937455099076033,0.0113504976034164,0.918552234768867,-0.960038144141436,-0.179352235049009,1.11341417580843,0.848880277946591,0.509234078228474,1.02567291259766,0.796552520245314,0.383002936840057,0.388029217720032,-0.434859946370125,0.369393229484558,0.485054939985275,-0.366813711822033,0.469989687204361,0.054911196231842,0.440410673618317,0.91107302904129,1.0218203663826,0.602298676967621,0.607408421114087,0.919698342680931,0.830888603813946,0.517579909414053,0.393679618835449,-0.40193197503686,0.622289072722197,0.619914054870605,-0.911885445937514,-0.0093102902173996,0.61115363240242,-0.901648629456758,0.0075613409280777,0.470506548881531,-0.336506495252252,0.681353457272053,0.392768740653992,-0.395923495292664,0.609633214771748,-0.289631232619286,0.119229167699814,-0.0488727688789368,-0.276960253715515,-0.645670682191849,-0.155973434448242,-0.144530415534973,-1.24061849713326,-0.86327013745904,-0.0606561303138733,-0.928411692613736,-0.88719417154789,-0.24066948890686,-0.66694188117981,-0.215421855449677,0.282903358340263,0.525768786668777,-0.315134108066559,0.564252570271492,1.35383474826813,0.281718879938126,-0.188311338424683,-0.727798335254192,-0.439581096172333,-0.454765364527702,-0.507087618112564,-0.859215129166842,-0.179859161376953,-0.643345862627029,-0.194797396659851,-0.243732810020447,-0.889895886182785,-0.431398391723633,0.00399878621101379,-0.956002358347178,-0.907282121945173,0.487297483719885,0.596073225140572,-0.25071507692337,0.500145926140249,0.580386623740196,-0.274095177650452,0.448862880468369,0.420954301953316,0.619038045406342,0.605405241250992,-0.441015914082527,0.298491179943085,0.200921430252492,1.39896869659424,-0.236332535743713,0.827419884502888,0.687872350215912,-0.126547753810883,0.285129874944687,-0.438211917877197,0.182929813861847,0.273912876844406,-0.307963326573372,0.152066230773926,0.516302734613419,-0.215566024184227,0.394859790802002,0.407027751207352, --0.383503183722496,0.326192080974579,0.391529649496078,-0.326449632644653,0.298952117562294,0.654036208987236,-1.1661629229784,-0.200791671872139,0.0429378747940063,0.679700568318367,0.483716815710068,0.692123040556908,-0.984641261398792,-0.171012625098228,0.791330769658089,-1.00761964172125,-0.0844752788543701,0.631064206361771,-0.485830202698708,0.342431724071503,1.04141090810299,-0.610266081988811,0.320962607860565,1.07614850997925,0.4937639310956,0.267628848552704,0.667209636420012,0.608243301510811,1.18492144346237,0.883155956864357,-1.01827298849821,0.0333949327468872,0.507097810506821,1.43804377317429,0.29614269733429,1.01876126229763,0.698623403906822,0.212832003831863,0.942362021654844,-0.237038590013981,0.573183745145798,0.863271307200193,-0.199269030243158,0.427389740943909,1.05940888822079,0.70167063549161,0.313238471746445,0.938809492625296,0.738017782568932,0.27997425198555,0.312532544136047,0.596909672021866,1.17186295986176,0.91170646250248,-1.17683672904968,0.279223084449768,0.490936886519194,0.731780782341957,0.820822298526764,0.860609024763107,-0.251520086079836,0.828081518411636,0.862157121300697,-0.94515400857199,0.164549916982651,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265, --0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.76926136016846,-0.261380959302187,0.6716183796525,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.1068457365036,0.13796192407608,0.0313783367164433,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691,0.572726845741272,-1.3900682926178,-0.013750433921814,1.21348816156387,-1.27278581261635,-0.119221746921539,1.14687243103981,-0.843219459056854,-0.775745712220669,1.11347754299641,-0.815055370330811,0.113396227359772,0.84147909283638,-1.78576475381851,-0.445333380252123,0.680817991495132,-1.8573881983757,-0.3595836982131,0.514712370932102,-1.48924845457077,-0.521538123488426,0.527960291132331,-1.30924472212791,-0.634655669331551,0.648282304406166,-1.1993083357811,-0.705877680331469,-0.0706172585487366,-1.15140056610107,0.271077752113342,0.319701120257378,-1.32916265726089,-1.02971661090851,0.409512057900429,-1.22807687520981,-0.795051328837872,-0.351212419569492,-1.66363978385925,-0.207785099744797,0.23386637121439,-1.74367380142212,-0.192684188485146,0.609702579677105,-1.32176160812378,-0.69848321378231,0.881208807229996,-0.847666203975677,-0.0394957661628723,0.367522694170475,-1.51446527242661,-0.752846006304026,-0.318310737609863,-1.22892147302628,-0.165137529373169,-0.50804103910923,-1.13627916574478,-0.576050251722336,0.0160664021968842,-1.07020169496536,-0.324720740318298,-0.180400438606739,-1.21419191360474,-0.142573595046997,-0.507553994655609,-0.409888636320829,-0.0742899775505066,0.163055956363678, --0.562116295099258,-0.533010303974152,0.44382718205452,-0.586373567581177,-0.993089020252228,0.626586884260178,-1.07162314653397,-0.415064722299576,0.834964320063591,-1.09524667263031,-0.328445017337799,0.551781967282295,-0.651187211275101,-0.854885801672935,0.797925412654877,-0.679375737905502,-0.510313481092453,0.877387038897723,-1.05301705002785,-0.516117691993713,0.66799832880497,-1.16166859865189,-0.631425730884075,0.301824301481247,-0.792653501033783,-0.69788484275341,0.573563903570175,-0.89102777838707,-0.442252278327942,0.519388556480408,-1.0445873439312,0.792058020830154,1.26248294115067,-1.17509192228317,0.125673592090607,0.868004083633423,-1.03148572146893,1.03292760252953,1.09991902112961,-1.5929651260376,0.750573717057705,0.640035778284073,-1.50159198045731,-0.547327399253845,0.531930312514305,-0.88432502746582,-0.190878331661224,0.526199869345874,-1.32997810840607,-0.561771158128977,1.17491060495377,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042, -0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241,0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076, -1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013,0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996, -1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338,-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216, -0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331,1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314, --0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489,0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943, -0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368,-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536, -0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198,-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798, --0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207,-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024, -0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298, -0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084,-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078, -0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669,0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309, --0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093,-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132, --0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708,-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448, -1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439,-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934, -1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937,0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647, -1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039,1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572, -0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407,0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316, -0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795,0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267, -1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304,-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054, -1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519,0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731, -0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928,1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099, -0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978,0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662, -0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073,1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287, --0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912,-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441, -0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536,1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792, -0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127,0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029, -0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893,-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654, --0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072,0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136, --0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675,0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345, --0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155,0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213, --0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933,0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344, -1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192,0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296, -0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067, -1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072, -0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355, --0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599, --0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758, -0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178, -0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339, --0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476, --1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818, -0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524, -1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216, -0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538, -0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302, -0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642, -1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978, -0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005, -1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461, -1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848, --0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161, --0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362, -0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898, --0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637, -0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782, -0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176, -0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662, -0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716, --0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083, --0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335, --1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818, --0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792, --0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655, --0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955, --1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481, --0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051, --1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744, --0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603, -0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756, --0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839, -0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764, --0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042, --1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295, --0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801, -0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671, --1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707, -0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407, --0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412, -0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173, --0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653, --0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339, -0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601, --1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606, -0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869, --0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997, --1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779, --1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551, --1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494, --1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859, --0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978, --0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716, --0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575, --1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533, -0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657, -0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519, --0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205, --0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081, --0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359, --1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745, --0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848, --0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068, --0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652, --0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285, --0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805, --0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787, --0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069, --1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501, --1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016, --1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677, -0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878, -0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466, -1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425, -1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585, -1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915, --1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876, -0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963, --0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987, --0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038, --0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833, --0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499, --0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,1.61700159311295,0.242999859154224,-0.226044476032257,-0.368729919195175,-0.111302673816681,-1.41159296035767, --0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.179240807890892,-0.80996510386467,-1.56414943933487,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752,-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-1.43386590480804,0.734417945146561,0.614903017878532,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.68238508701324,0.32922638207674,-0.883319422602654,-0.882849395275116,-0.127865627408028,0.0330973267555237,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743, -0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,0.714810416102409,0.279693081974983,-0.203442215919495,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177, --0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Geometry: 2805100584784, "Geometry::Tongue_DownLeft_Morph", "Shape" { - Version: 100 - Indexes: *151 { - a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,272,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305 - } - Vertices: *453 { - a: -0.163236444815993,0.316608905792236,-0.45400333404541,-0.110726594924927,0.220363140106201,-0.484040260314941,-0.246851090341806,0.464320659637451,-0.748857021331787,-0.291880488395691,0.579027652740479,-0.636441230773926,-1.02622629515827,0.760498523712158,0.744402885437012,-1.20341229438782,0.579352378845215,0.125687599182129,-0.963314730674028,1.04166269302368,0.343765258789063,-0.857027232646942,1.0785698890686,1.13138866424561,-1.57173437811434,1.40104293823242,1.32053089141846,-2.01184570789337,1.12218236923218,0.457630157470703,-1.5072572492063,1.61498117446899,0.976916313171387,-0.988689959049225,1.79058265686035,1.84751415252686,-1.90204956382513,1.78813743591309,1.95364093780518,-2.00812232494354,1.34388542175293,0.979628562927246,-1.82475257664919,1.85025072097778,1.7632007598877,-1.30336195230484,1.9931526184082,2.00351619720459,-0.200106143951416,0.406716346740723,-0.506356239318848,0.108051806688309,0.180086135864258,0,0.108051776885986,0.180086135864258,0,-0.131125450134277,0.351021289825439,-0.415806770324707,0.108051806688309,0.180086135864258,0,-0.103855490684509,0.220879077911377,-0.434317588806152,0.108051776885986,0.180086135864258,0,0.108051776885986,0.180087089538574,0,-0.111229658126831,0.226613521575928,-0.524806499481201,0.108051776885986,0.180086135864258,0,-0.150555491447449,0.129169464111328,-0.633941650390625,0.108051776885986,0.180086135864258,0,-0.21868109703064,0.364002227783203,-0.710164546966553,0.108051810413599,0.180086135864258,0,0.108051806688309,0.180086135864258,0,-0.281650528311729,0.543350219726563,-0.795363903045654,0.108051776885986,0.180086135864258,0,-0.323653399944305,0.644194602966309,-0.828494548797607,0.108051776885986,0.180086135864258,0,-0.305092692375183,0.627612590789795,-0.693944454193115,0.108051776885986,0.180087089538574,0,0.108051776885986,0.180086135864258,0,-0.283467173576355,0.5438232421875,-0.610285758972168,0.108051776885986,0.180086135864258,0,-0.976772755384445,0.875030994415283,0.866182327270508,-0.449985658749938,0.554248332977295, --0.0990705490112305,-0.469739556312561,0.676424503326416,-0.0683975219726563,-1.06711101531982,0.673501491546631,0.59266471862793,-0.418733149766922,0.438302516937256,-0.154390811920166,-1.13815784454346,0.609827518463135,0.365914344787598,-0.408720970153809,0.341751575469971,-0.259702682495117,-0.423448204994202,0.257369518280029,-0.378831386566162,-1.12829840183258,0.690921783447266,-0.0261240005493164,-0.405990481376648,0.288949012756348,-0.445245265960693,-1.11698222160339,0.786606788635254,-0.0926656723022461,-0.379314303398132,0.360768795013428,-0.529740333557129,-0.998615801334381,0.957512855529785,0.212958335876465,-0.477945692837238,0.73891544342041,-0.333733081817627,-0.449289321899414,0.628235340118408,-0.37602424621582,-0.921926945447922,1.14163446426392,0.45228099822998,-0.497931748628616,0.845081806182861,-0.304910182952881,-0.811174154281616,1.27879810333252,0.673996925354004,-0.482325792312622,0.954606056213379,-0.243752002716064,-0.759950399398804,1.22046995162964,1.02727890014648,-0.524710893630981,0.85565185546875,0.0257530212402344,-0.511022090911865,0.928935527801514,-0.0171470642089844,-0.887667775154114,1.03663635253906,1.09697341918945,-0.52323591709137,0.816135406494141,0.0192432403564453,-1.41918003559113,1.54899215698242,1.47762298583984,-1.27304143086076,1.14137172698975,0.970470428466797,-1.13051435351372,1.27201747894287,1.1616907119751,-1.71921256184578,1.25745248794556,1.15140438079834,-1.41368946433067,1.03967714309692,0.75071907043457,-1.87047344446182,1.19366025924683,0.843637466430664,-1.58027970790863,0.970215797424316,0.43718433380127,-1.74119532108307,0.939564228057861,0.120940208435059,-1.99211573600769,1.17419195175171,0.394406318664551,-1.7421942949295,1.04539108276367,0.00953197479248047,-1.91699469089508,1.28160905838013,0.455656051635742,-1.73572981357574,1.20872783660889,0.0199308395385742,-1.61194255948067,1.52068710327148,0.824322700500488,-1.28955578804016,1.52869415283203,0.595437049865723,-1.40686404705048,1.43630599975586,0.421204566955566,-1.39887550473213,1.71977567672729, -1.12453174591064,-1.17483758926392,1.63794088363647,0.759795188903809,-1.16630071401596,1.87287378311157,1.38187980651855,-0.939973950386047,1.80324172973633,1.03846645355225,-0.969878315925598,1.8643970489502,1.73486423492432,-0.843257427215576,1.54936170578003,1.52989864349365,-0.804293692111969,1.70035934448242,1.43769073486328,-1.07298719882965,1.71754789352417,1.82545852661133,-0.910048246383667,1.49337100982666,1.49844264984131,-1.83986404538155,1.87164211273193,2.03553295135498,-1.72601874172688,1.61874961853027,1.72778224945068,-1.64956787228584,1.72188949584961,1.83775806427002,-1.94676688313484,1.69746208190918,1.8316707611084,-1.79888930916786,1.51302766799927,1.57553100585938,-2.03271478414536,1.55769968032837,1.5047492980957,-1.91969746351242,1.37302732467651,1.25129985809326,-1.96714234352112,1.21131610870361,0.762463569641113,-1.99410057067871,1.40326261520386,0.996114730834961,-1.93248105049133,1.26646375656128,0.677387237548828,-1.95939183235168,1.56421327590942,1.21755409240723,-1.88059031963348,1.43618679046631,0.874884605407715,-1.85961627960205,1.77217817306519,1.66887283325195,-1.67412950098515,1.76382875442505,1.33490371704102,-1.72544524073601,1.67637062072754,1.23044395446777,-1.77958786487579,1.92706823348999,1.83004856109619,-1.61760240793228,1.8568868637085,1.42274951934814,-1.62194412946701,2.01780080795288,1.97168731689453,-1.49180394411087,1.94235372543335,1.61100769042969,-1.31799507141113,2.03520774841309,1.97027206420898,-1.18449103832245,1.93138408660889,1.90789985656738,-1.16319835186005,1.98578262329102,1.78392887115479,-1.41608941555023,2.01106929779053,2.10142230987549,-1.26714789867401,1.88992166519165,1.93768405914307,-1.91845273971558,1.8642430305481,1.95352458953857,-1.95333018898964,1.7822642326355,1.84969139099121,-1.94638645648956,1.6660795211792,1.45219039916992,-2.03082031011581,1.65385103225708,1.54905700683594,-1.86736446619034,1.94100856781006,2.02123737335205,-1.46024924516678,2.04755735397339,1.986403465271,-1.4849357008934,2.06644344329834,2.09626960754395,-0.33610463142395, -0.665955066680908,-0.809619903564453,0.108051776885986,0.180086135864258,0,-0.760261654853821,1.3183422088623,0.844394683837891,-0.474712252616882,0.980405330657959,-0.173447608947754,-1.03953212499619,1.91024303436279,1.55305671691895,-0.858912527561188,1.8172926902771,1.23848533630371,-1.27543902397156,2.02814531326294,1.72148513793945,-1.64715200662613,1.95419454574585,2.12191200256348,-1.68486255407333,2.01711130142212,2.11203098297119,-1.23606806993484,1.63472032546997,1.71501541137695,-1.47220033407211,1.81909608840942,1.95893859863281,-0.91038966178894,0.975683212280273,1.01810646057129,-0.974843502044678,1.40159368515015,1.38921928405762,-0.240240454673767,0.506894111633301,-0.572866439819336,-0.486417293548584,0.787151336669922,-0.0049281120300293,0.108051776885986,0.180087089538574,0,-0.115668892860413,0.221103191375732,-0.463557243347168,0.108051776885986,0.180086135864258,0,-1.18669867515564,0.594881057739258,0.219123840332031,-0.430276989936829,0.282042026519775,-0.332832813262939,-1.95996904373169,1.16061544418335,0.548367500305176,-1.67998671531677,0.956308841705322,0.207980155944824,-2.04230403900146,1.42161130905151,1.18270111083984,-1.95530581474304,1.26186466217041,0.896743774414063,-2.03739511966705,1.53246879577637,1.27166175842285,-1.77594095468521,1.39200782775879,0.54828929901123,-1.82875508069992,1.57133960723877,1.10865592956543,-1.05395996570587,0.836990833282471,-0.0532197952270508,-1.59551566839218,1.32110118865967,0.138707160949707,-0.172099828720093,0.198128700256348,-0.665771484375,-0.402864813804626,0.435389995574951,-0.497227191925049,0.108051776885986,0.180086135864258,0 - } - Normals: *453 { - a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842, --0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387, --0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429, --0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.329245887696743,1.94907534122467,-0.144308499991894,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946, -0.00242036581039429,-0.13834481080994,0.0923748388886452,0.0320273637771606,-0.913065552711487 - } - } - Geometry: 2805100585360, "Geometry::Tongue_DownRight_Morph", "Shape" { - Version: 100 - Indexes: *5555 { - a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,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,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962, -2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400, -3401,3402,3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811, -3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234, -4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648, -4649,4651,4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073, -5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, -5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5965,5967,5995,5997,6028,6155,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6515,6525,6526,6529,6530,6531,6536,6544,6552,6553,6554,7214,7347,7349,7377, -7379,7410,7537,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7897,7907,7908,7911,7912,7913,7918,7926,7934,7935,7936,8591,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 - } - Vertices: *16665 { - a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,0.163240367546678,0.316608905792236,-0.45400333404541,0.291787505149841,0.579027652740479,-0.636441230773926,0.246855016797781,0.464320659637451,-0.748857021331787,0.110633611679077,0.220363140106201,-0.484040260314941,1.02622626908123,0.760498523712158,0.744402885437012,0.856939792633057,1.0785698890686,1.13138866424561,0.963314693421125,1.04166269302368,0.343765258789063,1.20332479476929,0.579352378845215,0.125687599182129,1.571542551741,1.40104293823242,1.32053089141846,0.988594651222229,1.79058265686035,1.84751415252686,1.50725719705224,1.61498117446899,0.976916313171387,2.01175034046173,1.12218236923218,0.457630157470703,1.90204951912165,1.78813743591309,1.95364093780518,1.30336964130402,1.9931526184082,2.00351619720459,1.82475256174803,1.85025072097778,1.7632007598877,2.00812995433807,1.34388542175293,0.979628562927246,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05, -0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.131030261516571,0.351021289825439,-0.415806770324707,-0.108051829040051,0.180086135864258,0,-0.108139246702194,0.180084705352783,0,0.20001095533371,0.406716346740723,-0.506356239318848,-0.108139216899872,0.180087566375732,0,0.240145087242126,0.506894111633301,-0.572866439819336,-0.108147025108337,0.1800856590271,0,-0.108146905899048,0.180087089538574,4.76837158203125e-07,0.304997801780701,0.627612590789795,-0.693943977355957,-0.108139276504517,0.180087089538574,0,0.336016654968262,0.665955066680908,-0.809619903564453,-0.108137130737305,0.180086135864258,0,0.281662464141846,0.543351173400879,-0.795363903045654, --0.108051832765341,0.180086135864258,0,-0.108146965503693,0.180086135864258,0,0.218693047761917,0.364001274108887,-0.710164546966553,-0.108146995306015,0.180086135864258,0,0.172111868858337,0.198128700256348,-0.665771007537842,-0.108147144317627,0.180086612701416,0,0.111134767532349,0.226613521575928,-0.524806976318359,-0.108146905899048,0.180087089538574,-4.76837158203125e-07,-0.108139276504517,0.180085182189941,0,0.115581393241882,0.221104621887207,-0.463557243347168,-0.108147144317627,0.180086135864258,0,1.06701567769051,0.673501491546631,0.59266471862793,0.449985349550843,0.554248332977295,-0.0990705490112305,0.418641448020935,0.438302516937256,-0.154390335083008,0.976677417755127,0.875030994415283,0.866182327270508,0.469647854566574,0.676424503326416,-0.0683979988098145,0.910293579101563,0.975683212280273,1.01810646057129,0.486326336860657,0.787151336669922,-0.00492763519287109,0.524612188339233,0.85565185546875,0.0257530212402344,0.75985586643219,1.22046995162964,1.02727890014648,0.511029601097107,0.928935527801514,-0.0171470642089844,0.760167121887207,1.3183422088623,0.844395637512207,0.474613070487976,0.980405330657959,-0.173447608947754,0.921934545040131,1.14163446426392,0.45228099822998,0.477945379912853,0.73891544342041,-0.333733081817627,0.497840046882629,0.845081806182861,-0.304910182952881,0.99862340092659,0.957512855529785,0.212958335876465,0.449197620153427,0.628235340118408,-0.37602424621582,1.05386459827423,0.836990833282471,-0.0532197952270508,0.40276563167572,0.435389995574951,-0.497227668762207,1.12820386886597,0.690921783447266,-0.0261240005493164,0.423349499702454,0.257369518280029,-0.378831386566162,0.40599799156189,0.288949012756348,-0.445245265960693,1.18670606613159,0.594881057739258,0.219122886657715,0.430178165435791,0.282042026519775,-0.332831859588623,1.71912515163422,1.25745248794556,1.15140438079834,1.27284961566329,1.14137172698975,0.970470428466797,1.41349819302559,1.03967714309692,0.75071907043457,1.41909262537956,1.54899215698242,1.47762298583984,1.13032308220863,1.27201747894287, -1.1616907119751,1.23597282171249,1.63472032546997,1.71501541137695,0.9747554063797,1.40159368515015,1.38921928405762,0.843169808387756,1.54936170578003,1.52989864349365,0.969782590866089,1.8643970489502,1.73486423492432,0.804301381111145,1.70035934448242,1.43769073486328,1.03944385051727,1.91024303436279,1.55305862426758,0.858920454978943,1.8172926902771,1.23848438262939,1.39878794550896,1.71977567672729,1.12453174591064,1.28955578804016,1.52869415283203,0.595437049865723,1.1747499704361,1.63794088363647,0.759795188903809,1.61185500025749,1.52068710327148,0.824322700500488,1.40677636861801,1.43630599975586,0.421204566955566,1.77585303783417,1.39200782775879,0.54828929901123,1.59542745351791,1.32110118865967,0.138707160949707,1.99202013015747,1.17419195175171,0.394406318664551,1.74110770225525,0.939564228057861,0.120940208435059,1.74220192432404,1.04539108276367,0.00953197479248047,1.95997643470764,1.1606125831604,0.548367500305176,1.67989134788513,0.956308841705322,0.207979202270508,1.94667932391167,1.69746208190918,1.8316707611084,1.72582690417767,1.61874961853027,1.72778224945068,1.79869863390923,1.51302766799927,1.57553100585938,1.83977648615837,1.87164211273193,2.03553295135498,1.64937719702721,1.72188949584961,1.83775806427002,1.64706379175186,1.95419454574585,2.12191200256348,1.47210532426834,1.81909608840942,1.95893859863281,1.18440318107605,1.93138408660889,1.9079008102417,1.31800270080566,2.03520917892456,1.97027111053467,1.1631031036377,1.98578262329102,1.78393077850342,1.46015357971191,2.04755735397339,1.986403465271,1.27535164356232,2.02814531326294,1.72148609161377,1.77949953079224,1.92707204818726,1.83004856109619,1.67412947118282,1.76382875442505,1.33490371704102,1.61751416325569,1.85688781738281,1.42275142669678,1.85952806472778,1.77217435836792,1.66887283325195,1.72535699605942,1.67636966705322,1.23044204711914,1.9462982416153,1.6660795211792,1.45219039916992,1.82865995168686,1.57133960723877,1.10865783691406,1.99410820007324,1.40326118469238,0.996115684509277,1.96705460548401,1.21131610870361,0.762462615966797, -1.93238580226898,1.26646375656128,0.677385330200195,2.04220879077911,1.42161130905151,1.18270111083984,1.9552184343338,1.26186466217041,0.896743774414063,1.91845273971558,1.8642430305481,1.95352458953857,1.8672693669796,1.94101095199585,2.02123737335205,1.6218558549881,2.01780080795288,1.97168731689453,1.68467217683792,2.01711273193359,2.11203002929688,1.95323497056961,1.78226184844971,1.84969139099121,1.95929610729218,1.56421327590942,1.21755409240723,2.0372998714447,1.53246879577637,1.27166175842285,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,0.15046751499176,0.129169464111328,-0.633941650390625,-0.108137130737305,0.180086135864258,0,1.11688768863678,0.786606788635254,-0.0926666259765625,0.379215121269226,0.360768795013428,-0.529740333557129,1.91690635681152,1.28160905838013,0.455654144287109,1.73573780059814,1.20872783660889,0.0199317932128906,1.88050282001495,1.43618679046631,0.874883651733398,2.03262650966644,1.55769968032837,1.5047492980957,2.03062999248505,1.65384960174561,1.54905796051025,1.87037825584412,1.19366025924683,0.843637466430664,1.91960233449936,1.37302732467651,1.25129985809326,1.13806176185608,0.609827518463135,0.365914344787598,1.58019149303436,0.970215797424316,0.43718433380127,0.103760123252869,0.220879077911377,-0.434317588806152,0.408630013465881,0.341751575469971,-0.259703159332275,-8.74996185302734e-05,0,0,-0.108147025108337,0.180087566375732,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.283379673957825,0.543821811676025,-0.610285758972168,-0.108147144317627, -0.180086135864258,0,0.887675046920776,1.03663635253906,1.09697437286377,0.523137092590332,0.816135406494141,0.0192422866821289,1.07299470901489,1.71755075454712,1.82545852661133,0.909952878952026,1.49337100982666,1.49844360351563,1.41599416732788,2.01106929779053,2.10142230987549,1.26706051826477,1.88992166519165,1.93768405914307,1.4848405122757,2.06644344329834,2.09626960754395,1.16621273756027,1.87287378311157,1.38187980651855,1.49170881509781,1.94235372543335,1.61100578308105,0.811078786849976,1.27879810333252,0.673996925354004,0.939885675907135,1.80324172973633,1.03846645355225,0.32366544008255,0.644194602966309,-0.828495025634766,0.482226610183716,0.954606056213379,-0.243751525878906,-9.52482223510742e-05,0,0,-0.108147144317627,0.1800856590271,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05, --0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0,-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833, -0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05, -0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05, -0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352, -0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609, -0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05, -0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584, -0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05, -0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05, -0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05, -0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05, -0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945, -0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05, -0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0, -8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05, -0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0, -8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05, -0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05, -0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05, -0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, -0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05, -0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0, -7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05, -0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0, -8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05, -0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0, -8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05, -0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05, -0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05, -0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05, -0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, -0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0, -0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05, -0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0, -9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05, -0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05, -0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0, -0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05, -0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944, -0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0, -0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05, -0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0, -0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05, -0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0, -9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05, -0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0, -0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0, -0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05, -0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0, -0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365, -0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05, -0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332, -0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0, -0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05, -0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, -8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0, -9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05, -0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477, -0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0, -0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05, -0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0, -9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05, -0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0,0.000311195850372314,0,0,0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,-7.62939453125e-06,1.9073486328125e-06,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05, --5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,-6.67572021484375e-06,-2.78949737548828e-05,7.62939453125e-06,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,1.43051147460938e-06,0,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,7.62939453125e-06,-1.9073486328125e-06,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,-6.67572021484375e-06,2.78949737548828e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,3.55243682861328e-05,-4.76837158203125e-06,-7.51018524169922e-06, -6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,1.43051147460938e-06,0,0,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 - } - Normals: *16665 { - a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662, --0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528,0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668, -0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373,-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579, -1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941, --1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897, --0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461, --1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318, -0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345,3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.749606654047966,-1.4373143017292,-0.053527295589447,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.161382004618645,-1.05396319925785,-0.513744622468948,-0.138103778270306,-1.20143139362335,-0.750641033053398,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892, -0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.35359588265419,0.104142367839813,0.457534208893776,-0.405278563499451,0.121978342533112,0.380524829030037,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.165670394897461,0.295464694499969,-0.500444114208221,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.390739500522614,-1.50808614492416,-0.287592258304358,-0.315913110971451,-1.12327319383621,0.320105105638504,0.422548428177834,-1.20918881893158,0.119166851043701,0.671828657388687,-1.25056737661362,0.126695454120636,0.980899393558502,-1.36358249187469,0.564809024333954,0.00742617249488831,-1.49335306882858,-0.621683776378632,-1.06951183080673,0.044293686747551,-0.737937182188034,-0.869004511332605,-0.649495929479599,-0.567525774240494,-0.584306225180626,-0.899750649929047,-0.54957589507103,-0.393604874610901,-0.209802389144897,-0.344795912504196,-0.135650992393494,0.181978642940521,-0.290093004703522,-0.161604985594749,0.385692477226257,-0.791899390518665,-0.0231092928443104,0.423402965068817,-0.530645191669464,-0.668128907680511,0.241285622119904,-0.511174738407135,0.640268750488758,0.504607528448105,-0.638111755251884,-0.863918073475361, -0.435806035995483,-0.0657691359519958,0.973607368767262,0.641239762306213,-0.32708440721035,0.766300393268466,0.439416646957397,-0.548276260495186,0.734565271064639,0.399895310401917,-0.555131360888481,0.495951473712921,0.211482346057892,-1.05847698450089,-0.489864364266396,0.08268141746521,-1.22465837001801,-0.645588040351868,0.0445109605789185,-1.25832206010818,-0.725154101848602,0.0470887422561646,-0.717179983854294,0.310177981853485,-0.741805136203766,-0.0238990783691406,0.489026233553886,-0.755321234464645,-0.184028089046478,0.658560295472853,-1.07980275154114,-0.946902813157067,0.474456533789635,-0.573379695415497,-0.185386836528778,-0.136478185653687,-1.00785091519356,0.0557433366775513,-0.0303171873092651,-1.46570014953613,-0.713334556668997,0.216726452112198,-1.14276897907257,-0.092072606086731,0.33055447274819,-1.07741183042526,-0.0916637778282166,0.433306839317083,-1.34795114398003,-0.651144549250603,-0.13226118683815,-1.38169622421265,-0.421652227640152,0.367417109089729,-0.542311042547226,-0.69436976313591,0.0580798983573914,-0.395844370126724,-0.514152407646179,-0.272970229387283,-0.140760540962219,-0.00278332829475403,-0.138300538063049,-0.0341156721115112,0.198432460427284,-0.0921300649642944,0.00200897455215454,1.38312751054764,0.367438234113905,-1.23037919402122,-0.703307420015335,-0.253841936588287,-1.11758391559124,-0.541653409600258,-0.562605053186417,-0.80489419400692,0.165252417325974,-0.673590034246445,-0.698625340126455,0.48616486787796,-0.654838681221008,-0.901299866847694,0.171961739659309,-0.240367963910103,-1.01991166546941,-0.692354738712311,-0.55964907258749,-0.370120882987976,-0.114611148834229,-0.309264957904816,-1.04088062047958,-0.513206735253334,-0.0961567759513855,-1.18201798200607,-0.554769217967987,0.0643689438118145,-0.865752227604389,-0.690634667873383,-0.739333346486092,-1.13006955385208,-0.203703165054321,-0.437032893300056,-0.200515568256378,-0.0516894161701202,-0.783853970468044,-0.972585558891296,-0.223340809345245,-0.997247755527496,-1.0265097245574,-0.14514034986496, --1.01279227808118,-1.15835019946098,0.296451300382614,-0.470972508192062,0.00792717933654785,0.335340835154057,-0.893414698541164,-0.871059941127896,0.179856866598129,-0.832602277398109,-0.986160283908248,0.0287650674581528,-0.988109219819307,-1.25633856654167,0.151060543954372,-0.442878115922213,-0.0609989762306213,0.249958761036396,-1.10204917192459,-0.963410020805895,0.273718420416117,-1.2361276447773,-0.904961066320539,0.255561631172895,-0.52289129793644,-0.499953657388687,-0.579250246286392,-0.48067569732666,-1.05114276707172,-0.546607226133347,-0.641402471810579,-0.277776837348938,-0.152546912431717,-0.943304106593132,-1.07997775822878,-0.379443198442459,-0.606610536575317,-0.00869834423065186,0.19425605982542,-1.68027603626251,-0.653243198990822,-0.104777634143829,-1.28013017773628,0.272570371627808,0.0360900312662125,-1.88916218280792,0.166141077876091,-0.340020638424903,-1.26496630907059,0.81289941072464,-0.37643638253212,-1.32312405109406,-0.572195570915937,-0.671933144330978,-1.35880813002586,-0.663720667362213,-0.904618006199598,-1.49383008480072,0.125580683350563,-1.11223545670509,-1.41211086511612,0.0186126530170441,-0.843851548153907,-1.34766647219658,0.0609710663557053,-0.886825722176582,-1.22740736603737,0.0246322453022003,-1.23149636387825,-0.954065322875977,0.354286223649979,-1.30574747920036,-0.668372457417263,0.477179184556007,-1.12626397609711,-1.162254601717,1.54256498813629,0.248521275818348,-1.7825101017952,0.208554625511169,-0.0537028014659882,-1.85630691051483,0.218964204192162,-0.429063987452537,-1.54166370630264,0.665414851158857,-0.64123860001564,-1.56001096963882,0.633903883397579,-0.601031541824341,-1.52086114883423,0.602134577929974,-0.864037781953812,-1.02180264890194,0.791395835578442,-1.00395211577415,-1.07776314020157,0.789258971810341,-0.842327207326889,-1.10064947605133,1.56816536188126,0.428679808974266,-1.66416627168655,0.658264368772507,-0.218609090894461,-1.28015500307083,0.98199612274766,-0.311877936124802,-1.30667880177498,0.98443790525198,-0.143061526119709,-1.22375158965588, -0.97394478879869,-0.297899398952723,-1.24408182501793,0.921946598216891,-0.411894619464874,-1.23403659462929,0.873891867697239,-0.38058952242136,-1.19865727424622,0.829153068363667,-0.641787379980087,-0.712931647896767,1.7268334031105,-0.216215878725052,-1.2023616284132,0.730475455522537,-0.214424252510071,-1.28217571973801,0.93899380043149,-0.302769888192415,-1.22995565831661,0.898980303667486,-0.457019150257111,-1.22406612336636,0.955794850364327,-0.299337767064571,-1.13166828453541,0.943140964955091,-0.402095079421997,-1.30021673440933,0.923939997330308,-0.404689207673073,-1.3461087346077,0.927764348685741,-0.294445596635342,-0.403927251696587,1.32948261499405,-1.12725752592087,-0.473944500088692,0.659392088651657,-1.16991133987904,-0.591930717229843,0.589864075183868,-1.1390523314476,-0.671163082122803,0.774397573200986,-1.46709358692169,-0.722270280122757,0.523690968751907,-1.4135565161705,-0.710564732551575,0.618266016244888,-1.1088593006134,-1.13207378983498,1.45577651262283,-0.483717069029808,-0.773627251386642,0.614221476018429,-1.48922699689865,-0.272380627691746,1.32748880982399,-1.12901550531387,-0.729150921106339,0.668635815382004,-1.19178292155266,-0.732213020324707,0.625268578529358,-1.160630017519,-0.76132795214653,0.862272124737501,-1.13465203344822,-0.825080126523972,0.704790070652962,-1.0769369751215,-0.807743281126022,0.654757350683212,-1.12950590252876,-0.840620450675488,1.51456928253174,-0.59204038977623,-0.827450096607208,0.799207732081413,-0.888807073235512,-0.262602724134922,1.31070190668106,-1.46771174669266,-1.01512598991394,0.59833051264286,-1.30422210693359,-1.04403927922249,0.746953457593918,-0.912972822785378,-0.684094071388245,0.79416449368,-1.01989717781544,-0.926568567752838,0.886604167521,-0.776988878846169,-0.909896723926067,0.846195831894875,-0.807862460613251,-0.156644225120544,1.38512313365936,0.12920730561018,-0.32966947555542,0.604764550924301,-0.537853419780731,-0.433473445475101,1.55311995744705,-1.1240086555481,-1.01556950807571,0.933442678302526,-0.613006994128227,-0.362461268901825, -0.757010214030743,-0.516983032226563,-0.186571598052979,0.455086752772331,-1.0804808139801,0.0912461280822754,0.2250841781497,-0.440484132617712,0.0546184778213501,0.117258183658123,-0.163845777511597,-0.053589403629303,1.42084717750549,-0.273823693394661,-0.377113044261932,0.726937219500542,-0.473516583442688,0.68390303850174,1.0219496935606,-0.348339460790157,0.0487169623374939,0.232016921043396,-0.360296245664358,-0.347966253757477,0.727328471839428,-0.544068366289139,-0.217052757740021,0.730461440980434,-0.668535806238651,0.00822561979293823,0.234952375292778,-0.260236855596304,0.0268155336380005,0.120433107018471,-0.190090827643871,0.370788067579269,0.36809504032135,0.510801210999489,-0.0807356238365173,-0.665817588567734,0.126747913658619,0.460876405239105,1.10373005270958,0.16702227294445,-0.0390854477882385,0.317700691521168,-0.0629583336412907,-0.10841703414917,-0.414690594945569,0.0870444029569626,-0.389367580413818,-0.364088840782642,0.634958863258362,-0.399044036865234,-0.195118311792612,0.672920063138008,-0.112228989601135,-0.394614426419139,0.119385063648224,-0.0854621529579163,-0.0464825630187988,0.479909151792526,-0.685787975788116,-0.573725119233131,0.75500850006938,0.881915787737853,-0.114973247051239,1.18015730381012,1.45599514245987,-0.12230971455574,0.959561586380005,0.988567739725113,-0.138648569583893,0.743182182312012,0.922964811325073,0.00557881593704224,0.428996384143829,0.976461112499237,-0.122954189777374,0.677365824580193,0.433115573408031,0.0183530449867249,0.808757573366165,0.348647847947113,0.0770339965820313,0.567556440830231,0.371771029127558,0.0931295156478882,0.379692807793617,0.312194930627356,0.15468829870224,1.52844071388245,0.855560511350632,-0.785193704068661,1.15905450284481,0.961980193853378,-0.759138822555542,1.03466095030308,1.11427682638168,-0.424590811133385,1.37279891967773,0.288317126558127,-0.0305638313293457,0.950840830802917,0.337546092931916,-1.0242627710104,1.30053728818893,1.32535326480865,-0.790394142270088,0.493863463401794,0.964371174573898,-0.0849087238311768, -0.519747443497181,1.11297434568405,-0.79627451300621,0.978091299533844,0.28831871020521,0.0457790493965149,0.810520946979523,1.31000706553459,-1.00362902879715,0.26423604786396,0.788776308298111,0.0591142177581787,0.578444570302963,1.26796841621399,-0.878226850181818,0.604751631617546,0.293604969978333,0.125544428825378,0.552512243390083,1.21221850812435,-0.979526937007904,0.499284699559212,0.605144754052162,0.0351207256317139,0.503760479390621,1.28494280576706,-0.804766573011875,0.618592858314514,0.288315493623031,-0.095154881477356,1.03889882564545,0.517132863402367,-0.296180009841919,1.16310298442841,0.645538449287415,-0.820632562041283,1.25506848096848,0.757476836442947,-0.1385138630867,0.7703697681427,1.04287584125996,-0.849704176187515,0.981990277767181,0.340228362940252,0.0105754733085632,0.511585921049118,1.01813957840204,-1.14061915874481,0.538081884384155,0.674776747822762,0.0080103874206543,0.414101879112422,1.21777902543545,-0.980765722692013,0.389771936926991,0.356958087533712,-0.439175307750702,1.15968638658524,0.553149535320699,-0.796392410993576,1.21193039417267,0.550307168625295,-0.88067227229476,1.22208493947983,0.591399159282446,-0.562191843986511,1.06880503892899,-0.217183554569807,-0.0492007732391357,0.883433669805527,0.209749296307564,-0.62246161699295,1.24739304184914,0.293746143579483,-0.854048706591129,1.20772176980972,0.064362294136572,-0.15214741230011,0.908786714076996,-0.0105467836960997,-0.688037037849426,1.36809200048447,0.24838550388813,-0.0539719462394714,0.65930637717247,0.722737118601799,-0.948538981378078,0.781310975551605,0.690183654427528,-0.968840293586254,0.781443327665329,0.451361000537872,-0.621878892183304,0.851764380931854,-0.327163364918377,0.0810913443565369,0.665748298168182,0.759715795516968,-0.713171854615211,0.742532193660736,0.635002717375755,-0.935322823002934,0.939774304628372,-0.327174111482236,-0.00520330667495728,0.861994683742523,0.150663256645203,-0.0220394730567932,0.482583478093147,0.0838665366172791,-0.57026594877243,0.100135300308466,0.046027660369873,-0.246372148394585, -0.0540540404617786,0.0272474884986877,0.78730234503746,-0.225803069770336,-0.899673840214518,1.2911431491375,-0.344226587563753,0.031619668006897,-0.133965253829956,0.0521630458533764,-0.0125972628593445,-0.239513419568539,0.381778355687857,-0.839976786680416,1.45737817883492,-0.0438255667686462,-0.373750865459442,1.22350782155991,-0.220680803060532,0.115119218826294,0.321404997259378,-0.177277728915215,0.0017850399017334,1.01085391640663,-0.157471559941769,0.314635396003723,1.10965901613235,0.0388892292976379,0.185309290885925,1.30315566062927,-0.301833525300026,0.194863855838776,1.21195822954178,-0.312410041689873,-0.863257486373186,0.894346684217453,0.471743255853653,-0.548808395862579,0.722968071699142,0.549563586711884,-0.277882099151611,0.621651969850063,0.567808866500854,-0.239587962627411,0.995742738246918,0.508444726467133,-0.0544485449790955,1.23688408732414,0.430886805057526,0.122119084000587,1.02438231557608,0.687914907932281,0.0556896477937698,1.30281221866608,0.518243223428726,-0.162186473608017,0.936538487672806,0.428576618432999,0.0260601043701172,0.779610313475132,0.395725727081299,0.321818187832832,1.13975490629673,0.458129435777664,0.331317380070686,1.3787524998188,0.265999168157578,0.326258279383183,1.04143257439137,0.557673752307892,0.383354410529137,1.66365337371826,0.0756043791770935,0.56091071665287,1.10711345076561,0.170222550630569,0.761368289589882,0.976278327405453,-0.0824151039123535,0.708749249577522,1.13334541022778,0.353101059794426,0.373881973326206,1.64608126878738,0.184643447399139,0.475977137684822,0.961457196623087,0.373138338327408,0.316911444067955,1.7979878783226,-0.327607065439224,0.847451783716679,1.0571943372488,-0.00105398893356323,0.905271783471107,0.958651698194444,-0.137655891478062,0.54212898015976,0.978707436472178,0.29679611325264,0.00629264116287231,1.5915395617485,0.294322341680527,0.52273003757,0.882595922797918,0.396819800138474,0.423037208616734,1.7772673368454,-0.531076416373253,0.63319393992424,1.131989762187,-0.012054830789566,0.690469145774841,0.872606119140983, --0.413180656731129,0.650762021541595,1.10969586670399,-0.10889245569706,0.0719001889228821,1.77047616243362,-0.0331758856773376,0.668606549501419,0.702628493309021,-0.0803183019161224,0.180796921253204,1.76707744598389,-0.351302497088909,0.704825192689896,1.09894607961178,-0.305281285196543,0.702554881572723,0.79586498439312,-0.347542151808739,0.639187157154083,1.26670283079147,-0.128543570637703,0.181229442358017,1.72129535675049,-0.0139676332473755,0.669031292200089,0.820428013801575,-0.0275055170059204,-0.193481929600239,0.974889051169157,0.751117721199989,-0.0895837502675931,1.0292041040957,0.8453249335289,0.93600283190608,0.990831479430199,-0.0255769193172455,0.799470134079456,0.997441545128822,0.214948356151581,0.177621394395828,0.846979416906834,0.573450177907944,0.266160279512405,0.8820064002648,0.493305534124374,0.457575034350157,1.0206788033247,0.593223303556442,0.481775086373091,0.997820764780045,0.580479651689529,0.312264688313007,1.00074809603393,0.761895298957825,1.30378857254982,0.896268518874422,0.591785706579685,0.900188773870468,0.864824794232845,0.879367314279079,0.865086622536182,1.02140226215124,0.0689246654510498,0.780486445873976,1.05257426202297,0.299502104520798,1.2212296128273,0.867373652756214,0.701127730309963,1.60327059030533,0.883918590843678,-0.138806156814098,1.9457431435585,0.336491014808416,0.106159210205078,1.86651074886322,0.214115036651492,0.57308591157198,1.13081741333008,0.7912906142883,0.745711229741573,1.35313445329666,0.837739203125238,0.571402333676815,1.76789730787277,0.497321199625731,-0.111240208148956,1.94114822149277,0.301953371614218,0.267280146479607,1.51012581586838,0.810509604401886,0.311112783849239,1.42779383063316,1.0094135850668,0.208226189017296,1.93608868122101,0.387673661112785,0.0374213233590126,1.82674461603165,0.546883210539818,0.421337783336639,1.76897615194321,-0.268445238471031,0.817377209663391,1.80514299869537,-0.420022912323475,0.516928017139435,1.96861857175827,0.229849442839622,0.0220742523670197,1.94065248966217,0.324505440890789,0.265011422336102, -0.820179275353439,0.539069831371307,0.505090847611427,0.814640471586245,0.493368089199066,0.398662894964218,0.861891876906157,0.490535259246826,0.413559682667255,0.722716875374317,0.539317309856415,0.467714250087738,0.362274080514908,0.18824428319931,0.540685325860977,0.553841426968575,0.141006052494049,0.402710072696209,0.86452017351985,0.54505318403244,0.445801310241222,0.735099419951439,0.682857513427734,0.600933134555817,0.470837191678584,0.233796417713165,0.457880631554872,0.50332048535347,0.190094530582428,0.308959625661373,0.413049839437008,0.193912446498871,0.50902846455574,0.407229825854301,0.187921762466431,0.748121380805969,0.311866413801908,0.123006403446198,0.738015025854111,0.359552713111043,0.147678911685944,0.368641667068005,0.408377472311258,0.15106475353241,0.362432423979044,0.355064585804939,0.155540764331818,0.695236504077911,0.319563096389174,0.146004736423492,0.479795522987843,0.371339593082666,0.111844897270203,0.263745952397585,0.281096449354663,0.240730226039886,0.667926140129566,0.286048839334399,0.124854028224945,0.556998461484909,0.386757951229811,0.169673562049866,0.473654396831989,0.370924338698387,0.283604204654694,0.666020356118679,0.216165978461504,0.485509753227234,0.980587631464005,0.273277207277715,0.219969809055328,0.80794583261013,0.334319708636031,0.276055693626404,0.753124862909317,0.328368539921939,0.569547027349472,0.892779633402824,0.275508521124721,0.241947114467621,0.649790316820145,0.220765573671088,0.492033302783966,0.74608413875103,0.0108676925301552,0.378599464893341,1.15215387940407,-0.164328455924988,-0.787461664527655,-0.39568030834198,0.29359981719108,-0.668213859200478,-0.571780443191528,0.656415313482285,-0.668239362537861,1.51352339982986,0.154022306762045,-0.767423894256353,1.55038017034531,-0.431267336010933,-0.77559070289135,-0.35522997379303,-0.341755226254463,-0.766792342066765,-0.423447489738464,-0.362097233533859,-0.643421351909637,-0.286442160606384,-0.627529308199883,-0.786972280591726,-0.349754154682159,-0.753632519394159,-0.796589910984039,-0.304273962974548, --0.236224323511124,-0.765353541821241,-0.367361664772034,-0.720799840986729,-0.40044142305851,0.221676111221313,-0.678293406963348,-0.464572243392467,-0.139928221702576,-0.98375840485096,-0.76213726401329,-0.0182945728302002,-0.535539522767067,-0.738954082131386,-0.390199065208435,-1.20947435498238,-0.486238151788712,0.363980114459991,-1.45137184858322,-0.386242225766182,0.341452538967133,-1.22203287482262,-0.666918128728867,0.0520349144935608,-1.05747888982296,-0.774841696023941,-0.160298973321915,-0.904198560863733,-0.809931471943855,-0.100929647684097,-1.03440423309803,-0.719849780201912,0.0775282979011536,-1.23073670268059,-0.729436315596104,0.0539603233337402,-1.30012914538383,-0.812104105018079,0.235137194395065,-1.52494269609451,-0.448863817378879,0.705346889561042,-1.72710078954697,-0.199686616659164,0.582551561761647,-1.44005346298218,-0.406224727630615,0.401075067929924,-1.15626101195812,-0.600954562425613,0.205560371279716,-1.27294340729713,-0.580510601401329,0.236116766929626,-1.48543226718903,-0.659250684082508,0.246220037341118,-1.38051146268845,-0.843328771181405,0.293921917676926,-1.95663547515869,-0.266258518211544,0.00686664134263992,-1.96385061740875,-0.172597553580999,0.0603089332580566,0.0855922102928162,0.907480210065842,0.0843663513660431,0.0139567255973816,0.999990671873093,-0.260543024167418,-0.121548056602478,0.315209418535233,0.230311565101147,-0.0546551942825317,0.577661111950874,0.375241667032242,0.138117253780365,0.894396960735321,0.138749046251178,0.159423887729645,0.718370705842972,-0.00988864898681641,0.173616051673889,0.425227895379066,-0.0763119980692863,0.195131182670593,0.536193374544382,-0.0325304483994842,0.470699965953827,0.910067580640316,0.104743671603501,0.447198569774628,0.920180566608906,-0.000732943415641785,0.385743081569672,0.770348084508441,0.0141463279724121,0.102185368537903,0.668817847967148,0.0229560732841492,-0.0231560468673706,0.788490399718285,0.389791876077652,0.219934046268463,0.815877952612936,0.485859140753746,0.378954768180847,0.762004613876343,0.231854096055031, -0.44149649143219,0.892977397888899,0.338679768145084,0.605179727077484,1.13333582878113,0.640565291047096,0.563831314444542,1.03761098533869,0.569454990327358,0.256682753562927,0.702897161245346,0.272801160812378,0.350272715091705,0.901993423700333,0.290211901068687,0.48840568959713,1.24468985199928,0.601572714745998,0.257466062903404,0.984132040292025,0.632678031921387,0.453599460422993,0.951599255204201,0.768839631229639,0.442102327942848,1.1175731420517,0.608373627066612,0.212111875414848,1.1505778580904,0.632151782512665,0.142619386315346,1.07640596479177,0.864457629621029,0.178654327988625,0.939344374462962,1.12640503048897,0.3597047701478,1.78118634223938,0.331299994140863,0.183055534958839,1.89459764957428,0.0176478251814842,0.170101135969162,1.82734107971191,0.266284476965666,0.354609794914722,1.85849088430405,0.0949209965765476,0.255601659417152,1.79014909267426,0.461913019418716,0.133179783821106,1.74983274936676,0.488672748208046,0.159310072660446,1.75330674648285,0.27419363707304,0.3451137393713,1.76490062475204,0.19743849337101,0.270134963095188,1.76406437158585,0.45111820474267,0.0234715044498444,1.70432305335999,0.47611128538847,0.0113574862480164,1.65485918521881,0.35080298781395,-0.014502614736557,1.62044143676758,0.400988727807999,-0.0439050495624542,1.6450429558754,0.579547099769115,0.164448976516724,1.57802778482437,0.523278102278709,-0.293548870514769,1.55005300045013,0.537708297371864,-0.0309784710407257,1.43964424729347,-0.90889734774828,0.229806005954742,1.69092392921448,-0.174602046608925,0.162468552589417,1.80536425113678,0.14900466427207,0.148198425769806,1.52814894914627,0.583563074469566,0.276854753494263,0.736288920044899,-0.85374690592289,0.558894425630569,0.831255316734314,-0.284437626600266,0.820363193750381,0.963910066522658,0.0924955904483795,0.835021451115608,0.994742268696427,-0.08717773668468,0.2979970946908,0.926518797874451,-1.07369047403336,0.318095624446869,1.41524270176888,-0.863249108195305,0.332090616226196,0.812928721308708,-0.825425162911415,0.221560284495354,0.705128192901611, --0.905096614733338,0.723169520497322,0.818555474281311,-0.457693928852677,0.415247052907944,1.71811258792877,-0.0399871915578842,0.970956087112427,0.937602870166302,-0.278693586587906,1.15048432350159,0.883451074361801,-0.322677113115788,0.8907705321908,0.798334777355194,-0.0873353257775307,0.2020153850317,1.91655081510544,-0.0620472375303507,1.20072823762894,0.949860088527203,-0.209373898804188,1.42212381958961,0.86920528486371,-0.115316189825535,1.63735115528107,0.364489287137985,0.261586718261242,1.25250780582428,1.38128334283829,0.285504397004843,1.44213321805,0.879669631831348,0.0631858762353659,1.25439894199371,0.979795429855585,0.0754089951515198,0.961896657943726,1.14802116155624,-0.405523538589478,1.0562356710434,0.518831789493561,-0.577696800231934,0.864532768726349,1.65458053350449,-0.265640772879124,0.90449446439743,0.839450672268867,-0.361289948225021,1.04770678281784,1.5765478014946,0.283343683928251,1.4823409318924,0.532653391361237,-0.0388242304325104,1.20309722423553,0.950239174067974,0.557791367173195,1.68001198768616,-0.2622991502285,0.299076676368713,1.2239029109478,1.00397914648056,-0.488589018583298,1.21484130620956,0.663716664537787,-0.505333125591278,1.21167674660683,-0.368235990405083,-0.21216756105423,1.43088340759277,-0.467236027121544,-0.329813420772552,1.29012587666512,-0.567006975412369,-0.393585681915283,1.13840311765671,-0.367784529924393,-0.247875273227692,0.786795109510422,-0.893600106239319,-0.276879370212555,0.778481811285019,-1.06990110874176,-0.444263577461243,1.23827412724495,0.725754469633102,0.586796682327986,1.61219352483749,0.0198219567537308,0.264162957668304,1.385229408741,-0.380553811788559,0.377477258443832,1.33236411213875,-0.688367500901222,0.146184265613556,1.35056832432747,-0.71999467164278,0.186129242181778,1.37672716379166,-0.371086969971657,0.359152674674988,1.1100634932518,-0.525268197059631,0.239147424697876,1.12736821174622,-0.850887283682823,0.0230153799057007,0.883713901042938,0.129930675029755,0.573551036417484,1.45482513308525,-0.695948623120785,0.568729691207409, -1.32977044582367,-0.65810452029109,0.553510792553425,1.33808368444443,-0.791399795562029,0.271309584379196,0.666164219379425,0.961708473041654,0.0982104167342186,0.753792509436607,0.932383935898542,0.0171991884708405,0.481448799371719,0.459957584738731,0.326846301555634,0.64850065112114,0.470952190458775,0.387697905302048,0.14833077788353,1.33522820472717,0.868526101112366,0.74993996322155,0.73813009262085,0.24160467274487,0.71940153837204,0.948466275818646,0.165058057755232,0.419090867042542,0.495530899614096,0.597427617758512,0.473184525966644,-0.458152359351516,0.653317276388407,0.695161432027817,-0.522661674767733,0.7393146045506,0.563926130533218,0.558311035856605,0.638806529343128,0.418179988861084,0.501539379358292,0.584771759808064,-0.126185521483421,0.956995069980621,-0.13116455078125,-0.183540672063828,0.249146848917007,-0.198520362377167,-0.0605226159095764,-0.861631542444229,-0.131516873836517,0.373858921229839,-0.567316740984097,-0.126575529575348,-0.215258240699768,0.230520993471146,-0.240283310413361,0.0826065540313721,0.643346458673477,-0.66765595972538,0.276238441467285,1.38536041975021,-0.154428206384182,-0.286650717258453,0.321795113384724,-0.388706147670746,-0.601494893431664,-0.0533545315265656,-0.196587562561035,-0.154447913169861,0.254117012023926,-0.219658851623535,-0.342072188854218,0.159697562456131,-0.380523443222046,-0.305810034275055,-0.402137879282236,-0.323403835296631,0.327521562576294,0.746012941002846,-0.602614924311638,0.17138734459877,0.682708248496056,-0.651807129383087,0.646695099771023,1.09426617622375,0.514301538467407,0.803183153271675,0.354115262627602,0.194961428642273,-0.127837151288986,1.5012903213501,-0.614044487476349,0.380169928073883,0.800700545310974,-0.537571415305138,0.448575586080551,0.39955398440361,0.100638031959534,0.47174509614706,0.365348547697067,0.0473297238349915,0.714134953916073,0.457745850086212,0.290123283863068,0.570473462343216,0.454262718558311,0.243900299072266,0.826044701039791,0.0346453189849854,1.05957075953484,1.10480611026287,-0.720061019062996, -0.42671674489975,0.240770094096661,1.35301244258881,0.378980308771133,1.14289294183254,-0.538539357483387,0.45649579167366,1.23945963382721,-0.492711536586285,0.456585168838501,0.828842118382454,0.309300974011421,0.238901972770691,1.57447105646133,0.0178378820419312,0.193319976329803,1.46005046367645,0.577951855957508,-0.0927888154983521,0.987788408994675,1.23936468362808,0.992232263088226,1.42189073562622,-0.409115724265575,0.469232261180878,0.890999764204025,1.52223169803619,-0.0642749667167664,1.02678072452545,0.895247802138329,-0.172000229358673,1.26294079422951,0.394082792103291,0.380494564771652,1.18385007977486,0.431852351874113,0.234700560569763,1.06742835044861,0.898295033723116,-0.0715937614440918,0.779033571481705,0.887957498431206,-0.0719255954027176,0.510310456156731,1.39204084873199,1.06833320856094,1.45044124126434,-0.567679464817047,0.715060412883759,0.811515659093857,1.36290216445923,0.628133118152618,1.05838693678379,0.543611090630293,0.724551767110825,1.31028598546982,-0.430245903437026,0.705610364675522,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652, --0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.76824134588242,-0.257186908274889,0.691756904125214,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.10433894395828,0.142134189605713,0.105841862503439,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691,0.572726845741272,-1.42396014928818,-0.133588224649429,1.03080865740776,-1.26854434609413,-0.037890613079071,1.24854490160942,-0.846407145261765,-0.730971537530422,1.24981904029846,-0.679400444030762,-0.0847422480583191,0.534459471702576,-1.7815232872963,-0.364002246409655,0.782490462064743,-1.85636818408966,-0.355389647185802,0.534850895404816,-1.48674166202545,-0.517365857958794,0.602423816919327,-1.31243240833282,-0.589881494641304,0.784623801708221,-1.722560942173,-0.468667853623629,0.516778904944658,-1.17784309387207,0.314769327640533,0.359362870454788,-1.14207063615322,-1.08919036388397,0.378952577710152,-1.2306469976902,-0.853217177093029,0.386035524308681,-1.69008231163025,-0.164093524217606,0.2735281214118,-1.7775656580925,-0.312521979212761,0.427023075520992,-1.18610668182373,-0.896621689200401,0.574189186096191,-0.660574182868004,-0.0989695191383362,0.336963213980198,-1.94617605209351,-0.322311107069254,0.206708278506994,-1.78914159536362,0.213230431079865,0.0612986274063587,-1.20843148231506,-0.533585160970688,0.693379312753677,-1.17668288946152,-0.251699984073639,0.421459101140499,-1.77441203594208,0.235794365406036,0.0617856718599796,-0.933141242712736,0.162919849157333,0.750452119857073,-0.564686417579651,-0.591176152229309,1.18107512593269,-0.658525884151459,-0.95062392950058,1.30389979481697,-1.32854956388474,0.475797399878502, -1.10014215111732,-1.4798731803894,0.256111234426498,0.861000925302505,-0.827630639076233,-0.680174753069878,1.35518795251846,-0.989184558391571,0.0435509979724884,1.46126532554626,-1.43764355778694,0.0684385597705841,0.97721728682518,-1.59337937831879,-0.200890831649303,0.826843317598104,-0.899134695529938,-0.624864086508751,1.17542344331741,-1.0674712061882,-0.267541229724884,1.07665109634399,-1.21113708615303,0.703436881303787,0.887117890641093,-1.27343130111694,1.17526704072952,0.91887903213501,-1.31949985027313,1.06445327401161,0.663771934807301,-1.75951486825943,0.661952577531338,0.264670727774501,-1.75851839780807,0.343534722924232,0.797108143568039,-1.19413384795189,0.362986147403717,1.11007815599442,-1.42831748723984,0.487822290509939,1.22578555345535,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925, --0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241,0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653, -1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013,0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222, -0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338,-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072, -1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331,1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976, --0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489,0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026, -1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368,-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369, -0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198,-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003, --0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207,-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566, -0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515, -0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084,-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727, -0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669,0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085, --0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093,-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356, -0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708,-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204, -0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439,-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656, -0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937,0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336, -0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039,1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177, -1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407,0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133, -0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795,0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711, -1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304,-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083, -1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519,0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157, -0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928,1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009, -1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978,0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391, -0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073,1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376, -0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912,-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628, --0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536,1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081, -0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127,0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976, --1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893,-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186, -0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072,0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369, --0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675,0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132, --0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155,0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526, --0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933,0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411, -1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192,0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879, -1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444, -0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231, -0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498, -0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596, -1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133, -0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943, -0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073, -0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278, -1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705, -1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011, -1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487, -0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739, -0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552, -0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439, --0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782, -0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736, -0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578, -0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867, -0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058, --0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205, --0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954, -0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147, -0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484, --0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071, --0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405, -1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283, --0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409, -0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442, --0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243, --0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216, -0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329, --0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646, --1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401, --1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112, --0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174, --1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048, --0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822, --0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742, --0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147, --0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429, --1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914, --0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966, -0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852, --1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875, --0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539, --0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843, --0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614, -0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567, --1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235, --0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523, -0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357, --0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527, -0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559, -1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491, --1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145, --0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833, -0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687, --0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505, --0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589, --1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673, --1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182, --0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516, --0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696, --0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186, --0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727, --0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353, --1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283, --1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571, --0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452, --0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168, -0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248, -0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124, --0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595, --0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915, --1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719, --1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634, --1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942, -0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454, -0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382, -0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657, -1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039, -1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183, --0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169, -0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552, -0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391, -0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571, -0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928, --0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012, --0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,1.61700159311295,0.242999859154224,-0.226044476032257,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941, --1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.179240807890892,-0.80996510386467,-1.56414943933487,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752,-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-1.43386590480804,0.734417945146561,0.614903017878532,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.68238508701324,0.32922638207674,-0.883319422602654,-0.882849395275116,-0.127865627408028,0.0330973267555237,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438, --0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,0.714810416102409,0.279693081974983,-0.203442215919495,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177,-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598, --1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 - } - } - Model: 2807828244416, "Model::Head", "Mesh" { - Version: 232 - Properties70: { - P: "RotationPivot", "Vector3D", "Vector", "",0,-5.09788710765478,0.420266751388517 - P: "ScalingPivot", "Vector3D", "Vector", "",0,-5.09788710765478,0.420266751388517 - P: "RotationActive", "bool", "", "",1 - P: "InheritType", "enum", "", "",1 - P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 - P: "DefaultAttributeIndex", "int", "Integer", "",0 - P: "currentUVSet", "KString", "", "U", "map1" - } - Shading: T - Culling: "CullingOff" - } - Model: 2807828235136, "Model::Eye_Left", "Mesh" { - Version: 232 - Properties70: { - P: "RotationPivot", "Vector3D", "Vector", "",3.44803977012634,0.824235498905182,7.8922843218974 - P: "ScalingPivot", "Vector3D", "Vector", "",3.44803977012634,0.824235498905182,7.8922843218974 - P: "RotationActive", "bool", "", "",1 - P: "InheritType", "enum", "", "",1 - P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 - P: "DefaultAttributeIndex", "int", "Integer", "",0 - P: "currentUVSet", "KString", "", "U", "map1" - } - Shading: T - Culling: "CullingOff" - } - Model: 2807828258336, "Model::Eye_Right", "Mesh" { - Version: 232 - Properties70: { - P: "RotationPivot", "Vector3D", "Vector", "",-3.44803977012634,0.824235498905182,7.8922843218974 - P: "ScalingPivot", "Vector3D", "Vector", "",-3.44803977012634,0.824235498905182,7.8922843218974 - P: "RotationActive", "bool", "", "",1 - P: "InheritType", "enum", "", "",1 - P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 - P: "DefaultAttributeIndex", "int", "Integer", "",0 - P: "currentUVSet", "KString", "", "U", "map1" - } - Shading: T - Culling: "CullingOff" - } - Material: 2807582018768, "Material::head_mat1", "" { - Version: 102 - ShadingModel: "lambert" - MultiLayer: 0 - Properties70: { - P: "AmbientColor", "Color", "", "A",0,0,0 - P: "DiffuseColor", "Color", "", "A",1,1,1 - P: "DiffuseFactor", "Number", "", "A",0.800000011920929 - P: "TransparencyFactor", "Number", "", "A",1 - P: "Emissive", "Vector3D", "Vector", "",0,0,0 - P: "Ambient", "Vector3D", "Vector", "",0,0,0 - P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929 - P: "Opacity", "double", "Number", "",1 - } - } - Material: 2807582011568, "Material::eyelash_mat1", "" { - Version: 102 - ShadingModel: "lambert" - MultiLayer: 0 - Properties70: { - P: "AmbientColor", "Color", "", "A",0,0,0 - P: "DiffuseColor", "Color", "", "A",1,1,1 - P: "DiffuseFactor", "Number", "", "A",0.800000011920929 - P: "TransparencyFactor", "Number", "", "A",1 - P: "Emissive", "Vector3D", "Vector", "",0,0,0 - P: "Ambient", "Vector3D", "Vector", "",0,0,0 - P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929 - P: "Opacity", "double", "Number", "",1 - } - } - Material: 2807582009968, "Material::lambert1", "" { - Version: 102 - ShadingModel: "lambert" - MultiLayer: 0 - Properties70: { - P: "AmbientColor", "Color", "", "A",0,0,0 - P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5 - P: "DiffuseFactor", "Number", "", "A",0.800000011920929 - P: "TransparencyFactor", "Number", "", "A",1 - P: "Emissive", "Vector3D", "Vector", "",0,0,0 - P: "Ambient", "Vector3D", "Vector", "",0,0,0 - P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464 - P: "Opacity", "double", "Number", "",1 - } - } - Deformer: 2807846333360, "Deformer::head", "BlendShape" { - Version: 100 - Properties70: { - P: "RootGroup", "KString", "", "", "" - P: "RootGroup|Jaw_Left", "KString", "", "", "" - P: "RootGroup|Jaw_Right", "KString", "", "", "" - P: "RootGroup|Jaw_Forward", "KString", "", "", "" - P: "RootGroup|Jaw_Open", "KString", "", "", "" - P: "RootGroup|Mouth_Ape_Shape", "KString", "", "", "" - P: "RootGroup|Mouth_Upper_Left", "KString", "", "", "" - P: "RootGroup|Mouth_Upper_Right", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_Left", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_Right", "KString", "", "", "" - P: "RootGroup|Mouth_Upper_Overturn", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_Overturn", "KString", "", "", "" - P: "RootGroup|Mouth_Pout", "KString", "", "", "" - P: "RootGroup|Mouth_Raiser_Left", "KString", "", "", "" - P: "RootGroup|Mouth_Raiser_Right", "KString", "", "", "" - P: "RootGroup|Mouth_Stretcher_Left", "KString", "", "", "" - P: "RootGroup|Mouth_Stretcher_Right", "KString", "", "", "" - P: "RootGroup|Cheek_Puff_Left", "KString", "", "", "" - P: "RootGroup|Cheek_Puff_Right", "KString", "", "", "" - P: "RootGroup|Cheek_Suck", "KString", "", "", "" - P: "RootGroup|Mouth_Upper_UpLeft", "KString", "", "", "" - P: "RootGroup|Mouth_Upper_UpRight", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_DownLeft", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_DownRight", "KString", "", "", "" - P: "RootGroup|Mouth_Upper_Inside", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_Inside", "KString", "", "", "" - P: "RootGroup|Mouth_Lower_Overlay", "KString", "", "", "" - P: "RootGroup|Eye_Left_Blink", "KString", "", "", "" - P: "RootGroup|Eye_Left_Wide", "KString", "", "", "" - P: "RootGroup|Eye_Left_Right", "KString", "", "", "" - P: "RootGroup|Eye_Left_Left", "KString", "", "", "" - P: "RootGroup|Eye_Left_Up", "KString", "", "", "" - P: "RootGroup|Eye_Left_Down", "KString", "", "", "" - P: "RootGroup|Eye_Right_Blink", "KString", "", "", "" - P: "RootGroup|Eye_Right_Wide", "KString", "", "", "" - P: "RootGroup|Eye_Right_Right", "KString", "", "", "" - P: "RootGroup|Eye_Right_Left", "KString", "", "", "" - P: "RootGroup|Eye_Right_Up", "KString", "", "", "" - P: "RootGroup|Eye_Right_Down", "KString", "", "", "" - P: "RootGroup|Eye_Frown", "KString", "", "", "" - P: "RootGroup|Eye_Left_squeeze", "KString", "", "", "" - P: "RootGroup|Eye_Right_squeeze", "KString", "", "", "" - P: "RootGroup|Tongue_LongStep1", "KString", "", "", "" - P: "RootGroup|Tongue_LongStep2", "KString", "", "", "" - P: "RootGroup|Tongue_Left", "KString", "", "", "" - P: "RootGroup|Tongue_Right", "KString", "", "", "" - P: "RootGroup|Tongue_Up", "KString", "", "", "" - P: "RootGroup|Tongue_Down", "KString", "", "", "" - P: "RootGroup|Tongue_Roll", "KString", "", "", "" - P: "RootGroup|Tongue_UpLeft_Morph", "KString", "", "", "" - P: "RootGroup|Tongue_UpRight_Morph", "KString", "", "", "" - P: "RootGroup|Tongue_DownLeft_Morph", "KString", "", "", "" - P: "RootGroup|Tongue_DownRight_Morph", "KString", "", "", "" - } - } - Deformer: 2805037335680, "SubDeformer::Jaw_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037336384, "SubDeformer::Jaw_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037336560, "SubDeformer::Jaw_Forward", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037337264, "SubDeformer::Jaw_Open", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037337616, "SubDeformer::Mouth_Ape_Shape", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037335856, "SubDeformer::Mouth_Upper_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037338144, "SubDeformer::Mouth_Upper_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805037336208, "SubDeformer::Mouth_Lower_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805292903472, "SubDeformer::Mouth_Lower_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2806816711456, "SubDeformer::Mouth_Upper_Overturn", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807266036576, "SubDeformer::Mouth_Lower_Overturn", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2805561191808, "SubDeformer::Mouth_Pout", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027180528, "SubDeformer::Mouth_Raiser_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027180880, "SubDeformer::Mouth_Raiser_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027183168, "SubDeformer::Mouth_Stretcher_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027179824, "SubDeformer::Mouth_Stretcher_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027181936, "SubDeformer::Cheek_Puff_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027182992, "SubDeformer::Cheek_Puff_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027183344, "SubDeformer::Cheek_Suck", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027180352, "SubDeformer::Mouth_Upper_UpLeft", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027181760, "SubDeformer::Mouth_Upper_UpRight", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027182640, "SubDeformer::Mouth_Lower_DownLeft", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027181232, "SubDeformer::Mouth_Lower_DownRight", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027179648, "SubDeformer::Mouth_Upper_Inside", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027182816, "SubDeformer::Mouth_Lower_Inside", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027182112, "SubDeformer::Mouth_Lower_Overlay", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027182288, "SubDeformer::Eye_Left_Blink", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027181056, "SubDeformer::Eye_Left_Wide", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027182464, "SubDeformer::Eye_Left_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027180000, "SubDeformer::Eye_Left_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027180176, "SubDeformer::Eye_Left_Up", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027180704, "SubDeformer::Eye_Left_Down", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027181408, "SubDeformer::Eye_Right_Blink", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807027181584, "SubDeformer::Eye_Right_Wide", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243850800, "SubDeformer::Eye_Right_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243849568, "SubDeformer::Eye_Right_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243852736, "SubDeformer::Eye_Right_Up", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243852384, "SubDeformer::Eye_Right_Down", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243851152, "SubDeformer::Eye_Frown", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243849920, "SubDeformer::Eye_Left_squeeze", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243850096, "SubDeformer::Eye_Right_squeeze", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243850448, "SubDeformer::Tongue_LongStep1", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243849744, "SubDeformer::Tongue_LongStep2", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243850272, "SubDeformer::Tongue_Left", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243851328, "SubDeformer::Tongue_Right", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243851504, "SubDeformer::Tongue_Up", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243852912, "SubDeformer::Tongue_Down", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243850624, "SubDeformer::Tongue_Roll", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243850976, "SubDeformer::Tongue_UpLeft_Morph", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243852560, "SubDeformer::Tongue_UpRight_Morph", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243853088, "SubDeformer::Tongue_DownLeft_Morph", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Deformer: 2807243851680, "SubDeformer::Tongue_DownRight_Morph", "BlendShapeChannel" { - Version: 100 - DeformPercent: 0 - FullWeights: *1 { - a: 100 - } - } - Video: 2805740697664, "Video::file14", "Clip" { - Type: "Clip" - Properties70: { - P: "Path", "KString", "XRefUrl", "", "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" - P: "RelPath", "KString", "XRefUrl", "", "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" - } - UseMipMap: 0 - Filename: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" - RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" - } - Video: 2805740688544, "Video::file15", "Clip" { - Type: "Clip" - Properties70: { - P: "Path", "KString", "XRefUrl", "", "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" - P: "RelPath", "KString", "XRefUrl", "", "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" - } - UseMipMap: 0 - Filename: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" - RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" - } - Texture: 2805740683744, "Texture::file14", "" { - Type: "TextureVideoClip" - Version: 202 - TextureName: "Texture::file14" - Properties70: { - P: "CurrentTextureBlendMode", "enum", "", "",0 - P: "UVSet", "KString", "", "", "map1" - P: "UseMaterial", "bool", "", "",1 - } - Media: "Video::file14" - FileName: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" - RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" - ModelUVTranslation: 0,0 - ModelUVScaling: 1,1 - Texture_Alpha_Source: "None" - Cropping: 0,0,0,0 - } - Texture: 2805740697184, "Texture::file15", "" { - Type: "TextureVideoClip" - Version: 202 - TextureName: "Texture::file15" - Properties70: { - P: "CurrentTextureBlendMode", "enum", "", "",0 - P: "UVSet", "KString", "", "", "map1" - P: "UseMaterial", "bool", "", "",1 - } - Media: "Video::file15" - FileName: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" - RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" - ModelUVTranslation: 0,0 - ModelUVScaling: 1,1 - Texture_Alpha_Source: "None" - Cropping: 0,0,0,0 - } -} - -; Object connections -;------------------------------------------------------------------ - -Connections: { - - ;Model::Head, Model::RootNode - C: "OO",2807828244416,0 - - ;Model::Eye_Left, Model::RootNode - C: "OO",2807828235136,0 - - ;Model::Eye_Right, Model::RootNode - C: "OO",2807828258336,0 - - ;Deformer::head, Geometry:: - C: "OO",2807846333360,2807092188944 - - ;Texture::file14, Material::head_mat1 - C: "OP",2805740683744,2807582018768, "DiffuseColor" - - ;Texture::file15, Material::eyelash_mat1 - C: "OP",2805740697184,2807582011568, "DiffuseColor" - - ;Texture::file15, Material::eyelash_mat1 - C: "OP",2805740697184,2807582011568, "TransparentColor" - - ;Video::file14, Texture::file14 - C: "OO",2805740697664,2805740683744 - - ;Video::file15, Texture::file15 - C: "OO",2805740688544,2805740697184 - - ;Geometry::, Model::Head - C: "OO",2807092188944,2807828244416 - - ;Material::head_mat1, Model::Head - C: "OO",2807582018768,2807828244416 - - ;Material::eyelash_mat1, Model::Head - C: "OO",2807582011568,2807828244416 - - ;Geometry::, Model::Eye_Left - C: "OO",2807092190992,2807828235136 - - ;Material::head_mat1, Model::Eye_Left - C: "OO",2807582018768,2807828235136 - - ;Geometry::, Model::Eye_Right - C: "OO",2807092192528,2807828258336 - - ;Material::head_mat1, Model::Eye_Right - C: "OO",2807582018768,2807828258336 - - ;SubDeformer::Jaw_Left, Deformer::head - C: "OO",2805037335680,2807846333360 - - ;SubDeformer::Jaw_Right, Deformer::head - C: "OO",2805037336384,2807846333360 - - ;SubDeformer::Jaw_Forward, Deformer::head - C: "OO",2805037336560,2807846333360 - - ;SubDeformer::Jaw_Open, Deformer::head - C: "OO",2805037337264,2807846333360 - - ;SubDeformer::Mouth_Ape_Shape, Deformer::head - C: "OO",2805037337616,2807846333360 - - ;SubDeformer::Mouth_Upper_Left, Deformer::head - C: "OO",2805037335856,2807846333360 - - ;SubDeformer::Mouth_Upper_Right, Deformer::head - C: "OO",2805037338144,2807846333360 - - ;SubDeformer::Mouth_Lower_Left, Deformer::head - C: "OO",2805037336208,2807846333360 - - ;SubDeformer::Mouth_Lower_Right, Deformer::head - C: "OO",2805292903472,2807846333360 - - ;SubDeformer::Mouth_Upper_Overturn, Deformer::head - C: "OO",2806816711456,2807846333360 - - ;SubDeformer::Mouth_Lower_Overturn, Deformer::head - C: "OO",2807266036576,2807846333360 - - ;SubDeformer::Mouth_Pout, Deformer::head - C: "OO",2805561191808,2807846333360 - - ;SubDeformer::Mouth_Raiser_Left, Deformer::head - C: "OO",2807027180528,2807846333360 - - ;SubDeformer::Mouth_Raiser_Right, Deformer::head - C: "OO",2807027180880,2807846333360 - - ;SubDeformer::Mouth_Stretcher_Left, Deformer::head - C: "OO",2807027183168,2807846333360 - - ;SubDeformer::Mouth_Stretcher_Right, Deformer::head - C: "OO",2807027179824,2807846333360 - - ;SubDeformer::Cheek_Puff_Left, Deformer::head - C: "OO",2807027181936,2807846333360 - - ;SubDeformer::Cheek_Puff_Right, Deformer::head - C: "OO",2807027182992,2807846333360 - - ;SubDeformer::Cheek_Suck, Deformer::head - C: "OO",2807027183344,2807846333360 - - ;SubDeformer::Mouth_Upper_UpLeft, Deformer::head - C: "OO",2807027180352,2807846333360 - - ;SubDeformer::Mouth_Upper_UpRight, Deformer::head - C: "OO",2807027181760,2807846333360 - - ;SubDeformer::Mouth_Lower_DownLeft, Deformer::head - C: "OO",2807027182640,2807846333360 - - ;SubDeformer::Mouth_Lower_DownRight, Deformer::head - C: "OO",2807027181232,2807846333360 - - ;SubDeformer::Mouth_Upper_Inside, Deformer::head - C: "OO",2807027179648,2807846333360 - - ;SubDeformer::Mouth_Lower_Inside, Deformer::head - C: "OO",2807027182816,2807846333360 - - ;SubDeformer::Mouth_Lower_Overlay, Deformer::head - C: "OO",2807027182112,2807846333360 - - ;SubDeformer::Eye_Left_Blink, Deformer::head - C: "OO",2807027182288,2807846333360 - - ;SubDeformer::Eye_Left_Wide, Deformer::head - C: "OO",2807027181056,2807846333360 - - ;SubDeformer::Eye_Left_Right, Deformer::head - C: "OO",2807027182464,2807846333360 - - ;SubDeformer::Eye_Left_Left, Deformer::head - C: "OO",2807027180000,2807846333360 - - ;SubDeformer::Eye_Left_Up, Deformer::head - C: "OO",2807027180176,2807846333360 - - ;SubDeformer::Eye_Left_Down, Deformer::head - C: "OO",2807027180704,2807846333360 - - ;SubDeformer::Eye_Right_Blink, Deformer::head - C: "OO",2807027181408,2807846333360 - - ;SubDeformer::Eye_Right_Wide, Deformer::head - C: "OO",2807027181584,2807846333360 - - ;SubDeformer::Eye_Right_Right, Deformer::head - C: "OO",2807243850800,2807846333360 - - ;SubDeformer::Eye_Right_Left, Deformer::head - C: "OO",2807243849568,2807846333360 - - ;SubDeformer::Eye_Right_Up, Deformer::head - C: "OO",2807243852736,2807846333360 - - ;SubDeformer::Eye_Right_Down, Deformer::head - C: "OO",2807243852384,2807846333360 - - ;SubDeformer::Eye_Frown, Deformer::head - C: "OO",2807243851152,2807846333360 - - ;SubDeformer::Eye_Left_squeeze, Deformer::head - C: "OO",2807243849920,2807846333360 - - ;SubDeformer::Eye_Right_squeeze, Deformer::head - C: "OO",2807243850096,2807846333360 - - ;SubDeformer::Tongue_LongStep1, Deformer::head - C: "OO",2807243850448,2807846333360 - - ;SubDeformer::Tongue_LongStep2, Deformer::head - C: "OO",2807243849744,2807846333360 - - ;SubDeformer::Tongue_Left, Deformer::head - C: "OO",2807243850272,2807846333360 - - ;SubDeformer::Tongue_Right, Deformer::head - C: "OO",2807243851328,2807846333360 - - ;SubDeformer::Tongue_Up, Deformer::head - C: "OO",2807243851504,2807846333360 - - ;SubDeformer::Tongue_Down, Deformer::head - C: "OO",2807243852912,2807846333360 - - ;SubDeformer::Tongue_Roll, Deformer::head - C: "OO",2807243850624,2807846333360 - - ;SubDeformer::Tongue_UpLeft_Morph, Deformer::head - C: "OO",2807243850976,2807846333360 - - ;SubDeformer::Tongue_UpRight_Morph, Deformer::head - C: "OO",2807243852560,2807846333360 - - ;SubDeformer::Tongue_DownLeft_Morph, Deformer::head - C: "OO",2807243853088,2807846333360 - - ;SubDeformer::Tongue_DownRight_Morph, Deformer::head - C: "OO",2807243851680,2807846333360 - - ;Geometry::Jaw_Left, SubDeformer::Jaw_Left - C: "OO",2807563820512,2805037335680 - - ;Geometry::Jaw_Right, SubDeformer::Jaw_Right - C: "OO",2807563817632,2805037336384 - - ;Geometry::Jaw_Forward, SubDeformer::Jaw_Forward - C: "OO",2807563817056,2805037336560 - - ;Geometry::Jaw_Open, SubDeformer::Jaw_Open - C: "OO",2807563817344,2805037337264 - - ;Geometry::Mouth_Ape_Shape, SubDeformer::Mouth_Ape_Shape - C: "OO",2807563817920,2805037337616 - - ;Geometry::Mouth_Upper_Left, SubDeformer::Mouth_Upper_Left - C: "OO",2807563818208,2805037335856 - - ;Geometry::Mouth_Upper_Right, SubDeformer::Mouth_Upper_Right - C: "OO",2807563819648,2805037338144 - - ;Geometry::Mouth_Lower_Left, SubDeformer::Mouth_Lower_Left - C: "OO",2807563818496,2805037336208 - - ;Geometry::Mouth_Lower_Right, SubDeformer::Mouth_Lower_Right - C: "OO",2807563819072,2805292903472 - - ;Geometry::Mouth_Upper_Overturn, SubDeformer::Mouth_Upper_Overturn - C: "OO",2807563819360,2806816711456 - - ;Geometry::Mouth_Lower_Overturn, SubDeformer::Mouth_Lower_Overturn - C: "OO",2805454334880,2807266036576 - - ;Geometry::Mouth_Pout, SubDeformer::Mouth_Pout - C: "OO",2805454332576,2805561191808 - - ;Geometry::Mouth_Raiser_Left, SubDeformer::Mouth_Raiser_Left - C: "OO",2805454334592,2807027180528 - - ;Geometry::Mouth_Raiser_Right, SubDeformer::Mouth_Raiser_Right - C: "OO",2805454333728,2807027180880 - - ;Geometry::Mouth_Stretcher_Left, SubDeformer::Mouth_Stretcher_Left - C: "OO",2805454334304,2807027183168 - - ;Geometry::Mouth_Stretcher_Right, SubDeformer::Mouth_Stretcher_Right - C: "OO",2805454335168,2807027179824 - - ;Geometry::Cheek_Puff_Left, SubDeformer::Cheek_Puff_Left - C: "OO",2805454332864,2807027181936 - - ;Geometry::Cheek_Puff_Right, SubDeformer::Cheek_Puff_Right - C: "OO",2805454335456,2807027182992 - - ;Geometry::Cheek_Suck, SubDeformer::Cheek_Suck - C: "OO",2805454333152,2807027183344 - - ;Geometry::Mouth_Upper_UpLeft, SubDeformer::Mouth_Upper_UpLeft - C: "OO",2805454332000,2807027180352 - - ;Geometry::Mouth_Upper_UpRight, SubDeformer::Mouth_Upper_UpRight - C: "OO",2805454332288,2807027181760 - - ;Geometry::Mouth_Lower_DownLeft, SubDeformer::Mouth_Lower_DownLeft - C: "OO",2805454334016,2807027182640 - - ;Geometry::Mouth_Lower_DownRight, SubDeformer::Mouth_Lower_DownRight - C: "OO",2805454333440,2807027181232 - - ;Geometry::Mouth_Upper_Inside, SubDeformer::Mouth_Upper_Inside - C: "OO",2807030774448,2807027179648 - - ;Geometry::Mouth_Lower_Inside, SubDeformer::Mouth_Lower_Inside - C: "OO",2807030774736,2807027182816 - - ;Geometry::Mouth_Lower_Overlay, SubDeformer::Mouth_Lower_Overlay - C: "OO",2807030772720,2807027182112 - - ;Geometry::Eye_Left_Blink, SubDeformer::Eye_Left_Blink - C: "OO",2807030772144,2807027182288 - - ;Geometry::Eye_Left_Wide, SubDeformer::Eye_Left_Wide - C: "OO",2807030773584,2807027181056 - - ;Geometry::Eye_Left_Right, SubDeformer::Eye_Left_Right - C: "OO",2807030773872,2807027182464 - - ;Geometry::Eye_Left_Left, SubDeformer::Eye_Left_Left - C: "OO",2807030774160,2807027180000 - - ;Geometry::Eye_Left_Up, SubDeformer::Eye_Left_Up - C: "OO",2807030775024,2807027180176 - - ;Geometry::Eye_Left_Down, SubDeformer::Eye_Left_Down - C: "OO",2807030771568,2807027180704 - - ;Geometry::Eye_Right_Blink, SubDeformer::Eye_Right_Blink - C: "OO",2807030773296,2807027181408 - - ;Geometry::Eye_Right_Wide, SubDeformer::Eye_Right_Wide - C: "OO",2807030771856,2807027181584 - - ;Geometry::Eye_Right_Right, SubDeformer::Eye_Right_Right - C: "OO",2807030772432,2807243850800 - - ;Geometry::Eye_Right_Left, SubDeformer::Eye_Right_Left - C: "OO",2807030773008,2807243849568 - - ;Geometry::Eye_Right_Up, SubDeformer::Eye_Right_Up - C: "OO",2807663840112,2807243852736 - - ;Geometry::Eye_Right_Down, SubDeformer::Eye_Right_Down - C: "OO",2807663838096,2807243852384 - - ;Geometry::Eye_Frown, SubDeformer::Eye_Frown - C: "OO",2807663838672,2807243851152 - - ;Geometry::Eye_Left_squeeze, SubDeformer::Eye_Left_squeeze - C: "OO",2807663838960,2807243849920 - - ;Geometry::Eye_Right_squeeze, SubDeformer::Eye_Right_squeeze - C: "OO",2807663839824,2807243850096 - - ;Geometry::Tongue_LongStep1, SubDeformer::Tongue_LongStep1 - C: "OO",2807663837520,2807243850448 - - ;Geometry::Tongue_LongStep2, SubDeformer::Tongue_LongStep2 - C: "OO",2807663836656,2807243849744 - - ;Geometry::Tongue_Left, SubDeformer::Tongue_Left - C: "OO",2807663836944,2807243850272 - - ;Geometry::Tongue_Right, SubDeformer::Tongue_Right - C: "OO",2807663839248,2807243851328 - - ;Geometry::Tongue_Up, SubDeformer::Tongue_Up - C: "OO",2807663838384,2807243851504 - - ;Geometry::Tongue_Down, SubDeformer::Tongue_Down - C: "OO",2807663837232,2807243852912 - - ;Geometry::Tongue_Roll, SubDeformer::Tongue_Roll - C: "OO",2807663837808,2807243850624 - - ;Geometry::Tongue_UpLeft_Morph, SubDeformer::Tongue_UpLeft_Morph - C: "OO",2807663839536,2807243850976 - - ;Geometry::Tongue_UpRight_Morph, SubDeformer::Tongue_UpRight_Morph - C: "OO",2805100583344,2807243852560 - - ;Geometry::Tongue_DownLeft_Morph, SubDeformer::Tongue_DownLeft_Morph - C: "OO",2805100584784,2807243853088 - - ;Geometry::Tongue_DownRight_Morph, SubDeformer::Tongue_DownRight_Morph - C: "OO",2805100585360,2807243851680 -} - +; FBX 7.4.0 project file +; ---------------------------------------------------- + +FBXHeaderExtension: { + FBXHeaderVersion: 1003 + FBXVersion: 7400 + CreationTimeStamp: { + Version: 1000 + Year: 2019 + Month: 7 + Day: 9 + Hour: 10 + Minute: 54 + Second: 25 + Millisecond: 368 + } + Creator: "FBX SDK/FBX Plugins version 2018.1.1" + SceneInfo: "SceneInfo::GlobalInfo", "UserData" { + Type: "UserData" + Version: 100 + MetaData: { + Version: 100 + Title: "" + Subject: "" + Author: "" + Keywords: "" + Revision: "" + Comment: "" + } + Properties70: { + P: "DocumentUrl", "KString", "Url", "", "D:\MAYA\scenes\Head\_output190709\Avatar_Shieh_V2.fbx" + P: "SrcDocumentUrl", "KString", "Url", "", "D:\MAYA\scenes\Head\_output190709\Avatar_Shieh_V2.fbx" + P: "Original", "Compound", "", "" + P: "Original|ApplicationVendor", "KString", "", "", "Autodesk" + P: "Original|ApplicationName", "KString", "", "", "Maya" + P: "Original|ApplicationVersion", "KString", "", "", "201802" + P: "Original|DateTime_GMT", "DateTime", "", "", "09/07/2019 02:54:25.363" + P: "Original|FileName", "KString", "", "", "D:\MAYA\scenes\Head\_output190709\Avatar_Shieh_V2.fbx" + P: "LastSaved", "Compound", "", "" + P: "LastSaved|ApplicationVendor", "KString", "", "", "Autodesk" + P: "LastSaved|ApplicationName", "KString", "", "", "Maya" + P: "LastSaved|ApplicationVersion", "KString", "", "", "201802" + P: "LastSaved|DateTime_GMT", "DateTime", "", "", "09/07/2019 02:54:25.363" + P: "Original|ApplicationActiveProject", "KString", "", "", "D:\MAYA\scenes\Head\_output190709" + P: "Original|ApplicationNativeFile", "KString", "", "", "D:\MAYA\scenes\Head\Head_B_V3_190709_50.ma" + } + } +} +GlobalSettings: { + Version: 1000 + Properties70: { + P: "UpAxis", "int", "Integer", "",1 + P: "UpAxisSign", "int", "Integer", "",1 + P: "FrontAxis", "int", "Integer", "",2 + P: "FrontAxisSign", "int", "Integer", "",1 + P: "CoordAxis", "int", "Integer", "",0 + P: "CoordAxisSign", "int", "Integer", "",1 + P: "OriginalUpAxis", "int", "Integer", "",1 + P: "OriginalUpAxisSign", "int", "Integer", "",1 + P: "UnitScaleFactor", "double", "Number", "",1 + P: "OriginalUnitScaleFactor", "double", "Number", "",1 + P: "AmbientColor", "ColorRGB", "Color", "",0,0,0 + P: "DefaultCamera", "KString", "", "", "Producer Perspective" + P: "TimeMode", "enum", "", "",11 + P: "TimeProtocol", "enum", "", "",2 + P: "SnapOnFrameMode", "enum", "", "",0 + P: "TimeSpanStart", "KTime", "Time", "",1924423250 + P: "TimeSpanStop", "KTime", "Time", "",384884650000 + P: "CustomFrameRate", "double", "Number", "",-1 + P: "TimeMarker", "Compound", "", "" + P: "CurrentTimeMarker", "int", "Integer", "",-1 + } +} + +; Documents Description +;------------------------------------------------------------------ + +Documents: { + Count: 1 + Document: 2805540295936, "", "Scene" { + Properties70: { + P: "SourceObject", "object", "", "" + P: "ActiveAnimStackName", "KString", "", "", "Take 001" + } + RootNode: 0 + } +} + +; Document References +;------------------------------------------------------------------ + +References: { +} + +; Object definitions +;------------------------------------------------------------------ + +Definitions: { + Version: 100 + Count: 119 + ObjectType: "GlobalSettings" { + Count: 1 + } + ObjectType: "Geometry" { + Count: 55 + PropertyTemplate: "FbxMesh" { + Properties70: { + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "BBoxMin", "Vector3D", "Vector", "",0,0,0 + P: "BBoxMax", "Vector3D", "Vector", "",0,0,0 + P: "Primary Visibility", "bool", "", "",1 + P: "Casts Shadows", "bool", "", "",1 + P: "Receive Shadows", "bool", "", "",1 + } + } + } + ObjectType: "Material" { + Count: 3 + PropertyTemplate: "FbxSurfaceLambert" { + Properties70: { + P: "ShadingModel", "KString", "", "", "Lambert" + P: "MultiLayer", "bool", "", "",0 + P: "EmissiveColor", "Color", "", "A",0,0,0 + P: "EmissiveFactor", "Number", "", "A",1 + P: "AmbientColor", "Color", "", "A",0.2,0.2,0.2 + P: "AmbientFactor", "Number", "", "A",1 + P: "DiffuseColor", "Color", "", "A",0.8,0.8,0.8 + P: "DiffuseFactor", "Number", "", "A",1 + P: "Bump", "Vector3D", "Vector", "",0,0,0 + P: "NormalMap", "Vector3D", "Vector", "",0,0,0 + P: "BumpFactor", "double", "Number", "",1 + P: "TransparentColor", "Color", "", "A",0,0,0 + P: "TransparencyFactor", "Number", "", "A",0 + P: "DisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "DisplacementFactor", "double", "Number", "",1 + P: "VectorDisplacementColor", "ColorRGB", "Color", "",0,0,0 + P: "VectorDisplacementFactor", "double", "Number", "",1 + } + } + } + ObjectType: "Texture" { + Count: 2 + PropertyTemplate: "FbxFileTexture" { + Properties70: { + P: "TextureTypeUse", "enum", "", "",0 + P: "Texture alpha", "Number", "", "A",1 + P: "CurrentMappingType", "enum", "", "",0 + P: "WrapModeU", "enum", "", "",0 + P: "WrapModeV", "enum", "", "",0 + P: "UVSwap", "bool", "", "",0 + P: "PremultiplyAlpha", "bool", "", "",1 + P: "Translation", "Vector", "", "A",0,0,0 + P: "Rotation", "Vector", "", "A",0,0,0 + P: "Scaling", "Vector", "", "A",1,1,1 + P: "TextureRotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "TextureScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "CurrentTextureBlendMode", "enum", "", "",1 + P: "UVSet", "KString", "", "", "default" + P: "UseMaterial", "bool", "", "",0 + P: "UseMipMap", "bool", "", "",0 + } + } + } + ObjectType: "Model" { + Count: 3 + PropertyTemplate: "FbxNode" { + Properties70: { + P: "QuaternionInterpolate", "enum", "", "",0 + P: "RotationOffset", "Vector3D", "Vector", "",0,0,0 + P: "RotationPivot", "Vector3D", "Vector", "",0,0,0 + P: "ScalingOffset", "Vector3D", "Vector", "",0,0,0 + P: "ScalingPivot", "Vector3D", "Vector", "",0,0,0 + P: "TranslationActive", "bool", "", "",0 + P: "TranslationMin", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMax", "Vector3D", "Vector", "",0,0,0 + P: "TranslationMinX", "bool", "", "",0 + P: "TranslationMinY", "bool", "", "",0 + P: "TranslationMinZ", "bool", "", "",0 + P: "TranslationMaxX", "bool", "", "",0 + P: "TranslationMaxY", "bool", "", "",0 + P: "TranslationMaxZ", "bool", "", "",0 + P: "RotationOrder", "enum", "", "",0 + P: "RotationSpaceForLimitOnly", "bool", "", "",0 + P: "RotationStiffnessX", "double", "Number", "",0 + P: "RotationStiffnessY", "double", "Number", "",0 + P: "RotationStiffnessZ", "double", "Number", "",0 + P: "AxisLen", "double", "Number", "",10 + P: "PreRotation", "Vector3D", "Vector", "",0,0,0 + P: "PostRotation", "Vector3D", "Vector", "",0,0,0 + P: "RotationActive", "bool", "", "",0 + P: "RotationMin", "Vector3D", "Vector", "",0,0,0 + P: "RotationMax", "Vector3D", "Vector", "",0,0,0 + P: "RotationMinX", "bool", "", "",0 + P: "RotationMinY", "bool", "", "",0 + P: "RotationMinZ", "bool", "", "",0 + P: "RotationMaxX", "bool", "", "",0 + P: "RotationMaxY", "bool", "", "",0 + P: "RotationMaxZ", "bool", "", "",0 + P: "InheritType", "enum", "", "",0 + P: "ScalingActive", "bool", "", "",0 + P: "ScalingMin", "Vector3D", "Vector", "",0,0,0 + P: "ScalingMax", "Vector3D", "Vector", "",1,1,1 + P: "ScalingMinX", "bool", "", "",0 + P: "ScalingMinY", "bool", "", "",0 + P: "ScalingMinZ", "bool", "", "",0 + P: "ScalingMaxX", "bool", "", "",0 + P: "ScalingMaxY", "bool", "", "",0 + P: "ScalingMaxZ", "bool", "", "",0 + P: "GeometricTranslation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricRotation", "Vector3D", "Vector", "",0,0,0 + P: "GeometricScaling", "Vector3D", "Vector", "",1,1,1 + P: "MinDampRangeX", "double", "Number", "",0 + P: "MinDampRangeY", "double", "Number", "",0 + P: "MinDampRangeZ", "double", "Number", "",0 + P: "MaxDampRangeX", "double", "Number", "",0 + P: "MaxDampRangeY", "double", "Number", "",0 + P: "MaxDampRangeZ", "double", "Number", "",0 + P: "MinDampStrengthX", "double", "Number", "",0 + P: "MinDampStrengthY", "double", "Number", "",0 + P: "MinDampStrengthZ", "double", "Number", "",0 + P: "MaxDampStrengthX", "double", "Number", "",0 + P: "MaxDampStrengthY", "double", "Number", "",0 + P: "MaxDampStrengthZ", "double", "Number", "",0 + P: "PreferedAngleX", "double", "Number", "",0 + P: "PreferedAngleY", "double", "Number", "",0 + P: "PreferedAngleZ", "double", "Number", "",0 + P: "LookAtProperty", "object", "", "" + P: "UpVectorProperty", "object", "", "" + P: "Show", "bool", "", "",1 + P: "NegativePercentShapeSupport", "bool", "", "",1 + P: "DefaultAttributeIndex", "int", "Integer", "",-1 + P: "Freeze", "bool", "", "",0 + P: "LODBox", "bool", "", "",0 + P: "Lcl Translation", "Lcl Translation", "", "A",0,0,0 + P: "Lcl Rotation", "Lcl Rotation", "", "A",0,0,0 + P: "Lcl Scaling", "Lcl Scaling", "", "A",1,1,1 + P: "Visibility", "Visibility", "", "A",1 + P: "Visibility Inheritance", "Visibility Inheritance", "", "",1 + } + } + } + ObjectType: "Deformer" { + Count: 53 + } + ObjectType: "Video" { + Count: 2 + PropertyTemplate: "FbxVideo" { + Properties70: { + P: "Path", "KString", "XRefUrl", "", "" + P: "RelPath", "KString", "XRefUrl", "", "" + P: "Color", "ColorRGB", "Color", "",0.8,0.8,0.8 + P: "ClipIn", "KTime", "Time", "",0 + P: "ClipOut", "KTime", "Time", "",0 + P: "Offset", "KTime", "Time", "",0 + P: "PlaySpeed", "double", "Number", "",0 + P: "FreeRunning", "bool", "", "",0 + P: "Loop", "bool", "", "",0 + P: "Mute", "bool", "", "",0 + P: "AccessMode", "enum", "", "",0 + P: "ImageSequence", "bool", "", "",0 + P: "ImageSequenceOffset", "int", "Integer", "",0 + P: "FrameRate", "double", "Number", "",0 + P: "LastFrame", "int", "Integer", "",0 + P: "Width", "int", "Integer", "",0 + P: "Height", "int", "Integer", "",0 + P: "StartFrame", "int", "Integer", "",0 + P: "StopFrame", "int", "Integer", "",0 + P: "InterlaceMode", "enum", "", "",0 + } + } + } +} + +; Object properties +;------------------------------------------------------------------ + +Objects: { + Geometry: 2807092188944, "Geometry::", "Mesh" { + Vertices: *26400 { + a: -2.20561385154724,-7.55881834030151,3.85040068626404,1.11758708953857e-08,-7.393798828125,2.58472013473511,2.20560598373413,-7.55881834030151,3.85040068626404,1.47968745231628,-7.44051265716553,4.68008899688721,0.00168840959668159,-7.73218679428101,6.14038419723511,-1.47959971427917,-7.44051265716553,4.68008899688721,-1.84245872497559,-7.28768444061279,3.78343915939331,1.11758708953857e-08,-6.99806213378906,2.65426874160767,1.84254705905914,-7.28768444061279,3.78343915939331,0.97236156463623,-7.09157943725586,4.75699758529663,1.11758708953857e-08,-7.37500238418579,6.05133152008057,-0.972170412540436,-7.09157943725586,4.75719547271729,-1.69072318077087,-6.53853034973145,3.82911109924316,1.11758708953857e-08,-5.49669694900513,3.19840335845947,1.69081854820251,-6.53853034973145,3.82911109924316,1.11758708953857e-08,-7.25841522216797,6.15898752212524,-2.20193386077881,-6.2309455871582,4.42866897583008,1.11758708953857e-08,-5.09460544586182,4.39045810699463,2.2020218372345,-6.2309455871582,4.42866897583008,8.04662704467773e-07,-7.19568300247192,6.45229959487915,-2.56345129013062,-6.40943765640259,5.7252893447876,8.06525349617004e-07,-5.44608068466187,5.78538513183594,2.56353855133057,-6.40943670272827,5.7252893447876,-1.9613653421402e-06,-7.13139009475708,7.08588409423828,-2.1652569770813,-6.73461484909058,7.01464605331421,-1.96322798728943e-06,-6.04623556137085,7.05802536010742,2.16534996032715,-6.73461484909058,7.01464605331421,1.30385160446167e-08,-7.20962953567505,8.31943321228027,-1.74206614494324,-6.85715103149414,8.32787036895752,1.86264514923096e-08,-6.20600748062134,8.36826419830322,1.74215364456177,-6.85715103149414,8.32787036895752,9.59131866693497e-05,-7.08725166320801,9.02095317840576,-1.62396132946014,-6.70060634613037,8.97737503051758,2.60770320892334e-08,-6.24098062515259,9.0377721786499,1.62405669689178,-6.70060634613037,8.97737503051758,2.23517417907715e-08,-6.76416397094727,9.61794853210449,-1.37005531787872,-6.56096315383911,9.25986766815186,7.45058059692383e-09,-6.49117183685303,9.55245876312256, +1.37004768848419,-6.56096315383911,9.25986766815186,-1.44457459449768,-7.58153533935547,5.14104890823364,-0.9002406001091,-7.3217248916626,5.17448139190674,1.45441734790802,-7.58011674880981,5.12831449508667,0.903211355209351,-7.32120132446289,5.17060279846191,0.000294709578156471,-7.5031795501709,6.07989025115967,0.853564560413361,-7.6777868270874,5.74707794189453,-1.58396697044373,-7.38469314575195,4.46597146987915,-2.07119846343994,-7.4956841468811,3.82432270050049,-1.67361581325531,-7.19581317901611,3.40515518188477,-1.99587833881378,-7.51313829421997,3.45729374885559,-1.87937188148499,-7.44897079467773,3.43072605133057,-1.28717541694641,-7.05426740646362,2.89086866378784,-1.52665853500366,-7.43935537338257,2.92171239852905,-1.44457459449768,-7.37365865707397,2.8933527469635,-0.356297165155411,-7.0008864402771,2.66660475730896,1.11758708953857e-08,-7.33208322525024,2.58680605888367,-0.398880302906036,-7.39663648605347,2.60541772842407,-0.385843485593796,-7.33465957641602,2.60481357574463,0.356385409832001,-7.0008864402771,2.66660475730896,0.398968517780304,-7.39663648605347,2.60541772842407,0.385938733816147,-7.33465957641602,2.60481357574463,0.931968808174133,-7.01935911178589,2.75415992736816,1.06967282295227,-7.41471004486084,2.74251675605774,1.02439820766449,-7.35030841827393,2.72650170326233,1.67370414733887,-7.19581317901611,3.40515518188477,2.07119059562683,-7.4956841468811,3.82432270050049,1.99597156047821,-7.51313829421997,3.45729374885559,1.87945938110352,-7.44897079467773,3.43072605133057,1.84851944446564,-7.32399702072144,4.03646373748779,1.19264400005341,-7.45248460769653,5.04235172271729,0.536871254444122,-7.42240190505981,5.65583610534668,0.00118720903992653,-7.54047012329102,6.09481477737427,0.6977578997612,-7.47456359863281,5.68389320373535,-1.18589019775391,-7.45350360870361,5.0510082244873,-1.24618482589722,-7.28002548217773,4.6158127784729,-1.28230130672455,-6.95214891433716,4.41662740707397,-1.36965775489807,-7.21366739273071,4.41115522384644,-1.69401180744171,-6.91580724716187,3.76453351974487, +-1.54417049884796,-6.17129611968994,3.58296155929565,-1.52227795124054,-6.69316339492798,3.43530464172363,-1.18429696559906,-5.62808990478516,3.26835012435913,-1.14380133152008,-6.35888004302979,2.99662971496582,-0.323063969612122,-5.49245309829712,3.20029830932617,1.11758708953857e-08,-6.24264049530029,2.84798264503479,-0.319679498672485,-6.24762725830078,2.85395646095276,0.323159217834473,-5.49245309829712,3.20029830932617,0.319774717092514,-6.24762725830078,2.85395646095276,0.855458796024323,-5.51811790466309,3.21482467651367,0.834960639476776,-6.28420209884644,2.90121388435364,1.54416286945343,-6.17129611968994,3.58296155929565,1.69409930706024,-6.91580724716187,3.76453351974487,1.52237331867218,-6.69316339492798,3.43530464172363,1.6507203578949,-6.70535469055176,4.0238151550293,1.67897582054138,-7.01102495193481,3.99526405334473,0.65099436044693,-7.23099279403687,5.74190139770508,1.11758708953857e-08,-7.34452486038208,6.08436584472656,0.496972024440765,-7.28906583786011,5.58678865432739,0.573584914207458,-7.2930850982666,5.62748336791992,-0.651002109050751,-7.23099279403687,5.74190139770508,-0.496884495019913,-7.3153657913208,5.58678865432739,-0.573496699333191,-7.3075385093689,5.62748336791992,-1.59690010547638,-6.81990766525269,4.75739574432373,-1.40438055992126,-6.9168062210083,4.51631927490234,-1.89737868309021,-6.31397104263306,4.03864431381226,-2.25237727165222,-5.75051593780518,4.4042911529541,-1.85787761211395,-5.86022520065308,3.91029715538025,-2.02602958679199,-5.05770492553711,4.40179824829102,-1.57918798923492,-5.20232200622559,3.76344752311707,-0.526733219623566,-5.01966571807861,4.39592885971069,1.11758708953857e-08,-5.19142580032349,3.73607873916626,-0.413303762674332,-5.15330791473389,3.73886561393738,0.526724815368652,-5.01966571807861,4.39592885971069,0.413399010896683,-5.15330791473389,3.73886561393738,1.42237913608551,-4.90157604217529,4.40229988098145,1.11483681201935,-5.09427881240845,3.74234175682068,2.25246548652649,-5.75051593780518,4.4042911529541,1.89746618270874,-6.31397104263306,4.03864431381226, +1.85797297954559,-5.86022520065308,3.91029715538025,2.06780624389648,-6.49439334869385,4.50477981567383,1.81100928783417,-6.54084444046021,4.17634010314941,0.634754657745361,-7.25804138183594,6.21998596191406,1.11758708953857e-08,-7.23713541030884,6.2774829864502,0.673181593418121,-7.19702625274658,5.94009971618652,-0.634660303592682,-7.25804138183594,6.21998596191406,-0.67308646440506,-7.19702625274658,5.94009971618652,-1.68497049808502,-7.04350662231445,5.74041223526001,-1.72107303142548,-6.88279008865356,5.18751001358032,-2.49236273765564,-6.27856779098511,5.03469085693359,-2.5368754863739,-6.03180265426636,5.74866342544556,-2.51643776893616,-5.83238506317139,5.05190086364746,-2.17221999168396,-5.44589185714722,5.80348682403564,-2.22282409667969,-5.17011499404907,5.10324335098267,-0.599396169185638,-5.35535335540771,5.79204988479614,1.11758708953857e-08,-5.21460676193237,5.09100389480591,-0.599459707736969,-5.12091732025146,5.09786796569824,0.599491238594055,-5.35535335540771,5.79204988479614,0.599554896354675,-5.12091732025146,5.09786796569824,1.56813263893127,-5.23162984848022,5.81542491912842,1.58694541454315,-4.97921657562256,5.1134934425354,2.53696942329407,-6.03180265426636,5.74866342544556,2.49245023727417,-6.27856922149658,5.03469085693359,2.51642918586731,-5.83238506317139,5.05190086364746,2.38370156288147,-6.64376354217529,5.72070932388306,2.32898235321045,-6.54328346252441,5.06125783920288,0.521597564220428,-7.13768863677979,7.06160926818848,7.45058059692383e-09,-7.16142129898071,6.69556427001953,0.577662348747253,-7.20352935791016,6.57975387573242,-0.521502375602722,-7.13768863677979,7.06160926818848,-0.577574908733368,-7.20353078842163,6.57975387573242,-1.33156526088715,-7.01338195800781,7.01076078414917,-1.52168095111847,-7.02463388442993,6.35021686553955,-2.40012431144714,-6.5769100189209,6.36871767044067,-2.19198846817017,-6.48812532424927,7.03165674209595,-2.38888716697693,-6.2747106552124,6.39011573791504,-1.88767445087433,-6.0833797454834,7.07045936584473,-2.03816485404968,-5.7905478477478,6.43836975097656, +-0.466896057128906,-6.00877952575684,7.06070995330811,1.11758708953857e-08,-5.76417684555054,6.42135143280029,-0.53867095708847,-5.70105600357056,6.42603397369385,0.466884106397629,-6.00877857208252,7.06070995330811,0.538766145706177,-5.70105600357056,6.42603397369385,1.29435610771179,-5.9516339302063,7.07633543014526,1.44148409366608,-5.61338472366333,6.44762468338013,2.19208335876465,-6.48812532424927,7.03165721893311,2.40021944046021,-6.5769100189209,6.36871814727783,2.38897466659546,-6.27470970153809,6.39011573791504,1.94195330142975,-6.85132026672363,7.008873462677,2.19764924049377,-6.75193119049072,6.35787868499756,0.421458095312119,-7.17161130905151,8.32438945770264,1.54599547386169e-07,-7.18281507492065,7.7015585899353,0.466556072235107,-7.16426038742065,7.70742654800415,-0.42136287689209,-7.17161130905151,8.32438945770264,-0.46646437048912,-7.16426038742065,7.70742702484131,-1.04808330535889,-7.07631254196167,8.33266925811768,-1.16863262653351,-7.05757474899292,7.71608352661133,-1.93437969684601,-6.83662509918213,7.71270751953125,-1.76872980594635,-6.62286710739136,8.34369564056396,-1.97344052791595,-6.598717212677,7.72880935668945,-1.51879835128784,-6.2346658706665,8.37316417694092,-1.70764362812042,-6.20324277877808,7.76234436035156,-0.378779828548431,-6.15517473220825,8.37195110321045,1.564621925354e-07,-6.16943311691284,7.75429582595825,-0.418336749076843,-6.12887716293335,7.75727415084839,0.378772228956223,-6.15517473220825,8.37195110321045,0.41842845082283,-6.12887716293335,7.75727415084839,1.04350340366364,-6.09586668014526,8.37963199615479,1.16511857509613,-6.07379770278931,7.76822328567505,1.76882433891296,-6.62286710739136,8.34369564056396,1.93447840213776,-6.83662509918213,7.71270751953125,1.97343301773071,-6.598717212677,7.72880935668945,1.54127979278564,-6.93885707855225,8.32590007781982,1.71464705467224,-6.92810916900635,7.7096266746521,0.393297791481018,-7.03700351715088,9.02017688751221,9.5907598733902e-05,-7.12616014480591,8.71630191802979,0.409218043088913,-7.09575176239014,8.71958446502686, +-0.393210381269455,-7.03700351715088,9.02017688751221,-0.409026771783829,-7.09575176239014,8.71958446502686,-0.985701501369476,-6.92965698242188,9.01062870025635,-1.01585257053375,-7.00846099853516,8.72686672210693,-1.68028199672699,-6.76897573471069,8.72525310516357,-1.58536005020142,-6.52975177764893,8.98324489593506,-1.67490613460541,-6.57590389251709,8.73828983306885,-1.27165353298187,-6.26526165008545,9.01498699188232,-1.39621770381927,-6.26227188110352,8.76159000396729,-0.309636563062668,-6.19683980941772,9.03926277160645,0,-6.22807645797729,8.75779438018799,-0.346151351928711,-6.18072891235352,8.7612943649292,0.309724122285843,-6.19683980941772,9.03926277160645,0.346238911151886,-6.18072891235352,8.7612943649292,0.859632849693298,-6.15256404876709,9.0378885269165,0.955446779727936,-6.13408708572388,8.76726055145264,1.58545589447021,-6.52975177764893,8.98324489593506,1.68036961555481,-6.76897573471069,8.72525310516357,1.67489850521088,-6.57590389251709,8.73828983306885,1.45610642433167,-6.77181625366211,8.98635387420654,1.49471497535706,-6.83583641052246,8.7235860824585,0.306737929582596,-6.74567651748657,9.60250282287598,9.59187746047974e-05,-7.02291202545166,9.36224460601807,0.353700906038284,-6.96546745300293,9.35316753387451,-0.306650370359421,-6.74567651748657,9.60250282287598,-0.353510230779648,-6.96546745300293,9.35316753387451,-0.8187535405159,-6.65372276306152,9.5063943862915,-0.911876022815704,-6.85465049743652,9.29568195343018,-1.51511836051941,-6.62728452682495,9.1566858291626,-1.3077700138092,-6.4772367477417,9.27417469024658,-1.4623818397522,-6.48657464981079,9.1497049331665,-1.06280851364136,-6.37585878372192,9.35506343841553,-1.13644230365753,-6.28286790847778,9.22085952758789,-0.253220081329346,-6.47053575515747,9.54410266876221,1.49011611938477e-08,-6.29512596130371,9.32282543182373,-0.272723466157913,-6.26105451583862,9.32003879547119,0.253308296203613,-6.47053194046021,9.54410266876221,0.272811710834503,-6.26105356216431,9.32004070281982,0.694270491600037,-6.40034770965576,9.49288272857666, +0.754867374897003,-6.21334457397461,9.2980489730835,1.30776238441467,-6.47723531723022,9.27417373657227,1.51520609855652,-6.62728452682495,9.15668678283691,1.46247708797455,-6.48657464981079,9.14970684051514,1.24786555767059,-6.59028768539429,9.33976078033447,1.36636054515839,-6.69525003433228,9.19785594940186,0,-6.62430667877197,9.66608905792236,-0.268837779760361,-6.60856199264526,9.65225410461426,-0.694182276725769,-6.40034770965576,9.49288272857666,-0.730793058872223,-6.53739023208618,9.56720447540283,0.268932998180389,-6.60855960845947,9.65225410461426,1.06290423870087,-6.37585878372192,9.35506343841553,1.1233971118927,-6.48240661621094,9.39338970184326,1.52675318717957,-7.43935537338257,2.92171239852905,1.28736650943756,-7.05426740646362,2.89086866378784,1.44456624984741,-7.37365865707397,2.8933527469635,1.582963347435,-7.38481760025024,4.46746826171875,1.18438529968262,-5.62808990478516,3.26835012435913,1.14379298686981,-6.35888004302979,2.99662971496582,2.02611494064331,-5.05770492553711,4.40179824829102,1.5791882276535,-5.20232200622559,3.76344752311707,2.17231440544128,-5.44589185714722,5.80348682403564,2.22281551361084,-5.17011499404907,5.10324287414551,1.88776242733002,-6.0833797454834,7.07045936584473,2.038250207901,-5.7905478477478,6.43836975097656,1.51889288425446,-6.2346658706665,8.37316513061523,1.70774281024933,-6.20324277877808,7.76234436035156,1.27174186706543,-6.26526165008545,9.01498889923096,1.39620971679688,-6.26227188110352,8.76158905029297,1.13652980327606,-6.28286790847778,9.22086048126221,0.818841814994812,-6.65372276306152,9.5063943862915,0.730983376502991,-6.53738880157471,9.56720352172852,0.985796689987183,-6.92965698242188,9.01062870025635,0.911971151828766,-6.85465049743652,9.29568195343018,1.04817938804626,-7.07631254196167,8.33266925811768,1.01594078540802,-7.00846099853516,8.72686672210693,1.33166062831879,-7.01338195800781,7.01076078414917,1.16872358322144,-7.05757474899292,7.71608400344849,1.68505799770355,-7.04350662231445,5.74041223526001,1.52177619934082,-7.02463531494141,6.35021686553955, +1.59699547290802,-6.81990766525269,4.75739574432373,1.72116076946259,-6.88279008865356,5.18751049041748,1.28238952159882,-6.95214891433716,4.41662740707397,1.404372215271,-6.9168062210083,4.51631927490234,1.2474672794342,-7.27987432479858,4.61432313919067,1.3696494102478,-7.21366739273071,4.41115522384644,-1.848424077034,-7.32399702072144,4.03646373748779,-1.06948161125183,-7.41471004486084,2.74251675605774,-0.931777715682983,-7.01935911178589,2.75415992736816,-1.02440583705902,-7.35030841827393,2.72650170326233,-1.65063214302063,-6.70535469055176,4.0238151550293,-1.67888832092285,-7.01102495193481,3.99526405334473,-2.06771111488342,-6.49439334869385,4.50477981567383,-1.81091451644897,-6.54084444046021,4.17634010314941,-2.38361358642578,-6.64376354217529,5.72070932388306,-2.32899022102356,-6.54328346252441,5.06125783920288,-1.94186580181122,-6.85131883621216,7.008873462677,-2.19755387306213,-6.75193119049072,6.35787868499756,-1.5412871837616,-6.93885707855225,8.32589912414551,-1.7145482301712,-6.92810916900635,7.70962762832642,-1.4561140537262,-6.77181911468506,8.98635387420654,-1.49461960792542,-6.83583641052246,8.72358512878418,-1.24777030944824,-6.59028768539429,9.33976078033447,-1.36627316474915,-6.69525003433228,9.19785594940186,-1.12330186367035,-6.48240661621094,9.39338970184326,-0.859544932842255,-6.15256404876709,9.0378885269165,-0.754772245883942,-6.21334457397461,9.29805088043213,-1.04340803623199,-6.09586668014526,8.37963199615479,-0.955358564853668,-6.13408708572388,8.76726055145264,-1.29436814785004,-5.9516339302063,7.07633590698242,-1.16501939296722,-6.07379770278931,7.76822280883789,-1.56803739070892,-5.23162984848022,5.81542491912842,-1.44138872623444,-5.61338424682617,6.44762468338013,-1.42229068279266,-4.90157604217529,4.40229988098145,-1.58695316314697,-4.97921657562256,5.1134934425354,-0.855364322662354,-5.51811790466309,3.21482467651367,-1.11474847793579,-5.09427881240845,3.74234175682068,-0.834968388080597,-6.28420209884644,2.90121388435364,-0.846810936927795,-7.67880582809448,5.75583028793335, +-0.53558886051178,-7.43568325042725,5.65733289718628,-0.69318687915802,-7.47556591033936,5.68966674804688,-5.06172609329224,0.722357153892517,8.31211757659912,-4.96826219558716,0.804025232791901,8.43973159790039,-4.89786577224731,0.905931532382965,8.54976654052734,-4.73986864089966,1.11957097053528,8.76476669311523,-4.53224754333496,1.26109647750854,8.94384860992432,-4.3298397064209,1.33957314491272,9.07678604125977,-4.05036020278931,1.41884458065033,9.19754981994629,-3.66671991348267,1.48115682601929,9.24205684661865,-3.23053550720215,1.44888138771057,9.26728057861328,-2.77981758117676,1.31160473823547,9.2496395111084,-2.40774464607239,1.09070861339569,9.21471786499023,-2.13073706626892,0.846117198467255,9.07898616790771,-1.99557781219482,0.579079151153564,8.9521427154541,-1.94327652454376,0.477810263633728,8.93542671203613,-1.90612649917603,0.391817569732666,9.17814159393311,-1.98969197273254,0.482903599739075,9.22632217407227,-2.14296674728394,0.637337803840637,9.37906646728516,-2.33448767662048,0.832436859607697,9.54290580749512,-2.66567206382751,0.98560243844986,9.63003444671631,-3.13725090026855,1.09777176380157,9.66600036621094,-3.77553033828735,1.14031517505646,9.64246463775635,-4.25683403015137,1.10933041572571,9.55359935760498,-4.59434366226196,1.03170120716095,9.40384292602539,-4.78511381149292,0.931740522384644,9.21455097198486,-5.04669570922852,0.812938332557678,8.95227909088135,-5.35321998596191,0.617966175079346,8.62938976287842,-5.41665029525757,0.520399570465088,8.45675945281982,-5.49520778656006,0.46476823091507,8.2722864151001,-5.20562791824341,0.597253680229187,8.26625823974609,-5.11323118209839,0.688520193099976,8.42013263702393,-5.00379705429077,0.789329767227173,8.56112003326416,-4.81226778030396,0.972737848758698,8.7938756942749,-4.59765672683716,1.12432932853699,9.0106086730957,-4.41829538345337,1.19514989852905,9.14549446105957,-4.13964796066284,1.26467823982239,9.30924415588379,-3.7371654510498,1.29511249065399,9.40971755981445,-3.21502137184143,1.24594366550446,9.43244743347168,-2.74473810195923,1.11841833591461,9.39710712432861, +-2.40301418304443,0.958635985851288,9.3621244430542,-2.13812756538391,0.756233513355255,9.21322536468506,-2.00341773033142,0.539337038993835,9.08273601531982,-1.923699259758,0.428004831075668,9.04653644561768,-2.04610705375671,0.371692478656769,8.91295719146729,-2.28353071212769,0.253348618745804,8.96965408325195,-2.59925508499146,0.158466219902039,9.10888671875,-2.96751236915588,0.0826774463057518,9.18136787414551,-3.42717480659485,0.00887179374694824,9.2322301864624,-3.99084162712097,0.0388907566666603,9.16523838043213,-4.35178995132446,0.159775257110596,8.95899772644043,-4.56429100036621,0.275825560092926,8.82272434234619,-4.75296974182129,0.408831179141998,8.59839725494385,-4.89068698883057,0.534761786460876,8.44810199737549,-4.99963998794556,0.625198006629944,8.34968090057373,-1.90603375434875,0.342506468296051,9.07817840576172,-2.03210258483887,0.215170934796333,9.06676197052002,-2.24897527694702,0.0789206773042679,9.09784507751465,-2.56849503517151,-0.18522921204567,9.18730354309082,-3.008380651474,-0.312937557697296,9.29741382598877,-3.4803295135498,-0.396937787532806,9.38370418548584,-4.10679531097412,-0.369373470544815,9.33031940460205,-4.54069805145264,-0.37511357665062,9.15563201904297,-4.81606245040894,-0.300997883081436,8.96822547912598,-5.07882785797119,-0.177335992455482,8.76202487945557,-5.24557733535767,-0.0243304893374443,8.56571769714355,-5.29145193099976,0.170305103063583,8.43000316619873,-5.25835466384888,0.440353214740753,8.30957221984863,-5.14703464508057,0.618767261505127,8.34332656860352,-5.13432788848877,0.423882484436035,8.42490100860596,-5.0578236579895,0.250360012054443,8.54831027984619,-4.92229795455933,0.0739419758319855,8.7350435256958,-4.69483327865601,-0.0538720116019249,8.92243099212646,-4.44266986846924,-0.118233919143677,9.09331512451172,-4.04397249221802,-0.170167922973633,9.27809143066406,-3.45109820365906,-0.18191459774971,9.33170986175537,-2.97970366477966,-0.0973856896162033,9.25637912750244,-2.58160448074341,0.0237287506461143,9.1746129989624,-2.30238699913025,0.112591817975044,9.09860706329346, +-2.06660008430481,0.302818417549133,9.03805732727051,-1.95992636680603,0.40014836192131,9.04069328308105,5.06172609329224,0.722357153892517,8.31211757659912,4.96825695037842,0.804140210151672,8.43973159790039,4.89786958694458,0.899877607822418,8.54976654052734,4.73985481262207,1.08055102825165,8.76476669311523,4.53223371505737,1.22235512733459,8.94384860992432,4.32982730865479,1.32917857170105,9.08128929138184,4.05035209655762,1.41976273059845,9.20368957519531,3.6667218208313,1.48284244537354,9.24890232086182,3.23057770729065,1.45032286643982,9.27368450164795,2.7798764705658,1.31169068813324,9.25911140441895,2.4075231552124,1.09109342098236,9.22318649291992,2.13080024719238,0.846735417842865,9.08304214477539,1.99557626247406,0.579129099845886,8.9521427154541,1.94327366352081,0.477955341339111,8.93542671203613,1.90612649917603,0.391817569732666,9.17814159393311,1.98969197273254,0.482903599739075,9.22632217407227,2.14319276809692,0.636784553527832,9.37884330749512,2.33383965492249,0.830574452877045,9.55071449279785,2.66558980941772,0.984100222587585,9.63788318634033,3.13734412193298,1.09652185440063,9.66750240325928,3.77553033828735,1.14030373096466,9.64246463775635,4.25682353973389,1.11025595664978,9.55361938476563,4.59434366226196,1.03170120716095,9.40384292602539,4.78511381149292,0.931993722915649,9.21455097198486,5.0466890335083,0.813059747219086,8.95227909088135,5.35321998596191,0.617962598800659,8.62938976287842,5.41665029525757,0.520399570465088,8.45675945281982,5.49520778656006,0.46476823091507,8.2722864151001,5.20562791824341,0.597253680229187,8.26625823974609,5.11323118209839,0.688520014286041,8.42013263702393,5.00378036499023,0.789687156677246,8.56112098693848,4.81218576431274,0.955044686794281,8.79388236999512,4.59757471084595,1.11053204536438,9.01061534881592,4.41855144500732,1.19330763816833,9.14898490905762,4.14055585861206,1.26521980762482,9.31982517242432,3.73798513412476,1.29685819149017,9.41917610168457,3.21511363983154,1.2468409538269,9.43974685668945,2.74470353126526,1.11734592914581,9.40608215332031, +2.40258526802063,0.959394812583923,9.37080383300781,2.13817691802979,0.757858157157898,9.21584892272949,2.00341868400574,0.539567112922668,9.08273601531982,1.923699259758,0.428004831075668,9.04653644561768,2.04632449150085,0.387154877185822,8.91485786437988,2.28353071212769,0.310706108808517,8.96965408325195,2.5992534160614,0.215924814343452,9.10888767242432,2.96751356124878,0.0846380293369293,9.18136787414551,3.42717671394348,0.0103797540068626,9.2322301864624,3.99084138870239,0.0400375314056873,9.16523838043213,4.35178995132446,0.159775257110596,8.95899772644043,4.56429100036621,0.275825560092926,8.82272434234619,4.75297212600708,0.408792048692703,8.59839725494385,4.89068698883057,0.534761786460876,8.44810199737549,4.99963998794556,0.625198006629944,8.34968090057373,1.90609359741211,0.342501819133759,9.07816219329834,2.03213763237,0.229229018092155,9.06676197052002,2.24897432327271,0.10893788933754,9.09784507751465,2.56820821762085,-0.175361678004265,9.18730354309082,3.00838160514832,-0.312540471553802,9.29741477966309,3.48032808303833,-0.396675825119019,9.38370418548584,4.1067967414856,-0.369186550378799,9.33031940460205,4.54069805145264,-0.37511345744133,9.15563201904297,4.81606245040894,-0.300997853279114,8.96822547912598,5.07882785797119,-0.177335992455482,8.76202487945557,5.24557733535767,-0.0243304893374443,8.56571769714355,5.2914514541626,0.170305147767067,8.43000316619873,5.25835466384888,0.440353214740753,8.30957221984863,5.14703989028931,0.618678331375122,8.34332656860352,5.13432741165161,0.423882603645325,8.42490005493164,5.0578236579895,0.250356703996658,8.54831027984619,4.92229795455933,0.0739419907331467,8.7350435256958,4.69483327865601,-0.0538720116019249,8.92243099212646,4.44266986846924,-0.118233889341354,9.09331512451172,4.04397392272949,-0.169432491064072,9.27809143066406,3.45109820365906,-0.181085854768753,9.33170986175537,2.97970366477966,-0.0964831635355949,9.25637912750244,2.58158278465271,0.0677021592855453,9.1746129989624,2.30238604545593,0.147187918424606,9.09860706329346,2.06650638580322,0.323853433132172,9.03805732727051, +1.9599461555481,0.402394145727158,9.04069328308105,-5.06172609329224,0.722357153892517,8.31211757659912,-4.96826219558716,0.804025232791901,8.43973159790039,-4.89786577224731,0.905931532382965,8.54976654052734,-4.73986864089966,1.11957097053528,8.76476669311523,-4.53224754333496,1.26109647750854,8.94384860992432,-4.3298397064209,1.33957314491272,9.07678604125977,-4.05036020278931,1.41884458065033,9.19754981994629,-3.66671991348267,1.48115682601929,9.24205684661865,-3.23053550720215,1.44888138771057,9.26728057861328,-2.77981758117676,1.31160473823547,9.2496395111084,-2.40774464607239,1.09070861339569,9.21471786499023,-2.13073706626892,0.846117198467255,9.07898616790771,-1.99557781219482,0.579079151153564,8.9521427154541,-1.94327652454376,0.477810263633728,8.93542671203613,-1.92050635814667,0.376390367746353,9.17739105224609,-2.01061511039734,0.392349869012833,9.29914665222168,-2.10722851753235,0.464855909347534,9.41654491424561,-2.26173424720764,0.577823758125305,9.52799987792969,-2.67719602584839,0.78004789352417,9.63627243041992,-3.19458436965942,0.895462393760681,9.73175048828125,-3.86719489097595,0.878580987453461,9.69486808776855,-4.32197999954224,0.870754241943359,9.52414131164551,-4.62521839141846,0.795515060424805,9.40437412261963,-4.92273664474487,0.675275266170502,9.17812156677246,-5.21259593963623,0.538311421871185,8.9755163192749,-5.38313770294189,0.454435288906097,8.74977397918701,-5.51882171630859,0.388617902994156,8.6369047164917,-5.72771263122559,0.36525622010231,8.48100471496582,-5.33982944488525,0.49470129609108,8.28265953063965,-5.17641878128052,0.524977505207062,8.42637062072754,-4.9685001373291,0.675430774688721,8.58381843566895,-4.816810131073,0.780909359455109,8.80797100067139,-4.70073556900024,0.922541618347168,9.07110977172852,-4.45248794555664,1.04396545886993,9.19352626800537,-4.22670412063599,1.09337437152863,9.37176513671875,-3.76834082603455,1.11796581745148,9.45351791381836,-3.2240355014801,1.13332092761993,9.4781379699707,-2.7093288898468,0.975722014904022,9.45719814300537,-2.36868047714233,0.788046538829803,9.39644622802734, +-2.15665364265442,0.626390933990479,9.25687408447266,-2.07413053512573,0.560304760932922,9.1012487411499,-1.94362461566925,0.434865087270737,9.05033111572266,-2.04610705375671,0.371692478656769,8.91295719146729,-2.28353071212769,0.253348618745804,8.96965408325195,-2.59925508499146,0.158466219902039,9.10888671875,-2.96751236915588,0.0826774463057518,9.18136787414551,-3.42717480659485,0.00887179374694824,9.2322301864624,-3.99084162712097,0.0388907566666603,9.16523838043213,-4.35178995132446,0.159775257110596,8.95899772644043,-4.56429100036621,0.275825560092926,8.82272434234619,-4.75296974182129,0.408831179141998,8.59839725494385,-4.89068698883057,0.534761786460876,8.44810199737549,-4.99963998794556,0.625198006629944,8.34968090057373,-1.819544672966,0.332746386528015,9.12087249755859,-1.95276367664337,0.208789318799973,9.111891746521,-2.17895197868347,0.07783043384552,9.14784145355225,-2.51462197303772,-0.154128655791283,9.25709056854248,-2.97713136672974,-0.258224248886108,9.36641788482666,-3.47266983985901,-0.334936112165451,9.46067333221436,-4.13360738754272,-0.311049669981003,9.4065408706665,-4.59399223327637,-0.334189862012863,9.23260974884033,-4.88891649246216,-0.29370054602623,9.04173374176025,-5.17328262329102,-0.203418925404549,8.82977104187012,-5.35396957397461,-0.0898965746164322,8.62385368347168,-5.40528345108032,0.0848260670900345,8.47216510772705,-5.37027978897095,0.29606169462204,8.33026695251465,-5.24378490447998,0.49960070848465,8.34929275512695,-5.23610305786133,0.313517272472382,8.44689750671387,-5.15612459182739,0.167049407958984,8.58322525024414,-5.00866317749023,0.0237278342247009,8.78236389160156,-4.76167154312134,-0.0681835412979126,8.9762077331543,-4.49065446853638,-0.0980744436383247,9.1505184173584,-4.06737947463989,-0.124856069684029,9.33662414550781,-3.44207644462585,-0.133138313889503,9.38938808441162,-2.94531416893005,-0.0453692227602005,9.31126594543457,-2.52663850784302,0.0492033958435059,9.23059463500977,-2.2342426776886,0.113723151385784,9.1454029083252,-1.98812234401703,0.295584678649902,9.07489681243896, +-1.87592244148254,0.393911629915237,9.07821559906006,5.06172609329224,0.722357153892517,8.31211757659912,4.96825695037842,0.804140210151672,8.43973159790039,4.89786958694458,0.899877607822418,8.54976654052734,4.73985481262207,1.08055102825165,8.76476669311523,4.53223371505737,1.22235512733459,8.94384860992432,4.32982730865479,1.32917845249176,9.08128929138184,4.05035209655762,1.41976273059845,9.20368957519531,3.6667218208313,1.48284220695496,9.24890232086182,3.23057770729065,1.45032274723053,9.27368450164795,2.7798764705658,1.31169056892395,9.25911140441895,2.4075231552124,1.09109342098236,9.22318649291992,2.13080024719238,0.846735417842865,9.08304214477539,1.99557626247406,0.579129099845886,8.9521427154541,1.94327366352081,0.477955341339111,8.93542671203613,1.92050635814667,0.376390367746353,9.17739105224609,2.01078128814697,0.398333191871643,9.29914665222168,2.10730814933777,0.465470552444458,9.4165506362915,2.26173424720764,0.57753586769104,9.52799987792969,2.67719602584839,0.778857350349426,9.63627243041992,3.19458436965942,0.893792688846588,9.73175048828125,3.86719489097595,0.878005862236023,9.69486808776855,4.32197999954224,0.870738506317139,9.52414131164551,4.62521839141846,0.795515060424805,9.40437412261963,4.9227442741394,0.675184726715088,9.17811012268066,5.21259593963623,0.538311362266541,8.9755163192749,5.38313770294189,0.454435288906097,8.74977397918701,5.51882171630859,0.388617902994156,8.6369047164917,5.72771263122559,0.36525622010231,8.48100471496582,5.33982944488525,0.49470129609108,8.28265953063965,5.17641878128052,0.524977445602417,8.42637062072754,4.9685001373291,0.675430774688721,8.58381843566895,4.81662702560425,0.783759772777557,8.80798530578613,4.70022916793823,0.928933024406433,9.07191753387451,4.452392578125,1.04906845092773,9.19355201721191,4.22708892822266,1.09573435783386,9.37705516815186,3.76872849464417,1.12004625797272,9.45852565765381,3.22415113449097,1.13495206832886,9.4850492477417,2.70907974243164,0.97569477558136,9.46674346923828,2.36844325065613,0.789215624332428,9.40152740478516, +2.15678763389587,0.628417670726776,9.25686073303223,2.07428455352783,0.567350804805756,9.1012487411499,1.94364142417908,0.44374868273735,9.05034065246582,2.04632449150085,0.387154877185822,8.91485786437988,2.28353071212769,0.310706108808517,8.96965408325195,2.5992534160614,0.215924814343452,9.10888767242432,2.96751356124878,0.0846380293369293,9.18136787414551,3.42717671394348,0.0103797540068626,9.2322301864624,3.99084138870239,0.0400375314056873,9.16523838043213,4.35178995132446,0.159775257110596,8.95899772644043,4.56429100036621,0.275825560092926,8.82272434234619,4.75297212600708,0.408792048692703,8.59839725494385,4.89068698883057,0.534761786460876,8.44810199737549,4.99963998794556,0.625198006629944,8.34968090057373,1.819544672966,0.332746386528015,9.12087249755859,1.95275485515594,0.210244223475456,9.111891746521,2.17894005775452,0.0955295860767365,9.14784145355225,2.51435661315918,-0.146545320749283,9.25709056854248,2.97713136672974,-0.257818102836609,9.36641883850098,3.47266840934753,-0.334818124771118,9.46067333221436,4.13360834121704,-0.310933113098145,9.4065408706665,4.59399223327637,-0.334189802408218,9.23260974884033,4.88891649246216,-0.293700516223907,9.04173374176025,5.17328262329102,-0.203418925404549,8.82977104187012,5.35397291183472,-0.0898966118693352,8.62385368347168,5.40528249740601,0.0848260819911957,8.47216510772705,5.37027978897095,0.29606169462204,8.33026695251465,5.24378490447998,0.49960070848465,8.34929275512695,5.23610305786133,0.31351712346077,8.44689655303955,5.15612459182739,0.167049407958984,8.58322525024414,5.00866317749023,0.0237278379499912,8.78236389160156,4.76167011260986,-0.0681825280189514,8.9762077331543,4.49065446853638,-0.0980744361877441,9.1505184173584,4.06737947463989,-0.124312646687031,9.33662414550781,3.44207644462585,-0.132465377449989,9.38938808441162,2.94531297683716,-0.0445554815232754,9.31126594543457,2.52668404579163,0.0854531675577164,9.23058032989502,2.23426508903503,0.139412105083466,9.1454029083252,1.98817443847656,0.301932156085968,9.07488250732422,1.8759183883667,0.393876701593399,9.07821559906006, +-7.67204910516739e-05,-6.21619272232056,10.7321262359619,1.44100940227509,-6.14445877075195,10.0975389480591,2.16947197914124,-6.01648330688477,8.95395565032959,2.53911781311035,-5.82994270324707,7.25559616088867,2.57891869544983,-5.80733442306519,6.23576736450195,-7.67204910516739e-05,-3.80944204330444,10.3496856689453,1.5278480052948,-3.72579002380371,9.72752857208252,2.22702193260193,-3.57229733467102,8.59624671936035,2.60987615585327,-3.34418630599976,6.92969751358032,2.67021107673645,-3.42640256881714,5.68099164962769,0.816657483577728,-5.35645294189453,10.4493455886841,0.779641449451447,-6.16896963119507,10.4349269866943,1.42906951904297,-5.26600313186646,10.0664348602295,0.891875088214874,-3.77179098129272,10.0637788772583,-7.67204910516739e-05,-5.3017110824585,10.6879634857178,1.83071231842041,-5.27385139465332,9.57354736328125,1.90362322330475,-6.0930233001709,9.57655906677246,2.11710071563721,-5.30726289749146,8.95762252807617,1.93816781044006,-3.65362906455994,9.1970796585083,2.41996502876282,-5.18281126022339,8.20937538146973,2.41996502876282,-5.96190929412842,8.16780376434326,2.45458650588989,-5.11397838592529,7.30203199386597,2.49120092391968,-3.47505044937134,7.87748861312866,2.59236812591553,-4.84982824325562,6.78690433502197,2.69059181213379,-5.82278871536255,6.72381782531738,2.61266660690308,-5.02046489715576,6.23445129394531,2.64060378074646,-3.26274490356445,6.33746004104614,0.598962008953094,-6.21754217147827,10.7229251861572,0.454018890857697,-5.12842035293579,10.6079740524292,1.90481472015381,-6.16266965866089,9.93728923797607,1.64755916595459,-5.12903833389282,9.83918380737305,2.44256997108459,-6.05743980407715,8.66366481781006,2.31155395507813,-5.04810428619385,8.64824485778809,2.68318843841553,-5.85268306732178,7.05120515823364,2.55034375190735,-4.95216464996338,7.11908721923828,1.20954632759094,-6.19574785232544,10.412353515625,1.20787072181702,-5.09789371490479,10.2298641204834,1.15732860565186,-4.92991161346436,10.3026037216187,1.44515061378479,-4.93363952636719,10.113431930542,1.2184591293335,-3.75024509429932,9.90089416503906, +0.82055675983429,-4.96743249893188,10.475640296936,0.441678166389465,-4.95442533493042,10.6348133087158,0.453381597995758,-3.79537487030029,10.2384967803955,-7.67204910516739e-05,-4.97995138168335,10.7610511779785,2.14702677726746,-6.10758829116821,9.31225490570068,1.95289134979248,-5.00903797149658,9.29726600646973,1.97207474708557,-4.82019233703613,9.32335662841797,2.14917922019958,-4.86429834365845,9.00823211669922,2.05214762687683,-3.59468412399292,8.90334224700928,1.84240961074829,-4.9001030921936,9.60667324066162,1.67239570617676,-4.90209484100342,9.87600612640381,1.76647853851318,-3.68992519378662,9.46966075897217,2.54413270950317,-5.96022415161133,7.76582431793213,2.42593502998352,-4.878662109375,7.82701110839844,2.47942066192627,-4.75098323822021,7.95540571212769,2.53084206581116,-4.73315286636353,7.36377668380737,2.54381346702576,-3.42584323883057,7.51118564605713,2.43118453025818,-4.80729675292969,8.32950687408447,2.31680393218994,-4.81523847579956,8.68103122711182,2.37570524215698,-3.52154636383057,8.2230396270752,2.73468661308289,-5.82247352600098,6.39923477172852,2.6083664894104,-4.89594030380249,6.41888046264648,2.61043667793274,-4.65481853485107,6.43297481536865,2.62834620475769,-4.74086904525757,6.19173336029053,2.65477347373962,-3.23592948913574,5.96119499206543,2.59316444396973,-4.6646671295166,6.80287742614746,2.56856608390808,-4.69731330871582,7.14518451690674,2.62619876861572,-3.30985593795776,6.68903684616089,0.248416587710381,-6.22404289245605,10.8135080337524,0.248021185398102,-4.96406364440918,10.7071895599365,0.25152513384819,-3.80308675765991,10.2984771728516,0.246269524097443,-5.17882061004639,10.7031602859497,0.636691927909851,-4.95541286468506,10.5558376312256,0.675849378108978,-3.78370904922485,10.152286529541,0.767625629901886,-6.20383882522583,10.5778188705444,0.665585219860077,-5.18739366531372,10.5270643234253,0.938123106956482,-6.19465923309326,10.4595317840576,0.988505840301514,-4.94667673110962,10.3948917388916,1.05934643745422,-3.7609691619873,9.98197269439697,0.991532027721405,-5.20428323745728,10.3845367431641, +1.31222343444824,-4.93261098861694,10.2090654373169,1.3755841255188,-3.73848485946655,9.81740283966064,1.40327990055084,-6.17923879623413,10.2315492630005,1.38154745101929,-5.1838493347168,10.1332654953003,1.6676173210144,-6.1713695526123,10.1096124649048,1.56318843364716,-4.91711711883545,10.0034885406494,1.66125059127808,-3.7083420753479,9.60178184509277,1.51113605499268,-5.1890721321106,10.0149831771851,1.76639580726624,-4.90188646316528,9.73764705657959,1.85769426822662,-3.67182159423828,9.33412456512451,1.96801626682281,-6.13824892044067,9.70737743377686,1.79210913181305,-5.20931720733643,9.66518115997314,2.07221007347107,-6.11771965026855,9.53572368621826,1.90306305885315,-4.87315368652344,9.47091674804688,1.99627232551575,-3.63068151473999,9.05076503753662,1.86963331699371,-5.15749883651733,9.49563312530518,2.06058883666992,-4.85492086410522,9.16111278533936,2.13381290435791,-3.5903434753418,8.75202560424805,2.19677257537842,-6.08080959320068,9.10251712799072,2.06018805503845,-5.17085218429565,9.08461761474609,2.30971956253052,-6.06748104095459,8.89682769775391,2.23274970054626,-4.83329248428345,8.85091400146484,2.30374979972839,-3.54712581634521,8.41085433959961,2.1921591758728,-5.11476612091064,8.85641193389893,2.38860034942627,-4.80841827392578,8.50043201446533,2.44129538536072,-3.49835062026978,8.05076789855957,2.49470543861389,-6.0253267288208,8.32164859771729,2.43333172798157,-5.08730506896973,8.35621547698975,2.54373669624329,-5.9981803894043,8.05091190338135,2.45800757408142,-4.77966117858887,8.15988826751709,2.52057194709778,-3.45178747177124,7.70257806777954,2.42051959037781,-5.023606300354,8.10939884185791,2.49191498756409,-4.73876810073853,7.64967775344849,2.56251978874207,-3.38536167144775,7.22254991531372,2.57772088050842,-5.90810632705688,7.43864154815674,2.44073557853699,-4.9638819694519,7.49332523345947,-7.67204910516739e-05,-6.20898962020874,10.6545896530151,1.33904564380646,-6.1451997756958,10.0494470596313,2.03797817230225,-6.01517105102539,8.9346752166748,2.28552198410034,-5.82303857803345,7.20906686782837, +2.41200137138367,-5.80802249908447,6.2144603729248,-7.67204910516739e-05,-4.61597585678101,10.1029272079468,-7.67204910516739e-05,-4.25567579269409,9.19778919219971,-7.67204910516739e-05,-4.04321527481079,7.2955379486084,-7.67204910516739e-05,-3.3556272983551,6.35885906219482,0.784897685050964,-5.35388612747192,10.4057569503784,0.751385569572449,-6.16575050354004,10.3837471008301,1.32718873023987,-5.24303007125854,10.0550670623779,-7.67204910516739e-05,-4.78922080993652,10.3865852355957,-7.67204910516739e-05,-5.29943180084229,10.6484079360962,1.64580941200256,-5.27322387695313,9.55965137481689,1.74148464202881,-6.09074783325195,9.5503625869751,1.98855042457581,-5.30668449401855,8.9456958770752,-7.67204910516739e-05,-4.44762134552002,9.79842090606689,2.08995366096497,-5.16920614242554,8.12527942657471,2.18953394889832,-5.95280742645264,8.09652328491211,2.23729228973389,-5.04301834106445,7.24810886383057,-7.67204910516739e-05,-4.06590414047241,8.3202075958252,2.2697651386261,-4.84824657440186,6.73806762695313,2.30072927474976,-5.82225036621094,6.7092981338501,2.33940887451172,-5.00281143188477,6.22596073150635,-7.67204910516739e-05,-3.79949975013733,6.7226767539978,0.44892230629921,-6.18991184234619,10.59010887146,0.394397914409637,-5.12262487411499,10.5002069473267,1.57019639015198,-6.14955949783325,9.79483127593994,1.41474151611328,-5.12540245056152,9.77165699005127,2.00749802589417,-6.05140399932861,8.58141613006592,1.98990726470947,-5.04615449905396,8.6140775680542,2.26069331169128,-5.84914302825928,7.02525997161865,2.24190473556519,-4.93474864959717,7.05166721343994,1.06165313720703,-6.17055654525757,10.2821702957153,1.00466287136078,-5.1281361579895,10.1846103668213,0.993042349815369,-4.98856544494629,10.2047452926636,1.22498321533203,-4.96596240997314,10.0294179916382,-7.67204910516739e-05,-4.7044677734375,10.2523107528687,0.69256716966629,-5.0015344619751,10.3690938949585,0.38603937625885,-5.00539064407349,10.5087766647339,-7.67204910516739e-05,-4.86312580108643,10.492449760437,-7.67204910516739e-05,-5.01617479324341,10.6331367492676, +1.76178312301636,-6.10922145843506,9.19013977050781,1.68123245239258,-5.10956954956055,9.23971176147461,1.68926680088043,-4.92439126968384,9.26060390472412,1.84727084636688,-4.89078283309937,8.96791648864746,-7.67204910516739e-05,-4.35080289840698,9.53289127349854,1.56406784057617,-4.93146276473999,9.55031299591064,1.41888201236725,-4.9601001739502,9.79391860961914,-7.67204910516739e-05,-4.53979349136353,9.97043323516846,2.16589140892029,-5.95229434967041,7.71211338043213,2.08231449127197,-4.90415143966675,7.76292419433594,2.10142111778259,-4.79083204269409,7.78340911865234,2.1345317363739,-4.72642135620117,7.26164436340332,-7.67204910516739e-05,-4.03186655044556,7.91965436935425,2.06973814964294,-4.81758213043213,8.19492816925049,1.98369586467743,-4.87421846389771,8.64631652832031,-7.67204910516739e-05,-4.14395952224731,8.76574230194092,2.32731008529663,-5.82250738143921,6.40649127960205,2.31210851669312,-4.89640235900879,6.39480257034302,2.16000390052795,-4.65980625152588,6.45814752578735,2.17289304733276,-4.60442161560059,6.25503063201904,2.18451476097107,-4.71044778823853,6.71750640869141,2.14663100242615,-4.70081472396851,6.99988985061646,0.182353913784027,-6.19691944122314,10.6262340545654,0.214668720960617,-4.99102210998535,10.5715703964233,0.221039295196533,-5.1715841293335,10.5898180007935,0.522706210613251,-4.99193954467773,10.4446773529053,0.66406923532486,-6.20330810546875,10.4472274780273,0.59752893447876,-5.18182992935181,10.4342641830444,0.830509066581726,-6.17396593093872,10.3379526138306,0.852953910827637,-4.98247241973877,10.2842531204224,0.876991927623749,-5.20482540130615,10.309229850769,1.10025548934937,-4.96983957290649,10.1259307861328,1.24774789810181,-6.18188953399658,10.1255617141724,1.20500361919403,-5.18185949325562,10.073148727417,1.42771887779236,-6.17186832427979,9.95745468139648,1.3275842666626,-4.95026826858521,9.90988731384277,1.31779193878174,-5.18168306350708,9.9521427154541,1.48239612579346,-4.93766832351685,9.68376922607422,1.67756903171539,-6.12466812133789,9.62149810791016,1.5554666519165,-5.20650291442871,9.61593818664551, +1.69834506511688,-6.11061763763428,9.42087268829346,1.62256753444672,-4.91088914871216,9.39997100830078,1.61898696422577,-5.17198657989502,9.44967460632324,1.7541378736496,-4.89474534988403,9.13007545471191,1.9014698266983,-6.07585859298706,9.01035213470459,1.80428469181061,-5.18578672409058,9.0479154586792,1.99292814731598,-6.06208467483521,8.82335376739502,1.91993987560272,-4.85901260375977,8.79479122161865,1.96745586395264,-5.11074209213257,8.79558944702148,2.02731251716614,-4.83553552627563,8.47818946838379,2.08454465866089,-6.02103090286255,8.26997184753418,2.08422613143921,-5.08479928970337,8.32749843597412,2.13850784301758,-5.98124122619629,7.93514633178711,2.08167743682861,-4.78424215316772,7.99088525772095,2.065997838974,-4.99506855010986,7.98176431655884,2.10985660552979,-4.74397802352905,7.53710603713989,2.20505428314209,-5.90470743179321,7.41537857055664,2.15021204948425,-4.9380145072937,7.47347927093506,0.161418884992599,-5.99620723724365,10.5883436203003,-7.67204910516739e-05,-6.01326370239258,10.647442817688,2.24644112586975,-5.64674186706543,6.40034198760986,2.34713077545166,-5.63024950027466,6.19017839431763,0.772161602973938,-5.99148511886597,10.3921117782593,0.825569927692413,-5.97229623794556,10.3178730010986,1.05481052398682,-5.96023225784302,10.2516374588013,1.25125110149384,-5.97588348388672,10.0944890975952,0.677601099014282,-6.0025200843811,10.4182968139648,1.34167098999023,-5.9681601524353,10.0530290603638,0.436823517084122,-5.98489570617676,10.5625286102295,1.34644889831543,-5.97086668014526,9.94462490081787,1.48144638538361,-5.94182538986206,9.76863384246826,1.59821033477783,-5.92494344711304,9.58926868438721,1.69428503513336,-5.92439365386963,9.54779434204102,1.61604356765747,-5.9272141456604,9.40991878509521,1.69532108306885,-5.91470813751221,9.1658935546875,1.84288775920868,-5.87625932693481,8.9760684967041,2.02333664894104,-5.87491035461426,8.93968105316162,1.94922780990601,-5.88559484481812,8.83939933776855,1.92169213294983,-5.87055253982544,8.59227466583252,1.99420213699341,-5.84308862686157,8.27300834655762, +2.10897731781006,-5.81267786026001,8.10771942138672,2.06114339828491,-5.80498123168945,7.94922637939453,2.07570791244507,-5.7727952003479,7.71314764022827,2.1298360824585,-5.72634553909302,7.417236328125,2.23227190971375,-5.68489122390747,7.22065877914429,2.17584252357483,-5.68429565429688,7.05137586593628,2.20799803733826,-5.65562963485718,6.72965478897095,0.211247131228447,-6.24847888946533,10.7486724853516,-7.67204910516739e-05,-6.23700046539307,10.6934776306152,0.498750567436218,-6.24358892440796,10.6953783035278,0.707851231098175,-6.23854351043701,10.5200033187866,0.762133061885834,-6.19046020507813,10.4073266983032,0.884395122528076,-6.22473669052124,10.3992967605591,1.13511896133423,-6.22686815261841,10.3488941192627,1.32328391075134,-6.22095680236816,10.1810293197632,1.38911020755768,-6.16939687728882,10.0721397399902,1.56143689155579,-6.21689367294312,10.0330867767334,1.74506533145905,-6.20566177368164,9.86744976043701,1.82927858829498,-6.17670869827271,9.6677942276001,1.82371008396149,-6.10994386672974,9.56262111663818,1.88412117958069,-6.11779069900513,9.47591781616211,1.94739937782288,-6.11110782623291,9.25061321258545,2.04833054542542,-6.08344793319702,9.05823516845703,2.10245394706726,-6.02352380752563,8.94280624389648,2.14941501617432,-6.06108808517456,8.85622310638428,2.22272181510925,-6.03034591674805,8.61954116821289,2.29014086723328,-6.01991748809814,8.29539585113525,2.30597949028015,-5.96800661087036,8.1296854019165,2.34052395820618,-6.00384044647217,7.98949098587036,2.35525345802307,-5.93959379196167,7.73963451385498,2.39281797409058,-5.92104721069336,7.42715454101563,2.41367673873901,-5.83990859985352,7.23079776763916,2.47448372840881,-5.86489677429199,7.03505182266235,2.49757170677185,-5.80571842193604,6.71703815460205,2.53354358673096,-5.83821725845337,6.40500688552856,2.49788451194763,-5.82779407501221,6.2298002243042,0.24897712469101,-5.11597394943237,10.7058963775635,-7.67204910516739e-05,-5.20460224151611,10.7079381942749,0.220479279756546,-5.11243915557861,10.5875148773193,-7.67204910516739e-05,-5.21004629135132,10.6482305526733, +1.42731785774231,-5.17014265060425,10.0724725723267,1.35973930358887,-5.11094570159912,10.1520175933838,1.20246112346649,-5.04473114013672,10.2470426559448,0.991850674152374,-5.12875127792358,10.3859529495239,1.52363014221191,-5.1108512878418,10.0072088241577,0.814586639404297,-5.24449729919434,10.4538955688477,1.6520209312439,-5.06402397155762,9.84812545776367,0.652849137783051,-5.12024688720703,10.5349168777466,1.77682518959045,-5.12095785140991,9.6816463470459,0.444385796785355,-5.07770156860352,10.6145257949829,1.82609331607819,-5.16614246368408,9.57676315307617,1.87520813941956,-5.07334613800049,9.48432731628418,1.95687294006348,-4.94513034820557,9.30515384674072,2.05660724639893,-5.07866334915161,9.10423755645752,2.12514114379883,-5.18139457702637,8.96917819976807,2.2040159702301,-5.03358316421509,8.85367298126221,2.31203174591064,-4.98072242736816,8.65931224822998,2.4196469783783,-5.00655889511108,8.40085792541504,2.42282605171204,-5.07566547393799,8.24384784698486,2.43015241622925,-4.95311594009399,8.12364196777344,2.44025778770447,-4.8367748260498,7.86283302307129,2.45554184913635,-4.90069389343262,7.51933813095093,2.4790256023407,-5.01555395126343,7.3164439201355,2.55639052391052,-4.88036632537842,7.12684154510498,2.59324145317078,-4.79598236083984,6.79205846786499,2.60964035987854,-4.82578945159912,6.42443752288818,2.61791682243347,-4.94281578063965,6.22543334960938,2.30009174346924,-4.9078540802002,6.2130274772644,2.27215528488159,-4.82987022399902,6.40319538116455,2.24031233787537,-4.79475355148315,6.72987270355225,2.21691107749939,-4.8596453666687,7.044762134552,2.20704221725464,-4.95234298706055,7.2494912147522,2.13906836509705,-4.87345886230469,7.48208999633789,2.08685064315796,-4.85497903823853,7.77254724502563,2.07189154624939,-4.92449712753296,7.99071025848389,2.08008480072021,-5.06507349014282,8.14252948760986,2.06560301780701,-5.00788164138794,8.36452293395996,1.98568391799927,-4.98204851150513,8.62331008911133,1.94819593429565,-5.03372049331665,8.79545879364014,1.93816781044006,-5.18414354324341,8.94220066070557, +1.78390967845917,-5.09484052658081,9.05940628051758,1.67844200134277,-5.04022884368896,9.24466323852539,1.61309337615967,-5.0898003578186,9.43358707427979,1.61198472976685,-5.16870260238647,9.54607582092285,1.52880334854126,-5.12128496170044,9.62254524230957,1.41195726394653,-5.06289958953857,9.7760066986084,1.31675946712494,-5.10752153396606,9.93827438354492,1.29312229156494,-5.15547657012939,10.0386047363281,1.17945528030396,-5.11211252212524,10.0817356109619,0.999725878238678,-5.07360601425171,10.1888465881348,0.868633270263672,-5.13236522674561,10.2998676300049,0.759266436100006,-5.24501419067383,10.3854103088379,0.581607580184937,-5.11755657196045,10.432653427124,0.391613602638245,-5.07405853271484,10.5013198852539,1.882688164711,-4.39436292648315,6.75146913528442,1.89972448348999,-4.4520115852356,7.29836845397949,1.92360293865204,-4.52532339096069,7.82272911071777,1.90624833106995,-4.56584596633911,8.22654819488525,1.84925842285156,-4.64360284805298,8.66859531402588,1.68465423583984,-4.67599296569824,9.01572036743164,1.56485795974731,-4.73743677139282,9.31390190124512,1.40383994579315,-4.76555824279785,9.59842491149902,1.2554692029953,-4.81805467605591,9.83580875396729,1.03849375247955,-4.84567546844482,10.0437498092651,0.803921401500702,-4.88038921356201,10.213773727417,0.500419914722443,-4.88780689239502,10.3542613983154,0.289969116449356,-4.92022562026978,10.4710645675659,1.87083113193512,-4.03698921203613,6.32787609100342,-7.67204910516739e-05,-4.92767381668091,10.5683641433716,-1.44108653068542,-6.14445877075195,10.0975389480591,-2.16955471038818,-6.01648330688477,8.95395565032959,-2.53927731513977,-5.82994270324707,7.25559616088867,-2.57907891273499,-5.80733442306519,6.23576736450195,-1.52800750732422,-3.72579002380371,9.72752857208252,-2.22709941864014,-3.57229733467102,8.59624671936035,-2.60995936393738,-3.34418630599976,6.92969751358032,-2.67029452323914,-3.42640256881714,5.68099164962769,-0.816734910011292,-5.35645294189453,10.4493455886841,-0.779724419116974,-6.16896963119507,10.4349269866943,-1.4291467666626,-5.26600313186646,10.0664348602295, +-0.892035186290741,-3.77179098129272,10.0637788772583,-1.83078956604004,-5.27385139465332,9.57354736328125,-1.90378320217133,-6.0930233001709,9.57655906677246,-2.11717844009399,-5.30726289749146,8.95762252807617,-1.93824458122253,-3.65362906455994,9.1970796585083,-2.42004227638245,-5.18281126022339,8.20937538146973,-2.42004227638245,-5.96190929412842,8.16780376434326,-2.45474600791931,-5.11397838592529,7.30203199386597,-2.49128437042236,-3.47505044937134,7.87748861312866,-2.59244561195374,-4.84982824325562,6.78690433502197,-2.69075131416321,-5.82278871536255,6.72381782531738,-2.61282658576965,-5.02046489715576,6.23445129394531,-2.64076375961304,-3.26274490356445,6.33746004104614,-0.599039852619171,-6.21754217147827,10.7229251861572,-0.45417907834053,-5.12842035293579,10.6079740524292,-1.90497493743896,-6.16266965866089,9.93728923797607,-1.64763867855072,-5.12903833389282,9.83918380737305,-2.44264721870422,-6.05743980407715,8.66366481781006,-2.31163191795349,-5.04810428619385,8.64824485778809,-2.68326592445374,-5.85268306732178,7.05120515823364,-2.55042123794556,-4.95216464996338,7.11908721923828,-1.20970582962036,-6.19574785232544,10.412353515625,-1.20795357227325,-5.09789371490479,10.2298641204834,-1.15740573406219,-4.92991161346436,10.3026037216187,-1.44531011581421,-4.93363952636719,10.113431930542,-1.2186187505722,-3.75024509429932,9.90089416503906,-0.820716500282288,-4.96743249893188,10.475640296936,-0.441761612892151,-4.95442533493042,10.6348133087158,-0.453458875417709,-3.79537487030029,10.2384967803955,-2.14710927009583,-6.10758829116821,9.31225490570068,-1.95297479629517,-5.00903797149658,9.29726600646973,-1.97223484516144,-4.82019233703613,9.32335662841797,-2.14925646781921,-4.86429834365845,9.00823211669922,-2.05223107337952,-3.59468412399292,8.90334224700928,-1.84256947040558,-4.9001030921936,9.60667324066162,-1.67247307300568,-4.90209484100342,9.87600612640381,-1.7665559053421,-3.68992519378662,9.46966075897217,-2.54421544075012,-5.96022415161133,7.76582431793213,-2.42601180076599,-4.878662109375,7.82701110839844, +-2.4795036315918,-4.75098323822021,7.95540571212769,-2.53091931343079,-4.73315286636353,7.36377668380737,-2.54397368431091,-3.42584323883057,7.51118564605713,-2.43126845359802,-4.80729675292969,8.32950687408447,-2.31696367263794,-4.81523847579956,8.68103122711182,-2.37586522102356,-3.52154636383057,8.2230396270752,-2.73476386070251,-5.82247352600098,6.39923477172852,-2.60844922065735,-4.89594030380249,6.41888046264648,-2.61051392555237,-4.65481853485107,6.43297481536865,-2.62850570678711,-4.74086904525757,6.19173336029053,-2.65485024452209,-3.23592948913574,5.96119499206543,-2.59324193000793,-4.6646671295166,6.80287742614746,-2.56864905357361,-4.69731330871582,7.14518451690674,-2.62635850906372,-3.30985593795776,6.68903684616089,-0.248499989509583,-6.22404289245605,10.8135080337524,-0.248098492622375,-4.96406364440918,10.7071895599365,-0.251602977514267,-3.80308675765991,10.2984771728516,-0.246352404356003,-5.17882061004639,10.7031602859497,-0.63676929473877,-4.95541286468506,10.5558376312256,-0.676009058952332,-3.78370904922485,10.152286529541,-0.767702341079712,-6.20383882522583,10.5778188705444,-0.665662467479706,-5.18739366531372,10.5270643234253,-0.938282787799835,-6.19465923309326,10.4595317840576,-0.988583147525787,-4.94667673110962,10.3948917388916,-1.05950653553009,-3.7609691619873,9.98197269439697,-0.991691648960114,-5.20428323745728,10.3845367431641,-1.31230068206787,-4.93261098861694,10.2090654373169,-1.37566125392914,-3.73848485946655,9.81740283966064,-1.40336275100708,-6.17923879623413,10.2315492630005,-1.38170754909515,-5.1838493347168,10.1332654953003,-1.66777741909027,-6.1713695526123,10.1096124649048,-1.56327188014984,-4.91711711883545,10.0034885406494,-1.6613302230835,-3.7083420753479,9.60178184509277,-1.51121318340302,-5.1890721321106,10.0149831771851,-1.76647901535034,-4.90188646316528,9.73764705657959,-1.85777711868286,-3.67182159423828,9.33412456512451,-1.96809363365173,-6.13824892044067,9.70737743377686,-1.79226922988892,-5.20931720733643,9.66518115997314,-2.07228684425354,-6.11771965026855,9.53572368621826, +-1.90314614772797,-4.87315368652344,9.47091674804688,-1.99643182754517,-3.63068151473999,9.05076503753662,-1.86979341506958,-5.15749883651733,9.49563312530518,-2.06066560745239,-4.85492086410522,9.16111278533936,-2.13397240638733,-3.5903434753418,8.75202560424805,-2.19693207740784,-6.08080959320068,9.10251712799072,-2.0602707862854,-5.17085218429565,9.08461761474609,-2.30980277061462,-6.06748104095459,8.89682769775391,-2.23290920257568,-4.83329248428345,8.85091400146484,-2.30383324623108,-3.54712581634521,8.41085433959961,-2.19223642349243,-5.11476612091064,8.85641193389893,-2.3886833190918,-4.80841827392578,8.50043201446533,-2.4413731098175,-3.49835062026978,8.05076789855957,-2.49478197097778,-6.0253267288208,8.32164859771729,-2.43341541290283,-5.08730506896973,8.35621547698975,-2.54381465911865,-5.9981803894043,8.05091190338135,-2.45816779136658,-4.77966117858887,8.15988826751709,-2.52065515518188,-3.45178747177124,7.70257806777954,-2.42060303688049,-5.023606300354,8.10939884185791,-2.49207520484924,-4.73876810073853,7.64967775344849,-2.56260275840759,-3.38536167144775,7.22254991531372,-2.57780432701111,-5.90810632705688,7.43864154815674,-2.44081902503967,-4.9638819694519,7.49332523345947,-1.33912909030914,-6.1451997756958,10.0494470596313,-2.03806114196777,-6.01517105102539,8.9346752166748,-2.28560495376587,-5.82303857803345,7.20906686782837,-2.41208481788635,-5.80802249908447,6.2144603729248,-0.785057246685028,-5.35388612747192,10.4057569503784,-0.751468539237976,-6.16575050354004,10.3837471008301,-1.32726609706879,-5.24303007125854,10.0550670623779,-1.64589440822601,-5.27322387695313,9.55965137481689,-1.74156808853149,-6.09074783325195,9.5503625869751,-1.98863387107849,-5.30668449401855,8.9456958770752,-2.09003663063049,-5.16920614242554,8.12527942657471,-2.1896116733551,-5.95280742645264,8.09652328491211,-2.23736882209778,-5.04301834106445,7.24810886383057,-2.26984333992004,-4.84824657440186,6.73806762695313,-2.30080652236938,-5.82225036621094,6.7092981338501,-2.33949184417725,-5.00281143188477,6.22596073150635, +-0.448999583721161,-6.18991184234619,10.59010887146,-0.394558042287827,-5.12262487411499,10.5002069473267,-1.57035636901855,-6.14955949783325,9.79483127593994,-1.41482424736023,-5.12540245056152,9.77165699005127,-2.00765204429626,-6.05140399932861,8.58141613006592,-1.98998475074768,-5.04615449905396,8.6140775680542,-2.26077032089233,-5.84914302825928,7.02525997161865,-2.24198818206787,-4.93474864959717,7.05166721343994,-1.06173646450043,-6.17055654525757,10.2821702957153,-1.0047402381897,-5.1281361579895,10.1846103668213,-0.993202030658722,-4.98856544494629,10.2047452926636,-1.22514343261719,-4.96596240997314,10.0294179916382,-0.692726731300354,-5.0015344619751,10.3690938949585,-0.38612225651741,-5.00539064407349,10.5087766647339,-1.76185965538025,-6.10922145843506,9.19013977050781,-1.6813098192215,-5.10956954956055,9.23971176147461,-1.68950939178467,-4.92439126968384,9.26060390472412,-1.84734761714935,-4.89078283309937,8.96791648864746,-1.56414496898651,-4.93146276473999,9.55031299591064,-1.41904211044312,-4.9601001739502,9.79391860961914,-2.16597414016724,-5.95229434967041,7.71211338043213,-2.08239793777466,-4.90415143966675,7.76292419433594,-2.1014986038208,-4.79083204269409,7.78340911865234,-2.13469195365906,-4.72642135620117,7.26164436340332,-2.06989789009094,-4.81758213043213,8.19492816925049,-1.9838559627533,-4.87421846389771,8.64631652832031,-2.32739305496216,-5.82250738143921,6.40649127960205,-2.3121919631958,-4.89640235900879,6.39480257034302,-2.16016364097595,-4.65980625152588,6.45814752578735,-2.17297649383545,-4.60442161560059,6.25503063201904,-2.18475651741028,-4.71044778823853,6.71750640869141,-2.14670848846436,-4.70081472396851,6.99988985061646,-0.182514071464539,-6.19691944122314,10.6262340545654,-0.214751601219177,-4.99102210998535,10.5715703964233,-0.221117123961449,-5.1715841293335,10.5898180007935,-0.522789657115936,-4.99193954467773,10.4446773529053,-0.664152145385742,-6.20330810546875,10.4472274780273,-0.597688615322113,-5.18182992935181,10.4342641830444,-0.830668151378632,-6.17396593093872,10.3379526138306, +-0.85311359167099,-4.98247241973877,10.2842531204224,-0.877069175243378,-5.20482540130615,10.309229850769,-1.10041570663452,-4.96983957290649,10.1259307861328,-1.24783062934875,-6.18188953399658,10.1255617141724,-1.2051637172699,-5.18185949325562,10.073148727417,-1.42787837982178,-6.17186832427979,9.95745468139648,-1.32766699790955,-4.95026826858521,9.90988731384277,-1.31787490844727,-5.18168306350708,9.9521427154541,-1.48247957229614,-4.93766832351685,9.68376922607422,-1.67772912979126,-6.12466812133789,9.62149810791016,-1.55555009841919,-5.20650291442871,9.61593818664551,-1.69850516319275,-6.11061763763428,9.42087268829346,-1.62272691726685,-4.91088914871216,9.39997100830078,-1.61914646625519,-5.17198657989502,9.44967460632324,-1.75422072410583,-4.89474534988403,9.13007545471191,-1.90155327320099,-6.07585859298706,9.01035213470459,-1.80444478988647,-5.18578672409058,9.0479154586792,-1.99301075935364,-6.06208467483521,8.82335376739502,-1.92001700401306,-4.85901260375977,8.79479122161865,-1.96753931045532,-5.11074209213257,8.79558944702148,-2.02739596366882,-4.83553552627563,8.47818946838379,-2.08462166786194,-6.02103090286255,8.26997184753418,-2.08438611030579,-5.08479928970337,8.32749843597412,-2.13859105110168,-5.98124122619629,7.93514633178711,-2.0817608833313,-4.78424215316772,7.99088525772095,-2.06615805625916,-4.99506855010986,7.98176431655884,-2.10993385314941,-4.74397802352905,7.53710603713989,-2.20521450042725,-5.90470743179321,7.41537857055664,-2.1502890586853,-4.9380145072937,7.47347927093506,-0.161578476428986,-5.99620723724365,10.5883436203003,-2.24652457237244,-5.64674186706543,6.40034198760986,-2.34721374511719,-5.63024950027466,6.19017839431763,-0.772245049476624,-5.99148511886597,10.3921117782593,-0.825730621814728,-5.97229623794556,10.3178730010986,-1.05496990680695,-5.96023225784302,10.2516374588013,-1.25133454799652,-5.97588348388672,10.0944890975952,-0.677684605121613,-6.0025200843811,10.4182968139648,-1.34175372123718,-5.9681601524353,10.0530290603638,-0.436900794506073,-5.98489570617676,10.5625286102295, +-1.34660851955414,-5.97086668014526,9.94462490081787,-1.48152363300323,-5.94182538986206,9.76863384246826,-1.59837055206299,-5.92494344711304,9.58926868438721,-1.69436395168304,-5.92439365386963,9.54779434204102,-1.61612033843994,-5.9272141456604,9.40991878509521,-1.69539654254913,-5.91470813751221,9.1658935546875,-1.8430472612381,-5.87625932693481,8.9760684967041,-2.02341389656067,-5.87491035461426,8.93968105316162,-1.94938790798187,-5.88559484481812,8.83939933776855,-1.92176866531372,-5.87055253982544,8.59227466583252,-1.99436163902283,-5.84308862686157,8.27300834655762,-2.10913801193237,-5.81267786026001,8.10771942138672,-2.06122040748596,-5.80498123168945,7.94922637939453,-2.07579112052917,-5.7727952003479,7.71314764022827,-2.12991428375244,-5.72634553909302,7.417236328125,-2.23243236541748,-5.68489122390747,7.22065877914429,-2.17591977119446,-5.68429565429688,7.05137586593628,-2.20807480812073,-5.65562963485718,6.72965478897095,-0.211407259106636,-6.24847888946533,10.7486724853516,-0.49882784485817,-6.24358892440796,10.6953783035278,-0.707928478717804,-6.23854351043701,10.5200033187866,-0.762210428714752,-6.19046020507813,10.4073266983032,-0.884472489356995,-6.22473669052124,10.3992967605591,-1.13520228862762,-6.22686815261841,10.3488941192627,-1.32336676120758,-6.22095680236816,10.1810293197632,-1.38926982879639,-6.16939687728882,10.0721397399902,-1.56151962280273,-6.21689367294312,10.0330867767334,-1.74514818191528,-6.20566177368164,9.86744976043701,-1.82936203479767,-6.17670869827271,9.6677942276001,-1.82378721237183,-6.10994386672974,9.56262111663818,-1.88428127765656,-6.11779069900513,9.47591781616211,-1.94748222827911,-6.11110782623291,9.25061321258545,-2.0484082698822,-6.08344793319702,9.05823516845703,-2.10253119468689,-6.02352380752563,8.94280624389648,-2.14957499504089,-6.06108808517456,8.85622310638428,-2.22280430793762,-6.03034591674805,8.61954116821289,-2.29022431373596,-6.01991748809814,8.29539585113525,-2.30606293678284,-5.96800661087036,8.1296854019165,-2.34060740470886,-6.00384044647217,7.98949098587036, +-2.3553307056427,-5.93959379196167,7.73963451385498,-2.39297795295715,-5.92104721069336,7.42715454101563,-2.41383671760559,-5.83990859985352,7.23079776763916,-2.47456669807434,-5.86489677429199,7.03505182266235,-2.49764919281006,-5.80571842193604,6.71703815460205,-2.53370380401611,-5.83821725845337,6.40500688552856,-2.49804472923279,-5.82779407501221,6.2298002243042,-0.249054402112961,-5.11597394943237,10.7058963775635,-0.220562160015106,-5.11243915557861,10.5875148773193,-1.42740082740784,-5.17014265060425,10.0724725723267,-1.35982227325439,-5.11094570159912,10.1520175933838,-1.20253849029541,-5.04473114013672,10.2470426559448,-0.991928040981293,-5.12875127792358,10.3859529495239,-1.52370738983154,-5.1108512878418,10.0072088241577,-0.814668953418732,-5.24449729919434,10.4538955688477,-1.65209627151489,-5.06402397155762,9.84812545776367,-0.652926385402679,-5.12024688720703,10.5349168777466,-1.77690863609314,-5.12095785140991,9.6816463470459,-0.444463044404984,-5.07770156860352,10.6145257949829,-1.82617616653442,-5.16614246368408,9.57676315307617,-1.87536764144897,-5.07334613800049,9.48432731628418,-1.95703315734863,-4.94513034820557,9.30515384674072,-2.05668377876282,-5.07866334915161,9.10423755645752,-2.12521839141846,-5.18139457702637,8.96917819976807,-2.20409893989563,-5.03358316421509,8.85367298126221,-2.3121919631958,-4.98072242736816,8.65931224822998,-2.41972398757935,-5.00655889511108,8.40085792541504,-2.42298603057861,-5.07566547393799,8.24384784698486,-2.43023037910461,-4.95311594009399,8.12364196777344,-2.44034123420715,-4.8367748260498,7.86283302307129,-2.45570135116577,-4.90069389343262,7.51933813095093,-2.47910332679749,-5.01555395126343,7.3164439201355,-2.55655026435852,-4.88036632537842,7.12684154510498,-2.5934009552002,-4.79598236083984,6.79205846786499,-2.6098005771637,-4.82578945159912,6.42443752288818,-2.61799931526184,-4.94281578063965,6.22543334960938,-2.30016922950745,-4.9078540802002,6.2130274772644,-2.27223181724548,-4.82987022399902,6.40319538116455,-2.24039530754089,-4.79475355148315,6.72987270355225, +-2.21699452400208,-4.8596453666687,7.044762134552,-2.20720195770264,-4.95234298706055,7.2494912147522,-2.13914585113525,-4.87345886230469,7.48208999633789,-2.08693408966064,-4.85497903823853,7.77254724502563,-2.07205104827881,-4.92449712753296,7.99071025848389,-2.08016753196716,-5.06507349014282,8.14252948760986,-2.065762758255,-5.00788164138794,8.36452293395996,-1.98576736450195,-4.98204851150513,8.62331008911133,-1.94835603237152,-5.03372049331665,8.79545879364014,-1.93824458122253,-5.18414354324341,8.94220066070557,-1.78398704528809,-5.09484052658081,9.05940628051758,-1.67860221862793,-5.04022884368896,9.24466323852539,-1.61325120925903,-5.0898003578186,9.43358707427979,-1.61214077472687,-5.16870260238647,9.54607582092285,-1.52888679504395,-5.12128496170044,9.62254524230957,-1.41203439235687,-5.06289958953857,9.7760066986084,-1.31691944599152,-5.10752153396606,9.93827438354492,-1.29327630996704,-5.15547657012939,10.0386047363281,-1.17961537837982,-5.11211252212524,10.0817356109619,-0.999808847904205,-5.07360601425171,10.1888465881348,-0.868710696697235,-5.13236522674561,10.2998676300049,-0.759426653385162,-5.24501419067383,10.3854103088379,-0.581690490245819,-5.11755657196045,10.432653427124,-0.391690850257874,-5.07405853271484,10.5013198852539,-1.88284778594971,-4.39436292648315,6.75146913528442,-1.89980101585388,-4.4520115852356,7.29836845397949,-1.92368066310883,-4.52532339096069,7.82272911071777,-1.90633141994476,-4.56584596633911,8.22654819488525,-1.84941840171814,-4.64360284805298,8.66859531402588,-1.68473148345947,-4.67599296569824,9.01572036743164,-1.56494069099426,-4.73743677139282,9.31390190124512,-1.40391707420349,-4.76555824279785,9.59842491149902,-1.25562918186188,-4.81805467605591,9.83580875396729,-1.03865337371826,-4.84567546844482,10.0437498092651,-0.804080486297607,-4.88038921356201,10.213773727417,-0.500580132007599,-4.88780689239502,10.3542613983154,-0.29012867808342,-4.92022562026978,10.4710645675659,-1.87090849876404,-4.03698921203613,6.32787609100342,-0.308197110891342,-4.81720018386841,10.3705530166626, +-0.159036085009575,-4.87342262268066,10.4829759597778,-1.34613072872162,-4.09637641906738,6.78873920440674,-1.29885053634644,-3.6716845035553,6.35489892959595,-0.500102460384369,-4.76407194137573,10.235652923584,-0.681182324886322,-4.70219993591309,10.0764589309692,-0.827004611492157,-4.63880825042725,9.90776252746582,-0.965742528438568,-4.56622743606567,9.69939136505127,-1.08577442169189,-4.49326658248901,9.42716884613037,-1.22037100791931,-4.43386459350586,9.10629081726074,-1.36642909049988,-4.36891460418701,8.71580410003662,-1.4526309967041,-4.32083606719971,8.27136516571045,-1.44968700408936,-4.298987865448,7.87445211410522,-1.43846130371094,-4.30566120147705,7.33613443374634,-0.11851616948843,-4.9258279800415,10.5478172302246,2.36870336532593,-4.89915895462036,6.05093717575073,2.40563678741455,-4.97647333145142,6.04435634613037,1.91230034828186,-3.92576694488525,6.15001773834229,2.21531844139099,-4.54039859771729,6.10468196868896,-2.40571427345276,-4.97647333145142,6.04435634613037,-2.36878037452698,-4.89915895462036,6.05093717575073,-1.91237807273865,-3.92576694488525,6.15001773834229,-1.3193085193634,-3.5384349822998,6.17151260375977,-2.21547865867615,-4.54039859771729,6.10468196868896,-7.67204910516739e-05,-3.21373343467712,6.18803453445435,2.55384182929993,-5.75352811813354,6.14624261856079,2.49064660072327,-5.76948547363281,6.12738513946533,2.42728590965271,-5.75763177871704,6.10978126525879,2.37785863876343,-5.62378406524658,6.09825658798218,2.37713885307312,-5.01688718795776,6.14634227752686,2.35055255889893,-4.95397138595581,6.13868141174316,-2.35071206092834,-4.95397138595581,6.13868141174316,-2.37722182273865,-5.01688718795776,6.14634227752686,-2.37793588638306,-5.62378406524658,6.09825658798218,-2.42736291885376,-5.75763177871704,6.10978126525879,-2.4907238483429,-5.76948547363281,6.12738513946533,-2.55400204658508,-5.75352811813354,6.14624261856079,-2.31616735458374,-4.78816795349121,6.07486486434937,2.31609058380127,-4.78816795349121,6.07486486434937,0.566246807575226,-5.38128614425659,10.681791305542, +0.246192812919617,-5.41680717468262,10.7577047348022,0.402356058359146,-5.39608001708984,10.7270231246948,1.77945041656494,-5.33451986312866,9.91261291503906,1.59271860122681,-5.3716778755188,10.1045579910278,1.68743848800659,-5.34744930267334,10.0274114608765,2.43476557731628,-5.29290103912354,8.67005157470703,2.27549338340759,-5.32962989807129,8.89839935302734,2.35779547691345,-5.30605792999268,8.80605792999268,2.50011372566223,-5.05364608764648,7.22187995910645,2.46652555465698,-5.13603925704956,7.30129432678223,2.57469463348389,-4.98489141464233,7.12168741226196,2.51674914360046,-5.08021211624146,7.22337961196899,1.07104420661926,-6.19871234893799,10.4532356262207,1.23008024692535,-6.12625408172607,10.4297370910645,0.95220935344696,-6.12730646133423,10.4781188964844,1.08783864974976,-6.12938976287842,10.4722518920898,1.23724162578583,-4.9298210144043,10.2557611465454,1.2922431230545,-5.0667839050293,10.1946229934692,0.540456593036652,-4.95295143127441,10.5953779220581,0.563857853412628,-3.78981256484985,10.1971521377563,2.12012076377869,-6.11656141281128,9.43780994415283,2.18531036376953,-6.04439640045166,9.32894897460938,2.10213541984558,-6.05786371231079,9.5564489364624,2.15602254867554,-6.05410432815552,9.45830726623535,2.01497793197632,-4.83223581314087,9.24244499206543,2.00821208953857,-4.99154615402222,9.20073890686035,1.72150504589081,-4.9008264541626,9.80685710906982,1.81335735321045,-3.68086624145508,9.40210819244385,2.55193114280701,-5.98643398284912,7.92556858062744,2.59029746055603,-5.90131378173828,7.77436351776123,2.59038019180298,-5.9391074180603,8.07243824005127,2.59993052482605,-5.92604207992554,7.94169330596924,2.48435831069946,-4.74286890029907,7.80917644500732,2.44766116142273,-4.8491415977478,7.68547058105469,2.35557246208191,-4.8105297088623,8.59074878692627,2.40985465049744,-3.50977420806885,8.13588333129883,2.7779848575592,-5.51153469085693,6.74354219436646,2.78451490402222,-5.49429225921631,6.38666725158691,2.79493808746338,-5.50533866882324,6.55248069763184,2.6146547794342,-4.87392616271973,6.30552673339844, +2.61130976676941,-4.95285940170288,6.30372381210327,2.63312411308289,-3.28767967224121,6.52517414093018,2.58225703239441,-4.67946624755859,6.98756504058838,0.422895759344101,-6.22150421142578,10.7779750823975,0.62021005153656,-6.14947462081909,10.7371854782104,0.25152513384819,-6.1558518409729,10.8286790847778,0.434994578361511,-6.15349102020264,10.7928981781006,0.773276507854462,-6.18317461013794,10.492805480957,0.793893456459045,-6.11256837844849,10.4474754333496,0.793256223201752,-6.1360502243042,10.5915660858154,0.793415248394012,-6.12203216552734,10.5054244995117,0.833769977092743,-5.47786331176758,10.465648651123,0.767147362232208,-5.40177488327026,10.5656452178955,0.803125083446503,-5.44741249084473,10.5072536468506,1.79871618747711,-6.17119932174683,10.0438709259033,1.93673419952393,-6.09180784225464,9.9573335647583,1.68322050571442,-6.10219383239746,10.1345090866089,1.8226717710495,-6.0999813079834,10.0684766769409,1.92487740516663,-6.11152410507202,9.62552928924561,1.92280662059784,-6.04206943511963,9.58533763885498,1.99587142467499,-6.06993532180786,9.71592235565186,1.94700419902802,-6.05281352996826,9.63218879699707,1.87448811531067,-5.39900588989258,9.59115314483643,1.88571441173553,-5.36145830154419,9.69441604614258,1.87862920761108,-5.38414192199707,9.6276798248291,2.38278985023499,-6.06951522827148,8.80442142486572,2.4900860786438,-5.99994945526123,8.67735481262207,2.33861255645752,-6.01029920578003,8.91247653961182,2.42234826087952,-6.01045846939087,8.82058906555176,2.44949555397034,-5.98758316040039,8.22527027130127,2.45331263542175,-5.9230375289917,8.18176460266113,2.53991460800171,-5.96709251403809,8.32698440551758,2.4872190952301,-5.94068717956543,8.23351097106934,2.48093104362488,-5.30903768539429,8.22675228118896,2.53107786178589,-5.29190921783447,8.34867286682129,2.50600719451904,-5.30312013626099,8.26855659484863,2.57469463348389,-5.53896903991699,7.28717947006226,2.74033761024475,-5.54294681549072,7.08502197265625,2.6491219997406,-5.54244422912598,7.19982957839966,2.69393038749695,-5.84068250656128,6.89755344390869, +2.73826742172241,-5.76365041732788,6.72922039031982,2.72497701644897,-5.79253578186035,7.06258821487427,2.74057412147522,-5.77958679199219,6.90722036361694,2.72935366630554,-5.13624048233032,6.76804351806641,2.67475271224976,-5.19783115386963,7.11063480377197,2.71431183815002,-5.16106271743774,6.95400714874268,1.41904175281525,-6.15810871124268,10.1467761993408,1.45859956741333,-6.08747577667236,10.1083421707153,1.4297069311142,-6.1099648475647,10.243049621582,1.44188249111176,-6.09604692459106,10.1561756134033,1.4638557434082,-5.41136312484741,10.0993022918701,1.42740023136139,-5.36600542068481,10.1941890716553,1.45080149173737,-5.39493846893311,10.1334867477417,1.23031604290009,-5.33457040786743,10.3346290588379,0.988824427127838,-5.40275382995605,10.4450454711914,1.10567080974579,-5.35919141769409,10.3998765945435,1.29734027385712,-3.74451875686646,9.85927677154541,0.905407428741455,-4.95959520339966,10.4361753463745,0.979668974876404,-3.76639318466187,10.0222578048706,0.898558616638184,-5.20458173751831,10.4245805740356,0.0581044778227806,-4.97750186920166,10.7529458999634,0.0585821568965912,-3.80714273452759,10.3407936096191,0.0570718422532082,-5.28466129302979,10.6990880966187,0.0589007958769798,-5.1928563117981,10.7132616043091,0.552000403404236,-5.08422231674194,10.5733594894409,2.17647981643677,-6.04208469390869,9.01570415496826,2.18364119529724,-5.97893047332764,8.96032905578613,2.22399592399597,-6.02156591415405,9.10936832427979,2.19518542289734,-5.99576950073242,9.02073001861572,2.14066100120544,-5.39109086990356,8.9628324508667,2.14901423454285,-5.35427951812744,9.0933313369751,2.14057874679565,-5.38381814956665,9.01462173461914,2.07538890838623,-5.29148054122925,9.32239532470703,1.98305916786194,-5.36987113952637,9.54968357086182,2.03216767311096,-5.32303953170776,9.45143127441406,2.09003663063049,-3.59096431732178,8.8278865814209,1.87329638004303,-4.89144420623779,9.53985595703125,1.96920824050903,-3.64389991760254,9.12462520599365,1.84766566753387,-5.1354022026062,9.53629589080811,1.50548505783081,-4.92667293548584,10.0606355667114, +1.59781551361084,-3.71742677688599,9.6675968170166,1.4701384305954,-5.14917039871216,10.0455408096313,1.72047221660614,-5.08461809158325,9.76005458831787,2.54922842979431,-5.86286878585815,7.33647632598877,2.56609988212585,-5.79004096984863,7.26262283325195,2.61775708198547,-5.84616804122925,7.44112205505371,2.58106565475464,-5.81336307525635,7.34045124053955,2.52916669845581,-5.24765205383301,7.30459833145142,2.56586408615112,-5.19028902053833,7.4799370765686,2.53704762458801,-5.22478914260864,7.38118886947632,2.55328726768494,-5.17577457427979,7.80620574951172,2.55352377891541,-5.26619529724121,8.12104034423828,2.55853748321533,-5.21674394607544,7.98145294189453,2.55097532272339,-3.40678358078003,7.37494039535522,2.4456729888916,-4.79573726654053,8.24600124359131,2.50751757621765,-3.46340703964233,7.79011964797974,2.42473793029785,-5.03045463562012,8.19138431549072,2.19120383262634,-4.85039281845093,8.93075561523438,2.26698136329651,-3.56012415885925,8.5060396194458,2.1615138053894,-5.11873531341553,8.91559505462646,2.37387633323669,-4.98405885696411,8.5270881652832,2.62707161903381,-5.42901182174683,6.21318340301514,2.70865988731384,-5.46296405792236,6.27867794036865,2.62930154800415,-5.11680030822754,6.24068880081177,2.72346091270447,-5.14277458190918,6.39971160888672,2.67681741714478,-5.13292789459229,6.29661417007446,2.60223722457886,-4.85794878005981,6.59181594848633,2.62396907806396,-4.88413953781128,6.7855920791626,2.63224482536316,-4.92915534973145,6.41459321975708,2.6320858001709,-4.89259052276611,6.58782196044922,2.66273069381714,-3.28638744354248,5.82048511505127,2.61998701095581,-4.67815494537354,6.30472087860107,2.64760613441467,-3.23664593696594,6.1414909362793,2.60200071334839,-4.6534276008606,6.60857820510864,2.6028745174408,-4.79819631576538,6.59765148162842,2.62078380584717,-3.32737493515015,6.8132643699646,2.55097532272339,-4.71743583679199,7.25841617584229,2.51659035682678,-4.96414136886597,7.23243427276611,2.57812190055847,-4.88279342651367,6.9683632850647,2.57987427711487,-4.82382917404175,6.97422170639038, +-7.67204910516739e-05,-6.14882516860962,10.7384452819824,0.0330338403582573,-6.2180643081665,10.7608232498169,0.031676959246397,-6.15073442459106,10.7692003250122,0.346162348985672,-3.80005931854248,10.2728490829468,0.34019273519516,-4.95876932144165,10.674464225769,0.343696653842926,-5.14614200592041,10.6599750518799,0.340593695640564,-5.09143400192261,10.6644906997681,0,-5.46868753433228,10.6961698532104,0.0388443991541862,-5.46272850036621,10.7215843200684,0.787923336029053,-3.77777767181396,10.1074657440186,0.730532228946686,-4.96316480636597,10.5156650543213,0.612730085849762,-5.81223726272583,10.7480869293213,0.818409204483032,-5.80088090896606,10.5974206924438,0.74557501077652,-5.80561113357544,10.6775608062744,0.744224369525909,-5.28894329071045,10.4860992431641,0.736502468585968,-5.19503211975098,10.4928035736084,0.565131783485413,-5.13811635971069,10.5657052993774,0.488480687141418,-5.16111516952515,10.6132593154907,0.686673700809479,-5.21814012527466,10.5301637649536,0.597051203250885,-5.17026042938232,10.5706043243408,0.826048672199249,-5.79729986190796,10.4669504165649,0.973304092884064,-5.78964471817017,10.4875783920288,0.878342628479004,-5.79480218887329,10.4708395004272,1.13902378082275,-3.75567102432251,9.94163227081299,1.07343327999115,-4.93617916107178,10.3497266769409,0.898322880268097,-5.30402421951294,10.4232625961304,0.820480048656464,-5.38121318817139,10.4522428512573,0.99144971370697,-5.23509693145752,10.3936376571655,0.898558616638184,-5.33122491836548,10.4292478561401,1.09858667850494,-5.1296706199646,10.3100242614746,1.09771311283112,-5.07038974761963,10.3188095092773,1.45310831069946,-3.73259544372559,9.77542972564697,1.38115262985229,-4.93476009368896,10.1622486114502,1.24010837078094,-5.77027893066406,10.4280824661255,1.44896697998047,-5.75700235366821,10.2426996231079,1.36483597755432,-5.76183938980103,10.3413133621216,1.30784642696381,-5.12646627426147,10.1744384765625,1.21431791782379,-5.12968444824219,10.2391633987427,1.39357018470764,-5.21220302581787,10.1398096084595,1.31819295883179,-5.15665435791016,10.1825561523438, +1.41203331947327,-5.23901510238647,10.0959196090698,1.39762842655182,-5.15135288238525,10.1096410751343,1.47810220718384,-5.76028156280518,10.1184663772583,1.66355729103088,-5.75714492797852,10.155650138855,1.55124938488007,-5.76018714904785,10.1419162750244,1.71664988994598,-3.69902992248535,9.53592681884766,1.61922264099121,-4.90826559066772,9.9417028427124,1.57409560680389,-5.14579153060913,9.93711280822754,1.5853157043457,-5.07765579223633,9.93589019775391,1.46242272853851,-5.23930597305298,10.0487232208252,1.43567645549774,-5.2925910949707,10.0717658996582,1.52331149578094,-5.21743154525757,10.0307359695435,1.47061598300934,-5.26658535003662,10.0596237182617,1.90011930465698,-3.66277027130127,9.26631832122803,1.80675661563873,-4.90261316299438,9.67172622680664,1.90585315227509,-5.74225854873657,9.96549129486084,1.97350835800171,-5.72455263137817,9.71689796447754,1.96475434303284,-5.73232173919678,9.83455848693848,1.81964552402496,-5.25656270980835,9.61117076873779,1.80722808837891,-5.15477609634399,9.62291526794434,1.72747468948364,-5.15852165222168,9.74481105804443,1.6676173210144,-5.15767383575439,9.84956455230713,1.80961751937866,-5.23495817184448,9.66826820373535,1.74777281284332,-5.18581342697144,9.75107097625732,1.91643583774567,-5.72711324691772,9.5975456237793,2.07976603507996,-5.74564027786255,9.57506084442139,1.98536515235901,-5.73789215087891,9.59651660919189,2.02245783805847,-3.61103582382202,8.97729206085205,1.9353836774826,-4.8416600227356,9.39909172058105,1.84599637985229,-5.23458528518677,9.54294490814209,1.83907079696655,-5.29887056350708,9.57698154449463,1.88706493377686,-5.18942403793335,9.50742435455322,1.85793554782867,-5.26300859451294,9.55139541625977,1.90585315227509,-5.06111478805542,9.40726089477539,1.9121413230896,-4.99115467071533,9.40340900421143,2.18109273910522,-3.58336782455444,8.6764497756958,2.10547995567322,-4.86570835113525,9.0840425491333,2.17488718032837,-5.73093557357788,9.33788967132568,2.21659255027771,-5.71024370193481,9.10509204864502,2.20728421211243,-5.72150659561157,9.21305465698242, +2.00908517837524,-5.06467771530151,9.18466091156006,1.97167992591858,-5.04156064987183,9.30147361755371,2.07563090324402,-5.19960069656372,9.08407688140869,2.02731251716614,-5.09609651565552,9.1858024597168,2.09170603752136,-5.27031946182251,9.01190376281738,2.09290289878845,-5.15507316589355,9.02957153320313,2.17154216766357,-5.6849799156189,8.96569538116455,2.33686661720276,-5.70256185531616,8.92179489135742,2.23649549484253,-5.69270706176758,8.95033359527588,2.3402054309845,-3.53412818908691,8.31560134887695,2.27525782585144,-4.82226657867432,8.76768112182617,2.24700164794922,-5.06174516677856,8.76805210113525,2.25480031967163,-4.99242925643921,8.76817321777344,2.14965128898621,-5.22609329223633,8.91264629364014,2.12107682228088,-5.32847785949707,8.95840549468994,2.20441699028015,-5.1474552154541,8.86599445343018,2.15593957901001,-5.25232219696045,8.9181604385376,2.46883249282837,-3.48684215545654,7.96456861495972,2.41295719146729,-4.80944633483887,8.4138355255127,2.5071222782135,-5.68907690048218,8.68220615386963,2.57294845581055,-5.65895128250122,8.33833408355713,2.56053161621094,-5.67529582977295,8.49959468841553,2.43548536300659,-5.15020132064819,8.26579856872559,2.42856049537659,-5.05244398117065,8.3100471496582,2.38287305831909,-5.05493497848511,8.49727916717529,2.33455371856689,-5.08148908615112,8.65361499786377,2.45259785652161,-5.11785173416138,8.35070896148682,2.40571355819702,-5.08747005462646,8.49636554718018,2.49701142311096,-5.63119173049927,8.216721534729,2.62317228317261,-5.64838314056396,8.10554695129395,2.55408382415771,-5.64072895050049,8.1782054901123,2.53322505950928,-3.44001388549805,7.61496782302856,2.46994733810425,-4.76405715942383,8.06769847869873,2.41733336448669,-5.12399673461914,8.17035579681396,2.42999362945557,-5.20708465576172,8.2091064453125,2.44264674186707,-5.05684375762939,8.11344528198242,2.43238234519958,-5.15224266052246,8.17349433898926,2.42243146896362,-4.93146657943726,7.98725986480713,2.43484854698181,-4.88004207611084,8.01153469085693,2.58631587028503,-3.36392593383789,7.07006502151489, +2.50926947593689,-4.73791790008545,7.49767446517944,2.61648321151733,-5.60670042037964,7.7851881980896,2.6359851360321,-5.55877542495728,7.45898151397705,2.63121271133423,-5.58071756362915,7.60861539840698,2.43380999565125,-4.89644432067871,7.65153789520264,2.45171999931335,-4.91125011444092,7.82333564758301,2.46270298957825,-4.9930682182312,7.48904657363892,2.45888614654541,-4.92788362503052,7.6465916633606,2.44121360778809,-5.0602707862854,7.38465309143066,2.46238493919373,-4.97526693344116,7.40415477752686,0.246428549289703,-5.82561588287354,10.8254709243774,0.137858554720879,-5.8268518447876,10.8261938095093,2.66273069381714,-5.82068872451782,6.30041408538818,2.60200071334839,-5.74568367004395,6.21926403045654,2.77400875091553,-5.75696134567261,6.39206981658936,2.69377112388611,-5.75503396987915,6.2871527671814,0.837828814983368,-6.1787543296814,10.4386072158813,0.850481986999512,-6.1179986000061,10.4541006088257,1.32694685459137,-6.19051742553711,10.3292140960693,1.35162222385406,-6.11993551254272,10.3437271118164,1.10177195072174,-5.78057861328125,10.4750280380249,0.82565450668335,-5.79872941970825,10.5181884765625,1.46528315544128,-5.75787258148193,10.1603355407715,0.711750507354736,-6.21345472335815,10.6553907394409,0.737540721893311,-6.14440011978149,10.6694641113281,1.53612375259399,-6.15566396713257,10.1063566207886,1.55045235157013,-6.09379148483276,10.1244239807129,0.425521582365036,-5.81985569000244,10.7984733581543,1.79361939430237,-5.75090217590332,10.0846815109253,1.96132659912109,-6.15349531173706,9.81819248199463,1.99348795413971,-6.08238744735718,9.83203506469727,1.93490552902222,-5.72276449203491,9.63778209686279,1.97637510299683,-6.10247945785522,9.56428813934326,1.99945819377899,-6.04880857467651,9.57936191558838,2.13771224021912,-5.74113321304321,9.47379016876221,2.17974185943604,-6.09915924072266,9.20094013214111,2.21436262130737,-6.03561639785767,9.21235179901123,2.18475604057312,-5.69440841674805,9.01995468139648,2.22622561454773,-6.03745031356812,8.9305534362793,2.2452495098114,-5.99182844161987,8.94156837463379, +2.42983388900757,-5.69980192184448,8.82768249511719,2.4861044883728,-6.04573059082031,8.48531055450439,2.53497719764709,-5.98618602752686,8.4938383102417,2.52757406234741,-5.6408109664917,8.25703907012939,2.47552156448364,-5.97767925262451,8.12065124511719,2.51460218429565,-5.93028497695923,8.14033699035645,2.62890028953552,-5.63312721252441,7.9626727104187,2.56434798240662,-5.93740749359131,7.59262275695801,2.60852527618408,-5.87507486343384,7.59661674499512,2.5937192440033,-5.54469203948975,7.36269903182983,2.60772895812988,-5.8378438949585,7.16555786132813,2.64044451713562,-5.78956842422485,7.17555570602417,2.7715368270874,-5.52833938598633,6.92693424224854,2.72409749031067,-5.81995344161987,6.54902982711792,2.7691478729248,-5.7579870223999,6.54846382141113,0.186176478862762,-5.40599918365479,10.5604429244995,0.408962994813919,-5.37765836715698,10.5297174453735,0.286388486623764,-5.38923454284668,10.5522413253784,1.325035572052,-5.36255979537964,9.95902156829834,1.42851531505585,-5.32881593704224,9.76651668548584,1.36372089385986,-5.34021043777466,9.86811637878418,1.94158887863159,-5.32511186599731,8.82122325897217,1.92996776103973,-5.28943252563477,8.59484100341797,1.92208695411682,-5.30168724060059,8.72125053405762,2.24429416656494,-5.00509595870972,7.15655708312988,0.821990370750427,-6.10083627700806,10.3223876953125,0.928407192230225,-5.96340847015381,10.2915315628052,1.05242145061493,-6.09419918060303,10.2619771957397,0.937243938446045,-6.17199945449829,10.3191995620728,0.92657870054245,-6.09543037414551,10.2999811172485,1.04016304016113,-4.97368860244751,10.1728649139404,1.08999192714691,-5.08548498153687,10.1295099258423,-7.67204910516739e-05,-4.82760667800903,10.4434747695923,0.0763324722647667,-4.79100894927979,10.3860998153687,0.0387615188956261,-4.8633074760437,10.4919900894165,0.0551605597138405,-4.82843399047852,10.4429531097412,1.64429950714111,-6.04884767532349,9.40957260131836,1.63792824745178,-5.92446565628052,9.29218292236328,1.7149806022644,-6.04238224029541,9.17246723175049,1.71577668190002,-6.11391878128052,9.30952644348145, +1.6626843214035,-6.04944658279419,9.29476261138916,1.71673262119293,-4.90206718444824,9.20643615722656,1.72381734848022,-5.05477571487427,9.14552783966064,1.3260737657547,-4.78569936752319,9.7157096862793,2.08884501457214,-5.91932535171509,7.93646907806396,2.05986857414246,-5.79199028015137,7.84212493896484,2.10913705825806,-5.89180088043213,7.70996999740601,2.14431834220886,-5.97305107116699,7.83440399169922,2.09011888504028,-5.91011047363281,7.83400630950928,2.10555624961853,-4.76589059829712,7.68279552459717,2.10858249664307,-4.85247659683228,7.62794589996338,1.87838733196259,-4.59503698348999,8.43730449676514,2.22288084030151,-5.65008878707886,6.55651426315308,2.32619524002075,-4.95285987854004,6.29020309448242,2.28337454795837,-4.87071323394775,6.30008888244629,-7.67204910516739e-05,-3.9584653377533,6.98886203765869,0.35977703332901,-3.81218218803406,6.71512842178345,0.38803294301033,-4.05646705627441,7.28638696670532,0.375374138355255,-3.97162222862244,6.98015403747559,0.169618412852287,-6.1231107711792,10.5979661941528,0.287025183439255,-5.988205909729,10.5854339599609,0.440563231706619,-6.11404848098755,10.5666961669922,0.306368172168732,-6.19124126434326,10.6185121536255,0.294505149126053,-6.11588954925537,10.5919895172119,0.666700124740601,-6.13303661346436,10.4265365600586,0.740006387233734,-6.00004625320435,10.398907661438,0.758788824081421,-6.10812997817993,10.3846988677979,0.718675434589386,-6.1850004196167,10.4072217941284,0.725919544696808,-6.12282848358154,10.3988599777222,0.650937855243683,-5.39533662796021,10.4212408065796,0.794689834117889,-5.47476577758789,10.408164024353,0.736980140209198,-5.44269752502441,10.4122934341431,1.37757205963135,-6.10226678848267,9.94392013549805,1.40503168106079,-5.95820379257202,9.86252021789551,1.51479339599609,-6.0747766494751,9.77573490142822,1.49752128124237,-6.16524887084961,9.8830623626709,1.44053173065186,-6.09168291091919,9.86570739746094,1.62821853160858,-6.05386161804199,9.60113048553467,1.66188967227936,-5.92327165603638,9.56415939331055,1.71434366703033,-6.03816080093384,9.54702377319336, +1.72118628025055,-6.10439252853394,9.58134269714355,1.6858434677124,-6.04370927810669,9.57003784179688,1.56685149669647,-5.3568754196167,9.60207843780518,1.65360546112061,-5.39749765396118,9.56203746795654,1.62527680397034,-5.3816089630127,9.57783508300781,1.96100866794586,-6.00411128997803,8.82915496826172,1.9224054813385,-5.88084697723389,8.73263740539551,1.95010709762573,-5.99304389953613,8.58433055877686,1.98974215984344,-6.06311559677124,8.71806716918945,1.94318199157715,-6.00318956375122,8.7229175567627,2.0249297618866,-5.9622950553894,8.26840019226074,2.06225824356079,-5.82613277435303,8.17712116241455,2.14567542076111,-5.91247653961182,8.09736251831055,2.14798188209534,-5.98181676864624,8.17105484008789,2.0968029499054,-5.93409490585327,8.17023372650146,2.02006888389587,-5.28791952133179,8.30005550384521,2.05660724639893,-5.29694747924805,8.13282680511475,2.04904460906982,-5.29619359970093,8.20464706420898,2.20966768264771,-5.68408060073853,7.14621591567993,2.20353841781616,-5.78885459899902,7.03546905517578,2.18379998207092,-5.67091464996338,6.90352153778076,2.24158644676208,-5.76317119598389,6.71711730957031,2.27637243270874,-5.8389949798584,6.87727737426758,2.21611475944519,-5.77779912948608,6.88765811920166,2.1861891746521,-5.18651103973389,7.06976270675659,2.20369744300842,-5.14053010940552,6.74492788314819,2.18658423423767,-5.16320753097534,6.92189598083496,1.24377179145813,-6.11098718643188,10.1056795120239,1.31134414672852,-5.97287893295288,10.0681858062744,1.33586037158966,-6.08797979354858,10.0490570068359,1.3003603219986,-6.16207933425903,10.0806865692139,1.3011566400528,-6.09937143325806,10.0716905593872,1.23143100738525,-5.36108875274658,10.0816946029663,1.34167098999023,-5.39989280700684,10.0577201843262,1.30402386188507,-5.38513517379761,10.0656757354736,0.860115110874176,-5.39775514602661,10.3183031082153,1.03093147277832,-5.3446741104126,10.2140007019043,0.934058725833893,-5.36277103424072,10.2695369720459,0.926024436950684,-4.86019468307495,10.1273174285889,0.632550776004791,-4.88005113601685,10.2919750213623, +0.773518443107605,-4.99328756332397,10.3273773193359,0.817931473255157,-5.2043628692627,10.3473539352417,-7.67204910516739e-05,-4.89575910568237,10.5324831008911,0.0292112790048122,-4.92700052261353,10.5663976669312,0.0296066403388977,-4.89541912078857,10.5316677093506,0.0504655167460442,-5.01350450515747,10.6269931793213,0.0533259995281696,-5.19576406478882,10.64195728302,0.445182114839554,-4.99293184280396,10.4821138381958,0.485932171344757,-5.08079099655151,10.4631299972534,1.86151683330536,-6.00480508804321,8.98930644989014,1.95018374919891,-5.87137508392334,8.95053768157959,2.02787303924561,-5.97562074661255,8.93642425537109,1.98456823825836,-6.03864812850952,8.96684455871582,1.96148633956909,-5.98455810546875,8.95667362213135,1.82577466964722,-5.35777711868286,9.0042896270752,1.99340581893921,-5.38977289199829,8.94283771514893,1.92471218109131,-5.38095664978027,8.96782970428467,1.60712385177612,-5.37224245071411,9.44071674346924,1.68266773223877,-5.33764410018921,9.1995906829834,1.63028872013092,-5.35114717483521,9.32604312896729,1.61596071720123,-4.69843578338623,9.16233348846436,1.4694242477417,-4.74452495574951,9.47203159332275,1.59375727176666,-4.92087697982788,9.47666549682617,1.61381363868713,-5.1370906829834,9.49890995025635,1.13432204723358,-4.82753372192383,9.95303153991699,1.27743721008301,-4.95821237564087,9.9718599319458,1.30569326877594,-5.13906717300415,9.99788284301758,1.44801104068756,-4.94233655929565,9.74861526489258,1.4711766242981,-5.08394289016724,9.69204616546631,2.15483069419861,-5.84213399887085,7.41336584091187,2.1905665397644,-5.70176649093628,7.30723094940186,2.2501814365387,-5.78243350982666,7.21115446090698,2.25074195861816,-5.8577127456665,7.30153751373291,2.2104640007019,-5.80747747421265,7.30093145370483,2.12052226066589,-5.17634010314941,7.45029163360596,2.22399592399597,-5.17915391921997,7.24811840057373,2.18149399757385,-5.17578315734863,7.33958625793457,2.02405047416687,-5.24577903747559,7.97601079940796,2.04729223251343,-5.19134044647217,7.73314571380615,2.02794981002808,-5.21531534194946,7.86455249786377, +1.90330493450165,-4.47847080230713,7.55332088470459,1.90696799755096,-4.53847312927246,8.04321670532227,2.07690501213074,-4.79959678649902,8.08755874633789,2.0754714012146,-5.00528717041016,8.06597137451172,1.75326490402222,-4.6523609161377,8.8609504699707,1.8850771188736,-4.87454414367676,8.88124465942383,1.95297384262085,-5.12037134170532,8.87244510650635,2.00407075881958,-4.84943151473999,8.5842227935791,2.02771425247192,-4.98613929748535,8.49838161468506,2.29683065414429,-5.6382474899292,6.2773904800415,2.2593367099762,-5.14606666564941,6.39601182937622,2.33519124984741,-5.12082242965698,6.21801853179932,2.29809832572937,-5.13455247879028,6.28661584854126,2.29157423973083,-4.85793352127075,6.55554151535034,1.85546445846558,-4.20000314712524,6.50439786911011,2.17082834243774,-4.68411588668823,6.59617805480957,2.25678825378418,-4.80195474624634,6.55563545227051,2.13970518112183,-4.71264457702637,7.13491487503052,2.21547770500183,-4.91827392578125,7.15354251861572,2.25177407264709,-4.87821626663208,6.90782165527344,2.22606658935547,-4.81624126434326,6.89821529388428,-7.67204910516739e-05,-6.14056253433228,10.6504936218262,0.0340659208595753,-6.01094055175781,10.6377286911011,0.0389211177825928,-6.20711088180542,10.6502695083618,0.0358948782086372,-6.13796138763428,10.6417560577393,0.301347762346268,-5.13962745666504,10.5470905303955,0.30055758357048,-5.08769702911377,10.5466318130493,0.0534856021404266,-5.28108501434326,10.6435079574585,0.571738719940186,-5.99353218078613,10.4897956848145,0.699887335300446,-5.28515005111694,10.4222755432129,0.676645755767822,-5.1942024230957,10.4103212356567,0.494450360536575,-5.13222646713257,10.4613428115845,0.787127017974854,-5.98200082778931,10.3582763671875,0.836158335208893,-5.30040502548218,10.3648710250854,0.931038081645966,-5.14778614044189,10.2483787536621,0.927610754966736,-5.08898401260376,10.2462596893311,1.1640944480896,-5.96804332733154,10.1708030700684,1.10400140285492,-5.14506006240845,10.119909286499,1.28348922729492,-5.22202062606812,10.0626363754272,1.24910402297974,-5.14094305038452,10.0589284896851, +1.33936440944672,-5.97088193893433,10.0099296569824,1.35345125198364,-5.14177560806274,9.86582660675049,1.35631775856018,-5.07640743255615,9.86119174957275,1.32384395599365,-5.22253799438477,10.0166835784912,1.54193484783173,-5.93096017837524,9.66748237609863,1.61420845985413,-5.25503540039063,9.58355617523193,1.57974672317505,-5.1564826965332,9.58060646057129,1.48550534248352,-5.15513181686401,9.68349075317383,1.6569527387619,-5.92647075653076,9.49569129943848,1.63434553146362,-5.23311138153076,9.51705646514893,1.63904559612274,-5.127037525177,9.35101509094238,1.63817203044891,-5.05470132827759,9.34469985961914,1.76082706451416,-5.89473915100098,9.05418682098389,1.73257112503052,-5.13085269927979,9.13426876068115,1.90784096717834,-5.26923036575317,8.99398708343506,1.86860132217407,-5.15683317184448,8.99800872802734,2.0029559135437,-5.88165235519409,8.90550804138184,1.96649992465973,-5.05836963653564,8.71498394012451,1.95917952060699,-4.99277925491333,8.71739482879639,1.99157667160034,-5.22366094589233,8.87605953216553,1.94652652740479,-5.85800170898438,8.42519664764404,2.09687900543213,-5.14430522918701,8.21382427215576,2.07992577552795,-5.05013561248779,8.24398899078369,2.03885722160339,-5.05353832244873,8.47288417816162,2.09306287765503,-5.8088002204895,8.0347375869751,2.07658696174622,-5.09675216674805,8.05501079559326,2.0677502155304,-4.93245363235474,7.88428354263306,2.07515335083008,-4.87675619125366,7.89324283599854,2.09529209136963,-5.7505259513855,7.56198787689209,2.11049389839172,-4.90567970275879,7.61822128295898,2.19916129112244,-5.0022406578064,7.3518385887146,2.17671608924866,-4.9220609664917,7.35746097564697,0.0990197658538818,-6.00180387496948,10.6008262634277,2.27239060401917,-5.75701570510864,6.4032621383667,2.374272108078,-5.74866580963135,6.19916963577271,2.36925768852234,-5.82069063186646,6.29629898071289,2.32293319702148,-5.75506639480591,6.28545475006104,0.778609395027161,-6.16701364517212,10.3600177764893,0.778449833393097,-6.10288381576538,10.3549547195435,1.16664302349091,-6.1793041229248,10.2051277160645, +1.15947556495667,-6.10430669784546,10.1831855773926,0.571101486682892,-6.19947624206543,10.5205993652344,0.568075180053711,-6.12496137619019,10.4970645904541,1.37820935249329,-6.15687704086304,10.0106410980225,1.35201752185822,-6.09499311447144,10.0057744979858,1.62877905368805,-6.13793706893921,9.70009803771973,1.57425463199615,-6.06321001052856,9.67862319946289,1.72038996219635,-6.09791660308838,9.49898338317871,1.68107306957245,-6.04250335693359,9.49363613128662,1.82545614242554,-6.09793281555176,9.08753299713135,1.78032898902893,-6.02580404281616,9.06590557098389,2.02484679222107,-6.03453397750854,8.89117813110352,2.00844788551331,-5.98847103118896,8.89710330963135,2.03845620155334,-6.04081392288208,8.41938591003418,1.97669363021851,-5.98061990737915,8.41966342926025,2.16994953155518,-5.96357154846191,8.02015972137451,2.12521815299988,-5.91383123397827,8.02179908752441,2.1814112663269,-5.93296003341675,7.5623574256897,2.12585473060608,-5.86960124969482,7.55970764160156,2.27621364593506,-5.83205604553223,7.12649011611938,2.23139905929565,-5.78330945968628,7.13298797607422,2.31107616424561,-5.81996726989746,6.54831314086914,2.2528121471405,-5.75801706314087,6.5514178276062,0,-6.23420095443726,10.6710348129272,0.0425840802490711,-6.23896408081055,10.7079133987427,0.0419473573565483,-6.23420381546021,10.6754026412964,0.466589748859406,-6.22927379608154,10.6432409286499,0.347277283668518,-6.24602651596069,10.7361726760864,0.19548536837101,-6.23483800888062,10.6854448318481,0.32212433218956,-6.23096084594727,10.677041053772,0.680468320846558,-6.23354291915894,10.4814872741699,0.62291818857193,-6.24517917633057,10.6125583648682,0.589889407157898,-6.23515129089355,10.5659761428833,0.754252195358276,-6.18786001205444,10.3930158615112,0.741758644580841,-6.21124076843262,10.4497108459473,0.726473987102509,-6.20910120010376,10.425952911377,0.853987097740173,-6.21186351776123,10.3657112121582,0.80670577287674,-6.20344066619873,10.3982582092285,0.789994180202484,-6.19608163833618,10.376443862915,1.0931715965271,-6.21170139312744,10.3130474090576, +1.00434482097626,-6.229079246521,10.3874664306641,0.966379046440125,-6.21340322494507,10.3506259918213,1.27902936935425,-6.21461248397827,10.1519069671631,1.24544107913971,-6.22857141494751,10.2696866989136,1.19991254806519,-6.21731281280518,10.2356119155884,1.35998070240021,-6.16723299026489,10.0586633682251,1.35663652420044,-6.19053888320923,10.1142635345459,1.32288861274719,-6.18766784667969,10.0960445404053,1.49266648292542,-6.20759439468384,9.99063396453857,1.46425104141235,-6.18948268890381,10.0571002960205,1.41879987716675,-6.18443918228149,10.0303316116333,1.65186011791229,-6.19127702713013,9.82794666290283,1.65997660160065,-6.21759796142578,9.96387195587158,1.57496869564056,-6.20521783828735,9.91913318634033,1.74864602088928,-6.16345930099487,9.64427280426025,1.80173671245575,-6.19523477554321,9.76203060150146,1.70932948589325,-6.18010282516479,9.72939014434814,1.77976894378662,-6.10918617248535,9.55600070953369,1.82688963413239,-6.14048480987549,9.60496234893799,1.77085554599762,-6.13309478759766,9.59326553344727,1.78263568878174,-6.12304878234863,9.4449405670166,1.84853887557983,-6.10888671875,9.5295524597168,1.77905511856079,-6.11172866821289,9.51222991943359,1.84392607212067,-6.12006759643555,9.21766185760498,1.913250207901,-6.11746263504028,9.37184143066406,1.80412578582764,-6.12493467330933,9.33722972869873,1.96769773960114,-6.0902853012085,9.03364944458008,1.99826037883759,-6.10219812393188,9.14531421661377,1.90250825881958,-6.11084985733032,9.11484909057617,2.06567931175232,-6.02549171447754,8.93746852874756,2.08016753196716,-6.04765796661377,8.99182891845703,2.02723598480225,-6.05138683319092,8.97891807556152,2.06153869628906,-6.06937503814697,8.83524036407471,2.12394332885742,-6.04021501541138,8.90776824951172,2.0675904750824,-6.04410123825073,8.89664459228516,2.10444140434265,-6.04720067977905,8.59602451324463,2.18395900726318,-6.04982328414917,8.757399559021,2.07610869407654,-6.06345844268799,8.73276424407959,2.17839121818542,-6.02843379974365,8.28049278259277,2.26124811172485,-6.02696132659912,8.45082664489746, +2.13938689231873,-6.0411114692688,8.43193912506104,2.24477243423462,-5.96651697158813,8.10960674285889,2.30000948905945,-5.98965311050415,8.19709491729736,2.21890473365784,-5.99262189865112,8.18166732788086,2.22901010513306,-6.0016918182373,7.95667362213135,2.32309222221375,-5.98703908920288,8.06682109832764,2.23999381065369,-5.98292922973633,8.03853225708008,2.25272917747498,-5.95306921005249,7.72386360168457,2.34769082069397,-5.97587633132935,7.87852573394775,2.23625349998474,-5.98257160186768,7.85232257843018,2.29022288322449,-5.92270231246948,7.42056274414063,2.37387633323669,-5.93167209625244,7.57836294174194,2.26936483383179,-5.94088983535767,7.56949234008789,2.34386897087097,-5.83793687820435,7.21732473373413,2.40141844749451,-5.87683057785034,7.31838417053223,2.31903409957886,-5.87540626525879,7.30841445922852,2.35763645172119,-5.86648988723755,7.02719736099243,2.44400358200073,-5.85108947753906,7.14324331283569,2.35230422019958,-5.84942388534546,7.13183546066284,2.39122581481934,-5.82123041152954,6.71133613586426,2.4873788356781,-5.83587741851807,6.88590526580811,2.37284445762634,-5.84577035903931,6.87893390655518,2.42075634002686,-5.84086990356445,6.40657758712769,2.51977515220642,-5.81626129150391,6.55002737045288,2.4061906337738,-5.82668161392212,6.54862117767334,2.45394897460938,-5.82781839370728,6.22352886199951,2.51858425140381,-5.84261131286621,6.3023624420166,2.43826961517334,-5.84264087677002,6.30083560943604,0.231940805912018,-6.24994277954102,10.7890882492065,0.140566155314445,-6.22369813919067,10.8224611282349,0.133640632033348,-6.24663591384888,10.7465028762817,0.138578161597252,-6.24836540222168,10.7921237945557,0.550644040107727,-6.24428033828735,10.7154684066772,0.387236624956131,-6.24764776229858,10.7644128799438,0.738018333911896,-6.23334169387817,10.5530605316162,0.668446242809296,-6.24251985549927,10.6393938064575,0.76985490322113,-6.18956565856934,10.421350479126,0.756641209125519,-6.20781993865967,10.473126411438,0.914002299308777,-6.22303295135498,10.4319543838501,0.822945773601532,-6.20250511169434,10.4194488525391, +1.1759512424469,-6.22539186477661,10.3837080001831,1.04119575023651,-6.22803449630737,10.423360824585,1.36626958847046,-6.21271324157715,10.209267616272,1.28961837291718,-6.2231879234314,10.3027172088623,1.41697084903717,-6.16682815551758,10.0852346420288,1.38967084884644,-6.18517923355103,10.1319999694824,1.62344610691071,-6.20723819732666,10.0742988586426,1.50540208816528,-6.18378114700317,10.0831432342529,1.83517217636108,-6.19839239120483,9.90555000305176,1.73957335948944,-6.20835256576538,10.0072154998779,1.90744006633759,-6.17108869552612,9.69009876251221,1.89152431488037,-6.18872213363647,9.79325485229492,1.86780500411987,-6.11018180847168,9.56925678253174,1.88157320022583,-6.13695287704468,9.61616134643555,1.99006080627441,-6.1268572807312,9.50750827789307,1.92017614841461,-6.11417961120605,9.54731559753418,2.05804038047791,-6.11834001541138,9.28408336639404,2.02890563011169,-6.12618923187256,9.40709781646729,2.13142347335815,-6.09084939956665,9.08338737487793,2.09919142723083,-6.10985374450684,9.17624759674072,2.13970518112183,-6.02600765228271,8.9481372833252,2.13405418395996,-6.05195999145508,9.00514888763428,2.23943948745728,-6.07251739501953,8.87739562988281,2.18133425712585,-6.04572677612305,8.91915607452393,2.34442257881165,-6.05066967010498,8.64320373535156,2.29467678070068,-6.06716156005859,8.78227043151855,2.40348315238953,-6.03091335296631,8.31009769439697,2.38581609725952,-6.04387521743774,8.46977615356445,2.36758828163147,-5.97164964675903,8.14973545074463,2.38199353218079,-5.99588823318481,8.21236228942871,2.45291686058044,-6.01118564605713,8.02205657958984,2.40659213066101,-5.99097490310669,8.0952091217041,2.45904588699341,-5.95749092102051,7.7539496421814,2.46039652824402,-5.99008321762085,7.90378856658936,2.49573683738708,-5.92459678649902,7.43358135223389,2.47918510437012,-5.94334602355957,7.58628606796265,2.48356199264526,-5.84189033508301,7.24426984786987,2.48372077941895,-5.87834930419922,7.32845306396484,2.5913360118866,-5.86851215362549,7.04255485534668,2.5356969833374,-5.85274696350098,7.15455961227417, +2.60382986068726,-5.82149744033813,6.72048091888428,2.60200071334839,-5.84679460525513,6.89122009277344,2.6463315486908,-5.8408522605896,6.40299320220947,2.63336038589478,-5.82665920257568,6.54978227615356,2.54190230369568,-5.82783651351929,6.23660564422607,2.59889221191406,-5.84258365631104,6.303795337677,0.176862567663193,-4.9685378074646,10.725546836853,0.178213283419609,-5.14227962493896,10.7214317321777,0.159354165196419,-5.20709037780762,10.6159152984619,0.158953204751015,-5.13926792144775,10.6123895645142,2.16032195091248,-4.63492059707642,6.35010147094727,2.16454005241394,-4.6992130279541,6.84043788909912,2.12211489677429,-4.7338662147522,7.3962082862854,2.09329867362976,-4.78276300430298,7.88114452362061,2.05119156837463,-4.82722282409668,8.33678722381592,1.95742750167847,-4.85762071609497,8.71256256103516,1.80062735080719,-4.894211769104,9.05072116851807,1.66021466255188,-4.90851783752441,9.3226490020752,1.52402544021606,-4.93551921844482,9.61845779418945,1.38170719146729,-4.9469051361084,9.84668636322021,1.16393482685089,-4.96858882904053,10.0794248580933,0.934058725833893,-4.97818994522095,10.241358757019,0.607079207897186,-4.99794101715088,10.4075193405151,0.315440714359283,-4.99706411361694,10.5372972488403,0.246511429548264,-5.21204662322998,10.7027978897095,0.173918634653091,-5.21407032012939,10.7190637588501,0.166273519396782,-5.24695348739624,10.7230825424194,0.126237437129021,-5.42249059677124,10.5738525390625,0.688030540943146,-5.38145542144775,10.6259078979492,0.362797141075134,-5.17924976348877,10.661789894104,0.755526781082153,-5.31603527069092,10.4882488250732,0.896972179412842,-5.45260906219482,10.4559268951416,1.10105240345001,-5.16190147399902,10.3199367523193,1.34573483467102,-5.34129858016968,10.2636613845825,1.42134833335876,-5.26597881317139,10.1007375717163,1.51463437080383,-5.39827156066895,10.1090993881226,1.5908899307251,-5.17470169067383,9.95172595977783,1.84909915924072,-5.3420557975769,9.79553604125977,1.83150851726532,-5.28115892410278,9.6130952835083,1.91985750198364,-5.39472675323486,9.5806827545166, +1.92487740516663,-5.09416818618774,9.41640472412109,2.12084054946899,-5.31265735626221,9.19946956634521,2.10062503814697,-5.29398012161255,9.01094150543213,2.19438910484314,-5.3654260635376,8.93744468688965,2.26570725440979,-5.09604549407959,8.77732372283936,2.49995493888855,-5.28837776184082,8.50004482269287,2.44877600669861,-5.17671394348145,8.26155281066895,2.51221299171448,-5.2968373298645,8.19015884399414,2.44774317741394,-4.9653959274292,7.98782444000244,2.5634753704071,-5.17045927047729,7.63038063049316,2.45689249038696,-5.08468770980835,7.38189697265625,2.59403705596924,-5.23268222808838,7.22093057632446,2.60765242576599,-4.91723775863647,6.96965503692627,2.73667454719543,-5.13699293136597,6.57012557983398,2.61624717712402,-5.04084634780884,6.2415599822998,2.62476491928101,-4.98053407669067,6.30407524108887,2.22789525985718,-5.14150047302246,6.55919456481934,2.21205592155457,-5.18721342086792,7.16838359832764,2.07698178291321,-5.17987251281738,7.58828735351563,2.04092764854431,-5.27656745910645,8.06105804443359,1.97152042388916,-5.28518962860107,8.44222545623779,1.98218560218811,-5.36283731460571,8.89448833465576,1.74649894237518,-5.34158611297607,9.08690929412842,1.63124704360962,-5.39109706878662,9.51782894134521,1.49871850013733,-5.33682298660278,9.67146015167236,1.33323514461517,-5.38740348815918,10.0221710205078,1.13527798652649,-5.3458890914917,10.1412086486816,0.824697971343994,-5.44743967056274,10.3706474304199,0.536079585552216,-5.37668561935425,10.4732055664063,2.04562282562256,-4.57646083831787,6.89951705932617,2.04769396781921,-4.52924251556396,6.57404136657715,2.10158038139343,-4.62104320526123,6.72384881973267,2.04172372817993,-4.64238119125366,7.65060091018677,2.03129410743713,-4.67021989822388,7.93083524703979,2.06870555877686,-4.71014356613159,7.7919750213623,1.96785688400269,-4.74430322647095,8.55517482757568,1.90043783187866,-4.76295328140259,8.75462627410889,1.95846617221832,-4.79433917999268,8.65931034088135,1.69173872470856,-4.81615018844604,9.20237064361572,1.61166608333588,-4.83111333847046,9.3654842376709, +1.67072641849518,-4.8535099029541,9.27618408203125,1.40312027931213,-4.87468671798706,9.74563407897949,1.30664849281311,-4.88759326934814,9.88013362884521,1.38648498058319,-4.90268516540527,9.80770301818848,0.986512184143066,-4.92256879806519,10.16273021698,0.831540584564209,-4.9298038482666,10.2566366195679,0.948546469211578,-4.94296216964722,10.2107849121094,0.411752879619598,-4.95003175735474,10.4580230712891,0.244676887989044,-4.94905757904053,10.5227603912354,0.351017504930496,-4.96786832809448,10.5040454864502,2.05358099937439,-4.32579469680786,6.29204225540161,2.03694581985474,-4.42243957519531,6.4269003868103,1.87687766551971,-4.42844390869141,7.04257583618164,2.04275631904602,-4.58085632324219,7.2770209312439,2.03551197052002,-4.56761264801025,7.08492183685303,2.03893351554871,-4.60245275497437,7.47223377227783,2.01776242256165,-4.69018220901489,8.21164226531982,2.02229905128479,-4.66989278793335,8.06455039978027,1.99364757537842,-4.71235132217407,8.39055728912354,1.7914719581604,-4.778724193573,8.98734951019287,1.84551870822906,-4.763023853302,8.86764144897461,1.73606932163239,-4.79380893707275,9.10254287719727,1.51200914382935,-4.84543037414551,9.56727409362793,1.5619969367981,-4.83260107040405,9.46528244018555,1.45207619667053,-4.8575611114502,9.66306781768799,1.15286874771118,-4.90220403671265,10.0335512161255,1.23143100738525,-4.89095592498779,9.95738315582275,1.06285047531128,-4.91081666946411,10.1027679443359,0.605728447437286,-4.93106079101563,10.3594102859497,0.716681838035583,-4.92705297470093,10.3072757720947,0.380789339542389,-4.9005446434021,10.4144401550293,0.50034373998642,-4.93824863433838,10.4097013473511,1.04016304016113,-3.96771550178528,6.75447463989258,0.992959558963776,-3.52570533752441,6.34976625442505,1.00816750526428,-3.73918104171753,6.52913522720337,-7.67204910516739e-05,-4.74798107147217,10.3225812911987,0.124727122485638,-4.70928573608398,10.2527637481689,0.10005184262991,-4.75122356414795,10.3224563598633,-7.67204910516739e-05,-4.65933084487915,10.1769323348999,0.171606406569481,-4.62323379516602,10.102972984314, +0.148924723267555,-4.66560745239258,10.1775159835815,0,-4.57800912857056,10.0371942520142,0.211011350154877,-4.5472936630249,9.96690559387207,0.19174513220787,-4.58564424514771,10.0356349945068,-7.67204910516739e-05,-4.49541330337524,9.89371967315674,0.250327825546265,-4.45475387573242,9.79148864746094,0.230985447764397,-4.50286436080933,9.88823890686035,-7.67204910516739e-05,-4.39892959594727,9.67584896087646,0.284158557653427,-4.35712575912476,9.52557849884033,0.267599940299988,-4.40561151504517,9.66836261749268,-7.67204910516739e-05,-4.30472993850708,9.37608337402344,0.320295363664627,-4.26248502731323,9.193190574646,0.301430642604828,-4.31094932556152,9.36964797973633,-7.67204910516739e-05,-4.19903087615967,8.99018478393555,0.362160384654999,-4.15308332443237,8.76627635955811,0.341867685317993,-4.20667600631714,8.98861408233643,-7.67204910516739e-05,-4.10008144378662,8.53670120239258,0.386358022689819,-4.07911968231201,8.31794357299805,0.377285450696945,-4.11137390136719,8.53646659851074,-7.67204910516739e-05,-4.04012060165405,8.13325214385986,0.388269275426865,-4.04566669464111,7.91401243209839,0.388511210680008,-4.05398416519165,8.12930202484131,0,-4.05027151107788,7.62311029434204,0.390257298946381,-4.06385135650635,7.61539936065674,-0.246270060539246,-5.41680717468262,10.7577047348022,-0.566329658031464,-5.38128614425659,10.681791305542,-0.402438968420029,-5.39608001708984,10.7270231246948,-1.59279954433441,-5.3716778755188,10.1045579910278,-1.77953314781189,-5.33451986312866,9.91261291503906,-1.68759822845459,-5.34744930267334,10.0274114608765,-2.27557682991028,-5.32962989807129,8.89839935302734,-2.43492531776428,-5.29290103912354,8.67005157470703,-2.35787892341614,-5.30605792999268,8.80605792999268,-2.57477807998657,-4.98489141464233,7.12168741226196,-2.46660900115967,-5.13603925704956,7.30129432678223,-2.50019764900208,-5.05364608764648,7.22187995910645,-2.51683259010315,-5.08021211624146,7.22337961196899,-0.952286720275879,-6.12730646133423,10.4781188964844,-1.23023986816406,-6.12625408172607,10.4297370910645, +-1.07112765312195,-6.19871234893799,10.4532356262207,-1.08792150020599,-6.12938976287842,10.4722518920898,-1.29232656955719,-5.0667839050293,10.1946229934692,-1.23732435703278,-4.9298210144043,10.2557611465454,-0.563940703868866,-3.78981256484985,10.1971521377563,-0.540539443492889,-4.95295143127441,10.5953779220581,-2.10221266746521,-6.05786371231079,9.5564489364624,-2.18539357185364,-6.04439640045166,9.32894897460938,-2.12020421028137,-6.11656141281128,9.43780994415283,-2.1560230255127,-6.05410432815552,9.45830726623535,-2.0082893371582,-4.99154615402222,9.20073890686035,-2.01505494117737,-4.83223581314087,9.24244499206543,-1.81344068050385,-3.68086624145508,9.40210819244385,-1.72158789634705,-4.9008264541626,9.80685710906982,-2.59045743942261,-5.9391074180603,8.07243824005127,-2.59038019180298,-5.90131378173828,7.77436351776123,-2.55201411247253,-5.98643398284912,7.92556858062744,-2.60000777244568,-5.92604207992554,7.94169330596924,-2.4477436542511,-4.8491415977478,7.68547058105469,-2.48443555831909,-4.74286890029907,7.80917644500732,-2.40993142127991,-3.50977420806885,8.13588333129883,-2.35564923286438,-4.8105297088623,8.59074878692627,-2.78459215164185,-5.49429225921631,6.38666725158691,-2.77806830406189,-5.51153469085693,6.74354219436646,-2.79509830474854,-5.50533866882324,6.55248069763184,-2.61473751068115,-4.87392616271973,6.30552673339844,-2.61139321327209,-4.95285940170288,6.30372381210327,-2.58241653442383,-4.67946624755859,6.98756504058838,-2.6332836151123,-3.28767967224121,6.52517414093018,-0.251685261726379,-6.1558518409729,10.8286790847778,-0.62029355764389,-6.14947462081909,10.7371854782104,-0.422973603010178,-6.22150421142578,10.7779750823975,-0.43507182598114,-6.15349102020264,10.7928981781006,-0.793333530426025,-6.1360502243042,10.5915660858154,-0.793971359729767,-6.11256837844849,10.4474754333496,-0.773360013961792,-6.18317461013794,10.492805480957,-0.793492615222931,-6.12203216552734,10.5054244995117,-0.767230808734894,-5.40177488327026,10.5656452178955,-0.833847343921661,-5.47786331176758,10.465648651123, +-0.803202450275421,-5.44741249084473,10.5072536468506,-1.68329763412476,-6.10219383239746,10.1345090866089,-1.93681156635284,-6.09180784225464,9.9573335647583,-1.79887628555298,-6.17119932174683,10.0438709259033,-1.82275521755219,-6.0999813079834,10.0684766769409,-1.9960310459137,-6.06993532180786,9.71592235565186,-1.92288374900818,-6.04206943511963,9.58533763885498,-1.92495477199554,-6.11152410507202,9.62552928924561,-1.94708132743835,-6.05281352996826,9.63218879699707,-1.88579154014587,-5.36145830154419,9.69441604614258,-1.87457132339478,-5.39900588989258,9.59115314483643,-1.87870693206787,-5.38414192199707,9.6276798248291,-2.33869600296021,-6.01029920578003,8.91247653961182,-2.49008655548096,-5.99994945526123,8.67735481262207,-2.38287281990051,-6.06951522827148,8.80442142486572,-2.42250776290894,-6.01045846939087,8.82058906555176,-2.53999185562134,-5.96709251403809,8.32698440551758,-2.45339512825012,-5.9230375289917,8.18176460266113,-2.44957256317139,-5.98758316040039,8.22527027130127,-2.48730206489563,-5.94068717956543,8.23351097106934,-2.53116130828857,-5.29190921783447,8.34867286682129,-2.4810905456543,-5.30903768539429,8.22675228118896,-2.50608444213867,-5.30312013626099,8.26855659484863,-2.74041485786438,-5.54294681549072,7.08502197265625,-2.57477807998657,-5.53896903991699,7.28717947006226,-2.64919924736023,-5.54244422912598,7.19982957839966,-2.72505402565002,-5.79253578186035,7.06258821487427,-2.73842692375183,-5.76365041732788,6.72922039031982,-2.69401383399963,-5.84068250656128,6.89755344390869,-2.74065661430359,-5.77958679199219,6.90722036361694,-2.67483043670654,-5.19783115386963,7.11063480377197,-2.72943091392517,-5.13624048233032,6.76804351806641,-2.7143120765686,-5.16106271743774,6.95400714874268,-1.42978405952454,-6.1099648475647,10.243049621582,-1.45867741107941,-6.08747577667236,10.1083421707153,-1.41911888122559,-6.15810871124268,10.1467761993408,-1.44188284873962,-6.09604692459106,10.1561756134033,-1.42747735977173,-5.36600542068481,10.1941890716553,-1.46393346786499,-5.41136312484741,10.0993022918701, +-1.45087885856628,-5.39493846893311,10.1334867477417,-0.988984644412994,-5.40275382995605,10.4450454711914,-1.23039901256561,-5.33457040786743,10.3346290588379,-1.10574853420258,-5.35919141769409,10.3998765945435,-1.29741752147675,-3.74451875686646,9.85927677154541,-0.979829251766205,-3.76639318466187,10.0222578048706,-0.905484795570374,-4.95959520339966,10.4361753463745,-0.898718297481537,-5.20458173751831,10.4245805740356,-0.176945433020592,-4.9685378074646,10.725546836853,-0.179009616374969,-3.80354499816895,10.3134431838989,-0.05898367613554,-5.1928563117981,10.7132616043091,-0.0571491271257401,-5.28466129302979,10.6990880966187,-0.552078247070313,-5.08422231674194,10.5733594894409,-2.22415590286255,-6.02156591415405,9.10936832427979,-2.18372392654419,-5.97893047332764,8.96032905578613,-2.17663979530334,-6.04208469390869,9.01570415496826,-2.19526267051697,-5.99576950073242,9.02073001861572,-2.14909768104553,-5.35427951812744,9.0933313369751,-2.14073824882507,-5.39109086990356,8.9628324508667,-2.14073824882507,-5.38381814956665,9.01462173461914,-1.98314142227173,-5.36987113952637,9.54968357086182,-2.07547235488892,-5.29148054122925,9.32239532470703,-2.03225064277649,-5.32303953170776,9.45143127441406,-2.09019589424133,-3.59096431732178,8.8278865814209,-1.96929109096527,-3.64389991760254,9.12462520599365,-1.8733743429184,-4.89144420623779,9.53985595703125,-1.84774911403656,-5.1354022026062,9.53629589080811,-1.59789061546326,-3.71742677688599,9.6675968170166,-1.50556218624115,-4.92667293548584,10.0606355667114,-1.4702216386795,-5.14917039871216,10.0455408096313,-1.72054958343506,-5.08461809158325,9.76005458831787,-2.61784052848816,-5.84616804122925,7.44112205505371,-2.56618332862854,-5.79004096984863,7.26262283325195,-2.54930639266968,-5.86286878585815,7.33647632598877,-2.58114290237427,-5.81336307525635,7.34045124053955,-2.56594133377075,-5.19028902053833,7.4799370765686,-2.52924990653992,-5.24765205383301,7.30459833145142,-2.53720760345459,-5.22478914260864,7.38118886947632,-2.55360674858093,-5.26619529724121,8.12104034423828, +-2.55336427688599,-5.17577457427979,7.80620574951172,-2.55869698524475,-5.21674394607544,7.98145294189453,-2.55113482475281,-3.40678358078003,7.37494039535522,-2.5076003074646,-3.46340703964233,7.79011964797974,-2.44574999809265,-4.79573726654053,8.24600124359131,-2.42489743232727,-5.03045463562012,8.19138431549072,-2.26705861091614,-3.56012415885925,8.5060396194458,-2.19128060340881,-4.85039281845093,8.93075561523438,-2.16159152984619,-5.11873531341553,8.91559505462646,-2.37395405769348,-4.98405885696411,8.5270881652832,-2.62715458869934,-5.42901182174683,6.21318340301514,-2.70873785018921,-5.46296405792236,6.27867794036865,-2.72354388237,-5.14277458190918,6.39971160888672,-2.6293785572052,-5.11680030822754,6.24068880081177,-2.67690086364746,-5.13292789459229,6.29661417007446,-2.63232827186584,-4.92915534973145,6.41459321975708,-2.62404632568359,-4.88413953781128,6.7855920791626,-2.60231995582581,-4.85794878005981,6.59181594848633,-2.632169008255,-4.89259052276611,6.58782196044922,-2.62007021903992,-4.67815494537354,6.30472087860107,-2.66281414031982,-3.28638744354248,5.82048511505127,-2.60207796096802,-4.6534276008606,6.60857820510864,-2.6476891040802,-3.23664593696594,6.1414909362793,-2.60295796394348,-4.79819631576538,6.59765148162842,-2.55105805397034,-4.71743583679199,7.25841617584229,-2.6208667755127,-3.32737493515015,6.8132643699646,-2.51667380332947,-4.96414136886597,7.23243427276611,-2.57995128631592,-4.82382917404175,6.97422170639038,-2.57819962501526,-4.88279342651367,6.9683632850647,-0.0331111177802086,-6.2180643081665,10.7608232498169,-0.0317604020237923,-6.15073442459106,10.7692003250122,-0.340276122093201,-4.95876932144165,10.674464225769,-0.346245765686035,-3.80005931854248,10.2728490829468,-0.340594232082367,-5.09143400192261,10.6644906997681,-0.343773931264877,-5.14614200592041,10.6599750518799,-0.039003998041153,-5.46272850036621,10.7215843200684,-0.730615794658661,-4.96316480636597,10.5156650543213,-0.788083493709564,-3.77777767181396,10.1074657440186,-0.818410336971283,-5.80088090896606,10.5974206924438, +-0.612813651561737,-5.81223726272583,10.7480869293213,-0.745575606822968,-5.80561113357544,10.6775608062744,-0.736585438251495,-5.19503211975098,10.4928035736084,-0.744301617145538,-5.28894329071045,10.4860992431641,-0.686757206916809,-5.21814012527466,10.5301637649536,-0.488563627004623,-5.16111516952515,10.6132593154907,-0.56521475315094,-5.13811635971069,10.5657052993774,-0.597128570079803,-5.17026042938232,10.5706043243408,-0.97346419095993,-5.78964471817017,10.4875783920288,-0.826131641864777,-5.79729986190796,10.4669504165649,-0.878426074981689,-5.79480218887329,10.4708395004272,-1.07351660728455,-4.93617916107178,10.3497266769409,-1.13918399810791,-3.75567102432251,9.94163227081299,-0.991609394550323,-5.23509693145752,10.3936376571655,-0.820639729499817,-5.38121318817139,10.4522428512573,-0.898400247097015,-5.30402421951294,10.4232625961304,-0.898641526699066,-5.33122491836548,10.4292478561401,-1.09787321090698,-5.07038974761963,10.3188095092773,-1.09866333007813,-5.1296706199646,10.3100242614746,-1.38123607635498,-4.93476009368896,10.1622486114502,-1.45326781272888,-3.73259544372559,9.77542972564697,-1.44904983043671,-5.75700235366821,10.2426996231079,-1.24018549919128,-5.77027893066406,10.4280824661255,-1.36491310596466,-5.76183938980103,10.3413133621216,-1.39364671707153,-5.21220302581787,10.1398096084595,-1.21440136432648,-5.12968444824219,10.2391633987427,-1.30792307853699,-5.12646627426147,10.1744384765625,-1.31827020645142,-5.15665435791016,10.1825561523438,-1.39771127700806,-5.15135288238525,10.1096410751343,-1.41211652755737,-5.23901510238647,10.0959196090698,-1.66364240646362,-5.75714492797852,10.155650138855,-1.47817873954773,-5.76028156280518,10.1184663772583,-1.55133199691772,-5.76018714904785,10.1419162750244,-1.61930370330811,-4.90826559066772,9.9417028427124,-1.71673333644867,-3.69902992248535,9.53592681884766,-1.58540034294128,-5.07765579223633,9.93589019775391,-1.57417285442352,-5.14579153060913,9.93711280822754,-1.52339494228363,-5.21743154525757,10.0307359695435,-1.43575382232666,-5.2925910949707,10.0717658996582, +-1.46249938011169,-5.23930597305298,10.0487232208252,-1.47069942951202,-5.26658535003662,10.0596237182617,-1.80683374404907,-4.90261316299438,9.67172622680664,-1.90027940273285,-3.66277027130127,9.26631832122803,-1.97358560562134,-5.72455263137817,9.71689796447754,-1.905930519104,-5.74225854873657,9.96549129486084,-1.96491384506226,-5.73232173919678,9.83455848693848,-1.80731153488159,-5.15477609634399,9.62291526794434,-1.81972897052765,-5.25656270980835,9.61117076873779,-1.80977725982666,-5.23495817184448,9.66826820373535,-1.66770124435425,-5.15767383575439,9.84956455230713,-1.72763419151306,-5.15852165222168,9.74481105804443,-1.74785017967224,-5.18581342697144,9.75107097625732,-2.07984948158264,-5.74564027786255,9.57506084442139,-1.91651928424835,-5.72711324691772,9.5975456237793,-1.98544859886169,-5.73789215087891,9.59651660919189,-1.93546080589294,-4.8416600227356,9.39909172058105,-2.02245831489563,-3.61103582382202,8.97729206085205,-1.88706564903259,-5.18942403793335,9.50742435455322,-1.83914804458618,-5.29887056350708,9.57698154449463,-1.84607362747192,-5.23458528518677,9.54294490814209,-1.85809564590454,-5.26300859451294,9.55139541625977,-1.91221845149994,-4.99115467071533,9.40340900421143,-1.905930519104,-5.06111478805542,9.40726089477539,-2.10555744171143,-4.86570835113525,9.0840425491333,-2.18117570877075,-3.58336782455444,8.6764497756958,-2.2166759967804,-5.71024370193481,9.10509204864502,-2.17496418952942,-5.73093557357788,9.33788967132568,-2.20728468894958,-5.72150659561157,9.21305465698242,-2.07579112052917,-5.19960069656372,9.08407688140869,-1.97175645828247,-5.04156064987183,9.30147361755371,-2.00924515724182,-5.06467771530151,9.18466091156006,-2.02739596366882,-5.09609651565552,9.1858024597168,-2.09298038482666,-5.15507316589355,9.02957153320313,-2.09178924560547,-5.27031946182251,9.01190376281738,-2.33694386482239,-5.70256185531616,8.92179489135742,-2.1716251373291,-5.6849799156189,8.96569538116455,-2.23657274246216,-5.69270706176758,8.95033359527588,-2.27541756629944,-4.82226657867432,8.76768112182617, +-2.3402886390686,-3.53412818908691,8.31560134887695,-2.25488305091858,-4.99242925643921,8.76817321777344,-2.24716114997864,-5.06174516677856,8.76805210113525,-2.20449423789978,-5.1474552154541,8.86599445343018,-2.12116003036499,-5.32847785949707,8.95840549468994,-2.14973473548889,-5.22609329223633,8.91264629364014,-2.1560230255127,-5.25232219696045,8.9181604385376,-2.41304063796997,-4.80944633483887,8.4138355255127,-2.46883296966553,-3.48684215545654,7.96456861495972,-2.57302641868591,-5.65895128250122,8.33833408355713,-2.50728249549866,-5.68907690048218,8.68220615386963,-2.56060838699341,-5.67529582977295,8.49959468841553,-2.42863702774048,-5.05244398117065,8.3100471496582,-2.43556261062622,-5.15020132064819,8.26579856872559,-2.45275807380676,-5.11785173416138,8.35070896148682,-2.33463716506958,-5.08148908615112,8.65361499786377,-2.3829493522644,-5.05493497848511,8.49727916717529,-2.40579581260681,-5.08747005462646,8.49636554718018,-2.62325000762939,-5.64838314056396,8.10554695129395,-2.49717164039612,-5.63119173049927,8.216721534729,-2.55416107177734,-5.64072895050049,8.1782054901123,-2.47010684013367,-4.76405715942383,8.06769847869873,-2.53330898284912,-3.44001388549805,7.61496782302856,-2.44272994995117,-5.05684375762939,8.11344528198242,-2.43015289306641,-5.20708465576172,8.2091064453125,-2.41741752624512,-5.12399673461914,8.17035579681396,-2.43246006965637,-5.15224266052246,8.17349433898926,-2.43492531776428,-4.88004207611084,8.01153469085693,-2.42250776290894,-4.93146657943726,7.98725986480713,-2.50942897796631,-4.73791790008545,7.49767446517944,-2.58639860153198,-3.36392593383789,7.07006502151489,-2.63606858253479,-5.55877542495728,7.45898151397705,-2.61656665802002,-5.60670042037964,7.7851881980896,-2.63129067420959,-5.58071756362915,7.60861539840698,-2.46278643608093,-4.9930682182312,7.48904657363892,-2.45187950134277,-4.91125011444092,7.82333564758301,-2.43389320373535,-4.89644432067871,7.65153789520264,-2.4589638710022,-4.92788362503052,7.6465916633606,-2.46246790885925,-4.97526693344116,7.40415477752686, +-2.44129657745361,-5.0602707862854,7.38465309143066,-0.246512025594711,-5.82561588287354,10.8254709243774,-0.137941434979439,-5.8268518447876,10.8261938095093,-2.77408647537231,-5.75696134567261,6.39206981658936,-2.60207796096802,-5.74568367004395,6.21926403045654,-2.66281414031982,-5.82068872451782,6.30041408538818,-2.69393086433411,-5.75503396987915,6.2871527671814,-0.837911784648895,-6.1787543296814,10.4386072158813,-0.850565552711487,-6.1179986000061,10.4541006088257,-1.32702970504761,-6.19051742553711,10.3292140960693,-1.35170555114746,-6.11993551254272,10.3437271118164,-1.10184907913208,-5.78057861328125,10.4750280380249,-0.825653970241547,-5.79872941970825,10.5181884765625,-1.46544313430786,-5.75787258148193,10.1603355407715,-0.711751103401184,-6.21345472335815,10.6553907394409,-0.737700343132019,-6.14440011978149,10.6694641113281,-1.53620707988739,-6.15566396713257,10.1063566207886,-1.55053579807281,-6.09379148483276,10.1244239807129,-0.425598323345184,-5.81985569000244,10.7984733581543,-1.79362010955811,-5.75090217590332,10.0846815109253,-1.96140992641449,-6.15349531173706,9.81819248199463,-1.99356508255005,-6.08238744735718,9.83203506469727,-1.93498241901398,-5.72276449203491,9.63778209686279,-1.97645223140717,-6.10247945785522,9.56428813934326,-1.99953484535217,-6.04880857467651,9.57936191558838,-2.13771271705627,-5.74113321304321,9.47379016876221,-2.17990136146545,-6.09915924072266,9.20094013214111,-2.21444606781006,-6.03561639785767,9.21235179901123,-2.18491578102112,-5.69440841674805,9.01995468139648,-2.2263023853302,-6.03745031356812,8.9305534362793,-2.24532675743103,-5.99182844161987,8.94156837463379,-2.42991185188293,-5.69980192184448,8.82768249511719,-2.48618721961975,-6.04573059082031,8.48531055450439,-2.53513693809509,-5.98618602752686,8.4938383102417,-2.52765679359436,-5.6408109664917,8.25703907012939,-2.47559857368469,-5.97767925262451,8.12065124511719,-2.51468515396118,-5.93028497695923,8.14033699035645,-2.62898373603821,-5.63312721252441,7.9626727104187,-2.56443095207214,-5.93740749359131,7.59262275695801, +-2.60860824584961,-5.87507486343384,7.59661674499512,-2.5938024520874,-5.54469203948975,7.36269903182983,-2.60781240463257,-5.8378438949585,7.16555786132813,-2.64052200317383,-5.78956842422485,7.17555570602417,-2.7715380191803,-5.52833938598633,6.92693424224854,-2.72418093681335,-5.81995344161987,6.54902982711792,-2.76923131942749,-5.7579870223999,6.54846382141113,-0.409122556447983,-5.37765836715698,10.5297174453735,-0.186253771185875,-5.40599918365479,10.5604429244995,-0.286465764045715,-5.38923454284668,10.5522413253784,-1.42859244346619,-5.32881593704224,9.76651668548584,-1.32511901855469,-5.36255979537964,9.95902156829834,-1.36380434036255,-5.34021043777466,9.86811637878418,-1.9301278591156,-5.28943252563477,8.59484100341797,-1.94167232513428,-5.32511186599731,8.82122325897217,-1.92217016220093,-5.30168724060059,8.72125053405762,-2.24437141418457,-5.00509595870972,7.15655708312988,-0.93732738494873,-6.17199945449829,10.3191995620728,-1.05249869823456,-6.09419918060303,10.2619771957397,-0.92849063873291,-5.96340847015381,10.2915315628052,-0.822067081928253,-6.10083627700806,10.3223876953125,-0.926661670207977,-6.09543037414551,10.2999811172485,-1.09015130996704,-5.08548498153687,10.1295099258423,-1.04024028778076,-4.97368860244751,10.1728649139404,-0.0389216765761375,-4.8633074760437,10.4919900894165,-0.0764153599739075,-4.79100894927979,10.3860998153687,-0.0552384033799171,-4.82843399047852,10.4429531097412,-1.71585404872894,-6.11391878128052,9.30952644348145,-1.71505749225616,-6.04238224029541,9.17246723175049,-1.63801109790802,-5.92446565628052,9.29218292236328,-1.64437675476074,-6.04884767532349,9.40957260131836,-1.66268646717072,-6.04944658279419,9.29476261138916,-1.72389447689056,-5.05477571487427,9.14552783966064,-1.71680974960327,-4.90206718444824,9.20643615722656,-0.898004710674286,-4.60341739654541,9.81055164337158,-1.32615113258362,-4.78569936752319,9.7157096862793,-2.14440178871155,-5.97305107116699,7.83440399169922,-2.10922026634216,-5.89180088043213,7.70996999740601,-2.05995202064514,-5.79199028015137,7.84212493896484, +-2.08892202377319,-5.91932535171509,7.93646907806396,-2.0902726650238,-5.91011047363281,7.83400630950928,-2.10865998268127,-4.85247659683228,7.62794589996338,-2.10563969612122,-4.76589059829712,7.68279552459717,-1.42063474655151,-4.34241580963135,8.49148368835449,-1.87854743003845,-4.59503698348999,8.43730449676514,-2.2229642868042,-5.65008878707886,6.55651426315308,-2.28345799446106,-4.87071323394775,6.30008888244629,-2.3262779712677,-4.95285987854004,6.29020309448242,-0.388110250234604,-4.05646705627441,7.28638696670532,-0.359854310750961,-3.81218218803406,6.71512842178345,-0.375457018613815,-3.97162222862244,6.98015403747559,-0.306445449590683,-6.19124126434326,10.6185121536255,-0.44064661860466,-6.11404848098755,10.5666961669922,-0.287185341119766,-5.988205909729,10.5854339599609,-0.169701278209686,-6.1231107711792,10.5979661941528,-0.294588536024094,-6.11588954925537,10.5919895172119,-0.718753278255463,-6.1850004196167,10.4072217941284,-0.758871734142303,-6.10812997817993,10.3846988677979,-0.740083694458008,-6.00004625320435,10.398907661438,-0.666777491569519,-6.13303661346436,10.4265365600586,-0.725996911525726,-6.12282848358154,10.3988599777222,-0.794767081737518,-5.47476577758789,10.408164024353,-0.651015162467957,-5.39533662796021,10.4212408065796,-0.737063646316528,-5.44269752502441,10.4122934341431,-1.49760448932648,-6.16524887084961,9.8830623626709,-1.51487672328949,-6.0747766494751,9.77573490142822,-1.40519106388092,-5.95820379257202,9.86252021789551,-1.37764871120453,-6.10226678848267,9.94392013549805,-1.44060838222504,-6.09168291091919,9.86570739746094,-1.7212690114975,-6.10439252853394,9.58134269714355,-1.71450328826904,-6.03816080093384,9.54702377319336,-1.66196727752686,-5.92327165603638,9.56415939331055,-1.62830018997192,-6.05386161804199,9.60113048553467,-1.68592870235443,-6.04370927810669,9.57003784179688,-1.65369069576263,-5.39749765396118,9.56203746795654,-1.56692922115326,-5.3568754196167,9.60207843780518,-1.6254346370697,-5.3816089630127,9.57783508300781,-1.98982548713684,-6.06311559677124,8.71806716918945, +-1.95018422603607,-5.99304389953613,8.58433055877686,-1.92248892784119,-5.88084697723389,8.73263740539551,-1.96109139919281,-6.00411128997803,8.82915496826172,-1.94325935840607,-6.00318956375122,8.7229175567627,-2.14806485176086,-5.98181676864624,8.17105484008789,-2.14583539962769,-5.91247653961182,8.09736251831055,-2.06233549118042,-5.82613277435303,8.17712116241455,-2.02500700950623,-5.9622950553894,8.26840019226074,-2.09687972068787,-5.93409490585327,8.17023372650146,-2.05668377876282,-5.29694747924805,8.13282680511475,-2.02015161514282,-5.28791952133179,8.30005550384521,-2.04912161827087,-5.29619359970093,8.20464706420898,-2.20982718467712,-5.68408060073853,7.14621591567993,-2.27644968032837,-5.8389949798584,6.87727737426758,-2.24166917800903,-5.76317119598389,6.71711730957031,-2.18388295173645,-5.67091464996338,6.90352153778076,-2.20362114906311,-5.78885459899902,7.03546905517578,-2.21611523628235,-5.77779912948608,6.88765811920166,-2.20378088951111,-5.14053010940552,6.74492788314819,-2.18626689910889,-5.18651103973389,7.06976270675659,-2.1866672039032,-5.16320753097534,6.92189598083496,-1.30051982402802,-6.16207933425903,10.0806865692139,-1.33594381809235,-6.08797979354858,10.0490570068359,-1.3114275932312,-5.97287893295288,10.0681858062744,-1.24384891986847,-6.11098718643188,10.1056795120239,-1.30123949050903,-6.09937143325806,10.0716905593872,-1.34175372123718,-5.39989280700684,10.0577201843262,-1.23159062862396,-5.36108875274658,10.0816946029663,-1.30410671234131,-5.38513517379761,10.0656757354736,-1.03109109401703,-5.3446741104126,10.2140007019043,-0.860198140144348,-5.39775514602661,10.3183031082153,-0.934141576290131,-5.36277103424072,10.2695369720459,-0.594343662261963,-4.73376798629761,10.15793800354,-0.926101684570313,-4.86019468307495,10.1273174285889,-0.402598559856415,-4.79111385345459,10.3060150146484,-0.632628083229065,-4.88005113601685,10.2919750213623,-0.818008840084076,-5.2043628692627,10.3473539352417,-0.773595809936523,-4.99328756332397,10.3273773193359,-0.029294716194272,-4.92700052261353,10.5663976669312, +-0.0296895187348127,-4.89541912078857,10.5316677093506,-0.0534094497561455,-5.19576406478882,10.64195728302,-0.0505422353744507,-5.01350450515747,10.6269931793213,-0.48601558804512,-5.08079099655151,10.4631299972534,-0.445259362459183,-4.99293184280396,10.4821138381958,-1.98465180397034,-6.03864812850952,8.96684455871582,-2.02795052528381,-5.97562074661255,8.93642425537109,-1.95034384727478,-5.87137508392334,8.95053768157959,-1.8615939617157,-6.00480508804321,8.98930644989014,-1.96156978607178,-5.98455810546875,8.95667362213135,-1.99348926544189,-5.38977289199829,8.94283771514893,-1.8258581161499,-5.35777711868286,9.0042896270752,-1.92479491233826,-5.38095664978027,8.96782970428467,-1.68282032012939,-5.33764410018921,9.1995906829834,-1.60720729827881,-5.37224245071411,9.44071674346924,-1.63036668300629,-5.35114717483521,9.32604312896729,-1.15040349960327,-4.46315431594849,9.27386951446533,-1.61604344844818,-4.69843578338623,9.16233348846436,-1.02631306648254,-4.52849769592285,9.57024669647217,-1.46950769424438,-4.74452495574951,9.47203159332275,-1.61389076709747,-5.1370906829834,9.49890995025635,-1.59383618831635,-4.92087697982788,9.47666549682617,-0.756718516349792,-4.67116594314575,9.99471855163574,-1.13440549373627,-4.82753372192383,9.95303153991699,-1.30577600002289,-5.13906717300415,9.99788284301758,-1.27752017974854,-4.95821237564087,9.9718599319458,-1.47125375270844,-5.08394289016724,9.69204616546631,-1.44809448719025,-4.94233655929565,9.74861526489258,-2.25081849098206,-5.8577127456665,7.30153751373291,-2.25026416778564,-5.78243350982666,7.21115446090698,-2.19064927101135,-5.70176649093628,7.30723094940186,-2.15490818023682,-5.84213399887085,7.41336584091187,-2.21054673194885,-5.80747747421265,7.30093145370483,-2.22407937049866,-5.17915391921997,7.24811840057373,-2.12059950828552,-5.17634010314941,7.45029163360596,-2.18157124519348,-5.17578315734863,7.33958625793457,-2.04745316505432,-5.19134044647217,7.73314571380615,-2.0241334438324,-5.24577903747559,7.97601079940796,-2.02803325653076,-5.21531534194946,7.86455249786377, +-1.45000576972961,-4.31315135955811,7.61803579330444,-1.90338170528412,-4.47847080230713,7.55332088470459,-1.4563707113266,-4.30403232574463,8.07893085479736,-1.9070451259613,-4.53847312927246,8.04321670532227,-2.07554864883423,-5.00528717041016,8.06597137451172,-2.07698273658752,-4.79959678649902,8.08755874633789,-1.29598391056061,-4.40089702606201,8.92042636871338,-1.75334775447845,-4.6523609161377,8.8609504699707,-1.95305156707764,-5.12037134170532,8.87244510650635,-1.88523650169373,-4.87454414367676,8.88124465942383,-2.02779126167297,-4.98613929748535,8.49838161468506,-2.00415349006653,-4.84943151473999,8.5842227935791,-2.29690718650818,-5.6382474899292,6.2773904800415,-2.33527421951294,-5.12082242965698,6.21801853179932,-2.25941920280457,-5.14606666564941,6.39601182937622,-2.29818177223206,-5.13455247879028,6.28661584854126,-2.2916522026062,-4.85793352127075,6.55554151535034,-1.31254243850708,-3.87833046913147,6.54945039749146,-1.8555474281311,-4.20000314712524,6.50439786911011,-2.25687122344971,-4.80195474624634,6.55563545227051,-2.17090630531311,-4.68411588668823,6.59617805480957,-2.21556115150452,-4.91827392578125,7.15354251861572,-2.13978290557861,-4.71264457702637,7.13491487503052,-2.22614336013794,-4.81624126434326,6.89821529388428,-2.25185751914978,-4.87821626663208,6.90782165527344,-0.039003998041153,-6.20711088180542,10.6502695083618,-0.0341493636369705,-6.01094055175781,10.6377286911011,-0.035977765917778,-6.13796138763428,10.6417560577393,-0.300634890794754,-5.08769702911377,10.5466318130493,-0.301431208848953,-5.13962745666504,10.5470905303955,-0.0535684823989868,-5.28108501434326,10.6435079574585,-0.571898341178894,-5.99353218078613,10.4897956848145,-0.676729202270508,-5.1942024230957,10.4103212356567,-0.699970901012421,-5.28515005111694,10.4222755432129,-0.494533687829971,-5.13222646713257,10.4613428115845,-0.787205517292023,-5.98200082778931,10.3582763671875,-0.836236774921417,-5.30040502548218,10.3648710250854,-0.927694320678711,-5.08898401260376,10.2462596893311,-0.931115329265594,-5.14778614044189,10.2483787536621, +-1.16417169570923,-5.96804332733154,10.1708030700684,-1.10407865047455,-5.14506006240845,10.119909286499,-1.24926424026489,-5.14094305038452,10.0589284896851,-1.28356647491455,-5.22202062606812,10.0626363754272,-1.33944714069366,-5.97088193893433,10.0099296569824,-1.3564772605896,-5.07640743255615,9.86119174957275,-1.35353398323059,-5.14177560806274,9.86582660675049,-1.32392120361328,-5.22253799438477,10.0166835784912,-1.54201757907867,-5.93096017837524,9.66748237609863,-1.57982206344604,-5.1564826965332,9.58060646057129,-1.61429345607758,-5.25503540039063,9.58355617523193,-1.48558247089386,-5.15513181686401,9.68349075317383,-1.65703535079956,-5.92647075653076,9.49569129943848,-1.63443279266357,-5.23311138153076,9.51705646514893,-1.6382474899292,-5.05470132827759,9.34469985961914,-1.63912439346313,-5.127037525177,9.35101509094238,-1.76090431213379,-5.89473915100098,9.05418682098389,-1.73264837265015,-5.13085269927979,9.13426876068115,-1.86867845058441,-5.15683317184448,8.99800872802734,-1.90800070762634,-5.26923036575317,8.99398708343506,-2.00303864479065,-5.88165235519409,8.90550804138184,-1.95926296710968,-4.99277925491333,8.71739482879639,-1.96658337116241,-5.05836963653564,8.71498394012451,-1.99165391921997,-5.22366094589233,8.87605953216553,-1.94660353660583,-5.85800170898438,8.42519664764404,-2.08000922203064,-5.05013561248779,8.24398899078369,-2.09696245193481,-5.14430522918701,8.21382427215576,-2.03893399238586,-5.05353832244873,8.47288417816162,-2.09322237968445,-5.8088002204895,8.0347375869751,-2.07666373252869,-5.09675216674805,8.05501079559326,-2.07523059844971,-4.87675619125366,7.89324283599854,-2.06782746315002,-4.93245363235474,7.88428354263306,-2.09536981582642,-5.7505259513855,7.56198787689209,-2.11065411567688,-4.90567970275879,7.61822128295898,-2.17679834365845,-4.9220609664917,7.35746097564697,-2.19924426078796,-5.0022406578064,7.3518385887146,-0.0990970358252525,-6.00180387496948,10.6008262634277,-2.36934089660645,-5.82069063186646,6.29629898071289,-2.37435460090637,-5.74866580963135,6.19916963577271, +-2.27247357368469,-5.75701570510864,6.4032621383667,-2.32301664352417,-5.75506639480591,6.28545475006104,-0.778769135475159,-6.16701364517212,10.3600177764893,-0.778533279895782,-6.10288381576538,10.3549547195435,-1.16680240631104,-6.1793041229248,10.2051277160645,-1.15955889225006,-6.10430669784546,10.1831855773926,-0.571184873580933,-6.19947624206543,10.5205993652344,-0.568158626556396,-6.12496137619019,10.4970645904541,-1.37836885452271,-6.15687704086304,10.0106410980225,-1.3521009683609,-6.09499311447144,10.0057744979858,-1.62885415554047,-6.13793706893921,9.70009803771973,-1.57433247566223,-6.06321001052856,9.67862319946289,-1.72047281265259,-6.09791660308838,9.49898338317871,-1.68115019798279,-6.04250335693359,9.49363613128662,-1.82553958892822,-6.09793281555176,9.08753299713135,-1.78040635585785,-6.02580404281616,9.06590557098389,-2.02493023872375,-6.03453397750854,8.89117813110352,-2.00860810279846,-5.98847103118896,8.89710330963135,-2.03853893280029,-6.04081392288208,8.41938591003418,-1.97677087783813,-5.98061990737915,8.41966342926025,-2.17003273963928,-5.96357154846191,8.02015972137451,-2.12530064582825,-5.91383123397827,8.02179908752441,-2.18157124519348,-5.93296003341675,7.5623574256897,-2.12593197822571,-5.86960124969482,7.55970764160156,-2.27637314796448,-5.83205604553223,7.12649011611938,-2.23148250579834,-5.78330945968628,7.13298797607422,-2.31115365028381,-5.81996726989746,6.54831314086914,-2.25288963317871,-5.75801706314087,6.5514178276062,-0.0426613613963127,-6.23896408081055,10.7079133987427,-0.0421069636940956,-6.23420381546021,10.6754026412964,-0.195644959807396,-6.23483800888062,10.6854448318481,-0.347360700368881,-6.24602651596069,10.7361726760864,-0.466672599315643,-6.22927379608154,10.6432409286499,-0.322207182645798,-6.23096084594727,10.677041053772,-0.623001158237457,-6.24517917633057,10.6125583648682,-0.680545628070831,-6.23354291915894,10.4814872741699,-0.590049624443054,-6.23515129089355,10.5659761428833,-0.741835415363312,-6.21124076843262,10.4497108459473,-0.754335701465607,-6.18786001205444,10.3930158615112, +-0.726634204387665,-6.20910120010376,10.425952911377,-0.806790351867676,-6.20344066619873,10.3982582092285,-0.854069530963898,-6.21186351776123,10.3657112121582,-0.790072619915009,-6.19608163833618,10.376443862915,-1.00442218780518,-6.229079246521,10.3874664306641,-1.09325444698334,-6.21170139312744,10.3130474090576,-0.966538727283478,-6.21340322494507,10.3506259918213,-1.24552392959595,-6.22857141494751,10.2696866989136,-1.27911281585693,-6.21461248397827,10.1519069671631,-1.19998979568481,-6.21731281280518,10.2356119155884,-1.35671973228455,-6.19053888320923,10.1142635345459,-1.36005854606628,-6.16723299026489,10.0586633682251,-1.32296586036682,-6.18766784667969,10.0960445404053,-1.46441113948822,-6.18948268890381,10.0571002960205,-1.49274945259094,-6.20759439468384,9.99063396453857,-1.4188826084137,-6.18443918228149,10.0303316116333,-1.66005551815033,-6.21759796142578,9.96387195587158,-1.65193891525269,-6.19127702713013,9.82794666290283,-1.57505202293396,-6.20521783828735,9.91913318634033,-1.80181956291199,-6.19523477554321,9.76203060150146,-1.74872875213623,-6.16345930099487,9.64427280426025,-1.70948898792267,-6.18010282516479,9.72939014434814,-1.82697308063507,-6.14048480987549,9.60496234893799,-1.77985191345215,-6.10918617248535,9.55600070953369,-1.77093827724457,-6.13309478759766,9.59326553344727,-1.84862148761749,-6.10888671875,9.5295524597168,-1.78271865844727,-6.12304878234863,9.4449405670166,-1.77921462059021,-6.11172866821289,9.51222991943359,-1.91333341598511,-6.11746263504028,9.37184143066406,-1.84400320053101,-6.12006759643555,9.21766185760498,-1.80420851707458,-6.12493467330933,9.33722972869873,-1.99834299087524,-6.10219812393188,9.14531421661377,-1.96777510643005,-6.0902853012085,9.03364944458008,-1.90266835689545,-6.11084985733032,9.11484909057617,-2.08024501800537,-6.04765796661377,8.99182891845703,-2.065762758255,-6.02549171447754,8.93746852874756,-2.0273129940033,-6.05138683319092,8.97891807556152,-2.12402677536011,-6.04021501541138,8.90776824951172,-2.06162166595459,-6.06937503814697,8.83524036407471, +-2.06766796112061,-6.04410123825073,8.89664459228516,-2.18404316902161,-6.04982328414917,8.757399559021,-2.10452485084534,-6.04720067977905,8.59602451324463,-2.07626891136169,-6.06345844268799,8.73276424407959,-2.2613308429718,-6.02696132659912,8.45082664489746,-2.17846775054932,-6.02843379974365,8.28049278259277,-2.1394636631012,-6.0411114692688,8.43193912506104,-2.30009293556213,-5.98965311050415,8.19709491729736,-2.24484944343567,-5.96651697158813,8.10960674285889,-2.21898198127747,-5.99262189865112,8.18166732788086,-2.3230926990509,-5.98703908920288,8.06682109832764,-2.22909283638,-6.0016918182373,7.95667362213135,-2.24015331268311,-5.98292922973633,8.03853225708008,-2.34776854515076,-5.97587633132935,7.87852573394775,-2.25281262397766,-5.95306921005249,7.72386360168457,-2.23633694648743,-5.98257160186768,7.85232257843018,-2.37395405769348,-5.93167209625244,7.57836294174194,-2.29030084609985,-5.92270231246948,7.42056274414063,-2.26944804191589,-5.94088983535767,7.56949234008789,-2.40149617195129,-5.87683057785034,7.31838417053223,-2.34395170211792,-5.83793687820435,7.21732473373413,-2.31919407844543,-5.87540626525879,7.30841445922852,-2.44408082962036,-5.85108947753906,7.14324331283569,-2.3577196598053,-5.86648988723755,7.02719736099243,-2.35238695144653,-5.84942388534546,7.13183546066284,-2.4875385761261,-5.83587741851807,6.88590526580811,-2.39139151573181,-5.82123041152954,6.71133613586426,-2.37292170524597,-5.84577035903931,6.87893390655518,-2.51985836029053,-5.81626129150391,6.55002737045288,-2.42092156410217,-5.84086990356445,6.40657758712769,-2.40627408027649,-5.82668161392212,6.54862117767334,-2.5186607837677,-5.84261131286621,6.3023624420166,-2.4540319442749,-5.82781839370728,6.22352886199951,-2.43834710121155,-5.84264087677002,6.30083560943604,-0.232024222612381,-6.24994277954102,10.7890882492065,-0.133724078536034,-6.24663591384888,10.7465028762817,-0.140649035573006,-6.22369813919067,10.8224611282349,-0.138737753033638,-6.24836540222168,10.7921237945557,-0.550727009773254,-6.24428033828735,10.7154684066772, +-0.387313932180405,-6.24764776229858,10.7644128799438,-0.738095700740814,-6.23334169387817,10.5530605316162,-0.668606400489807,-6.24251985549927,10.6393938064575,-0.769932210445404,-6.18956565856934,10.421350479126,-0.756801307201385,-6.20781993865967,10.473126411438,-0.914085209369659,-6.22303295135498,10.4319543838501,-0.823023021221161,-6.20250511169434,10.4194488525391,-1.17603468894958,-6.22539186477661,10.3837080001831,-1.04127848148346,-6.22803449630737,10.423360824585,-1.36634683609009,-6.21271324157715,10.209267616272,-1.28977859020233,-6.2231879234314,10.3027172088623,-1.41704797744751,-6.16682815551758,10.0852346420288,-1.38974809646606,-6.18517923355103,10.1319999694824,-1.62352180480957,-6.20723819732666,10.0742988586426,-1.50548553466797,-6.18378114700317,10.0831432342529,-1.83524870872498,-6.19839239120483,9.90555000305176,-1.73965620994568,-6.20835256576538,10.0072154998779,-1.90752291679382,-6.17108869552612,9.69009876251221,-1.89160168170929,-6.18872213363647,9.79325485229492,-1.8678822517395,-6.11018180847168,9.56925678253174,-1.88157367706299,-6.13695287704468,9.61616134643555,-1.99022078514099,-6.1268572807312,9.50750827789307,-1.92025887966156,-6.11417961120605,9.54731559753418,-2.05820035934448,-6.11834001541138,9.28408336639404,-2.02898859977722,-6.12618923187256,9.40709781646729,-2.13158917427063,-6.09084939956665,9.08338737487793,-2.09926915168762,-6.10985374450684,9.17624759674072,-2.13986587524414,-6.02600765228271,8.9481372833252,-2.13413190841675,-6.05195999145508,9.00514888763428,-2.2395167350769,-6.07251739501953,8.87739562988281,-2.18141222000122,-6.04572677612305,8.91915607452393,-2.34450602531433,-6.05066967010498,8.64320373535156,-2.29483699798584,-6.06716156005859,8.78227043151855,-2.40356659889221,-6.03091335296631,8.31009769439697,-2.3859760761261,-6.04387521743774,8.46977615356445,-2.36766600608826,-5.97164964675903,8.14973545074463,-2.38207697868347,-5.99588823318481,8.21236228942871,-2.45299363136292,-6.01118564605713,8.02205657958984,-2.40675234794617,-5.99097490310669,8.0952091217041, +-2.45920586585999,-5.95749092102051,7.7539496421814,-2.4604799747467,-5.99008321762085,7.90378856658936,-2.49582076072693,-5.92459678649902,7.43358135223389,-2.47926211357117,-5.94334602355957,7.58628606796265,-2.48363924026489,-5.84189033508301,7.24426984786987,-2.48379826545715,-5.87834930419922,7.32845306396484,-2.59149575233459,-5.86851215362549,7.04255485534668,-2.53577399253845,-5.85274696350098,7.15455961227417,-2.60398960113525,-5.82149744033813,6.72048091888428,-2.60207796096802,-5.84679460525513,6.89122009277344,-2.64649105072021,-5.8408522605896,6.40299320220947,-2.63343739509583,-5.82665920257568,6.54978227615356,-2.54206204414368,-5.82783651351929,6.23660564422607,-2.59897565841675,-5.84258365631104,6.303795337677,-0.178296148777008,-5.14227962493896,10.7214317321777,-0.159036085009575,-5.13926792144775,10.6123895645142,-0.15943144261837,-5.20709037780762,10.6159152984619,-2.16039967536926,-4.63492059707642,6.35010147094727,-2.16461730003357,-4.6992130279541,6.84043788909912,-2.12219214439392,-4.7338662147522,7.3962082862854,-2.09338212013245,-4.78276300430298,7.88114452362061,-2.05135178565979,-4.82722282409668,8.33678722381592,-1.95758759975433,-4.85762071609497,8.71256256103516,-1.80070447921753,-4.894211769104,9.05072116851807,-1.66029751300812,-4.90851783752441,9.3226490020752,-1.5241082906723,-4.93551921844482,9.61845779418945,-1.38186657428741,-4.9469051361084,9.84668636322021,-1.16401255130768,-4.96858882904053,10.0794248580933,-0.934141576290131,-4.97818994522095,10.241358757019,-0.607162654399872,-4.99794101715088,10.4075193405151,-0.315441250801086,-4.99706411361694,10.5372972488403,-0.246588706970215,-5.21204662322998,10.7027978897095,-0.173995912075043,-5.21407032012939,10.7190637588501,-0.166433110833168,-5.24695348739624,10.7230825424194,-0.126320883631706,-5.42249059677124,10.5738525390625,-0.688107907772064,-5.38145542144775,10.6259078979492,-0.362880557775497,-5.17924976348877,10.661789894104,-0.755609691143036,-5.31603527069092,10.4882488250732,-0.897048890590668,-5.45260906219482,10.4559268951416, +-1.10113525390625,-5.16190147399902,10.3199367523193,-1.34581279754639,-5.34129858016968,10.2636613845825,-1.42143106460571,-5.26597881317139,10.1007375717163,-1.51479375362396,-5.39827156066895,10.1090993881226,-1.59096562862396,-5.17470169067383,9.95172595977783,-1.84917652606964,-5.3420557975769,9.79553604125977,-1.83158588409424,-5.28115892410278,9.6130952835083,-1.92001700401306,-5.39472675323486,9.5806827545166,-1.92503142356873,-5.09416818618774,9.41640472412109,-2.1209180355072,-5.31265735626221,9.19946956634521,-2.1007022857666,-5.29398012161255,9.01094150543213,-2.19446587562561,-5.3654260635376,8.93744468688965,-2.26578450202942,-5.09604549407959,8.77732372283936,-2.50003838539124,-5.28837776184082,8.50004482269287,-2.44885873794556,-5.17671394348145,8.26155281066895,-2.51229596138,-5.2968373298645,8.19015884399414,-2.44782066345215,-4.9653959274292,7.98782444000244,-2.56355214118958,-5.17045927047729,7.63038063049316,-2.45697593688965,-5.08468770980835,7.38189697265625,-2.59412121772766,-5.23268222808838,7.22093057632446,-2.60772943496704,-4.91723775863647,6.96965503692627,-2.73683404922485,-5.13699293136597,6.57012557983398,-2.61632466316223,-5.04084634780884,6.2415599822998,-2.62484264373779,-4.98053407669067,6.30407524108887,-2.22805452346802,-5.14150047302246,6.55919456481934,-2.21221613883972,-5.18721342086792,7.16838359832764,-2.07706522941589,-5.17987251281738,7.58828735351563,-2.04108738899231,-5.27656745910645,8.06105804443359,-1.97159743309021,-5.28518962860107,8.44222545623779,-1.98226284980774,-5.36283731460571,8.89448833465576,-1.74658179283142,-5.34158611297607,9.08690929412842,-1.63132035732269,-5.39109706878662,9.51782894134521,-1.49879634380341,-5.33682298660278,9.67146015167236,-1.33323574066162,-5.38740348815918,10.0221710205078,-1.1353611946106,-5.3458890914917,10.1412086486816,-0.824774742126465,-5.44743967056274,10.3706474304199,-0.536162495613098,-5.37668561935425,10.4732055664063,-2.04777073860168,-4.52924251556396,6.57404136657715,-2.04570031166077,-4.57646083831787,6.89951705932617, +-2.10165810585022,-4.62104320526123,6.72384881973267,-2.03137135505676,-4.67021989822388,7.93083524703979,-2.04180145263672,-4.64238119125366,7.65060091018677,-2.06878280639648,-4.71014356613159,7.7919750213623,-1.90052127838135,-4.76295328140259,8.75462627410889,-1.96801698207855,-4.74430322647095,8.55517482757568,-1.9585428237915,-4.79433917999268,8.65931034088135,-1.61174154281616,-4.83111333847046,9.3654842376709,-1.6918158531189,-4.81615018844604,9.20237064361572,-1.67080354690552,-4.8535099029541,9.27618408203125,-1.3067319393158,-4.88759326934814,9.88013362884521,-1.40320312976837,-4.87468671798706,9.74563407897949,-1.38656842708588,-4.90268516540527,9.80770301818848,-0.831623554229736,-4.9298038482666,10.2566366195679,-0.986595690250397,-4.92256879806519,10.16273021698,-0.948629379272461,-4.94296216964722,10.2107849121094,-0.244759768247604,-4.94905757904053,10.5227603912354,-0.411830127239227,-4.95003175735474,10.4580230712891,-0.351177126169205,-4.96786832809448,10.5040454864502,-2.05366373062134,-4.32579469680786,6.29204225540161,-2.03694629669189,-4.42243957519531,6.4269003868103,-2.04283285140991,-4.58085632324219,7.2770209312439,-1.87703704833984,-4.42844390869141,7.04257583618164,-2.03559541702271,-4.56761264801025,7.08492183685303,-2.03901696205139,-4.60245275497437,7.47223377227783,-2.01784563064575,-4.69018220901489,8.21164226531982,-2.02238178253174,-4.66989278793335,8.06455039978027,-1.99372410774231,-4.71235132217407,8.39055728912354,-1.79154980182648,-4.778724193573,8.98734951019287,-1.8455958366394,-4.763023853302,8.86764144897461,-1.73622906208038,-4.79380893707275,9.10254287719727,-1.51208627223969,-4.84543037414551,9.56727409362793,-1.56207406520844,-4.83260107040405,9.46528244018555,-1.45207595825195,-4.8575611114502,9.66306781768799,-1.15295135974884,-4.90220403671265,10.0335512161255,-1.23151445388794,-4.89095592498779,9.95738315582275,-1.0630042552948,-4.91081666946411,10.1027679443359,-0.605805814266205,-4.93106079101563,10.3594102859497,-0.716765344142914,-4.92705297470093,10.3072757720947, +-0.380867183208466,-4.9005446434021,10.4144401550293,-0.500421047210693,-4.93824863433838,10.4097013473511,-0.223665118217468,-4.84479427337646,10.4306545257568,0,-3.56970500946045,6.51639032363892,-0.34385621547699,-3.36579561233521,6.35206460952759,-0.348870456218719,-3.58103013038635,6.50943946838379,-0.124804392457008,-4.70928573608398,10.2527637481689,-0.10013472288847,-4.75122356414795,10.3224563598633,-0.17168927192688,-4.62323379516602,10.102972984314,-0.149001985788345,-4.66560745239258,10.1775159835815,-0.211088642477989,-4.5472936630249,9.96690559387207,-0.19190526008606,-4.58564424514771,10.0356349945068,-0.250411242246628,-4.45475387573242,9.79148864746094,-0.231068313121796,-4.50286436080933,9.88823890686035,-0.284318149089813,-4.35712575912476,9.52557849884033,-0.267683357000351,-4.40561151504517,9.66836261749268,-0.320372670888901,-4.26248502731323,9.193190574646,-0.301507890224457,-4.31094932556152,9.36964797973633,-0.362243264913559,-4.15308332443237,8.76627635955811,-0.341945499181747,-4.20667600631714,8.98861408233643,-0.386440873146057,-4.07911968231201,8.31794357299805,-0.37736776471138,-4.11137390136719,8.53646659851074,-0.388352125883102,-4.04566669464111,7.91401243209839,-0.388588458299637,-4.05398416519165,8.12930202484131,-0.390257805585861,-4.06385135650635,7.61539936065674,-1.39595949649811,-4.23608684539795,7.05527067184448,-0.124167688190937,-4.90264368057251,10.5239286422729,-0.0587423220276833,-3.80714273452759,10.3407936096191,-0.0581873580813408,-4.97750186920166,10.7529458999634,-0.993043005466461,-3.52570533752441,6.34976625442505,-1.04024028778076,-3.96771550178528,6.75447463989258,-1.00824403762817,-3.73918104171753,6.52913522720337,-7.67204910516739e-05,-5.33168506622314,10.6897068023682,-0.0521354451775551,-5.31537961959839,10.7041501998901,-0.147651270031929,-5.4346718788147,10.7696905136108,-7.67204910516739e-05,-5.81879901885986,10.7183170318604,-0.0323147997260094,-5.82114171981812,10.7500438690186,-0.139693677425385,-6.15579319000244,10.8367366790771,-7.67204910516739e-05,-6.238365650177,10.7155323028564, +-0.0382076874375343,-6.24052238464355,10.73841381073,-0.115890868008137,-6.20062732696533,10.633936882019,-0.125683605670929,-6.23534393310547,10.6866340637207,-0.105627201497555,-6.12835836410522,10.6096153259277,-7.67204910516739e-05,-5.46318054199219,10.6194181442261,-0.04329863935709,-5.45512008666992,10.6095857620239,-0.150040224194527,-5.0037636756897,10.598503112793,-0.0872401595115662,-4.92539691925049,10.5562505722046,-0.116050489246845,-4.86545896530151,10.4871187210083,-0.0885908827185631,-4.89526033401489,10.5259189605713,-0.227646708488464,-4.80199432373047,10.3783197402954,-0.164687588810921,-4.83419418334961,10.4369010925293,-0.370921015739441,-4.73593997955322,10.2451238632202,-0.297927260398865,-4.76963043212891,10.314751625061,-0.508378684520721,-4.66260433197021,10.0905685424805,-0.442080229520798,-4.69943618774414,10.168833732605,-0.62156754732132,-4.59215259552002,9.9355411529541,-0.566648364067078,-4.62806987762451,10.014853477478,-0.731730759143829,-4.50810289382935,9.74110507965088,-0.677684605121613,-4.55149602890015,9.84618854522705,-0.828355967998505,-4.42166566848755,9.47172164916992,-0.780438423156738,-4.46387195587158,9.61457538604736,-0.936129570007324,-4.34701490402222,9.14680480957031,-0.879853546619415,-4.38439655303955,9.31758499145508,-1.05703461170197,-4.26460552215576,8.7417459487915,-0.998611629009247,-4.30469655990601,8.95368480682373,-1.12819385528564,-4.2107081413269,8.292893409729,-1.10168969631195,-4.23405885696411,8.51392459869385,-1.12891340255737,-4.18843269348145,7.89068794250488,-1.13265371322632,-4.19236421585083,8.10105419158936,-1.12159311771393,-4.20286750793457,7.31114101409912,-1.13074254989624,-4.20833253860474,7.61441659927368,-1.0847362279892,-4.12249612808228,7.01977634429932,0.178932890295982,-3.80354499816895,10.3134431838989,0.343773365020752,-3.36579561233521,6.35206460952759,0.348869949579239,-3.58103013038635,6.50943946838379,0.0520581603050232,-5.31537961959839,10.7041501998901,0.147650703787804,-5.4346718788147,10.7696905136108,0.0322375185787678,-5.82114171981812,10.7500438690186, +0.139610230922699,-6.15579319000244,10.8367366790771,0.0381247997283936,-6.24052238464355,10.73841381073,0.115814156830311,-6.20062732696533,10.633936882019,0.125600159168243,-6.23534393310547,10.6866340637207,0.105467036366463,-6.12835836410522,10.6096153259277,0.0432213619351387,-5.45512008666992,10.6095857620239,0.149956807494164,-5.0037636756897,10.598503112793,0.0871567204594612,-4.92539691925049,10.5562505722046,0.115890316665173,-4.86545896530151,10.4871187210083,0.0885135978460312,-4.89526033401489,10.5259189605713,0.227563828229904,-4.80199432373047,10.3783197402954,0.164604172110558,-4.83419418334961,10.4369010925293,0.370837599039078,-4.73593997955322,10.2451238632202,0.297850012779236,-4.76963043212891,10.314751625061,0.508218467235565,-4.66260433197021,10.0905685424805,0.441996783018112,-4.69943618774414,10.168833732605,0.621484577655792,-4.59215259552002,9.9355411529541,0.566564857959747,-4.62806987762451,10.014853477478,0.731647312641144,-4.50810289382935,9.74110507965088,0.677601099014282,-4.55149602890015,9.84618854522705,0.828278601169586,-4.42166566848755,9.47172164916992,0.780437827110291,-4.46387195587158,9.61457538604736,0.936052322387695,-4.34701490402222,9.14680480957031,0.879776179790497,-4.38439655303955,9.31758499145508,1.05703413486481,-4.26460552215576,8.7417459487915,0.998451411724091,-4.30469655990601,8.95368480682373,1.12811660766602,-4.2107081413269,8.292893409729,1.10153007507324,-4.23405885696411,8.51392459869385,1.12883055210114,-4.18843269348145,7.89068794250488,1.13257646560669,-4.19236421585083,8.10105419158936,1.12150979042053,-4.20286750793457,7.31114101409912,1.13066530227661,-4.20833253860474,7.61441659927368,1.08465909957886,-4.12249612808228,7.01977634429932,2.55384182929993,-5.77502298355103,6.18848419189453,2.57183432579041,-5.70590400695801,6.13583612442017,2.57199311256409,-5.7222900390625,6.17376518249512,2.33145141601563,-4.94588184356689,6.1679048538208,2.35731840133667,-5.02211380004883,6.18612432479858,2.37061452865601,-5.6285080909729,6.1411600112915,2.38223552703857,-5.11413526535034,6.13764238357544, +2.36177778244019,-5.11884784698486,6.17713308334351,2.39751410484314,-5.72182083129883,6.10004568099976,2.43047118186951,-5.77776145935059,6.15754699707031,2.39632177352905,-5.73410892486572,6.14560413360596,2.45824885368347,-5.76956796646118,6.11806917190552,2.49486446380615,-5.79238319396973,6.17520427703857,2.4631040096283,-5.79236555099487,6.16660165786743,2.5246307849884,-5.76949119567871,6.14010334014893,2.52662444114685,-5.79253768920898,6.18568086624146,2.34474205970764,-4.85058498382568,6.06146764755249,2.09887290000916,-4.24279308319092,6.12762975692749,1.00696969032288,-3.38726377487183,6.17138433456421,-2.59993100166321,-5.40195178985596,6.14881134033203,-2.59953022003174,-5.41003942489624,6.17475986480713,-2.61425971984863,-5.09038162231445,6.19899082183838,-2.61346340179443,-5.10391902923584,6.21204566955566,-2.35740113258362,-5.02211380004883,6.18612432479858,-2.33153486251831,-4.94588184356689,6.1679048538208,-2.37069225311279,-5.6285080909729,6.1411600112915,-2.38231205940247,-5.11413526535034,6.13764238357544,-2.36193704605103,-5.11884784698486,6.17713308334351,-2.43054890632629,-5.77776145935059,6.15754699707031,-2.39759659767151,-5.72182083129883,6.10004568099976,-2.39640522003174,-5.73410892486572,6.14560413360596,-2.49494099617004,-5.79238319396973,6.17520427703857,-2.45832657814026,-5.76956796646118,6.11806917190552,-2.46310520172119,-5.79236555099487,6.16660165786743,-2.55392527580261,-5.77502298355103,6.18848419189453,-2.52478981018066,-5.76949119567871,6.14010334014893,-2.5267014503479,-5.79253768920898,6.18568086624146,-2.09903287887573,-4.24279308319092,6.12762975692749,-0.348788142204285,-3.22370958328247,6.18123435974121,-1.00705301761627,-3.38726377487183,6.17138433456421,0.348628014326096,-3.22370958328247,6.18123435974121,-2.67618107795715,-3.6941990852356,5.50424146652222,-2.63359665870667,-4.86086988449097,6.06210994720459,2.40961289405823,-5.07661390304565,6.03472995758057,-2.40969562530518,-5.07661390304565,6.03472995758057,2.61966872215271,-5.03282928466797,6.16885757446289,2.63343644142151,-4.86086988449097,6.06210994720459, +2.61417651176453,-5.09038162231445,6.19899082183838,2.61338067054749,-5.10391902923584,6.21204566955566,2.59984827041626,-5.40195178985596,6.14881134033203,2.59945273399353,-5.41003942489624,6.17475986480713,2.67610383033752,-3.6941990852356,5.50424146652222,-2.61975145339966,-5.03282928466797,6.16885757446289,-2.57191157341003,-5.70590400695801,6.13583612442017,-2.57207036018372,-5.7222900390625,6.17376518249512,-2.34474205970764,-4.85058498382568,6.06146764755249,-1.98513865470886,-7.18690013885498,4.76535987854004,1.98495900630951,-7.18690013885498,4.76535987854004,1.33163225650787,-7.10434341430664,5.5120792388916,0.00143316946923733,-7.30788040161133,6.82634449005127,-1.33172619342804,-7.10434341430664,5.5120792388916,-1.65829932689667,-6.99769639968872,4.70509433746338,1.65820586681366,-6.99769639968872,4.70509433746338,-1.30020356178284,-7.20275259017944,5.92694282531738,1.30888915061951,-7.20176219940186,5.91548156738281,0.768121719360352,-7.26991891860962,6.47236919403076,-1.42565667629242,-7.06539106369019,5.31937313079834,-1.86416494846344,-7.14284324645996,4.74188947677612,1.8639851808548,-7.14284324645996,4.74188947677612,1.6635810136795,-7.02303647994995,4.93281650543213,1.42458045482635,-7.06547784805298,5.32072067260742,-1.66366803646088,-7.02303647994995,4.93281650543213,-0.762216210365295,-7.2706298828125,6.48024654388428,1.67889130115509,-7.21260595321655,5.74471569061279,-7.82310962677002e-08,-7.70984983444214,7.29000997543335,-1.685342669487,-7.21188497543335,5.73665904998779,-8.63876193761826e-05,-6.25312042236328,10.4959335327148,-1.42180740833282,-6.22902965545654,9.99483776092529,-1.95979452133179,-6.17012119293213,8.93764305114746,-2.68180727958679,-6.01233148574829,7.30299282073975,-2.73284721374512,-5.87049102783203,6.33276748657227,-8.63876193761826e-05,-8.81738948822021,9.731520652771,-1.34864854812622,-8.7330265045166,9.24324417114258,-1.96866059303284,-8.5785083770752,8.34024810791016,-2.74807119369507,-8.30893611907959,6.76264047622681,-2.82462763786316,-8.00935745239258,5.65442037582397, +-0.773856163024902,-7.00037956237793,10.0389804840088,-0.781288862228394,-6.25447607040405,10.259428024292,-1.2862331867218,-7.0286808013916,9.71983909606934,-0.821670532226563,-8.77790546417236,9.50720596313477,-8.63876193761826e-05,-7.08419609069824,10.2046422958374,-1.64244532585144,-6.95121908187866,9.3407735824585,-1.83631265163422,-6.1999306678772,9.55794048309326,-1.90454745292664,-6.82845067977905,8.82947158813477,-1.66358244419098,-8.6617317199707,8.825514793396,-2.30427956581116,-6.82737350463867,8.13209533691406,-2.26667189598083,-6.09426403045654,8.17570304870605,-2.59386920928955,-6.70084619522095,7.23260688781738,-2.34627437591553,-8.47163581848145,7.71692514419556,-2.74332618713379,-6.87985038757324,6.71100425720215,-2.84719729423523,-5.92618942260742,6.80941581726074,-2.76543855667114,-6.6276912689209,6.23508262634277,-2.79436612129211,-8.21381759643555,6.20342493057251,-0.569151520729065,-6.83498764038086,10.3152141571045,-8.63876193761826e-05,-6.80248641967773,10.3000078201294,-0.598610281944275,-6.2509765625,10.4933376312256,-0.805909276008606,-6.78305768966675,10.1227054595947,-0.424002051353455,-7.23230409622192,10.1029167175293,-1.69599401950836,-6.78860425949097,9.6970043182373,-1.37184274196625,-6.77857828140259,9.83614444732666,-1.86658036708832,-6.1895489692688,9.87600517272949,-1.73459100723267,-6.72753286361694,9.42684555053711,-1.48126924037933,-7.12226343154907,9.51136207580566,-2.2434778213501,-6.62554740905762,8.6055326461792,-1.93875753879547,-6.65975141525269,8.86474990844727,-2.18231749534607,-6.08514165878296,8.65997886657715,-2.35970664024353,-6.59931373596191,8.17973804473877,-2.10664939880371,-7.02285432815552,8.53039360046387,-2.88167333602905,-6.40284204483032,7.08253288269043,-2.70634126663208,-6.44912910461426,7.26314735412598,-2.83940672874451,-5.9487509727478,7.11781215667725,-2.93289256095886,-6.37607002258301,6.76114940643311,-2.6988160610199,-6.83150625228882,7.03578662872314,-1.17931592464447,-6.83588123321533,10.0483856201172,-1.21442198753357,-6.22680950164795,10.2498636245728, +-1.08681869506836,-7.20661783218384,9.80578804016113,-1.04293930530548,-7.37217378616333,9.82890796661377,-1.27728152275085,-7.34181547164917,9.68410873413086,-1.10150468349457,-8.75555324554443,9.3794412612915,-0.759528040885925,-7.36223363876343,9.97036933898926,-0.409581333398819,-7.39689826965332,10.0896625518799,-0.417644709348679,-8.80156993865967,9.64441108703613,-8.63876193761826e-05,-7.3912558555603,10.1918172836304,-1.91457438468933,-6.69897270202637,9.1934928894043,-1.97179985046387,-6.1438775062561,9.30354309082031,-1.74041092395782,-7.1545729637146,9.05648517608643,-1.74435293674469,-7.33295249938965,9.04251575469971,-1.91735529899597,-7.24627161026001,8.79716396331787,-1.78697800636292,-8.63889026641846,8.58676719665527,-1.61370348930359,-7.30035448074341,9.28481006622314,-1.48592042922974,-7.33698034286499,9.4945240020752,-1.54636466503143,-8.69909477233887,9.0396900177002,-2.59906530380249,-6.53626155853271,7.74758625030518,-2.52367043495178,-6.01895570755005,7.7970142364502,-2.43573236465454,-7.0410327911377,7.70953369140625,-2.45337176322937,-7.18557453155518,7.81644439697266,-2.66801643371582,-7.09995031356812,7.22804164886475,-2.50970053672791,-8.40734767913818,7.34728145599365,-2.29353499412537,-7.19611978530884,8.1980094909668,-2.10378980636597,-7.24394464492798,8.52466678619385,-2.15258646011353,-8.52693653106689,8.03760242462158,-2.9282341003418,-6.3525276184082,6.42132949829102,-2.89385056495667,-5.88141202926636,6.50469493865967,-2.78684091567993,-6.41502141952515,6.25674152374268,-2.76024842262268,-6.78036499023438,6.37870407104492,-2.76123070716858,-7.03619718551636,6.35551071166992,-2.77618932723999,-6.95524549484253,6.16110515594482,-2.80869340896606,-8.1545934677124,5.86091089248657,-2.74412941932678,-7.07595634460449,6.69479846954346,-2.71806812286377,-7.09941244125366,7.01734447479248,-2.77878379821777,-8.27109909057617,6.53366899490356,-0.237653702497482,-6.82442331314087,10.375675201416,-0.25028270483017,-6.2576961517334,10.5622711181641,-0.229776799678802,-7.39833068847656,10.1472215652466, +-0.231568545103073,-8.81004905700684,9.69142246246338,-0.229955732822418,-7.19935035705566,10.1863565444946,-0.591005563735962,-7.38481473922729,10.0291147232056,-0.623237609863281,-8.7899923324585,9.57671356201172,-0.775017261505127,-6.81815528869629,10.2072381973267,-0.768659830093384,-6.24292087554932,10.3786296844482,-0.624491930007935,-7.1664834022522,10.0543651580811,-0.945066809654236,-6.81064701080322,10.1177816390991,-0.941124796867371,-6.23458623886108,10.285680770874,-0.904055118560791,-7.36976051330566,9.90339088439941,-0.969156742095947,-8.76664257049561,9.44309234619141,-0.919277667999268,-7.13067483901978,9.94816398620605,-1.16731762886047,-7.35641765594482,9.75736236572266,-1.22785365581512,-8.7446231842041,9.31387615203857,-1.35518491268158,-6.81324243545532,9.91727256774902,-1.40730035305023,-6.21622514724731,10.1071290969849,-1.23492860794067,-7.11357307434082,9.74963855743408,-1.52415907382965,-6.7968430519104,9.85405540466309,-1.65561163425446,-6.20611238479614,10.011492729187,-1.38374769687653,-7.34136390686035,9.59598064422607,-1.45547330379486,-8.71671867370605,9.14447689056396,-1.35402381420135,-7.09189558029175,9.65955638885498,-1.56060647964478,-7.31747579574585,9.38708782196045,-1.60716664791107,-8.68033504486084,8.93171501159668,-1.75921833515167,-6.75987148284912,9.51263236999512,-1.91556358337402,-6.17907047271729,9.69009113311768,-1.60546743869781,-7.02366256713867,9.39691734313965,-1.84240233898163,-6.70819139480591,9.40811252593994,-1.95612478256226,-6.17074584960938,9.52427291870117,-1.66447830200195,-7.30546855926514,9.17083549499512,-1.71256494522095,-8.64444255828857,8.70765399932861,-1.6563286781311,-7.04667615890503,9.24836349487305,-1.83085060119629,-7.27725458145142,8.91840267181396,-1.87517488002777,-8.60317230224609,8.46596527099609,-1.96651029586792,-6.66458702087402,8.98733615875244,-1.99641990661621,-6.13464879989624,9.09337615966797,-1.84625589847565,-6.97360754013062,8.91178035736084,-2.07629537582397,-6.64568758010864,8.82124805450439,-2.07253909111023,-6.11360597610474,8.88921642303467, +-2.00582432746887,-7.25209712982178,8.6655330657959,-2.05874919891357,-8.55307388305664,8.19036483764648,-1.97385668754578,-6.99205493927002,8.71567726135254,-2.20604872703552,-7.22290182113647,8.36590766906738,-2.24921131134033,-8.5011510848999,7.88850355148315,-2.38692808151245,-6.59554529190063,8.29255294799805,-2.28780221939087,-6.06023406982422,8.32820796966553,-2.28279185295105,-6.9405574798584,8.26551914215088,-2.49689269065857,-6.56070756912231,8.07066917419434,-2.42077994346619,-6.03821039199829,8.06968021392822,-2.37072277069092,-7.19344758987427,8.02481937408447,-2.42794132232666,-8.44096374511719,7.5404314994812,-2.34287667274475,-6.95722675323486,8.01273441314697,-2.55581617355347,-7.14428615570068,7.51011180877686,-2.61670422554016,-8.35823059082031,7.055992603302,-2.72720694541931,-6.49113845825195,7.42539978027344,-2.67553615570068,-5.98340654373169,7.48503971099854,-2.54444217681885,-6.89176177978516,7.39262962341309,-0.24768140912056,-6.43929576873779,10.521183013916,-8.63876193761826e-05,-6.43176889419556,10.4410247802734,-2.94614481925964,-6.04358386993408,6.46771049499512,-2.77511405944824,-6.042160987854,6.29461479187012,-0.802419066429138,-6.41565704345703,10.2279920578003,-0.952406287193298,-6.41716718673706,10.2511005401611,-1.22740256786346,-6.41600322723389,10.20911693573,-1.42521190643311,-6.40239143371582,10.0605430603027,-0.80215322971344,-6.42424201965332,10.3375110626221,-1.42870259284973,-6.39280700683594,9.95848274230957,-0.614013195037842,-6.43472051620483,10.456711769104,-1.63913404941559,-6.39344120025635,9.98497009277344,-1.84697043895721,-6.37893533706665,9.83883094787598,-1.89478540420532,-6.36156463623047,9.64317226409912,-1.82816302776337,-6.35279750823975,9.53087902069092,-1.95173799991608,-6.34195423126221,9.51108837127686,-1.98764657974243,-6.31946897506714,9.2871561050415,-2.01209568977356,-6.30130052566528,9.06704998016357,-1.97009432315826,-6.29887819290161,8.92680740356445,-2.1005642414093,-6.28078651428223,8.88731288909912,-2.24491095542908,-6.25608062744141,8.65854454040527, +-2.3569324016571,-6.22724103927612,8.31881046295166,-2.31923127174377,-6.2283182144165,8.18833160400391,-2.48247838020325,-6.20531368255615,8.08687591552734,-2.5932457447052,-6.17646503448486,7.78824043273926,-2.73571443557739,-6.14575147628784,7.46426868438721,-2.71985983848572,-6.1350998878479,7.29565238952637,-2.89653253555298,-6.10322284698486,7.11369037628174,-2.92313051223755,-6.07304763793945,6.79544544219971,-8.63876193761826e-05,-6.24901580810547,10.4386959075928,-1.31488943099976,-6.22159862518311,9.95839023590088,-1.84849011898041,-6.16833305358887,8.91840267181396,-2.41478109359741,-6.00821733474731,7.25911331176758,-2.55052709579468,-5.86619424819946,6.31378078460693,-7.82310962677002e-08,-7.63374471664429,9.61390972137451,-8.63876193761826e-05,-7.83736801147461,8.84372520446777,-0.742247104644775,-6.99653434753418,10.0049381256104,-0.753529191017151,-6.250168800354,10.2193965911865,-1.19238901138306,-7.04810857772827,9.70459842681885,-8.63876193761826e-05,-7.51410055160522,9.8661584854126,-8.63876193761826e-05,-7.08069658279419,10.1737451553345,-1.51332247257233,-6.94969987869263,9.32931423187256,-1.705934882164,-6.19787406921387,9.53186702728271,-1.79906511306763,-6.8272876739502,8.81970882415771,-8.63876193761826e-05,-7.74584197998047,9.34623718261719,-2.01218128204346,-6.82289361953735,8.04703044891357,-2.07271194458008,-6.08790969848633,8.10764694213867,-2.36463046073914,-6.7620906829834,7.1709156036377,-2.40179371833801,-6.87411165237427,6.66561508178711,-2.43465685844421,-5.92493963241577,6.79589653015137,-2.46994185447693,-6.64747476577759,6.21116352081299,-0.408778101205826,-6.82397079467773,10.1841192245483,-8.63876193761826e-05,-6.79702568054199,10.2399044036865,-0.449253052473068,-6.25741720199585,10.3840036392212,-0.768301486968994,-6.7783088684082,10.0750513076782,-0.368482649326324,-7.22236394882202,10.0187292098999,-1.36208033561707,-6.77516555786133,9.56143665313721,-1.24871861934662,-6.77588653564453,9.79299831390381,-1.56105065345764,-6.18121480941772,9.76264476776123,-1.5633796453476,-6.72467756271362,9.39523696899414, +-1.28086495399475,-7.11589002609253,9.45852947235107,-1.74157202243805,-6.61775159835815,8.52843189239502,-1.81061685085297,-6.65831899642944,8.84444141387939,-1.7967334985733,-6.07743167877197,8.57822513580322,-1.96248209476471,-6.59062337875366,8.08463954925537,-1.82216608524323,-7.01963424682617,8.50165271759033,-2.29881834983826,-6.40830230712891,7.05396366119385,-2.35254597663879,-6.49955892562866,7.20888137817383,-2.39221096038818,-5.94643402099609,7.09345722198486,-2.32183289527893,-6.37382984161377,6.75488471984863,-2.3724217414856,-6.8361496925354,6.97069072723389,-0.99207866191864,-6.82254838943481,9.92640495300293,-1.06460678577423,-6.23145198822021,10.1433038711548,-0.901187300682068,-7.17230892181396,9.77679347991943,-0.885517954826355,-7.3039402961731,9.76488018035889,-1.08547115325928,-7.29991245269775,9.62543964385986,-8.63876193761826e-05,-7.57320117950439,9.74625873565674,-0.633716464042664,-7.31559133529663,9.89508533477783,-0.358720153570175,-7.33178901672363,10.0024490356445,-8.63876193761826e-05,-7.45428800582886,9.97082138061523,-8.63876193761826e-05,-7.34548759460449,10.0920667648315,-1.57367956638336,-6.67300748825073,9.06239700317383,-1.66080164909363,-6.12256526947021,9.18434143066406,-1.53902459144592,-7.05311727523804,9.0281867980957,-1.53893184661865,-7.22737216949463,9.01106834411621,-1.67343008518219,-7.21591377258301,8.76922512054443,-8.63876193761826e-05,-7.79724311828613,9.12140941619873,-1.41527056694031,-7.26320028305054,9.24612617492676,-1.27333903312683,-7.27170753479004,9.44278621673584,-8.63876193761826e-05,-7.68532800674438,9.49693965911865,-2.06967210769653,-6.52390909194946,7.68051910400391,-2.16512894630432,-6.01422595977783,7.74579429626465,-2.1068286895752,-7.00432062149048,7.64997863769531,-2.12276911735535,-7.11804294586182,7.65159130096436,-2.211510181427,-7.08133029937744,7.04429531097412,-1.98693037033081,-7.16380071640015,8.06511497497559,-1.81249225139618,-7.18403625488281,8.50398254394531,-8.63876193761826e-05,-7.87684774398804,8.47908973693848,-2.37717342376709,-6.35243129730225,6.43036842346191, +-2.46277570724487,-5.88204622268677,6.51159000396729,-2.46528387069702,-6.41457033157349,6.23793506622314,-2.4466552734375,-6.77633762359619,6.3546142578125,-2.27741527557373,-7.01265478134155,6.33715438842773,-2.31179857254028,-7.012375831604,6.61600017547607,-2.26443481445313,-7.05769157409668,6.84542655944824,-0.164229720830917,-6.80920505523682,10.202561378479,-0.182492807507515,-6.25608110427856,10.4136228561401,-0.211506828665733,-7.34692001342773,10.0465745925903,-0.206761658191681,-7.1898717880249,10.0977258682251,-0.482740044593811,-7.33510541915894,9.95051288604736,-0.655742406845093,-6.80427360534668,10.0798892974854,-0.66675865650177,-6.22482919692993,10.2786798477173,-0.558587074279785,-7.15843725204468,9.98183059692383,-0.81433117389679,-6.80068826675415,10.0011081695557,-0.834120750427246,-6.2361912727356,10.1868181228638,-0.769110918045044,-7.32105112075806,9.82512760162354,-0.804927110671997,-7.11937952041626,9.8903341293335,-0.973005414009094,-7.31003475189209,9.70058727264404,-1.15577042102814,-6.80140924453735,9.81260967254639,-1.2386839389801,-6.19876766204834,10.0269651412964,-1.07750105857849,-7.10684394836426,9.70254039764404,-1.24253332614899,-6.78134679794312,9.71249961853027,-1.41114974021912,-6.18417549133301,9.89578342437744,-1.182985663414,-7.29749011993408,9.53036594390869,-1.18441891670227,-7.08983898162842,9.60941314697266,-1.33673655986786,-7.27682209014893,9.35315036773682,-1.48440098762512,-6.75144052505493,9.42030906677246,-1.65955352783203,-6.17799425125122,9.60728073120117,-1.42646634578705,-7.01918315887451,9.3570728302002,-1.51054787635803,-6.6938681602478,9.28552722930908,-1.64334118366241,-6.15865278244019,9.41034984588623,-1.47633826732635,-7.26033544540405,9.12113571166992,-1.47965574264526,-7.0264310836792,9.21354866027832,-1.59319698810577,-7.23587989807129,8.90049839019775,-1.68059754371643,-6.65517568588257,8.88534927368164,-1.74676895141602,-6.12426662445068,9.00220108032227,-1.64289700984955,-6.95435237884521,8.88427352905273,-1.75670969486237,-6.63870859146118,8.75004196166992, +-1.79762709140778,-6.10671377182007,8.8160572052002,-1.74336385726929,-7.22013378143311,8.62440967559814,-1.78590512275696,-6.9868540763855,8.66543865203857,-1.88027858734131,-7.19379329681396,8.34619426727295,-1.87034344673157,-6.59052753448486,8.23954105377197,-1.92415738105774,-6.05558109283447,8.27859210968018,-1.96293330192566,-6.93778896331787,8.23732280731201,-1.97251629829407,-6.54763412475586,7.92757606506348,-2.06975841522217,-6.02782821655273,7.95918560028076,-2.05014777183533,-7.16031122207642,7.85709953308105,-2.0325083732605,-6.95929336547852,7.88146114349365,-2.18375062942505,-7.11858129501343,7.38582038879395,-2.21473598480225,-6.49767541885376,7.3962984085083,-2.2940731048584,-5.9813494682312,7.46292114257813,-2.24562788009644,-6.9142370223999,7.3690767288208,-0.159570872783661,-6.43436431884766,10.3271369934082,-8.63876193761826e-05,-6.42721271514893,10.3771781921387,-2.37725949287415,-6.0447564125061,6.48078346252441,-2.48032832145691,-6.04098796844482,6.27625942230225,-0.765434265136719,-6.41089868545532,10.1759881973267,-0.817821979522705,-6.41787767410278,10.1137351989746,-1.04007208347321,-6.41958856582642,10.0598287582397,-1.21182084083557,-6.38296318054199,9.94424057006836,-0.672127485275269,-6.40444803237915,10.199089050293,-1.29501354694366,-6.38412666320801,9.91039562225342,-0.431785702705383,-6.44107437133789,10.3041973114014,-1.30737030506134,-6.36621761322021,9.8283519744873,-1.44723796844482,-6.3676495552063,9.6828556060791,-1.55495846271515,-6.35618114471436,9.52470016479492,-1.64325487613678,-6.35018253326416,9.48718547821045,-1.55093038082123,-6.32565069198608,9.35752391815186,-1.59283840656281,-6.29834938049316,9.12373161315918,-1.69017350673676,-6.30380964279175,8.93694496154785,-1.83497214317322,-6.29923343658447,8.9019136428833,-1.76378405094147,-6.27327823638916,8.8079948425293,-1.73020422458649,-6.24784183502197,8.57032203674316,-1.85045862197876,-6.22205018997192,8.26311206817627,-2.00090026855469,-6.22034883499146,8.10254383087158,-1.99938058853149,-6.19258642196655,7.95139503479004, +-2.0818498134613,-6.17046642303467,7.72323131561279,-2.22064208984375,-6.14450168609619,7.43641567230225,-2.35916900634766,-6.13867616653442,7.24765110015869,-2.30248785018921,-6.10232877731323,7.09032535552979,-2.33660554885864,-6.07250928878784,6.78926658630371,-0.211865276098251,-6.22626161575317,10.5215425491333,-8.63876193761826e-05,-6.22895336151123,10.4758768081665,-0.499663114547729,-6.2232141494751,10.479640007019,-0.711169242858887,-6.20296907424927,10.344331741333,-0.765169143676758,-6.23091459274292,10.2445812225342,-0.889998555183411,-6.19849920272827,10.248233795166,-1.14268970489502,-6.18935632705688,10.2103710174561,-1.32716000080109,-6.17092847824097,10.0805139541626,-1.36969244480133,-6.20261287689209,9.98256492614746,-1.5476188659668,-6.15373086929321,9.96635913848877,-1.73405301570892,-6.14029169082642,9.83517265319824,-1.80837345123291,-6.13751363754272,9.66423320770264,-1.77622711658478,-6.18220472335815,9.54880809783936,-1.80273246765137,-6.16089248657227,9.46588706970215,-1.81679713726044,-6.1306209564209,9.24399375915527,-1.87285208702087,-6.12497854232788,9.05048561096191,-1.90329301357269,-6.1617865562439,8.92780590057373,-1.93409872055054,-6.11298084259033,8.84854507446289,-1.98943901062012,-6.10322332382202,8.61368274688721,-2.10718727111816,-6.06095504760742,8.30268287658691,-2.17148685455322,-6.08093070983887,8.14051723480225,-2.24643063545227,-6.01787900924683,8.01282119750977,-2.34591579437256,-6.02424287796021,7.7705078125,-2.48614835739136,-5.96756458282471,7.47653198242188,-2.54963827133179,-5.99755668640137,7.28176975250244,-2.61858296394348,-5.93263006210327,7.10500335693359,-2.6429443359375,-5.93326425552368,6.80117988586426,-2.68109083175659,-5.86575222015381,6.51230716705322,-2.642493724823,-5.84774684906006,6.32882499694824,-0.231927007436752,-7.25774002075195,10.175895690918,-8.63876193761826e-05,-7.17624998092651,10.1957769393921,-1.27531027793884,-7.11768770217896,9.70085906982422,-1.21263039112091,-7.18358469009399,9.74856281280518,-1.08144354820251,-7.25827836990356,9.8084774017334, +-0.91542911529541,-7.20042705535889,9.93313789367676,-1.36002326011658,-7.16291666030884,9.63701248168945,-0.766243815422058,-7.1038064956665,10.0139951705933,-1.4801938533783,-7.18358469009399,9.50484180450439,-0.610522389411926,-7.22952556610107,10.0462160110474,-1.58299040794373,-7.10720920562744,9.38796424865723,-0.414146929979324,-7.28011894226074,10.0979919433594,-1.62418222427368,-7.05052137374878,9.31688690185547,-1.65301668643951,-7.12260961532593,9.22098064422607,-1.74005258083344,-7.21484661102295,9.05084419250488,-1.83873689174652,-7.06180715560913,8.91151523590088,-1.90785849094391,-6.94673871994019,8.81847381591797,-1.98334693908691,-7.0669116973877,8.70035934448242,-2.10477209091187,-7.08706951141357,8.53030776977539,-2.25968408584595,-7.02285432815552,8.29829502105713,-2.30230903625488,-6.93278026580811,8.15278053283691,-2.35021615028381,-7.02563285827637,8.0163106918335,-2.44039058685303,-7.08777141571045,7.73836231231689,-2.55375289916992,-6.96009111404419,7.40775966644287,-2.61894083023071,-6.80455160140991,7.22974681854248,-2.70526623725891,-6.90788221359253,7.03086185455322,-2.74421525001526,-6.93796157836914,6.706618309021,-2.76132369041443,-6.85567378997803,6.37234687805176,-2.77018284797668,-6.71589088439941,6.21116352081299,-2.43842005729675,-6.71518850326538,6.20507049560547,-2.40528464317322,-6.84054279327393,6.32443904876709,-0.232192248106003,-7.10675764083862,10.2216529846191,-8.63876193761826e-05,-7.01399183273315,10.2307910919189,-0.190555527806282,-7.08912754058838,10.0921697616577,-8.63876193761826e-05,-7.00880098342896,10.1782064437866,-0.498501420021057,-7.13810586929321,10.1482276916504,-0.679473996162415,-7.08311939239502,10.0880575180054,-0.786750316619873,-6.94853687286377,10.0612802505493,-0.928860664367676,-7.0535683631897,9.99302673339844,-1.11609792709351,-7.11974477767944,9.86094284057617,-1.27477288246155,-7.04301357269287,9.7911205291748,-1.31175696849823,-6.9691276550293,9.75143051147461,-1.39897179603577,-7.02421045303345,9.71569919586182,-1.5417058467865,-7.04632043838501,9.55863761901855, +-1.65050804615021,-6.96259117126465,9.42530822753906,-1.66904389858246,-6.89802980422974,9.36460971832275,-1.70916044712067,-6.96581125259399,9.29655361175537,-1.79082667827606,-7.05285739898682,9.09024429321289,-1.88520884513855,-6.89964485168457,8.92895603179932,-1.91538393497467,-6.78967189788818,8.83913993835449,-2.00582432746887,-6.90751791000366,8.75031280517578,-2.15966081619263,-6.92784881591797,8.5554666519165,-2.32756018638611,-6.8562126159668,8.26829051971436,-2.32738065719604,-6.77374219894409,8.14498901367188,-2.3983895778656,-6.86222076416016,8.0357494354248,-2.50504231452942,-6.92560911178589,7.71920299530029,-2.61258339881897,-6.79585218429565,7.39737415313721,-2.63434433937073,-6.64138984680176,7.24111461639404,-2.77000403404236,-6.72520542144775,7.05495262145996,-2.82856965065002,-6.75618839263916,6.72515392303467,-2.82785248756409,-6.67237234115601,6.38604354858398,-2.7818295955658,-6.59276676177979,6.26300621032715,-2.46689605712891,-6.59018087387085,6.21349239349365,-2.41012287139893,-6.66494178771973,6.36902809143066,-2.35200834274292,-6.7433066368103,6.6873664855957,-2.33418941497803,-6.72350406646729,6.99549102783203,-2.35245251655579,-6.69726037979126,7.17932987213135,-2.22297120094299,-6.80535936355591,7.36782264709473,-2.07638835906982,-6.87922620773315,7.65043067932129,-2.00107884407043,-6.85307884216309,7.89256381988525,-1.98979711532593,-6.76747465133667,8.05535316467285,-1.92746913433075,-6.85236740112305,8.22890090942383,-1.78473269939423,-6.91996622085571,8.50344371795654,-1.76933181285858,-6.8999137878418,8.68843650817871,-1.80165505409241,-6.78798961639404,8.82483100891113,-1.65032911300659,-6.87851524353027,8.87730312347412,-1.536337018013,-6.95659208297729,9.02800750732422,-1.47947692871094,-6.94280767440796,9.2316198348999,-1.52451741695404,-6.89525175094604,9.34580898284912,-1.43667268753052,-6.95382404327393,9.3662052154541,-1.28399729728699,-7.03073740005493,9.47126293182373,-1.18943631649017,-7.01444339752197,9.63278579711914,-1.20617985725403,-6.98139381408691,9.72575092315674, +-1.09362077713013,-7.03145837783813,9.72197151184082,-0.91228985786438,-7.08320569992065,9.80105972290039,-0.800447821617126,-7.0389666557312,9.9125280380249,-0.749321341514587,-6.94289350509644,10.0201807022095,-0.580526828765869,-7.06798791885376,9.9924201965332,-0.370632857084274,-7.11732244491577,10.043083190918,-2.05059957504272,-7.15028476715088,6.43753433227539,-1.61370348930359,-7.31763792037964,6.31637525558472,-1.84446167945862,-7.38927459716797,7.59688234329224,-1.74399435520172,-7.42795753479004,8.05463600158691,-1.6448677778244,-7.41534519195557,8.48427867889404,-1.46407413482666,-7.43959951400757,8.77584743499756,-1.39216959476471,-7.41677808761597,9.0232629776001,-1.21002840995789,-7.43369722366333,9.25669193267822,-1.08923423290253,-7.41399049758911,9.44921207427979,-0.880144715309143,-7.41937398910522,9.61426830291748,-0.696669220924377,-7.40790510177612,9.7512674331665,-0.436000376939774,-7.42035388946533,9.86139488220215,-0.259321302175522,-7.40485811233521,9.95839023590088,1.42162692546844,-6.22902965545654,9.99483776092529,1.95970737934113,-6.17012119293213,8.93764305114746,2.68171334266663,-6.01233148574829,7.30299282073975,2.73275327682495,-5.87049102783203,6.33276748657227,1.34855461120605,-8.7330265045166,9.24324417114258,1.9685732126236,-8.5785083770752,8.34024810791016,2.7479772567749,-8.30893611907959,6.76264047622681,2.82454037666321,-8.00935745239258,5.65442037582397,0.773762106895447,-7.00037956237793,10.0389804840088,0.781108498573303,-6.25447607040405,10.259428024292,1.28614675998688,-7.0286808013916,9.71983909606934,0.821490883827209,-8.77790546417236,9.50720596313477,1.6422655582428,-6.95121908187866,9.3407735824585,1.83622550964355,-6.1999306678772,9.55794048309326,1.90436506271362,-6.82845067977905,8.82947158813477,1.66348826885223,-8.6617317199707,8.825514793396,2.30419278144836,-6.82737350463867,8.13209533691406,2.26649165153503,-6.09426403045654,8.17570304870605,2.59368920326233,-6.70084619522095,7.23260688781738,2.34618735313416,-8.47163581848145,7.71692514419556,2.74323296546936,-6.87985038757324,6.71100425720215, +2.8471040725708,-5.92618942260742,6.80941581726074,2.76525831222534,-6.6276912689209,6.23508262634277,2.79418587684631,-8.21381759643555,6.20342493057251,0.569064378738403,-6.83498764038086,10.3152141571045,0.598523259162903,-6.2509765625,10.4933376312256,0.805822134017944,-6.78305768966675,10.1227054595947,0.423907995223999,-7.23230409622192,10.1029167175293,1.69581365585327,-6.78860425949097,9.6970043182373,1.3717485666275,-6.77857828140259,9.83614444732666,1.86649394035339,-6.1895489692688,9.87600517272949,1.73449695110321,-6.72753286361694,9.42684555053711,1.48117506504059,-7.12226343154907,9.51136207580566,2.24339008331299,-6.62554740905762,8.6055326461792,1.93857717514038,-6.65975141525269,8.86474990844727,2.18213701248169,-6.08514165878296,8.65997886657715,2.35961890220642,-6.59931373596191,8.17973804473877,2.10646986961365,-7.02285432815552,8.53039360046387,2.88157939910889,-6.40284204483032,7.08253288269043,2.70624828338623,-6.44912910461426,7.26314735412598,2.83931279182434,-5.9487509727478,7.11781215667725,2.93271279335022,-6.37607002258301,6.76114940643311,2.69863653182983,-6.83150625228882,7.03578662872314,1.17913556098938,-6.83588123321533,10.0483856201172,1.21432793140411,-6.22680950164795,10.2498636245728,1.0867246389389,-7.20661783218384,9.80578804016113,1.04284584522247,-7.37217378616333,9.82890796661377,1.27718758583069,-7.34181547164917,9.68410873413086,1.10141122341156,-8.75555324554443,9.3794412612915,0.759348392486572,-7.36223363876343,9.97036933898926,0.40949422121048,-7.39689826965332,10.0896625518799,0.417550653219223,-8.80156993865967,9.64441108703613,1.91439652442932,-6.69897270202637,9.1934928894043,1.97161936759949,-6.1438775062561,9.30354309082031,1.74023056030273,-7.1545729637146,9.05648517608643,1.74425876140594,-7.33295249938965,9.04251575469971,1.91726171970367,-7.24627161026001,8.79716396331787,1.78679132461548,-8.63889026641846,8.58676719665527,1.61361634731293,-7.30035448074341,9.28481006622314,1.48583340644836,-7.33698034286499,9.4945240020752,1.54627752304077,-8.69909477233887,9.0396900177002, +2.59897184371948,-6.53626155853271,7.74758625030518,2.52357721328735,-6.01895570755005,7.7970142364502,2.43555212020874,-7.0410327911377,7.70953369140625,2.45328426361084,-7.18557453155518,7.81644439697266,2.66792321205139,-7.09995031356812,7.22804164886475,2.50952053070068,-8.40734767913818,7.34728145599365,2.29344177246094,-7.19611978530884,8.1980094909668,2.1036958694458,-7.24394464492798,8.52466678619385,2.15249943733215,-8.52693653106689,8.03760242462158,2.928147315979,-6.3525276184082,6.42132949829102,2.89375734329224,-5.88141202926636,6.50469493865967,2.78675365447998,-6.41502141952515,6.25674152374268,2.76006865501404,-6.78036499023438,6.37870407104492,2.76114368438721,-7.03619718551636,6.35551071166992,2.77600908279419,-6.95524549484253,6.16110515594482,2.80860018730164,-8.1545934677124,5.86091089248657,2.7439489364624,-7.07595634460449,6.69479846954346,2.71788811683655,-7.09941244125366,7.01734447479248,2.77869057655334,-8.27109909057617,6.53366899490356,0.237473994493484,-6.82442331314087,10.375675201416,0.250189274549484,-6.2576961517334,10.5622711181641,0.229682803153992,-7.39833068847656,10.1472215652466,0.231388211250305,-8.81004905700684,9.69142246246338,0.22977602481842,-7.19935035705566,10.1863565444946,0.590825200080872,-7.38481473922729,10.0291147232056,0.623057961463928,-8.7899923324585,9.57671356201172,0.774837493896484,-6.81815528869629,10.2072381973267,0.768479585647583,-6.24292087554932,10.3786296844482,0.624312281608582,-7.1664834022522,10.0543651580811,0.94497287273407,-6.81064701080322,10.1177816390991,0.94094455242157,-6.23458623886108,10.285680770874,0.903960466384888,-7.36976051330566,9.90339088439941,0.969062685966492,-8.76664257049561,9.44309234619141,0.919098019599915,-7.13067483901978,9.94816398620605,1.16722977161407,-7.35641765594482,9.75736236572266,1.22776019573212,-8.7446231842041,9.31387615203857,1.35500514507294,-6.81324243545532,9.91727256774902,1.40712058544159,-6.21622514724731,10.1071290969849,1.23474812507629,-7.11357307434082,9.74963855743408,1.52406573295593,-6.7968430519104,9.85405540466309, +1.655517578125,-6.20611238479614,10.011492729187,1.38366067409515,-7.34136390686035,9.59598064422607,1.45529353618622,-8.71671867370605,9.14447689056396,1.3539297580719,-7.09189558029175,9.65955638885498,1.56051242351532,-7.31747579574585,9.38708782196045,1.60707950592041,-8.68033504486084,8.93171501159668,1.75912415981293,-6.75987148284912,9.51263236999512,1.91538572311401,-6.17907047271729,9.69009113311768,1.60528767108917,-7.02366256713867,9.39691734313965,1.84231078624725,-6.70819139480591,9.40811252593994,1.95603764057159,-6.17074584960938,9.52427291870117,1.66429793834686,-7.30546855926514,9.17083549499512,1.71238458156586,-8.64444255828857,8.70765399932861,1.65623450279236,-7.04667615890503,9.24836349487305,1.83076584339142,-7.27725458145142,8.91840267181396,1.87508773803711,-8.60317230224609,8.46596527099609,1.96642315387726,-6.66458702087402,8.98733615875244,1.99624037742615,-6.13464879989624,9.09337615966797,1.84607124328613,-6.97360754013062,8.91178035736084,2.07620859146118,-6.64568758010864,8.82124805450439,2.07244515419006,-6.11360597610474,8.88921642303467,2.00564384460449,-7.25209712982178,8.6655330657959,2.05865526199341,-8.55307388305664,8.19036483764648,1.97376346588135,-6.99205493927002,8.71567726135254,2.20595479011536,-7.22290182113647,8.36590766906738,2.24911832809448,-8.5011510848999,7.88850355148315,2.38684177398682,-6.59554529190063,8.29255294799805,2.28771471977234,-6.06023406982422,8.32820796966553,2.28261160850525,-6.9405574798584,8.26551914215088,2.49680519104004,-6.56070756912231,8.07066917419434,2.42068672180176,-6.03821039199829,8.06968021392822,2.37054252624512,-7.19344758987427,8.02481937408447,2.4277617931366,-8.44096374511719,7.5404314994812,2.34269642829895,-6.95722675323486,8.01273441314697,2.55572271347046,-7.14428615570068,7.51011180877686,2.61661791801453,-8.35823059082031,7.055992603302,2.72702670097351,-6.49113845825195,7.42539978027344,2.67544841766357,-5.98340654373169,7.48503971099854,2.54426193237305,-6.89176177978516,7.39262962341309,0.247594326734543,-6.43929576873779,10.521183013916, +2.94605207443237,-6.04358386993408,6.46771049499512,2.77502059936523,-6.042160987854,6.29461479187012,0.802238702774048,-6.41565704345703,10.2279920578003,0.952317953109741,-6.41716718673706,10.2511005401611,1.22731554508209,-6.41600322723389,10.20911693573,1.42511832714081,-6.40239143371582,10.0605430603027,0.801973462104797,-6.42424201965332,10.3375110626221,1.42852222919464,-6.39280700683594,9.95848274230957,0.61392605304718,-6.43472051620483,10.456711769104,1.63895356655121,-6.39344120025635,9.98497009277344,1.84687435626984,-6.37893533706665,9.83883094787598,1.89469766616821,-6.36156463623047,9.64317226409912,1.8280782699585,-6.35279750823975,9.53087902069092,1.95165050029755,-6.34195423126221,9.51108837127686,1.98755347728729,-6.31946897506714,9.2871561050415,2.01200199127197,-6.30130052566528,9.06704998016357,1.96991419792175,-6.29887819290161,8.92680740356445,2.10047078132629,-6.28078651428223,8.88731288909912,2.24482417106628,-6.25608062744141,8.65854454040527,2.35684561729431,-6.22724103927612,8.31881046295166,2.31914448738098,-6.2283182144165,8.18833160400391,2.48238515853882,-6.20531368255615,8.08687591552734,2.59315180778503,-6.17646503448486,7.78824043273926,2.73562049865723,-6.14575147628784,7.46426868438721,2.71968030929565,-6.1350998878479,7.29565238952637,2.89635276794434,-6.10322284698486,7.11369037628174,2.92295026779175,-6.07304763793945,6.79544544219971,1.31470966339111,-6.22159862518311,9.95839023590088,1.84831202030182,-6.16833305358887,8.91840267181396,2.41468811035156,-6.00821733474731,7.25911331176758,2.55035400390625,-5.86619424819946,6.31378078460693,0.742067456245422,-6.99653434753418,10.0049381256104,0.753435134887695,-6.250168800354,10.2193965911865,1.1922093629837,-7.04810857772827,9.70459842681885,1.51323521137238,-6.94969987869263,9.32931423187256,1.70575511455536,-6.19787406921387,9.53186702728271,1.79888224601746,-6.8272876739502,8.81970882415771,2.01209449768066,-6.82289361953735,8.04703044891357,2.07253789901733,-6.08790969848633,8.10764694213867,2.36454367637634,-6.7620906829834,7.1709156036377, +2.40170741081238,-6.87411165237427,6.66561508178711,2.43457007408142,-5.92493963241577,6.79589653015137,2.46984887123108,-6.64747476577759,6.21116352081299,0.408598363399506,-6.82397079467773,10.1841192245483,0.449159681797028,-6.25741720199585,10.3840036392212,0.768214344978333,-6.7783088684082,10.0750513076782,0.368302315473557,-7.22236394882202,10.0187292098999,1.36198663711548,-6.77516555786133,9.56143665313721,1.24853885173798,-6.77588653564453,9.79299831390381,1.56095719337463,-6.18121480941772,9.76264476776123,1.56328618526459,-6.72467756271362,9.39523696899414,1.28077101707458,-7.11589002609253,9.45852947235107,1.74139225482941,-6.61775159835815,8.52843189239502,1.8105229139328,-6.65831899642944,8.84444141387939,1.79664647579193,-6.07743167877197,8.57822513580322,1.96239495277405,-6.59062337875366,8.08463954925537,1.82207632064819,-7.01963424682617,8.50165271759033,2.29863882064819,-6.40830230712891,7.05396366119385,2.35236573219299,-6.49955892562866,7.20888137817383,2.39212441444397,-5.94643402099609,7.09345722198486,2.32165336608887,-6.37382984161377,6.75488471984863,2.3723349571228,-6.8361496925354,6.97069072723389,0.99189829826355,-6.82254838943481,9.92640495300293,1.06451976299286,-6.23145198822021,10.1433038711548,0.901006937026978,-7.17230892181396,9.77679347991943,0.88533890247345,-7.3039402961731,9.76488018035889,1.08538401126862,-7.29991245269775,9.62543964385986,0.633623003959656,-7.31559133529663,9.89508533477783,0.3585404753685,-7.33178901672363,10.0024490356445,1.57349920272827,-6.67300748825073,9.06239700317383,1.66071391105652,-6.12256526947021,9.18434143066406,1.53884470462799,-7.05311727523804,9.0281867980957,1.53875148296356,-7.22737216949463,9.01106834411621,1.67325019836426,-7.21591377258301,8.76922512054443,1.41517698764801,-7.26320028305054,9.24612617492676,1.27315926551819,-7.27170753479004,9.44278621673584,2.0695788860321,-6.52390909194946,7.68051910400391,2.16503524780273,-6.01422595977783,7.74579429626465,2.1067419052124,-7.00432062149048,7.64997863769531,2.12258958816528,-7.11804294586182,7.65159130096436, +2.21133065223694,-7.08133029937744,7.04429531097412,1.98675000667572,-7.16380071640015,8.06511497497559,1.81231451034546,-7.18403625488281,8.50398254394531,2.37707948684692,-6.35243129730225,6.43036842346191,2.46259546279907,-5.88204622268677,6.51159000396729,2.46510434150696,-6.41457033157349,6.23793506622314,2.44656825065613,-6.77633762359619,6.3546142578125,2.27723574638367,-7.01265478134155,6.33715438842773,2.31161856651306,-7.012375831604,6.61600017547607,2.2643415927887,-7.05769157409668,6.84542655944824,0.164135694503784,-6.80920505523682,10.202561378479,0.182405695319176,-6.25608110427856,10.4136228561401,0.211326479911804,-7.34692001342773,10.0465745925903,0.206668257713318,-7.1898717880249,10.0977258682251,0.482653617858887,-7.33510541915894,9.95051288604736,0.65556275844574,-6.80427360534668,10.0798892974854,0.666665315628052,-6.22482919692993,10.2786798477173,0.55849301815033,-7.15843725204468,9.98183059692383,0.814150810241699,-6.80068826675415,10.0011081695557,0.834026694297791,-6.2361912727356,10.1868181228638,0.768931269645691,-7.32105112075806,9.82512760162354,0.804747343063354,-7.11937952041626,9.8903341293335,0.972911953926086,-7.31003475189209,9.70058727264404,1.15558993816376,-6.80140924453735,9.81260967254639,1.23859751224518,-6.19876766204834,10.0269651412964,1.07732129096985,-7.10684394836426,9.70254039764404,1.24235355854034,-6.78134679794312,9.71249961853027,1.41096925735474,-6.18417549133301,9.89578342437744,1.18289852142334,-7.29749011993408,9.53036594390869,1.1843318939209,-7.08983898162842,9.60941314697266,1.33655607700348,-7.27682209014893,9.35315036773682,1.4843076467514,-6.75144052505493,9.42030906677246,1.65937316417694,-6.17799425125122,9.60728073120117,1.42628586292267,-7.01918315887451,9.3570728302002,1.51045441627502,-6.6938681602478,9.28552722930908,1.64325404167175,-6.15865278244019,9.41034984588623,1.47625112533569,-7.26033544540405,9.12113571166992,1.47947597503662,-7.0264310836792,9.21354866027832,1.59310984611511,-7.23587989807129,8.90049839019775,1.68041086196899,-6.65517568588257,8.88534927368164, +1.74668180942535,-6.12426662445068,9.00220108032227,1.64271664619446,-6.95435237884521,8.88427352905273,1.75652933120728,-6.63870859146118,8.75004196166992,1.79754233360291,-6.10671377182007,8.8160572052002,1.74318397045135,-7.22013378143311,8.62440967559814,1.78572285175323,-6.9868540763855,8.66543865203857,1.88009810447693,-7.19379329681396,8.34619426727295,1.87016367912292,-6.59052753448486,8.23954105377197,1.92407023906708,-6.05558109283447,8.27859210968018,1.96275353431702,-6.93778896331787,8.23732280731201,1.97242271900177,-6.54763412475586,7.92757606506348,2.0695788860321,-6.02782821655273,7.95918560028076,2.05006146430969,-7.16031122207642,7.85709953308105,2.03241515159607,-6.95929336547852,7.88146114349365,2.18357110023499,-7.11858129501343,7.38582038879395,2.21455574035645,-6.49767541885376,7.3962984085083,2.29397916793823,-5.9813494682312,7.46292114257813,2.24553394317627,-6.9142370223999,7.3690767288208,0.159476846456528,-6.43436431884766,10.3271369934082,2.37707948684692,-6.0447564125061,6.48078346252441,2.48014879226685,-6.04098796844482,6.27625942230225,0.765347242355347,-6.41089868545532,10.1759881973267,0.817641615867615,-6.41787767410278,10.1137351989746,1.03989231586456,-6.41958856582642,10.0598287582397,1.21173357963562,-6.38296318054199,9.94424057006836,0.672040462493896,-6.40444803237915,10.199089050293,1.29492020606995,-6.38412666320801,9.91039562225342,0.431699216365814,-6.44107437133789,10.3041973114014,1.30727684497833,-6.36621761322021,9.8283519744873,1.44715082645416,-6.3676495552063,9.6828556060791,1.55487143993378,-6.35618114471436,9.52470016479492,1.64316141605377,-6.35018253326416,9.48718547821045,1.5507504940033,-6.32565069198608,9.35752391815186,1.59275138378143,-6.29834938049316,9.12373161315918,1.69008696079254,-6.30380964279175,8.93694496154785,1.83487796783447,-6.29923343658447,8.9019136428833,1.76360416412354,-6.27327823638916,8.8079948425293,1.73011028766632,-6.24784183502197,8.57032203674316,1.85028100013733,-6.22205018997192,8.26311206817627,2.00080609321594,-6.22034883499146,8.10254383087158, +1.99919378757477,-6.19258642196655,7.95139503479004,2.08166980743408,-6.17046642303467,7.72323131561279,2.22055506706238,-6.14450168609619,7.43641567230225,2.35908222198486,-6.13867616653442,7.24765110015869,2.30240106582642,-6.10232877731323,7.09032535552979,2.33642554283142,-6.07250928878784,6.78926658630371,0.211684957146645,-6.22626161575317,10.5215425491333,0.499576061964035,-6.2232141494751,10.479640007019,0.711082100868225,-6.20296907424927,10.344331741333,0.765075087547302,-6.23091459274292,10.2445812225342,0.88981819152832,-6.19849920272827,10.248233795166,1.14250981807709,-6.18935632705688,10.2103710174561,1.326979637146,-6.17092847824097,10.0805139541626,1.36959850788116,-6.20261287689209,9.98256492614746,1.54753184318542,-6.15373086929321,9.96635913848877,1.73395955562592,-6.14029169082642,9.83517265319824,1.80828642845154,-6.13751363754272,9.66423320770264,1.77613985538483,-6.18220472335815,9.54880809783936,1.80264532566071,-6.16089248657227,9.46588706970215,1.81670117378235,-6.1306209564209,9.24399375915527,1.87275791168213,-6.12497854232788,9.05048561096191,1.90311253070831,-6.1617865562439,8.92780590057373,1.93400537967682,-6.11298084259033,8.84854507446289,1.98934519290924,-6.10322332382202,8.61368274688721,2.10710048675537,-6.06095504760742,8.30268287658691,2.17139315605164,-6.08093070983887,8.14051723480225,2.2463436126709,-6.01787900924683,8.01282119750977,2.3457362651825,-6.02424287796021,7.7705078125,2.48596858978271,-5.96756458282471,7.47653198242188,2.54954433441162,-5.99755668640137,7.28176975250244,2.61840271949768,-5.93263006210327,7.10500335693359,2.64285111427307,-5.93326425552368,6.80117988586426,2.68091058731079,-5.86575222015381,6.51230716705322,2.6423134803772,-5.84774684906006,6.32882499694824,0.231832981109619,-7.25774002075195,10.175895690918,1.27512991428375,-7.11768770217896,9.70085906982422,1.21253621578217,-7.18358469009399,9.74856281280518,1.08126318454742,-7.25827836990356,9.8084774017334,0.915335059165955,-7.20042705535889,9.93313789367676,1.35992920398712,-7.16291666030884,9.63701248168945, +0.766064167022705,-7.1038064956665,10.0139951705933,1.48001337051392,-7.18358469009399,9.50484180450439,0.610435843467712,-7.22952556610107,10.0462160110474,1.58281052112579,-7.10720920562744,9.38796424865723,0.413967221975327,-7.28011894226074,10.0979919433594,1.62400186061859,-7.05052137374878,9.31688690185547,1.6529233455658,-7.12260961532593,9.22098064422607,1.73996531963348,-7.21484661102295,9.05084419250488,1.83863842487335,-7.06180715560913,8.91151523590088,1.9076806306839,-6.94673871994019,8.81847381591797,1.98316657543182,-7.0669116973877,8.70035934448242,2.10468506813049,-7.08706951141357,8.53030776977539,2.25950384140015,-7.02285432815552,8.29829502105713,2.30222153663635,-6.93278026580811,8.15278053283691,2.35003614425659,-7.02563285827637,8.0163106918335,2.44021105766296,-7.08777141571045,7.73836231231689,2.5535728931427,-6.96009111404419,7.40775966644287,2.61885452270508,-6.80455160140991,7.22974681854248,2.70517349243164,-6.90788221359253,7.03086185455322,2.74412798881531,-6.93796157836914,6.706618309021,2.76122975349426,-6.85567378997803,6.37234687805176,2.77009677886963,-6.71589088439941,6.21116352081299,2.43823909759521,-6.71518850326538,6.20507049560547,2.40510511398315,-6.84054279327393,6.32443904876709,0.232011899352074,-7.10675764083862,10.2216529846191,0.190375849604607,-7.08912754058838,10.0921697616577,0.498407989740372,-7.13810586929321,10.1482276916504,0.679294228553772,-7.08311939239502,10.0880575180054,0.786656260490417,-6.94853687286377,10.0612802505493,0.928766012191772,-7.0535683631897,9.99302673339844,1.1160044670105,-7.11974477767944,9.86094284057617,1.27468574047089,-7.04301357269287,9.7911205291748,1.31166362762451,-6.9691276550293,9.75143051147461,1.39879143238068,-7.02421045303345,9.71569919586182,1.54161858558655,-7.04632043838501,9.55863761901855,1.65032815933228,-6.96259117126465,9.42530822753906,1.66886353492737,-6.89802980422974,9.36460971832275,1.70906710624695,-6.96581125259399,9.29655361175537,1.79073321819305,-7.05285739898682,9.09024429321289,1.88503098487854,-6.89964485168457,8.92895603179932, +1.91529059410095,-6.78967189788818,8.83913993835449,2.00573706626892,-6.90751791000366,8.75031280517578,2.15957379341125,-6.92784881591797,8.5554666519165,2.32737994194031,-6.8562126159668,8.26829051971436,2.32720112800598,-6.77374219894409,8.14498901367188,2.39830231666565,-6.86222076416016,8.0357494354248,2.50486207008362,-6.92560911178589,7.71920299530029,2.6124963760376,-6.79585218429565,7.39737415313721,2.63425731658936,-6.64138984680176,7.24111461639404,2.76991724967957,-6.72520542144775,7.05495262145996,2.82848238945007,-6.75618839263916,6.72515392303467,2.82776618003845,-6.67237234115601,6.38604354858398,2.78165006637573,-6.59276676177979,6.26300621032715,2.4668025970459,-6.59018087387085,6.21349239349365,2.40994262695313,-6.66494178771973,6.36902809143066,2.35182809829712,-6.7433066368103,6.6873664855957,2.33409547805786,-6.72350406646729,6.99549102783203,2.35227227210999,-6.69726037979126,7.17932987213135,2.22279167175293,-6.80535936355591,7.36782264709473,2.07620859146118,-6.87922620773315,7.65043067932129,2.00089931488037,-6.85307884216309,7.89256381988525,1.98961746692657,-6.76747465133667,8.05535316467285,1.92728888988495,-6.85236740112305,8.22890090942383,1.78455495834351,-6.91996622085571,8.50344371795654,1.76924467086792,-6.8999137878418,8.68843650817871,1.80147790908813,-6.78798961639404,8.82483100891113,1.65023577213287,-6.87851524353027,8.87730312347412,1.53624355792999,-6.95659208297729,9.02800750732422,1.47938287258148,-6.94280767440796,9.2316198348999,1.52442407608032,-6.89525175094604,9.34580898284912,1.43657875061035,-6.95382404327393,9.3662052154541,1.28381764888763,-7.03073740005493,9.47126293182373,1.18925583362579,-7.01444339752197,9.63278579711914,1.20599937438965,-6.98139381408691,9.72575092315674,1.09353375434875,-7.03145837783813,9.72197151184082,0.912202715873718,-7.08320569992065,9.80105972290039,0.800267457962036,-7.0389666557312,9.9125280380249,0.749228000640869,-6.94289350509644,10.0201807022095,0.580346465110779,-7.06798791885376,9.9924201965332,0.370538800954819,-7.11732244491577,10.043083190918, +2.05041933059692,-7.15028476715088,6.43753433227539,1.61361634731293,-7.31763792037964,6.31637525558472,1.84428381919861,-7.38927459716797,7.59688234329224,1.74381458759308,-7.42795753479004,8.05463600158691,1.64477360248566,-7.41534519195557,8.48427867889404,1.46389424800873,-7.43959951400757,8.77584743499756,1.39207541942596,-7.41677808761597,9.0232629776001,1.20994138717651,-7.43369722366333,9.25669193267822,1.08914697170258,-7.41399049758911,9.44921207427979,0.880056381225586,-7.41937398910522,9.61426830291748,0.696488857269287,-7.40790510177612,9.7512674331665,0.435820698738098,-7.42035388946533,9.86139488220215,0.259141564369202,-7.40485811233521,9.95839023590088,0.108171537518501,-7.39456224441528,10.1726589202881,0.108437396585941,-8.81609153747559,9.71208953857422,0.110142819583416,-7.21134757995605,10.1978168487549,0.107275679707527,-7.13550090789795,10.2115201950073,0.0921449735760689,-7.05616474151611,10.2524585723877,0.087930902838707,-6.8127818107605,10.3523015975952,0.089364156126976,-6.43704652786255,10.4949321746826,0.0899947881698608,-6.25795602798462,10.5451803207397,0.0885615348815918,-6.2290301322937,10.5057697296143,0.0776379704475403,-6.25222635269165,10.4274129867554,0.0665285512804985,-6.42943334579468,10.3532667160034,0.071904331445694,-6.80113983154297,10.2219247817993,0.090890645980835,-7.04327297210693,10.1394376754761,0.0999292582273483,-7.12896394729614,10.1461715698242,0.0975138321518898,-7.34907341003418,10.0759649276733,0.0897226259112358,-7.44775104522705,9.96741676330566,0.159570097923279,-7.4986138343811,9.86470603942871,0.253772735595703,-7.54329538345337,9.74919319152832,0.34188324213028,-7.59085083007813,9.61686420440674,0.417550653219223,-7.63499402999878,9.48791885375977,0.493039190769196,-7.68792343139648,9.32538890838623,0.56163227558136,-7.73429679870605,9.09875106811523,0.634339928627014,-7.76939392089844,8.8291130065918,0.713769793510437,-7.8016357421875,8.48427867889404,0.786656260490417,-7.79142665863037,8.05392551422119,0.865277171134949,-7.72391414642334,7.6678900718689, +-0.108258649706841,-7.39456224441528,10.1726589202881,-0.108617126941681,-8.81609153747559,9.71208953857422,-0.110229916870594,-7.21134757995605,10.1978168487549,-0.107455387711525,-7.13550090789795,10.2115201950073,-0.0922320857644081,-7.05616474151611,10.2524585723877,-0.0881106182932854,-6.8127818107605,10.3523015975952,-0.0894581824541092,-6.43704652786255,10.4949321746826,-0.0900818929076195,-6.25795602798462,10.5451803207397,-0.0886480063199997,-6.2290301322937,10.5057697296143,-0.0777250677347183,-6.25222635269165,10.4274129867554,-0.0667088851332664,-6.42943334579468,10.3532667160034,-0.0720840469002724,-6.80113983154297,10.2219247817993,-0.0910709798336029,-7.04327297210693,10.1394376754761,-0.100023277103901,-7.12896394729614,10.1461715698242,-0.0976072326302528,-7.34907341003418,10.0759649276733,-0.0899029597640038,-7.44775104522705,9.96741676330566,-0.159657180309296,-7.4986138343811,9.86470603942871,-0.25385981798172,-7.54329538345337,9.74919319152832,-0.341977268457413,-7.59085083007813,9.61686420440674,-0.417644709348679,-7.63499402999878,9.48791885375977,-0.493126273155212,-7.68792343139648,9.32538890838623,-0.561812043190002,-7.73429679870605,9.09875106811523,-0.634519696235657,-7.76939392089844,8.8291130065918,-0.713856935501099,-7.8016357421875,8.48427867889404,-0.786750316619873,-7.79142665863037,8.05392551422119,-0.865457534790039,-7.72391414642334,7.6678900718689,-2.43277883529663,-6.70174026489258,6.04702663421631,-2.47262382507324,-6.61578035354614,6.06153392791748,-2.47835755348206,-6.41332054138184,6.08176803588867,-2.50512790679932,-6.01825332641602,6.11301898956299,-2.47486662864685,-6.56716728210449,6.0622501373291,-2.23434591293335,-7.04980897903442,5.94091129302979,2.47244381904602,-6.61578035354614,6.06153392791748,2.43268489837646,-6.70174026489258,6.04702663421631,2.50504112243652,-6.01825332641602,6.11301898956299,2.47817730903625,-6.41332054138184,6.08176803588867,2.47468638420105,-6.56716728210449,6.0622501373291,2.23273253440857,-7.04998207092285,5.9428825378418,-2.78218841552734,-6.03534507751465,6.22871685028076, +-2.74439430236816,-5.89027500152588,6.23632144927979,-2.65090894699097,-5.85983037948608,6.2242374420166,-2.57407975196838,-5.87353849411011,6.20802402496338,-2.49465560913086,-6.03606605529785,6.17883777618408,-2.47513198852539,-6.41895341873169,6.1431941986084,-2.4736123085022,-6.57306957244873,6.1242151260376,-2.47164082527161,-6.62142324447632,6.12358379364014,-2.43044972419739,-6.70496988296509,6.11364936828613,-2.23353624343872,-7.03512048721313,6.08409786224365,2.23309111595154,-7.03512048721313,6.0844554901123,2.43036222457886,-6.70496988296509,6.11364936828613,2.47146153450012,-6.62142324447632,6.12358379364014,2.47351861000061,-6.57306957244873,6.1242151260376,2.47495222091675,-6.41895341873169,6.1431941986084,2.49447631835938,-6.03606605529785,6.17883777618408,2.57399296760559,-5.87353849411011,6.20802402496338,2.65072870254517,-5.85983037948608,6.2242374420166,2.7442147731781,-5.89027500152588,6.23632144927979,2.78209447860718,-6.03534507751465,6.22871685028076,2.77403879165649,-6.41233015060425,6.1978178024292,-2.7742178440094,-6.41233015060425,6.1978178024292,2.37582588195801,-6.84904098510742,6.09788799285889,2.37672114372253,-6.85818243026733,6.0026969909668,-2.37591886520386,-6.84904098510742,6.09788799285889,-2.37681484222412,-6.85818243026733,6.0026969909668,-8.63876193761826e-05,-7.86209201812744,8.01434707641602,0.869935989379883,-7.52377033233643,6.85239839553833,1.39207541942596,-7.30473756790161,6.08669281005859,0.000982088968157768,-7.47506093978882,6.92931985855103,0.807973027229309,-7.4113941192627,6.60865163803101,-1.52119982242584,-7.1991662979126,5.60618877410889,-1.3871523141861,-7.30537176132202,6.09322834014893,-1.78581011295319,-7.20418453216553,5.43587398529053,-1.65901613235474,-7.17266321182251,5.39298343658447,2.04020643234253,-7.1965708732605,5.01276874542236,1.90060222148895,-7.15341758728027,4.98375988006592,1.516188621521,-7.199791431427,5.61263942718506,1.77972328662872,-7.20490550994873,5.44366550445557,1.65489399433136,-7.17321109771729,5.39818000793457,-2.04038596153259,-7.1965708732605,5.01276874542236, +-1.90069806575775,-7.15341758728027,4.98375988006592,-0.397675603628159,-6.83140230178833,10.3545207977295,-0.361945778131485,-7.12852144241333,10.186713218689,-1.6171942949295,-6.79674673080444,9.79245948791504,-1.46846067905426,-7.04693555831909,9.64522838592529,-2.15921592712402,-6.63710308074951,8.73634338378906,-2.07575798034668,-6.93377113342285,8.66927051544189,-1.07472705841064,-6.22992420196533,10.2819929122925,-1.22919428348541,-6.29288911819458,10.2432327270508,-1.08574330806732,-6.41787815093994,10.2445812225342,-0.950793504714966,-6.29887866973877,10.2805767059326,-1.08646023273468,-6.29610967636108,10.2766351699829,-1.10723197460175,-7.36563682556152,9.79281997680664,-1.15496075153351,-7.23041963577271,9.77238845825195,-0.501547455787659,-7.39267826080322,10.05894947052,-0.519631624221802,-8.79601764678955,9.61188793182373,-1.97251629829407,-6.15598058700562,9.42835426330566,-1.99543881416321,-6.20485258102417,9.30629825592041,-1.97833657264709,-6.33147573471069,9.41547870635986,-1.97251629829407,-6.22902965545654,9.52927303314209,-1.99355316162109,-6.21667671203613,9.43354320526123,-1.78750908374786,-7.31012153625488,8.97963809967041,-1.79145109653473,-7.15663957595825,8.97444248199463,-1.52675402164459,-7.32830905914307,9.44063758850098,-1.57896208763123,-8.68981170654297,8.98562240600586,-2.47262382507324,-6.0268383026123,7.95022678375244,-2.56960654258728,-6.07151937484741,7.79764461517334,-2.53978300094604,-6.19142293930054,7.95568752288818,-2.46161389350891,-6.09704208374023,8.08329200744629,-2.51721978187561,-6.08379554748535,7.95828914642334,-2.50181651115417,-7.16809797286987,7.66941070556641,-2.49966669082642,-7.04246520996094,7.56393241882324,-2.15563249588013,-7.23481225967407,8.44711208343506,-2.20058679580688,-8.51437759399414,7.96435022354126,-2.94417428970337,-6.35717058181763,6.57937335968018,-2.94891905784607,-6.05631113052368,6.6206579208374,-2.76328825950623,-6.70845937728882,6.28629302978516,-2.76588892936707,-6.79854345321655,6.27527713775635,-2.7864818572998,-8.24450874328613,6.37973833084106, +-2.73266768455505,-7.09117364883423,6.8683385848999,-0.422389209270477,-6.25517749786377,10.5363903045654,-0.617059230804443,-6.31536483764648,10.4847440719604,-0.426861613988876,-6.43794059753418,10.49880027771,-0.252698749303818,-6.32224798202515,10.5541391372681,-0.432596474885941,-6.31956577301025,10.5284366607666,-0.774573087692261,-6.24971723556519,10.3077993392944,-0.792391419410706,-6.30792427062988,10.2528858184814,-0.804031252861023,-6.41905117034912,10.2712478637695,-0.790686011314392,-6.30693435668945,10.3696765899658,-0.791495561599731,-6.30756855010986,10.2998285293579,-0.794627904891968,-6.79711198806763,10.1562852859497,-0.735172867774963,-7.00288915634155,10.0745143890381,-1.77568984031677,-6.19697999954224,9.96043586730957,-1.87670135498047,-6.25723457336426,9.87026119232178,-1.75607895851135,-6.38771200180054,9.93045139312744,-1.66295123100281,-6.27299976348877,10.0105037689209,-1.78446936607361,-6.2655782699585,9.95830249786377,-1.86747694015503,-6.19097185134888,9.61023330688477,-1.84365844726563,-6.24820756912231,9.55311012268066,-1.8529691696167,-6.35663318634033,9.57137203216553,-1.92254519462585,-6.24292039871216,9.67820262908936,-1.87365460395813,-6.24577569961548,9.60054683685303,-1.74184417724609,-6.74302911758423,9.45523643493652,-1.6647435426712,-6.91881322860718,9.38895511627197,-2.12796545028687,-6.09668684005737,8.7985897064209,-2.2264621257782,-6.14092588424683,8.66649627685547,-2.17408132553101,-6.26942348480225,8.79850387573242,-2.09761071205139,-6.16920757293701,8.89591503143311,-2.16360282897949,-6.15418243408203,8.80656147003174,-2.27285051345825,-6.08002710342407,8.23256969451904,-2.29595112800598,-6.13304281234741,8.18484020233154,-2.33320116996765,-6.22732734680176,8.23284339904785,-2.33203935623169,-6.11539363861084,8.327317237854,-2.30848693847656,-6.12516021728516,8.23551368713379,-2.37295913696289,-6.59814119338989,8.21779918670654,-2.33499217033386,-6.80238914489746,8.19013214111328,-2.85068869590759,-5.93505239486694,6.97355270385742,-2.89770078659058,-5.97794580459595,6.80556583404541, +-2.92098045349121,-6.08800554275513,6.96647644042969,-2.88363766670227,-6.00606393814087,7.11898040771484,-2.90011596679688,-5.99083709716797,6.97310638427734,-2.92125272750854,-6.38897037506104,6.93486785888672,-2.81012034416199,-6.75591897964478,6.9029016494751,-1.41034638881683,-6.22356939315796,10.0363845825195,-1.43300235271454,-6.28284311294556,9.98677921295166,-1.42511868476868,-6.3962197303772,9.99347686767578,-1.42682409286499,-6.28132438659668,10.096001625061,-1.42637360095978,-6.28178596496582,10.025728225708,-1.36476790904999,-6.79201698303223,9.8630256652832,-1.29876971244812,-6.99465990066528,9.76819896697998,-1.0588800907135,-6.82746028900146,10.0935859680176,-1.02019691467285,-7.10282611846924,9.92685508728027,-1.16534626483917,-8.75000095367432,9.34685039520264,-0.833668947219849,-7.36384868621826,9.93813800811768,-0.900024890899658,-8.77219390869141,9.47470378875732,-0.839224338531494,-7.13623142242432,9.98122596740723,-0.0538146793842316,-7.3923225402832,10.1851196289063,-0.0539935976266861,-8.8172492980957,9.72446441650391,-0.0534562095999718,-7.10139322280884,10.2082958221436,-0.05498206615448,-7.18779563903809,10.1972789764404,-0.514886498451233,-7.2682089805603,10.0676374435425,-1.97197878360748,-6.15641307830811,9.00220108032227,-1.97134876251221,-6.20601606369019,8.93790817260742,-1.98361921310425,-6.30004119873047,8.98216438293457,-2.015944480896,-6.19061613082886,9.08933067321777,-1.98621344566345,-6.20020055770874,8.99924850463867,-1.94654202461243,-6.6602897644043,8.91274452209473,-1.90132164955139,-6.82075071334839,8.8785400390625,-1.88305866718292,-6.70524978637695,9.31597423553467,-1.74560725688934,-7.02706575393677,9.20081329345703,-1.82995474338531,-8.6225643157959,8.52642726898193,-1.63698387145996,-7.29865312576294,9.22984504699707,-1.6868622303009,-8.65179920196533,8.76764583587646,-1.6347473859787,-7.07309293746948,9.27701854705811,-1.33065068721771,-7.34073925018311,9.64202785491943,-1.40380954742432,-8.72535419464111,9.19621467590332,-1.3125604391098,-7.13318395614624,9.67524909973145, +-1.53741228580475,-7.15198707580566,9.44097518920898,-2.67705488204956,-6.00015258789063,7.3830451965332,-2.71054887771606,-6.05074548721313,7.30326461791992,-2.72388815879822,-6.14056062698364,7.36800098419189,-2.71851968765259,-6.04045009613037,7.47814559936523,-2.71135234832764,-6.04671764373779,7.3791971206665,-2.71224761009216,-6.47027826309204,7.3326301574707,-2.62055349349976,-6.70030784606934,7.30791568756104,-2.5487425327301,-6.5484414100647,7.92632293701172,-2.44898509979248,-6.91118955612183,7.8948860168457,-2.55831909179688,-8.3841724395752,7.20983028411865,-2.33248353004456,-7.19299554824829,8.11302185058594,-2.38845467567444,-8.45629024505615,7.62872171401978,-2.3217396736145,-6.96563816070557,8.09448623657227,-1.96078372001648,-7.24788665771484,8.73259830474854,-2.01379418373108,-8.56610488891602,8.26726818084717,-1.94206893444061,-6.99697685241699,8.76454830169678,-2.18849587440491,-7.0636043548584,8.41227722167969,-2.85802841186523,-6.38207817077637,6.31861782073975,-2.86232876777649,-6.04091119766235,6.36204719543457,-2.80188512802124,-6.62750816345215,6.29775428771973,-2.75379824638367,-6.84279251098633,6.53128623962402,-2.83564424514771,-6.72181224822998,6.54069042205811,-2.81549572944641,-8.13744449615479,5.76124620437622,-2.76786017417908,-7.02025842666626,6.25638294219971,-2.80170559883118,-8.18183135986328,6.01941156387329,-2.75343942642212,-7.05625915527344,6.51275157928467,-2.75442910194397,-6.9060845375061,6.52672100067139,-2.72818779945374,-6.87599611282349,6.88472366333008,-2.73006701469421,-6.93930721282959,6.88015842437744,-8.63876193761826e-05,-6.3157205581665,10.4808874130249,-0.0421741679310799,-6.2551007270813,10.5144662857056,-0.0899029597640038,-6.32126712799072,10.5332565307617,-0.0422667786478996,-6.43383598327637,10.460901260376,-0.0420878604054451,-6.31786441802979,10.5004978179932,-0.318696916103363,-8.80612564086914,9.67136001586914,-0.315378695726395,-7.39850378036499,10.1210069656372,-0.320840179920197,-7.22334480285645,10.1464366912842,-0.317170381546021,-7.27456283569336,10.1391649246216, +-0.0417293906211853,-6.80607175827026,10.3194389343262,-0.0441454350948334,-7.02831554412842,10.2411766052246,-0.726572155952454,-8.78393077850342,9.54150295257568,-0.677768588066101,-7.37190437316895,10.0002107620239,-0.697385430335999,-6.83069086074829,10.2631168365479,-0.738928914070129,-6.42980813980103,10.4011058807373,-0.70338499546051,-7.0675368309021,10.0494422912598,-0.692096590995789,-7.15485191345215,10.0319995880127,-0.528232455253601,-7.21735572814941,10.0722017288208,-0.602466583251953,-7.12556076049805,10.1139135360718,-0.858383297920227,-6.79173851013184,10.1186580657959,-0.854892373085022,-6.41582059860229,10.2334547042847,-1.03622341156006,-8.76108932495117,9.41141128540039,-0.974525690078735,-7.37307691574097,9.86631774902344,-0.844592571258545,-7.04462862014771,10.004222869873,-0.851129412651062,-6.98381662368774,10.0359334945679,-1.00166153907776,-7.18868970870972,9.87386226654053,-0.998880743980408,-7.2446756362915,9.86875247955322,-1.28945887088776,-8.73922824859619,9.28083515167236,-1.22346079349518,-7.34772729873657,9.72188568115234,-1.28569662570953,-6.82952737808228,9.98427104949951,-1.34990298748016,-6.40990877151489,10.140079498291,-1.16973292827606,-7.17240476608276,9.76880359649658,-1.20743405818939,-7.09225177764893,9.81888103485107,-1.26689541339874,-7.057692527771,9.73504447937012,-1.24737167358398,-7.14025926589966,9.72501754760742,-1.43372011184692,-6.78547096252441,9.85082912445068,-1.51502156257629,-6.39344120025635,9.97495937347412,-1.50409805774689,-8.70806503295898,9.09242820739746,-1.43685185909271,-7.34073925018311,9.54657077789307,-1.41294074058533,-7.1206488609314,9.58980274200439,-1.41840291023254,-7.18349838256836,9.57522773742676,-1.31354880332947,-7.05070400238037,9.6987771987915,-1.34587407112122,-6.98864221572876,9.74258232116699,-1.63618052005768,-8.67119121551514,8.87924289703369,-1.58889663219452,-7.30742979049683,9.33622741699219,-1.74363601207733,-6.77570390701294,9.59839630126953,-1.89299929141998,-6.36962032318115,9.73775100708008,-1.63259720802307,-6.97253084182739,9.36647701263428, +-1.60940313339233,-7.06771898269653,9.35028171539307,-1.55021345615387,-7.08168649673462,9.4460973739624,-1.60591220855713,-7.01166534423828,9.48360157012939,-1.78052747249603,-6.71580505371094,9.42808151245117,-1.88144588470459,-6.34849071502686,9.53016090393066,-1.74685454368591,-8.64328670501709,8.64722919464111,-1.70181405544281,-7.3241753578186,9.10725975036621,-1.64522612094879,-6.98274946212769,9.3056001663208,-1.68372988700867,-6.91826486587524,9.34249782562256,-1.69089043140411,-7.12260961532593,9.15648937225342,-1.69106936454773,-7.18663215637207,9.13929462432861,-1.9220073223114,-8.58963203430176,8.40518188476563,-1.87409937381744,-7.25602912902832,8.85829830169678,-1.94914305210114,-6.68150568008423,9.08236694335938,-2.00618195533752,-6.30854892730713,9.16985321044922,-1.79610931873322,-7.08652257919312,8.97463893890381,-1.84284889698029,-6.99366044998169,8.99951457977295,-1.87875831127167,-6.87072849273682,8.86843776702881,-1.8754471540451,-6.98013496398926,8.8635139465332,-1.99239206314087,-6.65409898757935,8.84910011291504,-2.02086877822876,-6.29153347015381,8.91257095336914,-2.10522317886353,-8.53983020782471,8.11333847045898,-2.05363869667053,-7.25030851364136,8.59684658050537,-2.03071737289429,-7.02822875976563,8.63515472412109,-2.03689575195313,-7.09260749816895,8.62422943115234,-1.9340056180954,-6.8972225189209,8.77951717376709,-1.95129334926605,-6.839111328125,8.80163669586182,-2.29881834983826,-8.48680591583252,7.80477952957153,-2.25172019004822,-7.20804977416992,8.28254318237305,-2.33159470558167,-6.60816717147827,8.43969821929932,-2.31663656234741,-6.23951721191406,8.47961711883545,-2.30463814735413,-6.8673152923584,8.18501091003418,-2.28959321975708,-6.96555137634277,8.21627044677734,-2.20371913909912,-6.99304437637329,8.39393424987793,-2.25637197494507,-6.9000096321106,8.4060173034668,-2.41746878623962,-6.58229875564575,8.14293193817139,-2.38899207115173,-6.21935844421387,8.15207290649414,-2.46725487709045,-8.42545986175537,7.45204925537109,-2.41039443016052,-7.19254398345947,7.93043613433838, +-2.31663656234741,-6.87493896484375,8.08615875244141,-2.35316967964172,-6.80499410629272,8.10630702972412,-2.38379645347595,-7.02142238616943,7.87742614746094,-2.39015364646912,-7.07425546646118,7.89336585998535,-2.68807196617126,-8.33230495452881,6.9024224281311,-2.61572265625,-7.11849451065063,7.35958671569824,-2.67401599884033,-6.51514196395874,7.57207584381104,-2.67535662651062,-6.15954637527466,7.61434268951416,-2.49465560913086,-6.9896411895752,7.53805065155029,-2.56682658195496,-6.8791298866272,7.54387092590332,-2.56879711151123,-6.77240562438965,7.30245494842529,-2.58796286582947,-6.86247968673706,7.30720043182373,-0.143902152776718,-6.81851148605347,10.3729877471924,-0.146583437919617,-6.4390172958374,10.5175132751465,-2.81773233413696,-5.86870336532593,6.40350341796875,-2.75943875312805,-5.92889022827148,6.3170919418335,-2.9354875087738,-5.94177198410034,6.4890193939209,-2.85059571266174,-5.93075561523438,6.3858642578125,-0.84002697467804,-6.24604511260986,10.2650699615479,-0.849165081977844,-6.30388689041138,10.2595138549805,-1.33360362052917,-6.219810962677,10.1849422454834,-1.35187363624573,-6.2865252494812,10.1757917404175,-0.711978793144226,-6.2451605796814,10.4405736923218,-0.73454225063324,-6.31033706665039,10.4315528869629,-1.52057564258575,-6.22008943557739,10.0047597885132,-1.52881169319153,-6.27935361862183,10.0008354187012,-1.91421663761139,-6.18112802505493,9.78225517272949,-1.92317521572113,-6.24820756912231,9.77249336242676,-1.88834130764008,-6.18927001953125,9.5483455657959,-1.89952993392944,-6.2410364151001,9.54916572570801,-1.9880051612854,-6.13366842269897,9.19286060333252,-2.01092720031738,-6.19411516189575,9.19158935546875,-2.00492811203003,-6.14692497253418,8.91769409179688,-2.02104806900024,-6.19106817245483,8.92162799835205,-2.2466094493866,-6.06749200820923,8.48686504364014,-2.29362201690674,-6.12435293197632,8.48885250091553,-2.33401083946228,-6.07053899765015,8.13317108154297,-2.36741137504578,-6.11853694915771,8.14642333984375,-2.60793161392212,-5.99710512161255,7.63243293762207, +-2.65395426750183,-6.05289888381958,7.62759494781494,-2.88265585899353,-5.90442514419556,6.64653301239014,-2.93029093742371,-5.95949840545654,6.63650512695313,-0.273921579122543,-6.81851100921631,10.201042175293,-0.272308766841888,-7.10873794555664,10.0691394805908,-1.29151630401611,-6.78072166442871,9.64202785491943,-1.22229897975922,-7.03172826766968,9.55281829833984,-1.73315715789795,-6.62894201278687,8.65415859222412,-1.76091694831848,-6.92508029937744,8.60597801208496,-0.821942806243896,-6.3010311126709,10.1540479660034,-0.919005632400513,-6.4223575592041,10.0910787582397,-1.04956245422363,-6.29842615127563,10.1060371398926,-0.941482782363892,-6.23539352416992,10.1719589233398,-0.926710605621338,-6.30273294448853,10.1353340148926,-0.923127055168152,-7.31324577331543,9.73746109008789,-1.02547883987427,-7.23964834213257,9.69376659393311,-0.89205539226532,-7.27036190032959,9.76710510253906,-0.958764314651489,-7.25827836990356,9.72752666473389,-7.82310962677002e-08,-7.48671293258667,9.91745185852051,-0.0689516887068748,-7.5123987197876,9.8660717010498,-0.117217883467674,-7.47640800476074,9.91567707061768,-0.0393139719963074,-7.45401906967163,9.96994304656982,-0.0503238514065742,-7.48590564727783,9.91717910766602,-1.58871757984161,-6.21372556686401,9.3853702545166,-1.55684340000153,-6.30952930450439,9.24531841278076,-1.61674964427948,-6.18157958984375,9.15453720092773,-1.64048099517822,-6.13769626617432,9.30228805541992,-1.58845245838165,-6.19465351104736,9.27442455291748,-1.56194639205933,-7.24027299880981,8.96335697174072,-1.61513674259186,-7.13318395614624,8.88131427764893,-1.53794968128204,-7.18108558654785,9.01431274414063,-1.57350075244904,-7.16317653656006,8.94400215148926,-1.13740706443787,-7.43064975738525,9.35169792175293,-0.748425602912903,-7.53658533096313,9.46945190429688,-0.455789923667908,-7.66114187240601,9.41339588165283,-0.871456384658813,-7.56721258163452,9.29063129425049,-0.811012864112854,-7.55188941955566,9.38563632965088,-2.02445244789124,-6.08486223220825,7.95300674438477,-2.02883863449097,-6.18130016326904,7.84814739227295, +-2.11148762702942,-6.06570339202881,7.73603916168213,-2.10611176490784,-6.01868629455566,7.86319065093994,-2.0558819770813,-6.07411479949951,7.85513401031494,-2.15303802490234,-7.12422370910645,7.54718208312988,-2.22619700431824,-7.03691864013672,7.36684036254883,-2.11820363998413,-7.08876180648804,7.65562629699707,-2.17085647583008,-7.0695161819458,7.51064968109131,-1.6792505979538,-7.43360042572021,8.26219749450684,-1.19023954868317,-7.63140773773193,8.48087406158447,-0.753529191017151,-7.8008279800415,8.27294254302979,-1.30297744274139,-7.6228232383728,8.05714511871338,-1.25086200237274,-7.62909126281738,8.27260208129883,-2.35227370262146,-6.05692672729492,6.62737369537354,-2.3451132774353,-6.356276512146,6.5841178894043,-2.46161389350891,-6.7054123878479,6.266770362854,-2.42749619483948,-6.76148509979248,6.242506980896,-0.169060572981834,-6.31965208053589,10.3708190917969,-0.283504486083984,-6.44134378433228,10.3226642608643,-0.439040124416351,-6.32349729537964,10.3444242477417,-0.306426405906677,-6.2601957321167,10.4060297012329,-0.293260037899017,-6.32546806335449,10.3642129898071,-0.66675865650177,-6.28615999221802,10.242772102356,-0.734004855155945,-6.4040060043335,10.1835794448853,-0.758181095123291,-6.30308866500854,10.2036542892456,-0.721203207969666,-6.23593187332153,10.2428588867188,-0.725676298141479,-6.29162979125977,10.2187004089355,-0.728098511695862,-6.78788328170776,10.0743341445923,-0.677323818206787,-6.9933910369873,10.0103988647461,-1.35393106937408,-6.24596786499023,9.86553382873535,-1.36977827548981,-6.36621761322021,9.76201438903809,-1.49738204479218,-6.2469482421875,9.72629070281982,-1.48592042922974,-6.17969560623169,9.83703899383545,-1.42144882678986,-6.24453544616699,9.80264949798584,-1.60143303871155,-6.23977708816528,9.56974029541016,-1.61468553543091,-6.3538646697998,9.50242710113525,-1.67575967311859,-6.24568891525269,9.51540565490723,-1.69465351104736,-6.19043302536011,9.56564426422119,-1.65319621562958,-6.2442569732666,9.53920650482178,-1.53785717487335,-6.73854923248291,9.40419483184814, +-1.49666512012482,-6.91405439376831,9.35628223419189,-1.77166140079498,-6.16151714324951,8.81388854980469,-1.73092067241669,-6.26074314117432,8.70553874969482,-1.74918437004089,-6.13232183456421,8.57517910003662,-1.78285896778107,-6.08864116668701,8.71269702911377,-1.74471127986908,-6.14512729644775,8.71028232574463,-1.87311732769012,-6.11011600494385,8.27098941802979,-1.93732380867004,-6.22141551971436,8.16998386383057,-2.03322553634644,-6.12543916702271,8.10389137268066,-2.01056885719299,-6.07519197463989,8.18089008331299,-1.96570777893066,-6.11943101882935,8.1750020980835,-1.92774140834808,-6.59196949005127,8.15081024169922,-1.97027337551117,-6.79729413986206,8.13200950622559,-2.33176732063293,-6.00373792648315,7.09336376190186,-2.31090927124023,-6.08665943145752,6.95206356048584,-2.3721559047699,-5.97686910629272,6.7942008972168,-2.40886855125427,-5.93326425552368,6.95447826385498,-2.3451132774353,-5.98915481567383,6.95475006103516,-2.30051755905151,-6.38592338562012,6.91848278045654,-2.33580231666565,-6.74267244338989,6.8530216217041,-1.2226574420929,-6.26091623306274,9.99143123626709,-1.26582050323486,-6.3819727897644,9.92327213287354,-1.30432438850403,-6.2738938331604,9.94164657592773,-1.28220570087433,-6.21058225631714,9.98702716827393,-1.27280163764954,-6.26664543151855,9.96213436126709,-1.21576273441315,-6.78600883483887,9.79891109466553,-1.16633546352386,-6.99921655654907,9.72420787811279,-0.893396139144897,-6.8152904510498,9.96681022644043,-0.8448646068573,-7.07470798492432,9.85405540466309,-0.785940766334534,-7.41685485839844,9.68106937408447,-0.46420481801033,-7.48428058624268,9.74919319152832,-0.299437791109085,-7.56721258163452,9.68357276916504,-0.620012640953064,-7.50901556015015,9.61541175842285,-0.545333743095398,-7.49610471725464,9.68438243865967,-0.545062184333801,-7.41980648040771,9.81189155578613,-0.293890029191971,-7.46405506134033,9.86087512969971,-0.206310585141182,-7.52072381973267,9.80947494506836,-0.378330826759338,-7.47443723678589,9.80732536315918,-0.702754259109497,-7.3171968460083,9.86094284057617, +-0.783439159393311,-7.25200080871582,9.84932136535645,-0.682068943977356,-7.20455121994019,9.92759132385254,-0.736427187919617,-7.22066259384155,9.89255905151367,-0.088827557861805,-7.40655946731567,10.0250873565674,-0.0482662692666054,-7.34700632095337,10.0868892669678,-8.63876193761826e-05,-7.41005849838257,10.0342359542847,-0.0416367799043655,-7.40996265411377,10.0314626693726,-8.63876193761826e-05,-7.25192403793335,10.1287956237793,-0.0998437404632568,-7.27161169052124,10.1072845458984,-0.050144299864769,-7.25863409042358,10.1217918395996,-0.412627369165421,-7.33957576751709,9.97950839996338,-0.527422785758972,-7.27519702911377,9.95685195922852,-0.364274889230728,-7.30510330200195,10.006031036377,-0.446027427911758,-7.29749011993408,9.97799968719482,-1.70978403091431,-6.18685722351074,8.97043323516846,-1.77542388439178,-6.3042516708374,8.91178035736084,-1.83971667289734,-6.20531415939331,8.9141092300415,-1.80864810943604,-6.1517505645752,8.95375633239746,-1.78742027282715,-6.20029640197754,8.9353141784668,-1.75778448581696,-6.6568865776062,8.85814476013184,-1.7374575138092,-6.81734752655029,8.85042190551758,-1.52952861785889,-6.68276500701904,9.17943000793457,-1.49558985233307,-6.95954370498657,9.13257884979248,-1.40945053100586,-7.43772459030151,8.89700794219971,-0.97990083694458,-7.59361934661865,9.06257724761963,-0.597270250320435,-7.75229215621948,8.97070407867432,-1.0794723033905,-7.61385488510132,8.80199527740479,-1.02950763702393,-7.60401105880737,8.9371919631958,-1.2770094871521,-7.43638896942139,9.1526575088501,-0.527781248092651,-7.71262884140015,9.21874237060547,-0.927513718605042,-7.5812668800354,9.18165493011475,-1.44625568389893,-7.26230621337891,9.18489074707031,-1.47437381744385,-7.17607736587524,9.15595245361328,-1.44983279705048,-7.15000677108765,9.26647281646729,-1.46264088153839,-7.15977382659912,9.21659278869629,-0.963508725166321,-7.42393016815186,9.54164791107178,-0.380567312240601,-7.6125283241272,9.55362796783447,-0.686190366744995,-7.52243518829346,9.54493999481201,-1.13481271266937,-7.29892253875732,9.57959651947021, +-1.18433320522308,-7.22461366653442,9.55991077423096,-1.12765216827393,-7.21134757995605,9.64621829986572,-1.15639400482178,-7.21494245529175,9.60835647583008,-1.30190205574036,-7.28183031082153,9.4043493270874,-1.37506067752838,-7.1847677230835,9.34034824371338,-1.27593410015106,-7.23095846176147,9.44547367095947,-1.32662260532379,-7.21153020858765,9.38923740386963,-2.24410843849182,-6.0380277633667,7.45163822174072,-2.30589246749878,-6.14234828948975,7.33021354675293,-2.37779760360718,-6.04617929458618,7.25463962554932,-2.36651492118835,-5.99702835083008,7.35000324249268,-2.32550263404846,-6.04321908950806,7.34167575836182,-2.29944205284119,-6.50403833389282,7.29117202758789,-2.30087518692017,-6.74302816390991,7.26448822021484,-2.01066184043884,-6.53457021713257,7.81412220001221,-2.028480052948,-6.87931299209595,7.78125858306885,-0.869040966033936,-7.52395296096802,6.85365152359009,-1.65543270111084,-7.38694763183594,7.05432176589966,-1.28050661087036,-7.60651016235352,7.61326742172241,-0.556974291801453,-7.75094604492188,7.51145315170288,-1.07660520076752,-7.58206367492676,7.2318902015686,-1.78285896778107,-7.42483329772949,7.86990690231323,-0.807343125343323,-7.77897787094116,7.8468918800354,-1.33441376686096,-7.61769962310791,7.86283159255981,-2.02059626579285,-7.16254186630249,7.95568752288818,-2.04988241195679,-7.08428192138672,7.88136672973633,-2.00223994255066,-7.03432321548462,8.05929470062256,-2.02749156951904,-7.05365467071533,7.96813869476318,-1.52281200885773,-7.44166612625122,8.64744186401367,-0.673740267753601,-7.78847599029541,8.66830635070801,-1.13311362266541,-7.62468910217285,8.65370750427246,-1.70870935916901,-7.21833610534668,8.69676399230957,-1.75643754005432,-7.13246297836304,8.64574241638184,-1.71748912334442,-7.07290983200073,8.78120517730713,-1.74103462696075,-7.0971827507019,8.71628189086914,-1.83918178081512,-7.19756174087524,8.44632148742676,-1.91717636585236,-7.09637546539307,8.29856967926025,-1.81536138057709,-7.13935518264771,8.50353050231934,-1.86425137519836,-7.12350273132324,8.40896987915039, +-2.43054246902466,-6.04098796844482,6.36338710784912,-2.42462921142578,-6.3814435005188,6.31745052337646,-2.44254159927368,-6.62204837799072,6.27473831176758,-2.42489528656006,-6.83776473999023,6.49770736694336,-2.37833499908447,-6.7114109992981,6.51633548736572,-2.29720544815063,-7.01542329788208,6.49027442932129,-2.3553192615509,-6.92865610122681,6.33231544494629,-2.34009575843811,-6.97648096084595,6.63175964355469,-2.35021615028381,-6.95140027999878,6.47827529907227,-2.32335233688354,-6.98212385177612,6.93442249298096,-2.30669522285461,-6.95820617675781,7.14413833618164,-2.38281440734863,-6.86999702453613,6.82795143127441,-8.63876193761826e-05,-6.31114482879639,10.4159517288208,-0.0337592586874962,-6.42791414260864,10.3690452575684,-0.0711018741130829,-6.31446123123169,10.3942956924438,-0.0390418097376823,-6.25016927719116,10.4348640441895,-0.0358168333768845,-6.31231737136841,10.4085397720337,-0.281799048185349,-7.21331834793091,10.0582323074341,-0.0502375364303589,-7.09681797027588,10.1648683547974,-0.0459371581673622,-7.02025938034058,10.1650657653809,-0.566377639770508,-6.42280960083008,10.2511005401611,-0.542646169662476,-6.81779956817627,10.1301193237305,-0.660222411155701,-7.06207609176636,9.99965572357178,-0.461072474718094,-7.20794439315796,9.99069690704346,-0.475845336914063,-7.10648822784424,10.0103988647461,-0.779941320419312,-6.41484022140503,10.1473159790039,-0.784779071807861,-6.78547096252441,10.043888092041,-0.780930399894714,-7.0397834777832,9.95856952667236,-0.779497146606445,-6.97655868530273,9.97773456573486,-0.842714548110962,-7.16326332092285,9.82987213134766,-1.13704931735992,-6.40095853805542,10.0002975463867,-1.08036816120148,-6.81573247909546,9.86497783660889,-0.986882448196411,-7.14741086959839,9.73038768768311,-1.00210642814636,-7.064133644104,9.75224018096924,-1.15048086643219,-7.06851673126221,9.70468997955322,-1.29572355747223,-6.37553215026855,9.8782320022583,-1.24289178848267,-6.77705955505371,9.76342964172363,-1.219611287117,-7.11419820785522,9.5341968536377,-1.18952250480652,-7.06153774261475,9.66951465606689, +-1.19892609119415,-6.99214124679565,9.69289112091064,-1.50409805774689,-6.36254501342773,9.59430027008057,-1.42610776424408,-6.76460075378418,9.48012828826904,-1.48448729515076,-6.9698486328125,9.3439998626709,-1.35420334339142,-7.0760440826416,9.39737033843994,-1.36056065559387,-6.99876499176025,9.4068775177002,-1.60089564323425,-6.33999300003052,9.43846797943115,-1.53803610801697,-6.70881605148315,9.35655307769775,-1.49809849262238,-6.98023080825806,9.28411102294922,-1.50391912460327,-6.91307401657104,9.30345630645752,-1.49890851974487,-7.05339574813843,9.12282371520996,-1.63331401348114,-6.299156665802,9.01431274414063,-1.62158024311066,-6.66217374801636,8.95888519287109,-1.58307659626007,-7.01794290542603,8.94553852081299,-1.58558535575867,-6.92722463607788,8.93971920013428,-1.73020422458649,-6.86910438537598,8.85355377197266,-1.81473326683044,-6.28750562667847,8.87030506134033,-1.79637694358826,-6.65034961700439,8.81095504760742,-1.78948044776917,-7.02358531951904,8.59120464324951,-1.80327236652374,-6.89400196075439,8.74932479858398,-1.79754483699799,-6.8348913192749,8.76606750488281,-1.77568984031677,-6.23288440704346,8.40968608856201,-1.79772210121155,-6.60208225250244,8.37782001495361,-1.99803304672241,-6.86240339279175,8.13290500640869,-1.89210367202759,-6.99062204360962,8.37190818786621,-1.85288286209106,-6.89444351196289,8.36517333984375,-2.00582432746887,-6.20816898345947,8.03296852111816,-1.96696221828461,-6.57108974456787,8.01398849487305,-2.01997256278992,-6.87769746780396,7.96760082244873,-1.99409103393555,-6.80095672607422,7.97969150543213,-2.06080603599548,-7.00037908554077,7.77534580230713,-2.14587068557739,-6.15605688095093,7.57673358917236,-2.13790678977966,-6.50797080993652,7.53366374969482,-2.17220330238342,-6.97485637664795,7.50644207000732,-2.1446225643158,-6.85262680053711,7.50447082519531,-2.31565427780151,-6.82450819015503,7.26233863830566,-0.0979657098650932,-6.43105792999268,10.3383321762085,-0.105756923556328,-6.80410099029541,10.2104644775391,-2.40466070175171,-5.94266605377197,6.49949836730957, +-2.51005864143372,-5.92565107345581,6.29676532745361,-2.50719213485718,-5.86833810806274,6.3996639251709,-2.45811605453491,-5.93057250976563,6.38425254821777,-0.781288862228394,-6.24568891525269,10.2016839981079,-0.778063297271729,-6.30363655090332,10.1794786453247,-1.16490161418915,-6.2124662399292,10.0869808197021,-1.14833760261536,-6.2780179977417,10.0487241744995,-0.572735548019409,-6.23879718780518,10.3335876464844,-0.567359805107117,-6.30363702774048,10.2942733764648,-1.35598814487457,-6.20547771453857,9.93204593658447,-1.32312476634979,-6.2613582611084,9.9106616973877,-1.61692845821381,-6.17772483825684,9.67952442169189,-1.55343890190125,-6.24299716949463,9.64039707183838,-1.67701399326324,-6.18300247192383,9.48350811004639,-1.63600158691406,-6.23305749893188,9.46499156951904,-1.69688987731934,-6.11638402938843,9.08173656463623,-1.65507435798645,-6.17969560623169,9.04833507537842,-1.83210480213165,-6.14324331283569,8.8785400390625,-1.81894481182098,-6.18694400787354,8.8777551651001,-1.84840357303619,-6.06140661239624,8.42231464385986,-1.79647028446198,-6.11755657196045,8.41649436950684,-2.07549214363098,-6.06149339675903,8.03717517852783,-2.0348379611969,-6.1079626083374,8.03288269042969,-2.22735810279846,-5.99443292617798,7.60360717773438,-2.17354464530945,-6.04966926574707,7.59231567382813,-2.44558048248291,-5.90433883666992,6.64591026306152,-2.38397550582886,-5.95976734161377,6.63937187194824,-8.63876193761826e-05,-6.22831916809082,10.4585037231445,-0.0840823948383331,-6.22965478897095,10.4674558639526,-0.0439658910036087,-6.22921276092529,10.4868879318237,-0.0420878604054451,-6.22895336151123,10.4618139266968,-0.467516750097275,-6.22895336151123,10.4358282089233,-0.3476183116436,-6.22670364379883,10.51149559021,-0.1958387196064,-6.2298378944397,10.4696063995361,-0.32254558801651,-6.23216438293457,10.4620876312256,-0.68403959274292,-6.20208501815796,10.313515663147,-0.625115633010864,-6.20996761322021,10.416953086853,-0.592345595359802,-6.21256303787231,10.3785429000854,-0.757377862930298,-6.23126935958862,10.2328481674194, +-0.744928479194641,-6.21792697906494,10.282904624939,-0.7298903465271,-6.21658134460449,10.2640800476074,-0.859192728996277,-6.20547771453857,10.2188787460327,-0.810747742652893,-6.21784973144531,10.2412633895874,-0.793910980224609,-6.22141599655151,10.2225303649902,-1.09935510158539,-6.19823932647705,10.1786594390869,-1.01105809211731,-6.19285583496094,10.2404594421387,-0.972646951675415,-6.20191144943237,10.2077751159668,-1.27808427810669,-6.17262029647827,10.0564403533936,-1.25328421592712,-6.17656183242798,10.1503591537476,-1.20438814163208,-6.1820216178894,10.1210737228394,-1.33915829658508,-6.20271873474121,9.97173500061035,-1.34811115264893,-6.18927001953125,10.0207853317261,-1.31094741821289,-6.18935632705688,10.0061178207397,-1.47822248935699,-6.15622997283936,9.93132781982422,-1.44535994529724,-6.18220472335815,9.97682189941406,-1.39879286289215,-6.18300247192383,9.95498466491699,-1.64495384693146,-6.14781856536865,9.80043125152588,-1.64898228645325,-6.14324331283569,9.91352844238281,-1.56561684608459,-6.14827060699463,9.87600517272949,-1.73279857635498,-6.14602088928223,9.63880348205566,-1.78778123855591,-6.13457202911377,9.7476749420166,-1.70020818710327,-6.14352178573608,9.7160587310791,-1.7403244972229,-6.18193578720093,9.54200649261475,-1.79422497749329,-6.16115188598633,9.59803867340088,-1.74399435520172,-6.16599702835083,9.58452033996582,-1.71748912334442,-6.15121221542358,9.43668270111084,-1.78563046455383,-6.17782068252563,9.51601314544678,-1.7283194065094,-6.17243766784668,9.49973964691162,-1.73145866394043,-6.11700916290283,9.21336841583252,-1.80819189548492,-6.14450216293335,9.36407279968262,-1.71739637851715,-6.13196659088135,9.33166027069092,-1.80434262752533,-6.11468267440796,9.0272741317749,-1.84330058097839,-6.12175798416138,9.13893699645996,-1.7634254693985,-6.10887670516968,9.11063957214355,-1.87204241752625,-6.15909481048584,8.92288208007813,-1.89067029953003,-6.14746284484863,8.97963809967041,-1.84553897380829,-6.14182996749878,8.96747875213623,-1.85717701911926,-6.10187768936157,8.82884120941162, +-1.91735529899597,-6.14074373245239,8.89591503143311,-1.86873137950897,-6.13528299331665,8.88534927368164,-1.88323760032654,-6.08369922637939,8.59228038787842,-1.95478415489197,-6.10743474960327,8.75022220611572,-1.85906374454498,-6.09068870544434,8.72738361358643,-2.00761580467224,-6.05047702789307,8.28932666778564,-2.04809069633484,-6.07940196990967,8.45150852203369,-1.93857824802399,-6.06310796737671,8.43449211120605,-2.12008166313171,-6.07805633544922,8.12143707275391,-2.1433687210083,-6.07304811477661,8.20623397827148,-2.07271194458008,-6.06723213195801,8.19200134277344,-2.14954733848572,-6.01322650909424,7.98183536529541,-2.20622777938843,-6.05029392242432,8.08364963531494,-2.13602232933044,-6.04769849777222,8.05660629272461,-2.24822306632996,-6.01224565505981,7.75725555419922,-2.29066872596741,-6.02075338363647,7.9050989151001,-2.19002175331116,-6.01125574111938,7.88128185272217,-2.38092923164368,-5.96514177322388,7.47053241729736,-2.41907525062561,-5.9938850402832,7.6190881729126,-2.31484484672546,-5.98600196838379,7.6117467880249,-2.47612118721008,-5.99630689620972,7.2690544128418,-2.52295398712158,-5.98314714431763,7.36853885650635,-2.43734455108643,-5.98224306106567,7.35904884338379,-2.49483513832092,-5.93021726608276,7.09802150726318,-2.53047251701355,-5.92216110229492,6.79795360565186,-2.63219404220581,-5.93228387832642,6.96245002746582,-2.51094818115234,-5.92457437515259,6.95734596252441,-2.56172299385071,-5.86414670944214,6.51418495178223,-2.66640448570251,-5.90263748168945,6.64742851257324,-2.54623365402222,-5.89547538757324,6.64760875701904,-2.59512329101563,-5.84675693511963,6.32318496704102,-2.66514992713928,-5.84783363342285,6.40708827972412,-2.58017182350159,-5.8476505279541,6.40574741363525,-0.233353346586227,-6.23064517974854,10.5518960952759,-0.149450555443764,-6.25876331329346,10.5631847381592,-0.0901744961738586,-6.23288536071777,10.5337944030762,-0.135036170482635,-6.22751140594482,10.5185022354126,-0.143902152776718,-6.23216438293457,10.5503597259521,-0.551419496536255,-6.22544431686401,10.4952144622803, +-0.387462675571442,-6.22929906845093,10.5335216522217,-0.740720629692078,-6.21238040924072,10.3680448532104,-0.670249462127686,-6.21622562408447,10.43665599823,-0.772601842880249,-6.23377895355225,10.2550535202026,-0.759435415267944,-6.22446393966675,10.2997426986694,-0.919005632400513,-6.2045841217041,10.2725887298584,-0.826687932014465,-6.22169542312622,10.2572040557861,-1.18325781822205,-6.19563436508179,10.2364139556885,-1.04732596874237,-6.19886445999146,10.2674856185913,-1.37210786342621,-6.18248319625854,10.0996780395508,-1.29859066009521,-6.1861457824707,10.1740169525146,-1.39897179603577,-6.20691967010498,9.99188232421875,-1.38267302513123,-6.19671058654785,10.0327844619751,-1.61200439929962,-6.16840982437134,9.99490451812744,-1.48932504653931,-6.19106817245483,9.99510860443115,-1.8134833574295,-6.15238475799561,9.86229133605957,-1.7247428894043,-6.15784502029419,9.94361686706543,-1.87338316440582,-6.14629030227661,9.68339347839355,-1.86416494846344,-6.14512729644775,9.77184963226318,-1.8110636472702,-6.18309879302979,9.55525875091553,-1.83819711208344,-6.16609287261963,9.60799789428711,-1.89093613624573,-6.15775871276855,9.49910831451416,-1.84463882446289,-6.17584085464478,9.53473377227783,-1.90454745292664,-6.12937116622925,9.27835845947266,-1.90195250511169,-6.14217567443848,9.4006986618042,-1.94278585910797,-6.12221908569336,9.07645416259766,-1.92514657974243,-6.11978721618652,9.17083549499512,-1.93481516838074,-6.16044044494629,8.93354034423828,-1.93642771244049,-6.14557886123657,8.99342727661133,-2.01191639900208,-6.1058292388916,8.87092876434326,-1.96651029586792,-6.1373405456543,8.90792942047119,-2.09617733955383,-6.08817911148071,8.63929176330566,-2.05140280723572,-6.09535074234009,8.77692317962646,-2.20667266845703,-6.0531587600708,8.31780338287354,-2.15769624710083,-6.06668424606323,8.47165584564209,-2.22270607948303,-6.08164215087891,8.15976810455322,-2.21401906013489,-6.0700101852417,8.22128772735596,-2.34296298027039,-6.01905155181885,8.04416370391846,-2.27634048461914,-6.05281257629395,8.11069297790527, +-2.44343709945679,-6.01492738723755,7.78591156005859,-2.39096331596375,-6.01591777801514,7.93025779724121,-2.59118175506592,-5.96631479263306,7.48289012908936,-2.52313232421875,-5.98754024505615,7.62777423858643,-2.62324190139771,-5.99871969223022,7.29448509216309,-2.60855579376221,-5.9840407371521,7.37803554534912,-2.7422513961792,-5.93156290054321,7.11235046386719,-2.75541067123413,-5.92295932769775,6.80646228790283,-2.75343942642212,-5.92565107345581,6.96889972686768,-2.80036520957947,-5.86385822296143,6.51078033447266,-2.78657484054565,-5.89556217193604,6.64868259429932,-2.69111824035645,-5.84954452514648,6.33428764343262,-2.75012826919556,-5.84792947769165,6.40842819213867,-0.163871273398399,-7.39680194854736,10.1621980667114,-0.166021451354027,-7.23562049865723,10.1930894851685,-0.149185344576836,-7.16085004806519,10.125391960144,-2.40466070175171,-6.77105045318604,6.10719871520996,-2.29048895835876,-7.03887891769409,6.71924686431885,-2.3306987285614,-6.98649787902832,6.79007720947266,-2.1987087726593,-7.10102701187134,7.20565605163574,-2.27356719970703,-6.99115991592407,7.24792385101318,-2.08982014656067,-7.14284420013428,7.74758625030518,-2.07898283004761,-7.09484672546387,7.77821254730225,-1.93481516838074,-7.17840337753296,8.20722484588623,-1.96427464485168,-7.05759620666504,8.17570304870605,-1.7820451259613,-7.20929002761841,8.55725765228271,-1.78025960922241,-7.14445924758911,8.57865142822266,-1.63259720802307,-7.22478675842285,8.83645343780518,-1.66940248012543,-7.09403944015503,8.83162117004395,-1.51216065883636,-7.25120306015015,9.05836296081543,-1.50212669372559,-7.1843056678772,9.08673572540283,-1.37658715248108,-7.26937198638916,9.30130577087402,-1.41840291023254,-7.16130208969116,9.30354309082031,-1.23555219173431,-7.29149103164673,9.48091411590576,-1.22632777690887,-7.23266935348511,9.50392913818359,-1.02932798862457,-7.30465173721313,9.66450023651123,-1.08287680149078,-7.22182607650757,9.67065906524658,-0.836449861526489,-7.31888818740845,9.7911205291748,-0.834479093551636,-7.26839113235474,9.80768489837646, +-0.558407425880432,-7.32435846328735,9.92363166809082,-0.609268665313721,-7.23346710205078,9.94460105895996,-0.293173104524612,-7.3436131477356,10.0228624343872,-0.206403180956841,-7.29454851150513,10.0701446533203,-0.281354278326035,-7.30287313461304,10.0392532348633,-0.162524327635765,-7.16917514801025,10.2060585021973,-0.148647308349609,-7.08249473571777,10.2446489334106,-0.134677693247795,-7.0667290687561,10.1153650283813,-2.13620138168335,-7.12386798858643,6.6185941696167,-2.1397852897644,-7.10147905349731,6.36258411407471,-2.22386693954468,-7.07299566268921,6.55035972595215,-2.06644701957703,-7.2321400642395,7.44062232971191,-2.01728510856628,-7.2568359375,7.7787504196167,-2.08918952941895,-7.19586038589478,7.64684677124023,-1.8150030374527,-7.29024124145508,8.40047740936279,-1.72939491271973,-7.30331468582153,8.57641506195068,-1.78912210464478,-7.26005601882935,8.50236892700195,-1.54134738445282,-7.31915807723999,8.94482231140137,-1.46908450126648,-7.3290114402771,9.07851123809814,-1.52227485179901,-7.2953462600708,9.01080226898193,-1.25775730609894,-7.34387302398682,9.38859462738037,-1.16328871250153,-7.35113048553467,9.49515533447266,-1.24038994312286,-7.3268575668335,9.44224834442139,-0.872982859611511,-7.35910940170288,9.71965885162354,-0.744211435317993,-7.36573314666748,9.79344940185547,-0.84405517578125,-7.34700632095337,9.76065540313721,-0.379585146903992,-7.37575912475586,9.95256900787354,-0.223505184054375,-7.38274812698364,10.0065698623657,-0.32532012462616,-7.36581945419312,9.9915246963501,-1.9777991771698,-7.16299295425415,6.12134742736816,-1.98245072364807,-7.20347356796265,6.77493953704834,-2.01110672950745,-7.22970771789551,7.09336376190186,-1.9363352060318,-7.28504991531372,8.06047248840332,-1.97529053688049,-7.27966690063477,7.91190147399902,-1.87356209754944,-7.29354810714722,8.23821067810059,-1.62543666362762,-7.32257032394409,8.76617813110352,-1.67530858516693,-7.31969594955444,8.66785430908203,-1.57824516296387,-7.32533884048462,8.86082649230957,-1.36333465576172,-7.34514188766479,9.24236392974854, +-1.4171484708786,-7.34227705001831,9.15872573852539,-1.30450391769409,-7.34781408309937,9.32044792175293,-1.01912152767181,-7.35945558547974,9.6161470413208,-1.09174287319183,-7.35900402069092,9.555344581604,-0.938795208930969,-7.3613395690918,9.67119693756104,-0.550437331199646,-7.37924861907959,9.87285614013672,-0.646073222160339,-7.37549018859863,9.83195400238037,-0.335347175598145,-7.41641283035278,9.91001987457275,-0.458205997943878,-7.3797869682312,9.91299057006836,-0.162975400686264,-7.43011140823364,9.96349334716797,-0.216968297958374,-7.45088529586792,9.91207599639893,-8.63876193761826e-05,-7.54302597045898,9.80883407592773,-0.110322520136833,-7.5688271522522,9.7474946975708,-0.0893649533390999,-7.54007482528687,9.80938339233398,-7.82310962677002e-08,-7.60427045822144,9.67927837371826,-0.149629473686218,-7.62702465057373,9.61532020568848,-0.130470559000969,-7.59855079650879,9.68097686767578,-7.82310962677002e-08,-7.65943002700806,9.55579662322998,-0.184463441371918,-7.67780113220215,9.49569320678711,-0.16718253493309,-7.65218210220337,9.55615329742432,-8.63876193761826e-05,-7.71531105041504,9.42917537689209,-0.220193892717361,-7.73833417892456,9.34231853485107,-0.202461272478104,-7.70769739151001,9.42640113830566,-7.82310962677002e-08,-7.77333545684814,9.2417573928833,-0.253501385450363,-7.79044628143311,9.11682415008545,-0.236757844686508,-7.7660870552063,9.23716640472412,-8.63876193761826e-05,-7.8174877166748,8.99092102050781,-0.291739821434021,-7.83047485351563,8.84130954742432,-0.271950274705887,-7.81076860427856,8.98708915710449,-8.63876193761826e-05,-7.86019897460938,8.67313766479492,-0.333018064498901,-7.86887836456299,8.48186206817627,-0.312425225973129,-7.85285425186157,8.67323112487793,-0.368841111660004,-7.85590076446533,8.03081893920898,-8.63876193761826e-05,-7.82670640945435,7.73102140426636,-0.378954499959946,-7.82931137084961,7.77847814559937,0.361851751804352,-7.12852144241333,10.186713218689,0.397582203149796,-6.83140230178833,10.3545207977295,1.4683666229248,-7.04693555831909,9.64522838592529, +1.61710715293884,-6.79674673080444,9.79245948791504,2.07557773590088,-6.93377113342285,8.66927051544189,2.15912270545959,-6.63710308074951,8.73634338378906,0.950706481933594,-6.29887866973877,10.2805767059326,1.08564984798431,-6.41787815093994,10.2445812225342,1.22910010814667,-6.29288911819458,10.2432327270508,1.07463991641998,-6.22992420196533,10.2819929122925,1.08645939826965,-6.29610967636108,10.2766351699829,1.15487372875214,-7.23041963577271,9.77238845825195,1.1070522069931,-7.36563682556152,9.79281997680664,0.51954448223114,-8.79601764678955,9.61188793182373,0.501453399658203,-7.39267826080322,10.05894947052,1.97242271900177,-6.22902965545654,9.52927303314209,1.97824275493622,-6.33147573471069,9.41547870635986,1.99534475803375,-6.20485258102417,9.30629825592041,1.97242271900177,-6.15598058700562,9.42835426330566,1.99346649646759,-6.21667671203613,9.43354320526123,1.79136395454407,-7.15663957595825,8.97444248199463,1.78742206096649,-7.31012153625488,8.97963809967041,1.57886862754822,-8.68981170654297,8.98562240600586,1.52657413482666,-7.32830905914307,9.44063758850098,2.46151995658875,-6.09704208374023,8.08329200744629,2.53969621658325,-6.19142293930054,7.95568752288818,2.5694272518158,-6.07151937484741,7.79764461517334,2.47253632545471,-6.0268383026123,7.95022678375244,2.5171320438385,-6.08379554748535,7.95828914642334,2.49957966804504,-7.04246520996094,7.56393241882324,2.50172996520996,-7.16809797286987,7.66941070556641,2.20040726661682,-8.51437759399414,7.96435022354126,2.15554547309875,-7.23481225967407,8.44711208343506,2.94883251190186,-6.05631113052368,6.6206579208374,2.94408082962036,-6.35717058181763,6.57937335968018,2.76579570770264,-6.79854345321655,6.27527713775635,2.76320052146912,-6.70845937728882,6.28629302978516,2.73248744010925,-7.09117364883423,6.8683385848999,2.78630232810974,-8.24450874328613,6.37973833084106,0.252604722976685,-6.32224798202515,10.5541391372681,0.426775097846985,-6.43794059753418,10.49880027771,0.616972208023071,-6.31536483764648,10.4847440719604,0.422295808792114,-6.25517749786377,10.5363903045654, +0.432416170835495,-6.31956577301025,10.5284366607666,0.79059886932373,-6.30693435668945,10.3696765899658,0.803937792778015,-6.41905117034912,10.2712478637695,0.79229736328125,-6.30792427062988,10.2528858184814,0.774479031562805,-6.24971723556519,10.3077993392944,0.791315197944641,-6.30756855010986,10.2998285293579,0.735078811645508,-7.00288915634155,10.0745143890381,0.794540762901306,-6.79711198806763,10.1562852859497,1.66286468505859,-6.27299976348877,10.0105037689209,1.755899310112,-6.38771200180054,9.93045139312744,1.87660717964172,-6.25723457336426,9.87026119232178,1.77560245990753,-6.19697999954224,9.96043586730957,1.78437519073486,-6.2655782699585,9.95830249786377,1.9224579334259,-6.24292039871216,9.67820262908936,1.85279190540314,-6.35663318634033,9.57137203216553,1.84347605705261,-6.24820756912231,9.55311012268066,1.86738276481628,-6.19097185134888,9.61023330688477,1.87356126308441,-6.24577569961548,9.60054683685303,1.66465640068054,-6.91881322860718,9.38895511627197,1.74175071716309,-6.74302911758423,9.45523643493652,2.09751749038696,-6.16920757293701,8.89591503143311,2.17398738861084,-6.26942348480225,8.79850387573242,2.22637510299683,-6.14092588424683,8.66649627685547,2.12787222862244,-6.09668684005737,8.7985897064209,2.16351556777954,-6.15418243408203,8.80656147003174,2.33194541931152,-6.11539363861084,8.327317237854,2.33311343193054,-6.22732734680176,8.23284339904785,2.29586434364319,-6.13304281234741,8.18484020233154,2.27275586128235,-6.08002710342407,8.23256969451904,2.3083074092865,-6.12516021728516,8.23551368713379,2.33490514755249,-6.80238914489746,8.19013214111328,2.37287211418152,-6.59814119338989,8.21779918670654,2.88345813751221,-6.00606393814087,7.11898040771484,2.92089343070984,-6.08800554275513,6.96647644042969,2.89760684967041,-5.97794580459595,6.80556583404541,2.85059475898743,-5.93505239486694,6.97355270385742,2.90002918243408,-5.99083709716797,6.97310638427734,2.81003355979919,-6.75591897964478,6.9029016494751,2.92115879058838,-6.38897037506104,6.93486785888672,1.42664432525635,-6.28132438659668,10.096001625061, +1.42503154277802,-6.3962197303772,9.99347686767578,1.43282270431519,-6.28284311294556,9.98677921295166,1.41016662120819,-6.22356939315796,10.0363845825195,1.42628586292267,-6.28178596496582,10.025728225708,1.29868245124817,-6.99465990066528,9.76819896697998,1.3646742105484,-6.79201698303223,9.8630256652832,1.02010273933411,-7.10282611846924,9.92685508728027,1.05878603458405,-6.82746028900146,10.0935859680176,1.16516661643982,-8.75000095367432,9.34685039520264,0.899932265281677,-8.77219390869141,9.47470378875732,0.833582520484924,-7.36384868621826,9.93813800811768,0.839130282402039,-7.13623142242432,9.98122596740723,0.16369092464447,-7.39680194854736,10.1621980667114,0.164494171738625,-8.81348133087158,9.70306301116943,0.0548886694014072,-7.18779563903809,10.1972789764404,0.0533691048622131,-7.10139322280884,10.2082958221436,0.514799356460571,-7.2682089805603,10.0676374435425,2.01585102081299,-6.19061613082886,9.08933067321777,1.98352515697479,-6.30004119873047,8.98216438293457,1.9712610244751,-6.20601606369019,8.93790817260742,1.97188520431519,-6.15641307830811,9.00220108032227,1.98612010478973,-6.20020055770874,8.99924850463867,1.9012371301651,-6.82075071334839,8.8785400390625,1.94645488262177,-6.6602897644043,8.91274452209473,1.74542689323425,-7.02706575393677,9.20081329345703,1.88296723365784,-6.70524978637695,9.31597423553467,1.82986509799957,-8.6225643157959,8.52642726898193,1.68677496910095,-8.65179920196533,8.76764583587646,1.63689661026001,-7.29865312576294,9.22984504699707,1.63456690311432,-7.07309293746948,9.27701854705811,1.40362977981567,-8.72535419464111,9.19621467590332,1.33055734634399,-7.34073925018311,9.64202785491943,1.31247317790985,-7.13318395614624,9.67524909973145,1.53731822967529,-7.15198707580566,9.44097518920898,2.718425989151,-6.04045009613037,7.47814559936523,2.72380113601685,-6.14056062698364,7.36800098419189,2.71045565605164,-6.05074548721313,7.30326461791992,2.67696857452393,-6.00015258789063,7.3830451965332,2.71117210388184,-6.04671764373779,7.3791971206665,2.62037396430969,-6.70030784606934,7.30791568756104, +2.71216106414795,-6.47027826309204,7.3326301574707,2.44880557060242,-6.91118955612183,7.8948860168457,2.54864859580994,-6.5484414100647,7.92632293701172,2.55823159217834,-8.3841724395752,7.20983028411865,2.38827514648438,-8.45629024505615,7.62872171401978,2.3323974609375,-7.19299554824829,8.11302185058594,2.32155990600586,-6.96563816070557,8.09448623657227,2.01361465454102,-8.56610488891602,8.26726818084717,1.96068966388702,-7.24788665771484,8.73259830474854,1.94188916683197,-6.99697685241699,8.76454830169678,2.18840885162354,-7.0636043548584,8.41227722167969,2.86214923858643,-6.04091119766235,6.36204719543457,2.85794138908386,-6.38207817077637,6.31861782073975,2.80179810523987,-6.62750816345215,6.29775428771973,2.83546423912048,-6.72181224822998,6.54069042205811,2.75371098518372,-6.84279251098633,6.53128623962402,2.76776671409607,-7.02025842666626,6.25638294219971,2.81540870666504,-8.13744449615479,5.76124620437622,2.75335311889648,-7.05625915527344,6.51275157928467,2.80161881446838,-8.18183135986328,6.01941156387329,2.75433468818665,-6.9060845375061,6.52672100067139,2.72997951507568,-6.93930721282959,6.88015842437744,2.72810220718384,-6.87599611282349,6.88472366333008,0.0421733781695366,-6.43383598327637,10.460901260376,0.0898158699274063,-6.32126712799072,10.5332565307617,0.0420870706439018,-6.2551007270813,10.5144662857056,0.0419944599270821,-6.31786441802979,10.5004978179932,0.315291613340378,-7.39850378036499,10.1210069656372,0.31860288977623,-8.80612564086914,9.67136001586914,0.317083328962326,-7.27456283569336,10.1391649246216,0.320753067731857,-7.22334480285645,10.1464366912842,0.0440583378076553,-7.02831554412842,10.2411766052246,0.0416359901428223,-6.80607175827026,10.3194389343262,0.677681446075439,-7.37190437316895,10.0002107620239,0.726485013961792,-8.78393077850342,9.54150295257568,0.738841772079468,-6.42980813980103,10.4011058807373,0.69729208946228,-6.83069086074829,10.2631168365479,0.692009568214417,-7.15485191345215,10.0319995880127,0.703290939331055,-7.0675368309021,10.0494422912598,0.602372527122498,-7.12556076049805,10.1139135360718, +0.528138399124146,-7.21735572814941,10.0722017288208,0.85480523109436,-6.41582059860229,10.2334547042847,0.858295559883118,-6.79173851013184,10.1186580657959,0.974438548088074,-7.37307691574097,9.86631774902344,1.0361293554306,-8.76108932495117,9.41141128540039,0.8510422706604,-6.98381662368774,10.0359334945679,0.844412803649902,-7.04462862014771,10.004222869873,0.998793721199036,-7.2446756362915,9.86875247955322,1.00156760215759,-7.18868970870972,9.87386226654053,1.2232803106308,-7.34772729873657,9.72188568115234,1.28936541080475,-8.73922824859619,9.28083515167236,1.34980893135071,-6.40990877151489,10.140079498291,1.28560924530029,-6.82952737808228,9.98427104949951,1.20734691619873,-7.09225177764893,9.81888103485107,1.16964590549469,-7.17240476608276,9.76880359649658,1.24719130992889,-7.14025926589966,9.72501754760742,1.26680195331573,-7.057692527771,9.73504447937012,1.51484107971191,-6.39344120025635,9.97495937347412,1.43353962898254,-6.78547096252441,9.85082912445068,1.43675768375397,-7.34073925018311,9.54657077789307,1.50401067733765,-8.70806503295898,9.09242820739746,1.41831564903259,-7.18349838256836,9.57522773742676,1.41285419464111,-7.1206488609314,9.58980274200439,1.34578061103821,-6.98864221572876,9.74258232116699,1.31345462799072,-7.05070400238037,9.6987771987915,1.58880949020386,-7.30742979049683,9.33622741699219,1.63608705997467,-8.67119121551514,8.87924289703369,1.89290595054626,-6.36962032318115,9.73775100708008,1.74354255199432,-6.77570390701294,9.59839630126953,1.60922336578369,-7.06771898269653,9.35028171539307,1.63250994682312,-6.97253084182739,9.36647701263428,1.60582506656647,-7.01166534423828,9.48360157012939,1.55012607574463,-7.08168649673462,9.4460973739624,1.88126611709595,-6.34849071502686,9.53016090393066,1.78043341636658,-6.71580505371094,9.42808151245117,1.70172679424286,-7.3241753578186,9.10725975036621,1.74668180942535,-8.64328670501709,8.64722919464111,1.68363630771637,-6.91826486587524,9.34249782562256,1.64513206481934,-6.98274946212769,9.3056001663208,1.6908894777298,-7.18663215637207,9.13929462432861, +1.69080328941345,-7.12260961532593,9.15648937225342,1.87401235103607,-7.25602912902832,8.85829830169678,1.92182755470276,-8.58963203430176,8.40518188476563,2.00609564781189,-6.30854892730713,9.16985321044922,1.94896328449249,-6.68150568008423,9.08236694335938,1.84276175498962,-6.99366044998169,8.99951457977295,1.79601573944092,-7.08652257919312,8.97463893890381,1.87535297870636,-6.98013496398926,8.8635139465332,1.87866926193237,-6.87072849273682,8.86843776702881,2.02068853378296,-6.29153347015381,8.91257095336914,1.99221229553223,-6.65409898757935,8.84910011291504,2.05355167388916,-7.25030851364136,8.59684658050537,2.10504341125488,-8.53983020782471,8.11333847045898,2.03689455986023,-7.09260749816895,8.62422943115234,2.03063035011292,-7.02822875976563,8.63515472412109,1.95119988918304,-6.839111328125,8.80163669586182,1.93391823768616,-6.8972225189209,8.77951717376709,2.25162625312805,-7.20804977416992,8.28254318237305,2.29872441291809,-8.48680591583252,7.80477952957153,2.31654953956604,-6.23951721191406,8.47961711883545,2.33150124549866,-6.60816717147827,8.43969821929932,2.28950667381287,-6.96555137634277,8.21627044677734,2.30455112457275,-6.8673152923584,8.18501091003418,2.25628519058228,-6.9000096321106,8.4060173034668,2.20363235473633,-6.99304437637329,8.39393424987793,2.3888988494873,-6.21935844421387,8.15207290649414,2.41737532615662,-6.58229875564575,8.14293193817139,2.41021490097046,-7.19254398345947,7.93043613433838,2.46716094017029,-8.42545986175537,7.45204925537109,2.35308194160461,-6.80499410629272,8.10630702972412,2.31654953956604,-6.87493896484375,8.08615875244141,2.39006686210632,-7.07425546646118,7.89336585998535,2.38370943069458,-7.02142238616943,7.87742614746094,2.61562943458557,-7.11849451065063,7.35958671569824,2.68798494338989,-8.33230495452881,6.9024224281311,2.67526960372925,-6.15954637527466,7.61434268951416,2.6739227771759,-6.51514196395874,7.57207584381104,2.56673908233643,-6.8791298866272,7.54387092590332,2.49456310272217,-6.9896411895752,7.53805065155029,2.5878689289093,-6.86247968673706,7.30720043182373, +2.56871032714844,-6.77240562438965,7.30245494842529,0.146496340632439,-6.4390172958374,10.5175132751465,0.143808752298355,-6.81851148605347,10.3729877471924,2.93540048599243,-5.94177198410034,6.4890193939209,2.75935196876526,-5.92889022827148,6.3170919418335,2.81764602661133,-5.86870336532593,6.40350341796875,2.85050845146179,-5.93075561523438,6.3858642578125,0.839939832687378,-6.24604511260986,10.2650699615479,0.849071025848389,-6.30388689041138,10.2595138549805,1.33351707458496,-6.219810962677,10.1849422454834,1.35177946090698,-6.2865252494812,10.1757917404175,0.711884737014771,-6.2451605796814,10.4405736923218,0.734362483024597,-6.31033706665039,10.4315528869629,1.5204883813858,-6.22008943557739,10.0047597885132,1.52872443199158,-6.27935361862183,10.0008354187012,1.91412961483002,-6.18112802505493,9.78225517272949,1.92299544811249,-6.24820756912231,9.77249336242676,1.88815891742706,-6.18927001953125,9.5483455657959,1.89944541454315,-6.2410364151001,9.54916572570801,1.98791193962097,-6.13366842269897,9.19286060333252,2.01084041595459,-6.19411516189575,9.19158935546875,2.00474786758423,-6.14692497253418,8.91769409179688,2.02095413208008,-6.19106817245483,8.92162799835205,2.24643015861511,-6.06749200820923,8.48686504364014,2.29353523254395,-6.12435293197632,8.48885250091553,2.33391690254211,-6.07053899765015,8.13317108154297,2.36731767654419,-6.11853694915771,8.14642333984375,2.60775208473206,-5.99710512161255,7.63243293762207,2.65386724472046,-6.05289888381958,7.62759494781494,2.88247609138489,-5.90442514419556,6.64653301239014,2.93020439147949,-5.95949840545654,6.63650512695313,0.272221624851227,-7.10873794555664,10.0691394805908,0.273827493190765,-6.81851100921631,10.201042175293,1.22221183776855,-7.03172826766968,9.55281829833984,1.29142928123474,-6.78072166442871,9.64202785491943,1.76082324981689,-6.92508029937744,8.60597801208496,1.73297739028931,-6.62894201278687,8.65415859222412,0.941396951675415,-6.23539352416992,10.1719589233398,1.04956161975861,-6.29842615127563,10.1060371398926,0.918918609619141,-6.4223575592041,10.0910787582397, +0.821848750114441,-6.3010311126709,10.1540479660034,0.92653214931488,-6.30273294448853,10.1353340148926,0.891962051391602,-7.27036190032959,9.76710510253906,1.02529907226563,-7.23964834213257,9.69376659393311,0.92304003238678,-7.31324577331543,9.73746109008789,0.958677887916565,-7.25827836990356,9.72752666473389,0.0392199382185936,-7.45401906967163,9.96994304656982,0.117124482989311,-7.47640800476074,9.91567707061768,0.0688582956790924,-7.5123987197876,9.8660717010498,0.0503230579197407,-7.48590564727783,9.91717910766602,1.64038681983948,-6.13769626617432,9.30228805541992,1.61665546894073,-6.18157958984375,9.15453720092773,1.55666375160217,-6.30952930450439,9.24531841278076,1.58853733539581,-6.21372556686401,9.3853702545166,1.58835828304291,-6.19465351104736,9.27442455291748,1.53785634040833,-7.18108558654785,9.01431274414063,1.61504328250885,-7.13318395614624,8.88131427764893,1.56185293197632,-7.24027299880981,8.96335697174072,1.57332026958466,-7.16317653656006,8.94400215148926,1.1373199224472,-7.43064975738525,9.35169792175293,0.871369242668152,-7.56721258163452,9.29063129425049,0.455696523189545,-7.66114187240601,9.41339588165283,0.748331546783447,-7.53658533096313,9.46945190429688,0.810832500457764,-7.55188941955566,9.38563632965088,2.10602498054504,-6.01868629455566,7.86319065093994,2.11140084266663,-6.06570339202881,7.73603916168213,2.02874565124512,-6.18130016326904,7.84814739227295,2.02435874938965,-6.08486223220825,7.95300674438477,2.05578827857971,-6.07411479949951,7.85513401031494,2.11811661720276,-7.08876180648804,7.65562629699707,2.22610306739807,-7.03691864013672,7.36684036254883,2.15294432640076,-7.12422370910645,7.54718208312988,2.17076945304871,-7.0695161819458,7.51064968109131,1.67916345596313,-7.43360042572021,8.26219749450684,1.30279695987701,-7.6228232383728,8.05714511871338,0.753435134887695,-7.8008279800415,8.27294254302979,1.19015181064606,-7.63140773773193,8.48087406158447,1.25077474117279,-7.62909126281738,8.27260208129883,2.34501934051514,-6.356276512146,6.5841178894043,2.35218667984009,-6.05692672729492,6.62737369537354, +2.42740249633789,-6.76148509979248,6.242506980896,2.46151995658875,-6.7054123878479,6.266770362854,0.306246042251587,-6.2601957321167,10.4060297012329,0.438953042030334,-6.32349729537964,10.3444242477417,0.283410459756851,-6.44134378433228,10.3226642608643,0.168880864977837,-6.31965208053589,10.3708190917969,0.293172299861908,-6.32546806335449,10.3642129898071,0.721109867095947,-6.23593187332153,10.2428588867188,0.758093953132629,-6.30308866500854,10.2036542892456,0.733917713165283,-6.4040060043335,10.1835794448853,0.666665315628052,-6.28615999221802,10.242772102356,0.725589156150818,-6.29162979125977,10.2187004089355,0.677236676216125,-6.9933910369873,10.0103988647461,0.728004574775696,-6.78788328170776,10.0743341445923,1.48583340644836,-6.17969560623169,9.83703899383545,1.4972950220108,-6.2469482421875,9.72629070281982,1.36969101428986,-6.36621761322021,9.76201438903809,1.35384404659271,-6.24596786499023,9.86553382873535,1.42135536670685,-6.24453544616699,9.80264949798584,1.69447302818298,-6.19043302536011,9.56564426422119,1.67558002471924,-6.24568891525269,9.51540565490723,1.61459851264954,-6.3538646697998,9.50242710113525,1.60134565830231,-6.23977708816528,9.56974029541016,1.65310215950012,-6.2442569732666,9.53920650482178,1.49657809734344,-6.91405439376831,9.35628223419189,1.53776931762695,-6.73854923248291,9.40419483184814,1.78276312351227,-6.08864116668701,8.71269702911377,1.74909663200378,-6.13232183456421,8.57517910003662,1.73082721233368,-6.26074314117432,8.70553874969482,1.77157437801361,-6.16151714324951,8.81388854980469,1.74461734294891,-6.14512729644775,8.71028232574463,2.01048231124878,-6.07519197463989,8.18089008331299,2.03313159942627,-6.12543916702271,8.10389137268066,1.93723022937775,-6.22141551971436,8.16998386383057,1.87302565574646,-6.11011600494385,8.27098941802979,1.96552729606628,-6.11943101882935,8.1750020980835,1.97018623352051,-6.79729413986206,8.13200950622559,1.92764723300934,-6.59196949005127,8.15081024169922,2.4087815284729,-5.93326425552368,6.95447826385498,2.37206220626831,-5.97686910629272,6.7942008972168, +2.31081604957581,-6.08665943145752,6.95206356048584,2.33168029785156,-6.00373792648315,7.09336376190186,2.34493374824524,-5.98915481567383,6.95475006103516,2.33570909500122,-6.74267244338989,6.8530216217041,2.3004298210144,-6.38592338562012,6.91848278045654,1.28211152553558,-6.21058225631714,9.98702716827393,1.30423080921173,-6.2738938331604,9.94164657592773,1.26564025878906,-6.3819727897644,9.92327213287354,1.22256410121918,-6.26091623306274,9.99143123626709,1.27271509170532,-6.26664543151855,9.96213436126709,1.16624140739441,-6.99921655654907,9.72420787811279,1.21566867828369,-6.78600883483887,9.79891109466553,0.844771265983582,-7.07470798492432,9.85405540466309,0.893308997154236,-6.8152904510498,9.96681022644043,0.785853624343872,-7.41685485839844,9.68106937408447,0.619925618171692,-7.50901556015015,9.61541175842285,0.299351364374161,-7.56721258163452,9.68357276916504,0.464117765426636,-7.48428058624268,9.74919319152832,0.545332908630371,-7.49610471725464,9.68438243865967,0.544975161552429,-7.41980648040771,9.81189155578613,0.206130236387253,-7.52072381973267,9.80947494506836,0.293710321187973,-7.46405506134033,9.86087512969971,0.378243684768677,-7.47443723678589,9.80732536315918,0.681981801986694,-7.20455121994019,9.92759132385254,0.783345103263855,-7.25200080871582,9.84932136535645,0.702667236328125,-7.3171968460083,9.86094284057617,0.736246824264526,-7.22066259384155,9.89255905151367,0.0481728687882423,-7.34700632095337,10.0868892669678,0.0886478424072266,-7.40655946731567,10.0250873565674,0.0415496788918972,-7.40996265411377,10.0314626693726,0.0997503325343132,-7.27161169052124,10.1072845458984,0.0500571951270103,-7.25863409042358,10.1217918395996,0.364181458950043,-7.30510330200195,10.006031036377,0.5273357629776,-7.27519702911377,9.95685195922852,0.412533342838287,-7.33957576751709,9.97950839996338,0.445934057235718,-7.29749011993408,9.97799968719482,1.80855226516724,-6.1517505645752,8.95375633239746,1.83963191509247,-6.20531415939331,8.9141092300415,1.77533042430878,-6.3042516708374,8.91178035736084,1.70969700813293,-6.18685722351074,8.97043323516846, +1.78724229335785,-6.20029640197754,8.9353141784668,1.7373640537262,-6.81734752655029,8.85042190551758,1.75769102573395,-6.6568865776062,8.85814476013184,1.49550259113312,-6.95954370498657,9.13257884979248,1.52944147586823,-6.68276500701904,9.17943000793457,1.40935635566711,-7.43772459030151,8.89700794219971,1.07938516139984,-7.61385488510132,8.80199527740479,0.597182512283325,-7.75229215621948,8.97070407867432,0.979806780815125,-7.59361934661865,9.06257724761963,1.02932715415955,-7.60401105880737,8.9371919631958,1.27682900428772,-7.43638896942139,9.1526575088501,0.527693510055542,-7.71262884140015,9.21874237060547,0.927426695823669,-7.5812668800354,9.18165493011475,1.44965255260468,-7.15000677108765,9.26647281646729,1.47419357299805,-7.17607736587524,9.15595245361328,1.44616174697876,-7.26230621337891,9.18489074707031,1.46254670619965,-7.15977382659912,9.21659278869629,0.963423013687134,-7.42393016815186,9.54164791107178,0.380480229854584,-7.6125283241272,9.55362796783447,0.686096429824829,-7.52243518829346,9.54493999481201,1.12755811214447,-7.21134757995605,9.64621829986572,1.18423914909363,-7.22461366653442,9.55991077423096,1.13481187820435,-7.29892253875732,9.57959651947021,1.15639317035675,-7.21494245529175,9.60835647583008,1.27584683895111,-7.23095846176147,9.44547367095947,1.37497425079346,-7.1847677230835,9.34034824371338,1.30181479454041,-7.28183031082153,9.4043493270874,1.32644212245941,-7.21153020858765,9.38923740386963,2.36642146110535,-5.99702835083008,7.35000324249268,2.37771010398865,-6.04617929458618,7.25463962554932,2.30579876899719,-6.14234828948975,7.33021354675293,2.24401450157166,-6.0380277633667,7.45163822174072,2.3253231048584,-6.04321908950806,7.34167575836182,2.30078840255737,-6.74302816390991,7.26448822021484,2.29935503005981,-6.50403833389282,7.29117202758789,2.02838706970215,-6.87931299209595,7.78125858306885,2.01056861877441,-6.53457021713257,7.81412220001221,1.65533864498138,-7.38694763183594,7.05432176589966,0.556887149810791,-7.75094604492188,7.51145315170288,1.28041303157806,-7.60651016235352,7.61326742172241, +1.07651793956757,-7.58206367492676,7.2318902015686,1.78276312351227,-7.42483329772949,7.86990690231323,0.807162761688232,-7.77897787094116,7.8468918800354,1.33431959152222,-7.61769962310791,7.86283159255981,2.0020604133606,-7.03432321548462,8.05929470062256,2.04978942871094,-7.08428192138672,7.88136672973633,2.02050924301147,-7.16254186630249,7.95568752288818,2.02740478515625,-7.05365467071533,7.96813869476318,1.52272486686707,-7.44166612625122,8.64744186401367,0.673653244972229,-7.78847599029541,8.66830635070801,1.13293325901031,-7.62468910217285,8.65370750427246,1.71739494800568,-7.07290983200073,8.78120517730713,1.75635039806366,-7.13246297836304,8.64574241638184,1.70862150192261,-7.21833610534668,8.69676399230957,1.74094748497009,-7.0971827507019,8.71628189086914,1.81518161296844,-7.13935518264771,8.50353050231934,1.91708219051361,-7.09637546539307,8.29856967926025,1.83908951282501,-7.19756174087524,8.44632148742676,1.86416172981262,-7.12350273132324,8.40896987915039,2.42454218864441,-6.3814435005188,6.31745052337646,2.43036222457886,-6.04098796844482,6.36338710784912,2.44244766235352,-6.62204837799072,6.27473831176758,2.37815475463867,-6.7114109992981,6.51633548736572,2.42480802536011,-6.83776473999023,6.49770736694336,2.34000897407532,-6.97648096084595,6.63175964355469,2.35513973236084,-6.92865610122681,6.33231544494629,2.29702520370483,-7.01542329788208,6.49027442932129,2.35012912750244,-6.95140027999878,6.47827529907227,2.30660820007324,-6.95820617675781,7.14413833618164,2.32326579093933,-6.98212385177612,6.93442249298096,2.38272047042847,-6.86999702453613,6.82795143127441,0.0388620980083942,-6.25016927719116,10.4348640441895,0.0709221661090851,-6.31446123123169,10.3942956924438,0.0336658582091331,-6.42791414260864,10.3690452575684,0.0357297398149967,-6.31231737136841,10.4085397720337,0.281618744134903,-7.21331834793091,10.0582323074341,0.0458500608801842,-7.02025938034058,10.1650657653809,0.0501435101032257,-7.09681797027588,10.1648683547974,0.542559027671814,-6.81779956817627,10.1301193237305,0.56628429889679,-6.42280960083008,10.2511005401611, +0.660128355026245,-7.06207609176636,9.99965572357178,0.475665032863617,-7.10648822784424,10.0103988647461,0.460892796516418,-7.20794439315796,9.99069690704346,0.784685730934143,-6.78547096252441,10.043888092041,0.77985417842865,-6.41484022140503,10.1473159790039,0.77940309047699,-6.97655868530273,9.97773456573486,0.780836343765259,-7.0397834777832,9.95856952667236,0.8426274061203,-7.16326332092285,9.82987213134766,1.08018839359283,-6.81573247909546,9.86497783660889,1.13696205615997,-6.40095853805542,10.0002975463867,1.00192606449127,-7.064133644104,9.75224018096924,0.986794710159302,-7.14741086959839,9.73038768768311,1.15039360523224,-7.06851673126221,9.70468997955322,1.242804646492,-6.77705955505371,9.76342964172363,1.29554378986359,-6.37553215026855,9.8782320022583,1.21952426433563,-7.11419820785522,9.5341968536377,1.1988388299942,-6.99214124679565,9.69289112091064,1.18934226036072,-7.06153774261475,9.66951465606689,1.42601370811462,-6.76460075378418,9.48012828826904,1.50401067733765,-6.36254501342773,9.59430027008057,1.4844001531601,-6.9698486328125,9.3439998626709,1.36046659946442,-6.99876499176025,9.4068775177002,1.35410928726196,-7.0760440826416,9.39737033843994,1.53794896602631,-6.70881605148315,9.35655307769775,1.60072219371796,-6.33999300003052,9.43846797943115,1.50383114814758,-6.91307401657104,9.30345630645752,1.49801135063171,-6.98023080825806,9.28411102294922,1.49872827529907,-7.05339574813843,9.12282371520996,1.62149381637573,-6.66217374801636,8.95888519287109,1.63322627544403,-6.299156665802,9.01431274414063,1.58549821376801,-6.92722463607788,8.93971920013428,1.5829895734787,-7.01794290542603,8.94553852081299,1.73011028766632,-6.86910438537598,8.85355377197266,1.79628789424896,-6.65034961700439,8.81095504760742,1.81464350223541,-6.28750562667847,8.87030506134033,1.78939270973206,-7.02358531951904,8.59120464324951,1.79754233360291,-6.8348913192749,8.76606750488281,1.80318331718445,-6.89400196075439,8.74932479858398,1.79762864112854,-6.60208225250244,8.37782001495361,1.77560245990753,-6.23288440704346,8.40968608856201, +1.99794578552246,-6.86240339279175,8.13290500640869,1.85279190540314,-6.89444351196289,8.36517333984375,1.89201009273529,-6.99062204360962,8.37190818786621,1.96686804294586,-6.57108974456787,8.01398849487305,2.00573706626892,-6.20816898345947,8.03296852111816,1.99391138553619,-6.80095672607422,7.97969150543213,2.01987886428833,-6.87769746780396,7.96760082244873,2.06071281433105,-7.00037908554077,7.77534580230713,2.13772654533386,-6.50797080993652,7.53366374969482,2.14578366279602,-6.15605688095093,7.57673358917236,2.14452934265137,-6.85262680053711,7.50447082519531,2.17211008071899,-6.97485637664795,7.50644207000732,2.31556105613708,-6.82450819015503,7.26233863830566,0.105662889778614,-6.80410099029541,10.2104644775391,0.0978723019361496,-6.43105792999268,10.3383321762085,2.50709867477417,-5.86833810806274,6.3996639251709,2.50987887382507,-5.92565107345581,6.29676532745361,2.40456748008728,-5.94266605377197,6.49949836730957,2.45802927017212,-5.93057250976563,6.38425254821777,0.781194806098938,-6.24568891525269,10.2016839981079,0.777883648872375,-6.30363655090332,10.1794786453247,1.16480815410614,-6.2124662399292,10.0869808197021,1.14815723896027,-6.2780179977417,10.0487241744995,0.572641491889954,-6.23879718780518,10.3335876464844,0.567272663116455,-6.30363702774048,10.2942733764648,1.35580837726593,-6.20547771453857,9.93204593658447,1.32303762435913,-6.2613582611084,9.9106616973877,1.6168349981308,-6.17772483825684,9.67952442169189,1.55335175991058,-6.24299716949463,9.64039707183838,1.67691993713379,-6.18300247192383,9.48350811004639,1.63590753078461,-6.23305749893188,9.46499156951904,1.69680273532867,-6.11638402938843,9.08173656463623,1.65498018264771,-6.17969560623169,9.04833507537842,1.83201766014099,-6.14324331283569,8.8785400390625,1.81885135173798,-6.18694400787354,8.8777551651001,1.84822380542755,-6.06140661239624,8.42231464385986,1.79637432098389,-6.11755657196045,8.41649436950684,2.07539892196655,-6.06149339675903,8.03717517852783,2.03474426269531,-6.1079626083374,8.03288269042969,2.22727108001709,-5.99443292617798,7.60360717773438, +2.17336392402649,-6.04966926574707,7.59231567382813,2.44549369812012,-5.90433883666992,6.64591026306152,2.38388824462891,-5.95976734161377,6.63937187194824,0.0438787862658501,-6.22921276092529,10.4868879318237,0.0839026868343353,-6.22965478897095,10.4674558639526,0.0419944599270821,-6.22895336151123,10.4618139266968,0.195744693279266,-6.2298378944397,10.4696063995361,0.34752431511879,-6.22670364379883,10.51149559021,0.467429012060165,-6.22895336151123,10.4358282089233,0.322452157735825,-6.23216438293457,10.4620876312256,0.625028491020203,-6.20996761322021,10.416953086853,0.683953046798706,-6.20208501815796,10.313515663147,0.592252254486084,-6.21256303787231,10.3785429000854,0.744841337203979,-6.21792697906494,10.282904624939,0.757198095321655,-6.23126935958862,10.2328481674194,0.729796290397644,-6.21658134460449,10.2640800476074,0.810653686523438,-6.21784973144531,10.2412633895874,0.859098792076111,-6.20547771453857,10.2188787460327,0.793823838233948,-6.22141599655151,10.2225303649902,1.01097095012665,-6.19285583496094,10.2404594421387,1.09926104545593,-6.19823932647705,10.1786594390869,0.972553610801697,-6.20191144943237,10.2077751159668,1.25319075584412,-6.17656183242798,10.1503591537476,1.27799701690674,-6.17262029647827,10.0564403533936,1.2042076587677,-6.1820216178894,10.1210737228394,1.34793078899384,-6.18927001953125,10.0207853317261,1.33906483650208,-6.20271873474121,9.97173500061035,1.31086027622223,-6.18935632705688,10.0061178207397,1.4452657699585,-6.18220472335815,9.97682189941406,1.47812914848328,-6.15622997283936,9.93132781982422,1.39870572090149,-6.18300247192383,9.95498466491699,1.64889490604401,-6.14324331283569,9.91352844238281,1.64486682415009,-6.14781856536865,9.80043125152588,1.56543636322021,-6.14827060699463,9.87600517272949,1.78768718242645,-6.13457202911377,9.7476749420166,1.73271214962006,-6.14602088928223,9.63880348205566,1.70011401176453,-6.14352178573608,9.7160587310791,1.79413771629333,-6.16115188598633,9.59803867340088,1.74023056030273,-6.18193578720093,9.54200649261475,1.74390089511871,-6.16599702835083,9.58452033996582, +1.78554332256317,-6.17782068252563,9.51601314544678,1.71739494800568,-6.15121221542358,9.43668270111084,1.72813892364502,-6.17243766784668,9.49973964691162,1.8081066608429,-6.14450216293335,9.36407279968262,1.73136460781097,-6.11700916290283,9.21336841583252,1.71721601486206,-6.13196659088135,9.33166027069092,1.84320914745331,-6.12175798416138,9.13893699645996,1.80425798892975,-6.11468267440796,9.0272741317749,1.76324570178986,-6.10887670516968,9.11063957214355,1.89049053192139,-6.14746284484863,8.97963809967041,1.87195539474487,-6.15909481048584,8.92288208007813,1.84544742107391,-6.14182996749878,8.96747875213623,1.91726171970367,-6.14074373245239,8.89591503143311,1.8570898771286,-6.10187768936157,8.82884120941162,1.86863970756531,-6.13528299331665,8.88534927368164,1.95468997955322,-6.10743474960327,8.75022220611572,1.88314402103424,-6.08369922637939,8.59228038787842,1.85896599292755,-6.09068870544434,8.72738361358643,2.04791140556335,-6.07940196990967,8.45150852203369,2.00743627548218,-6.05047702789307,8.28932666778564,1.93848407268524,-6.06310796737671,8.43449211120605,2.14327502250671,-6.07304811477661,8.20623397827148,2.11999487876892,-6.07805633544922,8.12143707275391,2.07262516021729,-6.06723213195801,8.19200134277344,2.20622706413269,-6.05029392242432,8.08364963531494,2.14945340156555,-6.01322650909424,7.98183536529541,2.13584232330322,-6.04769849777222,8.05660629272461,2.29048848152161,-6.02075338363647,7.9050989151001,2.24804282188416,-6.01224565505981,7.75725555419922,2.18992829322815,-6.01125574111938,7.88128185272217,2.41889500617981,-5.9938850402832,7.6190881729126,2.38084244728088,-5.96514177322388,7.47053241729736,2.31475782394409,-5.98600196838379,7.6117467880249,2.52285957336426,-5.98314714431763,7.36853885650635,2.47602677345276,-5.99630689620972,7.2690544128418,2.43725824356079,-5.98224306106567,7.35904884338379,2.49474143981934,-5.93021726608276,7.09802150726318,2.63210701942444,-5.93228387832642,6.96245002746582,2.53038549423218,-5.92216110229492,6.79795360565186,2.51086115837097,-5.92457437515259,6.95734596252441, +2.66631054878235,-5.90263748168945,6.64742851257324,2.56154274940491,-5.86414670944214,6.51418495178223,2.54614043235779,-5.89547538757324,6.64760875701904,2.66505694389343,-5.84783363342285,6.40708827972412,2.59503674507141,-5.84675693511963,6.32318496704102,2.58007788658142,-5.8476505279541,6.40574741363525,0.233266234397888,-6.23064517974854,10.5518960952759,0.134942770004272,-6.22751140594482,10.5185022354126,0.0900810956954956,-6.23288536071777,10.5337944030762,0.149363458156586,-6.25876331329346,10.5631847381592,0.14372244477272,-6.23216438293457,10.5503597259521,0.551332473754883,-6.22544431686401,10.4952144622803,0.38737553358078,-6.22929906845093,10.5335216522217,0.740633606910706,-6.21238040924072,10.3680448532104,0.670248746871948,-6.21622562408447,10.43665599823,0.772507786750793,-6.23377895355225,10.2550535202026,0.759348392486572,-6.22446393966675,10.2997426986694,0.918918609619141,-6.2045841217041,10.2725887298584,0.826507568359375,-6.22169542312622,10.2572040557861,1.18316376209259,-6.19563436508179,10.2364139556885,1.04723882675171,-6.19886445999146,10.2674856185913,1.37202072143555,-6.18248319625854,10.0996780395508,1.29850351810455,-6.1861457824707,10.1740169525146,1.39888453483582,-6.20691967010498,9.99188232421875,1.38258588314056,-6.19671058654785,10.0327844619751,1.61191093921661,-6.16840982437134,9.99490451812744,1.48932433128357,-6.19106817245483,9.99510860443115,1.81338930130005,-6.15238475799561,9.86229133605957,1.72464871406555,-6.15784502029419,9.94361686706543,1.87329602241516,-6.14629030227661,9.68339347839355,1.8639851808548,-6.14512729644775,9.77184963226318,1.81097400188446,-6.18309879302979,9.55525875091553,1.83810353279114,-6.16609287261963,9.60799789428711,1.89084649085999,-6.15775871276855,9.49910831451416,1.84455347061157,-6.17584085464478,9.53473377227783,1.90446031093597,-6.12937116622925,9.27835845947266,1.90195143222809,-6.14217567443848,9.4006986618042,1.94269168376923,-6.12221908569336,9.07645416259766,1.92505240440369,-6.11978721618652,9.17083549499512,1.93472158908844,-6.16044044494629,8.93354034423828, +1.93633437156677,-6.14557886123657,8.99342727661133,2.01182222366333,-6.1058292388916,8.87092876434326,1.96642315387726,-6.1373405456543,8.90792942047119,2.09608435630798,-6.08817911148071,8.63929176330566,2.05131530761719,-6.09535074234009,8.77692317962646,2.20658564567566,-6.0531587600708,8.31780338287354,2.15760231018066,-6.06668424606323,8.47165584564209,2.22270464897156,-6.08164215087891,8.15976810455322,2.21383881568909,-6.0700101852417,8.22128772735596,2.34287595748901,-6.01905155181885,8.04416370391846,2.27616095542908,-6.05281257629395,8.11069297790527,2.44325709342957,-6.01492738723755,7.78591156005859,2.3908703327179,-6.01591777801514,7.93025779724121,2.59109473228455,-5.96631479263306,7.48289012908936,2.52303886413574,-5.98754024505615,7.62777423858643,2.62315487861633,-5.99871969223022,7.29448509216309,2.60846829414368,-5.9840407371521,7.37803554534912,2.7421567440033,-5.93156290054321,7.11235046386719,2.75532388687134,-5.92295932769775,6.80646228790283,2.75335311889648,-5.92565107345581,6.96889972686768,2.80027174949646,-5.86385822296143,6.51078033447266,2.78648090362549,-5.89556217193604,6.64868259429932,2.69102430343628,-5.84954452514648,6.33428764343262,2.75004124641418,-5.84792947769165,6.40842819213867,0.165927410125732,-7.23562049865723,10.1930894851685,0.149091303348541,-7.16085004806519,10.125391960144,2.34242510795593,-6.93377017974854,6.08328819274902,2.29040288925171,-7.03887891769409,6.71924686431885,2.33060479164124,-6.98649787902832,6.79007720947266,2.19861555099487,-7.10102701187134,7.20565605163574,2.27347278594971,-6.99115991592407,7.24792385101318,2.0897262096405,-7.14284420013428,7.74758625030518,2.07898235321045,-7.09484672546387,7.77821254730225,1.93472158908844,-7.17840337753296,8.20722484588623,1.964186668396,-7.05759620666504,8.17570304870605,1.78195989131927,-7.20929002761841,8.55725765228271,1.78016829490662,-7.14445924758911,8.57865142822266,1.63250994682312,-7.22478675842285,8.83645343780518,1.66922199726105,-7.09403944015503,8.83162117004395,1.51206719875336,-7.25120306015015,9.05836296081543, +1.50203943252563,-7.1843056678772,9.08673572540283,1.37649321556091,-7.26937198638916,9.30130577087402,1.41831564903259,-7.16130208969116,9.30354309082031,1.23545813560486,-7.29149103164673,9.48091411590576,1.2262407541275,-7.23266935348511,9.50392913818359,1.0292409658432,-7.30465173721313,9.66450023651123,1.08278274536133,-7.22182607650757,9.67065906524658,0.836356401443481,-7.31888818740845,9.7911205291748,0.83438503742218,-7.26839113235474,9.80768489837646,0.558314085006714,-7.32435846328735,9.92363166809082,0.60908830165863,-7.23346710205078,9.94460105895996,0.206309780478477,-7.29454851150513,10.0701446533203,0.293079674243927,-7.3436131477356,10.0228624343872,0.281173974275589,-7.30287313461304,10.0392532348633,0.148467600345612,-7.08249473571777,10.2446489334106,0.162436589598656,-7.16917514801025,10.2060585021973,0.134497985243797,-7.0667290687561,10.1153650283813,2.13969135284424,-7.10147905349731,6.36258411407471,2.13611435890198,-7.12386798858643,6.6185941696167,2.22378015518188,-7.07299566268921,6.55035972595215,2.01719808578491,-7.2568359375,7.7787504196167,2.06635332107544,-7.2321400642395,7.44062232971191,2.08910250663757,-7.19586038589478,7.64684677124023,1.72930705547333,-7.30331468582153,8.57641506195068,1.8149094581604,-7.29024124145508,8.40047740936279,1.78894138336182,-7.26005601882935,8.50236892700195,1.46899735927582,-7.3290114402771,9.07851123809814,1.54126024246216,-7.31915807723999,8.94482231140137,1.52218747138977,-7.2953462600708,9.01080226898193,1.16319525241852,-7.35113048553467,9.49515533447266,1.25767004489899,-7.34387302398682,9.38859462738037,1.24029588699341,-7.3268575668335,9.44224834442139,0.744124412536621,-7.36573314666748,9.79344940185547,0.872888803482056,-7.35910940170288,9.71965885162354,0.843968033790588,-7.34700632095337,9.76065540313721,0.223418071866035,-7.38274812698364,10.0065698623657,0.379491716623306,-7.37575912475586,9.95256900787354,0.325139760971069,-7.36581945419312,9.9915246963501,1.97672307491302,-7.16308927536011,6.12269496917725,1.98236405849457,-7.20347356796265,6.77493953704834, +2.01092624664307,-7.22970771789551,7.09336376190186,1.93624818325043,-7.28504991531372,8.06047248840332,1.97519659996033,-7.27966690063477,7.91190147399902,1.87338423728943,-7.29354810714722,8.23821067810059,1.62534248828888,-7.32257032394409,8.76617813110352,1.67522144317627,-7.31969594955444,8.66785430908203,1.57815182209015,-7.32533884048462,8.86082649230957,1.36324107646942,-7.34514188766479,9.24236392974854,1.41706144809723,-7.34227705001831,9.15872573852539,1.30432343482971,-7.34781408309937,9.32044792175293,1.01902747154236,-7.35945558547974,9.6161470413208,1.09174203872681,-7.35900402069092,9.555344581604,0.938708066940308,-7.3613395690918,9.67119693756104,0.550350308418274,-7.37924861907959,9.87285614013672,0.645979881286621,-7.37549018859863,9.83195400238037,0.335260063409805,-7.41641283035278,9.91001987457275,0.458025634288788,-7.3797869682312,9.91299057006836,0.162795066833496,-7.43011140823364,9.96349334716797,0.216881200671196,-7.45088529586792,9.91207599639893,0.110229127109051,-7.5688271522522,9.7474946975708,0.0892778486013412,-7.54007482528687,9.80938339233398,0.14954237639904,-7.62702465057373,9.61532020568848,0.130469769239426,-7.59855079650879,9.68097686767578,0.18437696993351,-7.67780113220215,9.49569320678711,0.167181745171547,-7.65218210220337,9.55615329742432,0.220099851489067,-7.73833417892456,9.34231853485107,0.202374175190926,-7.70769739151001,9.42640113830566,0.253414273262024,-7.79044628143311,9.11682415008545,0.23657813668251,-7.7660870552063,9.23716640472412,0.291652739048004,-7.83047485351563,8.84130954742432,0.27186319231987,-7.81076860427856,8.98708915710449,0.332930982112885,-7.86887836456299,8.48186206817627,0.312331855297089,-7.85285425186157,8.67323112487793,0.36874708533287,-7.85590076446533,8.03081893920898,0.378867417573929,-7.82931137084961,7.77847814559937,0.0538132563233376,-8.8172492980957,9.72446441650391,0.0537269487977028,-7.3923225402832,10.1851196289063,0.149184554815292,-6.32269954681396,10.5535087585449,-7.82310962677002e-08,-6.23064517974854,10.4912796020508,0.043248787522316,-6.23172187805176,10.5072135925293, +0.115783207118511,-6.25384140014648,10.4205369949341,0.125724613666534,-6.22948217391968,10.4706811904907,0.1051255017519,-6.31642246246338,10.3813161849976,0.0363534390926361,-6.79836177825928,10.2338123321533,0.149004995822906,-7.34889078140259,10.0634117126465,0.148826062679291,-7.28389692306519,10.0914363861084,0.146941125392914,-7.39689826965332,10.01731300354,-0.164673879742622,-8.81348133087158,9.70306301116943,-0.149271011352539,-6.32269954681396,10.5535087585449,-0.0434285029768944,-6.23172187805176,10.5072135925293,-0.115870922803879,-6.25384140014648,10.4205369949341,-0.125811710953712,-6.22948217391968,10.4706811904907,-0.105219528079033,-6.31642246246338,10.3813161849976,-0.0365331545472145,-6.79836177825928,10.2338123321533,-0.149092078208923,-7.34889078140259,10.0634117126465,-0.148912534117699,-7.28389692306519,10.0914363861084,-0.147034525871277,-7.39689826965332,10.01731300354,-2.77090001106262,-5.93585968017578,6.23632144927979,-2.53065133094788,-5.92555475234985,6.19504356384277,-2.61150860786438,-5.85661029815674,6.21716213226318,-2.69971227645874,-5.86799192428589,6.23149013519287,2.77081274986267,-5.93585968017578,6.23632144927979,2.5305643081665,-5.92555475234985,6.19504356384277,2.61142086982727,-5.85661029815674,6.21716213226318,2.69962477684021,-5.86799192428589,6.23149013519287,-2.56190180778503,-5.86951112747192,6.11257362365723,-2.40618014335632,-6.77310705184937,6.02759647369385,-1.96901953220367,-7.15341806411743,5.89407920837402,1.96293306350708,-7.15403366088867,5.90196418762207,2.34483957290649,-6.9509482383728,5.9753885269165,2.5619010925293,-5.86951112747192,6.11257362365723,2.40456748008728,-6.77105045318604,6.10719871520996,2.40609335899353,-6.77310705184937,6.02759647369385,-2.34251832962036,-6.93377017974854,6.08328819274902,-2.3449342250824,-6.9509482383728,5.9753885269165,-0.804031252861023,-7.41184568405151,6.61384916305542,-7.82310962677002e-08,-7.87810707092285,8.26159286499023,-0.352721333503723,-7.8695125579834,8.26649761199951,0.352540999650955,-7.8695125579834,8.26649761199951, +-8.31105727161315e-30,-2.81674838066101,12.5612058639526,-8.37546759119075e-30,-2.38239884376526,12.3574085235596,-2.18278728425503e-11,-6.2010498046875,11.0751152038574,-7.27595761418343e-12,-5.60652589797974,11.52916431427,-7.27595761418343e-11,-7.09524393081665,11.2427158355713,-2.18278728425503e-11,-6.19437408447266,11.0349063873291,-2.18278728425503e-11,-5.97632884979248,11.3584976196289,1.45519152283669e-11,-6.70365142822266,11.2656488418579,-1.45519152283669e-11,-6.13765716552734,11.1871061325073,-2.18278728425503e-11,-6.3941650390625,11.1589450836182,-7.98737690875265e-30,-4.88956451416016,11.0227117538452,2.36468622460961e-11,-7.69744729995728,10.9385194778442,3.63797880709171e-12,-5.45220470428467,11.5023908615112,1.01863406598568e-10,-7.37440633773804,11.1156044006348,-8.16542612284571e-30,-4.15524578094482,11.0425729751587,-6.55917647510245e-30,-8.47935009002686,10.7843370437622,-8.83524198801206e-30,2.34988594055176,10.2725324630737,-8.83524198801206e-30,1.66520273685455,10.0522737503052,-8.24711639745949e-30,-0.163602992892265,11.0351285934448,-8.83524198801206e-30,0.474852353334427,10.5198411941528,-8.83524198801206e-30,0.802389979362488,10.2217044830322,-8.83524198801206e-30,1.2792751789093,9.98663520812988,-5.81988193487595e-30,-12.0054492950439,8.21793937683105,-6.01503656660399e-30,-11.1364364624023,10.3391914367676,-5.88438403705246e-30,-11.7194204330444,9.48415756225586,-6.42511369537987e-30,-9.18563079833984,10.8848876953125,-8.17158533708583e-30,-3.9726836681366,11.934907913208,-8.17582012601433e-30,-4.04417276382446,11.493257522583,-8.17973818974494e-30,-4.06679534912109,11.2233362197876,-8.17336983154992e-30,-4.11167764663696,11.1055355072021,-8.19365152896037e-30,-3.74346613883972,12.2974214553833,-8.23624241643755e-30,-3.372403383255,12.5569562911987,-8.47262849993593e-30,-1.6922470331192,11.8976850509644,-8.52086176029707e-30,-1.26987147331238,11.653133392334,-8.56136647443996e-30,-0.859426736831665,11.4177484512329,-8.43439352432516e-30,-1.99132990837097,12.0721788406372,-8.40751175527326e-30,-2.17534470558167,12.2047719955444, +-8.41188497041651e-30,-0.525843679904938,11.2248640060425,-6.28370304152962e-30,-9.86643695831299,10.9053468704224,-6.15488616395634e-30,-10.4730615615845,10.7793226242065,-8.83524198801206e-30,3.39228105545044,10.3558158874512,-8.83524198801206e-30,4.79106760025024,9.94545650482178,-8.83524198801206e-30,9.10887050628662,8.12166786193848,-8.83524198801206e-30,7.12824249267578,9.19908428192139,-8.83524198801206e-30,10.9990186691284,6.47524547576904,-5.55030101938493e-30,-3.85953783988953,-9.64415073394775,-6.0225476933871e-30,-1.82490658760071,-10.4179039001465,-6.26931423835917e-30,0.291884422302246,-11.1575794219971,-8.83524198801206e-30,2.77468633651733,-11.4015102386475,-8.83524198801206e-30,5.38569402694702,-11.0212116241455,-8.83524198801206e-30,8.13572788238525,-10.2016525268555,-8.83524198801206e-30,10.4706792831421,-8.19120693206787,-8.83524198801206e-30,12.1643362045288,-5.33549213409424,-8.83524198801206e-30,12.9594602584839,-2.30990600585938,-8.83524198801206e-30,13.02467918396,0.84748101234436,-8.83524198801206e-30,12.5013542175293,3.92702579498291,-5.13364413150998e-30,-5.28219318389893,-9.34640789031982,-9.83141480408512e-17,-13.1809892654419,-11.7206726074219,9.68954234407374e-16,-23.2204532623291,2.11477041244507,-4.3854222289065e-30,-7.43977499008179,-9.63141536712646,-4.90011722643099e-30,-12.9335451126099,4.48895645141602,-4.79177802468632e-30,-6.31569051742554,-9.41757106781006,-5.93852523798128e-30,-11.8030519485474,6.5165638923645,-3.71379779515175e-30,-9.17730903625488,-10.1177568435669,-3.29759640775213e-16,-15.377347946167,2.75541257858276,-3.2976028295369e-30,-10.2989158630371,-10.4441614151001,1.18676875679382e-15,-17.5709362030029,1.90694046020508,-2.87060008674194e-30,-11.7145204544067,-10.965521812439,9.17966980268283e-16,-20.5388870239258,1.27679347991943,-4.0890554647026e-30,-8.20370101928711,-9.85538768768311,-3.78726853684e-16,-14.2904253005981,3.88498520851135,-2.00250458717346,0.522028923034668,8.87062835693359,-2.1801233291626,0.847802996635437,9.00672626495361,-2.4537034034729,1.07600772380829,9.15024280548096, +-2.80427145957947,1.31544554233551,9.17289161682129,-3.24501895904541,1.4427592754364,9.18281078338623,-3.67122340202332,1.44906437397003,9.17110157012939,-4.26905584335327,1.28526997566223,9.03241920471191,-4.46412134170532,1.20914542675018,8.91198825836182,-4.66720199584961,1.07534503936768,8.74218654632568,-4.81066989898682,0.889254570007324,8.55978107452393,-4.95971488952637,0.742477357387543,8.36825370788574,-4.02485704421997,1.38277077674866,9.13456344604492,-2.3384485244751,0.347775429487228,8.93466663360596,-2.6356348991394,0.26021009683609,9.0864143371582,-2.09942173957825,0.419601500034332,8.84390926361084,-2.05044317245483,0.65114438533783,8.8955192565918,-2.98736834526062,0.195408225059509,9.16323280334473,-3.43918704986572,0.138988763093948,9.19739627838135,-3.95783829689026,0.167365923523903,9.12354564666748,-4.31833744049072,0.267997473478317,8.92407608032227,-4.50838804244995,0.381670862436295,8.79480457305908,-4.70505714416504,0.494918555021286,8.61862087249756,-4.82556009292603,0.604517161846161,8.47788906097412,-4.90757703781128,0.660237073898315,8.40587043762207,-4.87714147567749,0.805868089199066,8.46089935302734,-0.612867474555969,-2.84146428108215,12.3725204467773,-0.573357403278351,-2.41796708106995,12.1977033615112,-0.307788699865341,-6.17764711380005,11.0916528701782,-0.27788320183754,-5.46316385269165,11.4983806610107,-2.88388872146606,-6.38666200637817,9.59838581085205,-3.01232504844666,-6.26241874694824,9.62956809997559,-2.68976354598999,-6.14416790008545,9.95242214202881,-2.53629112243652,-6.35069847106934,9.90819454193115,-2.03534698486328,-5.8695707321167,10.6358270645142,-1.89314746856689,-6.30770111083984,10.4927043914795,-1.58972334861755,-5.65780639648438,10.9632539749146,-1.43242263793945,-6.25313091278076,10.8209323883057,-1.16811096668243,-5.45607137680054,11.2142038345337,-1.03693842887878,-6.18306255340576,10.9778051376343,-0.696184992790222,-5.38955974578857,11.4173488616943,-0.636731863021851,-6.1703519821167,11.0436429977417,-2.22610592842102,-6.33429622650146,10.1983613967896, +-2.38717675209045,-6.02569723129272,10.3152656555176,-3.06913900375366,-6.31856966018677,9.58637714385986,-2.92493748664856,-6.38203716278076,9.58940601348877,-3.10725498199463,-6.40046215057373,9.54837131500244,-2.95995092391968,-6.39087057113647,9.57688808441162,-3.04447555541992,-6.47598838806152,9.52670001983643,-2.92498874664307,-6.40054750442505,9.57881355285645,-2.94016790390015,-6.52099895477295,9.5333776473999,-2.87621808052063,-6.40796041488647,9.5903263092041,-2.52313899993896,-6.33868217468262,9.84605693817139,-2.69279074668884,-6.66017436981201,9.66310024261475,-2.22724580764771,-6.3073582649231,10.142279624939,-2.39465260505676,-6.80120801925659,9.95035266876221,-2.05429458618164,-6.88094758987427,10.3412046432495,-1.88881325721741,-6.29249095916748,10.4364519119263,-1.663982629776,-6.92830801010132,10.7327871322632,-1.43046796321869,-6.24330425262451,10.7743721008301,-1.22958207130432,-6.96082162857056,11.0217695236206,-1.03365290164948,-6.17286205291748,10.9232835769653,-0.792382597923279,-7.00890779495239,11.1752309799194,-0.638855695724487,-6.1550030708313,10.9844455718994,-0.361502468585968,-7.04544830322266,11.2296466827393,-0.300843894481659,-6.17233896255493,11.0172481536865,-0.313439071178436,-5.90708303451538,11.3804988861084,-0.687595367431641,-5.85640096664429,11.3123264312744,-1.12153732776642,-5.87813711166382,11.1626853942871,-1.52839398384094,-5.99826812744141,10.9354515075684,-1.97712707519531,-6.12062072753906,10.5866203308105,-2.32052683830261,-6.21050262451172,10.2774066925049,-2.62174940109253,-6.2708568572998,9.94662857055664,-2.94667792320251,-6.33436727523804,9.62025833129883,-2.99289226531982,-6.35576152801514,9.59438991546631,-3.02804565429688,-6.39558076858521,9.56442451477051,-2.97962355613708,-6.43441724777222,9.552321434021,-2.90504598617554,-6.45967817306519,9.56263732910156,-2.60630321502686,-6.51345777511597,9.78423309326172,-2.33382964134216,-6.57768774032593,10.0790071487427,-1.99195289611816,-6.60659170150757,10.4411182403564,-1.55247271060944,-6.60837554931641,10.8338174819946, +-1.12587714195251,-6.59154176712036,11.0643281936646,-0.736367344856262,-6.60497903823853,11.174243927002,-0.350211203098297,-6.63875246047974,11.2318592071533,-0.312198489904404,-6.09885263442993,11.2082319259644,-0.65849494934082,-6.07557821273804,11.1555261611938,-1.07063388824463,-6.08668661117554,11.0576696395874,-1.46790814399719,-6.16639995574951,10.865086555481,-1.92485749721527,-6.24488496780396,10.5290174484253,-2.26285886764526,-6.29610013961792,10.2306890487671,-2.56784820556641,-6.32526683807373,9.92364025115967,-2.90726232528687,-6.37118482589722,9.60893154144287,-2.94914817810059,-6.37407970428467,9.59291076660156,-2.98377060890198,-6.39226961135864,9.57207298278809,-2.94413948059082,-6.41239309310913,9.56943416595459,-2.88625264167786,-6.42605400085449,9.58045768737793,-2.55185842514038,-6.43077516555786,9.8532247543335,-2.26914000511169,-6.42899513244629,10.1525249481201,-1.9272301197052,-6.43308687210083,10.4699821472168,-1.47508871555328,-6.40141725540161,10.8274221420288,-1.06835675239563,-6.34831094741821,11.0089550018311,-0.674103736877441,-6.3411545753479,11.0871620178223,-0.31877863407135,-6.36249542236328,11.1326150894165,-0.284675300121307,-4.78527355194092,11.064474105835,-0.69200599193573,-4.67096376419067,11.0971984863281,-1.19090712070465,-4.65360689163208,10.8652582168579,-1.60348856449127,-4.75072002410889,10.6199941635132,-2.10041379928589,-4.94967794418335,10.3427619934082,-2.44613099098206,-5.14300584793091,10.1451902389526,-2.8578200340271,-5.40958213806152,9.8643798828125,-3.37556910514832,-5.73150157928467,9.50794124603271,-3.58002686500549,-6.09771537780762,9.38387775421143,-3.58722949028015,-6.43206739425659,9.34090614318848,-3.49604988098145,-6.72075796127319,9.3155574798584,-3.29658842086792,-7.00609397888184,9.28319644927979,-2.9785168170929,-7.27044200897217,9.33163547515869,-2.63768124580383,-7.51720857620239,9.58832359313965,-0.380467474460602,-7.70760488510132,10.9089078903198,-0.809084534645081,-7.71715402603149,10.8271722793579,-1.23778057098389,-7.68429851531982,10.6856832504272, +-1.71254646778107,-7.66423940658569,10.3976364135742,-2.19258213043213,-7.62983465194702,10.0229711532593,-0.276628792285919,-5.35581827163696,11.4545192718506,-0.705096006393433,-5.26781606674194,11.3948183059692,-1.17839825153351,-5.33313131332397,11.1846256256104,-1.6078040599823,-5.53671407699585,10.9352722167969,-2.04950261116028,-5.74241161346436,10.6099004745483,-2.40413236618042,-5.91182565689087,10.2938222885132,-2.71651220321655,-6.05286550521851,9.95620918273926,-3.07438540458679,-6.19183778762817,9.62782001495361,-3.16906523704529,-6.29155683517456,9.56507015228271,-3.23088598251343,-6.41314077377319,9.5117359161377,-3.1863808631897,-6.56011343002319,9.4727258682251,-3.04502511024475,-6.65838003158569,9.46447277069092,-2.81204962730408,-6.82672548294067,9.53612422943115,-2.47520756721497,-7.02757406234741,9.79769992828369,-2.10015106201172,-7.16013097763062,10.2035999298096,-1.69221985340118,-7.23757028579712,10.5777711868286,-1.24376213550568,-7.28252696990967,10.8759183883667,-0.79730498790741,-7.29007863998413,11.0503644943237,-0.369253575801849,-7.32965230941772,11.1096782684326,-0.276756882667542,-4.0905499458313,11.0596790313721,-0.67881166934967,-4.02736043930054,10.9155769348145,-1.11051142215729,-4.01060152053833,10.6648254394531,-1.64762842655182,-4.08224010467529,10.4350128173828,-2.09704518318176,-4.20024442672729,10.1917724609375,-2.41615009307861,-4.1494517326355,9.9251651763916,-3.01657938957214,-4.68970441818237,9.58867073059082,-3.59471702575684,-5.20025300979614,9.29252243041992,-3.21058988571167,-7.73844718933105,9.12869644165039,-3.61845064163208,-7.32958364486694,9.03243350982666,-3.94498634338379,-6.91380882263184,8.91929626464844,-4.10075044631958,-6.44372081756592,8.84724903106689,-3.90626168251038,-5.81220817565918,9.08544826507568,-0.444652616977692,-8.46575260162354,10.7486915588379,-0.915312349796295,-8.41538047790527,10.604640007019,-1.30731439590454,-8.41347980499268,10.4629573822021,-1.7650842666626,-8.43077182769775,10.2372455596924,-2.27534437179565,-8.34659004211426,9.86133289337158, +-2.79551029205322,-8.0594596862793,9.42021083831787,-0.425872296094894,2.32587480545044,10.2930870056152,-0.43096199631691,1.55000650882721,10.0067090988159,-1.04734790325165,1.67354381084442,9.85422611236572,-0.999846398830414,2.54404664039612,10.276873588562,-1.76966321468353,2.1059410572052,9.88949108123779,-1.53380644321442,2.77825474739075,10.2362470626831,-2.76184272766113,2.4165780544281,9.69988346099854,-2.67940044403076,3.13047909736633,9.95404052734375,-3.47613048553467,2.64268159866333,9.45586490631104,-3.44323205947876,3.38297891616821,9.62023067474365,-4.33117389678955,3.50773024559021,9.10658740997314,-4.22233247756958,2.80594253540039,9.07201480865479,-4.98590421676636,2.75339007377625,8.45626640319824,-5.24787616729736,3.33925271034241,8.3605260848999,-5.53613471984863,2.60515975952148,7.89962482452393,-5.91983318328857,3.1857442855835,7.45482158660889,-6.33480310440063,1.57071208953857,6.57897281646729,-6.65199041366577,1.82838404178619,5.99423789978027,-6.63125801086426,0.622930347919464,6.3899941444397,-6.9053897857666,0.61238819360733,5.7659649848938,-6.39516115188599,-0.506458342075348,7.06213998794556,-6.64986753463745,-0.835367441177368,6.62848615646362,-5.98848962783813,-1.08541309833527,7.54887008666992,-6.17566585540771,-1.47442102432251,7.3322925567627,-4.84235572814941,-1.58707356452942,8.6058292388916,-4.92961406707764,-1.98827040195465,8.5404806137085,-3.64678597450256,-1.65746462345123,9.26278972625732,-3.70411777496338,-2.01732301712036,9.30448246002197,-2.15958499908447,-1.37878262996674,9.64071941375732,-1.9706484079361,-1.79273068904877,9.81274509429932,-1.53634750843048,-0.979715883731842,9.77910423278809,-1.34802424907684,-1.28716385364532,9.99973106384277,-1.02397525310516,-0.224725618958473,9.89264297485352,-0.837064206600189,-0.76677805185318,10.2936544418335,-0.467166692018509,0.416704267263412,10.3221864700317,-0.487908393144608,-0.270563900470734,10.7006483078003,-6.32265472412109,2.55504369735718,6.62416315078735,-5.98125886917114,2.08447551727295,7.19541788101196,-6.84452104568481,1.11277878284454,5.71848392486572, +-6.53752183914185,1.05508756637573,6.37544107437134,-6.62306833267212,0.118500046432018,6.59562110900879,-6.88577032089233,-0.0171589571982622,6.05382061004639,-5.55053091049194,-1.80561172962189,8.01396942138672,-5.43741226196289,-1.40401816368103,8.1262674331665,-4.29575395584106,-2.05251741409302,8.97702884674072,-4.23330020904541,-1.66832804679871,8.98032474517822,-2.93638849258423,-1.92973792552948,9.59064674377441,-2.95425868034363,-1.56733691692352,9.50070571899414,-0.429825216531754,0.769897937774658,10.1320953369141,-0.879478275775909,0.517569661140442,9.87677955627441,-0.403805494308472,1.20479547977448,9.97864055633545,-0.9251429438591,1.07852721214294,9.79307174682617,-2.05242586135864,2.95342707633972,10.1323146820068,-2.23605561256409,2.25964021682739,9.80658435821533,-1.45362198352814,-11.7220678329468,7.7457275390625,-1.94249081611633,-10.8492479324341,9.66497802734375,-2.23401498794556,-11.4141616821289,6.82130861282349,-2.9442195892334,-10.289511680603,8.61220836639404,-3.3287296295166,-10.7363042831421,5.61752510070801,-4.08768844604492,-9.56369495391846,7.49050807952881,-4.52266502380371,-9.69620513916016,4.03538227081299,-5.25208854675293,-8.46740245819092,6.01705121994019,-5.33507013320923,-8.60435485839844,2.59424519538879,-6.02868509292603,-7.47059488296509,4.59234189987183,-6.32686614990234,-6.46139526367188,0.429285854101181,-7.02103042602539,-5.51866674423218,2.56458020210266,-6.63314819335938,-5.30487203598022,0.0010362071916461,-7.25274801254272,-4.77190494537354,1.96178865432739,-3.95017671585083,-10.2369813919067,4.8523736000061,-4.74571561813354,-8.97711849212646,6.75745153427124,-6.021080493927,-7.48551464080811,1.18661463260651,-6.66051816940308,-6.29175806045532,3.25183725357056,-1.73911499977112,-11.4775247573853,8.91175746917725,-2.71912884712219,-11.0005769729614,7.93533086776733,-3.90698981285095,-10.3431310653687,6.69309139251709,-4.62629699707031,-9.8087100982666,5.87688064575195,-5.27568769454956,-9.25722026824951,5.02403020858765,-6.11723518371582,-8.20479583740234,3.56808972358704, +-6.7800464630127,-7.01846075057983,2.29027032852173,-7.11960554122925,-6.10610914230347,1.63720464706421,-7.240159034729,-5.08808755874634,1.14679479598999,-1.94618821144104,-3.18484139442444,10.1206188201904,-1.97128963470459,-2.90788984298706,10.7209405899048,-1.94551062583923,-3.20075631141663,10.7982311248779,-2.00889849662781,-3.41766905784607,10.2430095672607,-1.7797863483429,-3.13145756721497,11.2094554901123,-1.76743566989899,-2.75292801856995,11.1367645263672,-1.35704243183136,-2.69259023666382,11.5846138000488,-1.43729317188263,-3.04925537109375,11.6452779769897,-0.957599997520447,-2.5337507724762,11.9536142349243,-1.05197191238403,-2.97319483757019,11.9926862716675,-2.02442502975464,-3.48149967193604,10.1782827377319,-1.93077278137207,-3.22494912147522,10.0023813247681,-2.49771618843079,-3.64891219139099,9.77677917480469,-3.13752794265747,-4.04087781906128,9.50779151916504,-3.86252784729004,-4.52816295623779,9.05229377746582,-4.25440549850464,-5.53818321228027,8.71383094787598,-4.41148996353149,-6.44228935241699,8.42195892333984,-4.20885419845581,-7.09721517562866,8.5288782119751,-3.84948968887329,-7.69750642776489,8.69057750701904,-3.31767225265503,-8.14998245239258,8.95892429351807,-2.86092782020569,-8.52286148071289,9.32379150390625,-2.36147665977478,-8.81789588928223,9.79014587402344,-1.83445572853088,-8.980637550354,10.2019166946411,-1.37862408161163,-9.06450653076172,10.4849948883057,-0.945417165756226,-9.10431480407715,10.6932220458984,-0.484645694494247,-9.14574718475342,10.8382930755615,-0.430151402950287,-3.78667140007019,11.3200263977051,-0.31240439414978,-3.9879150390625,11.2228012084961,-0.433737486600876,-3.95183396339417,11.0838260650635,-0.489092797040939,-3.77038264274597,11.0934047698975,-0.41869729757309,-3.78461003303528,11.4987316131592,-0.247211992740631,-4.00004863739014,11.5239992141724,-0.454335004091263,-3.75801396369934,11.6749477386475,-0.283114284276962,-3.95747375488281,11.842845916748,-0.574335277080536,-3.66264176368713,11.8285436630249,-0.421341925859451,-3.81621551513672,12.0895528793335, +-0.667752385139465,-3.55119466781616,11.8290967941284,-0.707025825977325,-3.56791067123413,12.0749969482422,-0.909563183784485,-3.39562368392944,11.6751489639282,-1.00950145721436,-3.40489506721497,11.8691806793213,-1.12229108810425,-3.39301753044128,11.4634742736816,-1.31509912014008,-3.36950826644897,11.5583591461182,-1.36684727668762,-3.45196676254272,11.1405000686646,-1.57666385173798,-3.42707967758179,11.2034111022949,-1.35198771953583,-3.51235747337341,10.7937679290771,-1.63818895816803,-3.65421390533447,10.6730480194092,-0.907981216907501,-3.52404284477234,10.6590929031372,-1.13959503173828,-3.8009729385376,10.6044645309448,-0.723991096019745,-3.83734226226807,10.8534164428711,-0.628357768058777,-3.66664671897888,10.8592538833618,-1.11344730854034,-3.48829293251038,10.6497144699097,-1.33004474639893,-3.70043134689331,10.5921859741211,-0.417708903551102,-3.86824345588684,11.3096218109131,-0.403553485870361,-3.87896728515625,11.5108289718628,-0.433234870433807,-3.84975433349609,11.7220306396484,-0.573271989822388,-3.72333216667175,11.9117679595947,-0.716645300388336,-3.58857870101929,11.9157276153564,-0.968578040599823,-3.44254612922668,11.7576866149902,-1.19751727581024,-3.4263961315155,11.5060796737671,-1.42638289928436,-3.46274399757385,11.1732931137085,-1.44592905044556,-3.57288765907288,10.760458946228,-1.18683660030365,-3.55860686302185,10.6275644302368,-0.953868925571442,-3.61475777626038,10.643669128418,-0.660096526145935,-3.72439980506897,10.8566188812256,-0.489717900753021,-3.83477926254272,11.089243888855,-0.479629516601563,-3.88807821273804,11.0792551040649,-0.687838196754456,-3.77360796928406,10.8551158905029,-0.995428740978241,-3.69183301925659,10.6374979019165,-1.24929904937744,-3.6197030544281,10.6106510162354,-1.52868103981018,-3.61772704124451,10.72838306427,-1.50280821323395,-3.4557158946991,11.1831607818604,-1.26123416423798,-3.40934896469116,11.5390434265137,-0.991897165775299,-3.44237518310547,11.806586265564,-0.728786766529083,-3.58758544921875,11.976110458374,-0.544238805770874,-3.75784301757813,11.9454545974731, +-0.409747779369354,-3.88429713249207,11.7604866027832,-0.360714197158813,-3.92862391471863,11.5188732147217,-0.38519811630249,-3.92065572738647,11.2734355926514,-0.252279996871948,-4.04671478271484,11.1392526626587,-0.633074402809143,-3.48106217384338,12.2321043014526,-1.02539217472076,-3.32593989372253,11.9404153823853,-1.0434935092926,-3.16545557975769,11.9897842407227,-0.616223990917206,-3.23225545883179,12.3577098846436,-1.40687966346741,-3.19337606430054,11.6333608627319,-1.36244785785675,-3.29978179931641,11.5985717773438,-1.64664626121521,-3.37046957015991,11.2223606109619,-1.72023391723633,-3.27146601676941,11.2224884033203,-1.41606211662292,-3.48503565788269,11.020432472229,-1.49248671531677,-3.5147180557251,10.9738712310791,-1.58364152908325,-3.53157305717468,10.9414367675781,-1.68115997314453,-3.51594638824463,10.9130373001099,-1.77041971683502,-3.4666850566864,10.8845643997192,-1.85930991172791,-3.36821532249451,10.8499345779419,-1.78209567070007,-3.66406202316284,10.5616931915283,-1.9301050901413,-3.58496809005737,10.4145889282227,-1.66880071163177,-3.78059339523315,10.5170078277588,-1.92606604099274,-3.68454837799072,10.3536720275879,-1.63955330848694,-3.87362623214722,10.4728975296021,-1.95321905612946,-3.7497034072876,10.301025390625,-2.06556057929993,-3.50481677055359,10.0877923965454,-1.99168121814728,-3.2921404838562,9.94458484649658,-2.01186370849609,-3.04351902008057,10.3697299957275,-1.99431753158569,-3.34384107589722,10.4826154708862,-1.91239500045776,-3.48304843902588,10.581241607666,-1.7989376783371,-3.5718195438385,10.6710205078125,-1.68732678890228,-3.59484815597534,10.7522840499878,-1.57070767879486,-3.58308815956116,10.8103818893433,-1.47289800643921,-3.54480695724487,10.8580741882324,-1.38528525829315,-3.49304604530334,10.9014539718628,-0.522467374801636,-1.7358261346817,11.6646327972412,-0.853272676467896,-1.92324829101563,11.4484043121338,-1.10606229305267,-2.10395193099976,11.1008491516113,-0.493669390678406,-1.30989372730255,11.3746156692505,-0.809532463550568,-1.55523955821991,11.0692300796509, +-1.07536733150482,-1.88525521755219,10.7500648498535,-0.499034911394119,-0.950579583644867,11.1278257369995,-0.823213994503021,-1.29103064537048,10.7952833175659,-1.13685464859009,-1.72631943225861,10.4549140930176,-0.525806367397308,-1.99147951602936,11.8923997879028,-0.906700909137726,-2.13356018066406,11.6390428543091,-1.19228196144104,-2.32023453712463,11.3356132507324,-1.77341294288635,-2.96184706687927,9.9596471786499,-1.81124925613403,-2.91073107719421,10.0682592391968,-1.59632623195648,-2.55080437660217,9.98704051971436,-1.65940880775452,-2.58622694015503,10.0822715759277,-1.48018991947174,-2.27519178390503,10.1393747329712,-1.5716644525528,-2.40248966217041,10.1943159103394,-1.35658383369446,-2.17649793624878,10.5437431335449,-1.53692555427551,-2.28125858306885,10.5680904388428,-1.30849456787109,-2.20981240272522,10.8322582244873,-1.45997536182404,-2.3338098526001,10.9546804428101,-1.77090895175934,-2.57009840011597,10.2757930755615,-1.67047643661499,-2.4525842666626,10.2923936843872,-1.89677250385284,-2.75604653358459,10.2793006896973,-1.91196882724762,-2.68166303634644,10.6179141998291,-1.82524788379669,-2.52532291412354,10.5684604644775,-1.69814610481262,-2.39185118675232,10.5556602478027,-1.65198802947998,-2.38608336448669,10.8005218505859,-1.83476006984711,-2.63304233551025,10.8799295425415,-0.538437187671661,-2.19871520996094,12.0575828552246,-0.939602255821228,-2.3243362903595,11.8041162490845,-1.26125860214233,-2.47660660743713,11.4658508300781,-1.56867337226868,-2.51121354103088,11.1137351989746,-1.74597990512848,-2.50036120414734,10.8550329208374,-1.8600435256958,-2.94770526885986,9.90234756469727,-1.66260206699371,-2.52715635299683,9.93363285064697,-1.52901208400726,-2.14440107345581,10.0297889709473,-1.18435442447662,-1.55190682411194,10.2380456924438,-0.493864685297012,-0.656538128852844,10.9330472946167,-0.823825776576996,-1.04610085487366,10.5608949661255,-2.17098832130432,-2.45336031913757,9.82688522338867,-2.45258784294128,-3.13287377357483,9.80207538604736,-3.0134608745575,-2.57700514793396,9.59614562988281, +-3.12375903129578,-3.26103687286377,9.54150676727295,-3.76545405387878,-2.67373323440552,9.27077484130859,-3.80718517303467,-3.4109890460968,9.16203594207764,-4.40852451324463,-2.72864508628845,8.88379764556885,-4.47413015365601,-3.53251934051514,8.71166706085205,-4.58353710174561,-4.46132040023804,8.47084808349609,-5.13119459152222,-3.46025061607361,8.07415962219238,-5.0813307762146,-2.65648317337036,8.3512020111084,-5.76414632797241,-3.17410206794739,7.3101282119751,-5.73970794677734,-2.41437315940857,7.70609283447266,-6.36890077590942,-2.63990521430969,6.42838335037231,-6.35044479370117,-1.95564937591553,6.92472505569458,-6.89743947982788,-1.81760597229004,5.49506139755249,-6.84193229675293,-1.22105288505554,6.05735206604004,-7.29474830627441,-0.792417943477631,4.60285806655884,-7.13602781295776,-0.210006877779961,5.24569892883301,-5.20545673370361,-4.29827260971069,7.69921255111694,-6.30885076522827,-3.40991997718811,5.83514070510864,-5.73544311523438,-3.94613575935364,6.78741598129272,-6.89638471603394,-2.61104416847229,4.82495212554932,-4.73759174346924,-5.38083934783936,8.1663703918457,-6.3010573387146,-4.04897356033325,5.32221126556396,-5.72612047195435,-4.7100510597229,6.30829238891602,-5.26458787918091,-5.13295125961304,7.31941175460815,-5.76102781295776,-5.33404397964478,5.89009571075439,-6.31455850601196,-4.62396097183228,4.94708442687988,-5.32754421234131,-5.80997514724731,6.88414812088013,-4.87168550491333,-6.17238759994507,7.78334760665894,-4.72261619567871,-6.91689586639404,7.8189582824707,-5.14740514755249,-6.68267869949341,7.0530309677124,-5.49074172973633,-6.30471515655518,6.21001148223877,-5.88891887664795,-5.83466958999634,5.39093065261841,-4.4567985534668,-7.43630933761597,8.02381706237793,-4.63893795013428,-8.18760967254639,7.36468935012817,-5.02923059463501,-7.73272132873535,6.85509061813354,-3.9799268245697,-8.09740734100342,8.34194087982178,-4.05577087402344,-8.76449871063232,7.94083404541016,-2.73335933685303,-11.1102619171143,6.25578022003174,-3.27162933349609,-10.7124099731445,7.34949636459351, +-3.49031758308411,-9.97497272491455,8.05880641937256,-3.4200394153595,-8.63992500305176,8.71746921539307,-3.48466086387634,-9.2441577911377,8.43512535095215,-2.93274664878845,-9.02222633361816,9.1695499420166,-2.96490597724915,-9.60867500305176,8.95022678375244,-1.81894302368164,-11.6068286895752,7.34164953231812,-2.2406964302063,-11.2564973831177,8.45750617980957,-2.45543622970581,-10.5916509628296,9.17394256591797,-2.48912644386292,-9.93205738067627,9.49641418457031,-2.44218945503235,-9.33296298980713,9.68772220611572,-1.9356302022934,-9.55088329315186,10.1522846221924,-1.99605703353882,-10.1815195083618,9.99641609191895,-1.07314682006836,-11.8290281295776,8.03556251525879,-1.30664241313934,-11.5927209854126,9.21349239349365,-1.41123855113983,-10.9835996627808,10.008246421814,-0.697075426578522,-11.9222002029419,8.16154384613037,-0.862486779689789,-11.6653308868408,9.4068660736084,-0.957686126232147,-11.0725841522217,10.1917762756348,-0.979436457157135,-9.77400207519531,10.7076902389526,-1.45681405067444,-9.6838207244873,10.4830656051636,-1.46009147167206,-10.3361186981201,10.3605632781982,-0.967066764831543,-10.4287242889404,10.5808334350586,-0.34590008854866,-11.9817800521851,8.21766662597656,-0.443739801645279,-11.7049903869629,9.47061729431152,-0.493437677621841,-11.1157894134521,10.3029832839966,-0.519946038722992,-9.8292236328125,10.8470029830933,-0.534429669380188,-10.4475450515747,10.7151002883911,-5.36939191818237,-7.30701303482056,6.20235872268677,-5.73494005203247,-6.86049842834473,5.45113849639893,-4.99795055389404,-9.16009712219238,3.26559519767761,-5.78187608718872,-8.70682048797607,4.26101684570313,-5.66574621200562,-7.97111368179321,5.29952907562256,-6.09138679504395,-6.36887693405151,4.76351118087769,-5.6676721572876,-8.0396203994751,1.89302062988281,-6.43482160568237,-7.64638471603394,2.92747402191162,-6.33894872665405,-6.92183923721313,3.90507936477661,-6.48305702209473,-5.72916030883789,3.98363208770752,-6.37685298919678,-5.15239000320435,4.52602291107178,-6.88704538345337,-4.96970891952515,3.19840002059937, +-6.81757068634033,-4.40107679367065,3.68997001647949,-6.81606912612915,-3.81580328941345,4.09708595275879,-6.84777498245239,-3.22725057601929,4.46643877029419,-7.18535327911377,-4.31236982345581,2.4699010848999,-7.18254566192627,-3.75510191917419,2.80865120887756,-7.25807476043701,-3.04372644424438,3.15227556228638,-7.29280519485474,-2.43727207183838,3.5564558506012,-7.30056953430176,-1.70985400676727,4.08368492126465,-2.13073706626892,0.846115708351135,9.07898616790771,-2.40774464607239,1.09070706367493,9.21471786499023,-2.77981758117676,1.31160318851471,9.2496395111084,-3.23053550720215,1.44887983798981,9.26728057861328,-3.66671991348267,1.48115527629852,9.24191093444824,-4.05036020278931,1.41884303092957,9.19754981994629,-4.3298397064209,1.33957171440125,9.07678508758545,-4.53224754333496,1.26109504699707,8.94384765625,-4.73986864089966,1.1195695400238,8.76476669311523,-4.89786577224731,0.905930161476135,8.54976654052734,-4.96826219558716,0.804023861885071,8.43973159790039,-5.06172609329224,0.722355782985687,8.31211757659912,-4.99963998794556,0.625196635723114,8.34968185424805,-4.89068698883057,0.534760415554047,8.44810199737549,-4.75296974182129,0.408829808235168,8.59839725494385,-4.56429100036621,0.275824129581451,8.82272434234619,-4.35178995132446,0.15977381169796,8.95899772644043,-3.99084162712097,0.0388892628252506,9.16523838043213,-3.42717480659485,0.00879953894764185,9.2322301864624,-2.96751236915588,0.0826759487390518,9.18136787414551,-2.59925508499146,0.158464729785919,9.10888671875,-2.28353071212769,0.253347188234329,8.96965408325195,-2.04610705375671,0.371691018342972,8.91295719146729,-1.94327652454376,0.477808862924576,8.93542671203613,-2.0019166469574,0.60156923532486,8.97407341003418,-1.82606780529022,0.425195068120956,9.02849292755127,-1.94637560844421,0.264149963855743,8.98511219024658,-2.19556713104248,0.082431472837925,9.01692581176758,-2.53517818450928,-0.0189056191593409,9.15310001373291,-2.92958283424377,-0.0964664965867996,9.21659088134766,-3.40226888656616,-0.179821103811264,9.27159404754639, +-4.02996778488159,-0.136342287063599,9.18951034545898,-4.39430809020996,-0.0576469674706459,8.98507499694824,-4.63278818130493,0.0630760043859482,8.81034183502197,-4.86522674560547,0.208934247493744,8.57377910614014,-5.05951166152954,0.398431032896042,8.36294651031494,-5.176429271698,0.59698885679245,8.26522159576416,-5.25054693222046,0.72034078836441,8.25850105285645,-5.1321759223938,0.826757729053497,8.36796283721924,-4.96289825439453,0.934091508388519,8.521728515625,-4.8003945350647,1.16704189777374,8.7447566986084,-4.59050703048706,1.33746790885925,8.93040943145752,-4.38301229476929,1.43246936798096,9.06435966491699,-4.06924962997437,1.49892055988312,9.20974063873291,-3.65559482574463,1.57172727584839,9.27534770965576,-3.20716142654419,1.53003346920013,9.30515480041504,-2.74337601661682,1.37544941902161,9.27945995330811,-2.3565239906311,1.14147675037384,9.25848293304443,-2.00829815864563,0.935405790805817,9.16300487518311,-1.8718489408493,0.605570733547211,9.06727695465088,-1.65030658245087,0.671867072582245,9.2253360748291,-1.86886620521545,1.02504360675812,9.20153045654297,-2.22823143005371,1.28928768634796,9.28384971618652,-2.64490365982056,1.54944503307343,9.301025390625,-3.13073205947876,1.73747587203979,9.32033157348633,-3.60988235473633,1.80495667457581,9.27996063232422,-4.0839695930481,1.76164972782135,9.17813205718994,-4.51367521286011,1.67889428138733,9.00890159606934,-4.81332540512085,1.54483807086945,8.84056377410889,-5.05777978897095,1.28734123706818,8.61774826049805,-5.25726699829102,1.02912926673889,8.40596771240234,-5.42085838317871,0.871191680431366,8.25228309631348,-5.48115587234497,0.725011050701141,8.13500881195068,-5.51753902435303,0.520317792892456,8.08371448516846,-5.43042373657227,0.227402254939079,8.12164783477783,-5.24159479141235,-0.112414427101612,8.37997150421143,-4.86105394363403,-0.341683715581894,8.62365913391113,-4.55123424530029,-0.463471502065659,8.84008312225342,-4.06123352050781,-0.511439502239227,9.04056549072266,-3.41040086746216,-0.562736213207245,9.17583847045898,-2.88614726066589,-0.482924997806549,9.16528701782227, +-2.44955205917358,-0.383245676755905,9.19193172454834,-2.07176208496094,-0.219020515680313,9.14170551300049,-1.79903078079224,0.0805526524782181,9.13233947753906,-1.61881947517395,0.376979231834412,9.23736095428467,-2.25934982299805,1.98639130592346,9.56893730163574,-1.77149403095245,1.69732677936554,9.60889053344727,-1.26516020298004,1.37100028991699,9.66737365722656,-1.10119354724884,0.884818077087402,9.65639591217041,-1.04085326194763,0.437824785709381,9.68349742889404,-1.2532776594162,-0.197685584425926,9.63908004760742,-1.75755894184113,-0.73046350479126,9.50579166412354,-2.28692698478699,-1.02964699268341,9.41224098205566,-2.90903306007385,-1.23569202423096,9.36333274841309,-3.54473090171814,-1.31134057044983,9.20099544525146,-4.15956401824951,-1.30109202861786,8.99508476257324,-4.7551851272583,-1.20994389057159,8.70662403106689,-5.34941339492798,-1.02330887317657,8.29789924621582,-5.78118515014648,-0.635276556015015,7.92719411849976,-6.18555974960327,-0.231884062290192,7.52792692184448,-6.37773370742798,0.254486232995987,7.18082427978516,-6.38863563537598,0.617636144161224,7.03204202651978,-6.27821969985962,0.939470767974854,7.06617307662964,-6.063720703125,1.30925905704498,7.25209283828735,-5.73361778259277,1.75249147415161,7.72359085083008,-5.32628870010376,2.20393967628479,8.21257972717285,-4.86676406860352,2.46559834480286,8.59459590911865,-4.1407265663147,2.50684332847595,9.0148286819458,-3.45093727111816,2.3841335773468,9.30954551696777,-2.79624772071838,2.23524498939514,9.46375465393066,-2.83902215957642,2.08526301383972,9.25551319122314,-3.44496846199036,2.18608498573303,9.20443820953369,-4.0905556678772,2.18392658233643,9.02815055847168,-4.69400310516357,2.07069492340088,8.79992485046387,-5.07874870300293,1.85113501548767,8.53388404846191,-5.43395280838013,1.49712073802948,8.21975135803223,-5.73813533782959,1.13607203960419,7.95513153076172,-5.88583660125732,0.867983758449554,7.77510261535645,-5.95736503601074,0.662771463394165,7.71622705459595,-5.95411443710327,0.431409955024719,7.73444366455078,-5.84463500976563,0.0337066166102886,7.84447240829468, +-5.54838943481445,-0.355836808681488,8.13446712493896,-5.20931720733643,-0.691812336444855,8.40687465667725,-4.61271047592163,-0.816669166088104,8.77346420288086,-4.09506511688232,-0.890169203281403,8.98448276519775,-3.4725034236908,-0.923985183238983,9.13625144958496,-2.88430690765381,-0.873924672603607,9.26791572570801,-2.37831354141235,-0.724734604358673,9.24971771240234,-1.91534018516541,-0.458017349243164,9.32759475708008,-1.58383190631866,-0.131477728486061,9.35623550415039,-1.35541367530823,0.372541576623917,9.40586090087891,-1.35380601882935,0.761859178543091,9.43727493286133,-1.48789989948273,1.21868109703064,9.44263935089111,-1.79330170154572,1.53164410591125,9.38885593414307,-2.29810428619385,1.82303488254547,9.33709144592285,-0.462224692106247,3.33067202568054,10.3590888977051,-0.814615190029144,3.3988926410675,10.3388633728027,-1.29072225093842,3.64332008361816,10.2444944381714,-1.90567791461945,3.94242453575134,10.068943977356,-2.71756935119629,4.27787017822266,9.74560165405273,-3.5896418094635,4.50379800796509,9.27270317077637,-4.52239942550659,4.54819965362549,8.65837001800537,-5.49783897399902,4.30548095703125,7.87937784194946,-6.1940770149231,3.66569113731384,6.67138481140137,-6.67714881896973,2.75051999092102,5.63913249969482,-6.94185256958008,1.86184823513031,5.19958114624023,-7.05338573455811,1.10372149944305,5.06734561920166,-7.09344339370728,0.526106119155884,5.14863300323486,-8.40617752075195,0.0556241795420647,0.640909492969513,-8.2239294052124,0.280366152524948,1.11804068088531,-8.00922012329102,-0.608444571495056,1.27154958248138,-8.30598258972168,-0.53821587562561,0.73651534318924,-8.5859317779541,0.655787527561188,0.402613759040833,-8.34269523620605,0.900962591171265,0.806322634220123,-8.77970123291016,1.21920776367188,0.0404710918664932,-8.57863712310791,1.52623748779297,0.339597314596176,-9.28165245056152,1.6613222360611,-0.547914326190948,-9.02072334289551,2.09513688087463,-0.276704102754593,-9.57998657226563,1.66829705238342,-1.06967425346375,-9.36645793914795,2.22241401672363,-1.2177392244339, +-9.64610004425049,1.5166996717453,-1.43420970439911,-9.43434143066406,1.93145954608917,-1.80604302883148,-9.52598857879639,0.681540608406067,-2.07179546356201,-9.47312164306641,0.759064555168152,-2.47445297241211,-9.43591594696045,0.0512671656906605,-2.09960103034973,-9.43670272827148,0.0287300813943148,-2.55825424194336,-9.37417793273926,-0.695516228675842,-2.01381659507751,-9.34363555908203,-0.790418148040771,-2.51949238777161,-9.25639152526855,-1.4842768907547,-1.80209052562714,-9.15201377868652,-1.73476028442383,-2.35918831825256,-8.99237155914307,-2.21868085861206,-1.4315003156662,-8.93394088745117,-2.67437076568604,-1.9970782995224,-8.71511077880859,-2.78971648216248,-0.737185418605804,-8.65053176879883,-3.32020664215088,-1.24940729141235,-8.39547061920166,-3.04587244987488,-0.017298486083746,-8.38211822509766,-3.81003403663635,-0.433070152997971,-8.11442089080811,-3.1936354637146,0.525815308094025,-8.23675060272217,-4.10207796096802,0.121550187468529,-7.73840141296387,-3.19897651672363,0.958669364452362,-8.11107063293457,-4.12815093994141,0.481665849685669,-8.24604320526123,-0.577287614345551,0.995464026927948,-8.42463302612305,0.153164371848106,0.894347965717316,-8.59025955200195,0.753413140773773,0.629709839820862,-8.78072452545166,1.29346311092377,0.247597619891167,-9.26115608215332,1.83518981933594,-0.359960824251175,-9.71281242370605,1.92458057403564,-1.06940853595734,-9.84065628051758,1.72258961200714,-1.52044475078583,-9.85390186309814,0.780522882938385,-2.24550247192383,-9.74722957611084,0.0391654707491398,-2.26296758651733,-9.68539142608643,-0.773595452308655,-2.20587778091431,-9.56930541992188,-1.67190170288086,-2.10549640655518,-9.34415531158447,-2.54098463058472,-1.74549722671509,-8.89970874786377,-3.18234515190125,-0.963524997234344,-8.5346508026123,-3.57418370246887,-0.0667138397693634,-8.26699352264404,-3.55714726448059,0.468929708003998,-7.96421432495117,-3.54026079177856,0.819772362709045,-7.92740678787231,0.707088768482208,1.58156073093414,-7.75378227233887,0.00106443359982222,1.93271040916443, +-8.05583763122559,1.20495855808258,1.22469758987427,-8.14210319519043,1.61750769615173,0.71096408367157,-8.16171169281006,1.7912689447403,-0.287664800882339,-8.22274780273438,1.68595325946808,-1.28933835029602,-8.29430675506592,1.49998390674591,-1.83284974098206,-8.38248062133789,0.689188420772552,-2.5513768196106,-8.27509498596191,0.0865578576922417,-2.61773252487183,-8.13198947906494,-0.640048921108246,-2.55151271820068,-7.99686002731323,-1.46767807006836,-2.29771852493286,-7.82757043838501,-2.35106301307678,-1.98396968841553,-7.72032737731934,-3.2160120010376,-1.51325237751007,-7.59922313690186,-3.5660548210144,-0.895240902900696,-7.25170183181763,-3.8191237449646,-0.080264575779438,-7.26813745498657,-4.07855844497681,0.522395431995392,-7.39384269714355,-3.19537711143494,1.42772626876831,-7.82979583740234,-0.364156097173691,1.67531418800354,-8.06924343109131,0.483809947967529,1.41093015670776,-8.21260833740234,1.04184699058533,1.06150698661804,-8.34437274932861,1.51545989513397,0.578359603881836,-8.4775562286377,1.86450958251953,-0.338869124650955,-8.63701915740967,1.86411488056183,-1.27927339076996,-8.77889823913574,1.61289417743683,-1.75693702697754,-8.80913734436035,0.637523710727692,-2.40572357177734,-8.71837043762207,-0.017295029014349,-2.48584079742432,-8.5960578918457,-0.765541732311249,-2.38860511779785,-8.45878791809082,-1.60163044929504,-2.1997697353363,-8.2514705657959,-2.47778415679932,-1.95846939086914,-8.06235027313232,-3.24343061447144,-1.37888097763062,-7.85416507720947,-3.58851766586304,-0.519060909748077,-7.66326284408569,-3.90234065055847,0.0622665882110596,-7.58291912078857,-4.06812286376953,0.609413862228394,-7.50888061523438,-3.25812888145447,1.0896703004837,-9.6566915512085,1.19088184833527,-1.8183753490448,-9.8843297958374,1.36798620223999,-1.91549408435822,-9.49132633209229,1.44061803817749,-2.22823238372803,-8.83131885528564,1.17665469646454,-2.18280220031738,-8.40206527709961,1.12513959407806,-2.4439435005188,-9.01280212402344,1.49861598014832,-0.319701880216599,-9.02793121337891,1.62811434268951,-0.0880535915493965, +-8.84053993225098,1.87228548526764,0.0113955168053508,-8.40198230743408,1.71313631534576,0.0522712357342243,-8.17350292205811,1.92774200439453,0.153999537229538,-9.4269962310791,1.69028949737549,-0.776199698448181,-9.4942569732666,1.9344927072525,-0.656897306442261,-9.22696495056152,2.24933004379272,-0.656028389930725,-8.54333114624023,1.91815054416656,-0.774208903312683,-8.18119716644287,1.72784447669983,-0.726136386394501,-8.10354804992676,-0.598297476768494,1.16011381149292,-8.31211471557617,0.242779210209846,1.04209768772125,-8.44231128692627,0.849660992622375,0.760851383209229,-8.68196392059326,1.44033968448639,0.326292425394058,-8.93920707702637,1.78261721134186,-0.00371122895739973,-9.13998317718506,2.00292658805847,-0.288590103387833,-9.37794971466064,2.15835881233215,-0.628212511539459,-9.61817836761475,2.14706921577454,-1.13845789432526,-9.76637268066406,1.89847612380981,-1.67890346050262,-9.82252788543701,1.48246681690216,-2.14551758766174,-9.74726104736328,0.808005571365356,-2.43034744262695,-9.63255500793457,0.0417290292680264,-2.51027631759644,-9.53864860534668,-0.784126937389374,-2.48973345756531,-9.41425514221191,-1.7335319519043,-2.31286644935608,-9.21683597564697,-2.66384983062744,-1.88666462898254,-8.82225894927979,-3.3023157119751,-1.12605535984039,-8.54668235778809,-3.78704833984375,-0.253021776676178,-8.30999088287354,-3.96418452262878,0.349801331758499,-8.05904769897461,-3.93425583839417,0.676900088787079,-7.4086275100708,-3.83309531211853,1.00440299510956,-7.32185649871826,-3.9814350605011,1.05311250686646,-7.92891502380371,-0.533270716667175,1.40354931354523,-8.16231250762939,0.280846804380417,1.16930663585663,-8.29424476623535,0.902041375637054,0.837104439735413,-8.45930671691895,1.44476139545441,0.432716220617294,-8.60464096069336,1.82067406177521,0.0668165907263756,-8.73596572875977,2.04094076156616,-0.317817211151123,-8.86012554168701,2.12431836128235,-0.757209897041321,-9.0003023147583,2.05361986160278,-1.26446914672852,-9.0885534286499,1.78043866157532,-1.78648042678833,-9.17437839508057,1.32840192317963,-2.20067262649536, +-9.15705299377441,0.701567888259888,-2.45905184745789,-9.10205268859863,-0.0197196360677481,-2.52215170860291,-8.9765100479126,-0.817377388477325,-2.44046878814697,-8.7988338470459,-1.69314658641815,-2.28348827362061,-8.5914888381958,-2.63403868675232,-2.05287599563599,-8.39008140563965,-3.30210208892822,-1.32934653759003,-8.14418983459473,-3.73202967643738,-0.520102441310883,-7.99722480773926,-4.02059173583984,0.0193376336246729,-7.83655786514282,-4.15941476821899,0.57631641626358,-7.79645156860352,-3.87085318565369,0.891090989112854,-7.76105070114136,-3.61150407791138,0.96287477016449,-7.60530471801758,-2.64006400108337,1.13854217529297,-7.82325553894043,-2.67202138900757,0.606558561325073,-7.97257232666016,-2.59800100326538,0.232179641723633,-8.29879283905029,-2.29580998420715,-0.437075525522232,-8.63137722015381,-1.96803712844849,-0.847795426845551,-8.98237133026123,-1.40080368518829,-1.35610711574554,-9.12864112854004,-0.640572488307953,-1.67632460594177,-9.04624366760254,0.000659702287521213,-1.60365033149719,-8.97405529022217,0.927655398845673,-1.26031458377838,-8.96565628051758,0.479196697473526,-1.573317527771,-9.05311107635498,1.3847017288208,-0.999665081501007,-8.68396186828613,1.02303791046143,-0.437540769577026,-8.54509925842285,0.540164172649384,0.0178523622453213,-8.32595443725586,-0.00530096469447017,0.189795896410942,-8.13072490692139,-0.472302228212357,0.0815707743167877,-8.88009262084961,0.661886811256409,-0.813444375991821,-8.87235355377197,0.190655842423439,-1.02402782440186,-8.87643718719482,-0.164214730262756,-1.0551974773407,-8.77584648132324,-0.698870480060577,-1.18805432319641,-8.56459808349609,-1.25547587871552,-1.12378418445587,-8.17762088775635,-1.57266366481781,-0.675285816192627,-7.73883438110352,-1.95448303222656,-0.365754455327988,-8.55316352844238,0.482197731733322,-0.463631421327591,-8.52521228790283,0.0252473447471857,-0.47016829252243,-8.44647979736328,-0.480911135673523,-0.363637685775757,-8.3405876159668,-0.865411221981049,-0.539741635322571,-7.94676733016968,-1.13499295711517,0.0325417406857014, +-7.83537864685059,-1.13797318935394,0.463114559650421,-7.48296165466309,-2.0682373046875,0.379103600978851,-7.63538074493408,-2.28205251693726,0.585019052028656,-7.8828558921814,-1.16284966468811,0.790033459663391,-7.85260820388794,-1.32400691509247,0.997490167617798,-7.67518758773804,-2.24807620048523,0.909905076026917,-7.97152614593506,-1.71899616718292,1.14518177509308,-7.95653247833252,-1.77144062519073,1.338507771492,-7.92291069030762,-1.95277452468872,1.33242797851563,-7.92445516586304,-1.94377028942108,1.14783787727356,-7.90483713150024,-1.38219797611237,1.13383054733276,-7.91120052337646,-1.40186202526093,1.38159692287445,-7.78627490997314,-2.13662910461426,1.40896236896515,-7.80494976043701,-2.07644081115723,1.1401903629303,-7.76078987121582,-1.29510390758514,1.79217278957367,-7.60379791259766,-2.31636095046997,1.69923138618469,-7.63846445083618,-0.756037175655365,2.44806170463562,-7.37063646316528,0.0888413712382317,4.29834508895874,-7.35888528823853,0.870295941829681,4.09235811233521,-7.32054853439331,1.71792018413544,4.00695180892944,-7.36008834838867,-3.32812237739563,2.1660840511322,-7.45038414001465,-2.65506076812744,2.43556666374207,-7.52005577087402,-1.92659544944763,2.74494981765747,-7.50882482528687,-1.2986718416214,3.23501682281494,-7.47103929519653,-0.786478817462921,3.72350430488586,-7.54952335357666,-0.241601139307022,3.3666718006134,-7.58496046066284,0.459071904420853,2.99241018295288,-7.61931896209717,1.19308066368103,2.64043354988098,-7.02118396759033,-4.588134765625,0.302804470062256,-7.28912258148193,-4.39174032211304,1.05844056606293,-7.30461883544922,-4.16600561141968,1.60434532165527,-7.31459140777588,-3.77218055725098,1.8762264251709,-7.33617830276489,-3.60372805595398,1.36917090415955,-7.32266807556152,-3.85119986534119,1.28592264652252,-7.01017570495605,-4.28947877883911,-0.434317737817764,-6.8834753036499,-5.18655681610107,-0.951007843017578,-7.28051567077637,-3.92623400688171,-1.33008432388306,-7.06664037704468,-4.79440832138062,-2.06348180770874,-7.35717153549194,-3.42611026763916,-2.13628530502319, +-6.98475980758667,-3.95061850547791,-3.24926400184631,-7.39472436904907,-2.51122641563416,-2.81611680984497,-6.97631931304932,-2.93156123161316,-4.42347097396851,-7.57095432281494,-1.45944273471832,-3.26196646690369,-7.16307020187378,-1.51736581325531,-4.9548168182373,-7.773512840271,-0.493855684995651,-3.47009801864624,-7.40711784362793,-0.261860519647598,-5.11035680770874,-7.97595167160034,0.366927713155746,-3.54731202125549,-7.62014675140381,0.824904024600983,-5.06272649765015,-8.13054275512695,1.13887596130371,-3.43744373321533,-7.80506753921509,1.74159252643585,-4.78061580657959,-8.20302867889404,1.82057893276215,-3.1892557144165,-7.96303176879883,2.66389918327332,-4.27948951721191,-8.08812522888184,3.50882053375244,-3.44184327125549,-8.20641326904297,2.46463108062744,-2.56324315071106,-8.14090156555176,2.93849992752075,-1.68800926208496,-7.69823408126831,1.93010175228119,2.21435189247131,-7.82948350906372,2.56363320350647,1.59077310562134,-7.94811153411865,3.02071166038513,0.876743674278259,-8.02180099487305,3.2474730014801,0.120442882180214,-8.07208156585693,3.17632651329041,-0.772562444210052,-7.24890565872192,2.92218780517578,4.07521533966064,-7.58893871307373,3.81115937232971,2.86107921600342,-7.79884052276611,4.51589107513428,1.80858504772186,-7.94902515411377,4.97307729721069,0.562792003154755,-8.04456806182861,4.71072673797607,-0.80043226480484,-8.12451839447021,4.20733594894409,-2.17165398597717,-6.5429801940918,4.35666608810425,5.53339815139771,-5.83936452865601,5.31749963760376,6.95323324203491,-4.86636686325073,5.77119159698486,7.97111225128174,-3.79756140708923,5.85024261474609,8.73626232147217,-2.88964056968689,5.78035593032837,9.22798442840576,-2.05321335792542,5.54804086685181,9.56657791137695,-1.43283069133759,5.34053802490234,9.74070644378662,-0.906579077243805,5.14756155014038,9.83744335174561,-0.440911084413528,4.84742116928101,9.92636775970459,-0.51741760969162,9.11596298217773,8.07609844207764,-1.09320676326752,9.20700931549072,7.98415613174438,-1.76013934612274,9.29360103607178,7.84114980697632, +-2.50077509880066,9.37444686889648,7.58180999755859,-3.45287466049194,9.37937068939209,7.1098518371582,-4.42452621459961,9.19738578796387,6.52355813980103,-5.6390528678894,8.668625831604,5.56420850753784,-6.60955381393433,7.86684608459473,4.36638593673706,-7.37164115905762,6.32191371917725,2.9875328540802,-0.504186153411865,7.12358570098877,9.1892728805542,-1.0216156244278,7.20282888412476,9.14141368865967,-1.59682321548462,7.36775684356689,9.01309108734131,-2.30822396278381,7.53479909896851,8.79819869995117,-3.19743204116821,7.63384580612183,8.40076923370361,-4.19189023971558,7.58147573471069,7.77820682525635,-5.25280475616455,7.27345371246338,6.87509870529175,-6.21244335174561,6.61381769180298,5.77043581008911,-6.98111343383789,5.40456295013428,4.37023735046387,-7.62035131454468,7.41489553451538,1.09772956371307,-6.92244052886963,8.67479038238525,2.88742017745972,-6.02230930328369,9.61266899108887,3.94371747970581,-4.84872579574585,10.4076776504517,4.84173250198364,-3.88288593292236,10.7977638244629,5.37367582321167,-2.908931016922,10.9924812316895,5.80038690567017,-2.08697986602783,11.0666513442993,6.05755472183228,-1.33430349826813,11.0534925460815,6.24619197845459,-0.653030693531036,11.0219612121582,6.33474349975586,-6.50100374221802,-3.37295937538147,-5.94551467895508,-6.6031608581543,-1.84196555614471,-6.56225490570068,-5.31550264358521,-3.66249299049377,-7.65658092498779,-5.44049072265625,-1.97767984867096,-8.24058628082275,-3.70406603813171,-3.83193826675415,-8.76936340332031,-3.93267416954041,-1.91054832935333,-9.32651233673096,-4.48633575439453,-3.77395033836365,-8.33473014831543,-4.70650720596313,-1.9571076631546,-8.8559513092041,-5.9597339630127,-3.52089285850525,-6.88484239578247,-6.06760025024414,-1.92599403858185,-7.47396421432495,-4.15610122680664,0.0726640149950981,-9.77432346343994,-4.86433267593384,-0.0820099264383316,-9.25381183624268,-5.57446050643921,-0.249779000878334,-8.63652420043945,-6.93286228179932,-0.384116500616074,-6.53490591049194,-6.32836961746216,-0.361771166324615,-7.70779514312744, +-4.38082361221313,2.18039727210999,-9.84704875946045,-5.06170415878296,1.88383483886719,-9.30503749847412,-5.7366681098938,1.55229163169861,-8.68006324768066,-6.57100296020508,1.23749625682831,-7.64973497390747,-7.18364763259888,0.982836008071899,-6.41935920715332,-4.66040945053101,4.36260938644409,-9.39548778533936,-5.43802547454834,3.91017746925354,-8.80759620666504,-6.10085916519165,3.39812302589417,-8.18937969207764,-6.81753158569336,2.82796263694763,-7.25026369094849,-7.37996053695679,2.28183484077454,-6.1011643409729,-5.12424755096436,6.58037996292114,-8.45871829986572,-5.86592388153076,5.93916893005371,-7.88381290435791,-6.51570987701416,5.23922157287598,-7.28946113586426,-7.13362312316895,4.37973070144653,-6.41931915283203,-7.59203433990479,3.51524090766907,-5.4167013168335,-5.43766069412231,8.64241790771484,-6.8898286819458,-6.21404409408569,7.85274982452393,-6.45617389678955,-6.86771774291992,7.00395059585571,-5.98439693450928,-7.42110252380371,5.84361457824707,-5.29573011398315,-7.81795406341553,4.65318918228149,-4.39308929443359,-5.66820621490479,10.1276111602783,-4.72834587097168,-6.5164942741394,9.25273895263672,-4.42417144775391,-7.17343854904175,8.28569984436035,-4.03828477859497,-7.68428468704224,7.02488470077515,-3.47118353843689,-8.00661754608154,5.63727521896362,-2.72344303131104,-5.62916088104248,11.0652112960815,-2.22535014152527,-6.58144807815552,10.1174831390381,-2.12496757507324,-7.18665170669556,9.17011833190918,-1.92709672451019,-7.67361164093018,7.81409406661987,-1.61308932304382,-7.95512533187866,6.38670635223389,-1.10849297046661,-7.48661661148071,8.35696220397949,-0.0242236163467169,-5.36135482788086,11.3852396011353,0.305533826351166,-6.33773422241211,10.5318584442139,0.135644838213921,-6.94026803970337,9.65329074859619,0.0726752132177353,-6.95829677581787,9.24563407897949,1.72573637962341,-6.17615461349487,10.3094024658203,2.19222164154053,-5.11412286758423,11.2042589187622,2.70831894874573,-1.04318618774414,-3.90684485435486,-9.57221412658691,-1.13791787624359,-1.84333157539368,-10.353687286377, +-1.29253804683685,0.315788835287094,-11.085542678833,-1.41271209716797,2.72090673446655,-11.2884521484375,-1.53582167625427,5.30492305755615,-10.8696126937866,-1.7382435798645,8.02209091186523,-9.89536476135254,-1.78098905086517,10.390025138855,-7.96726417541504,-1.71314287185669,12.0455827713013,-5.30744695663452,-1.59504652023315,12.9070796966553,-2.25943613052368,-1.53724265098572,12.9241800308228,0.852242946624756,-6.72695207595825,-4.68151807785034,-4.4121413230896,-6.90901041030884,-5.72505712509155,-2.66515469551086,-6.81298017501831,-6.25775909423828,-1.14970350265503,-0.496038883924484,-3.80822563171387,-9.65039348602295,-0.565522968769073,-1.81483423709869,-10.4103507995605,-0.637238025665283,0.32974910736084,-11.1553335189819,-0.709146916866302,2.77228307723999,-11.3831214904785,-0.787863969802856,5.40320062637329,-10.9760103225708,-0.889000713825226,8.15651321411133,-10.0839538574219,-0.861368179321289,10.5052967071533,-8.0781078338623,-0.83338987827301,12.1373767852783,-5.34705066680908,-0.807116091251373,12.9535961151123,-2.26549959182739,-0.778051435947418,13.0002193450928,0.870301723480225,-2.26013684272766,-3.8938570022583,-9.32493686676025,-2.43823719024658,-1.86028254032135,-10.0303478240967,-2.68087267875671,0.260054409503937,-10.6602001190186,-2.8737952709198,2.5838885307312,-10.7948656082153,-3.07526302337646,5.02608108520508,-10.3114147186279,-3.39611577987671,7.53373670578003,-9.3833122253418,-3.56346130371094,9.79408168792725,-7.57969760894775,-3.49736428260803,11.5034608840942,-5.15501117706299,-3.32358813285828,12.5054578781128,-2.2839457988739,-3.15594434738159,12.6157512664795,0.672657787799835,-0.738614797592163,12.4994955062866,3.8485631942749,-1.49879384040833,12.4474573135376,3.80250239372253,-2.94505977630615,-3.86894845962524,-9.09688091278076,-3.17154812812805,-1.87411487102509,-9.71990203857422,-3.40799689292908,0.182872295379639,-10.2753419876099,-3.61800932884216,2.4148485660553,-10.3745346069336,-3.88968443870544,4.74185466766357,-9.87769603729248,-4.27451515197754,7.13207197189331,-8.99654769897461, +-4.49432039260864,9.30913543701172,-7.28674602508545,-4.54035806655884,10.9403295516968,-4.96742153167725,-4.46231174468994,11.9082851409912,-2.26144361495972,-4.19918441772461,12.1256256103516,0.515531361103058,-4.09540367126465,11.7629451751709,3.10842871665955,-3.14920330047607,12.1326732635498,3.42246961593628,-1.65472447872162,-3.89587569236755,-9.47716331481934,-1.75957727432251,-1.85504877567291,-10.2373600006104,-1.96312272548676,0.299863189458847,-10.9261789321899,-2.13375473022461,2.68816900253296,-11.1015186309814,-2.27932524681091,5.20627212524414,-10.6481056213379,-2.56503582000732,7.8169584274292,-9.65657138824463,-2.68940830230713,10.1434297561646,-7.78519916534424,-2.60994911193848,11.8307313919067,-5.24713611602783,-2.472416639328,12.7737789154053,-2.30065274238586,-2.33876633644104,12.8427362442017,0.746545791625977,-2.29699468612671,12.3575115203857,3.62430381774902,-0.517588376998901,-5.26805114746094,-9.33380603790283,-1.08643567562103,-5.23129749298096,-9.29151821136475,-1.74097418785095,-5.15038776397705,-9.19673824310303,-2.42765736579895,-5.08308553695679,-9.04594707489014,-3.15881657600403,-5.02853727340698,-8.81332302093506,-3.93239068984985,-4.9757399559021,-8.46383285522461,-4.73228025436401,-4.92406463623047,-7.95413875579834,-5.50995969772339,-4.86525535583496,-7.17065668106079,-6.20486640930176,-4.79087162017822,-6.10080003738403,-8.64319515228271,-13.7613410949707,-6.49234867095947,-8.45827865600586,-13.2992315292358,-7.70548915863037,-7.77010488510132,-13.0706129074097,-8.68906593322754,-6.9291787147522,-13.0040559768677,-9.5849781036377,-5.94925403594971,-12.992039680481,-10.2592067718506,-4.99908208847046,-12.9968252182007,-10.7301349639893,-4.06416320800781,-13.0407457351685,-11.0760583877563,-3.09096384048462,-13.0979118347168,-11.3484125137329,-2.01616597175598,-13.1434345245361,-11.5675439834595,-0.897775232791901,-13.1605777740479,-11.6888275146484,-8.4887523651123,-14.6470861434937,-5.17452192306519,-8.03654384613037,-15.6640710830688,-4.20482587814331,-7.31738233566284,-16.5804405212402,-3.35303926467896, +-6.74378490447998,-17.5974903106689,-2.52438831329346,-6.32377433776855,-18.2904396057129,-1.95093476772308,-5.98745822906494,-18.9915714263916,-1.41046440601349,-5.47605514526367,-19.6213970184326,-0.822464108467102,-4.90706348419189,-20.2975883483887,-0.105866722762585,-4.28194427490234,-20.941780090332,0.766014516353607,-3.81215596199036,-21.2985401153564,1.50899231433868,-3.3359682559967,-21.7558116912842,1.85429203510284,-2.81476855278015,-22.0949058532715,2.03073906898499,-2.35492038726807,-22.3543949127197,2.18042707443237,-1.7653636932373,-22.6129531860352,2.30901074409485,-1.22038698196411,-22.7748050689697,2.32924127578735,-0.85540908575058,-22.9290084838867,2.25529050827026,-0.36254608631134,-23.1343860626221,2.10908079147339,-0.625648081302643,-7.37590169906616,-9.60719299316406,-1.32410180568695,-7.34512948989868,-9.55502128601074,-2.05779266357422,-7.34163665771484,-9.42951202392578,-2.81746506690979,-7.32136392593384,-9.22162342071533,-3.59860324859619,-7.28751516342163,-8.92420864105225,-4.38082933425903,-7.23829650878906,-8.47921657562256,-5.13177537918091,-7.17587614059448,-7.84253072738647,-5.77947664260864,-7.19315910339355,-6.97707557678223,-6.34135818481445,-7.28495264053345,-5.93021202087402,-6.77100849151611,-7.48039674758911,-4.6926383972168,-6.84615612030029,-7.86087083816528,-3.35218596458435,-6.78169870376587,-8.35580444335938,-2.06780433654785,-6.40048694610596,-8.91832733154297,-0.943061053752899,-5.79883766174316,-9.52748394012451,-0.11037153750658,-5.10273265838623,-10.1021938323975,0.494475066661835,-4.39243078231812,-10.6278562545776,0.989344716072083,-3.71881508827209,-11.0863447189331,1.52291250228882,-3.13284301757813,-11.5497035980225,2.12970852851868,-2.74229621887207,-11.9313306808472,2.70095419883728,-2.32388377189636,-12.3248901367188,3.21492695808411,-1.94650614261627,-12.5904026031494,3.57901430130005,-1.57353568077087,-12.7477254867554,3.90267062187195,-1.18646287918091,-12.8427982330322,4.1576943397522,-0.891132175922394,-12.8845291137695,4.30355882644653,-0.64113837480545,-12.891077041626,4.40399074554443, +-0.39007779955864,-12.905122756958,4.46603679656982,-0.179619997739792,-12.9209518432617,4.48812198638916,-0.563388705253601,-6.28740692138672,-9.4006404876709,-1.21184766292572,-6.32549619674683,-9.34765338897705,-1.88929092884064,-6.27402353286743,-9.21586894989014,-2.60735654830933,-6.22267913818359,-9.01738357543945,-3.36249756813049,-6.16755390167236,-8.75267696380615,-4.14875459671021,-6.10737609863281,-8.37246036529541,-4.9389271736145,-6.06502532958984,-7.80907344818115,-5.64825057983398,-6.05284976959229,-6.97354698181152,-6.27506494522095,-6.09688806533813,-5.89902639389038,-6.74664688110352,-6.25517225265503,-4.52713060379028,-6.8474063873291,-6.77249336242676,-3.04118299484253,-6.82615423202515,-7.29014492034912,-1.64151537418365,-6.31480979919434,-7.76024484634399,-0.429300457239151,-5.68121862411499,-8.37579917907715,0.379459589719772,-5.09699296951294,-8.88006687164307,1.06801092624664,-4.46523904800415,-9.31941509246826,1.70946669578552,-4.05541086196899,-9.87843418121338,2.41101765632629,-3.68897819519043,-10.443320274353,3.13330888748169,-3.23865914344788,-10.8654813766479,3.92362713813782,-2.6061635017395,-11.2555894851685,4.53100872039795,-2.02840113639832,-11.5209093093872,4.93467092514038,-1.52248239517212,-11.6290349960327,5.31799459457397,-1.14085018634796,-11.6908254623413,5.685218334198,-0.862997770309448,-11.7362089157104,6.03002405166626,-0.605921387672424,-11.7760925292969,6.30243301391602,-0.350636273622513,-11.8051671981812,6.50244760513306,-0.118107497692108,-11.8193836212158,6.51914405822754,-0.72603440284729,-9.14775466918945,-10.0981168746948,-1.51200354099274,-9.19240188598633,-10.0465278625488,-2.32049226760864,-9.17105007171631,-9.88348770141602,-3.10815048217773,-9.09110164642334,-9.61295890808105,-3.89651775360107,-9.06318092346191,-9.25549983978271,-4.68364000320435,-9.12973690032959,-8.76784133911133,-5.39656257629395,-9.20655632019043,-8.07389163970947,-5.94506978988647,-9.33605480194092,-7.20093536376953,-6.39533710479736,-9.4915828704834,-6.2245512008667,-6.7011399269104,-9.6498556137085,-5.11427545547485, +-6.79371881484985,-9.98949527740479,-3.93581223487854,-6.66381597518921,-10.5243453979492,-2.8044912815094,-6.22340726852417,-11.1233015060425,-1.82647752761841,-5.80161666870117,-11.8315048217773,-0.991313517093658,-5.27317380905151,-12.5326900482178,-0.33777716755867,-4.66736888885498,-13.1873483657837,0.177737548947334,-4.01640844345093,-13.7544431686401,0.620997488498688,-3.31818199157715,-14.2157945632935,1.00182127952576,-2.78540349006653,-14.5174942016602,1.25320279598236,-2.27392053604126,-14.7957696914673,1.52346575260162,-1.76376962661743,-15.0323362350464,1.90779769420624,-1.4566867351532,-15.1567716598511,2.1547839641571,-1.14831292629242,-15.2191495895386,2.40677833557129,-0.880245089530945,-15.2733564376831,2.56835436820984,-0.643745899200439,-15.3090209960938,2.69347929954529,-0.40669858455658,-15.3267621994019,2.75405740737915,-0.150777891278267,-15.3646907806396,2.76293134689331,-0.781291663646698,-10.3894596099854,-10.448634147644,-1.62238729000092,-10.3734064102173,-10.354660987854,-2.47534418106079,-10.2873373031616,-10.1611289978027,-3.28743171691895,-10.2262086868286,-9.87693691253662,-4.0867748260498,-10.2447195053101,-9.51634502410889,-4.87640619277954,-10.3242082595825,-9.03165531158447,-5.61750507354736,-10.4153423309326,-8.32294082641602,-6.1517915725708,-10.5465068817139,-7.44881343841553,-6.54033660888672,-10.7677879333496,-6.51932191848755,-6.70928955078125,-10.986346244812,-5.45079612731934,-6.8463339805603,-11.4628429412842,-4.35247278213501,-6.65667104721069,-11.9765958786011,-3.28637266159058,-6.08158683776855,-12.5608568191528,-2.4070348739624,-5.63037824630737,-13.1747341156006,-1.52856910228729,-5.1600284576416,-13.9945020675659,-0.966353237628937,-4.68250942230225,-14.7705202102661,-0.467575043439865,-4.17905330657959,-15.3869075775146,0.0480929762125015,-3.59335565567017,-15.9162015914917,0.523802161216736,-3.04364395141602,-16.3260154724121,0.831762075424194,-2.42143297195435,-16.7167434692383,1.08995759487152,-1.98372232913971,-16.9523372650146,1.26455080509186,-1.59317064285278,-17.1624355316162,1.44275057315826, +-1.21537566184998,-17.3552722930908,1.60568916797638,-0.864116370677948,-17.4638252258301,1.74329102039337,-0.566159963607788,-17.5375156402588,1.82823538780212,-0.358255118131638,-17.5536861419678,1.87577652931213,-0.120445497334003,-17.5740985870361,1.90244162082672,-0.827059805393219,-11.777400970459,-10.9927101135254,-1.78073978424072,-11.7241125106812,-10.8770484924316,-2.78206324577332,-11.7376880645752,-10.6820974349976,-3.64758586883545,-11.7248067855835,-10.4047145843506,-4.46547555923462,-11.7181310653687,-10.0473127365112,-5.28482007980347,-11.7900047302246,-9.61402893066406,-6.19617986679077,-11.8668336868286,-8.87957954406738,-6.80679321289063,-11.9710521697998,-7.94225406646729,-7.17634248733521,-12.1400594711304,-7.03443813323975,-7.25316190719604,-12.5044260025024,-5.96344804763794,-7.27533388137817,-13.0910673141479,-4.77431774139404,-6.8624472618103,-13.7653150558472,-3.84674096107483,-6.18089771270752,-14.4139165878296,-3.0373170375824,-5.60068082809448,-15.1557779312134,-2.3195641040802,-5.06253862380981,-15.9161586761475,-1.78069031238556,-4.59118938446045,-16.6205387115479,-1.27265441417694,-4.16988658905029,-17.2565898895264,-0.780969023704529,-3.73949885368347,-17.8339920043945,-0.224628210067749,-3.21607780456543,-18.4729709625244,0.400370657444,-2.80481314659119,-18.9583435058594,0.781409800052643,-2.46587800979614,-19.3676662445068,1.06315422058105,-2.0509467124939,-19.6987934112549,1.3283816576004,-1.65970063209534,-19.945442199707,1.46141600608826,-1.21194422245026,-20.0902576446533,1.41052174568176,-0.84194952249527,-20.2194232940674,1.33887577056885,-0.541794419288635,-20.3799839019775,1.29653906822205,-0.203980699181557,-20.5156555175781,1.26132202148438,-0.643635272979736,-8.22926044464111,-9.85444641113281,-1.39376223087311,-8.18760395050049,-9.78995132446289,-2.171799659729,-8.17779922485352,-9.64373016357422,-2.9530668258667,-8.15102100372314,-9.41429328918457,-3.74704670906067,-8.14085292816162,-9.09621715545654,-4.5271954536438,-8.13263034820557,-8.62427616119385,-5.26237392425537,-8.1309642791748,-7.9494104385376, +-5.8615984916687,-8.1704626083374,-7.07688856124878,-6.37500095367432,-8.34739589691162,-6.07270526885986,-6.74229383468628,-8.53392124176025,-4.88599109649658,-6.83558368682861,-8.86042308807373,-3.62137317657471,-6.73172521591187,-9.36280155181885,-2.40425562858582,-6.34451007843018,-9.97914695739746,-1.35259056091309,-5.85404062271118,-10.6383562088013,-0.481644362211227,-5.1982889175415,-11.2626161575317,0.134075298905373,-4.50275993347168,-11.8434352874756,0.599624037742615,-3.78320741653442,-12.3431959152222,1.00235331058502,-3.12188076972961,-12.812237739563,1.44490206241608,-2.68707728385925,-13.1786756515503,1.80647385120392,-2.26843738555908,-13.5017595291138,2.184974193573,-1.8536434173584,-13.7794160842896,2.59936094284058,-1.50331711769104,-13.9578886032104,2.98683619499207,-1.18794131278992,-14.1320238113403,3.33676099777222,-0.953288018703461,-14.2412595748901,3.54889917373657,-0.621793150901794,-14.3140735626221,3.72880434989929,-0.424510806798935,-14.3100891113281,3.79969429969788,-0.173259794712067,-14.295295715332,3.87241649627686,-0.686224699020386,-3.31110382080078,11.4172983169556,-0.803417325019836,-3.27108144760132,11.3626937866211,-0.946941077709198,-3.25326538085938,11.2468614578247,-1.0470564365387,-3.2831404209137,11.1011810302734,-1.09913229942322,-3.31128525733948,10.9977207183838,-1.15104711055756,-3.34290099143982,10.9002914428711,-0.611746072769165,-3.34157705307007,11.3992328643799,-0.532138586044312,-3.39445948600769,11.3600931167603,-0.504551589488983,-3.43966221809387,11.2966022491455,-0.479691803455353,-3.43749380111694,11.1914520263672,-0.52191436290741,-3.41624903678894,11.0354175567627,-0.658787488937378,-3.38174843788147,10.8952512741089,-0.840401828289032,-3.3503565788269,10.8026313781738,-0.992791056632996,-3.34739780426025,10.7887210845947,-1.13266718387604,-3.37302184104919,10.8144035339355,-0.678815186023712,-3.30243062973022,11.1854343414307,-0.792406320571899,-3.27622985839844,11.0769290924072,-0.907720804214478,-3.27583456039429,10.9785804748535,-1.0204222202301,-3.30554914474487,10.9048337936401, +-0.595511674880981,-3.34261322021484,11.2803497314453,9.09494701772928e-12,-4.76141214370728,10.3938007354736,3.63797880709171e-12,-7.40669536590576,10.3991527557373,-0.292443186044693,-4.70302867889404,10.411449432373,-2.75259256362915,-5.40841817855835,9.14834403991699,-3.09797310829163,-5.70720195770264,8.96552085876465,-1.85865950584412,-4.97731590270996,9.77219295501709,-2.34341382980347,-5.19857597351074,9.45803833007813,-1.36100649833679,-4.80800199508667,10.1225099563599,-0.98523885011673,-4.71654033660889,10.2899417877197,-0.604986190795898,-4.68483877182007,10.3602104187012,-3.37384390830994,-5.93749809265137,8.8080997467041,-3.49813437461853,-6.3752760887146,8.79473876953125,-3.4315812587738,-6.67488241195679,8.79679489135742,-3.16283941268921,-7.06501150131226,8.80908107757568,-2.72594547271729,-7.41771364212036,9.13029098510742,-2.20925116539001,-7.62382793426514,9.44645118713379,-1.79464256763458,-7.65139579772949,9.76041889190674,-1.3591480255127,-7.64054775238037,10.1210842132568,-0.982116758823395,-7.51274871826172,10.2800188064575,-0.607004284858704,-7.40227365493774,10.3452959060669,-0.28584498167038,-7.38006734848022,10.3803043365479,-2.18278728425503e-11,-6.26077890396118,10.7972431182861,-0.30194216966629,-6.24943542480469,10.8142013549805,-0.624637544155121,-6.24589967727661,10.7649621963501,-1.0172404050827,-6.24143505096436,10.697437286377,-1.40521359443665,-6.2437744140625,10.5365409851074,-1.88000738620758,-6.29273557662964,10.1998977661133,-2.27079916000366,-6.35514211654663,9.89800643920898,-2.61869764328003,-6.34562492370605,9.6003999710083,-2.96545195579529,-6.33925914764404,9.38929843902588,-3.09596276283264,-6.32578992843628,9.32376480102539,-3.1649911403656,-6.37896108627319,9.31092548370361,-3.11799287796021,-6.41603517532349,9.31290149688721,-2.98541688919067,-6.43015575408936,9.32470798492432,-2.60040497779846,-6.32098340988159,9.58815670013428,-2.22038984298706,-6.32131481170654,9.89197540283203,-1.8529360294342,-6.3095908164978,10.1936893463135,-1.40329599380493,-6.25318431854248,10.5402755737305, +-1.01401877403259,-6.20932769775391,10.7413091659546,-0.626720547676086,-6.19377565383911,10.8380336761475,-0.295129060745239,-6.19072103500366,10.871675491333,-2.18278728425503e-11,-6.19806957244873,10.8897876739502,-2.18278728425503e-11,-6.07349538803101,10.576208114624,-0.298713117837906,-6.05210113525391,10.5934009552002,-0.617956161499023,-6.04542541503906,10.5434818267822,-1.00636005401611,-6.05155611038208,10.4750242233276,-1.39018452167511,-6.04279756546021,10.3119068145752,-1.87275123596191,-6.04466199874878,9.97061347961426,-2.295485496521,-6.07539176940918,9.66455364227295,-2.66421794891357,-6.12633037567139,9.36283683776855,-3.01050567626953,-6.17132997512817,9.17846012115479,-3.190434217453,-6.20648145675659,9.08168697357178,-3.27824974060059,-6.35046339035034,9.06867027282715,-3.22460222244263,-6.44936037063599,9.07067394256592,-3.04573488235474,-6.54443311691284,9.08264446258545,-2.64308500289917,-6.56647920608521,9.3955774307251,-2.21660256385803,-6.56374502182007,9.70359134674072,-1.83311820030212,-6.52105617523193,10.0094718933105,-1.38828682899475,-6.42269420623779,10.3608446121216,-1.00317096710205,-6.3660306930542,10.5475664138794,-0.620017945766449,-6.32859325408936,10.6336011886597,-0.291972994804382,-6.32110595703125,10.6677074432373,-1.49229890666902e-08,-6.33198976516724,10.6860675811768,-8.37113500113226e-30,-3.1514904499054,9.10970115661621,-0.333059281110764,-3.04259610176086,9.12734985351563,-3.13488340377808,-4.35821485519409,7.8642463684082,-3.52823090553284,-4.91547203063965,7.6814227104187,-2.11679720878601,-3.55416989326477,8.48809337615967,-2.66887521743774,-3.96684694290161,8.1739501953125,-1.55002808570862,-3.23837113380432,8.83841133117676,-1.12207198143005,-3.06779313087463,9.00584316253662,-0.689009308815002,-3.00867295265198,9.07611083984375,-3.84241533279419,-5.34498262405396,7.524001121521,-3.98396801948547,-6.1614818572998,7.51064014434814,-3.90817141532898,-6.72027730941772,7.51269578933716,-3.60210609436035,-7.44788789749146,7.5249810218811,-3.10453486442566,-8.10571765899658,7.84619045257568, +-2.51607990264893,-8.49013233184814,8.16235160827637,-2.04389142990112,-8.54155158996582,8.47632026672363,-1.54791212081909,-8.52130222320557,8.83698463439941,-1.11851668357849,-8.28295230865479,8.99592018127441,-0.691307425498962,-8.07691287994385,9.06119632720947,-0.325544089078903,-8.03549098968506,9.09620571136475,-6.89870739186854e-30,-8.0851583480835,9.11505317687988,-7.68209970929043e-30,-3.25620675086975,3.18448519706726,-0.292443186044693,-3.10722589492798,3.15491962432861,-2.75259256362915,-5.52335596084595,2.55872249603271,-3.09797310829163,-6.34004735946655,2.62602686882019,-1.85865950584412,-4.13366317749023,2.78859424591064,-2.34341382980347,-4.8433723449707,2.67609429359436,-1.36100649833679,-3.52603387832642,2.97449827194214,-0.98523885011673,-3.21061944961548,3.05512428283691,-0.604986190795898,-3.09410953521729,3.09418106079102,-3.37384390830994,-6.97919702529907,2.66290640830994,-3.49813437461853,-8.0264310836792,2.99264764785767,-3.4315812587738,-8.73656749725342,3.22848439216614,-3.16283941268921,-9.65559577941895,3.54429864883423,-2.72594547271729,-10.3044757843018,4.11142539978027,-2.20925116539001,-10.608268737793,4.55950307846069,-1.79464256763458,-10.4894304275513,4.86614847183228,-1.3591480255127,-10.2519884109497,5.18520212173462,-0.982116758823395,-9.85527992248535,5.22973537445068,-0.607004284858704,-9.55466938018799,5.2027440071106,-0.28584498167038,-9.48139667510986,5.21719026565552,-7.2707120453727e-30,-9.5335636138916,5.25510406494141,-8.67361737988404e-19,-13.5260343551636,-0.881753981113434,-0.00993838906288147,-13.5255155563354,-0.883645474910736,-0.0935440063476563,-13.5425844192505,-0.867419004440308,-0.105281591415405,-13.5461883544922,-0.858322620391846,-0.0631645917892456,-13.5336780548096,-0.87827080488205,-0.0796384811401367,-13.5381870269775,-0.872663080692291,-0.0462523698806763,-13.5290946960449,-0.881868422031403,-0.0334823727607727,-13.5268440246582,-0.883949220180511,-0.0205598473548889,-13.5259380340576,-0.884593188762665,-0.114656686782837,-13.5491352081299,-0.851415693759918, +-0.1188805103302,-13.5517959594727,-0.836480975151062,-0.116618633270264,-13.5535011291504,-0.82618921995163,-0.107485771179199,-13.5556221008301,-0.812727689743042,-0.0926384925842285,-13.554347038269,-0.798599600791931,-0.0750792026519775,-13.5522794723511,-0.789532661437988,-0.0609891414642334,-13.5492067337036,-0.786605060100555,-0.0461891889572144,-13.545431137085,-0.784700572490692,-0.0333762168884277,-13.5430583953857,-0.788081586360931,-0.0206284523010254,-13.5417499542236,-0.791459500789642,-0.00971415638923645,-13.5412616729736,-0.792000591754913,-6.50521303491303e-19,-13.541220664978,-0.790968060493469,-8.40436481583679e-30,-5.408447265625,-0.584822595119476,-0.292443186044693,-5.27976083755493,-0.64216148853302,-0.604986190795898,-5.2786602973938,-0.694170773029327,-0.98523885011673,-5.39025735855103,-0.699558854103088,-1.36100649833679,-5.68794107437134,-0.693856835365295,-1.85865950584412,-6.26679515838623,-0.70758056640625,-2.34341382980347,-6.92446565628052,-0.639083087444305,-2.75259256362915,-7.55628824234009,-0.581198334693909,-3.09797310829163,-8.27844047546387,-0.343432426452637,-3.37384390830994,-8.84640026092529,-0.170109942555428,-3.49813437461853,-9.7295389175415,0.331425666809082,-3.4315812587738,-10.3262414932251,0.681404411792755,-3.16283941268921,-11.0966196060181,1.14289796352386,-2.72594547271729,-11.5799207687378,1.74674069881439,-2.20925116539001,-11.7740507125854,2.17691659927368,-1.79464256763458,-11.6132354736328,2.39793872833252,-1.3591480255127,-11.3436212539673,2.60234642028809,-0.982116758823395,-10.9792337417603,2.54923462867737,-0.607004284858704,-10.7138185501099,2.45992803573608,-0.28584498167038,-10.6454162597656,2.45513987541199,-6.44911484499541e-30,-10.6856203079224,2.49748229980469,-8.46744353541378e-30,-2.38399577140808,6.65999889373779,-0.35059916973114,-2.23496174812317,6.65812683105469,-0.725294470787048,-2.20487284660339,6.60296058654785,-1.18116390705109,-2.30328869819641,6.5455961227417,-1.63165736198425,-2.57703590393066,6.41405296325684,-2.22827434539795,-3.09546685218811,6.13171005249023, +-2.80942678451538,-3.73151898384094,5.90092802047729,-3.29997563362122,-4.33814430236816,5.67074728012085,-3.71403884887695,-5.12747049331665,5.59133529663086,-4.04476928710938,-5.74061155319214,5.51424503326416,-4.19378137588501,-6.82378721237183,5.64273500442505,-4.11398839950562,-7.56185483932495,5.7414436340332,-3.79180479049683,-8.5201358795166,5.87921953201294,-3.26802968978882,-9.29712581634521,6.30210304260254,-2.64858508110046,-9.71415996551514,6.67280054092407,-2.15152645111084,-9.69162273406982,6.98374176025391,-1.62942981719971,-9.5609073638916,7.32720279693604,-1.17742097377777,-9.20002269744873,7.43883895874023,-0.727713644504547,-8.90883350372314,7.46596908569336,-0.342687785625458,-8.8439884185791,7.49247550964355,-7.04662934402686e-30,-8.90421962738037,7.51920700073242,2.00250458717346,0.523097336292267,8.87062835693359,2.1803252696991,0.847869992256165,9.01435661315918,2.45348072052002,1.07608306407928,9.161452293396,2.80429220199585,1.31502938270569,9.18416976928711,3.24503231048584,1.44207084178925,9.19375324249268,3.67122340202332,1.44853556156158,9.18338680267334,4.26905584335327,1.27608478069305,9.04033946990967,4.46412134170532,1.17421388626099,8.91200733184814,4.66720199584961,1.03999423980713,8.7421875,4.81066989898682,0.882382690906525,8.55978107452393,4.95971488952637,0.742477357387543,8.36825370788574,4.02485704421997,1.38145530223846,9.14638423919678,2.3384485244751,0.405811786651611,8.93466663360596,2.6356348991394,0.31831955909729,9.0864143371582,2.09942173957825,0.436015367507935,8.84390926361084,2.05044317245483,0.651455581188202,8.8955192565918,2.98736834526062,0.1971175968647,9.16323280334473,3.43918704986572,0.139508381485939,9.19739627838135,3.95783829689026,0.168413385748863,9.12354564666748,4.31833744049072,0.267997473478317,8.92407608032227,4.50838804244995,0.381670862436295,8.79480457305908,4.70505714416504,0.494918584823608,8.61862087249756,4.82556009292603,0.604517161846161,8.47788906097412,4.90757703781128,0.660237073898315,8.40587043762207,4.87714147567749,0.805868089199066,8.46089935302734, +0.612867474555969,-2.84146428108215,12.3725204467773,0.573357403278351,-2.41796708106995,12.1977033615112,0.307788580656052,-6.17764711380005,11.0916528701782,0.27788320183754,-5.46316385269165,11.4983806610107,2.88388824462891,-6.38666200637817,9.59838581085205,3.01232433319092,-6.26241874694824,9.62956809997559,2.68976449966431,-6.14416790008545,9.95242214202881,2.53629064559937,-6.35069847106934,9.90819454193115,2.03534626960754,-5.8695707321167,10.6358270645142,1.89314687252045,-6.30770111083984,10.4927043914795,1.58972299098969,-5.65780639648438,10.9632539749146,1.43242311477661,-6.25313091278076,10.8209323883057,1.16811096668243,-5.45607137680054,11.2142038345337,1.03693842887878,-6.18306255340576,10.9778051376343,0.696184992790222,-5.38955974578857,11.4173488616943,0.636731863021851,-6.1703519821167,11.0436429977417,2.22610545158386,-6.33429622650146,10.1983613967896,2.38717675209045,-6.02569723129272,10.3152656555176,3.06913900375366,-6.31856966018677,9.58637714385986,2.92493796348572,-6.38203716278076,9.58940601348877,3.10725355148315,-6.40046215057373,9.54837131500244,2.95995092391968,-6.39087057113647,9.57688808441162,3.04447412490845,-6.47598838806152,9.52670001983643,2.92498898506165,-6.40054750442505,9.57881355285645,2.94016814231873,-6.52099895477295,9.5333776473999,2.87621879577637,-6.40796041488647,9.5903263092041,2.52313947677612,-6.33868217468262,9.84605693817139,2.69279146194458,-6.66017436981201,9.66310024261475,2.22724604606628,-6.3073582649231,10.142279624939,2.3946521282196,-6.80120801925659,9.95035266876221,2.05429482460022,-6.88094758987427,10.3412046432495,1.88881361484528,-6.29249095916748,10.4364519119263,1.66398239135742,-6.92830801010132,10.7327871322632,1.43046736717224,-6.24330425262451,10.7743721008301,1.2295823097229,-6.96082162857056,11.0217695236206,1.03365302085876,-6.17286205291748,10.9232835769653,0.792382597923279,-7.00890779495239,11.1752309799194,0.638855695724487,-6.1550030708313,10.9844455718994,0.361502289772034,-7.04544830322266,11.2296466827393,0.300844103097916,-6.17233896255493,11.0172481536865, +0.313439041376114,-5.90708303451538,11.3804988861084,0.687595248222351,-5.85640096664429,11.3123264312744,1.12153744697571,-5.87813711166382,11.1626853942871,1.52839350700378,-5.99826812744141,10.9354515075684,1.97712695598602,-6.12062072753906,10.5866203308105,2.32052659988403,-6.21050262451172,10.2774066925049,2.62174916267395,-6.2708568572998,9.94662857055664,2.94667816162109,-6.33436727523804,9.62025833129883,2.99289202690125,-6.35576152801514,9.59438991546631,3.02804565429688,-6.39558076858521,9.56442451477051,2.97962355613708,-6.43441724777222,9.552321434021,2.90504670143127,-6.45967817306519,9.56263732910156,2.60630226135254,-6.51345777511597,9.78423309326172,2.33383083343506,-6.57768774032593,10.0790071487427,1.99195313453674,-6.60659170150757,10.4411182403564,1.55247259140015,-6.60837554931641,10.8338174819946,1.12587785720825,-6.59154176712036,11.0643281936646,0.736367702484131,-6.60497903823853,11.174243927002,0.350211471319199,-6.63875246047974,11.2318592071533,0.312198638916016,-6.09885263442993,11.2082319259644,0.65849494934082,-6.07557821273804,11.1555261611938,1.07063388824463,-6.08668661117554,11.0576696395874,1.46790826320648,-6.16639995574951,10.865086555481,1.92485785484314,-6.24488496780396,10.5290174484253,2.26285982131958,-6.29610013961792,10.2306890487671,2.56784725189209,-6.32526683807373,9.92364025115967,2.90726256370544,-6.37118482589722,9.60893154144287,2.94914817810059,-6.37407970428467,9.59291076660156,2.98377084732056,-6.39226961135864,9.57207298278809,2.94413900375366,-6.41239309310913,9.56943416595459,2.88625311851501,-6.42605400085449,9.58045768737793,2.55185914039612,-6.43077516555786,9.8532247543335,2.26913976669312,-6.42899513244629,10.1525249481201,1.92722964286804,-6.43308687210083,10.4699821472168,1.47508835792542,-6.40141725540161,10.8274221420288,1.06835699081421,-6.34831094741821,11.0089550018311,0.674103856086731,-6.3411545753479,11.0871620178223,0.31877875328064,-6.36249542236328,11.1326150894165,0.284675300121307,-4.78527355194092,11.064474105835,0.69200599193573,-4.67096376419067,11.0971984863281, +1.19090712070465,-4.65360689163208,10.8652582168579,1.60348856449127,-4.75072002410889,10.6199941635132,2.10041379928589,-4.94967794418335,10.3427619934082,2.44613099098206,-5.14300584793091,10.1451902389526,2.8578200340271,-5.40958213806152,9.8643798828125,3.37556910514832,-5.73150157928467,9.50794124603271,3.58002686500549,-6.09771537780762,9.38387775421143,3.58722949028015,-6.43206739425659,9.34090614318848,3.49604988098145,-6.72075796127319,9.3155574798584,3.29658842086792,-7.00609397888184,9.28319644927979,2.9785168170929,-7.27044200897217,9.33163547515869,2.63768124580383,-7.51720857620239,9.58832359313965,0.380467474460602,-7.70760488510132,10.9089078903198,0.809084534645081,-7.71715402603149,10.8271722793579,1.23778057098389,-7.68429851531982,10.6856832504272,1.71254646778107,-7.66423940658569,10.3976364135742,2.19258213043213,-7.62983465194702,10.0229711532593,0.276628792285919,-5.35581827163696,11.4545192718506,0.705096006393433,-5.26781606674194,11.3948183059692,1.17839825153351,-5.33313131332397,11.1846256256104,1.60780417919159,-5.53671407699585,10.9352722167969,2.04950284957886,-5.74241161346436,10.6099004745483,2.404132604599,-5.91182565689087,10.2938222885132,2.71651220321655,-6.05286550521851,9.95620918273926,3.07438540458679,-6.19183778762817,9.62782001495361,3.16906523704529,-6.29155683517456,9.56507015228271,3.23088574409485,-6.41314077377319,9.5117359161377,3.1863808631897,-6.56011343002319,9.4727258682251,3.04502534866333,-6.65838003158569,9.46447277069092,2.81204962730408,-6.82672548294067,9.53612422943115,2.47520732879639,-7.02757406234741,9.79769992828369,2.10015106201172,-7.16013097763062,10.2035999298096,1.69221985340118,-7.23757028579712,10.5777711868286,1.24376201629639,-7.28252696990967,10.8759183883667,0.797305047512054,-7.29007863998413,11.0503644943237,0.369253575801849,-7.32965230941772,11.1096782684326,0.276756882667542,-4.0905499458313,11.0596790313721,0.67881166934967,-4.02736043930054,10.9155769348145,1.11051142215729,-4.01060152053833,10.6648254394531,1.64762842655182,-4.08224010467529,10.4350128173828, +2.09704518318176,-4.20024442672729,10.1917724609375,2.41615009307861,-4.1494517326355,9.9251651763916,3.01657938957214,-4.68970441818237,9.58867073059082,3.59471702575684,-5.20025300979614,9.29252243041992,3.21058988571167,-7.73844718933105,9.12869644165039,3.61845064163208,-7.32958364486694,9.03243350982666,3.94498634338379,-6.91380882263184,8.91929626464844,4.10075044631958,-6.44372081756592,8.84724903106689,3.90626168251038,-5.81220817565918,9.08544826507568,0.444652616977692,-8.46575260162354,10.7486915588379,0.915312349796295,-8.41538047790527,10.604640007019,1.30731439590454,-8.41347980499268,10.4629573822021,1.7650842666626,-8.43077182769775,10.2372455596924,2.27534437179565,-8.34659004211426,9.86133289337158,2.79551029205322,-8.0594596862793,9.42021083831787,0.425872296094894,2.32587480545044,10.2930870056152,0.43096199631691,1.55000650882721,10.0067090988159,1.04734790325165,1.67354381084442,9.85422611236572,0.999846398830414,2.54404664039612,10.276873588562,1.76966321468353,2.1059410572052,9.88949108123779,1.53380644321442,2.77825474739075,10.2362470626831,2.76184272766113,2.41657900810242,9.69988441467285,2.67940044403076,3.13047909736633,9.95404052734375,3.47613048553467,2.64268088340759,9.45586490631104,3.44323205947876,3.38297891616821,9.62023067474365,4.33117389678955,3.50773024559021,9.10658740997314,4.22233247756958,2.80594253540039,9.07201480865479,4.98590421676636,2.7533905506134,8.45626640319824,5.24787616729736,3.33925271034241,8.3605260848999,5.53613471984863,2.60515975952148,7.89962482452393,5.91983318328857,3.1857442855835,7.45482158660889,6.33480310440063,1.57071208953857,6.57897233963013,6.65199041366577,1.82838404178619,5.99423789978027,6.63125801086426,0.622930347919464,6.38999462127686,6.9053897857666,0.61238819360733,5.7659649848938,6.39516115188599,-0.506458342075348,7.06213998794556,6.64986753463745,-0.835367441177368,6.62848615646362,5.98848962783813,-1.08541309833527,7.54887008666992,6.17566585540771,-1.47442102432251,7.3322925567627,4.84235572814941,-1.58707356452942,8.6058292388916, +4.92961406707764,-1.98827040195465,8.5404806137085,3.64678597450256,-1.65746462345123,9.26278972625732,3.70411777496338,-2.01732301712036,9.30448246002197,2.15958499908447,-1.37878262996674,9.64071941375732,1.9706484079361,-1.79273068904877,9.81274509429932,1.53634750843048,-0.979715883731842,9.77910423278809,1.34802424907684,-1.28716385364532,9.99973106384277,1.02397525310516,-0.224725618958473,9.89264297485352,0.837064206600189,-0.76677805185318,10.2936544418335,0.467166692018509,0.416704267263412,10.3221864700317,0.487908393144608,-0.270563900470734,10.7006483078003,6.32265472412109,2.55504369735718,6.62416315078735,5.98125886917114,2.08447551727295,7.19541788101196,6.84452104568481,1.11277878284454,5.71848392486572,6.53752183914185,1.05508756637573,6.37544107437134,6.62306833267212,0.118500046432018,6.59562110900879,6.88577032089233,-0.0171589571982622,6.05382061004639,5.55053091049194,-1.80561172962189,8.01396942138672,5.43741226196289,-1.40401816368103,8.1262674331665,4.29575395584106,-2.05251741409302,8.97702884674072,4.23330163955688,-1.66833567619324,8.98032665252686,2.93638849258423,-1.92973792552948,9.59064674377441,2.95425868034363,-1.56733691692352,9.50070571899414,0.429825216531754,0.769897937774658,10.1320953369141,0.879478275775909,0.517569661140442,9.87677955627441,0.403805494308472,1.20479547977448,9.97864055633545,0.9251429438591,1.07852721214294,9.79307174682617,2.05242586135864,2.95342707633972,10.1323146820068,2.23605561256409,2.25964021682739,9.80658435821533,1.45362198352814,-11.7220678329468,7.7457275390625,1.94249081611633,-10.8492479324341,9.66497802734375,2.23401498794556,-11.4141616821289,6.82130861282349,2.9442195892334,-10.289511680603,8.61220836639404,3.3287296295166,-10.7363042831421,5.61752510070801,4.08768844604492,-9.56369495391846,7.49050807952881,4.52266502380371,-9.69620513916016,4.03538227081299,5.25208854675293,-8.46740245819092,6.01705121994019,5.33507013320923,-8.60435485839844,2.59424519538879,6.02868509292603,-7.47059488296509,4.59234189987183,6.32686614990234,-6.46139526367188,0.429285854101181, +7.02103042602539,-5.51866674423218,2.56458020210266,6.63314819335938,-5.30487203598022,0.0010362071916461,7.25274801254272,-4.77190494537354,1.96178865432739,3.95017671585083,-10.2369813919067,4.8523736000061,4.74571561813354,-8.97711849212646,6.75745153427124,6.021080493927,-7.48551464080811,1.18661463260651,6.66051816940308,-6.29175806045532,3.25183725357056,1.73911499977112,-11.4775247573853,8.91175746917725,2.71912884712219,-11.0005769729614,7.93533086776733,3.90698981285095,-10.3431310653687,6.69309139251709,4.62629699707031,-9.8087100982666,5.87688064575195,5.27568769454956,-9.25722026824951,5.02403020858765,6.11723518371582,-8.20479583740234,3.56808972358704,6.7800464630127,-7.01846075057983,2.29027032852173,7.11960554122925,-6.10610914230347,1.63720464706421,7.240159034729,-5.08808755874634,1.14679479598999,1.94618821144104,-3.18484139442444,10.1206188201904,1.97128963470459,-2.90788984298706,10.7209405899048,1.94551062583923,-3.20075631141663,10.7982311248779,2.00889849662781,-3.41766905784607,10.2430095672607,1.7797863483429,-3.13145756721497,11.2094554901123,1.76743566989899,-2.75292801856995,11.1367645263672,1.35704243183136,-2.69259023666382,11.5846138000488,1.43729317188263,-3.04925537109375,11.6452779769897,0.957599997520447,-2.5337507724762,11.9536142349243,1.05197191238403,-2.97319483757019,11.9926862716675,2.02442502975464,-3.48149967193604,10.1782827377319,1.93077278137207,-3.22494912147522,10.0023813247681,2.49771618843079,-3.64891219139099,9.77677917480469,3.13752794265747,-4.04087781906128,9.50779151916504,3.86252784729004,-4.52816295623779,9.05229377746582,4.25440549850464,-5.53818321228027,8.71383094787598,4.41148996353149,-6.44228935241699,8.42195892333984,4.20885419845581,-7.09721517562866,8.5288782119751,3.84948968887329,-7.69750642776489,8.69057750701904,3.31767225265503,-8.14998245239258,8.95892429351807,2.86092782020569,-8.52286148071289,9.32379150390625,2.36147665977478,-8.81789588928223,9.79014587402344,1.83445572853088,-8.980637550354,10.2019166946411,1.37862408161163,-9.06450653076172,10.4849948883057, +0.945417165756226,-9.10431480407715,10.6932220458984,0.484645694494247,-9.14574718475342,10.8382930755615,0.430151402950287,-3.78667140007019,11.3200263977051,0.31240439414978,-3.9879150390625,11.2228012084961,0.433737486600876,-3.95183396339417,11.0838260650635,0.489092797040939,-3.77038264274597,11.0934047698975,0.41869729757309,-3.78461003303528,11.4987316131592,0.247211992740631,-4.00004863739014,11.5239992141724,0.454335004091263,-3.75801396369934,11.6749477386475,0.283114284276962,-3.95747375488281,11.842845916748,0.574335277080536,-3.66264176368713,11.8285436630249,0.421341925859451,-3.81621551513672,12.0895528793335,0.667752385139465,-3.55119466781616,11.8290967941284,0.707025825977325,-3.56791067123413,12.0749969482422,0.909563183784485,-3.39562368392944,11.6751489639282,1.00950145721436,-3.40489506721497,11.8691806793213,1.12229108810425,-3.39301753044128,11.4634742736816,1.31509912014008,-3.36950826644897,11.5583591461182,1.36684727668762,-3.45196676254272,11.1405000686646,1.57666385173798,-3.42707967758179,11.2034111022949,1.35198771953583,-3.51235747337341,10.7937679290771,1.63818895816803,-3.65421390533447,10.6730480194092,0.907981216907501,-3.52404284477234,10.6590929031372,1.13959503173828,-3.8009729385376,10.6044645309448,0.723991096019745,-3.83734226226807,10.8534164428711,0.628357768058777,-3.66664671897888,10.8592538833618,1.11344730854034,-3.48829293251038,10.6497144699097,1.33004474639893,-3.70043134689331,10.5921859741211,0.417708903551102,-3.86824345588684,11.3096218109131,0.403553485870361,-3.87896728515625,11.5108289718628,0.433234870433807,-3.84975433349609,11.7220306396484,0.573271989822388,-3.72333216667175,11.9117679595947,0.716645300388336,-3.58857870101929,11.9157276153564,0.968578040599823,-3.44254612922668,11.7576866149902,1.19751727581024,-3.4263961315155,11.5060796737671,1.42638289928436,-3.46274399757385,11.1732931137085,1.44592905044556,-3.57288765907288,10.760458946228,1.18683660030365,-3.55860686302185,10.6275644302368,0.953868925571442,-3.61475777626038,10.643669128418,0.660096526145935,-3.72439980506897,10.8566188812256, +0.489717900753021,-3.83477926254272,11.089243888855,0.479629516601563,-3.88807821273804,11.0792551040649,0.687838196754456,-3.77360796928406,10.8551158905029,0.995428740978241,-3.69183301925659,10.6374979019165,1.24929904937744,-3.6197030544281,10.6106510162354,1.52868103981018,-3.61772704124451,10.72838306427,1.50280821323395,-3.4557158946991,11.1831607818604,1.26123416423798,-3.40934896469116,11.5390434265137,0.991897165775299,-3.44237518310547,11.806586265564,0.728786766529083,-3.58758544921875,11.976110458374,0.544238805770874,-3.75784301757813,11.9454545974731,0.409747779369354,-3.88429713249207,11.7604866027832,0.360714197158813,-3.92862391471863,11.5188732147217,0.38519811630249,-3.92065572738647,11.2734355926514,0.252279996871948,-4.04671478271484,11.1392526626587,0.633074402809143,-3.48106217384338,12.2321043014526,1.02539217472076,-3.32593989372253,11.9404153823853,1.0434935092926,-3.16545557975769,11.9897842407227,0.616223990917206,-3.23225545883179,12.3577098846436,1.40687966346741,-3.19337606430054,11.6333608627319,1.36244785785675,-3.29978179931641,11.5985717773438,1.64664626121521,-3.37046957015991,11.2223606109619,1.72023391723633,-3.27146601676941,11.2224884033203,1.41606211662292,-3.48503565788269,11.020432472229,1.49248671531677,-3.5147180557251,10.9738712310791,1.58364152908325,-3.53157305717468,10.9414367675781,1.68115997314453,-3.51594638824463,10.9130373001099,1.77041971683502,-3.4666850566864,10.8845643997192,1.85930991172791,-3.36821532249451,10.8499345779419,1.78209567070007,-3.66406202316284,10.5616931915283,1.9301050901413,-3.58496809005737,10.4145889282227,1.66880071163177,-3.78059339523315,10.5170078277588,1.92606604099274,-3.68454837799072,10.3536720275879,1.63955330848694,-3.87362623214722,10.4728975296021,1.95321905612946,-3.7497034072876,10.301025390625,2.06556057929993,-3.50481677055359,10.0877923965454,1.99168121814728,-3.2921404838562,9.94458484649658,2.01186370849609,-3.04351902008057,10.3697299957275,1.99431753158569,-3.34384107589722,10.4826154708862,1.91239500045776,-3.48304843902588,10.581241607666, +1.7989376783371,-3.5718195438385,10.6710205078125,1.68732678890228,-3.59484815597534,10.7522840499878,1.57070767879486,-3.58308815956116,10.8103818893433,1.47289800643921,-3.54480695724487,10.8580741882324,1.38528525829315,-3.49304604530334,10.9014539718628,0.522467374801636,-1.7358261346817,11.6646327972412,0.853272676467896,-1.92324829101563,11.4484043121338,1.10606229305267,-2.10395193099976,11.1008491516113,0.493669390678406,-1.30989372730255,11.3746156692505,0.809532463550568,-1.55523955821991,11.0692300796509,1.07536733150482,-1.88525521755219,10.7500648498535,0.499034911394119,-0.950579583644867,11.1278257369995,0.823213994503021,-1.29103064537048,10.7952833175659,1.13685464859009,-1.72631943225861,10.4549140930176,0.525806367397308,-1.99147951602936,11.8923997879028,0.906700909137726,-2.13356018066406,11.6390428543091,1.19228196144104,-2.32023453712463,11.3356132507324,1.77341294288635,-2.96184706687927,9.9596471786499,1.81124925613403,-2.91073107719421,10.0682592391968,1.59632623195648,-2.55080437660217,9.98704051971436,1.65940880775452,-2.58622694015503,10.0822715759277,1.48018991947174,-2.27519178390503,10.1393747329712,1.5716644525528,-2.40248966217041,10.1943159103394,1.35658383369446,-2.17649793624878,10.5437431335449,1.53692555427551,-2.28125858306885,10.5680904388428,1.30849456787109,-2.20981240272522,10.8322582244873,1.45997536182404,-2.3338098526001,10.9546804428101,1.77090895175934,-2.57009840011597,10.2757930755615,1.67047643661499,-2.4525842666626,10.2923936843872,1.89677250385284,-2.75604653358459,10.2793006896973,1.91196882724762,-2.68166303634644,10.6179141998291,1.82524788379669,-2.52532291412354,10.5684604644775,1.69814610481262,-2.39185118675232,10.5556602478027,1.65198802947998,-2.38608336448669,10.8005218505859,1.83476006984711,-2.63304233551025,10.8799295425415,0.538437187671661,-2.19871520996094,12.0575828552246,0.939602255821228,-2.3243362903595,11.8041162490845,1.26125860214233,-2.47660660743713,11.4658508300781,1.56867337226868,-2.51121354103088,11.1137351989746,1.74597990512848,-2.50036120414734,10.8550329208374, +1.8600435256958,-2.94770526885986,9.90234756469727,1.66260206699371,-2.52715635299683,9.93363285064697,1.52901208400726,-2.14440107345581,10.0297889709473,1.18435442447662,-1.55190682411194,10.2380456924438,0.493864685297012,-0.656538128852844,10.9330472946167,0.823825776576996,-1.04610085487366,10.5608949661255,2.17098832130432,-2.45336031913757,9.82688522338867,2.45258784294128,-3.13287377357483,9.80207538604736,3.0134608745575,-2.57700514793396,9.59614562988281,3.12375903129578,-3.26103687286377,9.54150676727295,3.76545405387878,-2.67373323440552,9.27077484130859,3.80718517303467,-3.4109890460968,9.16203594207764,4.40852451324463,-2.72864508628845,8.88379764556885,4.47413015365601,-3.53251934051514,8.71166706085205,4.58353710174561,-4.46132040023804,8.47084808349609,5.13119459152222,-3.46025061607361,8.07415962219238,5.0813307762146,-2.65648317337036,8.3512020111084,5.76414632797241,-3.17410206794739,7.3101282119751,5.73970794677734,-2.41437315940857,7.70609283447266,6.36890077590942,-2.63990521430969,6.42838335037231,6.35044479370117,-1.95564937591553,6.92472505569458,6.89743947982788,-1.81760597229004,5.49506139755249,6.84193229675293,-1.22105288505554,6.05735206604004,7.29474830627441,-0.792417943477631,4.60285806655884,7.13602781295776,-0.210006877779961,5.24569892883301,5.20545673370361,-4.29827260971069,7.69921255111694,6.30885076522827,-3.40991997718811,5.83514070510864,5.73544311523438,-3.94613575935364,6.78741598129272,6.89638471603394,-2.61104416847229,4.82495212554932,4.73759174346924,-5.38083934783936,8.1663703918457,6.3010573387146,-4.04897356033325,5.32221126556396,5.72612047195435,-4.7100510597229,6.30829238891602,5.26458787918091,-5.13295125961304,7.31941175460815,5.76102781295776,-5.33404397964478,5.89009571075439,6.31455850601196,-4.62396097183228,4.94708442687988,5.32754421234131,-5.80997514724731,6.88414812088013,4.87168550491333,-6.17238759994507,7.78334760665894,4.72261619567871,-6.91689586639404,7.8189582824707,5.14740514755249,-6.68267869949341,7.0530309677124,5.49074172973633,-6.30471515655518,6.21001148223877, +5.88891887664795,-5.83466958999634,5.39093065261841,4.4567985534668,-7.43630933761597,8.02381706237793,4.63893795013428,-8.18760967254639,7.36468935012817,5.02923059463501,-7.73272132873535,6.85509061813354,3.9799268245697,-8.09740734100342,8.34194087982178,4.05577087402344,-8.76449871063232,7.94083404541016,2.73335933685303,-11.1102619171143,6.25578022003174,3.27162933349609,-10.7124099731445,7.34949636459351,3.49031758308411,-9.97497272491455,8.05880641937256,3.4200394153595,-8.63992500305176,8.71746921539307,3.48466086387634,-9.2441577911377,8.43512535095215,2.93274664878845,-9.02222633361816,9.1695499420166,2.96490597724915,-9.60867500305176,8.95022678375244,1.81894302368164,-11.6068286895752,7.34164953231812,2.2406964302063,-11.2564973831177,8.45750617980957,2.45543622970581,-10.5916509628296,9.17394256591797,2.48912644386292,-9.93205738067627,9.49641418457031,2.44218945503235,-9.33296298980713,9.68772220611572,1.9356302022934,-9.55088329315186,10.1522846221924,1.99605703353882,-10.1815195083618,9.99641609191895,1.07314682006836,-11.8290281295776,8.03556251525879,1.30664241313934,-11.5927209854126,9.21349239349365,1.41123855113983,-10.9835996627808,10.008246421814,0.697075426578522,-11.9222002029419,8.16154384613037,0.862486779689789,-11.6653308868408,9.4068660736084,0.957686126232147,-11.0725841522217,10.1917762756348,0.979436457157135,-9.77400207519531,10.7076902389526,1.45681405067444,-9.6838207244873,10.4830656051636,1.46009147167206,-10.3361186981201,10.3605632781982,0.967066764831543,-10.4287242889404,10.5808334350586,0.34590008854866,-11.9817800521851,8.21766662597656,0.443739801645279,-11.7049903869629,9.47061729431152,0.493437677621841,-11.1157894134521,10.3029832839966,0.519946038722992,-9.8292236328125,10.8470029830933,0.534429669380188,-10.4475450515747,10.7151002883911,5.36939191818237,-7.30701303482056,6.20235872268677,5.73494005203247,-6.86049842834473,5.45113849639893,4.99795055389404,-9.16009712219238,3.26559519767761,5.78187608718872,-8.70682048797607,4.26101684570313,5.66574621200562,-7.97111368179321,5.29952907562256, +6.09138679504395,-6.36887693405151,4.76351118087769,5.6676721572876,-8.0396203994751,1.89302062988281,6.43482160568237,-7.64638471603394,2.92747402191162,6.33894872665405,-6.92183923721313,3.90507936477661,6.48305702209473,-5.72916030883789,3.98363208770752,6.37685298919678,-5.15239000320435,4.52602291107178,6.88704538345337,-4.96970891952515,3.19840002059937,6.81757068634033,-4.40107679367065,3.68997001647949,6.81606912612915,-3.81580328941345,4.09708595275879,6.84777498245239,-3.22725057601929,4.46643877029419,7.18535327911377,-4.31236982345581,2.4699010848999,7.18254566192627,-3.75510191917419,2.80865120887756,7.25807476043701,-3.04372644424438,3.15227556228638,7.29280519485474,-2.43727207183838,3.5564558506012,7.30056953430176,-1.70985400676727,4.08368492126465,2.13080024719238,0.846733927726746,9.08304214477539,2.4075231552124,1.0910918712616,9.22318649291992,2.7798764705658,1.31168913841248,9.25911140441895,3.23057770729065,1.45032131671906,9.27368450164795,3.6667218208313,1.48284089565277,9.24890232086182,4.05035209655762,1.41976118087769,9.20368957519531,4.32982730865479,1.32917714118958,9.08128929138184,4.53223371505737,1.22235369682312,8.94384860992432,4.73985481262207,1.08054959774017,8.76476669311523,4.89786958694458,0.899876236915588,8.54976654052734,4.96825695037842,0.804138839244843,8.43973159790039,5.06172609329224,0.722355782985687,8.31211757659912,4.99963998794556,0.625196635723114,8.34968185424805,4.89068698883057,0.534760415554047,8.44810199737549,4.75297212600708,0.408790707588196,8.59839725494385,4.56429100036621,0.275824129581451,8.82272434234619,4.35178995132446,0.15977381169796,8.95899772644043,3.99084138870239,0.0400360375642776,9.16523838043213,3.42717671394348,0.0103091010823846,9.2322301864624,2.96751356124878,0.0846365392208099,9.18136787414551,2.5992534160614,0.215923324227333,9.10888767242432,2.28353071212769,0.310704678297043,8.96965408325195,2.04632449150085,0.387153416872025,8.91485786437988,1.94327366352081,0.477953970432281,8.93542671203613,2.0019154548645,0.601553738117218,8.97407341003418, +1.82606780529022,0.425195068120956,9.02849292755127,1.94637560844421,0.267760902643204,8.98511219024658,2.19556713104248,0.117519222199917,9.01692581176758,2.53517818450928,0.0180125702172518,9.15310001373291,2.92958283424377,-0.096157431602478,9.21659088134766,3.40226888656616,-0.179042667150497,9.27159404754639,4.02996778488159,-0.135790064930916,9.18951034545898,4.39430809020996,-0.0576469674706459,8.98507499694824,4.63278818130493,0.063075989484787,8.81034183502197,4.86522674560547,0.208934277296066,8.57377910614014,5.05951166152954,0.398431032896042,8.36294651031494,5.176429271698,0.59698885679245,8.26522159576416,5.25054693222046,0.72034078836441,8.25850200653076,5.1321759223938,0.826757729053497,8.36796283721924,4.96290016174316,0.930249989032745,8.521728515625,4.80038738250732,1.12754559516907,8.7447566986084,4.59049987792969,1.29811096191406,8.93041038513184,4.38300609588623,1.42221236228943,9.06650352478027,4.06924533843994,1.49937987327576,9.21281051635742,3.65559577941895,1.57259845733643,9.27884292602539,3.20719790458679,1.53071010112762,9.30834293365479,2.74346256256104,1.37497365474701,9.28725337982178,2.35645914077759,1.14113700389862,9.26392364501953,2.00835084915161,0.935280203819275,9.16294288635254,1.8718489408493,0.605570733547211,9.06727695465088,1.65030658245087,0.671867072582245,9.2253360748291,1.86891555786133,1.02495515346527,9.20147228240967,2.22829532623291,1.28863406181335,9.28656959533691,2.64501571655273,1.54854226112366,9.30581092834473,3.13075542449951,1.7376880645752,9.32150840759277,3.60988283157349,1.80529999732971,9.28125381469727,4.08396816253662,1.76181972026825,9.17926788330078,4.51367282867432,1.67156505584717,9.00986099243164,4.81332302093506,1.51568841934204,8.84179878234863,5.057776927948,1.26006722450256,8.61880111694336,5.25726795196533,1.02724695205688,8.40564250946045,5.42085838317871,0.871191680431366,8.25228309631348,5.48115587234497,0.725010991096497,8.13500881195068,5.51753902435303,0.520317792892456,8.08371448516846,5.43042373657227,0.227402254939079,8.12164783477783, +5.24159479141235,-0.112414427101612,8.37997150421143,4.86105394363403,-0.341683715581894,8.62365913391113,4.55123424530029,-0.463471502065659,8.84008312225342,4.06123352050781,-0.511286079883575,9.04019546508789,3.41040086746216,-0.562518298625946,9.17583847045898,2.88614726066589,-0.482838451862335,9.16528701782227,2.44955205917358,-0.372908562421799,9.19193172454834,2.07176208496094,-0.20919594168663,9.14170551300049,1.79903078079224,0.0815637186169624,9.13233947753906,1.61881947517395,0.376979231834412,9.23736095428467,2.25934982299805,1.98647451400757,9.56895160675049,1.77149403095245,1.6973659992218,9.60889625549316,1.26516020298004,1.37100028991699,9.66737365722656,1.10119354724884,0.884818077087402,9.65639591217041,1.04085326194763,0.437824785709381,9.68349742889404,1.2532776594162,-0.197685584425926,9.63908004760742,1.75755894184113,-0.73046350479126,9.50579166412354,2.28692698478699,-1.02964699268341,9.41224098205566,2.90903306007385,-1.23569202423096,9.36333274841309,3.54473090171814,-1.31134057044983,9.20099544525146,4.15957069396973,-1.30111992359161,8.99509239196777,4.7551851272583,-1.20994389057159,8.70662403106689,5.34941339492798,-1.02330887317657,8.29789924621582,5.78118515014648,-0.635276556015015,7.92719411849976,6.18555974960327,-0.231884062290192,7.52792692184448,6.37773370742798,0.254486232995987,7.18082475662231,6.38863563537598,0.617636144161224,7.03204250335693,6.27822017669678,0.939470767974854,7.0661735534668,6.063720703125,1.30925905704498,7.25209331512451,5.73361825942993,1.75249123573303,7.72359085083008,5.32628870010376,2.20392942428589,8.21280860900879,4.86676073074341,2.46570181846619,8.59469509124756,4.1407265663147,2.50684332847595,9.0148286819458,3.45093727111816,2.38413262367249,9.30954551696777,2.79624772071838,2.2352466583252,9.46375560760498,2.83901786804199,2.08524942398071,9.2555103302002,3.44496965408325,2.18608832359314,9.20444011688232,4.0905556678772,2.18392658233643,9.02815055847168,4.69399118423462,2.0691933631897,8.79999828338623,5.07874870300293,1.84557151794434,8.53394603729248, +5.43395280838013,1.49232399463654,8.21975135803223,5.73813533782959,1.13587653636932,7.95513153076172,5.88583660125732,0.86798357963562,7.77510261535645,5.95736503601074,0.66277140378952,7.71622705459595,5.95411443710327,0.431409955024719,7.73444366455078,5.84463500976563,0.0337066166102886,7.84447240829468,5.54838943481445,-0.355836808681488,8.13446712493896,5.20931720733643,-0.691812336444855,8.40687465667725,4.61271047592163,-0.816669166088104,8.77346420288086,4.09506893157959,-0.890204727649689,8.98448753356934,3.4725034236908,-0.923985183238983,9.13625144958496,2.88430690765381,-0.873924672603607,9.26791572570801,2.37831354141235,-0.724734604358673,9.24971771240234,1.91534018516541,-0.458017349243164,9.32759475708008,1.58383190631866,-0.131477728486061,9.35623550415039,1.35541367530823,0.372541576623917,9.40586090087891,1.35380601882935,0.761859178543091,9.43727493286133,1.48790740966797,1.21861588954926,9.44262886047363,1.79328060150146,1.53133583068848,9.38883018493652,2.29799556732178,1.82233583927155,9.33708190917969,0.462224692106247,3.33067202568054,10.3590888977051,0.814615190029144,3.3988926410675,10.3388633728027,1.29072225093842,3.64332008361816,10.2444944381714,1.90567791461945,3.94242453575134,10.068943977356,2.71756935119629,4.27787017822266,9.74560165405273,3.5896418094635,4.50379800796509,9.27270317077637,4.52239942550659,4.54819965362549,8.65837001800537,5.49783897399902,4.30548095703125,7.87937784194946,6.1940770149231,3.66569113731384,6.67138481140137,6.67714881896973,2.75051999092102,5.63913249969482,6.94185256958008,1.86184823513031,5.19958114624023,7.05338573455811,1.10372149944305,5.06734561920166,7.09344339370728,0.526106119155884,5.14863300323486,8.40617752075195,0.0556241795420647,0.640909492969513,8.2239294052124,0.280366152524948,1.11804068088531,8.00922012329102,-0.608444571495056,1.27154958248138,8.30598258972168,-0.53821587562561,0.73651534318924,8.5859317779541,0.655787527561188,0.402613759040833,8.34269523620605,0.900962591171265,0.806322634220123,8.77970123291016,1.21920776367188,0.0404710918664932, +8.57863712310791,1.52623748779297,0.339597314596176,9.28165245056152,1.6613222360611,-0.547914326190948,9.02072334289551,2.09513688087463,-0.276704102754593,9.57998657226563,1.66829705238342,-1.06967425346375,9.36645793914795,2.22241401672363,-1.2177392244339,9.64610004425049,1.5166996717453,-1.43420970439911,9.43434143066406,1.93145954608917,-1.80604302883148,9.52598857879639,0.681540608406067,-2.07179546356201,9.47312164306641,0.759064555168152,-2.47445297241211,9.43591594696045,0.0512671656906605,-2.09960103034973,9.43670272827148,0.0287300813943148,-2.55825424194336,9.37417793273926,-0.695516228675842,-2.01381659507751,9.34363555908203,-0.790418148040771,-2.51949238777161,9.25639152526855,-1.4842768907547,-1.80209052562714,9.15201377868652,-1.73476028442383,-2.35918831825256,8.99237155914307,-2.21868085861206,-1.4315003156662,8.93394088745117,-2.67437076568604,-1.9970782995224,8.71511077880859,-2.78971648216248,-0.737185418605804,8.65053176879883,-3.32020664215088,-1.24940729141235,8.39547061920166,-3.04587244987488,-0.017298486083746,8.38211822509766,-3.81003403663635,-0.433070152997971,8.11442089080811,-3.1936354637146,0.525815308094025,8.23675060272217,-4.10207796096802,0.121550187468529,7.73840141296387,-3.19897651672363,0.958669364452362,8.11107063293457,-4.12815093994141,0.481665849685669,8.24604320526123,-0.577287614345551,0.995464026927948,8.42463302612305,0.153164371848106,0.894347965717316,8.59025955200195,0.753413140773773,0.629709839820862,8.78072452545166,1.29346311092377,0.247597619891167,9.26115608215332,1.83518981933594,-0.359960824251175,9.71281242370605,1.92458057403564,-1.06940853595734,9.84065628051758,1.72258961200714,-1.52044475078583,9.85390186309814,0.780522882938385,-2.24550247192383,9.74722957611084,0.0391654707491398,-2.26296758651733,9.68539142608643,-0.773595452308655,-2.20587778091431,9.56930541992188,-1.67190170288086,-2.10549640655518,9.34415531158447,-2.54098463058472,-1.74549722671509,8.89970874786377,-3.18234515190125,-0.963524997234344,8.5346508026123,-3.57418370246887,-0.0667138397693634, +8.26699352264404,-3.55714726448059,0.468929708003998,7.96421432495117,-3.54026079177856,0.819772362709045,7.92740678787231,0.707088768482208,1.58156073093414,7.75378227233887,0.00106443359982222,1.93271040916443,8.05583763122559,1.20495855808258,1.22469758987427,8.14210319519043,1.61750769615173,0.71096408367157,8.16171169281006,1.7912689447403,-0.287664800882339,8.22274780273438,1.68595325946808,-1.28933835029602,8.29430675506592,1.49998390674591,-1.83284974098206,8.38248062133789,0.689188420772552,-2.5513768196106,8.27509498596191,0.0865578576922417,-2.61773252487183,8.13198947906494,-0.640048921108246,-2.55151271820068,7.99686002731323,-1.46767807006836,-2.29771852493286,7.82757043838501,-2.35106301307678,-1.98396968841553,7.72032737731934,-3.2160120010376,-1.51325237751007,7.59922313690186,-3.5660548210144,-0.895240902900696,7.25170183181763,-3.8191237449646,-0.080264575779438,7.26813745498657,-4.07855844497681,0.522395431995392,7.39384269714355,-3.19537711143494,1.42772626876831,7.82979583740234,-0.364156097173691,1.67531418800354,8.06924343109131,0.483809947967529,1.41093015670776,8.21260833740234,1.04184699058533,1.06150698661804,8.34437274932861,1.51545989513397,0.578359603881836,8.4775562286377,1.86450958251953,-0.338869124650955,8.63701915740967,1.86411488056183,-1.27927339076996,8.77889823913574,1.61289417743683,-1.75693702697754,8.80913734436035,0.637523710727692,-2.40572357177734,8.71837043762207,-0.017295029014349,-2.48584079742432,8.5960578918457,-0.765541732311249,-2.38860511779785,8.45878791809082,-1.60163044929504,-2.1997697353363,8.2514705657959,-2.47778415679932,-1.95846939086914,8.06235027313232,-3.24343061447144,-1.37888097763062,7.85416507720947,-3.58851766586304,-0.519060909748077,7.66326284408569,-3.90234065055847,0.0622665882110596,7.58291912078857,-4.06812286376953,0.609413862228394,7.50888061523438,-3.25812888145447,1.0896703004837,9.6566915512085,1.19088184833527,-1.8183753490448,9.8843297958374,1.36798620223999,-1.91549408435822,9.49132633209229,1.44061803817749,-2.22823238372803,8.83131885528564,1.17665469646454,-2.18280220031738, +8.40206527709961,1.12513959407806,-2.4439435005188,9.01280212402344,1.49861598014832,-0.319701880216599,9.02793121337891,1.62811434268951,-0.0880535915493965,8.84053993225098,1.87228548526764,0.0113955168053508,8.40198230743408,1.71313631534576,0.0522712357342243,8.17350292205811,1.92774200439453,0.153999537229538,9.4269962310791,1.69028949737549,-0.776199698448181,9.4942569732666,1.9344927072525,-0.656897306442261,9.22696495056152,2.24933004379272,-0.656028389930725,8.54333114624023,1.91815054416656,-0.774208903312683,8.18119716644287,1.72784447669983,-0.726136386394501,8.10354804992676,-0.598297476768494,1.16011381149292,8.31211471557617,0.242779210209846,1.04209768772125,8.44231128692627,0.849660992622375,0.760851383209229,8.68196392059326,1.44033968448639,0.326292425394058,8.93920707702637,1.78261721134186,-0.00371122895739973,9.13998317718506,2.00292658805847,-0.288590103387833,9.37794971466064,2.15835881233215,-0.628212511539459,9.61817836761475,2.14706921577454,-1.13845789432526,9.76637268066406,1.89847612380981,-1.67890346050262,9.82252788543701,1.48246681690216,-2.14551758766174,9.74726104736328,0.808005571365356,-2.43034744262695,9.63255500793457,0.0417290292680264,-2.51027631759644,9.53864860534668,-0.784126937389374,-2.48973345756531,9.41425514221191,-1.7335319519043,-2.31286644935608,9.21683597564697,-2.66384983062744,-1.88666462898254,8.82225894927979,-3.3023157119751,-1.12605535984039,8.54668235778809,-3.78704833984375,-0.253021776676178,8.30999088287354,-3.96418452262878,0.349801331758499,8.05904769897461,-3.93425583839417,0.676900088787079,7.4086275100708,-3.83309531211853,1.00440299510956,7.32185649871826,-3.9814350605011,1.05311250686646,7.92891502380371,-0.533270716667175,1.40354931354523,8.16231250762939,0.280846804380417,1.16930663585663,8.29424476623535,0.902041375637054,0.837104439735413,8.45930671691895,1.44476139545441,0.432716220617294,8.60464096069336,1.82067406177521,0.0668165907263756,8.73596572875977,2.04094076156616,-0.317817211151123,8.86012554168701,2.12431836128235,-0.757209897041321, +9.0003023147583,2.05361986160278,-1.26446914672852,9.0885534286499,1.78043866157532,-1.78648042678833,9.17437839508057,1.32840192317963,-2.20067262649536,9.15705299377441,0.701567888259888,-2.45905184745789,9.10205268859863,-0.0197196360677481,-2.52215170860291,8.9765100479126,-0.817377388477325,-2.44046878814697,8.7988338470459,-1.69314658641815,-2.28348827362061,8.5914888381958,-2.63403868675232,-2.05287599563599,8.39008140563965,-3.30210208892822,-1.32934653759003,8.14418983459473,-3.73202967643738,-0.520102441310883,7.99722480773926,-4.02059173583984,0.0193376336246729,7.83655786514282,-4.15941476821899,0.57631641626358,7.79645156860352,-3.87085318565369,0.891090989112854,7.76105070114136,-3.61150407791138,0.96287477016449,7.60530471801758,-2.64006400108337,1.13854217529297,7.82325553894043,-2.67202138900757,0.606558561325073,7.97257232666016,-2.59800100326538,0.232179641723633,8.29879283905029,-2.29580998420715,-0.437075525522232,8.63137722015381,-1.96803712844849,-0.847795426845551,8.98237133026123,-1.40080368518829,-1.35610711574554,9.12864112854004,-0.640572488307953,-1.67632460594177,9.04624366760254,0.000659702287521213,-1.60365033149719,8.97405529022217,0.927655398845673,-1.26031458377838,8.96565628051758,0.479196697473526,-1.573317527771,9.05311107635498,1.3847017288208,-0.999665081501007,8.68396186828613,1.02303791046143,-0.437540769577026,8.54509925842285,0.540164172649384,0.0178523622453213,8.32595443725586,-0.00530096469447017,0.189795896410942,8.13072490692139,-0.472302228212357,0.0815707743167877,8.88009262084961,0.661886811256409,-0.813444375991821,8.87235355377197,0.190655842423439,-1.02402782440186,8.87643718719482,-0.164214730262756,-1.0551974773407,8.77584648132324,-0.698870480060577,-1.18805432319641,8.56459808349609,-1.25547587871552,-1.12378418445587,8.17762088775635,-1.57266366481781,-0.675285816192627,7.73883438110352,-1.95448303222656,-0.365754455327988,8.55316352844238,0.482197731733322,-0.463631421327591,8.52521228790283,0.0252473447471857,-0.47016829252243,8.44647979736328,-0.480911135673523,-0.363637685775757, +8.3405876159668,-0.865411221981049,-0.539741635322571,7.94676733016968,-1.13499295711517,0.0325417406857014,7.83537864685059,-1.13797318935394,0.463114559650421,7.48296165466309,-2.0682373046875,0.379103600978851,7.63538074493408,-2.28205251693726,0.585019052028656,7.8828558921814,-1.16284966468811,0.790033459663391,7.85260820388794,-1.32400691509247,0.997490167617798,7.67518758773804,-2.24807620048523,0.909905076026917,7.97152614593506,-1.71899616718292,1.14518177509308,7.95653247833252,-1.77144062519073,1.338507771492,7.92291069030762,-1.95277452468872,1.33242797851563,7.92445516586304,-1.94377028942108,1.14783787727356,7.90483713150024,-1.38219797611237,1.13383054733276,7.91120052337646,-1.40186202526093,1.38159692287445,7.78627490997314,-2.13662910461426,1.40896236896515,7.80494976043701,-2.07644081115723,1.1401903629303,7.76078987121582,-1.29510390758514,1.79217278957367,7.60379791259766,-2.31636095046997,1.69923138618469,7.63846445083618,-0.756037175655365,2.44806170463562,7.37063646316528,0.0888413712382317,4.29834508895874,7.35888528823853,0.870295941829681,4.09235811233521,7.32054853439331,1.71792018413544,4.00695180892944,7.36008834838867,-3.32812237739563,2.1660840511322,7.45038414001465,-2.65506076812744,2.43556666374207,7.52005577087402,-1.92659544944763,2.74494981765747,7.50882482528687,-1.2986718416214,3.23501682281494,7.47103929519653,-0.786478817462921,3.72350430488586,7.54952335357666,-0.241601139307022,3.3666718006134,7.58496046066284,0.459071904420853,2.99241018295288,7.61931896209717,1.19308066368103,2.64043354988098,7.02118396759033,-4.588134765625,0.302804470062256,7.28912258148193,-4.39174032211304,1.05844056606293,7.30461883544922,-4.16600561141968,1.60434532165527,7.31459140777588,-3.77218055725098,1.8762264251709,7.33617830276489,-3.60372805595398,1.36917090415955,7.32266807556152,-3.85119986534119,1.28592264652252,7.01017570495605,-4.28947877883911,-0.434317737817764,6.8834753036499,-5.18655681610107,-0.951007843017578,7.28051567077637,-3.92623400688171,-1.33008432388306,7.06664037704468,-4.79440832138062,-2.06348180770874, +7.35717153549194,-3.42611026763916,-2.13628530502319,6.98475980758667,-3.95061850547791,-3.24926400184631,7.39472436904907,-2.51122641563416,-2.81611680984497,6.97631931304932,-2.93156123161316,-4.42347097396851,7.57095432281494,-1.45944273471832,-3.26196646690369,7.16307020187378,-1.51736581325531,-4.9548168182373,7.773512840271,-0.493855684995651,-3.47009801864624,7.40711784362793,-0.261860519647598,-5.11035680770874,7.97595167160034,0.366927713155746,-3.54731202125549,7.62014675140381,0.824904024600983,-5.06272649765015,8.13054275512695,1.13887596130371,-3.43744373321533,7.80506753921509,1.74159252643585,-4.78061580657959,8.20302867889404,1.82057893276215,-3.1892557144165,7.96303176879883,2.66389918327332,-4.27948951721191,8.08812522888184,3.50882053375244,-3.44184327125549,8.20641326904297,2.46463108062744,-2.56324315071106,8.14090156555176,2.93849992752075,-1.68800926208496,7.69823408126831,1.93010175228119,2.21435189247131,7.82948350906372,2.56363320350647,1.59077310562134,7.94811153411865,3.02071166038513,0.876743674278259,8.02180099487305,3.2474730014801,0.120442882180214,8.07208156585693,3.17632651329041,-0.772562444210052,7.24890565872192,2.92218780517578,4.07521533966064,7.58893871307373,3.81115937232971,2.86107921600342,7.79884052276611,4.51589107513428,1.80858504772186,7.94902515411377,4.97307729721069,0.562792003154755,8.04456806182861,4.71072673797607,-0.80043226480484,8.12451839447021,4.20733594894409,-2.17165398597717,6.5429801940918,4.35666608810425,5.53339815139771,5.83936452865601,5.31749963760376,6.95323324203491,4.86636686325073,5.77119159698486,7.97111225128174,3.79756140708923,5.85024261474609,8.73626232147217,2.88964056968689,5.78035593032837,9.22798442840576,2.05321335792542,5.54804086685181,9.56657791137695,1.43283069133759,5.34053802490234,9.74070644378662,0.906579077243805,5.14756155014038,9.83744335174561,0.440911084413528,4.84742116928101,9.92636775970459,0.51741760969162,9.11596298217773,8.07609844207764,1.09320676326752,9.20700931549072,7.98415613174438,1.76013934612274,9.29360103607178,7.84114980697632, +2.50077509880066,9.37444686889648,7.58180999755859,3.45287466049194,9.37937068939209,7.1098518371582,4.42452621459961,9.19738578796387,6.52355813980103,5.6390528678894,8.668625831604,5.56420850753784,6.60955381393433,7.86684608459473,4.36638593673706,7.37164115905762,6.32191371917725,2.9875328540802,0.504186153411865,7.12358570098877,9.1892728805542,1.0216156244278,7.20282888412476,9.14141368865967,1.59682321548462,7.36775684356689,9.01309108734131,2.30822396278381,7.53479909896851,8.79819869995117,3.19743204116821,7.63384580612183,8.40076923370361,4.19189023971558,7.58147573471069,7.77820682525635,5.25280475616455,7.27345371246338,6.87509870529175,6.21244335174561,6.61381769180298,5.77043581008911,6.98111343383789,5.40456295013428,4.37023735046387,7.62035131454468,7.41489553451538,1.09772956371307,6.92244052886963,8.67479038238525,2.88742017745972,6.02230930328369,9.61266899108887,3.94371747970581,4.84872579574585,10.4076776504517,4.84173250198364,3.88288593292236,10.7977638244629,5.37367582321167,2.908931016922,10.9924812316895,5.80038690567017,2.08697986602783,11.0666513442993,6.05755472183228,1.33430349826813,11.0534925460815,6.24619197845459,0.653030693531036,11.0219612121582,6.33474349975586,6.50100374221802,-3.37295937538147,-5.94551467895508,6.6031608581543,-1.84196555614471,-6.56225490570068,5.31550264358521,-3.66249299049377,-7.65658092498779,5.44049072265625,-1.97767984867096,-8.24058628082275,3.70406603813171,-3.83193826675415,-8.76936340332031,3.93267416954041,-1.91054832935333,-9.32651233673096,4.48633575439453,-3.77395033836365,-8.33473014831543,4.70650720596313,-1.9571076631546,-8.8559513092041,5.9597339630127,-3.52089285850525,-6.88484239578247,6.06760025024414,-1.92599403858185,-7.47396421432495,4.15610122680664,0.0726640149950981,-9.77432346343994,4.86433267593384,-0.0820099264383316,-9.25381183624268,5.57446050643921,-0.249779000878334,-8.63652420043945,6.93286228179932,-0.384116500616074,-6.53490591049194,6.32836961746216,-0.361771166324615,-7.70779514312744,4.38082361221313,2.18039727210999,-9.84704875946045, +5.06170415878296,1.88383483886719,-9.30503749847412,5.7366681098938,1.55229163169861,-8.68006324768066,6.57100296020508,1.23749625682831,-7.64973497390747,7.18364763259888,0.982836008071899,-6.41935920715332,4.66040945053101,4.36260938644409,-9.39548778533936,5.43802547454834,3.91017746925354,-8.80759620666504,6.10085916519165,3.39812302589417,-8.18937969207764,6.81753158569336,2.82796263694763,-7.25026369094849,7.37996053695679,2.28183484077454,-6.1011643409729,5.12424755096436,6.58037996292114,-8.45871829986572,5.86592388153076,5.93916893005371,-7.88381290435791,6.51570987701416,5.23922157287598,-7.28946113586426,7.13362312316895,4.37973070144653,-6.41931915283203,7.59203433990479,3.51524090766907,-5.4167013168335,5.43766069412231,8.64241790771484,-6.8898286819458,6.21404409408569,7.85274982452393,-6.45617389678955,6.86771774291992,7.00395059585571,-5.98439693450928,7.42110252380371,5.84361457824707,-5.29573011398315,7.81795406341553,4.65318918228149,-4.39308929443359,5.66820621490479,10.1276111602783,-4.72834587097168,6.5164942741394,9.25273895263672,-4.42417144775391,7.17343854904175,8.28569984436035,-4.03828477859497,7.68428468704224,7.02488470077515,-3.47118353843689,8.00661754608154,5.63727521896362,-2.72344303131104,5.62916088104248,11.0652112960815,-2.22535014152527,6.58144807815552,10.1174831390381,-2.12496757507324,7.18665170669556,9.17011833190918,-1.92709672451019,7.67361164093018,7.81409406661987,-1.61308932304382,7.95512533187866,6.38670635223389,-1.10849297046661,7.48661661148071,8.35696220397949,-0.0242236163467169,5.36135482788086,11.3852396011353,0.305533826351166,6.33773422241211,10.5318584442139,0.135644838213921,6.94026803970337,9.65329074859619,0.0726752132177353,6.95829677581787,9.24563407897949,1.72573637962341,6.17615461349487,10.3094024658203,2.19222164154053,5.11412286758423,11.2042589187622,2.70831894874573,1.04318618774414,-3.90684485435486,-9.57221412658691,1.13791787624359,-1.84333157539368,-10.353687286377,1.29253804683685,0.315788835287094,-11.085542678833,1.41271209716797,2.72090673446655,-11.2884521484375, +1.53582167625427,5.30492305755615,-10.8696126937866,1.7382435798645,8.02209091186523,-9.89536476135254,1.78098905086517,10.390025138855,-7.96726417541504,1.71314287185669,12.0455827713013,-5.30744695663452,1.59504652023315,12.9070796966553,-2.25943613052368,1.53724265098572,12.9241800308228,0.852242946624756,6.72695207595825,-4.68151807785034,-4.4121413230896,6.90901041030884,-5.72505712509155,-2.66515469551086,6.81298017501831,-6.25775909423828,-1.14970350265503,0.496038883924484,-3.80822563171387,-9.65039348602295,0.565522968769073,-1.81483423709869,-10.4103507995605,0.637238025665283,0.32974910736084,-11.1553335189819,0.709146916866302,2.77228307723999,-11.3831214904785,0.787863969802856,5.40320062637329,-10.9760103225708,0.889000713825226,8.15651321411133,-10.0839538574219,0.861368179321289,10.5052967071533,-8.0781078338623,0.83338987827301,12.1373767852783,-5.34705066680908,0.807116091251373,12.9535961151123,-2.26549959182739,0.778051435947418,13.0002193450928,0.870301723480225,2.26013684272766,-3.8938570022583,-9.32493686676025,2.43823719024658,-1.86028254032135,-10.0303478240967,2.68087267875671,0.260054409503937,-10.6602001190186,2.8737952709198,2.5838885307312,-10.7948656082153,3.07526302337646,5.02608108520508,-10.3114147186279,3.39611577987671,7.53373670578003,-9.3833122253418,3.56346130371094,9.79408168792725,-7.57969760894775,3.49736428260803,11.5034608840942,-5.15501117706299,3.32358813285828,12.5054578781128,-2.2839457988739,3.15594434738159,12.6157512664795,0.672657787799835,0.738614797592163,12.4994955062866,3.8485631942749,1.49879384040833,12.4474573135376,3.80250239372253,2.94505977630615,-3.86894845962524,-9.09688091278076,3.17154812812805,-1.87411487102509,-9.71990203857422,3.40799689292908,0.182872295379639,-10.2753419876099,3.61800932884216,2.4148485660553,-10.3745346069336,3.88968443870544,4.74185466766357,-9.87769603729248,4.27451515197754,7.13207197189331,-8.99654769897461,4.49432039260864,9.30913543701172,-7.28674602508545,4.54035806655884,10.9403295516968,-4.96742153167725,4.46231174468994,11.9082851409912,-2.26144361495972, +4.19918441772461,12.1256256103516,0.515531361103058,4.09540367126465,11.7629451751709,3.10842871665955,3.14920330047607,12.1326732635498,3.42246961593628,1.65472447872162,-3.89587569236755,-9.47716331481934,1.75957727432251,-1.85504877567291,-10.2373600006104,1.96312272548676,0.299863189458847,-10.9261789321899,2.13375473022461,2.68816900253296,-11.1015186309814,2.27932524681091,5.20627212524414,-10.6481056213379,2.56503582000732,7.8169584274292,-9.65657138824463,2.68940830230713,10.1434297561646,-7.78519916534424,2.60994911193848,11.8307313919067,-5.24713611602783,2.472416639328,12.7737789154053,-2.30065274238586,2.33876633644104,12.8427362442017,0.746545791625977,2.29699468612671,12.3575115203857,3.62430381774902,0.517588376998901,-5.26805114746094,-9.33380603790283,1.08643567562103,-5.23129749298096,-9.29151821136475,1.74097418785095,-5.15038776397705,-9.19673824310303,2.42765736579895,-5.08308553695679,-9.04594707489014,3.15881657600403,-5.02853727340698,-8.81332302093506,3.93239068984985,-4.9757399559021,-8.46383285522461,4.73228025436401,-4.92406463623047,-7.95413875579834,5.50995969772339,-4.86525535583496,-7.17065668106079,6.20486640930176,-4.79087162017822,-6.10080003738403,8.64319515228271,-13.7613410949707,-6.49234867095947,8.45827865600586,-13.2992315292358,-7.70548915863037,7.77010488510132,-13.0706129074097,-8.68906593322754,6.9291787147522,-13.0040559768677,-9.5849781036377,5.94925403594971,-12.992039680481,-10.2592067718506,4.99908208847046,-12.9968252182007,-10.7301349639893,4.06416320800781,-13.0407457351685,-11.0760583877563,3.09096384048462,-13.0979118347168,-11.3484125137329,2.01616597175598,-13.1434345245361,-11.5675439834595,0.897775232791901,-13.1605777740479,-11.6888275146484,8.4887523651123,-14.6470861434937,-5.17452192306519,8.03654384613037,-15.6640710830688,-4.20482587814331,7.31738233566284,-16.5804405212402,-3.35303926467896,6.74378490447998,-17.5974903106689,-2.52438831329346,6.32377433776855,-18.2904396057129,-1.95093476772308,5.98745822906494,-18.9915714263916,-1.41046440601349,5.47605514526367,-19.6213970184326,-0.822464108467102, +4.90706348419189,-20.2975883483887,-0.105866722762585,4.28194427490234,-20.941780090332,0.766014516353607,3.81215596199036,-21.2985401153564,1.50899231433868,3.3359682559967,-21.7558116912842,1.85429203510284,2.81476855278015,-22.0949058532715,2.03073906898499,2.35492038726807,-22.3543949127197,2.18042707443237,1.7653636932373,-22.6129531860352,2.30901074409485,1.22038698196411,-22.7748050689697,2.32924127578735,0.85540908575058,-22.9290084838867,2.25529050827026,0.36254608631134,-23.1343860626221,2.10908079147339,0.625648081302643,-7.37590169906616,-9.60719299316406,1.32410180568695,-7.34512948989868,-9.55502128601074,2.05779266357422,-7.34163665771484,-9.42951202392578,2.81746506690979,-7.32136392593384,-9.22162342071533,3.59860324859619,-7.28751516342163,-8.92420864105225,4.38082933425903,-7.23829650878906,-8.47921657562256,5.13177537918091,-7.17587614059448,-7.84253072738647,5.77947664260864,-7.19315910339355,-6.97707557678223,6.34135818481445,-7.28495264053345,-5.93021202087402,6.77100849151611,-7.48039674758911,-4.6926383972168,6.84615612030029,-7.86087083816528,-3.35218596458435,6.78169870376587,-8.35580444335938,-2.06780433654785,6.40048694610596,-8.91832733154297,-0.943061053752899,5.79883766174316,-9.52748394012451,-0.11037153750658,5.10273265838623,-10.1021938323975,0.494475066661835,4.39243078231812,-10.6278562545776,0.989344716072083,3.71881508827209,-11.0863447189331,1.52291250228882,3.13284301757813,-11.5497035980225,2.12970852851868,2.74229621887207,-11.9313306808472,2.70095419883728,2.32388377189636,-12.3248901367188,3.21492695808411,1.94650614261627,-12.5904026031494,3.57901430130005,1.57353568077087,-12.7477254867554,3.90267062187195,1.18646287918091,-12.8427982330322,4.1576943397522,0.891132175922394,-12.8845291137695,4.30355882644653,0.64113837480545,-12.891077041626,4.40399074554443,0.39007779955864,-12.905122756958,4.46603679656982,0.179619997739792,-12.9209518432617,4.48812198638916,0.563388705253601,-6.28740692138672,-9.4006404876709,1.21184766292572,-6.32549619674683,-9.34765338897705,1.88929092884064,-6.27402353286743,-9.21586894989014, +2.60735654830933,-6.22267913818359,-9.01738357543945,3.36249756813049,-6.16755390167236,-8.75267696380615,4.14875459671021,-6.10737609863281,-8.37246036529541,4.9389271736145,-6.06502532958984,-7.80907344818115,5.64825057983398,-6.05284976959229,-6.97354698181152,6.27506494522095,-6.09688806533813,-5.89902639389038,6.74664688110352,-6.25517225265503,-4.52713060379028,6.8474063873291,-6.77249336242676,-3.04118299484253,6.82615423202515,-7.29014492034912,-1.64151537418365,6.31480979919434,-7.76024484634399,-0.429300457239151,5.68121862411499,-8.37579917907715,0.379459589719772,5.09699296951294,-8.88006687164307,1.06801092624664,4.46523904800415,-9.31941509246826,1.70946669578552,4.05541086196899,-9.87843418121338,2.41101765632629,3.68897819519043,-10.443320274353,3.13330888748169,3.23865914344788,-10.8654813766479,3.92362713813782,2.6061635017395,-11.2555894851685,4.53100872039795,2.02840113639832,-11.5209093093872,4.93467092514038,1.52248239517212,-11.6290349960327,5.31799459457397,1.14085018634796,-11.6908254623413,5.685218334198,0.862997770309448,-11.7362089157104,6.03002405166626,0.605921387672424,-11.7760925292969,6.30243301391602,0.350636273622513,-11.8051671981812,6.50244760513306,0.118107497692108,-11.8193836212158,6.51914405822754,0.72603440284729,-9.14775466918945,-10.0981168746948,1.51200354099274,-9.19240188598633,-10.0465278625488,2.32049226760864,-9.17105007171631,-9.88348770141602,3.10815048217773,-9.09110164642334,-9.61295890808105,3.89651775360107,-9.06318092346191,-9.25549983978271,4.68364000320435,-9.12973690032959,-8.76784133911133,5.39656257629395,-9.20655632019043,-8.07389163970947,5.94506978988647,-9.33605480194092,-7.20093536376953,6.39533710479736,-9.4915828704834,-6.2245512008667,6.7011399269104,-9.6498556137085,-5.11427545547485,6.79371881484985,-9.98949527740479,-3.93581223487854,6.66381597518921,-10.5243453979492,-2.8044912815094,6.22340726852417,-11.1233015060425,-1.82647752761841,5.80161666870117,-11.8315048217773,-0.991313517093658,5.27317380905151,-12.5326900482178,-0.33777716755867, +4.66736888885498,-13.1873483657837,0.177737548947334,4.01640844345093,-13.7544431686401,0.620997488498688,3.31818199157715,-14.2157945632935,1.00182127952576,2.78540349006653,-14.5174942016602,1.25320279598236,2.27392053604126,-14.7957696914673,1.52346575260162,1.76376962661743,-15.0323362350464,1.90779769420624,1.4566867351532,-15.1567716598511,2.1547839641571,1.14831292629242,-15.2191495895386,2.40677833557129,0.880245089530945,-15.2733564376831,2.56835436820984,0.643745899200439,-15.3090209960938,2.69347929954529,0.40669858455658,-15.3267621994019,2.75405740737915,0.150777891278267,-15.3646907806396,2.76293134689331,0.781291663646698,-10.3894596099854,-10.448634147644,1.62238729000092,-10.3734064102173,-10.354660987854,2.47534418106079,-10.2873373031616,-10.1611289978027,3.28743171691895,-10.2262086868286,-9.87693691253662,4.0867748260498,-10.2447195053101,-9.51634502410889,4.87640619277954,-10.3242082595825,-9.03165531158447,5.61750507354736,-10.4153423309326,-8.32294082641602,6.1517915725708,-10.5465068817139,-7.44881343841553,6.54033660888672,-10.7677879333496,-6.51932191848755,6.70928955078125,-10.986346244812,-5.45079612731934,6.8463339805603,-11.4628429412842,-4.35247278213501,6.65667104721069,-11.9765958786011,-3.28637266159058,6.08158683776855,-12.5608568191528,-2.4070348739624,5.63037824630737,-13.1747341156006,-1.52856910228729,5.1600284576416,-13.9945020675659,-0.966353237628937,4.68250942230225,-14.7705202102661,-0.467575043439865,4.17905330657959,-15.3869075775146,0.0480929762125015,3.59335565567017,-15.9162015914917,0.523802161216736,3.04364395141602,-16.3260154724121,0.831762075424194,2.42143297195435,-16.7167434692383,1.08995759487152,1.98372232913971,-16.9523372650146,1.26455080509186,1.59317064285278,-17.1624355316162,1.44275057315826,1.21537566184998,-17.3552722930908,1.60568916797638,0.864116370677948,-17.4638252258301,1.74329102039337,0.566159963607788,-17.5375156402588,1.82823538780212,0.358255118131638,-17.5536861419678,1.87577652931213,0.120445497334003,-17.5740985870361,1.90244162082672, +0.827059805393219,-11.777400970459,-10.9927101135254,1.78073978424072,-11.7241125106812,-10.8770484924316,2.78206324577332,-11.7376880645752,-10.6820974349976,3.64758586883545,-11.7248067855835,-10.4047145843506,4.46547555923462,-11.7181310653687,-10.0473127365112,5.28482007980347,-11.7900047302246,-9.61402893066406,6.19617986679077,-11.8668336868286,-8.87957954406738,6.80679321289063,-11.9710521697998,-7.94225406646729,7.17634248733521,-12.1400594711304,-7.03443813323975,7.25316190719604,-12.5044260025024,-5.96344804763794,7.27533388137817,-13.0910673141479,-4.77431774139404,6.8624472618103,-13.7653150558472,-3.84674096107483,6.18089771270752,-14.4139165878296,-3.0373170375824,5.60068082809448,-15.1557779312134,-2.3195641040802,5.06253862380981,-15.9161586761475,-1.78069031238556,4.59118938446045,-16.6205387115479,-1.27265441417694,4.16988658905029,-17.2565898895264,-0.780969023704529,3.73949885368347,-17.8339920043945,-0.224628210067749,3.21607780456543,-18.4729709625244,0.400370657444,2.80481314659119,-18.9583435058594,0.781409800052643,2.46587800979614,-19.3676662445068,1.06315422058105,2.0509467124939,-19.6987934112549,1.3283816576004,1.65970063209534,-19.945442199707,1.46141600608826,1.21194422245026,-20.0902576446533,1.41052174568176,0.84194952249527,-20.2194232940674,1.33887577056885,0.541794419288635,-20.3799839019775,1.29653906822205,0.203980699181557,-20.5156555175781,1.26132202148438,0.643635272979736,-8.22926044464111,-9.85444641113281,1.39376223087311,-8.18760395050049,-9.78995132446289,2.171799659729,-8.17779922485352,-9.64373016357422,2.9530668258667,-8.15102100372314,-9.41429328918457,3.74704670906067,-8.14085292816162,-9.09621715545654,4.5271954536438,-8.13263034820557,-8.62427616119385,5.26237392425537,-8.1309642791748,-7.9494104385376,5.8615984916687,-8.1704626083374,-7.07688856124878,6.37500095367432,-8.34739589691162,-6.07270526885986,6.74229383468628,-8.53392124176025,-4.88599109649658,6.83558368682861,-8.86042308807373,-3.62137317657471,6.73172521591187,-9.36280155181885,-2.40425562858582,6.34451007843018,-9.97914695739746,-1.35259056091309, +5.85404062271118,-10.6383562088013,-0.481644362211227,5.1982889175415,-11.2626161575317,0.134075298905373,4.50275993347168,-11.8434352874756,0.599624037742615,3.78320741653442,-12.3431959152222,1.00235331058502,3.12188076972961,-12.812237739563,1.44490206241608,2.68707728385925,-13.1786756515503,1.80647385120392,2.26843738555908,-13.5017595291138,2.184974193573,1.8536434173584,-13.7794160842896,2.59936094284058,1.50331711769104,-13.9578886032104,2.98683619499207,1.18794131278992,-14.1320238113403,3.33676099777222,0.953288018703461,-14.2412595748901,3.54889917373657,0.621793150901794,-14.3140735626221,3.72880434989929,0.424510806798935,-14.3100891113281,3.79969429969788,0.173259794712067,-14.295295715332,3.87241649627686,0.686224699020386,-3.31110382080078,11.4172983169556,0.803417325019836,-3.27108144760132,11.3626937866211,0.946941077709198,-3.25326538085938,11.2468614578247,1.0470564365387,-3.2831404209137,11.1011810302734,1.09913229942322,-3.31128525733948,10.9977207183838,1.15104711055756,-3.34290099143982,10.9002914428711,0.611746072769165,-3.34157705307007,11.3992328643799,0.532138586044312,-3.39445948600769,11.3600931167603,0.504551589488983,-3.43966221809387,11.2966022491455,0.479691803455353,-3.43749380111694,11.1914520263672,0.52191436290741,-3.41624903678894,11.0354175567627,0.658787488937378,-3.38174843788147,10.8952512741089,0.840401828289032,-3.3503565788269,10.8026313781738,0.992791056632996,-3.34739780426025,10.7887210845947,1.13266718387604,-3.37302184104919,10.8144035339355,0.678815186023712,-3.30243062973022,11.1854343414307,0.792406320571899,-3.27622985839844,11.0769290924072,0.907720804214478,-3.27583456039429,10.9785804748535,1.0204222202301,-3.30554914474487,10.9048337936401,0.595511674880981,-3.34261322021484,11.2803497314453,0.292443186044693,-4.70302867889404,10.411449432373,2.75259256362915,-5.40841817855835,9.14834403991699,3.09797310829163,-5.70720195770264,8.96552085876465,1.85865950584412,-4.97731590270996,9.77219295501709,2.34341382980347,-5.19857597351074,9.45803833007813,1.36100649833679,-4.80800199508667,10.1225099563599, +0.98523885011673,-4.71654033660889,10.2899417877197,0.604986190795898,-4.68483877182007,10.3602104187012,3.37384390830994,-5.93749809265137,8.8080997467041,3.49813437461853,-6.3752760887146,8.79473876953125,3.4315812587738,-6.67488241195679,8.79679489135742,3.16283941268921,-7.06501150131226,8.80908107757568,2.72594547271729,-7.41771364212036,9.13029098510742,2.20925116539001,-7.62382793426514,9.44645118713379,1.79464256763458,-7.65139579772949,9.76041889190674,1.3591480255127,-7.64054775238037,10.1210842132568,0.982116758823395,-7.51274871826172,10.2800188064575,0.607004284858704,-7.40227365493774,10.3452959060669,0.28584498167038,-7.38006734848022,10.3803043365479,0.30194216966629,-6.24943542480469,10.8142013549805,0.6246377825737,-6.24589967727661,10.7649621963501,1.01724016666412,-6.24143505096436,10.697437286377,1.40521430969238,-6.2437744140625,10.5365409851074,1.88000786304474,-6.29273557662964,10.1998977661133,2.27079844474792,-6.35514211654663,9.89800643920898,2.61869859695435,-6.34562492370605,9.6003999710083,2.96545195579529,-6.33925914764404,9.38929843902588,3.0959620475769,-6.32578992843628,9.32376480102539,3.16499090194702,-6.37896108627319,9.31092548370361,3.11799311637878,-6.41603517532349,9.31290149688721,2.98541688919067,-6.43015575408936,9.32470798492432,2.60040545463562,-6.32098340988159,9.58815670013428,2.22038984298706,-6.32131481170654,9.89197540283203,1.85293579101563,-6.3095908164978,10.1936893463135,1.40329623222351,-6.25318431854248,10.5402755737305,1.01401877403259,-6.20932769775391,10.7413091659546,0.626720488071442,-6.19377565383911,10.8380336761475,0.295129120349884,-6.19072103500366,10.871675491333,0.298713028430939,-6.05210113525391,10.5934009552002,0.617956638336182,-6.04542541503906,10.5434818267822,1.00635957717896,-6.05155611038208,10.4750242233276,1.39018440246582,-6.04279756546021,10.3119068145752,1.87275040149689,-6.04466199874878,9.97061347961426,2.29548501968384,-6.07539176940918,9.66455364227295,2.66421794891357,-6.12633037567139,9.36283683776855,3.01050424575806,-6.17132997512817,9.17846012115479, +3.19043397903442,-6.20648145675659,9.08168697357178,3.27824902534485,-6.35046339035034,9.06867027282715,3.22460269927979,-6.44936037063599,9.07067394256592,3.04573392868042,-6.54443311691284,9.08264446258545,2.64308547973633,-6.56647920608521,9.3955774307251,2.21660327911377,-6.56374502182007,9.70359134674072,1.83311855792999,-6.52105617523193,10.0094718933105,1.38828682899475,-6.42269420623779,10.3608446121216,1.00317096710205,-6.3660306930542,10.5475664138794,0.620018243789673,-6.32859325408936,10.6336011886597,0.291972726583481,-6.32110595703125,10.6677074432373,0.333059281110764,-3.04259610176086,9.12734985351563,3.13488340377808,-4.35821485519409,7.8642463684082,3.52823090553284,-4.91547203063965,7.6814227104187,2.11679720878601,-3.55416989326477,8.48809337615967,2.66887521743774,-3.96684694290161,8.1739501953125,1.55002808570862,-3.23837113380432,8.83841133117676,1.12207198143005,-3.06779313087463,9.00584316253662,0.689009308815002,-3.00867295265198,9.07611083984375,3.84241533279419,-5.34498262405396,7.524001121521,3.98396801948547,-6.1614818572998,7.51064014434814,3.90817141532898,-6.72027730941772,7.51269578933716,3.60210609436035,-7.44788789749146,7.5249810218811,3.10453486442566,-8.10571765899658,7.84619045257568,2.51607990264893,-8.49013233184814,8.16235160827637,2.04389142990112,-8.54155158996582,8.47632026672363,1.54791212081909,-8.52130222320557,8.83698463439941,1.11851668357849,-8.28295230865479,8.99592018127441,0.691307425498962,-8.07691287994385,9.06119632720947,0.325544089078903,-8.03549098968506,9.09620571136475,0.292443186044693,-3.10722589492798,3.15491962432861,2.75259256362915,-5.52335596084595,2.55872249603271,3.09797310829163,-6.34004735946655,2.62602686882019,1.85865950584412,-4.13366317749023,2.78859424591064,2.34341382980347,-4.8433723449707,2.67609429359436,1.36100649833679,-3.52603387832642,2.97449827194214,0.98523885011673,-3.21061944961548,3.05512428283691,0.604986190795898,-3.09410953521729,3.09418106079102,3.37384390830994,-6.97919702529907,2.66290640830994,3.49813437461853,-8.0264310836792,2.99264764785767, +3.4315812587738,-8.73656749725342,3.22848439216614,3.16283941268921,-9.65559577941895,3.54429864883423,2.72594547271729,-10.3044757843018,4.11142539978027,2.20925116539001,-10.608268737793,4.55950307846069,1.79464256763458,-10.4894304275513,4.86614847183228,1.3591480255127,-10.2519884109497,5.18520212173462,0.982116758823395,-9.85527992248535,5.22973537445068,0.607004284858704,-9.55466938018799,5.2027440071106,0.28584498167038,-9.48139667510986,5.21719026565552,0.00993838906288147,-13.5255155563354,-0.883645474910736,0.0935440063476563,-13.5425844192505,-0.867419004440308,0.105281591415405,-13.5461883544922,-0.858322620391846,0.0631645917892456,-13.5336780548096,-0.87827080488205,0.0796384811401367,-13.5381870269775,-0.872663080692291,0.0462523698806763,-13.5290946960449,-0.881868422031403,0.0334823727607727,-13.5268440246582,-0.883949220180511,0.0205598473548889,-13.5259380340576,-0.884593188762665,0.114656686782837,-13.5491352081299,-0.851415693759918,0.1188805103302,-13.5517959594727,-0.836480975151062,0.116618633270264,-13.5535011291504,-0.82618921995163,0.107485771179199,-13.5556221008301,-0.812727689743042,0.0926384925842285,-13.554347038269,-0.798599600791931,0.0750792026519775,-13.5522794723511,-0.789532661437988,0.0609891414642334,-13.5492067337036,-0.786605060100555,0.0461891889572144,-13.545431137085,-0.784700572490692,0.0333762168884277,-13.5430583953857,-0.788081586360931,0.0206284523010254,-13.5417499542236,-0.791459500789642,0.00971415638923645,-13.5412616729736,-0.792000591754913,0.292443186044693,-5.27976083755493,-0.64216148853302,0.604986190795898,-5.2786602973938,-0.694170773029327,0.98523885011673,-5.39025735855103,-0.699558854103088,1.36100649833679,-5.68794107437134,-0.693856835365295,1.85865950584412,-6.26679515838623,-0.70758056640625,2.34341382980347,-6.92446565628052,-0.639083087444305,2.75259256362915,-7.55628824234009,-0.581198334693909,3.09797310829163,-8.27844047546387,-0.343432426452637,3.37384390830994,-8.84640026092529,-0.170109942555428,3.49813437461853,-9.7295389175415,0.331425666809082, +3.4315812587738,-10.3262414932251,0.681404411792755,3.16283941268921,-11.0966196060181,1.14289796352386,2.72594547271729,-11.5799207687378,1.74674069881439,2.20925116539001,-11.7740507125854,2.17691659927368,1.79464256763458,-11.6132354736328,2.39793872833252,1.3591480255127,-11.3436212539673,2.60234642028809,0.982116758823395,-10.9792337417603,2.54923462867737,0.607004284858704,-10.7138185501099,2.45992803573608,0.28584498167038,-10.6454162597656,2.45513987541199,0.35059916973114,-2.23496174812317,6.65812683105469,0.725294470787048,-2.20487284660339,6.60296058654785,1.18116390705109,-2.30328869819641,6.5455961227417,1.63165736198425,-2.57703590393066,6.41405296325684,2.22827434539795,-3.09546685218811,6.13171005249023,2.80942678451538,-3.73151898384094,5.90092802047729,3.29997563362122,-4.33814430236816,5.67074728012085,3.71403884887695,-5.12747049331665,5.59133529663086,4.04476928710938,-5.74061155319214,5.51424503326416,4.19378137588501,-6.82378721237183,5.64273500442505,4.11398839950562,-7.56185483932495,5.7414436340332,3.79180479049683,-8.5201358795166,5.87921953201294,3.26802968978882,-9.29712581634521,6.30210304260254,2.64858508110046,-9.71415996551514,6.67280054092407,2.15152645111084,-9.69162273406982,6.98374176025391,1.62942981719971,-9.5609073638916,7.32720279693604,1.17742097377777,-9.20002269744873,7.43883895874023,0.727713644504547,-8.90883350372314,7.46596908569336,0.342687785625458,-8.8439884185791,7.49247550964355,-2.07070708274841,0.569117963314056,8.77950286865234,-2.07506585121155,0.694664776325226,8.8052282333374,-2.1513307094574,0.849074482917786,8.8833589553833,-2.45797538757324,1.05291700363159,9.05999660491943,-2.80601143836975,1.26788198947906,9.0857458114624,-3.24545574188232,1.39283037185669,9.08279418945313,-3.67122340202332,1.38816392421722,9.07086277008057,-4.01973390579224,1.32798945903778,8.95517253875732,-4.24928617477417,1.24516928195953,8.86488914489746,-4.44707155227661,1.18011903762817,8.7779655456543,-4.67869663238525,1.06821238994598,8.62750625610352,-4.79920244216919,0.889434039592743,8.46297264099121, +-4.87659406661987,0.808789074420929,8.36913776397705,-2.3352427482605,0.395833760499954,8.85163974761963,-2.14283895492554,0.478615403175354,8.76449966430664,-2.63840126991272,0.320625454187393,9.00386905670166,-2.98839020729065,0.26444399356842,9.07974052429199,-3.43948340415955,0.210528627038002,9.10910415649414,-3.95418238639832,0.249527797102928,9.03609466552734,-4.30096769332886,0.337327897548676,8.85173606872559,-4.48836517333984,0.439885377883911,8.72526073455811,-4.65410995483398,0.546657264232635,8.546630859375,-4.81672239303589,0.632130324840546,8.39734554290771,-4.92189264297485,0.683880686759949,8.30993938446045,-4.98457670211792,0.756589829921722,8.24863338470459,2.07070708274841,0.570815086364746,8.77950286865234,2.07506608963013,0.69462925195694,8.8052282333374,2.15133047103882,0.84870857000351,8.8833589553833,2.45797276496887,1.05290365219116,9.07314777374268,2.8060142993927,1.26744377613068,9.09841156005859,3.24545097351074,1.39072895050049,9.09785652160645,3.67122340202332,1.38608717918396,9.0860595703125,4.01973390579224,1.3258204460144,8.96726989746094,4.24928617477417,1.23828160762787,8.87012004852295,4.44707155227661,1.16017472743988,8.7779655456543,4.67869663238525,1.04165160655975,8.62750625610352,4.79920244216919,0.888553500175476,8.46297359466553,4.87659406661987,0.808789074420929,8.36913776397705,2.3352427482605,0.446783870458603,8.85163974761963,2.14283895492554,0.490987867116928,8.76450061798096,2.63840126991272,0.370653688907623,9.00386905670166,2.98839020729065,0.266836494207382,9.07974052429199,3.43948340415955,0.211244359612465,9.10910415649414,3.95418238639832,0.250260204076767,9.03609466552734,4.30096769332886,0.337250381708145,8.85173606872559,4.48836517333984,0.439885377883911,8.72526073455811,4.65410995483398,0.546657264232635,8.546630859375,4.81672239303589,0.632130324840546,8.39734554290771,4.92189264297485,0.683880686759949,8.30993938446045,4.98457670211792,0.756589829921722,8.24863338470459,-2.11595106124878,0.621418178081512,8.57382011413574,-2.11086773872375,0.759891152381897,8.59828948974609, +-2.09473943710327,0.923130989074707,8.62376022338867,-2.38242292404175,1.22601747512817,8.74057006835938,-2.75832724571228,1.47955667972565,8.77144336700439,-3.24065542221069,1.61621057987213,8.75167465209961,-3.6715087890625,1.59770023822784,8.73800277709961,-3.96165585517883,1.50148141384125,8.68351459503174,-4.26363658905029,1.38684070110321,8.56610107421875,-4.43415689468384,1.277712225914,8.45132350921631,-4.60842418670654,1.11471974849701,8.22391033172607,-4.7768030166626,0.878619432449341,7.92279863357544,-4.8810453414917,0.768955230712891,7.82474756240845,-2.21902751922607,0.140462622046471,8.54229640960693,-2.11851620674133,0.530460178852081,8.55931568145752,-2.59652829170227,0.035649012774229,8.71971702575684,-2.94878840446472,0.0474902093410492,8.77867412567139,-3.44295859336853,0.0413073413074017,8.79851341247559,-3.88026285171509,0.0668637081980705,8.75302410125732,-4.22494983673096,0.103257782757282,8.58361911773682,-4.43716955184937,0.183535009622574,8.38054370880127,-4.6274881362915,0.333828032016754,8.22596168518066,-4.74970388412476,0.479262411594391,8.07919883728027,-4.93270349502563,0.600320100784302,7.8647665977478,-4.98596143722534,0.685719907283783,7.69714164733887,2.11595487594604,0.621723294258118,8.57382011413574,2.11086702346802,0.760293841362,8.59828948974609,2.09473443031311,0.923543334007263,8.62376022338867,2.38279891014099,1.22259521484375,8.74883937835693,2.75840044021606,1.480393409729,8.78505039215088,3.24051141738892,1.60412275791168,8.75417423248291,3.6714973449707,1.58520579338074,8.74022769927979,3.96170663833618,1.49049746990204,8.68366622924805,4.26367235183716,1.38282108306885,8.56610107421875,4.43421459197998,1.2730940580368,8.45132350921631,4.60842847824097,1.11448466777802,8.22391033172607,4.7768030166626,0.878619432449341,7.92279863357544,4.88104581832886,0.768955290317535,7.82474756240845,2.21887826919556,0.139048650860786,8.54229640960693,2.11856269836426,0.531427502632141,8.55931568145752,2.59620189666748,0.0334820710122585,8.71971702575684,2.94885039329529,0.0474754571914673,8.77870750427246, +3.44295191764832,0.0414743237197399,8.79851245880127,3.88026309013367,0.0668422803282738,8.75302410125732,4.22494840621948,0.103296652436256,8.5836181640625,4.43716955184937,0.183533519506454,8.38054370880127,4.6274881362915,0.333831369876862,8.22596168518066,4.74970388412476,0.4792640209198,8.07919883728027,4.93270349502563,0.600320100784302,7.8647665977478,4.98596143722534,0.685719966888428,7.69714164733887,-3.25908279418945,0.736528098583221,7.3692831993103,3.25908279418945,0.736529946327209,7.3692831993103 + } + PolygonVertexIndex: *33849 { + a: 0,46,49,-49,46,6,47,-50,49,47,50,-53,51,48,49,-53,52,50,281,-283,280,51,52,-283,56,55,280,-283,281,53,56,-283,56,53,7,-55,55,56,54,-2,1,54,59,-59,54,7,57,-60,59,57,60,-63,61,58,59,-63,62,60,247,-249,246,61,62,-249,66,65,246,-249,63,66,248,-248,66,63,8,-65,65,66,64,-3,41,68,71,-45,68,42,69,-72,71,69,43,-71,44,71,70,-5,5,39,72,-74,72,40,11,-74,5,73,75,-46,73,11,74,-76,75,74,283,-285,279,45,75,-285,6,76,78,-48,76,12,77,-79,78,77,79,-81,50,47,78,-81,80,79,308,-311,281,50,80,-311,83,53,281,-311,81,83,310,-309,83,81,13,-83,53,83,82,-8,7,82,85,-58,82,13,84,-86,85,84,86,-88,60,57,85,-88,87,86,250,-252,60,87,251,-248,90,63,247,-252,88,90,251,-251,90,88,14,-90,63,90,89,-9,8,89,92,-68,89,14,91,-93,92,91,275,-279,249,67,92,-279,96,9,-277,93,96,276,-274,96,93,15,-95,95,96,94,-11,10,94,99,-99,94,15,97,-100,99,97,100,-102,11,99,-102,101,100,285,-287,74,101,286,-284,12,102,104,-78,102,16,103,-105,104,103,105,-107,79,77,104,-107,106,105,306,-310,79,106,309,-309,109,81,308,-310,107,109,309,-307,109,107,17,-109,81,109,108,-14,13,108,111,-85,108,17,110,-112,111,110,112,-114,86,84,111,-114,113,112,252,-254,86,113,253,-251,116,88,250,-254,114,116,253,-253,116,114,18,-116,88,116,115,-15,14,115,118,-92,115,18,117,-119,118,117,273,-277,91,118,276,-276,121,93,273,-275,119,121,274,-272,121,119,19,-121,93,121,120,-16,15,120,123,-98,120,19,122,-124,123,122,124,-126,100,97,123,-126,125,124,287,-289,100,125,288,-286,16,126,128,-104,126,20,127,-129,128,127,129,-131,105,103,128,-131,130,129,304,-308,105,130,307,-307,133,107,306,-308,131,133,307,-305,133,131,21,-133,107,133,132,-18,17,132,135,-111,132,21,134,-136,135,134,136,-138,112,110,135,-138,137,136,254,-256,112,137,255,-253,140,114,252,-256,138,140,255,-255,140,138,22,-140,114,140,139,-19,18,139,142,-118,139,22,141,-143,142,141,271,-275,117,142,274,-274,145,119,271,-273,143,145,272,-270,145,143,23,-145,119,145,144,-20,19,144,147,-123,144,23,146,-148,147,146,148,-150,124,122,147,-150,149,148,289,-291,124,149,290,-288,20,150,152,-128,150,24,151,-153,152,151,153,-155,129,127, +152,-155,154,153,302,-306,129,154,305,-305,157,131,304,-306,155,157,305,-303,157,155,25,-157,131,157,156,-22,21,156,159,-135,156,25,158,-160,159,158,160,-162,136,134,159,-162,161,160,256,-258,136,161,257,-255,164,138,254,-258,162,164,257,-257,164,162,26,-164,138,164,163,-23,22,163,166,-142,163,26,165,-167,166,165,269,-273,141,166,272,-272,169,143,269,-271,167,169,270,-268,169,167,27,-169,143,169,168,-24,23,168,171,-147,168,27,170,-172,171,170,172,-174,148,146,171,-174,173,172,291,-293,148,173,292,-290,24,174,176,-152,174,28,175,-177,176,175,177,-179,153,151,176,-179,178,177,300,-304,153,178,303,-303,181,155,302,-304,179,181,303,-301,181,179,29,-181,155,181,180,-26,25,180,183,-159,180,29,182,-184,183,182,184,-186,160,158,183,-186,185,184,258,-260,160,185,259,-257,188,162,256,-260,186,188,259,-259,188,186,30,-188,162,188,187,-27,26,187,190,-166,187,30,189,-191,190,189,267,-271,165,190,270,-270,193,167,267,-269,191,193,268,-266,193,191,31,-193,167,193,192,-28,27,192,195,-171,192,31,194,-196,195,194,196,-198,172,170,195,-198,197,196,293,-295,172,197,294,-292,28,198,200,-176,198,32,199,-201,200,199,201,-203,177,175,200,-203,202,201,298,-302,177,202,301,-301,205,179,300,-302,203,205,301,-299,205,203,33,-205,179,205,204,-30,29,204,207,-183,204,33,206,-208,207,206,208,-210,184,182,207,-210,209,208,260,-262,184,209,261,-259,212,186,258,-262,210,212,261,-261,212,210,34,-212,186,212,211,-31,30,211,214,-190,211,34,213,-215,214,213,265,-269,189,214,268,-268,217,191,265,-267,215,217,266,-264,217,215,35,-217,191,217,216,-32,31,216,219,-195,216,35,218,-220,219,218,220,-222,196,194,219,-222,221,220,295,-297,196,221,296,-294,32,222,224,-200,222,36,223,-225,224,223,225,-227,201,199,224,-227,226,225,241,-300,201,226,299,-299,229,203,298,-300,227,229,299,-242,229,227,37,-229,203,229,228,-34,33,228,231,-207,228,37,230,-232,231,230,232,-234,208,206,231,-234,233,232,244,-263,208,233,262,-261,236,210,260,-263,234,236,262,-245,236,234,38,-236,210,236,235,-35,34,235,238,-214,235,38,237,-239,238,237,263,-267,213,238,266,-266,37,227,240,-240, +240,227,241,-243,220,218,240,-243,239,240,218,-36,242,241,225,-298,220,242,297,-296,232,230,243,-265,230,37,239,-244,243,239,35,-216,243,215,263,-265,38,234,245,-238,234,244,-246,245,244,232,-265,237,245,264,-264,9,277,278,-276,277,3,249,-279,12,76,284,-284,76,6,279,-285,16,102,286,-286,102,12,283,-287,20,126,288,-288,126,16,285,-289,24,150,290,-290,150,20,287,-291,28,174,292,-292,174,24,289,-293,32,198,294,-294,198,28,291,-295,36,222,296,-296,222,32,293,-297,223,297,-226,223,36,295,-298,4,70,313,-312,70,43,312,-314,313,312,40,-73,311,313,72,-40,41,3,277,-69,277,9,42,-69,43,69,95,-11,69,42,9,-96,11,40,312,-99,312,43,10,-99,11,101,-75,11,98,-100,96,95,-10,276,9,-276,328,355,354,-330,329,354,353,-331,330,353,352,-332,331,352,351,-333,332,351,350,-334,333,350,349,-335,334,349,348,-336,335,348,347,-337,336,347,346,-338,337,346,345,-339,338,345,344,-340,339,344,343,-341,340,343,342,-342,343,315,314,-343,344,316,315,-344,345,317,316,-345,346,318,317,-346,347,319,318,-347,348,320,319,-348,349,321,320,-349,350,322,321,-350,351,323,322,-351,352,324,323,-352,353,325,324,-353,354,326,325,-354,355,327,326,-355,366,314,380,-382,365,366,381,-383,364,365,382,-384,363,364,383,-385,362,363,384,-386,361,362,385,-387,360,361,386,-388,359,360,387,-389,358,359,388,-390,357,358,389,-391,356,357,390,-392,391,392,327,-357,381,380,379,-379,382,381,378,-378,383,382,377,-377,384,383,376,-376,385,384,375,-375,386,385,374,-374,387,386,373,-373,388,387,372,-372,389,388,371,-371,390,389,370,-370,391,390,369,-369,367,392,391,-369,407,408,433,-435,408,409,432,-434,409,410,431,-433,410,411,430,-432,411,412,429,-431,412,413,428,-430,413,414,427,-429,414,415,426,-428,415,416,425,-427,416,417,424,-426,417,418,423,-425,418,419,422,-424,419,420,421,-423,422,421,393,-395,423,422,394,-396,424,423,395,-397,425,424,396,-398,426,425,397,-399,427,426,398,-400,428,427,399,-401,429,428,400,-402,430,429,401,-403,431,430,402,-404,432,431,403,-405,433,432,404,-406,434,433,405,-407,445,460,459,-394,444,461,460,-446,443,462,461,-445,442,463,462,-444,441,464,463,-443, +440,465,464,-442,439,466,465,-441,438,467,466,-440,437,468,467,-439,436,469,468,-438,435,470,469,-437,470,435,406,-472,460,457,458,-460,461,456,457,-461,462,455,456,-462,463,454,455,-463,464,453,454,-464,465,452,453,-465,466,451,452,-466,467,450,451,-467,468,449,450,-468,469,448,449,-469,470,447,448,-470,446,447,470,-472,486,513,512,-488,487,512,511,-489,488,511,510,-490,489,510,509,-491,490,509,508,-492,491,508,507,-493,492,507,506,-494,493,506,505,-495,494,505,504,-496,495,504,503,-497,496,503,502,-498,497,502,501,-499,498,501,500,-500,501,473,472,-501,502,474,473,-502,503,475,474,-503,504,476,475,-504,505,477,476,-505,506,478,477,-506,507,479,478,-507,508,480,479,-508,509,481,480,-509,510,482,481,-510,511,483,482,-511,512,484,483,-512,513,485,484,-513,524,472,538,-540,523,524,539,-541,522,523,540,-542,521,522,541,-543,520,521,542,-544,519,520,543,-545,518,519,544,-546,517,518,545,-547,516,517,546,-548,515,516,547,-549,514,515,548,-550,549,550,485,-515,539,538,537,-537,540,539,536,-536,541,540,535,-535,542,541,534,-534,543,542,533,-533,544,543,532,-532,545,544,531,-531,546,545,530,-530,547,546,529,-529,548,547,528,-528,549,548,527,-527,525,550,549,-527,565,566,591,-593,566,567,590,-592,567,568,589,-591,568,569,588,-590,569,570,587,-589,570,571,586,-588,571,572,585,-587,572,573,584,-586,573,574,583,-585,574,575,582,-584,575,576,581,-583,576,577,580,-582,577,578,579,-581,580,579,551,-553,581,580,552,-554,582,581,553,-555,583,582,554,-556,584,583,555,-557,585,584,556,-558,586,585,557,-559,587,586,558,-560,588,587,559,-561,589,588,560,-562,590,589,561,-563,591,590,562,-564,592,591,563,-565,603,618,617,-552,602,619,618,-604,601,620,619,-603,600,621,620,-602,599,622,621,-601,598,623,622,-600,597,624,623,-599,596,625,624,-598,595,626,625,-597,594,627,626,-596,593,628,627,-595,628,593,564,-630,618,615,616,-618,619,614,615,-619,620,613,614,-620,621,612,613,-621,622,611,612,-622,623,610,611,-623,624,609,610,-624,625,608,609,-625,626,607,608,-626,627,606,607,-627,628,605,606,-628,604,605,628,-630,1341,1340,1630,-1648,1339, +1341,1647,-1512,1341,1339,1517,-2090,1340,1341,2089,-2085,1344,1343,1543,-1649,1342,1344,1648,-1556,1344,1342,1561,-2097,1343,1344,2096,-1552,1347,1346,1587,-1661,1345,1347,1660,-1600,1347,1345,1605,-2105,1346,1347,2104,-1596,664,1348,1351,-1351,1348,651,1349,-1352,1351,1349,1467,-2112,1350,1351,2111,-1425,706,1352,1355,-1355,1352,665,1353,-1356,1355,1353,1533,-1641,1354,1355,1640,-1522,710,1356,1357,-911,1356,667,911,-1358,1359,672,671,-1359,1359,1358,702,-704,722,1360,1363,-1363,1360,674,1361,-1364,1363,1361,1577,-1655,1362,1363,1654,-1566,726,1364,1365,-923,1364,676,921,-1366,1367,681,680,-1367,1367,1366,718,-720,738,1368,1371,-1371,1368,682,1369,-1372,1371,1369,1621,-1667,1370,1371,1666,-1610,742,1372,1373,-931,1372,684,929,-1374,1375,689,688,-1375,1375,1374,734,-736,1378,1377,1484,-2114,1376,1378,2113,-1424,1378,1376,1420,-1675,1377,1378,1674,-1635,935,1379,1380,-656,1379,934,691,-1381,1382,695,656,-1382,1382,1381,697,-697,698,1383,1386,-1386,1383,657,1384,-1387,1386,1384,1511,-1648,1385,1386,1647,-1631,704,1387,1390,-1390,1387,641,1388,-1391,1390,1388,1520,-1642,1389,1390,1641,-1513,1393,1392,1512,-1642,1391,1393,1641,-1521,1393,1391,1526,-2091,1392,1393,2090,-1519,714,1394,1397,-1397,1394,659,1395,-1398,1397,1395,1555,-1649,1396,1397,1648,-1544,720,1398,1401,-1401,1398,646,1399,-1402,1401,1399,1564,-1652,1400,1401,1651,-1557,1404,1403,1556,-1652,1402,1404,1651,-1565,1404,1402,1570,-2099,1403,1404,2098,-1563,730,1405,1408,-1408,1405,661,1406,-1409,1408,1406,1599,-1661,1407,1408,1660,-1588,736,1409,1412,-1412,1409,650,1410,-1413,1412,1410,1608,-1664,1411,1412,1663,-1601,1415,1414,1600,-1664,1413,1415,1663,-1609,1415,1413,1614,-2107,1414,1415,2106,-1607,1418,1417,1424,-2112,1416,1418,2111,-1468,1418,1416,1464,-1672,1417,1418,1671,-1422,663,1419,1422,-1422,1419,654,1420,-1423,1422,1420,1376,-1673,1417,1421,1422,-1673,1425,1424,1417,-1673,1376,1423,1425,-1673,1425,1423,1487,-2113,1350,1424,1425,-2113,712,1426,1429,-1429,1426,631,1427,-1430,1429,1427,1542,-1643,1428,1429,1642,-1535,1432,1431,1534,-1643,1430,1432, +1642,-1543,1432,1430,1550,-2095,1431,1432,2094,-1539,1435,1434,1521,-1641,1433,1435,1640,-1534,1435,1433,1537,-2093,1434,1435,2092,-1528,1436,669,667,-1357,1436,1356,710,-712,1438,643,670,-1438,1438,1437,707,-709,707,1437,1439,-913,1437,670,914,-1440,1441,635,673,-1441,3110,1441,1440,-2067,1443,906,644,-1443,1443,1442,2085,-2068,702,1358,1444,-917,1358,671,918,-1445,728,1445,1448,-1448,1445,632,1446,-1449,1448,1446,1586,-1658,1447,1448,1657,-1579,1451,1450,1578,-1658,1449,1451,1657,-1587,1451,1449,1594,-2103,1450,1451,2102,-1583,1454,1453,1565,-1655,1452,1454,1654,-1578,1454,1452,1581,-2101,1453,1454,2100,-1572,1455,678,676,-1365,1455,1364,726,-728,1457,648,679,-1457,1457,1456,723,-725,723,1456,1458,-921,1456,679,919,-1459,1460,636,668,-1460,1460,1459,715,-717,715,1459,1461,-914,1459,668,909,-1462,718,1366,1462,-918,1366,680,915,-1463,744,1463,1466,-1466,1463,633,1464,-1467,1466,1464,1416,-1670,1465,1466,1669,-1623,1469,1468,1622,-1670,1416,1467,1469,-1670,1469,1467,1349,-2111,1468,1469,2110,-1627,1472,1471,1609,-1667,1470,1472,1666,-1622,1472,1470,1625,-2109,1471,1472,2108,-1616,1473,686,684,-1373,1473,1372,742,-744,1475,652,687,-1475,1475,1474,739,-741,739,1474,1476,-929,1474,687,927,-1477,1478,637,677,-1478,1478,1477,731,-733,731,1477,1479,-925,1477,677,923,-1480,734,1374,1480,-927,1374,688,925,-1481,1482,1481,1483,-1486,1377,1482,1485,-1485,1482,1377,1634,-1636,1481,1482,1635,-1634,1485,1483,2114,-2116,1484,1485,2115,-1489,691,1486,1489,-1489,1486,653,1487,-1490,1489,1487,1423,-2114,1484,1488,1489,-2114,1491,693,639,-1491,1491,1490,694,-693,692,694,1492,-1494,1492,656,695,-1494,692,1493,1494,-935,1493,695,933,-1495,696,697,1495,-1497,1495,638,685,-1497,696,1496,1497,-933,1496,685,931,-1498,664,1498,1499,-933,1498,653,933,-1500,1500,1502,3115,-3074,1500,630,1501,-1503,1502,1501,2009,-3117,1631,3115,1502,-3117,1504,671,672,-1504,1504,1503,700,-700,701,1505,1506,-906,1505,658,918,-1507,1507,1508,3113,-3071,1508,1507,3073,-3116,2086,3113,1508,-3115,1510,670,643,-1510,1510,1509,703,-703,1513,1512,1392,-2089,1339,1511, +1513,-2089,1513,1511,1384,-1645,1389,1512,1513,-1645,705,1514,1515,-917,1514,640,914,-1516,705,1516,1519,-1519,1516,658,1517,-1520,1519,1517,1339,-2089,1392,1518,1519,-2089,1522,1521,1434,-2092,1391,1520,1522,-2092,1522,1520,1388,-1638,1354,1521,1522,-1638,1524,667,669,-1524,1524,1523,708,-708,709,1525,1528,-1528,1525,640,1526,-1529,1528,1526,1391,-2092,1434,1527,1528,-2092,709,1529,1530,-913,1529,666,911,-1531,1532,668,636,-1532,1532,1531,711,-711,1535,1534,1431,-2094,1433,1533,1535,-2094,1535,1533,1353,-1640,1428,1534,1535,-1640,713,1536,1539,-1539,1536,666,1537,-1540,1539,1537,1433,-2094,1431,1538,1539,-2094,713,1540,1541,-911,1540,642,909,-1542,1544,1543,1343,-2096,1430,1542,1544,-2096,1544,1542,1427,-1647,1396,1543,1544,-1647,1546,680,681,-1546,1546,1545,716,-716,717,1547,1548,-914,1547,660,915,-1549,717,1549,1552,-1552,1549,642,1550,-1553,1552,1550,1430,-2096,1343,1551,1552,-2096,1554,679,648,-1554,1554,1553,719,-719,1557,1556,1403,-2098,1342,1555,1557,-2098,1557,1555,1395,-1651,1400,1556,1557,-1651,721,1558,1559,-918,1558,645,919,-1560,721,1560,1563,-1563,1560,660,1561,-1564,1563,1561,1342,-2098,1403,1562,1563,-2098,1566,1565,1453,-2100,1402,1564,1566,-2100,1566,1564,1399,-1654,1362,1565,1566,-1654,1568,676,678,-1568,1568,1567,724,-724,725,1569,1572,-1572,1569,645,1570,-1573,1572,1570,1402,-2100,1453,1571,1572,-2100,725,1573,1574,-921,1573,675,921,-1575,1576,677,637,-1576,1576,1575,727,-727,1579,1578,1450,-2102,1452,1577,1579,-2102,1579,1577,1361,-1657,1447,1578,1579,-1657,729,1580,1583,-1583,1580,675,1581,-1584,1583,1581,1452,-2102,1450,1582,1583,-2102,729,1584,1585,-923,1584,647,923,-1586,1588,1587,1346,-2104,1449,1586,1588,-2104,1588,1586,1446,-1660,1407,1587,1588,-1660,1590,688,689,-1590,1590,1589,732,-732,733,1591,1592,-925,1591,662,925,-1593,733,1593,1596,-1596,1593,647,1594,-1597,1596,1594,1449,-2104,1346,1595,1596,-2104,1598,687,652,-1598,1598,1597,735,-735,1601,1600,1414,-2106,1345,1599,1601,-2106,1601,1599,1406,-1663,1411,1600,1601,-1663,737,1602,1603,-927,1602,649,927,-1604,737,1604,1607,-1607,1604, +662,1605,-1608,1607,1605,1345,-2106,1414,1606,1607,-2106,1610,1609,1471,-2108,1413,1608,1610,-2108,1610,1608,1410,-1666,1370,1609,1610,-1666,1612,684,686,-1612,1612,1611,740,-740,741,1613,1616,-1616,1613,649,1614,-1617,1616,1614,1413,-2108,1471,1615,1616,-2108,741,1617,1618,-929,1617,683,929,-1619,1620,685,638,-1620,1620,1619,743,-743,1623,1622,1468,-2110,1470,1621,1623,-2110,1623,1621,1369,-1669,1465,1622,1623,-1669,745,1624,1627,-1627,1624,683,1625,-1628,1627,1625,1470,-2110,1468,1626,1627,-2110,745,1628,1629,-931,1628,651,931,-1630,1385,1630,1631,-3117,1631,1630,1340,-3115,1631,3114,1508,-3116,690,1632,1635,-1635,1632,634,1633,-1636,641,1636,1637,-1389,1636,706,1354,-1638,665,1638,1639,-1354,1638,712,1428,-1640,657,1643,1644,-1385,1643,704,1389,-1645,631,1645,1646,-1428,1645,714,1396,-1647,659,1649,1650,-1396,1649,720,1400,-1651,646,1652,1653,-1400,1652,722,1362,-1654,674,1655,1656,-1362,1655,728,1447,-1657,632,1658,1659,-1447,1658,730,1407,-1660,661,1661,1662,-1407,1661,736,1411,-1663,650,1664,1665,-1411,1664,738,1370,-1666,682,1667,1668,-1370,1667,744,1465,-1669,633,1670,1671,-1465,1670,663,1421,-1672,654,1673,1674,-1421,1673,690,1634,-1675,1677,1676,857,-1721,1680,1679,859,-1734,1683,1682,867,-1747,766,1684,2117,-1816,1684,779,1764,-2118,817,1685,1689,-1689,1685,852,1686,-1690,1689,1686,853,-1688,1688,1689,1687,-781,782,1690,1691,-959,1690,820,957,-1692,787,1692,1695,-1695,1692,758,1693,-1696,1695,1693,3126,-3128,1694,1695,3127,-3125,829,1696,1700,-1700,1696,862,1697,-1701,1700,1697,863,-1699,1699,1700,1698,-790,791,1701,1702,-951,1701,832,949,-1703,970,1703,3135,-3135,1703,971,3132,-3136,841,1704,1708,-1708,1704,870,1705,-1709,1708,1705,871,-1707,1707,1708,1706,-798,799,1709,1710,-943,1709,844,941,-1711,966,1711,3143,-3143,1711,967,3140,-3144,849,1712,2116,-1831,1712,875,1765,-2117,770,1713,1714,-937,1713,806,937,-1715,753,1715,1718,-1718,1715,771,1716,-1719,1718,1716,2172,-3149,1717,1718,3148,-3147,811,1719,1723,-1723,1719,847,1720,-1724,1723,1720,857,-1722,1722,1723,1721,-773,815,1724,1728,-1728,1724,855, +1725,-1729,1728,1725,851,-1727,1727,1728,1726,-757,1731,1730,851,-1726,823,1732,1736,-1736,1732,858,1733,-1737,1736,1733,859,-1735,1735,1736,1734,-775,827,1737,1741,-1741,1737,860,1738,-1742,1741,1738,861,-1740,1740,1741,1739,-762,1744,1743,861,-1739,835,1745,1749,-1749,1745,866,1746,-1750,1749,1746,867,-1748,1748,1749,1747,-777,839,1750,1754,-1754,1750,868,1751,-1755,1754,1751,869,-1753,1753,1754,1752,-766,1757,1756,869,-1752,874,1758,2117,-1765,1758,873,1815,-2118,778,1759,1763,-1763,1759,874,1760,-1764,1763,1760,875,-1762,1762,1763,1761,-770,1766,1765,875,-1761,821,1767,1771,-1771,1767,854,1768,-1772,1771,1768,856,-1770,1770,1771,1769,-748,1774,1773,856,-1769,1777,1776,853,-1687,972,1778,3131,-3131,1778,973,3128,-3132,973,1779,3129,-3129,1779,974,3126,-3130,785,1780,1781,-961,1780,818,959,-1782,977,1782,1784,-1784,1782,787,1694,-1785,1784,1694,3124,-3126,1783,1784,3125,-3124,1786,908,788,-1786,1786,1785,3122,-2070,786,1787,1788,-963,1787,814,961,-1789,833,1789,1793,-1793,1789,864,1790,-1794,1793,1790,865,-1792,1792,1793,1791,-749,1796,1795,865,-1791,1799,1798,863,-1698,968,1800,3139,-3139,1800,969,3136,-3140,969,1801,3137,-3137,1801,970,3134,-3138,794,1802,1803,-953,1802,830,951,-1804,971,1804,3133,-3133,1804,972,3130,-3134,783,1805,1806,-957,1805,824,955,-1807,795,1807,1808,-955,1807,826,953,-1809,845,1809,1813,-1813,1809,872,1810,-1814,1813,1810,873,-1812,1812,1813,1811,-750,1816,1815,873,-1811,1819,1818,871,-1706,964,1820,3147,-3147,1820,965,3144,-3148,965,1821,3145,-3145,1821,966,3142,-3146,802,1822,1823,-945,1822,842,943,-1824,967,1824,3141,-3141,1824,968,3138,-3142,792,1825,1826,-949,1825,836,947,-1827,803,1827,1828,-947,1827,838,945,-1829,850,1829,1832,-1832,1829,849,1830,-1833,768,1833,2116,-1766,1833,806,1830,-2117,976,1834,2174,-2174,1834,963,2172,-2175,809,1835,1836,-939,1835,807,937,-1837,800,1837,1838,-941,1837,810,939,-1839,768,1839,1840,-939,1839,779,939,-1841,746,1841,1844,-1844,1841,848,1842,-1845,1844,1842,1892,-3121,1843,1844,3120,-3119,773,1845,1846,-963,1845,813,907,-1847,1847,3121,3081,-760, +2087,3121,1847,-2069,1729,855,1848,-2129,1848,857,1676,-2129,755,1849,1850,-961,1849,816,961,-1851,773,1851,2128,-1677,1851,816,1729,-2129,1775,852,1852,-2128,1852,851,1730,-2128,755,1853,2127,-1731,1853,819,1775,-2128,781,1854,1855,-959,1854,819,959,-1856,1772,854,1856,-2127,1856,853,1776,-2127,781,1857,2126,-1777,1857,822,1772,-2127,757,1858,1859,-957,1858,822,957,-1860,1678,858,1860,-2126,1860,856,1773,-2126,775,1861,1862,-955,1861,825,955,-1863,757,1863,2125,-1774,1863,825,1678,-2126,1742,860,1864,-2125,1864,859,1679,-2125,760,1865,1866,-953,1865,828,953,-1867,775,1867,2124,-1680,1867,828,1742,-2125,1797,862,1868,-2124,1868,861,1743,-2124,760,1869,2123,-1744,1869,831,1797,-2124,790,1870,1871,-951,1870,831,951,-1872,1794,864,1872,-2123,1872,863,1798,-2123,790,1873,2122,-1799,1873,834,1794,-2123,762,1874,1875,-949,1874,834,949,-1876,1681,866,1876,-2122,1876,865,1795,-2122,777,1877,1878,-947,1877,837,947,-1879,762,1879,2121,-1796,1879,837,1681,-2122,1755,868,1880,-2121,1880,867,1682,-2121,764,1881,1882,-945,1881,840,945,-1883,777,1883,2120,-1683,1883,840,1755,-2121,1817,870,1884,-2120,1884,869,1756,-2120,764,1885,2119,-1757,1885,843,1817,-2120,798,1886,1887,-943,1886,843,943,-1888,1814,872,1888,-2119,1888,871,1818,-2119,798,1889,2118,-1819,1889,846,1814,-2119,766,1890,1891,-941,1890,846,941,-1892,1675,847,1892,-2088,2087,1892,1842,-3122,805,1893,1896,-1896,1893,849,1829,-1897,1896,1829,850,-1895,1895,1896,1894,-751,756,1726,1898,-1898,1726,851,1852,-1899,1898,1852,852,-1686,1897,1898,1685,-818,780,1687,1900,-1900,1687,853,1856,-1901,1900,1856,854,-1768,1899,1900,1767,-822,1777,1686,852,-1776,1731,1725,855,-1730,1774,1768,854,-1773,772,1721,1902,-1902,1721,857,1848,-1903,1902,1848,855,-1725,1901,1902,1724,-816,747,1769,1904,-1904,1769,856,1860,-1905,1904,1860,858,-1733,1903,1904,1732,-824,1677,1720,847,-1676,1680,1733,858,-1679,774,1734,1906,-1906,1734,859,1864,-1907,1906,1864,860,-1738,1905,1906,1737,-828,1744,1738,860,-1743,761,1739,1908,-1908,1739,861,1868,-1909,1908,1868,862,-1697,1907,1908,1696,-830,1799,1697, +862,-1798,789,1698,1910,-1910,1698,863,1872,-1911,1910,1872,864,-1790,1909,1910,1789,-834,1796,1790,864,-1795,748,1791,1912,-1912,1791,865,1876,-1913,1912,1876,866,-1746,1911,1912,1745,-836,1683,1746,866,-1682,776,1747,1914,-1914,1747,867,1880,-1915,1914,1880,868,-1751,1913,1914,1750,-840,1757,1751,868,-1756,765,1752,1916,-1916,1752,869,1884,-1917,1916,1884,870,-1705,1915,1916,1704,-842,1819,1705,870,-1818,797,1706,1918,-1918,1706,871,1888,-1919,1918,1888,872,-1810,1917,1918,1809,-846,1816,1810,872,-1815,749,1811,1920,-1920,1811,873,1758,-1921,1920,1758,874,-1760,1919,1920,1759,-779,1766,1760,874,-1765,769,1761,1922,-1922,1761,875,1712,-1923,1922,1712,849,-1894,1921,1922,1893,-806,877,1923,1925,-1925,1923,746,1843,-1926,1925,1843,3118,-3120,1924,1925,3119,-2011,811,1722,1929,-1929,1722,772,1926,-1930,1929,1926,878,-1928,1928,1929,1927,-877,772,1901,1932,-1927,1901,815,1930,-1933,1932,1930,879,-1932,1926,1932,1931,-879,815,1727,1935,-1931,1727,756,1933,-1936,1935,1933,880,-1935,1930,1935,1934,-880,756,1897,1938,-1934,1897,817,1936,-1939,1938,1936,881,-1938,1933,1938,1937,-881,817,1688,1941,-1937,1688,780,1939,-1942,1941,1939,882,-1941,1936,1941,1940,-882,780,1899,1944,-1940,1899,821,1942,-1945,1944,1942,883,-1944,1939,1944,1943,-883,821,1770,1947,-1943,1770,747,1945,-1948,1947,1945,884,-1947,1942,1947,1946,-884,747,1903,1950,-1946,1903,823,1948,-1951,1950,1948,885,-1950,1945,1950,1949,-885,823,1735,1953,-1949,1735,774,1951,-1954,1953,1951,886,-1953,1948,1953,1952,-886,774,1905,1956,-1952,1905,827,1954,-1957,1956,1954,887,-1956,1951,1956,1955,-887,827,1740,1959,-1955,1740,761,1957,-1960,1959,1957,888,-1959,1954,1959,1958,-888,761,1907,1962,-1958,1907,829,1960,-1963,1962,1960,889,-1962,1957,1962,1961,-889,829,1699,1965,-1961,1699,789,1963,-1966,1965,1963,890,-1965,1960,1965,1964,-890,789,1909,1968,-1964,1909,833,1966,-1969,1968,1966,891,-1968,1963,1968,1967,-891,833,1792,1971,-1967,1792,748,1969,-1972,1971,1969,892,-1971,1966,1971,1970,-892,748,1911,1974,-1970,1911,835,1972,-1975,1974,1972,893,-1974,1969,1974,1973,-893, +835,1748,1977,-1973,1748,776,1975,-1978,1977,1975,894,-1977,1972,1977,1976,-894,776,1913,1980,-1976,1913,839,1978,-1981,1980,1978,895,-1980,1975,1980,1979,-895,839,1753,1983,-1979,1753,765,1981,-1984,1983,1981,896,-1983,1978,1983,1982,-896,765,1915,1986,-1982,1915,841,1984,-1987,1986,1984,897,-1986,1981,1986,1985,-897,841,1707,1989,-1985,1707,797,1987,-1990,1989,1987,898,-1989,1984,1989,1988,-898,797,1917,1992,-1988,1917,845,1990,-1993,1992,1990,899,-1992,1987,1992,1991,-899,845,1812,1995,-1991,1812,749,1993,-1996,1995,1993,900,-1995,1990,1995,1994,-900,749,1919,1998,-1994,1919,778,1996,-1999,1998,1996,901,-1998,1993,1998,1997,-901,778,1762,2001,-1997,1762,769,1999,-2002,2001,1999,902,-2001,1996,2001,2000,-902,769,1921,2004,-2000,1921,805,2002,-2005,2004,2002,903,-2004,1999,2004,2003,-903,805,1895,2007,-2003,1895,750,2005,-2008,2007,2005,904,-2007,2002,2007,2006,-904,876,2008,2011,-2011,2008,698,2009,-2012,2011,2009,1501,-3118,1924,2010,2011,-3118,657,1383,2013,-2013,1383,698,2008,-2014,2013,2008,876,-1928,2012,2013,1927,-879,704,1643,2015,-2015,1643,657,2012,-2016,2015,2012,878,-1932,2014,2015,1931,-880,641,1387,2017,-2017,1387,704,2014,-2018,2017,2014,879,-1935,2016,2017,1934,-881,706,1636,2019,-2019,1636,641,2016,-2020,2019,2016,880,-1938,2018,2019,1937,-882,665,1352,2021,-2021,1352,706,2018,-2022,2021,2018,881,-1941,2020,2021,1940,-883,712,1638,2023,-2023,1638,665,2020,-2024,2023,2020,882,-1944,2022,2023,1943,-884,631,1426,2025,-2025,1426,712,2022,-2026,2025,2022,883,-1947,2024,2025,1946,-885,714,1645,2027,-2027,1645,631,2024,-2028,2027,2024,884,-1950,2026,2027,1949,-886,659,1394,2029,-2029,1394,714,2026,-2030,2029,2026,885,-1953,2028,2029,1952,-887,720,1649,2031,-2031,1649,659,2028,-2032,2031,2028,886,-1956,2030,2031,1955,-888,646,1398,2033,-2033,1398,720,2030,-2034,2033,2030,887,-1959,2032,2033,1958,-889,722,1652,2035,-2035,1652,646,2032,-2036,2035,2032,888,-1962,2034,2035,1961,-890,674,1360,2037,-2037,1360,722,2034,-2038,2037,2034,889,-1965,2036,2037,1964,-891,728,1655,2039,-2039,1655,674,2036,-2040,2039,2036, +890,-1968,2038,2039,1967,-892,632,1445,2041,-2041,1445,728,2038,-2042,2041,2038,891,-1971,2040,2041,1970,-893,730,1658,2043,-2043,1658,632,2040,-2044,2043,2040,892,-1974,2042,2043,1973,-894,661,1405,2045,-2045,1405,730,2042,-2046,2045,2042,893,-1977,2044,2045,1976,-895,736,1661,2047,-2047,1661,661,2044,-2048,2047,2044,894,-1980,2046,2047,1979,-896,650,1409,2049,-2049,1409,736,2046,-2050,2049,2046,895,-1983,2048,2049,1982,-897,738,1664,2051,-2051,1664,650,2048,-2052,2051,2048,896,-1986,2050,2051,1985,-898,682,1368,2053,-2053,1368,738,2050,-2054,2053,2050,897,-1989,2052,2053,1988,-899,744,1667,2055,-2055,1667,682,2052,-2056,2055,2052,898,-1992,2054,2055,1991,-900,633,1463,2057,-2057,1463,744,2054,-2058,2057,2054,899,-1995,2056,2057,1994,-901,663,1670,2059,-2059,1670,633,2056,-2060,2059,2056,900,-1998,2058,2059,1997,-902,654,1419,2061,-2061,1419,663,2058,-2062,2061,2058,901,-2001,2060,2061,2000,-903,690,1673,2063,-2063,1673,654,2060,-2064,2063,2060,902,-2004,2062,2063,2003,-904,634,1632,2065,-2065,1632,690,2062,-2066,2065,2062,903,-2007,2064,2065,2006,-905,2067,905,699,-2067,1443,2067,2066,-1441,2069,907,813,-2069,1786,2069,2068,-1848,909,668,1532,-1542,1532,710,910,-1542,911,667,1524,-1531,1524,707,912,-1531,911,666,1536,-1358,1536,713,910,-1358,909,642,1549,-1462,1549,717,913,-1462,914,640,1525,-1440,1525,709,912,-1440,915,680,1546,-1549,1546,715,913,-1549,914,670,1510,-1516,1510,702,916,-1516,915,660,1560,-1463,1560,721,917,-1463,918,658,1516,-1445,1516,705,916,-1445,919,679,1554,-1560,1554,718,917,-1560,918,671,1504,-1507,1504,699,905,-1507,919,645,1569,-1459,1569,725,920,-1459,921,676,1568,-1575,1568,723,920,-1575,921,675,1580,-1366,1580,729,922,-1366,923,677,1576,-1586,1576,726,922,-1586,923,647,1593,-1480,1593,733,924,-1480,925,688,1590,-1593,1590,731,924,-1593,925,662,1604,-1481,1604,737,926,-1481,927,687,1598,-1604,1598,734,926,-1604,927,649,1613,-1477,1613,741,928,-1477,929,684,1612,-1619,1612,739,928,-1619,929,683,1624,-1374,1624,745,930,-1374,931,685,1620,-1630,1620,742,930,-1630,931,651,1348,-1498,1348,664, +932,-1498,933,695,1382,-1500,1382,696,932,-1500,933,653,1486,-1495,1486,691,934,-1495,693,1491,1379,-936,1491,692,934,-1380,937,807,2070,-1715,2070,808,936,-1715,937,806,1833,-1837,1833,768,938,-1837,939,810,2071,-1841,2071,809,938,-1841,939,779,1684,-1839,1684,766,940,-1839,941,844,2072,-1892,2072,800,940,-1892,941,846,1889,-1711,1889,798,942,-1711,943,842,2073,-1888,2073,799,942,-1888,943,843,1885,-1824,1885,764,944,-1824,945,838,2074,-1883,2074,802,944,-1883,945,840,1883,-1829,1883,777,946,-1829,947,836,2075,-1879,2075,803,946,-1879,947,837,1879,-1827,1879,762,948,-1827,949,832,2076,-1876,2076,792,948,-1876,949,834,1873,-1703,1873,790,950,-1703,951,830,2077,-1872,2077,791,950,-1872,951,831,1869,-1804,1869,760,952,-1804,953,826,2078,-1867,2078,794,952,-1867,953,828,1867,-1809,1867,775,954,-1809,955,824,2079,-1863,2079,795,954,-1863,955,825,1863,-1807,1863,757,956,-1807,957,820,2080,-1860,2080,783,956,-1860,957,822,1857,-1692,1857,781,958,-1692,959,818,2081,-1856,2081,782,958,-1856,959,819,1853,-1782,1853,755,960,-1782,961,814,2082,-1851,2082,785,960,-1851,961,816,1851,-1789,1851,773,962,-1789,812,2083,1846,-908,2083,786,962,-1847,1340,2084,2086,-3115,2084,701,2085,-2087,2086,2085,1442,-3114,658,1505,2089,-1518,1505,701,2084,-2090,640,1514,2090,-1527,1514,705,1518,-2091,666,1529,2092,-1538,1529,709,1527,-2093,642,1540,2094,-1551,1540,713,1538,-2095,660,1547,2096,-1562,1547,717,1551,-2097,645,1558,2098,-1571,1558,721,1562,-2099,675,1573,2100,-1582,1573,725,1571,-2101,647,1584,2102,-1595,1584,729,1582,-2103,662,1591,2104,-1606,1591,733,1595,-2105,649,1602,2106,-1615,1602,737,1606,-2107,683,1617,2108,-1626,1617,741,1615,-2109,651,1628,2110,-1350,1628,745,1626,-2111,653,1498,2112,-1488,1498,664,1350,-2113,655,1380,2115,-2115,1380,691,1488,-2116,1830,806,1713,-1833,1713,770,1831,-1833,1764,779,1839,-1767,1839,768,1765,-1767,1814,846,1890,-1817,1890,766,1815,-1817,1817,843,1886,-1820,1886,798,1818,-1820,1755,840,1881,-1758,1881,764,1756,-1758,1681,837,1877,-1684,1877,777,1682,-1684,1794,834,1874,-1797,1874,762,1795,-1797, +1797,831,1870,-1800,1870,790,1798,-1800,1742,828,1865,-1745,1865,760,1743,-1745,1678,825,1861,-1681,1861,775,1679,-1681,1772,822,1858,-1775,1858,757,1773,-1775,1775,819,1854,-1778,1854,781,1776,-1778,1729,816,1849,-1732,1849,755,1730,-1732,813,1845,1677,-1676,1845,773,1676,-1678,809,2071,2131,-1836,2071,810,2129,-2132,2131,2129,963,-2131,1835,2131,2130,-808,965,2132,2134,-2134,2132,844,1709,-2135,2134,1709,799,-2074,2133,2134,2073,-843,967,2135,2137,-2137,2135,838,1827,-2138,2137,1827,803,-2076,2136,2137,2075,-837,969,2138,2140,-2140,2138,832,1701,-2141,2140,1701,791,-2078,2139,2140,2077,-831,971,2141,2143,-2143,2141,826,1807,-2144,2143,1807,795,-2080,2142,2143,2079,-825,973,2144,2146,-2146,2144,820,1690,-2147,2146,1690,782,-2082,2145,2146,2081,-819,975,2147,2149,-2149,2147,814,1787,-2150,2149,1787,786,-2084,2148,2149,2083,-813,976,2150,2151,-1835,2150,808,2070,-2152,2151,2070,807,-2131,1834,2151,2130,-964,964,2152,2154,-2154,2152,963,2129,-2155,2154,2129,810,-1838,2153,2154,1837,-801,844,2132,2155,-2073,2132,965,1820,-2156,2155,1820,964,-2154,2072,2155,2153,-801,966,1821,2157,-2157,1821,965,2133,-2158,2157,2133,842,-1823,2156,2157,1822,-803,838,2135,2158,-2075,2135,967,1711,-2159,2158,1711,966,-2157,2074,2158,2156,-803,968,1824,2160,-2160,1824,967,2136,-2161,2160,2136,836,-1826,2159,2160,1825,-793,832,2138,2161,-2077,2138,969,1800,-2162,2161,1800,968,-2160,2076,2161,2159,-793,970,1801,2163,-2163,1801,969,2139,-2164,2163,2139,830,-1803,2162,2163,1802,-795,826,2141,2164,-2079,2141,971,1703,-2165,2164,1703,970,-2163,2078,2164,2162,-795,972,1804,2166,-2166,1804,971,2142,-2167,2166,2142,824,-1806,2165,2166,1805,-784,820,2144,2167,-2081,2144,973,1778,-2168,2167,1778,972,-2166,2080,2167,2165,-784,974,1779,2169,-2169,1779,973,2145,-2170,2169,2145,818,-1781,2168,2169,1780,-786,814,2147,2171,-2083,2147,975,2170,-2172,2171,2170,974,-2169,2082,2171,2168,-786,974,2170,3127,-3127,2170,975,3124,-3128,2174,2172,1716,-3113,2173,2174,3112,-3112,758,2175,2177,-1694,2175,784,2176,-2178,2177,2176,3128,-3130,1693,2177,3129,-3127,784,2178, +2180,-2177,2178,751,2179,-2181,2180,2179,3130,-3132,2176,2180,3131,-3129,751,2181,2183,-2180,2181,796,2182,-2184,2183,2182,3132,-3134,2179,2183,3133,-3131,796,2184,2186,-2183,2184,763,2185,-2187,2186,2185,3134,-3136,2182,2186,3135,-3133,763,2187,2189,-2186,2187,793,2188,-2190,2189,2188,3136,-3138,2185,2189,3137,-3135,793,2190,2192,-2189,2190,752,2191,-2193,2192,2191,3138,-3140,2188,2192,3139,-3137,752,2193,2195,-2192,2193,804,2194,-2196,2195,2194,3140,-3142,2191,2195,3141,-3139,804,2196,2198,-2195,2196,767,2197,-2199,2198,2197,3142,-3144,2194,2198,3143,-3141,767,2199,2201,-2198,2199,801,2200,-2202,2201,2200,3144,-3146,2197,2201,3145,-3143,801,2202,2203,-2201,2202,753,1717,-2204,2203,1717,3146,-3148,2200,2203,3147,-3145,2172,963,2152,-3149,2152,964,3146,-3149,2148,812,3123,-3126,2148,3125,3124,-976,1785,788,977,-1784,1785,1783,3123,-3123,2204,2206,2510,-2494,2206,2204,2952,-2958,2205,2206,2957,-2381,2206,2205,2375,-2511,2207,2209,2511,-2406,2209,2207,2412,-2965,2208,2209,2964,-2425,2209,2208,2419,-2512,2210,2212,2523,-2450,2212,2210,2456,-2973,2211,2212,2972,-2469,2212,2211,2463,-2524,1009,2213,2216,-2216,2216,2213,2288,-2980,2214,2216,2979,-2334,2215,2216,2214,-997,1050,2217,2220,-2220,2220,2217,2383,-2504,2218,2220,2503,-2398,2219,2220,2218,-1011,2222,1054,1233,-2222,2222,2221,1234,-1013,1017,2223,2224,-1017,2223,1047,1046,-2225,1066,2225,2228,-2228,2228,2225,2427,-2518,2226,2228,2517,-2442,2227,2228,2226,-1019,2230,1070,1245,-2230,2230,2229,1244,-1021,1025,2231,2232,-1025,2231,1063,1062,-2233,1082,2233,2236,-2236,2236,2233,2471,-2530,2234,2236,2529,-2486,2235,2236,2234,-1027,2238,1086,1253,-2238,2238,2237,1252,-1029,1033,2239,2240,-1033,2239,1079,1078,-2241,2241,2243,2981,-2349,2243,2241,2495,-2538,2242,2243,2537,-2286,2243,2242,2289,-2982,2245,1035,1257,-2245,2245,2244,1258,-1001,1039,2246,2247,-1002,2246,1040,1041,-2248,1042,2248,2251,-2251,2251,2248,2493,-2511,2249,2251,2510,-2376,2250,2251,2249,-1003,1048,2252,2255,-2255,2255,2252,2374,-2505,2253,2255,2504,-2385,2254,2255,2253,-988,2256,2258,2504,-2375,2258, +2256,2379,-2959,2257,2258,2958,-2390,2258,2257,2384,-2505,1058,2259,2262,-2262,2262,2259,2405,-2512,2260,2262,2511,-2420,2261,2262,2260,-1005,1064,2263,2266,-2266,2266,2263,2418,-2515,2264,2266,2514,-2429,2265,2266,2264,-992,2267,2269,2514,-2419,2269,2267,2423,-2967,2268,2269,2966,-2434,2269,2268,2428,-2515,1074,2270,2273,-2273,2273,2270,2449,-2524,2271,2273,2523,-2464,2272,2273,2271,-1007,1080,2274,2277,-2277,2277,2274,2462,-2527,2275,2277,2526,-2473,2276,2277,2275,-996,2278,2280,2526,-2463,2280,2278,2467,-2975,2279,2280,2974,-2478,2280,2279,2472,-2527,2281,2283,2979,-2289,2283,2281,2284,-2535,2282,2283,2534,-2330,2283,2282,2333,-2980,1008,2284,2287,-2287,2287,2284,2281,-2536,2242,2285,2287,-2536,2286,2287,2285,-1000,2281,2288,2290,-2536,2290,2288,2213,-2981,2289,2290,2980,-2353,2290,2289,2242,-2536,1056,2291,2294,-2294,2294,2291,2396,-2506,2292,2294,2505,-2407,2293,2294,2292,-979,2295,2297,2505,-2397,2297,2295,2399,-2963,2296,2297,2962,-2414,2297,2296,2406,-2506,2298,2300,2503,-2384,2300,2298,2388,-2961,2299,2300,2960,-2401,2300,2299,2397,-2504,1014,2301,2222,-1013,2301,1055,1054,-2223,989,2302,2303,-1016,2302,1052,1051,-2304,2303,1051,1235,-2305,2303,2304,1237,-1016,2306,1044,1043,-2306,3065,2306,2305,-3067,2308,644,906,-2308,2308,2307,2935,-2954,2224,1046,1239,-2310,2224,2309,1241,-1017,1072,2310,2313,-2313,2313,2310,2440,-2521,2311,2313,2520,-2451,2312,2313,2311,-980,2314,2316,2520,-2441,2316,2314,2443,-2971,2315,2316,2970,-2458,2316,2315,2450,-2521,2317,2319,2517,-2428,2319,2317,2432,-2969,2318,2319,2968,-2445,2319,2318,2441,-2518,1022,2320,2230,-1021,2320,1071,1070,-2231,993,2321,2322,-1024,2321,1068,1067,-2323,2322,1067,1243,-2324,2322,2323,1242,-1024,982,2324,2325,-1014,2324,1060,1059,-2326,2325,1059,1236,-2327,2325,2326,1232,-1014,2232,1062,1240,-2328,2232,2327,1238,-1025,1088,2328,2331,-2331,2331,2328,2484,-2533,2282,2329,2331,-2533,2330,2331,2329,-981,2332,2334,2532,-2485,2334,2332,2487,-2979,2214,2333,2334,-2979,2334,2333,2282,-2533,2335,2337,2529,-2472,2337,2335,2476,-2977,2336,2337,2976,-2489,2337,2336, +2485,-2530,1030,2338,2238,-1029,2338,1087,1086,-2239,997,2339,2340,-1032,2339,1084,1083,-2341,2340,1083,1251,-2342,2340,2341,1250,-1032,983,2342,2343,-1022,2342,1076,1075,-2344,2343,1075,1247,-2345,2343,2344,1246,-1022,2240,1078,1249,-2346,2240,2345,1248,-1033,2346,2347,2350,-2350,2347,2346,2496,-2499,2241,2347,2498,-2496,2347,2241,2348,-2351,2350,2348,2351,-2984,2349,2350,2983,-2983,1035,2351,2354,-2354,2354,2351,2348,-2982,2289,2352,2354,-2982,2353,2354,2352,-999,1037,2355,2356,-986,2355,1036,1038,-2357,2358,1038,1036,-2358,2358,2357,1039,-1002,2357,1036,1257,-2360,2357,2359,1256,-1040,2361,1041,1040,-2361,2361,2360,1029,-985,2360,1040,1255,-2363,2360,2362,1254,-1030,2364,1009,1255,-2364,2364,2363,1256,-999,630,1500,2366,-2366,2366,1500,3073,-3075,2365,2366,3075,-2880,1017,1016,2367,-2369,2367,1043,1044,-2369,2370,1045,1230,-2370,2370,2369,1241,-1004,1507,2371,3074,-3074,2371,1507,3070,-3072,2494,3074,2371,-3073,989,1015,2372,-2374,2372,1046,1047,-2374,2256,2374,2376,-2957,2376,2374,2252,-2508,2249,2375,2376,-2508,2376,2375,2205,-2957,2378,1049,1239,-2378,2378,2377,1237,-987,1049,2379,2382,-2382,2382,2379,2256,-2957,2205,2380,2382,-2957,2381,2382,2380,-1004,2298,2383,2385,-2960,2385,2383,2217,-2501,2253,2384,2385,-2501,2385,2384,2257,-2960,1014,1012,2386,-2388,2386,1051,1052,-2388,1053,2388,2391,-2391,2391,2388,2298,-2960,2257,2389,2391,-2960,2390,2391,2389,-987,2393,1053,1235,-2393,2393,2392,1234,-1012,982,1013,2394,-2396,2394,1054,1055,-2396,2295,2396,2398,-2962,2398,2396,2291,-2503,2218,2397,2398,-2503,2398,2397,2299,-2962,1057,2399,2402,-2402,2402,2399,2295,-2962,2299,2400,2402,-2962,2401,2402,2400,-1012,2404,1057,1233,-2404,2404,2403,1232,-989,2207,2405,2407,-2964,2407,2405,2259,-2510,2292,2406,2407,-2510,2407,2406,2296,-2964,1025,1024,2408,-2410,2408,1059,1060,-2410,2411,1061,1236,-2411,2411,2410,1238,-1006,1061,2412,2415,-2415,2415,2412,2207,-2964,2296,2413,2415,-2964,2414,2415,2413,-989,993,1023,2416,-2418,2416,1062,1063,-2418,2267,2418,2420,-2966,2420,2418,2263,-2514,2260,2419,2420,-2514,2420,2419,2208, +-2966,2422,1065,1240,-2422,2422,2421,1242,-991,1065,2423,2426,-2426,2426,2423,2267,-2966,2208,2424,2426,-2966,2425,2426,2424,-1006,2317,2427,2429,-2968,2429,2427,2225,-2517,2264,2428,2429,-2517,2429,2428,2268,-2968,1022,1020,2430,-2432,2430,1067,1068,-2432,1069,2432,2435,-2435,2435,2432,2317,-2968,2268,2433,2435,-2968,2434,2435,2433,-991,2437,1069,1243,-2437,2437,2436,1244,-1020,983,1021,2438,-2440,2438,1070,1071,-2440,2314,2440,2442,-2970,2442,2440,2310,-2520,2226,2441,2442,-2520,2442,2441,2318,-2970,1073,2443,2446,-2446,2446,2443,2314,-2970,2318,2444,2446,-2970,2445,2446,2444,-1020,2448,1073,1245,-2448,2448,2447,1246,-993,2210,2449,2451,-2972,2451,2449,2270,-2523,2311,2450,2451,-2523,2451,2450,2315,-2972,1033,1032,2452,-2454,2452,1075,1076,-2454,2455,1077,1247,-2455,2455,2454,1248,-1008,1077,2456,2459,-2459,2459,2456,2210,-2972,2315,2457,2459,-2972,2458,2459,2457,-993,997,1031,2460,-2462,2460,1078,1079,-2462,2278,2462,2464,-2974,2464,2462,2274,-2526,2271,2463,2464,-2526,2464,2463,2211,-2974,2466,1081,1249,-2466,2466,2465,1250,-995,1081,2467,2470,-2470,2470,2467,2278,-2974,2211,2468,2470,-2974,2469,2470,2468,-1008,2335,2471,2473,-2976,2473,2471,2233,-2529,2275,2472,2473,-2529,2473,2472,2279,-2976,1030,1028,2474,-2476,2474,1083,1084,-2476,1085,2476,2479,-2479,2479,2476,2335,-2976,2279,2477,2479,-2976,2478,2479,2477,-995,2481,1085,1251,-2481,2481,2480,1252,-1028,984,1029,2482,-2484,2482,1086,1087,-2484,2332,2484,2486,-2978,2486,2484,2328,-2532,2234,2485,2486,-2532,2486,2485,2336,-2978,1089,2487,2490,-2490,2490,2487,2332,-2978,2336,2488,2490,-2978,2489,2490,2488,-1028,2492,1089,1253,-2492,2492,2491,1254,-997,2204,2493,2494,-3073,2494,2493,2248,-3076,2494,3075,2366,-3075,1034,2495,2498,-2498,2497,2498,2496,-982,987,2253,2500,-2500,2499,2500,2217,-1051,1010,2218,2502,-2502,2501,2502,2291,-1057,1002,2249,2507,-2507,2506,2507,2252,-1049,978,2292,2509,-2509,2508,2509,2259,-1059,1004,2260,2513,-2513,2512,2513,2263,-1065,991,2264,2516,-2516,2515,2516,2225,-1067,1018,2226,2519,-2519,2518,2519,2310,-1073,979,2311,2522,-2522, +2521,2522,2270,-1075,1006,2271,2525,-2525,2524,2525,2274,-1081,995,2275,2528,-2528,2527,2528,2233,-1083,1026,2234,2531,-2531,2530,2531,2328,-1089,980,2329,2534,-2534,2533,2534,2284,-1009,999,2285,2537,-2537,2536,2537,2495,-1035,1183,2538,2540,-2585,2716,2540,2538,-1108,2540,2539,1174,-2585,1185,2541,2543,-2598,2732,2543,2541,-1110,2543,2542,1184,-2598,1193,2544,2546,-2611,2748,2546,2544,-1112,2546,2545,1192,-2611,2547,1102,2681,-2986,2547,2985,2628,-1114,1144,2548,2552,-2552,2548,1114,2549,-2553,2552,2549,1179,-2551,2551,2552,2550,-1179,2554,1116,1281,-2554,2554,2553,1280,-1148,758,1692,2557,-2557,1692,787,2555,-2558,2557,2555,3085,-3089,2556,2557,3088,-3088,1156,2558,2562,-2562,2558,1120,2559,-2563,2562,2559,1189,-2561,2561,2562,2560,-1189,2564,1122,1273,-2564,2564,2563,1272,-1160,2566,1293,1307,-2566,2566,2565,1306,-1295,1168,2567,2571,-2571,2567,1126,2568,-2572,2571,2568,1197,-2570,2570,2571,2569,-1197,2573,1128,1265,-2573,2573,2572,1264,-1172,2575,1289,1311,-2575,2575,2574,1310,-1291,2701,2984,2576,-1176,2984,2627,1201,-2577,2578,1105,1259,-2578,2578,2577,1260,-1134,771,1715,2581,-2581,1715,753,2579,-2582,2581,2579,3107,-3110,2580,2581,3109,-3069,1138,2582,2586,-2586,2582,1106,2583,-2587,2586,2583,1183,-2585,2585,2586,2584,-1175,1142,2587,2591,-2591,2587,1095,2588,-2592,2591,2588,1177,-2590,2590,2591,2589,-1182,1177,2592,2594,-2590,2720,2594,2592,-1095,2594,2593,1181,-2590,1150,2595,2599,-2599,2595,1108,2596,-2600,2599,2596,1185,-2598,2598,2599,2597,-1185,1154,2600,2604,-2604,2600,1098,2601,-2605,2604,2601,1187,-2603,2603,2604,2602,-1187,1187,2605,2607,-2603,2736,2607,2605,-1098,2607,2606,1186,-2603,1162,2608,2612,-2612,2608,1110,2609,-2613,2612,2609,1193,-2611,2611,2612,2610,-1193,1166,2613,2617,-2617,2613,1101,2614,-2618,2617,2614,1195,-2616,2616,2617,2615,-1195,1195,2618,2620,-2616,2752,2620,2618,-1101,2620,2619,1194,-2616,2628,2985,2621,-1201,2985,2681,1199,-2622,1112,2622,2626,-2626,2622,1104,2623,-2627,2626,2623,1201,-2625,2625,2626,2624,-1201,1201,2627,2629,-2625,2711,2629,2627,-1104,2629,2628,1200,-2625, +1148,2630,2634,-2634,2630,1090,2631,-2635,2634,2631,1182,-2633,2633,2634,2632,-1181,1182,2635,2637,-2633,2729,2637,2635,-1097,2637,2636,1180,-2633,1179,2638,2640,-2551,2725,2640,2638,-1116,2640,2639,1178,-2551,2642,1295,1305,-2642,2642,2641,1304,-1297,2644,1296,1304,-2644,2644,2643,1300,-1298,2646,1118,1283,-2646,2646,2645,1282,-1146,787,1782,2648,-2556,1782,977,2647,-2649,2648,2647,3084,-3087,2555,2648,3086,-3086,2650,788,908,-2650,2650,2649,2936,-3084,2652,1119,1285,-2652,2652,2651,1284,-1142,1160,2653,2657,-2657,2653,1091,2654,-2658,2657,2654,1191,-2656,2656,2657,2655,-1191,1191,2658,2660,-2656,2745,2660,2658,-1100,2660,2659,1190,-2656,1189,2661,2663,-2561,2741,2663,2661,-1122,2663,2662,1188,-2561,2665,1291,1309,-2665,2665,2664,1308,-1293,2667,1292,1308,-2667,2667,2666,1307,-1294,2669,1124,1275,-2669,2669,2668,1274,-1158,2671,1294,1306,-2671,2671,2670,1305,-1296,2673,1117,1279,-2673,2673,2672,1278,-1152,2675,1125,1277,-2675,2675,2674,1276,-1154,1172,2676,2680,-2680,2676,1092,2677,-2681,2680,2677,1199,-2679,2679,2680,2678,-1199,1199,2681,2683,-2679,2761,2683,2681,-1103,2683,2682,1198,-2679,1197,2684,2686,-2570,2757,2686,2684,-1128,2686,2685,1196,-2570,2688,1287,1313,-2688,2688,2687,1312,-1289,2690,1288,1312,-2690,2690,2689,1311,-1290,2692,1130,1267,-2692,2692,2691,1266,-1170,2694,1290,1310,-2694,2694,2693,1309,-1292,2696,1123,1271,-2696,2696,2695,1270,-1164,2698,1131,1269,-2698,2698,2697,1268,-1166,2700,2702,2699,-1177,2702,2701,1175,-2700,2578,2702,2700,-1106,2703,1103,2627,-2985,2703,2984,2701,-1134,2705,1299,1303,-2705,2705,2704,1302,-1287,2707,1136,1261,-2707,2707,2706,1260,-1135,2709,1129,1263,-2709,2709,2708,1262,-1138,2711,1103,1261,-2711,2711,2710,1262,-1114,848,1841,2714,-2714,1841,746,2712,-2715,2714,2712,3078,-3081,2713,2714,3080,-2763,2716,1107,1285,-2716,2716,2715,1231,-1141,2717,759,3081,-3083,2593,2996,2718,-1182,2996,2538,1183,-2719,2720,1094,1283,-2720,2720,2719,1284,-1144,2721,1107,2538,-2997,2721,2996,2593,-1144,2639,2995,2722,-1179,2995,2592,1177,-2723,2723,1094,2592,-2996,2723,2995,2639,-1147, +2725,1115,1281,-2725,2725,2724,1282,-1147,2636,2994,2726,-1181,2994,2638,1179,-2727,2727,1115,2638,-2995,2727,2994,2636,-1150,2729,1096,1279,-2729,2729,2728,1280,-1150,2542,2993,2730,-1185,2993,2635,1182,-2731,2732,1109,1277,-2732,2732,2731,1278,-1153,2733,1096,2635,-2994,2733,2993,2542,-1153,2606,2992,2734,-1187,2992,2541,1185,-2735,2736,1097,1275,-2736,2736,2735,1276,-1156,2737,1109,2541,-2993,2737,2992,2606,-1156,2662,2991,2738,-1189,2991,2605,1187,-2739,2739,1097,2605,-2992,2739,2991,2662,-1159,2741,1121,1273,-2741,2741,2740,1274,-1159,2659,2990,2742,-1191,2990,2661,1189,-2743,2743,1121,2661,-2991,2743,2990,2659,-1162,2745,1099,1271,-2745,2745,2744,1272,-1162,2545,2989,2746,-1193,2989,2658,1191,-2747,2748,1111,1269,-2748,2748,2747,1270,-1165,2749,1099,2658,-2990,2749,2989,2545,-1165,2619,2988,2750,-1195,2988,2544,1193,-2751,2752,1100,1267,-2752,2752,2751,1268,-1168,2753,1111,2544,-2989,2753,2988,2619,-1168,2685,2987,2754,-1197,2987,2618,1195,-2755,2755,1100,2618,-2988,2755,2987,2685,-1171,2757,1127,1265,-2757,2757,2756,1266,-1171,2682,2986,2758,-1199,2986,2684,1197,-2759,2759,1127,2684,-2987,2759,2986,2682,-1174,2761,1102,1263,-2761,2761,2760,1264,-1174,2762,1174,2539,-2956,2713,2762,2955,-3083,1132,2763,2766,-2766,2763,1093,2764,-2767,2766,2764,1176,-2700,2765,2766,2699,-1176,1095,2767,2768,-2589,2767,1144,2551,-2769,2768,2551,1178,-2723,2588,2768,2722,-1178,1114,2769,2770,-2550,2769,1148,2633,-2771,2770,2633,1180,-2727,2549,2770,2726,-1180,1106,2771,2772,-2584,2771,1142,2590,-2773,2772,2590,1181,-2719,2583,2772,2718,-1184,1090,2773,2774,-2632,2773,1150,2598,-2775,2774,2598,1184,-2731,2631,2774,2730,-1183,1108,2775,2776,-2597,2775,1154,2603,-2777,2776,2603,1186,-2735,2596,2776,2734,-1186,1098,2777,2778,-2602,2777,1156,2561,-2779,2778,2561,1188,-2739,2601,2778,2738,-1188,1120,2779,2780,-2560,2779,1160,2656,-2781,2780,2656,1190,-2743,2559,2780,2742,-1190,1091,2781,2782,-2655,2781,1162,2611,-2783,2782,2611,1192,-2747,2654,2782,2746,-1192,1110,2783,2784,-2610,2783,1166,2616,-2785,2784,2616,1194,-2751,2609,2784,2750, +-1194,1101,2785,2786,-2615,2785,1168,2570,-2787,2786,2570,1196,-2755,2614,2786,2754,-1196,1126,2787,2788,-2569,2787,1172,2679,-2789,2788,2679,1198,-2759,2568,2788,2758,-1198,1092,2789,2790,-2678,2789,1112,2625,-2791,2790,2625,1200,-2622,2677,2790,2621,-1200,1104,2791,2792,-2624,2791,1132,2765,-2793,2792,2765,1175,-2577,2623,2792,2576,-1202,746,1923,2794,-2713,1923,877,2793,-2795,2794,2793,2878,-3080,2712,2794,3079,-3079,1138,2795,2798,-2583,2795,1202,2796,-2799,2798,2796,1203,-2798,2582,2798,2797,-1107,1106,2797,2801,-2772,2797,1203,2799,-2802,2801,2799,1204,-2801,2771,2801,2800,-1143,1142,2800,2804,-2588,2800,1204,2802,-2805,2804,2802,1205,-2804,2587,2804,2803,-1096,1095,2803,2807,-2768,2803,1205,2805,-2808,2807,2805,1206,-2807,2767,2807,2806,-1145,1144,2806,2810,-2549,2806,1206,2808,-2811,2810,2808,1207,-2810,2548,2810,2809,-1115,1114,2809,2813,-2770,2809,1207,2811,-2814,2813,2811,1208,-2813,2769,2813,2812,-1149,1148,2812,2816,-2631,2812,1208,2814,-2817,2816,2814,1209,-2816,2630,2816,2815,-1091,1090,2815,2819,-2774,2815,1209,2817,-2820,2819,2817,1210,-2819,2773,2819,2818,-1151,1150,2818,2822,-2596,2818,1210,2820,-2823,2822,2820,1211,-2822,2595,2822,2821,-1109,1108,2821,2825,-2776,2821,1211,2823,-2826,2825,2823,1212,-2825,2775,2825,2824,-1155,1154,2824,2828,-2601,2824,1212,2826,-2829,2828,2826,1213,-2828,2600,2828,2827,-1099,1098,2827,2831,-2778,2827,1213,2829,-2832,2831,2829,1214,-2831,2777,2831,2830,-1157,1156,2830,2834,-2559,2830,1214,2832,-2835,2834,2832,1215,-2834,2558,2834,2833,-1121,1120,2833,2837,-2780,2833,1215,2835,-2838,2837,2835,1216,-2837,2779,2837,2836,-1161,1160,2836,2840,-2654,2836,1216,2838,-2841,2840,2838,1217,-2840,2653,2840,2839,-1092,1091,2839,2843,-2782,2839,1217,2841,-2844,2843,2841,1218,-2843,2781,2843,2842,-1163,1162,2842,2846,-2609,2842,1218,2844,-2847,2846,2844,1219,-2846,2608,2846,2845,-1111,1110,2845,2849,-2784,2845,1219,2847,-2850,2849,2847,1220,-2849,2783,2849,2848,-1167,1166,2848,2852,-2614,2848,1220,2850,-2853,2852,2850,1221,-2852,2613,2852,2851,-1102,1101,2851,2855,-2786,2851,1221, +2853,-2856,2855,2853,1222,-2855,2785,2855,2854,-1169,1168,2854,2858,-2568,2854,1222,2856,-2859,2858,2856,1223,-2858,2567,2858,2857,-1127,1126,2857,2861,-2788,2857,1223,2859,-2862,2861,2859,1224,-2861,2787,2861,2860,-1173,1172,2860,2864,-2677,2860,1224,2862,-2865,2864,2862,1225,-2864,2676,2864,2863,-1093,1092,2863,2867,-2790,2863,1225,2865,-2868,2867,2865,1226,-2867,2789,2867,2866,-1113,1112,2866,2870,-2623,2866,1226,2868,-2871,2870,2868,1227,-2870,2622,2870,2869,-1105,1104,2869,2873,-2792,2869,1227,2871,-2874,2873,2871,1228,-2873,2791,2873,2872,-1133,1132,2872,2876,-2764,2872,1228,2874,-2877,2876,2874,1229,-2876,2763,2876,2875,-1094,1042,2877,2880,-2880,2877,1202,2878,-2881,2880,2878,2793,-3078,2365,2879,2880,-3078,1002,2881,2882,-2251,2881,1203,2796,-2883,2882,2796,1202,-2878,2250,2882,2877,-1043,1048,2883,2884,-2507,2883,1204,2799,-2885,2884,2799,1203,-2882,2506,2884,2881,-1003,987,2885,2886,-2255,2885,1205,2802,-2887,2886,2802,1204,-2884,2254,2886,2883,-1049,1050,2887,2888,-2500,2887,1206,2805,-2889,2888,2805,1205,-2886,2499,2888,2885,-988,1010,2889,2890,-2220,2889,1207,2808,-2891,2890,2808,1206,-2888,2219,2890,2887,-1051,1056,2891,2892,-2502,2891,1208,2811,-2893,2892,2811,1207,-2890,2501,2892,2889,-1011,978,2893,2894,-2294,2893,1209,2814,-2895,2894,2814,1208,-2892,2293,2894,2891,-1057,1058,2895,2896,-2509,2895,1210,2817,-2897,2896,2817,1209,-2894,2508,2896,2893,-979,1004,2897,2898,-2262,2897,1211,2820,-2899,2898,2820,1210,-2896,2261,2898,2895,-1059,1064,2899,2900,-2513,2899,1212,2823,-2901,2900,2823,1211,-2898,2512,2900,2897,-1005,991,2901,2902,-2266,2901,1213,2826,-2903,2902,2826,1212,-2900,2265,2902,2899,-1065,1066,2903,2904,-2516,2903,1214,2829,-2905,2904,2829,1213,-2902,2515,2904,2901,-992,1018,2905,2906,-2228,2905,1215,2832,-2907,2906,2832,1214,-2904,2227,2906,2903,-1067,1072,2907,2908,-2519,2907,1216,2835,-2909,2908,2835,1215,-2906,2518,2908,2905,-1019,979,2909,2910,-2313,2909,1217,2838,-2911,2910,2838,1216,-2908,2312,2910,2907,-1073,1074,2911,2912,-2522,2911,1218,2841,-2913,2912,2841,1217,-2910,2521,2912, +2909,-980,1006,2913,2914,-2273,2913,1219,2844,-2915,2914,2844,1218,-2912,2272,2914,2911,-1075,1080,2915,2916,-2525,2915,1220,2847,-2917,2916,2847,1219,-2914,2524,2916,2913,-1007,995,2917,2918,-2277,2917,1221,2850,-2919,2918,2850,1220,-2916,2276,2918,2915,-1081,1082,2919,2920,-2528,2919,1222,2853,-2921,2920,2853,1221,-2918,2527,2920,2917,-996,1026,2921,2922,-2236,2921,1223,2856,-2923,2922,2856,1222,-2920,2235,2922,2919,-1083,1088,2923,2924,-2531,2923,1224,2859,-2925,2924,2859,1223,-2922,2530,2924,2921,-1027,980,2925,2926,-2331,2925,1225,2862,-2927,2926,2862,1224,-2924,2330,2926,2923,-1089,1008,2927,2928,-2534,2927,1226,2865,-2929,2928,2865,1225,-2926,2533,2928,2925,-981,999,2929,2930,-2287,2929,1227,2868,-2931,2930,2868,1226,-2928,2286,2930,2927,-1009,1034,2931,2932,-2537,2931,1228,2871,-2933,2932,2871,1227,-2930,2536,2932,2929,-1000,981,2933,2934,-2498,2933,1229,2874,-2935,2934,2874,1228,-2932,2497,2934,2931,-1035,2305,1043,1230,-2936,2305,2935,2307,-3067,2937,1140,1231,-2937,2937,2936,2649,-2718,2394,1013,1232,-2404,2394,2403,1233,-1055,2386,1012,1234,-2393,2386,2392,1235,-1052,2401,1011,1234,-2222,2401,2221,1233,-1058,2414,988,1232,-2327,2414,2326,1236,-1062,2390,986,1237,-2305,2390,2304,1235,-1054,2408,1024,1238,-2411,2408,2410,1236,-1060,2372,1015,1237,-2378,2372,2377,1239,-1047,2425,1005,1238,-2328,2425,2327,1240,-1066,2381,1003,1241,-2310,2381,2309,1239,-1050,2416,1023,1242,-2422,2416,2421,1240,-1063,2367,1016,1241,-2370,2367,2369,1230,-1044,2434,990,1242,-2324,2434,2323,1243,-1070,2430,1020,1244,-2437,2430,2436,1243,-1068,2445,1019,1244,-2230,2445,2229,1245,-1074,2438,1021,1246,-2448,2438,2447,1245,-1071,2458,992,1246,-2345,2458,2344,1247,-1078,2452,1032,1248,-2455,2452,2454,1247,-1076,2469,1007,1248,-2346,2469,2345,1249,-1082,2460,1031,1250,-2466,2460,2465,1249,-1079,2478,994,1250,-2342,2478,2341,1251,-1086,2474,1028,1252,-2481,2474,2480,1251,-1084,2489,1027,1252,-2238,2489,2237,1253,-1090,2482,1029,1254,-2492,2482,2491,1253,-1087,2215,996,1254,-2363,2215,2362,1255,-1010,2246,1039,1256,-2364,2246,2363,1255, +-1041,2353,998,1256,-2360,2353,2359,1257,-1036,2355,1037,1258,-2245,2355,2244,1257,-1037,2938,1134,1260,-2578,2938,2577,1259,-1136,2703,1133,1260,-2707,2703,2706,1261,-1104,2939,1137,1262,-2711,2939,2710,1261,-1137,2547,1113,1262,-2709,2547,2708,1263,-1103,2940,1171,1264,-2761,2940,2760,1263,-1130,2759,1173,1264,-2573,2759,2572,1265,-1128,2941,1169,1266,-2757,2941,2756,1265,-1129,2755,1170,1266,-2692,2755,2691,1267,-1101,2942,1165,1268,-2752,2942,2751,1267,-1131,2753,1167,1268,-2698,2753,2697,1269,-1112,2943,1163,1270,-2748,2943,2747,1269,-1132,2749,1164,1270,-2696,2749,2695,1271,-1100,2944,1159,1272,-2745,2944,2744,1271,-1124,2743,1161,1272,-2564,2743,2563,1273,-1122,2945,1157,1274,-2741,2945,2740,1273,-1123,2739,1158,1274,-2669,2739,2668,1275,-1098,2946,1153,1276,-2736,2946,2735,1275,-1125,2737,1155,1276,-2675,2737,2674,1277,-1110,2947,1151,1278,-2732,2947,2731,1277,-1126,2733,1152,1278,-2673,2733,2672,1279,-1097,2948,1147,1280,-2729,2948,2728,1279,-1118,2727,1149,1280,-2554,2727,2553,1281,-1116,2949,1145,1282,-2725,2949,2724,1281,-1117,2723,1146,1282,-2646,2723,2645,1283,-1095,2950,1141,1284,-2720,2950,2719,1283,-1119,2721,1143,1284,-2652,2721,2651,1285,-1108,2951,1139,1231,-2716,2951,2715,1285,-1120,1045,2952,2954,-2954,2954,2952,2204,-3073,2954,3072,2371,-3072,2308,2953,2954,-3072,2955,2539,1140,-2938,1003,2380,2957,-2371,2370,2957,2952,-1046,986,2389,2958,-2379,2378,2958,2379,-1050,1011,2400,2960,-2394,2393,2960,2388,-1054,988,2413,2962,-2405,2404,2962,2399,-1058,1005,2424,2964,-2412,2411,2964,2412,-1062,990,2433,2966,-2423,2422,2966,2423,-1066,1019,2444,2968,-2438,2437,2968,2432,-1070,992,2457,2970,-2449,2448,2970,2443,-1074,1007,2468,2972,-2456,2455,2972,2456,-1078,994,2477,2974,-2467,2466,2974,2467,-1082,1027,2488,2976,-2482,2481,2976,2476,-1086,996,2214,2978,-2493,2492,2978,2487,-1090,998,2352,2980,-2365,2364,2980,2213,-1010,1000,2982,2983,-2246,2245,2983,2351,-1036,2578,1133,2701,-2703,2711,1113,2628,-2630,2761,1173,2682,-2684,2757,1170,2685,-2687,2752,1167,2619,-2621,2748,1164,2545,-2547,2745,1161,2659, +-2661,2741,1158,2662,-2664,2736,1155,2606,-2608,2732,1152,2542,-2544,2729,1149,2636,-2638,2725,1146,2639,-2641,2720,1143,2593,-2595,2716,1140,2539,-2541,1136,2707,2999,-2940,2707,1134,2997,-3000,2999,2997,1286,-2999,2939,2999,2998,-1138,1288,3000,3002,-3002,3000,1169,2941,-3003,3002,2941,1128,-2574,3001,3002,2573,-1172,1290,3003,3005,-3005,3003,1163,2943,-3006,3005,2943,1131,-2699,3004,3005,2698,-1166,1292,3006,3008,-3008,3006,1157,2945,-3009,3008,2945,1122,-2565,3007,3008,2564,-1160,1294,3009,3011,-3011,3009,1151,2947,-3012,3011,2947,1125,-2676,3010,3011,2675,-1154,1296,3012,3014,-3014,3012,1145,2949,-3015,3014,2949,1116,-2555,3013,3014,2554,-1148,1298,3015,3017,-3017,3015,1139,2951,-3018,3017,2951,1119,-2653,3016,3017,2652,-1142,1299,2705,3019,-3019,2705,1286,2997,-3020,3019,2997,1134,-2939,3018,3019,2938,-1136,1287,3020,3022,-3022,3020,1129,2709,-3023,3022,2709,1137,-2999,3021,3022,2998,-1287,1171,2940,3023,-3002,2940,1129,3020,-3024,3023,3020,1287,-2689,3001,3023,2688,-1289,1289,3024,3025,-2691,3024,1130,2692,-3026,3025,2692,1169,-3001,2690,3025,3000,-1289,1165,2942,3026,-3005,2942,1130,3024,-3027,3026,3024,1289,-2576,3004,3026,2575,-1291,1291,3027,3028,-2695,3027,1123,2696,-3029,3028,2696,1163,-3004,2694,3028,3003,-1291,1159,2944,3029,-3008,2944,1123,3027,-3030,3029,3027,1291,-2666,3007,3029,2665,-1293,1293,3030,3031,-2668,3030,1124,2669,-3032,3031,2669,1157,-3007,2667,3031,3006,-1293,1153,2946,3032,-3011,2946,1124,3030,-3033,3032,3030,1293,-2567,3010,3032,2566,-1295,1295,3033,3034,-2672,3033,1117,2673,-3035,3034,2673,1151,-3010,2671,3034,3009,-1295,1147,2948,3035,-3014,2948,1117,3033,-3036,3035,3033,1295,-2643,3013,3035,2642,-1297,1297,3036,3037,-2645,3036,1118,2646,-3038,3037,2646,1145,-3013,2644,3037,3012,-1297,1141,2950,3039,-3017,2950,1118,3036,-3040,3039,3036,1297,-3039,3016,3039,3038,-1299,3038,1297,1300,-3041,3038,3040,1301,-1299,754,3041,3043,-3043,3041,771,2580,-3044,3043,2580,3068,-3070,3042,3043,3069,-3068,784,2175,3045,-3045,2175,758,2556,-3046,3045,2556,3087,-3091,3044,3045,3090,-3090,751,2178,3047, +-3047,2178,784,3044,-3048,3047,3044,3089,-3093,3046,3047,3092,-3092,796,2181,3049,-3049,2181,751,3046,-3050,3049,3046,3091,-3095,3048,3049,3094,-3094,763,2184,3051,-3051,2184,796,3048,-3052,3051,3048,3093,-3097,3050,3051,3096,-3096,793,2187,3053,-3053,2187,763,3050,-3054,3053,3050,3095,-3099,3052,3053,3098,-3098,752,2190,3055,-3055,2190,793,3052,-3056,3055,3052,3097,-3101,3054,3055,3100,-3100,804,2193,3057,-3057,2193,752,3054,-3058,3057,3054,3099,-3103,3056,3057,3102,-3102,767,2196,3059,-3059,2196,804,3056,-3060,3059,3056,3101,-3105,3058,3059,3104,-3104,801,2199,3061,-3061,2199,767,3058,-3062,3061,3058,3103,-3107,3060,3061,3106,-3106,753,2202,3062,-2580,2202,801,3060,-3063,3062,3060,3105,-3109,2579,3062,3108,-3108,3021,1286,1302,-3064,3021,3063,1313,-1288,1139,3015,3064,-1315,3015,1298,1301,-3065,2647,977,788,-2651,2647,2650,3083,-3085,3066,673,635,-3066,1302,2704,3069,-3069,2704,1303,3067,-3070,2307,906,673,-3067,2935,1230,1045,-2954,3070,644,2308,-3072,2248,1042,2879,-3076,877,3076,3077,-2794,3076,630,2365,-3078,1202,2795,3079,-2879,2795,1138,3078,-3080,1138,2585,3080,-3079,2585,1174,2762,-3081,848,2713,3082,-3082,2955,2937,2717,-3083,2649,908,759,-2718,2936,1231,1139,-3084,3083,1139,1314,-3085,1314,3064,3086,-3085,3064,1301,3085,-3087,1301,3040,3088,-3086,3040,1300,3087,-3089,1300,2643,3090,-3088,2643,1304,3089,-3091,1304,2641,3092,-3090,2641,1305,3091,-3093,1305,2670,3094,-3092,2670,1306,3093,-3095,1306,2565,3096,-3094,2565,1307,3095,-3097,1307,2666,3098,-3096,2666,1308,3097,-3099,1308,2664,3100,-3098,2664,1309,3099,-3101,1309,2693,3102,-3100,2693,1310,3101,-3103,1310,2574,3104,-3102,2574,1311,3103,-3105,1311,2689,3106,-3104,2689,1312,3105,-3107,1312,2687,3108,-3106,2687,1313,3107,-3109,1313,3063,3109,-3108,3063,1302,3068,-3110,2066,699,700,-3111,771,3041,3112,-1717,3041,754,3111,-3113,1440,673,906,-1444,2085,701,905,-2068,644,3070,3113,-1443,698,1385,3116,-2010,630,3076,3117,-1502,3076,877,1924,-3118,811,1928,3119,-3119,1928,876,2010,-3120,847,1719,3120,-1893,1719,811,3118,-3121,1842,848,3081,-3122,2068,813,1675, +-2088,1847,759,908,-1787,3122,812,907,-2070,3123,812,-3123,634,3149,3151,-1634,3149,1325,3150,-3152,3151,3150,3198,-3200,1481,1633,3151,-3200,3153,770,936,-3153,3153,3152,1330,-1330,3154,850,1831,-3157,3154,3156,3155,-1329,3156,1831,770,-3154,976,2173,3167,-1318,750,1894,3159,-3159,1894,850,3154,-3160,3159,3154,1328,-3158,3158,3159,3157,-1328,904,2005,3162,-3162,2005,750,3158,-3163,3162,3158,1327,-3161,3161,3162,3160,-1327,634,2064,3164,-3150,2064,904,3161,-3165,3164,3161,1326,-3164,3149,3164,3163,-1326,1330,3152,3165,-1316,3152,936,1338,-3166,3156,3153,1329,-3156,808,2150,3166,-1319,2150,976,1317,-3167,3189,3167,2173,-3112,3169,3168,3202,-3204,2496,2346,3169,-3204,3169,2346,2349,-3172,3168,3169,3171,-3171,3171,2349,-2983,3170,3171,2982,-1001,3173,1259,1105,-3173,3173,3172,1332,-1332,2700,1176,3174,-3177,3174,1333,3175,-3177,3172,3176,3175,-1333,1303,1299,1321,-1323,1176,2764,3179,-3175,2764,1093,3177,-3180,3179,3177,1334,-3179,3174,3179,3178,-1334,1093,2875,3182,-3178,2875,1229,3180,-3183,3182,3180,1335,-3182,3177,3182,3181,-1335,1229,2933,3185,-3181,2933,981,3183,-3186,3185,3183,1336,-3185,3180,3185,3184,-1336,1337,1323,1135,-1260,3172,1105,2700,-3177,1321,1299,3018,-3187,3018,1135,1323,-3187,754,3042,3187,-1325,3188,3187,3042,-3068,3067,1303,1322,-3189,3111,754,1324,-3190,3191,1037,985,-3191,1316,3192,3155,-1330,1315,1316,1329,-1331,1319,1320,1331,-1333,3193,1319,1332,-3176,693,935,3194,-3196,3194,935,655,-3197,655,2114,3197,-3197,2114,1483,-3198,3197,1483,1481,-3200,3196,3197,3199,-3199,3200,639,693,-3196,3201,1258,1037,-3192,1000,1258,3201,-3171,1336,3183,3203,-3203,3183,981,2496,-3204,1337,1259,3173,-3205,3173,1331,1320,-3205,936,808,1318,-1339,3223,4208,4211,-4211,4208,4105,4209,-4212,4211,4209,3213,-3215,4210,4211,3214,-3209,3212,3209,4212,-4214,4212,3224,3671,-4214,3224,4212,4215,-4215,4212,3209,3215,-4216,4215,3215,3220,-4223,4221,4214,4215,-4223,3206,3217,4217,-4217,3217,3211,3218,-4218,4217,3218,3219,-4221,4219,4216,4217,-4221,3207,4218,4220,-3220,4218,3222,4219,-4221,3210,3216,4222,-3221,3216,3205,4221, +-4223,3310,4223,4224,-3613,4223,3252,3616,-4225,3330,4225,4226,-3624,4225,3257,3624,-4227,3350,4227,4228,-3632,4227,3262,3632,-4229,3638,3639,3271,-3247,3321,4229,4233,-4233,4229,3273,4230,-4234,4233,4230,3376,-4232,4232,4233,4231,-3376,3325,4234,4235,-3585,4234,3275,3585,-4236,4237,3280,3279,-4237,4237,4236,3315,-3317,3341,4238,4242,-4242,4238,3283,4239,-4243,4242,4239,3386,-4241,4241,4242,4240,-3386,3345,4243,4244,-3597,4243,3285,3595,-4245,4246,3290,3289,-4246,4246,4245,3335,-3337,3361,4247,4251,-4251,4247,3292,4248,-4252,4251,4248,3394,-4250,4250,4251,4249,-3394,3365,4252,4253,-3605,4252,3294,3603,-4254,4255,3299,3298,-4255,4255,4254,3355,-3357,3300,4256,4257,-3373,4256,3270,3398,-4258,3303,4258,4259,-3609,4258,3250,3609,-4260,4261,3307,3251,-4261,4261,4260,3309,-3309,3311,4262,4266,-4266,4262,3254,4263,-4267,4266,4263,3380,-4265,4265,4266,4264,-3371,3318,4267,4271,-4271,4267,3236,4268,-4272,4271,4268,3374,-4270,4270,4271,4269,-3379,3317,4272,4273,-3618,4272,3255,3618,-4274,3331,4274,4278,-4278,4274,3259,4275,-4279,4278,4275,3382,-4277,4277,4278,4276,-3382,3338,4279,4283,-4283,4279,3241,4280,-4284,4283,4280,3384,-4282,4282,4283,4281,-3384,3337,4284,4285,-3626,4284,3260,3626,-4286,3351,4286,4290,-4290,4286,3264,4287,-4291,4290,4287,3390,-4289,4289,4290,4288,-3390,3358,4291,4295,-4295,4291,3245,4292,-4296,4295,4292,3392,-4294,4294,4295,4293,-3392,3357,4296,4297,-3634,4296,3265,3634,-4298,3396,3397,3267,-3269,3269,4298,4302,-4302,4298,3249,4299,-4303,4302,4299,3398,-4301,4301,4302,4300,-3398,3267,4303,4304,-3640,4303,3270,3640,-4305,3328,4305,4309,-4309,4305,3226,4306,-4310,4309,4306,3379,-4308,4308,4309,4307,-3378,3327,4310,4311,-3622,4310,3258,3622,-4312,3320,4312,4313,-3620,4312,3272,3620,-4314,4314,3277,3275,-4235,4314,4234,3325,-3327,4316,3238,3278,-4316,4316,4315,3322,-3324,3322,4315,4317,-3587,4315,3278,3588,-4318,4319,3230,3281,-4319,4319,4318,4143,-4145,4321,3582,3239,-4321,4321,4320,4146,-4146,3315,4236,4322,-3591,4236,3279,3592,-4323,3348,4323,4327,-4327,4323,3227,4324,-4328,4327,4324,3388,-4326,4326,4327, +4325,-3388,3347,4328,4329,-3630,4328,3263,3630,-4330,3340,4330,4331,-3628,4330,3282,3628,-4332,4332,3287,3285,-4244,4332,4243,3345,-3347,4334,3243,3288,-4334,4334,4333,3342,-3344,3342,4333,4335,-3595,4333,3288,3593,-4336,4337,3231,3276,-4337,4337,4336,3332,-3334,3332,4336,4338,-3588,4336,3276,3583,-4339,3335,4245,4339,-3592,4245,3289,3589,-4340,3368,4340,4344,-4344,4340,3228,4341,-4345,4344,4341,3396,-4343,4343,4344,4342,-3396,3367,4345,4346,-3638,4345,3268,3638,-4347,3360,4347,4348,-3636,4347,3291,3636,-4349,4349,3296,3294,-4253,4349,4252,3365,-3367,4351,3247,3297,-4351,4351,4350,3362,-3364,3362,4350,4352,-3603,4350,3297,3601,-4353,4354,3232,3286,-4354,4354,4353,3352,-3354,3352,4353,4355,-3599,4353,3286,3597,-4356,3355,4254,4356,-3601,4254,3298,3599,-4357,3302,4357,4358,-3374,4357,3300,3372,-4359,3300,4357,4359,-3642,4357,3302,3642,-4360,3303,4360,4361,-3642,4360,3248,3640,-4362,4363,3305,3234,-4363,4363,4362,3306,-3305,3304,3306,4364,-4366,4364,3251,3307,-4366,3304,4365,4366,-3609,4365,3307,3607,-4367,3309,3233,3295,-3309,3308,3295,3605,-3607,3271,4367,4368,-3607,4367,3248,3607,-4369,3371,4369,4373,-4373,4369,3225,4370,-4374,4373,4370,4150,-4372,4372,4373,4371,-4150,4375,3279,3280,-4375,4375,4374,3313,-3313,3314,4376,4377,-3582,4376,3256,3592,-4378,4379,3613,3253,-4379,4379,4378,4148,-4148,4381,3278,3238,-4381,4381,4380,3316,-3316,3317,4382,4383,-3379,4382,3252,3380,-4384,3319,4384,4385,-3591,4384,3235,3588,-4386,3319,4386,4387,-3618,4386,3256,3616,-4388,3320,4388,4389,-3376,4388,3255,3374,-4390,4391,3275,3277,-4391,4391,4390,3323,-3323,3324,4392,4393,-3620,4392,3235,3618,-4394,3324,4394,4395,-3587,4394,3274,3585,-4396,4397,3276,3231,-4397,4397,4396,3326,-3326,3327,4398,4399,-3378,4398,3272,3376,-4400,3329,4400,4401,-3622,4400,3274,3620,-4402,3329,4402,4403,-3585,4402,3237,3583,-4404,3330,4404,4405,-3382,4404,3258,3379,-4406,4407,3289,3290,-4407,4407,4406,3333,-3333,3334,4408,4409,-3588,4408,3261,3589,-4410,3334,4410,4411,-3624,4410,3237,3622,-4412,4413,3288,3243,-4413,4413,4412,3336,-3336,3337,4414,4415,-3384,4414, +3257,3382,-4416,3339,4416,4417,-3592,4416,3240,3593,-4418,3339,4418,4419,-3626,4418,3261,3624,-4420,3340,4420,4421,-3386,4420,3260,3384,-4422,4423,3285,3287,-4423,4423,4422,3343,-3343,3344,4424,4425,-3628,4424,3240,3626,-4426,3344,4426,4427,-3595,4426,3284,3595,-4428,4429,3286,3232,-4429,4429,4428,3346,-3346,3347,4430,4431,-3388,4430,3282,3386,-4432,3349,4432,4433,-3630,4432,3284,3628,-4434,3349,4434,4435,-3597,4434,3242,3597,-4436,3350,4436,4437,-3390,4436,3263,3388,-4438,4439,3298,3299,-4439,4439,4438,3353,-3353,3354,4440,4441,-3599,4440,3266,3599,-4442,3354,4442,4443,-3632,4442,3242,3630,-4444,4445,3297,3247,-4445,4445,4444,3356,-3356,3357,4446,4447,-3392,4446,3262,3390,-4448,3359,4448,4449,-3601,4448,3244,3601,-4450,3359,4450,4451,-3634,4450,3266,3632,-4452,3360,4452,4453,-3394,4452,3265,3392,-4454,4455,3294,3296,-4455,4455,4454,3363,-3363,3364,4456,4457,-3636,4456,3244,3634,-4458,3364,4458,4459,-3603,4458,3293,3603,-4460,4461,3295,3233,-4461,4461,4460,3366,-3366,3367,4462,4463,-3396,4462,3291,3394,-4464,3369,4464,4465,-3638,4464,3293,3636,-4466,3369,4466,4467,-3605,4466,3246,3605,-4468,4469,3370,3310,-4469,4469,4468,4148,-4150,3301,4470,4473,-4473,4470,3229,4471,-4474,4473,4471,3373,-4359,4472,4473,4358,-3373,3236,4474,4475,-4269,4474,3321,4232,-4476,4475,4232,3375,-4390,4268,4475,4389,-3375,3273,4476,4477,-4231,4476,3328,4308,-4478,4477,4308,3377,-4400,4230,4477,4399,-3377,3376,3272,4312,-4232,4312,3320,3375,-4232,3374,3255,4272,-4270,4272,3317,3378,-4270,3379,3258,4310,-4308,4310,3327,3377,-4308,3254,4478,4479,-4264,4478,3318,4270,-4480,4479,4270,3378,-4384,4263,4479,4383,-3381,3226,4480,4481,-4307,4480,3331,4277,-4482,4481,4277,3381,-4406,4306,4481,4405,-3380,3380,3252,4223,-4265,4223,3310,3370,-4265,3382,3257,4225,-4277,4225,3330,3381,-4277,3259,4482,4483,-4276,4482,3338,4282,-4484,4483,4282,3383,-4416,4275,4483,4415,-3383,3384,3260,4284,-4282,4284,3337,3383,-4282,3241,4484,4485,-4281,4484,3341,4241,-4486,4485,4241,3385,-4422,4280,4485,4421,-3385,3386,3282,4330,-4241,4330,3340,3385,-4241,3283,4486,4487,-4240, +4486,3348,4326,-4488,4487,4326,3387,-4432,4239,4487,4431,-3387,3388,3263,4328,-4326,4328,3347,3387,-4326,3227,4488,4489,-4325,4488,3351,4289,-4490,4489,4289,3389,-4438,4324,4489,4437,-3389,3390,3262,4227,-4289,4227,3350,3389,-4289,3264,4490,4491,-4288,4490,3358,4294,-4492,4491,4294,3391,-4448,4287,4491,4447,-3391,3392,3265,4296,-4294,4296,3357,3391,-4294,3245,4492,4493,-4293,4492,3361,4250,-4494,4493,4250,3393,-4454,4292,4493,4453,-3393,3394,3291,4347,-4250,4347,3360,3393,-4250,3292,4494,4495,-4249,4494,3368,4343,-4496,4495,4343,3395,-4464,4248,4495,4463,-3395,3396,3268,4345,-4343,4345,3367,3395,-4343,4341,3228,3269,-4302,4341,4301,3397,-3397,3398,3270,4303,-4301,4303,3267,3397,-4301,3249,4496,4497,-4300,4496,3301,4472,-4498,4497,4472,3372,-4258,4299,4497,4257,-3399,3421,4498,4499,-3670,4498,3475,3614,-4500,3426,4500,4501,-3662,4500,3491,3662,-4502,3431,4502,4503,-3654,4502,3507,3654,-4504,3417,3440,3646,-3648,3484,4504,4508,-4508,4504,3528,4505,-4509,4508,4505,3529,-4507,4507,4508,4506,-3443,3444,4509,4512,-4512,4509,3487,4510,-4513,3449,4513,4517,-4517,4513,3409,4514,-4518,4517,4514,4159,-4516,4516,4517,4515,-4159,3500,4518,4522,-4522,4518,3538,4519,-4523,4522,4519,3539,-4521,4521,4522,4520,-3453,3454,4523,4526,-4526,4523,3503,4524,-4527,3677,4527,4531,-4531,4527,3678,4528,-4532,4531,4528,4162,-4530,4530,4531,4529,-4164,3516,4532,4536,-4536,4532,3546,4533,-4537,4536,4533,3547,-4535,4535,4536,4534,-3462,3463,4537,4540,-4540,4537,3519,4538,-4541,3673,4541,4545,-4545,4541,3674,4542,-4546,4545,4542,4166,-4544,4544,4545,4543,-4168,4547,3468,3525,-4547,4547,4546,3551,-3440,3420,4548,4549,-3611,4548,3471,3611,-4550,3476,4550,4554,-4554,4550,3523,4551,-4555,4554,4551,3533,-4553,4553,4554,4552,-3424,3481,4555,4559,-4559,4555,3531,4556,-4560,4559,4556,3527,-4558,4558,4559,4557,-3408,3424,4560,4561,-3668,4560,3480,3668,-4562,3492,4562,4566,-4566,4562,3534,4563,-4567,4566,4563,3535,-4565,4565,4566,4564,-3429,3497,4567,4571,-4571,4567,3536,4568,-4572,4571,4568,3537,-4570,4570,4571,4569,-3413,3429,4572,4573,-3660,4572,3496,3660, +-4574,3508,4574,4578,-4578,4574,3542,4575,-4579,4578,4575,3543,-4577,4577,4578,4576,-3434,3513,4579,4583,-4583,4579,3544,4580,-4584,4583,4580,3545,-4582,4582,4583,4581,-3417,3434,4584,4585,-3652,4584,3512,3652,-4586,3550,3549,3437,-3437,3438,4586,4590,-4590,4586,3550,4587,-4591,4590,4587,3551,-4589,4589,4590,4588,-3420,3439,4591,4592,-3646,4591,3436,3646,-4593,3489,4593,4597,-4597,4593,3530,4594,-4598,4597,4594,3532,-4596,4596,4597,4595,-3401,3427,4598,4599,-3664,4598,3488,3664,-4600,3441,4600,4601,-3666,4600,3483,3666,-4602,3679,4602,4606,-4606,4602,3680,4603,-4607,4606,4603,4160,-4605,4605,4606,4604,-4162,3680,4607,4610,-4604,4607,3681,4608,-4611,4610,4608,4159,-4610,4603,4610,4609,-4161,3447,4611,4614,-4614,4611,3485,4612,-4615,3449,4516,4618,-4618,4516,4158,4615,-4619,4618,4615,4157,-4617,4617,4618,4616,-3451,4619,3450,4616,-4622,4621,4616,4157,-4621,4708,4621,4620,-4157,3448,4622,4625,-4625,4622,3479,4623,-4626,3505,4626,4630,-4630,4626,3540,4627,-4631,4630,4627,3541,-4629,4629,4630,4628,-3402,3432,4631,4632,-3656,4631,3504,3656,-4633,3451,4633,4634,-3658,4633,3499,3658,-4635,3675,4635,4639,-4639,4635,3676,4636,-4640,4639,4636,4164,-4638,4638,4639,4637,-4166,3676,4640,4642,-4637,4640,3677,4530,-4643,4642,4530,4163,-4642,4636,4642,4641,-4165,3457,4643,4646,-4646,4643,3501,4644,-4647,3678,4647,4649,-4529,4647,3679,4605,-4650,4649,4605,4161,-4649,4528,4649,4648,-4163,3445,4650,4653,-4653,4650,3493,4651,-4654,3458,4654,4657,-4657,4654,3495,4655,-4658,3521,4658,4662,-4662,4658,3548,4659,-4663,4662,4659,3549,-4661,4661,4662,4660,-3403,3437,4663,4664,-3648,4663,3520,3648,-4665,3460,4665,4666,-3650,4665,3515,3650,-4667,3223,4667,4671,-4671,4667,3671,4668,-4672,4671,4668,3672,-4670,4670,4671,4669,-4169,3672,4672,4674,-4670,4672,3673,4544,-4675,4674,4544,4167,-4674,4669,4674,4673,-4169,3465,4675,4678,-4678,4675,3517,4676,-4679,3674,4679,4681,-4543,4679,3675,4638,-4682,4681,4638,4165,-4681,4542,4681,4680,-4167,3455,4682,4685,-4685,4682,3509,4683,-4686,3466,4686,4689,-4689,4686,3511,4687,-4690,4691,3470,3526,-4691,4691,4690, +3525,-3469,3470,4691,4692,-3644,4691,3468,3644,-4693,3418,4693,4694,-3646,4693,3471,3644,-4695,3473,4695,4698,-4698,4695,3472,4696,-4699,4700,3464,3474,-4700,4697,3418,4701,-4943,4701,3440,4699,-4943,3399,4702,4706,-4706,4702,3524,4703,-4707,4706,4703,4153,-4705,4705,4706,4704,-4153,4624,3425,4707,-4968,4707,3478,4966,-4968,4709,3615,3410,-4709,4709,4708,4156,-4156,4711,3480,3531,-4711,4711,4710,3533,-3422,4613,3406,4712,-4965,4712,3482,4623,-4965,3425,4713,4714,-3670,4713,3482,3668,-4715,4716,3483,3528,-4716,4716,4715,3527,-3425,3406,4717,4718,-3668,4717,3486,3666,-4719,4511,3443,4719,-4963,4719,3486,4612,-4963,4721,3488,3530,-4721,4721,4720,3529,-3442,3443,4722,4723,-3666,4722,3490,3664,-4724,4652,3408,4724,-4961,4724,3490,4510,-4961,4726,3491,3534,-4726,4726,4725,3532,-3428,4656,3430,4727,-4959,4727,3494,4651,-4959,3408,4728,4729,-3664,4728,3494,3662,-4730,4731,3496,3536,-4731,4731,4730,3535,-3427,4645,3411,4732,-4957,4732,3498,4655,-4957,3430,4733,4734,-3662,4733,3498,3660,-4735,4736,3499,3538,-4736,4736,4735,3537,-3430,3411,4737,4738,-3660,4737,3502,3658,-4739,4525,3453,4739,-4955,4739,3502,4644,-4955,4741,3504,3540,-4741,4741,4740,3539,-3452,3453,4742,4743,-3658,4742,3506,3656,-4744,4684,3413,4744,-4953,4744,3506,4524,-4953,4746,3507,3542,-4746,4746,4745,3541,-3433,4688,3435,4747,-4951,4747,3510,4683,-4951,3413,4748,4749,-3656,4748,3510,3654,-4750,4751,3512,3544,-4751,4751,4750,3543,-3432,4677,3415,4752,-4949,4752,3514,4687,-4949,3435,4753,4754,-3654,4753,3514,3652,-4755,4756,3515,3546,-4756,4756,4755,3545,-3435,3415,4757,4758,-3652,4757,3518,3650,-4759,4539,3462,4759,-4947,4759,3518,4676,-4947,4761,3520,3548,-4761,4761,4760,3547,-3461,3462,4762,4763,-3650,4762,3522,3648,-4764,4700,3417,4764,-4945,4764,3522,4538,-4945,4766,3475,3523,-4766,4766,4765,4153,-4155,3469,4767,4770,-4770,4767,3525,4690,-4771,4770,4690,3526,-4769,4769,4770,4768,-3404,3407,4557,4772,-4772,4557,3527,4715,-4773,4772,4715,3528,-4505,4771,4772,4504,-3485,3442,4506,4774,-4774,4506,3529,4720,-4775,4774,4720,3530,-4594,4773,4774,4593,-3490,4600, +3441,3529,-4506,4600,4505,3528,-3484,4560,3424,3527,-4557,4560,4556,3531,-3481,4598,3427,3532,-4595,4598,4594,3530,-3489,3423,4552,4776,-4776,4552,3533,4710,-4777,4776,4710,3531,-4556,4775,4776,4555,-3482,3400,4595,4778,-4778,4595,3532,4725,-4779,4778,4725,3534,-4563,4777,4778,4562,-3493,4498,3421,3533,-4552,4498,4551,3523,-3476,4500,3426,3535,-4564,4500,4563,3534,-3492,3428,4564,4780,-4780,4564,3535,4730,-4781,4780,4730,3536,-4568,4779,4780,4567,-3498,4572,3429,3537,-4569,4572,4568,3536,-3497,3412,4569,4782,-4782,4569,3537,4735,-4783,4782,4735,3538,-4519,4781,4782,4518,-3501,4633,3451,3539,-4520,4633,4519,3538,-3500,3452,4520,4784,-4784,4520,3539,4740,-4785,4784,4740,3540,-4627,4783,4784,4626,-3506,4631,3432,3541,-4628,4631,4627,3540,-3505,3401,4628,4786,-4786,4628,3541,4745,-4787,4786,4745,3542,-4575,4785,4786,4574,-3509,4502,3431,3543,-4576,4502,4575,3542,-3508,3433,4576,4788,-4788,4576,3543,4750,-4789,4788,4750,3544,-4580,4787,4788,4579,-3514,4584,3434,3545,-4581,4584,4580,3544,-3513,3416,4581,4790,-4790,4581,3545,4755,-4791,4790,4755,3546,-4533,4789,4790,4532,-3517,4665,3460,3547,-4534,4665,4533,3546,-3516,3461,4534,4792,-4792,4534,3547,4760,-4793,4792,4760,3548,-4659,4791,4792,4658,-3522,4663,3437,3549,-4660,4663,4659,3548,-3521,3402,4660,4586,-3439,4660,3549,3550,-4587,4591,3439,3551,-4588,4591,4587,3550,-3437,3419,4588,4794,-4794,4588,3551,4546,-4795,4794,4546,3525,-4768,4793,4794,4767,-3470,3553,4795,4798,-4798,4795,3399,4705,-4799,4798,4705,4152,-4797,4797,4798,4796,-4152,3476,4553,4802,-4802,4553,3423,4799,-4803,4802,4799,3554,-4801,4801,4802,4800,-3553,3423,4775,4805,-4800,4775,3481,4803,-4806,4805,4803,3555,-4805,4799,4805,4804,-3555,3481,4558,4808,-4804,4558,3407,4806,-4809,4808,4806,3556,-4808,4803,4808,4807,-3556,3407,4771,4811,-4807,4771,3484,4809,-4812,4811,4809,3557,-4811,4806,4811,4810,-3557,3484,4507,4814,-4810,4507,3442,4812,-4815,4814,4812,3558,-4814,4809,4814,4813,-3558,3442,4773,4817,-4813,4773,3489,4815,-4818,4817,4815,3559,-4817,4812,4817,4816,-3559,3489,4596,4820,-4816,4596,3400,4818,-4821, +4820,4818,3560,-4820,4815,4820,4819,-3560,3400,4777,4823,-4819,4777,3492,4821,-4824,4823,4821,3561,-4823,4818,4823,4822,-3561,3492,4565,4826,-4822,4565,3428,4824,-4827,4826,4824,3562,-4826,4821,4826,4825,-3562,3428,4779,4829,-4825,4779,3497,4827,-4830,4829,4827,3563,-4829,4824,4829,4828,-3563,3497,4570,4832,-4828,4570,3412,4830,-4833,4832,4830,3564,-4832,4827,4832,4831,-3564,3412,4781,4835,-4831,4781,3500,4833,-4836,4835,4833,3565,-4835,4830,4835,4834,-3565,3500,4521,4838,-4834,4521,3452,4836,-4839,4838,4836,3566,-4838,4833,4838,4837,-3566,3452,4783,4841,-4837,4783,3505,4839,-4842,4841,4839,3567,-4841,4836,4841,4840,-3567,3505,4629,4844,-4840,4629,3401,4842,-4845,4844,4842,3568,-4844,4839,4844,4843,-3568,3401,4785,4847,-4843,4785,3508,4845,-4848,4847,4845,3569,-4847,4842,4847,4846,-3569,3508,4577,4850,-4846,4577,3433,4848,-4851,4850,4848,3570,-4850,4845,4850,4849,-3570,3433,4787,4853,-4849,4787,3513,4851,-4854,4853,4851,3571,-4853,4848,4853,4852,-3571,3513,4582,4856,-4852,4582,3416,4854,-4857,4856,4854,3572,-4856,4851,4856,4855,-3572,3416,4789,4859,-4855,4789,3516,4857,-4860,4859,4857,3573,-4859,4854,4859,4858,-3573,3516,4535,4862,-4858,4535,3461,4860,-4863,4862,4860,3574,-4862,4857,4862,4861,-3574,3461,4791,4865,-4861,4791,3521,4863,-4866,4865,4863,3575,-4865,4860,4865,4864,-3575,3521,4661,4868,-4864,4661,3402,4866,-4869,4868,4866,3576,-4868,4863,4868,4867,-3576,4866,3402,3438,-4870,4866,4869,3577,-3577,3438,4589,4872,-4870,4589,3419,4870,-4873,4872,4870,3578,-4872,4869,4872,4871,-3578,3419,4793,4875,-4871,4793,3469,4873,-4876,4875,4873,3579,-4875,4870,4875,4874,-3579,3469,4769,4878,-4874,4769,3403,4876,-4879,4878,4876,3580,-4878,4873,4878,4877,-3580,3552,4879,4883,-4883,4879,3311,4880,-4884,4883,4880,4150,-4882,4882,4883,4881,-4152,3254,4262,4885,-4885,4262,3311,4879,-4886,4885,4879,3552,-4801,4884,4885,4800,-3555,3318,4478,4887,-4887,4478,3254,4884,-4888,4887,4884,3554,-4805,4886,4887,4804,-3556,3236,4267,4889,-4889,4267,3318,4886,-4890,4889,4886,3555,-4808,4888,4889,4807,-3557,3321,4474,4891,-4891,4474,3236,4888, +-4892,4891,4888,3556,-4811,4890,4891,4810,-3558,3273,4229,4893,-4893,4229,3321,4890,-4894,4893,4890,3557,-4814,4892,4893,4813,-3559,3328,4476,4895,-4895,4476,3273,4892,-4896,4895,4892,3558,-4817,4894,4895,4816,-3560,3226,4305,4897,-4897,4305,3328,4894,-4898,4897,4894,3559,-4820,4896,4897,4819,-3561,3331,4480,4899,-4899,4480,3226,4896,-4900,4899,4896,3560,-4823,4898,4899,4822,-3562,3259,4274,4901,-4901,4274,3331,4898,-4902,4901,4898,3561,-4826,4900,4901,4825,-3563,3338,4482,4903,-4903,4482,3259,4900,-4904,4903,4900,3562,-4829,4902,4903,4828,-3564,3241,4279,4905,-4905,4279,3338,4902,-4906,4905,4902,3563,-4832,4904,4905,4831,-3565,3341,4484,4907,-4907,4484,3241,4904,-4908,4907,4904,3564,-4835,4906,4907,4834,-3566,3283,4238,4909,-4909,4238,3341,4906,-4910,4909,4906,3565,-4838,4908,4909,4837,-3567,3348,4486,4911,-4911,4486,3283,4908,-4912,4911,4908,3566,-4841,4910,4911,4840,-3568,3227,4323,4913,-4913,4323,3348,4910,-4914,4913,4910,3567,-4844,4912,4913,4843,-3569,3351,4488,4915,-4915,4488,3227,4912,-4916,4915,4912,3568,-4847,4914,4915,4846,-3570,3264,4286,4917,-4917,4286,3351,4914,-4918,4917,4914,3569,-4850,4916,4917,4849,-3571,3358,4490,4919,-4919,4490,3264,4916,-4920,4919,4916,3570,-4853,4918,4919,4852,-3572,3245,4291,4921,-4921,4291,3358,4918,-4922,4921,4918,3571,-4856,4920,4921,4855,-3573,3361,4492,4923,-4923,4492,3245,4920,-4924,4923,4920,3572,-4859,4922,4923,4858,-3574,3292,4247,4925,-4925,4247,3361,4922,-4926,4925,4922,3573,-4862,4924,4925,4861,-3575,3368,4494,4927,-4927,4494,3292,4924,-4928,4927,4924,3574,-4865,4926,4927,4864,-3576,3228,4340,4929,-4929,4340,3368,4926,-4930,4929,4926,3575,-4868,4928,4929,4867,-3577,4930,3269,3228,-4929,4930,4928,3576,-3578,3249,4298,4932,-4932,4298,3269,4930,-4933,4932,4930,3577,-4872,4931,4932,4871,-3579,3301,4496,4934,-4934,4496,3249,4931,-4935,4934,4931,3578,-4875,4933,4934,4874,-3580,3229,4470,4936,-4936,4470,3301,4933,-4937,4936,4933,3579,-4878,4935,4936,4877,-3581,4938,3581,3312,-4938,4938,4937,4143,-4146,3478,4939,5855,-4967,4939,4156,4620,-5856,3583,3276,4397,-4404,4397,3325, +3584,-4404,3585,3275,4391,-4396,4391,3322,3586,-4396,3585,3274,4400,-4236,4400,3329,3584,-4236,3583,3237,4410,-4339,4410,3334,3587,-4339,3588,3235,4392,-4318,4392,3324,3586,-4318,3589,3289,4407,-4410,4407,3332,3587,-4410,3588,3278,4381,-4386,4381,3315,3590,-4386,3589,3261,4418,-4340,4418,3339,3591,-4340,3592,3256,4386,-4323,4386,3319,3590,-4323,3593,3288,4413,-4418,4413,3335,3591,-4418,3592,3279,4375,-4378,4375,3312,3581,-4378,3593,3240,4424,-4336,4424,3344,3594,-4336,3595,3285,4423,-4428,4423,3342,3594,-4428,3595,3284,4432,-4245,4432,3349,3596,-4245,3597,3286,4429,-4436,4429,3345,3596,-4436,3597,3242,4442,-4356,4442,3354,3598,-4356,3599,3298,4439,-4442,4439,3352,3598,-4442,3599,3266,4450,-4357,4450,3359,3600,-4357,3601,3297,4445,-4450,4445,3355,3600,-4450,3601,3244,4456,-4353,4456,3364,3602,-4353,3603,3294,4455,-4460,4455,3362,3602,-4460,3603,3293,4464,-4254,4464,3369,3604,-4254,3605,3295,4461,-4468,4461,3365,3604,-4468,3246,3271,3606,-3606,3607,3307,4261,-4369,4261,3308,3606,-4369,3607,3248,4360,-4367,4360,3303,3608,-4367,3305,4363,4259,-3610,4363,3304,3608,-4260,3610,4549,4940,-4190,4549,3611,4205,-4941,3611,4693,4698,-4697,4693,3418,4697,-4699,3474,4941,4942,-4700,4941,3473,4697,-4943,4699,3440,3417,-4701,3519,4943,4944,-4539,4943,3464,4700,-4945,4538,3522,4762,-4541,4762,3462,4539,-4541,3517,4945,4946,-4677,4945,3463,4539,-4947,4676,3518,4757,-4679,4757,3415,4677,-4679,3511,4947,4948,-4688,4947,3465,4677,-4949,4687,3514,4753,-4690,4753,3435,4688,-4690,3509,4949,4950,-4684,4949,3466,4688,-4951,4683,3510,4748,-4686,4748,3413,4684,-4686,3503,4951,4952,-4525,4951,3455,4684,-4953,4524,3506,4742,-4527,4742,3453,4525,-4527,3501,4953,4954,-4645,4953,3454,4525,-4955,4644,3502,4737,-4647,4737,3411,4645,-4647,3495,4955,4956,-4656,4955,3457,4645,-4957,4655,3498,4733,-4658,4733,3430,4656,-4658,3493,4957,4958,-4652,4957,3458,4656,-4959,4651,3494,4728,-4654,4728,3408,4652,-4654,3487,4959,4960,-4511,4959,3445,4652,-4961,4510,3490,4722,-4513,4722,3443,4511,-4513,3485,4961,4962,-4613,4961,3444,4511,-4963,4612,3486,4717,-4615,4717, +3406,4613,-4615,3479,4963,4964,-4624,4963,3447,4613,-4965,4623,3482,4713,-4626,4713,3425,4624,-4626,3477,4965,4967,-4967,4965,3448,4624,-4968,4969,3612,3314,-4969,4969,4968,4146,-4148,4970,3614,3475,-4767,4970,4766,4154,-4156,3616,3252,4382,-4388,4382,3317,3617,-4388,3616,3256,4376,-4225,4376,3314,3612,-4225,3618,3235,4384,-4274,4384,3319,3617,-4274,3618,3255,4388,-4394,4388,3320,3619,-4394,3620,3274,4394,-4314,4394,3324,3619,-4314,3620,3272,4398,-4402,4398,3327,3621,-4402,3622,3237,4402,-4312,4402,3329,3621,-4312,3622,3258,4404,-4412,4404,3330,3623,-4412,3624,3261,4408,-4227,4408,3334,3623,-4227,3624,3257,4414,-4420,4414,3337,3625,-4420,3626,3240,4416,-4286,4416,3339,3625,-4286,3626,3260,4420,-4426,4420,3340,3627,-4426,3628,3284,4426,-4332,4426,3344,3627,-4332,3628,3282,4430,-4434,4430,3347,3629,-4434,3630,3242,4434,-4330,4434,3349,3629,-4330,3630,3263,4436,-4444,4436,3350,3631,-4444,3632,3266,4440,-4229,4440,3354,3631,-4229,3632,3262,4446,-4452,4446,3357,3633,-4452,3634,3244,4448,-4298,4448,3359,3633,-4298,3634,3265,4452,-4458,4452,3360,3635,-4458,3636,3293,4458,-4349,4458,3364,3635,-4349,3636,3291,4462,-4466,4462,3367,3637,-4466,3638,3246,4466,-4347,4466,3369,3637,-4347,3267,3639,3638,-3269,3640,3248,4367,-4305,4367,3271,3639,-4305,3640,3270,4256,-4362,4256,3300,3641,-4362,3250,4258,4359,-3643,4258,3303,3641,-4360,3644,3471,4548,-4693,4548,3420,3643,-4693,3644,3468,4547,-4695,4547,3439,3645,-4695,3646,3440,4701,-4593,4701,3418,3645,-4593,3646,3436,3437,-3648,3648,3522,4764,-4665,4764,3417,3647,-4665,3648,3520,4761,-4764,4761,3460,3649,-4764,3650,3518,4759,-4667,4759,3462,3649,-4667,3650,3515,4756,-4759,4756,3434,3651,-4759,3652,3514,4752,-4586,4752,3415,3651,-4586,3652,3512,4751,-4755,4751,3431,3653,-4755,3654,3510,4747,-4504,4747,3435,3653,-4504,3654,3507,4746,-4750,4746,3432,3655,-4750,3656,3506,4744,-4633,4744,3413,3655,-4633,3656,3504,4741,-4744,4741,3451,3657,-4744,3658,3502,4739,-4635,4739,3453,3657,-4635,3658,3499,4736,-4739,4736,3429,3659,-4739,3660,3498,4732,-4574,4732,3411,3659,-4574,3660,3496,4731,-4735, +4731,3426,3661,-4735,3662,3494,4727,-4502,4727,3430,3661,-4502,3662,3491,4726,-4730,4726,3427,3663,-4730,3664,3490,4724,-4600,4724,3408,3663,-4600,3664,3488,4721,-4724,4721,3441,3665,-4724,3666,3486,4719,-4602,4719,3443,3665,-4602,3666,3483,4716,-4719,4716,3424,3667,-4719,3668,3482,4712,-4562,4712,3406,3667,-4562,3668,3480,4711,-4715,4711,3421,3669,-4715,3478,4707,4499,-3615,4707,3425,3669,-4500,3473,4941,4973,-4696,4941,3474,4971,-4974,4973,4971,3670,-4973,4695,4973,4972,-3473,3672,4974,4976,-4976,4974,3519,4537,-4977,4976,4537,3463,-4946,4975,4976,4945,-3518,3674,4977,4979,-4979,4977,3511,4686,-4980,4979,4686,3466,-4950,4978,4979,4949,-3510,3676,4980,4982,-4982,4980,3503,4523,-4983,4982,4523,3454,-4954,4981,4982,4953,-3502,3678,4983,4985,-4985,4983,3495,4654,-4986,4985,4654,3458,-4958,4984,4985,4957,-3494,3680,4986,4988,-4988,4986,3487,4509,-4989,4988,4509,3444,-4962,4987,4988,4961,-3486,3682,4989,4991,-4991,4989,3479,4622,-4992,4991,4622,3448,-4966,4990,4991,4965,-3478,3472,4972,4992,-4191,4972,3670,3671,-4993,4993,3671,3670,-4972,4993,4971,3474,-3465,3519,4974,4994,-4944,4974,3672,4668,-4995,4994,4668,3671,-4994,4943,4994,4993,-3465,3673,4672,4996,-4996,4672,3672,4975,-4997,4996,4975,3517,-4676,4995,4996,4675,-3466,3511,4977,4997,-4948,4977,3674,4541,-4998,4997,4541,3673,-4996,4947,4997,4995,-3466,3675,4679,4999,-4999,4679,3674,4978,-5000,4999,4978,3509,-4683,4998,4999,4682,-3456,3503,4980,5000,-4952,4980,3676,4635,-5001,5000,4635,3675,-4999,4951,5000,4998,-3456,3677,4640,5002,-5002,4640,3676,4981,-5003,5002,4981,3501,-4644,5001,5002,4643,-3458,3495,4983,5003,-4956,4983,3678,4527,-5004,5003,4527,3677,-5002,4955,5003,5001,-3458,3679,4647,5005,-5005,4647,3678,4984,-5006,5005,4984,3493,-4651,5004,5005,4650,-3446,3487,4986,5006,-4960,4986,3680,4602,-5007,5006,4602,3679,-5005,4959,5006,5004,-3446,3681,4607,5008,-5008,4607,3680,4987,-5009,5008,4987,3485,-4612,5007,5008,4611,-3448,3479,4989,5010,-4964,4989,3682,5009,-5011,5010,5009,3681,-5008,4963,5010,5007,-3448,3681,5009,5012,-4609,5009,3682,5011,-5013,5012,5011,4158, +-4516,4608,5012,4515,-4160,3409,5013,5015,-4515,5013,3446,5014,-5016,5015,5014,4160,-4610,4514,5015,4609,-4160,3446,5016,5018,-5015,5016,3404,5017,-5019,5018,5017,4161,-4605,5014,5018,4604,-4161,3404,5019,5021,-5018,5019,3459,5020,-5022,5021,5020,4162,-4649,5017,5021,4648,-4162,3459,5022,5024,-5021,5022,3414,5023,-5025,5024,5023,4163,-4530,5020,5024,4529,-4163,3414,5025,5027,-5024,5025,3456,5026,-5028,5027,5026,4164,-4642,5023,5027,4641,-4164,3456,5028,5030,-5027,5028,3405,5029,-5031,5030,5029,4165,-4638,5026,5030,4637,-4165,3405,5031,5033,-5030,5031,3467,5032,-5034,5033,5032,4166,-4681,5029,5033,4680,-4166,4167,5034,5036,-4674,5034,4207,5035,-5037,5036,5035,3223,-4671,4673,5036,4670,-4169,5038,3763,4048,-5038,5038,5037,4050,-3708,5040,3783,4057,-5040,5040,5039,4058,-3712,5042,3803,4065,-5042,5042,5041,4066,-3717,4072,3701,3725,-4074,3774,5043,5047,-5047,5043,3827,5044,-5048,5047,5044,3828,-5046,5046,5047,5045,-3728,5049,3778,4020,-5049,5049,5048,4021,-3730,3734,5050,5051,-3734,5050,3769,3768,-5052,3794,5052,5056,-5056,5052,3837,5053,-5057,5056,5053,3838,-5055,5055,5056,5054,-3737,5058,3798,4032,-5058,5058,5057,4031,-3739,3743,5059,5060,-3743,5059,3789,3788,-5061,3814,5061,5065,-5065,5061,3845,5062,-5066,5065,5062,3846,-5064,5064,5065,5063,-3746,5067,3818,4040,-5067,5067,5066,4039,-3748,3752,5068,5069,-3752,5068,3809,3808,-5070,5071,3753,3824,-5071,5071,5070,3850,-3725,5073,3756,4044,-5073,5073,5072,4045,-3706,3760,5074,5075,-3707,5074,3761,3762,-5076,3764,5076,5080,-5080,5076,3823,5077,-5081,5080,5077,3832,-5079,5079,5080,5078,-3709,3771,5081,5085,-5085,5081,3830,5082,-5086,5085,5082,3826,-5084,5084,5085,5083,-3693,5087,3770,4051,-5087,5087,5086,4052,-3710,3784,5088,5092,-5092,5088,3833,5089,-5093,5092,5089,3834,-5091,5091,5092,5090,-3714,3791,5093,5097,-5097,5093,3835,5094,-5098,5097,5094,3836,-5096,5096,5097,5095,-3697,5099,3790,4059,-5099,5099,5098,4060,-3715,3804,5100,5104,-5104,5100,3841,5101,-5105,5104,5101,3842,-5103,5103,5104,5102,-3719,3811,5105,5109,-5109,5105,3843,5106,-5110,5109,5106,3844,-5108,5108,5109, +5107,-3701,5111,3810,4067,-5111,5111,5110,4068,-3720,3848,3722,3721,-3850,3723,5112,5116,-5116,5112,3849,5113,-5117,5116,5113,3850,-5115,5115,5116,5114,-3705,5118,3721,4073,-5118,5118,5117,4074,-3725,3781,5119,5123,-5123,5119,3829,5120,-5124,5123,5120,3831,-5122,5122,5123,5121,-3684,5125,3780,4055,-5125,5125,5124,4056,-3713,5127,3773,4053,-5127,5127,5126,4054,-3727,3731,5128,5049,-3730,5128,3779,3778,-5050,3694,5129,5130,-3733,5129,3776,3775,-5131,5130,3775,4022,-5132,5130,5131,4024,-3733,5133,3766,3765,-5133,5133,5132,4117,-4119,5135,3239,3582,-5135,5135,5134,4119,-4121,5051,3768,4026,-5137,5051,5136,4028,-3734,3801,5137,5141,-5141,5137,3839,5138,-5142,5141,5138,3840,-5140,5140,5141,5139,-3685,5143,3800,4063,-5143,5143,5142,4064,-3718,5145,3793,4061,-5145,5145,5144,4062,-3736,3740,5146,5058,-3739,5146,3799,3798,-5059,3698,5147,5148,-3742,5147,3796,3795,-5149,5148,3795,4030,-5150,5148,5149,4029,-3742,3687,5150,5151,-3731,5150,3786,3785,-5152,5151,3785,4023,-5153,5151,5152,4019,-3731,5060,3788,4027,-5154,5060,5153,4025,-3743,3821,5154,5158,-5158,5154,3847,5155,-5159,5158,5155,3848,-5157,5157,5158,5156,-3686,5160,3820,4071,-5160,5160,5159,4072,-3723,5162,3813,4069,-5162,5162,5161,4070,-3745,3749,5163,5067,-3748,5163,3819,3818,-5068,3702,5164,5165,-3751,5164,3816,3815,-5166,5165,3815,4038,-5167,5165,5166,4037,-3751,3688,5167,5168,-3740,5167,3806,3805,-5169,5168,3805,4034,-5170,5168,5169,4033,-3740,5069,3808,4036,-5171,5069,5170,4035,-3752,5172,3755,3825,-5172,5172,5171,3824,-3754,5172,3753,4075,-5174,5172,5173,4076,-3756,5175,3756,4075,-5175,5175,5174,4074,-3704,3758,5176,5177,-3691,5176,3757,3759,-5178,5179,3759,3757,-5179,5179,5178,3760,-3707,5178,3757,4044,-5181,5178,5180,4043,-3761,3689,3762,3761,-3749,3748,3761,4042,-4042,5182,3725,4042,-5182,5182,5181,4043,-3704,3225,4369,5186,-5186,4369,3371,5183,-5187,5186,5183,4123,-5185,5185,5186,5184,-4125,3734,3733,5187,-5189,5187,3765,3766,-5189,5190,3767,4018,-5190,5190,5189,4028,-3711,5192,3253,3613,-5192,5192,5191,4121,-4123,3694,3732,5193,-5195,5193,3768,3769,-5195,5196, +3770,3830,-5196,5196,5195,3832,-3708,5198,3772,4026,-5198,5198,5197,4024,-3692,5200,3772,4051,-5200,5200,5199,4050,-3711,5202,3773,3827,-5202,5202,5201,3826,-3710,3731,3729,5203,-5205,5203,3775,3776,-5205,5206,3777,4053,-5206,5206,5205,4052,-3692,5208,3777,4022,-5208,5208,5207,4021,-3729,3687,3730,5209,-5211,5209,3778,3779,-5211,5212,3780,3829,-5212,5212,5211,3828,-3727,5214,3782,4055,-5214,5214,5213,4054,-3729,5216,3782,4020,-5216,5216,5215,4019,-3694,5218,3783,3833,-5218,5218,5217,3831,-3713,3743,3742,5219,-5221,5219,3785,3786,-5221,5222,3787,4023,-5222,5222,5221,4025,-3716,5224,3787,4057,-5224,5224,5223,4056,-3694,3698,3741,5225,-5227,5225,3788,3789,-5227,5228,3790,3835,-5228,5228,5227,3834,-3712,5230,3792,4027,-5230,5230,5229,4029,-3696,5232,3792,4059,-5232,5232,5231,4058,-3716,5234,3793,3837,-5234,5234,5233,3836,-3715,3740,3738,5235,-5237,5235,3795,3796,-5237,5238,3797,4061,-5238,5238,5237,4060,-3696,5240,3797,4030,-5240,5240,5239,4031,-3738,3688,3739,5241,-5243,5241,3798,3799,-5243,5244,3800,3839,-5244,5244,5243,3838,-3736,5246,3802,4063,-5246,5246,5245,4062,-3738,5248,3802,4032,-5248,5248,5247,4033,-3698,5250,3803,3841,-5250,5250,5249,3840,-3718,3752,3751,5251,-5253,5251,3805,3806,-5253,5254,3807,4034,-5254,5254,5253,4035,-3721,5256,3807,4065,-5256,5256,5255,4064,-3698,3702,3750,5257,-5259,5257,3808,3809,-5259,5260,3810,3843,-5260,5260,5259,3842,-3717,5262,3812,4036,-5262,5262,5261,4037,-3700,5264,3812,4067,-5264,5264,5263,4066,-3721,5266,3813,3845,-5266,5266,5265,3844,-3720,3749,3747,5267,-5269,5267,3815,3816,-5269,5270,3817,4069,-5270,5270,5269,4068,-3700,5272,3817,4038,-5272,5272,5271,4039,-3747,3689,3748,5273,-5275,5273,3818,3819,-5275,5276,3820,3847,-5276,5276,5275,3846,-3745,5278,3822,4071,-5278,5278,5277,4070,-3747,5280,3822,4040,-5280,5280,5279,4041,-3702,5282,3763,3823,-5282,5282,5281,4123,-4123,3754,5283,5286,-5286,5283,3824,5171,-5287,5286,5171,3825,-5285,5285,5286,5284,-3687,3692,5083,5288,-5288,5083,3826,5201,-5289,5288,5201,3827,-5044,5287,5288,5043,-3775,3727,5045,5290,-5290,5045,3828,5211,-5291, +5290,5211,3829,-5120,5289,5290,5119,-3782,5127,3726,3828,-5045,5127,5044,3827,-3774,5087,3709,3826,-5083,5087,5082,3830,-3771,5125,3712,3831,-5121,5125,5120,3829,-3781,3708,5078,5292,-5292,5078,3832,5195,-5293,5292,5195,3830,-5082,5291,5292,5081,-3772,3683,5121,5294,-5294,5121,3831,5217,-5295,5294,5217,3833,-5089,5293,5294,5088,-3785,5038,3707,3832,-5078,5038,5077,3823,-3764,5040,3711,3834,-5090,5040,5089,3833,-3784,3713,5090,5296,-5296,5090,3834,5227,-5297,5296,5227,3835,-5094,5295,5296,5093,-3792,5099,3714,3836,-5095,5099,5094,3835,-3791,3696,5095,5298,-5298,5095,3836,5233,-5299,5298,5233,3837,-5053,5297,5298,5052,-3795,5145,3735,3838,-5054,5145,5053,3837,-3794,3736,5054,5300,-5300,5054,3838,5243,-5301,5300,5243,3839,-5138,5299,5300,5137,-3802,5143,3717,3840,-5139,5143,5138,3839,-3801,3684,5139,5302,-5302,5139,3840,5249,-5303,5302,5249,3841,-5101,5301,5302,5100,-3805,5042,3716,3842,-5102,5042,5101,3841,-3804,3718,5102,5304,-5304,5102,3842,5259,-5305,5304,5259,3843,-5106,5303,5304,5105,-3812,5111,3719,3844,-5107,5111,5106,3843,-3811,3700,5107,5306,-5306,5107,3844,5265,-5307,5306,5265,3845,-5062,5305,5306,5061,-3815,5162,3744,3846,-5063,5162,5062,3845,-3814,3745,5063,5308,-5308,5063,3846,5275,-5309,5308,5275,3847,-5155,5307,5308,5154,-3822,5160,3722,3848,-5156,5160,5155,3847,-3821,3685,5156,5112,-3724,5156,3848,3849,-5113,5118,3724,3850,-5114,5118,5113,3849,-3722,3704,5114,5310,-5310,5114,3850,5070,-5311,5310,5070,3824,-5284,5309,5310,5283,-3755,5312,3867,4103,-5312,5312,5311,4049,-3915,5314,3871,4095,-5314,5314,5313,4096,-3931,5316,3876,4087,-5316,5316,5315,4088,-3947,4081,4080,3885,-3864,3923,5317,5321,-5321,5317,3887,5318,-5322,5321,5318,3967,-5320,5320,5321,5319,-3967,3889,5322,5325,-5325,5531,5325,5322,-3889,5324,5325,5323,-3927,3409,4513,5329,-5329,4513,3449,5326,-5330,5329,5326,4132,-5328,5328,5329,5327,-4134,3939,5330,5334,-5334,5330,3894,5331,-5335,5334,5331,3977,-5333,5333,5334,5332,-3977,3896,5335,5338,-5338,5551,5338,5335,-3896,5337,5338,5336,-3943,4112,5339,5343,-5343,5339,4111,5340,-5344,5343,5340,4137, +-5342,5342,5343,5341,-4137,3955,5344,5348,-5348,5344,3901,5345,-5349,5348,5345,3985,-5347,5347,5348,5346,-3985,3903,5349,5352,-5352,5571,5352,5349,-3903,5351,5352,5350,-3959,4108,5353,5357,-5357,5353,4107,5354,-5358,5357,5354,4141,-5356,5356,5357,5355,-4141,3907,5358,5359,-3964,5358,3884,3989,-5360,5361,3866,4046,-5361,5361,5360,4047,-3911,3915,5362,5366,-5366,5362,3868,5363,-5367,5366,5363,3971,-5365,5365,5366,5364,-3963,3920,5367,5371,-5371,5367,3856,5368,-5372,5371,5368,3965,-5370,5370,5371,5369,-3970,5373,3869,4101,-5373,5373,5372,4102,-3920,3931,5374,5378,-5378,5374,3873,5375,-5379,5378,5375,3973,-5377,5377,5378,5376,-3973,3936,5379,5383,-5383,5379,3859,5380,-5384,5383,5380,3975,-5382,5382,5383,5381,-3975,5385,3874,4093,-5385,5385,5384,4094,-3936,3947,5386,5390,-5390,5386,3878,5387,-5391,5390,5387,3981,-5389,5389,5390,5388,-3981,3952,5391,5395,-5395,5391,3862,5392,-5396,5395,5392,3983,-5394,5394,5395,5393,-3983,5397,3879,4085,-5397,5397,5396,4086,-3952,3881,3882,3987,-3989,3883,5398,5402,-5402,5398,3865,5399,-5403,5402,5399,3989,-5401,5401,5402,5400,-3989,5404,3884,4079,-5404,5404,5403,4080,-3882,3928,5405,5409,-5409,5405,3851,5406,-5410,5409,5406,3970,-5408,5408,5409,5407,-3969,5411,3872,4097,-5411,5411,5410,4098,-3928,5413,3886,4099,-5413,5413,5412,4100,-3923,4114,5414,5418,-5418,5414,4113,5415,-5419,5418,5415,4135,-5417,5417,5418,5416,-4135,4115,5419,5422,-5422,5419,4114,5417,-5423,5422,5417,4134,-5421,5421,5422,5420,-4134,3891,5423,5426,-5426,5526,5426,5423,-3856,5425,5426,5424,-3925,4132,5326,5429,-5429,5326,3449,4617,-5430,5429,4617,3450,-5428,5428,5429,5427,-4132,3450,4619,5431,-5428,5431,4619,3410,-5518,5427,5431,5430,-4132,3892,5432,5435,-5435,5522,5435,5432,-3871,5434,5435,5433,-3919,3944,5436,5440,-5440,5436,3852,5437,-5441,5440,5437,3979,-5439,5439,5440,5438,-3979,5442,3877,4089,-5442,5442,5441,4090,-3944,5444,3893,4091,-5444,5444,5443,4092,-3939,4110,5445,5449,-5449,5445,4109,5446,-5450,5449,5446,4139,-5448,5448,5449,5447,-4139,4111,5450,5452,-5341,5450,4110,5448,-5453,5452,5448,4138,-5452,5340,5452, +5451,-4138,3898,5453,5456,-5456,5546,5456,5453,-3859,5455,5456,5454,-3941,4113,5457,5459,-5416,5457,4112,5342,-5460,5459,5342,4136,-5459,5415,5459,5458,-4136,3890,5460,5463,-5463,5537,5463,5460,-3858,5462,5463,5461,-3933,3899,5464,5467,-5467,5542,5467,5464,-3876,5466,5467,5465,-3935,3960,5468,5472,-5472,5468,3853,5469,-5473,5472,5469,3987,-5471,5471,5472,5470,-3987,5474,3882,4081,-5474,5474,5473,4082,-3960,5476,3900,4083,-5476,5476,5475,4084,-3955,4106,5477,5480,-5480,5477,4105,4208,-5481,5480,4208,3223,-5479,5479,5480,5478,-4143,4107,5481,5483,-5355,5481,4106,5479,-5484,5483,5479,4142,-5483,5354,5483,5482,-4142,3905,5484,5487,-5487,5566,5487,5484,-3862,5486,5487,5485,-3957,4109,5488,5490,-5447,5488,4108,5356,-5491,5490,5356,4140,-5490,5446,5490,5489,-4140,3897,5491,5494,-5494,5557,5494,5491,-3861,5493,5494,5492,-3949,3906,5495,5498,-5498,5562,5498,5495,-3881,5497,5498,5496,-3951,3909,5499,5500,-3965,5499,3907,3963,-5501,5499,3909,4077,-5502,5499,5501,4078,-3908,5503,3864,4079,-5503,5503,5502,4078,-3911,3912,5504,5507,-5507,5503,5507,5504,-3865,5506,5507,5505,-3912,3904,5508,5509,-3914,3885,5509,5508,-3864,5510,3864,5504,-5749,5510,5748,5509,-3886,3524,4702,5514,-5514,4702,3399,5511,-5515,5514,5511,4126,-5513,5513,5514,5512,-4128,5515,3870,5432,-5774,5515,5773,5771,-3918,5517,3410,3615,-5517,5517,5516,4129,-4131,3919,5518,5519,-3970,5518,3867,3971,-5520,5520,3855,5423,-5771,5520,5770,5433,-3922,5522,3870,4103,-5522,5522,5521,4102,-3922,3922,5523,5524,-3967,5523,3869,3965,-5525,5526,3855,4101,-5526,5526,5525,4100,-3926,5527,3888,5322,-5769,5527,5768,5424,-3926,3927,5528,5529,-3969,5528,3886,3967,-5530,5531,3888,4099,-5531,5531,5530,4098,-3930,5532,3857,5460,-5767,5532,5766,5323,-3930,3930,5533,5534,-3973,5533,3872,3970,-5535,5535,3875,5464,-5765,5535,5764,5461,-3934,5537,3857,4097,-5537,5537,5536,4096,-3934,3935,5538,5539,-3975,5538,3871,3973,-5540,5540,3858,5453,-5763,5540,5762,5465,-3938,5542,3875,4095,-5542,5542,5541,4094,-3938,3938,5543,5544,-3977,5543,3874,3975,-5545,5546,3858,4093,-5546,5546,5545,4092,-3942,5547, +3895,5335,-5761,5547,5760,5454,-3942,3943,5548,5549,-3979,5548,3893,3977,-5550,5551,3895,4091,-5551,5551,5550,4090,-3946,5552,3860,5491,-5759,5552,5758,5336,-3946,3946,5553,5554,-3981,5553,3877,3979,-5555,5555,3880,5495,-5757,5555,5756,5492,-3950,5557,3860,4089,-5557,5557,5556,4088,-3950,3951,5558,5559,-3983,5558,3876,3981,-5560,5560,3861,5484,-5755,5560,5754,5496,-3954,5562,3880,4087,-5562,5562,5561,4086,-3954,3954,5563,5564,-3985,5563,3879,3983,-5565,5566,3861,4085,-5566,5566,5565,4084,-3958,5567,3902,5349,-5753,5567,5752,5485,-3958,3959,5568,5569,-3987,5568,3900,3985,-5570,5571,3902,4083,-5571,5571,5570,4082,-3962,5572,3863,5508,-5751,5572,5750,5350,-3962,5574,3962,3914,-5574,5574,5573,4128,-4128,3908,5575,5578,-5578,5575,3854,5576,-5579,5578,5576,3964,-5501,5577,5578,5500,-3964,3856,5579,5580,-5369,5579,3923,5320,-5581,5580,5320,3966,-5525,5368,5580,5524,-3966,3887,5581,5582,-5319,5581,3928,5408,-5583,5582,5408,3968,-5530,5318,5582,5529,-3968,3967,3886,5413,-5320,5413,3922,3966,-5320,3965,3869,5373,-5370,5373,3919,3969,-5370,3970,3872,5411,-5408,5411,3927,3968,-5408,3868,5583,5584,-5364,5583,3920,5370,-5585,5584,5370,3969,-5520,5363,5584,5519,-3972,3851,5585,5586,-5407,5585,3931,5377,-5587,5586,5377,3972,-5535,5406,5586,5534,-3971,3971,3867,5312,-5365,5312,3914,3962,-5365,3973,3871,5314,-5377,5314,3930,3972,-5377,3873,5587,5588,-5376,5587,3936,5382,-5589,5588,5382,3974,-5540,5375,5588,5539,-3974,3975,3874,5385,-5382,5385,3935,3974,-5382,3859,5589,5590,-5381,5589,3939,5333,-5591,5590,5333,3976,-5545,5380,5590,5544,-3976,3977,3893,5444,-5333,5444,3938,3976,-5333,3894,5591,5592,-5332,5591,3944,5439,-5593,5592,5439,3978,-5550,5331,5592,5549,-3978,3979,3877,5442,-5439,5442,3943,3978,-5439,3852,5593,5594,-5438,5593,3947,5389,-5595,5594,5389,3980,-5555,5437,5594,5554,-3980,3981,3876,5316,-5389,5316,3946,3980,-5389,3878,5595,5596,-5388,5595,3952,5394,-5597,5596,5394,3982,-5560,5387,5596,5559,-3982,3983,3879,5397,-5394,5397,3951,3982,-5394,3862,5597,5598,-5393,5597,3955,5347,-5599,5598,5347,3984,-5565,5392,5598,5564,-3984, +3985,3900,5476,-5347,5476,3954,3984,-5347,3901,5599,5600,-5346,5599,3960,5471,-5601,5600,5471,3986,-5570,5345,5600,5569,-3986,3987,3882,5474,-5471,5474,3959,3986,-5471,5469,3853,3883,-5402,5469,5401,3988,-3988,3989,3884,5404,-5401,5404,3881,3988,-5401,3865,5601,5602,-5400,5601,3908,5577,-5603,5602,5577,3963,-5360,5399,5602,5359,-3990,3399,4795,5605,-5512,4795,3553,5603,-5606,5605,5603,4125,-5605,5511,5605,5604,-4127,3915,5606,5609,-5363,5606,3990,5607,-5610,5609,5607,3991,-5609,5362,5609,5608,-3869,3868,5608,5612,-5584,5608,3991,5610,-5613,5612,5610,3992,-5612,5583,5612,5611,-3921,3920,5611,5615,-5368,5611,3992,5613,-5616,5615,5613,3993,-5615,5367,5615,5614,-3857,3856,5614,5618,-5580,5614,3993,5616,-5619,5618,5616,3994,-5618,5579,5618,5617,-3924,3923,5617,5621,-5318,5617,3994,5619,-5622,5621,5619,3995,-5621,5317,5621,5620,-3888,3887,5620,5624,-5582,5620,3995,5622,-5625,5624,5622,3996,-5624,5581,5624,5623,-3929,3928,5623,5627,-5406,5623,3996,5625,-5628,5627,5625,3997,-5627,5405,5627,5626,-3852,3851,5626,5630,-5586,5626,3997,5628,-5631,5630,5628,3998,-5630,5585,5630,5629,-3932,3931,5629,5633,-5375,5629,3998,5631,-5634,5633,5631,3999,-5633,5374,5633,5632,-3874,3873,5632,5636,-5588,5632,3999,5634,-5637,5636,5634,4000,-5636,5587,5636,5635,-3937,3936,5635,5639,-5380,5635,4000,5637,-5640,5639,5637,4001,-5639,5379,5639,5638,-3860,3859,5638,5642,-5590,5638,4001,5640,-5643,5642,5640,4002,-5642,5589,5642,5641,-3940,3939,5641,5645,-5331,5641,4002,5643,-5646,5645,5643,4003,-5645,5330,5645,5644,-3895,3894,5644,5648,-5592,5644,4003,5646,-5649,5648,5646,4004,-5648,5591,5648,5647,-3945,3944,5647,5651,-5437,5647,4004,5649,-5652,5651,5649,4005,-5651,5436,5651,5650,-3853,3852,5650,5654,-5594,5650,4005,5652,-5655,5654,5652,4006,-5654,5593,5654,5653,-3948,3947,5653,5657,-5387,5653,4006,5655,-5658,5657,5655,4007,-5657,5386,5657,5656,-3879,3878,5656,5660,-5596,5656,4007,5658,-5661,5660,5658,4008,-5660,5595,5660,5659,-3953,3952,5659,5663,-5392,5659,4008,5661,-5664,5663,5661,4009,-5663,5391,5663,5662,-3863,3862,5662,5666,-5598,5662,4009,5664, +-5667,5666,5664,4010,-5666,5597,5666,5665,-3956,3955,5665,5669,-5345,5665,4010,5667,-5670,5669,5667,4011,-5669,5344,5669,5668,-3902,3901,5668,5672,-5600,5668,4011,5670,-5673,5672,5670,4012,-5672,5599,5672,5671,-3961,3960,5671,5675,-5469,5671,4012,5673,-5676,5675,5673,4013,-5675,5468,5675,5674,-3854,3883,3853,5674,-5677,5674,4013,4014,-5677,3883,5676,5679,-5399,5676,4014,5677,-5680,5679,5677,4015,-5679,5398,5679,5678,-3866,3865,5678,5682,-5602,5678,4015,5680,-5683,5682,5680,4016,-5682,5601,5682,5681,-3909,3908,5681,5685,-5576,5681,4016,5683,-5686,5685,5683,4017,-5685,5575,5685,5684,-3855,3764,5686,5690,-5690,5686,3990,5687,-5691,5690,5687,4125,-5689,5689,5690,5688,-4125,3708,5691,5692,-5080,5691,3991,5607,-5693,5692,5607,3990,-5687,5079,5692,5686,-3765,3771,5693,5694,-5292,5693,3992,5610,-5695,5694,5610,3991,-5692,5291,5694,5691,-3709,3692,5695,5696,-5085,5695,3993,5613,-5697,5696,5613,3992,-5694,5084,5696,5693,-3772,3774,5697,5698,-5288,5697,3994,5616,-5699,5698,5616,3993,-5696,5287,5698,5695,-3693,3727,5699,5700,-5047,5699,3995,5619,-5701,5700,5619,3994,-5698,5046,5700,5697,-3775,3781,5701,5702,-5290,5701,3996,5622,-5703,5702,5622,3995,-5700,5289,5702,5699,-3728,3683,5703,5704,-5123,5703,3997,5625,-5705,5704,5625,3996,-5702,5122,5704,5701,-3782,3784,5705,5706,-5294,5705,3998,5628,-5707,5706,5628,3997,-5704,5293,5706,5703,-3684,3713,5707,5708,-5092,5707,3999,5631,-5709,5708,5631,3998,-5706,5091,5708,5705,-3785,3791,5709,5710,-5296,5709,4000,5634,-5711,5710,5634,3999,-5708,5295,5710,5707,-3714,3696,5711,5712,-5097,5711,4001,5637,-5713,5712,5637,4000,-5710,5096,5712,5709,-3792,3794,5713,5714,-5298,5713,4002,5640,-5715,5714,5640,4001,-5712,5297,5714,5711,-3697,3736,5715,5716,-5056,5715,4003,5643,-5717,5716,5643,4002,-5714,5055,5716,5713,-3795,3801,5717,5718,-5300,5717,4004,5646,-5719,5718,5646,4003,-5716,5299,5718,5715,-3737,3684,5719,5720,-5141,5719,4005,5649,-5721,5720,5649,4004,-5718,5140,5720,5717,-3802,3804,5721,5722,-5302,5721,4006,5652,-5723,5722,5652,4005,-5720,5301,5722,5719,-3685,3718,5723,5724,-5104,5723,4007, +5655,-5725,5724,5655,4006,-5722,5103,5724,5721,-3805,3811,5725,5726,-5304,5725,4008,5658,-5727,5726,5658,4007,-5724,5303,5726,5723,-3719,3700,5727,5728,-5109,5727,4009,5661,-5729,5728,5661,4008,-5726,5108,5728,5725,-3812,3814,5729,5730,-5306,5729,4010,5664,-5731,5730,5664,4009,-5728,5305,5730,5727,-3701,3745,5731,5732,-5065,5731,4011,5667,-5733,5732,5667,4010,-5730,5064,5732,5729,-3815,3821,5733,5734,-5308,5733,4012,5670,-5735,5734,5670,4011,-5732,5307,5734,5731,-3746,3685,5735,5736,-5158,5735,4013,5673,-5737,5736,5673,4012,-5734,5157,5736,5733,-3822,3685,3723,5737,-5736,5737,4014,4013,-5736,3704,5738,5739,-5116,5738,4015,5677,-5740,5739,5677,4014,-5738,5115,5739,5737,-3724,3754,5740,5741,-5310,5740,4016,5680,-5742,5741,5680,4015,-5739,5309,5741,5738,-3705,3686,5742,5743,-5286,5742,4017,5683,-5744,5743,5683,4016,-5741,5285,5743,5740,-3755,5132,3765,4018,-5745,5132,5744,4119,-4118,5745,3917,5771,-5846,5745,5845,5430,-4131,5209,3730,4019,-5216,5209,5215,4020,-3779,5203,3729,4021,-5208,5203,5207,4022,-3776,5214,3728,4021,-5049,5214,5048,4020,-3783,5224,3693,4019,-5153,5224,5152,4023,-3788,5206,3691,4024,-5132,5206,5131,4022,-3778,5219,3742,4025,-5222,5219,5221,4023,-3786,5193,3732,4024,-5198,5193,5197,4026,-3769,5232,3715,4025,-5154,5232,5153,4027,-3793,5200,3710,4028,-5137,5200,5136,4026,-3773,5225,3741,4029,-5230,5225,5229,4027,-3789,5187,3733,4028,-5190,5187,5189,4018,-3766,5238,3695,4029,-5150,5238,5149,4030,-3798,5235,3738,4031,-5240,5235,5239,4030,-3796,5246,3737,4031,-5058,5246,5057,4032,-3803,5241,3739,4033,-5248,5241,5247,4032,-3799,5256,3697,4033,-5170,5256,5169,4034,-3808,5251,3751,4035,-5254,5251,5253,4034,-3806,5264,3720,4035,-5171,5264,5170,4036,-3813,5257,3750,4037,-5262,5257,5261,4036,-3809,5270,3699,4037,-5167,5270,5166,4038,-3818,5267,3747,4039,-5272,5267,5271,4038,-3816,5278,3746,4039,-5067,5278,5066,4040,-3823,5273,3748,4041,-5280,5273,5279,4040,-3819,3725,3701,4041,-4043,5074,3760,4043,-5182,5074,5181,4042,-3762,5175,3703,4043,-5181,5175,5180,4044,-3757,5176,3758,4045,-5073,5176,5072,4044,-3758,5746, +4191,3911,-5506,5746,5505,4047,-4204,5503,3910,-4048,3913,5509,5748,-5748,5747,5748,5504,-3913,3958,5350,5750,-5750,5749,5750,5508,-3905,5571,3961,5350,-5353,3956,5485,5752,-5752,5751,5752,5349,-3904,5566,3957,5485,-5488,3950,5496,5754,-5754,5753,5754,5484,-3906,5562,3953,5496,-5499,3948,5492,5756,-5756,5755,5756,5495,-3907,5557,3949,5492,-5495,3942,5336,5758,-5758,5757,5758,5491,-3898,5551,3945,5336,-5339,3940,5454,5760,-5760,5759,5760,5335,-3897,5546,3941,5454,-5457,3934,5465,5762,-5762,5761,5762,5453,-3899,5542,3937,5465,-5468,3932,5461,5764,-5764,5763,5764,5464,-3900,5537,3933,5461,-5464,3926,5323,5766,-5766,5765,5766,5460,-3891,5531,3929,5323,-5326,3924,5424,5768,-5768,5767,5768,5322,-3890,5526,3925,5424,-5427,3918,5433,5770,-5770,5769,5770,5423,-3892,5522,3921,5433,-5436,3916,5771,5773,-5773,5772,5773,5432,-3893,5775,3767,4048,-5775,5775,5774,4121,-4121,5573,3914,4049,-5777,5573,5776,4129,-4129,5196,3707,4050,-5200,5196,5199,4051,-3771,5190,3710,4050,-5038,5190,5037,4048,-3768,5198,3691,4052,-5087,5198,5086,4051,-3773,5202,3709,4052,-5206,5202,5205,4053,-3774,5208,3728,4054,-5127,5208,5126,4053,-3778,5212,3726,4054,-5214,5212,5213,4055,-3781,5216,3693,4056,-5125,5216,5124,4055,-3783,5218,3712,4056,-5224,5218,5223,4057,-3784,5222,3715,4058,-5040,5222,5039,4057,-3788,5228,3711,4058,-5232,5228,5231,4059,-3791,5230,3695,4060,-5099,5230,5098,4059,-3793,5234,3714,4060,-5238,5234,5237,4061,-3794,5240,3737,4062,-5145,5240,5144,4061,-3798,5244,3735,4062,-5246,5244,5245,4063,-3801,5248,3697,4064,-5143,5248,5142,4063,-3803,5250,3717,4064,-5256,5250,5255,4065,-3804,5254,3720,4066,-5042,5254,5041,4065,-3808,5260,3716,4066,-5264,5260,5263,4067,-3811,5262,3699,4068,-5111,5262,5110,4067,-3813,5266,3719,4068,-5270,5266,5269,4069,-3814,5272,3746,4070,-5162,5272,5161,4069,-3818,5276,3744,4070,-5278,5276,5277,4071,-3821,5280,3701,4072,-5160,5280,5159,4071,-3823,4072,4073,3721,-3723,5182,3703,4074,-5118,5182,5117,4073,-3726,5071,3724,4074,-5175,5071,5174,4075,-3754,5073,3705,4076,-5174,5073,5173,4075,-3757,5361,3910,4078,-5502,5361, +5501,4077,-3867,5358,3907,4078,-5503,5358,5502,4079,-3885,5510,3885,4080,-5404,5510,5403,4079,-3865,3881,4080,4081,-3883,5572,3961,4082,-5474,5572,5473,4081,-3864,5568,3959,4082,-5571,5568,5570,4083,-3901,5567,3957,4084,-5476,5567,5475,4083,-3903,5563,3954,4084,-5566,5563,5565,4085,-3880,5560,3953,4086,-5397,5560,5396,4085,-3862,5558,3951,4086,-5562,5558,5561,4087,-3877,5555,3949,4088,-5316,5555,5315,4087,-3881,5553,3946,4088,-5557,5553,5556,4089,-3878,5552,3945,4090,-5442,5552,5441,4089,-3861,5548,3943,4090,-5551,5548,5550,4091,-3894,5547,3941,4092,-5444,5547,5443,4091,-3896,5543,3938,4092,-5546,5543,5545,4093,-3875,5540,3937,4094,-5385,5540,5384,4093,-3859,5538,3935,4094,-5542,5538,5541,4095,-3872,5535,3933,4096,-5314,5535,5313,4095,-3876,5533,3930,4096,-5537,5533,5536,4097,-3873,5532,3929,4098,-5411,5532,5410,4097,-3858,5528,3927,4098,-5531,5528,5530,4099,-3887,5527,3925,4100,-5413,5527,5412,4099,-3889,5523,3922,4100,-5526,5523,5525,4101,-3870,5520,3921,4102,-5373,5520,5372,4101,-3856,5518,3919,4102,-5522,5518,5521,4103,-3868,5515,3917,4049,-5312,5515,5311,4103,-3871,3912,5506,5779,-5748,5506,3911,5777,-5780,5779,5777,4104,-5779,5747,5779,5778,-3914,4106,5780,5782,-5782,5780,3956,5751,-5783,5782,5751,3903,-5352,5781,5782,5351,-3959,4108,5783,5785,-5785,5783,3948,5755,-5786,5785,5755,3906,-5498,5784,5785,5497,-3951,4110,5786,5788,-5788,5786,3940,5759,-5789,5788,5759,3896,-5338,5787,5788,5337,-3943,4112,5789,5791,-5791,5789,3932,5763,-5792,5791,5763,3899,-5467,5790,5791,5466,-3935,4114,5792,5794,-5794,5792,3924,5767,-5795,5794,5767,3889,-5325,5793,5794,5324,-3927,4116,5795,5797,-5797,5795,3916,5772,-5798,5797,5772,3892,-5435,5796,5797,5434,-3919,4104,5777,5798,-4106,5777,3911,4191,-5799,4104,4105,5799,-5779,5799,3904,3913,-5779,3958,5749,5800,-5782,5749,3904,5799,-5801,5800,5799,4105,-5478,5781,5800,5477,-4107,4107,5801,5802,-5482,5801,3905,5486,-5803,5802,5486,3956,-5781,5481,5802,5780,-4107,3950,5753,5803,-5785,5753,3905,5801,-5804,5803,5801,4107,-5354,5784,5803,5353,-4109,4109,5804,5805,-5489,5804,3897,5493,-5806, +5805,5493,3948,-5784,5488,5805,5783,-4109,3942,5757,5806,-5788,5757,3897,5804,-5807,5806,5804,4109,-5446,5787,5806,5445,-4111,4111,5807,5808,-5451,5807,3898,5455,-5809,5808,5455,3940,-5787,5450,5808,5786,-4111,3934,5761,5809,-5791,5761,3898,5807,-5810,5809,5807,4111,-5340,5790,5809,5339,-4113,4113,5810,5811,-5458,5810,3890,5462,-5812,5811,5462,3932,-5790,5457,5811,5789,-4113,3926,5765,5812,-5794,5765,3890,5810,-5813,5812,5810,4113,-5415,5793,5812,5414,-4115,4115,5813,5814,-5420,5813,3891,5425,-5815,5814,5425,3924,-5793,5419,5814,5792,-4115,3918,5769,5816,-5797,5769,3891,5813,-5817,5816,5813,4115,-5816,5796,5816,5815,-4117,4116,5815,5818,-5818,5815,4115,5421,-5819,5818,5421,4133,-5328,5817,5818,5327,-4133,3446,5013,5820,-5820,5013,3409,5328,-5821,5820,5328,4133,-5421,5819,5820,5420,-4135,3404,5016,5822,-5822,5016,3446,5819,-5823,5822,5819,4134,-5417,5821,5822,5416,-4136,3459,5019,5824,-5824,5019,3404,5821,-5825,5824,5821,4135,-5459,5823,5824,5458,-4137,3414,5022,5826,-5826,5022,3459,5823,-5827,5826,5823,4136,-5342,5825,5826,5341,-4138,3456,5025,5828,-5828,5025,3414,5825,-5829,5828,5825,4137,-5452,5827,5828,5451,-4139,3405,5028,5830,-5830,5028,3456,5827,-5831,5830,5827,4138,-5448,5829,5830,5447,-4140,3467,5031,5832,-5832,5031,3405,5829,-5833,5832,5829,4139,-5490,5831,5832,5489,-4141,3223,5035,5834,-5479,5035,4207,5833,-5835,5834,5833,4141,-5483,5478,5834,5482,-4143,5836,3281,3230,-5836,5836,5835,4118,-4118,5134,3582,3281,-5837,5134,5836,4117,-4120,5744,4018,3767,-5776,5744,5775,4120,-4120,5191,3613,3239,-5136,5191,5135,4120,-4122,5774,4048,3763,-5283,5774,5282,4122,-4122,5183,3371,3253,-5193,5183,5192,4122,-4124,3823,5076,5837,-5282,5076,3764,5689,-5838,5837,5689,4124,-5185,5281,5837,5184,-4124,3553,5838,5839,-5604,5838,3225,5185,-5840,5839,5185,4124,-5689,5603,5839,5688,-4126,3990,5606,5841,-5688,5606,3915,5840,-5842,5841,5840,4126,-5605,5687,5841,5604,-4126,3915,5365,5842,-5841,5365,3962,5574,-5843,5842,5574,4127,-5513,5840,5842,5512,-4127,5843,3422,3524,-5514,5843,5513,4127,-4129,5516,3615,3422,-5844,5516,5843,4128, +-4130,5776,4049,3917,-5746,5776,5745,4130,-4130,5431,5517,4130,-5431,5771,3916,5844,-5846,5845,5844,4131,-5431,4132,5428,5846,-5818,5428,4131,5844,-5847,5846,5844,3916,-5796,5817,5846,5795,-4117,4937,3312,3313,-5848,4937,5847,4144,-4144,4318,3281,3582,-4322,4318,4321,4145,-4144,4968,3314,3581,-4939,4968,4938,4145,-4147,4320,3239,3613,-4380,4320,4379,4147,-4147,4468,3310,3612,-4970,4468,4969,4147,-4149,4378,3253,3371,-4373,4378,4372,4149,-4149,3311,4265,5848,-4881,4265,3370,4469,-5849,5848,4469,4149,-4372,4880,5848,4371,-4151,3225,5838,5849,-4371,5838,3553,4797,-5850,5849,4797,4151,-4882,4370,5849,4881,-4151,3476,4801,5851,-5851,4801,3552,4882,-5852,5851,4882,4151,-4797,5850,5851,4796,-4153,3523,4550,5852,-4766,4550,3476,5850,-5853,5852,5850,4152,-4705,4765,5852,4704,-4154,4703,3524,3422,-5854,4703,5853,4154,-4154,5853,3422,3615,-4710,5853,4709,4155,-4155,4939,3478,3614,-4971,4939,4970,4155,-4157,4708,3410,4619,-4622,3477,4966,5855,-5855,5854,5855,4620,-4158,3477,5854,5856,-4991,5854,4157,4615,-5857,5856,4615,4158,-5012,4990,5856,5011,-3683,3373,4471,5857,-4182,4471,3229,4182,-5858,3420,3610,4189,-4189,3526,3470,4186,-4186,3470,3643,4187,-4187,3403,4768,5858,-4185,4768,3526,4185,-5859,3580,4876,5859,-4184,4876,3403,4184,-5860,4182,3229,4935,-5861,4935,3580,4183,-5861,3643,3420,4188,-4188,4201,4200,3825,-3756,4201,3755,4076,-3706,3686,5284,5861,-4200,5284,3825,4200,-5862,4046,3866,4193,-4193,3909,3964,4196,-4196,4077,3909,4195,-4195,4196,3964,5576,-5863,5576,3854,4197,-5863,4197,3854,5684,-5864,5684,4017,4198,-5864,4198,4017,5742,-5865,5742,3686,4199,-5865,3866,4077,4194,-4194,4172,5865,5858,-4186,4171,4172,4185,-4187,4173,4171,4186,-4188,4170,4173,4187,-4189,4169,4170,4188,-4190,4206,5866,4940,-4206,5866,4169,4189,-4941,3671,3224,5867,-4993,5867,4174,4190,-4993,4180,5868,5798,-4192,5868,3222,4105,-5799,4204,5869,5746,-4204,5869,4180,4191,-5747,4175,4176,4192,-4194,4179,4175,4193,-4195,4178,4179,4194,-4196,4177,4178,4195,-4197,5870,4177,4196,-5863,4202,3250,3642,-3303,3373,4181,4202,-3303,4203,4047,5360,-5872,5360,4046, +4192,-5872,4192,4176,5872,-5872,5872,4204,4203,-5872,4205,3611,4696,-5874,4696,3472,4190,-5874,4190,4174,5874,-5874,5874,4206,4205,-5874,3671,4667,5875,-4214,4667,3223,4210,-5876,5875,4210,3208,-3222,4213,5875,3221,-3213,4218,3207,3213,-4210,4218,4209,4105,-3223,3467,5876,5877,-5033,5876,4207,5034,-5878,5877,5034,4167,-4544,5032,5877,4543,-4167,4141,5833,5878,-5356,5833,4207,5876,-5879,5878,5876,3467,-5832,5355,5878,5831,-4141,5503,4047,5505,-5508,3611,3471,-4694,6453,6455,6479,-6455,6477,6431,6430,-6479,6476,6432,6431,-6478,6475,6433,6432,-6477,6474,6434,6433,-6476,6473,6435,6434,-6475,6471,6437,6436,-6473,6470,6438,6437,-6472,6469,6439,6438,-6471,6468,6440,6439,-6470,6472,6436,6435,-6474,6452,6456,6455,-6454,6450,6458,6457,-6452,6451,6457,6456,-6453,6478,6430,6454,-6480,6449,6459,6458,-6451,6448,6460,6459,-6450,6447,6461,6460,-6449,6446,6462,6461,-6448,6445,6463,6462,-6447,6444,6464,6463,-6446,6443,6465,6464,-6445,6442,6466,6465,-6444,6441,6467,6466,-6443,6467,6441,6440,-6469,6550,6509,6508,-6552,6551,6508,6507,-6553,6552,6507,6506,-6554,6537,6522,6521,-6539,6536,6523,6522,-6538,6535,6524,6523,-6537,6534,6525,6524,-6536,6533,6526,6525,-6535,6532,6527,6526,-6534,6531,6528,6527,-6533,6530,6529,6528,-6532,6505,6529,6530,-6555,6553,6506,6505,-6555,6538,6521,6520,-6540,6539,6520,6519,-6541,6540,6519,6518,-6542,6541,6518,6517,-6543,6542,6517,6516,-6544,6543,6516,6515,-6545,6544,6515,6514,-6546,6545,6514,6513,-6547,6546,6513,6512,-6548,6547,6512,6511,-6549,6549,6510,6509,-6551,6548,6511,6510,-6550,5880,5976,5975,-5880,5882,5978,6015,-5886,6021,5981,5980,-6023,6019,5983,5992,-6021,6018,5985,5983,-6020,6017,5987,5985,-6019,6016,5989,5987,-6018,5978,5989,6016,-6016,5992,5981,6021,-6021,6022,5980,5993,-6024,6023,5993,5995,-6025,6024,5995,5997,-6026,6025,5997,5999,-6027,6002,6027,6026,-6000,6002,6004,6028,-6028,6028,6004,6005,-6030,6029,6005,6007,-6031,6030,6007,6009,-6032,6031,6009,6011,-6033,6032,6011,6013,-6034,6033,6013,5883,-5887,6015,6034,5887,-5886,6016,6035,6034,-6016,6035,6016,6017,-6037,6036,6017,6018,-6038,6037,6018, +6019,-6039,6038,6019,6020,-6040,6021,6040,6039,-6021,6040,6021,6022,-6042,6041,6022,6023,-6043,6042,6023,6024,-6044,6043,6024,6025,-6045,6044,6025,6026,-6046,6027,6046,6045,-6027,6028,6047,6046,-6028,6047,6028,6029,-6049,6048,6029,6030,-6050,6049,6030,6031,-6051,6050,6031,6032,-6052,6051,6032,6033,-6053,6052,6033,5886,-5889,6034,5977,5881,-5888,6035,5990,5977,-6035,5988,5990,6035,-6037,5986,5988,6036,-6038,5986,6037,6038,-5985,5984,6038,6039,-5992,6040,5982,5991,-6040,5982,6040,6041,-5980,5994,5979,6041,-6043,5996,5994,6042,-6044,5998,5996,6043,-6045,6000,5998,6044,-6046,6046,6001,6000,-6046,6047,6003,6001,-6047,6006,6003,6047,-6049,6008,6006,6048,-6050,6010,6008,6049,-6051,6012,6010,6050,-6052,6014,6012,6051,-6053,5884,6014,6052,-5889,5891,5889,6053,-6073,6053,6054,6073,-6073,6054,6055,6074,-6074,6055,6056,6075,-6075,6056,6057,6076,-6076,6057,6058,6077,-6077,6058,6059,6078,-6078,6060,6079,6078,-6060,6079,6060,6061,-6081,6061,6062,6081,-6081,6062,6063,6082,-6082,6082,6063,6064,-6084,6064,6065,6084,-6084,6065,6066,6085,-6085,5890,5892,6090,-6068,6089,6068,6067,-6091,6088,6069,6068,-6090,6069,6088,6087,-6071,6086,6071,6070,-6088,6085,6066,6071,-6087,5978,5882,5891,-6073,6073,5989,5978,-6073,6074,5987,5989,-6074,6075,5985,5987,-6075,6076,5983,5985,-6076,6077,5992,5983,-6077,6078,5981,5992,-6078,6079,5980,5981,-6079,5993,5980,6079,-6081,6081,5995,5993,-6081,6082,5997,5995,-6082,5999,5997,6082,-6084,6084,6002,5999,-6084,6085,6004,6002,-6085,6005,6004,6085,-6087,6007,6005,6086,-6088,6088,6009,6007,-6088,6011,6009,6088,-6090,6013,6011,6089,-6091,5892,5883,6013,-6091,5893,6091,6053,-5890,6054,6053,6091,-6093,6092,6093,6055,-6055,6093,6094,6056,-6056,6094,6095,6057,-6057,6095,6096,6058,-6058,6059,6058,6096,-6098,6060,6059,6097,-6099,6100,6099,6065,-6065,6064,6063,6101,-6101,6063,6062,6102,-6102,6062,6061,6103,-6103,6061,6060,6098,-6104,6104,5894,5890,-6068,6105,6104,6067,-6069,6068,6069,6106,-6106,6107,6106,6069,-6071,6070,6071,6108,-6108,6109,6108,6071,-6067,6065,6099,6109,-6067,6111,5896,5895,-6111,6110,6113,6112,-6112,6113, +6115,6114,-6113,6117,6116,6163,-6163,6119,6118,6116,-6118,6121,6118,6119,-6121,6121,6120,6123,-6123,6125,6124,6122,-6124,6127,6126,6147,-6147,6129,6128,6149,-6149,6128,6129,6151,-6151,6133,6132,6130,-6132,6135,6134,6153,-6153,6137,6136,6155,-6155,6139,6138,6157,-6157,6141,6140,6138,-6140,6143,6142,6140,-6142,6145,6144,6142,-6144,5898,6144,6145,-5898,5896,6111,6160,-5901,6111,6112,6161,-6161,6147,6124,6125,-6147,6149,6126,6127,-6149,6151,6131,6130,-6151,6153,6132,6133,-6153,6155,6134,6135,-6155,6157,6136,6137,-6157,6158,6144,5898,-5900,6144,6158,6159,-6143,6160,6158,5899,-5901,6159,6158,6160,-6162,6163,6114,6115,-6163,5902,6407,6406,-5904,6165,6390,6389,-6183,6167,6383,6382,-6184,6169,6179,6185,-6185,6171,6414,6413,-6187,6173,6418,6417,-6188,6175,6177,6190,-6190,6179,6171,6186,-6186,6181,6175,6189,-6189,6405,5901,5903,-6407,6388,6164,6182,-6390,6381,6166,6183,-6383,6185,6178,6168,-6185,6186,6170,6178,-6186,6412,6170,6186,-6414,6416,6172,6187,-6418,6189,6174,6180,-6189,6190,6176,6174,-6190,6194,6293,6292,-6192,6196,6192,6193,-6196,6195,6198,6197,-6197,6198,6200,6199,-6198,5976,6199,6200,-5976,6191,6202,6201,-6195,6201,6202,6291,-6291,6204,6097,6096,-6204,6205,6098,6097,-6205,6206,6103,6098,-6206,6207,6102,6103,-6207,6207,6208,6101,-6103,6208,6209,6100,-6102,6209,6210,6099,-6101,6210,6211,6109,-6100,6211,6212,6108,-6110,6212,6213,6107,-6109,6213,6214,6106,-6108,6214,6215,6105,-6107,6215,6216,6104,-6106,6216,5904,5894,-6105,6255,6256,6268,-6244,6243,6268,6267,-6245,6244,6267,6266,-6246,6245,6266,6265,-6247,6246,6265,6264,-6248,6247,6264,6263,-6249,6248,6263,6262,-6250,6249,6262,6261,-6251,6250,6261,6280,-6280,6251,6260,6259,-6253,6254,6257,6256,-6256,6257,6254,6253,-6259,6258,6253,6252,-6260,6217,6243,6244,-6222,6221,6244,6245,-6224,6223,6245,6246,-6226,6225,6246,6247,-6228,6227,6247,6248,-6230,6229,6248,6249,-6232,6231,6249,6250,-6234,6233,6250,6279,-6279,6235,6251,6252,-6242,6253,6237,6241,-6253,6254,6240,6237,-6254,6240,6254,6255,-6221,6220,6255,6243,-6218,6257,6239,6219,-6257,6239,6257,6258,-6239,6242,6238,6258,-6260, +6260,6236,6242,-6260,6261,6234,6281,-6281,6262,6232,6234,-6262,6263,6230,6232,-6263,6264,6228,6230,-6264,6265,6226,6228,-6265,6266,6224,6226,-6266,6267,6222,6224,-6267,6268,6218,6222,-6268,6256,6219,6218,-6269,6272,6271,6270,-6274,5909,5910,6273,-6271,5906,5905,6224,-6223,6222,6218,5907,-5907,6218,6269,5908,-5908,6238,6093,6092,-6240,6091,6219,6239,-6093,6269,6091,5893,-5909,6091,6269,6218,-6220,6228,6226,5909,-6271,6271,6230,6228,-6271,6226,6224,5905,-5910,6200,6272,6273,-5976,5910,5879,5975,-6274,6272,6200,6198,-6275,6271,6272,6274,-6276,6230,6271,6275,-6233,6232,6275,6276,-6235,6275,6274,6277,-6277,6274,6198,6195,-6278,6298,6251,6235,-6300,6297,6260,6251,-6299,6296,6236,6260,-6298,6234,6276,6282,-6282,6276,6277,6283,-6283,6277,6195,6193,-6284,6295,6284,6236,-6297,6294,6285,6284,-6296,6293,6194,6285,-6295,6242,6236,6284,-6287,6286,6284,6285,-6288,6194,6201,6287,-6286,6238,6242,6286,-6289,6288,6094,6093,-6239,6287,6289,6288,-6287,6291,6203,6096,-6291,6201,6290,6289,-6288,6289,6095,6094,-6289,6095,6289,6290,-6097,6293,6193,6192,-6293,6283,6193,6293,-6295,6282,6283,6294,-6296,6281,6282,6295,-6297,6281,6296,6297,-6281,6280,6297,6298,-6280,6279,6298,6299,-6279,5897,6145,6339,-5917,6145,6143,6340,-6340,6143,6141,6338,-6341,6300,6309,5914,-5912,6301,6310,6309,-6301,6302,6311,6310,-6302,6303,6300,5911,-5913,6304,6301,6300,-6304,6305,6302,6301,-6305,6306,6303,5912,-5914,6307,6304,6303,-6307,6308,6305,6304,-6308,6309,6330,5915,-5915,6310,6331,6330,-6310,6311,6332,6331,-6311,6191,6313,6312,-6203,6313,6315,6314,-6313,6315,6317,6316,-6315,6317,6319,6318,-6317,6319,6321,6320,-6319,6321,6311,6302,-6321,6321,6333,6332,-6312,6323,6317,6315,-6323,6322,6315,6313,-6325,6324,6313,6191,-6293,6192,6325,6324,-6293,6322,6324,6325,-6327,6323,6322,6326,-6328,6327,6319,6317,-6324,6328,6321,6319,-6328,6333,6321,6328,-6335,6329,6325,6192,-6197,6330,5976,5880,-5916,6331,6199,5976,-6331,6332,6197,6199,-6332,6333,6196,6197,-6333,6329,6196,6333,-6335,6334,6328,6327,-6327,6329,6334,6326,-6326,6320,6302,6305,-6319,6305,6308,6316,-6319,6312,6335,6291, +-6203,6314,6336,6335,-6313,6336,6314,6316,-6338,6337,6316,6308,-6339,6339,6306,5913,-5917,6340,6307,6306,-6340,6338,6308,6307,-6341,6139,6337,6338,-6142,6341,6336,6337,-6140,6342,6335,6336,-6342,6291,6335,6342,-6204,6156,6343,6341,-6140,6203,6342,6344,-6205,6343,6344,6342,-6342,6137,6345,6343,-6157,6344,6343,6345,-6347,6204,6344,6346,-6206,6347,6345,6137,-6155,6345,6347,6348,-6347,6349,6205,6346,-6349,6347,6351,6350,-6349,6351,6353,6352,-6351,6353,6355,6354,-6353,6355,6357,6356,-6355,6357,6359,6358,-6357,6347,6154,6135,-6352,6351,6135,6152,-6354,6133,6355,6353,-6153,6131,6357,6355,-6134,6357,6131,6151,-6360,6348,6350,6360,-6350,6362,6352,6354,-6362,6356,6363,6361,-6355,6360,6350,6352,-6363,6364,6206,6205,-6350,6366,6362,6361,-6366,6367,6360,6362,-6367,6364,6349,6360,-6368,6365,6369,6368,-6367,6366,6368,6370,-6368,6370,6371,6364,-6368,6371,6207,6206,-6365,6373,6372,6207,-6372,6371,6370,6374,-6374,6374,6370,6368,-6376,6208,6207,6372,-6377,6376,6372,6378,-6378,6171,6179,6377,-6379,6376,6377,6380,-6380,6379,6209,6208,-6377,6377,6179,6169,-6381,6184,6168,6381,-6383,6383,6169,6184,-6383,6384,6210,6209,-6380,6385,6384,6379,-6381,6383,6385,6380,-6170,6386,6211,6210,-6385,6384,6385,6387,-6387,6385,6383,6167,-6388,6183,6166,6388,-6390,6390,6167,6183,-6390,6391,6387,6167,-6391,6391,6392,6386,-6388,6211,6386,6392,-6213,6212,6392,6393,-6214,6392,6391,6394,-6394,6391,6390,6165,-6395,6182,6164,6395,-6397,6397,6165,6182,-6397,6395,6398,6399,-6397,6400,6397,6396,-6400,6215,6214,6402,-6402,6393,6402,6214,-6214,6394,6403,6402,-6394,6403,6404,6401,-6403,6397,6400,6404,-6404,6165,6397,6403,-6395,6398,6405,6406,-6400,6407,6400,6399,-6407,6401,6408,6216,-6216,6408,6401,6404,-6410,6409,6404,6400,-6408,6408,5917,5904,-6217,6409,5918,5917,-6409,5918,6409,6407,-5903,6410,6378,6372,-6374,6373,6374,6411,-6411,6187,6172,6412,-6414,6414,6173,6187,-6414,6378,6410,6414,-6172,6410,6411,6173,-6415,6375,6415,6411,-6375,6188,6180,6416,-6418,6418,6181,6188,-6418,6411,6415,6418,-6174,6375,6420,6419,-6416,6369,6420,6375,-6369,6415,6419,6181,-6419,6420,6422, +6421,-6420,6365,6424,6423,-6370,6363,6424,6365,-6362,6423,6422,6420,-6370,6421,6175,6181,-6420,6422,6426,6425,-6422,6424,6428,6427,-6424,6356,6358,6429,-6364,6425,6177,6175,-6422,6427,6426,6422,-6424,6424,6363,6429,-6429,6431,5952,5951,-6431,6432,5953,5952,-6432,6433,5954,5953,-6433,6434,5955,5954,-6434,6435,5961,5955,-6435,6436,5956,5961,-6436,6437,5957,5956,-6437,6438,5958,5957,-6438,6439,5959,5958,-6439,6440,5974,5959,-6440,6441,5960,5974,-6441,5973,5960,6441,-6443,5972,5973,6442,-6444,5971,5972,6443,-6445,5970,5971,6444,-6446,5969,5970,6445,-6447,5968,5969,6446,-6448,5967,5968,6447,-6449,5966,5967,6448,-6450,5963,5966,6449,-6451,5963,6450,6451,-5963,5964,5962,6451,-6453,5950,5964,6452,-6454,5950,6453,6454,-5966,6430,5951,5965,-6455,6456,6503,6504,-6456,6457,6502,6503,-6457,6458,6501,6502,-6458,6459,6500,6501,-6459,6460,6499,6500,-6460,6461,6498,6499,-6461,6462,6497,6498,-6462,6463,6496,6497,-6463,6464,6495,6496,-6464,6465,6494,6495,-6465,6466,6493,6494,-6466,6492,6493,6466,-6468,6480,6481,6478,-6480,6455,6504,6480,-6480,6482,6477,6478,-6482,6476,6477,6482,-6484,6475,6476,6483,-6485,6474,6475,6484,-6486,6473,6474,6485,-6487,6472,6473,6486,-6488,6471,6472,6487,-6489,6470,6471,6488,-6490,6469,6470,6489,-6491,6468,6469,6490,-6492,6492,6467,6468,-6492,6114,6163,6505,-6507,6112,6114,6506,-6508,6161,6112,6507,-6509,6159,6161,6508,-6510,6510,6142,6159,-6510,6140,6142,6510,-6512,6138,6140,6511,-6513,6157,6138,6512,-6514,6136,6157,6513,-6515,6155,6136,6514,-6516,6134,6155,6515,-6517,6153,6134,6516,-6518,6132,6153,6517,-6519,6130,6132,6518,-6520,6150,6130,6519,-6521,6128,6150,6520,-6522,6149,6128,6521,-6523,6523,6126,6149,-6523,6524,6147,6126,-6524,6525,6124,6147,-6525,6526,6122,6124,-6526,6527,6121,6122,-6527,6528,6118,6121,-6528,6529,6116,6118,-6529,6505,6163,6116,-6530,6484,6530,6531,-6486,6485,6531,6532,-6487,6486,6532,6533,-6488,6487,6533,6534,-6489,6488,6534,6535,-6490,6489,6535,6536,-6491,6490,6536,6537,-6492,6491,6537,6538,-6493,6492,6538,6539,-6494,6493,6539,6540,-6495,6494,6540,6541,-6496,6495,6541,6542,-6497,6496, +6542,6543,-6498,6497,6543,6544,-6499,6498,6544,6545,-6500,6499,6545,6546,-6501,6500,6546,6547,-6502,6501,6547,6548,-6503,6502,6548,6549,-6504,6503,6549,6550,-6505,6504,6550,6551,-6481,6480,6551,6552,-6482,6481,6552,6553,-6483,6482,6553,6554,-6484,6530,6484,6483,-6555,5919,6555,6110,-5896,6113,6110,6555,-6557,6115,6113,6556,-6558,6162,6115,6557,-6559,6117,6162,6558,-6560,6119,6117,6559,-6561,6119,6560,6561,-6121,6120,6561,6562,-6124,6123,6562,6563,-6126,6125,6563,6564,-6147,6565,6127,6146,-6565,6127,6565,6566,-6149,6566,6567,6129,-6149,6359,6151,6129,-6568,6665,6570,6569,-6667,6569,6573,6667,-6667,6573,6575,6668,-6668,6575,6657,6669,-6669,6577,6662,6671,-6671,6579,6581,6673,-6673,6581,6652,6674,-6674,6583,6585,6676,-6676,6585,6587,6677,-6677,6587,6589,6678,-6678,6589,6591,6679,-6679,6591,6593,6680,-6680,6593,6595,6681,-6681,6595,6597,6682,-6682,6597,6599,6683,-6683,6571,6600,6601,-6569,6602,6572,6568,-6602,6603,6574,6572,-6603,6655,6574,6603,-6657,6660,6576,6604,-6662,6606,6580,6578,-6606,6650,6580,6606,-6652,6608,6584,6582,-6608,6609,6586,6584,-6609,6610,6588,6586,-6610,6611,6590,6588,-6611,6612,6592,6590,-6612,6613,6594,6592,-6613,6614,6596,6594,-6614,6615,6598,6596,-6615,6633,6617,6616,-6635,6634,6616,6618,-6636,6618,6619,6636,-6636,6619,6659,6658,-6637,6620,6664,6663,-6638,6621,6622,6639,-6639,6622,6654,6653,-6640,6623,6624,6641,-6641,6624,6625,6642,-6642,6625,6626,6643,-6643,6626,6627,6644,-6644,6627,6628,6645,-6645,6628,6629,6646,-6646,6629,6630,6647,-6647,6631,6648,6647,-6631,6648,6631,6685,-6685,6686,6633,6634,-6688,6687,6634,6635,-6689,6636,6689,6688,-6636,6689,6636,6658,-6691,6691,6637,6663,-6693,6639,6694,6693,-6639,6694,6639,6653,-6696,6641,6697,6696,-6641,6642,6698,6697,-6642,6643,6699,6698,-6643,6644,6700,6699,-6644,6645,6701,6700,-6645,6646,6702,6701,-6646,6647,6703,6702,-6647,6648,6704,6703,-6648,6704,6648,6684,-6706,6607,6582,6650,-6652,6652,6583,6675,-6675,6640,6696,6695,-6654,6654,6623,6640,-6654,6604,6576,6655,-6657,6657,6577,6670,-6670,6637,6691,6690,-6659,6659,6620,6637,-6659,6605,6578,6660,-6662, +6662,6579,6672,-6672,6638,6693,6692,-6664,6664,6621,6638,-6664,6600,6665,6666,-6602,6667,6602,6601,-6667,6668,6603,6602,-6668,6669,6656,6603,-6669,6670,6604,6656,-6670,6671,6661,6604,-6671,6672,6605,6661,-6672,6673,6606,6605,-6673,6674,6651,6606,-6674,6675,6607,6651,-6675,6676,6608,6607,-6676,6677,6609,6608,-6677,6678,6610,6609,-6678,6679,6611,6610,-6679,6680,6612,6611,-6680,6681,6613,6612,-6681,6682,6614,6613,-6682,6683,6615,6614,-6683,6684,6649,6706,-6706,6570,6686,6687,-6570,6569,6687,6688,-6574,6689,6575,6573,-6689,6657,6575,6689,-6691,6691,6577,6657,-6691,6662,6577,6691,-6693,6693,6579,6662,-6693,6694,6581,6579,-6694,6652,6581,6694,-6696,6696,6583,6652,-6696,6697,6585,6583,-6697,6698,6587,6585,-6698,6699,6589,6587,-6699,6700,6591,6589,-6700,6701,6593,6591,-6701,6702,6595,6593,-6702,6703,6597,6595,-6703,6704,6599,6597,-6704,6599,6704,6705,-6684,6706,6615,6683,-6706,6598,6615,6706,-6650,6707,6598,6649,-6633,6598,6707,6708,-6597,6709,6594,6596,-6709,6709,6710,6592,-6595,6590,6592,6710,-6712,6712,6588,6590,-6712,6586,6588,6712,-6714,6584,6586,6713,-6715,6716,6715,6650,-6583,6582,6584,6714,-6717,6715,6717,6580,-6651,6578,6580,6717,-6661,6576,6660,6717,-6656,6655,6717,6718,-6575,6719,6572,6574,-6719,6720,6568,6572,-6720,6721,6571,6568,-6721,6718,6717,6715,-6723,6723,6722,6715,-6717,6724,6723,6716,-6715,6713,6725,6724,-6715,6712,6726,6725,-6714,6726,6712,6711,-6728,6728,6727,6711,-6711,6729,6719,6718,-6723,6720,6719,6729,-6731,6730,6729,6722,-6724,6730,6731,6721,-6721,6731,6730,6723,-6725,6732,6731,6724,-6726,6732,6725,6726,-6728,6733,6721,6731,-6733,6727,6728,6733,-6733,6571,6721,6733,-6735,6734,6733,6728,-6736,6728,6710,6709,-6736,6736,6735,6709,-6709,6734,6737,6600,-6572,6735,6736,6737,-6735,6737,6738,6665,-6601,6738,6737,6736,-6740,6743,6742,6741,-6741,6740,6741,6745,-6745,6747,6746,6742,-6744,6747,6739,6707,-6747,6742,6746,6745,-6742,6740,6744,6747,-6744,6744,6738,6739,-6748,6738,6744,6570,-6666,6744,6745,6686,-6571,6746,6749,6748,-6746,6745,6748,6633,-6687,6707,6632,6749,-6747,6707,6739,6736,-6709,6176,6190,6763, +-6763,6427,6428,6756,-6756,6754,6426,6427,-6756,6617,6633,6748,-6751,6756,6428,6429,-6758,6359,6567,6751,-6359,6752,6751,6567,-6567,6759,6751,6752,-6761,6566,6565,6753,-6753,6760,6752,6753,-6762,6749,6632,6754,-6756,6756,6748,6749,-6756,6750,6748,6756,-6758,6757,6429,6358,-6759,6617,6750,6759,-6761,6616,6617,6760,-6762,6358,6751,6759,-6759,6750,6757,6758,-6760,6763,6685,6631,-6763,6765,6764,6177,-6426,6763,6190,6177,-6765,6425,6426,6754,-6766,6632,6766,6765,-6755,6764,6765,6766,-6768,6763,6764,6767,-6686,6684,6685,6767,-6767,6766,6632,6649,-6685,6762,6631,6630,-6769,6176,6762,6768,-6770,6768,6630,6629,-6771,6769,6768,6770,-6772,6628,6772,6770,-6630,6771,6770,6772,-6774,6627,6774,6772,-6629,6774,6775,6773,-6773,6626,6776,6774,-6628,6777,6775,6774,-6777,6779,6777,6776,-6779,6625,6778,6776,-6627,6624,6780,6778,-6626,6781,6779,6778,-6781,6623,6782,6780,-6625,6780,6782,6783,-6782,6785,6783,6782,-6785,6623,6654,6784,-6783,6785,6784,6787,-6787,6622,6787,6784,-6655,6621,6788,6787,-6623,6790,6619,6618,-6790,6791,6659,6619,-6791,6659,6791,6792,-6621,6620,6792,6793,-6665,6664,6793,6788,-6622,6761,6789,6618,-6617,6789,6761,6753,-6795,6794,6795,6790,-6790,6795,6796,6791,-6791,6796,6797,6792,-6792,6797,6798,6793,-6793,6798,6799,6788,-6794,6799,6786,6787,-6789,6565,6564,6794,-6754,6794,6564,6563,-6801,6562,6801,6800,-6564,6561,6802,6801,-6563,6560,6803,6802,-6562,6559,6804,6803,-6561,6558,6805,6804,-6560,6557,6806,6805,-6559,6556,6807,6806,-6558,6555,6808,6807,-6557,5919,5920,6808,-6556,5922,5921,6809,-6819,6818,6809,6810,-6820,6819,6810,6811,-6821,6820,6811,6812,-6822,6821,6812,6813,-6823,6822,6813,6814,-6824,6823,6814,6815,-6825,6824,6815,6816,-6826,6825,6816,6817,-6827,5920,5922,6818,-6809,6808,6818,6819,-6808,6807,6819,6820,-6807,6806,6820,6821,-6806,6805,6821,6822,-6805,6804,6822,6823,-6804,6803,6823,6824,-6803,6802,6824,6825,-6802,6801,6825,6826,-6801,6795,6794,6800,-6827,6826,6817,6796,-6796,6797,6796,6817,-6828,6827,6817,6816,-6829,6815,6829,6828,-6817,6815,6814,6830,-6830,6814,6813,6831,-6831,6832,6831,6813,-6813,6812,6811, +6833,-6833,6811,6810,6834,-6834,6810,6809,6835,-6835,6809,5921,5923,-6836,6777,6837,6836,-6776,6837,6845,6844,-6837,6839,6843,6842,-6839,6841,6924,6923,-6841,6843,6841,6840,-6843,6845,6839,6838,-6845,6846,6925,6924,-6842,6847,6846,6841,-6844,6843,6839,6848,-6848,6849,6850,6845,-6838,6850,6848,6839,-6846,6777,6779,6849,-6838,6925,6846,6851,-6927,6846,6847,6852,-6852,6847,6848,6853,-6853,6848,6850,6854,-6854,6849,6855,6854,-6851,6779,6781,6855,-6850,6926,6851,6856,-6928,6857,6856,6851,-6853,6852,6853,6858,-6858,6859,6858,6853,-6855,6859,6854,6855,-6861,6860,6855,6781,-6784,6927,6856,6861,-6929,6856,6857,6862,-6862,6857,6858,6863,-6863,6858,6859,6864,-6864,6860,6865,6864,-6860,6783,6785,6865,-6861,6928,6861,6866,-6930,6861,6862,6867,-6867,6862,6863,6868,-6868,6863,6864,6869,-6869,6865,6870,6869,-6865,6785,6786,6870,-6866,6929,6866,6871,-6931,6872,6871,6866,-6868,6867,6868,6873,-6873,6868,6869,6874,-6874,6869,6870,6875,-6875,6870,6786,6799,-6876,6930,6871,6876,-6932,6871,6872,6877,-6877,6872,6873,6878,-6878,6873,6874,6879,-6879,6874,6875,6880,-6880,6875,6799,6798,-6881,6827,6880,6798,-6798,6879,6880,6827,-6882,6931,6876,6882,-6933,6876,6877,6883,-6883,6877,6878,6884,-6884,6878,6879,6881,-6885,6885,6828,6829,-6887,6829,6830,6887,-6887,6883,6884,6885,-6887,6887,6882,6883,-6887,6881,6827,6885,-6885,6827,6828,-6886,6889,6902,6901,-6889,6890,6903,6902,-6890,6903,6890,6891,-6905,6904,6891,6892,-6906,6905,6892,6893,-6907,6906,6893,6894,-6908,6907,6894,6895,-6909,6908,6895,6896,-6910,6909,6896,6897,-6911,6775,6836,6898,-6774,6899,6771,6773,-6899,6771,6899,6900,-6770,6176,6769,6900,-6175,6902,5925,5924,-6902,6903,5926,5925,-6903,5926,6903,6904,-5928,5927,6904,6905,-5929,5928,6905,6906,-5930,5929,6906,6907,-5931,5930,6907,6908,-5932,5931,6908,6909,-5933,5932,6909,6910,-5934,6912,6936,6935,-6912,6913,6937,6936,-6913,6937,6913,6914,-6939,6938,6914,6915,-6940,6939,6915,6916,-6941,6940,6916,6917,-6942,6941,6917,6918,-6943,6942,6918,6919,-6944,6943,6919,6920,-6945,5934,6921,6835,-5924,6921,5934,5933,-6911,6921,6922,6834,-6836,6922,6921, +6910,-6898,6924,6912,6911,-6924,6925,6913,6912,-6925,6913,6925,6926,-6915,6914,6926,6927,-6916,6915,6927,6928,-6917,6916,6928,6929,-6918,6917,6929,6930,-6919,6918,6930,6931,-6920,6919,6931,6932,-6921,6887,6933,6932,-6883,6830,6831,6933,-6888,6933,6934,6920,-6933,6934,6933,6831,-6833,6936,6889,6888,-6936,6937,6890,6889,-6937,6890,6937,6938,-6892,6891,6938,6939,-6893,6892,6939,6940,-6894,6893,6940,6941,-6895,6894,6941,6942,-6896,6895,6942,6943,-6897,6896,6943,6944,-6898,6922,6945,6833,-6835,6945,6934,6832,-6834,6934,6945,6944,-6921,6897,6944,6945,-6923,5935,6946,6901,-5925,6946,6947,6888,-6902,6947,6948,6935,-6889,6948,6949,6911,-6936,6923,6911,6949,-6951,6950,6951,6840,-6924,6842,6840,6951,-6953,6952,6953,6838,-6843,6844,6838,6953,-6955,6836,6844,6954,-6899,7098,6956,6955,-7100,7097,6957,6956,-7099,7096,6958,6957,-7098,7095,6959,6958,-7097,7094,6960,6959,-7096,7093,6961,6960,-7095,7092,6962,6961,-7094,7091,6963,6962,-7093,7090,6964,6963,-7092,5946,5936,6964,-7091,7099,6955,6965,-7101,7100,6965,6966,-7102,7101,6966,6967,-7103,7102,6967,6968,-7104,7103,6968,6969,-7105,7104,6969,6970,-7106,7105,6970,6971,-7107,7106,6971,6972,-7108,7107,6972,6973,-7109,7108,6973,6974,-7110,7109,6974,6975,-7111,7110,6975,6976,-7112,7111,6976,6977,-7113,7112,6977,6978,-7114,7113,6978,6979,-7115,7114,6979,6980,-7116,7115,6980,6981,-7117,7116,6981,5937,-5948,5940,5938,6982,-7010,7009,6982,6983,-7011,7010,6983,6984,-7012,7011,6984,6985,-7013,7012,6985,6986,-7014,7013,6986,6987,-7015,7014,6987,6988,-7016,7015,6988,6989,-7017,7016,6989,6990,-7018,7017,6990,6991,-7019,7018,6991,6992,-7020,7019,6992,6993,-7021,7020,6993,6994,-7022,7021,6994,6995,-7023,7022,6995,6996,-7024,7023,6996,6997,-7025,7024,6997,6998,-7026,7025,6998,6999,-7027,7026,6999,7000,-7028,7027,7000,7001,-7029,7028,7001,7002,-7030,7029,7002,7003,-7031,7030,7003,7004,-7032,7031,7004,7005,-7033,7032,7005,7006,-7034,7033,7006,7007,-7035,7034,7007,7008,-7036,7035,7008,5939,-5942,5935,5940,7009,-6947,6946,7009,7010,-6948,6947,7010,7011,-6949,6948,7011,7012,-6950,6949,7012,7013,-6951,6950, +7013,7014,-6952,6951,7014,7015,-6953,6952,7015,7016,-6954,6953,7016,7017,-6955,6954,7017,7018,-6899,6898,7018,7019,-6900,6899,7019,7020,-6901,6900,7020,7021,-6175,6174,7021,7022,-6181,6180,7022,7023,-6417,6416,7023,7024,-6173,6172,7024,7025,-6413,6412,7025,7026,-6171,6170,7026,7027,-6179,6178,7027,7028,-6169,6168,7028,7029,-6382,6381,7029,7030,-6167,6166,7030,7031,-6389,6388,7031,7032,-6165,6164,7032,7033,-6396,6395,7033,7034,-6399,6398,7034,7035,-6406,6405,7035,5941,-5902,5948,5942,7036,-7118,7117,7036,7037,-7119,7118,7037,7038,-7120,7119,7038,7039,-7121,7120,7039,7040,-7122,7121,7040,7041,-7123,7122,7041,7042,-7124,7123,7042,7043,-7125,7124,7043,7044,-7126,7125,7044,7045,-7127,7126,7045,7046,-7128,7127,7046,7047,-7129,7128,7047,7048,-7130,7129,7048,7049,-7131,7130,7049,7050,-7132,7131,7050,7051,-7133,7132,7051,7052,-7134,7133,7052,7053,-7135,7134,7053,7054,-7136,7135,7054,7055,-7137,7136,7055,7056,-7138,7137,7056,7057,-7139,7138,7057,7058,-7140,7139,7058,7059,-7141,7140,7059,7060,-7142,7141,7060,7061,-7143,7142,7061,7062,-7144,7143,7062,5943,-5950,5942,5944,7063,-7037,7036,7063,7064,-7038,7037,7064,7065,-7039,7038,7065,7066,-7040,7039,7066,7067,-7041,7040,7067,7068,-7042,7041,7068,7069,-7043,7042,7069,7070,-7044,7043,7070,7071,-7045,7044,7071,7072,-7046,7045,7072,7073,-7047,7046,7073,7074,-7048,7047,7074,7075,-7049,7048,7075,7076,-7050,7049,7076,7077,-7051,7050,7077,7078,-7052,7051,7078,7079,-7053,7052,7079,7080,-7054,7053,7080,7081,-7055,7054,7081,7082,-7056,7055,7082,7083,-7057,7056,7083,7084,-7058,7057,7084,7085,-7059,7058,7085,7086,-7060,7059,7086,7087,-7061,7060,7087,7088,-7062,7061,7088,7089,-7063,7062,7089,5945,-5944,5944,5946,7090,-7064,7063,7090,7091,-7065,7064,7091,7092,-7066,7065,7092,7093,-7067,7066,7093,7094,-7068,7067,7094,7095,-7069,7068,7095,7096,-7070,7069,7096,7097,-7071,7070,7097,7098,-7072,7071,7098,7099,-7073,7072,7099,7100,-7074,7073,7100,7101,-7075,7074,7101,7102,-7076,7075,7102,7103,-7077,7076,7103,7104,-7078,7077,7104,7105,-7079,7078,7105,7106,-7080,7079,7106,7107,-7081,7080,7107,7108,-7082, +7081,7108,7109,-7083,7082,7109,7110,-7084,7083,7110,7111,-7085,7084,7111,7112,-7086,7085,7112,7113,-7087,7086,7113,7114,-7088,7087,7114,7115,-7089,7088,7115,7116,-7090,7089,7116,5947,-5946,5938,5948,7117,-6983,6982,7117,7118,-6984,6983,7118,7119,-6985,6984,7119,7120,-6986,6985,7120,7121,-6987,6986,7121,7122,-6988,6987,7122,7123,-6989,6988,7123,7124,-6990,6989,7124,7125,-6991,6990,7125,7126,-6992,6991,7126,7127,-6993,6992,7127,7128,-6994,6993,7128,7129,-6995,6994,7129,7130,-6996,6995,7130,7131,-6997,6996,7131,7132,-6998,6997,7132,7133,-6999,6998,7133,7134,-7000,6999,7134,7135,-7001,7000,7135,7136,-7002,7001,7136,7137,-7003,7002,7137,7138,-7004,7003,7138,7139,-7005,7004,7139,7140,-7006,7005,7140,7141,-7007,7006,7141,7142,-7008,7007,7142,7143,-7009,7008,7143,5949,-5940,6229,7145,7144,-6228,6231,7146,7145,-6230,6233,7147,7146,-6232,6278,7148,7147,-6234,6299,7149,7148,-6279,6227,7144,7150,-6226,6225,7150,7151,-6224,6223,7151,7152,-6222,6221,7152,7153,-6218,6217,7153,7154,-6221,6220,7154,7155,-6241,6240,7155,7156,-6238,6237,7156,7157,-6242,6241,7157,7158,-6236,6299,6235,7158,-7150,7145,7146,7160,-7160,7161,7160,7146,-7148,7162,7161,7147,-7149,7156,7155,7160,-7162,7161,7162,7157,-7157,7155,7154,7159,-7161,7159,7163,7144,-7146,7154,7153,7163,-7160,7151,7163,7153,-7153,7150,7144,7163,-7152,7149,7158,7157,-7163,7162,7148,-7150,5977,7186,7185,-5882,5979,7193,7192,-5983,5991,7191,7190,-5985,5984,7190,7189,-5987,5986,7189,7188,-5989,5988,7188,7187,-5991,5990,7187,7186,-5978,5982,7192,7191,-5992,5994,7194,7193,-5980,5996,7195,7194,-5995,5998,7196,7195,-5997,6000,7197,7196,-5999,6001,7198,7197,-6001,6003,7199,7198,-6002,6006,7200,7199,-6004,6008,7201,7200,-6007,6010,7202,7201,-6009,6012,7203,7202,-6011,6014,7204,7203,-6013,5884,7205,7204,-6015,7186,7207,7206,-7186,7187,7208,7207,-7187,7188,7209,7208,-7188,7189,7210,7209,-7189,7190,7211,7210,-7190,7191,7212,7211,-7191,7192,7213,7212,-7192,7193,7214,7213,-7193,7194,7215,7214,-7194,7195,7216,7215,-7195,7196,7217,7216,-7196,7197,7218,7217,-7197,7198,7219,7218,-7198,7199,7220,7219,-7199, +7200,7221,7220,-7200,7201,7222,7221,-7201,7202,7223,7222,-7202,7203,7224,7223,-7203,7204,7225,7224,-7204,7205,7226,7225,-7205,7207,7166,7164,-7207,7208,7173,7166,-7208,7209,7172,7173,-7209,7210,7171,7172,-7210,7211,7169,7171,-7211,7212,7170,7169,-7212,7213,7167,7170,-7213,7214,7168,7167,-7214,7215,7174,7168,-7215,7216,7175,7174,-7216,7217,7176,7175,-7217,7218,7177,7176,-7218,7219,7178,7177,-7219,7220,7179,7178,-7220,7221,7180,7179,-7221,7222,7181,7180,-7222,7223,7182,7181,-7223,7224,7183,7182,-7224,7225,7184,7183,-7225,7226,7165,7184,-7226,7166,7228,7227,-7165,7168,7230,7229,-7168,7170,7232,7231,-7170,7169,7231,7233,-7172,7171,7233,7234,-7173,7172,7234,7235,-7174,7173,7235,7228,-7167,7167,7229,7232,-7171,7174,7236,7230,-7169,7175,7237,7236,-7175,7176,7238,7237,-7176,7177,7239,7238,-7177,7178,7240,7239,-7178,7179,7241,7240,-7179,7180,7242,7241,-7180,7181,7243,7242,-7181,7182,7244,7243,-7182,7183,7245,7244,-7183,7184,7246,7245,-7184,7165,7247,7246,-7185,7228,7312,7311,-7228,7230,7319,7318,-7230,7232,7317,7316,-7232,7231,7316,7315,-7234,7233,7315,7314,-7235,7234,7314,7313,-7236,7235,7313,7312,-7229,7229,7318,7317,-7233,7236,7320,7319,-7231,7237,7321,7320,-7237,7238,7322,7321,-7238,7239,7323,7322,-7239,7240,7324,7323,-7240,7241,7325,7324,-7241,7242,7326,7325,-7242,7243,7327,7326,-7243,7244,7328,7327,-7244,7245,7329,7328,-7245,7246,7330,7329,-7246,7247,7331,7330,-7247,7249,7291,7290,-7249,7251,7298,7297,-7251,7253,7296,7295,-7253,7252,7295,7294,-7255,7254,7294,7293,-7256,7255,7293,7292,-7257,7256,7292,7291,-7250,7250,7297,7296,-7254,7257,7299,7298,-7252,7258,7300,7299,-7258,7259,7301,7300,-7259,7260,7302,7301,-7260,7261,7303,7302,-7261,7262,7304,7303,-7262,7263,7305,7304,-7263,7264,7306,7305,-7264,7265,7307,7306,-7265,7266,7308,7307,-7266,7267,7309,7308,-7267,7268,7310,7309,-7268,7291,7270,7269,-7291,7292,7277,7270,-7292,7293,7276,7277,-7293,7294,7275,7276,-7294,7295,7273,7275,-7295,7296,7274,7273,-7296,7297,7271,7274,-7297,7298,7272,7271,-7298,7299,7278,7272,-7299,7300,7279,7278,-7300,7301,7280,7279,-7301,7302,7281,7280, +-7302,7303,7282,7281,-7303,7304,7283,7282,-7304,7305,7284,7283,-7305,7306,7285,7284,-7306,7307,7286,7285,-7307,7308,7287,7286,-7308,7309,7288,7287,-7309,7310,7289,7288,-7310,7312,7249,7248,-7312,7313,7256,7249,-7313,7314,7255,7256,-7314,7315,7254,7255,-7315,7316,7252,7254,-7316,7317,7253,7252,-7317,7318,7250,7253,-7318,7319,7251,7250,-7319,7320,7257,7251,-7320,7321,7258,7257,-7321,7322,7259,7258,-7322,7323,7260,7259,-7323,7324,7261,7260,-7324,7325,7262,7261,-7325,7326,7263,7262,-7326,7327,7264,7263,-7327,7328,7265,7264,-7328,7329,7266,7265,-7329,7330,7267,7266,-7330,7331,7268,7267,-7331,7835,7836,7861,-7838,7859,7860,7812,-7814,7858,7859,7813,-7815,7857,7858,7814,-7816,7856,7857,7815,-7817,7855,7856,7816,-7818,7853,7854,7818,-7820,7852,7853,7819,-7821,7851,7852,7820,-7822,7850,7851,7821,-7823,7854,7855,7817,-7819,7834,7835,7837,-7839,7832,7833,7839,-7841,7833,7834,7838,-7840,7860,7861,7836,-7813,7831,7832,7840,-7842,7830,7831,7841,-7843,7829,7830,7842,-7844,7828,7829,7843,-7845,7827,7828,7844,-7846,7826,7827,7845,-7847,7825,7826,7846,-7848,7824,7825,7847,-7849,7823,7824,7848,-7850,7849,7850,7822,-7824,7932,7933,7890,-7892,7933,7934,7889,-7891,7934,7935,7888,-7890,7919,7920,7903,-7905,7918,7919,7904,-7906,7917,7918,7905,-7907,7916,7917,7906,-7908,7915,7916,7907,-7909,7914,7915,7908,-7910,7913,7914,7909,-7911,7912,7913,7910,-7912,7887,7936,7912,-7912,7935,7936,7887,-7889,7920,7921,7902,-7904,7921,7922,7901,-7903,7922,7923,7900,-7902,7923,7924,7899,-7901,7924,7925,7898,-7900,7925,7926,7897,-7899,7926,7927,7896,-7898,7927,7928,7895,-7897,7928,7929,7894,-7896,7929,7930,7893,-7895,7931,7932,7891,-7893,7930,7931,7892,-7894,5880,5879,7357,-7359,5882,5885,7397,-7361,7403,7404,7362,-7364,7401,7402,7374,-7366,7400,7401,7365,-7368,7399,7400,7367,-7370,7398,7399,7369,-7372,7360,7397,7398,-7372,7374,7402,7403,-7364,7404,7405,7375,-7363,7405,7406,7377,-7376,7406,7407,7379,-7378,7407,7408,7381,-7380,7384,7381,7408,-7410,7384,7409,7410,-7387,7410,7411,7387,-7387,7411,7412,7389,-7388,7412,7413,7391,-7390,7413,7414,7393,-7392,7414,7415, +7395,-7394,7415,5886,5883,-7396,7397,5885,5887,-7417,7398,7397,7416,-7418,7417,7418,7399,-7399,7418,7419,7400,-7400,7419,7420,7401,-7401,7420,7421,7402,-7402,7403,7402,7421,-7423,7422,7423,7404,-7404,7423,7424,7405,-7405,7424,7425,7406,-7406,7425,7426,7407,-7407,7426,7427,7408,-7408,7409,7408,7427,-7429,7410,7409,7428,-7430,7429,7430,7411,-7411,7430,7431,7412,-7412,7431,7432,7413,-7413,7432,7433,7414,-7414,7433,7434,7415,-7415,7434,5888,5886,-7416,7416,5887,5881,-7360,7417,7416,7359,-7373,7370,7418,7417,-7373,7368,7419,7418,-7371,7368,7366,7420,-7420,7366,7373,7421,-7421,7422,7421,7373,-7365,7364,7361,7423,-7423,7376,7424,7423,-7362,7378,7425,7424,-7377,7380,7426,7425,-7379,7382,7427,7426,-7381,7428,7427,7382,-7384,7429,7428,7383,-7386,7388,7430,7429,-7386,7390,7431,7430,-7389,7392,7432,7431,-7391,7394,7433,7432,-7393,7396,7434,7433,-7395,5884,5888,7434,-7397,5891,7454,7435,-5890,7435,7454,7455,-7437,7436,7455,7456,-7438,7437,7456,7457,-7439,7438,7457,7458,-7440,7439,7458,7459,-7441,7440,7459,7460,-7442,7442,7441,7460,-7462,7461,7462,7443,-7443,7443,7462,7463,-7445,7444,7463,7464,-7446,7464,7465,7446,-7446,7446,7465,7466,-7448,7447,7466,7467,-7449,5890,7449,7472,-5893,7471,7472,7449,-7451,7470,7471,7450,-7452,7451,7452,7469,-7471,7468,7469,7452,-7454,7467,7468,7453,-7449,7360,7454,5891,-5883,7455,7454,7360,-7372,7456,7455,7371,-7370,7457,7456,7369,-7368,7458,7457,7367,-7366,7459,7458,7365,-7375,7460,7459,7374,-7364,7461,7460,7363,-7363,7375,7462,7461,-7363,7463,7462,7375,-7378,7464,7463,7377,-7380,7381,7465,7464,-7380,7466,7465,7381,-7385,7467,7466,7384,-7387,7387,7468,7467,-7387,7389,7469,7468,-7388,7470,7469,7389,-7392,7393,7471,7470,-7392,7395,7472,7471,-7394,5892,7472,7395,-5884,5893,5889,7435,-7474,7436,7474,7473,-7436,7474,7436,7437,-7476,7475,7437,7438,-7477,7476,7438,7439,-7478,7477,7439,7440,-7479,7441,7479,7478,-7441,7442,7480,7479,-7442,7482,7446,7447,-7482,7446,7482,7483,-7446,7445,7483,7484,-7445,7444,7484,7485,-7444,7443,7485,7480,-7443,7486,7449,5890,-5895,7487,7450,7449,-7487,7450,7487,7488,-7452,7489, +7452,7451,-7489,7452,7489,7490,-7454,7491,7448,7453,-7491,7447,7448,7491,-7482,7493,7492,5895,-5897,7492,7493,7494,-7496,7495,7494,7496,-7498,7499,7544,7545,-7499,7501,7499,7498,-7501,7503,7502,7501,-7501,7503,7504,7505,-7503,7507,7505,7504,-7507,7509,7528,7529,-7509,7511,7530,7531,-7511,7510,7532,7533,-7512,7515,7513,7512,-7515,7517,7534,7535,-7517,7519,7536,7537,-7519,7521,7538,7539,-7521,7523,7521,7520,-7523,7525,7523,7522,-7525,7527,7525,7524,-7527,5898,5897,7527,-7527,5896,5900,7542,-7494,7493,7542,7543,-7495,7529,7528,7507,-7507,7531,7530,7509,-7509,7533,7532,7512,-7514,7535,7534,7515,-7515,7537,7536,7517,-7517,7539,7538,7519,-7519,7540,5899,5898,-7527,7526,7524,7541,-7541,7542,5900,5899,-7541,7541,7543,7542,-7541,7545,7544,7497,-7497,5902,5903,7788,-7790,7547,7564,7771,-7773,7549,7565,7764,-7766,7551,7566,7567,-7562,7553,7568,7795,-7797,7555,7569,7799,-7801,7557,7571,7572,-7560,7561,7567,7568,-7554,7563,7570,7571,-7558,7787,7788,5903,-5902,7770,7771,7564,-7547,7763,7764,7565,-7549,7567,7566,7550,-7561,7568,7567,7560,-7553,7794,7795,7568,-7553,7798,7799,7569,-7555,7571,7570,7562,-7557,7572,7571,7556,-7559,7576,7573,7674,-7676,7578,7577,7575,-7575,7577,7578,7579,-7581,7580,7579,7581,-7583,7358,7357,7582,-7582,7573,7576,7583,-7585,7583,7672,7673,-7585,7586,7585,7478,-7480,7587,7586,7479,-7481,7588,7587,7480,-7486,7589,7588,7485,-7485,7589,7484,7483,-7591,7590,7483,7482,-7592,7591,7482,7481,-7593,7592,7481,7491,-7594,7593,7491,7490,-7595,7594,7490,7489,-7596,7595,7489,7488,-7597,7596,7488,7487,-7598,7597,7487,7486,-7599,7598,7486,5894,-5905,7637,7625,7650,-7639,7625,7626,7649,-7651,7626,7627,7648,-7650,7627,7628,7647,-7649,7628,7629,7646,-7648,7629,7630,7645,-7647,7630,7631,7644,-7646,7631,7632,7643,-7645,7632,7661,7662,-7644,7633,7634,7641,-7643,7636,7637,7638,-7640,7639,7640,7635,-7637,7640,7641,7634,-7636,7599,7603,7626,-7626,7603,7605,7627,-7627,7605,7607,7628,-7628,7607,7609,7629,-7629,7609,7611,7630,-7630,7611,7613,7631,-7631,7613,7615,7632,-7632,7615,7660,7661,-7633,7617,7623,7634,-7634,7635,7634,7623,-7620, +7636,7635,7619,-7623,7622,7602,7637,-7637,7602,7599,7625,-7638,7639,7638,7601,-7622,7621,7620,7640,-7640,7624,7641,7640,-7621,7642,7641,7624,-7619,7643,7662,7663,-7617,7644,7643,7616,-7615,7645,7644,7614,-7613,7646,7645,7612,-7611,7647,7646,7610,-7609,7648,7647,7608,-7607,7649,7648,7606,-7605,7650,7649,7604,-7601,7638,7650,7600,-7602,7654,7655,7652,-7654,5909,7652,7655,-5911,5906,7604,7606,-5906,7604,5906,5907,-7601,7600,5907,5908,-7652,7620,7621,7474,-7476,7473,7474,7621,-7602,7651,5908,5893,-7474,7473,7601,7600,-7652,7610,7652,5909,-7609,7653,7652,7610,-7613,7608,5909,5905,-7607,7582,7357,7655,-7655,5910,7655,7357,-5880,7654,7656,7580,-7583,7653,7657,7656,-7655,7612,7614,7657,-7654,7614,7616,7658,-7658,7657,7658,7659,-7657,7656,7659,7577,-7581,7680,7681,7617,-7634,7679,7680,7633,-7643,7678,7679,7642,-7619,7616,7663,7664,-7659,7658,7664,7665,-7660,7659,7665,7575,-7578,7677,7678,7618,-7667,7676,7677,7666,-7668,7675,7676,7667,-7577,7624,7668,7666,-7619,7668,7669,7667,-7667,7576,7667,7669,-7584,7620,7670,7668,-7625,7670,7620,7475,-7477,7669,7668,7670,-7672,7673,7672,7478,-7586,7583,7669,7671,-7673,7671,7670,7476,-7478,7477,7478,7672,-7672,7675,7674,7574,-7576,7665,7676,7675,-7576,7664,7677,7676,-7666,7663,7678,7677,-7665,7663,7662,7679,-7679,7662,7661,7680,-7680,7661,7660,7681,-7681,5897,5916,7721,-7528,7527,7721,7722,-7526,7525,7722,7720,-7524,7682,5911,5914,-7692,7683,7682,7691,-7693,7684,7683,7692,-7694,7685,5912,5911,-7683,7686,7685,7682,-7684,7687,7686,7683,-7685,7688,5913,5912,-7686,7689,7688,7685,-7687,7690,7689,7686,-7688,7691,5914,5915,-7713,7692,7691,7712,-7714,7693,7692,7713,-7715,7573,7584,7694,-7696,7695,7694,7696,-7698,7697,7696,7698,-7700,7699,7698,7700,-7702,7701,7700,7702,-7704,7703,7702,7684,-7694,7703,7693,7714,-7716,7705,7704,7697,-7700,7704,7706,7695,-7698,7706,7674,7573,-7696,7574,7674,7706,-7708,7704,7708,7707,-7707,7705,7709,7708,-7705,7709,7705,7699,-7702,7710,7709,7701,-7704,7715,7716,7710,-7704,7711,7578,7574,-7708,7712,5915,5880,-7359,7713,7712,7358,-7582,7714,7713,7581,-7580,7715,7714,7579, +-7579,7711,7716,7715,-7579,7716,7708,7709,-7711,7711,7707,7708,-7717,7702,7700,7687,-7685,7687,7700,7698,-7691,7694,7584,7673,-7718,7696,7694,7717,-7719,7718,7719,7698,-7697,7719,7720,7690,-7699,7721,5916,5913,-7689,7722,7721,7688,-7690,7720,7722,7689,-7691,7521,7523,7720,-7720,7723,7521,7719,-7719,7724,7723,7718,-7718,7673,7585,7724,-7718,7538,7521,7723,-7726,7585,7586,7726,-7725,7725,7723,7724,-7727,7519,7538,7725,-7728,7726,7728,7727,-7726,7586,7587,7728,-7727,7729,7536,7519,-7728,7727,7728,7730,-7730,7731,7730,7728,-7588,7729,7730,7732,-7734,7733,7732,7734,-7736,7735,7734,7736,-7738,7737,7736,7738,-7740,7739,7738,7740,-7742,7729,7733,7517,-7537,7733,7735,7534,-7518,7515,7534,7735,-7738,7513,7515,7737,-7740,7739,7741,7533,-7514,7730,7731,7742,-7733,7744,7743,7736,-7735,7738,7736,7743,-7746,7742,7744,7734,-7733,7746,7731,7587,-7589,7748,7747,7743,-7745,7749,7748,7744,-7743,7746,7749,7742,-7732,7747,7748,7750,-7752,7748,7749,7752,-7751,7752,7749,7746,-7754,7753,7746,7588,-7590,7755,7753,7589,-7755,7753,7755,7756,-7753,7756,7757,7750,-7753,7590,7758,7754,-7590,7758,7759,7760,-7755,7553,7760,7759,-7562,7758,7761,7762,-7760,7761,7758,7590,-7592,7759,7762,7551,-7562,7566,7764,7763,-7551,7765,7764,7566,-7552,7766,7761,7591,-7593,7767,7762,7761,-7767,7765,7551,7762,-7768,7768,7766,7592,-7594,7766,7768,7769,-7768,7767,7769,7549,-7766,7565,7771,7770,-7549,7772,7771,7565,-7550,7773,7772,7549,-7770,7773,7769,7768,-7775,7593,7594,7774,-7769,7594,7595,7775,-7775,7774,7775,7776,-7774,7773,7776,7547,-7773,7564,7778,7777,-7547,7779,7778,7564,-7548,7777,7778,7781,-7781,7782,7781,7778,-7780,7597,7783,7784,-7597,7775,7595,7596,-7785,7776,7775,7784,-7786,7785,7784,7783,-7787,7779,7785,7786,-7783,7547,7776,7785,-7780,7780,7781,7788,-7788,7789,7788,7781,-7783,7783,7597,7598,-7791,7790,7791,7786,-7784,7791,7789,7782,-7787,7790,7598,5904,-5918,7791,7790,5917,-5919,5918,5902,7789,-7792,7792,7755,7754,-7761,7755,7792,7793,-7757,7569,7795,7794,-7555,7796,7795,7569,-7556,7760,7553,7796,-7793,7792,7796,7555,-7794,7757,7756,7793,-7798,7570,7799, +7798,-7563,7800,7799,7570,-7564,7793,7555,7800,-7798,7757,7797,7801,-7803,7751,7750,7757,-7803,7797,7800,7563,-7802,7802,7801,7803,-7805,7747,7751,7805,-7807,7745,7743,7747,-7807,7805,7751,7802,-7805,7803,7801,7563,-7558,7804,7803,7807,-7809,7806,7805,7809,-7811,7738,7745,7811,-7741,7807,7803,7557,-7560,7809,7805,7804,-7809,7806,7810,7811,-7746,7813,7812,7333,-7335,7814,7813,7334,-7336,7815,7814,7335,-7337,7816,7815,7336,-7338,7817,7816,7337,-7344,7818,7817,7343,-7339,7819,7818,7338,-7340,7820,7819,7339,-7341,7821,7820,7340,-7342,7822,7821,7341,-7357,7823,7822,7356,-7343,7355,7824,7823,-7343,7354,7825,7824,-7356,7353,7826,7825,-7355,7352,7827,7826,-7354,7351,7828,7827,-7353,7350,7829,7828,-7352,7349,7830,7829,-7351,7348,7831,7830,-7350,7345,7832,7831,-7349,7345,7344,7833,-7833,7346,7834,7833,-7345,7332,7835,7834,-7347,7332,7347,7836,-7836,7812,7836,7347,-7334,7838,7837,7886,-7886,7839,7838,7885,-7885,7840,7839,7884,-7884,7841,7840,7883,-7883,7842,7841,7882,-7882,7843,7842,7881,-7881,7844,7843,7880,-7880,7845,7844,7879,-7879,7846,7845,7878,-7878,7847,7846,7877,-7877,7848,7847,7876,-7876,7874,7849,7848,-7876,7862,7861,7860,-7864,7837,7861,7862,-7887,7864,7863,7860,-7860,7858,7865,7864,-7860,7857,7866,7865,-7859,7856,7867,7866,-7858,7855,7868,7867,-7857,7854,7869,7868,-7856,7853,7870,7869,-7855,7852,7871,7870,-7854,7851,7872,7871,-7853,7850,7873,7872,-7852,7874,7873,7850,-7850,7496,7888,7887,-7546,7494,7889,7888,-7497,7543,7890,7889,-7495,7541,7891,7890,-7544,7892,7891,7541,-7525,7522,7893,7892,-7525,7520,7894,7893,-7523,7539,7895,7894,-7521,7518,7896,7895,-7540,7537,7897,7896,-7519,7516,7898,7897,-7538,7535,7899,7898,-7517,7514,7900,7899,-7536,7512,7901,7900,-7515,7532,7902,7901,-7513,7510,7903,7902,-7533,7531,7904,7903,-7511,7905,7904,7531,-7509,7906,7905,7508,-7530,7907,7906,7529,-7507,7908,7907,7506,-7505,7909,7908,7504,-7504,7910,7909,7503,-7501,7911,7910,7500,-7499,7887,7911,7498,-7546,7866,7867,7913,-7913,7867,7868,7914,-7914,7868,7869,7915,-7915,7869,7870,7916,-7916,7870,7871,7917,-7917,7871,7872,7918,-7918,7872, +7873,7919,-7919,7873,7874,7920,-7920,7874,7875,7921,-7921,7875,7876,7922,-7922,7876,7877,7923,-7923,7877,7878,7924,-7924,7878,7879,7925,-7925,7879,7880,7926,-7926,7880,7881,7927,-7927,7881,7882,7928,-7928,7882,7883,7929,-7929,7883,7884,7930,-7930,7884,7885,7931,-7931,7885,7886,7932,-7932,7886,7862,7933,-7933,7862,7863,7934,-7934,7863,7864,7935,-7935,7864,7865,7936,-7936,7912,7936,7865,-7867,5919,5895,7492,-7938,7495,7938,7937,-7493,7497,7939,7938,-7496,7544,7940,7939,-7498,7499,7941,7940,-7545,7501,7942,7941,-7500,7501,7502,7943,-7943,7502,7505,7944,-7944,7505,7507,7945,-7945,7507,7528,7946,-7946,7947,7946,7528,-7510,7509,7530,7948,-7948,7948,7530,7511,-7950,7741,7949,7511,-7534,8047,8048,7951,-7953,7951,8048,8049,-7956,7955,8049,8050,-7958,7957,8050,8051,-8040,7959,8052,8053,-8045,7961,8054,8055,-7964,7963,8055,8056,-8035,7965,8057,8058,-7968,7967,8058,8059,-7970,7969,8059,8060,-7972,7971,8060,8061,-7974,7973,8061,8062,-7976,7975,8062,8063,-7978,7977,8063,8064,-7980,7979,8064,8065,-7982,7953,7950,7983,-7983,7984,7983,7950,-7955,7985,7984,7954,-7957,8037,8038,7985,-7957,8042,8043,7986,-7959,7988,7987,7960,-7963,8032,8033,7988,-7963,7990,7989,7964,-7967,7991,7990,7966,-7969,7992,7991,7968,-7971,7993,7992,7970,-7973,7994,7993,7972,-7975,7995,7994,7974,-7977,7996,7995,7976,-7979,7997,7996,7978,-7981,8015,8016,7998,-8000,8016,8017,8000,-7999,8000,8017,8018,-8002,8001,8018,8040,-8042,8002,8019,8045,-8047,8003,8020,8021,-8005,8004,8021,8035,-8037,8005,8022,8023,-8007,8006,8023,8024,-8008,8007,8024,8025,-8009,8008,8025,8026,-8010,8009,8026,8027,-8011,8010,8027,8028,-8012,8011,8028,8029,-8013,8013,8012,8029,-8031,8030,8066,8067,-8014,8068,8069,8016,-8016,8069,8070,8017,-8017,8018,8017,8070,-8072,8071,8072,8040,-8019,8073,8074,8045,-8020,8021,8020,8075,-8077,8076,8077,8035,-8022,8023,8022,8078,-8080,8024,8023,8079,-8081,8025,8024,8080,-8082,8026,8025,8081,-8083,8027,8026,8082,-8084,8028,8027,8083,-8085,8029,8028,8084,-8086,8030,8029,8085,-8087,8086,8087,8066,-8031,7989,8033,8032,-7965,8034,8056,8057,-7966,8022,8035,8077,-8079, +8036,8035,8022,-8006,7986,8038,8037,-7959,8039,8051,8052,-7960,8019,8040,8072,-8074,8041,8040,8019,-8003,7987,8043,8042,-7961,8044,8053,8054,-7962,8020,8045,8074,-8076,8046,8045,8020,-8004,7982,7983,8048,-8048,8049,8048,7983,-7985,8050,8049,7984,-7986,8051,8050,7985,-8039,8052,8051,8038,-7987,8053,8052,7986,-8044,8054,8053,8043,-7988,8055,8054,7987,-7989,8056,8055,7988,-8034,8057,8056,8033,-7990,8058,8057,7989,-7991,8059,8058,7990,-7992,8060,8059,7991,-7993,8061,8060,7992,-7994,8062,8061,7993,-7995,8063,8062,7994,-7996,8064,8063,7995,-7997,8065,8064,7996,-7998,8066,8087,8088,-8032,7952,7951,8069,-8069,7951,7955,8070,-8070,8071,8070,7955,-7958,8039,8072,8071,-7958,8073,8072,8039,-7960,8044,8074,8073,-7960,8075,8074,8044,-7962,8076,8075,7961,-7964,8034,8077,8076,-7964,8078,8077,8034,-7966,8079,8078,7965,-7968,8080,8079,7967,-7970,8081,8080,7969,-7972,8082,8081,7971,-7974,8083,8082,7973,-7976,8084,8083,7975,-7978,8085,8084,7977,-7980,8086,8085,7979,-7982,7981,8065,8087,-8087,8088,8087,8065,-7998,7980,8031,8088,-7998,8089,8014,8031,-7981,7980,7978,8090,-8090,8091,8090,7978,-7977,8091,7976,7974,-8093,7972,8093,8092,-7975,8094,8093,7972,-7971,7968,8095,8094,-7971,7966,8096,8095,-7969,8098,7964,8032,-8098,7964,8098,8096,-7967,8097,8032,7962,-8100,7960,8042,8099,-7963,7958,8037,8099,-8043,8037,7956,8100,-8100,8101,8100,7956,-7955,8102,8101,7954,-7951,8103,8102,7950,-7954,8100,8104,8097,-8100,8105,8098,8097,-8105,8106,8096,8098,-8106,8095,8096,8106,-8108,8094,8095,8107,-8109,8108,8109,8093,-8095,8110,8092,8093,-8110,8111,8104,8100,-8102,8102,8112,8111,-8102,8112,8105,8104,-8112,8112,8102,8103,-8114,8113,8106,8105,-8113,8114,8107,8106,-8114,8114,8109,8108,-8108,8115,8114,8113,-8104,8109,8114,8115,-8111,7953,8116,8115,-8104,8116,8117,8110,-8116,8110,8117,8091,-8093,8118,8090,8091,-8118,8116,7953,7982,-8120,8117,8116,8119,-8119,8119,7982,8047,-8121,8120,8121,8118,-8120,8125,8122,8123,-8125,8122,8126,8127,-8124,8129,8125,8124,-8129,8129,8128,8089,-8122,8124,8123,8127,-8129,8122,8125,8129,-8127,8126,8129,8121,-8121,8120,8047,7952, +-8127,8126,7952,8068,-8128,8128,8127,8130,-8132,8127,8068,8015,-8131,8089,8128,8131,-8015,8089,8090,8118,-8122,7558,8144,8145,-7573,7809,8137,8138,-7811,8136,8137,7809,-7809,7999,8132,8130,-8016,8138,8139,7811,-7811,7741,7740,8133,-7950,8134,7948,7949,-8134,8141,8142,8134,-8134,7948,8134,8135,-7948,8142,8143,8135,-8135,8131,8137,8136,-8015,8138,8137,8131,-8131,8132,8139,8138,-8131,8139,8140,7740,-7812,7999,8142,8141,-8133,7998,8143,8142,-8000,7740,8140,8141,-8134,8132,8141,8140,-8140,8145,8144,8013,-8068,8147,7807,7559,-8147,8145,8146,7559,-7573,7807,8147,8136,-7809,8014,8136,8147,-8149,8146,8149,8148,-8148,8145,8067,8149,-8147,8066,8148,8149,-8068,8148,8066,8031,-8015,8144,8150,8012,-8014,7558,8151,8150,-8145,8150,8152,8011,-8013,8151,8153,8152,-8151,8010,8011,8152,-8155,8153,8155,8154,-8153,8009,8010,8154,-8157,8156,8154,8155,-8158,8008,8009,8156,-8159,8159,8158,8156,-8158,8161,8160,8158,-8160,8007,8008,8158,-8161,8006,8007,8160,-8163,8163,8162,8160,-8162,8005,8006,8162,-8165,8162,8163,8165,-8165,8167,8166,8164,-8166,8005,8164,8166,-8037,8167,8168,8169,-8167,8004,8036,8166,-8170,8003,8004,8169,-8171,8172,8171,8000,-8002,8173,8172,8001,-8042,8041,8002,8174,-8174,8002,8046,8175,-8175,8046,8003,8170,-8176,8143,7998,8000,-8172,8171,8176,8135,-8144,8176,8171,8172,-8178,8177,8172,8173,-8179,8178,8173,8174,-8180,8179,8174,8175,-8181,8180,8175,8170,-8182,8181,8170,8169,-8169,7947,8135,8176,-7947,8176,8182,7945,-7947,7944,7945,8182,-8184,7943,7944,8183,-8185,7942,7943,8184,-8186,7941,7942,8185,-8187,7940,7941,8186,-8188,7939,7940,8187,-8189,7938,7939,8188,-8190,7937,7938,8189,-8191,5919,7937,8190,-5921,5922,8200,8191,-5922,8200,8201,8192,-8192,8201,8202,8193,-8193,8202,8203,8194,-8194,8203,8204,8195,-8195,8204,8205,8196,-8196,8205,8206,8197,-8197,8206,8207,8198,-8198,8207,8208,8199,-8199,5920,8190,8200,-5923,8190,8189,8201,-8201,8189,8188,8202,-8202,8188,8187,8203,-8203,8187,8186,8204,-8204,8186,8185,8205,-8205,8185,8184,8206,-8206,8184,8183,8207,-8207,8183,8182,8208,-8208,8177,8208,8182,-8177,8208,8177,8178,-8200,8179,8209, +8199,-8179,8209,8210,8198,-8200,8197,8198,8210,-8212,8197,8211,8212,-8197,8196,8212,8213,-8196,8214,8194,8195,-8214,8194,8214,8215,-8194,8193,8215,8216,-8193,8192,8216,8217,-8192,8191,8217,5923,-5922,8159,8157,8218,-8220,8219,8218,8226,-8228,8221,8220,8224,-8226,8223,8222,8305,-8307,8225,8224,8222,-8224,8227,8226,8220,-8222,8228,8223,8306,-8308,8229,8225,8223,-8229,8225,8229,8230,-8222,8231,8219,8227,-8233,8232,8227,8221,-8231,8159,8219,8231,-8162,8307,8308,8233,-8229,8228,8233,8234,-8230,8229,8234,8235,-8231,8230,8235,8236,-8233,8231,8232,8236,-8238,8161,8231,8237,-8164,8308,8309,8238,-8234,8239,8234,8233,-8239,8234,8239,8240,-8236,8241,8236,8235,-8241,8241,8242,8237,-8237,8242,8165,8163,-8238,8309,8310,8243,-8239,8238,8243,8244,-8240,8239,8244,8245,-8241,8240,8245,8246,-8242,8242,8241,8246,-8248,8165,8242,8247,-8168,8310,8311,8248,-8244,8243,8248,8249,-8245,8244,8249,8250,-8246,8245,8250,8251,-8247,8247,8246,8251,-8253,8167,8247,8252,-8169,8311,8312,8253,-8249,8254,8249,8248,-8254,8249,8254,8255,-8251,8250,8255,8256,-8252,8251,8256,8257,-8253,8252,8257,8181,-8169,8312,8313,8258,-8254,8253,8258,8259,-8255,8254,8259,8260,-8256,8255,8260,8261,-8257,8256,8261,8262,-8258,8257,8262,8180,-8182,8209,8179,8180,-8263,8261,8263,8209,-8263,8313,8314,8264,-8259,8258,8264,8265,-8260,8259,8265,8266,-8261,8260,8266,8263,-8262,8267,8268,8211,-8211,8211,8268,8269,-8213,8265,8268,8267,-8267,8269,8268,8265,-8265,8263,8266,8267,-8210,8209,8267,-8211,8271,8270,8283,-8285,8272,8271,8284,-8286,8285,8286,8273,-8273,8286,8287,8274,-8274,8287,8288,8275,-8275,8288,8289,8276,-8276,8289,8290,8277,-8277,8290,8291,8278,-8278,8291,8292,8279,-8279,8157,8155,8280,-8219,8281,8280,8155,-8154,8153,8151,8282,-8282,7558,7556,8282,-8152,8284,8283,5924,-5926,8285,8284,5925,-5927,5926,5927,8286,-8286,5927,5928,8287,-8287,5928,5929,8288,-8288,5929,5930,8289,-8289,5930,5931,8290,-8290,5931,5932,8291,-8291,5932,5933,8292,-8292,8294,8293,8317,-8319,8295,8294,8318,-8320,8319,8320,8296,-8296,8320,8321,8297,-8297,8321,8322,8298,-8298,8322,8323,8299,-8299,8323,8324, +8300,-8300,8324,8325,8301,-8301,8325,8326,8302,-8302,5934,5923,8217,-8304,8303,8292,5933,-5935,8303,8217,8216,-8305,8304,8279,8292,-8304,8306,8305,8293,-8295,8307,8306,8294,-8296,8295,8296,8308,-8308,8296,8297,8309,-8309,8297,8298,8310,-8310,8298,8299,8311,-8311,8299,8300,8312,-8312,8300,8301,8313,-8313,8301,8302,8314,-8314,8269,8264,8314,-8316,8212,8269,8315,-8214,8315,8314,8302,-8317,8316,8214,8213,-8316,8318,8317,8270,-8272,8319,8318,8271,-8273,8272,8273,8320,-8320,8273,8274,8321,-8321,8274,8275,8322,-8322,8275,8276,8323,-8323,8276,8277,8324,-8324,8277,8278,8325,-8325,8278,8279,8326,-8326,8304,8216,8215,-8328,8327,8215,8214,-8317,8316,8302,8326,-8328,8279,8304,8327,-8327,5935,5924,8283,-8329,8328,8283,8270,-8330,8329,8270,8317,-8331,8330,8317,8293,-8332,8305,8332,8331,-8294,8332,8305,8222,-8334,8224,8334,8333,-8223,8334,8224,8220,-8336,8226,8336,8335,-8221,8218,8280,8336,-8227,8480,8481,8337,-8339,8479,8480,8338,-8340,8478,8479,8339,-8341,8477,8478,8340,-8342,8476,8477,8341,-8343,8475,8476,8342,-8344,8474,8475,8343,-8345,8473,8474,8344,-8346,8472,8473,8345,-8347,5946,8472,8346,-5937,8481,8482,8347,-8338,8482,8483,8348,-8348,8483,8484,8349,-8349,8484,8485,8350,-8350,8485,8486,8351,-8351,8486,8487,8352,-8352,8487,8488,8353,-8353,8488,8489,8354,-8354,8489,8490,8355,-8355,8490,8491,8356,-8356,8491,8492,8357,-8357,8492,8493,8358,-8358,8493,8494,8359,-8359,8494,8495,8360,-8360,8495,8496,8361,-8361,8496,8497,8362,-8362,8497,8498,8363,-8363,8498,5947,5937,-8364,5940,8391,8364,-5939,8391,8392,8365,-8365,8392,8393,8366,-8366,8393,8394,8367,-8367,8394,8395,8368,-8368,8395,8396,8369,-8369,8396,8397,8370,-8370,8397,8398,8371,-8371,8398,8399,8372,-8372,8399,8400,8373,-8373,8400,8401,8374,-8374,8401,8402,8375,-8375,8402,8403,8376,-8376,8403,8404,8377,-8377,8404,8405,8378,-8378,8405,8406,8379,-8379,8406,8407,8380,-8380,8407,8408,8381,-8381,8408,8409,8382,-8382,8409,8410,8383,-8383,8410,8411,8384,-8384,8411,8412,8385,-8385,8412,8413,8386,-8386,8413,8414,8387,-8387,8414,8415,8388,-8388,8415,8416,8389,-8389,8416,8417,8390,-8390,8417, +5941,5939,-8391,5935,8328,8391,-5941,8328,8329,8392,-8392,8329,8330,8393,-8393,8330,8331,8394,-8394,8331,8332,8395,-8395,8332,8333,8396,-8396,8333,8334,8397,-8397,8334,8335,8398,-8398,8335,8336,8399,-8399,8336,8280,8400,-8400,8280,8281,8401,-8401,8281,8282,8402,-8402,8282,7556,8403,-8403,7556,7562,8404,-8404,7562,7798,8405,-8405,7798,7554,8406,-8406,7554,7794,8407,-8407,7794,7552,8408,-8408,7552,7560,8409,-8409,7560,7550,8410,-8410,7550,7763,8411,-8411,7763,7548,8412,-8412,7548,7770,8413,-8413,7770,7546,8414,-8414,7546,7777,8415,-8415,7777,7780,8416,-8416,7780,7787,8417,-8417,7787,5901,5941,-8418,5948,8499,8418,-5943,8499,8500,8419,-8419,8500,8501,8420,-8420,8501,8502,8421,-8421,8502,8503,8422,-8422,8503,8504,8423,-8423,8504,8505,8424,-8424,8505,8506,8425,-8425,8506,8507,8426,-8426,8507,8508,8427,-8427,8508,8509,8428,-8428,8509,8510,8429,-8429,8510,8511,8430,-8430,8511,8512,8431,-8431,8512,8513,8432,-8432,8513,8514,8433,-8433,8514,8515,8434,-8434,8515,8516,8435,-8435,8516,8517,8436,-8436,8517,8518,8437,-8437,8518,8519,8438,-8438,8519,8520,8439,-8439,8520,8521,8440,-8440,8521,8522,8441,-8441,8522,8523,8442,-8442,8523,8524,8443,-8443,8524,8525,8444,-8444,8525,5949,5943,-8445,5942,8418,8445,-5945,8418,8419,8446,-8446,8419,8420,8447,-8447,8420,8421,8448,-8448,8421,8422,8449,-8449,8422,8423,8450,-8450,8423,8424,8451,-8451,8424,8425,8452,-8452,8425,8426,8453,-8453,8426,8427,8454,-8454,8427,8428,8455,-8455,8428,8429,8456,-8456,8429,8430,8457,-8457,8430,8431,8458,-8458,8431,8432,8459,-8459,8432,8433,8460,-8460,8433,8434,8461,-8461,8434,8435,8462,-8462,8435,8436,8463,-8463,8436,8437,8464,-8464,8437,8438,8465,-8465,8438,8439,8466,-8466,8439,8440,8467,-8467,8440,8441,8468,-8468,8441,8442,8469,-8469,8442,8443,8470,-8470,8443,8444,8471,-8471,8444,5943,5945,-8472,5944,8445,8472,-5947,8445,8446,8473,-8473,8446,8447,8474,-8474,8447,8448,8475,-8475,8448,8449,8476,-8476,8449,8450,8477,-8477,8450,8451,8478,-8478,8451,8452,8479,-8479,8452,8453,8480,-8480,8453,8454,8481,-8481,8454,8455,8482,-8482,8455,8456,8483,-8483,8456,8457,8484,-8484, +8457,8458,8485,-8485,8458,8459,8486,-8486,8459,8460,8487,-8487,8460,8461,8488,-8488,8461,8462,8489,-8489,8462,8463,8490,-8490,8463,8464,8491,-8491,8464,8465,8492,-8492,8465,8466,8493,-8493,8466,8467,8494,-8494,8467,8468,8495,-8495,8468,8469,8496,-8496,8469,8470,8497,-8497,8470,8471,8498,-8498,8471,5945,5947,-8499,5938,8364,8499,-5949,8364,8365,8500,-8500,8365,8366,8501,-8501,8366,8367,8502,-8502,8367,8368,8503,-8503,8368,8369,8504,-8504,8369,8370,8505,-8505,8370,8371,8506,-8506,8371,8372,8507,-8507,8372,8373,8508,-8508,8373,8374,8509,-8509,8374,8375,8510,-8510,8375,8376,8511,-8511,8376,8377,8512,-8512,8377,8378,8513,-8513,8378,8379,8514,-8514,8379,8380,8515,-8515,8380,8381,8516,-8516,8381,8382,8517,-8517,8382,8383,8518,-8518,8383,8384,8519,-8519,8384,8385,8520,-8520,8385,8386,8521,-8521,8386,8387,8522,-8522,8387,8388,8523,-8523,8388,8389,8524,-8524,8389,8390,8525,-8525,8390,5939,5949,-8526,7611,7609,8526,-8528,7613,7611,8527,-8529,7615,7613,8528,-8530,7660,7615,8529,-8531,7681,7660,8530,-8532,7609,7607,8532,-8527,7607,7605,8533,-8533,7605,7603,8534,-8534,7603,7599,8535,-8535,7599,7602,8536,-8536,7602,7622,8537,-8537,7622,7619,8538,-8538,7619,7623,8539,-8539,7623,7617,8540,-8540,7681,8531,8540,-7618,8527,8541,8542,-8529,8543,8529,8528,-8543,8544,8530,8529,-8544,8538,8543,8542,-8538,8543,8538,8539,-8545,8537,8542,8541,-8537,8541,8527,8526,-8546,8536,8541,8545,-8536,8533,8534,8535,-8546,8532,8533,8545,-8527,8531,8544,8539,-8541,8544,8531,-8531,7359,5881,7185,-8566,7361,7364,8571,-8573,7373,7366,8569,-8571,7366,7368,8568,-8570,7368,7370,8567,-8569,7370,7372,8566,-8568,7372,7359,8565,-8567,7364,7373,8570,-8572,7376,7361,8572,-8574,7378,7376,8573,-8575,7380,7378,8574,-8576,7382,7380,8575,-8577,7383,7382,8576,-8578,7385,7383,8577,-8579,7388,7385,8578,-8580,7390,7388,8579,-8581,7392,7390,8580,-8582,7394,7392,8581,-8583,7396,7394,8582,-8584,5884,7396,8583,-7206,8565,7185,7206,-8585,8566,8565,8584,-8586,8567,8566,8585,-8587,8568,8567,8586,-8588,8569,8568,8587,-8589,8570,8569,8588,-8590,8571,8570,8589,-8591,8572,8571,8590,-8592, +8573,8572,8591,-8593,8574,8573,8592,-8594,8575,8574,8593,-8595,8576,8575,8594,-8596,8577,8576,8595,-8597,8578,8577,8596,-8598,8579,8578,8597,-8599,8580,8579,8598,-8600,8581,8580,8599,-8601,8582,8581,8600,-8602,8583,8582,8601,-8603,7205,8583,8602,-7227,8584,7206,7164,-8547,8585,8584,8546,-8554,8586,8585,8553,-8553,8587,8586,8552,-8552,8588,8587,8551,-8550,8589,8588,8549,-8551,8590,8589,8550,-8548,8591,8590,8547,-8549,8592,8591,8548,-8555,8593,8592,8554,-8556,8594,8593,8555,-8557,8595,8594,8556,-8558,8596,8595,8557,-8559,8597,8596,8558,-8560,8598,8597,8559,-8561,8599,8598,8560,-8562,8600,8599,8561,-8563,8601,8600,8562,-8564,8602,8601,8563,-8565,7226,8602,8564,-7166,8546,7164,7227,-8604,8548,8547,8604,-8606,8550,8549,8606,-8608,8549,8551,8608,-8607,8551,8552,8609,-8609,8552,8553,8610,-8610,8553,8546,8603,-8611,8547,8550,8607,-8605,8554,8548,8605,-8612,8555,8554,8611,-8613,8556,8555,8612,-8614,8557,8556,8613,-8615,8558,8557,8614,-8616,8559,8558,8615,-8617,8560,8559,8616,-8618,8561,8560,8617,-8619,8562,8561,8618,-8620,8563,8562,8619,-8621,8564,8563,8620,-8622,7165,8564,8621,-7248,8603,7227,7311,-8680,8605,8604,8685,-8687,8607,8606,8683,-8685,8606,8608,8682,-8684,8608,8609,8681,-8683,8609,8610,8680,-8682,8610,8603,8679,-8681,8604,8607,8684,-8686,8611,8605,8686,-8688,8612,8611,8687,-8689,8613,8612,8688,-8690,8614,8613,8689,-8691,8615,8614,8690,-8692,8616,8615,8691,-8693,8617,8616,8692,-8694,8618,8617,8693,-8695,8619,8618,8694,-8696,8620,8619,8695,-8697,8621,8620,8696,-8698,7247,8621,8697,-7332,8622,7248,7290,-8661,8624,8623,8666,-8668,8626,8625,8664,-8666,8625,8627,8663,-8665,8627,8628,8662,-8664,8628,8629,8661,-8663,8629,8622,8660,-8662,8623,8626,8665,-8667,8630,8624,8667,-8669,8631,8630,8668,-8670,8632,8631,8669,-8671,8633,8632,8670,-8672,8634,8633,8671,-8673,8635,8634,8672,-8674,8636,8635,8673,-8675,8637,8636,8674,-8676,8638,8637,8675,-8677,8639,8638,8676,-8678,8640,8639,8677,-8679,7268,8640,8678,-7311,8660,7290,7269,-8642,8661,8660,8641,-8649,8662,8661,8648,-8648,8663,8662,8647,-8647,8664,8663,8646,-8645,8665,8664,8644, +-8646,8666,8665,8645,-8643,8667,8666,8642,-8644,8668,8667,8643,-8650,8669,8668,8649,-8651,8670,8669,8650,-8652,8671,8670,8651,-8653,8672,8671,8652,-8654,8673,8672,8653,-8655,8674,8673,8654,-8656,8675,8674,8655,-8657,8676,8675,8656,-8658,8677,8676,8657,-8659,8678,8677,8658,-8660,7310,8678,8659,-7290,8679,7311,7248,-8623,8680,8679,8622,-8630,8681,8680,8629,-8629,8682,8681,8628,-8628,8683,8682,8627,-8626,8684,8683,8625,-8627,8685,8684,8626,-8624,8686,8685,8623,-8625,8687,8686,8624,-8631,8688,8687,8630,-8632,8689,8688,8631,-8633,8690,8689,8632,-8634,8691,8690,8633,-8635,8692,8691,8634,-8636,8693,8692,8635,-8637,8694,8693,8636,-8638,8695,8694,8637,-8639,8696,8695,8638,-8640,8697,8696,8639,-8641,7331,8697,8640,-7269,5950,5965,8699,-8699,5951,5952,8701,-8701,5952,5953,8702,-8702,5953,5954,8703,-8703,5954,5955,8704,-8704,5955,5961,8705,-8705,5956,5957,8707,-8707,5957,5958,8708,-8708,5958,5959,8709,-8709,5959,5974,8710,-8710,5961,5956,8706,-8706,5962,5964,8712,-8712,5963,5962,8711,-8714,5964,5950,8698,-8713,5965,5951,8700,-8700,5966,5963,8713,-8715,5967,5966,8714,-8716,5968,5967,8715,-8717,5969,5968,8716,-8718,5970,5969,8717,-8719,5971,5970,8718,-8720,5972,5971,8719,-8721,5973,5972,8720,-8722,5960,5973,8721,-8723,5974,5960,8722,-8711,7347,7332,8723,-8725,7334,7333,8725,-8727,7335,7334,8726,-8728,7336,7335,8727,-8729,7337,7336,8728,-8730,7343,7337,8729,-8731,7339,7338,8731,-8733,7340,7339,8732,-8734,7341,7340,8733,-8735,7356,7341,8734,-8736,7338,7343,8730,-8732,7346,7344,8736,-8738,7344,7345,8738,-8737,7332,7346,8737,-8724,7333,7347,8724,-8726,7345,7348,8739,-8739,7348,7349,8740,-8740,7349,7350,8741,-8741,7350,7351,8742,-8742,7351,7352,8743,-8743,7352,7353,8744,-8744,7353,7354,8745,-8745,7354,7355,8746,-8746,7355,7342,8747,-8747,7342,7356,8735,-8748,8698,8699,8749,-8749,8700,8701,8751,-8751,8701,8702,8752,-8752,8702,8703,8753,-8753,8703,8704,8754,-8754,8704,8705,8755,-8755,8706,8707,8757,-8757,8707,8708,8758,-8758,8708,8709,8759,-8759,8709,8710,8760,-8760,8705,8706,8756,-8756,8711,8712,8762,-8762,8713,8711,8761,-8764,8712,8698, +8748,-8763,8699,8700,8750,-8750,8714,8713,8763,-8765,8715,8714,8764,-8766,8716,8715,8765,-8767,8717,8716,8766,-8768,8718,8717,8767,-8769,8719,8718,8768,-8770,8720,8719,8769,-8771,8721,8720,8770,-8772,8722,8721,8771,-8773,8710,8722,8772,-8761,8724,8723,8773,-8775,8726,8725,8775,-8777,8727,8726,8776,-8778,8728,8727,8777,-8779,8729,8728,8778,-8780,8730,8729,8779,-8781,8732,8731,8781,-8783,8733,8732,8782,-8784,8734,8733,8783,-8785,8735,8734,8784,-8786,8731,8730,8780,-8782,8737,8736,8786,-8788,8736,8738,8788,-8787,8723,8737,8787,-8774,8725,8724,8774,-8776,8738,8739,8789,-8789,8739,8740,8790,-8790,8740,8741,8791,-8791,8741,8742,8792,-8792,8742,8743,8793,-8793,8743,8744,8794,-8794,8744,8745,8795,-8795,8745,8746,8796,-8796,8746,8747,8797,-8797,8747,8735,8785,-8798,8748,8749,-8799,8750,8751,-8799,8751,8752,-8799,8752,8753,-8799,8753,8754,-8799,8754,8755,-8799,8756,8757,-8799,8757,8758,-8799,8758,8759,-8799,8759,8760,-8799,8755,8756,-8799,8761,8762,-8799,8763,8761,-8799,8762,8748,-8799,8749,8750,-8799,8764,8763,-8799,8765,8764,-8799,8766,8765,-8799,8767,8766,-8799,8768,8767,-8799,8769,8768,-8799,8770,8769,-8799,8771,8770,-8799,8772,8771,-8799,8760,8772,-8799,8774,8773,-8800,8776,8775,-8800,8777,8776,-8800,8778,8777,-8800,8779,8778,-8800,8780,8779,-8800,8782,8781,-8800,8783,8782,-8800,8784,8783,-8800,8785,8784,-8800,8781,8780,-8800,8787,8786,-8800,8786,8788,-8800,8773,8787,-8800,8775,8774,-8800,8788,8789,-8800,8789,8790,-8800,8790,8791,-8800,8791,8792,-8800,8792,8793,-8800,8793,8794,-8800,8794,8795,-8800,8795,8796,-8800,8796,8797,-8800,8797,8785,-8800 + } + Edges: *17276 { + a: 0,1,2,3,4,5,6,9,10,11,12,15,17,18,19,20,23,24,25,27,28,29,33,34,35,38,39,41,42,43,45,46,49,50,51,52,55,57,58,59,60,63,64,65,67,68,71,73,74,75,78,79,80,81,82,83,84,85,86,89,90,91,94,95,96,97,98,99,100,101,102,105,106,107,109,110,113,114,115,116,119,120,121,122,124,125,126,129,130,131,135,137,138,139,143,144,147,148,151,153,154,155,158,161,162,165,166,169,170,171,175,177,178,179,182,184,187,188,191,193,194,195,198,201,202,203,205,206,209,210,211,212,215,216,217,218,219,221,222,224,225,226,227,229,230,232,233,234,236,237,240,241,242,243,245,247,248,249,250,252,254,255,256,258,259,260,263,264,265,269,271,272,273,276,278,281,282,285,287,288,289,292,295,296,299,300,303,304,305,309,311,312,313,316,318,321,322,325,327,328,329,332,335,336,339,340,343,345,348,350,352,353,354,356,357,359,360,361,364,367,368,371,372,375,376,377,381,383,384,385,388,390,391,392,394,395,396,399,400,401,405,407,408,409,412,414,417,418,421,423,424,425,428,431,432,435,436,439,440,441,445,447,448,449,452,454,457,458,461,463,464,465,468,471,472,475,476,479,481,486,488,489,490,492,493,495,496,497,500,503,504,507,508,511,512,513,517,519,520,521,524,526,527,528,530,531,532,535,536,537,541,543,544,545,548,550,553,554,557,559,560,561,564,567,568,571,572,575,576,577,581,583,584,585,588,590,593,594,597,599,600,601,604,607,608,611,612,615,617,622,624,625,626,628,629,631,632,633,636,639,640,643,644,647,648,649,653,655,656,657,660,662,663,664,666,667,668,671,672,673,677,679,680,681,684,686,689,690,693,695,696,697,700,703,704,707,708,711,712,713,717,719,720,721,724,726,729,730,733,735,736,737,740,743,744,747,748,751,753,758,760,761,762,764,765,767,768,769,772,775,776,779,780,783,784,785,789,791,792,793,796,798,799,800,802,803,804,807,808,809,813,815,816,817,820,822,825,826,829,831,832,833,836,839,840,843,844,847,848,849,853,855,856,857,860,862,865,866,869,871,872,873,876,879,880,883,884,887,889,894,896,897,898,900,901,903,904,905,908,911,912,915,916,919,920,921,925,927,928,929,932,934,935,936,938,939,940,943,944,945,949,951,952,953,956,958,961, +962,965,967,968,969,972,975,976,979,980,983,984,985,989,991,992,993,996,998,1001,1002,1005,1007,1008,1009,1012,1015,1016,1019,1020,1023,1025,1031,1032,1033,1036,1037,1039,1041,1045,1048,1049,1052,1055,1056,1057,1060,1065,1068,1071,1072,1075,1080,1085,1086,1088,1089,1090,1094,1096,1098,1102,1104,1110,1112,1118,1120,1126,1128,1134,1136,1142,1144,1149,1157,1158,1159,1161,1162,1165,1167,1171,1172,1174,1177,1181,1183,1186,1190,1191,1208,1209,1210,1211,1213,1214,1215,1217,1218,1219,1221,1222,1223,1225,1226,1227,1229,1230,1231,1233,1234,1235,1237,1238,1239,1241,1242,1243,1245,1246,1247,1249,1250,1251,1253,1254,1255,1257,1258,1259,1260,1261,1262,1264,1265,1268,1269,1272,1273,1276,1277,1280,1281,1284,1285,1288,1289,1292,1293,1296,1297,1300,1301,1304,1305,1308,1309,1312,1313,1314,1315,1316,1318,1319,1320,1322,1323,1324,1326,1327,1328,1330,1331,1332,1334,1335,1336,1338,1339,1340,1342,1343,1344,1346,1347,1348,1350,1351,1352,1354,1355,1356,1357,1358,1361,1362,1363,1366,1367,1370,1371,1374,1375,1378,1379,1382,1383,1386,1387,1390,1391,1394,1395,1398,1399,1402,1403,1404,1407,1408,1409,1410,1411,1412,1413,1414,1416,1417,1418,1420,1421,1422,1424,1425,1426,1428,1429,1430,1432,1433,1434,1436,1437,1438,1440,1441,1442,1444,1445,1446,1448,1449,1450,1452,1453,1454,1456,1457,1458,1461,1462,1463,1466,1467,1470,1471,1474,1475,1478,1479,1482,1483,1486,1487,1490,1491,1494,1495,1498,1499,1502,1503,1506,1507,1510,1511,1512,1513,1514,1515,1516,1517,1519,1520,1521,1523,1524,1525,1527,1528,1529,1531,1532,1533,1535,1536,1537,1539,1540,1541,1543,1544,1545,1547,1548,1549,1551,1552,1553,1555,1557,1558,1559,1560,1561,1562,1564,1565,1568,1569,1572,1573,1576,1577,1580,1581,1584,1585,1588,1589,1592,1593,1596,1597,1600,1601,1604,1607,1608,1609,1610,1611,1613,1614,1615,1617,1618,1619,1621,1622,1623,1625,1626,1627,1629,1630,1631,1633,1634,1635,1637,1638,1639,1641,1642,1643,1645,1646,1647,1649,1650,1651,1653,1654,1655,1657,1658,1659,1660,1661,1662,1664,1665,1668,1669,1672,1673,1676,1677,1680,1681,1684,1685,1688,1689,1692,1693,1696,1697,1700,1701,1704,1705,1708, +1709,1712,1713,1714,1715,1716,1718,1719,1720,1722,1723,1724,1726,1727,1728,1730,1731,1732,1734,1735,1736,1738,1739,1740,1742,1743,1744,1746,1747,1748,1750,1751,1752,1754,1755,1756,1757,1758,1761,1762,1763,1766,1767,1770,1771,1774,1775,1778,1779,1782,1783,1786,1787,1790,1791,1794,1795,1798,1799,1802,1803,1804,1807,1808,1809,1810,1811,1812,1813,1814,1816,1817,1818,1820,1821,1822,1824,1825,1826,1828,1829,1830,1832,1833,1834,1836,1837,1838,1840,1841,1842,1844,1845,1846,1848,1849,1850,1852,1853,1854,1856,1857,1858,1861,1862,1863,1866,1867,1870,1871,1874,1875,1878,1879,1882,1883,1886,1887,1890,1891,1894,1895,1898,1899,1902,1903,1906,1907,1910,1911,1912,1913,1914,1915,1916,1917,1919,1920,1921,1923,1924,1925,1927,1928,1929,1931,1932,1933,1935,1936,1937,1939,1940,1941,1943,1944,1945,1947,1948,1949,1951,1952,1953,1955,1957,1958,1959,1960,1961,1962,1964,1965,1968,1969,1972,1973,1976,1977,1980,1981,1984,1985,1988,1989,1992,1993,1996,1997,2000,2001,2004,2007,2008,2009,2010,2011,2012,2014,2015,2017,2018,2019,2022,2023,2024,2025,2026,2027,2028,2030,2031,2033,2034,2035,2038,2039,2040,2041,2042,2043,2044,2046,2047,2049,2050,2051,2054,2055,2056,2057,2058,2059,2060,2061,2062,2065,2066,2067,2070,2071,2072,2073,2074,2075,2076,2077,2078,2081,2082,2083,2086,2087,2088,2089,2090,2091,2092,2093,2094,2096,2097,2098,2099,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2113,2114,2115,2118,2119,2120,2121,2122,2123,2124,2125,2126,2128,2129,2130,2131,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2145,2146,2147,2150,2151,2152,2153,2154,2155,2156,2157,2158,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2174,2175,2177,2178,2179,2182,2183,2184,2185,2186,2187,2188,2189,2190,2192,2193,2194,2195,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2209,2211,2215,2216,2217,2218,2219,2220,2221,2222,2225,2226,2227,2230,2231,2232,2233,2235,2236,2239,2241,2242,2243,2246,2247,2248,2249,2250,2251,2252,2253,2254,2257,2259,2263,2264,2265,2266,2267,2268,2269,2270,2273,2274,2275,2278,2279,2280,2281,2283,2284,2287,2289,2290,2291,2294,2295,2296,2297, +2298,2299,2300,2301,2302,2305,2307,2311,2312,2313,2314,2315,2316,2317,2318,2321,2322,2323,2326,2327,2328,2329,2331,2332,2335,2337,2338,2339,2342,2343,2344,2345,2347,2348,2351,2353,2354,2355,2358,2359,2360,2361,2362,2363,2364,2365,2366,2370,2371,2375,2376,2379,2381,2385,2386,2387,2391,2392,2393,2394,2395,2396,2397,2398,2401,2402,2403,2406,2407,2408,2409,2411,2412,2415,2417,2418,2419,2422,2423,2424,2425,2427,2428,2431,2433,2434,2435,2438,2439,2440,2441,2443,2446,2447,2448,2449,2450,2451,2453,2454,2455,2457,2458,2459,2461,2462,2464,2465,2466,2467,2468,2470,2471,2472,2473,2474,2475,2477,2478,2479,2481,2482,2483,2485,2486,2488,2489,2490,2491,2492,2493,2494,2497,2498,2499,2502,2503,2504,2505,2507,2508,2511,2513,2514,2515,2518,2519,2520,2521,2523,2524,2527,2529,2530,2531,2534,2535,2536,2537,2539,2542,2543,2544,2545,2546,2547,2549,2550,2551,2553,2554,2555,2557,2558,2560,2561,2562,2563,2565,2566,2567,2569,2570,2571,2573,2574,2577,2578,2579,2581,2582,2584,2585,2586,2587,2588,2589,2590,2594,2595,2598,2599,2600,2601,2603,2605,2610,2611,2614,2615,2616,2617,2619,2620,2623,2625,2626,2627,2630,2631,2632,2633,2635,2638,2639,2640,2641,2642,2643,2645,2646,2647,2649,2650,2651,2653,2654,2656,2657,2658,2659,2661,2662,2663,2665,2666,2667,2669,2670,2673,2674,2675,2677,2678,2680,2681,2682,2683,2684,2686,2690,2691,2694,2695,2697,2698,2699,2702,2703,2704,2705,2706,2707,2708,2709,2710,2715,2720,2721,2722,2723,2725,2726,2727,2729,2730,2731,2732,2734,2737,2738,2739,2741,2742,2745,2746,2747,2748,2749,2750,2753,2754,2755,2757,2758,2760,2761,2762,2763,2764,2765,2766,2768,2769,2770,2771,2772,2773,2774,2777,2778,2779,2780,2783,2784,2786,2787,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2800,2801,2802,2803,2805,2807,2808,2810,2811,2812,2814,2815,2817,2819,2820,2822,2823,2825,2827,2830,2831,2835,2836,2837,2838,2839,2840,2841,2842,2844,2845,2846,2847,2848,2849,2850,2855,2860,2862,2863,2865,2867,2870,2871,2875,2876,2878,2879,2881,2883,2884,2885,2886,2887,2888,2889,2890,2895,2900,2901,2902,2903,2904,2905,2906,2908,2910,2911,2913,2915,2916,2918,2919, +2921,2923,2926,2927,2931,2932,2933,2934,2935,2936,2937,2938,2943,2948,2949,2950,2951,2952,2953,2954,2956,2958,2959,2961,2963,2966,2967,2971,2972,2974,2975,2977,2979,2980,2981,2982,2983,2984,2985,2986,2988,2989,2990,2991,2992,2993,2994,2999,3004,3006,3007,3009,3011,3012,3014,3015,3017,3019,3022,3023,3027,3028,3029,3030,3031,3032,3033,3034,3036,3037,3038,3039,3040,3041,3042,3047,3052,3054,3055,3057,3059,3062,3063,3067,3068,3070,3071,3073,3075,3076,3077,3078,3079,3080,3081,3082,3087,3092,3093,3094,3095,3096,3097,3098,3100,3102,3103,3105,3107,3108,3110,3111,3113,3115,3118,3119,3123,3124,3125,3126,3127,3128,3129,3130,3135,3140,3141,3142,3143,3144,3145,3146,3148,3150,3151,3153,3155,3158,3159,3163,3164,3166,3167,3169,3171,3172,3173,3174,3175,3176,3177,3178,3180,3181,3182,3183,3184,3185,3186,3191,3196,3198,3199,3201,3203,3204,3206,3207,3209,3211,3214,3215,3219,3220,3221,3222,3223,3224,3225,3226,3228,3229,3230,3231,3232,3233,3234,3239,3244,3246,3247,3249,3251,3254,3255,3259,3260,3262,3263,3265,3267,3268,3269,3270,3271,3272,3273,3274,3279,3284,3285,3286,3287,3288,3289,3290,3292,3294,3295,3297,3299,3300,3302,3303,3305,3307,3310,3311,3315,3316,3317,3318,3319,3320,3321,3322,3327,3332,3333,3334,3335,3336,3337,3338,3341,3343,3346,3347,3352,3353,3355,3356,3357,3360,3361,3364,3368,3369,3372,3376,3377,3380,3384,3385,3388,3392,3393,3396,3400,3401,3404,3408,3409,3412,3416,3417,3420,3424,3425,3428,3432,3433,3436,3440,3441,3444,3448,3449,3452,3456,3457,3460,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3484,3485,3486,3487,3488,3489,3490,3493,3494,3495,3498,3499,3500,3501,3502,3503,3504,3505,3506,3508,3509,3510,3511,3512,3513,3514,3517,3518,3519,3522,3523,3524,3525,3526,3527,3528,3529,3530,3533,3534,3535,3538,3539,3540,3541,3542,3543,3544,3545,3546,3548,3549,3550,3551,3552,3553,3554,3556,3557,3558,3559,3560,3561,3562,3565,3566,3567,3570,3571,3572,3573,3574,3575,3576,3577,3578,3580,3581,3582,3583,3584,3585,3586,3588,3589,3590,3591,3592,3593,3594,3596,3597,3598,3599,3600,3601,3602,3604,3605, +3606,3607,3608,3609,3610,3613,3614,3615,3618,3619,3620,3621,3622,3623,3624,3625,3626,3630,3631,3634,3635,3636,3637,3638,3639,3640,3641,3642,3645,3646,3647,3650,3651,3652,3653,3655,3656,3657,3658,3659,3660,3661,3662,3666,3667,3670,3671,3672,3673,3674,3675,3676,3677,3678,3681,3682,3683,3686,3687,3688,3689,3691,3692,3693,3694,3695,3696,3697,3698,3702,3703,3706,3707,3708,3709,3710,3711,3712,3713,3714,3717,3718,3719,3722,3723,3724,3725,3727,3728,3729,3731,3732,3733,3736,3737,3738,3739,3740,3741,3742,3745,3746,3747,3750,3751,3752,3755,3756,3757,3758,3759,3760,3761,3762,3765,3766,3767,3770,3771,3772,3773,3775,3776,3777,3779,3780,3781,3782,3783,3784,3785,3786,3788,3789,3790,3792,3793,3794,3796,3797,3798,3799,3800,3801,3802,3804,3805,3806,3807,3808,3810,3814,3815,3818,3819,3820,3821,3822,3823,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3836,3837,3838,3839,3840,3841,3842,3845,3846,3847,3850,3851,3852,3853,3855,3856,3857,3859,3860,3861,3862,3863,3864,3865,3866,3868,3869,3870,3872,3874,3876,3877,3878,3879,3880,3881,3882,3884,3885,3886,3888,3890,3892,3893,3894,3895,3896,3897,3898,3900,3901,3902,3903,3904,3905,3906,3908,3909,3910,3911,3912,3913,3914,3917,3918,3919,3922,3923,3924,3927,3928,3929,3931,3932,3933,3934,3935,3936,3937,3938,3940,3941,3942,3944,3946,3948,3949,3950,3951,3952,3953,3954,3956,3957,3958,3960,3962,3964,3965,3966,3967,3968,3969,3970,3972,3973,3974,3975,3976,3977,3978,3980,3981,3982,3983,3984,3986,3988,3989,3991,3992,3993,3996,3997,3998,3999,4000,4001,4002,4004,4005,4006,4007,4008,4009,4010,4012,4013,4014,4015,4016,4017,4018,4020,4021,4022,4023,4024,4025,4026,4028,4029,4030,4031,4032,4033,4034,4037,4038,4039,4042,4043,4044,4045,4046,4047,4048,4049,4050,4052,4053,4054,4055,4056,4058,4059,4060,4061,4062,4063,4064,4066,4068,4069,4070,4071,4072,4073,4074,4076,4077,4079,4080,4081,4084,4085,4086,4087,4088,4090,4092,4093,4095,4096,4097,4100,4101,4102,4103,4104,4105,4106,4108,4109,4110,4111,4112,4114,4116,4117,4119,4120,4121,4124,4125,4126,4127,4128,4129,4130,4132,4133,4134,4135,4136,4138,4140,4141,4142,4143,4144, +4145,4146,4148,4149,4151,4152,4153,4156,4157,4158,4159,4160,4162,4164,4165,4166,4167,4168,4169,4170,4172,4173,4175,4176,4177,4180,4181,4182,4183,4184,4186,4188,4189,4191,4192,4193,4196,4197,4198,4199,4200,4201,4202,4204,4205,4206,4207,4208,4210,4212,4213,4215,4216,4217,4220,4221,4222,4223,4224,4225,4226,4228,4229,4230,4231,4232,4234,4236,4237,4238,4239,4240,4241,4242,4244,4245,4247,4248,4249,4252,4253,4254,4255,4256,4258,4260,4261,4262,4263,4264,4265,4266,4268,4269,4271,4272,4273,4276,4277,4278,4279,4280,4282,4284,4285,4287,4288,4289,4292,4293,4294,4295,4296,4297,4298,4300,4301,4302,4303,4304,4306,4308,4309,4311,4312,4313,4316,4317,4318,4319,4320,4321,4322,4324,4325,4326,4327,4330,4332,4333,4334,4335,4336,4338,4342,4343,4346,4347,4349,4350,4351,4354,4359,4363,4365,4366,4367,4370,4375,4379,4383,4387,4391,4393,4394,4395,4398,4403,4407,4409,4410,4411,4414,4419,4423,4427,4431,4433,4434,4435,4438,4443,4447,4451,4453,4454,4455,4458,4463,4467,4471,4473,4474,4475,4478,4483,4487,4491,4493,4494,4495,4498,4503,4507,4511,4513,4514,4515,4518,4523,4527,4531,4533,4534,4535,4538,4543,4547,4551,4553,4554,4555,4558,4563,4567,4571,4573,4574,4575,4578,4583,4587,4591,4593,4594,4595,4598,4603,4607,4608,4609,4610,4611,4612,4614,4618,4619,4622,4623,4625,4626,4627,4629,4630,4633,4634,4635,4638,4639,4641,4642,4645,4646,4649,4650,4651,4654,4657,4658,4661,4662,4665,4666,4667,4670,4673,4674,4677,4678,4681,4682,4683,4686,4689,4690,4693,4694,4697,4698,4699,4702,4705,4706,4709,4710,4713,4714,4715,4718,4721,4722,4725,4726,4729,4730,4731,4734,4737,4738,4741,4742,4745,4746,4747,4750,4753,4754,4757,4758,4761,4762,4763,4766,4769,4770,4773,4774,4777,4778,4779,4782,4785,4786,4789,4790,4793,4794,4795,4798,4801,4802,4805,4806,4809,4810,4811,4814,4817,4818,4821,4822,4825,4826,4827,4830,4833,4834,4837,4838,4841,4842,4843,4846,4849,4850,4853,4854,4857,4858,4859,4862,4865,4866,4869,4870,4873,4874,4875,4878,4881,4882,4885,4886,4889,4890,4891,4894,4897,4898,4901,4902,4905,4906,4907,4910,4913,4914,4917,4918,4921,4922,4923,4926,4929,4930,4933,4934,4937,4938,4939, +4942,4945,4946,4949,4950,4953,4954,4955,4958,4961,4962,4965,4966,4969,4970,4971,4974,4977,4978,4981,4982,4985,4986,4987,4990,4993,4994,4997,4998,5001,5002,5003,5006,5009,5010,5013,5014,5017,5018,5019,5022,5025,5026,5029,5030,5033,5034,5035,5038,5041,5042,5045,5046,5049,5050,5051,5054,5056,5057,5058,5059,5060,5061,5062,5066,5067,5071,5073,5074,5075,5078,5083,5087,5089,5090,5091,5094,5099,5103,5105,5106,5107,5110,5115,5119,5121,5122,5123,5126,5131,5135,5137,5138,5139,5142,5147,5151,5153,5154,5155,5158,5163,5167,5169,5170,5171,5174,5179,5183,5185,5186,5187,5190,5195,5199,5201,5202,5203,5206,5211,5215,5217,5218,5219,5222,5227,5231,5233,5234,5235,5238,5243,5247,5249,5250,5251,5254,5259,5263,5265,5266,5267,5270,5275,5279,5281,5282,5283,5286,5291,5295,5297,5298,5299,5302,5307,5311,5313,5314,5315,5318,5323,5327,5329,5330,5331,5334,5339,5343,5345,5346,5347,5350,5355,5359,5361,5362,5363,5366,5371,5375,5377,5378,5379,5382,5387,5391,5393,5394,5395,5398,5403,5407,5409,5410,5411,5414,5419,5423,5425,5426,5427,5430,5435,5439,5441,5442,5443,5446,5451,5455,5457,5458,5459,5462,5467,5471,5473,5474,5475,5478,5483,5487,5489,5490,5491,5494,5499,5503,5504,5505,5506,5507,5511,5512,5514,5515,5519,5522,5530,5538,5546,5554,5562,5570,5578,5586,5594,5602,5610,5618,5626,5634,5642,5650,5658,5666,5674,5682,5690,5698,5706,5714,5722,5729,5731,5737,5738,5740,5741,5746,5753,5754,5756,5762,5769,5770,5772,5778,5785,5786,5788,5794,5801,5802,5804,5810,5817,5818,5820,5826,5833,5834,5836,5842,5849,5850,5852,5858,5865,5866,5868,5874,5881,5882,5884,5890,5897,5898,5900,5906,5913,5914,5916,5922,5929,5930,5932,5938,5944,5945,5947,5948,5953,5956,5957,5958,5962,5965,5973,5981,5989,5997,6005,6013,6021,6029,6037,6045,6053,6061,6069,6071,6078,6081,6086,6094,6102,6110,6118,6126,6134,6142,6150,6158,6166,6174,6181,6183,6189,6190,6193,6194,6197,6198,6199,6202,6204,6205,6206,6207,6208,6210,6215,6219,6220,6221,6222,6223,6224,6226,6231,6235,6236,6237,6238,6239,6240,6242,6247,6251,6252,6253,6254,6255,6256,6258,6263,6267,6268,6269,6270,6271,6272,6274,6279,6283,6284,6285,6286, +6287,6288,6290,6295,6299,6300,6301,6302,6304,6306,6311,6316,6317,6318,6319,6320,6322,6327,6331,6333,6334,6338,6343,6349,6350,6351,6354,6359,6363,6365,6366,6370,6375,6381,6382,6383,6386,6391,6395,6397,6398,6402,6407,6413,6414,6415,6418,6423,6427,6429,6430,6434,6439,6445,6446,6447,6450,6455,6459,6461,6462,6466,6471,6477,6478,6479,6482,6487,6491,6493,6494,6497,6498,6501,6503,6509,6513,6518,6519,6522,6523,6524,6525,6526,6528,6529,6530,6533,6535,6540,6541,6542,6544,6545,6546,6549,6551,6556,6557,6558,6560,6561,6562,6565,6567,6572,6573,6574,6576,6577,6578,6581,6583,6588,6589,6590,6592,6593,6594,6597,6599,6604,6605,6606,6608,6609,6610,6613,6615,6620,6621,6622,6624,6625,6626,6629,6631,6636,6637,6638,6640,6641,6642,6645,6647,6652,6653,6654,6656,6657,6658,6661,6663,6668,6669,6670,6672,6674,6679,6686,6693,6695,6701,6703,6706,6708,6709,6710,6711,6713,6714,6715,6716,6718,6719,6721,6722,6724,6725,6726,6727,6729,6730,6731,6732,6734,6735,6737,6738,6740,6741,6742,6743,6745,6746,6747,6748,6750,6751,6753,6754,6756,6757,6758,6759,6761,6762,6763,6764,6766,6767,6770,6771,6772,6773,6774,6775,6777,6778,6779,6780,6782,6783,6786,6787,6788,6789,6790,6791,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6804,6805,6806,6807,6809,6810,6811,6812,6814,6815,6818,6819,6820,6821,6822,6823,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6836,6837,6838,6839,6841,6842,6843,6844,6846,6847,6850,6851,6852,6853,6854,6855,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6868,6869,6870,6871,6873,6874,6875,6876,6878,6879,6881,6882,6884,6885,6886,6887,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6900,6901,6902,6903,6905,6907,6908,6911,6914,6915,6916,6917,6918,6919,6921,6922,6923,6924,6926,6927,6930,6931,6932,6933,6935,6937,6938,6939,6940,6942,6943,6945,6948,6949,6950,6951,6953,6955,6956,6959,6962,6963,6964,6965,6966,6967,6969,6970,6971,6972,6974,6975,6978,6979,6980,6981,6983,6985,6986,6987,6988,6990,6991,6993,6996,6997,6998,6999,7001,7003,7004,7007,7010,7011,7012,7013,7014,7015,7017,7018,7019,7020,7022,7023,7026,7027,7028,7029,7031,7033,7034,7035,7036, +7038,7039,7041,7044,7045,7047,7049,7050,7051,7052,7054,7055,7057,7060,7061,7062,7063,7066,7067,7069,7071,7074,7075,7077,7078,7082,7083,7084,7086,7087,7092,7093,7094,7095,7097,7098,7099,7100,7102,7103,7106,7107,7108,7109,7111,7113,7114,7115,7116,7118,7119,7121,7124,7125,7127,7129,7130,7131,7132,7134,7135,7137,7140,7141,7143,7144,7145,7148,7149,7150,7151,7152,7153,7154,7157,7158,7159,7161,7162,7164,7165,7166,7167,7168,7170,7171,7172,7174,7175,7177,7178,7179,7181,7182,7183,7185,7186,7188,7189,7190,7191,7193,7194,7195,7196,7198,7199,7202,7203,7204,7205,7207,7209,7210,7211,7212,7214,7215,7217,7220,7221,7223,7225,7226,7227,7228,7230,7231,7233,7236,7237,7239,7240,7241,7244,7245,7246,7247,7248,7249,7250,7253,7254,7255,7257,7258,7260,7261,7262,7263,7264,7265,7266,7269,7270,7271,7273,7274,7277,7278,7279,7281,7282,7284,7285,7286,7287,7289,7290,7291,7293,7295,7298,7299,7300,7301,7303,7305,7306,7307,7309,7311,7316,7317,7319,7321,7322,7323,7324,7326,7327,7329,7332,7333,7335,7336,7337,7340,7341,7342,7343,7344,7345,7346,7349,7350,7351,7353,7354,7356,7357,7358,7359,7360,7361,7362,7365,7366,7367,7369,7370,7373,7374,7375,7377,7378,7380,7381,7382,7383,7385,7386,7387,7388,7390,7394,7397,7398,7399,7402,7403,7404,7405,7406,7407,7411,7413,7418,7419,7420,7421,7422,7423,7424,7425,7426,7428,7430,7431,7433,7435,7437,7438,7439,7441,7442,7444,7446,7447,7449,7450,7451,7453,7454,7455,7457,7458,7460,7461,7462,7463,7465,7466,7467,7469,7470,7471,7474,7475,7477,7478,7479,7481,7482,7483,7484,7486,7488,7489,7490,7491,7493,7494,7495,7496,7497,7502,7503,7504,7506,7507,7509,7510,7511,7512,7514,7517,7518,7519,7522,7523,7525,7527,7530,7532,7533,7534,7535,7537,7538,7539,7540,7541,7542,7543,7547,7549,7554,7555,7557,7558,7559,7562,7563,7565,7567,7570,7573,7574,7575,7576,7578,7580,7581,7582,7583,7587,7589,7594,7595,7596,7597,7598,7599,7601,7602,7603,7605,7606,7607,7608,7610,7613,7614,7615,7618,7619,7621,7623,7626,7628,7629,7630,7631,7635,7637,7642,7643,7644,7645,7646,7647,7649,7650,7651,7653,7654,7655,7658,7659,7661,7663,7666,7669,7670,7671,7672,7674,7676,7677, +7678,7679,7681,7682,7683,7684,7685,7686,7687,7691,7693,7698,7699,7701,7702,7703,7704,7706,7709,7710,7711,7714,7715,7717,7719,7722,7724,7725,7726,7727,7729,7730,7731,7732,7733,7734,7735,7739,7741,7746,7747,7749,7750,7751,7754,7755,7757,7759,7762,7765,7766,7767,7768,7770,7772,7773,7774,7775,7779,7781,7786,7787,7788,7789,7790,7791,7793,7794,7795,7797,7798,7799,7800,7802,7805,7806,7807,7810,7811,7813,7815,7818,7820,7821,7822,7823,7827,7829,7834,7835,7836,7837,7838,7839,7841,7842,7843,7845,7846,7847,7850,7851,7853,7855,7858,7861,7862,7863,7864,7866,7868,7869,7870,7871,7873,7874,7875,7876,7877,7878,7879,7883,7885,7890,7891,7893,7894,7895,7896,7898,7901,7902,7903,7906,7907,7909,7911,7914,7916,7917,7918,7919,7921,7922,7923,7924,7925,7926,7927,7931,7933,7938,7939,7941,7942,7943,7946,7947,7949,7951,7954,7957,7958,7959,7960,7962,7964,7965,7966,7967,7971,7973,7978,7979,7980,7981,7982,7983,7985,7986,7987,7989,7990,7991,7992,7994,7997,7998,7999,8002,8003,8005,8007,8010,8012,8013,8014,8015,8019,8021,8026,8027,8028,8029,8030,8031,8033,8034,8035,8037,8039,8042,8043,8048,8050,8051,8054,8055,8058,8059,8063,8066,8067,8071,8074,8075,8079,8082,8083,8087,8090,8091,8095,8098,8099,8103,8106,8107,8111,8114,8115,8119,8122,8123,8127,8130,8131,8135,8138,8139,8143,8146,8147,8151,8154,8155,8159,8160,8161,8162,8163,8164,8166,8167,8168,8169,8170,8172,8173,8174,8175,8176,8178,8179,8180,8181,8182,8184,8185,8186,8187,8188,8190,8191,8192,8193,8194,8196,8197,8198,8199,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8213,8214,8215,8218,8219,8220,8221,8222,8223,8225,8226,8227,8229,8230,8231,8233,8234,8237,8238,8239,8242,8243,8244,8245,8246,8247,8248,8249,8250,8253,8254,8255,8258,8259,8260,8261,8262,8263,8265,8266,8267,8268,8269,8270,8271,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8285,8286,8287,8290,8291,8292,8293,8294,8295,8297,8298,8299,8300,8301,8302,8303,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8316,8317,8318,8319,8321,8322,8323,8325,8326,8327,8329,8330,8333,8334,8335,8338,8339,8340,8341,8342,8343,8344,8345,8346,8349,8351,8355,8356, +8357,8358,8359,8360,8361,8362,8365,8366,8367,8370,8371,8372,8373,8374,8376,8378,8379,8380,8381,8384,8385,8386,8387,8388,8389,8390,8393,8395,8399,8400,8401,8402,8403,8404,8405,8406,8409,8410,8411,8414,8415,8416,8417,8418,8420,8422,8423,8424,8425,8428,8429,8430,8431,8432,8433,8434,8437,8439,8443,8444,8445,8446,8447,8448,8449,8450,8453,8454,8455,8458,8459,8460,8461,8462,8464,8466,8467,8468,8469,8473,8474,8475,8477,8478,8480,8481,8482,8483,8484,8485,8486,8489,8490,8491,8494,8495,8497,8498,8500,8502,8503,8504,8508,8509,8510,8511,8512,8513,8514,8517,8518,8519,8522,8523,8524,8525,8526,8528,8530,8531,8532,8533,8536,8537,8538,8540,8542,8543,8544,8545,8548,8549,8550,8551,8553,8554,8555,8556,8558,8559,8561,8562,8563,8564,8565,8566,8567,8569,8570,8571,8573,8574,8577,8578,8581,8582,8583,8586,8588,8590,8591,8593,8594,8595,8596,8597,8598,8599,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8613,8614,8615,8618,8619,8620,8621,8622,8624,8626,8627,8628,8629,8632,8633,8634,8636,8638,8639,8640,8641,8644,8645,8646,8647,8649,8650,8651,8652,8654,8655,8657,8659,8660,8661,8662,8663,8665,8666,8667,8668,8670,8671,8673,8675,8676,8677,8678,8679,8681,8682,8683,8684,8685,8686,8687,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8701,8702,8703,8706,8707,8709,8710,8712,8715,8716,8717,8720,8721,8722,8724,8726,8727,8728,8729,8732,8733,8734,8735,8737,8738,8739,8740,8742,8743,8745,8747,8748,8749,8750,8751,8753,8754,8755,8756,8758,8759,8761,8763,8764,8765,8766,8767,8769,8770,8771,8772,8773,8774,8775,8777,8778,8779,8780,8781,8782,8783,8784,8786,8788,8790,8792,8795,8798,8799,8800,8801,8802,8803,8805,8806,8807,8808,8809,8810,8811,8813,8814,8815,8816,8817,8818,8819,8821,8822,8823,8825,8826,8827,8829,8830,8831,8833,8834,8835,8837,8838,8841,8842,8843,8846,8847,8849,8850,8851,8853,8854,8855,8856,8858,8859,8860,8861,8862,8864,8866,8869,8870,8871,8873,8874,8875,8876,8879,8882,8883,8884,8885,8886,8888,8890,8892,8895,8898,8899,8901,8902,8903,8905,8906,8907,8908,8909,8910,8912,8914,8916,8919,8922,8923,8925,8926,8927,8929,8930,8931,8932,8933,8934,8936,8938,8941, +8942,8943,8945,8946,8947,8948,8951,8954,8955,8956,8957,8958,8960,8962,8965,8966,8967,8969,8970,8971,8972,8975,8978,8979,8980,8981,8982,8984,8986,8988,8991,8994,8995,8997,8998,8999,9001,9002,9003,9004,9005,9006,9008,9010,9012,9015,9018,9019,9021,9022,9023,9025,9026,9027,9028,9029,9030,9032,9034,9037,9038,9039,9041,9042,9043,9044,9047,9050,9051,9052,9053,9054,9056,9058,9061,9062,9063,9065,9066,9067,9068,9071,9074,9075,9076,9077,9078,9080,9082,9084,9087,9090,9091,9093,9094,9095,9097,9098,9099,9100,9101,9102,9104,9106,9108,9111,9114,9115,9117,9118,9119,9121,9122,9123,9124,9126,9127,9130,9131,9132,9133,9134,9135,9136,9137,9138,9141,9143,9147,9148,9149,9150,9152,9154,9159,9164,9165,9166,9168,9170,9175,9180,9181,9182,9184,9186,9191,9196,9197,9198,9200,9202,9207,9212,9213,9214,9216,9218,9223,9228,9229,9230,9232,9234,9239,9244,9245,9246,9248,9250,9255,9260,9261,9262,9264,9266,9271,9276,9277,9278,9280,9282,9287,9292,9293,9294,9296,9298,9303,9308,9309,9310,9312,9314,9319,9324,9325,9326,9328,9330,9335,9340,9341,9342,9344,9346,9351,9357,9358,9361,9362,9365,9366,9367,9370,9372,9373,9374,9376,9377,9378,9381,9382,9383,9386,9389,9390,9393,9394,9397,9398,9399,9402,9405,9406,9409,9410,9413,9414,9415,9418,9421,9422,9425,9426,9429,9430,9431,9434,9437,9438,9441,9442,9445,9446,9447,9450,9453,9454,9457,9458,9461,9462,9463,9466,9469,9470,9473,9474,9477,9478,9479,9482,9485,9486,9489,9490,9493,9494,9495,9498,9501,9502,9505,9506,9509,9510,9511,9514,9517,9518,9521,9522,9525,9526,9527,9530,9533,9534,9537,9538,9541,9542,9543,9546,9549,9550,9553,9554,9557,9558,9559,9562,9565,9566,9569,9570,9573,9574,9575,9578,9581,9582,9585,9586,9589,9590,9591,9594,9597,9598,9601,9602,9605,9606,9607,9610,9613,9614,9617,9618,9621,9622,9623,9626,9629,9630,9633,9634,9637,9638,9639,9642,9645,9646,9649,9650,9653,9654,9655,9658,9661,9662,9665,9666,9669,9670,9671,9674,9677,9678,9681,9682,9685,9686,9687,9690,9693,9694,9697,9698,9701,9702,9703,9706,9709,9710,9713,9714,9717,9718,9719,9722,9725,9726,9729,9730,9733,9734,9735,9738,9741,9742,9745,9746,9749,9750,9751,9754,9757, +9758,9761,9762,9765,9766,9767,9770,9773,9774,9777,9778,9781,9782,9783,9786,9789,9790,9793,9794,9797,9798,9799,9802,9804,9805,9806,9807,9808,9809,9810,9814,9815,9819,9820,9821,9822,9824,9826,9831,9836,9837,9838,9840,9842,9847,9852,9853,9854,9856,9858,9863,9868,9869,9870,9872,9874,9879,9884,9885,9886,9888,9890,9895,9900,9901,9902,9904,9906,9911,9916,9917,9918,9920,9922,9927,9932,9933,9934,9936,9938,9943,9948,9949,9950,9952,9954,9959,9964,9965,9966,9968,9970,9975,9980,9981,9982,9984,9986,9991,9996,9997,9998,10000,10002,10007,10012,10013,10014,10016,10018,10023,10028,10029,10030,10032,10034,10039,10044,10045,10046,10048,10050,10055,10060,10061,10062,10064,10066,10071,10076,10077,10078,10080,10082,10087,10092,10093,10094,10096,10098,10103,10108,10109,10110,10112,10114,10119,10124,10125,10126,10128,10130,10135,10140,10141,10142,10144,10146,10151,10156,10157,10158,10160,10162,10167,10172,10173,10174,10176,10178,10183,10188,10189,10190,10192,10194,10199,10204,10205,10206,10208,10210,10215,10220,10221,10222,10224,10226,10231,10236,10237,10238,10240,10242,10247,10253,10254,10255,10258,10260,10262,10263,10266,10267,10271,10279,10287,10295,10303,10311,10319,10327,10335,10343,10351,10359,10367,10375,10383,10391,10399,10407,10415,10423,10431,10439,10447,10455,10463,10471,10477,10479,10484,10487,10490,10491,10495,10500,10503,10507,10511,10516,10519,10523,10527,10532,10535,10539,10543,10548,10551,10555,10559,10564,10567,10571,10575,10580,10583,10587,10591,10596,10599,10603,10607,10612,10615,10619,10623,10628,10631,10635,10639,10644,10647,10651,10655,10660,10663,10667,10671,10676,10679,10683,10687,10692,10693,10695,10699,10700,10701,10702,10703,10707,10711,10715,10717,10719,10722,10730,10738,10746,10754,10762,10770,10778,10786,10794,10802,10810,10818,10824,10826,10889,10890,10893,10894,10897,10898,10899,10902,10904,10905,10906,10907,10908,10910,10915,10919,10920,10921,10922,10923,10924,10926,10931,10935,10936,10937,10938,10939,10940,10942,10947,10951,10952,10953,10954,10955,10956,10958,10963,10967,10968,10969,10970,10971,10972,10974, +10979,10983,10984,10985,10986,10987,10988,10990,10995,10999,11001,11002,11003,11006,11011,11015,11016,11017,11018,11019,11020,11022,11027,11031,11033,11034,11038,11043,11048,11049,11050,11052,11054,11059,11065,11066,11070,11075,11080,11081,11082,11084,11086,11091,11097,11098,11102,11107,11112,11113,11114,11116,11118,11123,11129,11130,11134,11139,11144,11145,11146,11148,11150,11155,11161,11162,11166,11171,11176,11177,11178,11180,11182,11187,11193,11194,11198,11202,11203,11206,11210,11211,11213,11214,11216,11217,11218,11219,11220,11222,11226,11227,11230,11231,11233,11234,11235,11238,11242,11243,11246,11247,11249,11250,11251,11254,11258,11259,11262,11263,11265,11266,11267,11270,11274,11275,11278,11279,11281,11282,11283,11286,11290,11291,11294,11295,11297,11298,11299,11302,11306,11307,11310,11311,11313,11314,11315,11318,11322,11323,11326,11327,11329,11330,11331,11334,11338,11339,11342,11343,11345,11346,11347,11350,11354,11355,11358,11359,11361,11362,11363,11366,11370,11371,11374,11375,11377,11378,11382,11386,11387,11390,11394,11395,11397,11401,11402,11403,11406,11411,11414,11416,11418,11421,11423,11425,11429,11436,11444,11445,11448,11453,11457,11461,11471,11477,11482,11486,11489,11493,11497,11501,11505,11509,11513,11517,11521,11525,11529,11533,11537,11541,11545,11549,11553,11557,11561,11565,11569,11573,11577,11581,11585,11594,11597,11601,11621,11629,11631,11637,11656,11663,11664,11665,11667,11668,11669,11672,11673,11674,11678,11679,11681,11682,11684,11685,11686,11687,11689,11690,11692,11693,11694,11698,11700,11701,11702,11704,11705,11706,11709,11713,11714,11717,11718,11720,11721,11722,11725,11729,11730,11733,11734,11736,11737,11741,11745,11746,11749,11752,11753,11754,11756,11757,11761,11764,11765,11766,11769,11771,11774,11775,11776,11777,11778,11780,11782,11785,11786,11789,11790,11793,11797,11798,11800,11801,11803,11804,11805,11807,11808,11809,11810,11811,11812,11814,11816,11819,11820,11821,11823,11824,11827,11828,11831,11832,11833,11836,11839,11840,11843,11844,11847,11848,11849,11852,11855,11856,11859,11860,11863,11864, +11865,11868,11870,11871,11873,11880,11881,11884,11887,11888,11889,11890,11893,11896,11900,11902,11904,11905,11906,11907,11909,11910,11914,11915,11917,11918,11921,11923,11924,11925,11928,11929,11931,11932,11935,11940,11944,11945,11948,11949,11952,11955,11958,11960,11967,11968,11971,11975,11977,11978,11979,11980,11981,11982,11983,11986,11987,11988,11991,11992,11993,11994,11995,11996,11997,11998,11999,12002,12003,12004,12006,12007,12010,12011,12012,12013,12016,12017,12018,12019,12020,12021,12022,12023,12026,12027,12028,12029,12032,12033,12034,12036,12037,12038,12041,12042,12044,12045,12046,12049,12050,12051,12052,12053,12054,12055,12057,12058,12059,12060,12061,12062,12063,12065,12066,12067,12068,12069,12070,12071,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12086,12087,12088,12091,12092,12093,12094,12095,12096,12097,12098,12099,12101,12102,12103,12104,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12118,12119,12120,12123,12124,12125,12126,12127,12128,12129,12130,12131,12133,12134,12135,12136,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12150,12151,12152,12155,12156,12157,12158,12159,12160,12161,12162,12163,12165,12166,12167,12168,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12181,12182,12183,12184,12185,12186,12187,12189,12190,12191,12192,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12206,12207,12208,12211,12212,12213,12214,12215,12216,12217,12218,12219,12222,12223,12224,12227,12228,12229,12230,12231,12232,12233,12234,12235,12237,12238,12239,12240,12241,12242,12243,12246,12247,12248,12251,12252,12253,12254,12255,12256,12257,12258,12259,12262,12263,12264,12267,12268,12269,12270,12271,12272,12273,12274,12275,12277,12278,12279,12280,12281,12282,12283,12286,12287,12288,12291,12292,12293,12294,12295,12296,12297,12298,12299,12302,12303,12304,12307,12308,12309,12310,12311,12312,12313,12314,12315,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12330,12331,12332,12335,12336,12337,12338,12339,12340,12341,12342,12343,12345,12346,12347, +12348,12349,12350,12351,12354,12355,12356,12359,12360,12361,12362,12363,12364,12365,12366,12367,12369,12370,12371,12372,12373,12374,12375,12377,12378,12380,12383,12384,12385,12386,12387,12388,12390,12391,12392,12394,12395,12396,12398,12399,12401,12402,12403,12404,12406,12407,12408,12409,12410,12411,12412,12414,12415,12416,12418,12419,12420,12422,12423,12425,12426,12427,12428,12429,12430,12431,12434,12435,12436,12439,12440,12441,12442,12443,12444,12445,12446,12447,12449,12450,12451,12452,12453,12454,12455,12457,12458,12460,12463,12464,12465,12466,12467,12468,12470,12471,12472,12474,12475,12476,12478,12479,12481,12482,12483,12484,12486,12487,12488,12490,12491,12492,12494,12495,12498,12499,12500,12502,12503,12505,12506,12507,12508,12509,12510,12511,12514,12515,12516,12519,12520,12521,12522,12523,12524,12525,12526,12527,12529,12530,12531,12532,12533,12534,12535,12537,12538,12540,12543,12544,12545,12546,12547,12548,12550,12551,12552,12554,12555,12556,12558,12559,12561,12562,12563,12564,12566,12567,12568,12570,12571,12572,12574,12575,12578,12579,12580,12582,12583,12585,12586,12587,12588,12589,12591,12594,12595,12596,12598,12599,12601,12602,12603,12604,12605,12606,12607,12609,12610,12611,12612,12614,12615,12616,12618,12619,12620,12621,12623,12626,12627,12628,12630,12631,12633,12634,12635,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12649,12650,12651,12652,12653,12654,12655,12658,12659,12660,12663,12664,12665,12667,12668,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12681,12682,12683,12684,12686,12687,12688,12689,12691,12692,12694,12696,12697,12698,12699,12700,12701,12702,12703,12705,12706,12707,12708,12709,12710,12711,12713,12714,12715,12716,12717,12718,12719,12721,12722,12723,12724,12725,12726,12727,12729,12731,12732,12734,12736,12737,12738,12739,12740,12741,12742,12743,12745,12746,12747,12748,12749,12750,12751,12753,12755,12756,12758,12760,12761,12762,12763,12764,12765,12766,12767,12769,12770,12771,12772,12773,12774,12775,12777,12778,12779,12780,12781,12782,12783,12785,12786,12787,12788,12789, +12790,12791,12793,12795,12796,12798,12800,12801,12802,12803,12804,12805,12806,12807,12809,12810,12811,12812,12813,12814,12815,12817,12819,12820,12822,12824,12825,12826,12827,12828,12829,12830,12831,12833,12834,12835,12836,12837,12838,12839,12841,12842,12843,12844,12845,12846,12847,12849,12850,12851,12852,12853,12854,12855,12857,12859,12860,12862,12864,12865,12866,12867,12868,12869,12870,12871,12873,12874,12875,12876,12877,12878,12879,12881,12883,12884,12886,12888,12889,12890,12891,12892,12893,12894,12895,12897,12898,12899,12900,12901,12902,12903,12905,12906,12907,12908,12909,12910,12911,12913,12914,12915,12916,12917,12918,12919,12921,12923,12924,12926,12928,12929,12930,12931,12932,12933,12934,12935,12937,12938,12939,12940,12941,12942,12943,12945,12947,12948,12950,12952,12953,12954,12955,12956,12957,12958,12959,12961,12962,12963,12964,12965,12966,12967,12969,12970,12971,12972,12973,12974,12975,12977,12978,12979,12980,12981,12982,12983,12985,12987,12988,12990,12992,12993,12994,12995,12996,12997,12998,12999,13001,13002,13003,13004,13005,13006,13007,13009,13011,13012,13014,13016,13017,13018,13019,13020,13021,13022,13023,13025,13026,13027,13028,13029,13030,13031,13033,13034,13035,13036,13037,13038,13039,13041,13042,13043,13044,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13058,13060,13064,13065,13066,13067,13069,13071,13076,13081,13082,13083,13085,13087,13092,13099,13107,13115,13121,13122,13123,13125,13127,13132,13137,13138,13139,13141,13143,13148,13155,13163,13169,13170,13171,13173,13175,13180,13187,13193,13194,13195,13197,13199,13204,13211,13217,13218,13219,13221,13223,13228,13235,13241,13242,13243,13245,13247,13252,13259,13265,13266,13267,13269,13271,13276,13283,13289,13290,13291,13293,13295,13300,13307,13313,13314,13315,13317,13319,13324,13331,13338,13340,13347,13353,13354,13355,13357,13359,13364,13369,13370,13371,13372,13373,13374,13375,13377,13378,13379,13380,13381,13382,13383,13385,13386,13387,13388,13389,13390,13391,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13406,13407,13408, +13411,13412,13413,13414,13415,13416,13417,13418,13419,13421,13422,13423,13424,13425,13426,13427,13430,13431,13432,13435,13436,13437,13438,13439,13440,13441,13442,13443,13446,13447,13448,13451,13452,13453,13454,13455,13456,13457,13458,13459,13461,13462,13463,13464,13465,13466,13467,13470,13471,13472,13475,13476,13477,13478,13479,13480,13481,13482,13483,13486,13487,13488,13491,13492,13493,13494,13495,13496,13497,13498,13499,13501,13502,13503,13504,13505,13506,13507,13510,13511,13512,13515,13516,13517,13518,13519,13520,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13533,13534,13535,13536,13537,13538,13539,13542,13543,13544,13547,13548,13549,13550,13551,13552,13553,13554,13555,13558,13559,13560,13563,13564,13565,13566,13567,13568,13569,13570,13571,13573,13574,13575,13576,13577,13578,13579,13582,13583,13584,13587,13588,13589,13590,13591,13592,13593,13594,13595,13598,13599,13600,13603,13604,13605,13606,13607,13608,13609,13610,13611,13613,13614,13615,13616,13617,13618,13619,13622,13623,13624,13627,13628,13629,13630,13631,13632,13633,13634,13635,13638,13639,13640,13643,13644,13645,13646,13647,13648,13649,13650,13651,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13666,13667,13668,13671,13672,13673,13674,13675,13676,13677,13678,13679,13681,13682,13683,13684,13685,13686,13687,13690,13691,13692,13695,13696,13697,13698,13699,13700,13701,13702,13703,13705,13706,13707,13708,13709,13710,13711,13713,13714,13715,13716,13717,13718,13719,13722,13723,13724,13727,13728,13729,13730,13731,13733,13734,13735,13738,13739,13740,13743,13745,13746,13747,13748,13749,13750,13751,13754,13755,13756,13758,13759,13762,13763,13764,13767,13768,13769,13771,13772,13775,13776,13777,13779,13780,13781,13782,13783,13784,13785,13786,13787,13789,13790,13791,13792,13793,13794,13795,13798,13799,13800,13803,13804,13805,13806,13807,13808,13809,13810,13811,13813,13814,13815,13816,13817,13818,13819,13821,13822,13823,13824,13825,13826,13827,13830,13831,13832,13835,13836,13837,13838,13839,13841,13843,13847,13848,13851,13853,13854,13855, +13856,13857,13858,13859,13861,13862,13863,13865,13867,13871,13872,13875,13877,13878,13879,13880,13881,13882,13883,13885,13886,13887,13888,13889,13890,13891,13893,13894,13895,13896,13897,13898,13899,13902,13903,13904,13907,13908,13909,13910,13911,13912,13913,13914,13915,13917,13918,13919,13920,13921,13922,13923,13925,13926,13927,13928,13929,13930,13931,13934,13935,13936,13939,13940,13941,13942,13943,13945,13947,13951,13952,13955,13957,13958,13959,13960,13961,13962,13963,13965,13966,13967,13969,13971,13975,13976,13979,13981,13982,13983,13984,13985,13986,13987,13989,13990,13991,13992,13993,13994,13995,13997,13998,13999,14000,14002,14004,14006,14007,14008,14010,14011,14013,14014,14015,14016,14017,14018,14019,14021,14022,14023,14024,14025,14026,14027,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14041,14042,14043,14044,14045,14046,14047,14050,14051,14052,14055,14056,14057,14058,14059,14060,14061,14062,14063,14065,14066,14067,14068,14071,14072,14073,14074,14075,14076,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14089,14090,14091,14092,14093,14094,14095,14097,14098,14099,14100,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14113,14114,14115,14116,14117,14118,14119,14121,14122,14123,14124,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14137,14138,14139,14140,14141,14142,14143,14145,14146,14147,14148,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14161,14162,14163,14164,14165,14166,14167,14169,14170,14171,14172,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14185,14186,14187,14188,14189,14190,14191,14193,14194,14195,14196,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14209,14210,14211,14212,14213,14214,14215,14217,14218,14219,14220,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14233,14234,14235,14236,14237,14238,14239,14241,14242,14243,14244,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14257,14258,14259,14260,14261,14262,14263,14265,14266,14267,14268,14270,14271,14272,14273,14274,14275,14276,14277, +14278,14279,14281,14282,14283,14284,14285,14286,14287,14289,14290,14291,14292,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14305,14306,14307,14308,14309,14310,14311,14313,14314,14315,14316,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14329,14330,14331,14332,14333,14334,14335,14337,14338,14339,14340,14342,14343,14344,14345,14346,14347,14348,14349,14351,14355,14356,14359,14360,14362,14363,14364,14367,14372,14376,14378,14379,14380,14383,14388,14392,14396,14404,14412,14418,14419,14420,14423,14428,14432,14434,14435,14436,14439,14444,14448,14452,14460,14466,14467,14468,14471,14476,14480,14484,14490,14491,14492,14495,14500,14504,14508,14514,14515,14516,14519,14524,14528,14532,14538,14539,14540,14543,14548,14552,14556,14562,14563,14564,14567,14572,14576,14580,14586,14587,14588,14591,14596,14600,14604,14610,14611,14612,14615,14620,14624,14628,14634,14636,14644,14650,14651,14652,14655,14660,14664,14665,14666,14667,14668,14669,14671,14675,14676,14679,14680,14682,14683,14684,14686,14687,14690,14691,14692,14695,14696,14698,14699,14702,14703,14706,14707,14708,14711,14714,14715,14718,14719,14722,14723,14724,14727,14730,14731,14734,14735,14738,14739,14740,14743,14746,14747,14750,14751,14754,14755,14756,14759,14762,14763,14766,14767,14770,14771,14772,14775,14778,14779,14782,14783,14786,14787,14788,14791,14794,14795,14798,14799,14802,14803,14804,14807,14810,14811,14814,14815,14818,14819,14820,14823,14826,14827,14830,14831,14834,14835,14836,14839,14842,14843,14846,14847,14850,14851,14852,14855,14858,14859,14862,14863,14866,14867,14868,14871,14874,14875,14878,14879,14882,14883,14884,14887,14890,14891,14894,14895,14898,14899,14900,14903,14906,14907,14910,14911,14914,14915,14916,14919,14922,14923,14926,14927,14930,14931,14932,14935,14938,14939,14942,14943,14946,14947,14948,14951,14954,14955,14958,14959,14962,14963,14964,14967,14970,14971,14974,14975,14978,14979,14980,14983,14986,14987,14990,14991,14994,14995,14996,14999,15002,15003,15006,15007,15010,15011,15012,15015,15018,15019,15022,15023,15026,15027,15028, +15031,15034,15035,15038,15039,15042,15043,15044,15047,15051,15052,15054,15055,15058,15059,15062,15063,15066,15067,15068,15071,15074,15075,15078,15079,15082,15083,15084,15087,15090,15091,15094,15095,15098,15099,15100,15103,15105,15106,15107,15108,15109,15110,15111,15114,15115,15116,15119,15120,15122,15123,15124,15127,15132,15136,15138,15139,15140,15143,15148,15152,15154,15155,15156,15159,15164,15168,15170,15171,15172,15175,15180,15184,15186,15187,15188,15191,15196,15200,15202,15203,15204,15207,15212,15216,15218,15219,15220,15223,15228,15232,15234,15235,15236,15239,15244,15248,15250,15251,15252,15255,15260,15264,15266,15267,15268,15271,15276,15280,15282,15283,15284,15287,15292,15296,15298,15299,15300,15303,15308,15312,15314,15315,15316,15319,15324,15328,15330,15331,15332,15335,15340,15344,15346,15347,15348,15351,15356,15360,15362,15363,15364,15367,15372,15376,15378,15379,15380,15383,15388,15392,15394,15395,15396,15399,15404,15408,15410,15411,15412,15415,15420,15424,15426,15427,15428,15431,15436,15440,15442,15443,15444,15447,15452,15456,15458,15459,15460,15463,15468,15472,15474,15475,15476,15479,15484,15488,15489,15492,15496,15498,15499,15500,15503,15508,15512,15514,15515,15516,15519,15524,15528,15530,15531,15532,15535,15540,15544,15545,15546,15547,15548,15550,15551,15552,15553,15554,15555,15557,15559,15563,15571,15579,15587,15595,15603,15611,15619,15627,15635,15643,15651,15659,15667,15675,15683,15691,15699,15707,15715,15723,15731,15739,15751,15759,15766,15768,15774,15775,15776,15778,15779,15781,15782,15784,15789,15790,15793,15801,15802,15805,15811,15817,15818,15821,15827,15833,15834,15837,15843,15849,15850,15853,15859,15865,15866,15869,15875,15881,15882,15885,15891,15897,15898,15901,15907,15913,15914,15917,15923,15929,15930,15933,15939,15945,15946,15949,15955,15961,15962,15965,15971,15977,15978,15980,15981,15985,15986,15987,15988,15990,15991,15992,15993,15996,15999,16000,16003,16011,16019,16027,16035,16043,16051,16059,16067,16075,16083,16091,16099,16107,16115,16123,16131,16139,16147,16155,16163,16171,16179,16191,16199, +16206,16208,16215,16218,16223,16231,16243,16251,16259,16267,16275,16283,16291,16299,16307,16315,16323,16331,16339,16347,16355,16363,16371,16379,16387,16395,16403,16411,16418,16420,16426,16427,16430,16431,16434,16435,16436,16439,16441,16442,16443,16444,16445,16447,16452,16456,16457,16458,16459,16460,16461,16463,16468,16472,16473,16474,16475,16476,16477,16479,16484,16488,16489,16490,16491,16492,16493,16495,16500,16504,16505,16506,16507,16508,16509,16511,16516,16520,16521,16522,16523,16524,16525,16527,16532,16536,16538,16539,16540,16542,16543,16545,16548,16552,16554,16555,16559,16564,16570,16571,16572,16575,16580,16584,16586,16587,16591,16596,16602,16603,16604,16607,16612,16616,16618,16619,16623,16628,16634,16635,16636,16639,16644,16648,16650,16651,16655,16660,16666,16667,16668,16671,16676,16680,16682,16683,16687,16692,16698,16699,16700,16703,16708,16712,16714,16715,16718,16719,16722,16724,16730,16731,16734,16735,16738,16740,16745,16746,16747,16749,16750,16751,16754,16756,16761,16762,16763,16765,16766,16767,16770,16772,16777,16778,16779,16781,16782,16783,16786,16788,16793,16794,16795,16797,16798,16799,16802,16804,16809,16810,16811,16813,16814,16815,16818,16820,16825,16826,16827,16829,16830,16831,16834,16836,16841,16842,16843,16845,16846,16847,16850,16852,16857,16858,16859,16861,16862,16863,16866,16868,16873,16874,16875,16876,16878,16879,16880,16881,16882,16883,16884,16886,16887,16888,16889,16890,16891,16892,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16910,16911,16912,16915,16916,16917,16918,16919,16920,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16933,16934,16935,16936,16937,16938,16939,16942,16943,16944,16947,16948,16949,16950,16951,16952,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16965,16966,16967,16968,16969,16970,16971,16974,16975,16976,16979,16980,16981,16982,16983,16984,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16997,16998,16999,17000,17002,17003,17004,17005,17006,17007,17008,17010,17011,17012,17013,17014,17015,17016,17017, +17018,17019,17021,17022,17023,17024,17025,17026,17027,17030,17031,17032,17035,17036,17037,17038,17039,17040,17041,17042,17043,17046,17047,17048,17051,17052,17053,17054,17055,17056,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17070,17071,17072,17075,17076,17077,17078,17079,17080,17081,17082,17083,17086,17087,17088,17091,17092,17093,17094,17095,17096,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17110,17111,17112,17115,17116,17117,17118,17119,17120,17121,17122,17123,17126,17127,17128,17131,17132,17133,17134,17135,17136,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17154,17155,17156,17159,17160,17161,17162,17163,17164,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17178,17179,17180,17183,17184,17185,17186,17187,17188,17190,17191,17192,17193,17194,17195,17196,17198,17199,17200,17201,17202,17204,17205,17206,17209,17210,17211,17212,17213,17214,17215,17218,17219,17220,17222,17223,17225,17226,17227,17228,17230,17231,17232,17233,17235,17236,17238,17239,17240,17242,17243,17244,17246,17247,17249,17250,17251,17252,17253,17254,17255,17258,17259,17260,17263,17264,17265,17266,17267,17268,17270,17271,17272,17273,17274,17275,17276,17278,17279,17280,17281,17282,17284,17285,17286,17289,17290,17291,17292,17293,17294,17295,17298,17299,17300,17302,17303,17305,17306,17307,17308,17309,17310,17311,17314,17315,17316,17318,17319,17322,17323,17324,17326,17327,17329,17330,17331,17332,17333,17334,17335,17338,17339,17340,17343,17344,17345,17346,17347,17348,17350,17351,17352,17353,17354,17355,17356,17358,17359,17360,17361,17362,17364,17365,17366,17369,17370,17371,17372,17373,17374,17375,17378,17379,17380,17382,17383,17385,17386,17387,17388,17389,17390,17391,17394,17395,17396,17398,17399,17402,17403,17404,17406,17407,17409,17410,17411,17412,17414,17416,17418,17419,17420,17422,17423,17425,17426,17427,17428,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17441,17443,17444,17446,17448,17450,17451,17452,17454,17455,17457,17459,17460,17462,17463,17464,17465,17466, +17467,17468,17470,17471,17472,17474,17475,17476,17478,17479,17482,17483,17484,17487,17488,17490,17491,17492,17493,17495,17497,17498,17499,17500,17502,17503,17504,17505,17507,17508,17510,17511,17512,17514,17515,17516,17517,17519,17521,17522,17523,17524,17526,17527,17528,17529,17530,17531,17532,17534,17535,17536,17537,17538,17539,17540,17542,17543,17544,17545,17546,17547,17548,17550,17551,17552,17554,17555,17556,17557,17559,17561,17562,17563,17564,17566,17567,17568,17569,17570,17571,17572,17574,17575,17576,17578,17579,17580,17581,17583,17585,17586,17587,17588,17590,17591,17592,17593,17594,17595,17596,17598,17599,17600,17601,17602,17603,17604,17606,17607,17608,17609,17610,17611,17612,17614,17615,17616,17618,17619,17620,17621,17623,17625,17626,17627,17628,17630,17631,17632,17633,17634,17635,17636,17638,17639,17640,17642,17643,17644,17645,17647,17649,17650,17651,17652,17654,17655,17656,17657,17658,17659,17660,17662,17663,17664,17665,17666,17667,17668,17670,17671,17672,17673,17674,17675,17676,17678,17679,17680,17682,17683,17684,17685,17687,17689,17690,17691,17692,17694,17695,17696,17697,17698,17699,17700,17702,17703,17704,17706,17707,17708,17709,17711,17713,17714,17715,17716,17718,17719,17720,17721,17722,17723,17724,17726,17727,17728,17729,17730,17731,17732,17734,17735,17736,17737,17738,17739,17740,17742,17743,17744,17746,17747,17748,17749,17751,17753,17754,17755,17756,17758,17759,17760,17761,17762,17763,17764,17766,17767,17768,17770,17771,17772,17773,17775,17777,17778,17779,17780,17782,17783,17784,17785,17786,17787,17788,17790,17791,17792,17793,17794,17795,17796,17798,17799,17800,17801,17802,17803,17804,17806,17807,17808,17810,17811,17812,17813,17815,17817,17818,17819,17820,17822,17823,17824,17825,17826,17827,17828,17830,17831,17832,17834,17835,17836,17837,17839,17841,17842,17843,17844,17846,17847,17848,17849,17850,17851,17852,17854,17855,17856,17857,17858,17859,17860,17862,17863,17864,17865,17866,17867,17868,17870,17871,17872,17873,17874,17875,17876,17877,17879,17883,17884,17887,17888,17890,17891,17892,17895,17900,17904, +17906,17907,17908,17911,17916,17920,17924,17932,17940,17946,17947,17948,17951,17956,17960,17962,17963,17964,17967,17972,17976,17980,17988,17994,17995,17996,17999,18004,18008,18012,18018,18019,18020,18023,18028,18032,18036,18042,18043,18044,18047,18052,18056,18060,18066,18067,18068,18071,18076,18080,18084,18090,18091,18092,18095,18100,18104,18108,18114,18115,18116,18119,18124,18128,18132,18138,18139,18140,18143,18148,18152,18156,18162,18164,18172,18178,18179,18180,18183,18188,18192,18193,18194,18195,18196,18198,18199,18200,18201,18202,18203,18204,18206,18207,18208,18209,18210,18211,18212,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18230,18231,18232,18235,18236,18237,18238,18239,18240,18241,18243,18244,18246,18247,18248,18250,18251,18252,18254,18255,18258,18259,18260,18263,18264,18265,18266,18267,18268,18269,18270,18271,18274,18275,18276,18279,18280,18281,18282,18283,18284,18285,18287,18288,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18302,18303,18304,18307,18308,18309,18310,18311,18312,18313,18314,18315,18318,18319,18320,18323,18324,18325,18326,18327,18328,18329,18331,18332,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18346,18347,18348,18351,18352,18353,18354,18355,18356,18357,18358,18359,18361,18362,18363,18364,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18378,18379,18380,18383,18384,18385,18386,18387,18388,18389,18390,18391,18394,18395,18396,18399,18400,18401,18402,18403,18404,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18418,18419,18420,18423,18424,18425,18426,18427,18428,18429,18430,18431,18434,18435,18436,18439,18440,18441,18442,18443,18444,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18458,18459,18460,18463,18464,18465,18466,18467,18468,18469,18470,18471,18474,18475,18476,18479,18480,18481,18482,18483,18484,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18502,18503,18504,18507,18508,18509,18510,18511,18512,18514,18515,18516,18517,18518,18519,18520,18521,18522, +18523,18526,18527,18528,18531,18532,18533,18534,18535,18536,18538,18539,18540,18541,18542,18543,18544,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18558,18559,18560,18563,18564,18565,18566,18567,18568,18569,18571,18575,18576,18579,18580,18581,18582,18583,18584,18585,18587,18588,18590,18591,18592,18594,18595,18596,18599,18603,18604,18607,18608,18610,18611,18614,18615,18616,18618,18619,18621,18622,18623,18624,18625,18627,18628,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18642,18643,18644,18647,18648,18649,18650,18651,18652,18654,18655,18656,18657,18658,18659,18660,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18674,18675,18676,18679,18680,18681,18682,18683,18685,18687,18691,18692,18695,18697,18698,18699,18700,18701,18703,18704,18706,18707,18708,18709,18710,18711,18713,18715,18719,18720,18723,18725,18726,18727,18728,18729,18731,18732,18734,18735,18736,18737,18738,18739,18740,18741,18743,18744,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18758,18759,18760,18763,18764,18765,18766,18767,18768,18770,18771,18772,18773,18774,18775,18776,18778,18779,18780,18781,18782,18783,18784,18785,18787,18791,18792,18795,18796,18797,18798,18799,18801,18803,18807,18808,18811,18813,18814,18815,18816,18817,18819,18820,18822,18823,18824,18825,18826,18827,18829,18831,18835,18836,18839,18841,18842,18843,18844,18845,18847,18848,18850,18851,18852,18853,18854,18855,18856,18857,18859,18860,18862,18863,18864,18865,18866,18867,18868,18869,18871,18874,18875,18876,18878,18879,18881,18882,18883,18884,18886,18887,18888,18889,18890,18891,18892,18893,18895,18898,18899,18900,18901,18902,18903,18904,18905,18907,18909,18911,18912,18914,18916,18918,18919,18920,18922,18923,18926,18927,18928,18931,18932,18933,18935,18936,18938,18939,18940,18943,18944,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18957,18959,18960,18962,18963,18964,18966,18967,18968,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18982,18983,18984,18986,18987,18988,18989,18991,18992,18994,18995,18996,18997,18998, +18999,19000,19001,19002,19003,19006,19007,19008,19010,19011,19012,19013,19015,19016,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19029,19031,19032,19034,19035,19036,19038,19039,19040,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19053,19055,19056,19058,19059,19060,19062,19063,19064,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19078,19079,19080,19082,19083,19084,19085,19087,19088,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19102,19103,19104,19106,19107,19108,19109,19111,19112,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19125,19127,19128,19130,19131,19132,19134,19135,19136,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19149,19151,19152,19154,19155,19156,19158,19159,19160,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19174,19175,19176,19178,19179,19180,19181,19183,19184,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19198,19199,19200,19202,19203,19204,19205,19207,19208,19210,19211,19212,19213,19214,19215,19216,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19230,19232,19236,19237,19238,19239,19241,19243,19248,19253,19254,19255,19257,19259,19264,19271,19279,19287,19293,19294,19295,19297,19299,19304,19309,19310,19311,19313,19315,19320,19327,19335,19341,19342,19343,19345,19347,19352,19359,19365,19366,19367,19369,19371,19376,19383,19389,19390,19391,19393,19395,19400,19407,19413,19414,19415,19417,19419,19424,19431,19437,19438,19439,19441,19443,19448,19455,19461,19462,19463,19465,19467,19472,19479,19485,19486,19487,19489,19491,19496,19503,19510,19512,19519,19525,19526,19527,19529,19531,19536,19542,19543,19546,19547,19550,19551,19552,19555,19557,19558,19559,19561,19562,19563,19566,19567,19568,19571,19574,19575,19578,19579,19582,19583,19584,19587,19590,19591,19594,19595,19598,19599,19600,19603,19606,19607,19610,19611,19614,19615,19616,19619,19622,19623,19626,19627,19630,19631,19632,19635,19638,19639,19642,19643,19646,19647,19648,19651,19654,19655,19658,19659,19662,19663,19664,19667,19670,19671,19674, +19675,19678,19679,19680,19683,19686,19687,19690,19691,19694,19695,19696,19699,19702,19703,19706,19707,19710,19711,19712,19715,19718,19719,19722,19723,19726,19727,19728,19731,19734,19735,19738,19739,19742,19743,19744,19747,19750,19751,19754,19755,19758,19759,19760,19763,19766,19767,19770,19771,19774,19775,19776,19779,19782,19783,19786,19787,19790,19791,19792,19795,19798,19799,19802,19803,19806,19807,19808,19811,19814,19815,19818,19819,19822,19823,19824,19827,19830,19831,19834,19835,19838,19839,19840,19843,19846,19847,19850,19851,19854,19855,19856,19859,19862,19863,19866,19867,19870,19871,19872,19875,19878,19879,19882,19883,19886,19887,19888,19891,19894,19895,19898,19899,19902,19903,19904,19907,19910,19911,19914,19915,19918,19919,19920,19923,19927,19928,19930,19931,19934,19935,19938,19939,19942,19943,19944,19947,19950,19951,19954,19955,19958,19959,19960,19963,19966,19967,19970,19971,19974,19975,19976,19979,19981,19982,19983,19984,19985,19986,19987,19990,19991,19992,19995,19996,19997,19998,19999,20001,20003,20008,20013,20014,20015,20017,20019,20024,20029,20030,20031,20033,20035,20040,20045,20046,20047,20049,20051,20056,20061,20062,20063,20065,20067,20072,20077,20078,20079,20081,20083,20088,20093,20094,20095,20097,20099,20104,20109,20110,20111,20113,20115,20120,20125,20126,20127,20129,20131,20136,20141,20142,20143,20145,20147,20152,20157,20158,20159,20161,20163,20168,20173,20174,20175,20177,20179,20184,20189,20190,20191,20193,20195,20200,20205,20206,20207,20209,20211,20216,20221,20222,20223,20225,20227,20232,20237,20238,20239,20241,20243,20248,20253,20254,20255,20257,20259,20264,20269,20270,20271,20273,20275,20280,20285,20286,20287,20289,20291,20296,20301,20302,20303,20305,20307,20312,20317,20318,20319,20321,20323,20328,20333,20334,20335,20337,20339,20344,20349,20350,20351,20353,20355,20360,20366,20367,20369,20373,20374,20375,20377,20379,20384,20389,20390,20391,20393,20395,20400,20405,20406,20407,20409,20411,20416,20422,20423,20424,20426,20427,20429,20431,20432,20434,20435,20436,20440,20448,20456,20464,20472,20480,20488, +20496,20504,20512,20520,20528,20536,20544,20552,20560,20568,20576,20584,20592,20600,20608,20616,20628,20636,20642,20644,20649,20650,20652,20654,20655,20656,20659,20662,20663,20667,20670,20671,20675,20682,20683,20687,20694,20695,20699,20706,20707,20711,20718,20719,20723,20730,20731,20735,20742,20743,20747,20754,20755,20759,20766,20767,20771,20778,20779,20783,20790,20791,20795,20800,20802,20803,20807,20808,20809,20810,20811,20813,20814,20815,20818,20819,20821,20822,20827,20835,20843,20851,20859,20867,20875,20883,20891,20899,20907,20915,20923,20931,20939,20947,20955,20963,20971,20979,20987,20995,21003,21015,21023,21029,21031,21039,21042,21047,21055,21067,21075,21083,21091,21099,21107,21115,21123,21131,21139,21147,21155,21163,21171,21179,21187,21195,21203,21211,21219,21227,21235,21241,21243,21249,21250,21253,21254,21257,21258,21259,21262,21264,21265,21266,21267,21268,21270,21275,21279,21280,21281,21282,21283,21284,21286,21291,21295,21296,21297,21298,21299,21300,21302,21307,21311,21312,21313,21314,21315,21316,21318,21323,21327,21328,21329,21330,21331,21332,21334,21339,21343,21344,21345,21346,21347,21348,21350,21355,21359,21361,21362,21363,21366,21369,21370,21372,21377,21378,21382,21387,21392,21393,21394,21396,21398,21403,21409,21410,21414,21419,21424,21425,21426,21428,21430,21435,21441,21442,21446,21451,21456,21457,21458,21460,21462,21467,21473,21474,21478,21483,21488,21489,21490,21492,21494,21499,21505,21506,21510,21515,21520,21521,21522,21524,21526,21531,21537,21538,21542,21546,21547,21550,21553,21554,21555,21558,21563,21567,21569,21570,21571,21574,21579,21583,21585,21586,21587,21590,21595,21599,21601,21602,21603,21606,21611,21615,21617,21618,21619,21622,21627,21631,21633,21634,21635,21638,21643,21647,21649,21650,21651,21654,21659,21663,21665,21666,21667,21670,21675,21679,21681,21682,21685,21686,21689,21691,21696,21698,21699,21701,21703,21705,21707,21715,21721,21723,21731,21737,21739,21745,21746,21750,21755,21760,21761,21762,21764,21766,21771,21777,21778,21781,21782,21785,21787,21793,21794,21798,21803,21808,21809,21811, +21815,21817,21819,21827,21837,21838,21841,21845,21846,21850,21855,21862,21863,21865,21871,21879,21887,21895,21903,21909,21910,21914,21919,21925,21926,21930,21935,21941,21942,21943,21946,21951,21955,21957,21958,21962,21967,21974,21975,21977,21983,21991,22002,22003,22007,22009,22010,22014,22019,22025,22026,22027,22029,22030,22034,22035,22037,22038,22039,22041,22042,22045,22046,22047,22050,22053,22054,22055,22058,22062,22063,22066,22070,22072,22073,22075,22079,22081,22082,22083,22086,22089,22090,22091,22093,22094,22095,22098,22099,22102,22103,22105,22106,22110,22111,22113,22114,22118,22119,22122,22126,22128,22129,22131,22132,22135,22136,22139,22140,22143,22144,22147,22148,22149,22151,22152,22157,22158,22160,22161,22164,22165,22167,22168,22169,22172,22173,22175,22176,22180,22181,22183,22184,22187,22188,22191,22192,22195,22196,22199,22200,22203,22205,22210,22211,22214,22217,22218,22220,22226,22227,22230,22233,22234,22236,22241,22242,22246,22250,22251,22254,22257,22259,22264,22265,22266,22268,22270,22275,22281,22282,22286,22291,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22314,22315,22316,22318,22319,22320,22322,22323,22324,22326,22327,22328,22329,22330,22331,22332,22334,22335,22336,22338,22339,22340,22342,22344,22346,22347,22348,22350,22351,22352,22353,22354,22356,22358,22360,22362,22363,22364,22366,22367,22368,22370,22371,22372,22374,22375,22376,22378,22379,22380,22382,22383,22384,22386,22387,22388,22390,22391,22392,22394,22395,22396,22398,22400,22402,22403,22404,22405,22406,22408,22409,22410,22412,22413,22414,22415,22416,22417,22418,22419,22420,22422,22423,22424,22426,22427,22428,22430,22431,22432,22434,22435,22436,22438,22439,22440,22442,22443,22444,22446,22447,22449,22450,22452,22454,22456,22457,22458,22460,22461,22462,22464,22465,22466,22468,22469,22470,22472,22473,22474,22476,22477,22478,22480,22481,22482,22484,22485,22486,22488,22489,22490,22492,22493,22494,22495,22496,22498,22500,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22522, +22523,22524,22526,22527,22528,22530,22531,22533,22535,22537,22540,22541,22542,22544,22545,22546,22548,22549,22550,22552,22553,22554,22555,22556,22558,22559,22560,22561,22564,22565,22566,22568,22569,22570,22572,22573,22574,22576,22577,22578,22580,22581,22582,22584,22585,22586,22587,22588,22589,22591,22592,22597,22598,22601,22602,22605,22606,22609,22610,22611,22612,22617,22618,22621,22622,22625,22626,22629,22630,22633,22634,22635,22636,22639,22640,22645,22646,22649,22650,22653,22654,22657,22658,22661,22662,22665,22666,22667,22668,22669,22671,22672,22675,22678,22679,22682,22685,22686,22689,22690,22691,22692,22697,22698,22699,22702,22703,22706,22707,22710,22711,22714,22715,22716,22719,22720,22723,22726,22727,22730,22731,22734,22735,22738,22739,22742,22743,22746,22747,22748,22749,22750,22751,22752,22753,22755,22756,22757,22759,22760,22761,22763,22764,22765,22767,22768,22769,22771,22772,22773,22775,22776,22778,22780,22781,22782,22783,22784,22785,22787,22788,22789,22792,22793,22794,22795,22796,22797,22799,22800,22801,22803,22804,22805,22806,22807,22808,22810,22811,22812,22814,22816,22817,22818,22819,22820,22822,22824,22826,22828,22830,22831,22835,22839,22843,22847,22851,22855,22862,22863,22867,22874,22875,22879,22886,22890,22891,22898,22902,22903,22907,22908,22910,22913,22914,22915,22916,22919,22920,22923,22924,22927,22928,22933,22934,22937,22938,22939,22940,22942,22944,22945,22948,22949,22952,22953,22957,22959,22960,22962,22963,22966,22968,22969,22971,22974,22976,22977,22979,22982,22984,22987,22988,22989,22990,22991,22992,22993,22995,22996,22997,22999,23000,23001,23002,23003,23004,23006,23007,23009,23010,23012,23013,23014,23015,23016,23018,23019,23020,23021,23022,23023,23024,23025,23026,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23050,23051,23052,23054,23055,23056,23058,23059,23061,23062,23064,23065,23066,23068,23069,23071,23073,23075,23077,23079,23081,23083,23085,23087,23089,23091,23093,23095,23097,23098,23100,23101,23103,23105,23110,23111, +23113,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23145,23147,23149,23150,23151,23152,23154,23155,23156,23158,23159,23160,23162,23163,23164,23165,23167,23168,23171,23174,23175,23176,23178,23179,23180,23181,23183,23184,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23199,23200,23201,23203,23205,23207,23208,23209,23212,23213,23214,23215,23217,23218,23219,23222,23223,23226,23227,23230,23231,23232,23235,23236,23239,23240,23243,23244,23247,23248,23251,23252,23255,23256,23259,23260,23263,23264,23267,23268,23271,23272,23273,23274,23276,23277,23278,23280,23281,23282,23284,23285,23286,23288,23289,23290,23292,23293,23294,23296,23297,23298,23300,23301,23302,23304,23305,23306,23307,23308,23309,23310,23311,23312,23314,23316,23317,23318,23320,23322,23323,23325,23326,23329,23330,23333,23334,23337,23338,23341,23342,23345,23346,23349,23350,23353,23354,23355,23357,23358,23359,23360,23363,23364,23369,23370,23374,23375,23376,23377,23381,23382,23383,23386,23387,23388,23391,23392,23393,23395,23396,23399,23400,23403,23404,23407,23408,23411,23412,23415,23416,23419,23420,23424,23427,23428,23429,23430,23431,23432,23434,23435,23436,23438,23440,23441,23443,23444,23445,23447,23449,23451,23455,23457,23464,23466,23467,23473,23475,23477,23479,23485,23486,23489,23490,23493,23496,23497,23500,23501,23505,23507,23509,23510,23511,23514,23515,23518,23520,23521,23524,23525,23529,23531,23532,23534,23535,23536,23538,23540,23542,23545,23546,23549,23550,23552,23557,23558,23559,23563,23564,23567,23569,23572,23575,23583,23585,23590,23594,23598,23601,23605,23609,23612,23613,23614,23616,23617,23620,23621,23623,23624,23625,23626,23627,23628,23630,23631,23632,23634,23635,23637,23638,23639,23642,23643,23646,23647,23649,23650,23651,23654,23655,23658,23659,23660,23661,23663,23664,23667,23668,23671,23672,23673,23675,23676,23677,23679,23680,23681,23683,23684,23685,23687,23688,23689,23691,23693,23695,23696,23699,23701,23702, +23705,23706,23710,23711,23712,23717,23718,23721,23722,23723,23727,23730,23733,23734,23735,23738,23739,23741,23743,23747,23751,23758,23762,23769,23772,23775,23776,23779,23780,23785,23786,23789,23790,23791,23793,23795,23803,23807,23810,23811,23814,23817,23819,23820,23824,23825,23827,23831,23832,23837,23838,23841,23843,23846,23848,23849,23851,23854,23855,23856,23857,23859,23860,23861,23863,23864,23865,23867,23868,23869,23871,23872,23873,23877,23881,23883,23887,23893,23896,23897,23899,23901,23902,23903,23904,23910,23911,23914,23915,23917,23918,23919,23922,23926,23927,23928,23929,23932,23933,23935,23936,23939,23943,23944,23946,23948,23949,23953,23954,23957,23958,23960,23961,23962,23964,23966,23968,23969,23970,23971,23977,23980,23982,23983,23987,23990,23991,23994,23995,23999,24002,24004,24005,24009,24012,24014,24015,24019,24022,24023,24024,24029,24032,24033,24036,24037,24041,24044,24045,24046,24047,24050,24051,24052,24053,24055,24058,24060,24061,24062,24063,24067,24068,24071,24072,24076,24078,24083,24085,24087,24091,24092,24097,24098,24102,24103,24104,24107,24108,24114,24115,24118,24120,24121,24124,24126,24127,24132,24136,24139,24140,24144,24146,24147,24152,24155,24156,24157,24159,24164,24167,24168,24169,24171,24172,24173,24175,24179,24183,24187,24188,24189,24191,24192,24193,24196,24197,24199,24203,24209,24211,24212,24213,24215,24216,24219,24220,24223,24224,24227,24228,24231,24232,24235,24236,24239,24240,24243,24244,24247,24248,24251,24252,24255,24258,24259,24262,24263,24266,24267,24270,24271,24274,24275,24278,24279,24282,24283,24286,24287,24290,24293,24294,24295,24298,24299,24302,24305,24306,24308,24311,24312,24313,24315,24316,24319,24320,24323,24324,24327,24328,24331,24332,24335,24336,24339,24340,24343,24344,24347,24348,24351,24352,24355,24358,24359,24360,24362,24364,24367,24370,24373,24374,24377,24378,24381,24382,24385,24386,24389,24390,24393,24394,24397,24398,24401,24402,24405,24406,24410,24412,24414,24418,24422,24426,24427,24434,24438,24442,24446,24450,24454,24458,24462,24466,24470,24474,24478,24479,24483,24487,24491, +24495,24499,24503,24511,24513,24517,24521,24525,24529,24533,24537,24541,24545,24549,24553,24557,24561,24565,24569,24573,24577,24581,24585,24589,24593,24597,24601,24605,24611,24612,24614,24617,24618,24621,24622,24625,24626,24629,24630,24633,24634,24636,24637,24640,24641,24644,24645,24648,24649,24651,24654,24656,24657,24659,24660,24666,24667,24668,24669,24670,24671,24672,24673,24675,24676,24677,24679,24680,24681,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24695,24696,24697,24698,24699,24700,24701,24703,24704,24705,24707,24708,24709,24711,24712,24713,24715,24716,24717,24719,24720,24721,24723,24724,24725,24727,24728,24729,24730,24731,24732,24734,24735,24736,24738,24739,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24753,24754,24755,24756,24757,24758,24759,24760,24762,24763,24764,24766,24767,24768,24770,24771,24772,24774,24775,24776,24778,24779,24780,24782,24783,24784,24786,24787,24788,24789,24790,24792,24793,24794,24795,24796,24797,24799,24800,24801,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24815,24816,24817,24818,24819,24820,24821,24823,24824,24825,24827,24828,24829,24831,24832,24833,24835,24836,24837,24839,24840,24841,24843,24844,24846,24848,24849,24850,24851,24853,24854,24857,24858,24859,24860,24865,24866,24867,24869,24870,24871,24872,24873,24877,24878,24879,24880,24881,24883,24884,24887,24888,24891,24892,24895,24896,24899,24900,24903,24904,24907,24908,24913,24914,24916,24918,24919,24921,24924,24926,24927,24932,24934,24935,24937,24940,24942,24943,24948,24950,24951,24953,24956,24958,24959,24963,24965,24967,24971,24975,24979,24983,24987,24991,24995,24999,25003,25007,25011,25015,25019,25023,25027,25031,25035,25036,25037,25039,25041,25045,25047,25054,25055,25062,25063,25067,25074,25075,25079,25083,25087,25091,25095,25099,25103,25107,25113,25115,25122,25123,25125,25126,25128,25129,25131,25134,25135,25136,25141,25142,25143,25146,25149,25150,25153,25154,25155,25156,25158,25161,25163,25164,25169,25173,25176,25177,25179,25182,25183,25186,25187,25190,25193,25194, +25195,25198,25199,25202,25203,25204,25207,25208,25213,25214,25215,25218,25219,25222,25225,25226,25230,25231,25232,25238,25239,25242,25246,25247,25250,25252,25257,25258,25261,25262,25265,25267,25270,25271,25272,25276,25279,25280,25285,25286,25287,25288,25289,25290,25292,25293,25294,25295,25296,25298,25299,25300,25301,25304,25308,25311,25316,25320,25323,25324,25325,25328,25332,25340,25341,25342,25344,25345,25346,25347,25350,25353,25354,25357,25358,25360,25361,25363,25366,25367,25369,25370,25372,25373,25377,25378,25380,25382,25383,25390,25393,25394,25396,25398,25402,25405,25411,25413,25415,25416,25418,25422,25425,25427,25428,25433,25434,25437,25442,25449,25450,25453,25454,25457,25458,25461,25462,25463,25464,25469,25470,25471,25472,25475,25476,25479,25480,25483,25486,25487,25489,25490,25491,25495,25496,25499,25502,25503,25504,25508,25509,25511,25513,25514,25516,25520,25521,25522,25523,25527,25528,25531,25533,25534,25535,25538,25540,25541,25544,25545,25548,25551,25557,25558,25559,25560,25563,25564,25567,25568,25571,25572,25575,25576,25579,25584,25589,25590,25591,25592,25595,25596,25599,25600,25603,25604,25607,25608,25611,25612,25615,25616,25619,25620,25623,25624,25627,25628,25629,25630,25632,25633,25634,25636,25637,25638,25640,25641,25642,25644,25645,25646,25648,25649,25650,25652,25653,25654,25656,25657,25658,25660,25661,25662,25663,25665,25669,25673,25677,25681,25685,25689,25693,25697,25702,25704,25709,25710,25713,25714,25715,25716,25720,25721,25724,25725,25727,25730,25732,25733,25736,25737,25740,25741,25744,25745,25747,25748,25749,25751,25752,25753,25755,25756,25757,25758,25759,25760,25761,25762,25763,25765,25767,25769,25771,25772,25774,25775,25778,25780,25781,25783,25784,25786,25787,25792,25796,25797,25798,25800,25801,25804,25805,25808,25809,25811,25812,25816,25820,25821,25822,25823,25826,25828,25829,25831,25834,25837,25838,25842,25844,25845,25846,25848,25849,25852,25853,25856,25857,25859,25860,25864,25868,25869,25870,25872,25873,25876,25877,25880,25881,25883,25884,25888,25892,25893,25894,25895,25898,25900,25901,25904, +25905,25908,25909,25913,25916,25917,25918,25920,25921,25924,25925,25928,25929,25932,25933,25937,25939,25945,25946,25948,25949,25950,25952,25953,25956,25957,25961,25963,25965,25966,25968,25969,25972,25974,25975,25980,25986,25987,25988,25989,25990,25991,25993,25995,25996,25997,25999,26000,26001,26003,26004,26005,26007,26008,26009,26011,26012,26013,26015,26016,26017,26019,26020,26021,26023,26024,26026,26029,26031,26032,26036,26038,26039,26040,26042,26043,26048,26049,26052,26053,26056,26057,26060,26061,26064,26065,26068,26069,26072,26073,26074,26075,26076,26077,26078,26079,26081,26083,26084,26085,26087,26088,26089,26091,26092,26093,26095,26096,26097,26099,26100,26101,26103,26104,26105,26107,26108,26109,26110,26111,26113,26115,26117,26118,26119,26125,26126,26128,26130,26136,26140,26144,26148,26152,26156,26160,26162,26163,26167,26170,26171,26177,26178,26180,26182,26188,26192,26196,26200,26204,26208,26212,26214,26215,26218,26223,26230,26231,26233,26234,26235,26238,26239,26242,26243,26248,26249,26250,26251,26256,26257,26258,26259,26264,26265,26268,26270,26271,26272,26273,26274,26275,26277,26278,26279,26281,26282,26283,26285,26286,26287,26289,26290,26291,26293,26294,26295,26297,26298,26299,26301,26302,26303,26305,26306,26307,26309,26311,26312,26313,26315,26316,26317,26319,26320,26321,26323,26324,26325,26327,26328,26329,26331,26332,26333,26335,26336,26337,26339,26340,26341,26343,26344,26345,26347,26348,26349,26351,26352,26353,26355,26356,26357,26359,26360,26361,26363,26364,26365,26367,26368,26369,26371,26372,26373,26375,26376,26377,26379,26380,26381,26382,26383,26384,26385,26387,26388,26389,26391,26392,26393,26395,26396,26397,26399,26400,26401,26403,26404,26405,26407,26408,26409,26411,26412,26413,26415,26416,26417,26419,26420,26421,26423,26424,26425,26427,26428,26429,26431,26432,26433,26435,26436,26437,26439,26440,26441,26443,26444,26445,26447,26448,26449,26451,26452,26453,26455,26456,26457,26459,26460,26461,26463,26464,26465,26467,26468,26469,26471,26472,26473,26475,26476,26477,26479,26480,26481,26483,26484,26485,26487,26488, +26489,26491,26492,26493,26494,26496,26500,26504,26508,26512,26516,26520,26524,26528,26532,26536,26540,26544,26548,26552,26556,26560,26564,26568,26572,26576,26580,26584,26588,26592,26596,26600,26604,26606,26607,26608,26609,26611,26612,26613,26615,26616,26617,26619,26620,26621,26623,26624,26625,26627,26628,26629,26631,26632,26633,26635,26636,26637,26639,26640,26641,26643,26644,26645,26647,26648,26649,26651,26652,26653,26655,26656,26657,26659,26660,26661,26663,26664,26665,26667,26668,26669,26671,26672,26673,26675,26676,26677,26679,26680,26681,26683,26684,26685,26687,26688,26689,26691,26692,26693,26695,26696,26697,26699,26700,26701,26703,26704,26705,26707,26708,26709,26711,26712,26713,26715,26716,26717,26718,26719,26720,26723,26724,26727,26728,26731,26732,26735,26736,26739,26740,26743,26744,26747,26748,26751,26752,26755,26756,26759,26760,26763,26764,26767,26768,26771,26772,26775,26776,26779,26780,26783,26784,26787,26788,26791,26792,26795,26796,26799,26800,26803,26804,26807,26808,26811,26812,26815,26816,26819,26820,26823,26824,26827,26828,26830,26832,26836,26840,26844,26848,26852,26856,26860,26864,26868,26872,26876,26880,26884,26888,26892,26896,26900,26904,26908,26912,26916,26920,26924,26928,26932,26936,26940,26942,26944,26948,26952,26956,26960,26964,26968,26972,26976,26980,26984,26988,26992,26996,27000,27004,27008,27012,27016,27020,27024,27028,27032,27036,27040,27044,27048,27052,27054,27055,27056,27058,27059,27062,27063,27066,27067,27070,27071,27075,27076,27079,27080,27083,27084,27087,27088,27091,27092,27095,27096,27099,27100,27103,27104,27107,27108,27112,27115,27116,27117,27118,27121,27122,27125,27127,27129,27131,27135,27138,27139,27143,27146,27157,27161,27162,27163,27165,27166,27167,27169,27170,27171,27174,27175,27178,27179,27182,27183,27186,27190,27193,27194,27197,27198,27201,27202,27205,27206,27209,27210,27213,27214,27217,27218,27221,27222,27225,27226,27229,27230,27233,27234,27237,27238,27241,27242,27243,27245,27246,27249,27250,27253,27254,27257,27258,27261,27262,27265,27266,27269,27270,27273,27274,27277,27278,27281, +27282,27285,27286,27289,27290,27293,27294,27297,27298,27301,27302,27305,27306,27309,27310,27313,27314,27317,27318,27321,27322,27323,27325,27326,27329,27330,27333,27334,27337,27338,27341,27342,27345,27346,27349,27350,27353,27354,27357,27358,27361,27362,27365,27366,27369,27370,27373,27374,27377,27378,27381,27382,27385,27386,27389,27390,27393,27394,27397,27398,27401,27402,27403,27405,27406,27407,27409,27410,27411,27414,27415,27418,27419,27422,27423,27426,27430,27433,27434,27437,27438,27441,27442,27445,27446,27449,27450,27453,27454,27457,27458,27461,27462,27465,27466,27469,27470,27473,27474,27477,27478,27481,27482,27483,27485,27486,27487,27489,27490,27491,27494,27495,27498,27499,27502,27503,27506,27510,27513,27514,27517,27518,27521,27522,27525,27526,27529,27530,27533,27534,27537,27538,27541,27542,27545,27546,27549,27550,27553,27554,27557,27558,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27574,27575,27576,27578,27579,27580,27582,27583,27584,27586,27588,27590,27592,27593,27594,27596,27597,27598,27600,27601,27602,27604,27605,27606,27608,27609,27610,27612,27613,27614,27616,27617,27618,27620,27621,27622,27624,27625,27626,27628,27629,27630,27632,27633,27634,27636,27637,27638,27640,27641,27642,27643,27645,27646,27649,27650,27653,27654,27657,27658,27661,27662,27665,27666,27669,27670,27673,27674,27677,27678,27681,27682,27685,27686,27689,27690,27693,27694,27697,27698,27701,27702,27705,27706,27709,27710,27713,27714,27717,27718,27721,27723,27725,27729,27733,27737,27741,27745,27749,27753,27757,27761,27765,27769,27773,27777,27781,27785,27789,27793,27797,27801,27802,27803,27804,27805,27806,27807,27808,27809,27811,27812,27813,27815,27816,27817,27819,27820,27821,27823,27824,27825,27826,27827,27828,27829,27831,27832,27833,27835,27836,27837,27839,27840,27841,27843,27845,27847,27848,27849,27850,27851,27852,27853,27855,27857,27859,27861,27863,27864,27865,27867,27868,27869,27871,27872,27873,27875,27876,27877,27879,27880,27881,27883,27884,27885,27887,27888,27889,27891,27892,27893,27895,27896,27897,27899,27901,27902, +27903,27904,27905,27906,27907,27909,27910,27911,27913,27914,27915,27916,27917,27919,27920,27921,27923,27924,27925,27927,27928,27929,27931,27932,27933,27935,27936,27937,27939,27940,27941,27943,27944,27945,27946,27948,27949,27951,27953,27954,27955,27957,27958,27959,27961,27962,27963,27965,27966,27967,27969,27970,27971,27973,27974,27975,27977,27978,27979,27981,27982,27983,27985,27986,27987,27989,27990,27991,27993,27995,27996,27997,27999,28002,28003,28004,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28019,28020,28021,28023,28024,28025,28027,28028,28030,28032,28034,28036,28037,28038,28039,28041,28042,28043,28045,28046,28047,28049,28050,28051,28053,28055,28056,28058,28059,28060,28061,28062,28063,28065,28066,28067,28069,28070,28071,28073,28074,28075,28077,28078,28079,28081,28083,28087,28088,28091,28092,28093,28094,28097,28098,28101,28102,28105,28106,28111,28112,28113,28114,28117,28118,28121,28122,28125,28126,28129,28130,28135,28136,28139,28140,28141,28142,28145,28146,28149,28150,28153,28154,28157,28158,28161,28167,28168,28171,28172,28173,28176,28177,28180,28181,28182,28185,28186,28191,28192,28193,28194,28197,28200,28201,28204,28205,28208,28209,28212,28215,28216,28219,28220,28221,28224,28225,28228,28229,28232,28233,28236,28237,28240,28244,28245,28246,28247,28250,28251,28252,28254,28255,28256,28258,28259,28260,28262,28263,28264,28266,28267,28268,28270,28271,28272,28273,28275,28276,28277,28278,28279,28282,28283,28284,28286,28287,28288,28289,28290,28291,28294,28295,28296,28298,28299,28300,28301,28302,28303,28305,28307,28308,28309,28311,28312,28313,28314,28315,28317,28319,28320,28321,28323,28325,28332,28336,28340,28344,28348,28352,28356,28357,28364,28368,28369,28376,28380,28381,28385,28392,28393,28397,28407,28408,28409,28410,28415,28416,28419,28420,28423,28424,28427,28428,28429,28430,28433,28434,28437,28439,28440,28442,28443,28446,28447,28450,28451,28454,28457,28460,28461,28464,28466,28467,28469,28472,28474,28475,28477,28480,28483,28485,28486,28488,28490,28491,28492,28494,28495,28496,28497,28498,28499, +28500,28501,28503,28504,28505,28506,28508,28509,28510,28511,28513,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28547,28548,28549,28551,28552,28553,28555,28556,28558,28560,28562,28563,28566,28567,28570,28572,28574,28576,28578,28580,28582,28584,28586,28588,28590,28592,28593,28596,28598,28599,28604,28605,28610,28612,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28642,28644,28645,28646,28648,28649,28652,28653,28655,28656,28657,28659,28660,28662,28663,28664,28667,28668,28669,28672,28673,28675,28676,28678,28679,28680,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28694,28695,28696,28698,28699,28700,28702,28704,28706,28707,28708,28709,28710,28711,28713,28714,28716,28717,28720,28721,28724,28725,28728,28731,28732,28735,28736,28739,28740,28743,28744,28747,28748,28751,28752,28755,28756,28759,28760,28763,28764,28768,28769,28770,28771,28772,28773,28774,28775,28777,28778,28779,28781,28782,28783,28785,28786,28787,28789,28790,28791,28793,28794,28795,28797,28798,28799,28801,28802,28803,28805,28806,28807,28808,28809,28811,28812,28813,28814,28815,28817,28819,28821,28822,28824,28825,28826,28829,28830,28833,28834,28837,28838,28841,28842,28845,28846,28849,28850,28853,28854,28856,28859,28860,28863,28864,28865,28866,28869,28874,28875,28876,28877,28878,28881,28884,28887,28888,28890,28891,28892,28895,28896,28899,28900,28903,28904,28907,28908,28911,28912,28915,28916,28919,28920,28923,28925,28926,28927,28928,28929,28931,28933,28935,28939,28943,28944,28946,28948,28952,28956,28961,28963,28968,28974,28976,28981,28982,28985,28986,28990,28994,28995,28998,28999,29002,29005,29006,29008,29009,29012,29013,29016,29018,29019,29022,29023,29026,29029,29031,29032,29033,29035,29036,29037,29039,29041,29042,29045,29046,29051,29053,29054,29060,29063,29064,29066,29068,29071,29076,29082,29084,29085,29089, +29093,29098,29102,29106,29110,29111,29114,29115,29118,29119,29121,29123,29124,29125,29127,29128,29129,29131,29132,29133,29136,29137,29140,29141,29144,29145,29148,29149,29152,29153,29156,29159,29160,29163,29164,29167,29168,29170,29171,29172,29174,29175,29176,29178,29179,29180,29182,29183,29184,29186,29187,29188,29190,29192,29195,29196,29197,29198,29200,29201,29202,29205,29211,29212,29213,29214,29217,29218,29224,29225,29228,29229,29230,29233,29236,29240,29244,29248,29252,29253,29257,29266,29271,29275,29276,29279,29280,29281,29282,29285,29286,29292,29296,29304,29305,29308,29309,29312,29314,29319,29320,29322,29323,29328,29331,29332,29333,29334,29338,29341,29344,29346,29347,29349,29352,29354,29355,29356,29358,29359,29360,29362,29363,29364,29366,29367,29368,29370,29371,29372,29374,29378,29384,29388,29390,29394,29395,29397,29398,29400,29403,29404,29405,29409,29412,29413,29414,29416,29417,29420,29421,29426,29427,29428,29430,29431,29435,29436,29440,29441,29443,29444,29446,29447,29449,29450,29453,29454,29457,29458,29459,29461,29463,29465,29466,29467,29472,29474,29477,29479,29484,29485,29488,29489,29492,29496,29497,29500,29502,29503,29506,29509,29511,29516,29517,29520,29523,29524,29526,29530,29531,29534,29535,29538,29541,29542,29543,29545,29548,29550,29551,29552,29553,29556,29557,29558,29559,29564,29567,29568,29571,29572,29573,29575,29582,29584,29588,29591,29592,29593,29594,29597,29604,29608,29613,29616,29618,29619,29621,29623,29628,29631,29635,29639,29640,29641,29643,29648,29651,29654,29655,29656,29660,29663,29666,29667,29668,29670,29671,29672,29676,29680,29684,29686,29687,29688,29690,29691,29692,29694,29695,29700,29704,29706,29710,29711,29712,29715,29716,29719,29720,29723,29724,29727,29728,29731,29732,29735,29736,29739,29740,29743,29744,29747,29748,29751,29752,29753,29756,29757,29760,29761,29764,29765,29768,29769,29772,29773,29776,29777,29780,29781,29784,29785,29788,29789,29790,29793,29796,29797,29800,29801,29802,29807,29810,29811,29812,29815,29816,29819,29820,29823,29824,29827,29828,29831,29832,29835,29836,29839,29840,29843, +29844,29847,29848,29851,29852,29853,29856,29857,29859,29860,29863,29865,29868,29869,29870,29873,29874,29877,29878,29881,29882,29885,29886,29889,29890,29893,29894,29897,29898,29901,29902,29905,29909,29911,29913,29917,29921,29928,29929,29933,29937,29941,29945,29949,29953,29957,29961,29965,29969,29973,29980,29984,29988,29992,29996,30000,30004,30010,30012,30014,30018,30022,30026,30030,30034,30038,30042,30046,30050,30054,30058,30062,30066,30070,30074,30078,30082,30086,30090,30094,30098,30102,30111,30112,30113,30114,30117,30118,30121,30122,30125,30126,30129,30130,30134,30135,30138,30139,30142,30143,30146,30147,30149,30152,30154,30155,30159,30160,30161,30165,30166,30167,30168,30170,30171,30172,30174,30175,30176,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30190,30191,30192,30193,30194,30195,30196,30198,30199,30200,30202,30203,30204,30206,30207,30208,30210,30211,30212,30214,30215,30216,30218,30219,30220,30222,30223,30224,30225,30226,30227,30228,30229,30231,30232,30233,30235,30236,30237,30238,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30252,30253,30254,30255,30256,30257,30259,30260,30261,30263,30264,30265,30267,30268,30269,30271,30272,30273,30275,30276,30277,30279,30280,30281,30283,30284,30285,30286,30287,30288,30289,30290,30291,30294,30295,30296,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30310,30311,30312,30313,30314,30315,30316,30318,30319,30320,30322,30323,30324,30326,30327,30328,30330,30331,30332,30334,30335,30336,30338,30339,30340,30341,30343,30344,30345,30346,30347,30349,30350,30352,30353,30354,30359,30360,30361,30362,30365,30366,30368,30370,30371,30372,30373,30374,30378,30379,30380,30383,30384,30387,30388,30391,30392,30395,30396,30399,30400,30403,30404,30407,30408,30409,30410,30413,30415,30418,30420,30421,30423,30428,30429,30431,30434,30436,30437,30439,30444,30445,30447,30450,30452,30453,30455,30460,30462,30464,30468,30472,30476,30480,30484,30488,30492,30496,30500,30504,30508,30512,30516,30520,30524,30528,30532,30534,30535,30536,30538,30540,30542,30548, +30549,30556,30557,30564,30568,30569,30576,30580,30584,30588,30592,30596,30600,30604,30608,30610,30616,30617,30621,30622,30624,30626,30627,30629,30632,30635,30636,30637,30638,30641,30644,30645,30646,30649,30650,30653,30655,30656,30658,30663,30664,30666,30670,30674,30675,30677,30680,30681,30684,30685,30688,30689,30690,30693,30696,30697,30700,30703,30704,30707,30708,30709,30710,30713,30716,30717,30720,30721,30722,30725,30731,30732,30733,30737,30740,30741,30745,30748,30751,30753,30754,30757,30758,30762,30765,30768,30771,30772,30775,30779,30780,30781,30782,30785,30786,30787,30788,30789,30790,30791,30793,30795,30796,30798,30799,30800,30803,30807,30812,30815,30819,30822,30823,30824,30827,30831,30837,30838,30839,30841,30842,30843,30845,30848,30849,30850,30853,30854,30858,30859,30861,30864,30865,30866,30868,30870,30871,30873,30874,30877,30879,30884,30885,30889,30890,30893,30895,30897,30902,30910,30912,30913,30915,30916,30917,30922,30927,30928,30929,30930,30934,30937,30945,30946,30949,30950,30953,30954,30957,30958,30963,30964,30965,30966,30971,30972,30975,30976,30979,30980,30981,30984,30985,30986,30988,30992,30995,30996,30997,31000,31003,31004,31006,31007,31009,31010,31012,31015,31017,31018,31019,31024,31027,31028,31029,31030,31032,31033,31036,31038,31039,31042,31043,31047,31052,31053,31054,31059,31060,31063,31064,31067,31068,31071,31072,31075,31076,31080,31083,31085,31086,31091,31092,31095,31096,31099,31100,31103,31104,31107,31108,31111,31112,31115,31116,31119,31120,31123,31125,31126,31127,31129,31130,31131,31133,31134,31135,31137,31138,31139,31141,31142,31143,31145,31146,31147,31149,31150,31151,31153,31154,31155,31157,31158,31159,31162,31166,31170,31174,31178,31182,31186,31190,31194,31197,31203,31205,31206,31209,31210,31215,31216,31218,31219,31222,31223,31225,31228,31230,31231,31234,31235,31238,31239,31242,31246,31247,31248,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31262,31264,31266,31268,31269,31271,31272,31273,31276,31278,31279,31281,31283,31284,31288,31291,31293,31294,31295,31298,31299,31302,31303, +31306,31307,31311,31312,31315,31317,31318,31319,31321,31324,31326,31327,31329,31332,31333,31334,31337,31341,31342,31343,31346,31347,31350,31351,31354,31355,31359,31360,31363,31365,31366,31367,31370,31371,31374,31375,31378,31379,31383,31384,31387,31389,31390,31391,31393,31396,31398,31399,31402,31403,31406,31407,31410,31413,31414,31415,31418,31419,31422,31423,31426,31427,31430,31431,31434,31440,31441,31442,31445,31446,31447,31450,31451,31454,31455,31458,31461,31462,31464,31466,31467,31469,31471,31476,31479,31484,31485,31486,31487,31488,31490,31491,31492,31493,31494,31496,31497,31498,31500,31501,31502,31504,31505,31506,31508,31509,31510,31512,31513,31514,31516,31517,31518,31521,31522,31524,31527,31529,31530,31533,31537,31539,31543,31545,31549,31553,31557,31561,31565,31569,31572,31573,31574,31575,31576,31578,31579,31580,31581,31582,31584,31585,31586,31588,31589,31590,31592,31593,31594,31596,31597,31598,31600,31601,31602,31604,31605,31606,31610,31611,31612,31618,31619,31620,31625,31627,31631,31633,31637,31641,31645,31649,31653,31657,31662,31663,31666,31670,31671,31672,31677,31679,31683,31685,31689,31693,31697,31701,31705,31709,31714,31715,31719,31722,31730,31731,31734,31735,31738,31739,31742,31743,31744,31745,31750,31751,31752,31753,31758,31759,31760,31761,31765,31768,31769,31770,31771,31772,31774,31775,31776,31778,31779,31780,31782,31783,31784,31786,31787,31788,31790,31791,31792,31794,31795,31796,31798,31799,31800,31802,31803,31804,31806,31808,31809,31810,31812,31813,31814,31816,31817,31818,31820,31821,31822,31824,31825,31826,31828,31829,31830,31832,31833,31834,31836,31837,31838,31840,31841,31842,31844,31845,31846,31848,31849,31850,31852,31853,31854,31856,31857,31858,31860,31861,31862,31864,31865,31866,31868,31869,31870,31872,31873,31874,31876,31878,31880,31881,31882,31884,31885,31886,31888,31889,31890,31892,31893,31894,31896,31897,31898,31900,31901,31902,31904,31905,31906,31908,31909,31910,31912,31913,31914,31916,31917,31918,31920,31921,31922,31924,31925,31926,31928,31929,31930,31932,31933,31934,31936,31937,31938,31940, +31941,31942,31944,31945,31946,31948,31949,31950,31952,31953,31954,31956,31957,31958,31960,31961,31962,31964,31965,31966,31968,31969,31970,31972,31973,31974,31976,31977,31978,31980,31981,31982,31984,31985,31986,31988,31990,31993,31997,32001,32005,32009,32013,32017,32021,32025,32029,32033,32037,32041,32045,32049,32053,32057,32061,32065,32069,32073,32077,32081,32085,32089,32093,32097,32104,32105,32106,32108,32109,32110,32112,32113,32114,32116,32117,32118,32120,32121,32122,32124,32125,32126,32128,32129,32130,32132,32133,32134,32136,32137,32138,32140,32141,32142,32144,32145,32146,32148,32149,32150,32152,32153,32154,32156,32157,32158,32160,32161,32162,32164,32165,32166,32168,32169,32170,32172,32173,32174,32176,32177,32178,32180,32181,32182,32184,32185,32186,32188,32189,32190,32192,32193,32194,32196,32197,32198,32200,32201,32202,32204,32205,32206,32208,32209,32210,32212,32214,32217,32218,32221,32222,32225,32226,32229,32230,32233,32234,32237,32238,32241,32242,32245,32246,32249,32250,32253,32254,32257,32258,32261,32262,32265,32266,32269,32270,32273,32274,32277,32278,32281,32282,32285,32286,32289,32290,32293,32294,32297,32298,32301,32302,32305,32306,32309,32310,32313,32314,32317,32318,32321,32322,32326,32329,32333,32337,32341,32345,32349,32353,32357,32361,32365,32369,32373,32377,32381,32385,32389,32393,32397,32401,32405,32409,32413,32417,32421,32425,32429,32433,32441,32445,32449,32453,32457,32461,32465,32469,32473,32477,32481,32485,32489,32493,32497,32501,32505,32509,32513,32517,32521,32525,32529,32533,32537,32541,32545,32553,32554,32555,32558,32559,32562,32563,32566,32567,32570,32571,32573,32574,32577,32578,32581,32582,32585,32586,32589,32590,32593,32594,32597,32598,32601,32602,32605,32606,32609,32612,32613,32614,32616,32619,32620,32623,32624,32626,32630,32634,32638,32639,32642,32647,32652,32661,32662,32664,32665,32666,32668,32669,32670,32672,32673,32676,32677,32680,32681,32685,32689,32693,32694,32697,32698,32701,32702,32705,32706,32709,32710,32713,32714,32717,32718,32721,32722,32725,32726,32729,32730,32733,32734,32737,32741, +32742,32745,32746,32749,32750,32753,32754,32757,32758,32761,32762,32765,32766,32769,32770,32773,32774,32777,32778,32781,32782,32785,32786,32789,32790,32793,32794,32797,32798,32801,32802,32805,32806,32809,32810,32813,32814,32817,32821,32822,32825,32826,32829,32830,32833,32834,32837,32838,32841,32842,32845,32846,32849,32850,32853,32854,32857,32858,32861,32862,32865,32866,32869,32870,32873,32874,32877,32878,32881,32882,32885,32886,32889,32890,32893,32894,32897,32901,32902,32904,32905,32906,32908,32909,32910,32912,32913,32916,32917,32920,32921,32925,32929,32933,32934,32937,32938,32941,32942,32945,32946,32949,32950,32953,32954,32957,32958,32961,32962,32965,32966,32969,32970,32973,32974,32977,32981,32982,32984,32985,32986,32988,32989,32990,32992,32993,32996,32997,33000,33001,33005,33009,33013,33014,33017,33018,33021,33022,33025,33026,33029,33030,33033,33034,33037,33038,33041,33042,33045,33046,33049,33050,33053,33054,33057,33059,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33075,33076,33077,33079,33080,33081,33083,33085,33087,33089,33091,33093,33094,33095,33097,33098,33099,33101,33102,33103,33105,33106,33107,33109,33110,33111,33113,33114,33115,33117,33118,33119,33121,33122,33123,33125,33126,33127,33129,33130,33131,33133,33134,33135,33137,33141,33142,33145,33146,33149,33150,33153,33154,33157,33158,33161,33162,33165,33166,33169,33170,33173,33174,33177,33178,33181,33182,33185,33186,33189,33190,33193,33194,33197,33198,33201,33202,33205,33206,33209,33210,33213,33214,33217,33222,33226,33230,33234,33238,33242,33246,33250,33254,33258,33262,33266,33270,33274,33278,33282,33286,33290,33294,33300,33301,33302,33304,33305,33306,33308,33309,33312,33313,33316,33317,33320,33321,33324,33325,33326,33328,33329,33332,33333,33336,33337,33341,33344,33345,33346,33349,33350,33353,33357,33361,33362,33365,33366,33369,33370,33373,33374,33377,33378,33381,33382,33385,33386,33389,33390,33393,33394,33397,33400,33401,33402,33404,33405,33406,33409,33410,33413,33414,33417,33418,33421,33422,33424,33425,33426,33429,33430,33433, +33434,33437,33438,33441,33444,33445,33446,33448,33449,33453,33457,33460,33461,33464,33465,33468,33469,33472,33473,33476,33477,33480,33481,33484,33485,33488,33489,33492,33493,33497,33500,33501,33502,33504,33505,33506,33508,33509,33512,33513,33516,33517,33520,33521,33524,33525,33526,33528,33529,33532,33533,33536,33537,33541,33544,33545,33546,33549,33550,33553,33557,33561,33562,33565,33566,33569,33570,33573,33574,33577,33578,33581,33582,33585,33586,33589,33590,33593,33594,33597,33600,33601,33602,33604,33605,33606,33609,33610,33613,33614,33617,33618,33621,33622,33624,33625,33626,33629,33630,33633,33634,33637,33638,33641,33644,33645,33646,33648,33649,33653,33657,33660,33661,33664,33665,33668,33669,33672,33673,33676,33677,33680,33681,33684,33685,33688,33689,33692,33693,33697,33700,33701,33703,33704,33706,33709,33712,33715,33718,33719,33721,33724,33727,33733,33734,33737,33746,33749,33752,33755,33758,33761,33764,33767,33770,33775,33776,33778,33779,33782,33785,33788,33791,33793,33794,33797,33800,33803,33808,33809,33811,33820,33823,33826,33829,33832,33835,33838,33841,33844 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "Direct" + Normals: *101547 { + a: -0.470994740724564,0.871261239051819,-0.138085916638374,-0.614458560943604,0.766919910907745,-0.185133650898933,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.503572523593903,0.83924525976181,-0.205139130353928,-0.614458560943604,0.766919910907745,-0.185133650898933,-0.725436389446259,0.651505827903748,-0.221995964646339,-0.749297738075256,0.499604135751724,-0.434682220220566,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.749297738075256,0.499604135751724,-0.434682220220566,-0.56304407119751,0.312230855226517,-0.76517528295517,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.5771524310112,0.670471370220184,-0.466222256422043,-0.503572523593903,0.83924525976181,-0.205139130353928,-0.694932818412781,0.630986988544464,-0.344853550195694,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.56304407119751,0.312230855226517,-0.76517528295517,-0.233628481626511,0.167796745896339,-0.957737982273102,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.305580884218216,0.0128882080316544,-0.952078819274902,-0.5771524310112,0.670471370220184,-0.466222256422043,-0.643498718738556,0.38064056634903,-0.664094865322113,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.126893103122711,0.143671616911888,-0.981456398963928,-0.149451524019241,-0.0228389631956816,-0.988505244255066,-0.305580884218216,0.0128882080316544,-0.952078819274902,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.233628481626511,0.167796745896339,-0.957737982273102,-0.119221441447735,0.174641504883766,-0.977387607097626,-0.126893103122711,0.143671616911888,-0.981456398963928,-0.2625652551651,0.134936690330505,-0.955432593822479,-0.126893103122711,0.143671616911888,-0.981456398963928,-0.119221441447735,0.174641504883766,-0.977387607097626,5.33684252346234e-09,0.228196457028389,-0.973615169525146,9.89053727806777e-09,0.164029449224472,-0.98645544052124,-0.149451524019241,-0.0228389631956816,-0.988505244255066, +-0.126893103122711,0.143671616911888,-0.981456398963928,9.89053727806777e-09,0.164029449224472,-0.98645544052124,-4.72001815410295e-08,0.0171858314424753,-0.999852299690247,-4.72001815410295e-08,0.0171858314424753,-0.999852299690247,9.89053727806777e-09,0.164029449224472,-0.98645544052124,0.126882791519165,0.143672123551369,-0.981457591056824,0.149441406130791,-0.0226289536803961,-0.988511621952057,9.89053727806777e-09,0.164029449224472,-0.98645544052124,5.33684252346234e-09,0.228196457028389,-0.973615169525146,0.101520083844662,0.215626627206802,-0.971184253692627,0.126882791519165,0.143672123551369,-0.981457591056824,0.126882791519165,0.143672123551369,-0.981457591056824,0.101520083844662,0.215626627206802,-0.971184253692627,0.228503495454788,0.206113621592522,-0.951474249362946,0.262518882751465,0.134894013404846,-0.955451488494873,0.305748820304871,0.0136532429605722,-0.952014327049255,0.149441406130791,-0.0226289536803961,-0.988511621952057,0.126882791519165,0.143672123551369,-0.981457591056824,0.262518882751465,0.134894013404846,-0.955451488494873,0.262518882751465,0.134894013404846,-0.955451488494873,0.228503495454788,0.206113621592522,-0.951474249362946,0.646105945110321,0.275598257780075,-0.711753189563751,0.643477261066437,0.380538463592529,-0.664174437522888,0.576948702335358,0.670839309692383,-0.465945065021515,0.305748820304871,0.0136532429605722,-0.952014327049255,0.262518882751465,0.134894013404846,-0.955451488494873,0.643477261066437,0.380538463592529,-0.664174437522888,0.694945335388184,0.630982100963593,-0.344836980104446,0.503506004810333,0.839314520359039,-0.205019220709801,0.576948702335358,0.670839309692383,-0.465945065021515,0.643477261066437,0.380538463592529,-0.664174437522888,0.81668496131897,0.377242684364319,-0.436707586050034,0.694945335388184,0.630982100963593,-0.344836980104446,0.643477261066437,0.380538463592529,-0.664174437522888,0.646105945110321,0.275598257780075,-0.711753189563751,0.694945335388184,0.630982100963593,-0.344836980104446,0.81668496131897,0.377242684364319,-0.436707586050034, +0.852208018302917,0.498345047235489,-0.159353509545326,0.614503026008606,0.766903638839722,-0.185053899884224,0.503506004810333,0.839314520359039,-0.205019220709801,0.694945335388184,0.630982100963593,-0.344836980104446,0.614503026008606,0.766903638839722,-0.185053899884224,0.470972239971161,0.871293902397156,-0.137956783175468,0.427262783050537,0.802204430103302,0.417030513286591,0.475550502538681,0.774060308933258,0.417950212955475,0.430817276239395,0.666007578372955,0.60895836353302,0.443712711334229,0.651345014572144,0.615523099899292,0.475550502538681,0.774060308933258,0.417950212955475,0.529205918312073,0.714222252368927,0.45806947350502,0.4903504550457,0.657187819480896,0.572416543960571,0.430817276239395,0.666007578372955,0.60895836353302,0.430817276239395,0.666007578372955,0.60895836353302,0.4903504550457,0.657187819480896,0.572416543960571,0.0168645158410072,0.671300053596497,0.740993797779083,0.00872011017054319,0.514292359352112,0.857570588588715,0.443712711334229,0.651345014572144,0.615523099899292,0.430817276239395,0.666007578372955,0.60895836353302,0.00872011017054319,0.514292359352112,0.857570588588715,0.00460542785003781,0.423136234283447,0.906054377555847,-0.409931153059006,0.829041004180908,0.38032540678978,-0.426372587680817,0.802807927131653,0.416780292987823,-0.473750680685043,0.77540510892868,0.417501211166382,-0.569953143596649,0.650683522224426,0.501761376857758,-0.473750680685043,0.77540510892868,0.417501211166382,-0.506949722766876,0.730726659297943,0.457209646701813,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.569953143596649,0.650683522224426,0.501761376857758,-0.409931153059006,0.829041004180908,0.38032540678978,-0.569953143596649,0.650683522224426,0.501761376857758,-0.650812745094299,0.423960298299789,0.62984162569046,-0.54758632183075,0.632495105266571,0.54781299829483,-0.569953143596649,0.650683522224426,0.501761376857758,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.650812745094299,0.423960298299789,0.62984162569046, +-0.650812745094299,0.423960298299789,0.62984162569046,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.808794856071472,0.325524985790253,0.489779770374298,-0.707225739955902,0.546885251998901,0.448049247264862,-0.54758632183075,0.632495105266571,0.54781299829483,-0.650812745094299,0.423960298299789,0.62984162569046,-0.808794856071472,0.325524985790253,0.489779770374298,-0.921597719192505,0.372494578361511,-0.109112277626991,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.855772316455841,0.283412486314774,-0.432817459106445,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.684337973594666,0.256407231092453,-0.682595729827881,-0.855772316455841,0.283412486314774,-0.432817459106445,-0.837144434452057,0.204903393983841,-0.507152616977692,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.117432110011578,0.602196216583252,-0.789664149284363,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.225590720772743,0.226422384381294,-0.947545170783997,-0.684337973594666,0.256407231092453,-0.682595729827881,-0.618399560451508,0.239008963108063,-0.748636603355408,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.0707771703600883,0.324491381645203,-0.943237006664276,-0.092989906668663,0.235090315341949,-0.967515170574188,-0.225590720772743,0.226422384381294,-0.947545170783997,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.0155662829056382,0.633758544921875,-0.773374259471893, +-0.0707771703600883,0.324491381645203,-0.943237006664276,-0.184807598590851,0.304117113351822,-0.934536755084991,-0.117432110011578,0.602196216583252,-0.789664149284363,-0.0707771703600883,0.324491381645203,-0.943237006664276,-0.0155662829056382,0.633758544921875,-0.773374259471893,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,9.58223633773514e-09,0.335694789886475,-0.941970765590668,-0.092989906668663,0.235090315341949,-0.967515170574188,-0.0707771703600883,0.324491381645203,-0.943237006664276,9.58223633773514e-09,0.335694789886475,-0.941970765590668,5.33684252346234e-09,0.228196457028389,-0.973615169525146,5.33684252346234e-09,0.228196457028389,-0.973615169525146,9.58223633773514e-09,0.335694789886475,-0.941970765590668,0.0707716569304466,0.324493885040283,-0.943236589431763,0.101520083844662,0.215626627206802,-0.971184253692627,9.58223633773514e-09,0.335694789886475,-0.941970765590668,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,0.0155651671811938,0.633765578269958,-0.773368537425995,0.0707716569304466,0.324493885040283,-0.943236589431763,0.0707716569304466,0.324493885040283,-0.943236589431763,0.0155651671811938,0.633765578269958,-0.773368537425995,0.117442525923252,0.602194428443909,-0.789663910865784,0.184801071882248,0.304125338792801,-0.934535264968872,0.228503495454788,0.206113621592522,-0.951474249362946,0.101520083844662,0.215626627206802,-0.971184253692627,0.0707716569304466,0.324493885040283,-0.943236589431763,0.184801071882248,0.304125338792801,-0.934535264968872,0.184801071882248,0.304125338792801,-0.934535264968872,0.117442525923252,0.602194428443909,-0.789663910865784,0.544002830982208,0.334691017866135,-0.769443213939667,0.618378937244415,0.239055067300797,-0.748638868331909,0.228503495454788,0.206113621592522,-0.951474249362946,0.184801071882248,0.304125338792801,-0.934535264968872,0.618378937244415,0.239055067300797,-0.748638868331909,0.646105945110321,0.275598257780075,-0.711753189563751,0.837141573429108,0.204977050423622,-0.507127583026886,0.81668496131897,0.377242684364319,-0.436707586050034, +0.646105945110321,0.275598257780075,-0.711753189563751,0.618378937244415,0.239055067300797,-0.748638868331909,0.771394431591034,0.0944221168756485,-0.629313170909882,0.837141573429108,0.204977050423622,-0.507127583026886,0.618378937244415,0.239055067300797,-0.748638868331909,0.544002830982208,0.334691017866135,-0.769443213939667,0.837141573429108,0.204977050423622,-0.507127583026886,0.771394431591034,0.0944221168756485,-0.629313170909882,0.892970025539398,-0.0762939229607582,-0.443603217601776,0.951014399528503,0.230790764093399,-0.205687284469604,0.81668496131897,0.377242684364319,-0.436707586050034,0.837141573429108,0.204977050423622,-0.507127583026886,0.951014399528503,0.230790764093399,-0.205687284469604,0.852208018302917,0.498345047235489,-0.159353509545326,0.852208018302917,0.498345047235489,-0.159353509545326,0.951014399528503,0.230790764093399,-0.205687284469604,0.808700859546661,0.325703829526901,0.489816308021545,0.707025408744812,0.547127425670624,0.448070019483566,0.951014399528503,0.230790764093399,-0.205687284469604,0.892970025539398,-0.0762939229607582,-0.443603217601776,0.914044320583344,-0.357191115617752,0.192191600799561,0.808700859546661,0.325703829526901,0.489816308021545,0.808700859546661,0.325703829526901,0.489816308021545,0.914044320583344,-0.357191115617752,0.192191600799561,0.821652591228485,-0.227793514728546,0.52249139547348,0.650942742824554,0.423487991094589,0.630024969577789,0.54740297794342,0.632678389549255,0.547784686088562,0.707025408744812,0.547127425670624,0.448070019483566,0.808700859546661,0.325703829526901,0.489816308021545,0.650942742824554,0.423487991094589,0.630024969577789,0.40797546505928,-0.907143175601959,0.103186041116714,0.882606685161591,-0.22201332449913,0.414385885000229,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.328743159770966,-0.944285452365875,0.0159010514616966,0.40797546505928,-0.907143175601959,0.103186041116714,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.429949104785919,-0.892269849777222,-0.137833878397942,0.40797546505928,-0.907143175601959,0.103186041116714, +0.328743159770966,-0.944285452365875,0.0159010514616966,-0.00453746924176812,-0.959409117698669,0.281981498003006,-0.017802894115448,-0.888382017612457,0.458759725093842,0.712423324584961,0.262680470943451,0.650731921195984,0.40797546505928,-0.907143175601959,0.103186041116714,-0.017802894115448,-0.888382017612457,0.458759725093842,0.00481855915859342,-0.0946849584579468,0.995495736598969,0.00481855915859342,-0.0946849584579468,0.995495736598969,-0.017802894115448,-0.888382017612457,0.458759725093842,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.6987544298172,0.276502400636673,0.659764111042023,-0.017802894115448,-0.888382017612457,0.458759725093842,-0.00453746924176812,-0.959409117698669,0.281981498003006,-0.339124590158463,-0.940390467643738,0.0256970208138227,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.339124590158463,-0.940390467643738,0.0256970208138227,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.433865398168564,-0.891728520393372,0.128767356276512,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.870673716068268,0.171584844589233,-0.460962057113647, +-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.870673716068268,0.171584844589233,-0.460962057113647,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.771409869194031,0.0944070294499397,-0.629296541213989,-0.754664897918701,0.0905574262142181,-0.649830937385559,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.0333024151623249,0.997731506824493,-0.0585035756230354,-0.0460751131176949,0.903827309608459,-0.425409525632858,-0.543978095054626,0.334724813699722,-0.769445955753326,-0.564893484115601,0.525026082992554,-0.636587083339691,-0.0460751131176949,0.903827309608459,-0.425409525632858,-0.117432110011578,0.602196216583252,-0.789664149284363,0.0739728212356567,0.930635392665863,-0.358393341302872,-0.0155662829056382,0.633758544921875,-0.773374259471893,-0.117432110011578,0.602196216583252,-0.789664149284363,-0.0460751131176949,0.903827309608459,-0.425409525632858,0.128923192620277,0.991647839546204,-0.00366894504986703,0.0739728212356567,0.930635392665863,-0.358393341302872,-0.0460751131176949,0.903827309608459,-0.425409525632858,-0.0333024151623249,0.997731506824493,-0.0585035756230354,0.0739728212356567,0.930635392665863,-0.358393341302872,0.128923192620277,0.991647839546204,-0.00366894504986703,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-0.0155662829056382,0.633758544921875,-0.773374259471893,0.0739728212356567,0.930635392665863,-0.358393341302872,-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,-3.37004379957762e-08,0.651729166507721,-0.758451581001282,-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-0.073967382311821,0.93063485622406,-0.358395993709564,0.0155651671811938,0.633765578269958,-0.773368537425995, +-2.20903935144179e-08,0.947379052639008,-0.320114016532898,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,-0.128917783498764,0.991648554801941,-0.00367245217785239,-0.073967382311821,0.93063485622406,-0.358395993709564,-0.073967382311821,0.93063485622406,-0.358395993709564,-0.128917783498764,0.991648554801941,-0.00367245217785239,0.0333118550479412,0.997731387615204,-0.0585032925009727,0.0460751727223396,0.903830647468567,-0.42540243268013,0.117442525923252,0.602194428443909,-0.789663910865784,0.0155651671811938,0.633765578269958,-0.773368537425995,-0.073967382311821,0.93063485622406,-0.358395993709564,0.0460751727223396,0.903830647468567,-0.42540243268013,0.0460751727223396,0.903830647468567,-0.42540243268013,0.0333118550479412,0.997731387615204,-0.0585032925009727,0.659068405628204,0.677831828594208,-0.325841993093491,0.56488710641861,0.525017380714417,-0.636599779129028,0.117442525923252,0.602194428443909,-0.789663910865784,0.0460751727223396,0.903830647468567,-0.42540243268013,0.56488710641861,0.525017380714417,-0.636599779129028,0.544002830982208,0.334691017866135,-0.769443213939667,0.754644453525543,0.0905735939741135,-0.649852395057678,0.771394431591034,0.0944221168756485,-0.629313170909882,0.544002830982208,0.334691017866135,-0.769443213939667,0.56488710641861,0.525017380714417,-0.636599779129028,0.870685815811157,0.171618282794952,-0.460926592350006,0.754644453525543,0.0905735939741135,-0.649852395057678,0.56488710641861,0.525017380714417,-0.636599779129028,0.659068405628204,0.677831828594208,-0.325841993093491,0.754644453525543,0.0905735939741135,-0.649852395057678,0.870685815811157,0.171618282794952,-0.460926592350006,0.839908480644226,-0.232921779155731,-0.490205079317093,0.788721859455109,-0.21987096965313,-0.574085772037506,0.771394431591034,0.0944221168756485,-0.629313170909882,0.754644453525543,0.0905735939741135,-0.649852395057678,0.788721859455109,-0.21987096965313,-0.574085772037506,0.892970025539398,-0.0762939229607582,-0.443603217601776,0.892970025539398,-0.0762939229607582,-0.443603217601776, +0.788721859455109,-0.21987096965313,-0.574085772037506,0.654315769672394,-0.708335757255554,-0.264823198318481,0.914044320583344,-0.357191115617752,0.192191600799561,0.788721859455109,-0.21987096965313,-0.574085772037506,0.839908480644226,-0.232921779155731,-0.490205079317093,0.595374405384064,-0.733837783336639,-0.32712584733963,0.654315769672394,-0.708335757255554,-0.264823198318481,0.654315769672394,-0.708335757255554,-0.264823198318481,0.595374405384064,-0.733837783336639,-0.32712584733963,0.429949104785919,-0.892269849777222,-0.137833878397942,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.914044320583344,-0.357191115617752,0.192191600799561,0.654315769672394,-0.708335757255554,-0.264823198318481,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.821652591228485,-0.227793514728546,0.52249139547348,0.133274808526039,-0.979536056518555,-0.150820508599281,0.328743159770966,-0.944285452365875,0.0159010514616966,0.429949104785919,-0.892269849777222,-0.137833878397942,0.350175321102142,-0.916565537452698,-0.19309301674366,0.136113852262497,-0.990546584129333,0.0170460753142834,0.133274808526039,-0.979536056518555,-0.150820508599281,0.350175321102142,-0.916565537452698,-0.19309301674366,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.133274808526039,-0.979536056518555,-0.150820508599281,0.136113852262497,-0.990546584129333,0.0170460753142834,6.92325045292819e-07,-0.99685138463974,0.0792924910783768,1.42238445732801e-06,-0.999859035015106,0.016791146248579,0.328743159770966,-0.944285452365875,0.0159010514616966,0.133274808526039,-0.979536056518555,-0.150820508599281,1.42238445732801e-06,-0.999859035015106,0.016791146248579,-0.00453746924176812,-0.959409117698669,0.281981498003006,-0.00453746924176812,-0.959409117698669,0.281981498003006,1.42238445732801e-06,-0.999859035015106,0.016791146248579,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.339124590158463,-0.940390467643738,0.0256970208138227,1.42238445732801e-06,-0.999859035015106,0.016791146248579,6.92325045292819e-07,-0.99685138463974,0.0792924910783768, +-0.136119112372398,-0.990545928478241,0.0170430857688189,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.136119112372398,-0.990545928478241,0.0170430857688189,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.339124590158463,-0.940390467643738,0.0256970208138227,-0.133272737264633,-0.979537427425385,-0.150813698768616,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.435998946428299,-0.890048325061798,-0.133112177252769,-0.350176274776459,-0.916566848754883,-0.193085119128227,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.870673716068268,0.171584844589233,-0.460962057113647,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.923179626464844,0.320809721946716,0.211708515882492,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.923179626464844,0.320809721946716,0.211708515882492,-0.608199298381805,0.701407432556152,0.371646672487259,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.870673716068268,0.171584844589233,-0.460962057113647,-0.959477543830872,0.259073793888092,-0.110831126570702,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.608199298381805,0.701407432556152,0.371646672487259,-0.050669327378273,0.905841767787933,0.420574963092804, +-0.0486392304301262,0.971866726875305,0.230454355478287,-0.659047961235046,0.67784321308136,-0.325859487056732,-0.688009858131409,0.721809267997742,0.0750576630234718,-0.0486392304301262,0.971866726875305,0.230454355478287,-0.0333024151623249,0.997731506824493,-0.0585035756230354,0.14022958278656,0.960527002811432,0.240257427096367,0.128923192620277,0.991647839546204,-0.00366894504986703,-0.0333024151623249,0.997731506824493,-0.0585035756230354,-0.0486392304301262,0.971866726875305,0.230454355478287,0.127548262476921,0.909173727035522,0.396402150392532,0.14022958278656,0.960527002811432,0.240257427096367,-0.0486392304301262,0.971866726875305,0.230454355478287,-0.050669327378273,0.905841767787933,0.420574963092804,0.14022958278656,0.960527002811432,0.240257427096367,0.127548262476921,0.909173727035522,0.396402150392532,-5.87420920794557e-08,0.921293497085571,0.388868063688278,1.54691491616177e-07,0.969164848327637,0.246413260698318,0.128923192620277,0.991647839546204,-0.00366894504986703,0.14022958278656,0.960527002811432,0.240257427096367,1.54691491616177e-07,0.969164848327637,0.246413260698318,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,-1.33190285467322e-08,0.999807476997375,0.0196193158626556,1.54691491616177e-07,0.969164848327637,0.246413260698318,-0.140225932002068,0.960526466369629,0.240261495113373,-0.128917783498764,0.991648554801941,-0.00367245217785239,1.54691491616177e-07,0.969164848327637,0.246413260698318,-5.87420920794557e-08,0.921293497085571,0.388868063688278,-0.127542853355408,0.909172773361206,0.396405845880508,-0.140225932002068,0.960526466369629,0.240261495113373,-0.140225932002068,0.960526466369629,0.240261495113373,-0.127542853355408,0.909172773361206,0.396405845880508,0.0506800226867199,0.905842065811157,0.420573085546494,0.0486221760511398,0.971867024898529,0.230456799268723,0.0333118550479412,0.997731387615204,-0.0585032925009727,-0.128917783498764,0.991648554801941,-0.00367245217785239,-0.140225932002068,0.960526466369629,0.240261495113373,0.0486221760511398,0.971867024898529,0.230456799268723, +0.0486221760511398,0.971867024898529,0.230456799268723,0.0506800226867199,0.905842065811157,0.420573085546494,0.608221113681793,0.70141339302063,0.371599763631821,0.687989056110382,0.721827626228333,0.0750721246004105,0.0333118550479412,0.997731387615204,-0.0585032925009727,0.0486221760511398,0.971867024898529,0.230456799268723,0.687989056110382,0.721827626228333,0.0750721246004105,0.659068405628204,0.677831828594208,-0.325841993093491,0.959466934204102,0.259112805128098,-0.110831968486309,0.870685815811157,0.171618282794952,-0.460926592350006,0.659068405628204,0.677831828594208,-0.325841993093491,0.687989056110382,0.721827626228333,0.0750721246004105,0.923181056976318,0.320837199687958,0.211660459637642,0.959466934204102,0.259112805128098,-0.110831968486309,0.687989056110382,0.721827626228333,0.0750721246004105,0.608221113681793,0.70141339302063,0.371599763631821,0.959466934204102,0.259112805128098,-0.110831968486309,0.923181056976318,0.320837199687958,0.211660459637642,0.966853320598602,-0.254572331905365,0.0196893829852343,0.93520849943161,-0.230121210217476,-0.269126951694489,0.870685815811157,0.171618282794952,-0.460926592350006,0.959466934204102,0.259112805128098,-0.110831968486309,0.93520849943161,-0.230121210217476,-0.269126951694489,0.839908480644226,-0.232921779155731,-0.490205079317093,0.839908480644226,-0.232921779155731,-0.490205079317093,0.93520849943161,-0.230121210217476,-0.269126951694489,0.596242308616638,-0.761437654495239,-0.25437730550766,0.595374405384064,-0.733837783336639,-0.32712584733963,0.93520849943161,-0.230121210217476,-0.269126951694489,0.966853320598602,-0.254572331905365,0.0196893829852343,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.596242308616638,-0.761437654495239,-0.25437730550766,0.596242308616638,-0.761437654495239,-0.25437730550766,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.350175321102142,-0.916565537452698,-0.19309301674366,0.595374405384064,-0.733837783336639,-0.32712584733963,0.596242308616638,-0.761437654495239,-0.25437730550766, +0.350175321102142,-0.916565537452698,-0.19309301674366,0.429949104785919,-0.892269849777222,-0.137833878397942,0.132026225328445,-0.984198391437531,0.117994152009487,0.136113852262497,-0.990546584129333,0.0170460753142834,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.295943468809128,-0.951343715190887,0.0858049169182777,0.105100408196449,-0.994082272052765,0.0274662841111422,0.132026225328445,-0.984198391437531,0.117994152009487,0.295943468809128,-0.951343715190887,0.0858049169182777,0.220161974430084,-0.97490793466568,0.0329131186008453,0.132026225328445,-0.984198391437531,0.117994152009487,0.105100408196449,-0.994082272052765,0.0274662841111422,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,6.84173869558435e-07,-0.992788076400757,0.119882382452488,0.136113852262497,-0.990546584129333,0.0170460753142834,0.132026225328445,-0.984198391437531,0.117994152009487,6.84173869558435e-07,-0.992788076400757,0.119882382452488,6.92325045292819e-07,-0.99685138463974,0.0792924910783768,6.92325045292819e-07,-0.99685138463974,0.0792924910783768,6.84173869558435e-07,-0.992788076400757,0.119882382452488,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.136119112372398,-0.990545928478241,0.0170430857688189,6.84173869558435e-07,-0.992788076400757,0.119882382452488,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,-0.105107061564922,-0.994081556797028,0.0274670012295246,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.105107061564922,-0.994081556797028,0.0274670012295246,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.136119112372398,-0.990545928478241,0.0170430857688189,-0.132034823298454,-0.984197199344635,0.117994330823421,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.344773948192596,-0.938333809375763,0.0257047209888697, +-0.466939598321915,-0.882675111293793,0.0534044429659843,-0.313366502523422,-0.945548951625824,-0.087970145046711,-0.295943588018417,-0.951343655586243,0.0858063474297523,-0.466939598321915,-0.882675111293793,0.0534044429659843,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.864584505558014,0.340903431177139,0.369159042835236,-0.923179626464844,0.320809721946716,0.211708515882492,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.875592231750488,0.32309490442276,0.359093308448792,-0.864584505558014,0.340903431177139,0.369159042835236,-0.864584505558014,0.340903431177139,0.369159042835236,-0.875592231750488,0.32309490442276,0.359093308448792,-0.524005472660065,0.757515430450439,0.389343708753586,-0.533544719219208,0.69936740398407,0.475620895624161,-0.608199298381805,0.701407432556152,0.371646672487259,-0.923179626464844,0.320809721946716,0.211708515882492,-0.864584505558014,0.340903431177139,0.369159042835236,-0.533544719219208,0.69936740398407,0.475620895624161,-0.533544719219208,0.69936740398407,0.475620895624161,-0.524005472660065,0.757515430450439,0.389343708753586,-0.0486269742250443,0.939252614974976,0.33976474404335,-0.0462996661663055,0.871803283691406,0.487663120031357,-0.608199298381805,0.701407432556152,0.371646672487259,-0.533544719219208,0.69936740398407,0.475620895624161,-0.0462996661663055,0.871803283691406,0.487663120031357,-0.050669327378273,0.905841767787933,0.420574963092804,0.102118708193302,0.885444819927216,0.453386455774307,0.127548262476921,0.909173727035522,0.396402150392532,-0.050669327378273,0.905841767787933,0.420574963092804,-0.0462996661663055,0.871803283691406,0.487663120031357,0.0839923620223999,0.948243975639343,0.306233018636703,0.102118708193302,0.885444819927216,0.453386455774307,-0.0462996661663055,0.871803283691406,0.487663120031357,-0.0486269742250443,0.939252614974976,0.33976474404335,0.102118708193302,0.885444819927216,0.453386455774307, +0.0839923620223999,0.948243975639343,0.306233018636703,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-2.6050707901959e-07,0.898688793182373,0.438587129116058,0.127548262476921,0.909173727035522,0.396402150392532,0.102118708193302,0.885444819927216,0.453386455774307,-2.6050707901959e-07,0.898688793182373,0.438587129116058,-5.87420920794557e-08,0.921293497085571,0.388868063688278,-5.87420920794557e-08,0.921293497085571,0.388868063688278,-2.6050707901959e-07,0.898688793182373,0.438587129116058,-0.102113209664822,0.885447680950165,0.453381955623627,-0.127542853355408,0.909172773361206,0.396405845880508,-2.6050707901959e-07,0.898688793182373,0.438587129116058,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-0.0839898064732552,0.948244750499725,0.306231379508972,-0.102113209664822,0.885447680950165,0.453381955623627,-0.102113209664822,0.885447680950165,0.453381955623627,-0.0839898064732552,0.948244750499725,0.306231379508972,0.0486114658415318,0.939255714416504,0.33975824713707,0.0463057458400726,0.871802270412445,0.487664312124252,0.0506800226867199,0.905842065811157,0.420573085546494,-0.127542853355408,0.909172773361206,0.396405845880508,-0.102113209664822,0.885447680950165,0.453381955623627,0.0463057458400726,0.871802270412445,0.487664312124252,0.0463057458400726,0.871802270412445,0.487664312124252,0.0486114658415318,0.939255714416504,0.33975824713707,0.523992538452148,0.757517158985138,0.389357835054398,0.533533811569214,0.699371516704559,0.475627064704895,0.0506800226867199,0.905842065811157,0.420573085546494,0.0463057458400726,0.871802270412445,0.487664312124252,0.533533811569214,0.699371516704559,0.475627064704895,0.608221113681793,0.70141339302063,0.371599763631821,0.864582180976868,0.340907722711563,0.369160801172256,0.923181056976318,0.320837199687958,0.211660459637642,0.608221113681793,0.70141339302063,0.371599763631821,0.533533811569214,0.699371516704559,0.475627064704895,0.875584006309509,0.323092758655548,0.359114944934845,0.864582180976868,0.340907722711563,0.369160801172256,0.533533811569214,0.699371516704559,0.475627064704895, +0.523992538452148,0.757517158985138,0.389357835054398,0.864582180976868,0.340907722711563,0.369160801172256,0.875584006309509,0.323092758655548,0.359114944934845,0.824189245700836,-0.533842861652374,0.189007550477982,0.908129811286926,-0.372855067253113,0.190471082925797,0.923181056976318,0.320837199687958,0.211660459637642,0.864582180976868,0.340907722711563,0.369160801172256,0.908129811286926,-0.372855067253113,0.190471082925797,0.966853320598602,-0.254572331905365,0.0196893829852343,0.966853320598602,-0.254572331905365,0.0196893829852343,0.908129811286926,-0.372855067253113,0.190471082925797,0.46694141626358,-0.8826744556427,0.0534005276858807,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.908129811286926,-0.372855067253113,0.190471082925797,0.824189245700836,-0.533842861652374,0.189007550477982,0.344773679971695,-0.938333809375763,0.0257037617266178,0.46694141626358,-0.8826744556427,0.0534005276858807,0.46694141626358,-0.8826744556427,0.0534005276858807,0.344773679971695,-0.938333809375763,0.0257037617266178,0.220161974430084,-0.97490793466568,0.0329131186008453,0.295943468809128,-0.951343715190887,0.0858049169182777,0.573095083236694,-0.816024422645569,-0.0752742812037468,0.46694141626358,-0.8826744556427,0.0534005276858807,0.295943468809128,-0.951343715190887,0.0858049169182777,0.313370436429977,-0.945546865463257,-0.0879781171679497,0.105296939611435,-0.994079172611237,-0.0268163122236729,0.105100408196449,-0.994082272052765,0.0274662841111422,0.220161974430084,-0.97490793466568,0.0329131186008453,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.115611836314201,-0.99113267660141,0.065497063100338,0.105296939611435,-0.994079172611237,-0.0268163122236729,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.199431404471397,-0.97605311870575,0.0868756547570229,0.105296939611435,-0.994079172611237,-0.0268163122236729,0.115611836314201,-0.99113267660141,0.065497063100338,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404, +0.105100408196449,-0.994082272052765,0.0274662841111422,0.105296939611435,-0.994079172611237,-0.0268163122236729,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,2.10130323807789e-07,-0.999954640865326,0.00952009484171867,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.105107061564922,-0.994081556797028,0.0274670012295246,4.14753564825787e-08,-0.999007403850555,-0.0445449352264404,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,-0.115619517862797,-0.991130769252777,0.0655117109417915,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.115619517862797,-0.991130769252777,0.0655117109417915,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.105107061564922,-0.994081556797028,0.0274670012295246,-0.10530536621809,-0.994078278541565,-0.0268153082579374,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.220162779092789,-0.974907696247101,0.0329132601618767,-0.192237541079521,-0.981335580348969,-0.00501912692561746,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.344773948192596,-0.938333809375763,0.0257047209888697,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.899128139019012,0.303717494010925,0.315157622098923,-0.875592231750488,0.32309490442276,0.359093308448792,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.904420733451843,0.325867354869843,0.275379002094269,-0.899128139019012,0.303717494010925,0.315157622098923, +-0.899128139019012,0.303717494010925,0.315157622098923,-0.904420733451843,0.325867354869843,0.275379002094269,-0.544287741184235,0.81655889749527,0.192307844758034,-0.541836977005005,0.801604747772217,0.252670735120773,-0.524005472660065,0.757515430450439,0.389343708753586,-0.875592231750488,0.32309490442276,0.359093308448792,-0.899128139019012,0.303717494010925,0.315157622098923,-0.541836977005005,0.801604747772217,0.252670735120773,-0.541836977005005,0.801604747772217,0.252670735120773,-0.544287741184235,0.81655889749527,0.192307844758034,-0.0623407401144505,0.995002210140228,0.0780014917254448,-0.0573663003742695,0.989228188991547,0.134672358632088,-0.524005472660065,0.757515430450439,0.389343708753586,-0.541836977005005,0.801604747772217,0.252670735120773,-0.0573663003742695,0.989228188991547,0.134672358632088,-0.0486269742250443,0.939252614974976,0.33976474404335,0.0849191024899483,0.990578174591064,0.107441686093807,0.0839923620223999,0.948243975639343,0.306233018636703,-0.0486269742250443,0.939252614974976,0.33976474404335,-0.0573663003742695,0.989228188991547,0.134672358632088,0.0963490232825279,0.994278073310852,0.0461297482252121,0.0849191024899483,0.990578174591064,0.107441686093807,-0.0573663003742695,0.989228188991547,0.134672358632088,-0.0623407401144505,0.995002210140228,0.0780014917254448,0.0849191024899483,0.990578174591064,0.107441686093807,0.0963490232825279,0.994278073310852,0.0461297482252121,-6.43930349042421e-08,0.998733282089233,0.0503183603286743,-4.31713999660133e-07,0.993286550045013,0.11568009853363,0.0839923620223999,0.948243975639343,0.306233018636703,0.0849191024899483,0.990578174591064,0.107441686093807,-4.31713999660133e-07,0.993286550045013,0.11568009853363,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-2.22824496631802e-07,0.953581094741821,0.301136583089828,-4.31713999660133e-07,0.993286550045013,0.11568009853363,-0.084913082420826,0.990578591823578,0.107442416250706,-0.0839898064732552,0.948244750499725,0.306231379508972,-4.31713999660133e-07,0.993286550045013,0.11568009853363, +-6.43930349042421e-08,0.998733282089233,0.0503183603286743,-0.0963428691029549,0.9942786693573,0.0461303815245628,-0.084913082420826,0.990578591823578,0.107442416250706,-0.084913082420826,0.990578591823578,0.107442416250706,-0.0963428691029549,0.9942786693573,0.0461303815245628,0.062339223921299,0.995001912117004,0.078006811439991,0.0573724359273911,0.989227950572968,0.134671866893768,0.0486114658415318,0.939255714416504,0.33975824713707,-0.0839898064732552,0.948244750499725,0.306231379508972,-0.084913082420826,0.990578591823578,0.107442416250706,0.0573724359273911,0.989227950572968,0.134671866893768,0.0573724359273911,0.989227950572968,0.134671866893768,0.062339223921299,0.995001912117004,0.078006811439991,0.544317603111267,0.816530346870422,0.192344948649406,0.541850030422211,0.801597118377686,0.252666920423508,0.0486114658415318,0.939255714416504,0.33975824713707,0.0573724359273911,0.989227950572968,0.134671866893768,0.541850030422211,0.801597118377686,0.252666920423508,0.523992538452148,0.757517158985138,0.389357835054398,0.899124145507813,0.303725302219391,0.31516170501709,0.875584006309509,0.323092758655548,0.359114944934845,0.523992538452148,0.757517158985138,0.389357835054398,0.541850030422211,0.801597118377686,0.252666920423508,0.904415905475616,0.325875461101532,0.27538537979126,0.899124145507813,0.303725302219391,0.31516170501709,0.541850030422211,0.801597118377686,0.252666920423508,0.544317603111267,0.816530346870422,0.192344948649406,0.899124145507813,0.303725302219391,0.31516170501709,0.904415905475616,0.325875461101532,0.27538537979126,0.746098697185516,-0.62243789434433,0.236448049545288,0.770985126495361,-0.607265472412109,0.191860571503639,0.875584006309509,0.323092758655548,0.359114944934845,0.899124145507813,0.303725302219391,0.31516170501709,0.770985126495361,-0.607265472412109,0.191860571503639,0.824189245700836,-0.533842861652374,0.189007550477982,0.824189245700836,-0.533842861652374,0.189007550477982,0.770985126495361,-0.607265472412109,0.191860571503639,0.289740324020386,-0.956932127475739,0.0182047635316849, +0.344773679971695,-0.938333809375763,0.0257037617266178,0.770985126495361,-0.607265472412109,0.191860571503639,0.746098697185516,-0.62243789434433,0.236448049545288,0.29267281293869,-0.948890864849091,0.11810489743948,0.289740324020386,-0.956932127475739,0.0182047635316849,0.289740324020386,-0.956932127475739,0.0182047635316849,0.29267281293869,-0.948890864849091,0.11810489743948,0.199431404471397,-0.97605311870575,0.0868756547570229,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.344773679971695,-0.938333809375763,0.0257037617266178,0.289740324020386,-0.956932127475739,0.0182047635316849,0.192240834236145,-0.981334924697876,-0.00501353293657303,0.220161974430084,-0.97490793466568,0.0329131186008453,0.123441874980927,-0.972485065460205,0.197572261095047,0.115611836314201,-0.99113267660141,0.065497063100338,0.199431404471397,-0.97605311870575,0.0868756547570229,0.219982534646988,-0.948848187923431,0.226483553647995,0.154018700122833,-0.962590396404266,0.222930043935776,0.123441874980927,-0.972485065460205,0.197572261095047,0.219982534646988,-0.948848187923431,0.226483553647995,0.246317118406296,-0.926339566707611,0.284996539354324,0.123441874980927,-0.972485065460205,0.197572261095047,0.154018700122833,-0.962590396404266,0.222930043935776,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,6.75318869980401e-06,-0.983081102371216,0.183171257376671,0.115611836314201,-0.99113267660141,0.065497063100338,0.123441874980927,-0.972485065460205,0.197572261095047,6.75318869980401e-06,-0.983081102371216,0.183171257376671,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,-4.51891946795513e-06,-0.998277842998505,0.0586632639169693,6.75318869980401e-06,-0.983081102371216,0.183171257376671,-0.123431190848351,-0.972486436367035,0.197572574019432,-0.115619517862797,-0.991130769252777,0.0655117109417915,6.75318869980401e-06,-0.983081102371216,0.183171257376671,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,-0.154009163379669,-0.962590098381042,0.222938135266304,-0.123431190848351,-0.972486436367035,0.197572574019432, +-0.123431190848351,-0.972486436367035,0.197572574019432,-0.154009163379669,-0.962590098381042,0.222938135266304,-0.246295556426048,-0.926344811916351,0.284997552633286,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.115619517862797,-0.991130769252777,0.0655117109417915,-0.123431190848351,-0.972486436367035,0.197572574019432,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.246295556426048,-0.926344811916351,0.284997552633286,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.199420362710953,-0.976054847240448,0.0868817344307899,-0.219964444637299,-0.948852896690369,0.226481407880783,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.868865311145782,0.439603745937347,0.227643713355064,-0.904420733451843,0.325867354869843,0.275379002094269,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.769762396812439,0.557566463947296,0.310782045125961,-0.868865311145782,0.439603745937347,0.227643713355064,-0.868865311145782,0.439603745937347,0.227643713355064,-0.769762396812439,0.557566463947296,0.310782045125961,-0.443143427371979,0.861525654792786,0.247785106301308,-0.52218633890152,0.830473244190216,0.193998754024506,-0.544287741184235,0.81655889749527,0.192307844758034,-0.904420733451843,0.325867354869843,0.275379002094269,-0.868865311145782,0.439603745937347,0.227643713355064,-0.52218633890152,0.830473244190216,0.193998754024506,-0.52218633890152,0.830473244190216,0.193998754024506,-0.443143427371979,0.861525654792786,0.247785106301308,-0.0579869635403156,0.986328542232513,0.154251113533974,-0.0714135468006134,0.992144048213959,0.102715209126472,-0.544287741184235,0.81655889749527,0.192307844758034, +-0.52218633890152,0.830473244190216,0.193998754024506,-0.0714135468006134,0.992144048213959,0.102715209126472,-0.0623407401144505,0.995002210140228,0.0780014917254448,0.101248674094677,0.993318855762482,0.0553735643625259,0.0963490232825279,0.994278073310852,0.0461297482252121,-0.0623407401144505,0.995002210140228,0.0780014917254448,-0.0714135468006134,0.992144048213959,0.102715209126472,0.100855007767677,0.987614512443542,0.120191477239132,0.101248674094677,0.993318855762482,0.0553735643625259,-0.0714135468006134,0.992144048213959,0.102715209126472,-0.0579869635403156,0.986328542232513,0.154251113533974,0.101248674094677,0.993318855762482,0.0553735643625259,0.100855007767677,0.987614512443542,0.120191477239132,-3.43297585914115e-07,0.993099987506866,0.117269933223724,7.63249907720365e-09,0.998726725578308,0.0504464507102966,0.0963490232825279,0.994278073310852,0.0461297482252121,0.101248674094677,0.993318855762482,0.0553735643625259,7.63249907720365e-09,0.998726725578308,0.0504464507102966,-6.43930349042421e-08,0.998733282089233,0.0503183603286743,-6.43930349042421e-08,0.998733282089233,0.0503183603286743,7.63249907720365e-09,0.998726725578308,0.0504464507102966,-0.101237423717976,0.993319511413574,0.0553832836449146,-0.0963428691029549,0.9942786693573,0.0461303815245628,7.63249907720365e-09,0.998726725578308,0.0504464507102966,-3.43297585914115e-07,0.993099987506866,0.117269933223724,-0.100844390690327,0.987615764141083,0.120189927518368,-0.101237423717976,0.993319511413574,0.0553832836449146,-0.101237423717976,0.993319511413574,0.0553832836449146,-0.100844390690327,0.987615764141083,0.120189927518368,0.0579871386289597,0.986329913139343,0.154242739081383,0.0714134350419044,0.992143630981445,0.102718763053417,0.062339223921299,0.995001912117004,0.078006811439991,-0.0963428691029549,0.9942786693573,0.0461303815245628,-0.101237423717976,0.993319511413574,0.0553832836449146,0.0714134350419044,0.992143630981445,0.102718763053417,0.0714134350419044,0.992143630981445,0.102718763053417,0.0579871386289597,0.986329913139343,0.154242739081383, +0.443184733390808,0.861522793769836,0.247721269726753,0.522176265716553,0.830479621887207,0.193999052047729,0.062339223921299,0.995001912117004,0.078006811439991,0.0714134350419044,0.992143630981445,0.102718763053417,0.522176265716553,0.830479621887207,0.193999052047729,0.544317603111267,0.816530346870422,0.192344948649406,0.86882072687149,0.439678430557251,0.227669551968575,0.904415905475616,0.325875461101532,0.27538537979126,0.544317603111267,0.816530346870422,0.192344948649406,0.522176265716553,0.830479621887207,0.193999052047729,0.76978987455368,0.557630121707916,0.310599893331528,0.86882072687149,0.439678430557251,0.227669551968575,0.522176265716553,0.830479621887207,0.193999052047729,0.443184733390808,0.861522793769836,0.247721269726753,0.86882072687149,0.439678430557251,0.227669551968575,0.76978987455368,0.557630121707916,0.310599893331528,0.786892175674438,-0.450535178184509,0.421685457229614,0.788075625896454,-0.541678309440613,0.292440325021744,0.904415905475616,0.325875461101532,0.27538537979126,0.86882072687149,0.439678430557251,0.227669551968575,0.788075625896454,-0.541678309440613,0.292440325021744,0.746098697185516,-0.62243789434433,0.236448049545288,0.746098697185516,-0.62243789434433,0.236448049545288,0.788075625896454,-0.541678309440613,0.292440325021744,0.319241791963577,-0.912434041500092,0.256024926900864,0.29267281293869,-0.948890864849091,0.11810489743948,0.788075625896454,-0.541678309440613,0.292440325021744,0.786892175674438,-0.450535178184509,0.421685457229614,0.346514701843262,-0.87484222650528,0.338494598865509,0.319241791963577,-0.912434041500092,0.256024926900864,0.319241791963577,-0.912434041500092,0.256024926900864,0.346514701843262,-0.87484222650528,0.338494598865509,0.246317118406296,-0.926339566707611,0.284996539354324,0.219982534646988,-0.948848187923431,0.226483553647995,0.29267281293869,-0.948890864849091,0.11810489743948,0.319241791963577,-0.912434041500092,0.256024926900864,0.219982534646988,-0.948848187923431,0.226483553647995,0.199431404471397,-0.97605311870575,0.0868756547570229, +0.183378607034683,-0.859746336936951,0.476663857698441,0.154018700122833,-0.962590396404266,0.222930043935776,0.246317118406296,-0.926339566707611,0.284996539354324,0.274058401584625,-0.819783806800842,0.502838253974915,0.178520902991295,-0.598080992698669,0.781299948692322,0.183378607034683,-0.859746336936951,0.476663857698441,0.274058401584625,-0.819783806800842,0.502838253974915,0.295463979244232,-0.524623990058899,0.798417627811432,0.183378607034683,-0.859746336936951,0.476663857698441,0.178520902991295,-0.598080992698669,0.781299948692322,-1.32595532704727e-05,-0.630243539810181,0.776397466659546,8.99190399650251e-06,-0.895446479320526,0.445169180631638,0.154018700122833,-0.962590396404266,0.222930043935776,0.183378607034683,-0.859746336936951,0.476663857698441,8.99190399650251e-06,-0.895446479320526,0.445169180631638,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,-1.91434779139854e-07,-0.982923865318298,0.184012904763222,8.99190399650251e-06,-0.895446479320526,0.445169180631638,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.154009163379669,-0.962590098381042,0.222938135266304,8.99190399650251e-06,-0.895446479320526,0.445169180631638,-1.32595532704727e-05,-0.630243539810181,0.776397466659546,-0.178541168570518,-0.598098456859589,0.781281888484955,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.178541168570518,-0.598098456859589,0.781281888484955,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.274038106203079,-0.819787085056305,0.502844214439392,-0.246295556426048,-0.926344811916351,0.284997552633286,-0.154009163379669,-0.962590098381042,0.222938135266304,-0.183360204100609,-0.859763264656067,0.476640671491623,-0.274038106203079,-0.819787085056305,0.502844214439392,-0.274038106203079,-0.819787085056305,0.502844214439392,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.410991340875626,-0.434376358985901,0.801500737667084,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.246295556426048,-0.926344811916351,0.284997552633286, +-0.274038106203079,-0.819787085056305,0.502844214439392,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.638568341732025,0.609943985939026,0.46925351023674,-0.769762396812439,0.557566463947296,0.310782045125961,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.577005445957184,-0.0206903330981731,0.816478192806244,-0.518030643463135,0.493195116519928,0.698858201503754,-0.638568341732025,0.609943985939026,0.46925351023674,-0.638568341732025,0.609943985939026,0.46925351023674,-0.518030643463135,0.493195116519928,0.698858201503754,-0.300830811262131,0.617885708808899,0.726442158222198,-0.354806751012802,0.819741725921631,0.449595183134079,-0.443143427371979,0.861525654792786,0.247785106301308,-0.769762396812439,0.557566463947296,0.310782045125961,-0.638568341732025,0.609943985939026,0.46925351023674,-0.354806751012802,0.819741725921631,0.449595183134079,-0.354806751012802,0.819741725921631,0.449595183134079,-0.300830811262131,0.617885708808899,0.726442158222198,-0.0740893334150314,0.656745910644531,0.750463485717773,-0.0432001166045666,0.892786085605621,0.448404669761658,-0.443143427371979,0.861525654792786,0.247785106301308,-0.354806751012802,0.819741725921631,0.449595183134079,-0.0432001166045666,0.892786085605621,0.448404669761658,-0.0579869635403156,0.986328542232513,0.154251113533974,0.0780017152428627,0.887692332267761,0.453782171010971,0.100855007767677,0.987614512443542,0.120191477239132,-0.0579869635403156,0.986328542232513,0.154251113533974,-0.0432001166045666,0.892786085605621,0.448404669761658,0.0222944021224976,0.680644154548645,0.732274889945984,0.0780017152428627,0.887692332267761,0.453782171010971,-0.0432001166045666,0.892786085605621,0.448404669761658,-0.0740893334150314,0.656745910644531,0.750463485717773,0.0780017152428627,0.887692332267761,0.453782171010971,0.0222944021224976,0.680644154548645,0.732274889945984,-4.5741039684799e-06,0.704588413238525,0.709616243839264, +-3.04861578115379e-06,0.893409192562103,0.449243873357773,0.100855007767677,0.987614512443542,0.120191477239132,0.0780017152428627,0.887692332267761,0.453782171010971,-3.04861578115379e-06,0.893409192562103,0.449243873357773,-3.43297585914115e-07,0.993099987506866,0.117269933223724,-3.43297585914115e-07,0.993099987506866,0.117269933223724,-3.04861578115379e-06,0.893409192562103,0.449243873357773,-0.0779917016625404,0.887694597244263,0.453779280185699,-0.100844390690327,0.987615764141083,0.120189927518368,-3.04861578115379e-06,0.893409192562103,0.449243873357773,-4.5741039684799e-06,0.704588413238525,0.709616243839264,-0.0222910661250353,0.680645227432251,0.732273995876312,-0.0779917016625404,0.887694597244263,0.453779280185699,-0.0779917016625404,0.887694597244263,0.453779280185699,-0.0222910661250353,0.680645227432251,0.732273995876312,0.0740716010332108,0.656759560108185,0.750453352928162,0.0432032905519009,0.892787516117096,0.448401600122452,0.0579871386289597,0.986329913139343,0.154242739081383,-0.100844390690327,0.987615764141083,0.120189927518368,-0.0779917016625404,0.887694597244263,0.453779280185699,0.0432032905519009,0.892787516117096,0.448401600122452,0.0432032905519009,0.892787516117096,0.448401600122452,0.0740716010332108,0.656759560108185,0.750453352928162,0.300834655761719,0.617887139320374,0.726439237594604,0.354812443256378,0.81972199678421,0.449626445770264,0.0579871386289597,0.986329913139343,0.154242739081383,0.0432032905519009,0.892787516117096,0.448401600122452,0.354812443256378,0.81972199678421,0.449626445770264,0.443184733390808,0.861522793769836,0.247721269726753,0.638554096221924,0.609900712966919,0.469329088926315,0.76978987455368,0.557630121707916,0.310599893331528,0.443184733390808,0.861522793769836,0.247721269726753,0.354812443256378,0.81972199678421,0.449626445770264,0.518049776554108,0.493121802806854,0.698895752429962,0.638554096221924,0.609900712966919,0.469329088926315,0.354812443256378,0.81972199678421,0.449626445770264,0.300834655761719,0.617887139320374,0.726439237594604,0.638554096221924,0.609900712966919,0.469329088926315, +0.518049776554108,0.493121802806854,0.698895752429962,0.576962471008301,-0.0204886123538017,0.81651371717453,0.704647958278656,-0.290556222200394,0.647339403629303,0.76978987455368,0.557630121707916,0.310599893331528,0.638554096221924,0.609900712966919,0.469329088926315,0.704647958278656,-0.290556222200394,0.647339403629303,0.786892175674438,-0.450535178184509,0.421685457229614,0.786892175674438,-0.450535178184509,0.421685457229614,0.704647958278656,-0.290556222200394,0.647339403629303,0.38193017244339,-0.754715919494629,0.533416569232941,0.346514701843262,-0.87484222650528,0.338494598865509,0.704647958278656,-0.290556222200394,0.647339403629303,0.576962471008301,-0.0204886123538017,0.81651371717453,0.411023378372192,-0.434386372566223,0.801478743553162,0.38193017244339,-0.754715919494629,0.533416569232941,0.38193017244339,-0.754715919494629,0.533416569232941,0.411023378372192,-0.434386372566223,0.801478743553162,0.295463979244232,-0.524623990058899,0.798417627811432,0.274058401584625,-0.819783806800842,0.502838253974915,0.346514701843262,-0.87484222650528,0.338494598865509,0.38193017244339,-0.754715919494629,0.533416569232941,0.274058401584625,-0.819783806800842,0.502838253974915,0.246317118406296,-0.926339566707611,0.284996539354324,-4.5741039684799e-06,0.704588413238525,0.709616243839264,0.0222944021224976,0.680644154548645,0.732274889945984,-0.0971987396478653,0.164161846041679,0.981632888317108,-1.57685065005353e-06,0.176666915416718,0.984270691871643,-0.0971987396478653,0.164161846041679,0.981632888317108,0.0222944021224976,0.680644154548645,0.732274889945984,-0.0740893334150314,0.656745910644531,0.750463485717773,-0.224716141819954,0.160125687718391,0.9611776471138,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.178541168570518,-0.598098456859589,0.781281888484955,-0.0971987396478653,0.164161846041679,0.981632888317108,-0.224716141819954,0.160125687718391,0.9611776471138,-1.57685065005353e-06,0.176666915416718,0.984270691871643,-0.0971987396478653,0.164161846041679,0.981632888317108,-0.178541168570518,-0.598098456859589,0.781281888484955, +-1.32595532704727e-05,-0.630243539810181,0.776397466659546,-0.224716141819954,0.160125687718391,0.9611776471138,-0.0740893334150314,0.656745910644531,0.750463485717773,-0.300830811262131,0.617885708808899,0.726442158222198,-0.389300435781479,0.176716148853302,0.904000282287598,-0.295463263988495,-0.524612069129944,0.798425734043121,-0.224716141819954,0.160125687718391,0.9611776471138,-0.389300435781479,0.176716148853302,0.904000282287598,-0.410991340875626,-0.434376358985901,0.801500737667084,0.0740716010332108,0.656759560108185,0.750453352928162,-0.0222910661250353,0.680645227432251,0.732273995876312,0.0971815511584282,0.164161399006844,0.981634795665741,0.224751815199852,0.160114601254463,0.96117115020752,-0.0222910661250353,0.680645227432251,0.732273995876312,-4.5741039684799e-06,0.704588413238525,0.709616243839264,-1.57685065005353e-06,0.176666915416718,0.984270691871643,0.0971815511584282,0.164161399006844,0.981634795665741,0.0971815511584282,0.164161399006844,0.981634795665741,-1.57685065005353e-06,0.176666915416718,0.984270691871643,-1.32595532704727e-05,-0.630243539810181,0.776397466659546,0.178520902991295,-0.598080992698669,0.781299948692322,0.0971815511584282,0.164161399006844,0.981634795665741,0.178520902991295,-0.598080992698669,0.781299948692322,0.295463979244232,-0.524623990058899,0.798417627811432,0.224751815199852,0.160114601254463,0.96117115020752,0.576962471008301,-0.0204886123538017,0.81651371717453,0.518049776554108,0.493121802806854,0.698895752429962,0.389358222484589,0.17671425640583,0.903975784778595,0.411023378372192,-0.434386372566223,0.801478743553162,0.518049776554108,0.493121802806854,0.698895752429962,0.300834655761719,0.617887139320374,0.726439237594604,0.389358222484589,0.17671425640583,0.903975784778595,0.389358222484589,0.17671425640583,0.903975784778595,0.300834655761719,0.617887139320374,0.726439237594604,0.0740716010332108,0.656759560108185,0.750453352928162,0.224751815199852,0.160114601254463,0.96117115020752,0.411023378372192,-0.434386372566223,0.801478743553162,0.389358222484589,0.17671425640583,0.903975784778595, +0.224751815199852,0.160114601254463,0.96117115020752,0.295463979244232,-0.524623990058899,0.798417627811432,0.882606685161591,-0.22201332449913,0.414385885000229,0.571112811565399,0.649166345596313,0.502407431602478,0.650942742824554,0.423487991094589,0.630024969577789,0.821652591228485,-0.227793514728546,0.52249139547348,0.571112811565399,0.649166345596313,0.502407431602478,0.410055428743362,0.82936817407608,0.379477232694626,0.54740297794342,0.632678389549255,0.547784686088562,0.650942742824554,0.423487991094589,0.630024969577789,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.808794856071472,0.325524985790253,0.489779770374298,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.95102071762085,0.230769604444504,-0.205681562423706,-0.921597719192505,0.372494578361511,-0.109112277626991,-0.707225739955902,0.546885251998901,0.448049247264862,-0.808794856071472,0.325524985790253,0.489779770374298,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.788744807243347,-0.219885945320129,-0.574048578739166,-0.892998456954956,-0.0763457044959068,-0.443536967039108,-0.914061605930328,-0.357180237770081,0.192129448056221,-0.654335856437683,-0.708315968513489,-0.26482680439949,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.93520188331604,-0.230134531855583,-0.269138753414154,-0.839888393878937,-0.232928425073624,-0.490236431360245,-0.595371186733246,-0.733831286430359,-0.32714632153511,-0.596256375312805,-0.761426031589508,-0.254379153251648,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.466939598321915,-0.882675111293793,0.0534044429659843, +-0.344773948192596,-0.938333809375763,0.0257047209888697,-0.908128023147583,-0.372857868671417,0.190474167466164,-0.966853618621826,-0.254567980766296,0.0197282843291759,-0.573092699050903,-0.81602817773819,-0.0752510577440262,-0.466939598321915,-0.882675111293793,0.0534044429659843,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.770953416824341,-0.607312977313995,0.191837698221207,-0.824168264865875,-0.533886969089508,0.188974961638451,-0.344773948192596,-0.938333809375763,0.0257047209888697,-0.289740741252899,-0.956932246685028,0.0181950051337481,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.788081765174866,-0.54168164730072,0.29241755604744,-0.746107578277588,-0.622427880764008,0.236446365714073,-0.292672604322433,-0.948891460895538,0.118100740015507,-0.319237440824509,-0.912436723709106,0.25602051615715,-0.577005445957184,-0.0206903330981731,0.816478192806244,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.410991340875626,-0.434376358985901,0.801500737667084,-0.704702973365784,-0.290466517210007,0.647319853305817,-0.786891460418701,-0.450484216213226,0.421741396188736,-0.346520960330963,-0.874840915203094,0.338491857051849,-0.38189622759819,-0.754728436470032,0.533423125743866,-0.518030643463135,0.493195116519928,0.698858201503754,-0.389300435781479,0.176716148853302,0.904000282287598,-0.300830811262131,0.617885708808899,0.726442158222198,-0.518030643463135,0.493195116519928,0.698858201503754,-0.577005445957184,-0.0206903330981731,0.816478192806244,-0.410991340875626,-0.434376358985901,0.801500737667084,-0.389300435781479,0.176716148853302,0.904000282287598,0.00460542785003781,0.423136234283447,0.906054377555847, +0.00872011017054319,0.514292359352112,0.857570588588715,-0.422915160655975,0.672670602798462,0.607171297073364,-0.441228061914444,0.651336491107941,0.617315471172333,0.00872011017054319,0.514292359352112,0.857570588588715,0.0168645158410072,0.671300053596497,0.740993797779083,-0.467725336551666,0.684906303882599,0.558691620826721,-0.422915160655975,0.672670602798462,0.607171297073364,-0.422915160655975,0.672670602798462,0.607171297073364,-0.467725336551666,0.684906303882599,0.558691620826721,-0.506949722766876,0.730726659297943,0.457209646701813,-0.473750680685043,0.77540510892868,0.417501211166382,-0.441228061914444,0.651336491107941,0.617315471172333,-0.422915160655975,0.672670602798462,0.607171297073364,-0.473750680685043,0.77540510892868,0.417501211166382,-0.426372587680817,0.802807927131653,0.416780292987823,0.427262783050537,0.802204430103302,0.417030513286591,0.410055428743362,0.82936817407608,0.379477232694626,0.571112811565399,0.649166345596313,0.502407431602478,0.475550502538681,0.774060308933258,0.417950212955475,0.571112811565399,0.649166345596313,0.502407431602478,0.882606685161591,-0.22201332449913,0.414385885000229,0.529205918312073,0.714222252368927,0.45806947350502,0.475550502538681,0.774060308933258,0.417950212955475,0.0168645158410072,0.671300053596497,0.740993797779083,0.4903504550457,0.657187819480896,0.572416543960571,0.712423324584961,0.262680470943451,0.650731921195984,0.00481855915859342,-0.0946849584579468,0.995495736598969,0.4903504550457,0.657187819480896,0.572416543960571,0.529205918312073,0.714222252368927,0.45806947350502,0.882606685161591,-0.22201332449913,0.414385885000229,0.712423324584961,0.262680470943451,0.650731921195984,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.506949722766876,0.730726659297943,0.457209646701813,-0.467725336551666,0.684906303882599,0.558691620826721,-0.6987544298172,0.276502400636673,0.659764111042023,-0.467725336551666,0.684906303882599,0.558691620826721,0.0168645158410072,0.671300053596497,0.740993797779083,0.00481855915859342,-0.0946849584579468,0.995495736598969, +-0.6987544298172,0.276502400636673,0.659764111042023,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.506735682487488,-0.860871970653534,-0.0460263527929783,-0.821701765060425,-0.227411076426506,0.522580683231354,-0.885448455810547,-0.232625901699066,0.402326047420502,-0.6987544298172,0.276502400636673,0.659764111042023,-0.433865398168564,-0.891728520393372,0.128767356276512,0.40797546505928,-0.907143175601959,0.103186041116714,0.712423324584961,0.262680470943451,0.650731921195984,0.882606685161591,-0.22201332449913,0.414385885000229,0.498789697885513,-0.86515998840332,-0.0520287416875362,0.882606685161591,-0.22201332449913,0.414385885000229,0.821652591228485,-0.227793514728546,0.52249139547348,0.79552561044693,0.595839858055115,0.110063374042511,0.822305619716644,0.555438220500946,0.123700670897961,0.864681661128998,0.456347972154617,0.209933280944824,0.837062537670135,0.505297303199768,0.209764391183853,0.837062537670135,0.505297303199768,0.209764391183853,0.864681661128998,0.456347972154617,0.209933280944824,0.785788238048553,0.527511775493622,0.322906166315079,0.779086053371429,0.561874985694885,0.278067231178284,0.779086053371429,0.561874985694885,0.278067231178284,0.785788238048553,0.527511775493622,0.322906166315079,0.564019203186035,0.698694348335266,0.440123379230499,0.605885326862335,0.723829686641693,0.330111473798752,0.605885326862335,0.723829686641693,0.330111473798752,0.564019203186035,0.698694348335266,0.440123379230499,0.321523547172546,0.764963090419769,0.558080613613129,0.352405101060867,0.847386181354523,0.397174149751663,0.352405101060867,0.847386181354523,0.397174149751663,0.321523547172546,0.764963090419769,0.558080613613129,0.123791985213757,0.766521096229553,0.630175292491913,0.161557465791702,0.858957171440125,0.485892802476883,0.161557465791702,0.858957171440125,0.485892802476883,0.123791985213757,0.766521096229553,0.630175292491913,-0.0675015673041344,0.782272636890411,0.619268119335175,-0.0538193956017494,0.849574446678162,0.524715840816498,-0.0538193956017494,0.849574446678162,0.524715840816498, +-0.0675015673041344,0.782272636890411,0.619268119335175,-0.291181415319443,0.806532561779022,0.514508187770844,-0.279587477445602,0.866692841053009,0.413127571344376,-0.279587477445602,0.866692841053009,0.413127571344376,-0.291181415319443,0.806532561779022,0.514508187770844,-0.484429657459259,0.791166126728058,0.373341768980026,-0.46043586730957,0.846303462982178,0.26789790391922,-0.46043586730957,0.846303462982178,0.26789790391922,-0.484429657459259,0.791166126728058,0.373341768980026,-0.617279648780823,0.743905246257782,0.256067991256714,-0.565503835678101,0.811522305011749,0.147095218300819,-0.565503835678101,0.811522305011749,0.147095218300819,-0.617279648780823,0.743905246257782,0.256067991256714,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.545588612556458,0.837678790092468,-0.0250442679971457,-0.545588612556458,0.837678790092468,-0.0250442679971457,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.500788867473602,0.844238698482513,-0.190974965691566,-0.500788867473602,0.844238698482513,-0.190974965691566,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.465438723564148,0.862823069095612,-0.197238758206367,-0.465438723564148,0.862823069095612,-0.197238758206367,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.47386234998703,0.869076669216156,-0.141986981034279,-0.455590009689331,0.877338051795959,-0.150717169046402,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.663796007633209,0.741590857505798,-0.0970448330044746,-0.631025075912476,0.773547828197479,-0.0585756525397301,-0.47386234998703,0.869076669216156,-0.141986981034279,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.796590507030487,0.597080290317535,0.0945449396967888,-0.663796007633209,0.741590857505798,-0.0970448330044746,-0.515952050685883,0.834159553050995,-0.194862350821495,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.772992789745331,0.528485834598541,0.350976973772049, +-0.796590507030487,0.597080290317535,0.0945449396967888,-0.560772657394409,0.819922089576721,-0.115159533917904,-0.617279648780823,0.743905246257782,0.256067991256714,-0.668447852134705,0.558216512203217,0.491499423980713,-0.772992789745331,0.528485834598541,0.350976973772049,-0.631351113319397,0.77152156829834,0.0784228667616844,-0.484429657459259,0.791166126728058,0.373341768980026,-0.512184023857117,0.631382584571838,0.582257270812988,-0.668447852134705,0.558216512203217,0.491499423980713,-0.617279648780823,0.743905246257782,0.256067991256714,-0.291181415319443,0.806532561779022,0.514508187770844,-0.286070048809052,0.674073100090027,0.681020855903625,-0.512184023857117,0.631382584571838,0.582257270812988,-0.484429657459259,0.791166126728058,0.373341768980026,-0.0675015673041344,0.782272636890411,0.619268119335175,-0.0609671249985695,0.66264545917511,0.746447682380676,-0.286070048809052,0.674073100090027,0.681020855903625,-0.291181415319443,0.806532561779022,0.514508187770844,0.123791985213757,0.766521096229553,0.630175292491913,0.10309998691082,0.640609622001648,0.760913848876953,-0.0609671249985695,0.66264545917511,0.746447682380676,-0.0675015673041344,0.782272636890411,0.619268119335175,0.321523547172546,0.764963090419769,0.558080613613129,0.27548560500145,0.629722595214844,0.726331293582916,0.10309998691082,0.640609622001648,0.760913848876953,0.123791985213757,0.766521096229553,0.630175292491913,0.564019203186035,0.698694348335266,0.440123379230499,0.523837089538574,0.619985103607178,0.584134578704834,0.27548560500145,0.629722595214844,0.726331293582916,0.321523547172546,0.764963090419769,0.558080613613129,0.785788238048553,0.527511775493622,0.322906166315079,0.783428847789764,0.497197300195694,0.372872799634933,0.523837089538574,0.619985103607178,0.584134578704834,0.564019203186035,0.698694348335266,0.440123379230499,0.864681661128998,0.456347972154617,0.209933280944824,0.887787878513336,0.409534066915512,0.210034757852554,0.783428847789764,0.497197300195694,0.372872799634933,0.785788238048553,0.527511775493622,0.322906166315079, +0.822305619716644,0.555438220500946,0.123700670897961,0.856370449066162,0.496364444494247,0.142309591174126,0.887787878513336,0.409534066915512,0.210034757852554,0.864681661128998,0.456347972154617,0.209933280944824,-0.20003841817379,0.438410580158234,0.876230895519257,-0.0559886768460274,0.364805787801743,0.929398715496063,-0.27756455540657,0.370197117328644,0.886516809463501,-0.451225459575653,0.409265160560608,0.793030679225922,-0.346906661987305,0.495702892541885,0.796199917793274,-0.20003841817379,0.438410580158234,0.876230895519257,-0.451225459575653,0.409265160560608,0.793030679225922,-0.449358850717545,0.44352787733078,0.775473773479462,-0.417869210243225,0.49138143658638,0.764152884483337,-0.346906661987305,0.495702892541885,0.796199917793274,-0.449358850717545,0.44352787733078,0.775473773479462,-0.463468283414841,0.434963941574097,0.772012710571289,-0.420782119035721,0.464201241731644,0.779396951198578,-0.417869210243225,0.49138143658638,0.764152884483337,-0.463468283414841,0.434963941574097,0.772012710571289,-0.432620614767075,0.41644498705864,0.799633085727692,-0.336877107620239,0.472848027944565,0.814204335212708,-0.420782119035721,0.464201241731644,0.779396951198578,-0.432620614767075,0.41644498705864,0.799633085727692,-0.365396708250046,0.418648719787598,0.831395506858826,-0.190253153443336,0.493472129106522,0.848698437213898,-0.336877107620239,0.472848027944565,0.814204335212708,-0.365396708250046,0.418648719787598,0.831395506858826,-0.191818997263908,0.392405778169632,0.899568319320679,-0.0167184416204691,0.453507572412491,0.891095578670502,-0.190253153443336,0.493472129106522,0.848698437213898,-0.191818997263908,0.392405778169632,0.899568319320679,0.00109934248030186,0.336940050125122,0.941525459289551,0.0648147463798523,0.414552092552185,0.907714486122131,-0.0167184416204691,0.453507572412491,0.891095578670502,0.00109934248030186,0.336940050125122,0.941525459289551,0.119346849620342,0.271680414676666,0.95495867729187,0.0978945046663284,0.492755919694901,0.864643335342407,0.0648147463798523,0.414552092552185,0.907714486122131, +0.119346849620342,0.271680414676666,0.95495867729187,0.148801043629646,0.288873583078384,0.945732772350311,-0.179629519581795,0.708519041538239,0.682447075843811,0.0978945046663284,0.492755919694901,0.864643335342407,0.148801043629646,0.288873583078384,0.945732772350311,0.0872103199362755,0.409369260072708,0.9081911444664,-0.515660226345062,0.725088238716125,0.456444472074509,-0.179629519581795,0.708519041538239,0.682447075843811,0.0872103199362755,0.409369260072708,0.9081911444664,-0.346839159727097,0.61002653837204,0.71243953704834,-0.346839159727097,0.61002653837204,0.71243953704834,-0.585036933422089,0.553135514259338,0.593104362487793,-0.680903017520905,0.6627037525177,0.31176084280014,-0.515660226345062,0.725088238716125,0.456444472074509,-0.451225459575653,0.409265160560608,0.793030679225922,-0.27756455540657,0.370197117328644,0.886516809463501,-0.616989433765411,0.336210519075394,0.711538076400757,-0.532644748687744,0.366001725196838,0.763107120990753,-0.449358850717545,0.44352787733078,0.775473773479462,-0.451225459575653,0.409265160560608,0.793030679225922,-0.532644748687744,0.366001725196838,0.763107120990753,-0.517771780490875,0.393900960683823,0.759443581104279,-0.463468283414841,0.434963941574097,0.772012710571289,-0.449358850717545,0.44352787733078,0.775473773479462,-0.517771780490875,0.393900960683823,0.759443581104279,-0.485129326581955,0.386637717485428,0.784321963787079,-0.432620614767075,0.41644498705864,0.799633085727692,-0.463468283414841,0.434963941574097,0.772012710571289,-0.485129326581955,0.386637717485428,0.784321963787079,-0.455205500125885,0.371867537498474,0.809013247489929,-0.365396708250046,0.418648719787598,0.831395506858826,-0.432620614767075,0.41644498705864,0.799633085727692,-0.455205500125885,0.371867537498474,0.809013247489929,-0.404153525829315,0.357689827680588,0.84185391664505,-0.191818997263908,0.392405778169632,0.899568319320679,-0.365396708250046,0.418648719787598,0.831395506858826,-0.404153525829315,0.357689827680588,0.84185391664505,-0.226094484329224,0.307335823774338,0.924351632595062, +0.00109934248030186,0.336940050125122,0.941525459289551,-0.191818997263908,0.392405778169632,0.899568319320679,-0.226094484329224,0.307335823774338,0.924351632595062,0.000263402966083959,0.235974609851837,0.97175920009613,0.119346849620342,0.271680414676666,0.95495867729187,0.00109934248030186,0.336940050125122,0.941525459289551,0.000263402966083959,0.235974609851837,0.97175920009613,0.151816561818123,0.166385546326637,0.974303662776947,0.148801043629646,0.288873583078384,0.945732772350311,0.119346849620342,0.271680414676666,0.95495867729187,0.151816561818123,0.166385546326637,0.974303662776947,0.192410156130791,0.114098198711872,0.974658787250519,0.0872103199362755,0.409369260072708,0.9081911444664,0.148801043629646,0.288873583078384,0.945732772350311,0.192410156130791,0.114098198711872,0.974658787250519,0.126400336623192,0.16581466794014,0.978022754192352,-0.346839159727097,0.61002653837204,0.71243953704834,0.0872103199362755,0.409369260072708,0.9081911444664,0.126400336623192,0.16581466794014,0.978022754192352,-0.0755287706851959,0.24411752820015,0.966799795627594,-0.291437596082687,0.244067013263702,0.924929857254028,-0.585036933422089,0.553135514259338,0.593104362487793,-0.346839159727097,0.61002653837204,0.71243953704834,-0.0755287706851959,0.24411752820015,0.966799795627594,-0.795871138572693,0.595325827598572,0.110346332192421,-0.838166117668152,0.502178966999054,0.212823629379272,-0.865933299064636,0.453616350889206,0.210693702101707,-0.822527229785919,0.555088579654694,0.123797357082367,-0.838166117668152,0.502178966999054,0.212823629379272,-0.782321691513062,0.555092513561249,0.282568991184235,-0.788384258747101,0.522886753082275,0.324098169803619,-0.865933299064636,0.453616350889206,0.210693702101707,-0.782321691513062,0.555092513561249,0.282568991184235,-0.608225166797638,0.719006061553955,0.336292415857315,-0.565164387226105,0.695841789245605,0.443162739276886,-0.788384258747101,0.522886753082275,0.324098169803619,-0.608225166797638,0.719006061553955,0.336292415857315,-0.351543247699738,0.844057083129883,0.404950380325317, +-0.319673299789429,0.761841833591461,0.563388049602509,-0.565164387226105,0.695841789245605,0.443162739276886,-0.351543247699738,0.844057083129883,0.404950380325317,-0.161584869027138,0.851693153381348,0.498507022857666,-0.123349443078041,0.759338319301605,0.638897776603699,-0.319673299789429,0.761841833591461,0.563388049602509,-0.161584869027138,0.851693153381348,0.498507022857666,0.0543670207262039,0.83843058347702,0.542289912700653,0.0674883872270584,0.775307059288025,0.627968311309814,-0.123349443078041,0.759338319301605,0.638897776603699,0.0543670207262039,0.83843058347702,0.542289912700653,0.286949574947357,0.860992014408112,0.41994372010231,0.296658903360367,0.804474413394928,0.514601230621338,0.0674883872270584,0.775307059288025,0.627968311309814,0.286949574947357,0.860992014408112,0.41994372010231,0.467964470386505,0.846542537212372,0.253722310066223,0.493949472904205,0.798535943031311,0.344026625156403,0.296658903360367,0.804474413394928,0.514601230621338,0.467964470386505,0.846542537212372,0.253722310066223,0.555996716022491,0.82312685251236,0.115454353392124,0.605730056762695,0.769242763519287,0.203363120555878,0.493949472904205,0.798535943031311,0.344026625156403,0.555996716022491,0.82312685251236,0.115454353392124,0.525425016880035,0.85005909204483,-0.0364445634186268,0.602065026760101,0.796723365783691,0.0524378456175327,0.605730056762695,0.769242763519287,0.203363120555878,0.525425016880035,0.85005909204483,-0.0364445634186268,0.491407126188278,0.849751234054565,-0.190897688269615,0.543089807033539,0.831915259361267,-0.113888308405876,0.602065026760101,0.796723365783691,0.0524378456175327,0.491407126188278,0.849751234054565,-0.190897688269615,0.465588539838791,0.862692415714264,-0.197456672787666,0.515509724617004,0.834379851818085,-0.195089563727379,0.543089807033539,0.831915259361267,-0.113888308405876,0.465588539838791,0.862692415714264,-0.197456672787666,0.455589681863785,0.877338349819183,-0.150716587901115,0.473881989717484,0.869064331054688,-0.141996741294861,0.515509724617004,0.834379851818085,-0.195089563727379, +0.515509724617004,0.834379851818085,-0.195089563727379,0.473881989717484,0.869064331054688,-0.141996741294861,0.631182014942169,0.77341091632843,-0.0586919039487839,0.656062304973602,0.748713314533234,-0.0949239209294319,0.543089807033539,0.831915259361267,-0.113888308405876,0.515509724617004,0.834379851818085,-0.195089563727379,0.656062304973602,0.748713314533234,-0.0949239209294319,0.764918148517609,0.636813342571259,0.0967939123511314,0.602065026760101,0.796723365783691,0.0524378456175327,0.543089807033539,0.831915259361267,-0.113888308405876,0.764918148517609,0.636813342571259,0.0967939123511314,0.753624260425568,0.586855113506317,0.296060055494308,0.605730056762695,0.769242763519287,0.203363120555878,0.602065026760101,0.796723365783691,0.0524378456175327,0.753624260425568,0.586855113506317,0.296060055494308,0.677423357963562,0.611345052719116,0.409090340137482,0.493949472904205,0.798535943031311,0.344026625156403,0.605730056762695,0.769242763519287,0.203363120555878,0.677423357963562,0.611345052719116,0.409090340137482,0.527201592922211,0.65714955329895,0.538714170455933,0.296658903360367,0.804474413394928,0.514601230621338,0.493949472904205,0.798535943031311,0.344026625156403,0.527201592922211,0.65714955329895,0.538714170455933,0.289933115243912,0.685714840888977,0.66763311624527,0.0674883872270584,0.775307059288025,0.627968311309814,0.296658903360367,0.804474413394928,0.514601230621338,0.289933115243912,0.685714840888977,0.66763311624527,0.0593743547797203,0.667868256568909,0.7419074177742,-0.123349443078041,0.759338319301605,0.638897776603699,0.0674883872270584,0.775307059288025,0.627968311309814,0.0593743547797203,0.667868256568909,0.7419074177742,-0.103779539465904,0.641935110092163,0.759703278541565,-0.319673299789429,0.761841833591461,0.563388049602509,-0.123349443078041,0.759338319301605,0.638897776603699,-0.103779539465904,0.641935110092163,0.759703278541565,-0.273604482412338,0.628802061080933,0.727838158607483,-0.565164387226105,0.695841789245605,0.443162739276886,-0.319673299789429,0.761841833591461,0.563388049602509, +-0.273604482412338,0.628802061080933,0.727838158607483,-0.525540411472321,0.618863165378571,0.583794176578522,-0.788384258747101,0.522886753082275,0.324098169803619,-0.565164387226105,0.695841789245605,0.443162739276886,-0.525540411472321,0.618863165378571,0.583794176578522,-0.787359774112701,0.493692189455032,0.369232565164566,-0.865933299064636,0.453616350889206,0.210693702101707,-0.788384258747101,0.522886753082275,0.324098169803619,-0.787359774112701,0.493692189455032,0.369232565164566,-0.888947308063507,0.407739669084549,0.208616614341736,-0.822527229785919,0.555088579654694,0.123797357082367,-0.865933299064636,0.453616350889206,0.210693702101707,-0.888947308063507,0.407739669084549,0.208616614341736,-0.856503546237946,0.49617213010788,0.142179012298584,0.200131505727768,0.438421100378036,0.876204431056976,0.451211780309677,0.409286677837372,0.793027341365814,0.277718961238861,0.370229154825211,0.886455059051514,0.0562071055173874,0.364845335483551,0.929370045661926,0.346876591444016,0.495704889297485,0.796211838722229,0.449339509010315,0.443532466888428,0.775482296943665,0.451211780309677,0.409286677837372,0.793027341365814,0.200131505727768,0.438421100378036,0.876204431056976,0.417846471071243,0.491397082805634,0.764155268669128,0.463464736938477,0.434973210096359,0.772009491920471,0.449339509010315,0.443532466888428,0.775482296943665,0.346876591444016,0.495704889297485,0.796211838722229,0.420786261558533,0.464215278625488,0.779386281967163,0.432622611522675,0.41645023226738,0.799629151821136,0.463464736938477,0.434973210096359,0.772009491920471,0.417846471071243,0.491397082805634,0.764155268669128,0.337372869253159,0.472758710384369,0.814050793647766,0.365835696458817,0.418444246053696,0.831305384635925,0.432622611522675,0.41645023226738,0.799629151821136,0.420786261558533,0.464215278625488,0.779386281967163,0.190815776586533,0.49288147687912,0.848915338516235,0.192171931266785,0.391860455274582,0.899730682373047,0.365835696458817,0.418444246053696,0.831305384635925,0.337372869253159,0.472758710384369,0.814050793647766, +0.0167315900325775,0.452206552028656,0.891756355762482,-0.00104986038058996,0.336072474718094,0.941835522651672,0.192171931266785,0.391860455274582,0.899730682373047,0.190815776586533,0.49288147687912,0.848915338516235,-0.0417919717729092,0.405640542507172,0.913076758384705,-0.1152218952775,0.259502649307251,0.958844184875488,-0.00104986038058996,0.336072474718094,0.941835522651672,0.0167315900325775,0.452206552028656,0.891756355762482,-0.0965219810605049,0.465165585279465,0.879945814609528,-0.139460861682892,0.273902326822281,0.95159238576889,-0.1152218952775,0.259502649307251,0.958844184875488,-0.0417919717729092,0.405640542507172,0.913076758384705,0.082101583480835,0.670126140117645,0.737692594528198,-0.123548083007336,0.369477242231369,0.92098993062973,-0.139460861682892,0.273902326822281,0.95159238576889,-0.0965219810605049,0.465165585279465,0.879945814609528,0.412386745214462,0.749736428260803,0.517525434494019,0.261508852243423,0.607627511024475,0.749934673309326,-0.123548083007336,0.369477242231369,0.92098993062973,0.082101583480835,0.670126140117645,0.737692594528198,0.261508852243423,0.607627511024475,0.749934673309326,0.412386745214462,0.749736428260803,0.517525434494019,0.614259004592896,0.714404463768005,0.335129946470261,0.516154408454895,0.575639069080353,0.634211540222168,0.451211780309677,0.409286677837372,0.793027341365814,0.532635092735291,0.366013139486313,0.763108193874359,0.616972208023071,0.336260706186295,0.711529314517975,0.277718961238861,0.370229154825211,0.886455059051514,0.449339509010315,0.443532466888428,0.775482296943665,0.517770528793335,0.39390355348587,0.759442985057831,0.532635092735291,0.366013139486313,0.763108193874359,0.451211780309677,0.409286677837372,0.793027341365814,0.463464736938477,0.434973210096359,0.772009491920471,0.485128939151764,0.386638611555099,0.784321665763855,0.517770528793335,0.39390355348587,0.759442985057831,0.449339509010315,0.443532466888428,0.775482296943665,0.432622611522675,0.41645023226738,0.799629151821136,0.455205053091049,0.371867954730988,0.809013307094574, +0.485128939151764,0.386638611555099,0.784321665763855,0.463464736938477,0.434973210096359,0.772009491920471,0.365835696458817,0.418444246053696,0.831305384635925,0.404331475496292,0.357535749673843,0.841833829879761,0.455205053091049,0.371867954730988,0.809013307094574,0.432622611522675,0.41645023226738,0.799629151821136,0.192171931266785,0.391860455274582,0.899730682373047,0.2261912971735,0.306842446327209,0.924491882324219,0.404331475496292,0.357535749673843,0.841833829879761,0.365835696458817,0.418444246053696,0.831305384635925,-0.00104986038058996,0.336072474718094,0.941835522651672,-0.000247684249188751,0.235394403338432,0.971899926662445,0.2261912971735,0.306842446327209,0.924491882324219,0.192171931266785,0.391860455274582,0.899730682373047,-0.1152218952775,0.259502649307251,0.958844184875488,-0.15117920935154,0.162139803171158,0.975118219852448,-0.000247684249188751,0.235394403338432,0.971899926662445,-0.00104986038058996,0.336072474718094,0.941835522651672,-0.139460861682892,0.273902326822281,0.95159238576889,-0.190438747406006,0.104879260063171,0.976080596446991,-0.15117920935154,0.162139803171158,0.975118219852448,-0.1152218952775,0.259502649307251,0.958844184875488,-0.123548083007336,0.369477242231369,0.92098993062973,-0.146181687712669,0.14926116168499,0.977932572364807,-0.190438747406006,0.104879260063171,0.976080596446991,-0.139460861682892,0.273902326822281,0.95159238576889,0.261508852243423,0.607627511024475,0.749934673309326,0.0509857349097729,0.240675792098045,0.969265460968018,-0.146181687712669,0.14926116168499,0.977932572364807,-0.123548083007336,0.369477242231369,0.92098993062973,0.262078791856766,0.249597102403641,0.932210266590118,0.0509857349097729,0.240675792098045,0.969265460968018,0.261508852243423,0.607627511024475,0.749934673309326,0.516154408454895,0.575639069080353,0.634211540222168,0.668958902359009,0.68157160282135,0.296570926904678,0.712892115116119,0.624191164970398,0.319640845060349,0.841260850429535,0.39132171869278,0.373024731874466,0.759548902511597,0.593487977981567,0.266190499067307, +0.759548902511597,0.593487977981567,0.266190499067307,0.841260850429535,0.39132171869278,0.373024731874466,0.758107423782349,0.467951327562332,0.454196691513062,0.750302791595459,0.575713872909546,0.324960440397263,0.750302791595459,0.575713872909546,0.324960440397263,0.758107423782349,0.467951327562332,0.454196691513062,0.550983965396881,0.549409329891205,0.628144860267639,0.608252167701721,0.621356606483459,0.493908196687698,0.608252167701721,0.621356606483459,0.493908196687698,0.550983965396881,0.549409329891205,0.628144860267639,0.319611966609955,0.608245968818665,0.726556956768036,0.354390531778336,0.67411744594574,0.648053288459778,0.354390531778336,0.67411744594574,0.648053288459778,0.319611966609955,0.608245968818665,0.726556956768036,0.0787200704216957,0.630947589874268,0.771821439266205,0.0942986905574799,0.721198499202728,0.686280131340027,0.0942986905574799,0.721198499202728,0.686280131340027,0.0787200704216957,0.630947589874268,0.771821439266205,-0.111744396388531,0.629742980003357,0.768724203109741,-0.130209371447563,0.707272231578827,0.694846451282501,-0.130209371447563,0.707272231578827,0.694846451282501,-0.111744396388531,0.629742980003357,0.768724203109741,-0.332083493471146,0.630440175533295,0.701616525650024,-0.337966412305832,0.694904088973999,0.6347336769104,-0.337966412305832,0.694904088973999,0.6347336769104,-0.332083493471146,0.630440175533295,0.701616525650024,-0.542691469192505,0.614945948123932,0.572125315666199,-0.537160754203796,0.708100020885468,0.458315074443817,-0.537160754203796,0.708100020885468,0.458315074443817,-0.542691469192505,0.614945948123932,0.572125315666199,-0.680507481098175,0.642539322376251,0.352211266756058,-0.604439496994019,0.781278491020203,0.155746340751648,-0.604439496994019,0.781278491020203,0.155746340751648,-0.680507481098175,0.642539322376251,0.352211266756058,-0.725529193878174,0.662429630756378,0.186532467603683,-0.532686829566956,0.846239864826202,0.0110806794837117,-0.532686829566956,0.846239864826202,0.0110806794837117,-0.725529193878174,0.662429630756378,0.186532467603683, +-0.657000839710236,0.742182672023773,0.13234344124794,-0.482186883687973,0.873794972896576,-0.0630734488368034,-0.482186883687973,0.873794972896576,-0.0630734488368034,-0.657000839710236,0.742182672023773,0.13234344124794,-0.506615281105042,0.854297280311584,0.116263218224049,-0.341556280851364,0.938045501708984,0.0583939701318741,-0.341556280851364,0.938045501708984,0.0583939701318741,-0.506615281105042,0.854297280311584,0.116263218224049,-0.338107854127884,0.920264959335327,0.196965858340263,-0.260902613401413,0.953070282936096,0.153580263257027,-0.506615281105042,0.854297280311584,0.116263218224049,-0.769476294517517,0.497736215591431,0.400206178426743,-0.680981874465942,0.620665073394775,0.388636857271194,-0.338107854127884,0.920264959335327,0.196965858340263,-0.657000839710236,0.742182672023773,0.13234344124794,-0.857420980930328,0.313098549842834,0.408409774303436,-0.769476294517517,0.497736215591431,0.400206178426743,-0.506615281105042,0.854297280311584,0.116263218224049,-0.725529193878174,0.662429630756378,0.186532467603683,-0.850535035133362,0.369106441736221,0.37463366985321,-0.857420980930328,0.313098549842834,0.408409774303436,-0.657000839710236,0.742182672023773,0.13234344124794,-0.680507481098175,0.642539322376251,0.352211266756058,-0.693787932395935,0.476604342460632,0.539913415908813,-0.850535035133362,0.369106441736221,0.37463366985321,-0.725529193878174,0.662429630756378,0.186532467603683,-0.542691469192505,0.614945948123932,0.572125315666199,-0.544361114501953,0.540484726428986,0.641519367694855,-0.693787932395935,0.476604342460632,0.539913415908813,-0.680507481098175,0.642539322376251,0.352211266756058,-0.332083493471146,0.630440175533295,0.701616525650024,-0.271141558885574,0.547871172428131,0.791403472423553,-0.544361114501953,0.540484726428986,0.641519367694855,-0.542691469192505,0.614945948123932,0.572125315666199,-0.111744396388531,0.629742980003357,0.768724203109741,-0.0899595618247986,0.534053146839142,0.840651273727417,-0.271141558885574,0.547871172428131,0.791403472423553,-0.332083493471146,0.630440175533295,0.701616525650024, +0.0787200704216957,0.630947589874268,0.771821439266205,0.0664047524333,0.54141366481781,0.838129818439484,-0.0899595618247986,0.534053146839142,0.840651273727417,-0.111744396388531,0.629742980003357,0.768724203109741,0.319611966609955,0.608245968818665,0.726556956768036,0.255734086036682,0.54309356212616,0.799780905246735,0.0664047524333,0.54141366481781,0.838129818439484,0.0787200704216957,0.630947589874268,0.771821439266205,0.550983965396881,0.549409329891205,0.628144860267639,0.491634607315063,0.502058148384094,0.711500585079193,0.255734086036682,0.54309356212616,0.799780905246735,0.319611966609955,0.608245968818665,0.726556956768036,0.758107423782349,0.467951327562332,0.454196691513062,0.740145146846771,0.375153362751007,0.558072686195374,0.491634607315063,0.502058148384094,0.711500585079193,0.550983965396881,0.549409329891205,0.628144860267639,0.841260850429535,0.39132171869278,0.373024731874466,0.849023699760437,0.337943941354752,0.406143814325333,0.740145146846771,0.375153362751007,0.558072686195374,0.758107423782349,0.467951327562332,0.454196691513062,0.712892115116119,0.624191164970398,0.319640845060349,0.776841819286346,0.520824015140533,0.35391965508461,0.849023699760437,0.337943941354752,0.406143814325333,0.841260850429535,0.39132171869278,0.373024731874466,-0.275715738534927,0.460171669721603,0.84393298625946,-0.197954341769218,0.382024228572845,0.902702450752258,-0.307731240987778,0.404107689857483,0.861393332481384,-0.436201751232147,0.479527413845062,0.761433780193329,-0.351795554161072,0.543404757976532,0.762201547622681,-0.275715738534927,0.460171669721603,0.84393298625946,-0.436201751232147,0.479527413845062,0.761433780193329,-0.417175799608231,0.523640275001526,0.742808878421783,-0.378598630428314,0.570950627326965,0.728476762771606,-0.351795554161072,0.543404757976532,0.762201547622681,-0.417175799608231,0.523640275001526,0.742808878421783,-0.418992638587952,0.533034801483154,0.735063850879669,-0.358235865831375,0.583382785320282,0.728924930095673,-0.378598630428314,0.570950627326965,0.728476762771606, +-0.418992638587952,0.533034801483154,0.735063850879669,-0.389877080917358,0.533320188522339,0.75070995092392,-0.258409857749939,0.645295202732086,0.718900799751282,-0.358235865831375,0.583382785320282,0.728924930095673,-0.389877080917358,0.533320188522339,0.75070995092392,-0.315838098526001,0.559803366661072,0.76607209444046,-0.128576412796974,0.720002472400665,0.68195652961731,-0.258409857749939,0.645295202732086,0.718900799751282,-0.315838098526001,0.559803366661072,0.76607209444046,-0.159221634268761,0.561227858066559,0.812201857566833,-0.0381468534469604,0.733152568340302,0.678993463516235,-0.128576412796974,0.720002472400665,0.68195652961731,-0.159221634268761,0.561227858066559,0.812201857566833,-0.00317653990350664,0.523101091384888,0.852264761924744,-0.026578526943922,0.725501716136932,0.68770694732666,-0.0381468534469604,0.733152568340302,0.678993463516235,-0.00317653990350664,0.523101091384888,0.852264761924744,0.0717102885246277,0.472436428070068,0.878442585468292,0.00283694686368108,0.74715530872345,0.664643406867981,-0.026578526943922,0.725501716136932,0.68770694732666,0.0717102885246277,0.472436428070068,0.878442585468292,0.099170982837677,0.499038219451904,0.860886752605438,-0.160838484764099,0.77303546667099,0.613634347915649,0.00283694686368108,0.74715530872345,0.664643406867981,0.099170982837677,0.499038219451904,0.860886752605438,0.0112770479172468,0.578017592430115,0.815946459770203,-0.414339512586594,0.702934086322784,0.578105807304382,-0.160838484764099,0.77303546667099,0.613634347915649,0.0112770479172468,0.578017592430115,0.815946459770203,-0.346778333187103,0.616445362567902,0.706922829151154,-0.346778333187103,0.616445362567902,0.706922829151154,-0.517011404037476,0.485512763261795,0.704965472221375,-0.609012484550476,0.571124494075775,0.550382196903229,-0.414339512586594,0.702934086322784,0.578105807304382,-0.436201751232147,0.479527413845062,0.761433780193329,-0.307731240987778,0.404107689857483,0.861393332481384,-0.622266530990601,0.435071110725403,0.650766909122467,-0.508729696273804,0.461810231208801,0.726584792137146, +-0.417175799608231,0.523640275001526,0.742808878421783,-0.436201751232147,0.479527413845062,0.761433780193329,-0.508729696273804,0.461810231208801,0.726584792137146,-0.489443123340607,0.488384783267975,0.722444355487823,-0.418992638587952,0.533034801483154,0.735063850879669,-0.417175799608231,0.523640275001526,0.742808878421783,-0.489443123340607,0.488384783267975,0.722444355487823,-0.460503607988358,0.483971506357193,0.744115591049194,-0.389877080917358,0.533320188522339,0.75070995092392,-0.418992638587952,0.533034801483154,0.735063850879669,-0.460503607988358,0.483971506357193,0.744115591049194,-0.43320894241333,0.467218518257141,0.770737886428833,-0.315838098526001,0.559803366661072,0.76607209444046,-0.389877080917358,0.533320188522339,0.75070995092392,-0.43320894241333,0.467218518257141,0.770737886428833,-0.389635562896729,0.451495766639709,0.80270528793335,-0.159221634268761,0.561227858066559,0.812201857566833,-0.315838098526001,0.559803366661072,0.76607209444046,-0.389635562896729,0.451495766639709,0.80270528793335,-0.214204505085945,0.403091311454773,0.889738142490387,-0.00317653990350664,0.523101091384888,0.852264761924744,-0.159221634268761,0.561227858066559,0.812201857566833,-0.214204505085945,0.403091311454773,0.889738142490387,0.000792705512139946,0.327331513166428,0.944909274578094,0.0717102885246277,0.472436428070068,0.878442585468292,-0.00317653990350664,0.523101091384888,0.852264761924744,0.000792705512139946,0.327331513166428,0.944909274578094,0.137383162975311,0.241212025284767,0.960699081420898,0.099170982837677,0.499038219451904,0.860886752605438,0.0717102885246277,0.472436428070068,0.878442585468292,0.137383162975311,0.241212025284767,0.960699081420898,0.177790597081184,0.18091207742691,0.96729588508606,0.0112770479172468,0.578017592430115,0.815946459770203,0.099170982837677,0.499038219451904,0.860886752605438,0.177790597081184,0.18091207742691,0.96729588508606,0.119499124586582,0.24078731238842,0.963193297386169,-0.346778333187103,0.616445362567902,0.706922829151154,0.0112770479172468,0.578017592430115,0.815946459770203, +0.119499124586582,0.24078731238842,0.963193297386169,-0.098927304148674,0.30905020236969,0.945886492729187,-0.311224281787872,0.293605983257294,0.903844594955444,-0.517011404037476,0.485512763261795,0.704965472221375,-0.346778333187103,0.616445362567902,0.706922829151154,-0.098927304148674,0.30905020236969,0.945886492729187,-0.678620874881744,0.668131351470947,0.305080503225327,-0.755384802818298,0.593719959259033,0.277290970087051,-0.840962946414948,0.390145093202591,0.374924302101135,-0.717747151851654,0.621491432189941,0.313986510038376,-0.755384802818298,0.593719959259033,0.277290970087051,-0.747042119503021,0.575131416320801,0.333394438028336,-0.757769167423248,0.465411186218262,0.457360178232193,-0.840962946414948,0.390145093202591,0.374924302101135,-0.747042119503021,0.575131416320801,0.333394438028336,-0.611244022846222,0.611577749252319,0.502347826957703,-0.552741825580597,0.540196597576141,0.634558200836182,-0.757769167423248,0.465411186218262,0.457360178232193,-0.611244022846222,0.611577749252319,0.502347826957703,-0.352288842201233,0.658220887184143,0.665310323238373,-0.317967534065247,0.599665462970734,0.734369039535522,-0.552741825580597,0.540196597576141,0.634558200836182,-0.352288842201233,0.658220887184143,0.665310323238373,-0.0920629650354385,0.706641435623169,0.701557219028473,-0.0763334855437279,0.623085916042328,0.778419554233551,-0.317967534065247,0.599665462970734,0.734369039535522,-0.0920629650354385,0.706641435623169,0.701557219028473,0.131516799330711,0.694495916366577,0.707374632358551,0.112514115869999,0.62187922000885,0.774988293647766,-0.0763334855437279,0.623085916042328,0.778419554233551,0.131516799330711,0.694495916366577,0.707374632358551,0.34254789352417,0.684040784835815,0.644010186195374,0.335846185684204,0.62657630443573,0.703284680843353,0.112514115869999,0.62187922000885,0.774988293647766,0.34254789352417,0.684040784835815,0.644010186195374,0.539994060993195,0.699622750282288,0.46790423989296,0.551472783088684,0.624497890472412,0.553064405918121,0.335846185684204,0.62657630443573,0.703284680843353, +0.539994060993195,0.699622750282288,0.46790423989296,0.609861552715302,0.775971353054047,0.161050826311111,0.67372453212738,0.658868253231049,0.33464577794075,0.551472783088684,0.624497890472412,0.553064405918121,0.609861552715302,0.775971353054047,0.161050826311111,0.536829113960266,0.843628168106079,0.0102994004264474,0.713483333587646,0.67962920665741,0.170427396893501,0.67372453212738,0.658868253231049,0.33464577794075,0.536829113960266,0.843628168106079,0.0102994004264474,0.483504563570023,0.872991502285004,-0.0641032606363297,0.649325251579285,0.750019788742065,0.125885203480721,0.713483333587646,0.67962920665741,0.170427396893501,0.483504563570023,0.872991502285004,-0.0641032606363297,0.341556757688522,0.93804544210434,0.0583939105272293,0.506202161312103,0.854539036750793,0.116285167634487,0.649325251579285,0.750019788742065,0.125885203480721,0.341556757688522,0.93804544210434,0.0583939105272293,0.260903298854828,0.953070104122162,0.153580293059349,0.338129699230194,0.92026150226593,0.196944087743759,0.506202161312103,0.854539036750793,0.116285167634487,0.506202161312103,0.854539036750793,0.116285167634487,0.338129699230194,0.92026150226593,0.196944087743759,0.681084156036377,0.620642125606537,0.388494074344635,0.766310930252075,0.500690996646881,0.402586817741394,0.649325251579285,0.750019788742065,0.125885203480721,0.506202161312103,0.854539036750793,0.116285167634487,0.766310930252075,0.500690996646881,0.402586817741394,0.848896503448486,0.33591690659523,0.408086448907852,0.713483333587646,0.67962920665741,0.170427396893501,0.649325251579285,0.750019788742065,0.125885203480721,0.848896503448486,0.33591690659523,0.408086448907852,0.844893157482147,0.406099170446396,0.348193794488907,0.67372453212738,0.658868253231049,0.33464577794075,0.713483333587646,0.67962920665741,0.170427396893501,0.844893157482147,0.406099170446396,0.348193794488907,0.700551509857178,0.517200708389282,0.491661667823792,0.551472783088684,0.624497890472412,0.553064405918121,0.67372453212738,0.658868253231049,0.33464577794075,0.700551509857178,0.517200708389282,0.491661667823792, +0.557285487651825,0.559047281742096,0.613921046257019,0.335846185684204,0.62657630443573,0.703284680843353,0.551472783088684,0.624497890472412,0.553064405918121,0.557285487651825,0.559047281742096,0.613921046257019,0.27227109670639,0.549541413784027,0.789856195449829,0.112514115869999,0.62187922000885,0.774988293647766,0.335846185684204,0.62657630443573,0.703284680843353,0.27227109670639,0.549541413784027,0.789856195449829,0.0905894637107849,0.533169269561768,0.841144502162933,-0.0763334855437279,0.623085916042328,0.778419554233551,0.112514115869999,0.62187922000885,0.774988293647766,0.0905894637107849,0.533169269561768,0.841144502162933,-0.0643948391079903,0.541185796260834,0.838433802127838,-0.317967534065247,0.599665462970734,0.734369039535522,-0.0763334855437279,0.623085916042328,0.778419554233551,-0.0643948391079903,0.541185796260834,0.838433802127838,-0.254393458366394,0.54304701089859,0.80023980140686,-0.552741825580597,0.540196597576141,0.634558200836182,-0.317967534065247,0.599665462970734,0.734369039535522,-0.254393458366394,0.54304701089859,0.80023980140686,-0.495379596948624,0.498261719942093,0.711571753025055,-0.757769167423248,0.465411186218262,0.457360178232193,-0.552741825580597,0.540196597576141,0.634558200836182,-0.495379596948624,0.498261719942093,0.711571753025055,-0.743229031562805,0.369729220867157,0.557593941688538,-0.840962946414948,0.390145093202591,0.374924302101135,-0.757769167423248,0.465411186218262,0.457360178232193,-0.743229031562805,0.369729220867157,0.557593941688538,-0.850350022315979,0.348880529403687,0.39393812417984,-0.717747151851654,0.621491432189941,0.313986510038376,-0.840962946414948,0.390145093202591,0.374924302101135,-0.850350022315979,0.348880529403687,0.39393812417984,-0.778777241706848,0.53561007976532,0.32653933763504,0.275719702243805,0.460170179605484,0.843932509422302,0.436201423406601,0.479528099298477,0.761433482170105,0.307734996080399,0.404104202985764,0.861393630504608,0.197962492704391,0.382020533084869,0.902702152729034,0.351768672466278,0.543404996395111,0.76221376657486, +0.417156010866165,0.523643493652344,0.7428178191185,0.436201423406601,0.479528099298477,0.761433482170105,0.275719702243805,0.460170179605484,0.843932509422302,0.37857586145401,0.570964157581329,0.728478074073792,0.41898587346077,0.53304386138916,0.735061228275299,0.417156010866165,0.523643493652344,0.7428178191185,0.351768672466278,0.543404996395111,0.76221376657486,0.358240336179733,0.583399534225464,0.728909373283386,0.389880478382111,0.533327877521515,0.750702738761902,0.41898587346077,0.53304386138916,0.735061228275299,0.37857586145401,0.570964157581329,0.728478074073792,0.259075939655304,0.645155906677246,0.718786001205444,0.316354364156723,0.559554100036621,0.766041278839111,0.389880478382111,0.533327877521515,0.750702738761902,0.358240336179733,0.583399534225464,0.728909373283386,0.129498109221458,0.719105303287506,0.682728171348572,0.159733444452286,0.560464978218079,0.812627971172333,0.316354364156723,0.559554100036621,0.766041278839111,0.259075939655304,0.645155906677246,0.718786001205444,0.038288414478302,0.731195628643036,0.681092500686646,0.00330777233466506,0.521748542785645,0.853092908859253,0.159733444452286,0.560464978218079,0.812627971172333,0.129498109221458,0.719105303287506,0.682728171348572,0.056560043245554,0.702001690864563,0.709925770759583,-0.0615331493318081,0.450990349054337,0.890405297279358,0.00330777233466506,0.521748542785645,0.853092908859253,0.038288414478302,0.731195628643036,0.681092500686646,0.00203956733457744,0.699232161045074,0.714891791343689,-0.0932714119553566,0.467536836862564,0.879039168357849,-0.0615331493318081,0.450990349054337,0.890405297279358,0.056560043245554,0.702001690864563,0.709925770759583,0.0691205337643623,0.739311456680298,0.66980654001236,-0.0697455182671547,0.52985942363739,0.845212817192078,-0.0932714119553566,0.467536836862564,0.879039168357849,0.00203956733457744,0.699232161045074,0.714891791343689,0.319880992174149,0.71192342042923,0.625173032283783,0.266856610774994,0.613635778427124,0.743127644062042,-0.0697455182671547,0.52985942363739,0.845212817192078, +0.0691205337643623,0.739311456680298,0.66980654001236,0.266856610774994,0.613635778427124,0.743127644062042,0.319880992174149,0.71192342042923,0.625173032283783,0.568226873874664,0.595151424407959,0.568254351615906,0.480909019708633,0.494543492794037,0.72398430109024,0.436201423406601,0.479528099298477,0.761433482170105,0.508730411529541,0.461814612150192,0.726581513881683,0.622261583805084,0.435071259737015,0.650771498680115,0.307734996080399,0.404104202985764,0.861393630504608,0.417156010866165,0.523643493652344,0.7428178191185,0.489441186189651,0.488387614488602,0.722443699836731,0.508730411529541,0.461814612150192,0.726581513881683,0.436201423406601,0.479528099298477,0.761433482170105,0.41898587346077,0.53304386138916,0.735061228275299,0.460501551628113,0.483972042798996,0.744116485118866,0.489441186189651,0.488387614488602,0.722443699836731,0.417156010866165,0.523643493652344,0.7428178191185,0.389880478382111,0.533327877521515,0.750702738761902,0.433209031820297,0.467217892408371,0.770738124847412,0.460501551628113,0.483972042798996,0.744116485118866,0.41898587346077,0.53304386138916,0.735061228275299,0.316354364156723,0.559554100036621,0.766041278839111,0.389786720275879,0.451341420412064,0.802718698978424,0.433209031820297,0.467217892408371,0.770738124847412,0.389880478382111,0.533327877521515,0.750702738761902,0.159733444452286,0.560464978218079,0.812627971172333,0.21429730951786,0.40253871679306,0.889965832233429,0.389786720275879,0.451341420412064,0.802718698978424,0.316354364156723,0.559554100036621,0.766041278839111,0.00330777233466506,0.521748542785645,0.853092908859253,-0.000747819314710796,0.326622903347015,0.9451544880867,0.21429730951786,0.40253871679306,0.889965832233429,0.159733444452286,0.560464978218079,0.812627971172333,-0.0615331493318081,0.450990349054337,0.890405297279358,-0.136063233017921,0.235857933759689,0.96221512556076,-0.000747819314710796,0.326622903347015,0.9451544880867,0.00330777233466506,0.521748542785645,0.853092908859253,-0.0932714119553566,0.467536836862564,0.879039168357849, +-0.176244243979454,0.16784006357193,0.969931840896606,-0.136063233017921,0.235857933759689,0.96221512556076,-0.0615331493318081,0.450990349054337,0.890405297279358,-0.0697455182671547,0.52985942363739,0.845212817192078,-0.147970795631409,0.217973783612251,0.964671969413757,-0.176244243979454,0.16784006357193,0.969931840896606,-0.0932714119553566,0.467536836862564,0.879039168357849,0.266856610774994,0.613635778427124,0.743127644062042,0.0743997767567635,0.302883267402649,0.950119197368622,-0.147970795631409,0.217973783612251,0.964671969413757,-0.0697455182671547,0.52985942363739,0.845212817192078,0.300985306501389,0.292400687932968,0.907694756984711,0.0743997767567635,0.302883267402649,0.950119197368622,0.266856610774994,0.613635778427124,0.743127644062042,0.480909019708633,0.494543492794037,0.72398430109024,0.212829306721687,0.217103227972984,0.952664613723755,0.130164593458176,0.193935751914978,0.97234058380127,0.118021123111248,0.090134933590889,0.988911867141724,0.213977739214897,0.0890615805983543,0.972770035266876,0.327490657567978,0.237567722797394,0.914500653743744,0.212829306721687,0.217103227972984,0.952664613723755,0.213977739214897,0.0890615805983543,0.972770035266876,0.349182218313217,0.0877810567617416,0.93293422460556,0.212829306721687,0.217103227972984,0.952664613723755,0.327490657567978,0.237567722797394,0.914500653743744,0.30707859992981,0.373052805662155,0.875519514083862,0.240161299705505,0.313696622848511,0.918649554252625,0.130164593458176,0.193935751914978,0.97234058380127,0.212829306721687,0.217103227972984,0.952664613723755,0.240161299705505,0.313696622848511,0.918649554252625,0.18181961774826,0.253342509269714,0.950136423110962,0.608398914337158,0.361604869365692,0.706464827060699,0.319545745849609,0.279676467180252,0.905357241630554,0.266093969345093,0.0750106051564217,0.961024165153503,0.616883337497711,0.144853889942169,0.773609936237335,0.745747447013855,0.394625544548035,0.536778688430786,0.608398914337158,0.361604869365692,0.706464827060699,0.616883337497711,0.144853889942169,0.773609936237335, +0.801282107830048,0.18563087284565,0.568760216236115,0.608398914337158,0.361604869365692,0.706464827060699,0.745747447013855,0.394625544548035,0.536778688430786,0.650332570075989,0.587092518806458,0.48206827044487,0.544649124145508,0.574899971485138,0.610612213611603,0.319545745849609,0.279676467180252,0.905357241630554,0.608398914337158,0.361604869365692,0.706464827060699,0.544649124145508,0.574899971485138,0.610612213611603,0.340378075838089,0.527010321617126,0.778718650341034,0.779881596565247,0.252041667699814,0.572939455509186,0.574787020683289,0.210684657096863,0.790715992450714,0.568173348903656,0.0645316392183304,0.820374667644501,0.817479848861694,0.0793456062674522,0.570465624332428,0.877151727676392,0.257564693689346,0.405296623706818,0.779881596565247,0.252041667699814,0.572939455509186,0.817479848861694,0.0793456062674522,0.570465624332428,0.923970639705658,0.068852424621582,0.376215010881424,0.779881596565247,0.252041667699814,0.572939455509186,0.877151727676392,0.257564693689346,0.405296623706818,0.802838861942291,0.432056188583374,0.410825103521347,0.722124993801117,0.413387537002563,0.554658651351929,0.574787020683289,0.210684657096863,0.790715992450714,0.779881596565247,0.252041667699814,0.572939455509186,0.722124993801117,0.413387537002563,0.554658651351929,0.568896114826202,0.364665627479553,0.737140536308289,0.930400192737579,0.117982521653175,0.347038447856903,0.885087072849274,-0.00465083261951804,0.465402364730835,0.678629100322723,0.337785094976425,0.652199268341064,0.801806926727295,0.384849905967712,0.457160919904709,0.885087072849274,-0.00465083261951804,0.465402364730835,0.945305049419403,0.0100241769105196,0.326033502817154,0.837538182735443,0.464932531118393,0.286997497081757,0.678629100322723,0.337785094976425,0.652199268341064,0.678629100322723,0.337785094976425,0.652199268341064,0.837538182735443,0.464932531118393,0.286997497081757,0.922206163406372,0.238157466053963,0.304658561944962,0.753034293651581,0.17627215385437,0.633930146694183,0.801806926727295,0.384849905967712,0.457160919904709, +0.678629100322723,0.337785094976425,0.652199268341064,0.753034293651581,0.17627215385437,0.633930146694183,0.87514740228653,0.218636348843575,0.431642323732376,-0.0764050707221031,-0.417319446802139,0.905542194843292,0.152453944087029,-0.490097939968109,0.858231723308563,0.191869601607323,-0.0657616630196571,0.979214668273926,-0.0503527484834194,-0.0637124851346016,0.996697187423706,0.152453944087029,-0.490097939968109,0.858231723308563,0.38191831111908,-0.534317016601563,0.754084825515747,0.444481372833252,-0.0677722692489624,0.893220722675323,0.191869601607323,-0.0657616630196571,0.979214668273926,0.191869601607323,-0.0657616630196571,0.979214668273926,0.444481372833252,-0.0677722692489624,0.893220722675323,0.452858477830887,0.0933812335133553,0.886678755283356,0.24857559800148,0.0781746134161949,0.965452671051025,-0.0503527484834194,-0.0637124851346016,0.996697187423706,0.191869601607323,-0.0657616630196571,0.979214668273926,0.24857559800148,0.0781746134161949,0.965452671051025,0.0287272054702044,0.0468101017177105,0.998490691184998,0.496302485466003,0.210021421313286,0.842362582683563,0.474947929382324,0.217140078544617,0.852803945541382,0.469946771860123,-0.180950209498405,0.86394852399826,0.563454568386078,-0.125576511025429,0.816547274589539,0.474947929382324,0.217140078544617,0.852803945541382,0.462071448564529,0.223597913980484,0.858192265033722,0.516118586063385,-0.17624568939209,0.83818793296814,0.469946771860123,-0.180950209498405,0.86394852399826,0.345776945352554,0.297551989555359,0.889888286590576,0.321946859359741,0.303813844919205,0.896686911582947,0.327736765146255,0.266692817211151,0.906346321105957,0.347353905439377,0.260259628295898,0.900894105434418,0.345776945352554,0.297551989555359,0.889888286590576,0.347353905439377,0.260259628295898,0.900894105434418,0.363922715187073,0.25348636507988,0.896272778511047,0.361779034137726,0.291903346776962,0.885385990142822,0.362098813056946,-0.813945949077606,0.454286754131317,0.487723380327225,-0.863978922367096,0.125165298581123,0.934295117855072,-0.0721873790025711,0.349115312099457, +0.64495325088501,-0.0900793001055717,0.758894562721252,0.487723380327225,-0.863978922367096,0.125165298581123,0.488683670759201,-0.870462596416473,0.0590182170271873,0.96843147277832,-0.0758867263793945,0.237448051571846,0.934295117855072,-0.0721873790025711,0.349115312099457,0.934295117855072,-0.0721873790025711,0.349115312099457,0.96843147277832,-0.0758867263793945,0.237448051571846,0.948911905288696,0.145231619477272,0.280131995677948,0.910134375095367,0.150698304176331,0.385934501886368,0.64495325088501,-0.0900793001055717,0.758894562721252,0.934295117855072,-0.0721873790025711,0.349115312099457,0.910134375095367,0.150698304176331,0.385934501886368,0.649630188941956,0.108177959918976,0.752514481544495,0.861620962619781,0.071912445127964,0.50243204832077,0.878374636173248,0.0719039440155029,0.472533375024796,0.844384789466858,-0.145803675055504,0.515514731407166,0.840295255184174,-0.130078285932541,0.526292264461517,0.878374636173248,0.0719039440155029,0.472533375024796,0.897544920444489,0.0651593953371048,0.436081796884537,0.890304565429688,-0.14252296090126,0.432487010955811,0.844384789466858,-0.145803675055504,0.515514731407166,0.821059882640839,0.122795797884464,0.557478070259094,0.794110238552094,0.136485382914543,0.592250466346741,0.790066003799438,0.0960155203938484,0.605455875396729,0.816089034080505,0.0852616801857948,0.571602344512939,0.821059882640839,0.122795797884464,0.557478070259094,0.816089034080505,0.0852616801857948,0.571602344512939,0.835683107376099,0.081412635743618,0.543144345283508,0.837277472019196,0.11309926211834,0.53495329618454,0.453211486339569,-0.875407874584198,0.168108060956001,0.468710780143738,-0.873691916465759,-0.130278989672661,0.978391647338867,-0.204179719090462,-0.0325663685798645,0.908502757549286,-0.245355442166328,0.338265061378479,0.468710780143738,-0.873691916465759,-0.130278989672661,0.427078545093536,-0.896062970161438,-0.121140316128731,0.980018794536591,-0.198278412222862,-0.0157665051519871,0.978391647338867,-0.204179719090462,-0.0325663685798645,0.978391647338867,-0.204179719090462,-0.0325663685798645, +0.980018794536591,-0.198278412222862,-0.0157665051519871,0.998223602771759,0.0560266152024269,0.0202678386121988,0.998498797416687,0.0546546168625355,0.00363308354280889,0.908502757549286,-0.245355442166328,0.338265061378479,0.978391647338867,-0.204179719090462,-0.0325663685798645,0.998498797416687,0.0546546168625355,0.00363308354280889,0.94857782125473,0.0162582080811262,0.316126316785812,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.996767938137054,-0.0642640367150307,0.0482074059545994,0.931723415851593,-0.352641671895981,0.0868064686655998,0.939077377319336,-0.303965419530869,0.160432919859886,0.996767938137054,-0.0642640367150307,0.0482074059545994,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.935719668865204,-0.352570354938507,0.0110868783667684,0.931723415851593,-0.352641671895981,0.0868064686655998,0.927829384803772,0.0874812453985214,0.362601220607758,0.915004372596741,0.0965912863612175,0.391710638999939,0.913209974765778,0.0730284675955772,0.400891989469528,0.924596667289734,0.0704071149230003,0.374384492635727,0.927829384803772,0.0874812453985214,0.362601220607758,0.924596667289734,0.0704071149230003,0.374384492635727,0.944641470909119,0.0620442479848862,0.322184771299362,0.947649896144867,0.0681590139865875,0.311952084302902,0.998491108417511,0.0489984974265099,0.0247932877391577,0.961081564426422,0.0600554384291172,-0.269658237695694,0.946774840354919,0.243151560425758,-0.210937887430191,0.967528283596039,0.252681851387024,-0.00640123477205634,0.997284591197968,0.0318265743553638,0.0664124935865402,0.998491108417511,0.0489984974265099,0.0247932877391577,0.967528283596039,0.252681851387024,-0.00640123477205634,0.965885818004608,0.24819503724575,0.0739179998636246,0.998491108417511,0.0489984974265099,0.0247932877391577,0.997284591197968,0.0318265743553638,0.0664124935865402,0.96679949760437,-0.249450340867043,0.0554373450577259,0.975555777549744,-0.209971636533737,0.0648303180932999,0.961081564426422,0.0600554384291172,-0.269658237695694,0.998491108417511,0.0489984974265099,0.0247932877391577, +0.975555777549744,-0.209971636533737,0.0648303180932999,0.943901240825653,-0.159197479486465,-0.289320975542068,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.997051596641541,-0.0295031256973743,0.0708350166678429,0.993028283119202,0.112560428678989,-0.0349996797740459,0.999694764614105,0.0132730612531304,0.0208377800881863,0.997051596641541,-0.0295031256973743,0.0708350166678429,0.998556017875671,-0.0141695337370038,0.051818061619997,0.976668894290924,0.212742060422897,-0.0293045789003372,0.993028283119202,0.112560428678989,-0.0349996797740459,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.998936772346497,-0.0199484061449766,0.0415629036724567,0.998470366001129,-0.0191732961684465,0.0518577806651592,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.998470366001129,-0.0191732961684465,0.0518577806651592,0.997323036193848,-0.0175949856638908,0.0709722861647606,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.140509262681007,-0.389529824256897,0.910232782363892,0.235168889164925,-0.38590133190155,0.892062604427338,0.22950766980648,-0.0504576563835144,0.971998035907745,0.127597525715828,-0.0325997099280357,0.991290092468262,0.235168889164925,-0.38590133190155,0.892062604427338,0.361415475606918,-0.459209114313126,0.811483681201935,0.372290521860123,-0.066767729818821,0.925711572170258,0.22950766980648,-0.0504576563835144,0.971998035907745,0.22950766980648,-0.0504576563835144,0.971998035907745,0.372290521860123,-0.066767729818821,0.925711572170258,0.349182218313217,0.0877810567617416,0.93293422460556,0.213977739214897,0.0890615805983543,0.972770035266876,0.127597525715828,-0.0325997099280357,0.991290092468262,0.22950766980648,-0.0504576563835144,0.971998035907745,0.213977739214897,0.0890615805983543,0.972770035266876,0.118021123111248,0.090134933590889,0.988911867141724,0.803296148777008,-0.540965020656586,0.249142676591873,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.991217494010925,-0.131425276398659,0.0146671067923307, +0.913928806781769,-0.122308745980263,0.387007266283035,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.611539423465729,-0.490914881229401,0.620501518249512,0.682898283004761,-0.155377089977264,0.713798105716705,0.991217494010925,-0.131425276398659,0.0146671067923307,0.991217494010925,-0.131425276398659,0.0146671067923307,0.682898283004761,-0.155377089977264,0.713798105716705,0.612025260925293,-0.0345636606216431,0.790082573890686,0.988297939300537,-0.00730177154764533,0.152360960841179,0.913928806781769,-0.122308745980263,0.387007266283035,0.991217494010925,-0.131425276398659,0.0146671067923307,0.988297939300537,-0.00730177154764533,0.152360960841179,0.873317956924438,0.0471226051449776,0.484866201877594,0.931119978427887,0.155494168400764,0.329904705286026,0.770491540431976,0.238308936357498,0.59122896194458,0.873317956924438,0.0471226051449776,0.484866201877594,0.988297939300537,-0.00730177154764533,0.152360960841179,0.548751831054688,0.0778049603104591,0.832356750965118,0.931119978427887,0.155494168400764,0.329904705286026,0.988297939300537,-0.00730177154764533,0.152360960841179,0.612025260925293,-0.0345636606216431,0.790082573890686,0.931119978427887,0.155494168400764,0.329904705286026,0.548751831054688,0.0778049603104591,0.832356750965118,0.459471136331558,0.24929216504097,0.852490365505219,0.83314460515976,0.381137043237686,0.400754988193512,0.770491540431976,0.238308936357498,0.59122896194458,0.931119978427887,0.155494168400764,0.329904705286026,0.83314460515976,0.381137043237686,0.400754988193512,0.644027709960938,0.430548369884491,0.632342040538788,0.191228091716766,-0.571527898311615,0.797989845275879,0.462093532085419,-0.664122939109802,0.587716281414032,0.599323749542236,-0.0669796913862228,0.797699630260468,0.232638046145439,-0.0962695926427841,0.967786967754364,0.462093532085419,-0.664122939109802,0.587716281414032,0.608965456485748,-0.694889307022095,0.382478654384613,0.819088101387024,-0.0351431109011173,0.572590351104736,0.599323749542236,-0.0669796913862228,0.797699630260468,0.599323749542236,-0.0669796913862228,0.797699630260468, +0.819088101387024,-0.0351431109011173,0.572590351104736,0.801282107830048,0.18563087284565,0.568760216236115,0.616883337497711,0.144853889942169,0.773609936237335,0.232638046145439,-0.0962695926427841,0.967786967754364,0.599323749542236,-0.0669796913862228,0.797699630260468,0.616883337497711,0.144853889942169,0.773609936237335,0.266093969345093,0.0750106051564217,0.961024165153503,0.76520174741745,-0.598868787288666,-0.236267596483231,0.704367220401764,-0.478252232074738,-0.524539589881897,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.704367220401764,-0.478252232074738,-0.524539589881897,0.584151804447174,-0.762029647827148,0.279423326253891,0.709508717060089,-0.0912200659513474,0.698767721652985,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.709508717060089,-0.0912200659513474,0.698767721652985,0.706025540828705,0.0590945929288864,0.705716550350189,0.914982378482819,0.103140562772751,-0.390088856220245,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.882022738456726,-0.00643047317862511,-0.47116282582283,0.914982378482819,0.103140562772751,-0.390088856220245,0.983625650405884,0.156570419669151,-0.0892541706562042,0.93439906835556,0.224028632044792,-0.276964664459229,0.945863425731659,0.322207003831863,0.0390521138906479,0.983625650405884,0.156570419669151,-0.0892541706562042,0.914982378482819,0.103140562772751,-0.390088856220245,0.763847231864929,0.20733967423439,0.611185431480408,0.93439906835556,0.224028632044792,-0.276964664459229,0.914982378482819,0.103140562772751,-0.390088856220245,0.706025540828705,0.0590945929288864,0.705716550350189,0.93439906835556,0.224028632044792,-0.276964664459229,0.763847231864929,0.20733967423439,0.611185431480408,0.711159825325012,0.402712434530258,0.576258957386017,0.894462466239929,0.430661976337433,-0.120279639959335,0.945863425731659,0.322207003831863,0.0390521138906479,0.93439906835556,0.224028632044792,-0.276964664459229,0.894462466239929,0.430661976337433,-0.120279639959335, +0.826826453208923,0.543696463108063,0.144056633114815,0.290562391281128,-0.833357572555542,0.470200717449188,0.370780885219574,-0.91262024641037,0.172179386019707,0.827346444129944,-0.139853343367577,0.544002711772919,0.567517757415771,-0.105055831372738,0.816631495952606,0.370780885219574,-0.91262024641037,0.172179386019707,0.366073846817017,-0.928832650184631,0.0570956841111183,0.928299844264984,-0.170819714665413,0.330272734165192,0.827346444129944,-0.139853343367577,0.544002711772919,0.827346444129944,-0.139853343367577,0.544002711772919,0.928299844264984,-0.170819714665413,0.330272734165192,0.923970639705658,0.068852424621582,0.376215010881424,0.817479848861694,0.0793456062674522,0.570465624332428,0.567517757415771,-0.105055831372738,0.816631495952606,0.827346444129944,-0.139853343367577,0.544002711772919,0.817479848861694,0.0793456062674522,0.570465624332428,0.568173348903656,0.0645316392183304,0.820374667644501,0.443840831518173,-0.869051337242126,-0.218529835343361,0.430982202291489,-0.753182888031006,-0.496960610151291,0.829370021820068,-0.148437023162842,-0.538620173931122,0.967428803443909,-0.190274477005005,-0.166964590549469,0.430982202291489,-0.753182888031006,-0.496960610151291,0.365046739578247,-0.930285453796387,0.0361897274851799,0.926129341125488,-0.292127281427383,0.23863373696804,0.829370021820068,-0.148437023162842,-0.538620173931122,0.829370021820068,-0.148437023162842,-0.538620173931122,0.926129341125488,-0.292127281427383,0.23863373696804,0.97145414352417,-0.0491053462028503,0.232089444994926,0.871631920337677,0.00994441192597151,-0.490060180425644,0.967428803443909,-0.190274477005005,-0.166964590549469,0.829370021820068,-0.148437023162842,-0.538620173931122,0.871631920337677,0.00994441192597151,-0.490060180425644,0.99474173784256,0.0217426996678114,-0.100080631673336,0.887637495994568,0.174265637993813,-0.426299303770065,0.97530996799469,0.220519706606865,-0.0118971364572644,0.99474173784256,0.0217426996678114,-0.100080631673336,0.871631920337677,0.00994441192597151,-0.490060180425644,0.969870567321777,0.175378158688545,0.169096708297729, +0.887637495994568,0.174265637993813,-0.426299303770065,0.871631920337677,0.00994441192597151,-0.490060180425644,0.97145414352417,-0.0491053462028503,0.232089444994926,0.887637495994568,0.174265637993813,-0.426299303770065,0.969870567321777,0.175378158688545,0.169096708297729,0.866819143295288,0.469822436571121,0.167007490992546,0.848064124584198,0.385227262973785,-0.36385041475296,0.97530996799469,0.220519706606865,-0.0118971364572644,0.887637495994568,0.174265637993813,-0.426299303770065,0.848064124584198,0.385227262973785,-0.36385041475296,0.89900928735733,0.433892607688904,0.0593249090015888,0.779629707336426,0.0128866545855999,0.626108050346375,0.91884571313858,0.0312693379819393,0.393375992774963,0.87514740228653,0.218636348843575,0.431642323732376,0.753034293651581,0.17627215385437,0.633930146694183,0.945926189422607,0.0473997332155704,0.320900350809097,0.779629707336426,0.0128866545855999,0.626108050346375,0.753034293651581,0.17627215385437,0.633930146694183,0.922206163406372,0.238157466053963,0.304658561944962,0.779629707336426,0.0128866545855999,0.626108050346375,0.945926189422607,0.0473997332155704,0.320900350809097,0.94291889667511,-0.162472039461136,0.290700316429138,0.765810191631317,-0.183057054877281,0.616461575031281,0.91884571313858,0.0312693379819393,0.393375992774963,0.779629707336426,0.0128866545855999,0.626108050346375,0.765810191631317,-0.183057054877281,0.616461575031281,0.913950681686401,-0.210046574473381,0.347238570451736,0.490228146314621,-0.860631465911865,0.137803331017494,0.456870555877686,-0.885862767696381,-0.0807245001196861,0.970967531204224,-0.234969109296799,0.0448491983115673,0.913950681686401,-0.210046574473381,0.347238570451736,0.456870555877686,-0.885862767696381,-0.0807245001196861,0.410441100597382,-0.911667168140411,-0.0200270190834999,0.96679949760437,-0.249450340867043,0.0554373450577259,0.970967531204224,-0.234969109296799,0.0448491983115673,0.970967531204224,-0.234969109296799,0.0448491983115673,0.96679949760437,-0.249450340867043,0.0554373450577259,0.997284591197968,0.0318265743553638,0.0664124935865402, +0.992620885372162,0.0358361825346947,0.115842588245869,0.91884571313858,0.0312693379819393,0.393375992774963,0.913950681686401,-0.210046574473381,0.347238570451736,0.970967531204224,-0.234969109296799,0.0448491983115673,0.992620885372162,0.0358361825346947,0.115842588245869,0.952631115913391,0.243915617465973,0.181656539440155,0.87514740228653,0.218636348843575,0.431642323732376,0.91884571313858,0.0312693379819393,0.393375992774963,0.992620885372162,0.0358361825346947,0.115842588245869,0.997284591197968,0.0318265743553638,0.0664124935865402,0.965885818004608,0.24819503724575,0.0739179998636246,0.952631115913391,0.243915617465973,0.181656539440155,0.992620885372162,0.0358361825346947,0.115842588245869,0.952631115913391,0.243915617465973,0.181656539440155,0.965885818004608,0.24819503724575,0.0739179998636246,0.897985458374023,0.431995779275894,0.0836762264370918,0.878183364868164,0.420036882162094,0.228829845786095,0.801806926727295,0.384849905967712,0.457160919904709,0.87514740228653,0.218636348843575,0.431642323732376,0.952631115913391,0.243915617465973,0.181656539440155,0.878183364868164,0.420036882162094,0.228829845786095,0.768001198768616,-0.555274188518524,0.319131225347519,0.845774412155151,-0.527329385280609,0.0811747014522552,0.973446428775787,-0.115157522261143,0.197840303182602,0.880849540233612,-0.10070113837719,0.462561696767807,0.845774412155151,-0.527329385280609,0.0811747014522552,0.279478907585144,-0.493038803339005,0.823895812034607,0.27758714556694,-0.108460150659084,0.954558432102203,0.973446428775787,-0.115157522261143,0.197840303182602,0.973446428775787,-0.115157522261143,0.197840303182602,0.27758714556694,-0.108460150659084,0.954558432102203,0.255010724067688,-0.000428939907578751,0.966938138008118,0.970379710197449,0.000800441717728972,0.24158301949501,0.880849540233612,-0.10070113837719,0.462561696767807,0.973446428775787,-0.115157522261143,0.197840303182602,0.970379710197449,0.000800441717728972,0.24158301949501,0.859796166419983,0.0410401895642281,0.50898551940918,0.95856511592865,0.116585105657578,0.25992476940155, +0.807394444942474,0.185277953743935,0.560166239738464,0.859796166419983,0.0410401895642281,0.50898551940918,0.970379710197449,0.000800441717728972,0.24158301949501,0.333326160907745,0.129022359848022,0.933941543102264,0.95856511592865,0.116585105657578,0.25992476940155,0.970379710197449,0.000800441717728972,0.24158301949501,0.255010724067688,-0.000428939907578751,0.966938138008118,0.95856511592865,0.116585105657578,0.25992476940155,0.333326160907745,0.129022359848022,0.933941543102264,0.481602132320404,0.350094020366669,0.803426086902618,0.929288923740387,0.286769330501556,0.232777491211891,0.807394444942474,0.185277953743935,0.560166239738464,0.95856511592865,0.116585105657578,0.25992476940155,0.929288923740387,0.286769330501556,0.232777491211891,0.73822009563446,0.373730897903442,0.56156587600708,0.325200974941254,0.22761382162571,0.917843222618103,0.144231110811234,0.172638192772865,0.974368274211884,0.0287272054702044,0.0468101017177105,0.998490691184998,0.24857559800148,0.0781746134161949,0.965452671051025,0.462808132171631,0.255610018968582,0.848806321620941,0.325200974941254,0.22761382162571,0.917843222618103,0.24857559800148,0.0781746134161949,0.965452671051025,0.452858477830887,0.0933812335133553,0.886678755283356,0.325200974941254,0.22761382162571,0.917843222618103,0.462808132171631,0.255610018968582,0.848806321620941,0.472877681255341,0.383730292320251,0.793182075023651,0.395465910434723,0.355699986219406,0.846808254718781,0.144231110811234,0.172638192772865,0.974368274211884,0.325200974941254,0.22761382162571,0.917843222618103,0.395465910434723,0.355699986219406,0.846808254718781,0.256486296653748,0.308012425899506,0.916156649589539,0.472578972578049,0.257070481777191,0.842961430549622,0.453348875045776,0.265510946512222,0.850869357585907,0.462071448564529,0.223597913980484,0.858192265033722,0.474947929382324,0.217140078544617,0.852803945541382,0.472578972578049,0.257070481777191,0.842961430549622,0.474947929382324,0.217140078544617,0.852803945541382,0.496302485466003,0.210021421313286,0.842362582683563, +0.490685194730759,0.246961683034897,0.835606276988983,0.398623079061508,0.278666257858276,0.873753368854523,0.384591788053513,0.281165838241577,0.879224002361298,0.388904482126236,0.223152533173561,0.893843531608582,0.40195095539093,0.224304169416428,0.887762844562531,0.398623079061508,0.278666257858276,0.873753368854523,0.40195095539093,0.224304169416428,0.887762844562531,0.424679905176163,0.229900926351547,0.875666916370392,0.415154933929443,0.276450455188751,0.866730391979218,0.424679905176163,0.229900926351547,0.875666916370392,0.40195095539093,0.224304169416428,0.887762844562531,0.394273400306702,-0.0484939105808735,0.917712807655334,0.478856712579727,-0.0499666966497898,0.876470029354095,0.40195095539093,0.224304169416428,0.887762844562531,0.388904482126236,0.223152533173561,0.893843531608582,0.390245676040649,-0.0543134994804859,0.919107437133789,0.394273400306702,-0.0484939105808735,0.917712807655334,0.173165455460548,0.327371120452881,0.92889279127121,2.9084756647535e-07,0.331838518381119,0.943336188793182,3.52183224094915e-06,0.249689862132072,0.968325912952423,0.159134745597839,0.261926114559174,0.951877474784851,0.197980001568794,0.325932204723358,0.924430668354034,0.173165455460548,0.327371120452881,0.92889279127121,0.159134745597839,0.261926114559174,0.951877474784851,0.193692356348038,0.278895646333694,0.940585196018219,0.0267959255725145,-0.143305033445358,0.989315748214722,5.15278725288226e-06,-0.195868358016014,0.980630159378052,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,-0.145488753914833,-0.0377167239785194,0.98864072561264,0.0267959255725145,-0.143305033445358,0.989315748214722,-0.145488753914833,-0.0377167239785194,0.98864072561264,0.00693589961156249,-0.0466239675879478,0.998888373374939,0.123330391943455,-0.0846439674496651,0.988749265670776,0.363922715187073,0.25348636507988,0.896272778511047,0.347353905439377,0.260259628295898,0.900894105434418,0.351311326026917,-0.0980117097496986,0.931114375591278,0.374630957841873,-0.0767536237835884,0.923991620540619,0.347353905439377,0.260259628295898,0.900894105434418, +0.327736765146255,0.266692817211151,0.906346321105957,0.386866927146912,-0.0979848951101303,0.916914939880371,0.351311326026917,-0.0980117097496986,0.931114375591278,0.629507541656494,-0.751857101917267,-0.196038767695427,0.649816811084747,-0.640547335147858,-0.409190863370895,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.649816811084747,-0.640547335147858,-0.409190863370895,0.56140524148941,-0.760091602802277,0.327238112688065,0.828090965747833,-0.0392764545977116,0.559216260910034,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.828090965747833,-0.0392764545977116,0.559216260910034,0.806950986385345,0.0708705857396126,0.586350858211517,0.966601550579071,0.0895454809069633,-0.240131333470345,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.954831600189209,-0.0259304326027632,-0.296013861894608,0.966601550579071,0.0895454809069633,-0.240131333470345,0.992351472377777,0.111337505280972,-0.0533154755830765,0.960236728191376,0.199015572667122,-0.195801466703415,0.967563211917877,0.252599895000458,-0.00382610247470438,0.992351472377777,0.111337505280972,-0.0533154755830765,0.966601550579071,0.0895454809069633,-0.240131333470345,0.761416733264923,0.159113496541977,0.62843269109726,0.960236728191376,0.199015572667122,-0.195801466703415,0.966601550579071,0.0895454809069633,-0.240131333470345,0.806950986385345,0.0708705857396126,0.586350858211517,0.960236728191376,0.199015572667122,-0.195801466703415,0.761416733264923,0.159113496541977,0.62843269109726,0.703478813171387,0.332269787788391,0.628262877464294,0.906783640384674,0.389494448900223,-0.161361962556839,0.967563211917877,0.252599895000458,-0.00382610247470438,0.960236728191376,0.199015572667122,-0.195801466703415,0.906783640384674,0.389494448900223,-0.161361962556839,0.909256994724274,0.416135013103485,-0.00912798754870892,0.841041207313538,0.309059858322144,0.44399505853653,0.651911914348602,0.274591475725174,0.706831216812134, +0.649630188941956,0.108177959918976,0.752514481544495,0.910134375095367,0.150698304176331,0.385934501886368,0.897969782352448,0.300134867429733,0.321821928024292,0.841041207313538,0.309059858322144,0.44399505853653,0.910134375095367,0.150698304176331,0.385934501886368,0.948911905288696,0.145231619477272,0.280131995677948,0.841041207313538,0.309059858322144,0.44399505853653,0.897969782352448,0.300134867429733,0.321821928024292,0.833997189998627,0.422427475452423,0.354969918727875,0.740909159183502,0.431098699569702,0.514982998371124,0.651911914348602,0.274591475725174,0.706831216812134,0.841041207313538,0.309059858322144,0.44399505853653,0.740909159183502,0.431098699569702,0.514982998371124,0.575747072696686,0.436208605766296,0.691547036170959,0.876672983169556,0.102987922728062,0.469934165477753,0.891642034053802,0.0929651632905006,0.443093478679657,0.897544920444489,0.0651593953371048,0.436081796884537,0.878374636173248,0.0719039440155029,0.472533375024796,0.876672983169556,0.102987922728062,0.469934165477753,0.878374636173248,0.0719039440155029,0.472533375024796,0.861620962619781,0.071912445127964,0.50243204832077,0.859469413757324,0.111063994467258,0.498976111412048,0.918027520179749,0.060733400285244,0.391837805509567,0.89489334821701,0.0763727650046349,0.439696550369263,0.888742685317993,0.0559654906392097,0.454977214336395,0.915508985519409,0.03882996737957,0.40041920542717,0.918027520179749,0.060733400285244,0.391837805509567,0.915508985519409,0.03882996737957,0.40041920542717,0.924684047698975,0.0345741249620914,0.379162460565567,0.919245541095734,0.0636509135365486,0.388505220413208,0.924684047698975,0.0345741249620914,0.379162460565567,0.915508985519409,0.03882996737957,0.40041920542717,0.905886471271515,-0.073218360543251,0.417143672704697,0.926183640956879,-0.0844836086034775,0.367486596107483,0.915508985519409,0.03882996737957,0.40041920542717,0.888742685317993,0.0559654906392097,0.454977214336395,0.905811905860901,-0.0550877153873444,0.420083284378052,0.905886471271515,-0.073218360543251,0.417143672704697, +0.664912223815918,0.185147225856781,0.723610579967499,0.597092807292938,0.207738563418388,0.774806380271912,0.594159483909607,0.165744379162788,0.7870854139328,0.656302690505981,0.146639436483383,0.740110456943512,0.664912223815918,0.185147225856781,0.723610579967499,0.656302690505981,0.146639436483383,0.740110456943512,0.712085843086243,0.130221232771873,0.689910233020782,0.71526163816452,0.16785803437233,0.678398430347443,0.712085843086243,0.130221232771873,0.689910233020782,0.656302690505981,0.146639436483383,0.740110456943512,0.628561198711395,-0.124893352389336,0.767666935920715,0.719675958156586,-0.128582119941711,0.682299971580505,0.656302690505981,0.146639436483383,0.740110456943512,0.594159483909607,0.165744379162788,0.7870854139328,0.652966678142548,-0.116778150200844,0.748329758644104,0.628561198711395,-0.124893352389336,0.767666935920715,0.835683107376099,0.081412635743618,0.543144345283508,0.816089034080505,0.0852616801857948,0.571602344512939,0.787403047084808,-0.125650525093079,0.603496730327606,0.835085809230804,-0.0748017132282257,0.545010447502136,0.816089034080505,0.0852616801857948,0.571602344512939,0.790066003799438,0.0960155203938484,0.605455875396729,0.781822502613068,-0.163981661200523,0.601550996303558,0.787403047084808,-0.125650525093079,0.603496730327606,0.536954879760742,-0.810872852802277,-0.232732996344566,0.512325942516327,-0.744121968746185,-0.428724586963654,0.933459937572479,-0.11240142583847,-0.340614676475525,0.979010879993439,-0.153616860508919,-0.133938953280449,0.512325942516327,-0.744121968746185,-0.428724586963654,0.4815514087677,-0.87572968006134,0.0347205102443695,0.94291889667511,-0.162472039461136,0.290700316429138,0.933459937572479,-0.11240142583847,-0.340614676475525,0.933459937572479,-0.11240142583847,-0.340614676475525,0.94291889667511,-0.162472039461136,0.290700316429138,0.945926189422607,0.0473997332155704,0.320900350809097,0.947897851467133,0.0929146558046341,-0.304723560810089,0.979010879993439,-0.153616860508919,-0.133938953280449,0.933459937572479,-0.11240142583847,-0.340614676475525, +0.947897851467133,0.0929146558046341,-0.304723560810089,0.98906534910202,0.0802784711122513,-0.123714156448841,0.905402183532715,0.281880259513855,-0.317475080490112,0.948138177394867,0.282200694084167,-0.14627605676651,0.98906534910202,0.0802784711122513,-0.123714156448841,0.947897851467133,0.0929146558046341,-0.304723560810089,0.945926189422607,0.0473997332155704,0.320900350809097,0.922206163406372,0.238157466053963,0.304658561944962,0.905402183532715,0.281880259513855,-0.317475080490112,0.947897851467133,0.0929146558046341,-0.304723560810089,0.905402183532715,0.281880259513855,-0.317475080490112,0.922206163406372,0.238157466053963,0.304658561944962,0.837538182735443,0.464932531118393,0.286997497081757,0.807442605495453,0.463743209838867,-0.364662319421768,0.948138177394867,0.282200694084167,-0.14627605676651,0.905402183532715,0.281880259513855,-0.317475080490112,0.807442605495453,0.463743209838867,-0.364662319421768,0.865681052207947,0.459593385457993,-0.198418900370598,0.963716447353363,0.255126237869263,0.0784932598471642,0.921207129955292,0.242782741785049,0.304029613733292,0.94857782125473,0.0162582080811262,0.316126316785812,0.998498797416687,0.0546546168625355,0.00363308354280889,0.967525243759155,0.247970029711723,0.0490496791899204,0.963716447353363,0.255126237869263,0.0784932598471642,0.998498797416687,0.0546546168625355,0.00363308354280889,0.998223602771759,0.0560266152024269,0.0202678386121988,0.963716447353363,0.255126237869263,0.0784932598471642,0.967525243759155,0.247970029711723,0.0490496791899204,0.907636106014252,0.41373685002327,0.0708418563008308,0.892504572868347,0.416275709867477,0.17363815009594,0.921207129955292,0.242782741785049,0.304029613733292,0.963716447353363,0.255126237869263,0.0784932598471642,0.892504572868347,0.416275709867477,0.17363815009594,0.830227434635162,0.431485265493393,0.352906316518784,0.998076438903809,-0.0335006192326546,0.0521652586758137,0.9980588555336,-0.0307272728532553,0.0541705675423145,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.996767938137054,-0.0642640367150307,0.0482074059545994, +0.998076438903809,-0.0335006192326546,0.0521652586758137,0.996767938137054,-0.0642640367150307,0.0482074059545994,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.994130790233612,-0.0191965121775866,0.106468379497528,0.987510144710541,0.00802973285317421,0.157351240515709,0.979721188545227,0.0236150678247213,0.198968842625618,0.98066383600235,0.0180061925202608,0.194869875907898,0.98827588558197,-0.00508788786828518,0.152593970298767,0.987510144710541,0.00802973285317421,0.157351240515709,0.98827588558197,-0.00508788786828518,0.152593970298767,0.991952538490295,-0.0207040682435036,0.124906249344349,0.990318834781647,0.000879656348843127,0.138809040188789,0.991952538490295,-0.0207040682435036,0.124906249344349,0.98827588558197,-0.00508788786828518,0.152593970298767,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.98827588558197,-0.00508788786828518,0.152593970298767,0.98066383600235,0.0180061925202608,0.194869875907898,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.898237943649292,0.0905231833457947,0.430086344480515,0.878060460090637,0.0984387844800949,0.468315750360489,0.873294770717621,0.0614541955292225,0.483300536870956,0.895420014858246,0.0586419925093651,0.441343426704407,0.898237943649292,0.0905231833457947,0.430086344480515,0.895420014858246,0.0586419925093651,0.441343426704407,0.904150128364563,0.0649797022342682,0.422244161367416,0.904750525951385,0.0933326557278633,0.415590554475784,0.904150128364563,0.0649797022342682,0.422244161367416,0.895420014858246,0.0586419925093651,0.441343426704407,0.88355153799057,-0.119876965880394,0.452731907367706,0.885731637477875,-0.117089197039604,0.449187576770782,0.895420014858246,0.0586419925093651,0.441343426704407,0.873294770717621,0.0614541955292225,0.483300536870956,0.87024199962616,-0.115240558981895,0.478955656290054,0.88355153799057,-0.119876965880394,0.452731907367706,0.944641470909119,0.0620442479848862,0.322184771299362, +0.924596667289734,0.0704071149230003,0.374384492635727,0.924243927001953,-0.0464271157979965,0.37896916270256,0.968400835990906,0.00266301538795233,0.249384731054306,0.924596667289734,0.0704071149230003,0.374384492635727,0.913209974765778,0.0730284675955772,0.400891989469528,0.899008393287659,-0.0800047740340233,0.430561602115631,0.924243927001953,-0.0464271157979965,0.37896916270256,0.765911519527435,0.0333814844489098,-0.642078757286072,0.716182291507721,0.000275129219517112,-0.69791316986084,0.779022097587585,0.102573357522488,-0.618549406528473,0.833697617053986,0.185058683156967,-0.520289838314056,0.961081564426422,0.0600554384291172,-0.269658237695694,0.765911519527435,0.0333814844489098,-0.642078757286072,0.833697617053986,0.185058683156967,-0.520289838314056,0.946774840354919,0.243151560425758,-0.210937887430191,0.765911519527435,0.0333814844489098,-0.642078757286072,0.961081564426422,0.0600554384291172,-0.269658237695694,0.943901240825653,-0.159197479486465,-0.289320975542068,0.707929074764252,-0.133106932044029,-0.69362735748291,0.716182291507721,0.000275129219517112,-0.69791316986084,0.765911519527435,0.0333814844489098,-0.642078757286072,0.707929074764252,-0.133106932044029,-0.69362735748291,0.647358417510986,-0.13522407412529,-0.750094354152679,0.833697617053986,0.185058683156967,-0.520289838314056,0.779022097587585,0.102573357522488,-0.618549406528473,0.873127579689026,0.231439754366875,-0.429050087928772,0.877731323242188,0.359140127897263,-0.317184686660767,0.946774840354919,0.243151560425758,-0.210937887430191,0.833697617053986,0.185058683156967,-0.520289838314056,0.877731323242188,0.359140127897263,-0.317184686660767,0.896420896053314,0.419392853975296,-0.143315359950066,0.976668894290924,0.212742060422897,-0.0293045789003372,0.962401151657104,0.27144655585289,0.0100412387400866,0.901038825511932,0.433168351650238,-0.022227143868804,0.896420896053314,0.419392853975296,-0.143315359950066,0.962401151657104,0.27144655585289,0.0100412387400866,0.955672204494476,0.283672422170639,0.0788711979985237,0.897985458374023,0.431995779275894,0.0836762264370918, +0.901038825511932,0.433168351650238,-0.022227143868804,0.901038825511932,0.433168351650238,-0.022227143868804,0.897985458374023,0.431995779275894,0.0836762264370918,0.965885818004608,0.24819503724575,0.0739179998636246,0.967528283596039,0.252681851387024,-0.00640123477205634,0.946774840354919,0.243151560425758,-0.210937887430191,0.896420896053314,0.419392853975296,-0.143315359950066,0.901038825511932,0.433168351650238,-0.022227143868804,0.967528283596039,0.252681851387024,-0.00640123477205634,0.99767404794693,-0.00837523303925991,0.0676497146487236,0.998219013214111,-0.0115689476951957,0.0585229098796844,0.998089551925659,-0.00854548532515764,0.0611912310123444,0.997700870037079,-0.00731176231056452,0.0673750191926956,0.99767404794693,-0.00837523303925991,0.0676497146487236,0.997700870037079,-0.00731176231056452,0.0673750191926956,0.99837338924408,-0.0125773344188929,0.0556089356541634,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.99837338924408,-0.0125773344188929,0.0556089356541634,0.998956739902496,-0.0183367785066366,0.0418243370950222,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.998956739902496,-0.0183367785066366,0.0418243370950222,0.998936772346497,-0.0199484061449766,0.0415629036724567,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.998556017875671,-0.0141695337370038,0.051818061619997,0.999004662036896,-0.0174472294747829,0.0410521887242794,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.998310029506683,-0.0115439323708415,0.056955486536026,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.997323036193848,-0.0175949856638908,0.0709722861647606,0.993970155715942,-0.0132716875523329,0.108845576643944,0.99025171995163,-0.0334108285605907,0.135222285985947, +0.993970155715942,-0.0132716875523329,0.108845576643944,0.989045441150665,-0.00783006940037012,0.147403299808502,0.985852181911469,-0.0375175699591637,0.163363993167877,0.99025171995163,-0.0334108285605907,0.135222285985947,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.99025171995163,-0.0334108285605907,0.135222285985947,0.956762909889221,-0.17374150454998,0.233278065919876,0.981098473072052,-0.0995443984866142,0.165941908955574,0.99025171995163,-0.0334108285605907,0.135222285985947,0.985852181911469,-0.0375175699591637,0.163363993167877,0.941215097904205,-0.228930488228798,0.248405158519745,0.956762909889221,-0.17374150454998,0.233278065919876,0.930400192737579,0.117982521653175,0.347038447856903,0.953517556190491,0.236826956272125,0.186326041817665,0.995074689388275,-0.0397914536297321,0.0907912701368332,0.981098473072052,-0.0995443984866142,0.165941908955574,0.953517556190491,0.236826956272125,0.186326041817665,0.955672204494476,0.283672422170639,0.0788711979985237,0.998310029506683,-0.0115439323708415,0.056955486536026,0.995074689388275,-0.0397914536297321,0.0907912701368332,2.41234738496132e-05,0.0307317469269037,0.999527633190155,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.565321087837219,0.0699423104524612,0.821900248527527,4.35391993960366e-05,0.0708878710865974,0.99748432636261,2.41234738496132e-05,0.0307317469269037,0.999527633190155,2.14158717426471e-05,-0.35622963309288,0.934398531913757,-0.529483556747437,-0.324605464935303,0.783759117126465,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.529483556747437,-0.324605464935303,0.783759117126465,-0.230811730027199,-0.364695429801941,0.902066111564636,-0.282585620880127,-0.00664947414770722,0.959219038486481,-0.275225967168808,0.0847131758928299,0.957639992237091,-0.565321087837219,0.0699423104524612,0.821900248527527,-0.587325513362885,0.00949358381330967,0.809295177459717,-0.282585620880127,-0.00664947414770722,0.959219038486481,0.300130397081375,0.2756627202034,0.91319864988327, +0.327736765146255,0.266692817211151,0.906346321105957,0.321946859359741,0.303813844919205,0.896686911582947,0.29065814614296,0.311613619327545,0.904662787914276,0.300130397081375,0.2756627202034,0.91319864988327,0.29065814614296,0.311613619327545,0.904662787914276,0.243145018815994,0.320305287837982,0.91557902097702,0.248251765966415,0.283825427293777,0.926182508468628,0.312815517187119,0.00277976063080132,0.949809849262238,0.393130868673325,0.0616345219314098,0.917414486408234,0.402198970317841,-0.0607786178588867,0.913532793521881,0.318349808454514,-0.0322053767740726,0.947426080703735,0.393130868673325,0.0616345219314098,0.917414486408234,0.374749928712845,0.128784492611885,0.918137788772583,0.386866927146912,-0.0979848951101303,0.916914939880371,0.402198970317841,-0.0607786178588867,0.913532793521881,-0.000136224902234972,0.0868736505508423,0.996219277381897,-0.496288329362869,0.117570117115974,0.860160052776337,-0.361380368471146,0.185899093747139,0.91369891166687,0.000145562866237015,0.109267674386501,0.994012296199799,-0.496288329362869,0.117570117115974,0.860160052776337,-0.000136224902234972,0.0868736505508423,0.996219277381897,4.35391993960366e-05,0.0708878710865974,0.99748432636261,-0.565321087837219,0.0699423104524612,0.821900248527527,-0.075246550142765,0.226132169365883,0.971185922622681,-0.361380368471146,0.185899093747139,0.91369891166687,-0.496288329362869,0.117570117115974,0.860160052776337,-0.208788350224495,0.164736926555634,0.963985979557037,0.378438830375671,0.238302662968636,0.894424855709076,0.388904482126236,0.223152533173561,0.893843531608582,0.384591788053513,0.281165838241577,0.879224002361298,0.373248636722565,0.28591725230217,0.882574021816254,0.378438830375671,0.238302662968636,0.894424855709076,0.373248636722565,0.28591725230217,0.882574021816254,0.361779034137726,0.291903346776962,0.885385990142822,0.363922715187073,0.25348636507988,0.896272778511047,0.579381823539734,0.0800317376852036,0.81111752986908,0.873317956924438,0.0471226051449776,0.484866201877594,0.770491540431976,0.238308936357498,0.59122896194458, +0.516922354698181,0.248777985572815,0.819085419178009,0.327490657567978,0.237567722797394,0.914500653743744,0.349182218313217,0.0877810567617416,0.93293422460556,0.579381823539734,0.0800317376852036,0.81111752986908,0.516922354698181,0.248777985572815,0.819085419178009,0.579381823539734,0.0800317376852036,0.81111752986908,0.349182218313217,0.0877810567617416,0.93293422460556,0.372290521860123,-0.066767729818821,0.925711572170258,0.620405852794647,-0.09043038636446,0.779050052165985,0.913928806781769,-0.122308745980263,0.387007266283035,0.873317956924438,0.0471226051449776,0.484866201877594,0.579381823539734,0.0800317376852036,0.81111752986908,0.620405852794647,-0.09043038636446,0.779050052165985,0.470587104558945,0.114330269396305,0.87491512298584,0.532116651535034,0.0695726945996284,0.843807816505432,0.407787322998047,-0.0665067508816719,0.910651624202728,0.374630957841873,-0.0767536237835884,0.923991620540619,0.532116651535034,0.0695726945996284,0.843807816505432,0.38748687505722,0.0573664493858814,0.920088648796082,0.390245676040649,-0.0543134994804859,0.919107437133789,0.407787322998047,-0.0665067508816719,0.910651624202728,0.470587104558945,0.114330269396305,0.87491512298584,0.369435369968414,0.142308920621872,0.918295085430145,0.435846507549286,0.413397252559662,0.799462556838989,0.644027709960938,0.430548369884491,0.632342040538788,0.369435369968414,0.142308920621872,0.918295085430145,0.374749928712845,0.128784492611885,0.918137788772583,0.30707859992981,0.373052805662155,0.875519514083862,0.435846507549286,0.413397252559662,0.799462556838989,0.435846507549286,0.413397252559662,0.799462556838989,0.30707859992981,0.373052805662155,0.875519514083862,0.327490657567978,0.237567722797394,0.914500653743744,0.516922354698181,0.248777985572815,0.819085419178009,0.770491540431976,0.238308936357498,0.59122896194458,0.644027709960938,0.430548369884491,0.632342040538788,0.435846507549286,0.413397252559662,0.799462556838989,0.516922354698181,0.248777985572815,0.819085419178009,-0.0945053994655609,0.0135007351636887,0.99543285369873, +0.0287272054702044,0.0468101017177105,0.998490691184998,0.144231110811234,0.172638192772865,0.974368274211884,-0.0032636858522892,0.105870991945267,0.994374573230743,0.548751831054688,0.0778049603104591,0.832356750965118,0.612025260925293,-0.0345636606216431,0.790082573890686,-0.0945053994655609,0.0135007351636887,0.99543285369873,-0.0032636858522892,0.105870991945267,0.994374573230743,-0.0945053994655609,0.0135007351636887,0.99543285369873,0.612025260925293,-0.0345636606216431,0.790082573890686,0.682898283004761,-0.155377089977264,0.713798105716705,-0.173348903656006,-0.0628221333026886,0.982854843139648,-0.0503527484834194,-0.0637124851346016,0.996697187423706,0.0287272054702044,0.0468101017177105,0.998490691184998,-0.0945053994655609,0.0135007351636887,0.99543285369873,-0.173348903656006,-0.0628221333026886,0.982854843139648,0.446461707353592,0.228723227977753,0.865076661109924,0.462071448564529,0.223597913980484,0.858192265033722,0.453348875045776,0.265510946512222,0.850869357585907,0.433198034763336,0.272238612174988,0.859200537204742,0.446461707353592,0.228723227977753,0.865076661109924,0.433198034763336,0.272238612174988,0.859200537204742,0.415154933929443,0.276450455188751,0.866730391979218,0.424679905176163,0.229900926351547,0.875666916370392,0.432550311088562,0.0525393672287464,0.900077641010284,0.296649903059006,0.0429628640413284,0.95401930809021,0.0704752877354622,0.239770546555519,0.968268275260925,0.256486296653748,0.308012425899506,0.916156649589539,0.296649903059006,0.0429628640413284,0.95401930809021,0.38748687505722,0.0573664493858814,0.920088648796082,0.459471136331558,0.24929216504097,0.852490365505219,0.0704752877354622,0.239770546555519,0.968268275260925,0.0704752877354622,0.239770546555519,0.968268275260925,0.459471136331558,0.24929216504097,0.852490365505219,0.548751831054688,0.0778049603104591,0.832356750965118,-0.0032636858522892,0.105870991945267,0.994374573230743,0.144231110811234,0.172638192772865,0.974368274211884,0.256486296653748,0.308012425899506,0.916156649589539,0.0704752877354622,0.239770546555519,0.968268275260925, +-0.0032636858522892,0.105870991945267,0.994374573230743,0.432550311088562,0.0525393672287464,0.900077641010284,0.561170816421509,0.0272064451128244,0.827252805233002,0.550027906894684,-0.0980221107602119,0.829373836517334,0.478856712579727,-0.0499666966497898,0.876470029354095,0.561170816421509,0.0272064451128244,0.827252805233002,0.533222019672394,-0.0158655233681202,0.845826506614685,0.516118586063385,-0.17624568939209,0.83818793296814,0.550027906894684,-0.0980221107602119,0.829373836517334,0.536860227584839,0.192848414182663,0.821334719657898,0.594159483909607,0.165744379162788,0.7870854139328,0.597092807292938,0.207738563418388,0.774806380271912,0.528049290180206,0.231191053986549,0.817138075828552,0.536860227584839,0.192848414182663,0.821334719657898,0.528049290180206,0.231191053986549,0.817138075828552,0.490685194730759,0.246961683034897,0.835606276988983,0.496302485466003,0.210021421313286,0.842362582683563,0.646494269371033,0.0788106769323349,0.758837342262268,0.859796166419983,0.0410401895642281,0.50898551940918,0.807394444942474,0.185277953743935,0.560166239738464,0.604836463928223,0.238735511898994,0.759722411632538,0.462808132171631,0.255610018968582,0.848806321620941,0.452858477830887,0.0933812335133553,0.886678755283356,0.646494269371033,0.0788106769323349,0.758837342262268,0.604836463928223,0.238735511898994,0.759722411632538,0.646494269371033,0.0788106769323349,0.758837342262268,0.452858477830887,0.0933812335133553,0.886678755283356,0.444481372833252,-0.0677722692489624,0.893220722675323,0.672795593738556,-0.0803807750344276,0.735448837280273,0.880849540233612,-0.10070113837719,0.462561696767807,0.859796166419983,0.0410401895642281,0.50898551940918,0.646494269371033,0.0788106769323349,0.758837342262268,0.672795593738556,-0.0803807750344276,0.735448837280273,0.736564636230469,0.168809071183205,0.654962539672852,0.49786764383316,0.0360203832387924,0.866504609584808,0.561558067798615,0.395983278751373,0.726532697677612,0.73822009563446,0.373730897903442,0.56156587600708,0.49786764383316,0.0360203832387924,0.866504609584808, +0.533222019672394,-0.0158655233681202,0.845826506614685,0.472877681255341,0.383730292320251,0.793182075023651,0.561558067798615,0.395983278751373,0.726532697677612,0.561558067798615,0.395983278751373,0.726532697677612,0.472877681255341,0.383730292320251,0.793182075023651,0.462808132171631,0.255610018968582,0.848806321620941,0.604836463928223,0.238735511898994,0.759722411632538,0.807394444942474,0.185277953743935,0.560166239738464,0.73822009563446,0.373730897903442,0.56156587600708,0.561558067798615,0.395983278751373,0.726532697677612,0.604836463928223,0.238735511898994,0.759722411632538,0.736564636230469,0.168809071183205,0.654962539672852,0.877351403236389,0.132231578230858,0.461269348859787,0.680147051811218,-0.108317017555237,0.725029289722443,0.563454568386078,-0.125576511025429,0.816547274589539,0.877351403236389,0.132231578230858,0.461269348859787,0.652515828609467,0.131035268306732,0.746359705924988,0.652966678142548,-0.116778150200844,0.748329758644104,0.680147051811218,-0.108317017555237,0.725029289722443,-0.144669786095619,0.0121913570910692,0.989404857158661,0.266093969345093,0.0750106051564217,0.961024165153503,0.319545745849609,0.279676467180252,0.905357241630554,-0.109018251299858,0.147485896945,0.98303759098053,0.333326160907745,0.129022359848022,0.933941543102264,0.255010724067688,-0.000428939907578751,0.966938138008118,-0.144669786095619,0.0121913570910692,0.989404857158661,-0.109018251299858,0.147485896945,0.98303759098053,-0.144669786095619,0.0121913570910692,0.989404857158661,0.255010724067688,-0.000428939907578751,0.966938138008118,0.27758714556694,-0.108460150659084,0.954558432102203,-0.141841292381287,-0.088178738951683,0.985954105854034,0.232638046145439,-0.0962695926427841,0.967786967754364,0.266093969345093,0.0750106051564217,0.961024165153503,-0.144669786095619,0.0121913570910692,0.989404857158661,-0.141841292381287,-0.088178738951683,0.985954105854034,0.756154358386993,0.111662238836288,0.644796133041382,0.790066003799438,0.0960155203938484,0.605455875396729,0.794110238552094,0.136485382914543,0.592250466346741, +0.757023990154266,0.152387499809265,0.635368168354034,0.756154358386993,0.111662238836288,0.644796133041382,0.757023990154266,0.152387499809265,0.635368168354034,0.71526163816452,0.16785803437233,0.678398430347443,0.712085843086243,0.130221232771873,0.689910233020782,0.593208611011505,0.173852309584618,0.786052644252777,0.755213499069214,0.14074595272541,0.640189945697784,0.780074834823608,-0.154913365840912,0.606205582618713,0.719675958156586,-0.128582119941711,0.682299971580505,0.755213499069214,0.14074595272541,0.640189945697784,0.781828284263611,0.120814986526966,0.611676633358002,0.781822502613068,-0.163981661200523,0.601550996303558,0.780074834823608,-0.154913365840912,0.606205582618713,0.593208611011505,0.173852309584618,0.786052644252777,0.421275079250336,0.123729176819324,0.898453235626221,-0.00046492533874698,0.372183620929718,0.928158938884735,0.340378075838089,0.527010321617126,0.778718650341034,0.421275079250336,0.123729176819324,0.898453235626221,0.652515828609467,0.131035268306732,0.746359705924988,0.481602132320404,0.350094020366669,0.803426086902618,-0.00046492533874698,0.372183620929718,0.928158938884735,-0.00046492533874698,0.372183620929718,0.928158938884735,0.481602132320404,0.350094020366669,0.803426086902618,0.333326160907745,0.129022359848022,0.933941543102264,-0.109018251299858,0.147485896945,0.98303759098053,0.319545745849609,0.279676467180252,0.905357241630554,0.340378075838089,0.527010321617126,0.778718650341034,-0.00046492533874698,0.372183620929718,0.928158938884735,-0.109018251299858,0.147485896945,0.98303759098053,0.857895612716675,0.0743108317255974,0.508421897888184,0.888742685317993,0.0559654906392097,0.454977214336395,0.89489334821701,0.0763727650046349,0.439696550369263,0.8595010638237,0.0993292704224586,0.501389682292938,0.857895612716675,0.0743108317255974,0.508421897888184,0.8595010638237,0.0993292704224586,0.501389682292938,0.837277472019196,0.11309926211834,0.53495329618454,0.835683107376099,0.081412635743618,0.543144345283508,0.934450149536133,0.191255316138268,0.300373524427414, +0.983625650405884,0.156570419669151,-0.0892541706562042,0.945863425731659,0.322207003831863,0.0390521138906479,0.858171701431274,0.383388936519623,0.341400355100632,0.745747447013855,0.394625544548035,0.536778688430786,0.801282107830048,0.18563087284565,0.568760216236115,0.934450149536133,0.191255316138268,0.300373524427414,0.858171701431274,0.383388936519623,0.341400355100632,0.934450149536133,0.191255316138268,0.300373524427414,0.801282107830048,0.18563087284565,0.568760216236115,0.819088101387024,-0.0351431109011173,0.572590351104736,0.966720521450043,-0.0154459932819009,0.255367934703827,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.983625650405884,0.156570419669151,-0.0892541706562042,0.934450149536133,0.191255316138268,0.300373524427414,0.966720521450043,-0.0154459932819009,0.255367934703827,0.886453747749329,0.21589657664299,0.409375607967377,0.950080454349518,0.178385734558105,0.255979806184769,0.893545269966125,-0.0518663749098778,0.445967197418213,0.835085809230804,-0.0748017132282257,0.545010447502136,0.950080454349518,0.178385734558105,0.255979806184769,0.886452257633209,0.167524337768555,0.431437075138092,0.905811905860901,-0.0550877153873444,0.420083284378052,0.893545269966125,-0.0518663749098778,0.445967197418213,0.886453747749329,0.21589657664299,0.409375607967377,0.803862869739532,0.172455474734306,0.569265842437744,0.737718939781189,0.58137834072113,0.343176573514938,0.826826453208923,0.543696463108063,0.144056633114815,0.803862869739532,0.172455474734306,0.569265842437744,0.781828284263611,0.120814986526966,0.611676633358002,0.650332570075989,0.587092518806458,0.48206827044487,0.737718939781189,0.58137834072113,0.343176573514938,0.737718939781189,0.58137834072113,0.343176573514938,0.650332570075989,0.587092518806458,0.48206827044487,0.745747447013855,0.394625544548035,0.536778688430786,0.858171701431274,0.383388936519623,0.341400355100632,0.945863425731659,0.322207003831863,0.0390521138906479,0.826826453208923,0.543696463108063,0.144056633114815,0.737718939781189,0.58137834072113,0.343176573514938, +0.858171701431274,0.383388936519623,0.341400355100632,0.188057452440262,0.025864390656352,0.981817483901978,0.649630188941956,0.108177959918976,0.752514481544495,0.651911914348602,0.274591475725174,0.706831216812134,0.252802222967148,0.156487420201302,0.954778850078583,0.763847231864929,0.20733967423439,0.611185431480408,0.706025540828705,0.0590945929288864,0.705716550350189,0.188057452440262,0.025864390656352,0.981817483901978,0.252802222967148,0.156487420201302,0.954778850078583,0.188057452440262,0.025864390656352,0.981817483901978,0.706025540828705,0.0590945929288864,0.705716550350189,0.709508717060089,-0.0912200659513474,0.698767721652985,0.153191760182381,-0.0941735506057739,0.983698964118958,0.64495325088501,-0.0900793001055717,0.758894562721252,0.649630188941956,0.108177959918976,0.752514481544495,0.188057452440262,0.025864390656352,0.981817483901978,0.153191760182381,-0.0941735506057739,0.983698964118958,0.916368842124939,0.0464496687054634,0.39763143658638,0.897544920444489,0.0651593953371048,0.436081796884537,0.891642034053802,0.0929651632905006,0.443093478679657,0.907463729381561,0.0781039968132973,0.412806779146194,0.916368842124939,0.0464496687054634,0.39763143658638,0.907463729381561,0.0781039968132973,0.412806779146194,0.919245541095734,0.0636509135365486,0.388505220413208,0.924684047698975,0.0345741249620914,0.379162460565567,0.76248973608017,0.213903322815895,0.610618352890015,0.744976758956909,0.162133932113647,0.647087514400482,0.331249833106995,0.358847171068192,0.87264096736908,0.575747072696686,0.436208605766296,0.691547036170959,0.744976758956909,0.162133932113647,0.647087514400482,0.886452257633209,0.167524337768555,0.431437075138092,0.711159825325012,0.402712434530258,0.576258957386017,0.331249833106995,0.358847171068192,0.87264096736908,0.331249833106995,0.358847171068192,0.87264096736908,0.711159825325012,0.402712434530258,0.576258957386017,0.763847231864929,0.20733967423439,0.611185431480408,0.252802222967148,0.156487420201302,0.954778850078583,0.651911914348602,0.274591475725174,0.706831216812134, +0.575747072696686,0.436208605766296,0.691547036170959,0.331249833106995,0.358847171068192,0.87264096736908,0.252802222967148,0.156487420201302,0.954778850078583,0.76248973608017,0.213903322815895,0.610618352890015,0.870147228240967,0.154020696878433,0.468104034662247,0.929051399230957,-0.111079953610897,0.352880716323853,0.926183640956879,-0.0844836086034775,0.367486596107483,0.870147228240967,0.154020696878433,0.468104034662247,0.899462103843689,0.070027768611908,0.431351244449615,0.890304565429688,-0.14252296090126,0.432487010955811,0.929051399230957,-0.111079953610897,0.352880716323853,0.856721937656403,0.069778248667717,0.51103663444519,0.873294770717621,0.0614541955292225,0.483300536870956,0.878060460090637,0.0984387844800949,0.468315750360489,0.855748414993286,0.110716558992863,0.505407392978668,0.856721937656403,0.069778248667717,0.51103663444519,0.855748414993286,0.110716558992863,0.505407392978668,0.859469413757324,0.111063994467258,0.498976111412048,0.861620962619781,0.071912445127964,0.50243204832077,0.970055520534515,0.13045209646225,0.204876527190208,0.992351472377777,0.111337505280972,-0.0533154755830765,0.967563211917877,0.252599895000458,-0.00382610247470438,0.936956703662872,0.282421767711639,0.205791562795639,0.897969782352448,0.300134867429733,0.321821928024292,0.948911905288696,0.145231619477272,0.280131995677948,0.970055520534515,0.13045209646225,0.204876527190208,0.936956703662872,0.282421767711639,0.205791562795639,0.970055520534515,0.13045209646225,0.204876527190208,0.948911905288696,0.145231619477272,0.280131995677948,0.96843147277832,-0.0758867263793945,0.237448051571846,0.981911540031433,-0.0718926638364792,0.175160557031631,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.992351472377777,0.111337505280972,-0.0533154755830765,0.970055520534515,0.13045209646225,0.204876527190208,0.981911540031433,-0.0718926638364792,0.175160557031631,0.933897316455841,0.0937239080667496,0.345038771629333,0.907306492328644,0.0993173494935036,0.408571898937225,0.892419397830963,0.412483304738998,0.182880237698555, +0.909256994724274,0.416135013103485,-0.00912798754870892,0.907306492328644,0.0993173494935036,0.408571898937225,0.899462103843689,0.070027768611908,0.431351244449615,0.833997189998627,0.422427475452423,0.354969918727875,0.892419397830963,0.412483304738998,0.182880237698555,0.892419397830963,0.412483304738998,0.182880237698555,0.833997189998627,0.422427475452423,0.354969918727875,0.897969782352448,0.300134867429733,0.321821928024292,0.936956703662872,0.282421767711639,0.205791562795639,0.967563211917877,0.252599895000458,-0.00382610247470438,0.909256994724274,0.416135013103485,-0.00912798754870892,0.892419397830963,0.412483304738998,0.182880237698555,0.936956703662872,0.282421767711639,0.205791562795639,0.933897316455841,0.0937239080667496,0.345038771629333,0.932120323181152,0.0270342659205198,0.361138105392456,0.856386959552765,-0.11795199662447,0.502681612968445,0.840295255184174,-0.130078285932541,0.526292264461517,0.932120323181152,0.0270342659205198,0.361138105392456,0.848219990730286,0.0226736664772034,0.529158473014832,0.87024199962616,-0.115240558981895,0.478955656290054,0.856386959552765,-0.11795199662447,0.502681612968445,0.302934408187866,0.0372586101293564,0.952282786369324,0.568173348903656,0.0645316392183304,0.820374667644501,0.574787020683289,0.210684657096863,0.790715992450714,0.335194379091263,0.135729715228081,0.932320833206177,0.761416733264923,0.159113496541977,0.62843269109726,0.806950986385345,0.0708705857396126,0.586350858211517,0.302934408187866,0.0372586101293564,0.952282786369324,0.335194379091263,0.135729715228081,0.932320833206177,0.302934408187866,0.0372586101293564,0.952282786369324,0.806950986385345,0.0708705857396126,0.586350858211517,0.828090965747833,-0.0392764545977116,0.559216260910034,0.270148783922195,-0.0658984035253525,0.96056079864502,0.567517757415771,-0.105055831372738,0.816631495952606,0.568173348903656,0.0645316392183304,0.820374667644501,0.302934408187866,0.0372586101293564,0.952282786369324,0.270148783922195,-0.0658984035253525,0.96056079864502,0.907031059265137,0.0713262856006622,0.414978533983231, +0.913209974765778,0.0730284675955772,0.400891989469528,0.915004372596741,0.0965912863612175,0.391710638999939,0.908649265766144,0.0971544161438942,0.406100541353226,0.907031059265137,0.0713262856006622,0.414978533983231,0.908649265766144,0.0971544161438942,0.406100541353226,0.904750525951385,0.0933326557278633,0.415590554475784,0.904150128364563,0.0649797022342682,0.422244161367416,0.825610280036926,0.0557929053902626,0.561475515365601,0.850996136665344,0.111290536820889,0.513244569301605,0.885454833507538,-0.10305217653513,0.453155487775803,0.885731637477875,-0.117089197039604,0.449187576770782,0.850996136665344,0.111290536820889,0.513244569301605,0.881765305995941,0.156583860516548,0.444939881563187,0.899008393287659,-0.0800047740340233,0.430561602115631,0.885454833507538,-0.10305217653513,0.453155487775803,0.825610280036926,0.0557929053902626,0.561475515365601,0.790543735027313,0.00239566946402192,0.612400949001312,0.349951535463333,0.274283945560455,0.895713329315186,0.568896114826202,0.364665627479553,0.737140536308289,0.790543735027313,0.00239566946402192,0.612400949001312,0.848219990730286,0.0226736664772034,0.529158473014832,0.703478813171387,0.332269787788391,0.628262877464294,0.349951535463333,0.274283945560455,0.895713329315186,0.349951535463333,0.274283945560455,0.895713329315186,0.703478813171387,0.332269787788391,0.628262877464294,0.761416733264923,0.159113496541977,0.62843269109726,0.335194379091263,0.135729715228081,0.932320833206177,0.574787020683289,0.210684657096863,0.790715992450714,0.568896114826202,0.364665627479553,0.737140536308289,0.349951535463333,0.274283945560455,0.895713329315186,0.335194379091263,0.135729715228081,0.932320833206177,0.96678763628006,0.044914573431015,0.251603692770004,0.98066383600235,0.0180061925202608,0.194869875907898,0.979721188545227,0.0236150678247213,0.198968842625618,0.966162383556366,0.0450811833143234,0.253964215517044,0.96678763628006,0.044914573431015,0.251603692770004,0.966162383556366,0.0450811833143234,0.253964215517044,0.947649896144867,0.0681590139865875,0.311952084302902, +0.944641470909119,0.0620442479848862,0.322184771299362,0.977914929389954,0.0444089695811272,0.204231038689613,0.99474173784256,0.0217426996678114,-0.100080631673336,0.97530996799469,0.220519706606865,-0.0118971364572644,0.935251116752625,0.243269473314285,0.25714835524559,0.877151727676392,0.257564693689346,0.405296623706818,0.923970639705658,0.068852424621582,0.376215010881424,0.977914929389954,0.0444089695811272,0.204231038689613,0.935251116752625,0.243269473314285,0.25714835524559,0.977914929389954,0.0444089695811272,0.204231038689613,0.923970639705658,0.068852424621582,0.376215010881424,0.928299844264984,-0.170819714665413,0.330272734165192,0.970346391201019,-0.193304762244225,0.145124331116676,0.967428803443909,-0.190274477005005,-0.166964590549469,0.99474173784256,0.0217426996678114,-0.100080631673336,0.977914929389954,0.0444089695811272,0.204231038689613,0.970346391201019,-0.193304762244225,0.145124331116676,0.962637424468994,0.252006649971008,0.099105529487133,0.937002420425415,0.241222590208054,-0.252662390470505,0.997656524181366,0.0230849012732506,0.064408503472805,0.968400835990906,0.00266301538795233,0.249384731054306,0.937002420425415,0.241222590208054,-0.252662390470505,0.980355262756348,0.185684055089951,-0.066519558429718,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.997656524181366,0.0230849012732506,0.064408503472805,0.962637424468994,0.252006649971008,0.099105529487133,0.917985677719116,0.17777444422245,0.354539930820465,0.854804515838623,0.434143126010895,0.28430449962616,0.89900928735733,0.433892607688904,0.0593249090015888,0.917985677719116,0.17777444422245,0.354539930820465,0.881765305995941,0.156583860516548,0.444939881563187,0.802838861942291,0.432056188583374,0.410825103521347,0.854804515838623,0.434143126010895,0.28430449962616,0.854804515838623,0.434143126010895,0.28430449962616,0.802838861942291,0.432056188583374,0.410825103521347,0.877151727676392,0.257564693689346,0.405296623706818,0.935251116752625,0.243269473314285,0.25714835524559,0.97530996799469,0.220519706606865,-0.0118971364572644, +0.89900928735733,0.433892607688904,0.0593249090015888,0.854804515838623,0.434143126010895,0.28430449962616,0.935251116752625,0.243269473314285,0.25714835524559,0.687476277351379,-0.0471765957772732,0.724672734737396,0.94857782125473,0.0162582080811262,0.316126316785812,0.921207129955292,0.242782741785049,0.304029613733292,0.721513330936432,0.166509702801704,0.672081053256989,0.969870567321777,0.175378158688545,0.169096708297729,0.97145414352417,-0.0491053462028503,0.232089444994926,0.687476277351379,-0.0471765957772732,0.724672734737396,0.721513330936432,0.166509702801704,0.672081053256989,0.687476277351379,-0.0471765957772732,0.724672734737396,0.97145414352417,-0.0491053462028503,0.232089444994926,0.926129341125488,-0.292127281427383,0.23863373696804,0.600978076457977,-0.261314034461975,0.755341231822968,0.908502757549286,-0.245355442166328,0.338265061378479,0.94857782125473,0.0162582080811262,0.316126316785812,0.687476277351379,-0.0471765957772732,0.724672734737396,0.600978076457977,-0.261314034461975,0.755341231822968,0.994035840034485,-0.0367925614118576,0.102660104632378,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.9980588555336,-0.0307272728532553,0.0541705675423145,0.994471251964569,-0.0121922809630632,0.10429909825325,0.994035840034485,-0.0367925614118576,0.102660104632378,0.994471251964569,-0.0121922809630632,0.10429909825325,0.990318834781647,0.000879656348843127,0.138809040188789,0.991952538490295,-0.0207040682435036,0.124906249344349,0.984749257564545,0.116362579166889,0.129339754581451,0.978713750839233,0.08892522752285,0.184964135289192,0.649170100688934,0.397710740566254,0.648386120796204,0.830227434635162,0.431485265493393,0.352906316518784,0.978713750839233,0.08892522752285,0.184964135289192,0.980355262756348,0.185684055089951,-0.066519558429718,0.866819143295288,0.469822436571121,0.167007490992546,0.649170100688934,0.397710740566254,0.648386120796204,0.649170100688934,0.397710740566254,0.648386120796204,0.866819143295288,0.469822436571121,0.167007490992546,0.969870567321777,0.175378158688545,0.169096708297729, +0.721513330936432,0.166509702801704,0.672081053256989,0.921207129955292,0.242782741785049,0.304029613733292,0.830227434635162,0.431485265493393,0.352906316518784,0.649170100688934,0.397710740566254,0.648386120796204,0.721513330936432,0.166509702801704,0.672081053256989,0.984749257564545,0.116362579166889,0.129339754581451,0.992181420326233,0.102621845901012,0.071026511490345,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.992181420326233,0.102621845901012,0.071026511490345,0.995797336101532,0.0686046779155731,0.0606710277497768,0.935719668865204,-0.352570354938507,0.0110868783667684,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.988057315349579,-0.0398513898253441,0.148843824863434,0.985852181911469,-0.0375175699591637,0.163363993167877,0.989045441150665,-0.00783006940037012,0.147403299808502,0.988508582115173,-0.00779631454497576,0.150963544845581,0.988057315349579,-0.0398513898253441,0.148843824863434,0.988508582115173,-0.00779631454497576,0.150963544845581,0.994130790233612,-0.0191965121775866,0.106468379497528,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.996471583843231,0.0601857453584671,0.0584988780319691,0.98906534910202,0.0802784711122513,-0.123714156448841,0.948138177394867,0.282200694084167,-0.14627605676651,0.965531885623932,0.259218961000443,0.0235322955995798,0.967525243759155,0.247970029711723,0.0490496791899204,0.998223602771759,0.0560266152024269,0.0202678386121988,0.996471583843231,0.0601857453584671,0.0584988780319691,0.965531885623932,0.259218961000443,0.0235322955995798,0.996471583843231,0.0601857453584671,0.0584988780319691,0.998223602771759,0.0560266152024269,0.0202678386121988,0.980018794536591,-0.198278412222862,-0.0157665051519871,0.981442987918854,-0.186396196484566,0.0450117699801922,0.979010879993439,-0.153616860508919,-0.133938953280449,0.98906534910202,0.0802784711122513,-0.123714156448841,0.996471583843231,0.0601857453584671,0.0584988780319691,0.981442987918854,-0.186396196484566,0.0450117699801922, +0.997986316680908,0.0507214218378067,0.0380863137543201,0.995731592178345,0.0808172449469566,0.0445774905383587,0.902222096920013,0.430157274007797,-0.0309827905148268,0.865681052207947,0.459593385457993,-0.198418900370598,0.995731592178345,0.0808172449469566,0.0445774905383587,0.995797336101532,0.0686046779155731,0.0606710277497768,0.907636106014252,0.41373685002327,0.0708418563008308,0.902222096920013,0.430157274007797,-0.0309827905148268,0.902222096920013,0.430157274007797,-0.0309827905148268,0.907636106014252,0.41373685002327,0.0708418563008308,0.967525243759155,0.247970029711723,0.0490496791899204,0.965531885623932,0.259218961000443,0.0235322955995798,0.948138177394867,0.282200694084167,-0.14627605676651,0.865681052207947,0.459593385457993,-0.198418900370598,0.902222096920013,0.430157274007797,-0.0309827905148268,0.965531885623932,0.259218961000443,0.0235322955995798,0.997986316680908,0.0507214218378067,0.0380863137543201,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.942376792430878,-0.257297188043594,0.213832184672356,0.939077377319336,-0.303965419530869,0.160432919859886,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.945305049419403,0.0100241769105196,0.326033502817154,0.941215097904205,-0.228930488228798,0.248405158519745,0.942376792430878,-0.257297188043594,0.213832184672356,0.127597525715828,-0.0325997099280357,0.991290092468262,0.118021123111248,0.090134933590889,0.988911867141724,-0.275225967168808,0.0847131758928299,0.957639992237091,-0.282585620880127,-0.00664947414770722,0.959219038486481,-0.275225967168808,0.0847131758928299,0.957639992237091,0.118021123111248,0.090134933590889,0.988911867141724,0.130164593458176,0.193935751914978,0.97234058380127,-0.208788350224495,0.164736926555634,0.963985979557037,-0.275225967168808,0.0847131758928299,0.957639992237091,-0.208788350224495,0.164736926555634,0.963985979557037,-0.496288329362869,0.117570117115974,0.860160052776337,-0.565321087837219,0.0699423104524612,0.821900248527527,0.580079257488251,-0.802277624607086,-0.140921175479889, +0.503361344337463,-0.706269264221191,-0.497806340456009,0.707929074764252,-0.133106932044029,-0.69362735748291,0.943901240825653,-0.159197479486465,-0.289320975542068,0.503361344337463,-0.706269264221191,-0.497806340456009,0.468589961528778,-0.584312975406647,-0.662572145462036,0.647358417510986,-0.13522407412529,-0.750094354152679,0.707929074764252,-0.133106932044029,-0.69362735748291,0.611539423465729,-0.490914881229401,0.620501518249512,-0.205286920070648,-0.331945270299911,0.920689761638641,-0.173348903656006,-0.0628221333026886,0.982854843139648,0.682898283004761,-0.155377089977264,0.713798105716705,-0.205286920070648,-0.331945270299911,0.920689761638641,-0.0764050707221031,-0.417319446802139,0.905542194843292,-0.0503527484834194,-0.0637124851346016,0.996697187423706,-0.173348903656006,-0.0628221333026886,0.982854843139648,0.38191831111908,-0.534317016601563,0.754084825515747,0.585544049739838,-0.560901701450348,0.585258364677429,0.672795593738556,-0.0803807750344276,0.735448837280273,0.444481372833252,-0.0677722692489624,0.893220722675323,0.585544049739838,-0.560901701450348,0.585258364677429,0.768001198768616,-0.555274188518524,0.319131225347519,0.880849540233612,-0.10070113837719,0.462561696767807,0.672795593738556,-0.0803807750344276,0.735448837280273,0.361415475606918,-0.459209114313126,0.811483681201935,0.567689180374146,-0.54811817407608,0.614243924617767,0.620405852794647,-0.09043038636446,0.779050052165985,0.372290521860123,-0.066767729818821,0.925711572170258,0.567689180374146,-0.54811817407608,0.614243924617767,0.803296148777008,-0.540965020656586,0.249142676591873,0.913928806781769,-0.122308745980263,0.387007266283035,0.620405852794647,-0.09043038636446,0.779050052165985,0.279478907585144,-0.493038803339005,0.823895812034607,-0.0991577431559563,-0.400916516780853,0.910732448101044,-0.141841292381287,-0.088178738951683,0.985954105854034,0.27758714556694,-0.108460150659084,0.954558432102203,-0.0991577431559563,-0.400916516780853,0.910732448101044,0.191228091716766,-0.571527898311615,0.797989845275879, +0.232638046145439,-0.0962695926427841,0.967786967754364,-0.141841292381287,-0.088178738951683,0.985954105854034,0.608965456485748,-0.694889307022095,0.382478654384613,0.717230916023254,-0.68506932258606,0.12751404941082,0.966720521450043,-0.0154459932819009,0.255367934703827,0.819088101387024,-0.0351431109011173,0.572590351104736,0.717230916023254,-0.68506932258606,0.12751404941082,0.76520174741745,-0.598868787288666,-0.236267596483231,0.985835075378418,-0.00664942990988493,-0.167586252093315,0.966720521450043,-0.0154459932819009,0.255367934703827,0.584151804447174,-0.762029647827148,0.279423326253891,0.0978060141205788,-0.621664941310883,0.777152895927429,0.153191760182381,-0.0941735506057739,0.983698964118958,0.709508717060089,-0.0912200659513474,0.698767721652985,0.0978060141205788,-0.621664941310883,0.777152895927429,0.362098813056946,-0.813945949077606,0.454286754131317,0.64495325088501,-0.0900793001055717,0.758894562721252,0.153191760182381,-0.0941735506057739,0.983698964118958,0.488683670759201,-0.870462596416473,0.0590182170271873,0.543534517288208,-0.839118838310242,0.0212124735116959,0.981911540031433,-0.0718926638364792,0.175160557031631,0.96843147277832,-0.0758867263793945,0.237448051571846,0.543534517288208,-0.839118838310242,0.0212124735116959,0.629507541656494,-0.751857101917267,-0.196038767695427,0.995052874088287,-0.0520225390791893,-0.0846366137266159,0.981911540031433,-0.0718926638364792,0.175160557031631,0.56140524148941,-0.760091602802277,0.327238112688065,0.122852981090546,-0.580223500728607,0.805138409137726,0.270148783922195,-0.0658984035253525,0.96056079864502,0.828090965747833,-0.0392764545977116,0.559216260910034,0.122852981090546,-0.580223500728607,0.805138409137726,0.290562391281128,-0.833357572555542,0.470200717449188,0.567517757415771,-0.105055831372738,0.816631495952606,0.270148783922195,-0.0658984035253525,0.96056079864502,0.366073846817017,-0.928832650184631,0.0570956841111183,0.392117619514465,-0.919745564460754,-0.017663087695837,0.970346391201019,-0.193304762244225,0.145124331116676, +0.928299844264984,-0.170819714665413,0.330272734165192,0.392117619514465,-0.919745564460754,-0.017663087695837,0.443840831518173,-0.869051337242126,-0.218529835343361,0.967428803443909,-0.190274477005005,-0.166964590549469,0.970346391201019,-0.193304762244225,0.145124331116676,0.365046739578247,-0.930285453796387,0.0361897274851799,0.249306723475456,-0.827130019664764,0.503688633441925,0.600978076457977,-0.261314034461975,0.755341231822968,0.926129341125488,-0.292127281427383,0.23863373696804,0.249306723475456,-0.827130019664764,0.503688633441925,0.453211486339569,-0.875407874584198,0.168108060956001,0.908502757549286,-0.245355442166328,0.338265061378479,0.600978076457977,-0.261314034461975,0.755341231822968,0.427078545093536,-0.896062970161438,-0.121140316128731,0.474964082241058,-0.876463294029236,-0.0788748115301132,0.981442987918854,-0.186396196484566,0.0450117699801922,0.980018794536591,-0.198278412222862,-0.0157665051519871,0.474964082241058,-0.876463294029236,-0.0788748115301132,0.536954879760742,-0.810872852802277,-0.232732996344566,0.979010879993439,-0.153616860508919,-0.133938953280449,0.981442987918854,-0.186396196484566,0.0450117699801922,0.4815514087677,-0.87572968006134,0.0347205102443695,0.415730476379395,-0.823940396308899,0.385085076093674,0.765810191631317,-0.183057054877281,0.616461575031281,0.94291889667511,-0.162472039461136,0.290700316429138,0.415730476379395,-0.823940396308899,0.385085076093674,0.490228146314621,-0.860631465911865,0.137803331017494,0.913950681686401,-0.210046574473381,0.347238570451736,0.765810191631317,-0.183057054877281,0.616461575031281,0.410441100597382,-0.911667168140411,-0.0200270190834999,0.482958912849426,-0.87268078327179,0.0719649940729141,0.975555777549744,-0.209971636533737,0.0648303180932999,0.96679949760437,-0.249450340867043,0.0554373450577259,0.482958912849426,-0.87268078327179,0.0719649940729141,0.580079257488251,-0.802277624607086,-0.140921175479889,0.943901240825653,-0.159197479486465,-0.289320975542068,0.975555777549744,-0.209971636533737,0.0648303180932999, +-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.979649782180786,0.010231826454401,-0.200453445315361,-0.99641489982605,0.0495933890342712,0.0685418769717216,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.982662558555603,0.0329523794353008,-0.182450905442238,-0.99641489982605,0.0495933890342712,0.0685418769717216,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.488972872495651,-0.0603184551000595,-0.870211005210876,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.25171884894371,-0.130920335650444,-0.958904325962067,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.390914648771286,-0.485996723175049,-0.781660377979279, +-0.560848295688629,-0.0379329957067966,-0.827049136161804,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.528702199459076,0.02510073967278,-0.848436117172241,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.528702199459076,0.02510073967278,-0.848436117172241,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.0457770563662052,-0.794794380664825,-0.605149805545807,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,-0.0654709786176682,-0.833355844020844,-0.548845648765564,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.0654709786176682,-0.833355844020844,-0.548845648765564,-0.208506092429161,-0.746393322944641,-0.631998658180237,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.0457770563662052,-0.794794380664825,-0.605149805545807,-0.0551281310617924,-0.820433378219604,-0.569078147411346,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.821892201900482,-0.345836788415909,-0.452647894620895, +-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.884441912174225,-0.373624414205551,-0.279584497213364,-0.821892201900482,-0.345836788415909,-0.452647894620895,-0.438970118761063,-0.852742969989777,-0.283080875873566,-0.907367289066315,0.0639203116297722,-0.415450036525726,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.298206895589828,-0.854700148105621,-0.424923866987228,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.280902534723282,-0.819617211818695,-0.499320924282074,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.4206303358078,-0.889036595821381,-0.180787056684494,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.4206303358078,-0.889036595821381,-0.180787056684494,-0.900127410888672,-0.415628045797348,-0.130475774407387,-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.387854129076004,-0.902869999408722,-0.185458943247795,-0.993456184864044,-0.0716914087533951,-0.0889105051755905, +-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.31306254863739,-0.939959347248077,-0.135897815227509,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.314095944166183,-0.921738564968109,-0.227467820048332,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.990622639656067,0.0857216641306877,-0.106388725340366,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.896165788173676,-0.440985083580017,-0.049183439463377,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.896165788173676,-0.440985083580017,-0.049183439463377,2.66085771727376e-06,-0.990090310573578,-0.140432059764862,1.52039376644098e-08,-0.921437203884125,-0.388527274131775,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.138488098978996,-0.980667471885681,-0.138246849179268,1.52039376644098e-08,-0.921437203884125,-0.388527274131775, +3.14041017190902e-06,-0.772840142250061,-0.634600639343262,-0.108565412461758,-0.770942389965057,-0.627583682537079,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.108565412461758,-0.770942389965057,-0.627583682537079,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.138488098978996,-0.980667471885681,-0.138246849179268,-0.128122597932816,-0.914434850215912,-0.383918642997742,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.0364131145179272,-0.603021621704102,-0.796893298625946,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.103931322693825,-0.164669066667557,-0.980857968330383,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.401204913854599,-0.014723970554769,-0.915869951248169,-0.441990077495575,-0.315394371747971,-0.839744746685028,-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.401204913854599,-0.014723970554769,-0.915869951248169,-0.401204913854599,-0.014723970554769,-0.915869951248169, +-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.441990077495575,-0.315394371747971,-0.839744746685028,-0.401204913854599,-0.014723970554769,-0.915869951248169,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.696674108505249,-0.360358059406281,-0.62031215429306,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.416277587413788,-0.0313265770673752,-0.908697664737701,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.416277587413788,-0.0313265770673752,-0.908697664737701, +-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.461096465587616,-0.262215584516525,-0.847722232341766,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.99353951215744,-0.0590934678912163,-0.0968871414661407,-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.416277587413788,-0.0313265770673752,-0.908697664737701,-0.504982352256775,-0.84366911649704,0.182250425219536,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.412525236606598,-0.908749580383301,-0.0632219761610031,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.412525236606598,-0.908749580383301,-0.0632219761610031,-0.936635732650757,-0.349251270294189,0.0271473564207554,-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.350769490003586,-0.92918074131012,-0.116550117731094,-0.343549638986588,-0.879240989685059,-0.330013662576675,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.318461418151855,-0.806907653808594,-0.497476071119308,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.889022469520569,-0.0361417755484581,-0.456434816122055,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.889022469520569,-0.0361417755484581,-0.456434816122055, +-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.318461418151855,-0.806907653808594,-0.497476071119308,-0.708121001720428,-0.369682043790817,-0.60158109664917,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.889022469520569,-0.0361417755484581,-0.456434816122055,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.982662558555603,0.0329523794353008,-0.182450905442238,-0.972033739089966,0.0457034967839718,0.230350762605667,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.408082395792007,-0.901757717132568,-0.142484843730927,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.408082395792007,-0.901757717132568,-0.142484843730927,-0.880127668380737,-0.453908294439316,-0.13907727599144,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.381489336490631,-0.919561326503754,-0.094196043908596,-0.994863569736481,0.0825993195176125,-0.0585142411291599,-0.990622639656067,0.0857216641306877,-0.106388725340366, +-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.49962443113327,-0.0505809225142002,-0.864764153957367,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.442076206207275,-0.0473057590425014,-0.895729243755341,-0.514413774013519,-0.0855671167373657,-0.853262305259705,-0.488972872495651,-0.0603184551000595,-0.870211005210876,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.245702922344208,-0.800319671630859,-0.546917259693146,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.225158423185349,-0.775384128093719,-0.58998566865921,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.28141462802887,-0.71728241443634,-0.63742595911026, +-0.213849946856499,-0.761492013931274,-0.611880898475647,-0.225158423185349,-0.775384128093719,-0.58998566865921,-0.28141462802887,-0.71728241443634,-0.63742595911026,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.208506092429161,-0.746393322944641,-0.631998658180237,-0.213849946856499,-0.761492013931274,-0.611880898475647,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.464114040136337,-0.191303879022598,-0.864870488643646,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.464114040136337,-0.191303879022598,-0.864870488643646,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,2.57396004599286e-06,-0.761352777481079,-0.648337841033936,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.105169393122196,-0.61860316991806,-0.778633117675781,2.57396004599286e-06,-0.761352777481079,-0.648337841033936,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,-0.0457770563662052,-0.794794380664825,-0.605149805545807,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.0457770563662052,-0.794794380664825,-0.605149805545807,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.105169393122196,-0.61860316991806,-0.778633117675781,-0.0498373210430145,-0.752917945384979,-0.656224548816681,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,-0.178244784474373,-0.249184742569923,-0.951911568641663,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-0.178244784474373,-0.249184742569923,-0.951911568641663, +-0.256911754608154,-0.252870112657547,-0.932766318321228,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.396100550889969,-0.0960882529616356,-0.91316556930542,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.277942091226578,-0.700304388999939,-0.65751188993454,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.180045455694199,-0.541630566120148,-0.821108877658844,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.180045455694199,-0.541630566120148,-0.821108877658844,-0.258678466081619,-0.161485895514488,-0.952369511127472,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.953178584575653,0.0196772385388613,-0.301767021417618,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.464732706546783,-0.814355134963989,-0.347633630037308, +-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.301055043935776,-0.904826879501343,-0.301088362932205,-0.464732706546783,-0.814355134963989,-0.347633630037308,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.310237467288971,-0.891564309597015,-0.329947859048843,-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.310237467288971,-0.891564309597015,-0.329947859048843,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.298206895589828,-0.854700148105621,-0.424923866987228,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.280902534723282,-0.819617211818695,-0.499320924282074,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.245702922344208,-0.800319671630859,-0.546917259693146,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.88413417339325,-0.0739206969738007,-0.461348652839661, +-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.825587332248688,0.0286079067736864,-0.563548803329468,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.815876126289368,-0.308629333972931,-0.488972425460815,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.982662558555603,0.0329523794353008,-0.182450905442238,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.387130469083786,-0.918020367622375,-0.0858408212661743,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.26970186829567,-0.962894201278687,-0.00978067889809608, +-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.26970186829567,-0.962894201278687,-0.00978067889809608,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.461858808994293,-0.883243680000305,-0.081038162112236,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.461858808994293,-0.883243680000305,-0.081038162112236,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.31306254863739,-0.939959347248077,-0.135897815227509,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.314095944166183,-0.921738564968109,-0.227467820048332,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.301055043935776,-0.904826879501343,-0.301088362932205,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.833562433719635,-0.232993811368942,-0.500886976718903,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.789600312709808,-0.233621582388878,-0.567408561706543,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.942162156105042,-0.189164578914642,-0.276671946048737, +-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.945482194423676,-0.0409146323800087,-0.32309365272522,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.955233037471771,-0.211159124970436,-0.207223549485207,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.990622639656067,0.0857216641306877,-0.106388725340366,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.986149847507477,0.0842932090163231,-0.1428392380476,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.794555902481079,-0.603073060512543,-0.0705948919057846,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.834451138973236,-0.550636053085327,-0.0221660751849413, +-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.834451138973236,-0.550636053085327,-0.0221660751849413,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.873724460601807,-0.463758498430252,-0.146743357181549,-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.873724460601807,-0.463758498430252,-0.146743357181549,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.148259058594704,-0.447607427835464,-0.881854236125946,-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.287347048521042,-0.154420122504234,-0.945296883583069,-0.148259058594704,-0.447607427835464,-0.881854236125946,-0.331568837165833,-0.108012661337852,-0.937227547168732,-0.287347048521042,-0.154420122504234,-0.945296883583069, +-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.408545464277267,-0.047090120613575,-0.911522448062897,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.377540469169617,-0.0881210491061211,-0.921790599822998,-0.408545464277267,-0.047090120613575,-0.911522448062897,-0.32930600643158,0.157053649425507,-0.931070148944855,-0.376513838768005,0.0252952426671982,-0.926065623760223,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,1.27130106193363e-05,0.13537959754467,-0.990793883800507,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.376513838768005,0.0252952426671982,-0.926065623760223,-0.32930600643158,0.157053649425507,-0.931070148944855,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.440281808376312,-0.061254620552063,-0.895767748355865,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.440281808376312,-0.061254620552063,-0.895767748355865,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.440281808376312,-0.061254620552063,-0.895767748355865, +-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.440281808376312,-0.061254620552063,-0.895767748355865,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.801140546798706,0.0487019307911396,-0.596491456031799,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.488972872495651,-0.0603184551000595,-0.870211005210876,-0.514413774013519,-0.0855671167373657,-0.853262305259705, +-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.514413774013519,-0.0855671167373657,-0.853262305259705,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.576612889766693,-0.0856463760137558,-0.812516033649445,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.998237192630768,-0.0260469224303961,0.0533303394913673,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.998237192630768,-0.0260469224303961,0.0533303394913673,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.88413417339325,-0.0739206969738007,-0.461348652839661,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.998237192630768,-0.0260469224303961,0.0533303394913673, +-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.998237192630768,-0.0260469224303961,0.0533303394913673,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.805609703063965,-0.0878097712993622,-0.585903167724609,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.805609703063965,-0.0878097712993622,-0.585903167724609,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.775463104248047,-0.0451733730733395,-0.629774749279022,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.775463104248047,-0.0451733730733395,-0.629774749279022,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.794786155223846,-0.0457286573946476,-0.605164110660553,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.99353951215744,-0.0590934678912163,-0.0968871414661407, +-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.99353951215744,-0.0590934678912163,-0.0968871414661407,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.915162146091461,-0.0421942844986916,0.400871366262436,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.9540776014328,0.034807775169611,-0.297530263662338,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.9540776014328,0.034807775169611,-0.297530263662338,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.797227323055267,-0.0204821228981018,-0.603331625461578,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.797227323055267,-0.0204821228981018,-0.603331625461578,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.807414352893829,0.0310981180518866,-0.589164674282074,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.459797859191895,0.018549919128418,-0.887829899787903,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.789600312709808,-0.233621582388878,-0.567408561706543, +-0.459797859191895,0.018549919128418,-0.887829899787903,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.942162156105042,-0.189164578914642,-0.276671946048737,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.876016855239868,0.00660221418365836,0.482235372066498,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.955690503120422,0.116404086351395,-0.27038100361824,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.955690503120422,0.116404086351395,-0.27038100361824, +-0.978031694889069,0.152403831481934,0.142221853137016,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.955690503120422,0.116404086351395,-0.27038100361824,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.955690503120422,0.116404086351395,-0.27038100361824,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.978031694889069,0.152403831481934,0.142221853137016,-0.96406227350235,0.111413389444351,0.241186484694481,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.96406227350235,0.111413389444351,0.241186484694481,-0.988257348537445,0.126139655709267,0.0862344056367874,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.96623170375824,-0.029388353228569,0.255993455648422,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.989424645900726,0.13632769882679,-0.0495329834520817,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.989424645900726,0.13632769882679,-0.0495329834520817, +-0.988257348537445,0.126139655709267,0.0862344056367874,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.973887205123901,0.032121330499649,-0.224748268723488,-0.979649782180786,0.010231826454401,-0.200453445315361,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-0.376513838768005,0.0252952426671982,-0.926065623760223,-0.49920243024826,-0.860129773616791,-0.10475566983223,-0.883460283279419,-0.406381100416183,-0.233135625720024, +-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.883460283279419,-0.406381100416183,-0.233135625720024,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.907222211360931,-0.0355446375906467,-0.419147104024887,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.827536165714264,-0.373897194862366,-0.418789654970169,-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.628146648406982,0.0662203654646873,-0.775272011756897,-0.494679480791092,0.0547396168112755,-0.867349803447723,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.815708935260773,0.0596661418676376,-0.575377225875854,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.715056598186493,0.00465239025652409,-0.699051022529602,-0.352731823921204,-0.0947577580809593,-0.930914163589478,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.390914648771286,-0.485996723175049,-0.781660377979279,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.448402434587479,-0.139091596007347,-0.882943212985992,-0.488972872495651,-0.0603184551000595,-0.870211005210876, +-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.598679661750793,-0.0571823753416538,-0.798944711685181,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.632789134979248,-0.124923869967461,-0.764180541038513,-0.616173684597015,-0.103251852095127,-0.780813038349152,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.442076206207275,-0.0473057590425014,-0.895729243755341,-0.366198480129242,-0.0343730673193932,-0.929901778697968,-0.541592955589294,0.0144203966483474,-0.840517103672028,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.192269220948219,0.0178309604525566,-0.981180191040039,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.340973317623138,-0.0105611849576235,-0.940013587474823,-0.513172924518585,-0.0374604165554047,-0.857467353343964,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.530753314495087,-0.116750054061413,-0.839446425437927,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.330737948417664,-0.145944267511368,-0.932369410991669,-0.315454751253128,-0.0564457401633263,-0.94726037979126,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.530753314495087,-0.116750054061413,-0.839446425437927,-0.530753314495087,-0.116750054061413,-0.839446425437927,-0.476789981126785,-0.0438453294336796,-0.877923130989075,-0.40185621380806,-0.0166935306042433,-0.915550589561462,-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.530753314495087,-0.116750054061413,-0.839446425437927, +-0.52941906452179,-0.0815905332565308,-0.844427883625031,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.806577742099762,-0.048304695636034,-0.58915102481842,-0.861355721950531,-0.00339022488333285,-0.507990896701813,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.999421298503876,-0.0338439121842384,0.00342081766575575,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.927998244762421,-0.216704130172729,-0.303081512451172,-0.793163001537323,-0.33431738615036,-0.50904256105423,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.106112167239189,-0.0547506213188171,-0.992845594882965,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.823106348514557,-0.0781150013208389,-0.562489211559296,-0.937705874443054,-0.0621071681380272,-0.341833829879761,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.724339663982391,-0.381543666124344,-0.574244201183319,-0.81188428401947,-0.0922139137983322,-0.576489806175232,-0.805609703063965,-0.0878097712993622,-0.585903167724609,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.805609703063965,-0.0878097712993622,-0.585903167724609, +-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.752252161502838,-0.389265239238739,-0.531591296195984,-0.632403492927551,-0.348389744758606,-0.69187468290329,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.416277587413788,-0.0313265770673752,-0.908697664737701,-0.636495590209961,-0.0589945986866951,-0.769020795822144,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.941159784793854,-0.336334556341171,0.0331267789006233,-0.994713068008423,-0.0976642444729805,0.0317458659410477,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.896430194377899,-0.0819522067904472,0.435541808605194,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.840617597103119,-0.310208052396774,0.443996787071228,-0.923732161521912,-0.376036405563354,0.072907567024231,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.953178584575653,0.0196772385388613,-0.301767021417618,-0.95158988237381,-0.03292440995574,-0.30560228228569,-0.997429549694061,-0.056777086108923,0.0437123477458954,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.438970118761063,-0.852742969989777,-0.283080875873566,-0.821892201900482,-0.345836788415909,-0.452647894620895,-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.393761098384857,-0.804321646690369,-0.444992929697037,-0.821892201900482,-0.345836788415909,-0.452647894620895,-0.892045319080353,-0.0255229156464338,-0.451224654912949,-0.797227323055267,-0.0204821228981018,-0.603331625461578, +-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.797227323055267,-0.0204821228981018,-0.603331625461578,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.393761098384857,-0.804321646690369,-0.444992929697037,-0.716828227043152,-0.319538056850433,-0.619719803333282,-0.47714763879776,-0.261914938688278,-0.838886499404907,-0.277942091226578,-0.700304388999939,-0.65751188993454,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.263971626758575,0.00210232799872756,-0.964528143405914,-0.522259891033173,-0.00503626791760325,-0.852771520614624,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.741867184638977,-0.154720082879066,-0.652452886104584,-0.768400430679321,-0.0293601490557194,-0.639295399188995,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.859545528888702,-0.0322774574160576,0.51003885269165,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.802379965782166,-0.188287705183029,0.566334009170532,-0.90110981464386,-0.275183230638504,0.335074961185455,-0.504982352256775,-0.84366911649704,0.182250425219536,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.996042311191559,-0.0299788117408752,0.0836718082427979,-0.925909817218781,-0.0276696793735027,0.376729816198349,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.350769490003586,-0.92918074131012,-0.116550117731094,-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.346632838249207,-0.923425912857056,-0.164713159203529, +-0.907046139240265,-0.401282042264938,-0.127436384558678,-0.992834627628326,-0.0222394429147243,-0.117408588528633,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.968201100826263,-0.00623580766841769,-0.250095427036285,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.346632838249207,-0.923425912857056,-0.164713159203529,-0.873615205287933,-0.421094387769699,-0.243877112865448,-0.80388993024826,-0.401240319013596,-0.439052551984787,-0.343549638986588,-0.879240989685059,-0.330013662576675,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.889022469520569,-0.0361417755484581,-0.456434816122055,-0.925391793251038,-0.00213055033236742,-0.37900584936142,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.849575757980347,-0.476649522781372,-0.225889608263969,-0.985360980033875,-0.116535291075706,-0.124431379139423,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.960677027702332,-0.135943993926048,0.24211348593235,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.840234220027924,-0.443358063697815,0.312153875827789,-0.898572862148285,-0.41828653216362,0.132677271962166,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.992294132709503,-0.0860069170594215,-0.0891914442181587,-0.987775087356567,-0.107959732413292,0.112450234591961,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.387854129076004,-0.902869999408722,-0.185458943247795, +-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.430399775505066,-0.883213877677917,-0.186250641942024,-0.885654628276825,-0.428707957267761,-0.178396418690681,-0.984757125377655,-0.07723169028759,-0.155848175287247,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.975454986095428,-0.0607193000614643,-0.211661830544472,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.430399775505066,-0.883213877677917,-0.186250641942024,-0.886686265468597,-0.413294076919556,-0.207305312156677,-0.859053254127502,-0.362170279026031,-0.361746191978455,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.886427044868469,-0.0137273697182536,-0.462664872407913,-0.932311117649078,-0.0330935269594193,-0.360139846801758,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.913467347621918,-0.369437634944916,-0.170567363500595,-0.986743271350861,-0.0299428626894951,-0.159503012895584,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.962512314319611,-0.047629464417696,0.267023384571075,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.863468647003174,-0.432107776403427,0.260201215744019,-0.889546811580658,-0.455057978630066,0.0403571724891663,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.994863569736481,0.0825993195176125,-0.0585142411291599, +-0.995614111423492,-0.0409941263496876,-0.0840945318341255,-0.994153141975403,-0.0412573218345642,0.0997870042920113,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.381489336490631,-0.919561326503754,-0.094196043908596,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.424536168575287,-0.905021488666534,-0.0265562422573566,-0.878861665725708,-0.460667699575424,-0.124046295881271,-0.992338895797729,-0.0447915121912956,-0.115139864385128,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.990462481975555,-0.0372263006865978,-0.132658198475838,-0.967400670051575,-0.0304711312055588,-0.251410782337189,-0.883460283279419,-0.406381100416183,-0.233135625720024,-0.424536168575287,-0.905021488666534,-0.0265562422573566,-0.890101671218872,-0.444990605115891,-0.0985004380345345,-0.883460283279419,-0.406381100416183,-0.233135625720024,-0.49920243024826,-0.860129773616791,-0.10475566983223,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,0.00515420362353325,-0.894274532794952,-0.44748929142952,-0.0206318106502295,-0.992974400520325,-0.116516247391701,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,-0.148259058594704,-0.447607427835464,-0.881854236125946,0.00515420362353325,-0.894274532794952,-0.44748929142952,0.00515420362353325,-0.894274532794952,-0.44748929142952,-0.148259058594704,-0.447607427835464,-0.881854236125946,-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.0206318106502295,-0.992974400520325,-0.116516247391701,0.00515420362353325,-0.894274532794952,-0.44748929142952,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.0251823868602514,-0.993472933769226,-0.111252799630165,-0.0364131145179272,-0.603021621704102,-0.796893298625946, +-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.089910089969635,-0.604069530963898,-0.791843414306641,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.0472629778087139,-0.991491556167603,-0.121288307011127,-0.0117815146222711,-0.987104535102844,-0.159642085433006,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.0415075272321701,-0.916815459728241,-0.397147983312607,-0.0117815146222711,-0.987104535102844,-0.159642085433006,-0.00177954800892621,-0.989035606384277,-0.147665843367577,-0.293477445840836,-0.588260591030121,-0.753538548946381,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.484891265630722,-0.532546639442444,-0.693739652633667,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.189485311508179,-0.917847871780396,-0.348784238100052,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.189485311508179,-0.917847871780396,-0.348784238100052,0.0956828519701958,-0.989283084869385,-0.110289245843887,-0.0341612100601196,-0.997105717658997,-0.0679208040237427,-0.148220360279083,-0.921375274658203,-0.359302520751953,-0.237651973962784,-0.919815480709076,-0.312187314033508,-0.0341612100601196,-0.997105717658997,-0.0679208040237427,-0.0472629778087139,-0.991491556167603,-0.121288307011127,-0.51224148273468,-0.465901702642441,-0.721487522125244,-0.441990077495575,-0.315394371747971,-0.839744746685028,-0.0529216341674328,-0.859144508838654,-0.508989214897156,-0.189485311508179,-0.917847871780396,-0.348784238100052,-0.441990077495575,-0.315394371747971,-0.839744746685028, +-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.298893600702286,-0.752048194408417,-0.587440311908722,-0.0529216341674328,-0.859144508838654,-0.508989214897156,-0.0529216341674328,-0.859144508838654,-0.508989214897156,-0.298893600702286,-0.752048194408417,-0.587440311908722,0.0678983926773071,-0.989783763885498,-0.12537083029747,0.313612312078476,-0.921463906764984,-0.229241237044334,-0.189485311508179,-0.917847871780396,-0.348784238100052,-0.0529216341674328,-0.859144508838654,-0.508989214897156,0.313612312078476,-0.921463906764984,-0.229241237044334,0.0956828519701958,-0.989283084869385,-0.110289245843887,-0.590206503868103,-0.137821972370148,-0.795400202274323,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.298893600702286,-0.752048194408417,-0.587440311908722,-0.54393857717514,-0.275434762239456,-0.792632639408112,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.120713695883751,-0.988142728805542,-0.0948792919516563,-0.257713168859482,-0.965899109840393,0.0249539688229561,-0.298893600702286,-0.752048194408417,-0.587440311908722,-0.351407051086426,-0.786972999572754,-0.50713574886322,-0.257713168859482,-0.965899109840393,0.0249539688229561,0.0678983926773071,-0.989783763885498,-0.12537083029747,-0.250840663909912,-0.393049478530884,-0.884641766548157,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.205778196454048,-0.436761945486069,-0.875725030899048,-0.390914648771286,-0.485996723175049,-0.781660377979279,-0.227106317877769,-0.872373163700104,-0.432883024215698,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.227106317877769,-0.872373163700104,-0.432883024215698, +-0.0461204461753368,-0.99501895904541,-0.0883763059973717,-0.0443134233355522,-0.98900705575943,-0.141071781516075,-0.164921194314957,-0.808582901954651,-0.564796209335327,-0.12902145087719,-0.823124408721924,-0.553009688854218,-0.0443134233355522,-0.98900705575943,-0.141071781516075,-0.120713695883751,-0.988142728805542,-0.0948792919516563,-0.390914648771286,-0.485996723175049,-0.781660377979279,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.227106317877769,-0.872373163700104,-0.432883024215698,-0.565680384635925,-0.504596471786499,-0.652217924594879,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.209105551242828,-0.908803045749664,-0.361042737960815,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.209105551242828,-0.908803045749664,-0.361042737960815,0.10156561434269,-0.984396278858185,-0.143695771694183,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,-0.227106317877769,-0.872373163700104,-0.432883024215698,-0.284502625465393,-0.903364062309265,-0.320923179388046,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,-0.0461204461753368,-0.99501895904541,-0.0883763059973717,-0.563054025173187,-0.491341143846512,-0.664495408535004,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.0971696898341179,-0.844954967498779,-0.525936543941498,-0.209105551242828,-0.908803045749664,-0.361042737960815,-0.469719409942627,-0.395604521036148,-0.789215385913849,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.0971696898341179,-0.844954967498779,-0.525936543941498,-0.0971696898341179,-0.844954967498779,-0.525936543941498,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,0.201213121414185,-0.928679823875427,-0.311555653810501,-0.209105551242828,-0.908803045749664,-0.361042737960815,-0.0971696898341179,-0.844954967498779,-0.525936543941498, +0.201213121414185,-0.928679823875427,-0.311555653810501,0.10156561434269,-0.984396278858185,-0.143695771694183,-0.641366243362427,-0.378646582365036,-0.667290210723877,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.671680569648743,-0.636657536029816,-0.378830164670944,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.0731480121612549,-0.991634011268616,0.106354869902134,-0.192202672362328,-0.938989758491516,0.285230129957199,-0.259207725524902,-0.887166261672974,-0.381768792867661,-0.345021426677704,-0.937540650367737,-0.0444718413054943,-0.192202672362328,-0.938989758491516,0.285230129957199,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,-0.516206800937653,-0.739097595214844,-0.432741433382034,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.172992020845413,-0.950976848602295,-0.256352514028549,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.445766180753708,-0.75075089931488,-0.487509608268738,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.186638861894608,-0.949121177196503,-0.25364351272583,-0.172992020845413,-0.950976848602295,-0.256352514028549,-0.172992020845413,-0.950976848602295,-0.256352514028549,-0.186638861894608,-0.949121177196503,-0.25364351272583,0.0171226337552071,-0.995451927185059,-0.0937139689922333,0.0126966061070561,-0.99875146150589,-0.04831488057971,-0.236564412713051,-0.959277629852295,-0.154348731040955,-0.172992020845413,-0.950976848602295,-0.256352514028549,0.0126966061070561,-0.99875146150589,-0.04831488057971,-0.0731480121612549,-0.991634011268616,0.106354869902134,-0.46904182434082,-0.762338280677795,-0.44591498374939,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.210337847471237,-0.944559037685394,-0.252123653888702, +-0.186638861894608,-0.949121177196503,-0.25364351272583,-0.501468598842621,-0.760198473930359,-0.413070946931839,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.181695714592934,-0.908867359161377,-0.375428885221481,-0.210337847471237,-0.944559037685394,-0.252123653888702,-0.210337847471237,-0.944559037685394,-0.252123653888702,-0.181695714592934,-0.908867359161377,-0.375428885221481,0.0493056923151016,-0.954008221626282,-0.29569810628891,0.013718081638217,-0.990747809410095,-0.135020092129707,-0.186638861894608,-0.949121177196503,-0.25364351272583,-0.210337847471237,-0.944559037685394,-0.252123653888702,0.013718081638217,-0.990747809410095,-0.135020092129707,0.0171226337552071,-0.995451927185059,-0.0937139689922333,-0.455827116966248,-0.712483048439026,-0.533469438552856,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.116785109043121,-0.819804668426514,-0.560608148574829,-0.181695714592934,-0.908867359161377,-0.375428885221481,-0.377455621957779,-0.617065191268921,-0.690476477146149,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.149566903710365,-0.955002725124359,-0.256123691797256,-0.116785109043121,-0.819804668426514,-0.560608148574829,-0.116785109043121,-0.819804668426514,-0.560608148574829,-0.149566903710365,-0.955002725124359,-0.256123691797256,0.0403354056179523,-0.951967716217041,-0.303530186414719,0.0837500244379044,-0.852430880069733,-0.516088664531708,-0.181695714592934,-0.908867359161377,-0.375428885221481,-0.116785109043121,-0.819804668426514,-0.560608148574829,0.0837500244379044,-0.852430880069733,-0.516088664531708,0.0493056923151016,-0.954008221626282,-0.29569810628891,-0.632395803928375,-0.766316473484039,-0.113289542496204,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.126076266169548,-0.979454338550568,0.157397165894508,-0.149566903710365,-0.955002725124359,-0.256123691797256,-0.569497466087341,-0.75889527797699,0.315833330154419,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.126076266169548,-0.979454338550568,0.157397165894508, +-0.126076266169548,-0.979454338550568,0.157397165894508,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.0275773424655199,-0.99890410900116,0.037816233932972,-0.0362910628318787,-0.993932664394379,0.10383029282093,-0.149566903710365,-0.955002725124359,-0.256123691797256,-0.126076266169548,-0.979454338550568,0.157397165894508,-0.0362910628318787,-0.993932664394379,0.10383029282093,0.0403354056179523,-0.951967716217041,-0.303530186414719,-0.518105864524841,-0.85223799943924,0.0725028216838837,-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.464080035686493,-0.874045550823212,-0.143784910440445,-0.438970118761063,-0.852742969989777,-0.283080875873566,5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,0.0247502587735653,-0.998201429843903,-0.0546016432344913,0.00369529845193028,-0.999618351459503,-0.027375839650631,-0.0586080141365528,-0.996115922927856,0.0657118931412697,-0.0181503314524889,-0.999631226062775,-0.0201955959200859,0.00369529845193028,-0.999618351459503,-0.027375839650631,-0.0275773424655199,-0.99890410900116,0.037816233932972,-0.438970118761063,-0.852742969989777,-0.283080875873566,-0.393761098384857,-0.804321646690369,-0.444992929697037,0.0203423574566841,-0.988523900508881,-0.149688541889191,5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,-0.393761098384857,-0.804321646690369,-0.444992929697037,-0.277942091226578,-0.700304388999939,-0.65751188993454,0.0643943026661873,-0.942418813705444,-0.328177064657211,0.0203423574566841,-0.988523900508881,-0.149688541889191,0.0203423574566841,-0.988523900508881,-0.149688541889191,0.0643943026661873,-0.942418813705444,-0.328177064657211,0.0751078873872757,-0.957080245018005,-0.279922008514404,0.0403689481317997,-0.992588937282562,-0.114618979394436, +5.35123872396071e-05,-0.997606694698334,-0.0691445991396904,0.0203423574566841,-0.988523900508881,-0.149688541889191,0.0403689481317997,-0.992588937282562,-0.114618979394436,0.0247502587735653,-0.998201429843903,-0.0546016432344913,-0.277942091226578,-0.700304388999939,-0.65751188993454,-0.180045455694199,-0.541630566120148,-0.821108877658844,0.0873342081904411,-0.858424842357635,-0.505449652671814,0.0643943026661873,-0.942418813705444,-0.328177064657211,-0.180045455694199,-0.541630566120148,-0.821108877658844,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,0.0873342081904411,-0.858424842357635,-0.505449652671814,0.0873342081904411,-0.858424842357635,-0.505449652671814,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,0.0124122742563486,-0.997229933738708,-0.073337621986866,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0643943026661873,-0.942418813705444,-0.328177064657211,0.0873342081904411,-0.858424842357635,-0.505449652671814,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0751078873872757,-0.957080245018005,-0.279922008514404,-0.555440008640289,-0.7084881067276,-0.435351401567459,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.101934850215912,-0.90874171257019,0.40471950173378,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,-0.540575683116913,-0.663847267627716,0.516802370548248,-0.504982352256775,-0.84366911649704,0.182250425219536,0.00453799264505506,-0.995851039886475,0.0908845514059067,-0.101934850215912,-0.90874171257019,0.40471950173378,-0.101934850215912,-0.90874171257019,0.40471950173378,0.00453799264505506,-0.995851039886475,0.0908845514059067,-0.022691760212183,-0.998997628688812,0.0385861210525036,-0.0814460813999176,-0.926622152328491,0.367066740989685,-0.0329071171581745,-0.994598865509033,-0.0984386131167412,-0.101934850215912,-0.90874171257019,0.40471950173378,-0.0814460813999176,-0.926622152328491,0.367066740989685,0.0124122742563486,-0.997229933738708,-0.073337621986866,-0.504982352256775,-0.84366911649704,0.182250425219536, +-0.412525236606598,-0.908749580383301,-0.0632219761610031,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.00453799264505506,-0.995851039886475,0.0908845514059067,-0.412525236606598,-0.908749580383301,-0.0632219761610031,-0.350769490003586,-0.92918074131012,-0.116550117731094,0.0910874903202057,-0.99446564912796,-0.05235755443573,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.0910874903202057,-0.99446564912796,-0.05235755443573,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,0.00760405976325274,-0.9929518699646,-0.118274159729481,0.00453799264505506,-0.995851039886475,0.0908845514059067,0.0807784721255302,-0.994004189968109,-0.0736919417977333,0.00760405976325274,-0.9929518699646,-0.118274159729481,-0.022691760212183,-0.998997628688812,0.0385861210525036,-0.350769490003586,-0.92918074131012,-0.116550117731094,-0.346632838249207,-0.923425912857056,-0.164713159203529,0.06392852216959,-0.996860384941101,-0.0467163622379303,0.0910874903202057,-0.99446564912796,-0.05235755443573,-0.346632838249207,-0.923425912857056,-0.164713159203529,-0.343549638986588,-0.879240989685059,-0.330013662576675,0.0379289388656616,-0.984504699707031,-0.171207651495934,0.06392852216959,-0.996860384941101,-0.0467163622379303,0.06392852216959,-0.996860384941101,-0.0467163622379303,0.0379289388656616,-0.984504699707031,-0.171207651495934,0.00755613064393401,-0.988936245441437,-0.148148745298386,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,0.0910874903202057,-0.99446564912796,-0.05235755443573,0.06392852216959,-0.996860384941101,-0.0467163622379303,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,-0.343549638986588,-0.879240989685059,-0.330013662576675,-0.318461418151855,-0.806907653808594,-0.497476071119308,0.0182535592466593,-0.940808176994324,-0.338447719812393,0.0379289388656616,-0.984504699707031,-0.171207651495934,-0.318461418151855,-0.806907653808594,-0.497476071119308, +-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.101609289646149,-0.992553949356079,-0.0671730488538742,0.0182535592466593,-0.940808176994324,-0.338447719812393,0.0182535592466593,-0.940808176994324,-0.338447719812393,-0.101609289646149,-0.992553949356079,-0.0671730488538742,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,0.043247077614069,-0.950159430503845,-0.308750540018082,0.0379289388656616,-0.984504699707031,-0.171207651495934,0.0182535592466593,-0.940808176994324,-0.338447719812393,0.043247077614069,-0.950159430503845,-0.308750540018082,0.00755613064393401,-0.988936245441437,-0.148148745298386,-0.43657448887825,-0.888075530529022,-0.143959730863571,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.101609289646149,-0.992553949356079,-0.0671730488538742,-0.505522310733795,-0.81182861328125,0.292201071977615,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,-0.03765569627285,-0.998001635074615,-0.050741158425808,-0.114700071513653,-0.969065606594086,0.218530863523483,-0.101609289646149,-0.992553949356079,-0.0671730488538742,-0.189492359757423,-0.953523218631744,0.234277680516243,-0.114700071513653,-0.969065606594086,0.218530863523483,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,-0.497855007648468,-0.865358412265778,0.0574028715491295,-0.4206303358078,-0.889036595821381,-0.180787056684494,0.0281068701297045,-0.979772806167603,-0.198129341006279,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,-0.4206303358078,-0.889036595821381,-0.180787056684494,-0.387854129076004,-0.902869999408722,-0.185458943247795,0.056607574224472,-0.988347232341766,-0.141298979520798,0.0281068701297045,-0.979772806167603,-0.198129341006279,0.0281068701297045,-0.979772806167603,-0.198129341006279,0.056607574224472,-0.988347232341766,-0.141298979520798, +0.00206747278571129,-0.989448189735413,-0.144872218370438,0.0098766265437007,-0.975041091442108,-0.221804812550545,-0.0852530151605606,-0.996206104755402,-0.0174711812287569,0.0281068701297045,-0.979772806167603,-0.198129341006279,0.0098766265437007,-0.975041091442108,-0.221804812550545,-0.03765569627285,-0.998001635074615,-0.050741158425808,-0.387854129076004,-0.902869999408722,-0.185458943247795,-0.430399775505066,-0.883213877677917,-0.186250641942024,0.0085861636325717,-0.994784593582153,-0.101636379957199,0.056607574224472,-0.988347232341766,-0.141298979520798,-0.430399775505066,-0.883213877677917,-0.186250641942024,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.04545983299613,-0.968846440315247,-0.243454530835152,0.0085861636325717,-0.994784593582153,-0.101636379957199,0.0085861636325717,-0.994784593582153,-0.101636379957199,-0.04545983299613,-0.968846440315247,-0.243454530835152,0.00559763703495264,-0.97633022069931,-0.216213032603264,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.056607574224472,-0.988347232341766,-0.141298979520798,0.0085861636325717,-0.994784593582153,-0.101636379957199,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.00206747278571129,-0.989448189735413,-0.144872218370438,-0.456662118434906,-0.824868559837341,-0.333243936300278,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.0639651566743851,-0.914348006248474,-0.39984542131424,-0.04545983299613,-0.968846440315247,-0.243454530835152,-0.435126632452011,-0.765334010124207,-0.474266350269318,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.0639651566743851,-0.914348006248474,-0.39984542131424,-0.0639651566743851,-0.914348006248474,-0.39984542131424,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.00105106621049345,-0.990453124046326,-0.137845665216446,0.029085224494338,-0.923116743564606,-0.38341823220253,-0.04545983299613,-0.968846440315247,-0.243454530835152,-0.0639651566743851,-0.914348006248474,-0.39984542131424, +0.029085224494338,-0.923116743564606,-0.38341823220253,0.00559763703495264,-0.97633022069931,-0.216213032603264,-0.471472084522247,-0.862934231758118,-0.181820228695869,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.455736517906189,-0.870686531066895,0.184957534074783,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,-0.00837635528296232,-0.998803436756134,-0.0481827110052109,-0.0300086587667465,-0.991880595684052,0.123581223189831,-0.0981680378317833,-0.98356819152832,-0.151514634490013,-0.109165675938129,-0.983859241008759,0.141788333654404,-0.0300086587667465,-0.991880595684052,0.123581223189831,-0.00105106621049345,-0.990453124046326,-0.137845665216446,-0.45112133026123,-0.892450988292694,-0.00453744363039732,-0.408082395792007,-0.901757717132568,-0.142484843730927,0.0172660276293755,-0.990056991577148,-0.13960288465023,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,-0.408082395792007,-0.901757717132568,-0.142484843730927,-0.381489336490631,-0.919561326503754,-0.094196043908596,0.0526049174368382,-0.997182309627533,-0.0534800104796886,0.0172660276293755,-0.990056991577148,-0.13960288465023,0.0172660276293755,-0.990056991577148,-0.13960288465023,0.0526049174368382,-0.997182309627533,-0.0534800104796886,0.00336632318794727,-0.998307526111603,-0.0580575168132782,0.00344573124311864,-0.986906349658966,-0.161257728934288,-0.0531115308403969,-0.998233914375305,-0.0266102589666843,0.0172660276293755,-0.990056991577148,-0.13960288465023,0.00344573124311864,-0.986906349658966,-0.161257728934288,-0.00837635528296232,-0.998803436756134,-0.0481827110052109,-0.381489336490631,-0.919561326503754,-0.094196043908596,-0.424536168575287,-0.905021488666534,-0.0265562422573566, +0.0121517311781645,-0.997969150543213,0.0625293329358101,0.0526049174368382,-0.997182309627533,-0.0534800104796886,-0.424536168575287,-0.905021488666534,-0.0265562422573566,-0.49920243024826,-0.860129773616791,-0.10475566983223,-0.0600221194326878,-0.996929943561554,0.0502794049680233,0.0121517311781645,-0.997969150543213,0.0625293329358101,0.0121517311781645,-0.997969150543213,0.0625293329358101,-0.0600221194326878,-0.996929943561554,0.0502794049680233,-0.00253212242387235,-0.995971739292145,0.0896312743425369,-0.00500164367258549,-0.99667751789093,0.081295445561409,0.0526049174368382,-0.997182309627533,-0.0534800104796886,0.0121517311781645,-0.997969150543213,0.0625293329358101,-0.00500164367258549,-0.99667751789093,0.081295445561409,0.00336632318794727,-0.998307526111603,-0.0580575168132782,-0.49920243024826,-0.860129773616791,-0.10475566983223,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.121643021702766,-0.988742113113403,-0.0871318876743317,-0.0600221194326878,-0.996929943561554,0.0502794049680233,-0.536561071872711,-0.798954904079437,-0.271612495183945,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.129560530185699,-0.932362616062164,-0.337511450052261,-0.121643021702766,-0.988742113113403,-0.0871318876743317,-0.121643021702766,-0.988742113113403,-0.0871318876743317,-0.129560530185699,-0.932362616062164,-0.337511450052261,0.0501549690961838,-0.943022549152374,-0.328926771879196,0.00550123490393162,-0.999096095561981,-0.0421488173305988,-0.0600221194326878,-0.996929943561554,0.0502794049680233,-0.121643021702766,-0.988742113113403,-0.0871318876743317,0.00550123490393162,-0.999096095561981,-0.0421488173305988,-0.00253212242387235,-0.995971739292145,0.0896312743425369,-0.00177954800892621,-0.989035606384277,-0.147665843367577,0.0480367057025433,-0.932973802089691,0.356724232435226,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.0251823868602514,-0.993472933769226,-0.111252799630165,0.0480367057025433,-0.932973802089691,0.356724232435226,0.140509262681007,-0.389529824256897,0.910232782363892, +-0.230811730027199,-0.364695429801941,0.902066111564636,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.230811730027199,-0.364695429801941,0.902066111564636,-0.529483556747437,-0.324605464935303,0.783759117126465,-0.251147210597992,-0.919208228588104,0.303284019231796,-0.0206318106502295,-0.992974400520325,-0.116516247391701,-0.0251823868602514,-0.993472933769226,-0.111252799630165,-0.146053820848465,-0.90874183177948,0.390968918800354,-0.251147210597992,-0.919208228588104,0.303284019231796,0.361415475606918,-0.459209114313126,0.811483681201935,0.235168889164925,-0.38590133190155,0.892062604427338,0.0988612100481987,-0.915841400623322,0.389179885387421,0.153119534254074,-0.912576973438263,0.379153817892075,0.235168889164925,-0.38590133190155,0.892062604427338,0.140509262681007,-0.389529824256897,0.910232782363892,0.0480367057025433,-0.932973802089691,0.356724232435226,0.0988612100481987,-0.915841400623322,0.389179885387421,0.0988612100481987,-0.915841400623322,0.389179885387421,0.0480367057025433,-0.932973802089691,0.356724232435226,-0.00177954800892621,-0.989035606384277,-0.147665843367577,-0.0117815146222711,-0.987104535102844,-0.159642085433006,0.153119534254074,-0.912576973438263,0.379153817892075,0.0988612100481987,-0.915841400623322,0.389179885387421,-0.0117815146222711,-0.987104535102844,-0.159642085433006,-0.0472629778087139,-0.991491556167603,-0.121288307011127,0.803296148777008,-0.540965020656586,0.249142676591873,0.567689180374146,-0.54811817407608,0.614243924617767,0.250216901302338,-0.936324298381805,0.246350184082985,0.433293581008911,-0.899201214313507,0.0607756488025188,0.567689180374146,-0.54811817407608,0.614243924617767,0.361415475606918,-0.459209114313126,0.811483681201935,0.153119534254074,-0.912576973438263,0.379153817892075,0.250216901302338,-0.936324298381805,0.246350184082985,0.250216901302338,-0.936324298381805,0.246350184082985,0.153119534254074,-0.912576973438263,0.379153817892075,-0.0472629778087139,-0.991491556167603,-0.121288307011127, +-0.0341612100601196,-0.997105717658997,-0.0679208040237427,0.433293581008911,-0.899201214313507,0.0607756488025188,0.250216901302338,-0.936324298381805,0.246350184082985,-0.0341612100601196,-0.997105717658997,-0.0679208040237427,0.0956828519701958,-0.989283084869385,-0.110289245843887,0.611539423465729,-0.490914881229401,0.620501518249512,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.646414279937744,-0.755486845970154,-0.106715373694897,0.353388547897339,-0.89521998167038,0.271472990512848,0.907290458679199,-0.419409483671188,-0.0303269997239113,0.803296148777008,-0.540965020656586,0.249142676591873,0.433293581008911,-0.899201214313507,0.0607756488025188,0.646414279937744,-0.755486845970154,-0.106715373694897,0.646414279937744,-0.755486845970154,-0.106715373694897,0.433293581008911,-0.899201214313507,0.0607756488025188,0.0956828519701958,-0.989283084869385,-0.110289245843887,0.313612312078476,-0.921463906764984,-0.229241237044334,0.353388547897339,-0.89521998167038,0.271472990512848,0.646414279937744,-0.755486845970154,-0.106715373694897,0.313612312078476,-0.921463906764984,-0.229241237044334,0.0678983926773071,-0.989783763885498,-0.12537083029747,-0.0764050707221031,-0.417319446802139,0.905542194843292,-0.205286920070648,-0.331945270299911,0.920689761638641,-0.233915567398071,-0.770644068717957,0.592782616615295,-0.104496218264103,-0.86746084690094,0.486407518386841,-0.205286920070648,-0.331945270299911,0.920689761638641,0.611539423465729,-0.490914881229401,0.620501518249512,0.353388547897339,-0.89521998167038,0.271472990512848,-0.233915567398071,-0.770644068717957,0.592782616615295,-0.233915567398071,-0.770644068717957,0.592782616615295,0.353388547897339,-0.89521998167038,0.271472990512848,0.0678983926773071,-0.989783763885498,-0.12537083029747,-0.257713168859482,-0.965899109840393,0.0249539688229561,-0.104496218264103,-0.86746084690094,0.486407518386841,-0.233915567398071,-0.770644068717957,0.592782616615295,-0.257713168859482,-0.965899109840393,0.0249539688229561,-0.120713695883751,-0.988142728805542,-0.0948792919516563, +0.38191831111908,-0.534317016601563,0.754084825515747,0.152453944087029,-0.490097939968109,0.858231723308563,0.0531765222549438,-0.920053005218506,0.388168483972549,0.166441887617111,-0.929746627807617,0.328433185815811,0.152453944087029,-0.490097939968109,0.858231723308563,-0.0764050707221031,-0.417319446802139,0.905542194843292,-0.104496218264103,-0.86746084690094,0.486407518386841,0.0531765222549438,-0.920053005218506,0.388168483972549,0.0531765222549438,-0.920053005218506,0.388168483972549,-0.104496218264103,-0.86746084690094,0.486407518386841,-0.120713695883751,-0.988142728805542,-0.0948792919516563,-0.0443134233355522,-0.98900705575943,-0.141071781516075,0.166441887617111,-0.929746627807617,0.328433185815811,0.0531765222549438,-0.920053005218506,0.388168483972549,-0.0443134233355522,-0.98900705575943,-0.141071781516075,-0.0461204461753368,-0.99501895904541,-0.0883763059973717,0.768001198768616,-0.555274188518524,0.319131225347519,0.585544049739838,-0.560901701450348,0.585258364677429,0.282444894313812,-0.927330076694489,0.245527401566505,0.429459065198898,-0.899992346763611,0.0746902525424957,0.585544049739838,-0.560901701450348,0.585258364677429,0.38191831111908,-0.534317016601563,0.754084825515747,0.166441887617111,-0.929746627807617,0.328433185815811,0.282444894313812,-0.927330076694489,0.245527401566505,0.282444894313812,-0.927330076694489,0.245527401566505,0.166441887617111,-0.929746627807617,0.328433185815811,-0.0461204461753368,-0.99501895904541,-0.0883763059973717,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,0.429459065198898,-0.899992346763611,0.0746902525424957,0.282444894313812,-0.927330076694489,0.245527401566505,-0.0137280505150557,-0.998532176017761,-0.0523919761180878,0.10156561434269,-0.984396278858185,-0.143695771694183,0.279478907585144,-0.493038803339005,0.823895812034607,0.845774412155151,-0.527329385280609,0.0811747014522552,0.503634393215179,-0.85379034280777,-0.131887912750244,0.157121270895004,-0.91596657037735,0.369212865829468,0.845774412155151,-0.527329385280609,0.0811747014522552, +0.768001198768616,-0.555274188518524,0.319131225347519,0.429459065198898,-0.899992346763611,0.0746902525424957,0.503634393215179,-0.85379034280777,-0.131887912750244,0.503634393215179,-0.85379034280777,-0.131887912750244,0.429459065198898,-0.899992346763611,0.0746902525424957,0.10156561434269,-0.984396278858185,-0.143695771694183,0.201213121414185,-0.928679823875427,-0.311555653810501,0.157121270895004,-0.91596657037735,0.369212865829468,0.503634393215179,-0.85379034280777,-0.131887912750244,0.201213121414185,-0.928679823875427,-0.311555653810501,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,0.191228091716766,-0.571527898311615,0.797989845275879,-0.0991577431559563,-0.400916516780853,0.910732448101044,-0.12495057284832,-0.753560721874237,0.645394086837769,0.0609545223414898,-0.898445427417755,0.434833765029907,-0.0991577431559563,-0.400916516780853,0.910732448101044,0.279478907585144,-0.493038803339005,0.823895812034607,0.157121270895004,-0.91596657037735,0.369212865829468,-0.12495057284832,-0.753560721874237,0.645394086837769,-0.12495057284832,-0.753560721874237,0.645394086837769,0.157121270895004,-0.91596657037735,0.369212865829468,-0.0143016735091805,-0.999882876873016,-0.00545735703781247,-0.192202672362328,-0.938989758491516,0.285230129957199,0.0609545223414898,-0.898445427417755,0.434833765029907,-0.12495057284832,-0.753560721874237,0.645394086837769,-0.192202672362328,-0.938989758491516,0.285230129957199,-0.0731480121612549,-0.991634011268616,0.106354869902134,0.608965456485748,-0.694889307022095,0.382478654384613,0.462093532085419,-0.664122939109802,0.587716281414032,0.207492798566818,-0.953606426715851,0.218131944537163,0.251741111278534,-0.962956309318542,0.0966519936919212,0.462093532085419,-0.664122939109802,0.587716281414032,0.191228091716766,-0.571527898311615,0.797989845275879,0.0609545223414898,-0.898445427417755,0.434833765029907,0.207492798566818,-0.953606426715851,0.218131944537163,0.207492798566818,-0.953606426715851,0.218131944537163,0.0609545223414898,-0.898445427417755,0.434833765029907, +-0.0731480121612549,-0.991634011268616,0.106354869902134,0.0126966061070561,-0.99875146150589,-0.04831488057971,0.251741111278534,-0.962956309318542,0.0966519936919212,0.207492798566818,-0.953606426715851,0.218131944537163,0.0126966061070561,-0.99875146150589,-0.04831488057971,0.0171226337552071,-0.995451927185059,-0.0937139689922333,0.76520174741745,-0.598868787288666,-0.236267596483231,0.717230916023254,-0.68506932258606,0.12751404941082,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.337446063756943,-0.904584109783173,-0.260495007038116,0.717230916023254,-0.68506932258606,0.12751404941082,0.608965456485748,-0.694889307022095,0.382478654384613,0.251741111278534,-0.962956309318542,0.0966519936919212,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.251741111278534,-0.962956309318542,0.0966519936919212,0.0171226337552071,-0.995451927185059,-0.0937139689922333,0.013718081638217,-0.990747809410095,-0.135020092129707,0.337446063756943,-0.904584109783173,-0.260495007038116,0.285201579332352,-0.958135187625885,-0.0252395607531071,0.013718081638217,-0.990747809410095,-0.135020092129707,0.0493056923151016,-0.954008221626282,-0.29569810628891,0.584151804447174,-0.762029647827148,0.279423326253891,0.704367220401764,-0.478252232074738,-0.524539589881897,0.328925937414169,-0.795323073863983,-0.509184598922729,0.160632506012917,-0.950319290161133,-0.26662802696228,0.704367220401764,-0.478252232074738,-0.524539589881897,0.76520174741745,-0.598868787288666,-0.236267596483231,0.337446063756943,-0.904584109783173,-0.260495007038116,0.328925937414169,-0.795323073863983,-0.509184598922729,0.328925937414169,-0.795323073863983,-0.509184598922729,0.337446063756943,-0.904584109783173,-0.260495007038116,0.0493056923151016,-0.954008221626282,-0.29569810628891,0.0837500244379044,-0.852430880069733,-0.516088664531708,0.160632506012917,-0.950319290161133,-0.26662802696228,0.328925937414169,-0.795323073863983,-0.509184598922729,0.0837500244379044,-0.852430880069733,-0.516088664531708, +0.0403354056179523,-0.951967716217041,-0.303530186414719,0.362098813056946,-0.813945949077606,0.454286754131317,0.0978060141205788,-0.621664941310883,0.777152895927429,-0.0469919368624687,-0.964127540588379,0.261246681213379,-0.00799380801618099,-0.995872557163239,0.0904088094830513,0.0978060141205788,-0.621664941310883,0.777152895927429,0.584151804447174,-0.762029647827148,0.279423326253891,0.160632506012917,-0.950319290161133,-0.26662802696228,-0.0469919368624687,-0.964127540588379,0.261246681213379,-0.0469919368624687,-0.964127540588379,0.261246681213379,0.160632506012917,-0.950319290161133,-0.26662802696228,0.0403354056179523,-0.951967716217041,-0.303530186414719,-0.0362910628318787,-0.993932664394379,0.10383029282093,-0.00799380801618099,-0.995872557163239,0.0904088094830513,-0.0469919368624687,-0.964127540588379,0.261246681213379,-0.0362910628318787,-0.993932664394379,0.10383029282093,-0.0275773424655199,-0.99890410900116,0.037816233932972,0.488683670759201,-0.870462596416473,0.0590182170271873,0.487723380327225,-0.863978922367096,0.125165298581123,0.0210179127752781,-0.999302804470062,-0.0308566223829985,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.487723380327225,-0.863978922367096,0.125165298581123,0.362098813056946,-0.813945949077606,0.454286754131317,-0.00799380801618099,-0.995872557163239,0.0904088094830513,0.0210179127752781,-0.999302804470062,-0.0308566223829985,0.0210179127752781,-0.999302804470062,-0.0308566223829985,-0.00799380801618099,-0.995872557163239,0.0904088094830513,-0.0275773424655199,-0.99890410900116,0.037816233932972,0.00369529845193028,-0.999618351459503,-0.027375839650631,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.0210179127752781,-0.999302804470062,-0.0308566223829985,0.00369529845193028,-0.999618351459503,-0.027375839650631,0.0247502587735653,-0.998201429843903,-0.0546016432344913,0.629507541656494,-0.751857101917267,-0.196038767695427,0.543534517288208,-0.839118838310242,0.0212124735116959,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.112473338842392,-0.952884256839752,-0.281711399555206, +0.543534517288208,-0.839118838310242,0.0212124735116959,0.488683670759201,-0.870462596416473,0.0590182170271873,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.0297284331172705,-0.997561573982239,-0.0631438121199608,0.0247502587735653,-0.998201429843903,-0.0546016432344913,0.0403689481317997,-0.992588937282562,-0.114618979394436,0.112473338842392,-0.952884256839752,-0.281711399555206,0.0540615990757942,-0.991679191589355,-0.116830989718437,0.0403689481317997,-0.992588937282562,-0.114618979394436,0.0751078873872757,-0.957080245018005,-0.279922008514404,0.56140524148941,-0.760091602802277,0.327238112688065,0.649816811084747,-0.640547335147858,-0.409190863370895,0.153028205037117,-0.888061106204987,-0.43350875377655,0.0570840537548065,-0.997692048549652,-0.0367689579725266,0.649816811084747,-0.640547335147858,-0.409190863370895,0.629507541656494,-0.751857101917267,-0.196038767695427,0.112473338842392,-0.952884256839752,-0.281711399555206,0.153028205037117,-0.888061106204987,-0.43350875377655,0.153028205037117,-0.888061106204987,-0.43350875377655,0.112473338842392,-0.952884256839752,-0.281711399555206,0.0751078873872757,-0.957080245018005,-0.279922008514404,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0570840537548065,-0.997692048549652,-0.0367689579725266,0.153028205037117,-0.888061106204987,-0.43350875377655,0.0994902327656746,-0.898557543754578,-0.427429437637329,0.0124122742563486,-0.997229933738708,-0.073337621986866,0.290562391281128,-0.833357572555542,0.470200717449188,0.122852981090546,-0.580223500728607,0.805138409137726,-0.108503296971321,-0.891186833381653,0.440468996763229,-0.0732996761798859,-0.99484783411026,0.070036493241787,0.122852981090546,-0.580223500728607,0.805138409137726,0.56140524148941,-0.760091602802277,0.327238112688065,0.0570840537548065,-0.997692048549652,-0.0367689579725266,-0.108503296971321,-0.891186833381653,0.440468996763229,-0.108503296971321,-0.891186833381653,0.440468996763229, +0.0570840537548065,-0.997692048549652,-0.0367689579725266,0.0124122742563486,-0.997229933738708,-0.073337621986866,-0.0814460813999176,-0.926622152328491,0.367066740989685,-0.0732996761798859,-0.99484783411026,0.070036493241787,-0.108503296971321,-0.891186833381653,0.440468996763229,-0.0814460813999176,-0.926622152328491,0.367066740989685,-0.022691760212183,-0.998997628688812,0.0385861210525036,0.366073846817017,-0.928832650184631,0.0570956841111183,0.370780885219574,-0.91262024641037,0.172179386019707,-0.0668077543377876,-0.991173028945923,-0.114511594176292,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,0.370780885219574,-0.91262024641037,0.172179386019707,0.290562391281128,-0.833357572555542,0.470200717449188,-0.0732996761798859,-0.99484783411026,0.070036493241787,-0.0668077543377876,-0.991173028945923,-0.114511594176292,-0.0668077543377876,-0.991173028945923,-0.114511594176292,-0.0732996761798859,-0.99484783411026,0.070036493241787,-0.022691760212183,-0.998997628688812,0.0385861210525036,0.00760405976325274,-0.9929518699646,-0.118274159729481,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,-0.0668077543377876,-0.991173028945923,-0.114511594176292,0.00760405976325274,-0.9929518699646,-0.118274159729481,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,0.443840831518173,-0.869051337242126,-0.218529835343361,0.392117619514465,-0.919745564460754,-0.017663087695837,-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.00928663089871407,-0.983943402767181,-0.178238809108734,0.392117619514465,-0.919745564460754,-0.017663087695837,0.366073846817017,-0.928832650184631,0.0570956841111183,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.0844333916902542,-0.991845369338989,-0.0954659655690193,-0.00222160504199564,-0.997090637683868,-0.0761933401226997,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,-0.00928663089871407,-0.983943402767181,-0.178238809108734, +-0.0662837326526642,-0.995056867599487,-0.0739482790231705,-0.00877154432237148,-0.998902082443237,-0.0460179969668388,0.00755613064393401,-0.988936245441437,-0.148148745298386,0.365046739578247,-0.930285453796387,0.0361897274851799,0.430982202291489,-0.753182888031006,-0.496960610151291,0.0604671835899353,-0.931171476840973,-0.359532058238983,0.00737170409411192,-0.999630510807037,-0.0261652525514364,0.430982202291489,-0.753182888031006,-0.496960610151291,0.443840831518173,-0.869051337242126,-0.218529835343361,-0.00928663089871407,-0.983943402767181,-0.178238809108734,0.0604671835899353,-0.931171476840973,-0.359532058238983,0.0604671835899353,-0.931171476840973,-0.359532058238983,-0.00928663089871407,-0.983943402767181,-0.178238809108734,0.00755613064393401,-0.988936245441437,-0.148148745298386,0.043247077614069,-0.950159430503845,-0.308750540018082,0.00737170409411192,-0.999630510807037,-0.0261652525514364,0.0604671835899353,-0.931171476840973,-0.359532058238983,0.043247077614069,-0.950159430503845,-0.308750540018082,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,0.453211486339569,-0.875407874584198,0.168108060956001,0.249306723475456,-0.827130019664764,0.503688633441925,-0.0435243733227253,-0.962684154510498,0.267104417085648,0.0206603202968836,-0.99978643655777,-0.000510659127030522,0.249306723475456,-0.827130019664764,0.503688633441925,0.365046739578247,-0.930285453796387,0.0361897274851799,0.00737170409411192,-0.999630510807037,-0.0261652525514364,-0.0435243733227253,-0.962684154510498,0.267104417085648,-0.0435243733227253,-0.962684154510498,0.267104417085648,0.00737170409411192,-0.999630510807037,-0.0261652525514364,-0.0345561318099499,-0.998634874820709,-0.0391695573925972,-0.114700071513653,-0.969065606594086,0.218530863523483,0.0206603202968836,-0.99978643655777,-0.000510659127030522,-0.0435243733227253,-0.962684154510498,0.267104417085648,-0.114700071513653,-0.969065606594086,0.218530863523483,-0.03765569627285,-0.998001635074615,-0.050741158425808,0.427078545093536,-0.896062970161438,-0.121140316128731, +0.468710780143738,-0.873691916465759,-0.130278989672661,-0.000536129053216428,-0.980934262275696,-0.194338858127594,-0.049983486533165,-0.987056851387024,-0.152382746338844,0.468710780143738,-0.873691916465759,-0.130278989672661,0.453211486339569,-0.875407874584198,0.168108060956001,0.0206603202968836,-0.99978643655777,-0.000510659127030522,-0.000536129053216428,-0.980934262275696,-0.194338858127594,-0.000536129053216428,-0.980934262275696,-0.194338858127594,0.0206603202968836,-0.99978643655777,-0.000510659127030522,-0.03765569627285,-0.998001635074615,-0.050741158425808,0.0098766265437007,-0.975041091442108,-0.221804812550545,-0.049983486533165,-0.987056851387024,-0.152382746338844,-0.000536129053216428,-0.980934262275696,-0.194338858127594,0.0098766265437007,-0.975041091442108,-0.221804812550545,0.00206747278571129,-0.989448189735413,-0.144872218370438,0.536954879760742,-0.810872852802277,-0.232732996344566,0.474964082241058,-0.876463294029236,-0.0788748115301132,-0.0172914955765009,-0.994245886802673,-0.105717457830906,0.0649192854762077,-0.969464302062988,-0.236483111977577,0.474964082241058,-0.876463294029236,-0.0788748115301132,0.427078545093536,-0.896062970161438,-0.121140316128731,-0.049983486533165,-0.987056851387024,-0.152382746338844,-0.0172914955765009,-0.994245886802673,-0.105717457830906,-0.0172914955765009,-0.994245886802673,-0.105717457830906,-0.049983486533165,-0.987056851387024,-0.152382746338844,0.00206747278571129,-0.989448189735413,-0.144872218370438,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.0649192854762077,-0.969464302062988,-0.236483111977577,-0.0172914955765009,-0.994245886802673,-0.105717457830906,-0.00844025146216154,-0.996676683425903,-0.0810208097100258,0.00559763703495264,-0.97633022069931,-0.216213032603264,0.4815514087677,-0.87572968006134,0.0347205102443695,0.512325942516327,-0.744121968746185,-0.428724586963654,0.113678202033043,-0.908584356307983,-0.401935040950775,0.0829202979803085,-0.990111291408539,-0.113154113292694,0.512325942516327,-0.744121968746185,-0.428724586963654, +0.536954879760742,-0.810872852802277,-0.232732996344566,0.0649192854762077,-0.969464302062988,-0.236483111977577,0.113678202033043,-0.908584356307983,-0.401935040950775,0.113678202033043,-0.908584356307983,-0.401935040950775,0.0649192854762077,-0.969464302062988,-0.236483111977577,0.00559763703495264,-0.97633022069931,-0.216213032603264,0.029085224494338,-0.923116743564606,-0.38341823220253,0.0829202979803085,-0.990111291408539,-0.113154113292694,0.113678202033043,-0.908584356307983,-0.401935040950775,0.029085224494338,-0.923116743564606,-0.38341823220253,-0.00105106621049345,-0.990453124046326,-0.137845665216446,0.490228146314621,-0.860631465911865,0.137803331017494,0.415730476379395,-0.823940396308899,0.385085076093674,0.0521012395620346,-0.985487163066864,0.161556497216225,0.0471196658909321,-0.998813986778259,-0.0122599303722382,0.415730476379395,-0.823940396308899,0.385085076093674,0.4815514087677,-0.87572968006134,0.0347205102443695,0.0829202979803085,-0.990111291408539,-0.113154113292694,0.0521012395620346,-0.985487163066864,0.161556497216225,0.0521012395620346,-0.985487163066864,0.161556497216225,0.0829202979803085,-0.990111291408539,-0.113154113292694,-0.00105106621049345,-0.990453124046326,-0.137845665216446,-0.0300086587667465,-0.991880595684052,0.123581223189831,0.0471196658909321,-0.998813986778259,-0.0122599303722382,0.0521012395620346,-0.985487163066864,0.161556497216225,-0.0300086587667465,-0.991880595684052,0.123581223189831,-0.00837635528296232,-0.998803436756134,-0.0481827110052109,0.410441100597382,-0.911667168140411,-0.0200270190834999,0.456870555877686,-0.885862767696381,-0.0807245001196861,-0.0098716439679265,-0.98967045545578,-0.143020287156105,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,0.456870555877686,-0.885862767696381,-0.0807245001196861,0.490228146314621,-0.860631465911865,0.137803331017494,0.0471196658909321,-0.998813986778259,-0.0122599303722382,-0.0098716439679265,-0.98967045545578,-0.143020287156105,-0.0098716439679265,-0.98967045545578,-0.143020287156105,0.0471196658909321,-0.998813986778259,-0.0122599303722382, +-0.00837635528296232,-0.998803436756134,-0.0481827110052109,0.00344573124311864,-0.986906349658966,-0.161257728934288,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,-0.0098716439679265,-0.98967045545578,-0.143020287156105,0.00344573124311864,-0.986906349658966,-0.161257728934288,0.00336632318794727,-0.998307526111603,-0.0580575168132782,0.580079257488251,-0.802277624607086,-0.140921175479889,0.482958912849426,-0.87268078327179,0.0719649940729141,-0.0105320187285542,-0.998347282409668,0.0564947053790092,0.0762357041239738,-0.996555685997009,0.0326312221586704,0.482958912849426,-0.87268078327179,0.0719649940729141,0.410441100597382,-0.911667168140411,-0.0200270190834999,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,-0.0105320187285542,-0.998347282409668,0.0564947053790092,-0.0105320187285542,-0.998347282409668,0.0564947053790092,-0.0535036586225033,-0.996547818183899,-0.0634811371564865,0.00336632318794727,-0.998307526111603,-0.0580575168132782,-0.00500164367258549,-0.99667751789093,0.081295445561409,0.0762357041239738,-0.996555685997009,0.0326312221586704,-0.0105320187285542,-0.998347282409668,0.0564947053790092,-0.00500164367258549,-0.99667751789093,0.081295445561409,-0.00253212242387235,-0.995971739292145,0.0896312743425369,0.468589961528778,-0.584312975406647,-0.662572145462036,0.503361344337463,-0.706269264221191,-0.497806340456009,0.123752541840076,-0.980672538280487,-0.151547789573669,0.166902795433998,-0.897470593452454,-0.408276855945587,0.503361344337463,-0.706269264221191,-0.497806340456009,0.580079257488251,-0.802277624607086,-0.140921175479889,0.0762357041239738,-0.996555685997009,0.0326312221586704,0.123752541840076,-0.980672538280487,-0.151547789573669,0.123752541840076,-0.980672538280487,-0.151547789573669,0.0762357041239738,-0.996555685997009,0.0326312221586704,-0.00253212242387235,-0.995971739292145,0.0896312743425369,0.00550123490393162,-0.999096095561981,-0.0421488173305988,0.166902795433998,-0.897470593452454,-0.408276855945587,0.123752541840076,-0.980672538280487,-0.151547789573669, +0.00550123490393162,-0.999096095561981,-0.0421488173305988,0.0501549690961838,-0.943022549152374,-0.328926771879196,0.123330391943455,-0.0846439674496651,0.988749265670776,0.318349808454514,-0.0322053767740726,0.947426080703735,0.248251765966415,0.283825427293777,0.926182508468628,0.193692356348038,0.278895646333694,0.940585196018219,0.0267959255725145,-0.143305033445358,0.989315748214722,0.123330391943455,-0.0846439674496651,0.988749265670776,0.193692356348038,0.278895646333694,0.940585196018219,0.159134745597839,0.261926114559174,0.951877474784851,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.377540469169617,-0.0881210491061211,-0.921790599822998,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.32930600643158,0.157053649425507,-0.931070148944855,0.652966678142548,-0.116778150200844,0.748329758644104,0.594159483909607,0.165744379162788,0.7870854139328,0.536860227584839,0.192848414182663,0.821334719657898,0.680147051811218,-0.108317017555237,0.725029289722443,0.536860227584839,0.192848414182663,0.821334719657898,0.496302485466003,0.210021421313286,0.842362582683563,0.563454568386078,-0.125576511025429,0.816547274589539,0.680147051811218,-0.108317017555237,0.725029289722443,0.516118586063385,-0.17624568939209,0.83818793296814,0.462071448564529,0.223597913980484,0.858192265033722,0.446461707353592,0.228723227977753,0.865076661109924,0.550027906894684,-0.0980221107602119,0.829373836517334,0.446461707353592,0.228723227977753,0.865076661109924,0.424679905176163,0.229900926351547,0.875666916370392,0.478856712579727,-0.0499666966497898,0.876470029354095,0.550027906894684,-0.0980221107602119,0.829373836517334,0.516118586063385,-0.17624568939209,0.83818793296814,0.533222019672394,-0.0158655233681202,0.845826506614685,0.49786764383316,0.0360203832387924,0.866504609584808,0.469946771860123,-0.180950209498405,0.86394852399826, +0.49786764383316,0.0360203832387924,0.866504609584808,0.736564636230469,0.168809071183205,0.654962539672852,0.563454568386078,-0.125576511025429,0.816547274589539,0.469946771860123,-0.180950209498405,0.86394852399826,0.652966678142548,-0.116778150200844,0.748329758644104,0.652515828609467,0.131035268306732,0.746359705924988,0.421275079250336,0.123729176819324,0.898453235626221,0.628561198711395,-0.124893352389336,0.767666935920715,0.421275079250336,0.123729176819324,0.898453235626221,0.593208611011505,0.173852309584618,0.786052644252777,0.719675958156586,-0.128582119941711,0.682299971580505,0.628561198711395,-0.124893352389336,0.767666935920715,0.390245676040649,-0.0543134994804859,0.919107437133789,0.38748687505722,0.0573664493858814,0.920088648796082,0.296649903059006,0.0429628640413284,0.95401930809021,0.394273400306702,-0.0484939105808735,0.917712807655334,0.296649903059006,0.0429628640413284,0.95401930809021,0.432550311088562,0.0525393672287464,0.900077641010284,0.478856712579727,-0.0499666966497898,0.876470029354095,0.394273400306702,-0.0484939105808735,0.917712807655334,0.781822502613068,-0.163981661200523,0.601550996303558,0.790066003799438,0.0960155203938484,0.605455875396729,0.756154358386993,0.111662238836288,0.644796133041382,0.780074834823608,-0.154913365840912,0.606205582618713,0.756154358386993,0.111662238836288,0.644796133041382,0.712085843086243,0.130221232771873,0.689910233020782,0.719675958156586,-0.128582119941711,0.682299971580505,0.780074834823608,-0.154913365840912,0.606205582618713,0.390245676040649,-0.0543134994804859,0.919107437133789,0.388904482126236,0.223152533173561,0.893843531608582,0.378438830375671,0.238302662968636,0.894424855709076,0.407787322998047,-0.0665067508816719,0.910651624202728,0.378438830375671,0.238302662968636,0.894424855709076,0.363922715187073,0.25348636507988,0.896272778511047,0.374630957841873,-0.0767536237835884,0.923991620540619,0.407787322998047,-0.0665067508816719,0.910651624202728,0.781822502613068,-0.163981661200523,0.601550996303558,0.781828284263611,0.120814986526966,0.611676633358002, +0.803862869739532,0.172455474734306,0.569265842437744,0.787403047084808,-0.125650525093079,0.603496730327606,0.803862869739532,0.172455474734306,0.569265842437744,0.886453747749329,0.21589657664299,0.409375607967377,0.835085809230804,-0.0748017132282257,0.545010447502136,0.787403047084808,-0.125650525093079,0.603496730327606,0.386866927146912,-0.0979848951101303,0.916914939880371,0.374749928712845,0.128784492611885,0.918137788772583,0.369435369968414,0.142308920621872,0.918295085430145,0.351311326026917,-0.0980117097496986,0.931114375591278,0.369435369968414,0.142308920621872,0.918295085430145,0.470587104558945,0.114330269396305,0.87491512298584,0.374630957841873,-0.0767536237835884,0.923991620540619,0.351311326026917,-0.0980117097496986,0.931114375591278,0.905811905860901,-0.0550877153873444,0.420083284378052,0.888742685317993,0.0559654906392097,0.454977214336395,0.857895612716675,0.0743108317255974,0.508421897888184,0.893545269966125,-0.0518663749098778,0.445967197418213,0.857895612716675,0.0743108317255974,0.508421897888184,0.835683107376099,0.081412635743618,0.543144345283508,0.835085809230804,-0.0748017132282257,0.545010447502136,0.893545269966125,-0.0518663749098778,0.445967197418213,0.386866927146912,-0.0979848951101303,0.916914939880371,0.327736765146255,0.266692817211151,0.906346321105957,0.300130397081375,0.2756627202034,0.91319864988327,0.402198970317841,-0.0607786178588867,0.913532793521881,0.300130397081375,0.2756627202034,0.91319864988327,0.248251765966415,0.283825427293777,0.926182508468628,0.318349808454514,-0.0322053767740726,0.947426080703735,0.402198970317841,-0.0607786178588867,0.913532793521881,0.905811905860901,-0.0550877153873444,0.420083284378052,0.886452257633209,0.167524337768555,0.431437075138092,0.744976758956909,0.162133932113647,0.647087514400482,0.905886471271515,-0.073218360543251,0.417143672704697,0.744976758956909,0.162133932113647,0.647087514400482,0.76248973608017,0.213903322815895,0.610618352890015,0.926183640956879,-0.0844836086034775,0.367486596107483,0.905886471271515,-0.073218360543251,0.417143672704697, +0.890304565429688,-0.14252296090126,0.432487010955811,0.897544920444489,0.0651593953371048,0.436081796884537,0.916368842124939,0.0464496687054634,0.39763143658638,0.929051399230957,-0.111079953610897,0.352880716323853,0.916368842124939,0.0464496687054634,0.39763143658638,0.924684047698975,0.0345741249620914,0.379162460565567,0.926183640956879,-0.0844836086034775,0.367486596107483,0.929051399230957,-0.111079953610897,0.352880716323853,0.890304565429688,-0.14252296090126,0.432487010955811,0.899462103843689,0.070027768611908,0.431351244449615,0.907306492328644,0.0993173494935036,0.408571898937225,0.844384789466858,-0.145803675055504,0.515514731407166,0.907306492328644,0.0993173494935036,0.408571898937225,0.933897316455841,0.0937239080667496,0.345038771629333,0.840295255184174,-0.130078285932541,0.526292264461517,0.844384789466858,-0.145803675055504,0.515514731407166,0.87024199962616,-0.115240558981895,0.478955656290054,0.873294770717621,0.0614541955292225,0.483300536870956,0.856721937656403,0.069778248667717,0.51103663444519,0.856386959552765,-0.11795199662447,0.502681612968445,0.856721937656403,0.069778248667717,0.51103663444519,0.861620962619781,0.071912445127964,0.50243204832077,0.840295255184174,-0.130078285932541,0.526292264461517,0.856386959552765,-0.11795199662447,0.502681612968445,0.87024199962616,-0.115240558981895,0.478955656290054,0.848219990730286,0.0226736664772034,0.529158473014832,0.790543735027313,0.00239566946402192,0.612400949001312,0.88355153799057,-0.119876965880394,0.452731907367706,0.790543735027313,0.00239566946402192,0.612400949001312,0.825610280036926,0.0557929053902626,0.561475515365601,0.885731637477875,-0.117089197039604,0.449187576770782,0.88355153799057,-0.119876965880394,0.452731907367706,0.899008393287659,-0.0800047740340233,0.430561602115631,0.913209974765778,0.0730284675955772,0.400891989469528,0.907031059265137,0.0713262856006622,0.414978533983231,0.885454833507538,-0.10305217653513,0.453155487775803,0.907031059265137,0.0713262856006622,0.414978533983231,0.904150128364563,0.0649797022342682,0.422244161367416, +0.885731637477875,-0.117089197039604,0.449187576770782,0.885454833507538,-0.10305217653513,0.453155487775803,0.899008393287659,-0.0800047740340233,0.430561602115631,0.881765305995941,0.156583860516548,0.444939881563187,0.917985677719116,0.17777444422245,0.354539930820465,0.924243927001953,-0.0464271157979965,0.37896916270256,0.917985677719116,0.17777444422245,0.354539930820465,0.962637424468994,0.252006649971008,0.099105529487133,0.968400835990906,0.00266301538795233,0.249384731054306,0.924243927001953,-0.0464271157979965,0.37896916270256,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.98066383600235,0.0180061925202608,0.194869875907898,0.96678763628006,0.044914573431015,0.251603692770004,0.997656524181366,0.0230849012732506,0.064408503472805,0.96678763628006,0.044914573431015,0.251603692770004,0.944641470909119,0.0620442479848862,0.322184771299362,0.968400835990906,0.00266301538795233,0.249384731054306,0.997656524181366,0.0230849012732506,0.064408503472805,0.99975448846817,-0.0218620169907808,0.00359224551357329,0.980355262756348,0.185684055089951,-0.066519558429718,0.978713750839233,0.08892522752285,0.184964135289192,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.978713750839233,0.08892522752285,0.184964135289192,0.984749257564545,0.116362579166889,0.129339754581451,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.995320737361908,-0.0897152870893478,0.0358851328492165,0.935719668865204,-0.352570354938507,0.0110868783667684,0.996502101421356,-0.0562517680227757,0.0618011951446533,0.994035840034485,-0.0367925614118576,0.102660104632378,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.994035840034485,-0.0367925614118576,0.102660104632378,0.991952538490295,-0.0207040682435036,0.124906249344349,0.98868203163147,-0.14990958571434,-0.00590582983568311,0.968079447746277,-0.248846262693405,-0.0299605913460255,0.935719668865204,-0.352570354938507,0.0110868783667684,0.995797336101532,0.0686046779155731,0.0606710277497768,0.995731592178345,0.0808172449469566,0.0445774905383587,0.931723415851593,-0.352641671895981,0.0868064686655998, +0.995731592178345,0.0808172449469566,0.0445774905383587,0.997986316680908,0.0507214218378067,0.0380863137543201,0.939077377319336,-0.303965419530869,0.160432919859886,0.931723415851593,-0.352641671895981,0.0868064686655998,0.941215097904205,-0.228930488228798,0.248405158519745,0.985852181911469,-0.0375175699591637,0.163363993167877,0.988057315349579,-0.0398513898253441,0.148843824863434,0.942376792430878,-0.257297188043594,0.213832184672356,0.988057315349579,-0.0398513898253441,0.148843824863434,0.994425714015961,-0.0526079498231411,0.0913785547018051,0.939077377319336,-0.303965419530869,0.160432919859886,0.942376792430878,-0.257297188043594,0.213832184672356,0.941215097904205,-0.228930488228798,0.248405158519745,0.945305049419403,0.0100241769105196,0.326033502817154,0.885087072849274,-0.00465083261951804,0.465402364730835,0.956762909889221,-0.17374150454998,0.233278065919876,0.885087072849274,-0.00465083261951804,0.465402364730835,0.930400192737579,0.117982521653175,0.347038447856903,0.981098473072052,-0.0995443984866142,0.165941908955574,0.956762909889221,-0.17374150454998,0.233278065919876,0.998310029506683,-0.0115439323708415,0.056955486536026,0.998815894126892,-0.0185851864516735,0.0449580252170563,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.995074689388275,-0.0397914536297321,0.0907912701368332,0.998060882091522,-0.0204745754599571,0.0587807931005955,0.995745718479156,-0.0254032555967569,0.0885732024908066,0.981098473072052,-0.0995443984866142,0.165941908955574,0.995074689388275,-0.0397914536297321,0.0907912701368332,0.998310029506683,-0.0115439323708415,0.056955486536026,0.955672204494476,0.283672422170639,0.0788711979985237,0.962401151657104,0.27144655585289,0.0100412387400866,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.962401151657104,0.27144655585289,0.0100412387400866,0.976668894290924,0.212742060422897,-0.0293045789003372,0.998556017875671,-0.0141695337370038,0.051818061619997,0.9989413022995,-0.00600846344605088,0.0456095710396767,0.998219013214111,-0.0115689476951957,0.0585229098796844, +0.99767404794693,-0.00837523303925991,0.0676497146487236,0.997051596641541,-0.0295031256973743,0.0708350166678429,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.99767404794693,-0.00837523303925991,0.0676497146487236,0.998522818088531,-0.0132494457066059,0.0526931472122669,0.998556017875671,-0.0141695337370038,0.051818061619997,0.997051596641541,-0.0295031256973743,0.0708350166678429,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.896165788173676,-0.440985083580017,-0.049183439463377,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.896165788173676,-0.440985083580017,-0.049183439463377,-0.85393351316452,-0.520337402820587,0.00682715140283108,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.834451138973236,-0.550636053085327,-0.0221660751849413,-0.988854289054871,0.0709319487214088,-0.130904123187065,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.834451138973236,-0.550636053085327,-0.0221660751849413,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.873724460601807,-0.463758498430252,-0.146743357181549,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.794555902481079,-0.603073060512543,-0.0705948919057846,-0.846149146556854,-0.52516496181488,-0.0907380804419518,-0.873724460601807,-0.463758498430252,-0.146743357181549,-0.904236316680908,-0.397529244422913,-0.155971169471741,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.99641489982605,0.0495933890342712,0.0685418769717216,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.99641489982605,0.0495933890342712,0.0685418769717216, +-0.979649782180786,0.010231826454401,-0.200453445315361,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.929391801357269,-0.337436109781265,-0.149559155106544,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.941131293773651,-0.298753261566162,-0.158171966671944,-0.953531444072723,-0.249360293149948,-0.169106960296631,-0.972180247306824,-0.163501888513565,-0.167728036642075,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.96738189458847,0.111709415912628,-0.227361261844635,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.989677011966705,-0.0291791372001171,-0.14031383395195,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.993456184864044,-0.0716914087533951,-0.0889105051755905,-0.986372411251068,0.12964092195034,-0.101304687559605,-0.99009108543396,0.13273286819458,-0.0458431877195835,-0.998145222663879,0.0594503246247768,0.0131075279787183,-0.988257348537445,0.126139655709267,0.0862344056367874,-0.96406227350235,0.111413389444351,0.241186484694481,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.96406227350235,0.111413389444351,0.241186484694481,-0.978031694889069,0.152403831481934,0.142221853137016,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.999815583229065,-0.00773946568369865,0.0175726916640997,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.955233037471771,-0.211159124970436,-0.207223549485207, +-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.997798502445221,-0.0655685290694237,-0.00993597973138094,-0.993051409721375,-0.0982694029808044,-0.0647478252649307,-0.981060028076172,-0.0921078398823738,-0.170403808355331,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.928076803684235,0.215476781129837,-0.303715586662292,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.960917055606842,-0.0277466084808111,-0.27544230222702,-0.942162156105042,-0.189164578914642,-0.276671946048737,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.945482194423676,-0.0409146323800087,-0.32309365272522,-0.952433109283447,0.000634300173260272,-0.304747045040131,-0.955406188964844,-0.0742540583014488,-0.2858065366745,-0.942162156105042,-0.189164578914642,-0.276671946048737,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.989648222923279,-0.0582080446183681,0.131180763244629,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.789600312709808,-0.233621582388878,-0.567408561706543,-0.895905137062073,-0.252558320760727,-0.365470081567764,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.833562433719635,-0.232993811368942,-0.500886976718903, +-0.789600312709808,-0.233621582388878,-0.567408561706543,-0.712929606437683,-0.114627480506897,-0.691803336143494,-0.753795504570007,0.0121947741135955,-0.656995892524719,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.846312761306763,0.0379630923271179,-0.531331837177277,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.865944087505341,0.0650302693247795,-0.495895147323608,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.907367289066315,0.0639203116297722,-0.415450036525726,-0.912816226482391,0.0660681128501892,-0.402990847826004,-0.935745358467102,0.02143076620996,-0.352024644613266,-0.968595027923584,-0.0484783463180065,-0.243872076272964,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.980016767978668,-0.0480541102588177,0.193022772669792,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.966515839099884,-0.141397997736931,-0.214134886860847,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.884301245212555,-0.198095560073853,-0.422811299562454,-0.768754303455353,-0.143425017595291,-0.623254477977753,-0.767906248569489,-0.0610337033867836,-0.637647986412048,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.775463104248047,-0.0451733730733395,-0.629774749279022, +-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.775463104248047,-0.0451733730733395,-0.629774749279022,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.813219606876373,0.0077988738194108,-0.581904530525208,-0.88413417339325,-0.0739206969738007,-0.461348652839661,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.825587332248688,0.0286079067736864,-0.563548803329468,-0.823372781276703,0.0680852234363556,-0.563401877880096,-0.842622697353363,0.0310521814972162,-0.537608444690704,-0.88413417339325,-0.0739206969738007,-0.461348652839661,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.993578612804413,-0.112622663378716,0.0108418203890324,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.868790149688721,-0.212861493229866,-0.44709450006485,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.692480623722076,-0.268112570047379,-0.669765710830688,-0.469819903373718,-0.161557331681252,-0.867852747440338,-0.458660483360291,-0.0383821614086628,-0.887782275676727,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.528702199459076,0.02510073967278,-0.848436117172241,-0.52873283624649,-0.128427639603615,-0.839016079902649,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.528702199459076,0.02510073967278,-0.848436117172241, +-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.516912996768951,-0.207503288984299,-0.830507814884186,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.516912996768951,-0.207503288984299,-0.830507814884186,-0.560848295688629,-0.0379329957067966,-0.827049136161804,-0.576197803020477,0.0397196263074875,-0.816344499588013,-0.584325969219208,-0.0520949326455593,-0.809845268726349,-0.532957494258881,-0.147419512271881,-0.833200931549072,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.464114040136337,-0.191303879022598,-0.864870488643646,-0.696934223175049,-0.0761320441961288,-0.713082373142242,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.464114040136337,-0.191303879022598,-0.864870488643646,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.413306295871735,-0.204827979207039,-0.887256026268005,-0.372577011585236,-0.163704514503479,-0.913447916507721,-0.346694320440292,-0.0998286828398705,-0.932650625705719,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.369922190904617,-0.0936709493398666,-0.924328625202179,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.365253388881683,-0.024468295276165,-0.930586516857147,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.408545464277267,-0.047090120613575,-0.911522448062897,-0.377540469169617,-0.0881210491061211,-0.921790599822998, +-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.396100550889969,-0.0960882529616356,-0.91316556930542,-0.405465096235275,0.0111602265387774,-0.914042413234711,-0.408545464277267,-0.047090120613575,-0.911522448062897,0.130164593458176,0.193935751914978,0.97234058380127,0.18181961774826,0.253342509269714,0.950136423110962,-0.075246550142765,0.226132169365883,0.971185922622681,-0.208788350224495,0.164736926555634,0.963985979557037,0.18181961774826,0.253342509269714,0.950136423110962,0.312815517187119,0.00277976063080132,0.949809849262238,0.00693589961156249,-0.0466239675879478,0.998888373374939,-0.075246550142765,0.226132169365883,0.971185922622681,-0.075246550142765,0.226132169365883,0.971185922622681,0.00693589961156249,-0.0466239675879478,0.998888373374939,-0.145488753914833,-0.0377167239785194,0.98864072561264,-0.361380368471146,0.185899093747139,0.91369891166687,0.374749928712845,0.128784492611885,0.918137788772583,0.393130868673325,0.0616345219314098,0.917414486408234,0.240161299705505,0.313696622848511,0.918649554252625,0.30707859992981,0.373052805662155,0.875519514083862,0.393130868673325,0.0616345219314098,0.917414486408234,0.312815517187119,0.00277976063080132,0.949809849262238,0.18181961774826,0.253342509269714,0.950136423110962,0.240161299705505,0.313696622848511,0.918649554252625,0.38748687505722,0.0573664493858814,0.920088648796082,0.532116651535034,0.0695726945996284,0.843807816505432,0.83314460515976,0.381137043237686,0.400754988193512,0.459471136331558,0.24929216504097,0.852490365505219,0.532116651535034,0.0695726945996284,0.843807816505432,0.470587104558945,0.114330269396305,0.87491512298584,0.644027709960938,0.430548369884491,0.632342040538788,0.83314460515976,0.381137043237686,0.400754988193512,0.533222019672394,-0.0158655233681202,0.845826506614685,0.561170816421509,0.0272064451128244,0.827252805233002,0.395465910434723,0.355699986219406,0.846808254718781,0.472877681255341,0.383730292320251,0.793182075023651,0.561170816421509,0.0272064451128244,0.827252805233002,0.432550311088562,0.0525393672287464,0.900077641010284, +0.256486296653748,0.308012425899506,0.916156649589539,0.395465910434723,0.355699986219406,0.846808254718781,0.652515828609467,0.131035268306732,0.746359705924988,0.877351403236389,0.132231578230858,0.461269348859787,0.929288923740387,0.286769330501556,0.232777491211891,0.481602132320404,0.350094020366669,0.803426086902618,0.877351403236389,0.132231578230858,0.461269348859787,0.736564636230469,0.168809071183205,0.654962539672852,0.73822009563446,0.373730897903442,0.56156587600708,0.929288923740387,0.286769330501556,0.232777491211891,0.781828284263611,0.120814986526966,0.611676633358002,0.755213499069214,0.14074595272541,0.640189945697784,0.544649124145508,0.574899971485138,0.610612213611603,0.650332570075989,0.587092518806458,0.48206827044487,0.755213499069214,0.14074595272541,0.640189945697784,0.593208611011505,0.173852309584618,0.786052644252777,0.340378075838089,0.527010321617126,0.778718650341034,0.544649124145508,0.574899971485138,0.610612213611603,0.886452257633209,0.167524337768555,0.431437075138092,0.950080454349518,0.178385734558105,0.255979806184769,0.894462466239929,0.430661976337433,-0.120279639959335,0.711159825325012,0.402712434530258,0.576258957386017,0.950080454349518,0.178385734558105,0.255979806184769,0.886453747749329,0.21589657664299,0.409375607967377,0.826826453208923,0.543696463108063,0.144056633114815,0.894462466239929,0.430661976337433,-0.120279639959335,0.899462103843689,0.070027768611908,0.431351244449615,0.870147228240967,0.154020696878433,0.468104034662247,0.740909159183502,0.431098699569702,0.514982998371124,0.833997189998627,0.422427475452423,0.354969918727875,0.870147228240967,0.154020696878433,0.468104034662247,0.76248973608017,0.213903322815895,0.610618352890015,0.575747072696686,0.436208605766296,0.691547036170959,0.740909159183502,0.431098699569702,0.514982998371124,0.848219990730286,0.0226736664772034,0.529158473014832,0.932120323181152,0.0270342659205198,0.361138105392456,0.906783640384674,0.389494448900223,-0.161361962556839,0.703478813171387,0.332269787788391,0.628262877464294, +0.932120323181152,0.0270342659205198,0.361138105392456,0.933897316455841,0.0937239080667496,0.345038771629333,0.909256994724274,0.416135013103485,-0.00912798754870892,0.906783640384674,0.389494448900223,-0.161361962556839,0.881765305995941,0.156583860516548,0.444939881563187,0.850996136665344,0.111290536820889,0.513244569301605,0.722124993801117,0.413387537002563,0.554658651351929,0.802838861942291,0.432056188583374,0.410825103521347,0.850996136665344,0.111290536820889,0.513244569301605,0.825610280036926,0.0557929053902626,0.561475515365601,0.568896114826202,0.364665627479553,0.737140536308289,0.722124993801117,0.413387537002563,0.554658651351929,0.980355262756348,0.185684055089951,-0.066519558429718,0.937002420425415,0.241222590208054,-0.252662390470505,0.848064124584198,0.385227262973785,-0.36385041475296,0.866819143295288,0.469822436571121,0.167007490992546,0.937002420425415,0.241222590208054,-0.252662390470505,0.962637424468994,0.252006649971008,0.099105529487133,0.89900928735733,0.433892607688904,0.0593249090015888,0.848064124584198,0.385227262973785,-0.36385041475296,0.995797336101532,0.0686046779155731,0.0606710277497768,0.992181420326233,0.102621845901012,0.071026511490345,0.892504572868347,0.416275709867477,0.17363815009594,0.907636106014252,0.41373685002327,0.0708418563008308,0.992181420326233,0.102621845901012,0.071026511490345,0.984749257564545,0.116362579166889,0.129339754581451,0.830227434635162,0.431485265493393,0.352906316518784,0.892504572868347,0.416275709867477,0.17363815009594,0.945305049419403,0.0100241769105196,0.326033502817154,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.807442605495453,0.463743209838867,-0.364662319421768,0.837538182735443,0.464932531118393,0.286997497081757,0.996330618858337,-0.0289312563836575,0.0805493742227554,0.997986316680908,0.0507214218378067,0.0380863137543201,0.865681052207947,0.459593385457993,-0.198418900370598,0.807442605495453,0.463743209838867,-0.364662319421768,0.955672204494476,0.283672422170639,0.0788711979985237,0.953517556190491,0.236826956272125,0.186326041817665, +0.878183364868164,0.420036882162094,0.228829845786095,0.897985458374023,0.431995779275894,0.0836762264370918,0.953517556190491,0.236826956272125,0.186326041817665,0.930400192737579,0.117982521653175,0.347038447856903,0.801806926727295,0.384849905967712,0.457160919904709,0.878183364868164,0.420036882162094,0.228829845786095,0.999694764614105,0.0132730612531304,0.0208377800881863,0.993028283119202,0.112560428678989,-0.0349996797740459,0.877731323242188,0.359140127897263,-0.317184686660767,0.873127579689026,0.231439754366875,-0.429050087928772,0.993028283119202,0.112560428678989,-0.0349996797740459,0.976668894290924,0.212742060422897,-0.0293045789003372,0.896420896053314,0.419392853975296,-0.143315359950066,0.877731323242188,0.359140127897263,-0.317184686660767,-0.967454671859741,0.0732878819108009,-0.242198765277863,-0.988072514533997,0.0419730506837368,-0.148158743977547,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.981917679309845,-0.015727212652564,-0.188653975725174,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.919324994087219,0.0491555221378803,-0.3904168009758,-0.99235987663269,0.0720079839229584,0.100183680653572,-0.996079683303833,0.0883968695998192,0.00332784792408347,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.994863569736481,0.0825993195176125,-0.0585142411291599,-0.993067026138306,0.097794309258461,-0.0652225092053413,-0.990519165992737,0.0871580839157104,-0.106184914708138,-0.990622639656067,0.0857216641306877,-0.106388725340366,-0.994863569736481,0.0825993195176125,-0.0585142411291599,-0.930445969104767,0.0440110899507999,-0.363776326179504,-0.944463968276978,0.0759987831115723,-0.319706052541733,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.921676218509674,0.024951945990324,-0.387156695127487,-0.979649782180786,0.010231826454401,-0.200453445315361,-0.982662558555603,0.0329523794353008,-0.182450905442238, +-0.890301585197449,0.0432293117046356,-0.453314930200577,-0.994655847549438,-0.00376402935944498,0.103177286684513,-0.988257348537445,0.126139655709267,0.0862344056367874,-0.989424645900726,0.13632769882679,-0.0495329834520817,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.989424645900726,0.13632769882679,-0.0495329834520817,-0.980603218078613,0.130143195390701,-0.146561041474342,-0.987855613231659,0.0212456360459328,-0.153915420174599,-0.997064530849457,0.0124925337731838,-0.0755390003323555,-0.928490459918976,0.121483273804188,-0.35092356801033,-0.944039225578308,0.193798303604126,-0.266893267631531,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.976440906524658,0.162328645586967,-0.142171502113342,-0.978031694889069,0.152403831481934,0.142221853137016,-0.999348759651184,-0.00946656428277493,-0.0348215848207474,-0.925730407238007,0.0760414004325867,-0.370460391044617,-0.940809786319733,0.0375782065093517,0.336845308542252,-0.994940161705017,0.0259306225925684,0.0970646515488625,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.990028917789459,0.121010839939117,-0.0721045359969139,-0.953773558139801,0.190707266330719,-0.232264220714569,-0.984753251075745,0.0860690921545029,-0.151171967387199,-0.996958076953888,0.0541062504053116,0.0561003684997559,-0.54768431186676,0.0530205518007278,-0.835003435611725,-0.655582427978516,0.0419598557054996,-0.753956854343414,-0.459797859191895,0.018549919128418,-0.887829899787903,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.459797859191895,0.018549919128418,-0.887829899787903,-0.819369375705719,-0.0678077042102814,-0.569241583347321,-0.791759848594666,-0.00583241786807775,-0.610804617404938,-0.288407862186432,0.0432291924953461,-0.956531345844269,-0.999887466430664,-0.00288677681237459,0.0147203272208571,-0.99612694978714,0.0115019315853715,-0.0871714130043983,-0.9540776014328,0.034807775169611,-0.297530263662338,-0.953178584575653,0.0196772385388613,-0.301767021417618, +-0.9540776014328,0.034807775169611,-0.297530263662338,-0.913321733474731,0.0418240651488304,-0.405085474252701,-0.8984015583992,0.0240922067314386,-0.438513815402985,-0.953178584575653,0.0196772385388613,-0.301767021417618,-0.651975214481354,-0.0200376864522696,-0.757975518703461,-0.671128153800964,-0.0516944564878941,-0.739536881446838,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.55042564868927,-0.0851246789097786,-0.830533087253571,-0.976705431938171,-0.0967585891485214,-0.191531389951706,-0.99353951215744,-0.0590934678912163,-0.0968871414661407,-0.411836415529251,-0.00252274144440889,-0.911254346370697,-0.948525488376617,-0.0372432954609394,-0.314503133296967,-0.956519305706024,-0.0665155872702599,-0.283983439207077,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.868817269802094,-0.0426873937249184,-0.49328938126564,-0.819220423698425,-0.0347364246845245,-0.572425842285156,-0.817128479480743,-0.0560996197164059,-0.573719322681427,-0.843938648700714,-0.0500537678599358,-0.534099459648132,-0.482569634914398,-0.0570135042071342,-0.874000012874603,-0.408203423023224,-0.107834354043007,-0.906499743461609,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.239162877202034,-0.0962158143520355,-0.966200590133667,-0.780414581298828,-0.131072476506233,-0.611369788646698,-0.859689652919769,-0.0147987818345428,-0.510602355003357,-0.287827223539352,-0.0220253169536591,-0.957429051399231,-0.555350840091705,0.00991550087928772,-0.831556916236877,-0.635306715965271,-0.0795277133584023,-0.768154144287109,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.442076206207275,-0.0473057590425014,-0.895729243755341,-0.591074407100677,-0.10303833335638,-0.800008833408356,-0.563690662384033,-0.12221285700798,-0.816894590854645,-0.514413774013519,-0.0855671167373657,-0.853262305259705,-0.442076206207275,-0.0473057590425014,-0.895729243755341, +-0.368305623531342,-0.0210159979760647,-0.92946720123291,-0.323313504457474,-0.0786324366927147,-0.943019151687622,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.190301671624184,-0.0551840402185917,-0.980173468589783,-0.404067784547806,-0.0721617117524147,-0.911878347396851,-0.511741399765015,0.0416731908917427,-0.858128190040588,-0.157882004976273,0.0144811663776636,-0.987351834774017,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.324477702379227,-0.0176618956029415,-0.945728480815887,-0.357103437185287,-0.0802195817232132,-0.930613696575165,-0.321028769016266,-0.0680929198861122,-0.944618463516235,-0.160825476050377,-0.0394620187580585,-0.986193656921387,-0.794555902481079,-0.603073060512543,-0.0705948919057846,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.791677534580231,-0.602891683578491,-0.0988350063562393,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.794930458068848,-0.604544401168823,-0.0511050149798393,-0.734352767467499,-0.672789335250854,-0.089891754090786,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.809855461120605,-0.580127537250519,-0.0870979130268097, +-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.957518398761749,-0.272905439138412,-0.0931721776723862,-0.993456184864044,-0.0716914087533951,-0.0889105051755905,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.809855461120605,-0.580127537250519,-0.0870979130268097,-0.837755262851715,-0.538500487804413,-0.0904611721634865,-0.977987229824066,-0.188971608877182,-0.08849086612463,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.955233037471771,-0.211159124970436,-0.207223549485207,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.94794899225235,-0.151411056518555,-0.280120521783829,-0.945482194423676,-0.0409146323800087,-0.32309365272522,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.830359280109406,-0.453587174415588,-0.323670029640198,-0.921770453453064,-0.167937323451042,-0.349480003118515,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.803597450256348,-0.412529677152634,-0.429011195898056,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.803597450256348,-0.412529677152634,-0.429011195898056, +-0.803597450256348,-0.412529677152634,-0.429011195898056,-0.885311245918274,-0.0154842901974916,-0.464740872383118,-0.907367289066315,0.0639203116297722,-0.415450036525726,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.803597450256348,-0.412529677152634,-0.429011195898056,-0.912757515907288,-0.047944288700819,-0.405678629875183,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.827723324298859,-0.130875468254089,-0.545660853385925,-0.825587332248688,0.0286079067736864,-0.563548803329468,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.632378220558167,-0.593695938587189,-0.497617155313492,-0.803334057331085,-0.115202806890011,-0.584279716014862,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.547148108482361,-0.186069324612617,-0.816092729568481,-0.560848295688629,-0.0379329957067966,-0.827049136161804,-0.516912996768951,-0.207503288984299,-0.830507814884186, +-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.379238814115524,-0.640079915523529,-0.668188333511353,-0.516912996768951,-0.207503288984299,-0.830507814884186,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.383011698722839,-0.260264128446579,-0.886320829391479,-0.396100550889969,-0.0960882529616356,-0.91316556930542,-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.281007587909698,-0.652862548828125,-0.703423917293549,-0.364188849925995,-0.256932556629181,-0.89518278837204,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.884034156799316,-0.42901548743248,-0.185551211237907,-0.841761827468872,-0.531200647354126,-0.0962443128228188,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.465315639972687,-0.659400343894958,-0.590484976768494,-0.813768744468689,-0.468339651823044,-0.344148755073547,-0.786707103252411,-0.578894376754761,-0.214413851499557,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.387130469083786,-0.918020367622375,-0.0858408212661743, +-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.716909289360046,-0.693197190761566,-0.0742879435420036,-0.826982319355011,-0.553858160972595,-0.0966505259275436,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.720473110675812,-0.692273855209351,-0.040934145450592,-0.870027899742126,-0.485162556171417,-0.0875714421272278,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.932733952999115,-0.342052400112152,-0.114050477743149,-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.791384994983673,-0.604464888572693,-0.091280072927475,-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.40404087305069,-0.913481473922729,-0.0479848235845566,-0.387130469083786,-0.918020367622375,-0.0858408212661743,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.915332555770874,-0.384867072105408,-0.118505820631981,-0.767210423946381,-0.635237872600555,-0.088662676513195,-0.744645118713379,-0.665304660797119,-0.053604606539011,-0.90020078420639,-0.423924297094345,-0.0996334031224251,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.461858808994293,-0.883243680000305,-0.081038162112236,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.461858808994293,-0.883243680000305,-0.081038162112236, +-0.449222654104233,-0.892100811004639,-0.0485304854810238,-0.809855461120605,-0.580127537250519,-0.0870979130268097,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.809855461120605,-0.580127537250519,-0.0870979130268097,-0.976474642753601,-0.207710906863213,-0.0579082630574703,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.811892926692963,-0.576339960098267,-0.0930706560611725,-0.980777442455292,-0.188919275999069,-0.0488377586007118,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.955233037471771,-0.211159124970436,-0.207223549485207,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.801699817180634,-0.544893801212311,-0.24569945037365,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.478388339281082,-0.85624635219574,-0.194901466369629,-0.477208137512207,-0.867172002792358,-0.142425864934921,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.967283666133881,-0.213407292962074,-0.137185230851173,-0.81236606836319,-0.548745393753052,-0.197331845760345,-0.823490500450134,-0.548914074897766,-0.143375962972641,-0.979048192501068,-0.184098303318024,-0.0870195105671883,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.758352398872375,-0.517087757587433,-0.39689028263092,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.466233730316162,-0.832415461540222,-0.299517303705215,-0.482412427663803,-0.839644491672516,-0.249550402164459,-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.758352398872375,-0.517087757587433,-0.39689028263092,-0.758352398872375,-0.517087757587433,-0.39689028263092, +-0.775608122348785,-0.513262808322906,-0.36741441488266,-0.904843389987946,-0.240754589438438,-0.351134717464447,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.758352398872375,-0.517087757587433,-0.39689028263092,-0.882317543029785,-0.26898917555809,-0.386213034391403,-0.833562433719635,-0.232993811368942,-0.500886976718903,-0.827831447124481,-0.056702796369791,-0.558103859424591,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.758541584014893,-0.496718615293503,-0.421764492988586,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.464732706546783,-0.814355134963989,-0.347633630037308,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.464732706546783,-0.814355134963989,-0.347633630037308,-0.465073943138123,-0.818901598453522,-0.336313188076019,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.789859652519226,-0.140432074666023,-0.596992909908295,-0.751114308834076,-0.497834354639053,-0.433575928211212,-0.754355370998383,-0.502295136451721,-0.422667294740677,-0.833562433719635,-0.232993811368942,-0.500886976718903,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.728222846984863,-0.546146273612976,-0.414023786783218,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.449418127536774,-0.816047668457031,-0.363441079854965,-0.469719231128693,-0.806499361991882,-0.359058022499084,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.728222846984863,-0.546146273612976,-0.414023786783218,-0.728222846984863,-0.546146273612976,-0.414023786783218,-0.754682302474976,-0.505909025669098,-0.417744725942612,-0.92939692735672,-0.123596116900444,-0.347772002220154,-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.728222846984863,-0.546146273612976,-0.414023786783218, +-0.924758911132813,-0.2042086571455,-0.321123003959656,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.799604415893555,-0.16319178044796,-0.577928364276886,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.617638647556305,-0.620322704315186,-0.483448266983032,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.414901077747345,-0.775506556034088,-0.475864142179489,-0.435968905687332,-0.794746994972229,-0.42226579785347,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.789120852947235,-0.20341169834137,-0.57957911491394,-0.650380551815033,-0.572834372520447,-0.498864710330963,-0.692166209220886,-0.559612631797791,-0.455784827470779,-0.862070202827454,-0.236965104937553,-0.447975993156433,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.358705908060074,-0.779241740703583,-0.513918459415436,-0.392733305692673,-0.772745490074158,-0.498623073101044,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.551311373710632,-0.64393812417984,-0.530470848083496,-0.792647361755371,-0.21970209479332,-0.568718791007996,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.502710580825806,-0.653932213783264,-0.565380096435547,-0.750594675540924,-0.331001996994019,-0.571878790855408,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.516969203948975,-0.229992166161537,-0.824527978897095,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.411990374326706,-0.648164451122284,-0.640427112579346, +-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.381403058767319,-0.675617694854736,-0.630929827690125,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.411990374326706,-0.648164451122284,-0.640427112579346,-0.411990374326706,-0.648164451122284,-0.640427112579346,-0.314218014478683,-0.742058753967285,-0.592128276824951,-0.333880662918091,-0.757515668869019,-0.560975670814514,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.513042032718658,-0.300453513860703,-0.804061889648438,-0.411990374326706,-0.648164451122284,-0.640427112579346,-0.454580157995224,-0.647291839122772,-0.611857950687408,-0.62535572052002,-0.36298018693924,-0.690779030323029,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.28141462802887,-0.71728241443634,-0.63742595911026,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.28141462802887,-0.71728241443634,-0.63742595911026,-0.297059953212738,-0.732854545116425,-0.612110733985901,-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.330431371927261,-0.654714047908783,-0.679826855659485,-0.469931989908218,-0.278438419103622,-0.837637186050415,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.315199434757233,-0.640319108963013,-0.700457453727722,-0.432747006416321,-0.292121946811676,-0.852874398231506,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.369658648967743,-0.295660138130188,-0.880873143672943,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.292156636714935,-0.664767622947693,-0.687552452087402,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.280767261981964,-0.693504512310028,-0.663491785526276,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.292156636714935,-0.664767622947693,-0.687552452087402, +-0.292156636714935,-0.664767622947693,-0.687552452087402,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.373212397098541,-0.292200565338135,-0.88052898645401,-0.292156636714935,-0.664767622947693,-0.687552452087402,-0.305377751588821,-0.637471973896027,-0.707371175289154,-0.400333911180496,-0.284253299236298,-0.871167540550232,-0.271199852228165,-0.698436796665192,-0.66229647397995,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.208506092429161,-0.746393322944641,-0.631998658180237,-0.268791705369949,-0.69108110666275,-0.670938014984131,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.208205580711365,-0.734824240207672,-0.64551055431366,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.108565412461758,-0.770942389965057,-0.627583682537079,-0.100648067891598,-0.644245445728302,-0.758167445659637,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.273985803127289,-0.66992199420929,-0.690026342868805,-0.100648067891598,-0.644245445728302,-0.758167445659637,-0.121647201478481,-0.689130485057831,-0.714353680610657,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.0654709786176682,-0.833355844020844,-0.548845648765564,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,-0.0812108442187309,-0.849200785160065,-0.521788001060486,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.0812108442187309,-0.849200785160065,-0.521788001060486,-0.225158423185349,-0.775384128093719,-0.58998566865921,-0.213849946856499,-0.761492013931274,-0.611880898475647, +-0.0654709786176682,-0.833355844020844,-0.548845648765564,-0.0741292238235474,-0.842019200325012,-0.534330010414124,-0.213849946856499,-0.761492013931274,-0.611880898475647,-0.208506092429161,-0.746393322944641,-0.631998658180237,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.0812108442187309,-0.849200785160065,-0.521788001060486,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-0.245702922344208,-0.800319671630859,-0.546917259693146,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.0812108442187309,-0.849200785160065,-0.521788001060486,-0.0867071226239204,-0.854553937911987,-0.512073576450348,-0.234513103961945,-0.787249684333801,-0.570299506187439,-0.225158423185349,-0.775384128093719,-0.58998566865921,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424,1.08920303318882e-05,-0.866985976696014,-0.498332589864731,-0.101407192647457,-0.861827790737152,-0.496960252523422,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.101407192647457,-0.861827790737152,-0.496960252523422,-0.280902534723282,-0.819617211818695,-0.499320924282074,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.0917278528213501,-0.858906328678131,-0.503851115703583,-0.0966742038726807,-0.861987054347992,-0.497626930475235,-0.262942254543304,-0.81358414888382,-0.518596529960632,-0.245702922344208,-0.800319671630859,-0.546917259693146, +1.08920303318882e-05,-0.866985976696014,-0.498332589864731,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.101407192647457,-0.861827790737152,-0.496960252523422,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338,-0.106370434165001,-0.905227482318878,-0.411398142576218,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.106370434165001,-0.905227482318878,-0.411398142576218,-0.298206895589828,-0.854700148105621,-0.424923866987228,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.101407192647457,-0.861827790737152,-0.496960252523422,-0.105496168136597,-0.874856412410736,-0.472754269838333,-0.292485803365707,-0.826980531215668,-0.480161845684052,-0.280902534723282,-0.819617211818695,-0.499320924282074,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.106370434165001,-0.905227482318878,-0.411398142576218,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,-0.103154316544533,-0.946393847465515,-0.306101262569427,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.103154316544533,-0.946393847465515,-0.306101262569427,-0.310237467288971,-0.891564309597015,-0.329947859048843,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.106370434165001,-0.905227482318878,-0.411398142576218,-0.104519903659821,-0.930544137954712,-0.350946307182312,-0.304428994655609,-0.879909038543701,-0.364805549383163,-0.298206895589828,-0.854700148105621,-0.424923866987228,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,1.04003063938762e-07,-0.961563885211945,-0.274581253528595,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.103154316544533,-0.946393847465515,-0.306101262569427, +1.04003063938762e-07,-0.961563885211945,-0.274581253528595,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,-0.106280244886875,-0.957817375659943,-0.267002701759338,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.106280244886875,-0.957817375659943,-0.267002701759338,-0.301055043935776,-0.904826879501343,-0.301088362932205,-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.103154316544533,-0.946393847465515,-0.306101262569427,-0.10384263843298,-0.955402195453644,-0.276447921991348,-0.308088064193726,-0.897331833839417,-0.316033720970154,-0.310237467288971,-0.891564309597015,-0.329947859048843,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.106280244886875,-0.957817375659943,-0.267002701759338,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,-0.115805432200432,-0.971457123756409,-0.207027181982994,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.115805432200432,-0.971457123756409,-0.207027181982994,-0.314095944166183,-0.921738564968109,-0.227467820048332,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.106280244886875,-0.957817375659943,-0.267002701759338,-0.110107213258743,-0.961679399013519,-0.251095801591873,-0.304800599813461,-0.911222040653229,-0.277075678110123,-0.301055043935776,-0.904826879501343,-0.301088362932205,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,-0.122806437313557,-0.979304194450378,-0.160877972841263,-0.115805432200432,-0.971457123756409,-0.207027181982994,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,0,-0.98962664604187,-0.14366252720356,-0.129820793867111,-0.98259824514389,-0.13284258544445,-0.122806437313557,-0.979304194450378,-0.160877972841263, +-0.122806437313557,-0.979304194450378,-0.160877972841263,-0.129820793867111,-0.98259824514389,-0.13284258544445,-0.31306254863739,-0.939959347248077,-0.135897815227509,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.115805432200432,-0.971457123756409,-0.207027181982994,-0.122806437313557,-0.979304194450378,-0.160877972841263,-0.316324561834335,-0.931656897068024,-0.178757473826408,-0.314095944166183,-0.921738564968109,-0.227467820048332,0,-0.98962664604187,-0.14366252720356,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.129820793867111,-0.98259824514389,-0.13284258544445,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,3.23932340506872e-06,-0.999818086624146,0.01907654479146,-0.135066285729408,-0.990572273731232,0.022878909483552,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.135066285729408,-0.990572273731232,0.022878909483552,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.129820793867111,-0.98259824514389,-0.13284258544445,-0.134429648518562,-0.988151252269745,-0.0740660056471825,-0.306377351284027,-0.948943555355072,-0.0750935897231102,-0.31306254863739,-0.939959347248077,-0.135897815227509,3.23932340506872e-06,-0.999818086624146,0.01907654479146,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.135066285729408,-0.990572273731232,0.022878909483552,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,2.66085771727376e-06,-0.990090310573578,-0.140432059764862,-0.138488098978996,-0.980667471885681,-0.138246849179268,-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.138488098978996,-0.980667471885681,-0.138246849179268,-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.26970186829567,-0.962894201278687,-0.00978067889809608,-0.135066285729408,-0.990572273731232,0.022878909483552, +-0.137500151991844,-0.990292608737946,0.0203537754714489,-0.26970186829567,-0.962894201278687,-0.00978067889809608,-0.289152294397354,-0.957248449325562,-0.00813976302742958,-0.289084285497665,-0.795809328556061,-0.532088220119476,-0.482303112745285,-0.789867460727692,-0.378804862499237,-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.417903810739517,-0.890013575553894,-0.182297110557556,-0.387130469083786,-0.918020367622375,-0.0858408212661743,-0.261481642723083,-0.95912629365921,-0.10818512737751,-0.282571941614151,-0.917040228843689,-0.281407445669174,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.260415613651276,-0.67682272195816,-0.688545346260071,-0.201225712895393,-0.70677387714386,-0.67821741104126,-0.206309303641319,-0.729423999786377,-0.652209341526031,-0.266504108905792,-0.69823557138443,-0.66441148519516,-0.178244784474373,-0.249184742569923,-0.951911568641663,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,-0.105169393122196,-0.61860316991806,-0.778633117675781,-0.178244784474373,-0.249184742569923,-0.951911568641663,-0.105169393122196,-0.61860316991806,-0.778633117675781,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.256911754608154,-0.252870112657547,-0.932766318321228,-0.130153819918633,0.193926721811295,0.972343742847443,-0.21282722055912,0.217102646827698,0.952665209770203,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.118009239435196,0.0901520848274231,0.988911807537079,-0.21282722055912,0.217102646827698,0.952665209770203,-0.130153819918633,0.193926721811295,0.972343742847443,-0.18182772397995,0.253345400094986,0.950134098529816,-0.240157574415207,0.313670128583908,0.918659508228302,-0.327520757913589,0.237563222646713,0.914491057395935,-0.21282722055912,0.217102646827698,0.952665209770203, +-0.240157574415207,0.313670128583908,0.918659508228302,-0.307092875242233,0.373005419969559,0.875534653663635,-0.21282722055912,0.217102646827698,0.952665209770203,-0.327520757913589,0.237563222646713,0.914491057395935,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.31958857178688,0.27969753742218,0.905335545539856,-0.608430445194244,0.361553758382797,0.706463932991028,-0.616879999637604,0.14482307434082,0.773618340492249,-0.266136586666107,0.0749970376491547,0.961013376712799,-0.608430445194244,0.361553758382797,0.706463932991028,-0.31958857178688,0.27969753742218,0.905335545539856,-0.340317577123642,0.527058899402618,0.778712213039398,-0.544596552848816,0.574981093406677,0.610582768917084,-0.745732545852661,0.394616782665253,0.536806046962738,-0.608430445194244,0.361553758382797,0.706463932991028,-0.544596552848816,0.574981093406677,0.610582768917084,-0.650364398956299,0.58708518743515,0.482034385204315,-0.608430445194244,0.361553758382797,0.706463932991028,-0.745732545852661,0.394616782665253,0.536806046962738,-0.801203608512878,0.185595437884331,0.568882405757904,-0.616879999637604,0.14482307434082,0.773618340492249,-0.574783682823181,0.210681706666946,0.790719330310822,-0.779763996601105,0.252052277326584,0.57309490442276,-0.81740802526474,0.0793337896466255,0.570570111274719,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.779763996601105,0.252052277326584,0.57309490442276,-0.574783682823181,0.210681706666946,0.790719330310822,-0.568908989429474,0.364634901285172,0.737145841121674,-0.722085058689117,0.413335591554642,0.554749369621277,-0.877142071723938,0.257609009742737,0.405289351940155,-0.779763996601105,0.252052277326584,0.57309490442276,-0.722085058689117,0.413335591554642,0.554749369621277,-0.802801370620728,0.432132750749588,0.410817712545395,-0.779763996601105,0.252052277326584,0.57309490442276,-0.877142071723938,0.257609009742737,0.405289351940155,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.81740802526474,0.0793337896466255,0.570570111274719, +-0.930492401123047,0.117642223834991,0.346906840801239,-0.801896631717682,0.384813547134399,0.457034409046173,-0.678678631782532,0.337745875120163,0.652167975902557,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.678678631782532,0.337745875120163,0.652167975902557,-0.801896631717682,0.384813547134399,0.457034409046173,-0.875247001647949,0.218632102012634,0.431442677974701,-0.753046095371246,0.176267579197884,0.633917450904846,-0.837620437145233,0.464953988790512,0.286722391843796,-0.678678631782532,0.337745875120163,0.652167975902557,-0.753046095371246,0.176267579197884,0.633917450904846,-0.922275245189667,0.238186061382294,0.304426968097687,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.678678631782532,0.337745875120163,0.652167975902557,-0.837620437145233,0.464953988790512,0.286722391843796,-0.945272922515869,0.00988496094942093,0.326130986213684,0.0763066858053207,-0.417371302843094,0.905526697635651,0.0503877177834511,-0.0637078359723091,0.996695697307587,-0.19186544418335,-0.0657510980963707,0.979216277599335,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.19186544418335,-0.0657510980963707,0.979216277599335,0.0503877177834511,-0.0637078359723091,0.996695697307587,-0.0287351664155722,0.0467967726290226,0.998490989208221,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.19186544418335,-0.0657510980963707,0.979216277599335,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.452850431203842,0.093405120074749,0.88668030500412,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.19186544418335,-0.0657510980963707,0.979216277599335,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.475046217441559,0.217101395130157,0.852759122848511,-0.496219664812088,0.210041984915733,0.842406392097473,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.469950377941132,-0.180933505296707,0.863950073719025,-0.475046217441559,0.217101395130157,0.852759122848511, +-0.469950377941132,-0.180933505296707,0.863950073719025,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.462157160043716,0.223579064011574,0.858151078224182,-0.321946293115616,0.303814649581909,0.896686851978302,-0.345715135335922,0.297554850578308,0.889911293983459,-0.347306936979294,0.260266453027725,0.900910317897797,-0.32773369550705,0.266680598258972,0.90635097026825,-0.345715135335922,0.297554850578308,0.889911293983459,-0.361728072166443,0.291893810033798,0.885409951210022,-0.363866746425629,0.253485023975372,0.896295845508575,-0.347306936979294,0.260266453027725,0.900910317897797,-0.362244516611099,-0.81382018327713,0.454395741224289,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.649826109409332,0.1081632822752,0.752347469329834,-0.910142183303833,0.150655776262283,0.385932385921478,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.910142183303833,0.150655776262283,0.385932385921478,-0.948900938034058,0.145196318626404,0.280187606811523,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.934294939041138,-0.0721054524183273,0.349132925271988,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.878404796123505,0.071886233985424,0.472480088472366,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.844495415687561,-0.145735219120979,0.515353083610535,-0.878404796123505,0.071886233985424,0.472480088472366,-0.844495415687561,-0.145735219120979,0.515353083610535,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.794099569320679,0.136489853262901,0.59226381778717,-0.821046948432922,0.122802093625069,0.557495772838593, +-0.81606912612915,0.0852678194642067,0.57162994146347,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.821046948432922,0.122802093625069,0.557495772838593,-0.837142586708069,0.113156691193581,0.535152196884155,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.81606912612915,0.0852678194642067,0.57162994146347,-0.453250050544739,-0.875390589237213,0.168094336986542,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.468763470649719,-0.873666763305664,-0.130258396267891,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.94854873418808,0.0162112768739462,0.316215753555298,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.468763470649719,-0.873666763305664,-0.130258396267891,-0.978391110897064,-0.204184472560883,-0.0325492992997169,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.427178382873535,-0.896017134189606,-0.121127761900425,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.93900191783905,-0.304208785295486,0.160413801670074,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.915169775485992,0.0964672192931175,0.391354590654373,-0.927937209606171,0.0873879417777061,0.362347781658173,-0.924784362316132,0.0702748745679855,0.373945415019989,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.927937209606171,0.0873879417777061,0.362347781658173,-0.947731673717499,0.0680974274873734,0.311717063188553,-0.944680571556091,0.0620129816234112,0.322076231241226, +-0.924784362316132,0.0702748745679855,0.373945415019989,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.998493790626526,0.0489683002233505,0.0247432254254818,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.976750731468201,0.21237450838089,-0.029242055490613,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.999700367450714,0.0132086621597409,0.0206089336425066,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.998473405838013,-0.0192288644611835,0.0517794266343117,-0.998943626880646,-0.0200503803789616,0.0413480922579765,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.997304975986481,-0.0175333619117737,0.0712407752871513,-0.998473405838013,-0.0192288644611835,0.0517794266343117,-0.140483602881432,-0.389575660228729,0.910217046737671,-0.127614736557007,-0.0326059870421886,0.991287708282471,-0.229529678821564,-0.0504601784050465,0.971992671489716, +-0.235184445977211,-0.385947704315186,0.892038583755493,-0.229529678821564,-0.0504601784050465,0.971992671489716,-0.127614736557007,-0.0326059870421886,0.991287708282471,-0.118009239435196,0.0901520848274231,0.988911807537079,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.229529678821564,-0.0504601784050465,0.971992671489716,-0.213985979557037,0.0890698730945587,0.972767472267151,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.235184445977211,-0.385947704315186,0.892038583755493,-0.229529678821564,-0.0504601784050465,0.971992671489716,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.803336977958679,-0.540861368179321,0.249235898256302,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.682653307914734,-0.155263811349869,0.714057147502899,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.611733138561249,-0.034547746181488,0.790309429168701,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.991234242916107,-0.131272450089455,0.0149073405191302,-0.682653307914734,-0.155263811349869,0.714057147502899,-0.611642420291901,-0.490592271089554,0.620655059814453,-0.770505547523499,0.238205224275589,0.591252505779266,-0.931054770946503,0.155320644378662,0.330170392990112,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.931054770946503,0.155320644378662,0.330170392990112,-0.770505547523499,0.238205224275589,0.591252505779266,-0.644018173217773,0.43055859208107,0.632344722747803,-0.833136200904846,0.381204217672348,0.400708734989166, +-0.548618793487549,0.0776971653103828,0.832454562187195,-0.931054770946503,0.155320644378662,0.330170392990112,-0.833136200904846,0.381204217672348,0.400708734989166,-0.459225565195084,0.249145716428757,0.852665364742279,-0.931054770946503,0.155320644378662,0.330170392990112,-0.548618793487549,0.0776971653103828,0.832454562187195,-0.611733138561249,-0.034547746181488,0.790309429168701,-0.988249838352203,-0.00729651469737291,0.152672752737999,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.23263393342495,-0.0961992964148521,0.967795014381409,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.23263393342495,-0.0961992964148521,0.967795014381409,-0.266136586666107,0.0749970376491547,0.961013376712799,-0.616879999637604,0.14482307434082,0.773618340492249,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.616879999637604,0.14482307434082,0.773618340492249,-0.801203608512878,0.185595437884331,0.568882405757904,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.599328756332397,-0.0668113604187965,0.797710001468658,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.704103589057922,-0.47858914732933,-0.524586081504822,-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.705813407897949,0.059078112244606,0.705929934978485,-0.704103589057922,-0.47858914732933,-0.524586081504822, +-0.881913423538208,-0.00640011578798294,-0.471367985010147,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.583945155143738,-0.762057662010193,0.279778659343719,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.826912581920624,0.543511629104614,0.14425890147686,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.763453900814056,0.207317247986794,0.611684262752533,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.710642516613007,0.402679920196533,0.576919555664063,-0.934404611587524,0.223979815840721,-0.276985496282578,-0.763453900814056,0.207317247986794,0.611684262752533,-0.705813407897949,0.059078112244606,0.705929934978485,-0.914937198162079,0.103173017501831,-0.390186190605164,-0.290535598993301,-0.833319902420044,0.470283985137939,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.370848000049591,-0.912586987018585,0.172211557626724,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.81740802526474,0.0793337896466255,0.570570111274719,-0.928280353546143,-0.170947059988976,0.330261677503586,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.81740802526474,0.0793337896466255,0.570570111274719,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.370848000049591,-0.912586987018585,0.172211557626724,-0.827365934848785,-0.13987047970295,0.543968498706818,-0.928280353546143,-0.170947059988976,0.330261677503586,-0.366151511669159,-0.928801298141479,0.0571073777973652,-0.443843692541122,-0.869031727313995,-0.218601703643799,-0.967403948307037,-0.19027204811573,-0.167111486196518, +-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.967403948307037,-0.19027204811573,-0.167111486196518,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.92610377073288,-0.292241811752319,0.238592609763145,-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.829449534416199,-0.148507758975029,-0.538478314876556,-0.92610377073288,-0.292241811752319,0.238592609763145,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.969876885414124,0.175330132246017,0.169110134243965,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.866828918457031,0.469911992549896,0.166704028844833,-0.887792527675629,0.174254506826401,-0.42598095536232,-0.969876885414124,0.175330132246017,0.169110134243965,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.871788144111633,0.00990531779825687,-0.489782869815826,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.753046095371246,0.176267579197884,0.633917450904846,-0.875247001647949,0.218632102012634,0.431442677974701,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.913995802402496,-0.209973439574242,0.347164064645767, +-0.765838265419006,-0.183012425899506,0.616440057754517,-0.945968389511108,0.047374714165926,0.320779234170914,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.765838265419006,-0.183012425899506,0.616440057754517,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.779641926288605,0.0128839667886496,0.626093029975891,-0.945968389511108,0.047374714165926,0.320779234170914,-0.922275245189667,0.238186061382294,0.304426968097687,-0.753046095371246,0.176267579197884,0.633917450904846,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.913995802402496,-0.209973439574242,0.347164064645767,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.456867456436157,-0.88587349653244,-0.0806247070431709,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.913995802402496,-0.209973439574242,0.347164064645767,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.456867456436157,-0.88587349653244,-0.0806247070431709,-0.97099906206131,-0.23480786383152,0.0450113527476788,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.410520315170288,-0.91163182258606,-0.0200147889554501,-0.918919920921326,0.0313222296535969,0.393198430538177,-0.875247001647949,0.218632102012634,0.431442677974701,-0.952640473842621,0.24386902153492,0.181670263409615,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.952640473842621,0.24386902153492,0.181670263409615,-0.875247001647949,0.218632102012634,0.431442677974701,-0.801896631717682,0.384813547134399,0.457034409046173,-0.878231346607208,0.419936746358871,0.228829219937325,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.952640473842621,0.24386902153492,0.181670263409615,-0.878231346607208,0.419936746358871,0.228829219937325,-0.897977590560913,0.43198174238205,0.0838346183300018, +-0.952640473842621,0.24386902153492,0.181670263409615,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.997260391712189,0.0318686366081238,0.0667558908462524,-0.992608726024628,0.0359335914254189,0.115916825830936,-0.768169522285461,-0.555073916912079,0.319074511528015,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.277549207210541,-0.10850915312767,0.954563856124878,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.255033791065216,-0.000451219500973821,0.966931998729706,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.973437607288361,-0.115263178944588,0.197822049260139,-0.277549207210541,-0.10850915312767,0.954563856124878,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.807332277297974,0.185303911566734,0.560247421264648,-0.958530068397522,0.116681046783924,0.260010808706284,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.958530068397522,0.116681046783924,0.260010808706284,-0.807332277297974,0.185303911566734,0.560247421264648,-0.738191425800323,0.373619168996811,0.561677932739258,-0.92929071187973,0.286719083786011,0.232832327485085,-0.333341926336288,0.129127606749535,0.933921456336975,-0.958530068397522,0.116681046783924,0.260010808706284,-0.92929071187973,0.286719083786011,0.232832327485085,-0.481347262859344,0.350065946578979,0.803591012954712,-0.958530068397522,0.116681046783924,0.260010808706284,-0.333341926336288,0.129127606749535,0.933921456336975,-0.255033791065216,-0.000451219500973821,0.966931998729706,-0.970385491847992,0.000744052580557764,0.241560652852058,-0.144239962100983,0.172613084316254,0.974371373653412, +-0.325286567211151,0.227613851428032,0.917813003063202,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.0287351664155722,0.0467967726290226,0.998490989208221,-0.325286567211151,0.227613851428032,0.917813003063202,-0.144239962100983,0.172613084316254,0.974371373653412,-0.256543427705765,0.307984679937363,0.916150033473969,-0.395541936159134,0.355704635381699,0.846770763397217,-0.462810188531876,0.255605936050415,0.84880656003952,-0.325286567211151,0.227613851428032,0.917813003063202,-0.395541936159134,0.355704635381699,0.846770763397217,-0.472881108522415,0.383732289075851,0.793179035186768,-0.325286567211151,0.227613851428032,0.917813003063202,-0.462810188531876,0.255605936050415,0.84880656003952,-0.452850431203842,0.093405120074749,0.88668030500412,-0.248613730072975,0.0781723111867905,0.965443134307861,-0.453460842370987,0.265468209981918,0.850823044776917,-0.472663879394531,0.257046222686768,0.842921197414398,-0.475046217441559,0.217101395130157,0.852759122848511,-0.462157160043716,0.223579064011574,0.858151078224182,-0.472663879394531,0.257046222686768,0.842921197414398,-0.490559697151184,0.246980980038643,0.835674345493317,-0.496219664812088,0.210041984915733,0.842406392097473,-0.475046217441559,0.217101395130157,0.852759122848511,-0.384622544050217,0.281148195266724,0.879216194152832,-0.398698180913925,0.278631985187531,0.873729884624481,-0.402046859264374,0.224277660250664,0.887726306915283,-0.388883531093597,0.223127603530884,0.893858790397644,-0.398698180913925,0.278631985187531,0.873729884624481,-0.415154159069061,0.276424914598465,0.86673891544342,-0.424677073955536,0.229889005422592,0.87567138671875,-0.402046859264374,0.224277660250664,0.887726306915283,-0.402046859264374,0.224277660250664,0.887726306915283,-0.424677073955536,0.229889005422592,0.87567138671875,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.402046859264374,0.224277660250664,0.887726306915283,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.390184640884399,-0.0543684512376785,0.919130027294159, +-0.388883531093597,0.223127603530884,0.893858790397644,-0.198022574186325,0.325926274061203,0.924423635005951,-0.243139833211899,0.320305675268173,0.915580272674561,-0.248255610466003,0.283828645944595,0.926180481910706,-0.193733528256416,0.278880715370178,0.940581142902374,-0.173236384987831,0.327362209558487,0.928882598876953,-0.198022574186325,0.325926274061203,0.924423635005951,-0.193733528256416,0.278880715370178,0.940581142902374,-0.15919853746891,0.261923760175705,0.951867520809174,0.145520091056824,-0.0377094373106956,0.988636374473572,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,5.15278725288226e-06,-0.195868358016014,0.980630159378052,-0.0268143340945244,-0.143278241157532,0.989319086074829,0.145520091056824,-0.0377094373106956,0.988636374473572,-0.0268143340945244,-0.143278241157532,0.989319086074829,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.00683469092473388,-0.0465485118329525,0.998892605304718,-0.347306936979294,0.260266453027725,0.900910317897797,-0.363866746425629,0.253485023975372,0.896295845508575,-0.374621093273163,-0.0767543241381645,0.923995614051819,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.347306936979294,0.260266453027725,0.900910317897797,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.32773369550705,0.266680598258972,0.90635097026825,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.649918794631958,-0.640278339385986,-0.409449756145477,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.80729615688324,0.0708622336387634,0.585876643657684, +-0.649918794631958,-0.640278339385986,-0.409449756145477,-0.954773962497711,-0.0258510150015354,-0.296206712722778,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.761776208877563,0.159230262041092,0.627967119216919,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.703601121902466,0.332484751939774,0.628012180328369,-0.960242629051208,0.199043408036232,-0.195743903517723,-0.761776208877563,0.159230262041092,0.627967119216919,-0.80729615688324,0.0708622336387634,0.585876643657684,-0.966590583324432,0.0895186960697174,-0.240185454487801,-0.652092397212982,0.274608939886093,0.706657886505127,-0.841024100780487,0.308994978666306,0.444072663784027,-0.910142183303833,0.150655776262283,0.385932385921478,-0.649826109409332,0.1081632822752,0.752347469329834,-0.841024100780487,0.308994978666306,0.444072663784027,-0.652092397212982,0.274608939886093,0.706657886505127,-0.575689733028412,0.43614661693573,0.691633939743042,-0.7409907579422,0.431041389703751,0.51491379737854,-0.898013353347778,0.300065010786057,0.321765452623367,-0.841024100780487,0.308994978666306,0.444072663784027,-0.7409907579422,0.431041389703751,0.51491379737854,-0.834043562412262,0.422363489866257,0.354937255382538,-0.841024100780487,0.308994978666306,0.444072663784027,-0.898013353347778,0.300065010786057,0.321765452623367,-0.948900938034058,0.145196318626404,0.280187606811523,-0.910142183303833,0.150655776262283,0.385932385921478,-0.891506910324097,0.0930751636624336,0.443342357873917, +-0.876680493354797,0.102949619293213,0.46992826461792,-0.878404796123505,0.071886233985424,0.472480088472366,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.876680493354797,0.102949619293213,0.46992826461792,-0.859586298465729,0.110959939658642,0.498797833919525,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.878404796123505,0.071886233985424,0.472480088472366,-0.895029008388519,0.0762939751148224,0.439434200525284,-0.917960584163666,0.060780368745327,0.391987293958664,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.917960584163666,0.060780368745327,0.391987293958664,-0.919467449188232,0.0634551271796227,0.388011753559113,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.915555000305176,0.0388064384460449,0.400316208600998,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.597299039363861,0.207671627402306,0.774665355682373,-0.665090262889862,0.18508842587471,0.723461925983429,-0.656582295894623,0.146541029214859,0.739881992340088,-0.594218373298645,0.165697261691093,0.787050783634186,-0.665090262889862,0.18508842587471,0.723461925983429,-0.715244710445404,0.167865425348282,0.678414463996887,-0.7120640873909,0.130230605602264,0.689930975437164,-0.656582295894623,0.146541029214859,0.739881992340088,-0.656582295894623,0.146541029214859,0.739881992340088,-0.7120640873909,0.130230605602264,0.689930975437164,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.656582295894623,0.146541029214859,0.739881992340088,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.652988374233246,-0.116873756051064,0.748295783996582, +-0.594218373298645,0.165697261691093,0.787050783634186,-0.81606912612915,0.0852678194642067,0.57162994146347,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.81606912612915,0.0852678194642067,0.57162994146347,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.781821191310883,-0.163932874798775,0.601565837860107,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.945968389511108,0.047374714165926,0.320779234170914,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.933475971221924,-0.112366281449795,-0.340582609176636,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.948151648044586,0.282218486070633,-0.146154284477234,-0.905428767204285,0.281856387853622,-0.317420333623886,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.905428767204285,0.281856387853622,-0.317420333623886,-0.948151648044586,0.282218486070633,-0.146154284477234,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.80746865272522,0.463813126087189,-0.364515721797943,-0.837620437145233,0.464953988790512,0.286722391843796,-0.922275245189667,0.238186061382294,0.304426968097687,-0.905428767204285,0.281856387853622,-0.317420333623886,-0.80746865272522,0.463813126087189,-0.364515721797943, +-0.905428767204285,0.281856387853622,-0.317420333623886,-0.922275245189667,0.238186061382294,0.304426968097687,-0.945968389511108,0.047374714165926,0.320779234170914,-0.947916686534882,0.0928497985005379,-0.304684937000275,-0.921152472496033,0.242753878235817,0.304218292236328,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.94854873418808,0.0162112768739462,0.316215753555298,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.921152472496033,0.242753878235817,0.304218292236328,-0.830115258693695,0.431543350219727,0.353099137544632,-0.89244532585144,0.416358262300491,0.173744335770607,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.89244532585144,0.416358262300491,0.173744335770607,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.963723957538605,0.255093723535538,0.0785065889358521,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.998501837253571,0.0545970499515533,0.00363230193033814,-0.998058378696442,-0.0307773221284151,0.0541491433978081,-0.998075485229492,-0.0335201993584633,0.0521695390343666,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.998075485229492,-0.0335201993584633,0.0521695390343666,-0.994130730628967,-0.0191587414592505,0.1064762622118,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.996764659881592,-0.0643105357885361,0.0482110902667046,-0.979690968990326,0.0236730091273785,0.199110999703407,-0.987460434436798,0.00815336406230927,0.157656028866768,-0.988256990909576,-0.00501752877607942,0.152718648314476,-0.980603277683258,0.0181206651031971,0.195163428783417,-0.987460434436798,0.00815336406230927,0.157656028866768,-0.990293800830841,0.000989494030363858,0.138986557722092,-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.988256990909576,-0.00501752877607942,0.152718648314476,-0.988256990909576,-0.00501752877607942,0.152718648314476, +-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.988256990909576,-0.00501752877607942,0.152718648314476,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.980603277683258,0.0181206651031971,0.195163428783417,-0.878066778182983,0.0984339118003845,0.468304842710495,-0.898106753826141,0.0906319916248322,0.430337131023407,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.898106753826141,0.0906319916248322,0.430337131023407,-0.904675185680389,0.0934287831187248,0.415732890367508,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.885592103004456,-0.117163017392159,0.449443340301514,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.895347952842712,0.0586822815239429,0.441484153270721,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.924784362316132,0.0702748745679855,0.373945415019989,-0.944680571556091,0.0620129816234112,0.322076231241226,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.924784362316132,0.0702748745679855,0.373945415019989,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.716123342514038,0.000295749516226351,-0.697973728179932,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.716123342514038,0.000295749516226351,-0.697973728179932, +-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.765893757343292,0.0334229059517384,-0.642097890377045,-0.961042463779449,0.0600536689162254,-0.269797772169113,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.833693504333496,0.185057669878006,-0.52029687166214,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.976750731468201,0.21237450838089,-0.029242055490613,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.96250981092453,0.271058112382889,0.010126169770956,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.946715712547302,0.243187338113785,-0.211161717772484,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.965866148471832,0.248177900910378,0.0742308050394058,-0.897977590560913,0.43198174238205,0.0838346183300018,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.967516124248505,0.252728492021561,-0.00638491241261363,-0.96250981092453,0.271058112382889,0.010126169770956,-0.900991976261139,0.433267772197723,-0.0221918448805809,-0.897977590560913,0.43198174238205,0.0838346183300018,-0.955795884132385,0.283257216215134,0.0788643434643745,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.997693419456482,-0.00725659215822816,0.067491702735424, +-0.998083710670471,-0.00846588052809238,0.0612973161041737,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.998523056507111,-0.0132260071113706,0.0526959337294102,-0.998372733592987,-0.0125734750181437,0.0556218586862087,-0.997693419456482,-0.00725659215822816,0.067491702735424,-0.99895966053009,-0.018380019813776,0.0417340844869614,-0.998372733592987,-0.0125734750181437,0.0556218586862087,-0.998523056507111,-0.0132260071113706,0.0526959337294102,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.99895966053009,-0.018380019813776,0.0417340844869614,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.998943626880646,-0.0200503803789616,0.0413480922579765,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.998523056507111,-0.0132260071113706,0.0526959337294102,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.999009191989899,-0.0174786653369665,0.0409294217824936,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.993946015834808,-0.0132164396345615,0.109071828424931,-0.997304975986481,-0.0175333619117737,0.0712407752871513,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.993946015834808,-0.0132164396345615,0.109071828424931,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.989061295986176,-0.00785514060407877,0.147295877337456,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.990232706069946,-0.0333727896213531,0.135370820760727,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.941263139247894,-0.228814080357552,0.248330056667328, +-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.953635692596436,0.236451253294945,0.186198204755783,-0.930492401123047,0.117642223834991,0.346906840801239,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.953635692596436,0.236451253294945,0.186198204755783,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.955795884132385,0.283257216215134,0.0788643434643745,2.14158717426471e-05,-0.35622963309288,0.934398531913757,2.41234738496132e-05,0.0307317469269037,0.999527633190155,0.587504923343658,0.00948319490998983,0.809165000915527,0.529604315757751,-0.324774593114853,0.783607542514801,0.587504923343658,0.00948319490998983,0.809165000915527,2.41234738496132e-05,0.0307317469269037,0.999527633190155,4.35391993960366e-05,0.0708878710865974,0.99748432636261,0.565484941005707,0.0699168667197227,0.821789741516113,0.529604315757751,-0.324774593114853,0.783607542514801,0.587504923343658,0.00948319490998983,0.809165000915527,0.282535374164581,-0.00665364880114794,0.959233820438385,0.230874493718147,-0.364731192588806,0.902035593986511,-0.321946293115616,0.303814649581909,0.896686851978302,-0.32773369550705,0.266680598258972,0.90635097026825,-0.300128549337387,0.2756507396698,0.913202881813049,-0.290655165910721,0.31161442399025,0.904663443565369,-0.300128549337387,0.2756507396698,0.913202881813049,-0.248255610466003,0.283828645944595,0.926180481910706,-0.243139833211899,0.320305675268173,0.915580272674561,-0.290655165910721,0.31161442399025,0.904663443565369,-0.393057554960251,0.061814084649086,0.917433798313141,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.393057554960251,0.061814084649086,0.917433798313141,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.374680399894714,0.128914713859558,0.91814786195755, +-0.000136224902234972,0.0868736505508423,0.996219277381897,0.496378749608994,0.117570020258427,0.860107839107513,0.565484941005707,0.0699168667197227,0.821789741516113,4.35391993960366e-05,0.0708878710865974,0.99748432636261,0.496378749608994,0.117570020258427,0.860107839107513,-0.000136224902234972,0.0868736505508423,0.996219277381897,0.000145562866237015,0.109267674386501,0.994012296199799,0.361446797847748,0.185934022068977,0.913665473461151,0.27520340681076,0.0847124978899956,0.957646548748016,0.565484941005707,0.0699168667197227,0.821789741516113,0.496378749608994,0.117570020258427,0.860107839107513,0.208869874477386,0.164753541350365,0.963965654373169,-0.384622544050217,0.281148195266724,0.879216194152832,-0.388883531093597,0.223127603530884,0.893858790397644,-0.378375172615051,0.238288059830666,0.89445573091507,-0.373177707195282,0.285913437604904,0.882605195045471,-0.378375172615051,0.238288059830666,0.89445573091507,-0.363866746425629,0.253485023975372,0.896295845508575,-0.361728072166443,0.291893810033798,0.885409951210022,-0.373177707195282,0.285913437604904,0.882605195045471,-0.770505547523499,0.238205224275589,0.591252505779266,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.516991257667542,0.24874085187912,0.819053113460541,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.873342335224152,0.0471641644835472,0.484818339347839,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.579438626766205,0.0800704956054688,0.811073064804077,-0.349202871322632,0.0877876579761505,0.932925879955292,-0.327520757913589,0.237563222646713,0.914491057395935,-0.516991257667542,0.24874085187912,0.819053113460541,-0.532146513462067,0.0696193277835846,0.843785047531128, +-0.470575630664825,0.114327363669872,0.87492161989212,-0.374621093273163,-0.0767543241381645,0.923995614051819,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.532146513462067,0.0696193277835846,0.843785047531128,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.390184640884399,-0.0543684512376785,0.919130027294159,-0.387588620185852,0.0575357675552368,0.920035183429718,-0.470575630664825,0.114327363669872,0.87492161989212,-0.644018173217773,0.43055859208107,0.632344722747803,-0.435861140489578,0.413384646177292,0.799461126327515,-0.369501143693924,0.142275765538216,0.918273627758026,-0.435861140489578,0.413384646177292,0.799461126327515,-0.644018173217773,0.43055859208107,0.632344722747803,-0.770505547523499,0.238205224275589,0.591252505779266,-0.516991257667542,0.24874085187912,0.819053113460541,-0.327520757913589,0.237563222646713,0.914491057395935,-0.307092875242233,0.373005419969559,0.875534653663635,-0.435861140489578,0.413384646177292,0.799461126327515,-0.516991257667542,0.24874085187912,0.819053113460541,-0.369501143693924,0.142275765538216,0.918273627758026,-0.435861140489578,0.413384646177292,0.799461126327515,-0.307092875242233,0.373005419969559,0.875534653663635,-0.374680399894714,0.128914713859558,0.91814786195755,-0.144239962100983,0.172613084316254,0.974371373653412,-0.0287351664155722,0.0467967726290226,0.998490989208221,0.0944667756557465,0.0135209951549768,0.995436251163483,0.00325483386404812,0.105867423117161,0.994374930858612,0.0944667756557465,0.0135209951549768,0.995436251163483,-0.0287351664155722,0.0467967726290226,0.998490989208221,0.0503877177834511,-0.0637078359723091,0.996695697307587,0.17330701649189,-0.0628296434879303,0.982861697673798,-0.682653307914734,-0.155263811349869,0.714057147502899,-0.611733138561249,-0.034547746181488,0.790309429168701,0.0944667756557465,0.0135209951549768,0.995436251163483,0.17330701649189,-0.0628296434879303,0.982861697673798,0.0944667756557465,0.0135209951549768,0.995436251163483,-0.611733138561249,-0.034547746181488,0.790309429168701, +-0.548618793487549,0.0776971653103828,0.832454562187195,0.00325483386404812,0.105867423117161,0.994374930858612,-0.453460842370987,0.265468209981918,0.850823044776917,-0.462157160043716,0.223579064011574,0.858151078224182,-0.446456104516983,0.228713467717171,0.865082144737244,-0.433207303285599,0.272210299968719,0.859204769134521,-0.446456104516983,0.228713467717171,0.865082144737244,-0.424677073955536,0.229889005422592,0.87567138671875,-0.415154159069061,0.276424914598465,0.86673891544342,-0.433207303285599,0.272210299968719,0.859204769134521,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.256543427705765,0.307984679937363,0.916150033473969,-0.0704345628619194,0.239811018109322,0.968261182308197,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.0704345628619194,0.239811018109322,0.968261182308197,-0.256543427705765,0.307984679937363,0.916150033473969,-0.144239962100983,0.172613084316254,0.974371373653412,0.00325483386404812,0.105867423117161,0.994374930858612,-0.548618793487549,0.0776971653103828,0.832454562187195,-0.459225565195084,0.249145716428757,0.852665364742279,-0.0704345628619194,0.239811018109322,0.968261182308197,0.00325483386404812,0.105867423117161,0.994374930858612,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.0704345628619194,0.239811018109322,0.968261182308197,-0.459225565195084,0.249145716428757,0.852665364742279,-0.387588620185852,0.0575357675552368,0.920035183429718,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.597299039363861,0.207671627402306,0.774665355682373,-0.594218373298645,0.165697261691093,0.787050783634186,-0.536642730236053,0.192880928516388,0.821469128131866, +-0.527827739715576,0.2312301248312,0.817270219326019,-0.536642730236053,0.192880928516388,0.821469128131866,-0.496219664812088,0.210041984915733,0.842406392097473,-0.490559697151184,0.246980980038643,0.835674345493317,-0.527827739715576,0.2312301248312,0.817270219326019,-0.807332277297974,0.185303911566734,0.560247421264648,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.646524310112,0.07883071154356,0.758809626102448,-0.604842007160187,0.238733366131783,0.759718835353851,-0.646524310112,0.07883071154356,0.758809626102448,-0.859760105609894,0.0410221815109253,0.509047865867615,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.452850431203842,0.093405120074749,0.88668030500412,-0.646524310112,0.07883071154356,0.758809626102448,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.646524310112,0.07883071154356,0.758809626102448,-0.452850431203842,0.093405120074749,0.88668030500412,-0.462810188531876,0.255605936050415,0.84880656003952,-0.604842007160187,0.238733366131783,0.759718835353851,-0.736716389656067,0.168893858790398,0.654770076274872,-0.738191425800323,0.373619168996811,0.561677932739258,-0.56153929233551,0.395918190479279,0.726582705974579,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.56153929233551,0.395918190479279,0.726582705974579,-0.738191425800323,0.373619168996811,0.561677932739258,-0.807332277297974,0.185303911566734,0.560247421264648,-0.604842007160187,0.238733366131783,0.759718835353851,-0.462810188531876,0.255605936050415,0.84880656003952,-0.472881108522415,0.383732289075851,0.793179035186768,-0.56153929233551,0.395918190479279,0.726582705974579,-0.604842007160187,0.238733366131783,0.759718835353851,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.56153929233551,0.395918190479279,0.726582705974579,-0.472881108522415,0.383732289075851,0.793179035186768,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.877387881278992,0.131995260715485,0.461267381906509, +-0.736716389656067,0.168893858790398,0.654770076274872,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.877387881278992,0.131995260715485,0.461267381906509,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.652988374233246,-0.116873756051064,0.748295783996582,-0.652534902095795,0.131031826138496,0.746343612670898,-0.31958857178688,0.27969753742218,0.905335545539856,-0.266136586666107,0.0749970376491547,0.961013376712799,0.144674673676491,0.0121900094673038,0.989404141902924,0.109015822410583,0.147476926445961,0.983039259910583,0.144674673676491,0.0121900094673038,0.989404141902924,-0.266136586666107,0.0749970376491547,0.961013376712799,-0.23263393342495,-0.0961992964148521,0.967795014381409,0.141833782196045,-0.0881895050406456,0.985954225063324,-0.277549207210541,-0.10850915312767,0.954563856124878,-0.255033791065216,-0.000451219500973821,0.966931998729706,0.144674673676491,0.0121900094673038,0.989404141902924,0.141833782196045,-0.0881895050406456,0.985954225063324,0.144674673676491,0.0121900094673038,0.989404141902924,-0.255033791065216,-0.000451219500973821,0.966931998729706,-0.333341926336288,0.129127606749535,0.933921456336975,0.109015822410583,0.147476926445961,0.983039259910583,-0.794099569320679,0.136489853262901,0.59226381778717,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.756162881851196,0.111659251153469,0.644786775112152,-0.75704163312912,0.152379512786865,0.635349214076996,-0.756162881851196,0.111659251153469,0.644786775112152,-0.7120640873909,0.130230605602264,0.689930975437164,-0.715244710445404,0.167865425348282,0.678414463996887,-0.75704163312912,0.152379512786865,0.635349214076996,-0.755209267139435,0.140739098191261,0.640196442604065,-0.593219518661499,0.173843711614609,0.786046326160431,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.755209267139435,0.140739098191261,0.640196442604065,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.781821191310883,-0.163932874798775,0.601565837860107, +-0.781746685504913,0.12085734307766,0.611772418022156,-0.593219518661499,0.173843711614609,0.786046326160431,-0.340317577123642,0.527058899402618,0.778712213039398,0.000475413806270808,0.372147411108017,0.928173542022705,-0.42128998041153,0.123724490404129,0.898446977138519,0.000475413806270808,0.372147411108017,0.928173542022705,-0.340317577123642,0.527058899402618,0.778712213039398,-0.31958857178688,0.27969753742218,0.905335545539856,0.109015822410583,0.147476926445961,0.983039259910583,-0.333341926336288,0.129127606749535,0.933921456336975,-0.481347262859344,0.350065946578979,0.803591012954712,0.000475413806270808,0.372147411108017,0.928173542022705,0.109015822410583,0.147476926445961,0.983039259910583,-0.42128998041153,0.123724490404129,0.898446977138519,0.000475413806270808,0.372147411108017,0.928173542022705,-0.481347262859344,0.350065946578979,0.803591012954712,-0.652534902095795,0.131031826138496,0.746343612670898,-0.895029008388519,0.0762939751148224,0.439434200525284,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.857771813869476,0.074350006878376,0.508625090122223,-0.85942530632019,0.0993647873401642,0.501512587070465,-0.857771813869476,0.074350006878376,0.508625090122223,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.837142586708069,0.113156691193581,0.535152196884155,-0.85942530632019,0.0993647873401642,0.501512587070465,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.934427559375763,0.191264048218727,0.300438016653061,-0.858134806156158,0.383422195911407,0.341455906629562,-0.934427559375763,0.191264048218727,0.300438016653061,-0.983597636222839,0.156620666384697,-0.0894743353128433,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.9666867852211,-0.0154904099181294,0.255493193864822,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.801203608512878,0.185595437884331,0.568882405757904,-0.934427559375763,0.191264048218727,0.300438016653061,-0.9666867852211,-0.0154904099181294,0.255493193864822, +-0.934427559375763,0.191264048218727,0.300438016653061,-0.801203608512878,0.185595437884331,0.568882405757904,-0.745732545852661,0.394616782665253,0.536806046962738,-0.858134806156158,0.383422195911407,0.341455906629562,-0.950192093849182,0.178449869155884,0.25552025437355,-0.886572659015656,0.216122582554817,0.408998668193817,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.950192093849182,0.178449869155884,0.25552025437355,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.886231780052185,0.167720913887024,0.431813508272171,-0.886572659015656,0.216122582554817,0.408998668193817,-0.826912581920624,0.543511629104614,0.14425890147686,-0.737739503383636,0.581229150295258,0.343384653329849,-0.803810238838196,0.172660142183304,0.569278120994568,-0.737739503383636,0.581229150295258,0.343384653329849,-0.826912581920624,0.543511629104614,0.14425890147686,-0.945873498916626,0.322195678949356,0.0389003083109856,-0.858134806156158,0.383422195911407,0.341455906629562,-0.745732545852661,0.394616782665253,0.536806046962738,-0.650364398956299,0.58708518743515,0.482034385204315,-0.737739503383636,0.581229150295258,0.343384653329849,-0.858134806156158,0.383422195911407,0.341455906629562,-0.803810238838196,0.172660142183304,0.569278120994568,-0.737739503383636,0.581229150295258,0.343384653329849,-0.650364398956299,0.58708518743515,0.482034385204315,-0.781746685504913,0.12085734307766,0.611772418022156,-0.652092397212982,0.274608939886093,0.706657886505127,-0.649826109409332,0.1081632822752,0.752347469329834,-0.188060313463211,0.0258429832756519,0.981817424297333,-0.25284281373024,0.156451910734177,0.954773962497711,-0.188060313463211,0.0258429832756519,0.981817424297333,-0.649826109409332,0.1081632822752,0.752347469329834,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.705813407897949,0.059078112244606,0.705929934978485, +-0.188060313463211,0.0258429832756519,0.981817424297333,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.188060313463211,0.0258429832756519,0.981817424297333,-0.705813407897949,0.059078112244606,0.705929934978485,-0.763453900814056,0.207317247986794,0.611684262752533,-0.25284281373024,0.156451910734177,0.954773962497711,-0.891506910324097,0.0930751636624336,0.443342357873917,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.907294690608978,0.0782724991440773,0.413146078586578,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.919467449188232,0.0634551271796227,0.388011753559113,-0.907294690608978,0.0782724991440773,0.413146078586578,-0.762375354766846,0.213708147406578,0.610829532146454,-0.575689733028412,0.43614661693573,0.691633939743042,-0.331430584192276,0.358989834785461,0.872513592243195,-0.745248079299927,0.161823198199272,0.646852791309357,-0.331430584192276,0.358989834785461,0.872513592243195,-0.575689733028412,0.43614661693573,0.691633939743042,-0.652092397212982,0.274608939886093,0.706657886505127,-0.25284281373024,0.156451910734177,0.954773962497711,-0.763453900814056,0.207317247986794,0.611684262752533,-0.710642516613007,0.402679920196533,0.576919555664063,-0.331430584192276,0.358989834785461,0.872513592243195,-0.25284281373024,0.156451910734177,0.954773962497711,-0.745248079299927,0.161823198199272,0.646852791309357,-0.331430584192276,0.358989834785461,0.872513592243195,-0.710642516613007,0.402679920196533,0.576919555664063,-0.886231780052185,0.167720913887024,0.431813508272171,-0.870330512523651,0.153981164097786,0.467776238918304,-0.762375354766846,0.213708147406578,0.610829532146454,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.870330512523651,0.153981164097786,0.467776238918304,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.899417638778687,0.0698455348610878,0.431473612785339, +-0.878066778182983,0.0984339118003845,0.468304842710495,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.85583233833313,0.110657230019569,0.505278170108795,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.859586298465729,0.110959939658642,0.498797833919525,-0.85583233833313,0.110657230019569,0.505278170108795,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.970032870769501,0.130484730005264,0.204963251948357,-0.936971724033356,0.28233477473259,0.205842211842537,-0.970032870769501,0.130484730005264,0.204963251948357,-0.99237334728241,0.111369155347347,-0.0528385117650032,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.948900938034058,0.145196318626404,0.280187606811523,-0.970032870769501,0.130484730005264,0.204963251948357,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.970032870769501,0.130484730005264,0.204963251948357,-0.948900938034058,0.145196318626404,0.280187606811523,-0.898013353347778,0.300065010786057,0.321765452623367,-0.936971724033356,0.28233477473259,0.205842211842537,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.892426788806915,0.412409842014313,0.18300960958004,-0.907412171363831,0.0993990823626518,0.408317297697067,-0.892426788806915,0.412409842014313,0.18300960958004,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.96757835149765,0.252549171447754,-0.00334015185944736,-0.936971724033356,0.28233477473259,0.205842211842537,-0.898013353347778,0.300065010786057,0.321765452623367,-0.834043562412262,0.422363489866257,0.354937255382538,-0.892426788806915,0.412409842014313,0.18300960958004,-0.936971724033356,0.28233477473259,0.205842211842537,-0.907412171363831,0.0993990823626518,0.408317297697067, +-0.892426788806915,0.412409842014313,0.18300960958004,-0.834043562412262,0.422363489866257,0.354937255382538,-0.899417638778687,0.0698455348610878,0.431473612785339,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.574783682823181,0.210681706666946,0.790719330310822,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.335193157196045,0.135726362466812,0.932321786880493,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.568126320838928,0.0645484104752541,0.820405960083008,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.80729615688324,0.0708622336387634,0.585876643657684,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.302936315536499,0.0372595191001892,0.952282071113586,-0.80729615688324,0.0708622336387634,0.585876643657684,-0.761776208877563,0.159230262041092,0.627967119216919,-0.335193157196045,0.135726362466812,0.932321786880493,-0.915169775485992,0.0964672192931175,0.391354590654373,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.90853887796402,0.0972727388143539,0.40631902217865,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.904675185680389,0.0934287831187248,0.415732890367508,-0.90853887796402,0.0972727388143539,0.40631902217865,-0.850952863693237,0.11118795722723,0.513338506221771,-0.825584471225739,0.0556592233479023,0.561526894569397, +-0.885592103004456,-0.117163017392159,0.449443340301514,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.850952863693237,0.11118795722723,0.513338506221771,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.881876766681671,0.156258404254913,0.444833248853683,-0.825584471225739,0.0556592233479023,0.561526894569397,-0.568908989429474,0.364634901285172,0.737145841121674,-0.3499456346035,0.274282693862915,0.8957160115242,-0.790518581867218,0.002411242807284,0.612433254718781,-0.3499456346035,0.274282693862915,0.8957160115242,-0.568908989429474,0.364634901285172,0.737145841121674,-0.574783682823181,0.210681706666946,0.790719330310822,-0.335193157196045,0.135726362466812,0.932321786880493,-0.761776208877563,0.159230262041092,0.627967119216919,-0.703601121902466,0.332484751939774,0.628012180328369,-0.3499456346035,0.274282693862915,0.8957160115242,-0.335193157196045,0.135726362466812,0.932321786880493,-0.790518581867218,0.002411242807284,0.612433254718781,-0.3499456346035,0.274282693862915,0.8957160115242,-0.703601121902466,0.332484751939774,0.628012180328369,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.979690968990326,0.0236730091273785,0.199110999703407,-0.980603277683258,0.0181206651031971,0.195163428783417,-0.966796219348907,0.0449138544499874,0.251570612192154,-0.966120362281799,0.0451642386615276,0.254109561443329,-0.966796219348907,0.0449138544499874,0.251570612192154,-0.944680571556091,0.0620129816234112,0.322076231241226,-0.947731673717499,0.0680974274873734,0.311717063188553,-0.966120362281799,0.0451642386615276,0.254109561443329,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.935288906097412,0.243272989988327,0.257007420063019,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.994734942913055,0.0217769127339125,-0.100139409303665,-0.967403948307037,-0.19027204811573,-0.167111486196518,-0.970339238643646,-0.193331658840179,0.145137429237366, +-0.928280353546143,-0.170947059988976,0.330261677503586,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.970339238643646,-0.193331658840179,0.145137429237366,-0.97794246673584,0.0444047376513481,0.204099997878075,-0.923974871635437,0.0687977895140648,0.376214593648911,-0.877142071723938,0.257609009742737,0.405289351940155,-0.935288906097412,0.243272989988327,0.257007420063019,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.854764640331268,0.434247642755508,0.28426456451416,-0.9179927110672,0.177842438220978,0.354487657546997,-0.854764640331268,0.434247642755508,0.28426456451416,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.975325644016266,0.220451310276985,-0.0118792783468962,-0.935288906097412,0.243272989988327,0.257007420063019,-0.877142071723938,0.257609009742737,0.405289351940155,-0.802801370620728,0.432132750749588,0.410817712545395,-0.854764640331268,0.434247642755508,0.28426456451416,-0.935288906097412,0.243272989988327,0.257007420063019,-0.9179927110672,0.177842438220978,0.354487657546997,-0.854764640331268,0.434247642755508,0.28426456451416,-0.802801370620728,0.432132750749588,0.410817712545395,-0.881876766681671,0.156258404254913,0.444833248853683,-0.921152472496033,0.242753878235817,0.304218292236328,-0.94854873418808,0.0162112768739462,0.316215753555298,-0.68764317035675,-0.0471886731684208,0.72451376914978,-0.721725344657898,0.166565105319023,0.671839773654938,-0.68764317035675,-0.0471886731684208,0.72451376914978, +-0.94854873418808,0.0162112768739462,0.316215753555298,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.601067662239075,-0.261352598667145,0.755256652832031,-0.92610377073288,-0.292241811752319,0.238592609763145,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.68764317035675,-0.0471886731684208,0.72451376914978,-0.601067662239075,-0.261352598667145,0.755256652832031,-0.68764317035675,-0.0471886731684208,0.72451376914978,-0.971451818943024,-0.0491500981152058,0.232089772820473,-0.969876885414124,0.175330132246017,0.169110134243965,-0.721725344657898,0.166565105319023,0.671839773654938,-0.998058378696442,-0.0307773221284151,0.0541491433978081,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.994471251964569,-0.0121743716299534,0.104301169514656,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.990293800830841,0.000989494030363858,0.138986557722092,-0.994471251964569,-0.0121743716299534,0.104301169514656,-0.984815239906311,0.116283245384693,0.128907635807991,-0.830115258693695,0.431543350219727,0.353099137544632,-0.649183750152588,0.397769004106522,0.64833664894104,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.649183750152588,0.397769004106522,0.64833664894104,-0.830115258693695,0.431543350219727,0.353099137544632,-0.921152472496033,0.242753878235817,0.304218292236328,-0.721725344657898,0.166565105319023,0.671839773654938,-0.969876885414124,0.175330132246017,0.169110134243965,-0.866828918457031,0.469911992549896,0.166704028844833,-0.649183750152588,0.397769004106522,0.64833664894104,-0.721725344657898,0.166565105319023,0.671839773654938,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.649183750152588,0.397769004106522,0.64833664894104,-0.866828918457031,0.469911992549896,0.166704028844833,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.984815239906311,0.116283245384693,0.128907635807991, +-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.989061295986176,-0.00785514060407877,0.147295877337456,-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.988536179065704,-0.00781740806996822,0.150781840085983,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.994130730628967,-0.0191587414592505,0.1064762622118,-0.988536179065704,-0.00781740806996822,0.150781840085983,-0.948151648044586,0.282218486070633,-0.146154284477234,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.965539634227753,0.259193807840347,0.0234902929514647,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.98907744884491,0.0802590101957321,-0.123629547655582,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.996471107006073,0.0601937584578991,0.0584996081888676,-0.998226284980774,0.0560061112046242,0.0201849769800901,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.965539634227753,0.259193807840347,0.0234902929514647,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.948151648044586,0.282218486070633,-0.146154284477234, +-0.965539634227753,0.259193807840347,0.0234902929514647,-0.967540502548218,0.247933104634285,0.0489361025393009,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.965539634227753,0.259193807840347,0.0234902929514647,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.902224957942963,0.430141896009445,-0.031114662066102,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.93900191783905,-0.304208785295486,0.160413801670074,-0.94240802526474,-0.257382273674011,0.213591873645782,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.94240802526474,-0.257382273674011,0.213591873645782,-0.941263139247894,-0.228814080357552,0.248330056667328,-0.945272922515869,0.00988496094942093,0.326130986213684,-0.130153819918633,0.193926721811295,0.972343742847443,-0.118009239435196,0.0901520848274231,0.988911807537079,0.27520340681076,0.0847124978899956,0.957646548748016,0.208869874477386,0.164753541350365,0.963965654373169,0.27520340681076,0.0847124978899956,0.957646548748016,-0.118009239435196,0.0901520848274231,0.988911807537079,-0.127614736557007,-0.0326059870421886,0.991287708282471,0.282535374164581,-0.00665364880114794,0.959233820438385,0.27520340681076,0.0847124978899956,0.957646548748016,0.282535374164581,-0.00665364880114794,0.959233820438385,0.587504923343658,0.00948319490998983,0.809165000915527,0.565484941005707,0.0699168667197227,0.821789741516113,-0.580127060413361,-0.80225270986557,-0.140865981578827,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.707977473735809,-0.133064463734627,-0.693586230278015,-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.468642711639404,-0.584188401699066,-0.662644624710083, +-0.611642420291901,-0.490592271089554,0.620655059814453,-0.682653307914734,-0.155263811349869,0.714057147502899,0.17330701649189,-0.0628296434879303,0.982861697673798,0.20523139834404,-0.331974714994431,0.920691549777985,0.20523139834404,-0.331974714994431,0.920691549777985,0.17330701649189,-0.0628296434879303,0.982861697673798,0.0503877177834511,-0.0637078359723091,0.996695697307587,0.0763066858053207,-0.417371302843094,0.905526697635651,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.444495856761932,-0.067724920809269,0.893217086791992,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.672878444194794,-0.0803459212183952,0.735376834869385,-0.880858898162842,-0.100720897316933,0.462539553642273,-0.768169522285461,-0.555073916912079,0.319074511528015,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.372289568185806,-0.0667747259140015,0.925711333751678,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.620530009269714,-0.0903970971703529,0.778955042362213,-0.914020121097565,-0.122176274657249,0.386833369731903,-0.803336977958679,-0.540861368179321,0.249235898256302,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.277549207210541,-0.10850915312767,0.954563856124878,0.141833782196045,-0.0881895050406456,0.985954225063324,0.0991356819868088,-0.400941520929337,0.910723984241486,0.0991356819868088,-0.400941520929337,0.910723984241486,0.141833782196045,-0.0881895050406456,0.985954225063324,-0.23263393342495,-0.0961992964148521,0.967795014381409,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.818991482257843,-0.0350434556603432,0.572734534740448,-0.9666867852211,-0.0154904099181294,0.255493193864822,-0.717177093029022,-0.685138523578644,0.127444699406624,-0.717177093029022,-0.685138523578644,0.127444699406624, +-0.9666867852211,-0.0154904099181294,0.255493193864822,-0.985810995101929,-0.00669056223705411,-0.167725637555122,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.583945155143738,-0.762057662010193,0.279778659343719,-0.709523797035217,-0.0910917967557907,0.698769211769104,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.0978286787867546,-0.621704280376434,0.777118682861328,-0.0978286787867546,-0.621704280376434,0.777118682861328,-0.153193980455399,-0.0941683053970337,0.983699142932892,-0.645139455795288,-0.0900172293186188,0.758743703365326,-0.362244516611099,-0.81382018327713,0.454395741224289,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.968394815921783,-0.0757415592670441,0.237644031643867,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.981892943382263,-0.0716588422656059,0.175359964370728,-0.995101928710938,-0.0517755635082722,-0.0842108950018883,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.828298628330231,-0.0392827875912189,0.558908045291901,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.122856259346008,-0.580215871334076,0.805143356323242,-0.122856259346008,-0.580215871334076,0.805143356323242,-0.270149499177933,-0.0658985078334808,0.960560619831085,-0.567425191402435,-0.105053044855595,0.816696107387543,-0.290535598993301,-0.833319902420044,0.470283985137939,-0.366151511669159,-0.928801298141479,0.0571073777973652,-0.928280353546143,-0.170947059988976,0.330261677503586,-0.970339238643646,-0.193331658840179,0.145137429237366,-0.392173528671265,-0.919722676277161,-0.0176098681986332,-0.392173528671265,-0.919722676277161,-0.0176098681986332,-0.970339238643646,-0.193331658840179,0.145137429237366,-0.967403948307037,-0.19027204811573,-0.167111486196518,-0.443843692541122,-0.869031727313995,-0.218601703643799,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.92610377073288,-0.292241811752319,0.238592609763145, +-0.601067662239075,-0.261352598667145,0.755256652832031,-0.249369755387306,-0.827082753181458,0.503734946250916,-0.249369755387306,-0.827082753181458,0.503734946250916,-0.601067662239075,-0.261352598667145,0.755256652832031,-0.908502161502838,-0.245356783270836,0.338265955448151,-0.453250050544739,-0.875390589237213,0.168094336986542,-0.427178382873535,-0.896017134189606,-0.121127761900425,-0.980019211769104,-0.198277339339256,-0.0157634038478136,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.475014746189117,-0.876436233520508,-0.0788700059056282,-0.475014746189117,-0.876436233520508,-0.0788700059056282,-0.981444180011749,-0.18638963997364,0.0450129471719265,-0.979011297225952,-0.153612717986107,-0.133940368890762,-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.942946493625641,-0.16231632232666,0.290698021650314,-0.765838265419006,-0.183012425899506,0.616440057754517,-0.415800213813782,-0.82390969991684,0.385075271129608,-0.415800213813782,-0.82390969991684,0.385075271129608,-0.765838265419006,-0.183012425899506,0.616440057754517,-0.913995802402496,-0.209973439574242,0.347164064645767,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.410520315170288,-0.91163182258606,-0.0200147889554501,-0.966820299625397,-0.249328747391701,0.0556215867400169,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.482968419790268,-0.872684597969055,0.0718556493520737,-0.482968419790268,-0.872684597969055,0.0718556493520737,-0.975551903247833,-0.210033535957336,0.0646870955824852,-0.943898737430573,-0.159254774451256,-0.289297521114349,-0.580127060413361,-0.80225270986557,-0.140865981578827,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.321032702922821,-0.0680899247527122,-0.944617211818695,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.106125302612782,-0.0547467805445194,-0.992844521999359,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.321032702922821,-0.0680899247527122,-0.944617211818695, +0.357091963291168,-0.0802728161215782,-0.93061363697052,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.106125302612782,-0.0547467805445194,-0.992844521999359,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.868885338306427,-0.0424795784056187,-0.493187189102173,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.984756588935852,0.0860742479562759,-0.151148214936256,0.996961891651154,0.0540988482534885,0.0560385398566723,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.990025520324707,0.120999224483967,-0.072171114385128,0.996961891651154,0.0540988482534885,0.0560385398566723,0.984756588935852,0.0860742479562759,-0.151148214936256,0.95380312204361,0.19058008491993,-0.232247248291969,0.996961891651154,0.0540988482534885,0.0560385398566723,0.940796434879303,0.037529218941927,0.336888253688812,0.925897538661957,-0.0276928935199976,0.376758277416229,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.996402859687805,0.0495557300746441,0.0687424540519714,0.979617714881897,0.0102590182796121,-0.200608760118484,0.982589840888977,0.0328721441328526,-0.182857125997543,0.972003519535065,0.0456170327961445,0.230495691299438,0.996402859687805,0.0495557300746441,0.0687424540519714,0.972003519535065,0.0456170327961445,0.230495691299438,0.992337584495544,0.0719796568155289,0.100424520671368,0.996081113815308,0.0883794128894806,0.00336791947484016, +0.250765800476074,-0.393147200345993,-0.8846195936203,0.205787897109985,-0.43680277466774,-0.875702381134033,0.251735776662827,-0.13088458776474,-0.958904683589935,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.205787897109985,-0.43680277466774,-0.875702381134033,0.390885144472122,-0.486017107963562,-0.781662464141846,0.44834902882576,-0.139073446393013,-0.882973253726959,0.251735776662827,-0.13088458776474,-0.958904683589935,0.251735776662827,-0.13088458776474,-0.958904683589935,0.44834902882576,-0.139073446393013,-0.882973253726959,0.488993525505066,-0.0602913647890091,-0.870201289653778,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.251735776662827,-0.13088458776474,-0.958904683589935,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.541523456573486,0.0144119746983051,-0.840562164783478,0.547020196914673,-0.186133503913879,-0.816163718700409,0.560758829116821,-0.0380145087838173,-0.82710599899292,0.576102674007416,0.0398704931139946,-0.816404342651367,0.52849805355072,0.0252384264022112,-0.848559260368347,0.547020196914673,-0.186133503913879,-0.816163718700409,0.52849805355072,0.0252384264022112,-0.848559260368347,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.516933262348175,-0.230008617043495,-0.824546039104462,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,0.0551412850618362,-0.820448160171509,-0.569055676460266,0.0654933154582977,-0.833352625370026,-0.548847854137421,3.25381984112028e-06,-0.822987020015717,-0.568060219287872,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,0.0458167567849159,-0.794797599315643,-0.605142712593079,0.0551412850618362,-0.820448160171509,-0.569055676460266,0.0551412850618362,-0.820448160171509,-0.569055676460266,0.0458167567849159,-0.794797599315643,-0.605142712593079,0.106486827135086,-0.778541445732117,-0.618493258953094,0.117023155093193,-0.799739181995392,-0.588831901550293,0.0654933154582977,-0.833352625370026,-0.548847854137421, +0.0551412850618362,-0.820448160171509,-0.569055676460266,0.117023155093193,-0.799739181995392,-0.588831901550293,0.126767873764038,-0.810833990573883,-0.571382582187653,0.51786470413208,-0.852376520633698,0.0725972205400467,0.464053809642792,-0.874072670936584,-0.143704861402512,0.884451627731323,-0.373648852109909,-0.279520660638809,0.923657715320587,-0.376178413629532,0.0731174126267433,0.464053809642792,-0.874072670936584,-0.143704861402512,0.438863754272461,-0.852788746356964,-0.283107727766037,0.821834862232208,-0.345841467380524,-0.452748358249664,0.884451627731323,-0.373648852109909,-0.279520660638809,0.884451627731323,-0.373648852109909,-0.279520660638809,0.821834862232208,-0.345841467380524,-0.452748358249664,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.923657715320587,-0.376178413629532,0.0731174126267433,0.884451627731323,-0.373648852109909,-0.279520660638809,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.907388210296631,0.0635263249278069,-0.415464758872986,0.912824213504791,0.0662926584482193,-0.402935802936554,0.866058588027954,0.0650843977928162,-0.495688021183014,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.866058588027954,0.0650843977928162,-0.495688021183014,0.753824532032013,0.0120829222723842,-0.656964600086212,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.46382150053978,-0.740590929985046,-0.486204266548157,0.489569514989853,-0.755737662315369,-0.434951156377792,0.398767828941345,-0.803536295890808,-0.44194307923317,0.381309062242508,-0.782062947750092,-0.492931127548218,0.46382150053978,-0.740590929985046,-0.486204266548157,0.381309062242508,-0.782062947750092,-0.492931127548218,0.359698057174683,-0.776623547077179,-0.517178118228912,0.435355752706528,-0.743057668209076,-0.508262455463409,0.497879147529602,-0.865346670150757,0.0573717728257179,0.420704245567322,-0.888998806476593,-0.180801391601563, +0.900104403495789,-0.415668904781342,-0.130504101514816,0.898619055747986,-0.418207377195358,0.132613226771355,0.420704245567322,-0.888998806476593,-0.180801391601563,0.387941062450409,-0.902830421924591,-0.185469508171082,0.885625779628754,-0.428801566362381,-0.178314879536629,0.900104403495789,-0.415668904781342,-0.130504101514816,0.900104403495789,-0.415668904781342,-0.130504101514816,0.885625779628754,-0.428801566362381,-0.178314879536629,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.898619055747986,-0.418207377195358,0.132613226771355,0.900104403495789,-0.415668904781342,-0.130504101514816,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.987738251686096,-0.10796906799078,0.1127645149827,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.993456125259399,-0.0716922953724861,-0.0889109894633293,0.986385881900787,0.129490092396736,-0.101366467773914,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.972169041633606,-0.163636535406113,-0.167661264538765,0.932737112045288,-0.342042773962021,-0.114053167402744,0.549306571483612,-0.810717701911926,-0.202482223510742,0.548184633255005,-0.824028193950653,-0.143077865242958,0.423574149608612,-0.896063446998596,-0.132872730493546,0.431833833456039,-0.882030606269836,-0.188524648547173,0.549306571483612,-0.810717701911926,-0.202482223510742,0.431833833456039,-0.882030606269836,-0.188524648547173,0.433151990175247,-0.867169499397278,-0.245756685733795,0.552260160446167,-0.79054182767868,-0.264673978090286,0.967489182949066,0.073288656771183,-0.242060959339142,0.986148297786713,0.0842926800251007,-0.142850503325462,0.990463435649872,-0.0371588617563248,-0.132670491933823,0.967431664466858,-0.0304344762116671,-0.251296430826187,0.986148297786713,0.0842926800251007,-0.142850503325462,0.990612149238586,0.0857185050845146,-0.106488816440105,0.992330133914948,-0.0447207093238831,-0.115242637693882, +0.990463435649872,-0.0371588617563248,-0.132670491933823,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.947352945804596,-0.084156908094883,-0.308933764696121,0.89838719367981,-0.352516740560532,-0.261977761983871,0.896174132823944,-0.440976023674011,-0.0491107478737831,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.896174132823944,-0.440976023674011,-0.0491107478737831,0.85398256778717,-0.5202556848526,0.00691878609359264,0.988096594810486,0.0418830551207066,-0.148023575544357,3.14041017190902e-06,-0.772840142250061,-0.634600639343262,1.52039376644098e-08,-0.921437203884125,-0.388527274131775,0.128131896257401,-0.914434194564819,-0.383917152881622,0.108572572469711,-0.770943105220795,-0.627581655979156,1.52039376644098e-08,-0.921437203884125,-0.388527274131775,2.66085771727376e-06,-0.990090310573578,-0.140432059764862,0.138497367501259,-0.980665802955627,-0.138249680399895,0.128131896257401,-0.914434194564819,-0.383917152881622,0.128131896257401,-0.914434194564819,-0.383917152881622,0.138497367501259,-0.980665802955627,-0.138249680399895,0.227555468678474,-0.966486871242523,-0.118834026157856,0.214124009013176,-0.913648962974548,-0.345537900924683,0.108572572469711,-0.770943105220795,-0.627581655979156,0.128131896257401,-0.914434194564819,-0.383917152881622,0.214124009013176,-0.913648962974548,-0.345537900924683,0.187623992562294,-0.789631307125092,-0.584191501140594,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.103935718536377,-0.164655655622482,-0.980859696865082,0.0756061896681786,-0.17784771323204,-0.981149315834045,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.293439120054245,-0.588329136371613,-0.7535001039505,0.33074101805687,-0.145882070064545,-0.932377994060516,0.103935718536377,-0.164655655622482,-0.980859696865082,0.103935718536377,-0.164655655622482,-0.980859696865082,0.33074101805687,-0.145882070064545,-0.932377994060516,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.106125302612782,-0.0547467805445194,-0.992844521999359, +0.0756061896681786,-0.17784771323204,-0.981149315834045,0.103935718536377,-0.164655655622482,-0.980859696865082,0.106125302612782,-0.0547467805445194,-0.992844521999359,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.512175977230072,-0.466066777706146,-0.721427440643311,0.441854745149612,-0.315789490938187,-0.83966737985611,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.441854745149612,-0.315789490938187,-0.83966737985611,0.589899063110352,-0.137920513749123,-0.795611083507538,0.628012835979462,0.0660990849137306,-0.775390684604645,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.628012835979462,0.0660990849137306,-0.775390684604645,0.49469667673111,0.0547363348305225,-0.867340207099915,0.192265674471855,0.0178321488201618,-0.981180846691132,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.401199162006378,-0.0147213861346245,-0.915872514247894,0.192265674471855,0.0178321488201618,-0.981180846691132,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.49469667673111,0.0547363348305225,-0.867340207099915,0.511730790138245,0.0416954979300499,-0.858133494853973,0.157864987850189,0.0144887296482921,-0.987354516983032,0.192265674471855,0.0178321488201618,-0.981180846691132,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.157864987850189,0.0144887296482921,-0.987354516983032,0.511730790138245,0.0416954979300499,-0.858133494853973,0.404185056686401,-0.0720401108264923,-0.911835968494415,0.157864987850189,0.0144887296482921,-0.987354516983032,0.368370145559311,-0.02103091776371,-0.929441332817078,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.192265674471855,0.0178321488201618,-0.981180846691132,0.516204953193665,-0.739144563674927,-0.432663559913635,0.445797830820084,-0.750705003738403,-0.487551361322403,0.696743011474609,-0.360330164432526,-0.62025111913681,0.793203890323639,-0.334265559911728,-0.509012937545776,0.445797830820084,-0.750705003738403,-0.487551361322403, +0.468962371349335,-0.762415885925293,-0.445865750312805,0.72435075044632,-0.381623566150665,-0.574177205562592,0.696743011474609,-0.360330164432526,-0.62025111913681,0.696743011474609,-0.360330164432526,-0.62025111913681,0.72435075044632,-0.381623566150665,-0.574177205562592,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.793203890323639,-0.334265559911728,-0.509012937545776,0.696743011474609,-0.360330164432526,-0.62025111913681,0.823189198970795,-0.0781274065375328,-0.56236606836319,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.455715090036392,-0.712582349777222,-0.533432424068451,0.37758857011795,-0.616982102394104,-0.690478026866913,0.461122572422028,-0.262200891971588,-0.847712635993958,0.632416069507599,-0.348405539989471,-0.691855251789093,0.37758857011795,-0.616982102394104,-0.690478026866913,0.63243442773819,-0.766274094581604,-0.11336162686348,0.941153645515442,-0.336342543363571,0.0332188718020916,0.461122572422028,-0.262200891971588,-0.847712635993958,0.461122572422028,-0.262200891971588,-0.847712635993958,0.941153645515442,-0.336342543363571,0.0332188718020916,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.632416069507599,-0.348405539989471,-0.691855251789093,0.461122572422028,-0.262200891971588,-0.847712635993958,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.636378884315491,-0.0589766092598438,-0.769118785858154,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.976782023906708,-0.096743531525135,-0.191147983074188,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.651831209659576,-0.0200693961232901,-0.758098483085632, +0.636378884315491,-0.0589766092598438,-0.769118785858154,0.416400253772736,-0.0313226878643036,-0.908641636371613,0.504914164543152,-0.843706130981445,0.182268023490906,0.412487804889679,-0.908762454986572,-0.0632809773087502,0.936624050140381,-0.349277704954147,0.0272110253572464,0.901105523109436,-0.274987131357193,0.33524751663208,0.412487804889679,-0.908762454986572,-0.0632809773087502,0.350622594356537,-0.929238021373749,-0.116534858942032,0.906976282596588,-0.401439964771271,-0.12743604183197,0.936624050140381,-0.349277704954147,0.0272110253572464,0.936624050140381,-0.349277704954147,0.0272110253572464,0.906976282596588,-0.401439964771271,-0.12743604183197,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.901105523109436,-0.274987131357193,0.33524751663208,0.936624050140381,-0.349277704954147,0.0272110253572464,0.996038913726807,-0.0299420803785324,0.0837254449725151,0.925897538661957,-0.0276928935199976,0.376758277416229,0.343556195497513,-0.879236817359924,-0.330017954111099,0.318479269742966,-0.806861102581024,-0.49753999710083,0.708132803440094,-0.369493752717972,-0.601682782173157,0.803960502147675,-0.401102036237717,-0.439049750566483,0.318479269742966,-0.806861102581024,-0.49753999710083,0.43664076924324,-0.888041436672211,-0.143969655036926,0.849683105945587,-0.476386874914169,-0.226040348410606,0.708132803440094,-0.369493752717972,-0.601682782173157,0.708132803440094,-0.369493752717972,-0.601682782173157,0.849683105945587,-0.476386874914169,-0.226040348410606,0.98529464006424,-0.116540789604187,-0.124951049685478,0.889032244682312,-0.0361546277999878,-0.456414878368378,0.803960502147675,-0.401102036237717,-0.439049750566483,0.708132803440094,-0.369493752717972,-0.601682782173157,0.889032244682312,-0.0361546277999878,-0.456414878368378,0.92538183927536,-0.00213020131923258,-0.379030108451843,0.98529464006424,-0.116540789604187,-0.124951049685478,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.925759255886078,0.076020248234272,-0.37039253115654, +0.889032244682312,-0.0361546277999878,-0.456414878368378,0.976457178592682,0.162414789199829,-0.141960471868515,0.925759255886078,0.076020248234272,-0.37039253115654,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.978084087371826,0.152315065264702,0.141956150531769,0.925759255886078,0.076020248234272,-0.37039253115654,0.928477048873901,0.121489353477955,-0.350956588983536,0.92538183927536,-0.00213020131923258,-0.379030108451843,0.889032244682312,-0.0361546277999878,-0.456414878368378,0.992337584495544,0.0719796568155289,0.100424520671368,0.972003519535065,0.0456170327961445,0.230495691299438,0.96244889497757,-0.0475795865058899,0.267260789871216,0.994123876094818,-0.0412094928324223,0.100097432732582,0.972003519535065,0.0456170327961445,0.230495691299438,0.982589840888977,0.0328721441328526,-0.182857125997543,0.986677527427673,-0.029893996194005,-0.159917399287224,0.96244889497757,-0.0475795865058899,0.267260789871216,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.407952696084976,-0.901816725730896,-0.142482578754425,0.880153298377991,-0.453859508037567,-0.13907478749752,0.889515578746796,-0.455092877149582,0.0406490974128246,0.407952696084976,-0.901816725730896,-0.142482578754425,0.381359219551086,-0.919612050056458,-0.0942273810505867,0.878848016262054,-0.460666686296463,-0.124146290123463,0.880153298377991,-0.453859508037567,-0.13907478749752,0.880153298377991,-0.453859508037567,-0.13907478749752,0.878848016262054,-0.460666686296463,-0.124146290123463,0.992330133914948,-0.0447207093238831,-0.115242637693882,0.995616734027863,-0.0409315750002861,-0.0840950906276703,0.889515578746796,-0.455092877149582,0.0406490974128246,0.880153298377991,-0.453859508037567,-0.13907478749752,0.995616734027863,-0.0409315750002861,-0.0840950906276703,0.994123876094818,-0.0412094928324223,0.100097432732582,0.992330133914948,-0.0447207093238831,-0.115242637693882,0.990612149238586,0.0857185050845146,-0.106488816440105,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.995616734027863,-0.0409315750002861,-0.0840950906276703, +0.993068099021912,0.097786158323288,-0.065219409763813,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.990612149238586,0.0857185050845146,-0.106488816440105,0.990515828132629,0.087090939283371,-0.106271043419838,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.992337584495544,0.0719796568155289,0.100424520671368,0.994123876094818,-0.0412094928324223,0.100097432732582,0.995616734027863,-0.0409315750002861,-0.0840950906276703,0.563137412071228,-0.491253852844238,-0.664489150047302,0.469654202461243,-0.395616501569748,-0.789247989654541,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.61615127325058,-0.103378012776375,-0.780814051628113,0.469654202461243,-0.395616501569748,-0.789247989654541,0.641406059265137,-0.378595292568207,-0.667280912399292,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.61615127325058,-0.103378012776375,-0.780814051628113,0.499594360589981,-0.0507340244948864,-0.864772617816925,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.513168811798096,-0.037437804043293,-0.857470810413361,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.780752301216125,-0.130897298455238,-0.610976099967957,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.513168811798096,-0.037437804043293,-0.857470810413361,0.341072678565979,-0.0105483373627067,-0.939977824687958,0.488993525505066,-0.0602913647890091,-0.870201289653778, +0.514422237873077,-0.0855942517518997,-0.853254556655884,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.590964138507843,-0.103098534047604,-0.800082564353943,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.514422237873077,-0.0855942517518997,-0.853254556655884,0.56365704536438,-0.122223049402237,-0.816916227340698,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.555411875247955,0.00989418476819992,-0.83151650428772,0.541523456573486,0.0144119746983051,-0.840562164783478,0.366152822971344,-0.0343735888600349,-0.929919600486755,0.339330106973648,-0.710198104381561,-0.616825580596924,0.363881915807724,-0.727092683315277,-0.582173526287079,0.31199836730957,-0.75174742937088,-0.580975770950317,0.296085834503174,-0.734459102153778,-0.610657870769501,0.339330106973648,-0.710198104381561,-0.616825580596924,0.296085834503174,-0.734459102153778,-0.610657870769501,0.282901287078857,-0.715390801429749,-0.638891756534576,0.316736936569214,-0.703204691410065,-0.636538326740265,0.295892357826233,-0.683634638786316,-0.667151749134064,0.316736936569214,-0.703204691410065,-0.636538326740265,0.282901287078857,-0.715390801429749,-0.638891756534576,0.272227436304092,-0.695810735225677,-0.664635062217712,0.295892357826233,-0.683634638786316,-0.667151749134064,0.272227436304092,-0.695810735225677,-0.664635062217712,0.268839001655579,-0.678394854068756,-0.683744192123413,0.283764809370041,-0.66997879743576,-0.6860072016716,0.432826220989227,-0.292234122753143,-0.852795779705048,0.400332540273666,-0.2842738032341,-0.87116140127182,0.413349270820618,-0.204832509160042,-0.8872349858284,0.464342623949051,-0.191317722201347,-0.864744663238525,0.432826220989227,-0.292234122753143,-0.852795779705048,0.464342623949051,-0.191317722201347,-0.864744663238525,0.532904505729675,-0.147325813770294,-0.833251416683197,0.469946354627609,-0.278394103050232,-0.837643802165985,3.72612566934549e-06,-0.797764480113983,-0.60296905040741,2.57396004599286e-06,-0.761352777481079,-0.648337841033936, +0.0498609691858292,-0.752893686294556,-0.656250715255737,0.0458167567849159,-0.794797599315643,-0.605142712593079,2.57396004599286e-06,-0.761352777481079,-0.648337841033936,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,0.105245932936668,-0.618587851524353,-0.778634905815125,0.0498609691858292,-0.752893686294556,-0.656250715255737,0.0498609691858292,-0.752893686294556,-0.656250715255737,0.105245932936668,-0.618587851524353,-0.778634905815125,0.156661868095398,-0.61191338300705,-0.775254189968109,0.102983109652996,-0.740106999874115,-0.664557099342346,0.0458167567849159,-0.794797599315643,-0.605142712593079,0.0498609691858292,-0.752893686294556,-0.656250715255737,0.102983109652996,-0.740106999874115,-0.664557099342346,0.106486827135086,-0.778541445732117,-0.618493258953094,0.178336322307587,-0.24917970597744,-0.951895833015442,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,0.18702594935894,-0.0647337883710861,-0.980219721794128,0.178336322307587,-0.24917970597744,-0.951895833015442,0.18702594935894,-0.0647337883710861,-0.980219721794128,0.275702863931656,-0.086119182407856,-0.957377374172211,0.255999326705933,-0.267593652009964,-0.928901493549347,0.383055806159973,-0.260195881128311,-0.886321723461151,0.395990818738937,-0.0959687009453773,-0.913225829601288,0.405421048402786,0.0109599707648158,-0.914064407348633,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.383055806159973,-0.260195881128311,-0.886321723461151,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.369658052921295,-0.29566553235054,-0.880871653556824,0.277917355298996,-0.700341641902924,-0.657482743263245,0.180045038461685,-0.541619896888733,-0.821116089820862,0.258719444274902,-0.161429896950722,-0.952367842197418,0.477159678936005,-0.261803686618805,-0.838914513587952,0.180045038461685,-0.541619896888733,-0.821116089820862,0.555457890033722,-0.70824271440506,-0.435728013515472,0.741796910762787,-0.154640659689903,-0.652551591396332, +0.258719444274902,-0.161429896950722,-0.952367842197418,0.258719444274902,-0.161429896950722,-0.952367842197418,0.741796910762787,-0.154640659689903,-0.652551591396332,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.264031618833542,0.0021013414952904,-0.964511752128601,0.477159678936005,-0.261803686618805,-0.838914513587952,0.258719444274902,-0.161429896950722,-0.952367842197418,0.264031618833542,0.0021013414952904,-0.964511752128601,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.288455188274384,0.0432411171495914,-0.95651650428772,0.264031618833542,0.0021013414952904,-0.964511752128601,0.459886282682419,0.0185286644846201,-0.887784481048584,0.288455188274384,0.0432411171495914,-0.95651650428772,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.288455188274384,0.0432411171495914,-0.95651650428772,0.547591149806976,0.0530366972088814,-0.835063576698303,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.264031618833542,0.0021013414952904,-0.964511752128601,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.89840167760849,0.0240881759673357,-0.438513457775116,0.95315283536911,0.0197086539119482,-0.301846146583557,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.95409882068634,0.0348662063479424,-0.297455161809921,0.95315283536911,0.0197086539119482,-0.301846146583557,0.89840167760849,0.0240881759673357,-0.438513457775116,0.91331148147583,0.0418378300964832,-0.405106961727142,0.95315283536911,0.0197086539119482,-0.301846146583557,0.999887347221375,-0.00283974967896938,0.0147343929857016,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.951560854911804,-0.0328376814723015,-0.305701673030853,0.527743816375732,-0.766555488109589,-0.365894824266434,0.528576493263245,-0.770433664321899,-0.356424927711487,0.423097163438797,-0.845155298709869,-0.326651573181152,0.42674246430397,-0.838199734687805,-0.33957627415657, +0.527743816375732,-0.766555488109589,-0.365894824266434,0.42674246430397,-0.838199734687805,-0.33957627415657,0.424859493970871,-0.83431738615036,-0.351296126842499,0.532298564910889,-0.759147047996521,-0.374638319015503,0.50800234079361,-0.772281050682068,-0.381465196609497,0.532298564910889,-0.759147047996521,-0.374638319015503,0.424859493970871,-0.83431738615036,-0.351296126842499,0.413723528385162,-0.825479507446289,-0.383948534727097,0.50800234079361,-0.772281050682068,-0.381465196609497,0.413723528385162,-0.825479507446289,-0.383948534727097,0.398767828941345,-0.803536295890808,-0.44194307923317,0.489569514989853,-0.755737662315369,-0.434951156377792,0.924625039100647,-0.204379692673683,-0.321399390697479,0.862016081809998,-0.237058743834496,-0.448030591011047,0.884316444396973,-0.198062226176262,-0.422795385122299,0.966464221477509,-0.141532048583031,-0.214278906583786,0.924625039100647,-0.204379692673683,-0.321399390697479,0.966464221477509,-0.141532048583031,-0.214278906583786,0.968531847000122,-0.04851333796978,-0.24411541223526,0.929381966590881,-0.123729966580868,-0.347764313220978,0.394593596458435,-0.746646106243134,-0.535551607608795,0.435355752706528,-0.743057668209076,-0.508262455463409,0.359698057174683,-0.776623547077179,-0.517178118228912,0.334459483623505,-0.768839836120605,-0.544997334480286,0.394593596458435,-0.746646106243134,-0.535551607608795,0.334459483623505,-0.768839836120605,-0.544997334480286,0.31199836730957,-0.75174742937088,-0.580975770950317,0.363881915807724,-0.727092683315277,-0.582173526287079,0.750636577606201,-0.331162452697754,-0.571730852127075,0.625449419021606,-0.363071113824844,-0.690646409988403,0.692737460136414,-0.268014371395111,-0.669539391994476,0.868971228599548,-0.212771654129028,-0.446785569190979,0.750636577606201,-0.331162452697754,-0.571730852127075,0.868971228599548,-0.212771654129028,-0.446785569190979,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.792401313781738,-0.21995422244072,-0.568964242935181,0.827804982662201,-0.130916640162468,-0.54552698135376, +0.82582426071167,0.0285451002418995,-0.563204646110535,0.823549389839172,0.0683218166232109,-0.563115000724792,0.813247382640839,0.00783070549368858,-0.58186537027359,0.827804982662201,-0.130916640162468,-0.54552698135376,0.813247382640839,0.00783070549368858,-0.58186537027359,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.799626886844635,-0.163402855396271,-0.577837646007538,0.456584513187408,-0.824917614459991,-0.333228886127472,0.435094058513641,-0.765399038791656,-0.47419136762619,0.81584370136261,-0.308632999658585,-0.489024102687836,0.858951389789581,-0.362426906824112,-0.361731052398682,0.435094058513641,-0.765399038791656,-0.47419136762619,0.471450209617615,-0.862914264202118,-0.181971609592438,0.913533270359039,-0.369183957576752,-0.170763596892357,0.81584370136261,-0.308632999658585,-0.489024102687836,0.81584370136261,-0.308632999658585,-0.489024102687836,0.913533270359039,-0.369183957576752,-0.170763596892357,0.986677527427673,-0.029893996194005,-0.159917399287224,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.858951389789581,-0.362426906824112,-0.361731052398682,0.81584370136261,-0.308632999658585,-0.489024102687836,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.986677527427673,-0.029893996194005,-0.159917399287224,0.982589840888977,0.0328721441328526,-0.182857125997543,0.89024543762207,0.0432123914361,-0.453426659107208,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.921634495258331,0.0250504910945892,-0.387249529361725,0.89024543762207,0.0432123914361,-0.453426659107208,0.982589840888977,0.0328721441328526,-0.182857125997543,0.979617714881897,0.0102590182796121,-0.200608760118484,0.89024543762207,0.0432123914361,-0.453426659107208,0.930461645126343,0.044032908976078,-0.36373382806778,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.886355221271515,-0.0137162115424871,-0.462802708148956,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.987849771976471,0.0212721824645996,-0.153949171304703, +0.99705582857132,0.0125236827880144,-0.0756492763757706,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.989431262016296,0.136282756924629,-0.0495256967842579,0.99705582857132,0.0125236827880144,-0.0756492763757706,0.987849771976471,0.0212721824645996,-0.153949171304703,0.9805948138237,0.130027592182159,-0.146719142794609,0.99705582857132,0.0125236827880144,-0.0756492763757706,0.994628012180328,-0.00375852175056934,0.103445485234261,0.987738251686096,-0.10796906799078,0.1127645149827,0.992280542850494,-0.0860173925757408,-0.0893320515751839,0.452444911003113,-0.88996547460556,-0.0570528209209442,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.452444911003113,-0.88996547460556,-0.0570528209209442,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.423574149608612,-0.896063446998596,-0.132872730493546,0.548184633255005,-0.824028193950653,-0.143077865242958,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.979054927825928,-0.184137359261513,-0.086860828101635,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.998157441616058,0.0592895559966564,0.0129011496901512,0.976446330547333,-0.207822889089584,-0.057985320687294,0.530801117420197,-0.783872842788696,-0.322170048952103,0.552260160446167,-0.79054182767868,-0.264673978090286,0.433151990175247,-0.867169499397278,-0.245756685733795, +0.426663398742676,-0.852746307849884,-0.301300495862961,0.530801117420197,-0.783872842788696,-0.322170048952103,0.426663398742676,-0.852746307849884,-0.301300495862961,0.423097163438797,-0.845155298709869,-0.326651573181152,0.528576493263245,-0.770433664321899,-0.356424927711487,0.882255256175995,-0.269002169370651,-0.386346369981766,0.833502888679504,-0.23296232521534,-0.501000463962555,0.78961306810379,-0.233641311526299,-0.567382454872131,0.895867526531219,-0.252381771802902,-0.365684121847153,0.882255256175995,-0.269002169370651,-0.386346369981766,0.895867526531219,-0.252381771802902,-0.365684121847153,0.942210137844086,-0.189072623848915,-0.276571184396744,0.904816269874573,-0.24091811478138,-0.351092487573624,0.947976529598236,-0.151237607002258,-0.280121088027954,0.94556999206543,-0.0409093052148819,-0.322837442159653,0.952481865882874,0.000842949375510216,-0.304594099521637,0.960871279239655,-0.0276883840560913,-0.275608122348785,0.947976529598236,-0.151237607002258,-0.280121088027954,0.960871279239655,-0.0276883840560913,-0.275608122348785,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.95521467924118,-0.211122363805771,-0.207345873117447,0.880417287349701,0.0260239727795124,-0.473484963178635,0.919324100017548,0.0491604432463646,-0.390418291091919,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.919324100017548,0.0491604432463646,-0.390418291091919,0.967489182949066,0.073288656771183,-0.242060959339142,0.967431664466858,-0.0304344762116671,-0.251296430826187,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.919324100017548,0.0491604432463646,-0.390418291091919,0.880417287349701,0.0260239727795124,-0.473484963178635,0.947352945804596,-0.084156908094883,-0.308933764696121,0.988860845565796,0.0708148032426834,-0.13091829419136,0.990515828132629,0.087090939283371,-0.106271043419838,0.990612149238586,0.0857185050845146,-0.106488816440105,0.986148297786713,0.0842926800251007,-0.142850503325462, +0.988860845565796,0.0708148032426834,-0.13091829419136,0.986148297786713,0.0842926800251007,-0.142850503325462,0.967489182949066,0.073288656771183,-0.242060959339142,0.988096594810486,0.0418830551207066,-0.148023575544357,0.53996068239212,-0.642871737480164,-0.543284833431244,0.54840362071991,-0.612563192844391,-0.569227397441864,0.399628847837448,-0.677889943122864,-0.617059230804443,0.378362953662872,-0.679854929447174,-0.628202855587006,0.53996068239212,-0.642871737480164,-0.543284833431244,0.378362953662872,-0.679854929447174,-0.628202855587006,0.391568809747696,-0.792815148830414,-0.467030912637711,0.549508213996887,-0.764573931694031,-0.336849242448807,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.794481456279755,-0.603172719478607,-0.0705816969275475,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.85398256778717,-0.5202556848526,0.00691878609359264,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.900180280208588,-0.423967570066452,-0.0996347591280937,0.941188633441925,-0.298583924770355,-0.158151000738144,0.92946070432663,-0.337410181760788,-0.149188429117203,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.92946070432663,-0.337410181760788,-0.149188429117203,0.904228806495667,-0.397547334432602,-0.155969187617302,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.993068099021912,0.097786158323288,-0.065219409763813,0.990515828132629,0.087090939283371,-0.106271043419838,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.873746514320374,-0.463690847158432,-0.146826222538948,0.993068099021912,0.097786158323288,-0.065219409763813,0.873746514320374,-0.463690847158432,-0.146826222538948,0.904228806495667,-0.397547334432602,-0.155969187617302,0.996081113815308,0.0883794128894806,0.00336791947484016,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538, +-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,0.331673711538315,-0.108054272830486,-0.937185525894165,0.370375901460648,-0.0389966443181038,-0.928063035011292,-5.66832204640377e-06,-0.0552692748606205,-0.99847149848938,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,0.148334860801697,-0.447466164827347,-0.881913065910339,0.331673711538315,-0.108054272830486,-0.937185525894165,0.331673711538315,-0.108054272830486,-0.937185525894165,0.148334860801697,-0.447466164827347,-0.881913065910339,0.121410027146339,-0.550902009010315,-0.825691640377045,0.287211626768112,-0.154459059238434,-0.945331573486328,0.370375901460648,-0.0389966443181038,-0.928063035011292,0.331673711538315,-0.108054272830486,-0.937185525894165,0.287211626768112,-0.154459059238434,-0.945331573486328,0.341228455305099,-0.0394069999456406,-0.939153969287872,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.357091963291168,-0.0802728161215782,-0.93061363697052,0.405421048402786,0.0109599707648158,-0.914064407348633,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.331362664699554,0.0784346461296082,-0.940237700939178,0.329432427883148,0.157070621848106,-0.931022584438324,1.27130106193363e-05,0.13537959754467,-0.990793883800507,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,0.376688778400421,0.0253040362149477,-0.925994157791138,0.368370145559311,-0.02103091776371,-0.929441332817078,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.321032702922821,-0.0680899247527122,-0.944617211818695,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.404185056686401,-0.0720401108264923,-0.911835968494415, +0.413349270820618,-0.204832509160042,-0.8872349858284,0.372428387403488,-0.163693055510521,-0.913510680198669,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.372428387403488,-0.163693055510521,-0.913510680198669,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.357091963291168,-0.0802728161215782,-0.93061363697052,0.321032702922821,-0.0680899247527122,-0.944617211818695,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.440330028533936,-0.0612552389502525,-0.8957439661026,0.368370145559311,-0.02103091776371,-0.929441332817078,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.555411875247955,0.00989418476819992,-0.83151650428772,0.800975918769836,0.0486926808953285,-0.596713244915009,0.81552517414093,0.0596523098647594,-0.575638949871063,0.541523456573486,0.0144119746983051,-0.840562164783478,0.800975918769836,0.0486926808953285,-0.596713244915009,0.511730790138245,0.0416954979300499,-0.858133494853973,0.49469667673111,0.0547363348305225,-0.867340207099915,0.81552517414093,0.0596523098647594,-0.575638949871063,0.697140097618103,-0.0760893598198891,-0.712885737419128,0.404185056686401,-0.0720401108264923,-0.911835968494415,0.511730790138245,0.0416954979300499,-0.858133494853973,0.800975918769836,0.0486926808953285,-0.596713244915009,0.697140097618103,-0.0760893598198891,-0.712885737419128,0.800975918769836,0.0486926808953285,-0.596713244915009,0.555411875247955,0.00989418476819992,-0.83151650428772,0.635299921035767,-0.0795372202992439,-0.768158614635468,0.590964138507843,-0.103098534047604,-0.800082564353943,0.56365704536438,-0.122223049402237,-0.816916227340698,0.576102674007416,0.0398704931139946,-0.816404342651367,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.590964138507843,-0.103098534047604,-0.800082564353943,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.532904505729675,-0.147325813770294,-0.833251416683197, +0.635299921035767,-0.0795372202992439,-0.768158614635468,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.513168811798096,-0.037437804043293,-0.857470810413361,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.514422237873077,-0.0855942517518997,-0.853254556655884,0.488993525505066,-0.0602913647890091,-0.870201289653778,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.528671145439148,-0.128377139568329,-0.839062631130219,0.56365704536438,-0.122223049402237,-0.816916227340698,0.514422237873077,-0.0855942517518997,-0.853254556655884,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.528671145439148,-0.128377139568329,-0.839062631130219,0.576653838157654,-0.0856462866067886,-0.812486946582794,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.408123046159744,-0.107793182134628,-0.906540811061859,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.780752301216125,-0.130897298455238,-0.610976099967957,0.692737460136414,-0.268014371395111,-0.669539391994476,0.469770878553391,-0.16160424053669,-0.867870628833771,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.469770878553391,-0.16160424053669,-0.867870628833771,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.408123046159744,-0.107793182134628,-0.906540811061859,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.868885338306427,-0.0424795784056187,-0.493187189102173,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.823549389839172,0.0683218166232109,-0.563115000724792,0.842628657817841,0.0312162972986698,-0.537589430809021, +0.868885338306427,-0.0424795784056187,-0.493187189102173,0.842628657817841,0.0312162972986698,-0.537589430809021,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.993614196777344,-0.112306877970695,0.0108647383749485,0.780752301216125,-0.130897298455238,-0.610976099967957,0.859987616539001,-0.0148304151371121,-0.510099411010742,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.993614196777344,-0.112306877970695,0.0108647383749485,0.998260200023651,-0.0260848812758923,0.0528794266283512,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.651831209659576,-0.0200693961232901,-0.758098483085632,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.636378884315491,-0.0589766092598438,-0.769118785858154,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.976782023906708,-0.096743531525135,-0.191147983074188,0.884316444396973,-0.198062226176262,-0.422795385122299,0.768566012382507,-0.143427550792694,-0.62348610162735,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.768566012382507,-0.143427550792694,-0.62348610162735,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.817191064357758,-0.0561223588883877,-0.573627948760986,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.794723629951477,-0.0457389652729034,-0.605245769023895,0.651831209659576,-0.0200693961232901,-0.758098483085632,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.999887347221375,-0.00283974967896938,0.0147343929857016, +0.915174961090088,-0.0421641208231449,0.400845289230347,0.896405398845673,-0.0819698721170425,0.435589581727982,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.915174961090088,-0.0421641208231449,0.400845289230347,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.896405398845673,-0.0819698721170425,0.435589581727982,0.980044305324554,-0.0478119067847729,0.192943409085274,0.976782023906708,-0.096743531525135,-0.191147983074188,0.993593394756317,-0.0590969435870647,-0.0963307172060013,0.915174961090088,-0.0421641208231449,0.400845289230347,0.980044305324554,-0.0478119067847729,0.192943409085274,0.915174961090088,-0.0421641208231449,0.400845289230347,0.999887347221375,-0.00283974967896938,0.0147343929857016,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.95409882068634,0.0348662063479424,-0.297455161809921,0.91331148147583,0.0418378300964832,-0.405106961727142,0.912824213504791,0.0662926584482193,-0.402935802936554,0.935791373252869,0.0217018183320761,-0.351885586977005,0.95409882068634,0.0348662063479424,-0.297455161809921,0.935791373252869,0.0217018183320761,-0.351885586977005,0.968531847000122,-0.04851333796978,-0.24411541223526,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.547591149806976,0.0530366972088814,-0.835063576698303,0.807405650615692,0.0311167482286692,-0.589175641536713,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.807405650615692,0.0311167482286692,-0.589175641536713,0.89840167760849,0.0240881759673357,-0.438513457775116,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.846345007419586,0.0378726609051228,-0.53128707408905,0.91331148147583,0.0418378300964832,-0.405106961727142,0.89840167760849,0.0240881759673357,-0.438513457775116,0.807405650615692,0.0311167482286692,-0.589175641536713,0.846345007419586,0.0378726609051228,-0.53128707408905,0.807405650615692,0.0311167482286692,-0.589175641536713, +0.547591149806976,0.0530366972088814,-0.835063576698303,0.655481338500977,0.0419433489441872,-0.754045724868774,0.459886282682419,0.0185286644846201,-0.887784481048584,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.78961306810379,-0.233641311526299,-0.567382454872131,0.713024973869324,-0.114775560796261,-0.691680490970612,0.459886282682419,0.0185286644846201,-0.887784481048584,0.713024973869324,-0.114775560796261,-0.691680490970612,0.753824532032013,0.0120829222723842,-0.656964600086212,0.655481338500977,0.0419433489441872,-0.754045724868774,0.940796434879303,0.037529218941927,0.336888253688812,0.876156091690063,0.0065525509417057,0.481982827186584,0.859695553779602,-0.0323455259203911,0.509781658649445,0.925897538661957,-0.0276928935199976,0.376758277416229,0.876156091690063,0.0065525509417057,0.481982827186584,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.859695553779602,-0.0323455259203911,0.509781658649445,0.990025520324707,0.120999224483967,-0.072171114385128,0.95380312204361,0.19058008491993,-0.232247248291969,0.952481865882874,0.000842949375510216,-0.304594099521637,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.990025520324707,0.120999224483967,-0.072171114385128,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.942210137844086,-0.189072623848915,-0.276571184396744,0.994931936264038,0.0260696522891521,0.0971127524971962,0.989654898643494,-0.0581933557987213,0.131135925650597,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.791980028152466,-0.00584021210670471,-0.610519051551819,0.876156091690063,0.0065525509417057,0.481982827186584,0.989654898643494,-0.0581933557987213,0.131135925650597,0.876156091690063,0.0065525509417057,0.481982827186584,0.940796434879303,0.037529218941927,0.336888253688812,0.994931936264038,0.0260696522891521,0.0971127524971962,0.928477048873901,0.121489353477955,-0.350956588983536,0.955688834190369,0.116407670080662,-0.27038511633873,0.96819806098938,-0.00619679875671864,-0.250108510255814, +0.92538183927536,-0.00213020131923258,-0.379030108451843,0.955688834190369,0.116407670080662,-0.27038511633873,0.984756588935852,0.0860742479562759,-0.151148214936256,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.96819806098938,-0.00619679875671864,-0.250108510255814,0.976457178592682,0.162414789199829,-0.141960471868515,0.978084087371826,0.152315065264702,0.141956150531769,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.976457178592682,0.162414789199829,-0.141960471868515,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.944020211696625,0.193889617919922,-0.266894608736038,0.928049683570862,0.215501263737679,-0.303781151771545,0.95380312204361,0.19058008491993,-0.232247248291969,0.984756588935852,0.0860742479562759,-0.151148214936256,0.955688834190369,0.116407670080662,-0.27038511633873,0.928049683570862,0.215501263737679,-0.303781151771545,0.955688834190369,0.116407670080662,-0.27038511633873,0.928477048873901,0.121489353477955,-0.350956588983536,0.944020211696625,0.193889617919922,-0.266894608736038,0.994628012180328,-0.00375852175056934,0.103445485234261,0.966179847717285,-0.0294437240809202,0.256182581186295,0.960614383220673,-0.135924786329269,0.242372959852219,0.987738251686096,-0.10796906799078,0.1127645149827,0.966179847717285,-0.0294437240809202,0.256182581186295,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.98529464006424,-0.116540789604187,-0.124951049685478,0.960614383220673,-0.135924786329269,0.242372959852219,0.964100778102875,0.111388944089413,0.241044074296951,0.978084087371826,0.152315065264702,0.141956150531769,0.999329209327698,-0.00953070353716612,-0.0353610292077065,0.966179847717285,-0.0294437240809202,0.256182581186295,0.964100778102875,0.111388944089413,0.241044074296951,0.966179847717285,-0.0294437240809202,0.256182581186295,0.994628012180328,-0.00375852175056934,0.103445485234261,0.988234162330627,0.126211360096931,0.0863936245441437, +0.989431262016296,0.136282756924629,-0.0495256967842579,0.9805948138237,0.130027592182159,-0.146719142794609,0.986385881900787,0.129490092396736,-0.101366467773914,0.990121841430664,0.132592484354973,-0.0455840602517128,0.989431262016296,0.136282756924629,-0.0495256967842579,0.990121841430664,0.132592484354973,-0.0455840602517128,0.998157441616058,0.0592895559966564,0.0129011496901512,0.988234162330627,0.126211360096931,0.0863936245441437,0.930461645126343,0.044032908976078,-0.36373382806778,0.973919212818146,0.0321610197424889,-0.224604517221451,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.973919212818146,0.0321610197424889,-0.224604517221451,0.987849771976471,0.0212721824645996,-0.153949171304703,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.967421650886536,0.111605174839497,-0.227243483066559,0.9805948138237,0.130027592182159,-0.146719142794609,0.987849771976471,0.0212721824645996,-0.153949171304703,0.973919212818146,0.0321610197424889,-0.224604517221451,0.967421650886536,0.111605174839497,-0.227243483066559,0.973919212818146,0.0321610197424889,-0.224604517221451,0.930461645126343,0.044032908976078,-0.36373382806778,0.944517731666565,0.0760102942585945,-0.319544553756714,0.921634495258331,0.0250504910945892,-0.387249529361725,0.979617714881897,0.0102590182796121,-0.200608760118484,0.941188633441925,-0.298583924770355,-0.158151000738144,0.953488290309906,-0.24926321208477,-0.169493049383163,0.921634495258331,0.0250504910945892,-0.387249529361725,0.953488290309906,-0.24926321208477,-0.169493049383163,0.972169041633606,-0.163636535406113,-0.167661264538765,0.944517731666565,0.0760102942585945,-0.319544553756714,0.341228455305099,-0.0394069999456406,-0.939153969287872,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.339927136898041,0.0439854599535465,-0.939422607421875,0.370375901460648,-0.0389966443181038,-0.928063035011292, +0.341228455305099,-0.0394069999456406,-0.939153969287872,0.339927136898041,0.0439854599535465,-0.939422607421875,0.376688778400421,0.0253040362149477,-0.925994157791138,0.499098360538483,-0.860193252563477,-0.104729779064655,0.536500513553619,-0.799016773700714,-0.27155002951622,0.827530860900879,-0.373911470174789,-0.418787360191345,0.883458971977234,-0.406380504369736,-0.233141601085663,0.536500513553619,-0.799016773700714,-0.27155002951622,0.525056421756744,-0.734364330768585,-0.430145025253296,0.79384982585907,-0.370954781770706,-0.481866180896759,0.827530860900879,-0.373911470174789,-0.418787360191345,0.827530860900879,-0.373911470174789,-0.418787360191345,0.79384982585907,-0.370954781770706,-0.481866180896759,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.883458971977234,-0.406380504369736,-0.233141601085663,0.827530860900879,-0.373911470174789,-0.418787360191345,0.907222867012024,-0.0355445519089699,-0.419145852327347,0.967431664466858,-0.0304344762116671,-0.251296430826187,0.589899063110352,-0.137920513749123,-0.795611083507538,0.543618559837341,-0.275660157203674,-0.792773902416229,0.714917838573456,0.00455953320488334,-0.69919365644455,0.628012835979462,0.0660990849137306,-0.775390684604645,0.543618559837341,-0.275660157203674,-0.792773902416229,0.250765800476074,-0.393147200345993,-0.8846195936203,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.714917838573456,0.00455953320488334,-0.69919365644455,0.714917838573456,0.00455953320488334,-0.69919365644455,0.352849125862122,-0.0947299301624298,-0.93087249994278,0.541523456573486,0.0144119746983051,-0.840562164783478,0.81552517414093,0.0596523098647594,-0.575638949871063,0.628012835979462,0.0660990849137306,-0.775390684604645,0.714917838573456,0.00455953320488334,-0.69919365644455,0.81552517414093,0.0596523098647594,-0.575638949871063,0.49469667673111,0.0547363348305225,-0.867340207099915,0.390885144472122,-0.486017107963562,-0.781662464141846,0.565682888031006,-0.504618942737579,-0.652198255062103, +0.632826268672943,-0.124994739890099,-0.764138162136078,0.44834902882576,-0.139073446393013,-0.882973253726959,0.565682888031006,-0.504618942737579,-0.652198255062103,0.563137412071228,-0.491253852844238,-0.664489150047302,0.61615127325058,-0.103378012776375,-0.780814051628113,0.632826268672943,-0.124994739890099,-0.764138162136078,0.632826268672943,-0.124994739890099,-0.764138162136078,0.61615127325058,-0.103378012776375,-0.780814051628113,0.513168811798096,-0.037437804043293,-0.857470810413361,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.44834902882576,-0.139073446393013,-0.882973253726959,0.632826268672943,-0.124994739890099,-0.764138162136078,0.598743438720703,-0.0571444369852543,-0.79889976978302,0.488993525505066,-0.0602913647890091,-0.870201289653778,0.293439120054245,-0.588329136371613,-0.7535001039505,0.484833031892776,-0.532703101634979,-0.693660020828247,0.530743896961212,-0.116651892662048,-0.839466035366058,0.33074101805687,-0.145882070064545,-0.932377994060516,0.484833031892776,-0.532703101634979,-0.693660020828247,0.512175977230072,-0.466066777706146,-0.721427440643311,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.530743896961212,-0.116651892662048,-0.839466035366058,0.530743896961212,-0.116651892662048,-0.839466035366058,0.529495418071747,-0.0815154388546944,-0.844387292861938,0.401929944753647,-0.0166882481426001,-0.915518343448639,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.33074101805687,-0.145882070064545,-0.932377994060516,0.530743896961212,-0.116651892662048,-0.839466035366058,0.476844549179077,-0.0438334234058857,-0.87789398431778,0.315442889928818,-0.0564294904470444,-0.947265207767487,0.641406059265137,-0.378595292568207,-0.667280912399292,0.671494722366333,-0.636795699596405,-0.37892735004425,0.927890598773956,-0.216801196336746,-0.303341925144196,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.671494722366333,-0.636795699596405,-0.37892735004425,0.516204953193665,-0.739144563674927,-0.432663559913635,0.793203890323639,-0.334265559911728,-0.509012937545776, +0.927890598773956,-0.216801196336746,-0.303341925144196,0.927890598773956,-0.216801196336746,-0.303341925144196,0.793203890323639,-0.334265559911728,-0.509012937545776,0.937551617622375,-0.0621095523238182,-0.342256188392639,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.806566536426544,-0.0484541840851307,-0.589154064655304,0.927890598773956,-0.216801196336746,-0.303341925144196,0.999421179294586,-0.0338882654905319,0.00299571780487895,0.861600935459137,-0.00343849183991551,-0.507574677467346,0.468962371349335,-0.762415885925293,-0.445865750312805,0.501445531845093,-0.760220110416412,-0.413058996200562,0.752184212207794,-0.389307022094727,-0.531656861305237,0.72435075044632,-0.381623566150665,-0.574177205562592,0.501445531845093,-0.760220110416412,-0.413058996200562,0.455715090036392,-0.712582349777222,-0.533432424068451,0.632416069507599,-0.348405539989471,-0.691855251789093,0.752184212207794,-0.389307022094727,-0.531656861305237,0.752184212207794,-0.389307022094727,-0.531656861305237,0.632416069507599,-0.348405539989471,-0.691855251789093,0.636378884315491,-0.0589766092598438,-0.769118785858154,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.72435075044632,-0.381623566150665,-0.574177205562592,0.752184212207794,-0.389307022094727,-0.531656861305237,0.8055220246315,-0.0878008008003235,-0.58602499961853,0.811966836452484,-0.0922246500849724,-0.576371669769287,0.63243442773819,-0.766274094581604,-0.11336162686348,0.569506764411926,-0.7588871717453,0.315835654735565,0.840517640113831,-0.310326457023621,0.444103240966797,0.941153645515442,-0.336342543363571,0.0332188718020916,0.569506764411926,-0.7588871717453,0.315835654735565,0.51786470413208,-0.852376520633698,0.0725972205400467,0.923657715320587,-0.376178413629532,0.0731174126267433,0.840517640113831,-0.310326457023621,0.444103240966797,0.840517640113831,-0.310326457023621,0.444103240966797,0.923657715320587,-0.376178413629532,0.0731174126267433,0.997430562973022,-0.0567402392625809,0.0437370799481869,0.896405398845673,-0.0819698721170425,0.435589581727982, +0.941153645515442,-0.336342543363571,0.0332188718020916,0.840517640113831,-0.310326457023621,0.444103240966797,0.896405398845673,-0.0819698721170425,0.435589581727982,0.994691073894501,-0.0977417305111885,0.0321888960897923,0.438863754272461,-0.852788746356964,-0.283107727766037,0.393674969673157,-0.804395854473114,-0.444935083389282,0.71679425239563,-0.319492399692535,-0.61978280544281,0.821834862232208,-0.345841467380524,-0.452748358249664,0.393674969673157,-0.804395854473114,-0.444935083389282,0.277917355298996,-0.700341641902924,-0.657482743263245,0.477159678936005,-0.261803686618805,-0.838914513587952,0.71679425239563,-0.319492399692535,-0.61978280544281,0.71679425239563,-0.319492399692535,-0.61978280544281,0.477159678936005,-0.261803686618805,-0.838914513587952,0.522147834300995,-0.00503175240010023,-0.852840185165405,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.821834862232208,-0.345841467380524,-0.452748358249664,0.71679425239563,-0.319492399692535,-0.61978280544281,0.797213017940521,-0.0204490646719933,-0.603351831436157,0.892037928104401,-0.0254486743360758,-0.451243728399277,0.555457890033722,-0.70824271440506,-0.435728013515472,0.540731608867645,-0.663639605045319,0.516905963420868,0.802521944046021,-0.188170716166496,0.56617146730423,0.741796910762787,-0.154640659689903,-0.652551591396332,0.540731608867645,-0.663639605045319,0.516905963420868,0.504914164543152,-0.843706130981445,0.182268023490906,0.901105523109436,-0.274987131357193,0.33524751663208,0.802521944046021,-0.188170716166496,0.56617146730423,0.802521944046021,-0.188170716166496,0.56617146730423,0.901105523109436,-0.274987131357193,0.33524751663208,0.925897538661957,-0.0276928935199976,0.376758277416229,0.859695553779602,-0.0323455259203911,0.509781658649445,0.741796910762787,-0.154640659689903,-0.652551591396332,0.802521944046021,-0.188170716166496,0.56617146730423,0.859695553779602,-0.0323455259203911,0.509781658649445,0.768618643283844,-0.0293972361832857,-0.639031589031219,0.350622594356537,-0.929238021373749,-0.116534858942032, +0.346683531999588,-0.923410952091217,-0.164689466357231,0.873601198196411,-0.421103328466415,-0.243911787867546,0.906976282596588,-0.401439964771271,-0.12743604183197,0.346683531999588,-0.923410952091217,-0.164689466357231,0.343556195497513,-0.879236817359924,-0.330017954111099,0.803960502147675,-0.401102036237717,-0.439049750566483,0.873601198196411,-0.421103328466415,-0.243911787867546,0.873601198196411,-0.421103328466415,-0.243911787867546,0.803960502147675,-0.401102036237717,-0.439049750566483,0.92538183927536,-0.00213020131923258,-0.379030108451843,0.96819806098938,-0.00619679875671864,-0.250108510255814,0.906976282596588,-0.401439964771271,-0.12743604183197,0.873601198196411,-0.421103328466415,-0.243911787867546,0.96819806098938,-0.00619679875671864,-0.250108510255814,0.99283754825592,-0.0221820361912251,-0.117394998669624,0.43664076924324,-0.888041436672211,-0.143969655036926,0.505449831485748,-0.811837494373322,0.292302072048187,0.840250730514526,-0.443081349134445,0.312502384185791,0.849683105945587,-0.476386874914169,-0.226040348410606,0.505449831485748,-0.811837494373322,0.292302072048187,0.497879147529602,-0.865346670150757,0.0573717728257179,0.898619055747986,-0.418207377195358,0.132613226771355,0.840250730514526,-0.443081349134445,0.312502384185791,0.840250730514526,-0.443081349134445,0.312502384185791,0.898619055747986,-0.418207377195358,0.132613226771355,0.987738251686096,-0.10796906799078,0.1127645149827,0.960614383220673,-0.135924786329269,0.242372959852219,0.849683105945587,-0.476386874914169,-0.226040348410606,0.840250730514526,-0.443081349134445,0.312502384185791,0.960614383220673,-0.135924786329269,0.242372959852219,0.98529464006424,-0.116540789604187,-0.124951049685478,0.387941062450409,-0.902830421924591,-0.185469508171082,0.43033829331398,-0.88323187828064,-0.186307087540627,0.886561810970306,-0.413538157939911,-0.207350522279739,0.885625779628754,-0.428801566362381,-0.178314879536629,0.43033829331398,-0.88323187828064,-0.186307087540627,0.456584513187408,-0.824917614459991,-0.333228886127472, +0.858951389789581,-0.362426906824112,-0.361731052398682,0.886561810970306,-0.413538157939911,-0.207350522279739,0.886561810970306,-0.413538157939911,-0.207350522279739,0.858951389789581,-0.362426906824112,-0.361731052398682,0.932311058044434,-0.0330925956368446,-0.360140174627304,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.885625779628754,-0.428801566362381,-0.178314879536629,0.886561810970306,-0.413538157939911,-0.207350522279739,0.97548520565033,-0.0606921650469303,-0.211530312895775,0.984762907028198,-0.0771982818841934,-0.155828431248665,0.471450209617615,-0.862914264202118,-0.181971609592438,0.455620259046555,-0.870745360851288,0.184966832399368,0.86344450712204,-0.432045161724091,0.260385751724243,0.913533270359039,-0.369183957576752,-0.170763596892357,0.455620259046555,-0.870745360851288,0.184966832399368,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.889515578746796,-0.455092877149582,0.0406490974128246,0.86344450712204,-0.432045161724091,0.260385751724243,0.86344450712204,-0.432045161724091,0.260385751724243,0.889515578746796,-0.455092877149582,0.0406490974128246,0.994123876094818,-0.0412094928324223,0.100097432732582,0.96244889497757,-0.0475795865058899,0.267260789871216,0.913533270359039,-0.369183957576752,-0.170763596892357,0.86344450712204,-0.432045161724091,0.260385751724243,0.96244889497757,-0.0475795865058899,0.267260789871216,0.986677527427673,-0.029893996194005,-0.159917399287224,0.381359219551086,-0.919612050056458,-0.0942273810505867,0.424438774585724,-0.905067205429077,-0.0265531558543444,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.878848016262054,-0.460666686296463,-0.124146290123463,0.424438774585724,-0.905067205429077,-0.0265531558543444,0.499098360538483,-0.860193252563477,-0.104729779064655,0.883458971977234,-0.406380504369736,-0.233141601085663,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.883458971977234,-0.406380504369736,-0.233141601085663,0.967431664466858,-0.0304344762116671,-0.251296430826187, +0.990463435649872,-0.0371588617563248,-0.132670491933823,0.878848016262054,-0.460666686296463,-0.124146290123463,0.890108048915863,-0.444975882768631,-0.0985096916556358,0.990463435649872,-0.0371588617563248,-0.132670491933823,0.992330133914948,-0.0447207093238831,-0.115242637693882,-1.39871053761453e-05,-0.298837691545486,-0.954303860664368,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,-0.00514885829761624,-0.894299685955048,-0.447438985109329,0.148334860801697,-0.447466164827347,-0.881913065910339,2.54020778811537e-05,-0.843086302280426,-0.537778377532959,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,0.0206445995718241,-0.99297958612442,-0.116470016539097,-0.00514885829761624,-0.894299685955048,-0.447438985109329,-0.00514885829761624,-0.894299685955048,-0.447438985109329,0.0206445995718241,-0.99297958612442,-0.116470016539097,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.148334860801697,-0.447466164827347,-0.881913065910339,-0.00514885829761624,-0.894299685955048,-0.447438985109329,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.121410027146339,-0.550902009010315,-0.825691640377045,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.0017736324807629,-0.989037394523621,-0.147654265165329,0.0117843132466078,-0.987104594707489,-0.159642219543457,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.0117843132466078,-0.987104594707489,-0.159642219543457,0.0472595132887363,-0.991489410400391,-0.121306762099266,0.148217156529427,-0.921367168426514,-0.359324753284454,0.0899253338575363,-0.604044258594513,-0.791861176490784,0.0415207147598267,-0.916813254356384,-0.397151827812195,0.148217156529427,-0.921367168426514,-0.359324753284454, +0.293439120054245,-0.588329136371613,-0.7535001039505,0.293439120054245,-0.588329136371613,-0.7535001039505,0.148217156529427,-0.921367168426514,-0.359324753284454,0.237628668546677,-0.919831156730652,-0.312158972024918,0.484833031892776,-0.532703101634979,-0.693660020828247,0.148217156529427,-0.921367168426514,-0.359324753284454,0.0472595132887363,-0.991489410400391,-0.121306762099266,0.0341795571148396,-0.99710351228714,-0.0679439455270767,0.237628668546677,-0.919831156730652,-0.312158972024918,0.237628668546677,-0.919831156730652,-0.312158972024918,0.0341795571148396,-0.99710351228714,-0.0679439455270767,-0.0956810265779495,-0.989281058311462,-0.110309168696404,0.189600706100464,-0.917815208435059,-0.348807841539383,0.484833031892776,-0.532703101634979,-0.693660020828247,0.237628668546677,-0.919831156730652,-0.312158972024918,0.189600706100464,-0.917815208435059,-0.348807841539383,0.512175977230072,-0.466066777706146,-0.721427440643311,0.512175977230072,-0.466066777706146,-0.721427440643311,0.189600706100464,-0.917815208435059,-0.348807841539383,0.0527781695127487,-0.859145700931549,-0.509002089500427,0.441854745149612,-0.315789490938187,-0.83966737985611,0.189600706100464,-0.917815208435059,-0.348807841539383,-0.0956810265779495,-0.989281058311462,-0.110309168696404,-0.31352710723877,-0.921509146690369,-0.229176118969917,0.0527781695127487,-0.859145700931549,-0.509002089500427,0.0527781695127487,-0.859145700931549,-0.509002089500427,-0.31352710723877,-0.921509146690369,-0.229176118969917,-0.067974679172039,-0.989794790744781,-0.125243112444878,0.299092411994934,-0.751762688159943,-0.587704479694366,0.441854745149612,-0.315789490938187,-0.83966737985611,0.0527781695127487,-0.859145700931549,-0.509002089500427,0.299092411994934,-0.751762688159943,-0.587704479694366,0.589899063110352,-0.137920513749123,-0.795611083507538,0.589899063110352,-0.137920513749123,-0.795611083507538,0.299092411994934,-0.751762688159943,-0.587704479694366,0.351489782333374,-0.786727249622345,-0.50745964050293,0.543618559837341,-0.275660157203674,-0.792773902416229, +0.299092411994934,-0.751762688159943,-0.587704479694366,-0.067974679172039,-0.989794790744781,-0.125243112444878,0.257710993289948,-0.965899467468262,0.0249620247632265,0.351489782333374,-0.786727249622345,-0.50745964050293,0.351489782333374,-0.786727249622345,-0.50745964050293,0.257710993289948,-0.965899467468262,0.0249620247632265,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.164953321218491,-0.808561682701111,-0.564817190170288,0.543618559837341,-0.275660157203674,-0.792773902416229,0.351489782333374,-0.786727249622345,-0.50745964050293,0.164953321218491,-0.808561682701111,-0.564817190170288,0.250765800476074,-0.393147200345993,-0.8846195936203,0.250765800476074,-0.393147200345993,-0.8846195936203,0.164953321218491,-0.808561682701111,-0.564817190170288,0.129042506217957,-0.823158740997314,-0.552953541278839,0.205787897109985,-0.43680277466774,-0.875702381134033,0.164953321218491,-0.808561682701111,-0.564817190170288,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.044316329061985,-0.989008367061615,-0.14106185734272,0.129042506217957,-0.823158740997314,-0.552953541278839,0.129042506217957,-0.823158740997314,-0.552953541278839,0.044316329061985,-0.989008367061615,-0.14106185734272,0.0461164265871048,-0.995021760463715,-0.0883454754948616,0.227151274681091,-0.872323572635651,-0.432959347963333,0.205787897109985,-0.43680277466774,-0.875702381134033,0.129042506217957,-0.823158740997314,-0.552953541278839,0.227151274681091,-0.872323572635651,-0.432959347963333,0.390885144472122,-0.486017107963562,-0.781662464141846,0.390885144472122,-0.486017107963562,-0.781662464141846,0.227151274681091,-0.872323572635651,-0.432959347963333,0.284561812877655,-0.903313338756561,-0.321013391017914,0.565682888031006,-0.504618942737579,-0.652198255062103,0.227151274681091,-0.872323572635651,-0.432959347963333,0.0461164265871048,-0.995021760463715,-0.0883454754948616,0.0137346880510449,-0.998532474040985,-0.0523858591914177,0.284561812877655,-0.903313338756561,-0.321013391017914,0.284561812877655,-0.903313338756561,-0.321013391017914, +0.0137346880510449,-0.998532474040985,-0.0523858591914177,-0.101554751396179,-0.984395146369934,-0.143711194396019,0.209152966737747,-0.908778250217438,-0.3610779941082,0.565682888031006,-0.504618942737579,-0.652198255062103,0.284561812877655,-0.903313338756561,-0.321013391017914,0.209152966737747,-0.908778250217438,-0.3610779941082,0.563137412071228,-0.491253852844238,-0.664489150047302,0.563137412071228,-0.491253852844238,-0.664489150047302,0.209152966737747,-0.908778250217438,-0.3610779941082,0.0972086414694786,-0.844942212104797,-0.525949716567993,0.469654202461243,-0.395616501569748,-0.789247989654541,0.209152966737747,-0.908778250217438,-0.3610779941082,-0.101554751396179,-0.984395146369934,-0.143711194396019,-0.201180189847946,-0.928689897060394,-0.311546981334686,0.0972086414694786,-0.844942212104797,-0.525949716567993,0.0972086414694786,-0.844942212104797,-0.525949716567993,-0.201180189847946,-0.928689897060394,-0.311546981334686,0.0143932355567813,-0.999884128570557,-0.00495438417419791,0.259116232395172,-0.887118220329285,-0.381942391395569,0.469654202461243,-0.395616501569748,-0.789247989654541,0.0972086414694786,-0.844942212104797,-0.525949716567993,0.259116232395172,-0.887118220329285,-0.381942391395569,0.641406059265137,-0.378595292568207,-0.667280912399292,0.641406059265137,-0.378595292568207,-0.667280912399292,0.259116232395172,-0.887118220329285,-0.381942391395569,0.345103472471237,-0.93750923871994,-0.0444990508258343,0.671494722366333,-0.636795699596405,-0.37892735004425,0.259116232395172,-0.887118220329285,-0.381942391395569,0.0143932355567813,-0.999884128570557,-0.00495438417419791,0.192215457558632,-0.938979744911194,0.285254687070847,0.345103472471237,-0.93750923871994,-0.0444990508258343,0.345103472471237,-0.93750923871994,-0.0444990508258343,0.192215457558632,-0.938979744911194,0.285254687070847,0.0731555819511414,-0.991638422012329,0.106308683753014,0.236632063984871,-0.959273457527161,-0.154271468520164,0.671494722366333,-0.636795699596405,-0.37892735004425,0.345103472471237,-0.93750923871994,-0.0444990508258343, +0.236632063984871,-0.959273457527161,-0.154271468520164,0.516204953193665,-0.739144563674927,-0.432663559913635,0.516204953193665,-0.739144563674927,-0.432663559913635,0.236632063984871,-0.959273457527161,-0.154271468520164,0.173015519976616,-0.950963735580444,-0.256385236978531,0.445797830820084,-0.750705003738403,-0.487551361322403,0.236632063984871,-0.959273457527161,-0.154271468520164,0.0731555819511414,-0.991638422012329,0.106308683753014,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,0.173015519976616,-0.950963735580444,-0.256385236978531,0.173015519976616,-0.950963735580444,-0.256385236978531,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,-0.0171244870871305,-0.995451152324677,-0.0937228202819824,0.186675056815147,-0.949097871780396,-0.25370392203331,0.445797830820084,-0.750705003738403,-0.487551361322403,0.173015519976616,-0.950963735580444,-0.256385236978531,0.186675056815147,-0.949097871780396,-0.25370392203331,0.468962371349335,-0.762415885925293,-0.445865750312805,0.468962371349335,-0.762415885925293,-0.445865750312805,0.186675056815147,-0.949097871780396,-0.25370392203331,0.210319176316261,-0.94456422328949,-0.252119272947311,0.501445531845093,-0.760220110416412,-0.413058996200562,0.186675056815147,-0.949097871780396,-0.25370392203331,-0.0171244870871305,-0.995451152324677,-0.0937228202819824,-0.0137182576581836,-0.990748465061188,-0.135015621781349,0.210319176316261,-0.94456422328949,-0.252119272947311,0.210319176316261,-0.94456422328949,-0.252119272947311,-0.0137182576581836,-0.990748465061188,-0.135015621781349,-0.0493219755589962,-0.954008638858795,-0.29569399356842,0.181792885065079,-0.908852279186249,-0.375418365001678,0.501445531845093,-0.760220110416412,-0.413058996200562,0.210319176316261,-0.94456422328949,-0.252119272947311,0.181792885065079,-0.908852279186249,-0.375418365001678,0.455715090036392,-0.712582349777222,-0.533432424068451,0.455715090036392,-0.712582349777222,-0.533432424068451,0.181792885065079,-0.908852279186249,-0.375418365001678,0.116814382374287,-0.819821238517761,-0.560577809810638, +0.37758857011795,-0.616982102394104,-0.690478026866913,0.181792885065079,-0.908852279186249,-0.375418365001678,-0.0493219755589962,-0.954008638858795,-0.29569399356842,-0.0837778821587563,-0.852415442466736,-0.516109764575958,0.116814382374287,-0.819821238517761,-0.560577809810638,0.116814382374287,-0.819821238517761,-0.560577809810638,-0.0837778821587563,-0.852415442466736,-0.516109764575958,-0.0403466336429119,-0.951976001262665,-0.303502857685089,0.149653851985931,-0.954992890357971,-0.256109893321991,0.37758857011795,-0.616982102394104,-0.690478026866913,0.116814382374287,-0.819821238517761,-0.560577809810638,0.149653851985931,-0.954992890357971,-0.256109893321991,0.63243442773819,-0.766274094581604,-0.11336162686348,0.63243442773819,-0.766274094581604,-0.11336162686348,0.149653851985931,-0.954992890357971,-0.256109893321991,0.125946179032326,-0.979482173919678,0.157328218221664,0.569506764411926,-0.7588871717453,0.315835654735565,0.149653851985931,-0.954992890357971,-0.256109893321991,-0.0403466336429119,-0.951976001262665,-0.303502857685089,0.0362662635743618,-0.99393630027771,0.103804931044579,0.125946179032326,-0.979482173919678,0.157328218221664,0.125946179032326,-0.979482173919678,0.157328218221664,0.0362662635743618,-0.99393630027771,0.103804931044579,0.0276018399745226,-0.998904407024384,0.0377895794808865,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.569506764411926,-0.7588871717453,0.315835654735565,0.125946179032326,-0.979482173919678,0.157328218221664,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.51786470413208,-0.852376520633698,0.0725972205400467,0.51786470413208,-0.852376520633698,0.0725972205400467,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.0181498248130083,-0.999631345272064,-0.0201945547014475,0.464053809642792,-0.874072670936584,-0.143704861402512,0.0586408190429211,-0.996112942695618,0.0657295808196068,0.0276018399745226,-0.998904407024384,0.0377895794808865,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,0.0181498248130083,-0.999631345272064,-0.0201945547014475, +0.0181498248130083,-0.999631345272064,-0.0201945547014475,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,0.464053809642792,-0.874072670936584,-0.143704861402512,0.0181498248130083,-0.999631345272064,-0.0201945547014475,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,0.438863754272461,-0.852788746356964,-0.283107727766037,0.438863754272461,-0.852788746356964,-0.283107727766037,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,-0.0203818194568157,-0.988526284694672,-0.149667382240295,0.393674969673157,-0.804395854473114,-0.444935083389282,-3.43572537531145e-05,-0.997605681419373,-0.0691593661904335,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0203818194568157,-0.988526284694672,-0.149667382240295,-0.0203818194568157,-0.988526284694672,-0.149667382240295,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.064380370080471,-0.942401766777039,-0.328228950500488,0.393674969673157,-0.804395854473114,-0.444935083389282,-0.0203818194568157,-0.988526284694672,-0.149667382240295,-0.064380370080471,-0.942401766777039,-0.328228950500488,0.277917355298996,-0.700341641902924,-0.657482743263245,0.277917355298996,-0.700341641902924,-0.657482743263245,-0.064380370080471,-0.942401766777039,-0.328228950500488,-0.0873351022601128,-0.858423352241516,-0.505452156066895,0.180045038461685,-0.541619896888733,-0.821116089820862,-0.064380370080471,-0.942401766777039,-0.328228950500488,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.0873351022601128,-0.858423352241516,-0.505452156066895,-0.0873351022601128,-0.858423352241516,-0.505452156066895,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,0.0328967608511448,-0.994601726531982,-0.0984133929014206, +0.180045038461685,-0.541619896888733,-0.821116089820862,-0.0873351022601128,-0.858423352241516,-0.505452156066895,0.0328967608511448,-0.994601726531982,-0.0984133929014206,0.555457890033722,-0.70824271440506,-0.435728013515472,0.555457890033722,-0.70824271440506,-0.435728013515472,0.0328967608511448,-0.994601726531982,-0.0984133929014206,0.101912841200829,-0.908747255802155,0.404712557792664,0.540731608867645,-0.663639605045319,0.516905963420868,0.0328967608511448,-0.994601726531982,-0.0984133929014206,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,0.0813811793923378,-0.926623225212097,0.367078334093094,0.101912841200829,-0.908747255802155,0.404712557792664,0.101912841200829,-0.908747255802155,0.404712557792664,0.0813811793923378,-0.926623225212097,0.367078334093094,0.0227406807243824,-0.998998880386353,0.038524117320776,-0.00450151925906539,-0.995848715305328,0.0909112691879272,0.540731608867645,-0.663639605045319,0.516905963420868,0.101912841200829,-0.908747255802155,0.404712557792664,-0.00450151925906539,-0.995848715305328,0.0909112691879272,0.504914164543152,-0.843706130981445,0.182268023490906,0.504914164543152,-0.843706130981445,0.182268023490906,-0.00450151925906539,-0.995848715305328,0.0909112691879272,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,0.412487804889679,-0.908762454986572,-0.0632809773087502,-0.00450151925906539,-0.995848715305328,0.0909112691879272,0.0227406807243824,-0.998998880386353,0.038524117320776,-0.00762299820780754,-0.992952108383179,-0.118270047008991,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,-0.00762299820780754,-0.992952108383179,-0.118270047008991,0.00222110073082149,-0.99709016084671,-0.0761995390057564,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,0.412487804889679,-0.908762454986572,-0.0632809773087502,-0.0808090642094612,-0.994001030921936,-0.0737017691135406,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,0.350622594356537,-0.929238021373749,-0.116534858942032, +0.350622594356537,-0.929238021373749,-0.116534858942032,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,-0.0639330446720123,-0.996860086917877,-0.046718642115593,0.346683531999588,-0.923410952091217,-0.164689466357231,-0.0910968855023384,-0.994464337825775,-0.0523650646209717,0.00222110073082149,-0.99709016084671,-0.0761995390057564,0.00877070985734463,-0.998901963233948,-0.0460210405290127,-0.0639330446720123,-0.996860086917877,-0.046718642115593,-0.0639330446720123,-0.996860086917877,-0.046718642115593,0.00877070985734463,-0.998901963233948,-0.0460210405290127,-0.00755474669858813,-0.988938808441162,-0.148131370544434,-0.0379277542233467,-0.98450493812561,-0.171206310391426,0.346683531999588,-0.923410952091217,-0.164689466357231,-0.0639330446720123,-0.996860086917877,-0.046718642115593,-0.0379277542233467,-0.98450493812561,-0.171206310391426,0.343556195497513,-0.879236817359924,-0.330017954111099,0.343556195497513,-0.879236817359924,-0.330017954111099,-0.0379277542233467,-0.98450493812561,-0.171206310391426,-0.0182527359575033,-0.940809190273285,-0.338444739580154,0.318479269742966,-0.806861102581024,-0.49753999710083,-0.0379277542233467,-0.98450493812561,-0.171206310391426,-0.00755474669858813,-0.988938808441162,-0.148131370544434,-0.0432454086840153,-0.950159907341003,-0.308748960494995,-0.0182527359575033,-0.940809190273285,-0.338444739580154,-0.0182527359575033,-0.940809190273285,-0.338444739580154,-0.0432454086840153,-0.950159907341003,-0.308748960494995,0.0345610603690147,-0.998634815216064,-0.0391647480428219,0.101652823388577,-0.992541551589966,-0.0672911554574966,0.318479269742966,-0.806861102581024,-0.49753999710083,-0.0182527359575033,-0.940809190273285,-0.338444739580154,0.101652823388577,-0.992541551589966,-0.0672911554574966,0.43664076924324,-0.888041436672211,-0.143969655036926,0.43664076924324,-0.888041436672211,-0.143969655036926,0.101652823388577,-0.992541551589966,-0.0672911554574966,0.189477413892746,-0.953533887863159,0.234246894717216,0.505449831485748,-0.811837494373322,0.292302072048187, +0.101652823388577,-0.992541551589966,-0.0672911554574966,0.0345610603690147,-0.998634815216064,-0.0391647480428219,0.114700697362423,-0.969060480594635,0.218553364276886,0.189477413892746,-0.953533887863159,0.234246894717216,0.189477413892746,-0.953533887863159,0.234246894717216,0.114700697362423,-0.969060480594635,0.218553364276886,0.0376603677868843,-0.998001277446747,-0.050745140761137,0.0852790176868439,-0.996204316616058,-0.0174518525600433,0.505449831485748,-0.811837494373322,0.292302072048187,0.189477413892746,-0.953533887863159,0.234246894717216,0.0852790176868439,-0.996204316616058,-0.0174518525600433,0.497879147529602,-0.865346670150757,0.0573717728257179,0.497879147529602,-0.865346670150757,0.0573717728257179,0.0852790176868439,-0.996204316616058,-0.0174518525600433,-0.0281080342829227,-0.979772686958313,-0.198130145668983,0.420704245567322,-0.888998806476593,-0.180801391601563,0.0852790176868439,-0.996204316616058,-0.0174518525600433,0.0376603677868843,-0.998001277446747,-0.050745140761137,-0.00987572688609362,-0.975039064884186,-0.221813872456551,-0.0281080342829227,-0.979772686958313,-0.198130145668983,-0.0281080342829227,-0.979772686958313,-0.198130145668983,-0.00987572688609362,-0.975039064884186,-0.221813872456551,-0.00206752307713032,-0.989448010921478,-0.144873470067978,-0.0566148720681667,-0.988345980644226,-0.141304582357407,0.420704245567322,-0.888998806476593,-0.180801391601563,-0.0281080342829227,-0.979772686958313,-0.198130145668983,-0.0566148720681667,-0.988345980644226,-0.141304582357407,0.387941062450409,-0.902830421924591,-0.185469508171082,0.387941062450409,-0.902830421924591,-0.185469508171082,-0.0566148720681667,-0.988345980644226,-0.141304582357407,-0.00859022606164217,-0.994786083698273,-0.101621963083744,0.43033829331398,-0.88323187828064,-0.186307087540627,-0.0566148720681667,-0.988345980644226,-0.141304582357407,-0.00206752307713032,-0.989448010921478,-0.144873470067978,0.00842917431145906,-0.996677577495575,-0.0810110941529274,-0.00859022606164217,-0.994786083698273,-0.101621963083744, +-0.00859022606164217,-0.994786083698273,-0.101621963083744,0.00842917431145906,-0.996677577495575,-0.0810110941529274,-0.00558301247656345,-0.976331949234009,-0.216205418109894,0.0454825200140476,-0.968847155570984,-0.243447333574295,0.43033829331398,-0.88323187828064,-0.186307087540627,-0.00859022606164217,-0.994786083698273,-0.101621963083744,0.0454825200140476,-0.968847155570984,-0.243447333574295,0.456584513187408,-0.824917614459991,-0.333228886127472,0.456584513187408,-0.824917614459991,-0.333228886127472,0.0454825200140476,-0.968847155570984,-0.243447333574295,0.0639127641916275,-0.914364278316498,-0.399816393852234,0.435094058513641,-0.765399038791656,-0.47419136762619,0.0454825200140476,-0.968847155570984,-0.243447333574295,-0.00558301247656345,-0.976331949234009,-0.216205418109894,-0.029094323515892,-0.923119962215424,-0.383409798145294,0.0639127641916275,-0.914364278316498,-0.399816393852234,0.0639127641916275,-0.914364278316498,-0.399816393852234,-0.029094323515892,-0.923119962215424,-0.383409798145294,0.00105690758209676,-0.990462958812714,-0.137775212526321,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.435094058513641,-0.765399038791656,-0.47419136762619,0.0639127641916275,-0.914364278316498,-0.399816393852234,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.471450209617615,-0.862914264202118,-0.181971609592438,0.471450209617615,-0.862914264202118,-0.181971609592438,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.109180703759193,-0.983856499195099,0.141795545816422,0.455620259046555,-0.870745360851288,0.184966832399368,0.0981812104582787,-0.983559608459473,-0.151561304926872,0.00105690758209676,-0.990462958812714,-0.137775212526321,0.0300077237188816,-0.991880118846893,0.123585782945156,0.109180703759193,-0.983856499195099,0.141795545816422,0.109180703759193,-0.983856499195099,0.141795545816422,0.0300077237188816,-0.991880118846893,0.123585782945156,0.00836390163749456,-0.998803675174713,-0.0481772869825363,0.0531070195138454,-0.99823385477066,-0.0266236197203398,0.455620259046555,-0.870745360851288,0.184966832399368, +0.109180703759193,-0.983856499195099,0.141795545816422,0.0531070195138454,-0.99823385477066,-0.0266236197203398,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.451100170612335,-0.892462372779846,-0.00441850954666734,0.0531070195138454,-0.99823385477066,-0.0266236197203398,-0.0172474682331085,-0.990058124065399,-0.139597609639168,0.407952696084976,-0.901816725730896,-0.142482578754425,0.0531070195138454,-0.99823385477066,-0.0266236197203398,0.00836390163749456,-0.998803675174713,-0.0481772869825363,-0.00341826910153031,-0.986906588077545,-0.161256238818169,-0.0172474682331085,-0.990058124065399,-0.139597609639168,-0.0172474682331085,-0.990058124065399,-0.139597609639168,-0.00341826910153031,-0.986906588077545,-0.161256238818169,-0.00338497199118137,-0.998307347297668,-0.058060847222805,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,0.407952696084976,-0.901816725730896,-0.142482578754425,-0.0172474682331085,-0.990058124065399,-0.139597609639168,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,0.381359219551086,-0.919612050056458,-0.0942273810505867,0.381359219551086,-0.919612050056458,-0.0942273810505867,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,-0.0121226189658046,-0.997971057891846,0.0625052154064178,0.424438774585724,-0.905067205429077,-0.0265531558543444,-0.0526229180395603,-0.997180759906769,-0.0534914694726467,-0.00338497199118137,-0.998307347297668,-0.058060847222805,0.00499414373189211,-0.996677398681641,0.0812970474362373,-0.0121226189658046,-0.997971057891846,0.0625052154064178,-0.0121226189658046,-0.997971057891846,0.0625052154064178,0.00499414373189211,-0.996677398681641,0.0812970474362373,0.00254658795893192,-0.995971739292145,0.0896312519907951,0.0599643588066101,-0.996931612491608,0.0503142550587654,0.424438774585724,-0.905067205429077,-0.0265531558543444,-0.0121226189658046,-0.997971057891846,0.0625052154064178,0.0599643588066101,-0.996931612491608,0.0503142550587654,0.499098360538483,-0.860193252563477,-0.104729779064655,0.499098360538483,-0.860193252563477,-0.104729779064655, +0.0599643588066101,-0.996931612491608,0.0503142550587654,0.121662802994251,-0.988740146160126,-0.0871276333928108,0.536500513553619,-0.799016773700714,-0.27155002951622,0.0599643588066101,-0.996931612491608,0.0503142550587654,0.00254658795893192,-0.995971739292145,0.0896312519907951,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,0.121662802994251,-0.988740146160126,-0.0871276333928108,0.121662802994251,-0.988740146160126,-0.0871276333928108,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,-0.0501352362334728,-0.942996501922607,-0.329004615545273,0.129465445876122,-0.932377934455872,-0.337505578994751,0.536500513553619,-0.799016773700714,-0.27155002951622,0.121662802994251,-0.988740146160126,-0.0871276333928108,0.129465445876122,-0.932377934455872,-0.337505578994751,0.525056421756744,-0.734364330768585,-0.430145025253296,-0.140483602881432,-0.389575660228729,0.910217046737671,-0.0480444952845573,-0.932949662208557,0.356786787509918,0.145859897136688,-0.90880411863327,0.390896379947662,0.230874493718147,-0.364731192588806,0.902035593986511,-0.0480444952845573,-0.932949662208557,0.356786787509918,0.0017736324807629,-0.989037394523621,-0.147654265165329,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.145859897136688,-0.90880411863327,0.390896379947662,0.145859897136688,-0.90880411863327,0.390896379947662,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.0206445995718241,-0.99297958612442,-0.116470016539097,0.251202523708344,-0.919188618659973,0.303297936916351,0.529604315757751,-0.324774593114853,0.783607542514801,0.230874493718147,-0.364731192588806,0.902035593986511,0.145859897136688,-0.90880411863327,0.390896379947662,0.251202523708344,-0.919188618659973,0.303297936916351,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.153088346123695,-0.912603378295898,0.379102826118469,-0.0988656133413315,-0.915834665298462,0.389194458723068,-0.235184445977211,-0.385947704315186,0.892038583755493,-0.153088346123695,-0.912603378295898,0.379102826118469,0.0472595132887363,-0.991489410400391,-0.121306762099266, +0.0117843132466078,-0.987104594707489,-0.159642219543457,-0.0988656133413315,-0.915834665298462,0.389194458723068,-0.0988656133413315,-0.915834665298462,0.389194458723068,0.0117843132466078,-0.987104594707489,-0.159642219543457,0.0017736324807629,-0.989037394523621,-0.147654265165329,-0.0480444952845573,-0.932949662208557,0.356786787509918,-0.235184445977211,-0.385947704315186,0.892038583755493,-0.0988656133413315,-0.915834665298462,0.389194458723068,-0.0480444952845573,-0.932949662208557,0.356786787509918,-0.140483602881432,-0.389575660228729,0.910217046737671,-0.803336977958679,-0.540861368179321,0.249235898256302,-0.433304578065872,-0.899189889431,0.0608656816184521,-0.250383645296097,-0.936257421970367,0.246434733271599,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.433304578065872,-0.899189889431,0.0608656816184521,-0.0956810265779495,-0.989281058311462,-0.110309168696404,0.0341795571148396,-0.99710351228714,-0.0679439455270767,-0.250383645296097,-0.936257421970367,0.246434733271599,-0.250383645296097,-0.936257421970367,0.246434733271599,0.0341795571148396,-0.99710351228714,-0.0679439455270767,0.0472595132887363,-0.991489410400391,-0.121306762099266,-0.153088346123695,-0.912603378295898,0.379102826118469,-0.567572116851807,-0.548137187957764,0.614335119724274,-0.250383645296097,-0.936257421970367,0.246434733271599,-0.153088346123695,-0.912603378295898,0.379102826118469,-0.361432492733002,-0.459109365940094,0.811532557010651,-0.611642420291901,-0.490592271089554,0.620655059814453,-0.353433787822723,-0.895314991474152,0.271100580692291,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.353433787822723,-0.895314991474152,0.271100580692291,-0.067974679172039,-0.989794790744781,-0.125243112444878,-0.31352710723877,-0.921509146690369,-0.229176118969917,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.31352710723877,-0.921509146690369,-0.229176118969917,-0.0956810265779495,-0.989281058311462,-0.110309168696404, +-0.433304578065872,-0.899189889431,0.0608656816184521,-0.907420754432678,-0.419139206409454,-0.030164698138833,-0.646455466747284,-0.755455434322357,-0.106687881052494,-0.433304578065872,-0.899189889431,0.0608656816184521,-0.803336977958679,-0.540861368179321,0.249235898256302,0.0763066858053207,-0.417371302843094,0.905526697635651,0.104558326303959,-0.867407262325287,0.486489742994308,0.233879595994949,-0.770570516586304,0.592892408370972,0.20523139834404,-0.331974714994431,0.920691549777985,0.104558326303959,-0.867407262325287,0.486489742994308,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.257710993289948,-0.965899467468262,0.0249620247632265,0.233879595994949,-0.770570516586304,0.592892408370972,0.233879595994949,-0.770570516586304,0.592892408370972,0.257710993289948,-0.965899467468262,0.0249620247632265,-0.067974679172039,-0.989794790744781,-0.125243112444878,-0.353433787822723,-0.895314991474152,0.271100580692291,0.20523139834404,-0.331974714994431,0.920691549777985,0.233879595994949,-0.770570516586304,0.592892408370972,-0.353433787822723,-0.895314991474152,0.271100580692291,-0.611642420291901,-0.490592271089554,0.620655059814453,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.166342362761497,-0.929781317710876,0.328385353088379,-0.0531740002334118,-0.920071363449097,0.388125240802765,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.166342362761497,-0.929781317710876,0.328385353088379,0.0461164265871048,-0.995021760463715,-0.0883454754948616,0.044316329061985,-0.989008367061615,-0.14106185734272,-0.0531740002334118,-0.920071363449097,0.388125240802765,-0.0531740002334118,-0.920071363449097,0.388125240802765,0.044316329061985,-0.989008367061615,-0.14106185734272,0.120708346366882,-0.988138139247894,-0.0949337854981422,0.104558326303959,-0.867407262325287,0.486489742994308,-0.152435049414635,-0.490144968032837,0.858208298683167,-0.0531740002334118,-0.920071363449097,0.388125240802765,0.104558326303959,-0.867407262325287,0.486489742994308,0.0763066858053207,-0.417371302843094,0.905526697635651, +-0.768169522285461,-0.555073916912079,0.319074511528015,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.282510876655579,-0.92732298374176,0.245478615164757,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.101554751396179,-0.984395146369934,-0.143711194396019,0.0137346880510449,-0.998532474040985,-0.0523858591914177,-0.282510876655579,-0.92732298374176,0.245478615164757,-0.282510876655579,-0.92732298374176,0.245478615164757,0.0137346880510449,-0.998532474040985,-0.0523858591914177,0.0461164265871048,-0.995021760463715,-0.0883454754948616,-0.166342362761497,-0.929781317710876,0.328385353088379,-0.585655450820923,-0.560863316059113,0.585183680057526,-0.282510876655579,-0.92732298374176,0.245478615164757,-0.166342362761497,-0.929781317710876,0.328385353088379,-0.381915420293808,-0.534327626228333,0.75407862663269,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.157239511609077,-0.916003048419952,0.369071990251541,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.157239511609077,-0.916003048419952,0.369071990251541,0.0143932355567813,-0.999884128570557,-0.00495438417419791,-0.201180189847946,-0.928689897060394,-0.311546981334686,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.201180189847946,-0.928689897060394,-0.311546981334686,-0.101554751396179,-0.984395146369934,-0.143711194396019,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.845925629138947,-0.527083456516266,0.0811967179179192,-0.503704249858856,-0.853760659694672,-0.131812810897827,-0.429487109184265,-0.899986803531647,0.0745956227183342,-0.768169522285461,-0.555073916912079,0.319074511528015,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.0608872622251511,-0.898435711860657,0.434863150119781,0.12497141957283,-0.753512442111969,0.645446419715881,0.0991356819868088,-0.400941520929337,0.910723984241486,-0.0608872622251511,-0.898435711860657,0.434863150119781, +0.0731555819511414,-0.991638422012329,0.106308683753014,0.192215457558632,-0.938979744911194,0.285254687070847,0.12497141957283,-0.753512442111969,0.645446419715881,0.12497141957283,-0.753512442111969,0.645446419715881,0.192215457558632,-0.938979744911194,0.285254687070847,0.0143932355567813,-0.999884128570557,-0.00495438417419791,-0.157239511609077,-0.916003048419952,0.369071990251541,0.0991356819868088,-0.400941520929337,0.910723984241486,0.12497141957283,-0.753512442111969,0.645446419715881,-0.157239511609077,-0.916003048419952,0.369071990251541,-0.279430687427521,-0.492836862802505,0.824032962322235,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.0171244870871305,-0.995451152324677,-0.0937228202819824,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.0126958386972547,-0.998751282691956,-0.0483152084052563,0.0731555819511414,-0.991638422012329,0.106308683753014,-0.0608872622251511,-0.898435711860657,0.434863150119781,-0.462140649557114,-0.664130032062531,0.587671220302582,-0.20741893351078,-0.953635454177856,0.218075320124626,-0.0608872622251511,-0.898435711860657,0.434863150119781,-0.191335201263428,-0.571601092815399,0.797911703586578,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.717177093029022,-0.685138523578644,0.127444699406624,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.0493219755589962,-0.954008638858795,-0.29569399356842,-0.0137182576581836,-0.990748465061188,-0.135015621781349,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.0137182576581836,-0.990748465061188,-0.135015621781349, +-0.0171244870871305,-0.995451152324677,-0.0937228202819824,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.717177093029022,-0.685138523578644,0.127444699406624,-0.285172164440155,-0.958142697811127,-0.0252844840288162,-0.251668184995651,-0.962982833385468,0.0965773016214371,-0.609077453613281,-0.694835484027863,0.38239786028862,-0.583945155143738,-0.762057662010193,0.279778659343719,-0.16066101193428,-0.950351893901825,-0.266494303941727,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.704103589057922,-0.47858914732933,-0.524586081504822,-0.16066101193428,-0.950351893901825,-0.266494303941727,-0.0403466336429119,-0.951976001262665,-0.303502857685089,-0.0837778821587563,-0.852415442466736,-0.516109764575958,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.0837778821587563,-0.852415442466736,-0.516109764575958,-0.0493219755589962,-0.954008638858795,-0.29569399356842,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.704103589057922,-0.47858914732933,-0.524586081504822,-0.328797966241837,-0.79541003704071,-0.50913143157959,-0.337477415800095,-0.904555261135101,-0.260554492473602,-0.765022039413452,-0.599068403244019,-0.236343652009964,-0.362244516611099,-0.81382018327713,0.454395741224289,0.00795949995517731,-0.99587094783783,0.0904309153556824,0.0469965636730194,-0.964173197746277,0.26107719540596,-0.0978286787867546,-0.621704280376434,0.777118682861328,0.00795949995517731,-0.99587094783783,0.0904309153556824,0.0276018399745226,-0.998904407024384,0.0377895794808865,0.0362662635743618,-0.99393630027771,0.103804931044579,0.0469965636730194,-0.964173197746277,0.26107719540596,0.0469965636730194,-0.964173197746277,0.26107719540596,0.0362662635743618,-0.99393630027771,0.103804931044579,-0.0403466336429119,-0.951976001262665,-0.303502857685089,-0.16066101193428,-0.950351893901825,-0.266494303941727,-0.0978286787867546,-0.621704280376434,0.777118682861328,0.0469965636730194,-0.964173197746277,0.26107719540596,-0.16066101193428,-0.950351893901825,-0.266494303941727, +-0.583945155143738,-0.762057662010193,0.279778659343719,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,-0.00370715674944222,-0.999618530273438,-0.0273716785013676,0.0276018399745226,-0.998904407024384,0.0377895794808865,0.00795949995517731,-0.99587094783783,0.0904309153556824,-0.487936437129974,-0.86384654045105,0.125248476862907,-0.0209864303469658,-0.999303460121155,-0.0308582913130522,0.00795949995517731,-0.99587094783783,0.0904309153556824,-0.362244516611099,-0.81382018327713,0.454395741224289,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.0403680317103863,-0.992589473724365,-0.114614903926849,-0.0247466433793306,-0.998201906681061,-0.0545938014984131,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.543642342090607,-0.839043974876404,0.0214029252529144,-0.0540019646286964,-0.991681277751923,-0.116841651499271,-0.0297598447650671,-0.997561633586884,-0.0631275996565819,-0.488754540681839,-0.870411396026611,0.0591868348419666,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.15286223590374,-0.88806164264679,-0.433566331863403, +-0.649918794631958,-0.640278339385986,-0.409449756145477,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.15286223590374,-0.88806164264679,-0.433566331863403,-0.15286223590374,-0.88806164264679,-0.433566331863403,-0.099457710981369,-0.89855420589447,-0.427444219589233,-0.0750930309295654,-0.957075476646423,-0.279942005872726,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.649918794631958,-0.640278339385986,-0.409449756145477,-0.15286223590374,-0.88806164264679,-0.433566331863403,-0.112479627132416,-0.952879965305328,-0.281723260879517,-0.629522800445557,-0.751853108406067,-0.196004807949066,-0.290535598993301,-0.833319902420044,0.470283985137939,0.0733254179358482,-0.994846999645233,0.0700209513306618,0.10855720192194,-0.891241133213043,0.440345942974091,-0.122856259346008,-0.580215871334076,0.805143356323242,0.0733254179358482,-0.994846999645233,0.0700209513306618,0.0227406807243824,-0.998998880386353,0.038524117320776,0.0813811793923378,-0.926623225212097,0.367078334093094,0.10855720192194,-0.891241133213043,0.440345942974091,0.10855720192194,-0.891241133213043,0.440345942974091,0.0813811793923378,-0.926623225212097,0.367078334093094,-0.0124149993062019,-0.997223556041718,-0.0734233036637306,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.122856259346008,-0.580215871334076,0.805143356323242,0.10855720192194,-0.891241133213043,0.440345942974091,-0.0571434199810028,-0.997692763805389,-0.0366580449044704,-0.561700165271759,-0.759992778301239,0.326961606740952,-0.366151511669159,-0.928801298141479,0.0571073777973652,0.0844504535198212,-0.991843283176422,-0.0954725444316864,0.0667957589030266,-0.991175949573517,-0.114492326974869,-0.370848000049591,-0.912586987018585,0.172211557626724,0.0844504535198212,-0.991843283176422,-0.0954725444316864,0.00222110073082149,-0.99709016084671,-0.0761995390057564,-0.00762299820780754,-0.992952108383179,-0.118270047008991,0.0667957589030266,-0.991175949573517,-0.114492326974869, +0.0667957589030266,-0.991175949573517,-0.114492326974869,-0.00762299820780754,-0.992952108383179,-0.118270047008991,0.0227406807243824,-0.998998880386353,0.038524117320776,0.0733254179358482,-0.994846999645233,0.0700209513306618,-0.370848000049591,-0.912586987018585,0.172211557626724,0.0667957589030266,-0.991175949573517,-0.114492326974869,0.0733254179358482,-0.994846999645233,0.0700209513306618,-0.290535598993301,-0.833319902420044,0.470283985137939,-0.443843692541122,-0.869031727313995,-0.218601703643799,0.00930165965110064,-0.983946025371552,-0.178223818540573,0.0662668272852898,-0.995057761669159,-0.0739509761333466,-0.392173528671265,-0.919722676277161,-0.0176098681986332,0.00930165965110064,-0.983946025371552,-0.178223818540573,-0.00755474669858813,-0.988938808441162,-0.148131370544434,0.00877070985734463,-0.998901963233948,-0.0460210405290127,0.0662668272852898,-0.995057761669159,-0.0739509761333466,0.0662668272852898,-0.995057761669159,-0.0739509761333466,0.00877070985734463,-0.998901963233948,-0.0460210405290127,0.00222110073082149,-0.99709016084671,-0.0761995390057564,0.0844504535198212,-0.991843283176422,-0.0954725444316864,-0.392173528671265,-0.919722676277161,-0.0176098681986332,0.0662668272852898,-0.995057761669159,-0.0739509761333466,0.0844504535198212,-0.991843283176422,-0.0954725444316864,-0.366151511669159,-0.928801298141479,0.0571073777973652,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,-0.0604715831577778,-0.931170403957367,-0.359534293413162,-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,0.0345610603690147,-0.998634815216064,-0.0391647480428219,-0.0432454086840153,-0.950159907341003,-0.308748960494995,-0.0604715831577778,-0.931170403957367,-0.359534293413162,-0.0604715831577778,-0.931170403957367,-0.359534293413162,-0.0432454086840153,-0.950159907341003,-0.308748960494995,-0.00755474669858813,-0.988938808441162,-0.148131370544434,0.00930165965110064,-0.983946025371552,-0.178223818540573, +-0.430989116430283,-0.753180742263794,-0.496957838535309,-0.0604715831577778,-0.931170403957367,-0.359534293413162,0.00930165965110064,-0.983946025371552,-0.178223818540573,-0.443843692541122,-0.869031727313995,-0.218601703643799,-0.453250050544739,-0.875390589237213,0.168094336986542,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,0.0434680469334126,-0.962681472301483,0.267123430967331,-0.249369755387306,-0.827082753181458,0.503734946250916,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,0.0376603677868843,-0.998001277446747,-0.050745140761137,0.114700697362423,-0.969060480594635,0.218553364276886,0.0434680469334126,-0.962681472301483,0.267123430967331,0.0434680469334126,-0.962681472301483,0.267123430967331,0.114700697362423,-0.969060480594635,0.218553364276886,0.0345610603690147,-0.998634815216064,-0.0391647480428219,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,-0.249369755387306,-0.827082753181458,0.503734946250916,0.0434680469334126,-0.962681472301483,0.267123430967331,-0.00733697693794966,-0.999632894992828,-0.0260804239660501,-0.365077644586563,-0.930274426937103,0.0361668169498444,-0.427178382873535,-0.896017134189606,-0.121127761900425,0.0499588958919048,-0.987058818340302,-0.152377352118492,0.000547988689504564,-0.980932414531708,-0.194348245859146,-0.468763470649719,-0.873666763305664,-0.130258396267891,0.0499588958919048,-0.987058818340302,-0.152377352118492,-0.00206752307713032,-0.989448010921478,-0.144873470067978,-0.00987572688609362,-0.975039064884186,-0.221813872456551,0.000547988689504564,-0.980932414531708,-0.194348245859146,0.000547988689504564,-0.980932414531708,-0.194348245859146,-0.00987572688609362,-0.975039064884186,-0.221813872456551,0.0376603677868843,-0.998001277446747,-0.050745140761137,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,-0.468763470649719,-0.873666763305664,-0.130258396267891,0.000547988689504564,-0.980932414531708,-0.194348245859146,-0.0206398777663708,-0.999786853790283,-0.000527931610122323,-0.453250050544739,-0.875390589237213,0.168094336986542, +-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.0649333521723747,-0.969461679458618,-0.236489936709404,0.0173084046691656,-0.994246423244476,-0.10570852458477,-0.475014746189117,-0.876436233520508,-0.0788700059056282,-0.0649333521723747,-0.969461679458618,-0.236489936709404,-0.00558301247656345,-0.976331949234009,-0.216205418109894,0.00842917431145906,-0.996677577495575,-0.0810110941529274,0.0173084046691656,-0.994246423244476,-0.10570852458477,0.0173084046691656,-0.994246423244476,-0.10570852458477,0.00842917431145906,-0.996677577495575,-0.0810110941529274,-0.00206752307713032,-0.989448010921478,-0.144873470067978,0.0499588958919048,-0.987058818340302,-0.152377352118492,-0.475014746189117,-0.876436233520508,-0.0788700059056282,0.0173084046691656,-0.994246423244476,-0.10570852458477,0.0499588958919048,-0.987058818340302,-0.152377352118492,-0.427178382873535,-0.896017134189606,-0.121127761900425,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.0829290598630905,-0.990105748176575,-0.11319588124752,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.0829290598630905,-0.990105748176575,-0.11319588124752,0.00105690758209676,-0.990462958812714,-0.137775212526321,-0.029094323515892,-0.923119962215424,-0.383409798145294,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.029094323515892,-0.923119962215424,-0.383409798145294,-0.00558301247656345,-0.976331949234009,-0.216205418109894,-0.0649333521723747,-0.969461679458618,-0.236489936709404,-0.512270748615265,-0.744190692901611,-0.42867112159729,-0.113691985607147,-0.908589839935303,-0.401918739080429,-0.0649333521723747,-0.969461679458618,-0.236489936709404,-0.536952257156372,-0.810873031616211,-0.232738271355629,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.0471587143838406,-0.998812437057495,-0.0122400857508183,-0.0520746521651745,-0.985492706298828,0.161531209945679,-0.415800213813782,-0.82390969991684,0.385075271129608, +-0.0471587143838406,-0.998812437057495,-0.0122400857508183,0.00836390163749456,-0.998803675174713,-0.0481772869825363,0.0300077237188816,-0.991880118846893,0.123585782945156,-0.0520746521651745,-0.985492706298828,0.161531209945679,-0.0520746521651745,-0.985492706298828,0.161531209945679,0.0300077237188816,-0.991880118846893,0.123585782945156,0.00105690758209676,-0.990462958812714,-0.137775212526321,-0.0829290598630905,-0.990105748176575,-0.11319588124752,-0.415800213813782,-0.82390969991684,0.385075271129608,-0.0520746521651745,-0.985492706298828,0.161531209945679,-0.0829290598630905,-0.990105748176575,-0.11319588124752,-0.48164090514183,-0.875675022602081,0.0348625518381596,-0.410520315170288,-0.91163182258606,-0.0200147889554501,0.0534753352403641,-0.996550679206848,-0.0634595528244972,0.0098979165777564,-0.989668369293213,-0.143033608794212,-0.456867456436157,-0.88587349653244,-0.0806247070431709,0.0534753352403641,-0.996550679206848,-0.0634595528244972,-0.00338497199118137,-0.998307347297668,-0.058060847222805,-0.00341826910153031,-0.986906588077545,-0.161256238818169,0.0098979165777564,-0.989668369293213,-0.143033608794212,0.0098979165777564,-0.989668369293213,-0.143033608794212,-0.00341826910153031,-0.986906588077545,-0.161256238818169,0.00836390163749456,-0.998803675174713,-0.0481772869825363,-0.0471587143838406,-0.998812437057495,-0.0122400857508183,-0.456867456436157,-0.88587349653244,-0.0806247070431709,0.0098979165777564,-0.989668369293213,-0.143033608794212,-0.0471587143838406,-0.998812437057495,-0.0122400857508183,-0.490321338176727,-0.860571682453156,0.137845203280449,-0.580127060413361,-0.80225270986557,-0.140865981578827,-0.0762956216931343,-0.996552288532257,0.0325979068875313,0.0105597283691168,-0.998346745967865,0.0565000027418137,-0.482968419790268,-0.872684597969055,0.0718556493520737,-0.0762956216931343,-0.996552288532257,0.0325979068875313,0.00254658795893192,-0.995971739292145,0.0896312519907951,0.00499414373189211,-0.996677398681641,0.0812970474362373,0.0105597283691168,-0.998346745967865,0.0565000027418137, +0.0105597283691168,-0.998346745967865,0.0565000027418137,0.00499414373189211,-0.996677398681641,0.0812970474362373,-0.00338497199118137,-0.998307347297668,-0.058060847222805,0.0534753352403641,-0.996550679206848,-0.0634595528244972,-0.482968419790268,-0.872684597969055,0.0718556493520737,0.0105597283691168,-0.998346745967865,0.0565000027418137,0.0534753352403641,-0.996550679206848,-0.0634595528244972,-0.410520315170288,-0.91163182258606,-0.0200147889554501,-0.468642711639404,-0.584188401699066,-0.662644624710083,-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.0501352362334728,-0.942996501922607,-0.329004615545273,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.00550525542348623,-0.999095737934113,-0.0421615056693554,0.00254658795893192,-0.995971739292145,0.0896312519907951,-0.0762956216931343,-0.996552288532257,0.0325979068875313,-0.503384590148926,-0.706262648105621,-0.497792214155197,-0.123709917068481,-0.980693578720093,-0.151446148753166,-0.0762956216931343,-0.996552288532257,0.0325979068875313,-0.580127060413361,-0.80225270986557,-0.140865981578827,-0.193733528256416,0.278880715370178,0.940581142902374,-0.248255610466003,0.283828645944595,0.926180481910706,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.193733528256416,0.278880715370178,0.940581142902374,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.0268143340945244,-0.143278241157532,0.989319086074829,-0.15919853746891,0.261923760175705,0.951867520809174,0.355741113424301,0.129971653223038,-0.925502955913544,0.331362664699554,0.0784346461296082,-0.940237700939178,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.275702863931656,-0.086119182407856,-0.957377374172211,0.355741113424301,0.129971653223038,-0.925502955913544, +0.275702863931656,-0.086119182407856,-0.957377374172211,0.18702594935894,-0.0647337883710861,-0.980219721794128,0.329432427883148,0.157070621848106,-0.931022584438324,-0.536642730236053,0.192880928516388,0.821469128131866,-0.594218373298645,0.165697261691093,0.787050783634186,-0.652988374233246,-0.116873756051064,0.748295783996582,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.536642730236053,0.192880928516388,0.821469128131866,-0.680064976215363,-0.108350522816181,0.725101232528687,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.496219664812088,0.210041984915733,0.842406392097473,-0.446456104516983,0.228713467717171,0.865082144737244,-0.462157160043716,0.223579064011574,0.858151078224182,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.446456104516983,0.228713467717171,0.865082144737244,-0.550035834312439,-0.0979777127504349,0.829373896121979,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.424677073955536,0.229889005422592,0.87567138671875,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.516187071800232,-0.176260635256767,0.8381427526474,-0.469950377941132,-0.180933505296707,0.863950073719025,-0.497782081365585,0.0360474959015846,0.866552770137787,-0.469950377941132,-0.180933505296707,0.863950073719025,-0.563435137271881,-0.125526517629623,0.816568315029144,-0.736716389656067,0.168893858790398,0.654770076274872,-0.42128998041153,0.123724490404129,0.898446977138519,-0.652534902095795,0.131031826138496,0.746343612670898,-0.652988374233246,-0.116873756051064,0.748295783996582,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.42128998041153,0.123724490404129,0.898446977138519,-0.628734648227692,-0.124942645430565,0.767516732215881,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.593219518661499,0.173843711614609,0.786046326160431,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.387588620185852,0.0575357675552368,0.920035183429718, +-0.390184640884399,-0.0543684512376785,0.919130027294159,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.296560078859329,0.0429258793592453,0.954048991203308,-0.394295960664749,-0.048484779894352,0.917703628540039,-0.478871494531631,-0.0499023869633675,0.876465559005737,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.756162881851196,0.111659251153469,0.644786775112152,-0.790071308612823,0.0960117876529694,0.605449497699738,-0.781821191310883,-0.163932874798775,0.601565837860107,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.756162881851196,0.111659251153469,0.644786775112152,-0.780078768730164,-0.154921337962151,0.606198370456696,-0.719670116901398,-0.128593280911446,0.682303905487061,-0.7120640873909,0.130230605602264,0.689930975437164,-0.378375172615051,0.238288059830666,0.89445573091507,-0.388883531093597,0.223127603530884,0.893858790397644,-0.390184640884399,-0.0543684512376785,0.919130027294159,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.378375172615051,0.238288059830666,0.89445573091507,-0.407680243253708,-0.0665540918707848,0.910696029663086,-0.374621093273163,-0.0767543241381645,0.923995614051819,-0.363866746425629,0.253485023975372,0.896295845508575,-0.803810238838196,0.172660142183304,0.569278120994568,-0.781746685504913,0.12085734307766,0.611772418022156,-0.781821191310883,-0.163932874798775,0.601565837860107,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.803810238838196,0.172660142183304,0.569278120994568,-0.787399530410767,-0.125508651137352,0.603530764579773,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.886572659015656,0.216122582554817,0.408998668193817,-0.369501143693924,0.142275765538216,0.918273627758026,-0.374680399894714,0.128914713859558,0.91814786195755,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.369501143693924,0.142275765538216,0.918273627758026,-0.351339429616928,-0.0979647040367126,0.931108832359314,-0.374621093273163,-0.0767543241381645,0.923995614051819, +-0.470575630664825,0.114327363669872,0.87492161989212,-0.857771813869476,0.074350006878376,0.508625090122223,-0.888812661170959,0.0559014827013016,0.454848289489746,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.857771813869476,0.074350006878376,0.508625090122223,-0.893490374088287,-0.0518763586878777,0.446076184511185,-0.835172533988953,-0.0745894387364388,0.544906675815582,-0.835609376430511,0.0814464092254639,0.543252766132355,-0.300128549337387,0.2756507396698,0.913202881813049,-0.32773369550705,0.266680598258972,0.90635097026825,-0.386808812618256,-0.0978999361395836,0.91694849729538,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.300128549337387,0.2756507396698,0.913202881813049,-0.402172774076462,-0.0607339702546597,0.913547158241272,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.248255610466003,0.283828645944595,0.926180481910706,-0.745248079299927,0.161823198199272,0.646852791309357,-0.886231780052185,0.167720913887024,0.431813508272171,-0.905797481536865,-0.0552067644894123,0.420098960399628,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.745248079299927,0.161823198199272,0.646852791309357,-0.905883431434631,-0.0732137486338615,0.417150974273682,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.762375354766846,0.213708147406578,0.610829532146454,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.8973149061203,0.0653683245182037,0.436523705720901,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.916498422622681,0.0463465303182602,0.397344440221786,-0.929061233997345,-0.111133433878422,0.352837860584259,-0.926130890846252,-0.0843588262796402,0.367648094892502,-0.924659490585327,0.0346009209752083,0.379219621419907,-0.907412171363831,0.0993990823626518,0.408317297697067,-0.899417638778687,0.0698455348610878,0.431473612785339,-0.890306234359741,-0.142536014318466,0.432479202747345,-0.844495415687561,-0.145735219120979,0.515353083610535, +-0.907412171363831,0.0993990823626518,0.408317297697067,-0.844495415687561,-0.145735219120979,0.515353083610535,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.873302698135376,0.0614479929208755,0.483287334442139,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.856820344924927,0.0697019994258881,0.510882139205933,-0.856395244598389,-0.117939077317715,0.502670288085938,-0.840404152870178,-0.129948854446411,0.526150286197662,-0.861695170402527,0.0718296095728874,0.50231659412384,-0.790518581867218,0.002411242807284,0.612433254718781,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.870240986347198,-0.11523063480854,0.478959798812866,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.790518581867218,0.002411242807284,0.612433254718781,-0.8835209608078,-0.119893692433834,0.45278725028038,-0.885592103004456,-0.117163017392159,0.449443340301514,-0.825584471225739,0.0556592233479023,0.561526894569397,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.91324508190155,0.0730179101228714,0.400813817977905,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.906969726085663,0.0713718980550766,0.415104866027832,-0.885391473770142,-0.103233091533184,0.453238219022751,-0.885592103004456,-0.117163017392159,0.449443340301514,-0.904032945632935,0.0650602132081985,0.422482699155807,-0.9179927110672,0.177842438220978,0.354487657546997,-0.881876766681671,0.156258404254913,0.444833248853683,-0.899078667163849,-0.0800946354866028,0.430397868156433,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.9179927110672,0.177842438220978,0.354487657546997,-0.924314618110657,-0.0464969128370285,0.378788203001022,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.966796219348907,0.0449138544499874,0.251570612192154, +-0.980603277683258,0.0181206651031971,0.195163428783417,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.966796219348907,0.0449138544499874,0.251570612192154,-0.997633993625641,0.0230021569877863,0.0647867396473885,-0.968398332595825,0.00265025836415589,0.249394625425339,-0.944680571556091,0.0620129816234112,0.322076231241226,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.999749720096588,-0.0220384616404772,0.00384002784267068,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.978846669197083,0.0885543152689934,0.184438452124596,-0.995332658290863,-0.0896621122956276,0.0356866531074047,-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.984815239906311,0.116283245384693,0.128907635807991,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.996501803398132,-0.0562929101288319,0.0617684051394463,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.994037926197052,-0.0368008762598038,0.102636590600014,-0.968017816543579,-0.249064818024635,-0.0301359221339226,-0.98866218328476,-0.150035306811333,-0.0060289166867733,-0.991920173168182,-0.0206019692122936,0.12517973780632,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.935707867145538,-0.352603793144226,0.0110181113705039,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.995736956596375,0.0806376338005066,0.0447842925786972,-0.931574106216431,-0.352950572967529,0.0871526077389717,-0.93900191783905,-0.304208785295486,0.160413801670074,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.985881865024567,-0.0375615172088146,0.163175255060196,-0.941263139247894,-0.228814080357552,0.248330056667328,-0.94240802526474,-0.257382273674011,0.213591873645782,-0.988077461719513,-0.0398466549813747,0.148711204528809,-0.94240802526474,-0.257382273674011,0.213591873645782, +-0.93900191783905,-0.304208785295486,0.160413801670074,-0.994421899318695,-0.0526149906218052,0.0914146676659584,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.945272922515869,0.00988496094942093,0.326130986213684,-0.941263139247894,-0.228814080357552,0.248330056667328,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.885163128376007,-0.00464901700615883,0.46525764465332,-0.956739008426666,-0.173760563135147,0.233361884951591,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.930492401123047,0.117642223834991,0.346906840801239,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.998823881149292,-0.0186641924083233,0.0447487942874432,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.998058080673218,-0.0204856507480145,0.058825708925724,-0.995072305202484,-0.039970301091671,0.0907386317849159,-0.981077611446381,-0.0996127799153328,0.166023626923561,-0.995722413063049,-0.0253355409950018,0.0888535901904106,-0.96250981092453,0.271058112382889,0.010126169770956,-0.955795884132385,0.283257216215134,0.0788643434643745,-0.998313665390015,-0.011612182483077,0.0568762868642807,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.96250981092453,0.271058112382889,0.010126169770956,-0.99893993139267,-0.00597345503047109,0.0456437207758427,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.976750731468201,0.21237450838089,-0.029242055490613,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.997666478157043,-0.0083097442984581,0.0677674412727356,-0.997040629386902,-0.0295744575560093,0.0709603577852249,-0.99855774641037,-0.0141414096578956,0.0517928935587406,-0.998523056507111,-0.0132260071113706,0.0526959337294102,0.883981108665466,-0.429128289222717,-0.185543358325958,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.85398256778717,-0.5202556848526,0.00691878609359264, +0.896174132823944,-0.440976023674011,-0.0491107478737831,0.883981108665466,-0.429128289222717,-0.185543358325958,0.896174132823944,-0.440976023674011,-0.0491107478737831,0.89838719367981,-0.352516740560532,-0.261977761983871,0.881268262863159,-0.338604122400284,-0.329717218875885,0.988860845565796,0.0708148032426834,-0.13091829419136,0.988096594810486,0.0418830551207066,-0.148023575544357,0.85398256778717,-0.5202556848526,0.00691878609359264,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.988860845565796,0.0708148032426834,-0.13091829419136,0.834573805332184,-0.550449788570404,-0.0221719611436129,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.990515828132629,0.087090939283371,-0.106271043419838,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.904228806495667,-0.397547334432602,-0.155969187617302,0.873746514320374,-0.463690847158432,-0.146826222538948,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.873746514320374,-0.463690847158432,-0.146826222538948,0.846303999423981,-0.524910986423492,-0.0907637998461723,0.794481456279755,-0.603172719478607,-0.0705816969275475,0.996402859687805,0.0495557300746441,0.0687424540519714,0.996081113815308,0.0883794128894806,0.00336791947484016,0.904228806495667,-0.397547334432602,-0.155969187617302,0.92946070432663,-0.337410181760788,-0.149188429117203,0.996402859687805,0.0495557300746441,0.0687424540519714,0.92946070432663,-0.337410181760788,-0.149188429117203,0.941188633441925,-0.298583924770355,-0.158151000738144,0.979617714881897,0.0102590182796121,-0.200608760118484,0.915288627147675,-0.384901762008667,-0.118732027709484,0.932737112045288,-0.342042773962021,-0.114053167402744,0.972169041633606,-0.163636535406113,-0.167661264538765,0.953488290309906,-0.24926321208477,-0.169493049383163,0.915288627147675,-0.384901762008667,-0.118732027709484,0.953488290309906,-0.24926321208477,-0.169493049383163,0.941188633441925,-0.298583924770355,-0.158151000738144,0.900180280208588,-0.423967570066452,-0.0996347591280937, +0.967421650886536,0.111605174839497,-0.227243483066559,0.944517731666565,0.0760102942585945,-0.319544553756714,0.972169041633606,-0.163636535406113,-0.167661264538765,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.967421650886536,0.111605174839497,-0.227243483066559,0.989674210548401,-0.0294235963374376,-0.140282735228539,0.986385881900787,0.129490092396736,-0.101366467773914,0.9805948138237,0.130027592182159,-0.146719142794609,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.976446330547333,-0.207822889089584,-0.057985320687294,0.998157441616058,0.0592895559966564,0.0129011496901512,0.990121841430664,0.132592484354973,-0.0455840602517128,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.990121841430664,0.132592484354973,-0.0455840602517128,0.986385881900787,0.129490092396736,-0.101366467773914,0.993456125259399,-0.0716922953724861,-0.0889109894633293,0.964100778102875,0.111388944089413,0.241044074296951,0.988234162330627,0.126211360096931,0.0863936245441437,0.998157441616058,0.0592895559966564,0.0129011496901512,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.964100778102875,0.111388944089413,0.241044074296951,0.99981564283371,-0.00769660109654069,0.0175912491977215,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.978084087371826,0.152315065264702,0.141956150531769,0.967262208461761,-0.213494047522545,-0.137200877070427,0.95521467924118,-0.211122363805771,-0.207345873117447,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.967262208461761,-0.213494047522545,-0.137200877070427,0.993071913719177,-0.0981457382440567,-0.0646177679300308,0.997809410095215,-0.0654270350933075,-0.00978597346693277,0.979054927825928,-0.184137359261513,-0.086860828101635,0.928049683570862,0.215501263737679,-0.303781151771545,0.944020211696625,0.193889617919922,-0.266894608736038,0.981041789054871,-0.0920712798833847,-0.170528396964073,0.960871279239655,-0.0276883840560913,-0.275608122348785,0.928049683570862,0.215501263737679,-0.303781151771545, +0.960871279239655,-0.0276883840560913,-0.275608122348785,0.952481865882874,0.000842949375510216,-0.304594099521637,0.95380312204361,0.19058008491993,-0.232247248291969,0.921732008457184,-0.168077379465103,-0.349514126777649,0.904816269874573,-0.24091811478138,-0.351092487573624,0.942210137844086,-0.189072623848915,-0.276571184396744,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.921732008457184,-0.168077379465103,-0.349514126777649,0.955438911914825,-0.0740529075264931,-0.285749405622482,0.952481865882874,0.000842949375510216,-0.304594099521637,0.94556999206543,-0.0409093052148819,-0.322837442159653,0.989654898643494,-0.0581933557987213,0.131135925650597,0.994931936264038,0.0260696522891521,0.0971127524971962,0.942210137844086,-0.189072623848915,-0.276571184396744,0.895867526531219,-0.252381771802902,-0.365684121847153,0.989654898643494,-0.0581933557987213,0.131135925650597,0.895867526531219,-0.252381771802902,-0.365684121847153,0.78961306810379,-0.233641311526299,-0.567382454872131,0.819509923458099,-0.0678163841366768,-0.569038331508636,0.789911985397339,-0.140332266688347,-0.596947133541107,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.753824532032013,0.0120829222723842,-0.656964600086212,0.713024973869324,-0.114775560796261,-0.691680490970612,0.789911985397339,-0.140332266688347,-0.596947133541107,0.713024973869324,-0.114775560796261,-0.691680490970612,0.78961306810379,-0.233641311526299,-0.567382454872131,0.833502888679504,-0.23296232521534,-0.501000463962555,0.846345007419586,0.0378726609051228,-0.53128707408905,0.655481338500977,0.0419433489441872,-0.754045724868774,0.753824532032013,0.0120829222723842,-0.656964600086212,0.866058588027954,0.0650843977928162,-0.495688021183014,0.846345007419586,0.0378726609051228,-0.53128707408905,0.866058588027954,0.0650843977928162,-0.495688021183014,0.912824213504791,0.0662926584482193,-0.402935802936554,0.91331148147583,0.0418378300964832,-0.405106961727142,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.929381966590881,-0.123729966580868,-0.347764313220978, +0.968531847000122,-0.04851333796978,-0.24411541223526,0.935791373252869,0.0217018183320761,-0.351885586977005,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.935791373252869,0.0217018183320761,-0.351885586977005,0.912824213504791,0.0662926584482193,-0.402935802936554,0.907388210296631,0.0635263249278069,-0.415464758872986,0.980044305324554,-0.0478119067847729,0.192943409085274,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.968531847000122,-0.04851333796978,-0.24411541223526,0.966464221477509,-0.141532048583031,-0.214278906583786,0.980044305324554,-0.0478119067847729,0.192943409085274,0.966464221477509,-0.141532048583031,-0.214278906583786,0.884316444396973,-0.198062226176262,-0.422795385122299,0.976782023906708,-0.096743531525135,-0.191147983074188,0.788994014263153,-0.203541442751884,-0.579706132411957,0.799626886844635,-0.163402855396271,-0.577837646007538,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.768566012382507,-0.143427550792694,-0.62348610162735,0.788994014263153,-0.203541442751884,-0.579706132411957,0.768566012382507,-0.143427550792694,-0.62348610162735,0.884316444396973,-0.198062226176262,-0.422795385122299,0.862016081809998,-0.237058743834496,-0.448030591011047,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.767914116382599,-0.0610295981168747,-0.637638807296753,0.813247382640839,0.00783070549368858,-0.58186537027359,0.775458693504333,-0.0451674237847328,-0.62978059053421,0.813247382640839,0.00783070549368858,-0.58186537027359,0.823549389839172,0.0683218166232109,-0.563115000724792,0.819261372089386,-0.0346764139831066,-0.572370767593384,0.803298056125641,-0.115441992878914,-0.584281802177429,0.792401313781738,-0.21995422244072,-0.568964242935181,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.842628657817841,0.0312162972986698,-0.537589430809021,0.803298056125641,-0.115441992878914,-0.584281802177429,0.842628657817841,0.0312162972986698,-0.537589430809021,0.823549389839172,0.0683218166232109,-0.563115000724792, +0.82582426071167,0.0285451002418995,-0.563204646110535,0.993614196777344,-0.112306877970695,0.0108647383749485,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.883993804454803,-0.0738347396254539,-0.461631268262863,0.868971228599548,-0.212771654129028,-0.446785569190979,0.993614196777344,-0.112306877970695,0.0108647383749485,0.868971228599548,-0.212771654129028,-0.446785569190979,0.692737460136414,-0.268014371395111,-0.669539391994476,0.780752301216125,-0.130897298455238,-0.610976099967957,0.513055562973022,-0.300618588924408,-0.803991615772247,0.516933262348175,-0.230008617043495,-0.824546039104462,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.469770878553391,-0.16160424053669,-0.867870628833771,0.513055562973022,-0.300618588924408,-0.803991615772247,0.469770878553391,-0.16160424053669,-0.867870628833771,0.692737460136414,-0.268014371395111,-0.669539391994476,0.625449419021606,-0.363071113824844,-0.690646409988403,0.528671145439148,-0.128377139568329,-0.839062631130219,0.408123046159744,-0.107793182134628,-0.906540811061859,0.458707094192505,-0.0384136624634266,-0.887756824493408,0.52849805355072,0.0252384264022112,-0.848559260368347,0.528671145439148,-0.128377139568329,-0.839062631130219,0.52849805355072,0.0252384264022112,-0.848559260368347,0.576102674007416,0.0398704931139946,-0.816404342651367,0.56365704536438,-0.122223049402237,-0.816916227340698,0.516984581947327,-0.207487523555756,-0.830467224121094,0.469946354627609,-0.278394103050232,-0.837643802165985,0.532904505729675,-0.147325813770294,-0.833251416683197,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.516984581947327,-0.207487523555756,-0.830467224121094,0.584401726722717,-0.0519294179975986,-0.809801161289215,0.576102674007416,0.0398704931139946,-0.816404342651367,0.560758829116821,-0.0380145087838173,-0.82710599899292,0.697140097618103,-0.0760893598198891,-0.712885737419128,0.635299921035767,-0.0795372202992439,-0.768158614635468,0.532904505729675,-0.147325813770294,-0.833251416683197,0.464342623949051,-0.191317722201347,-0.864744663238525, +0.697140097618103,-0.0760893598198891,-0.712885737419128,0.464342623949051,-0.191317722201347,-0.864744663238525,0.413349270820618,-0.204832509160042,-0.8872349858284,0.404185056686401,-0.0720401108264923,-0.911835968494415,0.373075157403946,-0.292190045118332,-0.880590617656708,0.369658052921295,-0.29566553235054,-0.880871653556824,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.372428387403488,-0.163693055510521,-0.913510680198669,0.373075157403946,-0.292190045118332,-0.880590617656708,0.372428387403488,-0.163693055510521,-0.913510680198669,0.413349270820618,-0.204832509160042,-0.8872349858284,0.400332540273666,-0.2842738032341,-0.87116140127182,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.346707135438919,-0.0998685359954834,-0.932641685009003,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.370016396045685,-0.0936941131949425,-0.9242884516716,0.365274101495743,-0.0245678797364235,-0.930575728416443,0.405421048402786,0.0109599707648158,-0.914064407348633,0.357091963291168,-0.0802728161215782,-0.93061363697052,0.364152193069458,-0.256926089525223,-0.895199477672577,0.327495545148849,-0.333733320236206,-0.883950591087341,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.364152193069458,-0.256926089525223,-0.895199477672577,0.408549249172211,-0.0472298040986061,-0.911513447761536,0.405421048402786,0.0109599707648158,-0.914064407348633,0.395990818738937,-0.0959687009453773,-0.913225829601288,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.18182772397995,0.253345400094986,0.950134098529816,0.0751021802425385,0.226091757416725,0.971206486225128,-0.00683469092473388,-0.0465485118329525,0.998892605304718,0.0751021802425385,0.226091757416725,0.971206486225128,-0.18182772397995,0.253345400094986,0.950134098529816,-0.130153819918633,0.193926721811295,0.972343742847443,0.208869874477386,0.164753541350365,0.963965654373169,0.0751021802425385,0.226091757416725,0.971206486225128, +0.208869874477386,0.164753541350365,0.963965654373169,0.496378749608994,0.117570020258427,0.860107839107513,0.361446797847748,0.185934022068977,0.913665473461151,0.145520091056824,-0.0377094373106956,0.988636374473572,-0.00683469092473388,-0.0465485118329525,0.998892605304718,0.0751021802425385,0.226091757416725,0.971206486225128,0.361446797847748,0.185934022068977,0.913665473461151,0.339927136898041,0.0439854599535465,-0.939422607421875,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.331362664699554,0.0784346461296082,-0.940237700939178,0.355741113424301,0.129971653223038,-0.925502955913544,-0.374680399894714,0.128914713859558,0.91814786195755,-0.307092875242233,0.373005419969559,0.875534653663635,-0.240157574415207,0.313670128583908,0.918659508228302,-0.393057554960251,0.061814084649086,0.917433798313141,-0.393057554960251,0.061814084649086,0.917433798313141,-0.240157574415207,0.313670128583908,0.918659508228302,-0.18182772397995,0.253345400094986,0.950134098529816,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.387588620185852,0.0575357675552368,0.920035183429718,-0.459225565195084,0.249145716428757,0.852665364742279,-0.833136200904846,0.381204217672348,0.400708734989166,-0.532146513462067,0.0696193277835846,0.843785047531128,-0.532146513462067,0.0696193277835846,0.843785047531128,-0.833136200904846,0.381204217672348,0.400708734989166,-0.644018173217773,0.43055859208107,0.632344722747803,-0.470575630664825,0.114327363669872,0.87492161989212,-0.533286035060883,-0.0159701611846685,0.845784187316895,-0.472881108522415,0.383732289075851,0.793179035186768,-0.395541936159134,0.355704635381699,0.846770763397217,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.561247766017914,0.0271253939718008,0.827203333377838,-0.395541936159134,0.355704635381699,0.846770763397217,-0.256543427705765,0.307984679937363,0.916150033473969,-0.432608723640442,0.0525416769087315,0.900049567222595,-0.652534902095795,0.131031826138496,0.746343612670898,-0.481347262859344,0.350065946578979,0.803591012954712,-0.92929071187973,0.286719083786011,0.232832327485085, +-0.877387881278992,0.131995260715485,0.461267381906509,-0.877387881278992,0.131995260715485,0.461267381906509,-0.92929071187973,0.286719083786011,0.232832327485085,-0.738191425800323,0.373619168996811,0.561677932739258,-0.736716389656067,0.168893858790398,0.654770076274872,-0.781746685504913,0.12085734307766,0.611772418022156,-0.650364398956299,0.58708518743515,0.482034385204315,-0.544596552848816,0.574981093406677,0.610582768917084,-0.755209267139435,0.140739098191261,0.640196442604065,-0.755209267139435,0.140739098191261,0.640196442604065,-0.544596552848816,0.574981093406677,0.610582768917084,-0.340317577123642,0.527058899402618,0.778712213039398,-0.593219518661499,0.173843711614609,0.786046326160431,-0.886231780052185,0.167720913887024,0.431813508272171,-0.710642516613007,0.402679920196533,0.576919555664063,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.950192093849182,0.178449869155884,0.25552025437355,-0.950192093849182,0.178449869155884,0.25552025437355,-0.894535183906555,0.430422931909561,-0.120593905448914,-0.826912581920624,0.543511629104614,0.14425890147686,-0.886572659015656,0.216122582554817,0.408998668193817,-0.899417638778687,0.0698455348610878,0.431473612785339,-0.834043562412262,0.422363489866257,0.354937255382538,-0.7409907579422,0.431041389703751,0.51491379737854,-0.870330512523651,0.153981164097786,0.467776238918304,-0.870330512523651,0.153981164097786,0.467776238918304,-0.7409907579422,0.431041389703751,0.51491379737854,-0.575689733028412,0.43614661693573,0.691633939743042,-0.762375354766846,0.213708147406578,0.610829532146454,-0.84820830821991,0.0227051451802254,0.52917605638504,-0.703601121902466,0.332484751939774,0.628012180328369,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.932284593582153,0.0273391101509333,0.360690951347351,-0.906713783740997,0.389572143554688,-0.161566227674484,-0.909272134304047,0.416106522083282,-0.00892667844891548,-0.933976233005524,0.0939302369952202,0.344768702983856,-0.881876766681671,0.156258404254913,0.444833248853683, +-0.802801370620728,0.432132750749588,0.410817712545395,-0.722085058689117,0.413335591554642,0.554749369621277,-0.850952863693237,0.11118795722723,0.513338506221771,-0.850952863693237,0.11118795722723,0.513338506221771,-0.722085058689117,0.413335591554642,0.554749369621277,-0.568908989429474,0.364634901285172,0.737145841121674,-0.825584471225739,0.0556592233479023,0.561526894569397,-0.980362057685852,0.185719788074493,-0.066319964826107,-0.866828918457031,0.469911992549896,0.166704028844833,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.937031865119934,0.241287082433701,-0.252491444349289,-0.848030388355255,0.385268777608871,-0.363884925842285,-0.899009644985199,0.433888167142868,0.0593527853488922,-0.962526738643646,0.252493977546692,0.0989405512809753,-0.995763719081879,0.0690291151404381,0.0607419088482857,-0.907611906528473,0.413802981376648,0.0707637891173363,-0.89244532585144,0.416358262300491,0.173744335770607,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.992144286632538,0.102885209023952,0.0711642652750015,-0.89244532585144,0.416358262300491,0.173744335770607,-0.830115258693695,0.431543350219727,0.353099137544632,-0.984815239906311,0.116283245384693,0.128907635807991,-0.945272922515869,0.00988496094942093,0.326130986213684,-0.837620437145233,0.464953988790512,0.286722391843796,-0.80746865272522,0.463813126087189,-0.364515721797943,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.996316254138947,-0.0288681052625179,0.0807493105530739,-0.80746865272522,0.463813126087189,-0.364515721797943,-0.865684866905212,0.45961195230484,-0.198359549045563,-0.998003959655762,0.0502657182514668,0.0382281504571438,-0.955795884132385,0.283257216215134,0.0788643434643745,-0.897977590560913,0.43198174238205,0.0838346183300018,-0.878231346607208,0.419936746358871,0.228829219937325,-0.953635692596436,0.236451253294945,0.186198204755783,-0.953635692596436,0.236451253294945,0.186198204755783,-0.878231346607208,0.419936746358871,0.228829219937325, +-0.801896631717682,0.384813547134399,0.457034409046173,-0.930492401123047,0.117642223834991,0.346906840801239,-0.999700367450714,0.0132086621597409,0.0206089336425066,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.993033885955811,0.112544201314449,-0.0348907858133316,-0.877792656421661,0.359070271253586,-0.317094057798386,-0.896360754966736,0.419472932815552,-0.143456131219864,-0.976750731468201,0.21237450838089,-0.029242055490613,0.98191910982132,-0.0157348196953535,-0.188646033406258,0.988096594810486,0.0418830551207066,-0.148023575544357,0.967489182949066,0.073288656771183,-0.242060959339142,0.919324100017548,0.0491604432463646,-0.390418291091919,0.993068099021912,0.097786158323288,-0.065219409763813,0.996081113815308,0.0883794128894806,0.00336791947484016,0.992337584495544,0.0719796568155289,0.100424520671368,0.994863033294678,0.0826026052236557,-0.0585185252130032,0.921634495258331,0.0250504910945892,-0.387249529361725,0.944517731666565,0.0760102942585945,-0.319544553756714,0.930461645126343,0.044032908976078,-0.36373382806778,0.89024543762207,0.0432123914361,-0.453426659107208,0.989431262016296,0.136282756924629,-0.0495256967842579,0.988234162330627,0.126211360096931,0.0863936245441437,0.994628012180328,-0.00375852175056934,0.103445485234261,0.99705582857132,0.0125236827880144,-0.0756492763757706,0.976457178592682,0.162414789199829,-0.141960471868515,0.944020211696625,0.193889617919922,-0.266894608736038,0.928477048873901,0.121489353477955,-0.350956588983536,0.925759255886078,0.076020248234272,-0.37039253115654,0.990025520324707,0.120999224483967,-0.072171114385128,0.994931936264038,0.0260696522891521,0.0971127524971962,0.940796434879303,0.037529218941927,0.336888253688812,0.996961891651154,0.0540988482534885,0.0560385398566723,0.459886282682419,0.0185286644846201,-0.887784481048584,0.655481338500977,0.0419433489441872,-0.754045724868774,0.547591149806976,0.0530366972088814,-0.835063576698303, +0.288455188274384,0.0432411171495914,-0.95651650428772,0.95409882068634,0.0348662063479424,-0.297455161809921,0.996129870414734,0.0115834577009082,-0.0871277749538422,0.999887347221375,-0.00283974967896938,0.0147343929857016,0.95315283536911,0.0197086539119482,-0.301846146583557,0.550222158432007,-0.0851126983761787,-0.830669283866882,0.671091139316559,-0.0516998134553432,-0.739570081233978,0.651831209659576,-0.0200693961232901,-0.758098483085632,0.41193625330925,-0.00254437467083335,-0.911209106445313,0.868885338306427,-0.0424795784056187,-0.493187189102173,0.956500828266144,-0.0663088783621788,-0.284093648195267,0.948409974575043,-0.0373019464313984,-0.314844697713852,0.844007194042206,-0.0501125529408455,-0.533985614776611,0.239294335246086,-0.0961685702204704,-0.966172754764557,0.408123046159744,-0.107793182134628,-0.906540811061859,0.482545673847198,-0.0569966733455658,-0.874014258384705,0.287955820560455,-0.0220146402716637,-0.95739072561264,0.590964138507843,-0.103098534047604,-0.800082564353943,0.635299921035767,-0.0795372202992439,-0.768158614635468,0.555411875247955,0.00989418476819992,-0.83151650428772,0.441971808671951,-0.0473373271524906,-0.895779073238373,0.19024096429348,-0.0551951602101326,-0.980184614658356,0.323296844959259,-0.0786203294992447,-0.943026006221771,0.368370145559311,-0.02103091776371,-0.929441332817078,0.157864987850189,0.0144887296482921,-0.987354516983032,0.324348568916321,-0.0177072640508413,-0.945771872997284,0.331362664699554,0.0784346461296082,-0.940237700939178,0.151160880923271,6.54786272207275e-05,-0.988509178161621,0.160808861255646,-0.0394644662737846,-0.986196279525757,0.794481456279755,-0.603172719478607,-0.0705816969275475,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.734329581260681,-0.672811150550842,-0.0899177864193916,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.794942736625671,-0.604522109031677,-0.0511786974966526,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.786744356155396,-0.578907549381256,-0.21424126625061,0.734329581260681,-0.672811150550842,-0.0899177864193916, +0.734329581260681,-0.672811150550842,-0.0899177864193916,0.786744356155396,-0.578907549381256,-0.21424126625061,0.549508213996887,-0.764573931694031,-0.336849242448807,0.717021465301514,-0.693082571029663,-0.074274830520153,0.791650235652924,-0.602909505367279,-0.0989441126585007,0.734329581260681,-0.672811150550842,-0.0899177864193916,0.717021465301514,-0.693082571029663,-0.074274830520153,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.837749600410461,-0.538509607315063,-0.090460017323494,0.791381359100342,-0.604468882083893,-0.0912846848368645,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.976446330547333,-0.207822889089584,-0.057985320687294,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.837749600410461,-0.538509607315063,-0.090460017323494,0.837749600410461,-0.538509607315063,-0.090460017323494,0.977977633476257,-0.189060762524605,-0.0884073972702026,0.993456125259399,-0.0716922953724861,-0.0889109894633293,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.791381359100342,-0.604468882083893,-0.0912846848368645,0.837749600410461,-0.538509607315063,-0.090460017323494,0.957515180110931,-0.272919476032257,-0.0931641981005669,0.932737112045288,-0.342042773962021,-0.114053167402744,0.552260160446167,-0.79054182767868,-0.264673978090286,0.775599241256714,-0.513171076774597,-0.367561191320419,0.830363392829895,-0.453459203243256,-0.323838531970978,0.801824152469635,-0.544710993766785,-0.245698779821396,0.775599241256714,-0.513171076774597,-0.367561191320419,0.904816269874573,-0.24091811478138,-0.351092487573624,0.921732008457184,-0.168077379465103,-0.349514126777649,0.830363392829895,-0.453459203243256,-0.323838531970978,0.830363392829895,-0.453459203243256,-0.323838531970978,0.921732008457184,-0.168077379465103,-0.349514126777649,0.94556999206543,-0.0409093052148819,-0.322837442159653,0.947976529598236,-0.151237607002258,-0.280121088027954,0.801824152469635,-0.544710993766785,-0.245698779821396, +0.830363392829895,-0.453459203243256,-0.323838531970978,0.947976529598236,-0.151237607002258,-0.280121088027954,0.95521467924118,-0.211122363805771,-0.207345873117447,0.532298564910889,-0.759147047996521,-0.374638319015503,0.754648149013519,-0.505985617637634,-0.417713731527328,0.803503513336182,-0.41280871629715,-0.42891851067543,0.758493363857269,-0.496665269136429,-0.421913862228394,0.754648149013519,-0.505985617637634,-0.417713731527328,0.929381966590881,-0.123729966580868,-0.347764313220978,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.803503513336182,-0.41280871629715,-0.42891851067543,0.803503513336182,-0.41280871629715,-0.42891851067543,0.912747085094452,-0.0480619259178638,-0.405688285827637,0.907388210296631,0.0635263249278069,-0.415464758872986,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.758493363857269,-0.496665269136429,-0.421913862228394,0.803503513336182,-0.41280871629715,-0.42891851067543,0.88547945022583,-0.0156719069927931,-0.464414298534393,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.435355752706528,-0.743057668209076,-0.508262455463409,0.551320016384125,-0.643834948539734,-0.530587255954742,0.632389008998871,-0.593713819980621,-0.497582167387009,0.617779731750488,-0.62035059928894,-0.483232170343399,0.551320016384125,-0.643834948539734,-0.530587255954742,0.792401313781738,-0.21995422244072,-0.568964242935181,0.803298056125641,-0.115441992878914,-0.584281802177429,0.632389008998871,-0.593713819980621,-0.497582167387009,0.632389008998871,-0.593713819980621,-0.497582167387009,0.803298056125641,-0.115441992878914,-0.584281802177429,0.82582426071167,0.0285451002418995,-0.563204646110535,0.827804982662201,-0.130916640162468,-0.54552698135376,0.617779731750488,-0.62035059928894,-0.483232170343399,0.632389008998871,-0.593713819980621,-0.497582167387009,0.827804982662201,-0.130916640162468,-0.54552698135376,0.799626886844635,-0.163402855396271,-0.577837646007538,0.316736936569214,-0.703204691410065,-0.636538326740265,0.33041450381279,-0.654642522335052,-0.679903924465179, +0.379265308380127,-0.640037715435028,-0.668213665485382,0.381387948989868,-0.675574779510498,-0.630984902381897,0.33041450381279,-0.654642522335052,-0.679903924465179,0.469946354627609,-0.278394103050232,-0.837643802165985,0.516984581947327,-0.207487523555756,-0.830467224121094,0.379265308380127,-0.640037715435028,-0.668213665485382,0.379265308380127,-0.640037715435028,-0.668213665485382,0.516984581947327,-0.207487523555756,-0.830467224121094,0.560758829116821,-0.0380145087838173,-0.82710599899292,0.547020196914673,-0.186133503913879,-0.816163718700409,0.381387948989868,-0.675574779510498,-0.630984902381897,0.379265308380127,-0.640037715435028,-0.668213665485382,0.547020196914673,-0.186133503913879,-0.816163718700409,0.516933262348175,-0.230008617043495,-0.824546039104462,0.2781702876091,-0.682922065258026,-0.675454378128052,0.270437836647034,-0.666318237781525,-0.694898009300232,0.28106427192688,-0.652657389640808,-0.703591704368591,0.280835896730423,-0.693528056144714,-0.663438141345978,0.270437836647034,-0.666318237781525,-0.694898009300232,0.327495545148849,-0.333733320236206,-0.883950591087341,0.364152193069458,-0.256926089525223,-0.895199477672577,0.28106427192688,-0.652657389640808,-0.703591704368591,0.28106427192688,-0.652657389640808,-0.703591704368591,0.364152193069458,-0.256926089525223,-0.895199477672577,0.395990818738937,-0.0959687009453773,-0.913225829601288,0.383055806159973,-0.260195881128311,-0.886321723461151,0.280835896730423,-0.693528056144714,-0.663438141345978,0.28106427192688,-0.652657389640808,-0.703591704368591,0.383055806159973,-0.260195881128311,-0.886321723461151,0.369658052921295,-0.29566553235054,-0.880871653556824,0.54840362071991,-0.612563192844391,-0.569227397441864,0.53996068239212,-0.642871737480164,-0.543284833431244,0.81378310918808,-0.468367487192154,-0.344076693058014,0.815972208976746,-0.399134337902069,-0.418187886476517,0.53996068239212,-0.642871737480164,-0.543284833431244,0.549508213996887,-0.764573931694031,-0.336849242448807,0.786744356155396,-0.578907549381256,-0.21424126625061, +0.81378310918808,-0.468367487192154,-0.344076693058014,0.81378310918808,-0.468367487192154,-0.344076693058014,0.786744356155396,-0.578907549381256,-0.21424126625061,0.841713070869446,-0.531293988227844,-0.0961550921201706,0.883981108665466,-0.429128289222717,-0.185543358325958,0.815972208976746,-0.399134337902069,-0.418187886476517,0.81378310918808,-0.468367487192154,-0.344076693058014,0.883981108665466,-0.429128289222717,-0.185543358325958,0.881268262863159,-0.338604122400284,-0.329717218875885,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.465979933738708,-0.871747374534607,-0.151390865445137,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.900180280208588,-0.423967570066452,-0.0996347591280937,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.87000972032547,-0.485233575105667,-0.0873582363128662,0.826983511447906,-0.553857922554016,-0.0966421365737915,0.717021465301514,-0.693082571029663,-0.074274830520153,0.465979933738708,-0.871747374534607,-0.151390865445137,0.720548927783966,-0.692194283008575,-0.0409411266446114,0.717021465301514,-0.693082571029663,-0.074274830520153,0.549508213996887,-0.764573931694031,-0.336849242448807,0.932737112045288,-0.342042773962021,-0.114053167402744,0.915288627147675,-0.384901762008667,-0.118732027709484,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.791381359100342,-0.604468882083893,-0.0912846848368645,0.915288627147675,-0.384901762008667,-0.118732027709484,0.900180280208588,-0.423967570066452,-0.0996347591280937,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.744632005691528,-0.665316045284271,-0.0536458976566792,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.452444911003113,-0.88996547460556,-0.0570528209209442, +0.791381359100342,-0.604468882083893,-0.0912846848368645,0.76719456911087,-0.635252416133881,-0.0886949673295021,0.452444911003113,-0.88996547460556,-0.0570528209209442,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.548184633255005,-0.824028193950653,-0.143077865242958,0.823449552059174,-0.54899924993515,-0.143285527825356,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.823449552059174,-0.54899924993515,-0.143285527825356,0.979054927825928,-0.184137359261513,-0.086860828101635,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.980763077735901,-0.189017683267593,-0.0487431809306145,0.976446330547333,-0.207822889089584,-0.057985320687294,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.528728008270264,-0.845035433769226,-0.0797603204846382,0.811873912811279,-0.57637494802475,-0.0930197834968567,0.809849679470062,-0.580136716365814,-0.0870912224054337,0.512580275535583,-0.856767535209656,-0.0566654987633228,0.95521467924118,-0.211122363805771,-0.207345873117447,0.967262208461761,-0.213494047522545,-0.137200877070427,0.812382161617279,-0.548754870891571,-0.197239279747009,0.801824152469635,-0.544710993766785,-0.245698779821396,0.967262208461761,-0.213494047522545,-0.137200877070427,0.979054927825928,-0.184137359261513,-0.086860828101635,0.823449552059174,-0.54899924993515,-0.143285527825356,0.812382161617279,-0.548754870891571,-0.197239279747009,0.812382161617279,-0.548754870891571,-0.197239279747009,0.823449552059174,-0.54899924993515,-0.143285527825356,0.548184633255005,-0.824028193950653,-0.143077865242958,0.549306571483612,-0.810717701911926,-0.202482223510742,0.801824152469635,-0.544710993766785,-0.245698779821396,0.812382161617279,-0.548754870891571,-0.197239279747009,0.549306571483612,-0.810717701911926,-0.202482223510742,0.552260160446167,-0.79054182767868,-0.264673978090286,0.528576493263245,-0.770433664321899,-0.356424927711487, +0.754335582256317,-0.502374529838562,-0.422608256340027,0.758316516876221,-0.517080545425415,-0.396968156099319,0.530801117420197,-0.783872842788696,-0.322170048952103,0.754335582256317,-0.502374529838562,-0.422608256340027,0.833502888679504,-0.23296232521534,-0.501000463962555,0.882255256175995,-0.269002169370651,-0.386346369981766,0.758316516876221,-0.517080545425415,-0.396968156099319,0.758316516876221,-0.517080545425415,-0.396968156099319,0.882255256175995,-0.269002169370651,-0.386346369981766,0.904816269874573,-0.24091811478138,-0.351092487573624,0.775599241256714,-0.513171076774597,-0.367561191320419,0.530801117420197,-0.783872842788696,-0.322170048952103,0.758316516876221,-0.517080545425415,-0.396968156099319,0.775599241256714,-0.513171076774597,-0.367561191320419,0.552260160446167,-0.79054182767868,-0.264673978090286,0.827796339988708,-0.0565192699432373,-0.55817449092865,0.789911985397339,-0.140332266688347,-0.596947133541107,0.751129806041718,-0.497825115919113,-0.433559864759445,0.758493363857269,-0.496665269136429,-0.421913862228394,0.789911985397339,-0.140332266688347,-0.596947133541107,0.833502888679504,-0.23296232521534,-0.501000463962555,0.754335582256317,-0.502374529838562,-0.422608256340027,0.751129806041718,-0.497825115919113,-0.433559864759445,0.751129806041718,-0.497825115919113,-0.433559864759445,0.754335582256317,-0.502374529838562,-0.422608256340027,0.528576493263245,-0.770433664321899,-0.356424927711487,0.527743816375732,-0.766555488109589,-0.365894824266434,0.758493363857269,-0.496665269136429,-0.421913862228394,0.751129806041718,-0.497825115919113,-0.433559864759445,0.527743816375732,-0.766555488109589,-0.365894824266434,0.532298564910889,-0.759147047996521,-0.374638319015503,0.489569514989853,-0.755737662315369,-0.434951156377792,0.692149102687836,-0.559550762176514,-0.455886632204056,0.728176593780518,-0.546175241470337,-0.414066940546036,0.50800234079361,-0.772281050682068,-0.381465196609497,0.692149102687836,-0.559550762176514,-0.455886632204056,0.862016081809998,-0.237058743834496,-0.448030591011047, +0.924625039100647,-0.204379692673683,-0.321399390697479,0.728176593780518,-0.546175241470337,-0.414066940546036,0.728176593780518,-0.546175241470337,-0.414066940546036,0.924625039100647,-0.204379692673683,-0.321399390697479,0.929381966590881,-0.123729966580868,-0.347764313220978,0.754648149013519,-0.505985617637634,-0.417713731527328,0.50800234079361,-0.772281050682068,-0.381465196609497,0.728176593780518,-0.546175241470337,-0.414066940546036,0.754648149013519,-0.505985617637634,-0.417713731527328,0.532298564910889,-0.759147047996521,-0.374638319015503,0.799626886844635,-0.163402855396271,-0.577837646007538,0.788994014263153,-0.203541442751884,-0.579706132411957,0.650380432605743,-0.572864532470703,-0.498830169439316,0.617779731750488,-0.62035059928894,-0.483232170343399,0.788994014263153,-0.203541442751884,-0.579706132411957,0.862016081809998,-0.237058743834496,-0.448030591011047,0.692149102687836,-0.559550762176514,-0.455886632204056,0.650380432605743,-0.572864532470703,-0.498830169439316,0.650380432605743,-0.572864532470703,-0.498830169439316,0.692149102687836,-0.559550762176514,-0.455886632204056,0.489569514989853,-0.755737662315369,-0.434951156377792,0.46382150053978,-0.740590929985046,-0.486204266548157,0.617779731750488,-0.62035059928894,-0.483232170343399,0.650380432605743,-0.572864532470703,-0.498830169439316,0.46382150053978,-0.740590929985046,-0.486204266548157,0.435355752706528,-0.743057668209076,-0.508262455463409,0.363881915807724,-0.727092683315277,-0.582173526287079,0.454631268978119,-0.647301852703094,-0.611809313297272,0.502743184566498,-0.65389758348465,-0.56539112329483,0.394593596458435,-0.746646106243134,-0.535551607608795,0.454631268978119,-0.647301852703094,-0.611809313297272,0.625449419021606,-0.363071113824844,-0.690646409988403,0.750636577606201,-0.331162452697754,-0.571730852127075,0.502743184566498,-0.65389758348465,-0.56539112329483,0.502743184566498,-0.65389758348465,-0.56539112329483,0.750636577606201,-0.331162452697754,-0.571730852127075,0.792401313781738,-0.21995422244072,-0.568964242935181, +0.551320016384125,-0.643834948539734,-0.530587255954742,0.394593596458435,-0.746646106243134,-0.535551607608795,0.502743184566498,-0.65389758348465,-0.56539112329483,0.551320016384125,-0.643834948539734,-0.530587255954742,0.435355752706528,-0.743057668209076,-0.508262455463409,0.516933262348175,-0.230008617043495,-0.824546039104462,0.513055562973022,-0.300618588924408,-0.803991615772247,0.411999702453613,-0.64815616607666,-0.640429496765137,0.381387948989868,-0.675574779510498,-0.630984902381897,0.513055562973022,-0.300618588924408,-0.803991615772247,0.625449419021606,-0.363071113824844,-0.690646409988403,0.454631268978119,-0.647301852703094,-0.611809313297272,0.411999702453613,-0.64815616607666,-0.640429496765137,0.411999702453613,-0.64815616607666,-0.640429496765137,0.454631268978119,-0.647301852703094,-0.611809313297272,0.363881915807724,-0.727092683315277,-0.582173526287079,0.339330106973648,-0.710198104381561,-0.616825580596924,0.381387948989868,-0.675574779510498,-0.630984902381897,0.411999702453613,-0.64815616607666,-0.640429496765137,0.339330106973648,-0.710198104381561,-0.616825580596924,0.316736936569214,-0.703204691410065,-0.636538326740265,0.283764809370041,-0.66997879743576,-0.6860072016716,0.305386394262314,-0.637453854084015,-0.707383692264557,0.315192133188248,-0.640316665172577,-0.700463116168976,0.295892357826233,-0.683634638786316,-0.667151749134064,0.305386394262314,-0.637453854084015,-0.707383692264557,0.400332540273666,-0.2842738032341,-0.87116140127182,0.432826220989227,-0.292234122753143,-0.852795779705048,0.315192133188248,-0.640316665172577,-0.700463116168976,0.315192133188248,-0.640316665172577,-0.700463116168976,0.432826220989227,-0.292234122753143,-0.852795779705048,0.469946354627609,-0.278394103050232,-0.837643802165985,0.33041450381279,-0.654642522335052,-0.679903924465179,0.295892357826233,-0.683634638786316,-0.667151749134064,0.315192133188248,-0.640316665172577,-0.700463116168976,0.33041450381279,-0.654642522335052,-0.679903924465179,0.316736936569214,-0.703204691410065,-0.636538326740265, +0.369658052921295,-0.29566553235054,-0.880871653556824,0.373075157403946,-0.292190045118332,-0.880590617656708,0.292161047458649,-0.664673209190369,-0.687641859054565,0.280835896730423,-0.693528056144714,-0.663438141345978,0.373075157403946,-0.292190045118332,-0.880590617656708,0.400332540273666,-0.2842738032341,-0.87116140127182,0.305386394262314,-0.637453854084015,-0.707383692264557,0.292161047458649,-0.664673209190369,-0.687641859054565,0.292161047458649,-0.664673209190369,-0.687641859054565,0.305386394262314,-0.637453854084015,-0.707383692264557,0.283764809370041,-0.66997879743576,-0.6860072016716,0.280512541532516,-0.666776180267334,-0.690450668334961,0.280835896730423,-0.693528056144714,-0.663438141345978,0.292161047458649,-0.664673209190369,-0.687641859054565,0.280512541532516,-0.666776180267334,-0.690450668334961,0.2781702876091,-0.682922065258026,-0.675454378128052,0.280512541532516,-0.666776180267334,-0.690450668334961,0.283764809370041,-0.66997879743576,-0.6860072016716,0.268839001655579,-0.678394854068756,-0.683744192123413,0.269654154777527,-0.672417044639587,-0.689305424690247,0.280512541532516,-0.666776180267334,-0.690450668334961,0.269654154777527,-0.672417044639587,-0.689305424690247,0.266016513109207,-0.684020519256592,-0.67922830581665,0.2781702876091,-0.682922065258026,-0.675454378128052,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254,0.100640043616295,-0.644241809844971,-0.758171558380127,0.121645800769329,-0.689107835292816,-0.714375793933868,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254,3.14041017190902e-06,-0.772840142250061,-0.634600639343262,0.108572572469711,-0.770943105220795,-0.627581655979156,0.100640043616295,-0.644241809844971,-0.758171558380127,0.100640043616295,-0.644241809844971,-0.758171558380127,0.108572572469711,-0.770943105220795,-0.627581655979156,0.187623992562294,-0.789631307125092,-0.584191501140594,0.175238505005836,-0.665980577468872,-0.725093960762024,0.121645800769329,-0.689107835292816,-0.714375793933868, +0.100640043616295,-0.644241809844971,-0.758171558380127,0.175238505005836,-0.665980577468872,-0.725093960762024,0.21039280295372,-0.687285780906677,-0.695250451564789,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,0.074147991836071,-0.842016756534576,-0.534331083297729,0.0812262371182442,-0.849198520183563,-0.52178943157196,7.66552119557673e-08,-0.847434222698212,-0.530900359153748,1.50747507632332e-06,-0.837431192398071,-0.546542644500732,0.0654933154582977,-0.833352625370026,-0.548847854137421,0.074147991836071,-0.842016756534576,-0.534331083297729,0.074147991836071,-0.842016756534576,-0.534331083297729,0.0654933154582977,-0.833352625370026,-0.548847854137421,0.126767873764038,-0.810833990573883,-0.571382582187653,0.135613188147545,-0.819313228130341,-0.557077050209045,0.0812262371182442,-0.849198520183563,-0.52178943157196,0.074147991836071,-0.842016756534576,-0.534331083297729,0.135613188147545,-0.819313228130341,-0.557077050209045,0.143658846616745,-0.826772511005402,-0.543883562088013,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,0.08671685308218,-0.854544460773468,-0.512087762355804,0.0917136743664742,-0.858900249004364,-0.503864109516144,2.11691016716031e-07,-0.861630260944366,-0.5075364112854,-8.00689790025899e-08,-0.855719208717346,-0.517440378665924,0.0812262371182442,-0.849198520183563,-0.52178943157196,0.08671685308218,-0.854544460773468,-0.512087762355804,0.08671685308218,-0.854544460773468,-0.512087762355804,0.0812262371182442,-0.849198520183563,-0.52178943157196,0.143658846616745,-0.826772511005402,-0.543883562088013,0.150850802659988,-0.83289909362793,-0.532468795776367,0.0917136743664742,-0.858900249004364,-0.503864109516144,0.08671685308218,-0.854544460773468,-0.512087762355804,0.150850802659988,-0.83289909362793,-0.532468795776367,0.159025937318802,-0.83882075548172,-0.520663559436798,1.08920303318882e-05,-0.866985976696014,-0.498332589864731,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424, +0.0966933369636536,-0.861993134021759,-0.497612535953522,0.101403087377548,-0.861836791038513,-0.496945470571518,-2.48083615588257e-05,-0.867724895477295,-0.497044652700424,1.21576767924125e-05,-0.865489721298218,-0.500926792621613,0.0917136743664742,-0.858900249004364,-0.503864109516144,0.0966933369636536,-0.861993134021759,-0.497612535953522,0.0966933369636536,-0.861993134021759,-0.497612535953522,0.0917136743664742,-0.858900249004364,-0.503864109516144,0.159025937318802,-0.83882075548172,-0.520663559436798,0.167160853743553,-0.843749284744263,-0.510043561458588,0.101403087377548,-0.861836791038513,-0.496945470571518,0.0966933369636536,-0.861993134021759,-0.497612535953522,0.167160853743553,-0.843749284744263,-0.510043561458588,0.175976604223251,-0.845148921012878,-0.504733026027679,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,0.105507344007492,-0.874854803085327,-0.472754925489426,0.106382317841053,-0.905230820178986,-0.411387741565704,1.40844065299461e-07,-0.881643056869507,-0.471916824579239,1.08920303318882e-05,-0.866985976696014,-0.498332589864731,0.101403087377548,-0.861836791038513,-0.496945470571518,0.105507344007492,-0.874854803085327,-0.472754925489426,0.105507344007492,-0.874854803085327,-0.472754925489426,0.101403087377548,-0.861836791038513,-0.496945470571518,0.175976604223251,-0.845148921012878,-0.504733026027679,0.185407146811485,-0.859559714794159,-0.476215541362762,0.106382317841053,-0.905230820178986,-0.411387741565704,0.105507344007492,-0.874854803085327,-0.472754925489426,0.185407146811485,-0.859559714794159,-0.476215541362762,0.191112920641899,-0.88888144493103,-0.416372090578079,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,0.104525603353977,-0.930538654327393,-0.350958853960037,0.103182874619961,-0.946386456489563,-0.306114196777344,-4.99726660052602e-08,-0.938619017601013,-0.344955414533615,-7.61720073683136e-08,-0.913774073123932,-0.406222760677338, +0.106382317841053,-0.905230820178986,-0.411387741565704,0.104525603353977,-0.930538654327393,-0.350958853960037,0.104525603353977,-0.930538654327393,-0.350958853960037,0.106382317841053,-0.905230820178986,-0.411387741565704,0.191112920641899,-0.88888144493103,-0.416372090578079,0.192752718925476,-0.913287758827209,-0.358819991350174,0.103182874619961,-0.946386456489563,-0.306114196777344,0.104525603353977,-0.930538654327393,-0.350958853960037,0.192752718925476,-0.913287758827209,-0.358819991350174,0.194354563951492,-0.929410934448242,-0.313722282648087,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,1.04003063938762e-07,-0.961563885211945,-0.274581253528595,0.103843532502651,-0.955405533313751,-0.276436030864716,0.106286622583866,-0.957814037799835,-0.267012119293213,1.04003063938762e-07,-0.961563885211945,-0.274581253528595,1.45466472645239e-07,-0.953280627727509,-0.30208620429039,0.103182874619961,-0.946386456489563,-0.306114196777344,0.103843532502651,-0.955405533313751,-0.276436030864716,0.103843532502651,-0.955405533313751,-0.276436030864716,0.103182874619961,-0.946386456489563,-0.306114196777344,0.194354563951492,-0.929410934448242,-0.313722282648087,0.197768926620483,-0.937976479530334,-0.284758746623993,0.106286622583866,-0.957814037799835,-0.267012119293213,0.103843532502651,-0.955405533313751,-0.276436030864716,0.197768926620483,-0.937976479530334,-0.284758746623993,0.202338442206383,-0.939430713653564,-0.276639044284821,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,0.110112830996513,-0.961680829524994,-0.251087933778763,0.115813940763474,-0.971455991268158,-0.207027420401573,2.29705552357018e-08,-0.968259990215302,-0.249945446848869,-1.50766297224436e-08,-0.964186728000641,-0.265224367380142,0.106286622583866,-0.957814037799835,-0.267012119293213,0.110112830996513,-0.961680829524994,-0.251087933778763,0.110112830996513,-0.961680829524994,-0.251087933778763,0.106286622583866,-0.957814037799835,-0.267012119293213,0.202338442206383,-0.939430713653564,-0.276639044284821, +0.208529978990555,-0.943388044834137,-0.257942348718643,0.115813940763474,-0.971455991268158,-0.207027420401573,0.110112830996513,-0.961680829524994,-0.251087933778763,0.208529978990555,-0.943388044834137,-0.257942348718643,0.215340182185173,-0.953982889652252,-0.20867483317852,0,-0.98962664604187,-0.14366252720356,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,0.122812509536743,-0.979302108287811,-0.160886213183403,0.129827231168747,-0.982599139213562,-0.132830247282982,-2.04593568753353e-08,-0.985767126083374,-0.168116256594658,-8.86722417714481e-10,-0.97772490978241,-0.209890305995941,0.115813940763474,-0.971455991268158,-0.207027420401573,0.122812509536743,-0.979302108287811,-0.160886213183403,0.122812509536743,-0.979302108287811,-0.160886213183403,0.115813940763474,-0.971455991268158,-0.207027420401573,0.215340182185173,-0.953982889652252,-0.20867483317852,0.221424594521523,-0.962188959121704,-0.158630236983299,0.129827231168747,-0.982599139213562,-0.132830247282982,0.122812509536743,-0.979302108287811,-0.160886213183403,0.221424594521523,-0.962188959121704,-0.158630236983299,0.227278470993042,-0.965896666049957,-0.124049283564091,3.23932340506872e-06,-0.999818086624146,0.01907654479146,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.13507716357708,-0.990570545196533,0.0228945054113865,-7.58247153953562e-09,-0.996479570865631,-0.083835743367672,0,-0.98962664604187,-0.14366252720356,0.129827231168747,-0.982599139213562,-0.132830247282982,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.129827231168747,-0.982599139213562,-0.132830247282982,0.227278470993042,-0.965896666049957,-0.124049283564091,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.13507716357708,-0.990570545196533,0.0228945054113865,0.134437203407288,-0.988150238990784,-0.0740657299757004,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.227585732936859,-0.973401427268982,0.026349263265729, +2.66085771727376e-06,-0.990090310573578,-0.140432059764862,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,0.137488380074501,-0.990294277667999,0.020353626459837,0.138497367501259,-0.980665802955627,-0.138249680399895,-5.3940652833262e-06,-0.999833583831787,0.0182425584644079,3.23932340506872e-06,-0.999818086624146,0.01907654479146,0.13507716357708,-0.990570545196533,0.0228945054113865,0.137488380074501,-0.990294277667999,0.020353626459837,0.137488380074501,-0.990294277667999,0.020353626459837,0.13507716357708,-0.990570545196533,0.0228945054113865,0.227585732936859,-0.973401427268982,0.026349263265729,0.228464365005493,-0.973297297954559,0.0222795214504004,0.138497367501259,-0.980665802955627,-0.138249680399895,0.137488380074501,-0.990294277667999,0.020353626459837,0.228464365005493,-0.973297297954559,0.0222795214504004,0.227555468678474,-0.966486871242523,-0.118834026157856,0.465979933738708,-0.871747374534607,-0.151390865445137,0.549508213996887,-0.764573931694031,-0.336849242448807,0.391568809747696,-0.792815148830414,-0.467030912637711,0.362464904785156,-0.903523087501526,-0.228615939617157,0.465979933738708,-0.871747374534607,-0.151390865445137,0.362464904785156,-0.903523087501526,-0.228615939617157,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.427960485219955,-0.900482714176178,-0.0773356556892395,0.327495545148849,-0.333733320236206,-0.883950591087341,0.270437836647034,-0.666318237781525,-0.694898009300232,0.254144638776779,-0.676149010658264,-0.691543877124786,0.232526928186417,-0.628938138484955,-0.741867899894714,0.270437836647034,-0.666318237781525,-0.694898009300232,0.2781702876091,-0.682922065258026,-0.675454378128052,0.266016513109207,-0.684020519256592,-0.67922830581665,0.254144638776779,-0.676149010658264,-0.691543877124786,0.105245932936668,-0.618587851524353,-0.778634905815125,2.07466973733972e-06,-0.625402569770813,-0.780302345752716,5.65663276574924e-06,-0.23056823015213,-0.973056197166443,0.178336322307587,-0.24917970597744,-0.951895833015442,0.105245932936668,-0.618587851524353,-0.778634905815125, +0.178336322307587,-0.24917970597744,-0.951895833015442,0.255999326705933,-0.267593652009964,-0.928901493549347,0.156661868095398,-0.61191338300705,-0.775254189968109,-0.15919853746891,0.261923760175705,0.951867520809174,3.52183224094915e-06,0.249689862132072,0.968325912952423,2.9084756647535e-07,0.331838518381119,0.943336188793182,-0.173236384987831,0.327362209558487,0.928882598876953,0.391568809747696,-0.792815148830414,-0.467030912637711,0.378362953662872,-0.679854929447174,-0.628202855587006,0.175238505005836,-0.665980577468872,-0.725093960762024,0.187623992562294,-0.789631307125092,-0.584191501140594,0.378362953662872,-0.679854929447174,-0.628202855587006,0.399628847837448,-0.677889943122864,-0.617059230804443,0.21039280295372,-0.687285780906677,-0.695250451564789,0.175238505005836,-0.665980577468872,-0.725093960762024,-0.0268143340945244,-0.143278241157532,0.989319086074829,5.15278725288226e-06,-0.195868358016014,0.980630159378052,3.52183224094915e-06,0.249689862132072,0.968325912952423,-0.15919853746891,0.261923760175705,0.951867520809174,-0.123336628079414,-0.0846440047025681,0.98874843120575,-0.318406999111176,-0.0321824103593826,0.9474076628685,-0.3128362596035,0.00289365672506392,0.94980263710022,-0.00683469092473388,-0.0465485118329525,0.998892605304718,0.000145562866237015,0.109267674386501,0.994012296199799,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,0.145520091056824,-0.0377094373106956,0.988636374473572,0.361446797847748,0.185934022068977,0.913665473461151,-0.127614736557007,-0.0326059870421886,0.991287708282471,-0.140483602881432,-0.389575660228729,0.910217046737671,0.230874493718147,-0.364731192588806,0.902035593986511,0.282535374164581,-0.00665364880114794,0.959233820438385,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,0.251202523708344,-0.919188618659973,0.303297936916351,0.0206445995718241,-0.99297958612442,-0.116470016539097,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,2.14158717426471e-05,-0.35622963309288,0.934398531913757, +0.529604315757751,-0.324774593114853,0.783607542514801,0.251202523708344,-0.919188618659973,0.303297936916351,0.0017736324807629,-0.989037394523621,-0.147654265165329,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.0251842811703682,-0.993472516536713,-0.111256748437881,0.00282988394610584,-0.919048488140106,-0.394134372472763,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.121410027146339,-0.550902009010315,-0.825691640377045,0.00374759756959975,-0.924582004547119,-0.380964785814285,0.0364045612514019,-0.603042602539063,-0.796877861022949,0.0756061896681786,-0.17784771323204,-0.981149315834045,0.287211626768112,-0.154459059238434,-0.945331573486328,0.121410027146339,-0.550902009010315,-0.825691640377045,0.0756061896681786,-0.17784771323204,-0.981149315834045,0.100034400820732,-0.0502437204122543,-0.993714570999146,0.341228455305099,-0.0394069999456406,-0.939153969287872,0.287211626768112,-0.154459059238434,-0.945331573486328,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538,0.370375901460648,-0.0389966443181038,-0.928063035011292,0.376688778400421,0.0253040362149477,-0.925994157791138,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,0.339927136898041,0.0439854599535465,-0.939422607421875,0.355741113424301,0.129971653223038,-0.925502955913544,0.329432427883148,0.157070621848106,-0.931022584438324,0.376688778400421,0.0253040362149477,-0.925994157791138,0.18702594935894,-0.0647337883710861,-0.980219721794128,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,1.27130106193363e-05,0.13537959754467,-0.990793883800507,0.329432427883148,0.157070621848106,-0.931022584438324,0.275702863931656,-0.086119182407856,-0.957377374172211,0.377584993839264,-0.0881532356142998,-0.921769201755524,0.327495545148849,-0.333733320236206,-0.883950591087341,0.255999326705933,-0.267593652009964,-0.928901493549347,0.255999326705933,-0.267593652009964,-0.928901493549347,0.327495545148849,-0.333733320236206,-0.883950591087341,0.232526928186417,-0.628938138484955,-0.741867899894714, +0.156661868095398,-0.61191338300705,-0.775254189968109,0.232526928186417,-0.628938138484955,-0.741867899894714,0.254144638776779,-0.676149010658264,-0.691543877124786,0.102983109652996,-0.740106999874115,-0.664557099342346,0.156661868095398,-0.61191338300705,-0.775254189968109,0.254144638776779,-0.676149010658264,-0.691543877124786,0.266016513109207,-0.684020519256592,-0.67922830581665,0.106486827135086,-0.778541445732117,-0.618493258953094,0.102983109652996,-0.740106999874115,-0.664557099342346,0.266016513109207,-0.684020519256592,-0.67922830581665,0.269654154777527,-0.672417044639587,-0.689305424690247,0.117023155093193,-0.799739181995392,-0.588831901550293,0.106486827135086,-0.778541445732117,-0.618493258953094,0.269654154777527,-0.672417044639587,-0.689305424690247,0.268839001655579,-0.678394854068756,-0.683744192123413,0.126767873764038,-0.810833990573883,-0.571382582187653,0.117023155093193,-0.799739181995392,-0.588831901550293,0.268839001655579,-0.678394854068756,-0.683744192123413,0.272227436304092,-0.695810735225677,-0.664635062217712,0.135613188147545,-0.819313228130341,-0.557077050209045,0.126767873764038,-0.810833990573883,-0.571382582187653,0.272227436304092,-0.695810735225677,-0.664635062217712,0.282901287078857,-0.715390801429749,-0.638891756534576,0.143658846616745,-0.826772511005402,-0.543883562088013,0.135613188147545,-0.819313228130341,-0.557077050209045,0.282901287078857,-0.715390801429749,-0.638891756534576,0.296085834503174,-0.734459102153778,-0.610657870769501,0.150850802659988,-0.83289909362793,-0.532468795776367,0.143658846616745,-0.826772511005402,-0.543883562088013,0.296085834503174,-0.734459102153778,-0.610657870769501,0.31199836730957,-0.75174742937088,-0.580975770950317,0.159025937318802,-0.83882075548172,-0.520663559436798,0.150850802659988,-0.83289909362793,-0.532468795776367,0.31199836730957,-0.75174742937088,-0.580975770950317,0.334459483623505,-0.768839836120605,-0.544997334480286,0.167160853743553,-0.843749284744263,-0.510043561458588,0.159025937318802,-0.83882075548172,-0.520663559436798, +0.334459483623505,-0.768839836120605,-0.544997334480286,0.359698057174683,-0.776623547077179,-0.517178118228912,0.175976604223251,-0.845148921012878,-0.504733026027679,0.167160853743553,-0.843749284744263,-0.510043561458588,0.359698057174683,-0.776623547077179,-0.517178118228912,0.381309062242508,-0.782062947750092,-0.492931127548218,0.185407146811485,-0.859559714794159,-0.476215541362762,0.175976604223251,-0.845148921012878,-0.504733026027679,0.381309062242508,-0.782062947750092,-0.492931127548218,0.398767828941345,-0.803536295890808,-0.44194307923317,0.191112920641899,-0.88888144493103,-0.416372090578079,0.185407146811485,-0.859559714794159,-0.476215541362762,0.398767828941345,-0.803536295890808,-0.44194307923317,0.413723528385162,-0.825479507446289,-0.383948534727097,0.192752718925476,-0.913287758827209,-0.358819991350174,0.191112920641899,-0.88888144493103,-0.416372090578079,0.413723528385162,-0.825479507446289,-0.383948534727097,0.424859493970871,-0.83431738615036,-0.351296126842499,0.194354563951492,-0.929410934448242,-0.313722282648087,0.192752718925476,-0.913287758827209,-0.358819991350174,0.424859493970871,-0.83431738615036,-0.351296126842499,0.42674246430397,-0.838199734687805,-0.33957627415657,0.197768926620483,-0.937976479530334,-0.284758746623993,0.194354563951492,-0.929410934448242,-0.313722282648087,0.42674246430397,-0.838199734687805,-0.33957627415657,0.423097163438797,-0.845155298709869,-0.326651573181152,0.202338442206383,-0.939430713653564,-0.276639044284821,0.197768926620483,-0.937976479530334,-0.284758746623993,0.423097163438797,-0.845155298709869,-0.326651573181152,0.426663398742676,-0.852746307849884,-0.301300495862961,0.208529978990555,-0.943388044834137,-0.257942348718643,0.202338442206383,-0.939430713653564,-0.276639044284821,0.426663398742676,-0.852746307849884,-0.301300495862961,0.433151990175247,-0.867169499397278,-0.245756685733795,0.215340182185173,-0.953982889652252,-0.20867483317852,0.208529978990555,-0.943388044834137,-0.257942348718643,0.433151990175247,-0.867169499397278,-0.245756685733795, +0.431833833456039,-0.882030606269836,-0.188524648547173,0.221424594521523,-0.962188959121704,-0.158630236983299,0.215340182185173,-0.953982889652252,-0.20867483317852,0.431833833456039,-0.882030606269836,-0.188524648547173,0.423574149608612,-0.896063446998596,-0.132872730493546,0.227278470993042,-0.965896666049957,-0.124049283564091,0.221424594521523,-0.962188959121704,-0.158630236983299,0.423574149608612,-0.896063446998596,-0.132872730493546,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.227278470993042,-0.965896666049957,-0.124049283564091,0.409292042255402,-0.909948587417603,-0.0668849647045135,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.227585732936859,-0.973401427268982,0.026349263265729,0.229717940092087,-0.971217036247253,-0.0629854127764702,0.380626738071442,-0.924605846405029,-0.0150767201557755,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.228464365005493,-0.973297297954559,0.0222795214504004,0.227585732936859,-0.973401427268982,0.026349263265729,0.343467086553574,-0.938996970653534,-0.0177501812577248,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.227555468678474,-0.966486871242523,-0.118834026157856,0.228464365005493,-0.973297297954559,0.0222795214504004,0.324251860380173,-0.941753149032593,-0.0892285332083702,0.362464904785156,-0.903523087501526,-0.228615939617157,0.214124009013176,-0.913648962974548,-0.345537900924683,0.227555468678474,-0.966486871242523,-0.118834026157856,0.362464904785156,-0.903523087501526,-0.228615939617157,0.391568809747696,-0.792815148830414,-0.467030912637711,0.187623992562294,-0.789631307125092,-0.584191501140594,0.214124009013176,-0.913648962974548,-0.345537900924683,0.193692356348038,0.278895646333694,0.940585196018219,0.248251765966415,0.283825427293777,0.926182508468628,0.243145018815994,0.320305287837982,0.91557902097702,0.197980001568794,0.325932204723358,0.924430668354034,3.14041017190902e-06,-0.772840142250061,-0.634600639343262,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254, +-0.100648067891598,-0.644245445728302,-0.758167445659637,-0.108565412461758,-0.770942389965057,-0.627583682537079,-6.04746446697391e-06,-0.632970929145813,-0.774175584316254,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,-0.121647201478481,-0.689130485057831,-0.714353680610657,-0.100648067891598,-0.644245445728302,-0.758167445659637,0.159134745597839,0.261926114559174,0.951877474784851,3.52183224094915e-06,0.249689862132072,0.968325912952423,5.15278725288226e-06,-0.195868358016014,0.980630159378052,0.0267959255725145,-0.143305033445358,0.989315748214722,0.00693589961156249,-0.0466239675879478,0.998888373374939,0.312815517187119,0.00277976063080132,0.949809849262238,0.318349808454514,-0.0322053767740726,0.947426080703735,0.123330391943455,-0.0846439674496651,0.988749265670776,-2.92354957309726e-06,-0.0841596648097038,0.996452331542969,0.000145562866237015,0.109267674386501,0.994012296199799,-0.361380368471146,0.185899093747139,0.91369891166687,-0.145488753914833,-0.0377167239785194,0.98864072561264,0.140509262681007,-0.389529824256897,0.910232782363892,0.127597525715828,-0.0325997099280357,0.991290092468262,-0.282585620880127,-0.00664947414770722,0.959219038486481,-0.230811730027199,-0.364695429801941,0.902066111564636,2.14158717426471e-05,-0.35622963309288,0.934398531913757,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,-0.251147210597992,-0.919208228588104,0.303284019231796,-0.529483556747437,-0.324605464935303,0.783759117126465,-3.08347480313387e-05,-0.965770184993744,0.259399324655533,-1.15724888019031e-05,-0.994324386119843,-0.10639151930809,-0.0206318106502295,-0.992974400520325,-0.116516247391701,-0.251147210597992,-0.919208228588104,0.303284019231796,-0.0364131145179272,-0.603021621704102,-0.796893298625946,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.00283073238097131,-0.919038116931915,-0.394158512353897,-0.00177954800892621,-0.989035606384277,-0.147665843367577, +-0.0251823868602514,-0.993472933769226,-0.111252799630165,-0.00374936335720122,-0.924578905105591,-0.380972057580948,-0.100064866244793,-0.0502386204898357,-0.993711769580841,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.287347048521042,-0.154420122504234,-0.945296883583069,-0.341300278902054,-0.0393879562616348,-0.939128696918488,-0.0755719542503357,-0.177869230508804,-0.98114800453186,-0.0364131145179272,-0.603021621704102,-0.796893298625946,-0.121401578187943,-0.550944030284882,-0.825664818286896,-0.287347048521042,-0.154420122504234,-0.945296883583069,-0.370177119970322,-0.0389829464256763,-0.928142964839935,-7.77522745920578e-06,-0.0451495386660099,-0.998980224132538,1.37286697281525e-05,0.00811344478279352,-0.999967098236084,-0.376513838768005,0.0252952426671982,-0.926065623760223,-0.355731189250946,0.129968643188477,-0.925507068634033,-0.331364512443542,0.0784306302666664,-0.940237283706665,-0.15117484331131,7.70652841310948e-05,-0.988507032394409,-0.340002924203873,0.0440143086016178,-0.939393758773804,-0.32930600643158,0.157053649425507,-0.931070148944855,1.27130106193363e-05,0.13537959754467,-0.990793883800507,-9.54232518779463e-07,-0.0522431470453739,-0.998634397983551,-0.18691797554493,-0.0647310391068459,-0.9802405834198,-0.256911754608154,-0.252870112657547,-0.932766318321228,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.377540469169617,-0.0881210491061211,-0.921790599822998,-0.275699228048325,-0.0861214324831963,-0.957378268241882,-0.189037308096886,-0.633273899555206,-0.750485897064209,-0.324144899845123,-0.359590023756027,-0.875000059604645,-0.256911754608154,-0.252870112657547,-0.932766318321228,0.468589961528778,-0.584312975406647,-0.662572145462036,0.617697060108185,-0.551855802536011,-0.560272693634033,0.882977783679962,-0.132542103528976,-0.450314283370972,0.647358417510986,-0.13522407412529,-0.750094354152679,0.617697060108185,-0.551855802536011,-0.560272693634033,0.799822688102722,-0.536500632762909,-0.269166886806488,0.992352962493896,-0.11531413346529,-0.0440255180001259, +0.882977783679962,-0.132542103528976,-0.450314283370972,0.882977783679962,-0.132542103528976,-0.450314283370972,0.992352962493896,-0.11531413346529,-0.0440255180001259,0.99748957157135,-0.0693761855363846,-0.014197638258338,0.930261850357056,-0.040023285895586,-0.364706754684448,0.716182291507721,0.000275129219517112,-0.69791316986084,0.647358417510986,-0.13522407412529,-0.750094354152679,0.882977783679962,-0.132542103528976,-0.450314283370972,0.930261850357056,-0.040023285895586,-0.364706754684448,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.833289444446564,-0.372669488191605,-0.408345431089401,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.946752846240997,0.00653773033991456,-0.321895003318787,-0.957098841667175,-0.0191952716559172,-0.289124965667725,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.880530714988708,0.0260039381682873,-0.473275274038315,-0.947383999824524,-0.0841166004538536,-0.308849453926086,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.324871450662613,-0.736455380916595,-0.593373477458954,-0.506282448768616,-0.665263831615448,-0.548727750778198,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.513917028903961,-0.731300175189972,-0.448429942131042, +-0.793850421905518,-0.370948910713196,-0.481869786977768,-0.872089385986328,-0.0381464511156082,-0.487857520580292,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.919582843780518,-0.0322435721755028,-0.391570866107941,-0.957098841667175,-0.0191952716559172,-0.289124965667725,-0.931095659732819,-0.329804509878159,-0.1558518409729,-0.513917028903961,-0.731300175189972,-0.448429942131042,-0.856320202350616,-0.380946934223175,-0.348704963922501,-0.931095659732819,-0.329804509878159,-0.1558518409729,-0.620312750339508,-0.738559484481812,-0.264087319374084,0.0501549690961838,-0.943022549152374,-0.328926771879196,-0.129560530185699,-0.932362616062164,-0.337511450052261,-0.0717204585671425,-0.86509770154953,-0.496449440717697,0.125337421894073,-0.855651915073395,-0.502145707607269,-0.129560530185699,-0.932362616062164,-0.337511450052261,-0.524968385696411,-0.734401226043701,-0.430189669132233,-0.513917028903961,-0.731300175189972,-0.448429942131042,-0.0717204585671425,-0.86509770154953,-0.496449440717697,-0.0717204585671425,-0.86509770154953,-0.496449440717697,-0.513917028903961,-0.731300175189972,-0.448429942131042,-0.620312750339508,-0.738559484481812,-0.264087319374084,-0.123676560819149,-0.906368851661682,-0.403979808092117,0.125337421894073,-0.855651915073395,-0.502145707607269,-0.0717204585671425,-0.86509770154953,-0.496449440717697,-0.123676560819149,-0.906368851661682,-0.403979808092117,0.134698942303658,-0.888603746891022,-0.438451498746872,0.468589961528778,-0.584312975406647,-0.662572145462036,0.166902795433998,-0.897470593452454,-0.408276855945587,0.287867814302444,-0.787702918052673,-0.544661521911621,0.617697060108185,-0.551855802536011,-0.560272693634033,0.166902795433998,-0.897470593452454,-0.408276855945587,0.0501549690961838,-0.943022549152374,-0.328926771879196,0.125337421894073,-0.855651915073395,-0.502145707607269,0.287867814302444,-0.787702918052673,-0.544661521911621,0.287867814302444,-0.787702918052673,-0.544661521911621, +0.125337421894073,-0.855651915073395,-0.502145707607269,0.134698942303658,-0.888603746891022,-0.438451498746872,0.318737775087357,-0.843948841094971,-0.431458503007889,0.617697060108185,-0.551855802536011,-0.560272693634033,0.287867814302444,-0.787702918052673,-0.544661521911621,0.318737775087357,-0.843948841094971,-0.431458503007889,0.799822688102722,-0.536500632762909,-0.269166886806488,-0.833289444446564,-0.372669488191605,-0.408345431089401,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.868782699108124,-0.3159359395504,-0.381314784288406,-0.838309228420258,-0.367601722478867,-0.402624696493149,-0.869369566440582,-0.342610210180283,-0.356110751628876,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.873077750205994,-0.311358690261841,-0.375221073627472,-0.868782699108124,-0.3159359395504,-0.381314784288406,-0.907583773136139,0.0161383636295795,-0.41956090927124,-0.891874492168427,-0.131695151329041,-0.432684928178787,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.946752846240997,0.00653773033991456,-0.321895003318787,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.81596964597702,-0.391447365283966,-0.425396710634232,-0.869084119796753,-0.313242137432098,-0.382847458124161,-0.816046893596649,-0.399193972349167,-0.417985081672668,-0.484893262386322,-0.634067237377167,-0.602359652519226,-0.506282448768616,-0.665263831615448,-0.548727750778198,-0.81596964597702,-0.391447365283966,-0.425396710634232,-0.137815892696381,-0.765004634857178,-0.629106223583221,-0.324871450662613,-0.736455380916595,-0.593373477458954,-0.302289962768555,-0.685427308082581,-0.662427544593811,-0.121647201478481,-0.689130485057831,-0.714353680610657,-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.997489750385284,-0.0693939179182053,-0.0140956426039338,-0.992373943328857,-0.11521127820015,-0.043821919709444,-0.883028507232666,-0.132418647408485,-0.45025098323822,-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.716123342514038,0.000295749516226351,-0.697973728179932, +-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.883028507232666,-0.132418647408485,-0.45025098323822,-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.716123342514038,0.000295749516226351,-0.697973728179932,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.997489750385284,-0.0693939179182053,-0.0140956426039338,-0.930268943309784,-0.0400327034294605,-0.364687860012054,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.999112725257874,-0.0323165357112885,0.0270079094916582,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.779016017913818,0.102577812969685,-0.618556261062622,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.999112725257874,-0.0323165357112885,0.0270079094916582,-0.955553472042084,0.00704750046133995,-0.294733375310898,-0.873322308063507,0.231195002794266,-0.428785473108292,-0.999700367450714,0.0132086621597409,0.0206089336425066,0.869363963603973,-0.342697292566299,-0.356040745973587,0.89838719367981,-0.352516740560532,-0.261977761983871,0.947352945804596,-0.084156908094883,-0.308933764696121,0.891768336296082,-0.131842046976089,-0.432858943939209,0.869363963603973,-0.342697292566299,-0.356040745973587,0.891768336296082,-0.131842046976089,-0.432858943939209,0.922260582447052,-0.14799028635025,-0.357119411230087,0.833156585693359,-0.372954607009888,-0.408356517553329,0.880417287349701,0.0260239727795124,-0.473484963178635,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.907611131668091,0.0161414425820112,-0.419501394033432,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.957322597503662,-0.0192046836018562,-0.28838250041008,0.946965098381042,0.00649365969002247,-0.321270555257797,0.907611131668091,0.0161414425820112,-0.419501394033432,0.891768336296082,-0.131842046976089,-0.432858943939209,0.907611131668091,0.0161414425820112,-0.419501394033432,0.946965098381042,0.00649365969002247,-0.321270555257797,0.922260582447052,-0.14799028635025,-0.357119411230087, +0.399628847837448,-0.677889943122864,-0.617059230804443,0.54840362071991,-0.612563192844391,-0.569227397441864,0.560615181922913,-0.635628461837769,-0.530742108821869,0.422343194484711,-0.709747314453125,-0.563812911510468,0.87199741601944,-0.0381103716790676,-0.488024681806564,0.79384982585907,-0.370954781770706,-0.481866180896759,0.856334269046783,-0.380944132804871,-0.348673492670059,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.79384982585907,-0.370954781770706,-0.481866180896759,0.525056421756744,-0.734364330768585,-0.430145025253296,0.514161765575409,-0.731168150901794,-0.448364853858948,0.856334269046783,-0.380944132804871,-0.348673492670059,0.856334269046783,-0.380944132804871,-0.348673492670059,0.514161765575409,-0.731168150901794,-0.448364853858948,0.620490193367004,-0.738419115543365,-0.264063090085983,0.931094825267792,-0.329815626144409,-0.155833229422569,0.919605672359467,-0.0321990139782429,-0.391521006822586,0.856334269046783,-0.380944132804871,-0.348673492670059,0.931094825267792,-0.329815626144409,-0.155833229422569,0.957322597503662,-0.0192046836018562,-0.28838250041008,0.525056421756744,-0.734364330768585,-0.430145025253296,0.129465445876122,-0.932377934455872,-0.337505578994751,0.0718565508723259,-0.865085363388062,-0.496451318264008,0.514161765575409,-0.731168150901794,-0.448364853858948,0.129465445876122,-0.932377934455872,-0.337505578994751,-0.0501352362334728,-0.942996501922607,-0.329004615545273,-0.125187188386917,-0.855672657489777,-0.502147793769836,0.0718565508723259,-0.865085363388062,-0.496451318264008,0.0718565508723259,-0.865085363388062,-0.496451318264008,-0.125187188386917,-0.855672657489777,-0.502147793769836,-0.134513467550278,-0.888677775859833,-0.438358157873154,0.123514726758003,-0.906339287757874,-0.404095709323883,0.514161765575409,-0.731168150901794,-0.448364853858948,0.0718565508723259,-0.865085363388062,-0.496451318264008,0.123514726758003,-0.906339287757874,-0.404095709323883,0.620490193367004,-0.738419115543365,-0.264063090085983,-0.0501352362334728,-0.942996501922607,-0.329004615545273, +-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.125187188386917,-0.855672657489777,-0.502147793769836,-0.166973233222961,-0.897425651550293,-0.40834704041481,-0.468642711639404,-0.584188401699066,-0.662644624710083,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.80049067735672,-0.536070823669434,-0.268034845590591,-0.318673193454742,-0.844170570373535,-0.431072413921356,-0.125187188386917,-0.855672657489777,-0.502147793769836,-0.287670612335205,-0.787762582302094,-0.544679403305054,-0.318673193454742,-0.844170570373535,-0.431072413921356,-0.134513467550278,-0.888677775859833,-0.438358157873154,0.873105764389038,-0.311196446418762,-0.375290513038635,0.869012653827667,-0.313126504421234,-0.383104264736176,0.881268262863159,-0.338604122400284,-0.329717218875885,0.89838719367981,-0.352516740560532,-0.261977761983871,0.891768336296082,-0.131842046976089,-0.432858943939209,0.947352945804596,-0.084156908094883,-0.308933764696121,0.880417287349701,0.0260239727795124,-0.473484963178635,0.907611131668091,0.0161414425820112,-0.419501394033432,0.560615181922913,-0.635628461837769,-0.530742108821869,0.54840362071991,-0.612563192844391,-0.569227397441864,0.815972208976746,-0.399134337902069,-0.418187886476517,0.815860152244568,-0.391426861286163,-0.425625592470169,0.815972208976746,-0.399134337902069,-0.418187886476517,0.881268262863159,-0.338604122400284,-0.329717218875885,0.869012653827667,-0.313126504421234,-0.383104264736176,0.815860152244568,-0.391426861286163,-0.425625592470169,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,0.121645800769329,-0.689107835292816,-0.714375793933868,0.137839734554291,-0.764987766742706,-0.629121601581573,-5.79314018978039e-09,-0.768785357475281,-0.639506936073303,0.239804223179817,-0.753981590270996,-0.611559927463531,0.137839734554291,-0.764987766742706,-0.629121601581573, +0.121645800769329,-0.689107835292816,-0.714375793933868,0.21039280295372,-0.687285780906677,-0.695250451564789,0.21039280295372,-0.687285780906677,-0.695250451564789,0.399628847837448,-0.677889943122864,-0.617059230804443,0.422343194484711,-0.709747314453125,-0.563812911510468,0.239804223179817,-0.753981590270996,-0.611559927463531,-0.121647201478481,-0.689130485057831,-0.714353680610657,3.41026543537737e-06,-0.677691996097565,-0.735345900058746,-5.79314018978039e-09,-0.768785357475281,-0.639506936073303,-0.137815892696381,-0.765004634857178,-0.629106223583221,-0.998450577259064,-0.0145111670717597,0.0537201091647148,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.998083710670471,-0.00846588052809238,0.0612973161041737,-0.998627722263336,-0.0120042953640223,0.0509758442640305,-0.919278740882874,-0.200312465429306,-0.338823795318604,-0.962715804576874,-0.0191965401172638,-0.269832819700241,-0.946752846240997,0.00653773033991456,-0.321895003318787,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.838309228420258,-0.367601722478867,-0.402624696493149,-0.919278740882874,-0.200312465429306,-0.338823795318604,-0.922185122966766,-0.148072257637978,-0.357280194759369,-0.833289444446564,-0.372669488191605,-0.408345431089401,0.919417142868042,-0.200109556317329,-0.338568270206451,0.838114321231842,-0.368142247200012,-0.402536422014236,0.833156585693359,-0.372954607009888,-0.408356517553329,0.922260582447052,-0.14799028635025,-0.357119411230087,0.962715268135071,-0.0191910192370415,-0.269834995269775,0.919417142868042,-0.200109556317329,-0.338568270206451,0.922260582447052,-0.14799028635025,-0.357119411230087,0.946965098381042,0.00649365969002247,-0.321270555257797,0.998219013214111,-0.0115689476951957,0.0585229098796844,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.995499432086945,-0.0382689349353313,0.0866971462965012,0.998449325561523,-0.0145139442756772,0.0537427812814713,0.995499432086945,-0.0382689349353313,0.0866971462965012,0.99615341424942,-0.0373579896986485,0.0792645514011383,0.999694764614105,0.0132730612531304,0.0208377800881863, +0.999117434024811,-0.0321307256817818,0.0270562116056681,0.999694764614105,0.0132730612531304,0.0208377800881863,0.873127579689026,0.231439754366875,-0.429050087928772,0.95551210641861,0.00711869867518544,-0.294865697622299,0.999117434024811,-0.0321307256817818,0.0270562116056681,0.873127579689026,0.231439754366875,-0.429050087928772,0.779022097587585,0.102573357522488,-0.618549406528473,0.95551210641861,0.00711869867518544,-0.294865697622299,0.95551210641861,0.00711869867518544,-0.294865697622299,0.779022097587585,0.102573357522488,-0.618549406528473,0.716182291507721,0.000275129219517112,-0.69791316986084,0.930261850357056,-0.040023285895586,-0.364706754684448,0.999117434024811,-0.0321307256817818,0.0270562116056681,0.95551210641861,0.00711869867518544,-0.294865697622299,0.930261850357056,-0.040023285895586,-0.364706754684448,0.99748957157135,-0.0693761855363846,-0.014197638258338,0.99862402677536,-0.0120407585054636,0.0510396957397461,0.998089551925659,-0.00854548532515764,0.0611912310123444,0.998219013214111,-0.0115689476951957,0.0585229098796844,0.998449325561523,-0.0145139442756772,0.0537427812814713,-0.995499908924103,-0.0384220443665981,0.0866238251328468,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.998215854167938,-0.0115248821675777,0.0585849173367023,-0.998450577259064,-0.0145111670717597,0.0537201091647148,-0.999700367450714,0.0132086621597409,0.0206089336425066,-0.996126472949982,-0.0374902188777924,0.079539492726326,-0.995499908924103,-0.0384220443665981,0.0866238251328468,-0.999112725257874,-0.0323165357112885,0.0270079094916582,-0.80049067735672,-0.536070823669434,-0.268034845590591,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.883028507232666,-0.132418647408485,-0.45025098323822,-0.992373943328857,-0.11521127820015,-0.043821919709444,-0.617703914642334,-0.55174994468689,-0.560369253158569,-0.468642711639404,-0.584188401699066,-0.662644624710083,-0.647262632846832,-0.135123580694199,-0.750195145606995,-0.883028507232666,-0.132418647408485,-0.45025098323822,0.873105764389038,-0.311196446418762,-0.375290513038635, +0.89838719367981,-0.352516740560532,-0.261977761983871,0.869363963603973,-0.342697292566299,-0.356040745973587,0.868837058544159,-0.316113770008087,-0.381043493747711,0.869363963603973,-0.342697292566299,-0.356040745973587,0.833156585693359,-0.372954607009888,-0.408356517553329,0.838114321231842,-0.368142247200012,-0.402536422014236,0.868837058544159,-0.316113770008087,-0.381043493747711,-0.898348569869995,-0.352611392736435,-0.261983036994934,-0.881325423717499,-0.338676631450653,-0.329489946365356,-0.869084119796753,-0.313242137432098,-0.382847458124161,-0.873077750205994,-0.311358690261841,-0.375221073627472,3.1286046578316e-05,0.933347523212433,0.35897421836853,-0.0769341886043549,0.952120065689087,0.295885741710663,0.127404302358627,0.870312571525574,0.475735187530518,0.00105006573721766,0.819467723369598,0.573124349117279,-0.0769341886043549,0.952120065689087,0.295885741710663,-0.199016839265823,0.964948236942291,0.17107680439949,0.0926034152507782,0.943549811840057,0.318022698163986,0.127404302358627,0.870312571525574,0.475735187530518,0.127404302358627,0.870312571525574,0.475735187530518,0.0926034152507782,0.943549811840057,0.318022698163986,0.369827419519424,0.848678946495056,0.378115952014923,0.322145581245422,0.723398506641388,0.610669136047363,0.00105006573721766,0.819467723369598,0.573124349117279,0.127404302358627,0.870312571525574,0.475735187530518,0.322145581245422,0.723398506641388,0.610669136047363,0.00354147492907941,0.63427597284317,0.773098587989807,-0.368012607097626,0.849207520484924,0.378699630498886,-0.34021183848381,0.892924129962921,0.294860035181046,-0.171337708830833,0.958347201347351,0.228503912687302,-0.0940338149666786,0.943791687488556,0.316883236169815,-0.171337708830833,0.958347201347351,0.228503912687302,0.147601917386055,0.978087961673737,0.146825015544891,0.198442324995995,0.965159118175507,0.170553311705589,-0.0940338149666786,0.943791687488556,0.316883236169815,0.147601917386055,0.978087961673737,0.146825015544891,-0.171337708830833,0.958347201347351,0.228503912687302,-0.281592935323715,0.929069340229034,0.239865720272064, +-0.17153188586235,0.974821448326111,0.142477780580521,-0.171337708830833,0.958347201347351,0.228503912687302,-0.34021183848381,0.892924129962921,0.294860035181046,-0.345558404922485,0.888901710510254,0.300737708806992,-0.281592935323715,0.929069340229034,0.239865720272064,-0.281592935323715,0.929069340229034,0.239865720272064,-0.345558404922485,0.888901710510254,0.300737708806992,-0.425247550010681,0.881950259208679,0.203293576836586,-0.351261794567108,0.922170639038086,0.161914691329002,-0.255513966083527,0.960735857486725,0.108162648975849,-0.17153188586235,0.974821448326111,0.142477780580521,-0.281592935323715,0.929069340229034,0.239865720272064,-0.351261794567108,0.922170639038086,0.161914691329002,0.321127533912659,0.946800529956818,-0.0211152732372284,0.474217265844345,0.880373537540436,0.00777136301621795,0.350996434688568,0.922063589096069,0.163095518946648,0.255401104688644,0.960573732852936,0.109856195747852,0.474217265844345,0.880373537540436,0.00777136301621795,0.525646924972534,0.850511491298676,0.0180433727800846,0.425292700529099,0.8816899061203,0.204325810074806,0.350996434688568,0.922063589096069,0.163095518946648,0.350996434688568,0.922063589096069,0.163095518946648,0.425292700529099,0.8816899061203,0.204325810074806,0.346446305513382,0.888436436653137,0.301090747117996,0.281983822584152,0.92876935005188,0.240567073225975,0.171426236629486,0.974702954292297,0.143412679433823,0.255401104688644,0.960573732852936,0.109856195747852,0.350996434688568,0.922063589096069,0.163095518946648,0.281983822584152,0.92876935005188,0.240567073225975,0.340378850698471,0.892681539058685,0.295401394367218,0.173189952969551,0.958074808120728,0.228249445557594,0.281983822584152,0.92876935005188,0.240567073225975,0.346446305513382,0.888436436653137,0.301090747117996,0.173189952969551,0.958074808120728,0.228249445557594,-0.150234207510948,0.977291941642761,0.149432733654976,0.171426236629486,0.974702954292297,0.143412679433823,0.281983822584152,0.92876935005188,0.240567073225975,-0.525547921657562,0.85057008266449,0.0181603133678436, +-0.474094569683075,0.880438804626465,0.00787376519292593,-0.351261794567108,0.922170639038086,0.161914691329002,-0.425247550010681,0.881950259208679,0.203293576836586,-0.474094569683075,0.880438804626465,0.00787376519292593,-0.321022480726242,0.946837842464447,-0.0210393685847521,-0.255513966083527,0.960735857486725,0.108162648975849,-0.351261794567108,0.922170639038086,0.161914691329002,-0.0692600607872009,-0.40361499786377,0.912303626537323,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.109554767608643,-0.463935196399689,0.879068791866302,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.25737664103508,-0.520960569381714,0.81385350227356,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.236676275730133,-0.44870325922966,0.86177134513855,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.282623738050461,-0.625286161899567,0.727420747280121,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.58196759223938,-0.243648797273636,0.775853753089905,-0.792892038822174,-0.21461695432663,0.570317268371582,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.792892038822174,-0.21461695432663,0.570317268371582,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.860088109970093,-0.273398786783218,0.430698931217194,-0.805730640888214,-0.350308150053024,0.477579683065414,0.0600302666425705,0.0760350003838539,0.995296478271484,-0.131924688816071,0.14484977722168,0.980619430541992, +-0.142524033784866,-0.185490682721138,0.972255110740662,0.0525225922465324,-0.190005153417587,0.98037713766098,-0.131924688816071,0.14484977722168,0.980619430541992,-0.338309645652771,0.210501685738564,0.917188942432404,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.142524033784866,-0.185490682721138,0.972255110740662,-0.142524033784866,-0.185490682721138,0.972255110740662,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.17657545208931,-0.327362060546875,0.928253769874573,0.0525225922465324,-0.190005153417587,0.98037713766098,-0.142524033784866,-0.185490682721138,0.972255110740662,-0.17657545208931,-0.327362060546875,0.928253769874573,0.00786542054265738,-0.305302739143372,0.952222883701324,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.535748302936554,-0.0948459655046463,0.839033901691437,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.317441284656525,-0.284244388341904,0.904674530029297,-0.297977864742279,-0.287405341863632,0.910278737545013,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.317441284656525,-0.284244388341904,0.904674530029297,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.328170418739319,-0.282412022352219,0.901414275169373,-0.548661649227142,0.668700933456421,0.501806080341339,-0.623963296413422,0.768050134181976,0.144113570451736,-0.992165207862854,0.0233097542077303,0.122738763689995,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.623963296413422,0.768050134181976,0.144113570451736,-0.601010143756866,0.790193140506744,0.11992322653532,-0.993990182876587,0.0658001378178596,0.0874857231974602, +-0.992165207862854,0.0233097542077303,0.122738763689995,-0.992165207862854,0.0233097542077303,0.122738763689995,-0.993990182876587,0.0658001378178596,0.0874857231974602,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.992165207862854,0.0233097542077303,0.122738763689995,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.851190268993378,-0.136503919959068,0.506795644760132,-0.794983744621277,-0.160349786281586,0.585054397583008,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.851190268993378,-0.136503919959068,0.506795644760132,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.873547792434692,-0.126375392079353,0.470046281814575,-0.394090473651886,0.803994596004486,0.445292562246323,-0.437600523233414,0.872543215751648,0.217195779085159,-0.864012241363525,0.357230216264725,0.35478076338768,-0.726621448993683,0.32442569732666,0.605614900588989,-0.437600523233414,0.872543215751648,0.217195779085159,-0.398814141750336,0.881977081298828,0.251124739646912,-0.85698789358139,0.343310981988907,0.38432976603508,-0.864012241363525,0.357230216264725,0.35478076338768,-0.864012241363525,0.357230216264725,0.35478076338768,-0.85698789358139,0.343310981988907,0.38432976603508,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.942124962806702,0.0402246378362179,0.332840204238892, +-0.726621448993683,0.32442569732666,0.605614900588989,-0.864012241363525,0.357230216264725,0.35478076338768,-0.942124962806702,0.0402246378362179,0.332840204238892,-0.816730439662933,0.0452887341380119,0.575239479541779,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.874447166919708,0.288081109523773,0.390322238206863,-0.872197031974792,0.226783886551857,0.433406591415405,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.89040869474411,0.311238497495651,0.332118898630142,-0.874447166919708,0.288081109523773,0.390322238206863,-0.840434372425079,-0.164773017168045,0.516255795955658,-0.832938730716705,-0.167921900749207,0.527271628379822,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.840434372425079,-0.164773017168045,0.516255795955658,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.860000193119049,-0.152292832732201,0.4870385825634,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.995246887207031,0.0550698488950729,0.0803178697824478,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.997405111789703,0.00665625929832458,0.0716846287250519,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.953887403011322,-0.109419479966164,-0.279510796070099,-0.99621844291687,0.0131362657994032,0.0858851000666618,-0.997405111789703,0.00665625929832458,0.0716846287250519,-0.99725204706192,0.0188685450702906,0.0716400593519211, +-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.998390316963196,0.0215951167047024,0.0524435192346573,-0.997710525989532,0.0193911418318748,0.064789205789566,-0.99725204706192,0.0188685450702906,0.0716400593519211,-0.997710525989532,0.0193911418318748,0.064789205789566,-0.991462886333466,0.00127873627934605,0.130382806062698,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.0943231582641602,0.0288749188184738,0.995122790336609,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.0843810960650444,-0.217296659946442,0.972451567649841,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.31101456284523,0.129726931452751,0.94150984287262,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.0843810960650444,-0.217296659946442,0.972451567649841,-0.18537475168705,-0.194246053695679,0.963278114795685,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.0625111162662506,-0.333361387252808,0.940724492073059,-0.806167006492615,0.405817359685898,0.430589258670807,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.986780822277069,0.160144791007042,0.0248461551964283,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.573165655136108,0.205063909292221,0.793366253376007,-0.595437586307526,-0.0581202879548073,0.801296532154083,-0.986780822277069,0.160144791007042,0.0248461551964283,-0.986780822277069,0.160144791007042,0.0248461551964283,-0.595437586307526,-0.0581202879548073,0.801296532154083,-0.57489013671875,-0.214605569839478,0.789585769176483,-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.986780822277069,0.160144791007042,0.0248461551964283, +-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.490314334630966,-0.306891679763794,0.815726220607758,-0.418494075536728,-0.4173284471035,0.806659519672394,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.189798250794411,0.239573091268539,0.95214569568634,-0.500292360782623,0.364415466785431,0.785435497760773,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.203934475779533,-0.16666454076767,0.964693486690521,-0.500292360782623,0.364415466785431,0.785435497760773,-0.702914714813232,0.419525861740112,0.574377000331879,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.203934475779533,-0.16666454076767,0.964693486690521,-0.564957201480865,-0.186947733163834,0.803662836551666,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.231684133410454,-0.341643393039703,0.910825073719025,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.785015106201172,0.584624469280243,0.204854965209961,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.780332982540131,-0.327159374952316,0.532960832118988, +-0.882719099521637,-0.110210955142975,-0.456793904304504,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.849047899246216,0.0428034253418446,-0.526579141616821,-0.882719099521637,-0.110210955142975,-0.456793904304504,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.903908669948578,-0.195528045296669,-0.380418121814728,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.903908669948578,-0.195528045296669,-0.380418121814728,-0.831903696060181,-0.397577732801437,0.387128055095673,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.340639442205429,0.750027358531952,0.566942572593689,-0.389274567365646,0.873005211353302,0.293814718723297,-0.834942579269409,0.227867662906647,0.500946283340454,-0.631518125534058,0.117306865751743,0.766435742378235,-0.389274567365646,0.873005211353302,0.293814718723297,-0.355925559997559,0.906254887580872,0.228076919913292,-0.869791805744171,0.300110667943954,0.39165785908699,-0.834942579269409,0.227867662906647,0.500946283340454,-0.834942579269409,0.227867662906647,0.500946283340454,-0.869791805744171,0.300110667943954,0.39165785908699,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.631518125534058,0.117306865751743,0.766435742378235,-0.834942579269409,0.227867662906647,0.500946283340454,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.460800260305405,0.886764228343964,0.0362249948084354,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.887675702571869,0.375438243150711,-0.266604602336884,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.359955251216888,0.867213666439056,0.344053357839584,-0.753035187721252,0.389152586460114,0.530564188957214,-0.887675702571869,0.375438243150711,-0.266604602336884, +-0.887675702571869,0.375438243150711,-0.266604602336884,-0.753035187721252,0.389152586460114,0.530564188957214,-0.829760372638702,0.108762338757515,0.547420024871826,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.887675702571869,0.375438243150711,-0.266604602336884,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.989044964313507,0.093381255865097,0.114324763417244,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.845598042011261,-0.197273597121239,0.496031492948532,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.452030569314957,0.806248903274536,0.381616413593292,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.824098348617554,0.27809539437294,0.493482232093811,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.370093166828156,0.921099185943604,0.120860703289509,-0.899428308010101,0.420667916536331,0.118604905903339,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.899428308010101,0.420667916536331,0.118604905903339,-0.995246887207031,0.0550698488950729,0.0803178697824478,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.824098348617554,0.27809539437294,0.493482232093811,-0.911145031452179,0.403474450111389,0.0838031992316246,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.845598042011261,-0.197273597121239,0.496031492948532, +-0.974851250648499,-0.173598438501358,0.139745086431503,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.974851250648499,-0.173598438501358,0.139745086431503,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.803800940513611,0.385017901659012,0.453503251075745,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.253959655761719,0.141760915517807,0.95676976442337,-0.231031611561775,-0.167481318116188,0.958422839641571,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.231031611561775,-0.167481318116188,0.958422839641571,-0.202353328466415,-0.298544436693192,0.932697296142578,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.99648642539978,0.0676323771476746,0.0494034513831139,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.820309162139893,-0.366870522499084,0.438746929168701,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.256725430488586,-0.374575465917587,0.890946269035339,-0.373453110456467,-0.514030456542969,0.772208094596863,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.0555649995803833,-0.379517257213593,0.923514544963837,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.388131648302078,-0.443252623081207,0.808010518550873, +-0.41496080160141,-0.562957286834717,0.714763343334198,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.485556483268738,-0.249260917305946,0.837916493415833,-0.465662866830826,-0.255364894866943,0.847317516803741,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.485556483268738,-0.249260917305946,0.837916493415833,-0.484078645706177,-0.233325600624084,0.843342781066895,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.502492547035217,-0.242833837866783,0.829778790473938,-0.39814281463623,-0.269793570041656,0.876751840114594,-0.36555004119873,-0.275268018245697,0.889157354831696,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.39814281463623,-0.269793570041656,0.876751840114594,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.424731254577637,-0.265143424272537,0.865622520446777,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.371475577354431,-0.195014357566833,0.907730877399445,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.394532650709152,-0.257593721151352,0.882037162780762,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.371475577354431,-0.195014357566833,0.907730877399445,-0.165524035692215,-0.303391516208649,0.938379049301147,1.75918557943078e-07,-0.307377070188522,0.951587796211243,2.95768154501275e-06,-0.273690581321716,0.961817860603333,-0.150568410754204,-0.275894820690155,0.949321508407593,-0.165524035692215,-0.303391516208649,0.938379049301147,-0.150568410754204,-0.275894820690155,0.949321508407593,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.186343878507614,-0.30264887213707,0.93470823764801,-0.00905205681920052,-0.0846886336803436,0.996366322040558,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,5.24779306942946e-06,-0.263720482587814,0.964599132537842, +0.223788768053055,-0.286292523145676,0.931641161441803,-0.00905205681920052,-0.0846886336803436,0.996366322040558,0.223788768053055,-0.286292523145676,0.931641161441803,0.150402024388313,-0.318250775337219,0.935999751091003,-0.0497316643595695,-0.134555041790009,0.989657342433929,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.316135346889496,-0.271007090806961,0.909182846546173,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.628344833850861,0.683509886264801,0.371479630470276,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.947399497032166,0.12117712944746,-0.296226412057877,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.950295329093933,-0.273207515478134,-0.149320408701897,-0.936768233776093,-0.349801152944565,0.0102151110768318,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.950295329093933,-0.273207515478134,-0.149320408701897, +-0.682293832302094,-0.429185539484024,0.591840147972107,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.830712795257568,-0.157139912247658,0.534063041210175,-0.827298283576965,-0.160127997398376,0.538457632064819,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.830712795257568,-0.157139912247658,0.534063041210175,-0.83071357011795,-0.143064185976982,0.538003385066986,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.821022987365723,-0.15960069000721,0.548132181167603,-0.915011405944824,-0.100195169448853,0.390787661075592,-0.912278234958649,-0.101034618914127,0.396913766860962,-0.910836100578308,-0.101129606366158,0.400187909603119,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.915011405944824,-0.100195169448853,0.390787661075592,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.873987078666687,-0.130821585655212,0.468008726835251,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.918627083301544,-0.0940567180514336,0.383767634630203,-0.910836100578308,-0.101129606366158,0.400187909603119,-0.927932739257813,-0.139165371656418,0.345794230699539,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.656458258628845,-0.200193867087364,0.72731351852417,-0.597933888435364,-0.215272724628448,0.772096276283264,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.647187888622284,-0.187938436865807,0.738801002502441,-0.656458258628845,-0.200193867087364,0.72731351852417, +-0.647187888622284,-0.187938436865807,0.738801002502441,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.690723538398743,-0.192921012639999,0.696909308433533,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.647187888622284,-0.187938436865807,0.738801002502441,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.647187888622284,-0.187938436865807,0.738801002502441,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.841972172260284,-0.127714976668358,0.524186730384827,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.521180927753448,0.839390277862549,0.154254466295242,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.922710716724396,0.310931533575058,0.22787344455719,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.384734183549881,0.823127925395966,0.417660236358643,-0.780667901039124,0.2519251704216,0.571919083595276,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.780667901039124,0.2519251704216,0.571919083595276,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.922710716724396,0.310931533575058,0.22787344455719,-0.940841317176819,0.330541014671326,-0.0745673552155495,-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.982185900211334,0.000488366989884526,0.187911063432693,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.973421514034271,-0.164009347558022,-0.159848287701607, +-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.973421514034271,-0.164009347558022,-0.159848287701607,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.944224298000336,-0.0762681216001511,0.32034906744957,-0.941217601299286,-0.0820105522871017,0.327694356441498,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.944224298000336,-0.0762681216001511,0.32034906744957,-0.944806694984436,-0.042755089700222,0.32482647895813,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.930082976818085,-0.0858379825949669,0.357180148363113,-0.909098148345947,-0.11354622989893,0.400808811187744,-0.897255182266235,-0.12331510335207,0.42394158244133,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.909098148345947,-0.11354622989893,0.400808811187744,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.914755523204803,-0.108901210129261,0.389053791761398,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.940751850605011,0.0702282711863518,0.331743776798248,-0.943971574306488,0.128323748707771,0.304057091474533,-0.912810742855072,-0.0901902988553047,0.398299396038055,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.956861793994904,0.0141872800886631,0.290197134017944, +-0.940751850605011,0.0702282711863518,0.331743776798248,-0.839776396751404,-0.151102215051651,0.521482229232788,-0.82758903503418,-0.154368698596954,0.539691269397736,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.839776396751404,-0.151102215051651,0.521482229232788,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.839202105998993,-0.139069586992264,0.525737106800079,-0.838865041732788,-0.156561627984047,0.52133846282959,-0.839202105998993,-0.139069586992264,0.525737106800079,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.8392493724823,-0.132021382451057,0.527475774288177,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.839186131954193,-0.149471655488014,0.522900342941284,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.846324682235718,-0.220019087195396,-0.48510417342186,-0.917855978012085,-0.320134043693542,-0.234637275338173, +-0.76782613992691,-0.018659695982933,-0.640386521816254,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.839524686336517,-0.0949402377009392,-0.534962296485901,-0.846324682235718,-0.220019087195396,-0.48510417342186,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.917855978012085,-0.320134043693542,-0.234637275338173,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.996107459068298,0.00330066774040461,0.0880859866738319,-0.996031522750854,0.0030316892080009,0.0889491960406303,-0.996792554855347,0.00713484780862927,0.079710066318512,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.996792554855347,0.00713484780862927,0.079710066318512,-0.99812650680542,0.0165074300020933,0.0589137338101864,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.99812650680542,0.0165074300020933,0.0589137338101864,-0.99855649471283,0.0214257724583149,0.0492524392902851,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.99855649471283,0.0214257724583149,0.0492524392902851,-0.998390316963196,0.0215951167047024,0.0524435192346573,-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.998741626739502,-0.00342219998128712,0.0500338859856129,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.998627066612244,0.0183972511440516,0.0490454398095608,-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.998741626739502,-0.00342219998128712,0.0500338859856129, +-0.991462886333466,0.00127873627934605,0.130382806062698,-0.96850848197937,-0.0373800881206989,0.246158853173256,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.920935451984406,0.143320575356483,0.362404674291611,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.860088109970093,-0.273398786783218,0.430698931217194,-0.905501306056976,-0.389081418514252,0.169360592961311,-0.993880212306976,0.0232245307415724,0.107993647456169,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.905501306056976,-0.389081418514252,0.169360592961311,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.993880212306976,0.0232245307415724,0.107993647456169,1.42427379614674e-05,-0.348549783229828,0.937290251255035,1.36847847898025e-05,-0.292606621980667,0.956232845783234,0.501805126667023,-0.245855897665024,0.829304873943329,0.511289834976196,-0.297905415296555,0.806123495101929,1.36847847898025e-05,-0.292606621980667,0.956232845783234,0.000240212044445798,-0.090602844953537,0.995887100696564,0.488590627908707,-0.0529423989355564,0.87090539932251,0.501805126667023,-0.245855897665024,0.829304873943329,0.501805126667023,-0.245855897665024,0.829304873943329,0.488590627908707,-0.0529423989355564,0.87090539932251,0.416714161634445,-0.0174247231334448,0.908870577812195,0.440884202718735,-0.237137153744698,0.865671396255493,0.511289834976196,-0.297905415296555,0.806123495101929,0.501805126667023,-0.245855897665024,0.829304873943329,0.440884202718735,-0.237137153744698,0.865671396255493,0.458569407463074,-0.304762840270996,0.834765732288361,-0.275031268596649,-0.280610650777817,0.919573485851288,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.297977864742279,-0.287405341863632,0.910278737545013,-0.270422905683517,-0.292305618524551,0.917294383049011,-0.275031268596649,-0.280610650777817,0.919573485851288, +-0.270422905683517,-0.292305618524551,0.917294383049011,-0.226999118924141,-0.298325330018997,0.927077949047089,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.346615135669708,-0.147859111428261,0.926280558109283,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.346615135669708,-0.147859111428261,0.926280558109283,0.420541554689407,-0.33530592918396,0.843038976192474,2.46701147261774e-05,-0.340059369802475,0.940403938293457,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,0.481838226318359,-0.307934612035751,0.820370674133301,0.420541554689407,-0.33530592918396,0.843038976192474,0.481838226318359,-0.307934612035751,0.820370674133301,0.424551904201508,-0.334209501743317,0.841462910175323,0.310132741928101,-0.395607888698578,0.864472031593323,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.36555004119873,-0.275268018245697,0.889157354831696,-0.340660989284515,-0.279812395572662,0.89758288860321,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.340660989284515,-0.279812395572662,0.89758288860321,-0.328170418739319,-0.282412022352219,0.901414275169373,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.568327307701111,-0.391887068748474,0.723483622074127, +-0.342844098806381,-0.175389617681503,0.922873973846436,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.568327307701111,-0.391887068748474,0.723483622074127,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.342844098806381,-0.175389617681503,0.922873973846436,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.398151904344559,-0.536222040653229,0.74427205324173,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.25737664103508,-0.520960569381714,0.81385350227356,-0.398151904344559,-0.536222040653229,0.74427205324173,-0.0555649995803833,-0.379517257213593,0.923514544963837,0.0491029173135757,-0.337266832590103,0.940127730369568,0.106146022677422,-0.282717883586884,0.953311920166016,0.00786542054265738,-0.305302739143372,0.952222883701324,0.0491029173135757,-0.337266832590103,0.940127730369568,-0.490314334630966,-0.306891679763794,0.815726220607758,-0.57489013671875,-0.214605569839478,0.789585769176483,0.106146022677422,-0.282717883586884,0.953311920166016,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.465662866830826,-0.255364894866943,0.847317516803741,-0.445334941148758,-0.260695934295654,0.856571316719055,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.445334941148758,-0.260695934295654,0.856571316719055,-0.424731254577637,-0.265143424272537,0.865622520446777,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.206299006938934,-0.364515900611877,0.908057749271393,-0.0412460155785084,-0.429754108190536,0.902003347873688,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.206299006938934,-0.364515900611877,0.908057749271393,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.418494075536728,-0.4173284471035,0.806659519672394, +-0.0412460155785084,-0.429754108190536,0.902003347873688,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.597933888435364,-0.215272724628448,0.772096276283264,-0.535182118415833,-0.232380732893944,0.812144875526428,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.535182118415833,-0.232380732893944,0.812144875526428,-0.502492547035217,-0.242833837866783,0.829778790473938,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.820309162139893,-0.366870522499084,0.438746929168701,-0.567373514175415,-0.433731079101563,0.699974715709686,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.567373514175415,-0.433731079101563,0.699974715709686,-0.388131648302078,-0.443252623081207,0.808010518550873,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.41496080160141,-0.562957286834717,0.714763343334198,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.875212669372559,-0.394328147172928,0.280193239450455,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.535748302936554,-0.0948459655046463,0.839033901691437, +-0.875212669372559,-0.394328147172928,0.280193239450455,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.236676275730133,-0.44870325922966,0.86177134513855,0.11180654913187,-0.334470957517624,0.935750186443329,0.117831543087959,-0.262484639883041,0.957714676856995,-0.231684133410454,-0.341643393039703,0.910825073719025,0.11180654913187,-0.334470957517624,0.935750186443329,-0.256725430488586,-0.374575465917587,0.890946269035339,-0.202353328466415,-0.298544436693192,0.932697296142578,0.117831543087959,-0.262484639883041,0.957714676856995,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.794983744621277,-0.160349786281586,0.585054397583008,-0.72965532541275,-0.183123156428337,0.658839106559753,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.72965532541275,-0.183123156428337,0.658839106559753,-0.690723538398743,-0.192921012639999,0.696909308433533,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.234741002321243,-0.47547435760498,0.847832918167114,0.040289144963026,-0.486981987953186,0.872482240200043,-0.282623738050461,-0.625286161899567,0.727420747280121,-0.234741002321243,-0.47547435760498,0.847832918167114,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.373453110456467,-0.514030456542969,0.772208094596863,0.040289144963026,-0.486981987953186,0.872482240200043,-0.886835098266602,-0.116375274956226,0.447191417217255, +-0.910836100578308,-0.101129606366158,0.400187909603119,-0.912278234958649,-0.101034618914127,0.396913766860962,-0.888192236423492,-0.117809116840363,0.444112092256546,-0.886835098266602,-0.116375274956226,0.447191417217255,-0.888192236423492,-0.117809116840363,0.444112092256546,-0.873547792434692,-0.126375392079353,0.470046281814575,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.826989233493805,-0.454506695270538,0.330926805734634,-0.927932739257813,-0.139165371656418,0.345794230699539,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.682293832302094,-0.429185539484024,0.591840147972107,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.831903696060181,-0.397577732801437,0.387128055095673, +-0.780332982540131,-0.327159374952316,0.532960832118988,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.827298283576965,-0.160127997398376,0.538457632064819,-0.83148193359375,-0.157250225543976,0.532832264900208,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.83148193359375,-0.157250225543976,0.532832264900208,-0.873987078666687,-0.130821585655212,0.468008726835251,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.826989233493805,-0.454506695270538,0.330926805734634,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.82758903503418,-0.154368698596954,0.539691269397736,-0.814661085605621,-0.160631060600281,0.557247579097748,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.814661085605621,-0.160631060600281,0.557247579097748,-0.821022987365723,-0.15960069000721,0.548132181167603,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.976659178733826,-0.16157354414463,0.141529962420464, +-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.976659178733826,-0.16157354414463,0.141529962420464,-0.937240719795227,-0.29300731420517,0.189014628529549,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.936768233776093,-0.349801152944565,0.0102151110768318,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.937240719795227,-0.29300731420517,0.189014628529549,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.58196759223938,-0.243648797273636,0.775853753089905,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.832938730716705,-0.167921900749207,0.527271628379822,-0.83442085981369,-0.163837492465973,0.526212096214294,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.83442085981369,-0.163837492465973,0.526212096214294,-0.838865041732788,-0.156561627984047,0.52133846282959,-0.839202105998993,-0.139069586992264,0.525737106800079, +-0.694688260555267,-0.291444092988968,0.657623469829559,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.694688260555267,-0.291444092988968,0.657623469829559,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.885213017463684,-0.127952173352242,0.447242945432663,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.897255182266235,-0.12331510335207,0.42394158244133,-0.880656898021698,-0.136906921863556,0.453541457653046,-0.885213017463684,-0.127952173352242,0.447242945432663,-0.880656898021698,-0.136906921863556,0.453541457653046,-0.860000193119049,-0.152292832732201,0.4870385825634,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.989044964313507,0.093381255865097,0.114324763417244,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.957474827766418,-0.27677658200264,-0.0814660489559174,-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.957474827766418,-0.27677658200264,-0.0814660489559174, +-0.930284380912781,-0.284267514944077,0.231868550181389,-0.956861793994904,0.0141872800886631,0.290197134017944,-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.612387180328369,-0.103147372603416,0.783800065517426,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.816730439662933,0.0452887341380119,0.575239479541779,-0.612387180328369,-0.103147372603416,0.783800065517426,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.829760372638702,0.108762338757515,0.547420024871826,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.941217601299286,-0.0820105522871017,0.327694356441498,-0.925255835056305,-0.0990582928061485,0.36618173122406,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.925255835056305,-0.0990582928061485,0.36618173122406,-0.914755523204803,-0.108901210129261,0.389053791761398,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.645787417888641,-0.332664549350739,0.687235772609711,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.930284380912781,-0.284267514944077,0.231868550181389,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.645787417888641,-0.332664549350739,0.687235772609711,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.889139890670776,-0.300980299711227,0.344733268022537, +-0.930454969406128,0.224429950118065,0.289628684520721,-0.943971574306488,0.128323748707771,0.304057091474533,-0.889139890670776,-0.300980299711227,0.344733268022537,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.89040869474411,0.311238497495651,0.332118898630142,-0.930454969406128,0.224429950118065,0.289628684520721,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.96850848197937,-0.0373800881206989,0.246158853173256,-0.92273998260498,-0.0873825326561928,0.375387012958527,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.92273998260498,-0.0873825326561928,0.375387012958527,-0.930082976818085,-0.0858379825949669,0.357180148363113,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.982185900211334,0.000488366989884526,0.187911063432693,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.880764484405518,0.180825784802437,0.437671184539795,-0.872197031974792,0.226783886551857,0.433406591415405,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.805730640888214,-0.350308150053024,0.477579683065414,-0.920935451984406,0.143320575356483,0.362404674291611, +-0.880764484405518,0.180825784802437,0.437671184539795,0.155205458402634,-0.334317892789841,0.929592788219452,-0.0625111162662506,-0.333361387252808,0.940724492073059,-0.0692600607872009,-0.40361499786377,0.912303626537323,0.125930786132813,-0.385909855365753,0.913900971412659,0.155205458402634,-0.334317892789841,0.929592788219452,0.125930786132813,-0.385909855365753,0.913900971412659,0.424551904201508,-0.334209501743317,0.841462910175323,0.458569407463074,-0.304762840270996,0.834765732288361,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.680031180381775,0.339969992637634,-0.64959841966629,-0.717230021953583,0.112377382814884,-0.687715351581573,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.573165655136108,0.205063909292221,0.793366253376007,0.16967536509037,-0.00174521736335009,0.985498547554016,0.156429439783096,-0.19400729238987,0.968447744846344,-0.595437586307526,-0.0581202879548073,0.801296532154083,0.16967536509037,-0.00174521736335009,0.985498547554016,0.0600302666425705,0.0760350003838539,0.995296478271484,0.0525225922465324,-0.190005153417587,0.98037713766098,0.156429439783096,-0.19400729238987,0.968447744846344,0.156429439783096,-0.19400729238987,0.968447744846344,0.0525225922465324,-0.190005153417587,0.98037713766098,0.00786542054265738,-0.305302739143372,0.952222883701324,0.106146022677422,-0.282717883586884,0.953311920166016, +-0.595437586307526,-0.0581202879548073,0.801296532154083,0.156429439783096,-0.19400729238987,0.968447744846344,0.106146022677422,-0.282717883586884,0.953311920166016,-0.57489013671875,-0.214605569839478,0.789585769176483,-0.338309645652771,0.210501685738564,0.917188942432404,-0.556367337703705,0.28750267624855,0.779613852500916,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.556367337703705,0.28750267624855,0.779613852500916,-0.803800940513611,0.385017901659012,0.453503251075745,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.882656633853912,-0.0390192605555058,0.468396008014679,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.361850649118423,-0.171420231461525,0.916340053081512,-0.598734855651855,-0.133758157491684,0.789699494838715,-0.583826899528503,-0.327861547470093,0.742733418941498,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.373101830482483,-0.338824272155762,0.863708913326263,-0.388131648302078,-0.443252623081207,0.808010518550873,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.17657545208931,-0.327362060546875,0.928253769874573,-0.225840777158737,-0.420482397079468,0.878743708133698,-0.0555649995803833,-0.379517257213593,0.923514544963837,0.00786542054265738,-0.305302739143372,0.952222883701324,-0.17657545208931,-0.327362060546875,0.928253769874573,-0.57489013671875,-0.214605569839478,0.789585769176483,-0.490314334630966,-0.306891679763794,0.815726220607758,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.949144601821899,-0.198921516537666,0.24403877556324,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.992772698402405,-0.0374946668744087,0.114002458751202,-0.202353328466415,-0.298544436693192,0.932697296142578, +-0.256725430488586,-0.374575465917587,0.890946269035339,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.968855738639832,-0.236659228801727,0.0728764757514,-0.820309162139893,-0.366870522499084,0.438746929168701,-0.850523233413696,-0.263402938842773,0.455224335193634,-0.987856209278107,-0.144034504890442,0.0582595132291317,-0.31101456284523,0.129726931452751,0.94150984287262,-0.523054778575897,0.27978852391243,0.805066525936127,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.523054778575897,0.27978852391243,0.805066525936127,-0.806167006492615,0.405817359685898,0.430589258670807,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.894707441329956,0.0488185919821262,0.443976759910583,-0.830424129962921,-0.194537624716759,0.522064030170441,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.309641599655151,-0.164635166525841,0.936492025852203,-0.55024391412735,-0.0996861308813095,0.829032182693481,-0.499648123979568,-0.296266168355942,0.813989102840424,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.253959655761719,0.141760915517807,0.95676976442337,0.0775739923119545,0.0609424635767937,0.995122253894806,0.0929828062653542,-0.162344917654991,0.982343316078186,-0.231031611561775,-0.167481318116188,0.958422839641571,0.0775739923119545,0.0609424635767937,0.995122253894806,-0.189798250794411,0.239573091268539,0.95214569568634,-0.203934475779533,-0.16666454076767,0.964693486690521,0.0929828062653542,-0.162344917654991,0.982343316078186,0.0929828062653542,-0.162344917654991,0.982343316078186,-0.203934475779533,-0.16666454076767,0.964693486690521,-0.231684133410454,-0.341643393039703,0.910825073719025,0.117831543087959,-0.262484639883041,0.957714676856995,-0.231031611561775,-0.167481318116188,0.958422839641571,0.0929828062653542,-0.162344917654991,0.982343316078186, +0.117831543087959,-0.262484639883041,0.957714676856995,-0.202353328466415,-0.298544436693192,0.932697296142578,-0.287616401910782,-0.320126533508301,0.902660429477692,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.161248862743378,-0.411504954099655,0.89702981710434,-0.0692600607872009,-0.40361499786377,0.912303626537323,-0.0625111162662506,-0.333361387252808,0.940724492073059,-0.166868984699249,-0.326769471168518,0.930256128311157,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.565407156944275,-0.511331975460052,0.647189497947693,-0.236676275730133,-0.44870325922966,0.86177134513855,-0.231684133410454,-0.341643393039703,0.910825073719025,-0.579455435276031,-0.400884062051773,0.709593772888184,-0.702914714813232,0.419525861740112,0.574377000331879,-0.85072648525238,0.454842150211334,0.26340663433075,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.85072648525238,0.454842150211334,0.26340663433075,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.971724331378937,-0.0517335794866085,-0.230380967259407,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.799394845962524,-0.193800747394562,0.568690717220306,-0.96010434627533,-0.156417369842529,0.231804400682449,-0.9015012383461,-0.372845590114594,0.21973080933094,-0.767716944217682,-0.412484645843506,0.490374624729156,-0.780332982540131,-0.327159374952316,0.532960832118988,-0.831903696060181,-0.397577732801437,0.387128055095673,-0.903908669948578,-0.195528045296669,-0.380418121814728, +-0.882719099521637,-0.110210955142975,-0.456793904304504,-0.903908669948578,-0.195528045296669,-0.380418121814728,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.95431387424469,-0.251131653785706,-0.161919355392456,-0.882719099521637,-0.110210955142975,-0.456793904304504,-0.785015106201172,0.584624469280243,0.204854965209961,-0.150067076086998,0.43262243270874,0.888998210430145,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.150067076086998,0.43262243270874,0.888998210430145,-0.548661649227142,0.668700933456421,0.501806080341339,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.809091031551361,-0.0573595054447651,0.58487743139267,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.894097566604614,-0.0968846529722214,0.437267482280731,-0.214730322360992,-0.117117330431938,0.969625949859619,-0.208902359008789,-0.293028503656387,0.933002710342407,-0.780332982540131,-0.327159374952316,0.532960832118988,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.882022678852081,-0.372982323169708,0.287958562374115,-0.682293832302094,-0.429185539484024,0.591840147972107,-0.746672868728638,-0.328535556793213,0.578397750854492,-0.947997152805328,-0.254472315311432,0.191168174147606,-0.601010143756866,0.790193140506744,0.11992322653532,-0.633363366127014,0.765548825263977,0.113073691725731,-0.990498125553131,0.0831140950322151,0.109568946063519,-0.993990182876587,0.0658001378178596,0.0874857231974602,-0.633363366127014,0.765548825263977,0.113073691725731,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.990498125553131,0.0831140950322151,0.109568946063519, +-0.990498125553131,0.0831140950322151,0.109568946063519,-0.989068806171417,0.108515702188015,-0.0998358204960823,-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.976659178733826,-0.16157354414463,0.141529962420464,-0.993990182876587,0.0658001378178596,0.0874857231974602,-0.990498125553131,0.0831140950322151,0.109568946063519,-0.976659178733826,-0.16157354414463,0.141529962420464,-0.968430876731873,-0.201890334486961,0.146225601434708,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.968207001686096,-0.115897625684738,-0.221682548522949,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.992952823638916,-0.0923596769571304,-0.0742584243416786,-0.962940692901611,-0.0342362187802792,-0.267531156539917,-0.628344833850861,0.683509886264801,0.371479630470276,-0.14881919324398,0.462757468223572,0.873904049396515,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.14881919324398,0.462757468223572,0.873904049396515,-0.340639442205429,0.750027358531952,0.566942572593689,-0.631518125534058,0.117306865751743,0.766435742378235,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.631518125534058,0.117306865751743,0.766435742378235,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.895456850528717,0.0534938871860504,0.441922396421432,-0.309453576803207,0.00582616636529565,0.950896620750427,-0.313912212848663,-0.166841551661491,0.934678077697754,-0.855308294296265,-0.144394665956497,0.497592151165009,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.792892038822174,-0.21461695432663,0.570317268371582,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.792892038822174,-0.21461695432663,0.570317268371582, +-0.58196759223938,-0.243648797273636,0.775853753089905,-0.600220561027527,-0.14067405462265,0.787366509437561,-0.829458117485046,-0.0813701003789902,0.552610337734222,-0.355925559997559,0.906254887580872,0.228076919913292,-0.384405732154846,0.901455283164978,0.19902415573597,-0.888725101947784,0.338163733482361,0.309536933898926,-0.869791805744171,0.300110667943954,0.39165785908699,-0.384405732154846,0.901455283164978,0.19902415573597,-0.460800260305405,0.886764228343964,0.0362249948084354,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.888725101947784,0.338163733482361,0.309536933898926,-0.888725101947784,0.338163733482361,0.309536933898926,-0.926732182502747,0.367736428976059,0.0770542696118355,-0.989044964313507,0.093381255865097,0.114324763417244,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.869791805744171,0.300110667943954,0.39165785908699,-0.888725101947784,0.338163733482361,0.309536933898926,-0.934939980506897,0.0340892896056175,0.353164374828339,-0.897818565368652,-0.0211761519312859,0.439856082201004,-0.829760372638702,0.108762338757515,0.547420024871826,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.975301325321198,-0.00187042006291449,-0.220870792865753,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.989044964313507,0.093381255865097,0.114324763417244,-0.955575466156006,0.137259528040886,-0.260835886001587,-0.359955251216888,0.867213666439056,0.344053357839584,-0.225861296057701,0.695742309093475,0.681857228279114,-0.466925084590912,0.270128220319748,0.842028260231018,-0.753035187721252,0.389152586460114,0.530564188957214,-0.225861296057701,0.695742309093475,0.681857228279114,-0.394090473651886,0.803994596004486,0.445292562246323,-0.726621448993683,0.32442569732666,0.605614900588989,-0.466925084590912,0.270128220319748,0.842028260231018,-0.466925084590912,0.270128220319748,0.842028260231018,-0.726621448993683,0.32442569732666,0.605614900588989, +-0.816730439662933,0.0452887341380119,0.575239479541779,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.753035187721252,0.389152586460114,0.530564188957214,-0.466925084590912,0.270128220319748,0.842028260231018,-0.557452857494354,0.0455723479390144,0.82895690202713,-0.829760372638702,0.108762338757515,0.547420024871826,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.942124962806702,0.0402246378362179,0.332840204238892,-0.936532974243164,-0.143418520689011,0.319901645183563,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.816730439662933,0.0452887341380119,0.575239479541779,-0.942124962806702,0.0402246378362179,0.332840204238892,-0.398814141750336,0.881977081298828,0.251124739646912,-0.436745554208755,0.84290075302124,0.314279556274414,-0.853223085403442,0.304148823022842,0.423678874969482,-0.85698789358139,0.343310981988907,0.38432976603508,-0.436745554208755,0.84290075302124,0.314279556274414,-0.521180927753448,0.839390277862549,0.154254466295242,-0.922710716724396,0.310931533575058,0.22787344455719,-0.853223085403442,0.304148823022842,0.423678874969482,-0.853223085403442,0.304148823022842,0.423678874969482,-0.922710716724396,0.310931533575058,0.22787344455719,-0.982185900211334,0.000488366989884526,0.187911063432693,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.85698789358139,0.343310981988907,0.38432976603508,-0.853223085403442,0.304148823022842,0.423678874969482,-0.920273900032043,-0.00600114231929183,0.39122861623764,-0.933605074882507,0.0175111331045628,0.35787558555603,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.973421514034271,-0.164009347558022,-0.159848287701607,-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.973421514034271,-0.164009347558022,-0.159848287701607,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.982185900211334,0.000488366989884526,0.187911063432693, +-0.994298040866852,0.0163711421191692,-0.105373501777649,-0.780667901039124,0.2519251704216,0.571919083595276,-0.384734183549881,0.823127925395966,0.417660236358643,-0.452030569314957,0.806248903274536,0.381616413593292,-0.824098348617554,0.27809539437294,0.493482232093811,-0.780667901039124,0.2519251704216,0.571919083595276,-0.824098348617554,0.27809539437294,0.493482232093811,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.833367526531219,-0.0590381398797035,0.549557089805603,-0.995246887207031,0.0550698488950729,0.0803178697824478,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.974851250648499,-0.173598438501358,0.139745086431503,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.974851250648499,-0.173598438501358,0.139745086431503,-0.845598042011261,-0.197273597121239,0.496031492948532,-0.854400098323822,-0.0435643084347248,0.517786204814911,-0.993143618106842,0.0372918397188187,0.110793642699718,-0.370093166828156,0.921099185943604,0.120860703289509,-0.442843645811081,0.874231338500977,0.199020147323608,-0.921496629714966,0.361332952976227,0.142416775226593,-0.899428308010101,0.420667916536331,0.118604905903339,-0.442843645811081,0.874231338500977,0.199020147323608,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.921496629714966,0.361332952976227,0.142416775226593,-0.921496629714966,0.361332952976227,0.142416775226593,-0.905871689319611,0.346125870943069,-0.244117096066475,-0.948731780052185,0.0530385076999664,-0.31160032749176,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.899428308010101,0.420667916536331,0.118604905903339,-0.921496629714966,0.361332952976227,0.142416775226593,-0.998465657234192,0.0293150600045919,0.0469790808856487,-0.995246887207031,0.0550698488950729,0.0803178697824478,0.247937545180321,0.356415033340454,-0.900830328464508,0.0800770372152328,0.348889946937561,-0.933736324310303,0.167164608836174,0.339099526405334,-0.925779402256012,0.259875953197479,0.378932803869247,-0.888186097145081, +0.0800770372152328,0.348889946937561,-0.933736324310303,0.0663652718067169,0.333928227424622,-0.940259397029877,0.16628709435463,0.278749406337738,-0.94585794210434,0.167164608836174,0.339099526405334,-0.925779402256012,0.733268737792969,0.353318601846695,-0.580932796001434,0.732320487499237,0.344545662403107,-0.587362706661224,0.773984909057617,0.336944669485092,-0.53611159324646,0.724198579788208,0.337111532688141,-0.601574718952179,0.732320487499237,0.344545662403107,-0.587362706661224,0.870228707790375,0.286943376064301,-0.400456577539444,0.893178820610046,0.295912206172943,-0.338626027107239,0.773984909057617,0.336944669485092,-0.53611159324646,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.9298415184021,-0.164688065648079,-0.32904788851738,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.925031006336212,-0.0753350853919983,0.372347176074982,0.951331615447998,-0.149952217936516,0.269225656986237,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.986953139305115,0.0644822493195534,-0.147531688213348,0.991479098796844,0.110518060624599,-0.0689562931656837,0.985069394111633,-0.15815107524395,0.0680177062749863,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.192238688468933,0.585725247859955,-0.787381827831268,0.275860637426376,0.374255150556564,-0.8853440284729,0.196716204285622,0.404981017112732,-0.892912745475769,0.159159854054451,0.618070542812347,-0.769842147827148,0.275860637426376,0.374255150556564,-0.8853440284729,0.406064093112946,0.278222501277924,-0.87046205997467,0.259202659130096,0.317281305789948,-0.912220656871796,0.196716204285622,0.404981017112732,-0.892912745475769,0.196716204285622,0.404981017112732,-0.892912745475769,0.259202659130096,0.317281305789948,-0.912220656871796,0.416761249303818,0.332422733306885,-0.846052706241608,0.372852832078934,0.41802653670311,-0.828392803668976,0.159159854054451,0.618070542812347,-0.769842147827148,0.196716204285622,0.404981017112732,-0.892912745475769, +0.372852832078934,0.41802653670311,-0.828392803668976,0.3162000477314,0.663077235221863,-0.67848813533783,0.518530607223511,0.333309799432755,-0.787420272827148,0.511013150215149,0.496467232704163,-0.701702117919922,0.495140880346298,0.185466706752777,-0.848785996437073,0.55392849445343,0.168168351054192,-0.815403401851654,0.511013150215149,0.496467232704163,-0.701702117919922,0.49078169465065,0.501620471477509,-0.712397575378418,0.416671603918076,0.242084756493568,-0.876230418682098,0.495140880346298,0.185466706752777,-0.848785996437073,7.073596407281e-06,0.83499151468277,-0.550262928009033,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,0.0807666257023811,0.861146986484528,-0.501899182796478,0.0795975625514984,0.829659402370453,-0.552566230297089,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,7.32525177227217e-06,0.889752805233002,-0.456442594528198,0.087555430829525,0.878067910671234,-0.470457851886749,0.0807666257023811,0.861146986484528,-0.501899182796478,0.0807666257023811,0.861146986484528,-0.501899182796478,0.087555430829525,0.878067910671234,-0.470457851886749,0.189263314008713,0.839074850082397,-0.510031998157501,0.183887124061584,0.826946556568146,-0.53136157989502,0.0795975625514984,0.829659402370453,-0.552566230297089,0.0807666257023811,0.861146986484528,-0.501899182796478,0.183887124061584,0.826946556568146,-0.53136157989502,0.176429450511932,0.811212837696075,-0.557500243186951,0.527123928070068,0.79532128572464,0.299339979887009,0.886807203292847,0.371660619974136,0.274666041135788,0.896331429481506,0.439389675855637,-0.0593850947916508,0.493079423904419,0.865481495857239,0.0883983597159386,0.886807203292847,0.371660619974136,0.274666041135788,0.976764976978302,0.115601629018784,0.180461540818214,0.970357775688171,0.154351145029068,-0.185961171984673,0.896331429481506,0.439389675855637,-0.0593850947916508,0.896331429481506,0.439389675855637,-0.0593850947916508,0.970357775688171,0.154351145029068,-0.185961171984673,0.934235095977783,0.148394331336021,-0.324320822954178,0.872592508792877,0.429911404848099,-0.23185895383358, +0.493079423904419,0.865481495857239,0.0883983597159386,0.896331429481506,0.439389675855637,-0.0593850947916508,0.872592508792877,0.429911404848099,-0.23185895383358,0.4871906042099,0.871947884559631,-0.0484998300671577,0.889630854129791,0.0999864265322685,-0.44560033082962,0.882848680019379,0.183537691831589,-0.432310283184052,0.866522550582886,0.0672406181693077,-0.494588106870651,0.899305462837219,0.0559697672724724,-0.433724671602249,0.882848680019379,0.183537691831589,-0.432310283184052,0.851244390010834,0.220117658376694,-0.476373016834259,0.768146157264709,0.127034261822701,-0.627545773983002,0.866522550582886,0.0672406181693077,-0.494588106870651,0.412412017583847,0.853519916534424,-0.318465173244476,0.391010999679565,0.849661409854889,-0.35381618142128,0.327444046735764,0.870584011077881,-0.367238193750381,0.342523485422134,0.883798897266388,-0.318711996078491,0.391010999679565,0.849661409854889,-0.35381618142128,0.373198360204697,0.847398638725281,-0.377675265073776,0.309454381465912,0.8653284907341,-0.394264459609985,0.327444046735764,0.870584011077881,-0.367238193750381,0.327444046735764,0.870584011077881,-0.367238193750381,0.309454381465912,0.8653284907341,-0.394264459609985,0.241002172231674,0.876779854297638,-0.41614305973053,0.252998828887939,0.886166572570801,-0.388201594352722,0.342523485422134,0.883798897266388,-0.318711996078491,0.327444046735764,0.870584011077881,-0.367238193750381,0.252998828887939,0.886166572570801,-0.388201594352722,0.262972354888916,0.908594965934753,-0.324500799179077,0.507899641990662,0.858306348323822,0.0731307566165924,0.912118852138519,0.406485766172409,-0.0529955364763737,0.85185831785202,0.429016262292862,-0.30047020316124,0.409356772899628,0.902956247329712,-0.130755364894867,0.912118852138519,0.406485766172409,-0.0529955364763737,0.982325971126556,0.123072631657124,-0.141027852892876,0.932205259799957,0.121903583407402,-0.340782701969147,0.85185831785202,0.429016262292862,-0.30047020316124,0.85185831785202,0.429016262292862,-0.30047020316124,0.932205259799957,0.121903583407402,-0.340782701969147, +0.911755323410034,0.12490601092577,-0.391280710697174,0.825702786445618,0.459892183542252,-0.326671272516251,0.409356772899628,0.902956247329712,-0.130755364894867,0.85185831785202,0.429016262292862,-0.30047020316124,0.825702786445618,0.459892183542252,-0.326671272516251,0.377066731452942,0.921685636043549,-0.0911936163902283,0.930621147155762,0.237400963902473,-0.278540879487991,0.826967298984528,0.545665800571442,-0.13554984331131,0.936087548732758,0.111993096768856,-0.333463251590729,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.826967298984528,0.545665800571442,-0.13554984331131,0.725338160991669,0.688391089439392,0.0015043233288452,0.916534781455994,0.315282136201859,-0.246092095971107,0.936087548732758,0.111993096768856,-0.333463251590729,0.466133117675781,0.879672467708588,-0.0943194255232811,0.468759685754776,0.874259650707245,-0.126231506466866,0.36862900853157,0.926361262798309,-0.0772489979863167,0.355120450258255,0.933926165103912,-0.0408839508891106,0.468759685754776,0.874259650707245,-0.126231506466866,0.485422134399414,0.856925666332245,-0.173331663012505,0.375085711479187,0.918812155723572,-0.122861780226231,0.36862900853157,0.926361262798309,-0.0772489979863167,0.36862900853157,0.926361262798309,-0.0772489979863167,0.375085711479187,0.918812155723572,-0.122861780226231,0.262632310390472,0.961123704910278,-0.0852374881505966,0.25543686747551,0.966500818729401,-0.0250628516077995,0.355120450258255,0.933926165103912,-0.0408839508891106,0.36862900853157,0.926361262798309,-0.0772489979863167,0.25543686747551,0.966500818729401,-0.0250628516077995,0.239230915904045,0.970812439918518,0.0170813668519258,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.95909571647644,0.00866605900228024,-0.282949209213257,0.954086303710938,0.116435326635838,-0.275974869728088,0.984959304332733,0.112915374338627,-0.130787134170532,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.984959304332733,0.112915374338627,-0.130787134170532,0.985287845134735,0.125068709254265,-0.116470903158188,0.991545021533966,-0.0115073760971427,-0.129251420497894, +0.982530891895294,0.179615572094917,-0.048695120960474,0.989191770553589,0.0672444105148315,-0.130298912525177,0.911470055580139,0.382125437259674,0.152323514223099,0.909924030303955,0.382335722446442,0.160803377628326,0.989191770553589,0.0672444105148315,-0.130298912525177,0.988293766975403,-0.00941547844558954,-0.152272343635559,0.884372234344482,0.457667320966721,0.0917949602007866,0.911470055580139,0.382125437259674,0.152323514223099,0.0285819675773382,0.729895889759064,-0.682960391044617,0.058124840259552,0.430876910686493,-0.900536835193634,0.079592302441597,0.422214806079865,-0.902994930744171,0.0703423768281937,0.730256140232086,-0.679542481899261,0.058124840259552,0.430876910686493,-0.900536835193634,0.0522924698889256,0.322998911142349,-0.944953560829163,0.066230870783329,0.316772729158401,-0.946186363697052,0.079592302441597,0.422214806079865,-0.902994930744171,0.079592302441597,0.422214806079865,-0.902994930744171,0.066230870783329,0.316772729158401,-0.946186363697052,0.253090023994446,0.309255063533783,-0.916682422161102,0.257353484630585,0.407361626625061,-0.876256704330444,0.0703423768281937,0.730256140232086,-0.679542481899261,0.079592302441597,0.422214806079865,-0.902994930744171,0.257353484630585,0.407361626625061,-0.876256704330444,0.231597498059273,0.720394432544708,-0.653754115104675,0.414057105779648,0.641223967075348,-0.646056234836578,0.429304540157318,0.351523876190186,-0.831942617893219,0.318305790424347,0.309041291475296,-0.896200239658356,0.346389561891556,0.535183012485504,-0.770450055599213,0.429304540157318,0.351523876190186,-0.831942617893219,0.363035053014755,0.285731792449951,-0.886883854866028,0.185440421104431,0.276990950107574,-0.942808568477631,0.318305790424347,0.309041291475296,-0.896200239658356,0.318305790424347,0.309041291475296,-0.896200239658356,0.185440421104431,0.276990950107574,-0.942808568477631,0.472372621297836,0.228369891643524,-0.851299822330475,0.522377550601959,0.226540461182594,-0.822071313858032,0.346389561891556,0.535183012485504,-0.770450055599213,0.318305790424347,0.309041291475296,-0.896200239658356, +0.522377550601959,0.226540461182594,-0.822071313858032,0.475937902927399,0.393635958433151,-0.786469340324402,0.491225898265839,0.251587748527527,-0.833906888961792,0.136726126074791,0.2953742146492,-0.945547461509705,0.0890832617878914,0.300667136907578,-0.949559569358826,0.381466448307037,0.306202560663223,-0.872194528579712,0.136726126074791,0.2953742146492,-0.945547461509705,0.316920131444931,0.322103083133698,-0.892082452774048,0.261563330888748,0.344951987266541,-0.901439249515533,0.0890832617878914,0.300667136907578,-0.949559569358826,0.428906440734863,0.83082526922226,-0.354638814926147,0.661201655864716,0.547184109687805,-0.513226926326752,0.569116055965424,0.579348504543304,-0.583491384983063,0.369096249341965,0.844427645206451,-0.388213694095612,0.661201655864716,0.547184109687805,-0.513226926326752,0.836861670017242,0.305047154426575,-0.454542368650436,0.697526335716248,0.352087527513504,-0.624092400074005,0.569116055965424,0.579348504543304,-0.583491384983063,0.569116055965424,0.579348504543304,-0.583491384983063,0.697526335716248,0.352087527513504,-0.624092400074005,0.729379653930664,0.360977053642273,-0.581120312213898,0.623320579528809,0.598883986473083,-0.502801597118378,0.369096249341965,0.844427645206451,-0.388213694095612,0.569116055965424,0.579348504543304,-0.583491384983063,0.623320579528809,0.598883986473083,-0.502801597118378,0.403345912694931,0.857400178909302,-0.319651186466217,0.412647932767868,0.83742094039917,-0.358396232128143,0.579758405685425,0.584730505943298,-0.567424356937408,0.452493160963058,0.532957077026367,-0.71498715877533,0.364626258611679,0.790468752384186,-0.492145121097565,0.579758405685425,0.584730505943298,-0.567424356937408,0.607783138751984,0.349040508270264,-0.713281393051147,0.400801569223404,0.334431350231171,-0.852944254875183,0.452493160963058,0.532957077026367,-0.71498715877533,0.452493160963058,0.532957077026367,-0.71498715877533,0.400801569223404,0.334431350231171,-0.852944254875183,0.962669014930725,0.186627522110939,0.196057677268982,0.897241830825806,0.377294570207596,0.229360029101372, +0.364626258611679,0.790468752384186,-0.492145121097565,0.452493160963058,0.532957077026367,-0.71498715877533,0.897241830825806,0.377294570207596,0.229360029101372,0.635576844215393,0.76066917181015,0.132001623511314,0.980971336364746,0.185382813215256,0.0576918534934521,0.383437156677246,0.307847172021866,-0.870750308036804,0.39307427406311,0.31626883149147,-0.863404154777527,0.981276512145996,0.191767975687981,0.0179323554039001,0.383437156677246,0.307847172021866,-0.870750308036804,0.597319900989532,0.32426705956459,-0.733525633811951,0.573964834213257,0.327366709709167,-0.750596702098846,0.39307427406311,0.31626883149147,-0.863404154777527,0.521699905395508,0.778946161270142,0.347954154014587,0.891996443271637,0.180436879396439,0.41446927189827,0.951896786689758,0.282447278499603,0.118811711668968,0.448808789253235,0.886676609516144,0.111244484782219,0.891996443271637,0.180436879396439,0.41446927189827,0.908789753913879,-0.0247746761888266,0.416518121957779,0.993625104427338,0.0100124217569828,0.112289875745773,0.951896786689758,0.282447278499603,0.118811711668968,0.951896786689758,0.282447278499603,0.118811711668968,0.993625104427338,0.0100124217569828,0.112289875745773,0.984015107154846,0.0289055965840816,-0.175723806023598,0.928663074970245,0.346988201141357,-0.13108816742897,0.448808789253235,0.886676609516144,0.111244484782219,0.951896786689758,0.282447278499603,0.118811711668968,0.928663074970245,0.346988201141357,-0.13108816742897,0.392393261194229,0.919789731502533,0.00378495058976114,0.341739416122437,0.905296921730042,-0.252292722463608,0.764081120491028,0.38950178027153,-0.514264941215515,0.654633402824402,0.378921449184418,-0.65412050485611,0.316450387239456,0.84852546453476,-0.424103587865829,0.764081120491028,0.38950178027153,-0.514264941215515,0.844202399253845,0.0513361506164074,-0.533560752868652,0.773016333580017,0.0912823081016541,-0.627784371376038,0.654633402824402,0.378921449184418,-0.65412050485611,0.654633402824402,0.378921449184418,-0.65412050485611,0.773016333580017,0.0912823081016541,-0.627784371376038, +0.920605778694153,0.139724984765053,-0.364639669656754,0.81708836555481,0.455796748399734,-0.353009760379791,0.316450387239456,0.84852546453476,-0.424103587865829,0.654633402824402,0.378921449184418,-0.65412050485611,0.81708836555481,0.455796748399734,-0.353009760379791,0.440194547176361,0.894553005695343,-0.0774847269058228,0.947330832481384,0.0109401699155569,-0.320069700479507,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.865661025047302,-0.193967401981354,-0.461527645587921,0.966646611690521,-0.169457629323006,-0.192037552595139,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.852650284767151,-0.059975378215313,-0.51902836561203,0.83592814207077,-0.209792360663414,-0.507160067558289,0.865661025047302,-0.193967401981354,-0.461527645587921,0.982482731342316,0.0631801560521126,0.175316616892815,0.998084425926208,0.0616633482277393,0.00499705411493778,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.988163650035858,-0.0455380268394947,0.146488800644875,0.41533300280571,0.888613343238831,0.194588840007782,0.865598917007446,0.468766510486603,0.176058456301689,0.845420837402344,0.530279397964478,-0.0637764483690262,0.369161039590836,0.929343700408936,0.00636240420863032,0.865598917007446,0.468766510486603,0.176058456301689,0.982482731342316,0.0631801560521126,0.175316616892815,0.989315450191498,0.115582823753357,-0.0888567939400673,0.845420837402344,0.530279397964478,-0.0637764483690262,0.845420837402344,0.530279397964478,-0.0637764483690262,0.989315450191498,0.115582823753357,-0.0888567939400673,0.985287845134735,0.125068709254265,-0.116470903158188,0.83901059627533,0.541394233703613,-0.0543462336063385,0.369161039590836,0.929343700408936,0.00636240420863032,0.845420837402344,0.530279397964478,-0.0637764483690262,0.83901059627533,0.541394233703613,-0.0543462336063385,0.343630492687225,0.93797492980957,0.0460529997944832,0.991545021533966,-0.0115073760971427,-0.129251420497894,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.986045718193054,-0.152371600270271,-0.067056804895401, +0.980171322822571,-0.14081147313118,-0.139413714408875,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.988163650035858,-0.0455380268394947,0.146488800644875,0.985069394111633,-0.15815107524395,0.0680177062749863,0.986045718193054,-0.152371600270271,-0.067056804895401,0.475188434123993,0.700506985187531,-0.532433986663818,0.551208794116974,0.402171492576599,-0.731045067310333,0.429802536964417,0.368185758590698,-0.824444651603699,0.389443337917328,0.631120979785919,-0.670835435390472,0.551208794116974,0.402171492576599,-0.731045067310333,0.503604590892792,0.325732111930847,-0.800175666809082,0.336829006671906,0.317928314208984,-0.886266231536865,0.429802536964417,0.368185758590698,-0.824444651603699,0.429802536964417,0.368185758590698,-0.824444651603699,0.336829006671906,0.317928314208984,-0.886266231536865,0.788055241107941,0.269042760133743,-0.553701162338257,0.705819070339203,0.338346719741821,-0.622367143630981,0.389443337917328,0.631120979785919,-0.670835435390472,0.429802536964417,0.368185758590698,-0.824444651603699,0.705819070339203,0.338346719741821,-0.622367143630981,0.535168170928955,0.594861686229706,-0.599778831005096,0.79706084728241,0.281183272600174,-0.534443616867065,0.278537034988403,0.336202412843704,-0.899658262729645,0.192926704883575,0.364895969629288,-0.910840392112732,0.73923659324646,0.344859093427658,-0.57844752073288,0.278537034988403,0.336202412843704,-0.899658262729645,0.460892260074615,0.366113841533661,-0.808417618274689,0.39407479763031,0.414524525403976,-0.820289373397827,0.192926704883575,0.364895969629288,-0.910840392112732,0.441102802753448,0.384839594364166,-0.810756921768188,0.332564800977707,0.353411465883255,-0.874357521533966,0.488260090351105,0.388118863105774,-0.781643033027649,0.484867662191391,0.426925152540207,-0.763307452201843,0.332564800977707,0.353411465883255,-0.874357521533966,0.466656118631363,0.295668810606003,-0.833553910255432,0.593212127685547,0.321026146411896,-0.7382692694664,0.488260090351105,0.388118863105774,-0.781643033027649,0.313833922147751,0.838987350463867,-0.444531738758087, +0.297653019428253,0.831040143966675,-0.469867169857025,0.264259725809097,0.846782326698303,-0.461656272411346,0.275814890861511,0.854386866092682,-0.440396666526794,0.297653019428253,0.831040143966675,-0.469867169857025,0.279201298952103,0.82872998714447,-0.485028952360153,0.252934187650681,0.836789608001709,-0.485600143671036,0.264259725809097,0.846782326698303,-0.461656272411346,0.264259725809097,0.846782326698303,-0.461656272411346,0.252934187650681,0.836789608001709,-0.485600143671036,0.202573224902153,0.861268758773804,-0.466025948524475,0.211023345589638,0.868739426136017,-0.44806370139122,0.275814890861511,0.854386866092682,-0.440396666526794,0.264259725809097,0.846782326698303,-0.461656272411346,0.211023345589638,0.868739426136017,-0.44806370139122,0.220452040433884,0.873438954353333,-0.434171885251999,0.279201298952103,0.82872998714447,-0.485028952360153,0.256998717784882,0.818753182888031,-0.513414859771729,0.241618543863297,0.823541104793549,-0.513225674629211,0.252934187650681,0.836789608001709,-0.485600143671036,0.256998717784882,0.818753182888031,-0.513414859771729,0.24184961616993,0.806344985961914,-0.539737343788147,0.234360799193382,0.808445155620575,-0.539899587631226,0.241618543863297,0.823541104793549,-0.513225674629211,0.241618543863297,0.823541104793549,-0.513225674629211,0.234360799193382,0.808445155620575,-0.539899587631226,0.189263314008713,0.839074850082397,-0.510031998157501,0.194773226976395,0.850903809070587,-0.487879246473312,0.252934187650681,0.836789608001709,-0.485600143671036,0.241618543863297,0.823541104793549,-0.513225674629211,0.194773226976395,0.850903809070587,-0.487879246473312,0.202573224902153,0.861268758773804,-0.466025948524475,0.355381429195404,0.524076342582703,-0.773981869220734,0.378176629543304,0.528110861778259,-0.760316669940948,0.476209849119186,0.397222876548767,-0.784498691558838,0.370532244443893,0.403686285018921,-0.836506485939026,0.378176629543304,0.528110861778259,-0.760316669940948,0.402486979961395,0.522201836109161,-0.751870632171631,0.546992540359497,0.341834425926208,-0.764165222644806, +0.476209849119186,0.397222876548767,-0.784498691558838,7.073596407281e-06,0.83499151468277,-0.550262928009033,0.0795975625514984,0.829659402370453,-0.552566230297089,0.0919826775789261,0.737789630889893,-0.668734490871429,4.06080403081432e-07,0.735536515712738,-0.677485108375549,0.0795975625514984,0.829659402370453,-0.552566230297089,0.176429450511932,0.811212837696075,-0.557500243186951,0.172337353229523,0.741694688796997,-0.64821982383728,0.0919826775789261,0.737789630889893,-0.668734490871429,0.0919826775789261,0.737789630889893,-0.668734490871429,0.172337353229523,0.741694688796997,-0.64821982383728,0.182871222496033,0.526780843734741,-0.830096364021301,0.118349120020866,0.507962286472321,-0.85321033000946,4.06080403081432e-07,0.735536515712738,-0.677485108375549,0.0919826775789261,0.737789630889893,-0.668734490871429,0.118349120020866,0.507962286472321,-0.85321033000946,4.51247871069427e-07,0.499479681253433,-0.866325557231903,2.50662333201035e-06,0.290553063154221,-0.95685887336731,4.51247871069427e-07,0.499479681253433,-0.866325557231903,0.118349120020866,0.507962286472321,-0.85321033000946,0.142957478761673,0.29364675283432,-0.945163905620575,0.142957478761673,0.29364675283432,-0.945163905620575,0.118349120020866,0.507962286472321,-0.85321033000946,0.182871222496033,0.526780843734741,-0.830096364021301,0.208717495203018,0.299665898084641,-0.930933594703674,0.22142082452774,0.15281318128109,-0.9631307721138,0.142957478761673,0.29364675283432,-0.945163905620575,0.208717495203018,0.299665898084641,-0.930933594703674,0.318776696920395,0.121042519807816,-0.940069198608398,0.330113887786865,0.373487502336502,-0.866909325122833,0.332315802574158,0.540797293186188,-0.772725343704224,0.30895471572876,0.22746567428112,-0.92347514629364,0.348579585552216,0.189517378807068,-0.917919039726257,0.332315802574158,0.540797293186188,-0.772725343704224,0.331205278635025,0.555228888988495,-0.762904942035675,0.275888413190842,0.299088269472122,-0.913472473621368,0.30895471572876,0.22746567428112,-0.92347514629364,0.342911422252655,0.810504853725433,-0.474861770868301, +0.57455050945282,0.412903517484665,-0.706684052944183,0.31617084145546,0.329747140407562,-0.889552056789398,0.22217258810997,0.68991482257843,-0.688953518867493,0.57455050945282,0.412903517484665,-0.706684052944183,0.59410285949707,0.175139710307121,-0.785091042518616,0.270146608352661,0.178430765867233,-0.946141183376312,0.31617084145546,0.329747140407562,-0.889552056789398,0.31617084145546,0.329747140407562,-0.889552056789398,0.270146608352661,0.178430765867233,-0.946141183376312,0.809445440769196,0.144350245594978,-0.569175839424133,0.835914254188538,0.249953210353851,-0.488641738891602,0.22217258810997,0.68991482257843,-0.688953518867493,0.31617084145546,0.329747140407562,-0.889552056789398,0.835914254188538,0.249953210353851,-0.488641738891602,0.629011392593384,0.749249517917633,-0.207292005419731,0.780417799949646,0.120299659669399,-0.613576352596283,0.288461476564407,0.137839183211327,-0.947518050670624,0.346846014261246,0.0781911462545395,-0.934657156467438,0.839513540267944,0.0672921165823936,-0.539155781269073,0.288461476564407,0.137839183211327,-0.947518050670624,0.583897352218628,0.1308653652668,-0.801210463047028,0.632351577281952,0.0926535129547119,-0.769120872020721,0.346846014261246,0.0781911462545395,-0.934657156467438,0.924593687057495,0.12973764538765,-0.358182460069656,0.962854385375977,0.131351679563522,-0.235919460654259,0.952069818973541,0.122024171054363,-0.280487269163132,0.911967039108276,0.118431679904461,-0.392797768115997,0.962854385375977,0.131351679563522,-0.235919460654259,0.990326702594757,0.0927801057696342,0.103173792362213,0.994663178920746,0.099911667406559,-0.0257435515522957,0.952069818973541,0.122024171054363,-0.280487269163132,0.462169378995895,0.857039988040924,-0.227776110172272,0.453963726758957,0.862245619297028,-0.224609419703484,0.368420213460922,0.90610283613205,-0.207952544093132,0.370030969381332,0.907288372516632,-0.199761897325516,0.453963726758957,0.862245619297028,-0.224609419703484,0.466593980789185,0.848514020442963,-0.249627456068993,0.363732397556305,0.902941644191742,-0.228899896144867, +0.368420213460922,0.90610283613205,-0.207952544093132,0.368420213460922,0.90610283613205,-0.207952544093132,0.363732397556305,0.902941644191742,-0.228899896144867,0.268075793981552,0.938277304172516,-0.218565970659256,0.267510741949081,0.944651663303375,-0.189924359321594,0.370030969381332,0.907288372516632,-0.199761897325516,0.368420213460922,0.90610283613205,-0.207952544093132,0.267510741949081,0.944651663303375,-0.189924359321594,0.265947252511978,0.947537899017334,-0.177324488759041,0.466593980789185,0.848514020442963,-0.249627456068993,0.425431042909622,0.863421499729156,-0.271130442619324,0.354320287704468,0.896461427211761,-0.266108989715576,0.363732397556305,0.902941644191742,-0.228899896144867,0.425431042909622,0.863421499729156,-0.271130442619324,0.412412017583847,0.853519916534424,-0.318465173244476,0.342523485422134,0.883798897266388,-0.318711996078491,0.354320287704468,0.896461427211761,-0.266108989715576,0.354320287704468,0.896461427211761,-0.266108989715576,0.342523485422134,0.883798897266388,-0.318711996078491,0.262972354888916,0.908594965934753,-0.324500799179077,0.267176300287247,0.927280128002167,-0.262237429618835,0.363732397556305,0.902941644191742,-0.228899896144867,0.354320287704468,0.896461427211761,-0.266108989715576,0.267176300287247,0.927280128002167,-0.262237429618835,0.268075793981552,0.938277304172516,-0.218565970659256,0.792701959609985,0.400867879390717,-0.459269553422928,0.849435150623322,0.347480028867722,-0.397136718034744,0.961063802242279,0.21541254222393,-0.173071682453156,0.859557867050171,0.334645241498947,-0.386228829622269,0.849435150623322,0.347480028867722,-0.397136718034744,0.867344975471497,0.2725790143013,-0.416429340839386,0.951062262058258,0.134249106049538,-0.278312623500824,0.961063802242279,0.21541254222393,-0.173071682453156,0.373198360204697,0.847398638725281,-0.377675265073776,0.334130376577377,0.851143836975098,-0.404859244823456,0.291103363037109,0.861866414546967,-0.415265202522278,0.309454381465912,0.8653284907341,-0.394264459609985,0.334130376577377,0.851143836975098,-0.404859244823456, +0.313833922147751,0.838987350463867,-0.444531738758087,0.275814890861511,0.854386866092682,-0.440396666526794,0.291103363037109,0.861866414546967,-0.415265202522278,0.291103363037109,0.861866414546967,-0.415265202522278,0.275814890861511,0.854386866092682,-0.440396666526794,0.220452040433884,0.873438954353333,-0.434171885251999,0.230519369244576,0.87637585401535,-0.422878295183182,0.309454381465912,0.8653284907341,-0.394264459609985,0.291103363037109,0.861866414546967,-0.415265202522278,0.230519369244576,0.87637585401535,-0.422878295183182,0.241002172231674,0.876779854297638,-0.41614305973053,0.545172929763794,0.533064484596252,-0.647015333175659,0.619479656219482,0.509791851043701,-0.596956551074982,0.828815698623657,0.333292007446289,-0.449422895908356,0.608534216880798,0.422096699476242,-0.671952784061432,0.619479656219482,0.509791851043701,-0.596956551074982,0.656255125999451,0.448537945747375,-0.60674774646759,0.826049566268921,0.216002121567726,-0.52056223154068,0.828815698623657,0.333292007446289,-0.449422895908356,0.748709142208099,0.238583773374557,-0.61847585439682,0.750775992870331,0.394683867692947,-0.529679238796234,0.728286027908325,0.183006748557091,-0.660384654998779,0.74715131521225,0.127207294106483,-0.652367472648621,0.750775992870331,0.394683867692947,-0.529679238796234,0.739257872104645,0.406338691711426,-0.537016332149506,0.691599428653717,0.257617503404617,-0.674776554107666,0.728286027908325,0.183006748557091,-0.660384654998779,0.409580141305923,0.888055443763733,-0.208810359239578,0.777661442756653,0.434450030326843,-0.454418390989304,0.74303275346756,0.400960326194763,-0.535848140716553,0.38879406452179,0.854439854621887,-0.344632625579834,0.777661442756653,0.434450030326843,-0.454418390989304,0.835684537887573,0.120450638234615,-0.535838782787323,0.802316009998322,0.112709224224091,-0.58616179227829,0.74303275346756,0.400960326194763,-0.535848140716553,0.74303275346756,0.400960326194763,-0.535848140716553,0.802316009998322,0.112709224224091,-0.58616179227829,0.998084425926208,0.0616633482277393,0.00499705411493778, +0.892125844955444,0.446515828371048,0.0688126757740974,0.38879406452179,0.854439854621887,-0.344632625579834,0.74303275346756,0.400960326194763,-0.535848140716553,0.892125844955444,0.446515828371048,0.0688126757740974,0.41334941983223,0.894980490207672,0.167786166071892,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.810217082500458,0.0675373077392578,-0.582225978374481,0.809904813766479,0.00722522288560867,-0.586516976356506,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.810217082500458,0.0675373077392578,-0.582225978374481,0.837286174297333,0.0577985979616642,-0.543701350688934,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.809904813766479,0.00722522288560867,-0.586516976356506,0.916099011898041,0.0440531559288502,-0.398524641990662,0.94000256061554,0.0346132442355156,-0.339407026767731,0.945058286190033,-0.0753810480237007,-0.318092048168182,0.915224254131317,-0.053038727492094,-0.399438798427582,0.94000256061554,0.0346132442355156,-0.339407026767731,0.985578894615173,0.0224285423755646,-0.167723700404167,0.978056848049164,-0.11288920044899,-0.175102561712265,0.945058286190033,-0.0753810480237007,-0.318092048168182,3.1286046578316e-05,0.933347523212433,0.35897421836853,0.0770793333649635,0.951992928981781,0.296257019042969,0.200590163469315,0.958871722221375,0.200819864869118,0.108371868729591,0.959608852863312,0.259627461433411,0.0770793333649635,0.951992928981781,0.296257019042969,0.198442324995995,0.965159118175507,0.170553311705589,0.30128887295723,0.942227482795715,0.146398097276688,0.200590163469315,0.958871722221375,0.200819864869118,0.200590163469315,0.958871722221375,0.200819864869118,0.30128887295723,0.942227482795715,0.146398097276688,0.400216519832611,0.909813821315765,0.109843462705612,0.30015429854393,0.941739022731781,0.151773378252983,0.108371868729591,0.959608852863312,0.259627461433411,0.200590163469315,0.958871722221375,0.200819864869118,0.30015429854393,0.941739022731781,0.151773378252983,0.222897455096245,0.956485331058502,0.188288345932961,0.400216519832611,0.909813821315765,0.109843462705612, +0.441829472780228,0.897083759307861,0.00524313747882843,0.344667553901672,0.93763679265976,0.0451833009719849,0.30015429854393,0.941739022731781,0.151773378252983,0.441829472780228,0.897083759307861,0.00524313747882843,0.466133117675781,0.879672467708588,-0.0943194255232811,0.355120450258255,0.933926165103912,-0.0408839508891106,0.344667553901672,0.93763679265976,0.0451833009719849,0.344667553901672,0.93763679265976,0.0451833009719849,0.355120450258255,0.933926165103912,-0.0408839508891106,0.239230915904045,0.970812439918518,0.0170813668519258,0.22064197063446,0.969886660575867,0.103136040270329,0.30015429854393,0.941739022731781,0.151773378252983,0.344667553901672,0.93763679265976,0.0451833009719849,0.22064197063446,0.969886660575867,0.103136040270329,0.222897455096245,0.956485331058502,0.188288345932961,0.920147359371185,0.269906520843506,-0.283688962459564,0.919898808002472,0.297293335199356,-0.255739659070969,0.976116955280304,0.0134601527824998,-0.216828137636185,0.967101693153381,0.0675250291824341,-0.245264634490013,0.919898808002472,0.297293335199356,-0.255739659070969,0.90697705745697,0.336921870708466,-0.252737581729889,0.971439898014069,-0.0380248129367828,-0.234219044446945,0.976116955280304,0.0134601527824998,-0.216828137636185,0.485422134399414,0.856925666332245,-0.173331663012505,0.459614187479019,0.863845646381378,-0.206217125058174,0.373321622610092,0.911100506782532,-0.174719214439392,0.375085711479187,0.918812155723572,-0.122861780226231,0.459614187479019,0.863845646381378,-0.206217125058174,0.462169378995895,0.857039988040924,-0.227776110172272,0.370030969381332,0.907288372516632,-0.199761897325516,0.373321622610092,0.911100506782532,-0.174719214439392,0.373321622610092,0.911100506782532,-0.174719214439392,0.370030969381332,0.907288372516632,-0.199761897325516,0.265947252511978,0.947537899017334,-0.177324488759041,0.264466553926468,0.952880501747131,-0.148580998182297,0.375085711479187,0.918812155723572,-0.122861780226231,0.373321622610092,0.911100506782532,-0.174719214439392,0.264466553926468,0.952880501747131,-0.148580998182297, +0.262632310390472,0.961123704910278,-0.0852374881505966,0.82975310087204,0.32433557510376,-0.454220652580261,0.847729325294495,0.33799347281456,-0.408797353506088,0.890639185905457,0.299340456724167,-0.342282474040985,0.784429788589478,0.305884122848511,-0.53954142332077,0.847729325294495,0.33799347281456,-0.408797353506088,0.853890836238861,0.319215506315231,-0.411061942577362,0.924147367477417,0.229529798030853,-0.305397510528564,0.890639185905457,0.299340456724167,-0.342282474040985,0.886994004249573,0.163238406181335,-0.431966125965118,0.88551664352417,0.269461572170258,-0.378484547138214,0.898446023464203,0.0842752084136009,-0.430920600891113,0.901818215847015,0.0675557777285576,-0.426802188158035,0.88551664352417,0.269461572170258,-0.378484547138214,0.893243849277496,0.298696398735046,-0.335999757051468,0.922317802906036,0.124125301837921,-0.365954786539078,0.898446023464203,0.0842752084136009,-0.430920600891113,0.905371725559235,0.0427408628165722,-0.4224633872509,0.959687411785126,0.0514214597642422,-0.27632600069046,0.94057035446167,0.131806656718254,-0.312976598739624,0.888292610645294,0.134076192975044,-0.439271807670593,0.905371725559235,0.0427408628165722,-0.4224633872509,0.888292610645294,0.134076192975044,-0.439271807670593,0.954086303710938,0.116435326635838,-0.275974869728088,0.95909571647644,0.00866605900228024,-0.282949209213257,0.959687411785126,0.0514214597642422,-0.27632600069046,0.905371725559235,0.0427408628165722,-0.4224633872509,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.965870499610901,0.00448970589786768,-0.258986443281174,0.905371725559235,0.0427408628165722,-0.4224633872509,0.95909571647644,0.00866605900228024,-0.282949209213257,0.955293476581573,-0.100287422537804,-0.278130829334259,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.989710927009583,0.102190293371677,-0.100146681070328,0.988306939601898,0.104397609829903,-0.111133053898811,0.972208499908447,-0.127094998955727,-0.19661520421505,0.980171322822571,-0.14081147313118,-0.139413714408875,0.988306939601898,0.104397609829903,-0.111133053898811, +0.988293766975403,-0.00941547844558954,-0.152272343635559,0.955293476581573,-0.100287422537804,-0.278130829334259,0.972208499908447,-0.127094998955727,-0.19661520421505,0.689390957355499,0.722647607326508,0.0502060428261757,0.631899356842041,0.769888997077942,0.0892974659800529,0.814651012420654,0.577126085758209,0.05717808380723,0.838683366775513,0.544562935829163,-0.00783465337008238,0.631899356842041,0.769888997077942,0.0892974659800529,0.584385097026825,0.809152603149414,0.0613689199090004,0.801068782806396,0.595264196395874,0.0628444850444794,0.814651012420654,0.577126085758209,0.05717808380723,0.887120962142944,0.441524177789688,-0.134434923529625,0.603810250759125,0.796887397766113,0.0195919945836067,0.537430226802826,0.842876613140106,-0.026979073882103,0.847741067409515,0.516543209552765,-0.12049139291048,0.838683366775513,0.544562935829163,-0.00783465337008238,0.989710927009583,0.102190293371677,-0.100146681070328,0.994581878185272,0.0645951926708221,-0.0814513266086578,0.850350499153137,0.521303713321686,-0.0717378035187721,0.994581878185272,0.0645951926708221,-0.0814513266086578,0.991479098796844,0.110518060624599,-0.0689562931656837,0.847741067409515,0.516543209552765,-0.12049139291048,0.850350499153137,0.521303713321686,-0.0717378035187721,4.66808523924556e-06,0.516847312450409,-0.856077551841736,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,0.243593201041222,0.351151376962662,-0.904076874256134,0.1112105473876,0.567817628383636,-0.815607249736786,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,-7.8074026532704e-06,0.338909506797791,-0.940818905830383,0.261896342039108,0.326266586780548,-0.908273279666901,0.243593201041222,0.351151376962662,-0.904076874256134,0.243593201041222,0.351151376962662,-0.904076874256134,0.261896342039108,0.326266586780548,-0.908273279666901,0.344331592321396,0.314264476299286,-0.884688377380371,0.308559060096741,0.384593516588211,-0.869988083839417,0.1112105473876,0.567817628383636,-0.815607249736786,0.243593201041222,0.351151376962662,-0.904076874256134, +0.308559060096741,0.384593516588211,-0.869988083839417,0.133469432592392,0.65885329246521,-0.74033659696579,0.348579585552216,0.189517378807068,-0.917919039726257,0.331366807222366,0.181360095739365,-0.925907373428345,0.358443260192871,0.143149480223656,-0.922511041164398,0.357639133930206,0.230505898594856,-0.904964864253998,0.358443260192871,0.143149480223656,-0.922511041164398,0.368675380945206,0.098903588950634,-0.924281597137451,0.323132365942001,0.276261866092682,-0.905132412910461,0.357639133930206,0.230505898594856,-0.904964864253998,0.291167229413986,0.205097615718842,-0.934428453445435,1.21185021271231e-05,0.230906829237938,-0.972975850105286,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,0.22142082452774,0.15281318128109,-0.9631307721138,0.291167229413986,0.205097615718842,-0.934428453445435,0.22142082452774,0.15281318128109,-0.9631307721138,0.318776696920395,0.121042519807816,-0.940069198608398,0.371691584587097,0.176296725869179,-0.911462962627411,0.382658123970032,0.343927413225174,-0.857488572597504,0.316920131444931,0.322103083133698,-0.892082452774048,0.363035053014755,0.285731792449951,-0.886883854866028,0.411484777927399,0.292565256357193,-0.863183617591858,0.382658123970032,0.343927413225174,-0.857488572597504,0.411484777927399,0.292565256357193,-0.863183617591858,0.253090023994446,0.309255063533783,-0.916682422161102,0.247937545180321,0.356415033340454,-0.900830328464508,0.370532244443893,0.403686285018921,-0.836506485939026,0.359844118356705,0.337632149457932,-0.869779706001282,0.184018075466156,0.307996332645416,-0.933421492576599,0.285932034254074,0.363823145627975,-0.886496305465698,0.184018075466156,0.307996332645416,-0.933421492576599,0.199421912431717,0.25212886929512,-0.946922361850739,0.275888413190842,0.299088269472122,-0.913472473621368,0.285932034254074,0.363823145627975,-0.886496305465698,0.331366807222366,0.181360095739365,-0.925907373428345,0.277288466691971,0.210945814847946,-0.937343597412109,0.324567437171936,0.37573054432869,-0.868033766746521,0.259875953197479,0.378932803869247,-0.888186097145081, +0.277288466691971,0.210945814847946,-0.937343597412109,0.199421912431717,0.25212886929512,-0.946922361850739,0.261563330888748,0.344951987266541,-0.901439249515533,0.324567437171936,0.37573054432869,-0.868033766746521,0.76337343454361,0.199616685509682,-0.614340484142303,0.466656118631363,0.295668810606003,-0.833553910255432,0.406064093112946,0.278222501277924,-0.87046205997467,0.764439225196838,0.174755975604057,-0.620558738708496,0.76337343454361,0.199616685509682,-0.614340484142303,0.764439225196838,0.174755975604057,-0.620558738708496,0.472372621297836,0.228369891643524,-0.851299822330475,0.491225898265839,0.251587748527527,-0.833906888961792,0.359844118356705,0.337632149457932,-0.869779706001282,0.585752069950104,0.344408452510834,-0.733673751354218,0.782543540000916,0.231308832764626,-0.578032732009888,0.381466448307037,0.306202560663223,-0.872194528579712,0.585752069950104,0.344408452510834,-0.733673751354218,0.651852667331696,0.292813539505005,-0.699534296989441,0.593212127685547,0.321026146411896,-0.7382692694664,0.782543540000916,0.231308832764626,-0.578032732009888,0.55392849445343,0.168168351054192,-0.815403401851654,0.555911600589752,0.207833155989647,-0.80484014749527,0.635222494602203,0.233578324317932,-0.736161351203918,0.58081328868866,0.245254293084145,-0.776212811470032,0.635222494602203,0.233578324317932,-0.736161351203918,0.651852667331696,0.292813539505005,-0.699534296989441,0.546992540359497,0.341834425926208,-0.764165222644806,0.58081328868866,0.245254293084145,-0.776212811470032,0.546176314353943,0.382619827985764,-0.745180189609528,0.460892260074615,0.366113841533661,-0.808417618274689,0.503604590892792,0.325732111930847,-0.800175666809082,0.572880685329437,0.325168281793594,-0.752378463745117,0.546176314353943,0.382619827985764,-0.745180189609528,0.572880685329437,0.325168281793594,-0.752378463745117,0.416761249303818,0.332422733306885,-0.846052706241608,0.441102802753448,0.384839594364166,-0.810756921768188,0.555911600589752,0.207833155989647,-0.80484014749527,0.461237609386444,0.226542562246323,-0.857868492603302, +0.493230670690536,0.4366734623909,-0.752356112003326,0.484867662191391,0.426925152540207,-0.763307452201843,0.461237609386444,0.226542562246323,-0.857868492603302,0.318130344152451,0.259494483470917,-0.911841869354248,0.39407479763031,0.414524525403976,-0.820289373397827,0.493230670690536,0.4366734623909,-0.752356112003326,0.608534216880798,0.422096699476242,-0.671952784061432,0.661338627338409,0.378908932209015,-0.647347986698151,0.262142330408096,0.337864607572556,-0.90395176410675,0.38545623421669,0.337239533662796,-0.858890533447266,0.262142330408096,0.337864607572556,-0.90395176410675,0.318130344152451,0.259494483470917,-0.911841869354248,0.416671603918076,0.242084756493568,-0.876230418682098,0.38545623421669,0.337239533662796,-0.858890533447266,0.987502992153168,0.157599970698357,0.000459699804196134,0.870228707790375,0.286943376064301,-0.400456577539444,0.836861670017242,0.305047154426575,-0.454542368650436,0.978566586971283,0.186355918645859,-0.0876293033361435,0.987502992153168,0.157599970698357,0.000459699804196134,0.978566586971283,0.186355918645859,-0.0876293033361435,0.788055241107941,0.269042760133743,-0.553701162338257,0.79706084728241,0.281183272600174,-0.534443616867065,0.74715131521225,0.127207294106483,-0.652367472648621,0.737434148788452,0.135899171233177,-0.661605775356293,0.813067972660065,0.137634322047234,-0.565665185451508,0.775611996650696,0.14525580406189,-0.614269316196442,0.813067972660065,0.137634322047234,-0.565665185451508,0.91890150308609,0.17311230301857,-0.354474425315857,0.826049566268921,0.216002121567726,-0.52056223154068,0.775611996650696,0.14525580406189,-0.614269316196442,0.661338627338409,0.378908932209015,-0.647347986698151,0.940506935119629,0.267852574586868,-0.209049537777901,0.982389628887177,0.173063978552818,0.0704231411218643,0.73923659324646,0.344859093427658,-0.57844752073288,0.940506935119629,0.267852574586868,-0.209049537777901,0.91890150308609,0.17311230301857,-0.354474425315857,0.893178820610046,0.295912206172943,-0.338626027107239,0.982389628887177,0.173063978552818,0.0704231411218643, +0.742010354995728,0.33788987994194,-0.579008817672729,0.597319900989532,0.32426705956459,-0.733525633811951,0.607783138751984,0.349040508270264,-0.713281393051147,0.767211973667145,0.350530058145523,-0.537135422229767,0.742010354995728,0.33788987994194,-0.579008817672729,0.767211973667145,0.350530058145523,-0.537135422229767,0.729379653930664,0.360977053642273,-0.581120312213898,0.733268737792969,0.353318601846695,-0.580932796001434,0.859557867050171,0.334645241498947,-0.386228829622269,0.911404967308044,0.292803913354874,-0.289148598909378,0.610481441020966,0.342256963253021,-0.714263617992401,0.692432820796967,0.330824136734009,-0.641164720058441,0.610481441020966,0.342256963253021,-0.714263617992401,0.587326943874359,0.256558895111084,-0.767609655857086,0.691599428653717,0.257617503404617,-0.674776554107666,0.692432820796967,0.330824136734009,-0.641164720058441,0.737434148788452,0.135899171233177,-0.661605775356293,0.674247980117798,0.186011746525764,-0.714695274829865,0.683745205402374,0.336974382400513,-0.647256314754486,0.724198579788208,0.337111532688141,-0.601574718952179,0.674247980117798,0.186011746525764,-0.714695274829865,0.587326943874359,0.256558895111084,-0.767609655857086,0.573964834213257,0.327366709709167,-0.750596702098846,0.683745205402374,0.336974382400513,-0.647256314754486,0.874095916748047,0.0289738848805428,0.484888583421707,0.990326702594757,0.0927801057696342,0.103173792362213,0.976764976978302,0.115601629018784,0.180461540818214,0.839734971523285,0.0463324189186096,0.541016101837158,0.874095916748047,0.0289738848805428,0.484888583421707,0.839734971523285,0.0463324189186096,0.541016101837158,0.962669014930725,0.186627522110939,0.196057677268982,0.980971336364746,0.185382813215256,0.0576918534934521,0.911404967308044,0.292803913354874,-0.289148598909378,0.985915005207062,0.156256228685379,0.0596290454268456,0.93198835849762,0.0418618321418762,0.360062897205353,0.981276512145996,0.191767975687981,0.0179323554039001,0.985915005207062,0.156256228685379,0.0596290454268456,0.992201030254364,0.0745126605033875,-0.0999240875244141, +0.994663178920746,0.099911667406559,-0.0257435515522957,0.93198835849762,0.0418618321418762,0.360062897205353,0.899305462837219,0.0559697672724724,-0.433724671602249,0.904049396514893,0.0348534919321537,-0.426004707813263,0.941828370094299,0.0542167797684669,-0.331692397594452,0.915594160556793,0.0869414284825325,-0.392591774463654,0.941828370094299,0.0542167797684669,-0.331692397594452,0.992201030254364,0.0745126605033875,-0.0999240875244141,0.951062262058258,0.134249106049538,-0.278312623500824,0.915594160556793,0.0869414284825325,-0.392591774463654,0.857279002666473,0.124704919755459,-0.499521195888519,0.583897352218628,0.1308653652668,-0.801210463047028,0.59410285949707,0.175139710307121,-0.785091042518616,0.869895935058594,0.149776205420494,-0.469944596290588,0.857279002666473,0.124704919755459,-0.499521195888519,0.869895935058594,0.149776205420494,-0.469944596290588,0.934235095977783,0.148394331336021,-0.324320822954178,0.924593687057495,0.12973764538765,-0.358182460069656,0.904049396514893,0.0348534919321537,-0.426004707813263,0.838982045650482,0.0504205077886581,-0.541818201541901,0.845451891422272,0.114010237157345,-0.521740198135376,0.911967039108276,0.118431679904461,-0.392797768115997,0.838982045650482,0.0504205077886581,-0.541818201541901,0.64826375246048,0.10987926274538,-0.753445863723755,0.632351577281952,0.0926535129547119,-0.769120872020721,0.845451891422272,0.114010237157345,-0.521740198135376,0.784429788589478,0.305884122848511,-0.53954142332077,0.791596829891205,0.230182409286499,-0.566030383110046,0.575262010097504,0.198084592819214,-0.793622136116028,0.691240251064301,0.223803639411926,-0.687094509601593,0.575262010097504,0.198084592819214,-0.793622136116028,0.64826375246048,0.10987926274538,-0.753445863723755,0.768146157264709,0.127034261822701,-0.627545773983002,0.691240251064301,0.223803639411926,-0.687094509601593,0.865345120429993,-0.0699237212538719,0.496274620294571,0.925031006336212,-0.0753350853919983,0.372347176074982,0.908789753913879,-0.0247746761888266,0.416518121957779,0.830937922000885,-0.0402981527149677,0.554903745651245, +0.865345120429993,-0.0699237212538719,0.496274620294571,0.830937922000885,-0.0402981527149677,0.554903745651245,0.809445440769196,0.144350245594978,-0.569175839424133,0.780417799949646,0.120299659669399,-0.613576352596283,0.901818215847015,0.0675557777285576,-0.426802188158035,0.895589888095856,-0.120351918041706,-0.428292095661163,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.924264490604401,0.130826368927956,-0.358635663986206,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.990053594112396,0.0981012284755707,-0.100846499204636,0.924147367477417,0.229529798030853,-0.305397510528564,0.924264490604401,0.130826368927956,-0.358635663986206,0.791596829891205,0.230182409286499,-0.566030383110046,0.959591209888458,0.208667978644371,-0.188792005181313,0.902754366397858,-0.128846421837807,0.410406053066254,0.839513540267944,0.0672921165823936,-0.539155781269073,0.959591209888458,0.208667978644371,-0.188792005181313,0.990053594112396,0.0981012284755707,-0.100846499204636,0.951331615447998,-0.149952217936516,0.269225656986237,0.902754366397858,-0.128846421837807,0.410406053066254,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.852650284767151,-0.059975378215313,-0.51902836561203,0.844202399253845,0.0513361506164074,-0.533560752868652,0.925525367259979,0.0349328182637691,-0.377071022987366,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.925525367259979,0.0349328182637691,-0.377071022987366,0.984015107154846,0.0289055965840816,-0.175723806023598,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.967101693153381,0.0675250291824341,-0.245264634490013,0.980044484138489,-0.101791329681873,-0.170737832784653,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.951133668422699,0.1209502145648,-0.28410530090332,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.922317802906036,0.124125301837921,-0.365954786539078,0.951133668422699,0.1209502145648,-0.28410530090332,0.895589888095856,-0.120351918041706,-0.428292095661163, +0.868053674697876,-0.121659033000469,-0.481333494186401,0.863646626472473,-0.193558514118195,-0.465456366539001,0.9298415184021,-0.164688065648079,-0.32904788851738,0.868053674697876,-0.121659033000469,-0.481333494186401,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.83592814207077,-0.209792360663414,-0.507160067558289,0.863646626472473,-0.193558514118195,-0.465456366539001,0.999491512775421,0.0158792212605476,-0.0276509076356888,0.985578894615173,0.0224285423755646,-0.167723700404167,0.982325971126556,0.123072631657124,-0.141027852892876,0.990552127361298,0.136053889989853,0.0171984955668449,0.999491512775421,0.0158792212605476,-0.0276509076356888,0.990552127361298,0.136053889989853,0.0171984955668449,0.920605778694153,0.139724984765053,-0.364639669656754,0.947330832481384,0.0109401699155569,-0.320069700479507,0.980044484138489,-0.101791329681873,-0.170737832784653,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.98804771900177,-0.153398603200912,-0.0151911964640021,0.966646611690521,-0.169457629323006,-0.192037552595139,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.973713517189026,-0.172938525676727,-0.148237258195877,0.978056848049164,-0.11288920044899,-0.175102561712265,0.98804771900177,-0.153398603200912,-0.0151911964640021,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.909102857112885,-0.171811461448669,-0.37949001789093,0.940621256828308,-0.200632810592651,-0.273821353912354,0.95274031162262,-0.0942111760377884,-0.288808196783066,0.940621256828308,-0.200632810592651,-0.273821353912354,0.973713517189026,-0.172938525676727,-0.148237258195877,0.971439898014069,-0.0380248129367828,-0.234219044446945,0.95274031162262,-0.0942111760377884,-0.288808196783066,0.893739640712738,0.0481724552810192,-0.445992112159729,0.837286174297333,0.0577985979616642,-0.543701350688934,0.835684537887573,0.120450638234615,-0.535838782787323,0.895240247249603,0.123104833066463,-0.428240805864334,0.893739640712738,0.0481724552810192,-0.445992112159729,0.895240247249603,0.123104833066463,-0.428240805864334, +0.911755323410034,0.12490601092577,-0.391280710697174,0.916099011898041,0.0440531559288502,-0.398524641990662,0.909102857112885,-0.171811461448669,-0.37949001789093,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.915224254131317,-0.053038727492094,-0.399438798427582,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.886656284332275,0.0170933715999126,-0.462113082408905,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.887120962142944,0.441524177789688,-0.134434923529625,0.986953139305115,0.0644822493195534,-0.147531688213348,0.899778306484222,0.116290338337421,-0.420565724372864,0.892151772975922,0.415251165628433,-0.177852809429169,0.899778306484222,0.116290338337421,-0.420565724372864,0.886656284332275,0.0170933715999126,-0.462113082408905,0.916534781455994,0.315282136201859,-0.246092095971107,0.892151772975922,0.415251165628433,-0.177852809429169,0.213816419243813,0.31326550245285,-0.925282299518585,0.0663652718067169,0.333928227424622,-0.940259397029877,0.0522924698889256,0.322998911142349,-0.944953560829163,0.215213447809219,0.322506368160248,-0.921777009963989,0.213816419243813,0.31326550245285,-0.925282299518585,0.215213447809219,0.322506368160248,-0.921777009963989,0.344331592321396,0.314264476299286,-0.884688377380371,0.333691775798798,0.296535044908524,-0.894827723503113,0.462238311767578,0.886621832847595,0.0154123418033123,0.857436776161194,0.477857738733292,-0.190929800271988,0.811547577381134,0.449394702911377,-0.37340971827507,0.51391863822937,0.845266163349152,-0.146331176161766,0.857436776161194,0.477857738733292,-0.190929800271988,0.954086303710938,0.116435326635838,-0.275974869728088,0.888292610645294,0.134076192975044,-0.439271807670593,0.811547577381134,0.449394702911377,-0.37340971827507,0.811547577381134,0.449394702911377,-0.37340971827507,0.888292610645294,0.134076192975044,-0.439271807670593,0.94057035446167,0.131806656718254,-0.312976598739624,0.841995894908905,0.44246968626976,-0.308647990226746, +0.51391863822937,0.845266163349152,-0.146331176161766,0.811547577381134,0.449394702911377,-0.37340971827507,0.841995894908905,0.44246968626976,-0.308647990226746,0.577709436416626,0.788253307342529,-0.211915999650955,0.475937902927399,0.393635958433151,-0.786469340324402,0.522377550601959,0.226540461182594,-0.822071313858032,0.61596953868866,0.263572335243225,-0.742368578910828,0.437127500772476,0.495630919933319,-0.750512957572937,0.522377550601959,0.226540461182594,-0.822071313858032,0.472372621297836,0.228369891643524,-0.851299822330475,0.764439225196838,0.174755975604057,-0.620558738708496,0.61596953868866,0.263572335243225,-0.742368578910828,0.61596953868866,0.263572335243225,-0.742368578910828,0.764439225196838,0.174755975604057,-0.620558738708496,0.406064093112946,0.278222501277924,-0.87046205997467,0.275860637426376,0.374255150556564,-0.8853440284729,0.437127500772476,0.495630919933319,-0.750512957572937,0.61596953868866,0.263572335243225,-0.742368578910828,0.275860637426376,0.374255150556564,-0.8853440284729,0.192238688468933,0.585725247859955,-0.787381827831268,0.3162000477314,0.663077235221863,-0.67848813533783,0.372852832078934,0.41802653670311,-0.828392803668976,0.563573241233826,0.408018082380295,-0.718266189098358,0.480441778898239,0.691208183765411,-0.539821088314056,0.372852832078934,0.41802653670311,-0.828392803668976,0.416761249303818,0.332422733306885,-0.846052706241608,0.572880685329437,0.325168281793594,-0.752378463745117,0.563573241233826,0.408018082380295,-0.718266189098358,0.563573241233826,0.408018082380295,-0.718266189098358,0.572880685329437,0.325168281793594,-0.752378463745117,0.503604590892792,0.325732111930847,-0.800175666809082,0.551208794116974,0.402171492576599,-0.731045067310333,0.480441778898239,0.691208183765411,-0.539821088314056,0.563573241233826,0.408018082380295,-0.718266189098358,0.551208794116974,0.402171492576599,-0.731045067310333,0.475188434123993,0.700506985187531,-0.532433986663818,0.332564800977707,0.353411465883255,-0.874357521533966,0.441102802753448,0.384839594364166,-0.810756921768188, +0.416761249303818,0.332422733306885,-0.846052706241608,0.259202659130096,0.317281305789948,-0.912220656871796,0.332564800977707,0.353411465883255,-0.874357521533966,0.259202659130096,0.317281305789948,-0.912220656871796,0.406064093112946,0.278222501277924,-0.87046205997467,0.466656118631363,0.295668810606003,-0.833553910255432,0.136726126074791,0.2953742146492,-0.945547461509705,0.491225898265839,0.251587748527527,-0.833906888961792,0.472372621297836,0.228369891643524,-0.851299822330475,0.185440421104431,0.276990950107574,-0.942808568477631,0.136726126074791,0.2953742146492,-0.945547461509705,0.185440421104431,0.276990950107574,-0.942808568477631,0.363035053014755,0.285731792449951,-0.886883854866028,0.316920131444931,0.322103083133698,-0.892082452774048,0.278537034988403,0.336202412843704,-0.899658262729645,0.79706084728241,0.281183272600174,-0.534443616867065,0.788055241107941,0.269042760133743,-0.553701162338257,0.336829006671906,0.317928314208984,-0.886266231536865,0.278537034988403,0.336202412843704,-0.899658262729645,0.336829006671906,0.317928314208984,-0.886266231536865,0.503604590892792,0.325732111930847,-0.800175666809082,0.460892260074615,0.366113841533661,-0.808417618274689,0.231597498059273,0.720394432544708,-0.653754115104675,0.257353484630585,0.407361626625061,-0.876256704330444,0.428826004266739,0.37702539563179,-0.820950865745544,0.392940819263458,0.683278143405914,-0.615409255027771,0.257353484630585,0.407361626625061,-0.876256704330444,0.253090023994446,0.309255063533783,-0.916682422161102,0.411484777927399,0.292565256357193,-0.863183617591858,0.428826004266739,0.37702539563179,-0.820950865745544,0.428826004266739,0.37702539563179,-0.820950865745544,0.411484777927399,0.292565256357193,-0.863183617591858,0.363035053014755,0.285731792449951,-0.886883854866028,0.429304540157318,0.351523876190186,-0.831942617893219,0.392940819263458,0.683278143405914,-0.615409255027771,0.428826004266739,0.37702539563179,-0.820950865745544,0.429304540157318,0.351523876190186,-0.831942617893219,0.414057105779648,0.641223967075348,-0.646056234836578, +0.535168170928955,0.594861686229706,-0.599778831005096,0.705819070339203,0.338346719741821,-0.622367143630981,0.836495816707611,0.426201701164246,-0.344422489404678,0.5715012550354,0.753715932369232,-0.324497550725937,0.705819070339203,0.338346719741821,-0.622367143630981,0.788055241107941,0.269042760133743,-0.553701162338257,0.978566586971283,0.186355918645859,-0.0876293033361435,0.836495816707611,0.426201701164246,-0.344422489404678,0.836495816707611,0.426201701164246,-0.344422489404678,0.978566586971283,0.186355918645859,-0.0876293033361435,0.836861670017242,0.305047154426575,-0.454542368650436,0.661201655864716,0.547184109687805,-0.513226926326752,0.5715012550354,0.753715932369232,-0.324497550725937,0.836495816707611,0.426201701164246,-0.344422489404678,0.661201655864716,0.547184109687805,-0.513226926326752,0.428906440734863,0.83082526922226,-0.354638814926147,0.0800770372152328,0.348889946937561,-0.933736324310303,0.247937545180321,0.356415033340454,-0.900830328464508,0.253090023994446,0.309255063533783,-0.916682422161102,0.066230870783329,0.316772729158401,-0.946186363697052,0.0800770372152328,0.348889946937561,-0.933736324310303,0.066230870783329,0.316772729158401,-0.946186363697052,0.0522924698889256,0.322998911142349,-0.944953560829163,0.0663652718067169,0.333928227424622,-0.940259397029877,0.732320487499237,0.344545662403107,-0.587362706661224,0.733268737792969,0.353318601846695,-0.580932796001434,0.729379653930664,0.360977053642273,-0.581120312213898,0.697526335716248,0.352087527513504,-0.624092400074005,0.732320487499237,0.344545662403107,-0.587362706661224,0.697526335716248,0.352087527513504,-0.624092400074005,0.836861670017242,0.305047154426575,-0.454542368650436,0.870228707790375,0.286943376064301,-0.400456577539444,0.403345912694931,0.857400178909302,-0.319651186466217,0.623320579528809,0.598883986473083,-0.502801597118378,0.678957045078278,0.599737167358398,-0.423476785421371,0.445927709341049,0.856788456439972,-0.258963227272034,0.623320579528809,0.598883986473083,-0.502801597118378,0.729379653930664,0.360977053642273,-0.581120312213898, +0.767211973667145,0.350530058145523,-0.537135422229767,0.678957045078278,0.599737167358398,-0.423476785421371,0.678957045078278,0.599737167358398,-0.423476785421371,0.767211973667145,0.350530058145523,-0.537135422229767,0.607783138751984,0.349040508270264,-0.713281393051147,0.579758405685425,0.584730505943298,-0.567424356937408,0.445927709341049,0.856788456439972,-0.258963227272034,0.678957045078278,0.599737167358398,-0.423476785421371,0.579758405685425,0.584730505943298,-0.567424356937408,0.412647932767868,0.83742094039917,-0.358396232128143,0.383437156677246,0.307847172021866,-0.870750308036804,0.980971336364746,0.185382813215256,0.0576918534934521,0.962669014930725,0.186627522110939,0.196057677268982,0.400801569223404,0.334431350231171,-0.852944254875183,0.383437156677246,0.307847172021866,-0.870750308036804,0.400801569223404,0.334431350231171,-0.852944254875183,0.607783138751984,0.349040508270264,-0.713281393051147,0.597319900989532,0.32426705956459,-0.733525633811951,0.635576844215393,0.76066917181015,0.132001623511314,0.897241830825806,0.377294570207596,0.229360029101372,0.785811424255371,0.226566553115845,0.575471878051758,0.573719918727875,0.637842059135437,0.513812184333801,0.897241830825806,0.377294570207596,0.229360029101372,0.962669014930725,0.186627522110939,0.196057677268982,0.839734971523285,0.0463324189186096,0.541016101837158,0.785811424255371,0.226566553115845,0.575471878051758,0.785811424255371,0.226566553115845,0.575471878051758,0.839734971523285,0.0463324189186096,0.541016101837158,0.976764976978302,0.115601629018784,0.180461540818214,0.886807203292847,0.371660619974136,0.274666041135788,0.573719918727875,0.637842059135437,0.513812184333801,0.785811424255371,0.226566553115845,0.575471878051758,0.886807203292847,0.371660619974136,0.274666041135788,0.527123928070068,0.79532128572464,0.299339979887009,0.962854385375977,0.131351679563522,-0.235919460654259,0.924593687057495,0.12973764538765,-0.358182460069656,0.934235095977783,0.148394331336021,-0.324320822954178,0.970357775688171,0.154351145029068,-0.185961171984673, +0.962854385375977,0.131351679563522,-0.235919460654259,0.970357775688171,0.154351145029068,-0.185961171984673,0.976764976978302,0.115601629018784,0.180461540818214,0.990326702594757,0.0927801057696342,0.103173792362213,0.4871906042099,0.871947884559631,-0.0484998300671577,0.872592508792877,0.429911404848099,-0.23185895383358,0.806441724300385,0.425050586462021,-0.411076217889786,0.458899140357971,0.861370086669922,-0.217837646603584,0.872592508792877,0.429911404848099,-0.23185895383358,0.934235095977783,0.148394331336021,-0.324320822954178,0.869895935058594,0.149776205420494,-0.469944596290588,0.806441724300385,0.425050586462021,-0.411076217889786,0.806441724300385,0.425050586462021,-0.411076217889786,0.869895935058594,0.149776205420494,-0.469944596290588,0.59410285949707,0.175139710307121,-0.785091042518616,0.57455050945282,0.412903517484665,-0.706684052944183,0.458899140357971,0.861370086669922,-0.217837646603584,0.806441724300385,0.425050586462021,-0.411076217889786,0.57455050945282,0.412903517484665,-0.706684052944183,0.342911422252655,0.810504853725433,-0.474861770868301,0.288461476564407,0.137839183211327,-0.947518050670624,0.780417799949646,0.120299659669399,-0.613576352596283,0.809445440769196,0.144350245594978,-0.569175839424133,0.270146608352661,0.178430765867233,-0.946141183376312,0.288461476564407,0.137839183211327,-0.947518050670624,0.270146608352661,0.178430765867233,-0.946141183376312,0.59410285949707,0.175139710307121,-0.785091042518616,0.583897352218628,0.1308653652668,-0.801210463047028,0.629011392593384,0.749249517917633,-0.207292005419731,0.835914254188538,0.249953210353851,-0.488641738891602,0.80191707611084,0.0806678161025047,0.591964304447174,0.567189037799835,0.539463579654694,0.622314691543579,0.835914254188538,0.249953210353851,-0.488641738891602,0.809445440769196,0.144350245594978,-0.569175839424133,0.830937922000885,-0.0402981527149677,0.554903745651245,0.80191707611084,0.0806678161025047,0.591964304447174,0.80191707611084,0.0806678161025047,0.591964304447174,0.830937922000885,-0.0402981527149677,0.554903745651245, +0.908789753913879,-0.0247746761888266,0.416518121957779,0.891996443271637,0.180436879396439,0.41446927189827,0.567189037799835,0.539463579654694,0.622314691543579,0.80191707611084,0.0806678161025047,0.591964304447174,0.891996443271637,0.180436879396439,0.41446927189827,0.521699905395508,0.778946161270142,0.347954154014587,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.984015107154846,0.0289055965840816,-0.175723806023598,0.993625104427338,0.0100124217569828,0.112289875745773,0.996745467185974,-0.0555129311978817,0.0584533326327801,0.993625104427338,0.0100124217569828,0.112289875745773,0.908789753913879,-0.0247746761888266,0.416518121957779,0.925031006336212,-0.0753350853919983,0.372347176074982,0.392393261194229,0.919789731502533,0.00378495058976114,0.928663074970245,0.346988201141357,-0.13108816742897,0.866879463195801,0.382229417562485,-0.320032358169556,0.365334242582321,0.927436530590057,-0.0799523517489433,0.928663074970245,0.346988201141357,-0.13108816742897,0.984015107154846,0.0289055965840816,-0.175723806023598,0.925525367259979,0.0349328182637691,-0.377071022987366,0.866879463195801,0.382229417562485,-0.320032358169556,0.866879463195801,0.382229417562485,-0.320032358169556,0.925525367259979,0.0349328182637691,-0.377071022987366,0.844202399253845,0.0513361506164074,-0.533560752868652,0.764081120491028,0.38950178027153,-0.514264941215515,0.365334242582321,0.927436530590057,-0.0799523517489433,0.866879463195801,0.382229417562485,-0.320032358169556,0.764081120491028,0.38950178027153,-0.514264941215515,0.341739416122437,0.905296921730042,-0.252292722463608,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.947330832481384,0.0109401699155569,-0.320069700479507,0.920605778694153,0.139724984765053,-0.364639669656754,0.773016333580017,0.0912823081016541,-0.627784371376038,0.82912802696228,-0.0213865041732788,-0.558649718761444,0.773016333580017,0.0912823081016541,-0.627784371376038,0.844202399253845,0.0513361506164074,-0.533560752868652,0.852650284767151,-0.059975378215313,-0.51902836561203, +0.440194547176361,0.894553005695343,-0.0774847269058228,0.81708836555481,0.455796748399734,-0.353009760379791,0.89478325843811,0.415955692529678,0.162307739257813,0.524899005889893,0.788100719451904,0.321524620056152,0.81708836555481,0.455796748399734,-0.353009760379791,0.920605778694153,0.139724984765053,-0.364639669656754,0.990552127361298,0.136053889989853,0.0171984955668449,0.89478325843811,0.415955692529678,0.162307739257813,0.89478325843811,0.415955692529678,0.162307739257813,0.990552127361298,0.136053889989853,0.0171984955668449,0.982325971126556,0.123072631657124,-0.141027852892876,0.912118852138519,0.406485766172409,-0.0529955364763737,0.524899005889893,0.788100719451904,0.321524620056152,0.89478325843811,0.415955692529678,0.162307739257813,0.912118852138519,0.406485766172409,-0.0529955364763737,0.507899641990662,0.858306348323822,0.0731307566165924,0.94000256061554,0.0346132442355156,-0.339407026767731,0.916099011898041,0.0440531559288502,-0.398524641990662,0.911755323410034,0.12490601092577,-0.391280710697174,0.932205259799957,0.121903583407402,-0.340782701969147,0.94000256061554,0.0346132442355156,-0.339407026767731,0.932205259799957,0.121903583407402,-0.340782701969147,0.982325971126556,0.123072631657124,-0.141027852892876,0.985578894615173,0.0224285423755646,-0.167723700404167,0.377066731452942,0.921685636043549,-0.0911936163902283,0.825702786445618,0.459892183542252,-0.326671272516251,0.819977819919586,0.462046653032303,-0.337859779596329,0.402317970991135,0.912864685058594,-0.0694136172533035,0.825702786445618,0.459892183542252,-0.326671272516251,0.911755323410034,0.12490601092577,-0.391280710697174,0.895240247249603,0.123104833066463,-0.428240805864334,0.819977819919586,0.462046653032303,-0.337859779596329,0.819977819919586,0.462046653032303,-0.337859779596329,0.895240247249603,0.123104833066463,-0.428240805864334,0.835684537887573,0.120450638234615,-0.535838782787323,0.777661442756653,0.434450030326843,-0.454418390989304,0.402317970991135,0.912864685058594,-0.0694136172533035,0.819977819919586,0.462046653032303,-0.337859779596329, +0.777661442756653,0.434450030326843,-0.454418390989304,0.409580141305923,0.888055443763733,-0.208810359239578,0.810217082500458,0.0675373077392578,-0.582225978374481,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.998084425926208,0.0616633482277393,0.00499705411493778,0.802316009998322,0.112709224224091,-0.58616179227829,0.810217082500458,0.0675373077392578,-0.582225978374481,0.802316009998322,0.112709224224091,-0.58616179227829,0.835684537887573,0.120450638234615,-0.535838782787323,0.837286174297333,0.0577985979616642,-0.543701350688934,0.41334941983223,0.894980490207672,0.167786166071892,0.892125844955444,0.446515828371048,0.0688126757740974,0.865598917007446,0.468766510486603,0.176058456301689,0.41533300280571,0.888613343238831,0.194588840007782,0.892125844955444,0.446515828371048,0.0688126757740974,0.998084425926208,0.0616633482277393,0.00499705411493778,0.982482731342316,0.0631801560521126,0.175316616892815,0.865598917007446,0.468766510486603,0.176058456301689,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.991545021533966,-0.0115073760971427,-0.129251420497894,0.985287845134735,0.125068709254265,-0.116470903158188,0.989315450191498,0.115582823753357,-0.0888567939400673,0.996617615222931,-0.023292226716876,-0.0788092389702797,0.989315450191498,0.115582823753357,-0.0888567939400673,0.982482731342316,0.0631801560521126,0.175316616892815,0.988163650035858,-0.0455380268394947,0.146488800644875,0.343630492687225,0.93797492980957,0.0460529997944832,0.83901059627533,0.541394233703613,-0.0543462336063385,0.857315480709076,0.51344108581543,-0.037259928882122,0.386404693126678,0.916406333446503,0.104359053075314,0.83901059627533,0.541394233703613,-0.0543462336063385,0.985287845134735,0.125068709254265,-0.116470903158188,0.984959304332733,0.112915374338627,-0.130787134170532,0.857315480709076,0.51344108581543,-0.037259928882122,0.857315480709076,0.51344108581543,-0.037259928882122,0.984959304332733,0.112915374338627,-0.130787134170532,0.954086303710938,0.116435326635838,-0.275974869728088,0.857436776161194,0.477857738733292,-0.190929800271988, +0.386404693126678,0.916406333446503,0.104359053075314,0.857315480709076,0.51344108581543,-0.037259928882122,0.857436776161194,0.477857738733292,-0.190929800271988,0.462238311767578,0.886621832847595,0.0154123418033123,3.16250188916456e-05,0.998316526412964,0.0580002292990685,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,-0.0122545342892408,0.932361841201782,-0.36131876707077,0.0110333543270826,0.998570621013641,0.0522978268563747,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,4.66808523924556e-06,0.516847312450409,-0.856077551841736,0.1112105473876,0.567817628383636,-0.815607249736786,-0.0122545342892408,0.932361841201782,-0.36131876707077,-0.0122545342892408,0.932361841201782,-0.36131876707077,0.1112105473876,0.567817628383636,-0.815607249736786,0.133469432592392,0.65885329246521,-0.74033659696579,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.0110333543270826,0.998570621013641,0.0522978268563747,-0.0122545342892408,0.932361841201782,-0.36131876707077,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.0313166528940201,0.998217403888702,0.0508056059479713,0.0285819675773382,0.729895889759064,-0.682960391044617,0.0703423768281937,0.730256140232086,-0.679542481899261,0.0366282314062119,0.959644615650177,-0.278819888830185,0.00238245795480907,0.961176156997681,-0.275925070047379,0.0703423768281937,0.730256140232086,-0.679542481899261,0.231597498059273,0.720394432544708,-0.653754115104675,0.132650107145309,0.961442470550537,-0.240899100899696,0.0366282314062119,0.959644615650177,-0.278819888830185,0.0366282314062119,0.959644615650177,-0.278819888830185,0.132650107145309,0.961442470550537,-0.240899100899696,0.0477132759988308,0.998204469680786,0.0362108647823334,0.0121316770091653,0.9998779296875,-0.00984863564372063,0.00238245795480907,0.961176156997681,-0.275925070047379,0.0366282314062119,0.959644615650177,-0.278819888830185,0.0121316770091653,0.9998779296875,-0.00984863564372063,0.00182646268513054,0.99999612569809,0.00212048715911806,0.231597498059273,0.720394432544708,-0.653754115104675, +0.392940819263458,0.683278143405914,-0.615409255027771,0.212079510092735,0.959425747394562,-0.185807257890701,0.132650107145309,0.961442470550537,-0.240899100899696,0.392940819263458,0.683278143405914,-0.615409255027771,0.414057105779648,0.641223967075348,-0.646056234836578,0.161497190594673,0.963781952857971,-0.212233155965805,0.212079510092735,0.959425747394562,-0.185807257890701,0.212079510092735,0.959425747394562,-0.185807257890701,0.161497190594673,0.963781952857971,-0.212233155965805,-0.0952567905187607,0.993824362754822,0.0569144189357758,0.0319248288869858,0.994054675102234,0.104096844792366,0.132650107145309,0.961442470550537,-0.240899100899696,0.212079510092735,0.959425747394562,-0.185807257890701,0.0319248288869858,0.994054675102234,0.104096844792366,0.0477132759988308,0.998204469680786,0.0362108647823334,0.414057105779648,0.641223967075348,-0.646056234836578,0.346389561891556,0.535183012485504,-0.770450055599213,0.0369772464036942,0.922424018383026,-0.38440415263176,0.161497190594673,0.963781952857971,-0.212233155965805,0.346389561891556,0.535183012485504,-0.770450055599213,0.475937902927399,0.393635958433151,-0.786469340324402,0.235153183341026,0.838583886623383,-0.491406172513962,0.0369772464036942,0.922424018383026,-0.38440415263176,0.0369772464036942,0.922424018383026,-0.38440415263176,0.235153183341026,0.838583886623383,-0.491406172513962,-0.0678212195634842,0.997315227985382,0.0276141986250877,-0.295589625835419,0.950601994991302,-0.0947765856981277,0.161497190594673,0.963781952857971,-0.212233155965805,0.0369772464036942,0.922424018383026,-0.38440415263176,-0.295589625835419,0.950601994991302,-0.0947765856981277,-0.0952567905187607,0.993824362754822,0.0569144189357758,0.475937902927399,0.393635958433151,-0.786469340324402,0.437127500772476,0.495630919933319,-0.750512957572937,0.292504221200943,0.864353120326996,-0.409065961837769,0.235153183341026,0.838583886623383,-0.491406172513962,0.437127500772476,0.495630919933319,-0.750512957572937,0.192238688468933,0.585725247859955,-0.787381827831268,0.13746552169323,0.880333244800568,-0.454000651836395, +0.292504221200943,0.864353120326996,-0.409065961837769,0.292504221200943,0.864353120326996,-0.409065961837769,0.13746552169323,0.880333244800568,-0.454000651836395,0.113079845905304,0.991852641105652,0.0586627013981342,0.241079926490784,0.950754761695862,0.194797098636627,0.235153183341026,0.838583886623383,-0.491406172513962,0.292504221200943,0.864353120326996,-0.409065961837769,0.241079926490784,0.950754761695862,0.194797098636627,-0.0678212195634842,0.997315227985382,0.0276141986250877,0.192238688468933,0.585725247859955,-0.787381827831268,0.159159854054451,0.618070542812347,-0.769842147827148,0.108373567461967,0.89156174659729,-0.439741790294647,0.13746552169323,0.880333244800568,-0.454000651836395,0.159159854054451,0.618070542812347,-0.769842147827148,0.3162000477314,0.663077235221863,-0.67848813533783,0.19864659011364,0.930315792560577,-0.308305114507675,0.108373567461967,0.89156174659729,-0.439741790294647,0.108373567461967,0.89156174659729,-0.439741790294647,0.19864659011364,0.930315792560577,-0.308305114507675,0.0478152371942997,0.995822370052338,0.0777898132801056,0.0432332381606102,0.999017179012299,0.00977621879428625,0.13746552169323,0.880333244800568,-0.454000651836395,0.108373567461967,0.89156174659729,-0.439741790294647,0.0432332381606102,0.999017179012299,0.00977621879428625,0.113079845905304,0.991852641105652,0.0586627013981342,0.3162000477314,0.663077235221863,-0.67848813533783,0.480441778898239,0.691208183765411,-0.539821088314056,0.249046981334686,0.95383495092392,-0.167852237820625,0.19864659011364,0.930315792560577,-0.308305114507675,0.480441778898239,0.691208183765411,-0.539821088314056,0.475188434123993,0.700506985187531,-0.532433986663818,0.169949725270271,0.965027272701263,-0.199598520994186,0.249046981334686,0.95383495092392,-0.167852237820625,0.249046981334686,0.95383495092392,-0.167852237820625,0.169949725270271,0.965027272701263,-0.199598520994186,-0.103046700358391,0.994657814502716,0.00609657214954495,0.0127476053312421,0.991988301277161,0.12568524479866,0.19864659011364,0.930315792560577,-0.308305114507675, +0.249046981334686,0.95383495092392,-0.167852237820625,0.0127476053312421,0.991988301277161,0.12568524479866,0.0478152371942997,0.995822370052338,0.0777898132801056,0.475188434123993,0.700506985187531,-0.532433986663818,0.389443337917328,0.631120979785919,-0.670835435390472,0.0802703574299812,0.915071606636047,-0.395222157239914,0.169949725270271,0.965027272701263,-0.199598520994186,0.389443337917328,0.631120979785919,-0.670835435390472,0.535168170928955,0.594861686229706,-0.599778831005096,0.228196024894714,0.935197353363037,-0.270799577236176,0.0802703574299812,0.915071606636047,-0.395222157239914,0.0802703574299812,0.915071606636047,-0.395222157239914,0.228196024894714,0.935197353363037,-0.270799577236176,0.01406170707196,0.987431228160858,0.157422170042992,-0.182792335748672,0.957660555839539,-0.222425699234009,0.169949725270271,0.965027272701263,-0.199598520994186,0.0802703574299812,0.915071606636047,-0.395222157239914,-0.182792335748672,0.957660555839539,-0.222425699234009,-0.103046700358391,0.994657814502716,0.00609657214954495,0.535168170928955,0.594861686229706,-0.599778831005096,0.5715012550354,0.753715932369232,-0.324497550725937,0.31744658946991,0.94333827495575,0.0966464653611183,0.228196024894714,0.935197353363037,-0.270799577236176,0.5715012550354,0.753715932369232,-0.324497550725937,0.428906440734863,0.83082526922226,-0.354638814926147,0.217575669288635,0.975904643535614,-0.0164574068039656,0.31744658946991,0.94333827495575,0.0966464653611183,0.31744658946991,0.94333827495575,0.0966464653611183,0.217575669288635,0.975904643535614,-0.0164574068039656,0.0752102732658386,0.94880998134613,0.306762129068375,0.182326629757881,0.842849671840668,0.506321489810944,0.228196024894714,0.935197353363037,-0.270799577236176,0.31744658946991,0.94333827495575,0.0966464653611183,0.182326629757881,0.842849671840668,0.506321489810944,0.01406170707196,0.987431228160858,0.157422170042992,0.428906440734863,0.83082526922226,-0.354638814926147,0.369096249341965,0.844427645206451,-0.388213694095612,0.156601950526237,0.980059802532196,-0.12230508774519, +0.217575669288635,0.975904643535614,-0.0164574068039656,0.369096249341965,0.844427645206451,-0.388213694095612,0.403345912694931,0.857400178909302,-0.319651186466217,0.172379702329636,0.979032099246979,-0.1085419729352,0.156601950526237,0.980059802532196,-0.12230508774519,0.156601950526237,0.980059802532196,-0.12230508774519,0.172379702329636,0.979032099246979,-0.1085419729352,-0.0168152339756489,0.997183501720428,0.0730907320976257,-0.0103478236123919,0.992011070251465,0.125726118683815,0.217575669288635,0.975904643535614,-0.0164574068039656,0.156601950526237,0.980059802532196,-0.12230508774519,-0.0103478236123919,0.992011070251465,0.125726118683815,0.0752102732658386,0.94880998134613,0.306762129068375,0.403345912694931,0.857400178909302,-0.319651186466217,0.445927709341049,0.856788456439972,-0.258963227272034,0.196727871894836,0.975983262062073,-0.0935670658946037,0.172379702329636,0.979032099246979,-0.1085419729352,0.445927709341049,0.856788456439972,-0.258963227272034,0.412647932767868,0.83742094039917,-0.358396232128143,0.169735804200172,0.963742554187775,-0.205888405442238,0.196727871894836,0.975983262062073,-0.0935670658946037,0.196727871894836,0.975983262062073,-0.0935670658946037,0.169735804200172,0.963742554187775,-0.205888405442238,-0.0580062493681908,0.987557232379913,-0.146171033382416,-0.0172067284584045,0.999495983123779,0.0266799964010715,0.172379702329636,0.979032099246979,-0.1085419729352,0.196727871894836,0.975983262062073,-0.0935670658946037,-0.0172067284584045,0.999495983123779,0.0266799964010715,-0.0168152339756489,0.997183501720428,0.0730907320976257,0.412647932767868,0.83742094039917,-0.358396232128143,0.364626258611679,0.790468752384186,-0.492145121097565,0.114771716296673,0.919011771678925,-0.377153754234314,0.169735804200172,0.963742554187775,-0.205888405442238,0.364626258611679,0.790468752384186,-0.492145121097565,0.635576844215393,0.76066917181015,0.132001623511314,0.170171514153481,0.984035789966583,-0.0521076507866383,0.114771716296673,0.919011771678925,-0.377153754234314,0.114771716296673,0.919011771678925,-0.377153754234314, +0.170171514153481,0.984035789966583,-0.0521076507866383,-0.0376082472503185,0.989292144775391,-0.141020148992538,-0.0911883115768433,0.927266597747803,-0.363127082586288,0.169735804200172,0.963742554187775,-0.205888405442238,0.114771716296673,0.919011771678925,-0.377153754234314,-0.0911883115768433,0.927266597747803,-0.363127082586288,-0.0580062493681908,0.987557232379913,-0.146171033382416,0.635576844215393,0.76066917181015,0.132001623511314,0.573719918727875,0.637842059135437,0.513812184333801,0.14795009791851,0.927007138729095,0.344627887010574,0.170171514153481,0.984035789966583,-0.0521076507866383,0.573719918727875,0.637842059135437,0.513812184333801,0.527123928070068,0.79532128572464,0.299339979887009,0.0649499148130417,0.969111919403076,0.237915068864822,0.14795009791851,0.927007138729095,0.344627887010574,0.14795009791851,0.927007138729095,0.344627887010574,0.0649499148130417,0.969111919403076,0.237915068864822,0.0388505943119526,0.978016018867493,0.20487879216671,0.0528387017548084,0.961618542671204,0.269254088401794,0.170171514153481,0.984035789966583,-0.0521076507866383,0.14795009791851,0.927007138729095,0.344627887010574,0.0528387017548084,0.961618542671204,0.269254088401794,-0.0376082472503185,0.989292144775391,-0.141020148992538,0.527123928070068,0.79532128572464,0.299339979887009,0.493079423904419,0.865481495857239,0.0883983597159386,0.0198393352329731,0.988691866397858,0.148643672466278,0.0649499148130417,0.969111919403076,0.237915068864822,0.493079423904419,0.865481495857239,0.0883983597159386,0.4871906042099,0.871947884559631,-0.0484998300671577,0.00057746609672904,0.994953036308289,0.100340619683266,0.0198393352329731,0.988691866397858,0.148643672466278,0.0198393352329731,0.988691866397858,0.148643672466278,0.00057746609672904,0.994953036308289,0.100340619683266,-0.030796704813838,0.993721306324005,0.107561133801937,-0.00325257936492562,0.99051308631897,0.137380182743073,0.0649499148130417,0.969111919403076,0.237915068864822,0.0198393352329731,0.988691866397858,0.148643672466278,-0.00325257936492562,0.99051308631897,0.137380182743073, +0.0388505943119526,0.978016018867493,0.20487879216671,0.4871906042099,0.871947884559631,-0.0484998300671577,0.458899140357971,0.861370086669922,-0.217837646603584,-0.0212986879050732,0.999599277973175,0.0186462178826332,0.00057746609672904,0.994953036308289,0.100340619683266,0.458899140357971,0.861370086669922,-0.217837646603584,0.342911422252655,0.810504853725433,-0.474861770868301,-0.0684837475419044,0.983737170696259,-0.166045770049095,-0.0212986879050732,0.999599277973175,0.0186462178826332,-0.0212986879050732,0.999599277973175,0.0186462178826332,-0.0684837475419044,0.983737170696259,-0.166045770049095,-0.0921673104166985,0.989014387130737,-0.115566954016685,-0.0503392890095711,0.997582376003265,0.0479085892438889,0.00057746609672904,0.994953036308289,0.100340619683266,-0.0212986879050732,0.999599277973175,0.0186462178826332,-0.0503392890095711,0.997582376003265,0.0479085892438889,-0.030796704813838,0.993721306324005,0.107561133801937,0.342911422252655,0.810504853725433,-0.474861770868301,0.22217258810997,0.68991482257843,-0.688953518867493,-0.0967039614915848,0.931884527206421,-0.34962785243988,-0.0684837475419044,0.983737170696259,-0.166045770049095,0.22217258810997,0.68991482257843,-0.688953518867493,0.629011392593384,0.749249517917633,-0.207292005419731,0.0430399477481842,0.996272087097168,0.0747625902295113,-0.0967039614915848,0.931884527206421,-0.34962785243988,-0.0967039614915848,0.931884527206421,-0.34962785243988,0.0430399477481842,0.996272087097168,0.0747625902295113,-0.0151509661227465,0.99535870552063,0.0950342044234276,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0684837475419044,0.983737170696259,-0.166045770049095,-0.0967039614915848,0.931884527206421,-0.34962785243988,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0921673104166985,0.989014387130737,-0.115566954016685,0.629011392593384,0.749249517917633,-0.207292005419731,0.567189037799835,0.539463579654694,0.622314691543579,0.113829851150513,0.835547208786011,0.537497639656067,0.0430399477481842,0.996272087097168,0.0747625902295113, +0.567189037799835,0.539463579654694,0.622314691543579,0.521699905395508,0.778946161270142,0.347954154014587,-0.0092410035431385,0.969926238059998,0.243223503232002,0.113829851150513,0.835547208786011,0.537497639656067,0.113829851150513,0.835547208786011,0.537497639656067,-0.0092410035431385,0.969926238059998,0.243223503232002,0.0318148247897625,0.979531645774841,0.198759838938713,0.0964317098259926,0.859874904155731,0.501314222812653,0.0430399477481842,0.996272087097168,0.0747625902295113,0.113829851150513,0.835547208786011,0.537497639656067,0.0964317098259926,0.859874904155731,0.501314222812653,-0.0151509661227465,0.99535870552063,0.0950342044234276,0.521699905395508,0.778946161270142,0.347954154014587,0.448808789253235,0.886676609516144,0.111244484782219,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.0092410035431385,0.969926238059998,0.243223503232002,0.448808789253235,0.886676609516144,0.111244484782219,0.392393261194229,0.919789731502533,0.00378495058976114,-0.0916145890951157,0.988538324832916,0.119994908571243,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.0916145890951157,0.988538324832916,0.119994908571243,-0.0043518808670342,0.995574355125427,0.0938772782683372,-0.010114848613739,0.998629629611969,0.0513465888798237,-0.0092410035431385,0.969926238059998,0.243223503232002,-0.0844919309020042,0.992185592651367,0.0918090343475342,-0.010114848613739,0.998629629611969,0.0513465888798237,0.0318148247897625,0.979531645774841,0.198759838938713,0.392393261194229,0.919789731502533,0.00378495058976114,0.365334242582321,0.927436530590057,-0.0799523517489433,-0.0639562830328941,0.989399969577789,0.130373582243919,-0.0916145890951157,0.988538324832916,0.119994908571243,0.365334242582321,0.927436530590057,-0.0799523517489433,0.341739416122437,0.905296921730042,-0.252292722463608,-0.0410658642649651,0.999077379703522,0.0125748058781028,-0.0639562830328941,0.989399969577789,0.130373582243919,-0.0639562830328941,0.989399969577789,0.130373582243919, +-0.0410658642649651,0.999077379703522,0.0125748058781028,-0.00473393173888326,0.999670922756195,0.0252132080495358,0.00822858419269323,0.992630243301392,0.120902456343174,-0.0916145890951157,0.988538324832916,0.119994908571243,-0.0639562830328941,0.989399969577789,0.130373582243919,0.00822858419269323,0.992630243301392,0.120902456343174,-0.0043518808670342,0.995574355125427,0.0938772782683372,0.341739416122437,0.905296921730042,-0.252292722463608,0.316450387239456,0.84852546453476,-0.424103587865829,-0.0234013590961695,0.987936198711395,-0.153082862496376,-0.0410658642649651,0.999077379703522,0.0125748058781028,0.316450387239456,0.84852546453476,-0.424103587865829,0.440194547176361,0.894553005695343,-0.0774847269058228,0.0980480089783669,0.988165497779846,0.11796410381794,-0.0234013590961695,0.987936198711395,-0.153082862496376,-0.0234013590961695,0.987936198711395,-0.153082862496376,0.0980480089783669,0.988165497779846,0.11796410381794,0.0337485857307911,0.987116694450378,0.156402423977852,-0.0430066473782063,0.991812765598297,-0.120241060853004,-0.0410658642649651,0.999077379703522,0.0125748058781028,-0.0234013590961695,0.987936198711395,-0.153082862496376,-0.0430066473782063,0.991812765598297,-0.120241060853004,-0.00473393173888326,0.999670922756195,0.0252132080495358,0.440194547176361,0.894553005695343,-0.0774847269058228,0.524899005889893,0.788100719451904,0.321524620056152,0.188261732459068,0.9055095911026,0.380275994539261,0.0980480089783669,0.988165497779846,0.11796410381794,0.524899005889893,0.788100719451904,0.321524620056152,0.507899641990662,0.858306348323822,0.0731307566165924,0.0926333740353584,0.9825359582901,0.161376118659973,0.188261732459068,0.9055095911026,0.380275994539261,0.188261732459068,0.9055095911026,0.380275994539261,0.0926333740353584,0.9825359582901,0.161376118659973,0.0253890473395586,0.987536251544952,0.155330121517181,0.108533754944801,0.915940999984741,0.386358052492142,0.0980480089783669,0.988165497779846,0.11796410381794,0.188261732459068,0.9055095911026,0.380275994539261,0.108533754944801,0.915940999984741,0.386358052492142, +0.0337485857307911,0.987116694450378,0.156402423977852,0.507899641990662,0.858306348323822,0.0731307566165924,0.409356772899628,0.902956247329712,-0.130755364894867,-0.00709670875221491,0.999914407730103,0.0109912762418389,0.0926333740353584,0.9825359582901,0.161376118659973,0.409356772899628,0.902956247329712,-0.130755364894867,0.377066731452942,0.921685636043549,-0.0911936163902283,-0.0195192694664001,0.995099425315857,0.0969333276152611,-0.00709670875221491,0.999914407730103,0.0109912762418389,-0.00709670875221491,0.999914407730103,0.0109912762418389,-0.0195192694664001,0.995099425315857,0.0969333276152611,-0.00392425805330276,0.995426774024963,0.0954470485448837,-0.0219244919717312,0.99975711107254,0.00226402701810002,0.0926333740353584,0.9825359582901,0.161376118659973,-0.00709670875221491,0.999914407730103,0.0109912762418389,-0.0219244919717312,0.99975711107254,0.00226402701810002,0.0253890473395586,0.987536251544952,0.155330121517181,0.377066731452942,0.921685636043549,-0.0911936163902283,0.402317970991135,0.912864685058594,-0.0694136172533035,0.020291943103075,0.98854398727417,0.149563178420067,-0.0195192694664001,0.995099425315857,0.0969333276152611,0.402317970991135,0.912864685058594,-0.0694136172533035,0.409580141305923,0.888055443763733,-0.208810359239578,0.0507242865860462,0.998710453510284,0.00213989592157304,0.020291943103075,0.98854398727417,0.149563178420067,0.020291943103075,0.98854398727417,0.149563178420067,0.0507242865860462,0.998710453510284,0.00213989592157304,7.25488644093275e-05,0.999377608299255,0.0352765023708344,0.0135718127712607,0.985743522644043,0.167706817388535,-0.0195192694664001,0.995099425315857,0.0969333276152611,0.020291943103075,0.98854398727417,0.149563178420067,0.0135718127712607,0.985743522644043,0.167706817388535,-0.00392425805330276,0.995426774024963,0.0954470485448837,0.409580141305923,0.888055443763733,-0.208810359239578,0.38879406452179,0.854439854621887,-0.344632625579834,0.0563377067446709,0.982479810714722,-0.177649810910225,0.0507242865860462,0.998710453510284,0.00213989592157304, +0.38879406452179,0.854439854621887,-0.344632625579834,0.41334941983223,0.894980490207672,0.167786166071892,0.0812827497720718,0.975687861442566,0.203534916043282,0.0563377067446709,0.982479810714722,-0.177649810910225,0.0563377067446709,0.982479810714722,-0.177649810910225,0.0812827497720718,0.975687861442566,0.203534916043282,0.00852314010262489,0.977733075618744,0.20967860519886,-0.0249541122466326,0.988700747489929,-0.147810697555542,0.0507242865860462,0.998710453510284,0.00213989592157304,0.0563377067446709,0.982479810714722,-0.177649810910225,-0.0249541122466326,0.988700747489929,-0.147810697555542,7.25488644093275e-05,0.999377608299255,0.0352765023708344,0.0812827497720718,0.975687861442566,0.203534916043282,0.41334941983223,0.894980490207672,0.167786166071892,0.41533300280571,0.888613343238831,0.194588840007782,0.0646548941731453,0.977678894996643,0.199909120798111,0.0812827497720718,0.975687861442566,0.203534916043282,0.0646548941731453,0.977678894996643,0.199909120798111,0.0121702868491411,0.981673896312714,0.190179511904716,0.00852314010262489,0.977733075618744,0.20967860519886,0.41533300280571,0.888613343238831,0.194588840007782,0.369161039590836,0.929343700408936,0.00636240420863032,0.00748851988464594,0.999597072601318,0.0273781735450029,0.0646548941731453,0.977678894996643,0.199909120798111,0.369161039590836,0.929343700408936,0.00636240420863032,0.343630492687225,0.93797492980957,0.0460529997944832,-0.0155807686969638,0.995435833930969,0.0941529795527458,0.00748851988464594,0.999597072601318,0.0273781735450029,0.00748851988464594,0.999597072601318,0.0273781735450029,-0.0155807686969638,0.995435833930969,0.0941529795527458,-0.00230317981913686,0.995579361915588,0.0938960164785385,-0.00346456165425479,0.999890685081482,0.0143786584958434,0.0646548941731453,0.977678894996643,0.199909120798111,0.00748851988464594,0.999597072601318,0.0273781735450029,-0.00346456165425479,0.999890685081482,0.0143786584958434,0.0121702868491411,0.981673896312714,0.190179511904716,0.343630492687225,0.93797492980957,0.0460529997944832, +0.386404693126678,0.916406333446503,0.104359053075314,0.0132088456302881,0.980670034885406,0.195222586393356,-0.0155807686969638,0.995435833930969,0.0941529795527458,0.386404693126678,0.916406333446503,0.104359053075314,0.462238311767578,0.886621832847595,0.0154123418033123,0.0660544708371162,0.981783330440521,0.178152024745941,0.0132088456302881,0.980670034885406,0.195222586393356,0.0132088456302881,0.980670034885406,0.195222586393356,0.0660544708371162,0.981783330440521,0.178152024745941,0.00153340841643512,0.977238595485687,0.212137639522552,0.00379641377367079,0.977337419986725,0.211653470993042,-0.0155807686969638,0.995435833930969,0.0941529795527458,0.0132088456302881,0.980670034885406,0.195222586393356,0.00379641377367079,0.977337419986725,0.211653470993042,-0.00230317981913686,0.995579361915588,0.0938960164785385,0.462238311767578,0.886621832847595,0.0154123418033123,0.51391863822937,0.845266163349152,-0.146331176161766,0.117219604551792,0.990914106369019,0.0659452006220818,0.0660544708371162,0.981783330440521,0.178152024745941,0.51391863822937,0.845266163349152,-0.146331176161766,0.577709436416626,0.788253307342529,-0.211915999650955,0.157750144600868,0.984252214431763,-0.0797660797834396,0.117219604551792,0.990914106369019,0.0659452006220818,0.117219604551792,0.990914106369019,0.0659452006220818,0.157750144600868,0.984252214431763,-0.0797660797834396,-0.0506674610078335,0.99699342250824,-0.0586251579225063,-0.00483007868751884,0.994182825088501,0.107596851885319,0.0660544708371162,0.981783330440521,0.178152024745941,0.117219604551792,0.990914106369019,0.0659452006220818,-0.00483007868751884,0.994182825088501,0.107596851885319,0.00153340841643512,0.977238595485687,0.212137639522552,0.00182646268513054,0.99999612569809,0.00212048715911806,-0.0316272154450417,0.795688211917877,0.604880213737488,0.0920296460390091,0.77127468585968,0.629814147949219,0.0224202573299408,0.999069094657898,0.0368568897247314,-0.0316272154450417,0.795688211917877,0.604880213737488,-0.0943231582641602,0.0288749188184738,0.995122790336609, +0.108872637152672,0.0131196500733495,0.993969142436981,0.0920296460390091,0.77127468585968,0.629814147949219,0.0920296460390091,0.77127468585968,0.629814147949219,0.108872637152672,0.0131196500733495,0.993969142436981,0.416714161634445,-0.0174247231334448,0.908870577812195,0.276121646165848,0.73132461309433,0.623635530471802,0.0224202573299408,0.999069094657898,0.0368568897247314,0.0920296460390091,0.77127468585968,0.629814147949219,0.276121646165848,0.73132461309433,0.623635530471802,0.0313166528940201,0.998217403888702,0.0508056059479713,-0.31101456284523,0.129726931452751,0.94150984287262,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.0900055393576622,0.767749547958374,0.634397029876709,-0.143310487270355,0.767455577850342,0.62487918138504,-0.192241758108139,0.0387296043336391,0.98058295249939,-0.0943231582641602,0.0288749188184738,0.995122790336609,-0.0316272154450417,0.795688211917877,0.604880213737488,-0.0900055393576622,0.767749547958374,0.634397029876709,-0.0900055393576622,0.767749547958374,0.634397029876709,-0.0316272154450417,0.795688211917877,0.604880213737488,0.00182646268513054,0.99999612569809,0.00212048715911806,0.0121316770091653,0.9998779296875,-0.00984863564372063,-0.143310487270355,0.767455577850342,0.62487918138504,-0.0900055393576622,0.767749547958374,0.634397029876709,0.0121316770091653,0.9998779296875,-0.00984863564372063,0.0477132759988308,0.998204469680786,0.0362108647823334,-0.806167006492615,0.405817359685898,0.430589258670807,-0.523054778575897,0.27978852391243,0.805066525936127,-0.244616314768791,0.838822960853577,0.48635259270668,-0.435825973749161,0.860490024089813,0.263842105865479,-0.523054778575897,0.27978852391243,0.805066525936127,-0.31101456284523,0.129726931452751,0.94150984287262,-0.143310487270355,0.767455577850342,0.62487918138504,-0.244616314768791,0.838822960853577,0.48635259270668,-0.244616314768791,0.838822960853577,0.48635259270668,-0.143310487270355,0.767455577850342,0.62487918138504,0.0477132759988308,0.998204469680786,0.0362108647823334,0.0319248288869858,0.994054675102234,0.104096844792366, +-0.435825973749161,0.860490024089813,0.263842105865479,-0.244616314768791,0.838822960853577,0.48635259270668,0.0319248288869858,0.994054675102234,0.104096844792366,-0.0952567905187607,0.993824362754822,0.0569144189357758,-0.573165655136108,0.205063909292221,0.793366253376007,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.370970189571381,0.785313665866852,0.495644569396973,-0.918665885925293,0.391592055559158,0.0520435534417629,-0.806167006492615,0.405817359685898,0.430589258670807,-0.435825973749161,0.860490024089813,0.263842105865479,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.435825973749161,0.860490024089813,0.263842105865479,-0.0952567905187607,0.993824362754822,0.0569144189357758,-0.295589625835419,0.950601994991302,-0.0947765856981277,-0.370970189571381,0.785313665866852,0.495644569396973,-0.640480220317841,0.767728209495544,0.0194522626698017,-0.295589625835419,0.950601994991302,-0.0947765856981277,-0.0678212195634842,0.997315227985382,0.0276141986250877,0.0600302666425705,0.0760350003838539,0.995296478271484,0.16967536509037,-0.00174521736335009,0.985498547554016,0.216084271669388,0.539616167545319,0.813708782196045,0.097871832549572,0.690352499485016,0.716822564601898,0.16967536509037,-0.00174521736335009,0.985498547554016,-0.573165655136108,0.205063909292221,0.793366253376007,-0.370970189571381,0.785313665866852,0.495644569396973,0.216084271669388,0.539616167545319,0.813708782196045,0.216084271669388,0.539616167545319,0.813708782196045,-0.370970189571381,0.785313665866852,0.495644569396973,-0.0678212195634842,0.997315227985382,0.0276141986250877,0.241079926490784,0.950754761695862,0.194797098636627,0.097871832549572,0.690352499485016,0.716822564601898,0.216084271669388,0.539616167545319,0.813708782196045,0.241079926490784,0.950754761695862,0.194797098636627,0.113079845905304,0.991852641105652,0.0586627013981342,-0.338309645652771,0.210501685738564,0.917188942432404,-0.131924688816071,0.14484977722168,0.980619430541992, +-0.0479750968515873,0.776828289031982,0.627882301807404,-0.15385927259922,0.807145953178406,0.569949865341187,-0.131924688816071,0.14484977722168,0.980619430541992,0.0600302666425705,0.0760350003838539,0.995296478271484,0.097871832549572,0.690352499485016,0.716822564601898,-0.0479750968515873,0.776828289031982,0.627882301807404,-0.0479750968515873,0.776828289031982,0.627882301807404,0.097871832549572,0.690352499485016,0.716822564601898,0.113079845905304,0.991852641105652,0.0586627013981342,0.0432332381606102,0.999017179012299,0.00977621879428625,-0.15385927259922,0.807145953178406,0.569949865341187,-0.0479750968515873,0.776828289031982,0.627882301807404,0.0432332381606102,0.999017179012299,0.00977621879428625,0.0478152371942997,0.995822370052338,0.0777898132801056,-0.803800940513611,0.385017901659012,0.453503251075745,-0.556367337703705,0.28750267624855,0.779613852500916,-0.278010547161102,0.833264231681824,0.477892130613327,-0.446501880884171,0.862135410308838,0.239496484398842,-0.556367337703705,0.28750267624855,0.779613852500916,-0.338309645652771,0.210501685738564,0.917188942432404,-0.15385927259922,0.807145953178406,0.569949865341187,-0.278010547161102,0.833264231681824,0.477892130613327,-0.278010547161102,0.833264231681824,0.477892130613327,-0.15385927259922,0.807145953178406,0.569949865341187,0.0478152371942997,0.995822370052338,0.0777898132801056,0.0127476053312421,0.991988301277161,0.12568524479866,-0.446501880884171,0.862135410308838,0.239496484398842,-0.278010547161102,0.833264231681824,0.477892130613327,0.0127476053312421,0.991988301277161,0.12568524479866,-0.103046700358391,0.994657814502716,0.00609657214954495,-0.253959655761719,0.141760915517807,0.95676976442337,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.495233595371246,0.863634884357452,-0.0942262634634972,-0.16256882250309,0.795429646968842,0.583834767341614,-0.887463271617889,0.459565699100494,0.0347584262490273,-0.803800940513611,0.385017901659012,0.453503251075745,-0.446501880884171,0.862135410308838,0.239496484398842,-0.495233595371246,0.863634884357452,-0.0942262634634972, +-0.495233595371246,0.863634884357452,-0.0942262634634972,-0.446501880884171,0.862135410308838,0.239496484398842,-0.103046700358391,0.994657814502716,0.00609657214954495,-0.182792335748672,0.957660555839539,-0.222425699234009,-0.16256882250309,0.795429646968842,0.583834767341614,-0.495233595371246,0.863634884357452,-0.0942262634634972,-0.182792335748672,0.957660555839539,-0.222425699234009,0.01406170707196,0.987431228160858,0.157422170042992,-0.189798250794411,0.239573091268539,0.95214569568634,0.0775739923119545,0.0609424635767937,0.995122253894806,0.11156539618969,0.49527633190155,0.861541986465454,-0.0542549379169941,0.735487043857574,0.675363004207611,0.0775739923119545,0.0609424635767937,0.995122253894806,-0.253959655761719,0.141760915517807,0.95676976442337,-0.16256882250309,0.795429646968842,0.583834767341614,0.11156539618969,0.49527633190155,0.861541986465454,0.11156539618969,0.49527633190155,0.861541986465454,-0.16256882250309,0.795429646968842,0.583834767341614,0.01406170707196,0.987431228160858,0.157422170042992,0.182326629757881,0.842849671840668,0.506321489810944,-0.0542549379169941,0.735487043857574,0.675363004207611,0.11156539618969,0.49527633190155,0.861541986465454,0.182326629757881,0.842849671840668,0.506321489810944,0.0752102732658386,0.94880998134613,0.306762129068375,-0.702914714813232,0.419525861740112,0.574377000331879,-0.500292360782623,0.364415466785431,0.785435497760773,-0.217033550143242,0.869853854179382,0.443002134561539,-0.282055974006653,0.910620272159576,0.302018374204636,-0.500292360782623,0.364415466785431,0.785435497760773,-0.189798250794411,0.239573091268539,0.95214569568634,-0.0542549379169941,0.735487043857574,0.675363004207611,-0.217033550143242,0.869853854179382,0.443002134561539,-0.217033550143242,0.869853854179382,0.443002134561539,-0.0542549379169941,0.735487043857574,0.675363004207611,0.0752102732658386,0.94880998134613,0.306762129068375,-0.0103478236123919,0.992011070251465,0.125726118683815,-0.282055974006653,0.910620272159576,0.302018374204636,-0.217033550143242,0.869853854179382,0.443002134561539, +-0.0103478236123919,0.992011070251465,0.125726118683815,-0.0168152339756489,0.997183501720428,0.0730907320976257,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.85072648525238,0.454842150211334,0.26340663433075,-0.337540805339813,0.929872870445251,0.146296367049217,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.85072648525238,0.454842150211334,0.26340663433075,-0.702914714813232,0.419525861740112,0.574377000331879,-0.282055974006653,0.910620272159576,0.302018374204636,-0.337540805339813,0.929872870445251,0.146296367049217,-0.337540805339813,0.929872870445251,0.146296367049217,-0.282055974006653,0.910620272159576,0.302018374204636,-0.0168152339756489,0.997183501720428,0.0730907320976257,-0.0172067284584045,0.999495983123779,0.0266799964010715,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.337540805339813,0.929872870445251,0.146296367049217,-0.0172067284584045,0.999495983123779,0.0266799964010715,-0.0580062493681908,0.987557232379913,-0.146171033382416,-0.785015106201172,0.584624469280243,0.204854965209961,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.195115342736244,0.971077859401703,-0.137614890933037,-0.75469708442688,0.401779294013977,-0.518657505512238,-0.871762096881866,0.449946373701096,-0.193853616714478,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.399173527956009,0.904719829559326,-0.14880333840847,-0.0580062493681908,0.987557232379913,-0.146171033382416,-0.0911883115768433,0.927266597747803,-0.363127082586288,-0.195115342736244,0.971077859401703,-0.137614890933037,-0.385570347309113,0.821169376373291,-0.420733124017715,-0.0911883115768433,0.927266597747803,-0.363127082586288,-0.0376082472503185,0.989292144775391,-0.141020148992538,-0.548661649227142,0.668700933456421,0.501806080341339,-0.150067076086998,0.43262243270874,0.888998210430145,0.0557740405201912,0.906161785125732,0.419237643480301, +-0.00156899739522487,0.968940556049347,0.247288808226585,-0.150067076086998,0.43262243270874,0.888998210430145,-0.785015106201172,0.584624469280243,0.204854965209961,-0.195115342736244,0.971077859401703,-0.137614890933037,0.0557740405201912,0.906161785125732,0.419237643480301,0.0557740405201912,0.906161785125732,0.419237643480301,-0.195115342736244,0.971077859401703,-0.137614890933037,-0.0376082472503185,0.989292144775391,-0.141020148992538,0.0528387017548084,0.961618542671204,0.269254088401794,-0.00156899739522487,0.968940556049347,0.247288808226585,0.0557740405201912,0.906161785125732,0.419237643480301,0.0528387017548084,0.961618542671204,0.269254088401794,0.0388505943119526,0.978016018867493,0.20487879216671,-0.601010143756866,0.790193140506744,0.11992322653532,-0.623963296413422,0.768050134181976,0.144113570451736,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.623963296413422,0.768050134181976,0.144113570451736,-0.548661649227142,0.668700933456421,0.501806080341339,-0.00156899739522487,0.968940556049347,0.247288808226585,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.00156899739522487,0.968940556049347,0.247288808226585,0.0388505943119526,0.978016018867493,0.20487879216671,-0.00325257936492562,0.99051308631897,0.137380182743073,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.0271926950663328,0.991270899772644,0.129006117582321,-0.00325257936492562,0.99051308631897,0.137380182743073,-0.030796704813838,0.993721306324005,0.107561133801937,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.633363366127014,0.765548825263977,0.113073691725731,-0.0633252263069153,0.99684202671051,0.0479161739349365,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.633363366127014,0.765548825263977,0.113073691725731,-0.601010143756866,0.790193140506744,0.11992322653532,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.0633252263069153,0.99684202671051,0.0479161739349365, +-0.0633252263069153,0.99684202671051,0.0479161739349365,-0.0347426161170006,0.994239211082458,0.101396448910236,-0.030796704813838,0.993721306324005,0.107561133801937,-0.0503392890095711,0.997582376003265,0.0479085892438889,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.0633252263069153,0.99684202671051,0.0479161739349365,-0.0503392890095711,0.997582376003265,0.0479085892438889,-0.0921673104166985,0.989014387130737,-0.115566954016685,-0.628344833850861,0.683509886264801,0.371479630470276,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.0608938634395599,0.990029633045197,0.127016574144363,-0.699226558208466,0.640293836593628,-0.317971765995026,-0.693491220474243,0.714258253574371,-0.0943671092391014,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.12815135717392,0.984573304653168,-0.119133830070496,-0.0921673104166985,0.989014387130737,-0.115566954016685,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0608938634395599,0.990029633045197,0.127016574144363,-0.173903912305832,0.94516795873642,-0.276432543992996,-0.119120389223099,0.956883490085602,-0.264923274517059,-0.0151509661227465,0.99535870552063,0.0950342044234276,-0.340639442205429,0.750027358531952,0.566942572593689,-0.14881919324398,0.462757468223572,0.873904049396515,0.12006089091301,0.812812566757202,0.570018470287323,0.077876903116703,0.968743920326233,0.235521346330643,-0.14881919324398,0.462757468223572,0.873904049396515,-0.628344833850861,0.683509886264801,0.371479630470276,-0.0608938634395599,0.990029633045197,0.127016574144363,0.12006089091301,0.812812566757202,0.570018470287323,0.12006089091301,0.812812566757202,0.570018470287323,-0.0608938634395599,0.990029633045197,0.127016574144363,-0.0151509661227465,0.99535870552063,0.0950342044234276,0.0964317098259926,0.859874904155731,0.501314222812653,0.077876903116703,0.968743920326233,0.235521346330643,0.12006089091301,0.812812566757202,0.570018470287323, +0.0964317098259926,0.859874904155731,0.501314222812653,0.0318148247897625,0.979531645774841,0.198759838938713,-0.355925559997559,0.906254887580872,0.228076919913292,-0.389274567365646,0.873005211353302,0.293814718723297,0.0741141065955162,0.995791852474213,0.0539037138223648,0.0914653986692429,0.993724524974823,0.0643879324197769,-0.389274567365646,0.873005211353302,0.293814718723297,-0.340639442205429,0.750027358531952,0.566942572593689,0.077876903116703,0.968743920326233,0.235521346330643,0.0741141065955162,0.995791852474213,0.0539037138223648,0.0741141065955162,0.995791852474213,0.0539037138223648,0.077876903116703,0.968743920326233,0.235521346330643,0.0318148247897625,0.979531645774841,0.198759838938713,-0.010114848613739,0.998629629611969,0.0513465888798237,0.0914653986692429,0.993724524974823,0.0643879324197769,0.0741141065955162,0.995791852474213,0.0539037138223648,-0.010114848613739,0.998629629611969,0.0513465888798237,-0.0043518808670342,0.995574355125427,0.0938772782683372,-0.460800260305405,0.886764228343964,0.0362249948084354,-0.384405732154846,0.901455283164978,0.19902415573597,0.0701337903738022,0.994135797023773,0.0823124349117279,0.00778531888499856,0.999922394752502,-0.00972016621381044,-0.384405732154846,0.901455283164978,0.19902415573597,-0.355925559997559,0.906254887580872,0.228076919913292,0.0914653986692429,0.993724524974823,0.0643879324197769,0.0701337903738022,0.994135797023773,0.0823124349117279,0.0701337903738022,0.994135797023773,0.0823124349117279,0.0914653986692429,0.993724524974823,0.0643879324197769,-0.0043518808670342,0.995574355125427,0.0938772782683372,0.00822858419269323,0.992630243301392,0.120902456343174,0.00778531888499856,0.999922394752502,-0.00972016621381044,0.0701337903738022,0.994135797023773,0.0823124349117279,0.00822858419269323,0.992630243301392,0.120902456343174,-0.00473393173888326,0.999670922756195,0.0252132080495358,-0.359955251216888,0.867213666439056,0.344053357839584,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.0683653354644775,0.98283839225769,-0.171332702040672, +-0.0160270147025585,0.983390092849731,0.180795356631279,-0.474677115678787,0.848290324211121,-0.234702378511429,-0.460800260305405,0.886764228343964,0.0362249948084354,0.00778531888499856,0.999922394752502,-0.00972016621381044,-0.0683653354644775,0.98283839225769,-0.171332702040672,-0.0683653354644775,0.98283839225769,-0.171332702040672,0.00778531888499856,0.999922394752502,-0.00972016621381044,-0.00473393173888326,0.999670922756195,0.0252132080495358,-0.0430066473782063,0.991812765598297,-0.120241060853004,-0.0160270147025585,0.983390092849731,0.180795356631279,-0.0683653354644775,0.98283839225769,-0.171332702040672,-0.0430066473782063,0.991812765598297,-0.120241060853004,0.0337485857307911,0.987116694450378,0.156402423977852,-0.394090473651886,0.803994596004486,0.445292562246323,-0.225861296057701,0.695742309093475,0.681857228279114,0.0385843142867088,0.895612478256226,0.443158745765686,-0.0325050391256809,0.97695380449295,0.210961312055588,-0.225861296057701,0.695742309093475,0.681857228279114,-0.359955251216888,0.867213666439056,0.344053357839584,-0.0160270147025585,0.983390092849731,0.180795356631279,0.0385843142867088,0.895612478256226,0.443158745765686,0.0385843142867088,0.895612478256226,0.443158745765686,-0.0160270147025585,0.983390092849731,0.180795356631279,0.0337485857307911,0.987116694450378,0.156402423977852,0.108533754944801,0.915940999984741,0.386358052492142,-0.0325050391256809,0.97695380449295,0.210961312055588,0.0385843142867088,0.895612478256226,0.443158745765686,0.108533754944801,0.915940999984741,0.386358052492142,0.0253890473395586,0.987536251544952,0.155330121517181,-0.398814141750336,0.881977081298828,0.251124739646912,-0.437600523233414,0.872543215751648,0.217195779085159,-0.0299279261380434,0.999076545238495,0.0308272037655115,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.437600523233414,0.872543215751648,0.217195779085159,-0.394090473651886,0.803994596004486,0.445292562246323,-0.0325050391256809,0.97695380449295,0.210961312055588,-0.0299279261380434,0.999076545238495,0.0308272037655115, +-0.0299279261380434,0.999076545238495,0.0308272037655115,-0.0325050391256809,0.97695380449295,0.210961312055588,0.0253890473395586,0.987536251544952,0.155330121517181,-0.0219244919717312,0.99975711107254,0.00226402701810002,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.0299279261380434,0.999076545238495,0.0308272037655115,-0.0219244919717312,0.99975711107254,0.00226402701810002,-0.00392425805330276,0.995426774024963,0.0954470485448837,-0.521180927753448,0.839390277862549,0.154254466295242,-0.436745554208755,0.84290075302124,0.314279556274414,-0.00861691404134035,0.986984133720398,0.160586446523666,-0.076534666121006,0.996190190315247,0.0418039225041866,-0.436745554208755,0.84290075302124,0.314279556274414,-0.398814141750336,0.881977081298828,0.251124739646912,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.00861691404134035,0.986984133720398,0.160586446523666,-0.00861691404134035,0.986984133720398,0.160586446523666,0.0138869807124138,0.995921313762665,0.0891506746411324,-0.00392425805330276,0.995426774024963,0.0954470485448837,0.0135718127712607,0.985743522644043,0.167706817388535,-0.076534666121006,0.996190190315247,0.0418039225041866,-0.00861691404134035,0.986984133720398,0.160586446523666,0.0135718127712607,0.985743522644043,0.167706817388535,7.25488644093275e-05,0.999377608299255,0.0352765023708344,-0.384734183549881,0.823127925395966,0.417660236358643,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.111568368971348,0.98267138004303,-0.148018434643745,-0.0541600920259953,0.968688130378723,0.242301598191261,-0.506049335002899,0.854612529277802,-0.11641038954258,-0.521180927753448,0.839390277862549,0.154254466295242,-0.076534666121006,0.996190190315247,0.0418039225041866,-0.111568368971348,0.98267138004303,-0.148018434643745,-0.111568368971348,0.98267138004303,-0.148018434643745,-0.076534666121006,0.996190190315247,0.0418039225041866,7.25488644093275e-05,0.999377608299255,0.0352765023708344,-0.0249541122466326,0.988700747489929,-0.147810697555542,-0.0541600920259953,0.968688130378723,0.242301598191261, +-0.111568368971348,0.98267138004303,-0.148018434643745,-0.0249541122466326,0.988700747489929,-0.147810697555542,0.00852314010262489,0.977733075618744,0.20967860519886,-0.0584177039563656,0.971585273742676,0.229367539286613,-0.452030569314957,0.806248903274536,0.381616413593292,-0.384734183549881,0.823127925395966,0.417660236358643,-0.0541600920259953,0.968688130378723,0.242301598191261,-0.0584177039563656,0.971585273742676,0.229367539286613,-0.0541600920259953,0.968688130378723,0.242301598191261,0.00852314010262489,0.977733075618744,0.20967860519886,0.0121702868491411,0.981673896312714,0.190179511904716,-0.370093166828156,0.921099185943604,0.120860703289509,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.0155421774834394,0.999395132064819,0.0311111994087696,0.0166346412152052,0.995623648166656,0.0919607058167458,-0.41643089056015,0.906366050243378,0.0713155791163445,-0.452030569314957,0.806248903274536,0.381616413593292,-0.0584177039563656,0.971585273742676,0.229367539286613,-0.0155421774834394,0.999395132064819,0.0311111994087696,-0.0155421774834394,0.999395132064819,0.0311111994087696,-0.0584177039563656,0.971585273742676,0.229367539286613,0.0121702868491411,0.981673896312714,0.190179511904716,-0.00346456165425479,0.999890685081482,0.0143786584958434,0.0166346412152052,0.995623648166656,0.0919607058167458,-0.0155421774834394,0.999395132064819,0.0311111994087696,-0.00346456165425479,0.999890685081482,0.0143786584958434,-0.00230317981913686,0.995579361915588,0.0938960164785385,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.442843645811081,0.874231338500977,0.199020147323608,-0.0156412869691849,0.980694711208344,0.194918364286423,-0.0829718932509422,0.983162522315979,0.162810266017914,-0.442843645811081,0.874231338500977,0.199020147323608,-0.370093166828156,0.921099185943604,0.120860703289509,0.0166346412152052,0.995623648166656,0.0919607058167458,-0.0156412869691849,0.980694711208344,0.194918364286423,-0.0156412869691849,0.980694711208344,0.194918364286423,0.0166346412152052,0.995623648166656,0.0919607058167458, +-0.00230317981913686,0.995579361915588,0.0938960164785385,0.00379641377367079,0.977337419986725,0.211653470993042,-0.0829718932509422,0.983162522315979,0.162810266017914,-0.0156412869691849,0.980694711208344,0.194918364286423,0.00379641377367079,0.977337419986725,0.211653470993042,0.00153340841643512,0.977238595485687,0.212137639522552,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.490619719028473,0.784559488296509,-0.37915512919426,-0.545805335044861,0.837284445762634,-0.0324207991361618,-0.0829718932509422,0.983162522315979,0.162810266017914,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.0829718932509422,0.983162522315979,0.162810266017914,0.00153340841643512,0.977238595485687,0.212137639522552,-0.00483007868751884,0.994182825088501,0.107596851885319,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.120686419308186,0.99269038438797,0.000770674902014434,-0.00483007868751884,0.994182825088501,0.107596851885319,-0.0506674610078335,0.99699342250824,-0.0586251579225063,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.0497316643595695,-0.134555041790009,0.989657342433929,0.368675380945206,0.098903588950634,-0.924281597137451,0.355109542608261,0.0902480930089951,-0.930458247661591,0.259201914072037,0.299632668495178,-0.91816920042038,0.323132365942001,0.276261866092682,-0.905132412910461,0.355109542608261,0.0902480930089951,-0.930458247661591,0.318776696920395,0.121042519807816,-0.940069198608398,0.208717495203018,0.299665898084641,-0.930933594703674, +0.259201914072037,0.299632668495178,-0.91816920042038,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.592933058738708,-0.201002240180969,0.779761970043182,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.538890659809113,-0.218997687101364,0.813410639762878,-0.503373384475708,-0.229347825050354,0.83307546377182,-0.535748302936554,-0.0948459655046463,0.839033901691437,-0.641306042671204,-0.110263399779797,0.759321093559265,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.469182223081589,-0.23962926864624,0.849968135356903,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.451806277036667,-0.247524738311768,0.857089519500732,-0.427422344684601,-0.254157453775406,0.86759090423584,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.541444063186646,-0.11736087501049,0.83250504732132,-0.510215818881989,-0.0448289290070534,0.858877301216125,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.5162513256073,-0.446035444736481,0.731120347976685,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.535748302936554,-0.0948459655046463,0.839033901691437,-0.458318442106247,-0.0461761690676212,0.88758772611618,-0.609224498271942,-0.122274100780487,0.783514201641083,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.234741002321243,-0.47547435760498,0.847832918167114,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.234741002321243,-0.47547435760498,0.847832918167114,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.58160924911499,-0.112335406243801,0.805674433708191,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.206299006938934,-0.364515900611877,0.908057749271393,-0.371475577354431,-0.195014357566833,0.907730877399445, +-0.206299006938934,-0.364515900611877,0.908057749271393,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.465210020542145,-0.175942659378052,0.867538928985596,-0.371475577354431,-0.195014357566833,0.907730877399445,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.784469842910767,-0.148500397801399,0.60212516784668,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.72435474395752,-0.169128999114037,0.668360352516174,-0.686346232891083,-0.180076032876968,0.704628586769104,-0.658483147621155,-0.0952630564570427,0.746541917324066,-0.72307014465332,-0.0618981942534447,0.687995851039886,-0.347685635089874,-0.198913931846619,0.916268408298492,-0.362557649612427,-0.260609686374664,0.894781827926636,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.342844098806381,-0.175389617681503,0.922873973846436,-0.339623183012009,-0.266482263803482,0.902021765708923,-0.326379239559174,-0.270269840955734,0.905776381492615,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.342844098806381,-0.175389617681503,0.922873973846436,-0.756080985069275,-0.0511226840317249,0.652478277683258,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.769300282001495,-0.503095626831055,0.39379158616066,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.792523980140686,-0.0887514874339104,0.603348016738892,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.328042328357697,-0.452072858810425,0.829468667507172,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.307098269462585,-0.151766687631607,0.939498603343964,-0.297171205282211,-0.123525947332382,0.946800112724304,-0.927932739257813,-0.139165371656418,0.345794230699539, +-0.910836100578308,-0.101129606366158,0.400187909603119,-0.886835098266602,-0.116375274956226,0.447191417217255,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.886835098266602,-0.116375274956226,0.447191417217255,-0.869179010391235,-0.121353857219219,0.479375958442688,-0.849089801311493,-0.134121865034103,0.510938286781311,-0.908298134803772,-0.145898208022118,0.392056465148926,-0.333052575588226,-0.117952950298786,0.935501515865326,-0.299888551235199,-0.273957967758179,0.913790941238403,-0.275031268596649,-0.280610650777817,0.919573485851288,-0.346615135669708,-0.147859111428261,0.926280558109283,-0.275031268596649,-0.280610650777817,0.919573485851288,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.346615135669708,-0.147859111428261,0.926280558109283,-0.927932739257813,-0.139165371656418,0.345794230699539,-0.826989233493805,-0.454506695270538,0.330926805734634,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.589373290538788,-0.494950175285339,0.638485193252563,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.919650614261627,-0.110892750322819,0.376756429672241,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.827871561050415,-0.149796634912491,0.540545642375946,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.840358734130859,-0.142941266298294,0.5228431224823,-0.888495624065399,-0.114122070372105,0.444467842578888,-0.892932951450348,-0.0992856472730637,0.439104735851288,-0.86614191532135,-0.0716108158230782,0.494641423225403,-0.846282780170441,-0.0316138826310635,0.531795024871826,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.894504547119141,-0.324190586805344,0.307834386825562,-0.937240719795227,-0.29300731420517,0.189014628529549, +-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.824329793453217,-0.0210819896310568,0.565717339515686,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.826235234737396,-0.133027985692024,0.547392785549164,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.815447926521301,-0.138904854655266,0.561916530132294,-0.82083135843277,-0.140723317861557,0.55356377363205,-0.818732798099518,-0.0261375047266483,0.57357931137085,-0.824827253818512,-0.0257094260305166,0.564800083637238,-0.830882906913757,-0.0196117963641882,0.556101560592651,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.615517616271973,-0.242695420980453,0.749824643135071,-0.694688260555267,-0.291444092988968,0.657623469829559,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.835477352142334,-0.0103538390249014,0.549427330493927,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.832349300384521,-0.150212198495865,0.533507943153381,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.833853244781494,-0.146586775779724,0.532166481018066,-0.839202105998993,-0.139069586992264,0.525737106800079,-0.827241182327271,-0.00917591527104378,0.561772048473358,-0.815671920776367,-0.0164714958518744,0.578280210494995,-0.81847071647644,-0.0270479898899794,0.573911249637604,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.829234719276428,-0.332600057125092,0.449162483215332,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.839645147323608,-0.0431782118976116,0.54141628742218,-0.956861793994904,0.0141872800886631,0.290197134017944,-0.901849567890167,-0.106318786740303,0.418764621019363,-0.885213017463684,-0.127952173352242,0.447242945432663, +-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.885213017463684,-0.127952173352242,0.447242945432663,-0.859979510307312,-0.142488270998001,0.490033090114594,-0.895138442516327,-0.0640965551137924,0.441156268119812,-0.949359834194183,-0.0471252389252186,0.310636818408966,-0.956861793994904,0.0141872800886631,0.290197134017944,-0.930284380912781,-0.284267514944077,0.231868550181389,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.940751850605011,0.0702282711863518,0.331743776798248,-0.794616758823395,-0.250072985887527,0.553215742111206,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.943971574306488,0.128323748707771,0.304057091474533,-0.940751850605011,0.0702282711863518,0.331743776798248,-0.89040869474411,0.311238497495651,0.332118898630142,-0.940940618515015,-0.0501009486615658,0.334844082593918,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.930454969406128,0.224429950118065,0.289628684520721,-0.927997291088104,-0.0665726214647293,0.36659100651741,-0.920184791088104,-0.0795869082212448,0.383309036493301,-0.943971574306488,0.128323748707771,0.304057091474533,-0.930454969406128,0.224429950118065,0.289628684520721,-0.89040869474411,0.311238497495651,0.332118898630142,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.874447166919708,0.288081109523773,0.390322238206863,-0.92466789484024,-0.320375800132751,0.205787897109985,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.872197031974792,0.226783886551857,0.433406591415405,-0.874447166919708,0.288081109523773,0.390322238206863,-0.920935451984406,0.143320575356483,0.362404674291611,-0.957323729991913,-0.0186078604310751,0.288418054580688,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.880764484405518,0.180825784802437,0.437671184539795,-0.921505093574524,-0.0544599331915379,0.384528756141663,-0.932464838027954,-0.0516801998019218,0.357545047998428,-0.872197031974792,0.226783886551857,0.433406591415405,-0.880764484405518,0.180825784802437,0.437671184539795, +-0.805730640888214,-0.350308150053024,0.477579683065414,-0.860088109970093,-0.273398786783218,0.430698931217194,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.920935451984406,0.143320575356483,0.362404674291611,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.998309850692749,0.0187163222581148,0.0550195500254631,-0.99725204706192,0.0188685450702906,0.0716400593519211,-0.993880212306976,0.0232245307415724,0.107993647456169,-0.99725204706192,0.0188685450702906,0.0716400593519211,-0.987043917179108,0.00778279406949878,0.160261526703835,-0.962426960468292,0.0948952883481979,0.254419147968292,-0.993880212306976,0.0232245307415724,0.107993647456169,-0.997870922088623,0.00114678300451487,0.0652094334363937,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.998741626739502,-0.00342219998128712,0.0500338859856129,-0.92265385389328,-0.380260974168777,-0.064119927585125,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.998741626739502,-0.00342219998128712,0.0500338859856129,-0.996107459068298,0.00330066774040461,0.0880859866738319,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.997405111789703,0.00665625929832458,0.0716846287250519,-0.99621844291687,0.0131362657994032,0.0858851000666618,-0.996853768825531,0.00634231185540557,0.079008474946022,-0.998364090919495,0.0150968031957746,0.0551464967429638,-0.998719036579132,0.000443113705841824,0.0505979284644127,-0.997405111789703,0.00665625929832458,0.0716846287250519,0.909924030303955,0.382335722446442,0.160803377628326,0.911470055580139,0.382125437259674,0.152323514223099,0.933702230453491,0.351534873247147,0.0679962337017059,0.918489754199982,0.390081375837326,0.0649086162447929,0.911470055580139,0.382125437259674,0.152323514223099,0.884372234344482,0.457667320966721,0.0917949602007866,0.91965240240097,0.390021592378616,0.0460708625614643,0.933702230453491,0.351534873247147,0.0679962337017059,0.884372234344482,0.457667320966721,0.0917949602007866, +0.988306939601898,0.104397609829903,-0.111133053898811,0.814651012420654,0.577126085758209,0.05717808380723,0.801068782806396,0.595264196395874,0.0628444850444794,0.988306939601898,0.104397609829903,-0.111133053898811,0.989710927009583,0.102190293371677,-0.100146681070328,0.838683366775513,0.544562935829163,-0.00783465337008238,0.814651012420654,0.577126085758209,0.05717808380723,0.537430226802826,0.842876613140106,-0.026979073882103,0.59618866443634,0.802758991718292,0.0117065347731113,0.850350499153137,0.521303713321686,-0.0717378035187721,0.847741067409515,0.516543209552765,-0.12049139291048,0.59618866443634,0.802758991718292,0.0117065347731113,0.689390957355499,0.722647607326508,0.0502060428261757,0.838683366775513,0.544562935829163,-0.00783465337008238,0.850350499153137,0.521303713321686,-0.0717378035187721,0.847741067409515,0.516543209552765,-0.12049139291048,0.991479098796844,0.110518060624599,-0.0689562931656837,0.986953139305115,0.0644822493195534,-0.147531688213348,0.887120962142944,0.441524177789688,-0.134434923529625,0.725338160991669,0.688391089439392,0.0015043233288452,0.670208394527435,0.740215718746185,0.0538638904690742,0.892151772975922,0.415251165628433,-0.177852809429169,0.916534781455994,0.315282136201859,-0.246092095971107,0.670208394527435,0.740215718746185,0.0538638904690742,0.603810250759125,0.796887397766113,0.0195919945836067,0.887120962142944,0.441524177789688,-0.134434923529625,0.892151772975922,0.415251165628433,-0.177852809429169,0.916534781455994,0.315282136201859,-0.246092095971107,0.886656284332275,0.0170933715999126,-0.462113082408905,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.936087548732758,0.111993096768856,-0.333463251590729,0.891822457313538,-0.0941320061683655,-0.442483842372894,0.909102857112885,-0.171811461448669,-0.37949001789093,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.936087548732758,0.111993096768856,-0.333463251590729,0.90697705745697,0.336921870708466,-0.252737581729889,0.902696073055267,0.338164865970612,-0.266053199768066,0.95274031162262,-0.0942111760377884,-0.288808196783066, +0.971439898014069,-0.0380248129367828,-0.234219044446945,0.902696073055267,0.338164865970612,-0.266053199768066,0.930621147155762,0.237400963902473,-0.278540879487991,0.934467613697052,-0.0880404859781265,-0.344991266727448,0.95274031162262,-0.0942111760377884,-0.288808196783066,0.971439898014069,-0.0380248129367828,-0.234219044446945,0.973713517189026,-0.172938525676727,-0.148237258195877,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.976116955280304,0.0134601527824998,-0.216828137636185,0.989677429199219,-0.118800163269043,-0.0801567286252975,0.980044484138489,-0.101791329681873,-0.170737832784653,0.967101693153381,0.0675250291824341,-0.245264634490013,0.976116955280304,0.0134601527824998,-0.216828137636185,0.893243849277496,0.298696398735046,-0.335999757051468,0.907508671283722,0.28566175699234,-0.307937324047089,0.951133668422699,0.1209502145648,-0.28410530090332,0.922317802906036,0.124125301837921,-0.365954786539078,0.907508671283722,0.28566175699234,-0.307937324047089,0.920147359371185,0.269906520843506,-0.283688962459564,0.967101693153381,0.0675250291824341,-0.245264634490013,0.951133668422699,0.1209502145648,-0.28410530090332,0.922317802906036,0.124125301837921,-0.365954786539078,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.868053674697876,-0.121659033000469,-0.481333494186401,0.898446023464203,0.0842752084136009,-0.430920600891113,0.868053674697876,-0.121659033000469,-0.481333494186401,0.895589888095856,-0.120351918041706,-0.428292095661163,0.901818215847015,0.0675557777285576,-0.426802188158035,0.898446023464203,0.0842752084136009,-0.430920600891113,0.853890836238861,0.319215506315231,-0.411061942577362,0.862371385097504,0.269467294216156,-0.428605705499649,0.924264490604401,0.130826368927956,-0.358635663986206,0.924147367477417,0.229529798030853,-0.305397510528564,0.862371385097504,0.269467294216156,-0.428605705499649,0.886994004249573,0.163238406181335,-0.431966125965118,0.901818215847015,0.0675557777285576,-0.426802188158035,0.924264490604401,0.130826368927956,-0.358635663986206, +0.924147367477417,0.229529798030853,-0.305397510528564,0.990053594112396,0.0981012284755707,-0.100846499204636,0.959591209888458,0.208667978644371,-0.188792005181313,0.890639185905457,0.299340456724167,-0.342282474040985,0.959591209888458,0.208667978644371,-0.188792005181313,0.791596829891205,0.230182409286499,-0.566030383110046,0.784429788589478,0.305884122848511,-0.53954142332077,0.890639185905457,0.299340456724167,-0.342282474040985,0.851244390010834,0.220117658376694,-0.476373016834259,0.821320593357086,0.276728183031082,-0.498852610588074,0.691240251064301,0.223803639411926,-0.687094509601593,0.768146157264709,0.127034261822701,-0.627545773983002,0.821320593357086,0.276728183031082,-0.498852610588074,0.82975310087204,0.32433557510376,-0.454220652580261,0.784429788589478,0.305884122848511,-0.53954142332077,0.691240251064301,0.223803639411926,-0.687094509601593,0.768146157264709,0.127034261822701,-0.627545773983002,0.64826375246048,0.10987926274538,-0.753445863723755,0.838982045650482,0.0504205077886581,-0.541818201541901,0.866522550582886,0.0672406181693077,-0.494588106870651,0.838982045650482,0.0504205077886581,-0.541818201541901,0.904049396514893,0.0348534919321537,-0.426004707813263,0.899305462837219,0.0559697672724724,-0.433724671602249,0.866522550582886,0.0672406181693077,-0.494588106870651,0.867344975471497,0.2725790143013,-0.416429340839386,0.869417071342468,0.207068249583244,-0.448594093322754,0.915594160556793,0.0869414284825325,-0.392591774463654,0.951062262058258,0.134249106049538,-0.278312623500824,0.869417071342468,0.207068249583244,-0.448594093322754,0.889630854129791,0.0999864265322685,-0.44560033082962,0.899305462837219,0.0559697672724724,-0.433724671602249,0.915594160556793,0.0869414284825325,-0.392591774463654,0.951062262058258,0.134249106049538,-0.278312623500824,0.992201030254364,0.0745126605033875,-0.0999240875244141,0.985915005207062,0.156256228685379,0.0596290454268456,0.961063802242279,0.21541254222393,-0.173071682453156,0.985915005207062,0.156256228685379,0.0596290454268456,0.911404967308044,0.292803913354874,-0.289148598909378, +0.859557867050171,0.334645241498947,-0.386228829622269,0.961063802242279,0.21541254222393,-0.173071682453156,0.739257872104645,0.406338691711426,-0.537016332149506,0.739202260971069,0.412130922079086,-0.532661318778992,0.692432820796967,0.330824136734009,-0.641164720058441,0.691599428653717,0.257617503404617,-0.674776554107666,0.739202260971069,0.412130922079086,-0.532661318778992,0.792701959609985,0.400867879390717,-0.459269553422928,0.859557867050171,0.334645241498947,-0.386228829622269,0.692432820796967,0.330824136734009,-0.641164720058441,0.691599428653717,0.257617503404617,-0.674776554107666,0.587326943874359,0.256558895111084,-0.767609655857086,0.674247980117798,0.186011746525764,-0.714695274829865,0.728286027908325,0.183006748557091,-0.660384654998779,0.674247980117798,0.186011746525764,-0.714695274829865,0.737434148788452,0.135899171233177,-0.661605775356293,0.74715131521225,0.127207294106483,-0.652367472648621,0.728286027908325,0.183006748557091,-0.660384654998779,0.656255125999451,0.448537945747375,-0.60674774646759,0.686774015426636,0.378295749425888,-0.620671927928925,0.775611996650696,0.14525580406189,-0.614269316196442,0.826049566268921,0.216002121567726,-0.52056223154068,0.686774015426636,0.378295749425888,-0.620671927928925,0.748709142208099,0.238583773374557,-0.61847585439682,0.74715131521225,0.127207294106483,-0.652367472648621,0.775611996650696,0.14525580406189,-0.614269316196442,0.826049566268921,0.216002121567726,-0.52056223154068,0.91890150308609,0.17311230301857,-0.354474425315857,0.940506935119629,0.267852574586868,-0.209049537777901,0.828815698623657,0.333292007446289,-0.449422895908356,0.940506935119629,0.267852574586868,-0.209049537777901,0.661338627338409,0.378908932209015,-0.647347986698151,0.608534216880798,0.422096699476242,-0.671952784061432,0.828815698623657,0.333292007446289,-0.449422895908356,0.49078169465065,0.501620471477509,-0.712397575378418,0.484879583120346,0.517203330993652,-0.705260574817657,0.38545623421669,0.337239533662796,-0.858890533447266,0.416671603918076,0.242084756493568,-0.876230418682098, +0.484879583120346,0.517203330993652,-0.705260574817657,0.545172929763794,0.533064484596252,-0.647015333175659,0.608534216880798,0.422096699476242,-0.671952784061432,0.38545623421669,0.337239533662796,-0.858890533447266,0.416671603918076,0.242084756493568,-0.876230418682098,0.318130344152451,0.259494483470917,-0.911841869354248,0.461237609386444,0.226542562246323,-0.857868492603302,0.495140880346298,0.185466706752777,-0.848785996437073,0.461237609386444,0.226542562246323,-0.857868492603302,0.555911600589752,0.207833155989647,-0.80484014749527,0.55392849445343,0.168168351054192,-0.815403401851654,0.495140880346298,0.185466706752777,-0.848785996437073,0.402486979961395,0.522201836109161,-0.751870632171631,0.446554064750671,0.475454419851303,-0.757979273796082,0.58081328868866,0.245254293084145,-0.776212811470032,0.546992540359497,0.341834425926208,-0.764165222644806,0.446554064750671,0.475454419851303,-0.757979273796082,0.518530607223511,0.333309799432755,-0.787420272827148,0.55392849445343,0.168168351054192,-0.815403401851654,0.58081328868866,0.245254293084145,-0.776212811470032,0.546992540359497,0.341834425926208,-0.764165222644806,0.651852667331696,0.292813539505005,-0.699534296989441,0.585752069950104,0.344408452510834,-0.733673751354218,0.476209849119186,0.397222876548767,-0.784498691558838,0.585752069950104,0.344408452510834,-0.733673751354218,0.359844118356705,0.337632149457932,-0.869779706001282,0.370532244443893,0.403686285018921,-0.836506485939026,0.476209849119186,0.397222876548767,-0.784498691558838,0.331205278635025,0.555228888988495,-0.762904942035675,0.335152059793472,0.538876950740814,-0.772841930389404,0.285932034254074,0.363823145627975,-0.886496305465698,0.275888413190842,0.299088269472122,-0.913472473621368,0.335152059793472,0.538876950740814,-0.772841930389404,0.355381429195404,0.524076342582703,-0.773981869220734,0.370532244443893,0.403686285018921,-0.836506485939026,0.285932034254074,0.363823145627975,-0.886496305465698,0.275888413190842,0.299088269472122,-0.913472473621368,0.199421912431717,0.25212886929512,-0.946922361850739, +0.277288466691971,0.210945814847946,-0.937343597412109,0.30895471572876,0.22746567428112,-0.92347514629364,0.277288466691971,0.210945814847946,-0.937343597412109,0.331366807222366,0.181360095739365,-0.925907373428345,0.348579585552216,0.189517378807068,-0.917919039726257,0.30895471572876,0.22746567428112,-0.92347514629364,0.254412084817886,0.533420383930206,-0.806682765483856,0.281423538923264,0.504726886749268,-0.816119790077209,0.357639133930206,0.230505898594856,-0.904964864253998,0.323132365942001,0.276261866092682,-0.905132412910461,0.281423538923264,0.504726886749268,-0.816119790077209,0.330113887786865,0.373487502336502,-0.866909325122833,0.348579585552216,0.189517378807068,-0.917919039726257,0.357639133930206,0.230505898594856,-0.904964864253998,0.0340442918241024,-0.44191038608551,0.896412968635559,-0.109554767608643,-0.463935196399689,0.879068791866302,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.0695114508271217,-0.308985948562622,0.948523044586182,0.0340442918241024,-0.44191038608551,0.896412968635559,-0.0695114508271217,-0.308985948562622,0.948523044586182,0.150402024388313,-0.318250775337219,0.935999751091003,0.310132741928101,-0.395607888698578,0.864472031593323,0.285638749599457,0.2063317745924,-0.935862064361572,0.16628709435463,0.278749406337738,-0.94585794210434,0.0663652718067169,0.333928227424622,-0.940259397029877,0.213816419243813,0.31326550245285,-0.925282299518585,0.285638749599457,0.2063317745924,-0.935862064361572,0.213816419243813,0.31326550245285,-0.925282299518585,0.333691775798798,0.296535044908524,-0.894827723503113,0.371691584587097,0.176296725869179,-0.911462962627411,-0.25737664103508,-0.520960569381714,0.81385350227356,-0.272015035152435,-0.415263712406158,0.868080496788025,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.398151904344559,-0.536222040653229,0.74427205324173,-0.463049352169037,-0.406111717224121,0.787818908691406,-0.763526737689972,-0.339982211589813,0.549034714698792,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.398151904344559,-0.536222040653229,0.74427205324173, +-0.25737664103508,-0.520960569381714,0.81385350227356,-0.289825111627579,-0.430258691310883,0.854914486408234,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.275958716869354,-0.376473605632782,0.884372353553772,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.109554767608643,-0.463935196399689,0.879068791866302,-0.175471678376198,-0.492908120155334,0.852203726768494,-0.418494075536728,-0.4173284471035,0.806659519672394,-0.354587703943253,-0.379910498857498,0.854362666606903,-0.568327307701111,-0.391887068748474,0.723483622074127,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.568327307701111,-0.391887068748474,0.723483622074127,-0.440851777791977,-0.435895591974258,0.784630298614502,-0.61082661151886,-0.523797154426575,0.593740224838257,-0.806881785392761,-0.434429675340652,0.400265395641327,-0.418494075536728,-0.4173284471035,0.806659519672394,-0.490314334630966,-0.306891679763794,0.815726220607758,0.0491029173135757,-0.337266832590103,0.940127730369568,-0.0412460155785084,-0.429754108190536,0.902003347873688,0.0491029173135757,-0.337266832590103,0.940127730369568,-0.0555649995803833,-0.379517257213593,0.923514544963837,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.0412460155785084,-0.429754108190536,0.902003347873688,-0.41496080160141,-0.562957286834717,0.714763343334198,-0.499814599752426,-0.381588190793991,0.777544677257538,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.48164364695549,-0.387471348047256,0.786056876182556,-0.354269802570343,-0.385113596916199,0.85216224193573,-0.170655101537704,-0.490784138441086,0.854404926300049,-0.310915619134903,-0.535861134529114,0.784974098205566,-0.41496080160141,-0.562957286834717,0.714763343334198,-0.388131648302078,-0.443252623081207,0.808010518550873,-0.567373514175415,-0.433731079101563,0.699974715709686,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.567373514175415,-0.433731079101563,0.699974715709686, +-0.820309162139893,-0.366870522499084,0.438746929168701,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.532858610153198,-0.568662762641907,0.626645267009735,-0.373453110456467,-0.514030456542969,0.772208094596863,-0.546497523784637,-0.482553243637085,0.684458076953888,-0.875212669372559,-0.394328147172928,0.280193239450455,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.875212669372559,-0.394328147172928,0.280193239450455,-0.70888352394104,-0.490243762731552,0.507094979286194,-0.730620682239532,-0.524867355823517,0.436700910329819,-0.922898828983307,-0.375942707061768,0.0832152962684631,-0.373453110456467,-0.514030456542969,0.772208094596863,-0.256725430488586,-0.374575465917587,0.890946269035339,0.11180654913187,-0.334470957517624,0.935750186443329,0.040289144963026,-0.486981987953186,0.872482240200043,0.11180654913187,-0.334470957517624,0.935750186443329,-0.236676275730133,-0.44870325922966,0.86177134513855,-0.282623738050461,-0.625286161899567,0.727420747280121,0.040289144963026,-0.486981987953186,0.872482240200043,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.693263590335846,-0.491295695304871,0.527270495891571,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.598465979099274,-0.519042551517487,0.610273003578186,-0.423019826412201,-0.536653637886047,0.730107545852661,-0.282623738050461,-0.625286161899567,0.727420747280121,-0.517385482788086,-0.659280121326447,0.545584142208099,-0.651747047901154,-0.644851505756378,0.399239778518677,-0.731289803981781,-0.511830270290375,0.450826972723007,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.857296645641327,-0.464593470096588,0.221800103783607,-0.93333637714386,-0.338868290185928,-0.11853851377964,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.764274895191193,-0.600094318389893,0.236158072948456,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.826989233493805,-0.454506695270538,0.330926805734634, +-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.921968221664429,-0.384921699762344,0.0425437018275261,-0.854415416717529,-0.476478487253189,0.207226112484932,-0.860287129878998,-0.509485065937042,0.0181951094418764,-0.904917001724243,-0.356533259153366,-0.232398897409439,-0.727997839450836,-0.511177361011505,0.456855565309525,-0.831903696060181,-0.397577732801437,0.387128055095673,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.224774345755577,-0.377646744251251,0.898253560066223,-0.682293832302094,-0.429185539484024,0.591840147972107,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.340845227241516,-0.520657658576965,0.78277713060379,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.839185059070587,-0.326796144247055,0.434709846973419,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.737217128276825,-0.43190610408783,0.51958441734314,-0.604284584522247,-0.509617865085602,0.612478315830231,-0.619377791881561,-0.549389660358429,0.560840547084808,-0.763510525226593,-0.49641740322113,0.413063406944275,-0.845471024513245,-0.443917781114578,0.2968430519104,-0.920676052570343,-0.318963706493378,0.224984005093575,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.948325097560883,-0.269569605588913,0.167366921901703,-0.980615139007568,-0.188657388091087,-0.0529380403459072,-0.936768233776093,-0.349801152944565,0.0102151110768318,-0.903766393661499,-0.393360078334808,0.168742522597313,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.772954046726227,-0.250580102205276,0.582882165908813,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.950295329093933,-0.273207515478134,-0.149320408701897,-0.952583611011505,-0.215362638235092,0.214949861168861,-0.937240719795227,-0.29300731420517,0.189014628529549,-0.936768233776093,-0.349801152944565,0.0102151110768318, +-0.950295329093933,-0.273207515478134,-0.149320408701897,-0.739792764186859,-0.321776956319809,0.590902864933014,-0.812161386013031,-0.217687726020813,0.541300237178802,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.331752121448517,-0.234241932630539,0.913822293281555,-0.58196759223938,-0.243648797273636,0.775853753089905,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.361954659223557,-0.33495420217514,0.869939386844635,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.786806344985962,-0.340115338563919,0.515031337738037,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.746088922023773,-0.324960440397263,0.581164419651031,-0.694688260555267,-0.291444092988968,0.657623469829559,-0.56796133518219,-0.381175369024277,0.729469120502472,-0.725226521492004,-0.381644427776337,0.573056697845459,-0.801341652870178,-0.360423654317856,0.477437317371368,-0.867147862911224,-0.171361401677132,0.467642903327942,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.914871156215668,-0.121897727251053,0.384904861450195,-0.984977602958679,-0.0615623258054256,0.161335840821266,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.853535652160645,-0.332707971334457,0.400976747274399,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.930284380912781,-0.284267514944077,0.231868550181389,-0.957474827766418,-0.27677658200264,-0.0814660489559174,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.957474827766418,-0.27677658200264,-0.0814660489559174,-0.902208089828491,-0.345334559679031,0.258388638496399,-0.926891505718231,-0.302387148141861,0.222338244318962,-0.958427488803864,-0.230127066373825,-0.168695881962776,-0.885417938232422,-0.298435091972351,0.35633060336113,-0.884305417537689,-0.0543247833848,0.463737785816193,-0.612387180328369,-0.103147372603416,0.783800065517426,-0.645787417888641,-0.332664549350739,0.687235772609711, +-0.612387180328369,-0.103147372603416,0.783800065517426,-0.839507043361664,-0.133670568466187,0.52664977312088,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.645787417888641,-0.332664549350739,0.687235772609711,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.909818232059479,-0.29952147603035,0.28725877404213,-0.889139890670776,-0.300980299711227,0.344733268022537,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.889139890670776,-0.300980299711227,0.344733268022537,-0.850611627101898,-0.294687390327454,0.435452848672867,-0.807948172092438,-0.355443835258484,0.46997806429863,-0.880129396915436,-0.343007266521454,0.328204691410065,-0.899789988994598,-0.341387778520584,0.271721124649048,-0.934288501739502,-0.152976304292679,0.32202997803688,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.931489586830139,-0.173591554164886,0.319676667451859,-0.976975977420807,-0.180180698633194,0.114249095320702,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.90985894203186,-0.359286665916443,0.207532688975334,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.805730640888214,-0.350308150053024,0.477579683065414,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.97159880399704,-0.235264092683792,-0.0254276189953089,-0.945423364639282,-0.31183123588562,0.0945294424891472,-0.921848058700562,-0.387180060148239,0.0169619899243116,-0.889450132846832,-0.376867890357971,-0.258551716804504,-0.845598042011261,-0.197273597121239,0.496031492948532,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.778214633464813,-0.386427700519562,0.495030790567398,-0.822522819042206,-0.213443458080292,0.527160406112671,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.915839970111847,-0.40055051445961,0.0282224323600531,-0.905501306056976,-0.389081418514252,0.169360592961311,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.905501306056976,-0.389081418514252,0.169360592961311, +-0.860088109970093,-0.273398786783218,0.430698931217194,-0.794282257556915,-0.385055303573608,0.469944775104523,-0.909818053245544,-0.380733221769333,0.165146857500076,-0.929660260677338,-0.367221742868423,0.0296654924750328,-0.985681056976318,-0.159682244062424,0.0541716404259205,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.987075746059418,-0.15951444208622,-0.0153867220506072,-0.948016881942749,-0.114204548299313,-0.297020703554153,-0.917855978012085,-0.320134043693542,-0.234637275338173,-0.932111442089081,-0.355598837137222,-0.0686854869127274,-0.953887403011322,-0.109419479966164,-0.279510796070099,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.846324682235718,-0.220019087195396,-0.48510417342186,-0.839524686336517,-0.0949402377009392,-0.534962296485901,-0.963008165359497,-0.205694407224655,-0.174083322286606,-0.936767339706421,-0.323083937168121,-0.134476020932198,-0.917855978012085,-0.320134043693542,-0.234637275338173,-0.846324682235718,-0.220019087195396,-0.48510417342186,0.955293476581573,-0.100287422537804,-0.278130829334259,0.988293766975403,-0.00941547844558954,-0.152272343635559,0.989191770553589,0.0672444105148315,-0.130298912525177,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.989191770553589,0.0672444105148315,-0.130298912525177,0.982530891895294,0.179615572094917,-0.048695120960474,0.965870499610901,0.00448970589786768,-0.258986443281174,0.925921678543091,-0.0456602908670902,-0.374945521354675,0.955293476581573,-0.100287422537804,-0.278130829334259,0.95909571647644,0.00866605900228024,-0.282949209213257,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.972208499908447,-0.127094998955727,-0.19661520421505,0.986365914344788,-0.00942864269018173,-0.164296984672546,0.991545021533966,-0.0115073760971427,-0.129251420497894,0.980171322822571,-0.14081147313118,-0.139413714408875,0.972208499908447,-0.127094998955727,-0.19661520421505,0.985069394111633,-0.15815107524395,0.0680177062749863,0.991479098796844,0.110518060624599,-0.0689562931656837, +0.994581878185272,0.0645951926708221,-0.0814513266086578,0.986045718193054,-0.152371600270271,-0.067056804895401,0.994581878185272,0.0645951926708221,-0.0814513266086578,0.989710927009583,0.102190293371677,-0.100146681070328,0.980171322822571,-0.14081147313118,-0.139413714408875,0.986045718193054,-0.152371600270271,-0.067056804895401,0.985069394111633,-0.15815107524395,0.0680177062749863,0.988163650035858,-0.0455380268394947,0.146488800644875,0.998948752880096,-0.0175408590584993,-0.0423523299396038,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.886656284332275,0.0170933715999126,-0.462113082408905,0.899778306484222,0.116290338337421,-0.420565724372864,0.809904813766479,0.00722522288560867,-0.586516976356506,0.899778306484222,0.116290338337421,-0.420565724372864,0.986953139305115,0.0644822493195534,-0.147531688213348,0.994099855422974,-0.0905255675315857,-0.059755127876997,0.809904813766479,0.00722522288560867,-0.586516976356506,0.837253570556641,-0.0230903662741184,-0.546327114105225,0.837286174297333,0.0577985979616642,-0.543701350688934,0.893739640712738,0.0481724552810192,-0.445992112159729,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.893739640712738,0.0481724552810192,-0.445992112159729,0.916099011898041,0.0440531559288502,-0.398524641990662,0.915224254131317,-0.053038727492094,-0.399438798427582,0.885160684585571,-0.0404972285032272,-0.46351957321167,0.978056848049164,-0.11288920044899,-0.175102561712265,0.973713517189026,-0.172938525676727,-0.148237258195877,0.940621256828308,-0.200632810592651,-0.273821353912354,0.945058286190033,-0.0753810480237007,-0.318092048168182,0.940621256828308,-0.200632810592651,-0.273821353912354,0.909102857112885,-0.171811461448669,-0.37949001789093,0.915224254131317,-0.053038727492094,-0.399438798427582,0.945058286190033,-0.0753810480237007,-0.318092048168182,0.978056848049164,-0.11288920044899,-0.175102561712265,0.985578894615173,0.0224285423755646,-0.167723700404167,0.999491512775421,0.0158792212605476,-0.0276509076356888, +0.98804771900177,-0.153398603200912,-0.0151911964640021,0.999491512775421,0.0158792212605476,-0.0276509076356888,0.947330832481384,0.0109401699155569,-0.320069700479507,0.966646611690521,-0.169457629323006,-0.192037552595139,0.98804771900177,-0.153398603200912,-0.0151911964640021,0.83592814207077,-0.209792360663414,-0.507160067558289,0.908009469509125,-0.0659371316432953,-0.413728177547455,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.865661025047302,-0.193967401981354,-0.461527645587921,0.94538414478302,-0.0510046780109406,-0.321943074464798,0.980044484138489,-0.101791329681873,-0.170737832784653,0.966646611690521,-0.169457629323006,-0.192037552595139,0.865661025047302,-0.193967401981354,-0.461527645587921,0.83592814207077,-0.209792360663414,-0.507160067558289,0.852650284767151,-0.059975378215313,-0.51902836561203,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.863646626472473,-0.193558514118195,-0.465456366539001,0.907881021499634,-0.0673449635505676,-0.413783520460129,0.969745635986328,-0.0565570257604122,-0.237475529313087,0.9298415184021,-0.164688065648079,-0.32904788851738,0.863646626472473,-0.193558514118195,-0.465456366539001,0.951331615447998,-0.149952217936516,0.269225656986237,0.990053594112396,0.0981012284755707,-0.100846499204636,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.965615451335907,-0.0378054976463318,-0.257210969924927,0.895589888095856,-0.120351918041706,-0.428292095661163,0.9298415184021,-0.164688065648079,-0.32904788851738,0.988012671470642,-0.145618811249733,-0.0512460768222809,0.951331615447998,-0.149952217936516,0.269225656986237,0.925031006336212,-0.0753350853919983,0.372347176074982,0.865345120429993,-0.0699237212538719,0.496274620294571,0.902754366397858,-0.128846421837807,0.410406053066254,0.865345120429993,-0.0699237212538719,0.496274620294571,0.780417799949646,0.120299659669399,-0.613576352596283,0.839513540267944,0.0672921165823936,-0.539155781269073,0.902754366397858,-0.128846421837807,0.410406053066254, +0.632351577281952,0.0926535129547119,-0.769120872020721,0.64826375246048,0.10987926274538,-0.753445863723755,0.575262010097504,0.198084592819214,-0.793622136116028,0.346846014261246,0.0781911462545395,-0.934657156467438,0.575262010097504,0.198084592819214,-0.793622136116028,0.791596829891205,0.230182409286499,-0.566030383110046,0.839513540267944,0.0672921165823936,-0.539155781269073,0.346846014261246,0.0781911462545395,-0.934657156467438,0.632351577281952,0.0926535129547119,-0.769120872020721,0.583897352218628,0.1308653652668,-0.801210463047028,0.857279002666473,0.124704919755459,-0.499521195888519,0.845451891422272,0.114010237157345,-0.521740198135376,0.857279002666473,0.124704919755459,-0.499521195888519,0.924593687057495,0.12973764538765,-0.358182460069656,0.911967039108276,0.118431679904461,-0.392797768115997,0.845451891422272,0.114010237157345,-0.521740198135376,0.994663178920746,0.099911667406559,-0.0257435515522957,0.992201030254364,0.0745126605033875,-0.0999240875244141,0.941828370094299,0.0542167797684669,-0.331692397594452,0.952069818973541,0.122024171054363,-0.280487269163132,0.941828370094299,0.0542167797684669,-0.331692397594452,0.904049396514893,0.0348534919321537,-0.426004707813263,0.911967039108276,0.118431679904461,-0.392797768115997,0.952069818973541,0.122024171054363,-0.280487269163132,0.994663178920746,0.099911667406559,-0.0257435515522957,0.990326702594757,0.0927801057696342,0.103173792362213,0.874095916748047,0.0289738848805428,0.484888583421707,0.93198835849762,0.0418618321418762,0.360062897205353,0.874095916748047,0.0289738848805428,0.484888583421707,0.980971336364746,0.185382813215256,0.0576918534934521,0.981276512145996,0.191767975687981,0.0179323554039001,0.93198835849762,0.0418618321418762,0.360062897205353,0.573964834213257,0.327366709709167,-0.750596702098846,0.587326943874359,0.256558895111084,-0.767609655857086,0.610481441020966,0.342256963253021,-0.714263617992401,0.39307427406311,0.31626883149147,-0.863404154777527,0.610481441020966,0.342256963253021,-0.714263617992401,0.911404967308044,0.292803913354874,-0.289148598909378, +0.981276512145996,0.191767975687981,0.0179323554039001,0.39307427406311,0.31626883149147,-0.863404154777527,0.573964834213257,0.327366709709167,-0.750596702098846,0.597319900989532,0.32426705956459,-0.733525633811951,0.742010354995728,0.33788987994194,-0.579008817672729,0.683745205402374,0.336974382400513,-0.647256314754486,0.742010354995728,0.33788987994194,-0.579008817672729,0.733268737792969,0.353318601846695,-0.580932796001434,0.724198579788208,0.337111532688141,-0.601574718952179,0.683745205402374,0.336974382400513,-0.647256314754486,0.893178820610046,0.295912206172943,-0.338626027107239,0.91890150308609,0.17311230301857,-0.354474425315857,0.813067972660065,0.137634322047234,-0.565665185451508,0.773984909057617,0.336944669485092,-0.53611159324646,0.813067972660065,0.137634322047234,-0.565665185451508,0.737434148788452,0.135899171233177,-0.661605775356293,0.724198579788208,0.337111532688141,-0.601574718952179,0.773984909057617,0.336944669485092,-0.53611159324646,0.893178820610046,0.295912206172943,-0.338626027107239,0.870228707790375,0.286943376064301,-0.400456577539444,0.987502992153168,0.157599970698357,0.000459699804196134,0.982389628887177,0.173063978552818,0.0704231411218643,0.987502992153168,0.157599970698357,0.000459699804196134,0.79706084728241,0.281183272600174,-0.534443616867065,0.73923659324646,0.344859093427658,-0.57844752073288,0.982389628887177,0.173063978552818,0.0704231411218643,0.39407479763031,0.414524525403976,-0.820289373397827,0.318130344152451,0.259494483470917,-0.911841869354248,0.262142330408096,0.337864607572556,-0.90395176410675,0.192926704883575,0.364895969629288,-0.910840392112732,0.262142330408096,0.337864607572556,-0.90395176410675,0.661338627338409,0.378908932209015,-0.647347986698151,0.73923659324646,0.344859093427658,-0.57844752073288,0.192926704883575,0.364895969629288,-0.910840392112732,0.39407479763031,0.414524525403976,-0.820289373397827,0.460892260074615,0.366113841533661,-0.808417618274689,0.546176314353943,0.382619827985764,-0.745180189609528,0.493230670690536,0.4366734623909,-0.752356112003326, +0.546176314353943,0.382619827985764,-0.745180189609528,0.441102802753448,0.384839594364166,-0.810756921768188,0.484867662191391,0.426925152540207,-0.763307452201843,0.493230670690536,0.4366734623909,-0.752356112003326,0.593212127685547,0.321026146411896,-0.7382692694664,0.651852667331696,0.292813539505005,-0.699534296989441,0.635222494602203,0.233578324317932,-0.736161351203918,0.488260090351105,0.388118863105774,-0.781643033027649,0.635222494602203,0.233578324317932,-0.736161351203918,0.555911600589752,0.207833155989647,-0.80484014749527,0.484867662191391,0.426925152540207,-0.763307452201843,0.488260090351105,0.388118863105774,-0.781643033027649,0.593212127685547,0.321026146411896,-0.7382692694664,0.466656118631363,0.295668810606003,-0.833553910255432,0.76337343454361,0.199616685509682,-0.614340484142303,0.782543540000916,0.231308832764626,-0.578032732009888,0.76337343454361,0.199616685509682,-0.614340484142303,0.491225898265839,0.251587748527527,-0.833906888961792,0.381466448307037,0.306202560663223,-0.872194528579712,0.782543540000916,0.231308832764626,-0.578032732009888,0.261563330888748,0.344951987266541,-0.901439249515533,0.199421912431717,0.25212886929512,-0.946922361850739,0.184018075466156,0.307996332645416,-0.933421492576599,0.0890832617878914,0.300667136907578,-0.949559569358826,0.184018075466156,0.307996332645416,-0.933421492576599,0.359844118356705,0.337632149457932,-0.869779706001282,0.381466448307037,0.306202560663223,-0.872194528579712,0.0890832617878914,0.300667136907578,-0.949559569358826,0.261563330888748,0.344951987266541,-0.901439249515533,0.316920131444931,0.322103083133698,-0.892082452774048,0.382658123970032,0.343927413225174,-0.857488572597504,0.324567437171936,0.37573054432869,-0.868033766746521,0.382658123970032,0.343927413225174,-0.857488572597504,0.247937545180321,0.356415033340454,-0.900830328464508,0.259875953197479,0.378932803869247,-0.888186097145081,0.324567437171936,0.37573054432869,-0.868033766746521,0.368675380945206,0.098903588950634,-0.924281597137451,0.358443260192871,0.143149480223656,-0.922511041164398, +0.167164608836174,0.339099526405334,-0.925779402256012,0.16628709435463,0.278749406337738,-0.94585794210434,0.358443260192871,0.143149480223656,-0.922511041164398,0.331366807222366,0.181360095739365,-0.925907373428345,0.259875953197479,0.378932803869247,-0.888186097145081,0.167164608836174,0.339099526405334,-0.925779402256012,0.689390957355499,0.722647607326508,0.0502060428261757,0.59618866443634,0.802758991718292,0.0117065347731113,0.508355557918549,0.858610689640045,0.0660479143261909,0.631899356842041,0.769888997077942,0.0892974659800529,0.59618866443634,0.802758991718292,0.0117065347731113,0.537430226802826,0.842876613140106,-0.026979073882103,0.419248729944229,0.906760811805725,0.0448921993374825,0.508355557918549,0.858610689640045,0.0660479143261909,0.508355557918549,0.858610689640045,0.0660479143261909,0.419248729944229,0.906760811805725,0.0448921993374825,0.388052999973297,0.919572174549103,0.0616604872047901,0.439705938100815,0.896298825740814,0.0575079284608364,0.631899356842041,0.769888997077942,0.0892974659800529,0.508355557918549,0.858610689640045,0.0660479143261909,0.439705938100815,0.896298825740814,0.0575079284608364,0.584385097026825,0.809152603149414,0.0613689199090004,0.400216519832611,0.909813821315765,0.109843462705612,0.531966328620911,0.842715263366699,0.082721471786499,0.68889582157135,0.720924198627472,-0.0754383578896523,0.661108434200287,0.746832072734833,-0.0719538405537605,0.531966328620911,0.842715263366699,0.082721471786499,0.725338160991669,0.688391089439392,0.0015043233288452,0.826967298984528,0.545665800571442,-0.13554984331131,0.68889582157135,0.720924198627472,-0.0754383578896523,0.68889582157135,0.720924198627472,-0.0754383578896523,0.826967298984528,0.545665800571442,-0.13554984331131,0.930621147155762,0.237400963902473,-0.278540879487991,0.902696073055267,0.338164865970612,-0.266053199768066,0.661108434200287,0.746832072734833,-0.0719538405537605,0.68889582157135,0.720924198627472,-0.0754383578896523,0.902696073055267,0.338164865970612,-0.266053199768066,0.90697705745697,0.336921870708466,-0.252737581729889, +0.485422134399414,0.856925666332245,-0.173331663012505,0.697756588459015,0.674263179302216,-0.241878002882004,0.760233938694,0.559834182262421,-0.329590559005737,0.690989315509796,0.646738827228546,-0.322897374629974,0.697756588459015,0.674263179302216,-0.241878002882004,0.893243849277496,0.298696398735046,-0.335999757051468,0.88551664352417,0.269461572170258,-0.378484547138214,0.760233938694,0.559834182262421,-0.329590559005737,0.760233938694,0.559834182262421,-0.329590559005737,0.88551664352417,0.269461572170258,-0.378484547138214,0.886994004249573,0.163238406181335,-0.431966125965118,0.862371385097504,0.269467294216156,-0.428605705499649,0.690989315509796,0.646738827228546,-0.322897374629974,0.760233938694,0.559834182262421,-0.329590559005737,0.862371385097504,0.269467294216156,-0.428605705499649,0.853890836238861,0.319215506315231,-0.411061942577362,0.466593980789185,0.848514020442963,-0.249627456068993,0.686749696731567,0.659487128257751,-0.30569863319397,0.759795725345612,0.538528919219971,-0.364276021718979,0.674863219261169,0.646935701370239,-0.355012387037277,0.686749696731567,0.659487128257751,-0.30569863319397,0.851244390010834,0.220117658376694,-0.476373016834259,0.882848680019379,0.183537691831589,-0.432310283184052,0.759795725345612,0.538528919219971,-0.364276021718979,0.759795725345612,0.538528919219971,-0.364276021718979,0.882848680019379,0.183537691831589,-0.432310283184052,0.889630854129791,0.0999864265322685,-0.44560033082962,0.869417071342468,0.207068249583244,-0.448594093322754,0.674863219261169,0.646935701370239,-0.355012387037277,0.759795725345612,0.538528919219971,-0.364276021718979,0.869417071342468,0.207068249583244,-0.448594093322754,0.867344975471497,0.2725790143013,-0.416429340839386,0.373198360204697,0.847398638725281,-0.377675265073776,0.526915609836578,0.755902051925659,-0.388551205396652,0.561478316783905,0.701553881168365,-0.438821583986282,0.485332608222961,0.750634133815765,-0.448330998420715,0.526915609836578,0.755902051925659,-0.388551205396652,0.739257872104645,0.406338691711426,-0.537016332149506, +0.750775992870331,0.394683867692947,-0.529679238796234,0.561478316783905,0.701553881168365,-0.438821583986282,0.561478316783905,0.701553881168365,-0.438821583986282,0.750775992870331,0.394683867692947,-0.529679238796234,0.748709142208099,0.238583773374557,-0.61847585439682,0.686774015426636,0.378295749425888,-0.620671927928925,0.485332608222961,0.750634133815765,-0.448330998420715,0.561478316783905,0.701553881168365,-0.438821583986282,0.686774015426636,0.378295749425888,-0.620671927928925,0.656255125999451,0.448537945747375,-0.60674774646759,0.279201298952103,0.82872998714447,-0.485028952360153,0.35271617770195,0.785173654556274,-0.509012281894684,0.360770851373672,0.750374257564545,-0.553879916667938,0.313253462314606,0.766022562980652,-0.561321318149567,0.35271617770195,0.785173654556274,-0.509012281894684,0.49078169465065,0.501620471477509,-0.712397575378418,0.511013150215149,0.496467232704163,-0.701702117919922,0.360770851373672,0.750374257564545,-0.553879916667938,0.360770851373672,0.750374257564545,-0.553879916667938,0.511013150215149,0.496467232704163,-0.701702117919922,0.518530607223511,0.333309799432755,-0.787420272827148,0.446554064750671,0.475454419851303,-0.757979273796082,0.313253462314606,0.766022562980652,-0.561321318149567,0.360770851373672,0.750374257564545,-0.553879916667938,0.446554064750671,0.475454419851303,-0.757979273796082,0.402486979961395,0.522201836109161,-0.751870632171631,0.230574190616608,0.802635431289673,-0.550101757049561,0.254233181476593,0.781696736812592,-0.56948721408844,0.248894140124321,0.741914570331573,-0.622586905956268,0.226110190153122,0.755864500999451,-0.614445269107819,0.254233181476593,0.781696736812592,-0.56948721408844,0.331205278635025,0.555228888988495,-0.762904942035675,0.332315802574158,0.540797293186188,-0.772725343704224,0.248894140124321,0.741914570331573,-0.622586905956268,0.248894140124321,0.741914570331573,-0.622586905956268,0.332315802574158,0.540797293186188,-0.772725343704224,0.330113887786865,0.373487502336502,-0.866909325122833,0.281423538923264,0.504726886749268,-0.816119790077209, +0.226110190153122,0.755864500999451,-0.614445269107819,0.248894140124321,0.741914570331573,-0.622586905956268,0.281423538923264,0.504726886749268,-0.816119790077209,0.254412084817886,0.533420383930206,-0.806682765483856,0.584385097026825,0.809152603149414,0.0613689199090004,0.439705938100815,0.896298825740814,0.0575079284608364,0.35967755317688,0.930222868919373,0.0729219540953636,0.519965469837189,0.854100704193115,0.0121630895882845,0.439705938100815,0.896298825740814,0.0575079284608364,0.388052999973297,0.919572174549103,0.0616604872047901,0.198442324995995,0.965159118175507,0.170553311705589,0.35967755317688,0.930222868919373,0.0729219540953636,0.422221720218658,0.90238630771637,0.0861846655607224,0.198442324995995,0.965159118175507,0.170553311705589,0.388052999973297,0.919572174549103,0.0616604872047901,0.419248729944229,0.906760811805725,0.0448921993374825,0.422221720218658,0.90238630771637,0.0861846655607224,0.419248729944229,0.906760811805725,0.0448921993374825,0.537430226802826,0.842876613140106,-0.026979073882103,0.603810250759125,0.796887397766113,0.0195919945836067,0.725338160991669,0.688391089439392,0.0015043233288452,0.531966328620911,0.842715263366699,0.082721471786499,0.472208082675934,0.874218463897705,0.112967371940613,0.670208394527435,0.740215718746185,0.0538638904690742,0.531966328620911,0.842715263366699,0.082721471786499,0.400216519832611,0.909813821315765,0.109843462705612,0.30128887295723,0.942227482795715,0.146398097276688,0.472208082675934,0.874218463897705,0.112967371940613,0.472208082675934,0.874218463897705,0.112967371940613,0.30128887295723,0.942227482795715,0.146398097276688,0.198442324995995,0.965159118175507,0.170553311705589,0.422221720218658,0.90238630771637,0.0861846655607224,0.670208394527435,0.740215718746185,0.0538638904690742,0.472208082675934,0.874218463897705,0.112967371940613,0.422221720218658,0.90238630771637,0.0861846655607224,0.603810250759125,0.796887397766113,0.0195919945836067,0.466133117675781,0.879672467708588,-0.0943194255232811,0.441829472780228,0.897083759307861,0.00524313747882843, +0.673779904842377,0.730862021446228,-0.108909793198109,0.701139748096466,0.688596963882446,-0.185033157467842,0.441829472780228,0.897083759307861,0.00524313747882843,0.400216519832611,0.909813821315765,0.109843462705612,0.661108434200287,0.746832072734833,-0.0719538405537605,0.673779904842377,0.730862021446228,-0.108909793198109,0.673779904842377,0.730862021446228,-0.108909793198109,0.661108434200287,0.746832072734833,-0.0719538405537605,0.90697705745697,0.336921870708466,-0.252737581729889,0.919898808002472,0.297293335199356,-0.255739659070969,0.701139748096466,0.688596963882446,-0.185033157467842,0.673779904842377,0.730862021446228,-0.108909793198109,0.919898808002472,0.297293335199356,-0.255739659070969,0.920147359371185,0.269906520843506,-0.283688962459564,0.893243849277496,0.298696398735046,-0.335999757051468,0.697756588459015,0.674263179302216,-0.241878002882004,0.695905327796936,0.684414744377136,-0.217467725276947,0.907508671283722,0.28566175699234,-0.307937324047089,0.697756588459015,0.674263179302216,-0.241878002882004,0.485422134399414,0.856925666332245,-0.173331663012505,0.468759685754776,0.874259650707245,-0.126231506466866,0.695905327796936,0.684414744377136,-0.217467725276947,0.695905327796936,0.684414744377136,-0.217467725276947,0.468759685754776,0.874259650707245,-0.126231506466866,0.466133117675781,0.879672467708588,-0.0943194255232811,0.701139748096466,0.688596963882446,-0.185033157467842,0.907508671283722,0.28566175699234,-0.307937324047089,0.695905327796936,0.684414744377136,-0.217467725276947,0.701139748096466,0.688596963882446,-0.185033157467842,0.920147359371185,0.269906520843506,-0.283688962459564,0.462169378995895,0.857039988040924,-0.227776110172272,0.459614187479019,0.863845646381378,-0.206217125058174,0.667514383792877,0.670128285884857,-0.324580758810043,0.672114908695221,0.664877772331238,-0.325881898403168,0.459614187479019,0.863845646381378,-0.206217125058174,0.485422134399414,0.856925666332245,-0.173331663012505,0.690989315509796,0.646738827228546,-0.322897374629974,0.667514383792877,0.670128285884857,-0.324580758810043, +0.667514383792877,0.670128285884857,-0.324580758810043,0.690989315509796,0.646738827228546,-0.322897374629974,0.853890836238861,0.319215506315231,-0.411061942577362,0.847729325294495,0.33799347281456,-0.408797353506088,0.672114908695221,0.664877772331238,-0.325881898403168,0.667514383792877,0.670128285884857,-0.324580758810043,0.847729325294495,0.33799347281456,-0.408797353506088,0.82975310087204,0.32433557510376,-0.454220652580261,0.851244390010834,0.220117658376694,-0.476373016834259,0.686749696731567,0.659487128257751,-0.30569863319397,0.672002077102661,0.669284045696259,-0.316973149776459,0.821320593357086,0.276728183031082,-0.498852610588074,0.686749696731567,0.659487128257751,-0.30569863319397,0.466593980789185,0.848514020442963,-0.249627456068993,0.453963726758957,0.862245619297028,-0.224609419703484,0.672002077102661,0.669284045696259,-0.316973149776459,0.672002077102661,0.669284045696259,-0.316973149776459,0.453963726758957,0.862245619297028,-0.224609419703484,0.462169378995895,0.857039988040924,-0.227776110172272,0.672114908695221,0.664877772331238,-0.325881898403168,0.821320593357086,0.276728183031082,-0.498852610588074,0.672002077102661,0.669284045696259,-0.316973149776459,0.672114908695221,0.664877772331238,-0.325881898403168,0.82975310087204,0.32433557510376,-0.454220652580261,0.412412017583847,0.853519916534424,-0.318465173244476,0.425431042909622,0.863421499729156,-0.271130442619324,0.621414244174957,0.6958829164505,-0.359988003969193,0.585652112960815,0.712855875492096,-0.385808438062668,0.425431042909622,0.863421499729156,-0.271130442619324,0.466593980789185,0.848514020442963,-0.249627456068993,0.674863219261169,0.646935701370239,-0.355012387037277,0.621414244174957,0.6958829164505,-0.359988003969193,0.621414244174957,0.6958829164505,-0.359988003969193,0.674863219261169,0.646935701370239,-0.355012387037277,0.867344975471497,0.2725790143013,-0.416429340839386,0.849435150623322,0.347480028867722,-0.397136718034744,0.585652112960815,0.712855875492096,-0.385808438062668,0.621414244174957,0.6958829164505,-0.359988003969193, +0.849435150623322,0.347480028867722,-0.397136718034744,0.792701959609985,0.400867879390717,-0.459269553422928,0.739257872104645,0.406338691711426,-0.537016332149506,0.526915609836578,0.755902051925659,-0.388551205396652,0.548983097076416,0.73019552230835,-0.406733363866806,0.739202260971069,0.412130922079086,-0.532661318778992,0.526915609836578,0.755902051925659,-0.388551205396652,0.373198360204697,0.847398638725281,-0.377675265073776,0.391010999679565,0.849661409854889,-0.35381618142128,0.548983097076416,0.73019552230835,-0.406733363866806,0.548983097076416,0.73019552230835,-0.406733363866806,0.391010999679565,0.849661409854889,-0.35381618142128,0.412412017583847,0.853519916534424,-0.318465173244476,0.585652112960815,0.712855875492096,-0.385808438062668,0.739202260971069,0.412130922079086,-0.532661318778992,0.548983097076416,0.73019552230835,-0.406733363866806,0.585652112960815,0.712855875492096,-0.385808438062668,0.792701959609985,0.400867879390717,-0.459269553422928,0.313833922147751,0.838987350463867,-0.444531738758087,0.334130376577377,0.851143836975098,-0.404859244823456,0.43641385436058,0.76430344581604,-0.474745333194733,0.401204943656921,0.759196937084198,-0.512498438358307,0.334130376577377,0.851143836975098,-0.404859244823456,0.373198360204697,0.847398638725281,-0.377675265073776,0.485332608222961,0.750634133815765,-0.448330998420715,0.43641385436058,0.76430344581604,-0.474745333194733,0.43641385436058,0.76430344581604,-0.474745333194733,0.485332608222961,0.750634133815765,-0.448330998420715,0.656255125999451,0.448537945747375,-0.60674774646759,0.619479656219482,0.509791851043701,-0.596956551074982,0.401204943656921,0.759196937084198,-0.512498438358307,0.43641385436058,0.76430344581604,-0.474745333194733,0.619479656219482,0.509791851043701,-0.596956551074982,0.545172929763794,0.533064484596252,-0.647015333175659,0.49078169465065,0.501620471477509,-0.712397575378418,0.35271617770195,0.785173654556274,-0.509012281894684,0.37129145860672,0.761427223682404,-0.531386196613312,0.484879583120346,0.517203330993652,-0.705260574817657, +0.35271617770195,0.785173654556274,-0.509012281894684,0.279201298952103,0.82872998714447,-0.485028952360153,0.297653019428253,0.831040143966675,-0.469867169857025,0.37129145860672,0.761427223682404,-0.531386196613312,0.37129145860672,0.761427223682404,-0.531386196613312,0.297653019428253,0.831040143966675,-0.469867169857025,0.313833922147751,0.838987350463867,-0.444531738758087,0.401204943656921,0.759196937084198,-0.512498438358307,0.484879583120346,0.517203330993652,-0.705260574817657,0.37129145860672,0.761427223682404,-0.531386196613312,0.401204943656921,0.759196937084198,-0.512498438358307,0.545172929763794,0.533064484596252,-0.647015333175659,0.24184961616993,0.806344985961914,-0.539737343788147,0.256998717784882,0.818753182888031,-0.513414859771729,0.292153120040894,0.757225751876831,-0.584170877933502,0.279430031776428,0.75042325258255,-0.59898567199707,0.256998717784882,0.818753182888031,-0.513414859771729,0.279201298952103,0.82872998714447,-0.485028952360153,0.313253462314606,0.766022562980652,-0.561321318149567,0.292153120040894,0.757225751876831,-0.584170877933502,0.292153120040894,0.757225751876831,-0.584170877933502,0.313253462314606,0.766022562980652,-0.561321318149567,0.402486979961395,0.522201836109161,-0.751870632171631,0.378176629543304,0.528110861778259,-0.760316669940948,0.279430031776428,0.75042325258255,-0.59898567199707,0.292153120040894,0.757225751876831,-0.584170877933502,0.378176629543304,0.528110861778259,-0.760316669940948,0.355381429195404,0.524076342582703,-0.773981869220734,0.331205278635025,0.555228888988495,-0.762904942035675,0.254233181476593,0.781696736812592,-0.56948721408844,0.265347182750702,0.7644984126091,-0.587480247020721,0.335152059793472,0.538876950740814,-0.772841930389404,0.254233181476593,0.781696736812592,-0.56948721408844,0.230574190616608,0.802635431289673,-0.550101757049561,0.234481707215309,0.799277126789093,-0.553330361843109,0.265347182750702,0.7644984126091,-0.587480247020721,0.265347182750702,0.7644984126091,-0.587480247020721,0.234481707215309,0.799277126789093,-0.553330361843109, +0.24184961616993,0.806344985961914,-0.539737343788147,0.279430031776428,0.75042325258255,-0.59898567199707,0.335152059793472,0.538876950740814,-0.772841930389404,0.265347182750702,0.7644984126091,-0.587480247020721,0.279430031776428,0.75042325258255,-0.59898567199707,0.355381429195404,0.524076342582703,-0.773981869220734,0.24184961616993,0.806344985961914,-0.539737343788147,0.234481707215309,0.799277126789093,-0.553330361843109,0.231510609388351,0.798652470111847,-0.555479228496552,0.234360799193382,0.808445155620575,-0.539899587631226,0.234481707215309,0.799277126789093,-0.553330361843109,0.230574190616608,0.802635431289673,-0.550101757049561,0.227301627397537,0.797038078308105,-0.559521317481995,0.231510609388351,0.798652470111847,-0.555479228496552,0.231510609388351,0.798652470111847,-0.555479228496552,0.227301627397537,0.797038078308105,-0.559521317481995,0.176429450511932,0.811212837696075,-0.557500243186951,0.183887124061584,0.826946556568146,-0.53136157989502,0.234360799193382,0.808445155620575,-0.539899587631226,0.231510609388351,0.798652470111847,-0.555479228496552,0.183887124061584,0.826946556568146,-0.53136157989502,0.189263314008713,0.839074850082397,-0.510031998157501,7.32525177227217e-06,0.889752805233002,-0.456442594528198,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,0.0934414938092232,0.887089192867279,-0.452041357755661,0.087555430829525,0.878067910671234,-0.470457851886749,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,1.3388275874604e-05,0.905516862869263,-0.424310177564621,0.0996449142694473,0.894337713718414,-0.436154842376709,0.0934414938092232,0.887089192867279,-0.452041357755661,0.0934414938092232,0.887089192867279,-0.452041357755661,0.0996449142694473,0.894337713718414,-0.436154842376709,0.202573224902153,0.861268758773804,-0.466025948524475,0.194773226976395,0.850903809070587,-0.487879246473312,0.087555430829525,0.878067910671234,-0.470457851886749,0.0934414938092232,0.887089192867279,-0.452041357755661,0.194773226976395,0.850903809070587,-0.487879246473312,0.189263314008713,0.839074850082397,-0.510031998157501, +1.3388275874604e-05,0.905516862869263,-0.424310177564621,-1.13681444418035e-05,0.910587549209595,-0.4133161008358,0.105113156139851,0.899474859237671,-0.424141615629196,0.0996449142694473,0.894337713718414,-0.436154842376709,-1.13681444418035e-05,0.910587549209595,-0.4133161008358,4.54438037422733e-07,0.914030373096466,-0.405645698308945,0.110359065234661,0.9026979804039,-0.415881305932999,0.105113156139851,0.899474859237671,-0.424141615629196,0.105113156139851,0.899474859237671,-0.424141615629196,0.110359065234661,0.9026979804039,-0.415881305932999,0.220452040433884,0.873438954353333,-0.434171885251999,0.211023345589638,0.868739426136017,-0.44806370139122,0.0996449142694473,0.894337713718414,-0.436154842376709,0.105113156139851,0.899474859237671,-0.424141615629196,0.211023345589638,0.868739426136017,-0.44806370139122,0.202573224902153,0.861268758773804,-0.466025948524475,4.54438037422733e-07,0.914030373096466,-0.405645698308945,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,0.115020632743835,0.904199481010437,-0.411331236362457,0.110359065234661,0.9026979804039,-0.415881305932999,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,1.50015866893227e-05,0.915112435817719,-0.403198808431625,0.118767149746418,0.903509318828583,-0.41178297996521,0.115020632743835,0.904199481010437,-0.411331236362457,0.115020632743835,0.904199481010437,-0.411331236362457,0.118767149746418,0.903509318828583,-0.41178297996521,0.241002172231674,0.876779854297638,-0.41614305973053,0.230519369244576,0.87637585401535,-0.422878295183182,0.110359065234661,0.9026979804039,-0.415881305932999,0.115020632743835,0.904199481010437,-0.411331236362457,0.230519369244576,0.87637585401535,-0.422878295183182,0.220452040433884,0.873438954353333,-0.434171885251999,1.50015866893227e-05,0.915112435817719,-0.403198808431625,-3.50793754932965e-07,0.927993059158325,-0.372597485780716,0.122044138610363,0.91583776473999,-0.382552415132523,0.118767149746418,0.903509318828583,-0.41178297996521,-3.50793754932965e-07,0.927993059158325,-0.372597485780716, +1.05083618109347e-05,0.954916179180145,-0.296875447034836,0.122964322566986,0.942988991737366,-0.30927586555481,0.122044138610363,0.91583776473999,-0.382552415132523,0.122044138610363,0.91583776473999,-0.382552415132523,0.122964322566986,0.942988991737366,-0.30927586555481,0.262972354888916,0.908594965934753,-0.324500799179077,0.252998828887939,0.886166572570801,-0.388201594352722,0.118767149746418,0.903509318828583,-0.41178297996521,0.122044138610363,0.91583776473999,-0.382552415132523,0.252998828887939,0.886166572570801,-0.388201594352722,0.241002172231674,0.876779854297638,-0.41614305973053,1.05083618109347e-05,0.954916179180145,-0.296875447034836,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,0.120133072137833,0.963482260704041,-0.239311322569847,0.122964322566986,0.942988991737366,-0.30927586555481,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,6.77310254104668e-06,0.98437488079071,-0.176085412502289,0.115609802305698,0.974830448627472,-0.190630197525024,0.120133072137833,0.963482260704041,-0.239311322569847,0.120133072137833,0.963482260704041,-0.239311322569847,0.115609802305698,0.974830448627472,-0.190630197525024,0.268075793981552,0.938277304172516,-0.218565970659256,0.267176300287247,0.927280128002167,-0.262237429618835,0.122964322566986,0.942988991737366,-0.30927586555481,0.120133072137833,0.963482260704041,-0.239311322569847,0.267176300287247,0.927280128002167,-0.262237429618835,0.262972354888916,0.908594965934753,-0.324500799179077,6.77310254104668e-06,0.98437488079071,-0.176085412502289,9.92930395682379e-08,0.989445388317108,-0.144906148314476,0.111164353787899,0.980962216854095,-0.159234330058098,0.115609802305698,0.974830448627472,-0.190630197525024,9.92930395682379e-08,0.989445388317108,-0.144906148314476,2.06756514131712e-08,0.990903377532959,-0.134574607014656,0.107345096766949,0.983264446258545,-0.147200718522072,0.111164353787899,0.980962216854095,-0.159234330058098,0.111164353787899,0.980962216854095,-0.159234330058098,0.107345096766949,0.983264446258545,-0.147200718522072, +0.265947252511978,0.947537899017334,-0.177324488759041,0.267510741949081,0.944651663303375,-0.189924359321594,0.115609802305698,0.974830448627472,-0.190630197525024,0.111164353787899,0.980962216854095,-0.159234330058098,0.267510741949081,0.944651663303375,-0.189924359321594,0.268075793981552,0.938277304172516,-0.218565970659256,2.06756514131712e-08,0.990903377532959,-0.134574607014656,1.95083682541508e-09,0.994212210178375,-0.107433840632439,0.104651518166065,0.987427949905396,-0.118466041982174,0.107345096766949,0.983264446258545,-0.147200718522072,1.95083682541508e-09,0.994212210178375,-0.107433840632439,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,0.103175163269043,0.993301212787628,-0.052034717053175,0.104651518166065,0.987427949905396,-0.118466041982174,0.104651518166065,0.987427949905396,-0.118466041982174,0.103175163269043,0.993301212787628,-0.052034717053175,0.262632310390472,0.961123704910278,-0.0852374881505966,0.264466553926468,0.952880501747131,-0.148580998182297,0.107345096766949,0.983264446258545,-0.147200718522072,0.104651518166065,0.987427949905396,-0.118466041982174,0.264466553926468,0.952880501747131,-0.148580998182297,0.265947252511978,0.947537899017334,-0.177324488759041,0.239230915904045,0.970812439918518,0.0170813668519258,0.086555078625679,0.993677139282227,0.0715123042464256,0.065864622592926,0.979993760585785,0.187813878059387,0.22064197063446,0.969886660575867,0.103136040270329,0.086555078625679,0.993677139282227,0.0715123042464256,2.26350630327943e-06,0.99591463804245,0.0902996808290482,2.28790213441243e-06,0.976968586444855,0.21338301897049,0.065864622592926,0.979993760585785,0.187813878059387,0.065864622592926,0.979993760585785,0.187813878059387,2.28790213441243e-06,0.976968586444855,0.21338301897049,3.1286046578316e-05,0.933347523212433,0.35897421836853,0.108371868729591,0.959608852863312,0.259627461433411,0.22064197063446,0.969886660575867,0.103136040270329,0.065864622592926,0.979993760585785,0.187813878059387,0.108371868729591,0.959608852863312,0.259627461433411,0.222897455096245,0.956485331058502,0.188288345932961, +0.161216169595718,-0.411513656377792,0.897031664848328,0.0692463666200638,-0.40363010764122,0.912298023700714,0.109529964625835,-0.463935971260071,0.879071414470673,0.17542377114296,-0.492901206016541,0.852217674255371,0.161216169595718,-0.411513656377792,0.897031664848328,0.17542377114296,-0.492901206016541,0.852217674255371,0.257376343011856,-0.520962178707123,0.813852488994598,0.272015511989594,-0.415265917778015,0.868079364299774,0.56542831659317,-0.511293947696686,0.647201299667358,0.23664890229702,-0.448689639568329,0.86178594827652,0.282550185918808,-0.625282943248749,0.727452158927917,0.517384827136993,-0.659253060817719,0.545617580413818,0.56542831659317,-0.511293947696686,0.647201299667358,0.517384827136993,-0.659253060817719,0.545617580413818,0.651794612407684,-0.644794881343842,0.399253517389297,0.731242716312408,-0.51183021068573,0.450903505086899,0.792877972126007,-0.21465927362442,0.570320785045624,0.581863045692444,-0.243657320737839,0.77592945098877,0.568074822425842,-0.381185531616211,0.729375541210175,0.725219190120697,-0.381685614585876,0.573038578033447,0.792877972126007,-0.21465927362442,0.570320785045624,0.725219190120697,-0.381685614585876,0.573038578033447,0.801258563995361,-0.360501676797867,0.477517813444138,0.867118418216705,-0.171389430761337,0.467687219381332,0.778084576129913,-0.38656085729599,0.495131373405457,0.805659294128418,-0.350429505109787,0.477611005306244,0.860090136528015,-0.273277372121811,0.430771857500076,0.794207036495209,-0.3851597905159,0.469986349344254,-0.0601249672472477,0.0759568735957146,0.995296716690063,-0.0524753332138062,-0.190004914999008,0.98037976026535,0.142577975988388,-0.18547697365284,0.972249865531921,0.131848931312561,0.144873842597008,0.980626046657562,-0.0524753332138062,-0.190004914999008,0.98037976026535,-0.0078623266890645,-0.305302023887634,0.952223122119904,0.176588729023933,-0.327380537986755,0.928244829177856,0.142577975988388,-0.18547697365284,0.972249865531921,0.142577975988388,-0.18547697365284,0.972249865531921,0.176588729023933,-0.327380537986755,0.928244829177856, +0.373119860887527,-0.338860630989075,0.863686800003052,0.361900568008423,-0.171418622136116,0.916320621967316,0.131848931312561,0.144873842597008,0.980626046657562,0.142577975988388,-0.18547697365284,0.972249865531921,0.361900568008423,-0.171418622136116,0.916320621967316,0.338340848684311,0.210584998130798,0.917158365249634,0.484088093042374,-0.233318135142326,0.843339383602142,0.503244817256927,-0.229387789964676,0.833142101764679,0.53625351190567,-0.0949005037546158,0.838704824447632,0.45816645026207,-0.046262338757515,0.887661695480347,0.484088093042374,-0.233318135142326,0.843339383602142,0.45816645026207,-0.046262338757515,0.887661695480347,0.510328412055969,-0.0449175722897053,0.858805775642395,0.46940404176712,-0.239579230546951,0.849859774112701,0.297978579998016,-0.287405878305435,0.910278260707855,0.317577600479126,-0.284227937459946,0.904631972312927,0.316253304481506,-0.270987331867218,0.9091477394104,0.299889504909515,-0.273949265480042,0.913793206214905,0.317577600479126,-0.284227937459946,0.904631972312927,0.328150719404221,-0.282415062189102,0.901420533657074,0.326374977827072,-0.270279616117477,0.905774891376495,0.316253304481506,-0.270987331867218,0.9091477394104,0.548696398735046,0.668518900871277,0.502010822296143,0.808956742286682,-0.0573622770607471,0.585062980651855,0.992170214653015,0.023433031514287,0.122675113379955,0.624202966690063,0.76788067817688,0.143978625535965,0.808956742286682,-0.0573622770607471,0.585062980651855,0.746551871299744,-0.328548848628998,0.578546464443207,0.948021054267883,-0.254489004611969,0.191027164459229,0.992170214653015,0.023433031514287,0.122675113379955,0.992170214653015,0.023433031514287,0.122675113379955,0.948021054267883,-0.254489004611969,0.191027164459229,0.968433320522308,-0.201979890465736,0.146085485816002,0.993971467018127,0.0660507827997208,0.0875101536512375,0.624202966690063,0.76788067817688,0.143978625535965,0.992170214653015,0.023433031514287,0.122675113379955,0.993971467018127,0.0660507827997208,0.0875101536512375,0.601027071475983,0.790183782577515,0.119900159537792, +0.830573439598083,-0.143151998519897,0.538196206092834,0.820954740047455,-0.140668287873268,0.553394675254822,0.818676471710205,-0.0259896032512188,0.573666512966156,0.824237048625946,-0.0209046006202698,0.565859079360962,0.830573439598083,-0.143151998519897,0.538196206092834,0.824237048625946,-0.0209046006202698,0.565859079360962,0.846161961555481,-0.03146817907691,0.531995892524719,0.82776153087616,-0.14987875521183,0.540691316127777,0.795167982578278,-0.160252347588539,0.584830820560455,0.851172387599945,-0.136488497257233,0.506829798221588,0.842010140419006,-0.127670571208,0.524136602878571,0.784613907337189,-0.148418456315994,0.601957619190216,0.851172387599945,-0.136488497257233,0.506829798221588,0.873401761054993,-0.126450717449188,0.470297425985336,0.869021952152252,-0.121415354311466,0.479644626379013,0.842010140419006,-0.127670571208,0.524136602878571,0.394051760435104,0.804004788398743,0.445308446884155,0.726607739925385,0.324426382780075,0.605630815029144,0.864055693149567,0.357233077287674,0.354672223329544,0.437616169452667,0.872551083564758,0.217133089900017,0.726607739925385,0.324426382780075,0.605630815029144,0.816722750663757,0.0452906414866447,0.575250089168549,0.942134022712708,0.0402702987194061,0.332808822393417,0.864055693149567,0.357233077287674,0.354672223329544,0.864055693149567,0.357233077287674,0.354672223329544,0.942134022712708,0.0402702987194061,0.332808822393417,0.933599233627319,0.0175865385681391,0.357887089252472,0.856952428817749,0.343463450670242,0.384272277355194,0.437616169452667,0.872551083564758,0.217133089900017,0.864055693149567,0.357233077287674,0.354672223329544,0.856952428817749,0.343463450670242,0.384272277355194,0.398877888917923,0.881957292556763,0.251093447208405,0.944757699966431,-0.0427818447351456,0.32496565580368,0.932468891143799,-0.0516576319932938,0.357537627220154,0.87207442522049,0.226961046457291,0.43356055021286,0.874410927295685,0.288264513015747,0.39026814699173,0.944757699966431,-0.0427818447351456,0.32496565580368,0.874410927295685,0.288264513015747,0.39026814699173, +0.890287518501282,0.311503052711487,0.33219587802887,0.940891146659851,-0.0501523986458778,0.33497542142868,0.832961440086365,-0.167933389544487,0.52723217010498,0.840416014194489,-0.164809569716454,0.51627379655838,0.839224100112915,-0.149475067853928,0.522838532924652,0.832327723503113,-0.150266587734222,0.533526301383972,0.840416014194489,-0.164809569716454,0.51627379655838,0.859917342662811,-0.152356714010239,0.487164944410324,0.859896123409271,-0.142539709806442,0.490164369344711,0.839224100112915,-0.149475067853928,0.522838532924652,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.948014378547668,-0.114206790924072,-0.297027975320816,0.948680698871613,0.0530499294400215,-0.311754167079926,0.998457312583923,0.0292231291532516,0.0472116097807884,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.998457312583923,0.0292231291532516,0.0472116097807884,0.995254218578339,0.0549554899334908,0.0803044810891151,0.985689699649811,-0.159650921821594,0.0541065037250519,0.963031113147736,-0.205645516514778,-0.174013987183571,0.936839520931244,-0.322951912879944,-0.134289890527725,0.998716592788696,0.000607570458669215,0.0506442487239838,0.997418582439423,0.00669842446222901,0.0714935287833214,0.963031113147736,-0.205645516514778,-0.174013987183571,0.997418582439423,0.00669842446222901,0.0714935287833214,0.996245980262756,0.0132977534085512,0.085540197789669,0.953685641288757,-0.109224699437618,-0.280273914337158,0.998301982879639,0.0185902323573828,0.0552037134766579,0.997261524200439,0.0188792794942856,0.0715057924389839,0.997716248035431,0.0194510370492935,0.0646827295422554,0.998378157615662,0.0214733984321356,0.0527236349880695,0.997261524200439,0.0188792794942856,0.0715057924389839,0.98707377910614,0.00784813892096281,0.160074472427368,0.991491615772247,0.00140663899946958,0.130163043737411,0.997716248035431,0.0194510370492935,0.0646827295422554,0.0943290740251541,0.0288522019982338,0.995122849941254,0.0843937322497368,-0.217295467853546,0.972450733184814,0.185343086719513,-0.194251209497452,0.963283181190491, +0.192267388105392,0.0386416390538216,0.980581521987915,0.0843937322497368,-0.217295467853546,0.972450733184814,0.0625188425183296,-0.333361506462097,0.940723896026611,0.166856989264488,-0.326760053634644,0.930261552333832,0.185343086719513,-0.194251209497452,0.963283181190491,0.185343086719513,-0.194251209497452,0.963283181190491,0.166856989264488,-0.326760053634644,0.930261552333832,0.287619531154633,-0.320103913545609,0.902667462825775,0.309647798538208,-0.164630636572838,0.936490893363953,0.192267388105392,0.0386416390538216,0.980581521987915,0.185343086719513,-0.194251209497452,0.963283181190491,0.309647798538208,-0.164630636572838,0.936490893363953,0.311008453369141,0.129438325762749,0.941551625728607,0.80627965927124,0.405445098876953,0.430728703737259,0.894742727279663,0.0488326624035835,0.443904131650925,0.986778080463409,0.160166338086128,0.0248146392405033,0.918852925300598,0.391142338514328,0.0521256364881992,0.894742727279663,0.0488326624035835,0.443904131650925,0.830479502677917,-0.194505542516708,0.521987855434418,0.992714047431946,-0.0376175232231617,0.114470943808556,0.986778080463409,0.160166338086128,0.0248146392405033,0.986778080463409,0.160166338086128,0.0248146392405033,0.992714047431946,-0.0376175232231617,0.114470943808556,0.574931979179382,-0.21452622115612,0.789576947689056,0.594833314418793,-0.0582898817956448,0.801732957363129,0.918852925300598,0.391142338514328,0.0521256364881992,0.986778080463409,0.160166338086128,0.0248146392405033,0.594833314418793,-0.0582898817956448,0.801732957363129,0.57364547252655,0.204739347100258,0.793103218078613,0.948952376842499,-0.199090868234634,0.244647070765495,0.763542711734772,-0.339976668357849,0.549015760421753,0.611014664173126,-0.523765981197357,0.593574166297913,0.806391000747681,-0.43461674451828,0.401050895452499,0.948952376842499,-0.199090868234634,0.244647070765495,0.806391000747681,-0.43461674451828,0.401050895452499,0.418492645025253,-0.417349457740784,0.806649446487427,0.490249872207642,-0.306862562894821,0.815775990486145,0.189795464277267,0.239581629633904,0.952144026756287, +0.20401531457901,-0.166772156953812,0.964657783508301,0.564927995204926,-0.187143445014954,0.803637862205505,0.500296115875244,0.364424914121628,0.785428762435913,0.20401531457901,-0.166772156953812,0.964657783508301,0.23160557448864,-0.341618031263351,0.910854637622833,0.579422473907471,-0.400906980037689,0.709607779979706,0.564927995204926,-0.187143445014954,0.803637862205505,0.564927995204926,-0.187143445014954,0.803637862205505,0.579422473907471,-0.400906980037689,0.709607779979706,0.76766049861908,-0.412512093782425,0.490439832210541,0.799408972263336,-0.193910956382751,0.568633437156677,0.500296115875244,0.364424914121628,0.785428762435913,0.564927995204926,-0.187143445014954,0.803637862205505,0.799408972263336,-0.193910956382751,0.568633437156677,0.702990412712097,0.419565856456757,0.574255168437958,0.87173056602478,0.45006275177002,-0.193725004792213,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.848927736282349,0.0427490770816803,-0.52677708864212,0.754838287830353,0.40166237950325,-0.518542528152466,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.954306364059448,-0.251068413257599,-0.162061840295792,0.882660627365112,-0.110119074583054,-0.456928849220276,0.848927736282349,0.0427490770816803,-0.52677708864212,0.848927736282349,0.0427490770816803,-0.52677708864212,0.882660627365112,-0.110119074583054,-0.456928849220276,0.780278146266937,-0.327104479074478,0.533074557781219,0.894276082515717,-0.097051627933979,0.436865478754044,0.754838287830353,0.40166237950325,-0.518542528152466,0.848927736282349,0.0427490770816803,-0.52677708864212,0.894276082515717,-0.097051627933979,0.436865478754044,0.785448968410492,0.584083378314972,0.204734981060028,0.903905987739563,-0.195524647831917,-0.380426108837128,0.93332827091217,-0.338810741901398,-0.118767276406288,0.860257208347321,-0.509540259838104,0.0180641487240791,0.904874742031097,-0.356668084859848,-0.232356280088425,0.903905987739563,-0.195524647831917,-0.380426108837128,0.904874742031097,-0.356668084859848,-0.232356280088425,0.728058815002441,-0.511314928531647,0.456604212522507, +0.831725597381592,-0.397647082805634,0.387439489364624,0.340618073940277,0.749954223632813,0.567052066326141,0.631407916545868,0.117286719381809,0.766529679298401,0.834928035736084,0.227998673915863,0.500910878181458,0.389368146657944,0.872968256473541,0.293800622224808,0.631407916545868,0.117286719381809,0.766529679298401,0.600039601325989,-0.140705794095993,0.787498772144318,0.829451382160187,-0.0813746005296707,0.552619576454163,0.834928035736084,0.227998673915863,0.500910878181458,0.834928035736084,0.227998673915863,0.500910878181458,0.829451382160187,-0.0813746005296707,0.552619576454163,0.897814869880676,-0.0211839824914932,0.439863324165344,0.86969381570816,0.300446540117264,0.391617625951767,0.389368146657944,0.872968256473541,0.293800622224808,0.834928035736084,0.227998673915863,0.500910878181458,0.86969381570816,0.300446540117264,0.391617625951767,0.355875700712204,0.906293213367462,0.228002443909645,0.460872143507004,0.886726438999176,0.0362347550690174,0.926688432693481,0.367865145206451,0.076966218650341,0.887593150138855,0.375568717718124,-0.266695559024811,0.474772721529007,0.848200619220734,-0.234832912683487,0.926688432693481,0.367865145206451,0.076966218650341,0.989045262336731,0.0934214890003204,0.114288978278637,0.95555716753006,0.137370273470879,-0.260844856500626,0.887593150138855,0.375568717718124,-0.266695559024811,0.887593150138855,0.375568717718124,-0.266695559024811,0.95555716753006,0.137370273470879,-0.260844856500626,0.829737067222595,0.108809530735016,0.547445714473724,0.752720415592194,0.38932791352272,0.530881941318512,0.474772721529007,0.848200619220734,-0.234832912683487,0.887593150138855,0.375568717718124,-0.266695559024811,0.752720415592194,0.38932791352272,0.530881941318512,0.35998409986496,0.867266118526459,0.343890994787216,0.975308120250702,-0.00194700108841062,-0.220840260386467,0.984977781772614,-0.0616224482655525,0.161311641335487,0.926871418952942,-0.302499800920486,0.222268790006638,0.95844966173172,-0.230193823575974,-0.168478921055794,0.975308120250702,-0.00194700108841062,-0.220840260386467, +0.95844966173172,-0.230193823575974,-0.168478921055794,0.885432124137878,-0.298503637313843,0.356238156557083,0.884318947792053,-0.054423701018095,0.463700622320175,0.833454966545105,-0.0589393526315689,0.549435198307037,0.82255631685257,-0.213350489735603,0.527145743370056,0.845588147640228,-0.197172567248344,0.496088355779648,0.854334950447083,-0.0434923134744167,0.517899930477142,0.452140301465988,0.806186378002167,0.381618410348892,0.824138283729553,0.277803391218185,0.493580013513565,0.911235272884369,0.403247743844986,0.0839127078652382,0.416480928659439,0.906339287757874,0.0713638886809349,0.824138283729553,0.277803391218185,0.493580013513565,0.854334950447083,-0.0434923134744167,0.517899930477142,0.993151307106018,0.0372834131121635,0.11072713881731,0.911235272884369,0.403247743844986,0.0839127078652382,0.911235272884369,0.403247743844986,0.0839127078652382,0.993151307106018,0.0372834131121635,0.11072713881731,0.995254218578339,0.0549554899334908,0.0803044810891151,0.899473369121552,0.420583963394165,0.118561275303364,0.416480928659439,0.906339287757874,0.0713638886809349,0.911235272884369,0.403247743844986,0.0839127078652382,0.899473369121552,0.420583963394165,0.118561275303364,0.370153248310089,0.92108142375946,0.120812572538853,0.974883675575256,-0.173518389463425,0.139618128538132,0.845588147640228,-0.197172567248344,0.496088355779648,0.794207036495209,-0.3851597905159,0.469986349344254,0.909832239151001,-0.380722135305405,0.165093958377838,0.974883675575256,-0.173518389463425,0.139618128538132,0.909832239151001,-0.380722135305405,0.165093958377838,0.929700791835785,-0.367127627134323,0.0295576956123114,0.985689699649811,-0.159650921821594,0.0541065037250519,0.803968787193298,0.384839653968811,0.453356921672821,0.882689833641052,-0.0387041978538036,0.468359529972076,0.996461987495422,0.0680782571434975,0.0492829121649265,0.887653052806854,0.459179997444153,0.0350099876523018,0.882689833641052,-0.0387041978538036,0.468359529972076,0.850554823875427,-0.263379454612732,0.455178827047348,0.987858235836029,-0.144031837582588,0.0582313798367977, +0.996461987495422,0.0680782571434975,0.0492829121649265,0.996461987495422,0.0680782571434975,0.0492829121649265,0.987858235836029,-0.144031837582588,0.0582313798367977,0.202647313475609,-0.298515766859055,0.932642757892609,0.231135651469231,-0.167288109660149,0.958431541919708,0.887653052806854,0.459179997444153,0.0350099876523018,0.996461987495422,0.0680782571434975,0.0492829121649265,0.231135651469231,-0.167288109660149,0.958431541919708,0.254012256860733,0.141789615154266,0.956751525402069,0.968820154666901,-0.236736476421356,0.073096938431263,0.820302903652191,-0.366882711648941,0.43874853849411,0.730762779712677,-0.524796366691589,0.436548382043839,0.922787308692932,-0.3760906457901,0.083782009780407,0.968820154666901,-0.236736476421356,0.073096938431263,0.922787308692932,-0.3760906457901,0.083782009780407,0.373678237199783,-0.514060199260712,0.772079527378082,0.256940931081772,-0.374582171440125,0.890881359577179,0.225879862904549,-0.420474976301193,0.878737211227417,0.0555685870349407,-0.379517942667007,0.923514127731323,0.170638188719749,-0.490811139345169,0.854392826557159,0.310942828655243,-0.535853862762451,0.784968197345734,0.225879862904549,-0.420474976301193,0.878737211227417,0.310942828655243,-0.535853862762451,0.784968197345734,0.414962351322174,-0.562928795814514,0.714784801006317,0.388115346431732,-0.443261563777924,0.808013439178467,0.465925961732864,-0.255312830209732,0.847188532352448,0.485513418912888,-0.249269068241119,0.837938964366913,0.484088093042374,-0.233318135142326,0.843339383602142,0.46940404176712,-0.239579230546951,0.849859774112701,0.485513418912888,-0.249269068241119,0.837938964366913,0.502386271953583,-0.242851346731186,0.829838037490845,0.503244817256927,-0.229387789964676,0.833142101764679,0.484088093042374,-0.233318135142326,0.843339383602142,0.365534752607346,-0.275272130966187,0.889162361621857,0.397959321737289,-0.269826859235764,0.876824915409088,0.394312739372253,-0.257628470659256,0.882125318050385,0.362585753202438,-0.260607570409775,0.894771039485931,0.397959321737289,-0.269826859235764,0.876824915409088, +0.42473179101944,-0.265143990516663,0.865622103214264,0.427427232265472,-0.254156500101089,0.867588937282562,0.394312739372253,-0.257628470659256,0.882125318050385,0.394312739372253,-0.257628470659256,0.882125318050385,0.427427232265472,-0.254156500101089,0.867588937282562,0.465275973081589,-0.175810903310776,0.867530286312103,0.371367067098618,-0.194919556379318,0.907795608043671,0.394312739372253,-0.257628470659256,0.882125318050385,0.371367067098618,-0.194919556379318,0.907795608043671,0.3477483689785,-0.198941215872765,0.91623866558075,0.362585753202438,-0.260607570409775,0.894771039485931,0.179366111755371,-0.302895218133926,0.93599271774292,0.226872846484184,-0.298341304063797,0.927103579044342,0.228964373469353,-0.288229167461395,0.92978447675705,0.176005661487579,-0.290910065174103,0.940421879291534,0.179366111755371,-0.302895218133926,0.93599271774292,0.176005661487579,-0.290910065174103,0.940421879291534,0.177994892001152,-0.28425520658493,0.942081153392792,0.18642283976078,-0.302652627229691,0.934691250324249,-0.223743036389351,-0.286216169595718,0.931675553321838,5.24779306942946e-06,-0.263720482587814,0.964599132537842,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,0.00903936289250851,-0.0846651792526245,0.99636846780777,-0.223743036389351,-0.286216169595718,0.931675553321838,0.00903936289250851,-0.0846651792526245,0.99636846780777,0.0497473366558552,-0.134566709399223,0.989654958248138,-0.150470897555351,-0.31821072101593,0.936002492904663,0.316253304481506,-0.270987331867218,0.9091477394104,0.326374977827072,-0.270279616117477,0.905774891376495,0.30705800652504,-0.151796445250511,0.939506888389587,0.297187924385071,-0.123561941087246,0.946790277957916,0.316253304481506,-0.270987331867218,0.9091477394104,0.297187924385071,-0.123561941087246,0.946790277957916,0.333074867725372,-0.117942728102207,0.935494780540466,0.299889504909515,-0.273949265480042,0.913793206214905,0.693340718746185,0.714396417140961,-0.0944258198142052,0.989034950733185,0.108781777322292,-0.0998830646276474,0.94737309217453,0.121249817311764,-0.296281397342682, +0.699336349964142,0.640298962593079,-0.317719727754593,0.989034950733185,0.108781777322292,-0.0998830646276474,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.94737309217453,0.121249817311764,-0.296281397342682,0.94737309217453,0.121249817311764,-0.296281397342682,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.855779409408569,-0.144384682178497,0.496784299612045,0.89562314748764,0.0532087571918964,0.441619753837585,0.699336349964142,0.640298962593079,-0.317719727754593,0.94737309217453,0.121249817311764,-0.296281397342682,0.89562314748764,0.0532087571918964,0.441619753837585,0.628531694412231,0.683484315872192,0.371210426092148,0.968112766742706,-0.115815326571465,-0.222136452794075,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.936742961406708,-0.349865049123764,0.0103462673723698,0.950254321098328,-0.273420482873917,-0.149191319942474,0.968112766742706,-0.115815326571465,-0.222136452794075,0.950254321098328,-0.273420482873917,-0.149191319942474,0.739988207817078,-0.321660608053207,0.590721487998962,0.812639117240906,-0.217517703771591,0.540651261806488,0.882075786590576,-0.372996717691422,0.287777364253998,0.682247877120972,-0.429192274808884,0.59188836812973,0.619528710842133,-0.549421966075897,0.560642242431641,0.763568758964539,-0.496402263641357,0.412973940372467,0.882075786590576,-0.372996717691422,0.287777364253998,0.763568758964539,-0.496402263641357,0.412973940372467,0.845468997955322,-0.443901598453522,0.29687288403511,0.920679688453674,-0.318991452455521,0.224929749965668,0.827144920825958,-0.160243526101112,0.538658857345581,0.830558121204376,-0.157234117388725,0.534275770187378,0.830573439598083,-0.143151998519897,0.538196206092834,0.82776153087616,-0.14987875521183,0.540691316127777,0.830558121204376,-0.157234117388725,0.534275770187378,0.821164727210999,-0.159545183181763,0.547935903072357,0.820954740047455,-0.140668287873268,0.553394675254822,0.830573439598083,-0.143151998519897,0.538196206092834,0.912267506122589,-0.101045846939087,0.396935343742371, +0.915313959121704,-0.0999621599912643,0.390138536691666,0.918806731700897,-0.0938960313796997,0.383376836776733,0.910833716392517,-0.10109194368124,0.400202870368958,0.915313959121704,-0.0999621599912643,0.390138536691666,0.874054729938507,-0.130796268582344,0.467889577150345,0.888745725154877,-0.113963581621647,0.444008260965347,0.918806731700897,-0.0938960313796997,0.383376836776733,0.918806731700897,-0.0938960313796997,0.383376836776733,0.888745725154877,-0.113963581621647,0.444008260965347,0.892889142036438,-0.0994650796055794,0.439153373241425,0.919524729251862,-0.11089226603508,0.377063989639282,0.918806731700897,-0.0938960313796997,0.383376836776733,0.919524729251862,-0.11089226603508,0.377063989639282,0.92792272567749,-0.139109119772911,0.345843940973282,0.910833716392517,-0.10109194368124,0.400202870368958,0.597956001758575,-0.215268164873123,0.772080481052399,0.656582236289978,-0.200186222791672,0.727203726768494,0.647315204143524,-0.187909722328186,0.738696813583374,0.592859327793121,-0.200990110635757,0.77982097864151,0.656582236289978,-0.200186222791672,0.727203726768494,0.69054639339447,-0.193011850118637,0.697059512138367,0.686221122741699,-0.180150583386421,0.704731523990631,0.647315204143524,-0.187909722328186,0.738696813583374,0.647315204143524,-0.187909722328186,0.738696813583374,0.686221122741699,-0.180150583386421,0.704731523990631,0.658480286598206,-0.0952623412013054,0.746544599533081,0.581367552280426,-0.112330824136734,0.805849611759186,0.647315204143524,-0.187909722328186,0.738696813583374,0.581367552280426,-0.112330824136734,0.805849611759186,0.608900904655457,-0.122346572577953,0.783754348754883,0.592859327793121,-0.200990110635757,0.77982097864151,0.842010140419006,-0.127670571208,0.524136602878571,0.869021952152252,-0.121415354311466,0.479644626379013,0.84916090965271,-0.13398066163063,0.510856926441193,0.792554795742035,-0.0888480767607689,0.603293359279633,0.842010140419006,-0.127670571208,0.524136602878571,0.792554795742035,-0.0888480767607689,0.603293359279633,0.756192922592163,-0.0511609390377998,0.652345716953278, +0.784613907337189,-0.148418456315994,0.601957619190216,0.521250128746033,0.839334070682526,0.154326602816582,0.92270028591156,0.311021476984024,0.227793514728546,0.940844178199768,0.330499261617661,-0.0747155025601387,0.506224989891052,0.854502975940704,-0.116451598703861,0.92270028591156,0.311021476984024,0.227793514728546,0.982197225093842,0.000441860553110018,0.187852442264557,0.994294047355652,0.0164229031652212,-0.105402871966362,0.940844178199768,0.330499261617661,-0.0747155025601387,0.940844178199768,0.330499261617661,-0.0747155025601387,0.994294047355652,0.0164229031652212,-0.105402871966362,0.833454966545105,-0.0589393526315689,0.549435198307037,0.780824542045593,0.251494169235229,0.571894943714142,0.506224989891052,0.854502975940704,-0.116451598703861,0.940844178199768,0.330499261617661,-0.0747155025601387,0.780824542045593,0.251494169235229,0.571894943714142,0.384831994771957,0.823053538799286,0.417716801166534,0.973433196544647,-0.164063036441803,-0.159721702337265,0.976979911327362,-0.180214643478394,0.114162653684616,0.92187511920929,-0.38712340593338,0.016783095896244,0.889443576335907,-0.376923859119415,-0.258493065834045,0.973433196544647,-0.164063036441803,-0.159721702337265,0.889443576335907,-0.376923859119415,-0.258493065834045,0.778084576129913,-0.38656085729599,0.495131373405457,0.82255631685257,-0.213350489735603,0.527145743370056,0.936541557312012,-0.143504872918129,0.319837808609009,0.839543461799622,-0.133703395724297,0.526583671569824,0.808006346225739,-0.355535328388214,0.469808757305145,0.880135655403137,-0.343090146780014,0.328101515769958,0.936541557312012,-0.143504872918129,0.319837808609009,0.880135655403137,-0.343090146780014,0.328101515769958,0.89973783493042,-0.341453313827515,0.271810978651047,0.934256434440613,-0.153060808777809,0.322082817554474,0.941151320934296,-0.0821005627512932,0.327861964702606,0.944187104701996,-0.0763202235102654,0.320446223020554,0.944757699966431,-0.0427818447351456,0.32496565580368,0.940891146659851,-0.0501523986458778,0.33497542142868,0.944187104701996,-0.0763202235102654,0.320446223020554, +0.930086016654968,-0.0858319774270058,0.357173442840576,0.932468891143799,-0.0516576319932938,0.357537627220154,0.944757699966431,-0.0427818447351456,0.32496565580368,0.897346794605255,-0.123259223997593,0.423764050006866,0.909278512001038,-0.113426715135574,0.400433391332626,0.912991762161255,-0.0900691002607346,0.397911489009857,0.901916682720184,-0.10628217458725,0.418629169464111,0.909278512001038,-0.113426715135574,0.400433391332626,0.914742171764374,-0.108909480273724,0.389082819223404,0.920228779315948,-0.0795585364103317,0.383209377527237,0.912991762161255,-0.0900691002607346,0.397911489009857,0.912991762161255,-0.0900691002607346,0.397911489009857,0.920228779315948,-0.0795585364103317,0.383209377527237,0.943983197212219,0.128329202532768,0.304018646478653,0.940903544425964,0.070175789296627,0.331324458122253,0.912991762161255,-0.0900691002607346,0.397911489009857,0.940903544425964,0.070175789296627,0.331324458122253,0.956947982311249,0.0141221741214395,0.289915651082993,0.901916682720184,-0.10628217458725,0.418629169464111,0.827622175216675,-0.154372617602348,0.539639413356781,0.839892745018005,-0.151049211621284,0.521310210227966,0.839415848255157,-0.131922736763954,0.527235627174377,0.826237261295319,-0.133032575249672,0.547388553619385,0.839892745018005,-0.151049211621284,0.521310210227966,0.838854253292084,-0.156569272279739,0.521353602409363,0.839163839817047,-0.139088898897171,0.525793135166168,0.839415848255157,-0.131922736763954,0.527235627174377,0.839415848255157,-0.131922736763954,0.527235627174377,0.839163839817047,-0.139088898897171,0.525793135166168,0.827139914035797,-0.00921932328492403,0.561920404434204,0.83541464805603,-0.0103724785149097,0.549522280693054,0.839415848255157,-0.131922736763954,0.527235627174377,0.83541464805603,-0.0103724785149097,0.549522280693054,0.831015765666962,-0.0195813197642565,0.55590409040451,0.826237261295319,-0.133032575249672,0.547388553619385,0.839224100112915,-0.149475067853928,0.522838532924652,0.859896123409271,-0.142539709806442,0.490164369344711,0.895096182823181,-0.0639328360557556,0.441265851259232, +0.839722514152527,-0.0430349707603455,0.541307747364044,0.839224100112915,-0.149475067853928,0.522838532924652,0.839722514152527,-0.0430349707603455,0.541307747364044,0.818549573421478,-0.0268298108130693,0.573809087276459,0.832327723503113,-0.150266587734222,0.533526301383972,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.860810875892639,0.011091579683125,-0.508804142475128,0.843631565570831,0.103148303925991,-0.526921272277832,0.717204749584198,0.112385459244251,-0.687740445137024,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.717204749584198,0.112385459244251,-0.687740445137024,0.948680698871613,0.0530499294400215,-0.311754167079926,0.948014378547668,-0.114206790924072,-0.297027975320816,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.948014378547668,-0.114206790924072,-0.297027975320816,0.917859852313995,-0.320248544216156,-0.234465748071671,0.846224725246429,-0.220031172037125,-0.485273152589798,0.767834722995758,-0.0186118874698877,-0.640377521514893,0.846224725246429,-0.220031172037125,-0.485273152589798,0.83915901184082,-0.095047727227211,-0.535516738891602,0.860810875892639,0.011091579683125,-0.508804142475128,0.922730565071106,-0.380059778690338,-0.064209558069706,0.936839520931244,-0.322951912879944,-0.134289890527725,0.917859852313995,-0.320248544216156,-0.234465748071671,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.922730565071106,-0.380059778690338,-0.064209558069706,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.929700791835785,-0.367127627134323,0.0295576956123114,0.915882885456085,-0.400456249713898,0.0281630977988243,0.99613493680954,0.00342563749291003,0.0877693593502045,0.99686586856842,0.00642402423545718,0.0788490772247314,0.996803104877472,0.00722440052777529,0.0795691087841988,0.996054649353027,0.0032000239007175,0.0886840298771858,0.99686586856842,0.00642402423545718,0.0788490772247314,0.998364806175232,0.0151046710088849,0.0551327168941498,0.998127281665802,0.016510970890522,0.0589016973972321,0.996803104877472,0.00722440052777529,0.0795691087841988, +0.998548150062561,0.0213323999196291,0.0494622848927975,0.998127281665802,0.016510970890522,0.0589016973972321,0.998364806175232,0.0151046710088849,0.0551327168941498,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998548150062561,0.0213323999196291,0.0494622848927975,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998301982879639,0.0185902323573828,0.0552037134766579,0.998378157615662,0.0214733984321356,0.0527236349880695,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998364806175232,0.0151046710088849,0.0551327168941498,0.998716592788696,0.000607570458669215,0.0506442487239838,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.99861603975296,0.0182664692401886,0.0493193902075291,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.997867584228516,0.000807996664661914,0.0652675926685333,0.998301982879639,0.0185902323573828,0.0552037134766579,0.96854168176651,-0.0373059138655663,0.246038869023323,0.991491615772247,0.00140663899946958,0.130163043737411,0.98707377910614,0.00784813892096281,0.160074472427368,0.957352161407471,-0.0185783803462982,0.288325995206833,0.957352161407471,-0.0185783803462982,0.288325995206833,0.98707377910614,0.00784813892096281,0.160074472427368,0.962466359138489,0.0948556363582611,0.254285275936127,0.92098480463028,0.143564224243164,0.362182676792145,0.905479967594147,-0.389077335596085,0.16948401927948,0.860090136528015,-0.273277372121811,0.430771857500076,0.962466359138489,0.0948556363582611,0.254285275936127,0.993885099887848,0.0228749252855778,0.108024179935455,0.905479967594147,-0.389077335596085,0.16948401927948,0.993885099887848,0.0228749252855778,0.108024179935455,0.997867584228516,0.000807996664661914,0.0652675926685333,0.915882885456085,-0.400456249713898,0.0281630977988243,0.000240212044445798,-0.090602844953537,0.995887100696564,1.36847847898025e-05,-0.292606621980667,0.956232845783234,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.488369077444077,-0.0530646555125713,0.87102222442627,1.36847847898025e-05,-0.292606621980667,0.956232845783234, +1.42427379614674e-05,-0.348549783229828,0.937290251255035,-0.511119365692139,-0.29790985584259,0.806229948997498,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.511119365692139,-0.29790985584259,0.806229948997498,-0.458524763584137,-0.304732322692871,0.834801316261292,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.488369077444077,-0.0530646555125713,0.87102222442627,-0.501460790634155,-0.245902061462402,0.829499483108521,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.416721314191818,-0.0176437478512526,0.908863008022308,0.297978579998016,-0.287405878305435,0.910278260707855,0.299889504909515,-0.273949265480042,0.913793206214905,0.27497398853302,-0.280620843172073,0.919587433338165,0.270361959934235,-0.292315512895584,0.917309105396271,0.27497398853302,-0.280620843172073,0.919587433338165,0.228964373469353,-0.288229167461395,0.92978447675705,0.226872846484184,-0.298341304063797,0.927103579044342,0.270361959934235,-0.292315512895584,0.917309105396271,0.275892049074173,-0.376482635736465,0.884389221668243,0.220295935869217,-0.324890851974487,0.919736683368683,0.272147238254547,-0.176300823688507,0.945967197418213,0.346659570932388,-0.147837936878204,0.926267266273499,0.275892049074173,-0.376482635736465,0.884389221668243,0.346659570932388,-0.147837936878204,0.926267266273499,0.333074867725372,-0.117942728102207,0.935494780540466,0.289807885885239,-0.43032768368721,0.854885756969452,-0.481684356927872,-0.307957500219345,0.820452451705933,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,2.46701147261774e-05,-0.340059369802475,0.940403938293457,-0.420449644327164,-0.335328876972198,0.843075752258301,-0.481684356927872,-0.307957500219345,0.820452451705933,-0.420449644327164,-0.335328876972198,0.843075752258301,-0.310180366039276,-0.395606368780136,0.864455759525299,-0.424630582332611,-0.334179937839508,0.841434895992279,0.365534752607346,-0.275272130966187,0.889162361621857,0.362585753202438,-0.260607570409775,0.894771039485931, +0.339633166790009,-0.266489624977112,0.902015805244446,0.340675264596939,-0.279809176921844,0.897578537464142,0.339633166790009,-0.266489624977112,0.902015805244446,0.326374977827072,-0.270279616117477,0.905774891376495,0.328150719404221,-0.282415062189102,0.901420533657074,0.340675264596939,-0.279809176921844,0.897578537464142,0.463217854499817,-0.406106621026993,0.78772246837616,0.763542711734772,-0.339976668357849,0.549015760421753,0.830479502677917,-0.194505542516708,0.521987855434418,0.499810367822647,-0.296231180429459,0.813902080059052,0.463217854499817,-0.406106621026993,0.78772246837616,0.499810367822647,-0.296231180429459,0.813902080059052,0.287619531154633,-0.320103913545609,0.902667462825775,0.272015511989594,-0.415265917778015,0.868079364299774,0.568185806274414,-0.391976445913315,0.723546385765076,0.440867334604263,-0.435717403888702,0.784720599651337,0.30705800652504,-0.151796445250511,0.939506888389587,0.342980980873108,-0.175373032689095,0.92282623052597,0.568185806274414,-0.391976445913315,0.723546385765076,0.342980980873108,-0.175373032689095,0.92282623052597,0.3477483689785,-0.198941215872765,0.91623866558075,0.354619860649109,-0.380006402730942,0.854306638240814,0.328068912029266,-0.452030867338181,0.82948112487793,0.440867334604263,-0.435717403888702,0.784720599651337,0.611014664173126,-0.523765981197357,0.593574166297913,0.398277938365936,-0.536248743534088,0.744185388088226,0.328068912029266,-0.452030867338181,0.82948112487793,0.398277938365936,-0.536248743534088,0.744185388088226,0.257376343011856,-0.520962178707123,0.813852488994598,0.289807885885239,-0.43032768368721,0.854885756969452,-0.0490954145789146,-0.337257087230682,0.940131485462189,0.0555685870349407,-0.379517942667007,0.923514127731323,-0.0078623266890645,-0.305302023887634,0.952223122119904,-0.106116123497486,-0.28271272778511,0.953316748142242,-0.0490954145789146,-0.337257087230682,0.940131485462189,-0.106116123497486,-0.28271272778511,0.953316748142242,0.574931979179382,-0.21452622115612,0.789576947689056,0.490249872207642,-0.306862562894821,0.815775990486145, +0.465925961732864,-0.255312830209732,0.847188532352448,0.46940404176712,-0.239579230546951,0.849859774112701,0.451806783676147,-0.247525587677956,0.857089102268219,0.445330530405045,-0.260697692632675,0.856573164463043,0.451806783676147,-0.247525587677956,0.857089102268219,0.427427232265472,-0.254156500101089,0.867588937282562,0.42473179101944,-0.265143990516663,0.865622103214264,0.445330530405045,-0.260697692632675,0.856573164463043,0.206263855099678,-0.364544987678528,0.908054053783417,0.354210317134857,-0.385083884000778,0.852200388908386,0.170638188719749,-0.490811139345169,0.854392826557159,0.0412405952811241,-0.429780393838882,0.901991188526154,0.206263855099678,-0.364544987678528,0.908054053783417,0.0412405952811241,-0.429780393838882,0.901991188526154,0.418492645025253,-0.417349457740784,0.806649446487427,0.354619860649109,-0.380006402730942,0.854306638240814,0.481584459543228,-0.387515157461166,0.786071479320526,0.354210317134857,-0.385083884000778,0.852200388908386,0.465275973081589,-0.175810903310776,0.867530286312103,0.541524887084961,-0.117356345057487,0.832453191280365,0.481584459543228,-0.387515157461166,0.786071479320526,0.541524887084961,-0.117356345057487,0.832453191280365,0.510328412055969,-0.0449175722897053,0.858805775642395,0.499750405550003,-0.3817298412323,0.777516484260559,0.597956001758575,-0.215268164873123,0.772080481052399,0.592859327793121,-0.200990110635757,0.77982097864151,0.538938403129578,-0.218982368707657,0.813383162021637,0.535172045230865,-0.232367232441902,0.812155306339264,0.538938403129578,-0.218982368707657,0.813383162021637,0.503244817256927,-0.229387789964676,0.833142101764679,0.502386271953583,-0.242851346731186,0.829838037490845,0.535172045230865,-0.232367232441902,0.812155306339264,0.567363619804382,-0.433732450008392,0.699981868267059,0.820302903652191,-0.366882711648941,0.43874853849411,0.850554823875427,-0.263379454612732,0.455178827047348,0.583847045898438,-0.327874779701233,0.742711663246155,0.567363619804382,-0.433732450008392,0.699981868267059,0.583847045898438,-0.327874779701233,0.742711663246155, +0.373119860887527,-0.338860630989075,0.863686800003052,0.388115346431732,-0.443261563777924,0.808013439178467,0.516300976276398,-0.446030616760254,0.73108834028244,0.709072232246399,-0.490383982658386,0.506695330142975,0.730762779712677,-0.524796366691589,0.436548382043839,0.532850980758667,-0.568655610084534,0.626658320426941,0.516300976276398,-0.446030616760254,0.73108834028244,0.532850980758667,-0.568655610084534,0.626658320426941,0.414962351322174,-0.562928795814514,0.714784801006317,0.499750405550003,-0.3817298412323,0.777516484260559,0.875056028366089,-0.394868493080139,0.279921293258667,0.709072232246399,-0.490383982658386,0.506695330142975,0.53625351190567,-0.0949005037546158,0.838704824447632,0.641211926937103,-0.110249705612659,0.759402573108673,0.875056028366089,-0.394868493080139,0.279921293258667,0.641211926937103,-0.110249705612659,0.759402573108673,0.608900904655457,-0.122346572577953,0.783754348754883,0.54632157087326,-0.482646822929382,0.684532463550568,-0.111819066107273,-0.334474802017212,0.93574732542038,0.23664890229702,-0.448689639568329,0.86178594827652,0.23160557448864,-0.341618031263351,0.910854637622833,-0.117824763059616,-0.26248362660408,0.95771586894989,-0.111819066107273,-0.334474802017212,0.93574732542038,-0.117824763059616,-0.26248362660408,0.95771586894989,0.202647313475609,-0.298515766859055,0.932642757892609,0.256940931081772,-0.374582171440125,0.890881359577179,0.795167982578278,-0.160252347588539,0.584830820560455,0.784613907337189,-0.148418456315994,0.601957619190216,0.724205315113068,-0.169191837310791,0.668506324291229,0.729499876499176,-0.183190047740936,0.65899270772934,0.724205315113068,-0.169191837310791,0.668506324291229,0.686221122741699,-0.180150583386421,0.704731523990631,0.69054639339447,-0.193011850118637,0.697059512138367,0.729499876499176,-0.183190047740936,0.65899270772934,0.598446249961853,-0.519095242023468,0.610247671604156,0.423094630241394,-0.536581158638,0.730117499828339,0.658480286598206,-0.0952623412013054,0.746544599533081,0.723184883594513,-0.061912901699543,0.687873840332031, +0.598446249961853,-0.519095242023468,0.610247671604156,0.723184883594513,-0.061912901699543,0.687873840332031,0.756192922592163,-0.0511609390377998,0.652345716953278,0.693200528621674,-0.491481930017471,0.527179837226868,0.23476405441761,-0.475362211465836,0.847889482975006,0.423094630241394,-0.536581158638,0.730117499828339,0.282550185918808,-0.625282943248749,0.727452158927917,-0.0402895286679268,-0.486978650093079,0.872484087944031,0.23476405441761,-0.475362211465836,0.847889482975006,-0.0402895286679268,-0.486978650093079,0.872484087944031,0.373678237199783,-0.514060199260712,0.772079527378082,0.54632157087326,-0.482646822929382,0.684532463550568,0.912267506122589,-0.101045846939087,0.396935343742371,0.910833716392517,-0.10109194368124,0.400202870368958,0.886831343173981,-0.116333656013012,0.447209715843201,0.888193190097809,-0.117810659110546,0.444109886884689,0.886831343173981,-0.116333656013012,0.447209715843201,0.869021952152252,-0.121415354311466,0.479644626379013,0.873401761054993,-0.126450717449188,0.470297425985336,0.888193190097809,-0.117810659110546,0.444109886884689,0.857245266437531,-0.464626491069794,0.221929728984833,0.93332827091217,-0.338810741901398,-0.118767276406288,0.954306364059448,-0.251068413257599,-0.162061840295792,0.901452958583832,-0.372857749462128,0.219908162951469,0.857245266437531,-0.464626491069794,0.221929728984833,0.901452958583832,-0.372857749462128,0.219908162951469,0.76766049861908,-0.412512093782425,0.490439832210541,0.731242716312408,-0.51183021068573,0.450903505086899,0.921876072883606,-0.385167300701141,0.0423164926469326,0.854461014270782,-0.476516664028168,0.206949934363365,0.84916090965271,-0.13398066163063,0.510856926441193,0.908291161060333,-0.145772188901901,0.392119407653809,0.921876072883606,-0.385167300701141,0.0423164926469326,0.908291161060333,-0.145772188901901,0.392119407653809,0.92792272567749,-0.139109119772911,0.345843940973282,0.826905488967896,-0.45468458533287,0.330891579389572,0.769442439079285,-0.503196477890015,0.393384665250778,0.854461014270782,-0.476516664028168,0.206949934363365, +0.860257208347321,-0.509540259838104,0.0180641487240791,0.764307379722595,-0.60006195306778,0.236135452985764,0.769442439079285,-0.503196477890015,0.393384665250778,0.764307379722595,-0.60006195306778,0.236135452985764,0.651794612407684,-0.644794881343842,0.399253517389297,0.693200528621674,-0.491481930017471,0.527179837226868,0.224800527095795,-0.377653300762177,0.898244142532349,0.682247877120972,-0.429192274808884,0.59188836812973,0.746551871299744,-0.328548848628998,0.578546464443207,0.208847686648369,-0.293012231588364,0.933020114898682,0.224800527095795,-0.377653300762177,0.898244142532349,0.208847686648369,-0.293012231588364,0.933020114898682,0.780278146266937,-0.327104479074478,0.533074557781219,0.831725597381592,-0.397647082805634,0.387439489364624,0.827144920825958,-0.160243526101112,0.538658857345581,0.82776153087616,-0.14987875521183,0.540691316127777,0.840165615081787,-0.14305616915226,0.523122012615204,0.831374049186707,-0.157346367835999,0.532972157001495,0.840165615081787,-0.14305616915226,0.523122012615204,0.888745725154877,-0.113963581621647,0.444008260965347,0.874054729938507,-0.130796268582344,0.467889577150345,0.831374049186707,-0.157346367835999,0.532972157001495,0.588849186897278,-0.495052307844162,0.63888955116272,0.60429185628891,-0.509560883045197,0.612518608570099,0.619528710842133,-0.549421966075897,0.560642242431641,0.340678364038467,-0.520609378814697,0.782881915569305,0.588849186897278,-0.495052307844162,0.63888955116272,0.340678364038467,-0.520609378814697,0.782881915569305,0.728058815002441,-0.511314928531647,0.456604212522507,0.826905488967896,-0.45468458533287,0.330891579389572,0.737267017364502,-0.431954801082611,0.519473314285278,0.60429185628891,-0.509560883045197,0.612518608570099,0.892889142036438,-0.0994650796055794,0.439153373241425,0.866094946861267,-0.071600578725338,0.494725108146667,0.737267017364502,-0.431954801082611,0.519473314285278,0.866094946861267,-0.071600578725338,0.494725108146667,0.846161961555481,-0.03146817907691,0.531995892524719,0.83910346031189,-0.326700925827026,0.434938907623291, +0.827622175216675,-0.154372617602348,0.539639413356781,0.826237261295319,-0.133032575249672,0.547388553619385,0.815493226051331,-0.138903215527534,0.56185108423233,0.814651846885681,-0.16066075861454,0.557252705097198,0.815493226051331,-0.138903215527534,0.56185108423233,0.820954740047455,-0.140668287873268,0.553394675254822,0.821164727210999,-0.159545183181763,0.547935903072357,0.814651846885681,-0.16066075861454,0.557252705097198,0.948286950588226,-0.2696273624897,0.167490169405937,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.976616501808167,-0.161731541156769,0.141644611954689,0.948286950588226,-0.2696273624897,0.167490169405937,0.976616501808167,-0.161731541156769,0.141644611954689,0.968433320522308,-0.201979890465736,0.146085485816002,0.920679688453674,-0.318991452455521,0.224929749965668,0.894481062889099,-0.324167281389236,0.307927399873734,0.937271595001221,-0.292794436216354,0.189191550016403,0.936742961406708,-0.349865049123764,0.0103462673723698,0.903814673423767,-0.393272668123245,0.168688461184502,0.894481062889099,-0.324167281389236,0.307927399873734,0.903814673423767,-0.393272668123245,0.168688461184502,0.845468997955322,-0.443901598453522,0.29687288403511,0.83910346031189,-0.326700925827026,0.434938907623291,0.952621281147003,-0.21545235812664,0.21469259262085,0.937271595001221,-0.292794436216354,0.189191550016403,0.818676471710205,-0.0259896032512188,0.573666512966156,0.824919760227203,-0.025544935837388,0.564672410488129,0.952621281147003,-0.21545235812664,0.21469259262085,0.824919760227203,-0.025544935837388,0.564672410488129,0.831015765666962,-0.0195813197642565,0.55590409040451,0.773024499416351,-0.251035571098328,0.582592725753784,0.331597626209259,-0.234186932444572,0.913892388343811,0.581863045692444,-0.243657320737839,0.77592945098877,0.600039601325989,-0.140705794095993,0.787498772144318,0.313735365867615,-0.166887998580933,0.934729099273682,0.331597626209259,-0.234186932444572,0.913892388343811,0.313735365867615,-0.166887998580933,0.934729099273682, +0.855779409408569,-0.144384682178497,0.496784299612045,0.812639117240906,-0.217517703771591,0.540651261806488,0.832961440086365,-0.167933389544487,0.52723217010498,0.832327723503113,-0.150266587734222,0.533526301383972,0.833731591701508,-0.146685212850571,0.532329797744751,0.83428293466568,-0.163930758833885,0.526401460170746,0.833731591701508,-0.146685212850571,0.532329797744751,0.839163839817047,-0.139088898897171,0.525793135166168,0.838854253292084,-0.156569272279739,0.521353602409363,0.83428293466568,-0.163930758833885,0.526401460170746,0.746168732643127,-0.324731051921844,0.58118999004364,0.694501519203186,-0.291511297225952,0.657790899276733,0.827139914035797,-0.00921932328492403,0.561920404434204,0.815437734127045,-0.016533300280571,0.578608632087708,0.746168732643127,-0.324731051921844,0.58118999004364,0.815437734127045,-0.016533300280571,0.578608632087708,0.818549573421478,-0.0268298108130693,0.573809087276459,0.786836504936218,-0.339921623468399,0.515113234519958,0.615043818950653,-0.242926478385925,0.750138580799103,0.694501519203186,-0.291511297225952,0.657790899276733,0.568074822425842,-0.381185531616211,0.729375541210175,0.361788481473923,-0.334904283285141,0.870027720928192,0.615043818950653,-0.242926478385925,0.750138580799103,0.361788481473923,-0.334904283285141,0.870027720928192,0.739988207817078,-0.321660608053207,0.590721487998962,0.773024499416351,-0.251035571098328,0.582592725753784,0.897346794605255,-0.123259223997593,0.423764050006866,0.901916682720184,-0.10628217458725,0.418629169464111,0.885190367698669,-0.127925336360931,0.447295337915421,0.880648612976074,-0.136910855770111,0.453556388616562,0.885190367698669,-0.127925336360931,0.447295337915421,0.859896123409271,-0.142539709806442,0.490164369344711,0.859917342662811,-0.152356714010239,0.487164944410324,0.880648612976074,-0.136910855770111,0.453556388616562,0.914890289306641,-0.121925175189972,0.384850651025772,0.984977781772614,-0.0616224482655525,0.161311641335487,0.989045262336731,0.0934214890003204,0.114288978278637,0.934940695762634,0.0340865701436996,0.353162676095963, +0.914890289306641,-0.121925175189972,0.384850651025772,0.934940695762634,0.0340865701436996,0.353162676095963,0.897814869880676,-0.0211839824914932,0.439863324165344,0.867118418216705,-0.171389430761337,0.467687219381332,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.902224242687225,-0.345201700925827,0.258509546518326,0.895096182823181,-0.0639328360557556,0.441265851259232,0.949248135089874,-0.0469713434576988,0.311001002788544,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.949248135089874,-0.0469713434576988,0.311001002788544,0.956947982311249,0.0141221741214395,0.289915651082993,0.930343925952911,-0.284103631973267,0.231830254197121,0.829259037971497,-0.332770079374313,0.448991775512695,0.902224242687225,-0.345201700925827,0.258509546518326,0.926871418952942,-0.302499800920486,0.222268790006638,0.853569328784943,-0.332780241966248,0.400845050811768,0.829259037971497,-0.332770079374313,0.448991775512695,0.853569328784943,-0.332780241966248,0.400845050811768,0.801258563995361,-0.360501676797867,0.477517813444138,0.786836504936218,-0.339921623468399,0.515113234519958,0.612357974052429,-0.103161364793777,0.783820986747742,0.839543461799622,-0.133703395724297,0.526583671569824,0.816722750663757,0.0452906414866447,0.575250089168549,0.557461261749268,0.0455756895244122,0.828951001167297,0.612357974052429,-0.103161364793777,0.783820986747742,0.557461261749268,0.0455756895244122,0.828951001167297,0.829737067222595,0.108809530735016,0.547445714473724,0.884318947792053,-0.054423701018095,0.463700622320175,0.941151320934296,-0.0821005627512932,0.327861964702606,0.940891146659851,-0.0501523986458778,0.33497542142868,0.92790675163269,-0.0666510611772537,0.366806298494339,0.925188720226288,-0.0991106107831001,0.366337329149246,0.92790675163269,-0.0666510611772537,0.366806298494339,0.920228779315948,-0.0795585364103317,0.383209377527237,0.914742171764374,-0.108909480273724,0.389082819223404,0.925188720226288,-0.0991106107831001,0.366337329149246,0.794584929943085,-0.250500679016113,0.553068041801453,0.850567281246185,-0.294763803482056,0.43548783659935, +0.808006346225739,-0.355535328388214,0.469808757305145,0.645715713500977,-0.332651615142822,0.687309324741364,0.794584929943085,-0.250500679016113,0.553068041801453,0.645715713500977,-0.332651615142822,0.687309324741364,0.885432124137878,-0.298503637313843,0.356238156557083,0.930343925952911,-0.284103631973267,0.231830254197121,0.889198124408722,-0.300890505313873,0.344661504030228,0.850567281246185,-0.294763803482056,0.43548783659935,0.943983197212219,0.128329202532768,0.304018646478653,0.930425465106964,0.224328979849815,0.289801716804504,0.889198124408722,-0.300890505313873,0.344661504030228,0.930425465106964,0.224328979849815,0.289801716804504,0.890287518501282,0.311503052711487,0.33219587802887,0.909848988056183,-0.299331039190292,0.287360101938248,0.96854168176651,-0.0373059138655663,0.246038869023323,0.957352161407471,-0.0185783803462982,0.288325995206833,0.921497642993927,-0.0544302947819233,0.384550929069519,0.922744691371918,-0.0873746052384377,0.375376880168915,0.921497642993927,-0.0544302947819233,0.384550929069519,0.932468891143799,-0.0516576319932938,0.357537627220154,0.930086016654968,-0.0858319774270058,0.357173442840576,0.922744691371918,-0.0873746052384377,0.375376880168915,0.931503593921661,-0.173606723546982,0.319627553224564,0.976979911327362,-0.180214643478394,0.114162653684616,0.982197225093842,0.000441860553110018,0.187852442264557,0.920298278331757,-0.00599656021222472,0.39117157459259,0.931503593921661,-0.173606723546982,0.319627553224564,0.920298278331757,-0.00599656021222472,0.39117157459259,0.933599233627319,0.0175865385681391,0.357887089252472,0.934256434440613,-0.153060808777809,0.322082817554474,0.924628794193268,-0.320484489202499,0.205794230103493,0.945364832878113,-0.312039226293564,0.0944293588399887,0.92187511920929,-0.38712340593338,0.016783095896244,0.90982460975647,-0.359352380037308,0.207569152116776,0.924628794193268,-0.320484489202499,0.205794230103493,0.90982460975647,-0.359352380037308,0.207569152116776,0.89973783493042,-0.341453313827515,0.271810978651047,0.909848988056183,-0.299331039190292,0.287360101938248, +0.971633672714233,-0.235121175646782,-0.0254140961915255,0.945364832878113,-0.312039226293564,0.0944293588399887,0.87207442522049,0.226961046457291,0.43356055021286,0.880670130252838,0.180893376469612,0.43783301115036,0.971633672714233,-0.235121175646782,-0.0254140961915255,0.880670130252838,0.180893376469612,0.43783301115036,0.92098480463028,0.143564224243164,0.362182676792145,0.805659294128418,-0.350429505109787,0.477611005306244,-0.125935733318329,-0.385893911123276,0.913906991481781,0.0692463666200638,-0.40363010764122,0.912298023700714,0.0625188425183296,-0.333361506462097,0.940723896026611,-0.155206382274628,-0.334304124116898,0.929597616195679,-0.125935733318329,-0.385893911123276,0.913906991481781,-0.155206382274628,-0.334304124116898,0.929597616195679,-0.458524763584137,-0.304732322692871,0.834801316261292,-0.424630582332611,-0.334179937839508,0.841434895992279,0.545852899551392,0.837256550788879,-0.0323435328900814,0.905852019786835,0.346154808998108,-0.24414949119091,0.680091977119446,0.339804410934448,-0.649621427059174,0.490617632865906,0.784561336040497,-0.379153966903687,0.905852019786835,0.346154808998108,-0.24414949119091,0.948680698871613,0.0530499294400215,-0.311754167079926,0.717204749584198,0.112385459244251,-0.687740445137024,0.680091977119446,0.339804410934448,-0.649621427059174,0.680091977119446,0.339804410934448,-0.649621427059174,0.717204749584198,0.112385459244251,-0.687740445137024,0.843631565570831,0.103148303925991,-0.526921272277832,0.80096834897995,0.345901638269424,-0.488673329353333,0.490617632865906,0.784561336040497,-0.379153966903687,0.680091977119446,0.339804410934448,-0.649621427059174,0.80096834897995,0.345901638269424,-0.488673329353333,0.552241027355194,0.750507056713104,-0.362999767065048,0.57364547252655,0.204739347100258,0.793103218078613,0.594833314418793,-0.0582898817956448,0.801732957363129,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.169697016477585,-0.00179272284731269,0.985494613647461,0.594833314418793,-0.0582898817956448,0.801732957363129,0.574931979179382,-0.21452622115612,0.789576947689056, +-0.106116123497486,-0.28271272778511,0.953316748142242,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.106116123497486,-0.28271272778511,0.953316748142242,-0.0078623266890645,-0.305302023887634,0.952223122119904,-0.0524753332138062,-0.190004914999008,0.98037976026535,-0.169697016477585,-0.00179272284731269,0.985494613647461,-0.15639454126358,-0.194047898054123,0.968445181846619,-0.0524753332138062,-0.190004914999008,0.98037976026535,-0.0601249672472477,0.0759568735957146,0.995296716690063,0.338340848684311,0.210584998130798,0.917158365249634,0.361900568008423,-0.171418622136116,0.916320621967316,0.598853766918182,-0.13367260992527,0.789623916149139,0.556516230106354,0.287375539541245,0.77955436706543,0.361900568008423,-0.171418622136116,0.916320621967316,0.373119860887527,-0.338860630989075,0.863686800003052,0.583847045898438,-0.327874779701233,0.742711663246155,0.598853766918182,-0.13367260992527,0.789623916149139,0.598853766918182,-0.13367260992527,0.789623916149139,0.583847045898438,-0.327874779701233,0.742711663246155,0.850554823875427,-0.263379454612732,0.455178827047348,0.882689833641052,-0.0387041978538036,0.468359529972076,0.556516230106354,0.287375539541245,0.77955436706543,0.598853766918182,-0.13367260992527,0.789623916149139,0.882689833641052,-0.0387041978538036,0.468359529972076,0.803968787193298,0.384839653968811,0.453356921672821,0.225879862904549,-0.420474976301193,0.878737211227417,0.388115346431732,-0.443261563777924,0.808013439178467,0.373119860887527,-0.338860630989075,0.863686800003052,0.176588729023933,-0.327380537986755,0.928244829177856,0.225879862904549,-0.420474976301193,0.878737211227417,0.176588729023933,-0.327380537986755,0.928244829177856,-0.0078623266890645,-0.305302023887634,0.952223122119904,0.0555685870349407,-0.379517942667007,0.923514127731323,0.948952376842499,-0.199090868234634,0.244647070765495,0.490249872207642,-0.306862562894821,0.815775990486145,0.574931979179382,-0.21452622115612,0.789576947689056,0.992714047431946,-0.0376175232231617,0.114470943808556, +0.948952376842499,-0.199090868234634,0.244647070765495,0.992714047431946,-0.0376175232231617,0.114470943808556,0.830479502677917,-0.194505542516708,0.521987855434418,0.763542711734772,-0.339976668357849,0.549015760421753,0.968820154666901,-0.236736476421356,0.073096938431263,0.256940931081772,-0.374582171440125,0.890881359577179,0.202647313475609,-0.298515766859055,0.932642757892609,0.987858235836029,-0.144031837582588,0.0582313798367977,0.968820154666901,-0.236736476421356,0.073096938431263,0.987858235836029,-0.144031837582588,0.0582313798367977,0.850554823875427,-0.263379454612732,0.455178827047348,0.820302903652191,-0.366882711648941,0.43874853849411,0.311008453369141,0.129438325762749,0.941551625728607,0.309647798538208,-0.164630636572838,0.936490893363953,0.550275981426239,-0.099647082388401,0.829015552997589,0.523320317268372,0.27934929728508,0.805046498775482,0.309647798538208,-0.164630636572838,0.936490893363953,0.287619531154633,-0.320103913545609,0.902667462825775,0.499810367822647,-0.296231180429459,0.813902080059052,0.550275981426239,-0.099647082388401,0.829015552997589,0.550275981426239,-0.099647082388401,0.829015552997589,0.499810367822647,-0.296231180429459,0.813902080059052,0.830479502677917,-0.194505542516708,0.521987855434418,0.894742727279663,0.0488326624035835,0.443904131650925,0.523320317268372,0.27934929728508,0.805046498775482,0.550275981426239,-0.099647082388401,0.829015552997589,0.894742727279663,0.0488326624035835,0.443904131650925,0.80627965927124,0.405445098876953,0.430728703737259,0.254012256860733,0.141789615154266,0.956751525402069,0.231135651469231,-0.167288109660149,0.958431541919708,-0.0929515063762665,-0.162311032414436,0.982351839542389,-0.0775697454810143,0.060862947255373,0.995127439498901,0.231135651469231,-0.167288109660149,0.958431541919708,0.202647313475609,-0.298515766859055,0.932642757892609,-0.117824763059616,-0.26248362660408,0.95771586894989,-0.0929515063762665,-0.162311032414436,0.982351839542389,-0.0929515063762665,-0.162311032414436,0.982351839542389,-0.117824763059616,-0.26248362660408,0.95771586894989, +0.23160557448864,-0.341618031263351,0.910854637622833,0.20401531457901,-0.166772156953812,0.964657783508301,-0.0775697454810143,0.060862947255373,0.995127439498901,-0.0929515063762665,-0.162311032414436,0.982351839542389,0.20401531457901,-0.166772156953812,0.964657783508301,0.189795464277267,0.239581629633904,0.952144026756287,0.161216169595718,-0.411513656377792,0.897031664848328,0.272015511989594,-0.415265917778015,0.868079364299774,0.287619531154633,-0.320103913545609,0.902667462825775,0.166856989264488,-0.326760053634644,0.930261552333832,0.161216169595718,-0.411513656377792,0.897031664848328,0.166856989264488,-0.326760053634644,0.930261552333832,0.0625188425183296,-0.333361506462097,0.940723896026611,0.0692463666200638,-0.40363010764122,0.912298023700714,0.56542831659317,-0.511293947696686,0.647201299667358,0.731242716312408,-0.51183021068573,0.450903505086899,0.76766049861908,-0.412512093782425,0.490439832210541,0.579422473907471,-0.400906980037689,0.709607779979706,0.56542831659317,-0.511293947696686,0.647201299667358,0.579422473907471,-0.400906980037689,0.709607779979706,0.23160557448864,-0.341618031263351,0.910854637622833,0.23664890229702,-0.448689639568329,0.86178594827652,0.702990412712097,0.419565856456757,0.574255168437958,0.799408972263336,-0.193910956382751,0.568633437156677,0.960128307342529,-0.156329676508904,0.231764107942581,0.850822269916534,0.454787462949753,0.263191670179367,0.799408972263336,-0.193910956382751,0.568633437156677,0.76766049861908,-0.412512093782425,0.490439832210541,0.901452958583832,-0.372857749462128,0.219908162951469,0.960128307342529,-0.156329676508904,0.231764107942581,0.960128307342529,-0.156329676508904,0.231764107942581,0.901452958583832,-0.372857749462128,0.219908162951469,0.954306364059448,-0.251068413257599,-0.162061840295792,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.850822269916534,0.454787462949753,0.263191670179367,0.960128307342529,-0.156329676508904,0.231764107942581,0.971770942211151,-0.0515951849520206,-0.230215489864349,0.87173056602478,0.45006275177002,-0.193725004792213, +0.903905987739563,-0.195524647831917,-0.380426108837128,0.831725597381592,-0.397647082805634,0.387439489364624,0.780278146266937,-0.327104479074478,0.533074557781219,0.882660627365112,-0.110119074583054,-0.456928849220276,0.903905987739563,-0.195524647831917,-0.380426108837128,0.882660627365112,-0.110119074583054,-0.456928849220276,0.954306364059448,-0.251068413257599,-0.162061840295792,0.93332827091217,-0.338810741901398,-0.118767276406288,0.785448968410492,0.584083378314972,0.204734981060028,0.894276082515717,-0.097051627933979,0.436865478754044,0.214710965752602,-0.117083609104156,0.969634294509888,0.149979919195175,0.432588964700699,0.889029085636139,0.894276082515717,-0.097051627933979,0.436865478754044,0.780278146266937,-0.327104479074478,0.533074557781219,0.208847686648369,-0.293012231588364,0.933020114898682,0.214710965752602,-0.117083609104156,0.969634294509888,0.214710965752602,-0.117083609104156,0.969634294509888,0.208847686648369,-0.293012231588364,0.933020114898682,0.746551871299744,-0.328548848628998,0.578546464443207,0.808956742286682,-0.0573622770607471,0.585062980651855,0.149979919195175,0.432588964700699,0.889029085636139,0.214710965752602,-0.117083609104156,0.969634294509888,0.808956742286682,-0.0573622770607471,0.585062980651855,0.548696398735046,0.668518900871277,0.502010822296143,0.882075786590576,-0.372996717691422,0.287777364253998,0.920679688453674,-0.318991452455521,0.224929749965668,0.968433320522308,-0.201979890465736,0.146085485816002,0.948021054267883,-0.254489004611969,0.191027164459229,0.882075786590576,-0.372996717691422,0.287777364253998,0.948021054267883,-0.254489004611969,0.191027164459229,0.746551871299744,-0.328548848628998,0.578546464443207,0.682247877120972,-0.429192274808884,0.59188836812973,0.601027071475983,0.790183782577515,0.119900159537792,0.993971467018127,0.0660507827997208,0.0875101536512375,0.990473628044128,0.0833791941404343,0.109589867293835,0.633487701416016,0.76544189453125,0.113101147115231,0.993971467018127,0.0660507827997208,0.0875101536512375,0.968433320522308,-0.201979890465736,0.146085485816002, +0.976616501808167,-0.161731541156769,0.141644611954689,0.990473628044128,0.0833791941404343,0.109589867293835,0.990473628044128,0.0833791941404343,0.109589867293835,0.976616501808167,-0.161731541156769,0.141644611954689,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.989034950733185,0.108781777322292,-0.0998830646276474,0.633487701416016,0.76544189453125,0.113101147115231,0.990473628044128,0.0833791941404343,0.109589867293835,0.989034950733185,0.108781777322292,-0.0998830646276474,0.693340718746185,0.714396417140961,-0.0944258198142052,0.968112766742706,-0.115815326571465,-0.222136452794075,0.812639117240906,-0.217517703771591,0.540651261806488,0.855779409408569,-0.144384682178497,0.496784299612045,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.968112766742706,-0.115815326571465,-0.222136452794075,0.962814807891846,-0.0341773889958858,-0.267991781234741,0.992957711219788,-0.0924516469240189,-0.0740781053900719,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.628531694412231,0.683484315872192,0.371210426092148,0.89562314748764,0.0532087571918964,0.441619753837585,0.309368699789047,0.00581573229283094,0.950924336910248,0.148756414651871,0.46286728978157,0.873856604099274,0.89562314748764,0.0532087571918964,0.441619753837585,0.855779409408569,-0.144384682178497,0.496784299612045,0.313735365867615,-0.166887998580933,0.934729099273682,0.309368699789047,0.00581573229283094,0.950924336910248,0.309368699789047,0.00581573229283094,0.950924336910248,0.313735365867615,-0.166887998580933,0.934729099273682,0.600039601325989,-0.140705794095993,0.787498772144318,0.631407916545868,0.117286719381809,0.766529679298401,0.148756414651871,0.46286728978157,0.873856604099274,0.309368699789047,0.00581573229283094,0.950924336910248,0.631407916545868,0.117286719381809,0.766529679298401,0.340618073940277,0.749954223632813,0.567052066326141,0.792877972126007,-0.21465927362442,0.570320785045624,0.867118418216705,-0.171389430761337,0.467687219381332,0.897814869880676,-0.0211839824914932,0.439863324165344,0.829451382160187,-0.0813746005296707,0.552619576454163, +0.792877972126007,-0.21465927362442,0.570320785045624,0.829451382160187,-0.0813746005296707,0.552619576454163,0.600039601325989,-0.140705794095993,0.787498772144318,0.581863045692444,-0.243657320737839,0.77592945098877,0.355875700712204,0.906293213367462,0.228002443909645,0.86969381570816,0.300446540117264,0.391617625951767,0.888605296611786,0.338463991880417,0.309552758932114,0.384320706129074,0.901485502719879,0.199051231145859,0.86969381570816,0.300446540117264,0.391617625951767,0.897814869880676,-0.0211839824914932,0.439863324165344,0.934940695762634,0.0340865701436996,0.353162676095963,0.888605296611786,0.338463991880417,0.309552758932114,0.888605296611786,0.338463991880417,0.309552758932114,0.934940695762634,0.0340865701436996,0.353162676095963,0.989045262336731,0.0934214890003204,0.114288978278637,0.926688432693481,0.367865145206451,0.076966218650341,0.384320706129074,0.901485502719879,0.199051231145859,0.888605296611786,0.338463991880417,0.309552758932114,0.926688432693481,0.367865145206451,0.076966218650341,0.460872143507004,0.886726438999176,0.0362347550690174,0.975308120250702,-0.00194700108841062,-0.220840260386467,0.884318947792053,-0.054423701018095,0.463700622320175,0.829737067222595,0.108809530735016,0.547445714473724,0.95555716753006,0.137370273470879,-0.260844856500626,0.975308120250702,-0.00194700108841062,-0.220840260386467,0.95555716753006,0.137370273470879,-0.260844856500626,0.989045262336731,0.0934214890003204,0.114288978278637,0.984977781772614,-0.0616224482655525,0.161311641335487,0.35998409986496,0.867266118526459,0.343890994787216,0.752720415592194,0.38932791352272,0.530881941318512,0.466896206140518,0.270174503326416,0.842029511928558,0.22581060230732,0.695758759975433,0.681857287883759,0.752720415592194,0.38932791352272,0.530881941318512,0.829737067222595,0.108809530735016,0.547445714473724,0.557461261749268,0.0455756895244122,0.828951001167297,0.466896206140518,0.270174503326416,0.842029511928558,0.466896206140518,0.270174503326416,0.842029511928558,0.557461261749268,0.0455756895244122,0.828951001167297, +0.816722750663757,0.0452906414866447,0.575250089168549,0.726607739925385,0.324426382780075,0.605630815029144,0.22581060230732,0.695758759975433,0.681857287883759,0.466896206140518,0.270174503326416,0.842029511928558,0.726607739925385,0.324426382780075,0.605630815029144,0.394051760435104,0.804004788398743,0.445308446884155,0.936541557312012,-0.143504872918129,0.319837808609009,0.934256434440613,-0.153060808777809,0.322082817554474,0.933599233627319,0.0175865385681391,0.357887089252472,0.942134022712708,0.0402702987194061,0.332808822393417,0.936541557312012,-0.143504872918129,0.319837808609009,0.942134022712708,0.0402702987194061,0.332808822393417,0.816722750663757,0.0452906414866447,0.575250089168549,0.839543461799622,-0.133703395724297,0.526583671569824,0.398877888917923,0.881957292556763,0.251093447208405,0.856952428817749,0.343463450670242,0.384272277355194,0.853111922740936,0.304333984851837,0.423769772052765,0.436673671007156,0.842924654483795,0.314315378665924,0.856952428817749,0.343463450670242,0.384272277355194,0.933599233627319,0.0175865385681391,0.357887089252472,0.920298278331757,-0.00599656021222472,0.39117157459259,0.853111922740936,0.304333984851837,0.423769772052765,0.853111922740936,0.304333984851837,0.423769772052765,0.920298278331757,-0.00599656021222472,0.39117157459259,0.982197225093842,0.000441860553110018,0.187852442264557,0.92270028591156,0.311021476984024,0.227793514728546,0.436673671007156,0.842924654483795,0.314315378665924,0.853111922740936,0.304333984851837,0.423769772052765,0.92270028591156,0.311021476984024,0.227793514728546,0.521250128746033,0.839334070682526,0.154326602816582,0.973433196544647,-0.164063036441803,-0.159721702337265,0.82255631685257,-0.213350489735603,0.527145743370056,0.833454966545105,-0.0589393526315689,0.549435198307037,0.994294047355652,0.0164229031652212,-0.105402871966362,0.973433196544647,-0.164063036441803,-0.159721702337265,0.994294047355652,0.0164229031652212,-0.105402871966362,0.982197225093842,0.000441860553110018,0.187852442264557,0.976979911327362,-0.180214643478394,0.114162653684616, +0.384831994771957,0.823053538799286,0.417716801166534,0.780824542045593,0.251494169235229,0.571894943714142,0.824138283729553,0.277803391218185,0.493580013513565,0.452140301465988,0.806186378002167,0.381618410348892,0.780824542045593,0.251494169235229,0.571894943714142,0.833454966545105,-0.0589393526315689,0.549435198307037,0.854334950447083,-0.0434923134744167,0.517899930477142,0.824138283729553,0.277803391218185,0.493580013513565,0.974883675575256,-0.173518389463425,0.139618128538132,0.985689699649811,-0.159650921821594,0.0541065037250519,0.995254218578339,0.0549554899334908,0.0803044810891151,0.993151307106018,0.0372834131121635,0.11072713881731,0.974883675575256,-0.173518389463425,0.139618128538132,0.993151307106018,0.0372834131121635,0.11072713881731,0.854334950447083,-0.0434923134744167,0.517899930477142,0.845588147640228,-0.197172567248344,0.496088355779648,0.370153248310089,0.92108142375946,0.120812572538853,0.899473369121552,0.420583963394165,0.118561275303364,0.92145162820816,0.361402422189713,0.142530664801598,0.442724764347076,0.874292135238647,0.19901779294014,0.899473369121552,0.420583963394165,0.118561275303364,0.995254218578339,0.0549554899334908,0.0803044810891151,0.998457312583923,0.0292231291532516,0.0472116097807884,0.92145162820816,0.361402422189713,0.142530664801598,0.92145162820816,0.361402422189713,0.142530664801598,0.998457312583923,0.0292231291532516,0.0472116097807884,0.948680698871613,0.0530499294400215,-0.311754167079926,0.905852019786835,0.346154808998108,-0.24414949119091,0.442724764347076,0.874292135238647,0.19901779294014,0.92145162820816,0.361402422189713,0.142530664801598,0.905852019786835,0.346154808998108,-0.24414949119091,0.545852899551392,0.837256550788879,-0.0323435328900814,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.167159870266914,0.339122027158737,-0.925772070884705,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.167159870266914,0.339122027158737,-0.925772070884705, +-0.166266694664955,0.278747469186783,-0.945862174034119,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.733271539211273,0.35336098074913,-0.580903470516205,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.773969650268555,0.336919188499451,-0.536149680614471,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.773969650268555,0.336919188499451,-0.536149680614471,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.991487503051758,0.110444560647011,-0.0689526423811913,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.259191989898682,0.317290842533112,-0.912220358848572,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.196655735373497,0.405011922121048,-0.892911970615387,-0.259191989898682,0.317290842533112,-0.912220358848572, +-0.406125217676163,0.278219938278198,-0.87043434381485,-0.518538475036621,0.333198189735413,-0.787462294101715,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.490829437971115,0.501539170742035,-0.712421834468842,7.32525177227217e-06,0.889752805233002,-0.456442594528198,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.0875224769115448,0.878100991249084,-0.470402628183365,-1.73237604030874e-05,0.87093460559845,-0.491398930549622,7.073596407281e-06,0.83499151468277,-0.550262928009033,-0.0795824527740479,0.829624056816101,-0.552621483802795,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.0795824527740479,0.829624056816101,-0.552621483802795,-0.176512122154236,0.811137557029724,-0.557583630084991,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.0875224769115448,0.878100991249084,-0.470402628183365,-0.0808387249708176,0.861122012138367,-0.501930296421051,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.5271235704422,0.795305848121643,0.299381494522095,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.896158635616302,0.439713567495346,-0.0595961138606071,-0.88666570186615,0.37198206782341,0.274687677621841,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.896158635616302,0.439713567495346,-0.0595961138606071, +-0.896158635616302,0.439713567495346,-0.0595961138606071,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.97033816576004,0.154364034533501,-0.186052888631821,-0.88666570186615,0.37198206782341,0.274687677621841,-0.896158635616302,0.439713567495346,-0.0595961138606071,-0.97033816576004,0.154364034533501,-0.186052888631821,-0.97677755355835,0.115513071417809,0.180450409650803,-0.88973480463028,0.0997150093317032,-0.445453524589539,-0.899354934692383,0.05581059679389,-0.433642566204071,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.899354934692383,0.05581059679389,-0.433642566204071,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.851243257522583,0.219904631376266,-0.476473480463028,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.262969821691513,0.908584952354431,-0.324530899524689,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.327430695295334,0.870584785938263,-0.367248356342316,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.241020381450653,0.876797020435333,-0.416096478700638,-0.508084416389465,0.858207881450653,0.0730034038424492, +-0.40931636095047,0.90296483039856,-0.130822703242302,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.40931636095047,0.90296483039856,-0.130822703242302,-0.377121925354004,0.921668231487274,-0.0911404639482498,-0.825659394264221,0.460083603858948,-0.326511442661285,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.825659394264221,0.460083603858948,-0.326511442661285,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.851789832115173,0.42912694811821,-0.300506472587585,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.930652797222137,0.237338930368423,-0.278487771749496,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.909069240093231,-0.172094643115997,-0.37944233417511,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.355114340782166,0.933930039405823,-0.0408466123044491,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.355114340782166,0.933930039405823,-0.0408466123044491, +-0.239247843623161,0.970808088779449,0.0170955918729305,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.36864385008812,0.926359534263611,-0.0771996974945068,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.262632071971893,0.961122930049896,-0.0852473974227905,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.954137742519379,0.116419486701488,-0.275803655385971,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.985278785228729,0.125116720795631,-0.116496153175831,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.909995555877686,0.382108211517334,0.160939007997513,-0.911364376544952,0.382403463125229,0.152258291840553,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.911364376544952,0.382403463125229,0.152258291840553,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.0702982097864151,0.730232715606689,-0.67957216501236,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.0702982097864151,0.730232715606689,-0.67957216501236,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.0662364661693573,0.3167804479599,-0.946183323860168,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.0795974135398865,0.422198981046677,-0.90300178527832,-0.0662364661693573,0.3167804479599,-0.946183323860168, +-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.318299174308777,0.309028834104538,-0.896206855773926,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.661113977432251,0.547075629234314,-0.513455450534821,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.729383707046509,0.360981017351151,-0.581112861633301,-0.697425842285156,0.352117657661438,-0.624187707901001, +-0.661113977432251,0.547075629234314,-0.513455450534821,-0.569100499153137,0.579296171665192,-0.583558678627014,-0.697425842285156,0.352117657661438,-0.624187707901001,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.412765175104141,0.837416112422943,-0.358272343873978,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.579877972602844,0.5845867395401,-0.567450225353241,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.635532975196838,0.760746121406555,0.131769448518753,-0.897319853305817,0.377036362886429,0.229479074478149,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.897319853305817,0.377036362886429,0.229479074478149,-0.962598562240601,0.186348855495453,0.196667715907097,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.579877972602844,0.5845867395401,-0.567450225353241,-0.452775627374649,0.532809257507324,-0.714918494224548,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.521687865257263,0.778944432735443,0.347975969314575,-0.448838919401169,0.886660933494568,0.111248157918453,-0.951875388622284,0.282558053731918,0.118718676269054,-0.891934096813202,0.180671438574791,0.414501368999481,-0.448838919401169,0.886660933494568,0.111248157918453,-0.392345577478409,0.919809639453888,0.00387298595160246,-0.928698837757111,0.34689873456955,-0.131071507930756,-0.951875388622284,0.282558053731918,0.118718676269054,-0.951875388622284,0.282558053731918,0.118718676269054, +-0.928698837757111,0.34689873456955,-0.131071507930756,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.891934096813202,0.180671438574791,0.414501368999481,-0.951875388622284,0.282558053731918,0.118718676269054,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.341704130172729,0.905311167240143,-0.252289474010468,-0.316405475139618,0.84859436750412,-0.423998981714249,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.316405475139618,0.84859436750412,-0.423998981714249,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.654598712921143,0.378938555717468,-0.654145240783691,-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.844235479831696,0.0513768196105957,-0.533504366874695,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.852664291858673,-0.0599740967154503,-0.519005417823792,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.415281802415848,0.888628661632538,0.194628059864044,-0.369071453809738,0.929379105567932,0.00637798011302948, +-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.865572988986969,0.468763470649719,0.176193386316299,-0.369071453809738,0.929379105567932,0.00637798011302948,-0.343587458133698,0.937992751598358,0.0460143499076366,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.985278785228729,0.125116720795631,-0.116496153175831,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.865572988986969,0.468763470649719,0.176193386316299,-0.845384836196899,0.530350089073181,-0.0636654645204544,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.535358011722565,0.59464019536972,-0.599828958511353,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.336827337741852,0.317959636449814,-0.886255621910095,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.429928570985794,0.368197739124298,-0.824373543262482,-0.336827337741852,0.317959636449814,-0.886255621910095, +-0.503602981567383,0.325766831636429,-0.800162494182587,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.332545906305313,0.353390842676163,-0.874373018741608,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.332545906305313,0.353390842676163,-0.874373018741608,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.592969179153442,0.321096628904343,-0.738433957099915,-0.466602355241776,0.295693963766098,-0.833575010299683,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.31383341550827,0.838994324207306,-0.44451904296875,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.22046186029911,0.873457729816437,-0.434129238128662,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.264273107051849,0.846739053726196,-0.461728066205978,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.202570572495461,0.861213862895966,-0.466128766536713,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.257006973028183,0.818767726421356,-0.513387680053711,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.234378948807716,0.808495759963989,-0.539815783500671, +-0.257006973028183,0.818767726421356,-0.513387680053711,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.252930700778961,0.836750030517578,-0.485670268535614,-0.202570572495461,0.861213862895966,-0.466128766536713,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.234378948807716,0.808495759963989,-0.539815783500671,-0.241580724716187,0.823470711708069,-0.51335620880127,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.176512122154236,0.811137557029724,-0.557583630084991,-0.0795824527740479,0.829624056816101,-0.552621483802795,-0.0919612050056458,0.737782955169678,-0.668744623661041,-0.172377914190292,0.741736710071564,-0.648160815238953,-0.0795824527740479,0.829624056816101,-0.552621483802795,7.073596407281e-06,0.83499151468277,-0.550262928009033,4.06080403081432e-07,0.735536515712738,-0.677485108375549,-0.0919612050056458,0.737782955169678,-0.668744623661041,-0.0919612050056458,0.737782955169678,-0.668744623661041,4.06080403081432e-07,0.735536515712738,-0.677485108375549,4.51247871069427e-07,0.499479681253433,-0.866325557231903,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.172377914190292,0.741736710071564,-0.648160815238953, +-0.0919612050056458,0.737782955169678,-0.668744623661041,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.182878151535988,0.52682489156723,-0.830066859722137,4.51247871069427e-07,0.499479681253433,-0.866325557231903,2.50662333201035e-06,0.290553063154221,-0.95685887336731,-0.142850771546364,0.293649584054947,-0.945179104804993,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.142850771546364,0.293649584054947,-0.945179104804993,2.50662333201035e-06,0.290553063154221,-0.95685887336731,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,-0.221301317214966,0.152849704027176,-0.963152468204498,-0.118270941078663,0.507952749729156,-0.853226840496063,-0.142850771546364,0.293649584054947,-0.945179104804993,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.182878151535988,0.52682489156723,-0.830066859722137,-0.33005753159523,0.373546361923218,-0.866905570030212,-0.348480015993118,0.189375415444374,-0.917986214160919,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.348480015993118,0.189375415444374,-0.917986214160919,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.342942506074905,0.810506045818329,-0.474837124347687,-0.222145259380341,0.690081894397736,-0.68879497051239,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.222145259380341,0.690081894397736,-0.68879497051239,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.835709750652313,0.249700054526329,-0.489120692014694,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.835709750652313,0.249700054526329,-0.489120692014694, +-0.809337377548218,0.144351661205292,-0.569329082965851,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.316213369369507,0.329728722572327,-0.88954371213913,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.96288138628006,0.131251558661461,-0.23586542904377,-0.924555361270905,0.129721865057945,-0.358286798000336,-0.911948204040527,0.11847773194313,-0.392827421426773,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.96288138628006,0.131251558661461,-0.23586542904377,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.990341305732727,0.092634342610836,0.103164255619049,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.370045125484467,0.90728098154068,-0.199769645929337,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.370045125484467,0.90728098154068,-0.199769645929337,-0.26593479514122,0.947541415691376,-0.177324414253235,-0.267555445432663,0.944637537002563,-0.18993167579174,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.368397325277328,0.906120717525482,-0.207914844155312,-0.267555445432663,0.944637537002563,-0.18993167579174, +-0.268048852682114,0.938291668891907,-0.218537360429764,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.363738358020782,0.902940452098846,-0.228894889354706,-0.268048852682114,0.938291668891907,-0.218537360429764,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.342527866363525,0.883781611919403,-0.318754941225052,-0.354328274726868,0.896475732326508,-0.266050428152084,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.262969821691513,0.908584952354431,-0.324530899524689,-0.792703151702881,0.400789320468903,-0.45933610200882,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.31383341550827,0.838994324207306,-0.44451904296875,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.291103214025497,0.861871302127838,-0.415255129337311,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.291103214025497,0.861871302127838,-0.415255129337311, +-0.291103214025497,0.861871302127838,-0.415255129337311,-0.309470802545547,0.865362465381622,-0.394177138805389,-0.241020381450653,0.876797020435333,-0.416096478700638,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.275830239057541,0.854415416717529,-0.440331697463989,-0.291103214025497,0.861871302127838,-0.415255129337311,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.22046186029911,0.873457729816437,-0.434129238128662,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.661455273628235,0.378868937492371,-0.647252202033997,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.748834669589996,0.238394916057587,-0.618396639823914,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.38867861032486,0.85452264547348,-0.344557642936707,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.38867861032486,0.85452264547348,-0.344557642936707, +-0.413335084915161,0.895001292228699,0.16771088540554,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.743041694164276,0.400920331478119,-0.535865485668182,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.809789836406708,0.00712836580350995,-0.586676836013794,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.809789836406708,0.00712836580350995,-0.586676836013794,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.40021613240242,0.909812211990356,0.109857328236103,-0.301414340734482,0.942200183868408,0.146315321326256,-0.200579598546028,0.958886027336121,0.200762361288071,-0.300162523984909,0.941737473011017,0.1517663449049,-0.301414340734482,0.942200183868408,0.146315321326256,-0.199016839265823,0.964948236942291,0.17107680439949,-0.0769341886043549,0.952120065689087,0.295885741710663,-0.200579598546028,0.958886027336121,0.200762361288071,-0.200579598546028,0.958886027336121,0.200762361288071,-0.0769341886043549,0.952120065689087,0.295885741710663, +3.1286046578316e-05,0.933347523212433,0.35897421836853,-0.108388245105743,0.959665358066559,0.259411454200745,-0.300162523984909,0.941737473011017,0.1517663449049,-0.200579598546028,0.958886027336121,0.200762361288071,-0.108388245105743,0.959665358066559,0.259411454200745,-0.222894638776779,0.95649117231369,0.188261821866035,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.355114340782166,0.933930039405823,-0.0408466123044491,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.40021613240242,0.909812211990356,0.109857328236103,-0.300162523984909,0.941737473011017,0.1517663449049,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.300162523984909,0.941737473011017,0.1517663449049,-0.222894638776779,0.95649117231369,0.188261821866035,-0.220642820000648,0.969886004924774,0.10313955694437,-0.355114340782166,0.933930039405823,-0.0408466123044491,-0.344670742750168,0.937636375427246,0.0451672822237015,-0.220642820000648,0.969886004924774,0.10313955694437,-0.239247843623161,0.970808088779449,0.0170955918729305,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.906920254230499,0.337041199207306,-0.252782553434372,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.373310983181,0.911095559597015,-0.174767524003983, +-0.370045125484467,0.90728098154068,-0.199769645929337,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.373310983181,0.911095559597015,-0.174767524003983,-0.373310983181,0.911095559597015,-0.174767524003983,-0.375087946653366,0.91880589723587,-0.122901752591133,-0.262632071971893,0.961122930049896,-0.0852473974227905,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.370045125484467,0.90728098154068,-0.199769645929337,-0.373310983181,0.911095559597015,-0.174767524003983,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.26593479514122,0.947541415691376,-0.177324414253235,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.88703578710556,0.163084164261818,-0.43193855881691,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.885466039180756,0.269513994455338,-0.37856587767601,-0.868080079555511,-0.12176526337862,-0.481259018182755,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.885466039180756,0.269513994455338,-0.37856587767601,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.959764063358307,0.0512487143278122,-0.276091665029526, +-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.888384640216827,0.134062275290489,-0.439090073108673,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.954137742519379,0.116419486701488,-0.275803655385971,-0.888384640216827,0.134062275290489,-0.439090073108673,-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.959764063358307,0.0512487143278122,-0.276091665029526,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.905411005020142,0.0426722913980484,-0.422386080026627,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.689413130283356,0.722614347934723,0.0503795966506004,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.814514100551605,0.577297806739807,0.0573935136198997,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.814514100551605,0.577297806739807,0.0573935136198997,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.814514100551605,0.577297806739807,0.0573935136198997,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.584055960178375,0.809352517127991,0.0618640184402466,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.887072622776031,0.441629320383072,-0.134409114718437, +-0.847642540931702,0.516695201396942,-0.120533362030983,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.991487503051758,0.110444560647011,-0.0689526423811913,-0.847642540931702,0.516695201396942,-0.120533362030983,-0.887072622776031,0.441629320383072,-0.134409114718437,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.847642540931702,0.516695201396942,-0.120533362030983,-0.991487503051758,0.110444560647011,-0.0689526423811913,-7.8074026532704e-06,0.338909506797791,-0.940818905830383,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.261917173862457,0.326285809278488,-0.908260464668274,-4.01593206333928e-06,0.341146737337112,-0.940010011196136,4.66808523924556e-06,0.516847312450409,-0.856077551841736,-0.11115163564682,0.567677080631256,-0.815713167190552,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.11115163564682,0.567677080631256,-0.815713167190552,-0.133362740278244,0.658979296684265,-0.740243673324585,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.261917173862457,0.326285809278488,-0.908260464668274,-0.243543460965157,0.351157307624817,-0.904088079929352,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.348480015993118,0.189375415444374,-0.917986214160919,-0.357689201831818,0.230448618531227,-0.904959678649902,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.357689201831818,0.230448618531227,-0.904959678649902,-0.323321968317032,0.276273161172867,-0.905061423778534, +-0.368761420249939,0.0988195315003395,-0.924256324768066,-0.221301317214966,0.152849704027176,-0.963152468204498,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,1.21185021271231e-05,0.230906829237938,-0.972975850105286,-0.291237950325012,0.205016359686852,-0.9344242811203,-0.221301317214966,0.152849704027176,-0.963152468204498,-0.291237950325012,0.205016359686852,-0.9344242811203,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.318880528211594,0.120925262570381,-0.940049111843109,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.466602355241776,0.295693963766098,-0.833575010299683,-0.763972997665405,0.199422031641006,-0.613658010959625,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.406125217676163,0.278219938278198,-0.87043434381485, +-0.763972997665405,0.199422031641006,-0.613658010959625,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.592969179153442,0.321096628904343,-0.738433957099915,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.503602981567383,0.325766831636429,-0.800162494182587,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.262255430221558,0.337828725576401,-0.903932392597198, +-0.661455273628235,0.378868937492371,-0.647252202033997,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.385275810956955,0.337066978216171,-0.85903924703598,-0.262255430221558,0.337828725576401,-0.903932392597198,-0.385275810956955,0.337066978216171,-0.85903924703598,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.813119411468506,0.13746352493763,-0.565632820129395,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.813119411468506,0.13746352493763,-0.565632820129395,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.661455273628235,0.378868937492371,-0.647252202033997,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.733271539211273,0.35336098074913,-0.580903470516205, +-0.729383707046509,0.360981017351151,-0.581112861633301,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.990341305732727,0.092634342610836,0.103164255619049,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.97677755355835,0.115513071417809,0.180450409650803,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.962598562240601,0.186348855495453,0.196667715907097,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.899354934692383,0.05581059679389,-0.433642566204071, +-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.924555361270905,0.129721865057945,-0.358286798000336,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.911948204040527,0.11847773194313,-0.392827421426773,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.830619513988495,-0.0403317101299763,0.555377900600433,-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.809337377548218,0.144351661205292,-0.569329082965851,-0.830619513988495,-0.0403317101299763,0.555377900600433, +-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.852664291858673,-0.0599740967154503,-0.519005417823792,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.844235479831696,0.0513768196105957,-0.533504366874695,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.95115453004837,0.120947979390621,-0.284036248922348,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.95115453004837,0.120947979390621,-0.284036248922348,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.868080079555511,-0.12176526337862,-0.481259018182755,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.868080079555511,-0.12176526337862,-0.481259018182755, +-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.909069240093231,-0.172094643115997,-0.37944233417511,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.895220398902893,0.123152531683445,-0.428268700838089,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.895220398902893,0.123152531683445,-0.428268700838089,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.909069240093231,-0.172094643115997,-0.37944233417511, +-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.887072622776031,0.441629320383072,-0.134409114718437,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.333563297986984,0.29656058549881,-0.894867241382599,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.462450176477432,0.886512696743011,0.015330545604229,-0.513878643512726,0.845303356647491,-0.146256804466248,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.857405304908752,0.477951169013977,-0.190837234258652,-0.513878643512726,0.845303356647491,-0.146256804466248,-0.577608048915863,0.788340985774994,-0.21186663210392,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.888384640216827,0.134062275290489,-0.439090073108673,-0.857405304908752,0.477951169013977,-0.190837234258652,-0.811523973941803,0.449567824602127,-0.373252779245377,-0.888384640216827,0.134062275290489,-0.439090073108673, +-0.954137742519379,0.116419486701488,-0.275803655385971,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.275809407234192,0.374302685260773,-0.885339856147766,-0.406125217676163,0.278219938278198,-0.87043434381485,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.522695064544678,0.226468831300735,-0.821889162063599,-0.616266191005707,0.263527393341064,-0.742138385772705,-0.764874339103699,0.1745974868536,-0.62006688117981,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.551132261753082,0.402223914861679,-0.731073975563049,-0.503602981567383,0.325766831636429,-0.800162494182587,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.372955113649368,0.4181028008461,-0.828308284282684,-0.563586592674255,0.4080491065979,-0.718238234519958,-0.572811841964722,0.325237363576889,-0.752401053905487,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.416779786348343,0.33247372508049,-0.846023440361023,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.332545906305313,0.353390842676163,-0.874373018741608,-0.259191989898682,0.317290842533112,-0.912220358848572, +-0.332545906305313,0.353390842676163,-0.874373018741608,-0.466602355241776,0.295693963766098,-0.833575010299683,-0.406125217676163,0.278219938278198,-0.87043434381485,-0.259191989898682,0.317290842533112,-0.912220358848572,-0.472465127706528,0.228311687707901,-0.85126405954361,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.136648505926132,0.295385599136353,-0.945555210113525,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.185375928878784,0.27700486779213,-0.942817091941833,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.336827337741852,0.317959636449814,-0.886255621910095,-0.278605908155441,0.336205929517746,-0.899635672569275,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.503602981567383,0.325766831636429,-0.800162494182587,-0.336827337741852,0.317959636449814,-0.886255621910095,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.429300874471664,0.35151481628418,-0.831948339939117,-0.363021939992905,0.285757720470428,-0.886880815029144,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.257343411445618,0.407351016998291,-0.87626451253891,-0.428832143545151,0.377016484737396,-0.820951700210571,-0.411490797996521,0.292597830295563,-0.86316967010498,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.535358011722565,0.59464019536972,-0.599828958511353, +-0.57160872220993,0.753607094287872,-0.324561089277267,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.57160872220993,0.753607094287872,-0.324561089277267,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.661113977432251,0.547075629234314,-0.513455450534821,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.661113977432251,0.547075629234314,-0.513455450534821,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.705912947654724,0.338270843029022,-0.622301936149597,-0.836455821990967,0.426117837429047,-0.344623446464539,-0.978557229042053,0.186423167586327,-0.0875906869769096,-0.788055837154388,0.269112676382065,-0.553666353225708,-0.25310093164444,0.309275209903717,-0.916672706604004,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.0662364661693573,0.3167804479599,-0.946183323860168,-0.0800846144556999,0.348891735076904,-0.933734893798828,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.0662364661693573,0.3167804479599,-0.946183323860168,-0.729383707046509,0.360981017351151,-0.581112861633301,-0.733271539211273,0.35336098074913,-0.580903470516205,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.697425842285156,0.352117657661438,-0.624187707901001,-0.732196271419525,0.344599336385727,-0.587486207485199,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.836693286895752,0.305153906345367,-0.454780757427216,-0.697425842285156,0.352117657661438,-0.624187707901001,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.412765175104141,0.837416112422943,-0.358272343873978, +-0.579877972602844,0.5845867395401,-0.567450225353241,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.579877972602844,0.5845867395401,-0.567450225353241,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.623322784900665,0.598875343799591,-0.502809107303619,-0.679025590419769,0.599670708179474,-0.42346128821373,-0.767209351062775,0.350538581609726,-0.537133455276489,-0.729383707046509,0.360981017351151,-0.581112861633301,-0.962598562240601,0.186348855495453,0.196667715907097,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.383445531129837,0.307848334312439,-0.87074613571167,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.607775926589966,0.349044471979141,-0.713285565376282,-0.400856047868729,0.33441886305809,-0.852923452854156,-0.635532975196838,0.760746121406555,0.131769448518753,-0.573742270469666,0.638030648231506,0.513552963733673,-0.785671651363373,0.226768895983696,0.575583100318909,-0.897319853305817,0.377036362886429,0.229479074478149,-0.573742270469666,0.638030648231506,0.513552963733673,-0.5271235704422,0.795305848121643,0.299381494522095,-0.88666570186615,0.37198206782341,0.274687677621841,-0.785671651363373,0.226768895983696,0.575583100318909,-0.785671651363373,0.226768895983696,0.575583100318909,-0.88666570186615,0.37198206782341,0.274687677621841,-0.97677755355835,0.115513071417809,0.180450409650803,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.897319853305817,0.377036362886429,0.229479074478149,-0.785671651363373,0.226768895983696,0.575583100318909,-0.839611113071442,0.0461909361183643,0.541220426559448,-0.962598562240601,0.186348855495453,0.196667715907097,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.924555361270905,0.129721865057945,-0.358286798000336,-0.96288138628006,0.131251558661461,-0.23586542904377,-0.97033816576004,0.154364034533501,-0.186052888631821, +-0.96288138628006,0.131251558661461,-0.23586542904377,-0.990341305732727,0.092634342610836,0.103164255619049,-0.97677755355835,0.115513071417809,0.180450409650803,-0.97033816576004,0.154364034533501,-0.186052888631821,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.458999872207642,0.861296474933624,-0.21791635453701,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.458999872207642,0.861296474933624,-0.21791635453701,-0.342942506074905,0.810506045818329,-0.474837124347687,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.57464325428009,0.412926346063614,-0.706595242023468,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.872512400150299,0.430023938417435,-0.231951043009758,-0.806437969207764,0.42504808306694,-0.41108626127243,-0.869873106479645,0.149856135249138,-0.469961613416672,-0.934169471263885,0.14848667383194,-0.324467390775681,-0.809337377548218,0.144351661205292,-0.569329082965851,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.288396179676056,0.137847170233727,-0.947536706924438,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.594127178192139,0.175180733203888,-0.785063445568085,-0.270094037055969,0.178405851125717,-0.946160912513733,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.567175269126892,0.539602279663086,0.62220698595047,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.835709750652313,0.249700054526329,-0.489120692014694,-0.567175269126892,0.539602279663086,0.62220698595047,-0.521687865257263,0.778944432735443,0.347975969314575,-0.891934096813202,0.180671438574791,0.414501368999481,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.891934096813202,0.180671438574791,0.414501368999481, +-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.830619513988495,-0.0403317101299763,0.555377900600433,-0.835709750652313,0.249700054526329,-0.489120692014694,-0.801831245422363,0.0807342603802681,0.59207147359848,-0.830619513988495,-0.0403317101299763,0.555377900600433,-0.809337377548218,0.144351661205292,-0.569329082965851,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.996747255325317,-0.0554885640740395,0.05844571813941,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.908711850643158,-0.0246684141457081,0.416694313287735,-0.993641018867493,0.0102178324013948,0.112129516899586,-0.392345577478409,0.919809639453888,0.00387298595160246,-0.365481734275818,0.927372515201569,-0.0800210386514664,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.928698837757111,0.34689873456955,-0.131071507930756,-0.365481734275818,0.927372515201569,-0.0800210386514664,-0.341704130172729,0.905311167240143,-0.252289474010468,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.764071941375732,0.389559626579285,-0.514234781265259,-0.844235479831696,0.0513768196105957,-0.533504366874695,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.928698837757111,0.34689873456955,-0.131071507930756,-0.866939425468445,0.38214898109436,-0.31996613740921,-0.925567328929901,0.0350111797451973,-0.376960635185242,-0.983992159366608,0.0290465168654919,-0.175829172134399,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.828936457633972,-0.0213418956845999,-0.558935403823853,-0.852664291858673,-0.0599740967154503,-0.519005417823792,-0.844235479831696,0.0513768196105957,-0.533504366874695, +-0.772837042808533,0.0912535265088081,-0.628009378910065,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.524913370609283,0.788064181804657,0.321591079235077,-0.894793093204498,0.415860712528229,0.162496373057365,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.524913370609283,0.788064181804657,0.321591079235077,-0.508084416389465,0.858207881450653,0.0730034038424492,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.894793093204498,0.415860712528229,0.162496373057365,-0.894793093204498,0.415860712528229,0.162496373057365,-0.912097990512848,0.406526505947113,-0.0530421920120716,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.817090034484863,0.455606251955032,-0.353251934051514,-0.894793093204498,0.415860712528229,0.162496373057365,-0.99055004119873,0.136028125882149,0.0175211671739817,-0.920582830905914,0.139670297503471,-0.364718109369278,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.939998984336853,0.0346109941601753,-0.339417189359665,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.982327401638031,0.123065315186977,-0.141024351119995,-0.932199239730835,0.121898554265499,-0.340801030397415,-0.377121925354004,0.921668231487274,-0.0911404639482498,-0.402263283729553,0.91288834810257,-0.0694204643368721,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.825659394264221,0.460083603858948,-0.326511442661285,-0.402263283729553,0.91288834810257,-0.0694204643368721,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.777646243572235,0.434475213289261,-0.454420030117035,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.895220398902893,0.123152531683445,-0.428268700838089, +-0.825659394264221,0.460083603858948,-0.326511442661285,-0.819938063621521,0.462089121341705,-0.337898164987564,-0.895220398902893,0.123152531683445,-0.428268700838089,-0.911805331707001,0.124898590147495,-0.391166627407074,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.810194373130798,0.0675911754369736,-0.582251310348511,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.835627198219299,0.120495788753033,-0.535917818546295,-0.802316725254059,0.112701095640659,-0.586162447929382,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.413335084915161,0.895001292228699,0.16771088540554,-0.415281802415848,0.888628661632538,0.194628059864044,-0.865572988986969,0.468763470649719,0.176193386316299,-0.892121970653534,0.44655305147171,0.0686207115650177,-0.865572988986969,0.468763470649719,0.176193386316299,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.998075902462006,0.061789084225893,0.00515868654474616,-0.985278785228729,0.125116720795631,-0.116496153175831,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.996628701686859,-0.0233113896101713,-0.0786629766225815,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.982478380203247,0.0632998570799828,0.175297811627388,-0.98933082818985,0.115568935871124,-0.0887030810117722,-0.343587458133698,0.937992751598358,0.0460143499076366,-0.386403530836105,0.916396677494049,0.10444837808609,-0.857255101203918,0.513546884059906,-0.0371929965913296,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.386403530836105,0.916396677494049,0.10444837808609,-0.462450176477432,0.886512696743011,0.015330545604229,-0.857405304908752,0.477951169013977,-0.190837234258652,-0.857255101203918,0.513546884059906,-0.0371929965913296,-0.857255101203918,0.513546884059906,-0.0371929965913296, +-0.857405304908752,0.477951169013977,-0.190837234258652,-0.954137742519379,0.116419486701488,-0.275803655385971,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.838858187198639,0.541620492935181,-0.0544441156089306,-0.857255101203918,0.513546884059906,-0.0371929965913296,-0.984937846660614,0.112990237772465,-0.130883455276489,-0.985278785228729,0.125116720795631,-0.116496153175831,4.66808523924556e-06,0.516847312450409,-0.856077551841736,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,0.0122514693066478,0.932336866855621,-0.361383080482483,-0.11115163564682,0.567677080631256,-0.815713167190552,-2.41231077779958e-06,0.906148970127106,-0.422958582639694,3.16250188916456e-05,0.998316526412964,0.0580002292990685,-0.0110622951760888,0.998569190502167,0.0523180291056633,0.0122514693066478,0.932336866855621,-0.361383080482483,0.0122514693066478,0.932336866855621,-0.361383080482483,-0.0110622951760888,0.998569190502167,0.0523180291056633,-0.0313069485127926,0.998219788074493,0.0507664456963539,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.11115163564682,0.567677080631256,-0.815713167190552,0.0122514693066478,0.932336866855621,-0.361383080482483,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.133362740278244,0.658979296684265,-0.740243673324585,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.0702982097864151,0.730232715606689,-0.67957216501236,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.00183687009848654,0.999996066093445,0.00214116298593581,-0.0121289221569896,0.999878108501434,-0.00983350537717342,-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.0121289221569896,0.999878108501434,-0.00983350537717342,-0.0477085039019585,0.998204052448273,0.0362274385988712,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.0702982097864151,0.730232715606689,-0.67957216501236, +-0.0366437584161758,0.959649205207825,-0.278801888227463,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.23155403137207,0.72040182352066,-0.653761267662048,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.132635354995728,0.961444854736328,-0.240897625684738,-0.0477085039019585,0.998204052448273,0.0362274385988712,-0.0319208353757858,0.994053065776825,0.104112789034843,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.0319208353757858,0.994053065776825,0.104112789034843,0.0952361598610878,0.993827521800995,0.0568938255310059,-0.161480590701103,0.963787972927094,-0.212218597531319,-0.392941147089005,0.683275163173676,-0.615412294864655,-0.212075263261795,0.959428668022156,-0.18579763174057,-0.161480590701103,0.963787972927094,-0.212218597531319,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.414056181907654,0.641231954097748,-0.646048843860626,-0.161480590701103,0.963787972927094,-0.212218597531319,-0.0369119942188263,0.92246276140213,-0.384317427873611,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.161480590701103,0.963787972927094,-0.212218597531319,0.0952361598610878,0.993827521800995,0.0568938255310059,0.295557230710983,0.950602173805237,-0.0948761776089668,-0.0369119942188263,0.92246276140213,-0.384317427873611,-0.0369119942188263,0.92246276140213,-0.384317427873611,0.295557230710983,0.950602173805237,-0.0948761776089668,0.0673517808318138,0.997349858283997,0.0275145396590233,-0.234841525554657,0.8384730219841,-0.491744220256805,-0.346486926078796,0.53506863117218,-0.770485758781433,-0.0369119942188263,0.92246276140213,-0.384317427873611,-0.234841525554657,0.8384730219841,-0.491744220256805,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.476159244775772,0.393549054861069,-0.786378800868988,-0.234841525554657,0.8384730219841,-0.491744220256805, +-0.292436748743057,0.864367842674255,-0.409083008766174,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.234841525554657,0.8384730219841,-0.491744220256805,0.0673517808318138,0.997349858283997,0.0275145396590233,-0.24118609726429,0.95075124502182,0.19468267261982,-0.292436748743057,0.864367842674255,-0.409083008766174,-0.292436748743057,0.864367842674255,-0.409083008766174,-0.24118609726429,0.95075124502182,0.19468267261982,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.436972111463547,0.495800077915192,-0.750491559505463,-0.292436748743057,0.864367842674255,-0.409083008766174,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.192235305905342,0.585782647132874,-0.787340044975281,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.137428820133209,0.880292117595673,-0.454091399908066,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.0432330444455147,0.999016404151917,0.00985363218933344,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.0432330444455147,0.999016404151917,0.00985363218933344,-0.0478165484964848,0.995825588703156,0.0777490139007568,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.159151554107666,0.618065655231476,-0.769847691059113,-0.108371660113335,0.89154589176178,-0.439774334430695,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.31618931889534,0.663016974925995,-0.678552031517029,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.249135732650757,0.953780472278595,-0.168030351400375,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.198717936873436,0.930292248725891,-0.308330297470093,-0.0478165484964848,0.995825588703156,0.0777490139007568,-0.0127053158357739,0.991984069347382,0.12572255730629, +-0.249135732650757,0.953780472278595,-0.168030351400375,-0.249135732650757,0.953780472278595,-0.168030351400375,-0.0127053158357739,0.991984069347382,0.12572255730629,0.102952942252159,0.99466747045517,0.00612190458923578,-0.169963926076889,0.965009570121765,-0.199672043323517,-0.480551302433014,0.691150426864624,-0.539797604084015,-0.249135732650757,0.953780472278595,-0.168030351400375,-0.169963926076889,0.965009570121765,-0.199672043323517,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.475067436695099,0.700509905815125,-0.532537937164307,-0.169963926076889,0.965009570121765,-0.199672043323517,-0.0803335383534431,0.915071129798889,-0.395210444927216,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.169963926076889,0.965009570121765,-0.199672043323517,0.102952942252159,0.99466747045517,0.00612190458923578,0.182742983102798,0.957685947418213,-0.22235669195652,-0.0803335383534431,0.915071129798889,-0.395210444927216,-0.0803335383534431,0.915071129798889,-0.395210444927216,0.182742983102798,0.957685947418213,-0.22235669195652,-0.0140211256220937,0.987421154975891,0.157489344477654,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.389499098062515,0.631221830844879,-0.670708060264587,-0.0803335383534431,0.915071129798889,-0.395210444927216,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.535358011722565,0.59464019536972,-0.599828958511353,-0.535358011722565,0.59464019536972,-0.599828958511353,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.57160872220993,0.753607094287872,-0.324561089277267,-0.228201031684875,0.935380220413208,-0.27016294002533,-0.0140211256220937,0.987421154975891,0.157489344477654,-0.182302907109261,0.842795491218567,0.506420195102692,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.182302907109261,0.842795491218567,0.506420195102692,-0.0752060860395432,0.948791146278381,0.306821525096893,-0.2175372838974,0.975914299488068,-0.0164011064916849, +-0.57160872220993,0.753607094287872,-0.324561089277267,-0.317300468683243,0.943354487419128,0.0969671159982681,-0.2175372838974,0.975914299488068,-0.0164011064916849,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.428949922323227,0.83077198266983,-0.354710936546326,-0.2175372838974,0.975914299488068,-0.0164011064916849,-0.156618073582649,0.980050384998322,-0.122360542416573,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.2175372838974,0.975914299488068,-0.0164011064916849,-0.0752060860395432,0.948791146278381,0.306821525096893,0.0103472154587507,0.992015898227692,0.125687316060066,-0.156618073582649,0.980050384998322,-0.122360542416573,-0.156618073582649,0.980050384998322,-0.122360542416573,0.0103472154587507,0.992015898227692,0.125687316060066,0.0168159790337086,0.997184991836548,0.0730706378817558,-0.17233806848526,0.979040145874023,-0.108535289764404,-0.36908370256424,0.844394505023956,-0.388297617435455,-0.156618073582649,0.980050384998322,-0.122360542416573,-0.17233806848526,0.979040145874023,-0.108535289764404,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.403362035751343,0.857372283935547,-0.319705843925476,-0.17233806848526,0.979040145874023,-0.108535289764404,-0.196722522377968,0.975988686084747,-0.0935221761465073,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.17233806848526,0.979040145874023,-0.108535289764404,0.0168159790337086,0.997184991836548,0.0730706378817558,0.0172094311565161,0.999496102333069,0.0266713909804821,-0.196722522377968,0.975988686084747,-0.0935221761465073,-0.196722522377968,0.975988686084747,-0.0935221761465073,0.0172094311565161,0.999496102333069,0.0266713909804821,0.058017011731863,0.987557113170624,-0.14616796374321,-0.169676408171654,0.963762521743774,-0.205843806266785,-0.445952296257019,0.856805741786957,-0.258863776922226,-0.196722522377968,0.975988686084747,-0.0935221761465073,-0.169676408171654,0.963762521743774,-0.205843806266785,-0.412765175104141,0.837416112422943,-0.358272343873978,-0.412765175104141,0.837416112422943,-0.358272343873978, +-0.169676408171654,0.963762521743774,-0.205843806266785,-0.114697873592377,0.91904205083847,-0.377102375030518,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.169676408171654,0.963762521743774,-0.205843806266785,0.058017011731863,0.987557113170624,-0.14616796374321,0.0911884754896164,0.92726469039917,-0.36313197016716,-0.114697873592377,0.91904205083847,-0.377102375030518,-0.114697873592377,0.91904205083847,-0.377102375030518,0.0911884754896164,0.92726469039917,-0.36313197016716,0.0375991500914097,0.989300429821014,-0.14096437394619,-0.169898360967636,0.984076023101807,-0.0522394739091396,-0.364530146121979,0.790561735630035,-0.492067009210587,-0.114697873592377,0.91904205083847,-0.377102375030518,-0.169898360967636,0.984076023101807,-0.0522394739091396,-0.635532975196838,0.760746121406555,0.131769448518753,-0.635532975196838,0.760746121406555,0.131769448518753,-0.169898360967636,0.984076023101807,-0.0522394739091396,-0.14804969727993,0.926994621753693,0.344618916511536,-0.573742270469666,0.638030648231506,0.513552963733673,-0.169898360967636,0.984076023101807,-0.0522394739091396,0.0375991500914097,0.989300429821014,-0.14096437394619,-0.0528116226196289,0.961616039276123,0.26926851272583,-0.14804969727993,0.926994621753693,0.344618916511536,-0.14804969727993,0.926994621753693,0.344618916511536,-0.0528116226196289,0.961616039276123,0.26926851272583,-0.0388301573693752,0.978021323680878,0.20485745370388,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.573742270469666,0.638030648231506,0.513552963733673,-0.14804969727993,0.926994621753693,0.344618916511536,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.5271235704422,0.795305848121643,0.299381494522095,-0.5271235704422,0.795305848121643,0.299381494522095,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.019896199926734,0.988689363002777,0.148652255535126,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.0648804306983948,0.969126343727112,0.237875089049339,-0.0388301573693752,0.978021323680878,0.20485745370388,0.00324956374242902,0.990513205528259,0.137379035353661, +-0.019896199926734,0.988689363002777,0.148652255535126,-0.019896199926734,0.988689363002777,0.148652255535126,0.00324956374242902,0.990513205528259,0.137379035353661,0.0307888351380825,0.993721127510071,0.107566244900227,-0.00052551890257746,0.99495267868042,0.100344128906727,-0.493113666772842,0.86547189950943,0.0883029624819756,-0.019896199926734,0.988689363002777,0.148652255535126,-0.00052551890257746,0.99495267868042,0.100344128906727,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.487300455570221,0.871883988380432,-0.0485444851219654,-0.00052551890257746,0.99495267868042,0.100344128906727,0.0212356559932232,0.999600768089294,0.0186338592320681,-0.458999872207642,0.861296474933624,-0.21791635453701,-0.00052551890257746,0.99495267868042,0.100344128906727,0.0307888351380825,0.993721127510071,0.107566244900227,0.0503260940313339,0.997583508491516,0.0478990525007248,0.0212356559932232,0.999600768089294,0.0186338592320681,0.0212356559932232,0.999600768089294,0.0186338592320681,0.0503260940313339,0.997583508491516,0.0478990525007248,0.09213537722826,0.989019989967346,-0.115543395280838,0.0685295760631561,0.983745336532593,-0.165978223085403,-0.458999872207642,0.861296474933624,-0.21791635453701,0.0212356559932232,0.999600768089294,0.0186338592320681,0.0685295760631561,0.983745336532593,-0.165978223085403,-0.342942506074905,0.810506045818329,-0.474837124347687,-0.342942506074905,0.810506045818329,-0.474837124347687,0.0685295760631561,0.983745336532593,-0.165978223085403,0.0967442467808723,0.931856572628021,-0.349691361188889,-0.222145259380341,0.690081894397736,-0.68879497051239,0.0685295760631561,0.983745336532593,-0.165978223085403,0.09213537722826,0.989019989967346,-0.115543395280838,0.119167521595955,0.956874191761017,-0.264935821294785,0.0967442467808723,0.931856572628021,-0.349691361188889,0.0967442467808723,0.931856572628021,-0.349691361188889,0.119167521595955,0.956874191761017,-0.264935821294785,0.0152148120105267,0.995371878147125,0.0948860645294189,-0.0430461131036282,0.99624639749527,0.0751009732484818, +-0.222145259380341,0.690081894397736,-0.68879497051239,0.0967442467808723,0.931856572628021,-0.349691361188889,-0.0430461131036282,0.99624639749527,0.0751009732484818,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.628916144371033,0.749110519886017,-0.208081513643265,-0.0430461131036282,0.99624639749527,0.0751009732484818,-0.113832533359528,0.835574746131897,0.537454068660736,-0.567175269126892,0.539602279663086,0.62220698595047,-0.0430461131036282,0.99624639749527,0.0751009732484818,0.0152148120105267,0.995371878147125,0.0948860645294189,-0.0964507162570953,0.859883785247803,0.501295387744904,-0.113832533359528,0.835574746131897,0.537454068660736,-0.113832533359528,0.835574746131897,0.537454068660736,-0.0964507162570953,0.859883785247803,0.501295387744904,-0.0318146236240864,0.979532301425934,0.198757156729698,0.00924856029450893,0.969927966594696,0.243216246366501,-0.567175269126892,0.539602279663086,0.62220698595047,-0.113832533359528,0.835574746131897,0.537454068660736,0.00924856029450893,0.969927966594696,0.243216246366501,-0.521687865257263,0.778944432735443,0.347975969314575,-0.521687865257263,0.778944432735443,0.347975969314575,0.00924856029450893,0.969927966594696,0.243216246366501,0.0844905227422714,0.992185533046722,0.0918112471699715,-0.448838919401169,0.886660933494568,0.111248157918453,0.00924856029450893,0.969927966594696,0.243216246366501,-0.0318146236240864,0.979532301425934,0.198757156729698,0.0101152528077364,0.998629570007324,0.0513481982052326,0.0844905227422714,0.992185533046722,0.0918112471699715,0.0844905227422714,0.992185533046722,0.0918112471699715,0.0101152528077364,0.998629570007324,0.0513481982052326,0.00432905880734324,0.995575487613678,0.0938657149672508,0.0916174277663231,0.988539695739746,0.119980908930302,-0.448838919401169,0.886660933494568,0.111248157918453,0.0844905227422714,0.992185533046722,0.0918112471699715,0.0916174277663231,0.988539695739746,0.119980908930302,-0.392345577478409,0.919809639453888,0.00387298595160246,-0.392345577478409,0.919809639453888,0.00387298595160246, +0.0916174277663231,0.988539695739746,0.119980908930302,0.0639674514532089,0.989400684833527,0.130363136529922,-0.365481734275818,0.927372515201569,-0.0800210386514664,0.0916174277663231,0.988539695739746,0.119980908930302,0.00432905880734324,0.995575487613678,0.0938657149672508,-0.00818966887891293,0.992629706859589,0.12090964615345,0.0639674514532089,0.989400684833527,0.130363136529922,0.0639674514532089,0.989400684833527,0.130363136529922,-0.00818966887891293,0.992629706859589,0.12090964615345,0.00470683723688126,0.999671161174774,0.0252069365233183,0.0410426110029221,0.999078214168549,0.0125779751688242,-0.365481734275818,0.927372515201569,-0.0800210386514664,0.0639674514532089,0.989400684833527,0.130363136529922,0.0410426110029221,0.999078214168549,0.0125779751688242,-0.341704130172729,0.905311167240143,-0.252289474010468,-0.341704130172729,0.905311167240143,-0.252289474010468,0.0410426110029221,0.999078214168549,0.0125779751688242,0.0234179329127073,0.987943470478058,-0.153033837676048,-0.316405475139618,0.84859436750412,-0.423998981714249,0.0410426110029221,0.999078214168549,0.0125779751688242,0.00470683723688126,0.999671161174774,0.0252069365233183,0.0430123768746853,0.991815567016602,-0.120214991271496,0.0234179329127073,0.987943470478058,-0.153033837676048,0.0234179329127073,0.987943470478058,-0.153033837676048,0.0430123768746853,0.991815567016602,-0.120214991271496,-0.0337237343192101,0.987117350101471,0.156403377652168,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.316405475139618,0.84859436750412,-0.423998981714249,0.0234179329127073,0.987943470478058,-0.153033837676048,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.440287828445435,0.894479215145111,-0.0778041183948517,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.188221752643585,0.90550708770752,0.380301922559738,-0.524913370609283,0.788064181804657,0.321591079235077,-0.0979857817292213,0.988150298595428,0.118142552673817,-0.0337237343192101,0.987117350101471,0.156403377652168, +-0.108519114553928,0.915941119194031,0.386361747980118,-0.188221752643585,0.90550708770752,0.380301922559738,-0.188221752643585,0.90550708770752,0.380301922559738,-0.108519114553928,0.915941119194031,0.386361747980118,-0.0254004187881947,0.987537741661072,0.155319169163704,-0.0925894305109978,0.98253470659256,0.161408603191376,-0.524913370609283,0.788064181804657,0.321591079235077,-0.188221752643585,0.90550708770752,0.380301922559738,-0.0925894305109978,0.98253470659256,0.161408603191376,-0.508084416389465,0.858207881450653,0.0730034038424492,-0.508084416389465,0.858207881450653,0.0730034038424492,-0.0925894305109978,0.98253470659256,0.161408603191376,0.00711704138666391,0.999914407730103,0.0109824491664767,-0.40931636095047,0.90296483039856,-0.130822703242302,-0.0925894305109978,0.98253470659256,0.161408603191376,-0.0254004187881947,0.987537741661072,0.155319169163704,0.0219353027641773,0.999756932258606,0.00226145260967314,0.00711704138666391,0.999914407730103,0.0109824491664767,0.00711704138666391,0.999914407730103,0.0109824491664767,0.0219353027641773,0.999756932258606,0.00226145260967314,0.00392397586256266,0.995427072048187,0.095443494617939,0.0195025783032179,0.9951012134552,0.096918411552906,-0.40931636095047,0.90296483039856,-0.130822703242302,0.00711704138666391,0.999914407730103,0.0109824491664767,0.0195025783032179,0.9951012134552,0.096918411552906,-0.377121925354004,0.921668231487274,-0.0911404639482498,-0.377121925354004,0.921668231487274,-0.0911404639482498,0.0195025783032179,0.9951012134552,0.096918411552906,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.402263283729553,0.91288834810257,-0.0694204643368721,0.0195025783032179,0.9951012134552,0.096918411552906,0.00392397586256266,0.995427072048187,0.095443494617939,-0.0135720372200012,0.985743761062622,0.167705237865448,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.0135720372200012,0.985743761062622,0.167705237865448,-7.09159357938915e-05,0.999376535415649,0.0353056378662586, +-0.0507439710199833,0.998709499835968,0.00209245411679149,-0.402263283729553,0.91288834810257,-0.0694204643368721,-0.0202871505171061,0.988543510437012,0.149565994739532,-0.0507439710199833,0.998709499835968,0.00209245411679149,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.40947613120079,0.888118803501129,-0.208745032548904,-0.0507439710199833,0.998709499835968,0.00209245411679149,-0.0563449561595917,0.982479393482208,-0.177649602293968,-0.38867861032486,0.85452264547348,-0.344557642936707,-0.0507439710199833,0.998709499835968,0.00209245411679149,-7.09159357938915e-05,0.999376535415649,0.0353056378662586,0.0249503254890442,0.988700151443481,-0.14781528711319,-0.0563449561595917,0.982479393482208,-0.177649602293968,-0.0563449561595917,0.982479393482208,-0.177649602293968,0.0249503254890442,0.988700151443481,-0.14781528711319,-0.00852504093199968,0.977734506130219,0.209672600030899,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.38867861032486,0.85452264547348,-0.344557642936707,-0.0563449561595917,0.982479393482208,-0.177649602293968,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.413335084915161,0.895001292228699,0.16771088540554,-0.415281802415848,0.888628661632538,0.194628059864044,-0.413335084915161,0.895001292228699,0.16771088540554,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.0813006535172462,0.975691854953766,0.203508347272873,-0.00852504093199968,0.977734506130219,0.209672600030899,-0.0121619552373886,0.98167097568512,0.19019527733326,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.415281802415848,0.888628661632538,0.194628059864044,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.00748832244426012,0.999597012996674,0.0273828916251659,-0.369071453809738,0.929379105567932,0.00637798011302948,-0.0646709874272346,0.977678656578064,0.199905306100845,-0.0121619552373886,0.98167097568512,0.19019527733326,0.00345631665550172,0.999890625476837,0.0143791576847434,-0.00748832244426012,0.999597012996674,0.0273828916251659, +-0.00748832244426012,0.999597012996674,0.0273828916251659,0.00345631665550172,0.999890625476837,0.0143791576847434,0.002303765155375,0.995579421520233,0.0938953906297684,0.015581950545311,0.995435893535614,0.0941513404250145,-0.369071453809738,0.929379105567932,0.00637798011302948,-0.00748832244426012,0.999597012996674,0.0273828916251659,0.015581950545311,0.995435893535614,0.0941513404250145,-0.343587458133698,0.937992751598358,0.0460143499076366,-0.343587458133698,0.937992751598358,0.0460143499076366,0.015581950545311,0.995435893535614,0.0941513404250145,-0.013194901868701,0.980666279792786,0.19524247944355,-0.386403530836105,0.916396677494049,0.10444837808609,0.015581950545311,0.995435893535614,0.0941513404250145,0.002303765155375,0.995579421520233,0.0938953906297684,-0.00380300800316036,0.977337718009949,0.211651727557182,-0.013194901868701,0.980666279792786,0.19524247944355,-0.013194901868701,0.980666279792786,0.19524247944355,-0.00380300800316036,0.977337718009949,0.211651727557182,-0.00152228341903538,0.977239012718201,0.212135836482048,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.386403530836105,0.916396677494049,0.10444837808609,-0.013194901868701,0.980666279792786,0.19524247944355,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.462450176477432,0.886512696743011,0.015330545604229,-0.462450176477432,0.886512696743011,0.015330545604229,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.117184713482857,0.990918934345245,0.0659342855215073,-0.513878643512726,0.845303356647491,-0.146256804466248,-0.0660990923643112,0.981787443161011,0.178113505244255,-0.00152228341903538,0.977239012718201,0.212135836482048,0.00482708029448986,0.994182825088501,0.107597917318344,-0.117184713482857,0.990918934345245,0.0659342855215073,-0.117184713482857,0.990918934345245,0.0659342855215073,0.00482708029448986,0.994182825088501,0.107597917318344,0.0506666153669357,0.996992409229279,-0.0586448013782501,-0.157791629433632,0.984245717525482,-0.0797630324959755,-0.513878643512726,0.845303356647491,-0.146256804466248, +-0.117184713482857,0.990918934345245,0.0659342855215073,-0.157791629433632,0.984245717525482,-0.0797630324959755,-0.577608048915863,0.788340985774994,-0.21186663210392,0.0943290740251541,0.0288522019982338,0.995122849941254,0.0316253863275051,0.795755922794342,0.604791283607483,-0.092217817902565,0.771196782588959,0.629882216453552,-0.10880571603775,0.0131476251408458,0.99397599697113,0.0316253863275051,0.795755922794342,0.604791283607483,-0.00183687009848654,0.999996066093445,0.00214116298593581,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.092217817902565,0.771196782588959,0.629882216453552,-0.092217817902565,0.771196782588959,0.629882216453552,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.0313069485127926,0.998219788074493,0.0507664456963539,-0.27617135643959,0.731259226799011,0.623689949512482,-0.10880571603775,0.0131476251408458,0.99397599697113,-0.092217817902565,0.771196782588959,0.629882216453552,-0.27617135643959,0.731259226799011,0.623689949512482,-0.416721314191818,-0.0176437478512526,0.908863008022308,0.311008453369141,0.129438325762749,0.941551625728607,0.14326636493206,0.767526388168335,0.624802529811859,0.0900027900934219,0.76776510477066,0.634378612041473,0.192267388105392,0.0386416390538216,0.980581521987915,0.14326636493206,0.767526388168335,0.624802529811859,-0.0477085039019585,0.998204052448273,0.0362274385988712,-0.0121289221569896,0.999878108501434,-0.00983350537717342,0.0900027900934219,0.76776510477066,0.634378612041473,0.0900027900934219,0.76776510477066,0.634378612041473,-0.0121289221569896,0.999878108501434,-0.00983350537717342,-0.00183687009848654,0.999996066093445,0.00214116298593581,0.0316253863275051,0.795755922794342,0.604791283607483,0.192267388105392,0.0386416390538216,0.980581521987915,0.0900027900934219,0.76776510477066,0.634378612041473,0.0316253863275051,0.795755922794342,0.604791283607483,0.0943290740251541,0.0288522019982338,0.995122849941254,0.80627965927124,0.405445098876953,0.430728703737259,0.436077535152435,0.860387980937958,0.26375937461853,0.24473749101162,0.838744223117828,0.486427545547485, +0.523320317268372,0.27934929728508,0.805046498775482,0.436077535152435,0.860387980937958,0.26375937461853,0.0952361598610878,0.993827521800995,0.0568938255310059,-0.0319208353757858,0.994053065776825,0.104112789034843,0.24473749101162,0.838744223117828,0.486427545547485,0.24473749101162,0.838744223117828,0.486427545547485,-0.0319208353757858,0.994053065776825,0.104112789034843,-0.0477085039019585,0.998204052448273,0.0362274385988712,0.14326636493206,0.767526388168335,0.624802529811859,0.523320317268372,0.27934929728508,0.805046498775482,0.24473749101162,0.838744223117828,0.486427545547485,0.14326636493206,0.767526388168335,0.624802529811859,0.311008453369141,0.129438325762749,0.941551625728607,0.57364547252655,0.204739347100258,0.793103218078613,0.370899677276611,0.784878849983215,0.496385633945465,0.64087963104248,0.767391085624695,0.0195998437702656,0.918852925300598,0.391142338514328,0.0521256364881992,0.370899677276611,0.784878849983215,0.496385633945465,0.0673517808318138,0.997349858283997,0.0275145396590233,0.295557230710983,0.950602173805237,-0.0948761776089668,0.64087963104248,0.767391085624695,0.0195998437702656,0.64087963104248,0.767391085624695,0.0195998437702656,0.295557230710983,0.950602173805237,-0.0948761776089668,0.0952361598610878,0.993827521800995,0.0568938255310059,0.436077535152435,0.860387980937958,0.26375937461853,0.918852925300598,0.391142338514328,0.0521256364881992,0.64087963104248,0.767391085624695,0.0195998437702656,0.436077535152435,0.860387980937958,0.26375937461853,0.80627965927124,0.405445098876953,0.430728703737259,-0.0601249672472477,0.0759568735957146,0.995296716690063,-0.0977206006646156,0.690484046936035,0.716716468334198,-0.216038152575493,0.53965163230896,0.813697457313538,-0.169697016477585,-0.00179272284731269,0.985494613647461,-0.0977206006646156,0.690484046936035,0.716716468334198,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.24118609726429,0.95075124502182,0.19468267261982,-0.216038152575493,0.53965163230896,0.813697457313538,-0.216038152575493,0.53965163230896,0.813697457313538, +-0.24118609726429,0.95075124502182,0.19468267261982,0.0673517808318138,0.997349858283997,0.0275145396590233,0.370899677276611,0.784878849983215,0.496385633945465,-0.169697016477585,-0.00179272284731269,0.985494613647461,-0.216038152575493,0.53965163230896,0.813697457313538,0.370899677276611,0.784878849983215,0.496385633945465,0.57364547252655,0.204739347100258,0.793103218078613,0.338340848684311,0.210584998130798,0.917158365249634,0.153821229934692,0.807217717170715,0.569858491420746,0.047969538718462,0.776811957359314,0.627902865409851,0.131848931312561,0.144873842597008,0.980626046657562,0.153821229934692,0.807217717170715,0.569858491420746,-0.0478165484964848,0.995825588703156,0.0777490139007568,-0.0432330444455147,0.999016404151917,0.00985363218933344,0.047969538718462,0.776811957359314,0.627902865409851,0.047969538718462,0.776811957359314,0.627902865409851,-0.0432330444455147,0.999016404151917,0.00985363218933344,-0.113140024244785,0.991845369338989,0.0586692951619625,-0.0977206006646156,0.690484046936035,0.716716468334198,0.131848931312561,0.144873842597008,0.980626046657562,0.047969538718462,0.776811957359314,0.627902865409851,-0.0977206006646156,0.690484046936035,0.716716468334198,-0.0601249672472477,0.0759568735957146,0.995296716690063,0.803968787193298,0.384839653968811,0.453356921672821,0.446645706892014,0.862121403217316,0.239278569817543,0.277985751628876,0.833320438861847,0.47780853509903,0.556516230106354,0.287375539541245,0.77955436706543,0.446645706892014,0.862121403217316,0.239278569817543,0.102952942252159,0.99466747045517,0.00612190458923578,-0.0127053158357739,0.991984069347382,0.12572255730629,0.277985751628876,0.833320438861847,0.47780853509903,0.277985751628876,0.833320438861847,0.47780853509903,-0.0127053158357739,0.991984069347382,0.12572255730629,-0.0478165484964848,0.995825588703156,0.0777490139007568,0.153821229934692,0.807217717170715,0.569858491420746,0.556516230106354,0.287375539541245,0.77955436706543,0.277985751628876,0.833320438861847,0.47780853509903,0.153821229934692,0.807217717170715,0.569858491420746, +0.338340848684311,0.210584998130798,0.917158365249634,0.254012256860733,0.141789615154266,0.956751525402069,0.162386640906334,0.794926583766937,0.584570229053497,0.495297431945801,0.863593935966492,-0.0942657589912415,0.887653052806854,0.459179997444153,0.0350099876523018,0.162386640906334,0.794926583766937,0.584570229053497,-0.0140211256220937,0.987421154975891,0.157489344477654,0.182742983102798,0.957685947418213,-0.22235669195652,0.495297431945801,0.863593935966492,-0.0942657589912415,0.495297431945801,0.863593935966492,-0.0942657589912415,0.182742983102798,0.957685947418213,-0.22235669195652,0.102952942252159,0.99466747045517,0.00612190458923578,0.446645706892014,0.862121403217316,0.239278569817543,0.887653052806854,0.459179997444153,0.0350099876523018,0.495297431945801,0.863593935966492,-0.0942657589912415,0.446645706892014,0.862121403217316,0.239278569817543,0.803968787193298,0.384839653968811,0.453356921672821,0.189795464277267,0.239581629633904,0.952144026756287,0.0542634166777134,0.735537588596344,0.675307333469391,-0.111539252102375,0.495245486497879,0.86156302690506,-0.0775697454810143,0.060862947255373,0.995127439498901,0.0542634166777134,0.735537588596344,0.675307333469391,-0.0752060860395432,0.948791146278381,0.306821525096893,-0.182302907109261,0.842795491218567,0.506420195102692,-0.111539252102375,0.495245486497879,0.86156302690506,-0.111539252102375,0.495245486497879,0.86156302690506,-0.182302907109261,0.842795491218567,0.506420195102692,-0.0140211256220937,0.987421154975891,0.157489344477654,0.162386640906334,0.794926583766937,0.584570229053497,-0.0775697454810143,0.060862947255373,0.995127439498901,-0.111539252102375,0.495245486497879,0.86156302690506,0.162386640906334,0.794926583766937,0.584570229053497,0.254012256860733,0.141789615154266,0.956751525402069,0.702990412712097,0.419565856456757,0.574255168437958,0.282113760709763,0.910610020160675,0.301995545625687,0.217031970620155,0.869852483272552,0.443005204200745,0.500296115875244,0.364424914121628,0.785428762435913,0.282113760709763,0.910610020160675,0.301995545625687, +0.0168159790337086,0.997184991836548,0.0730706378817558,0.0103472154587507,0.992015898227692,0.125687316060066,0.217031970620155,0.869852483272552,0.443005204200745,0.217031970620155,0.869852483272552,0.443005204200745,0.0103472154587507,0.992015898227692,0.125687316060066,-0.0752060860395432,0.948791146278381,0.306821525096893,0.0542634166777134,0.735537588596344,0.675307333469391,0.500296115875244,0.364424914121628,0.785428762435913,0.217031970620155,0.869852483272552,0.443005204200745,0.0542634166777134,0.735537588596344,0.675307333469391,0.189795464277267,0.239581629633904,0.952144026756287,0.87173056602478,0.45006275177002,-0.193725004792213,0.399394333362579,0.904639661312103,-0.148698210716248,0.33745151758194,0.929914116859436,0.146240413188934,0.850822269916534,0.454787462949753,0.263191670179367,0.399394333362579,0.904639661312103,-0.148698210716248,0.058017011731863,0.987557113170624,-0.14616796374321,0.0172094311565161,0.999496102333069,0.0266713909804821,0.33745151758194,0.929914116859436,0.146240413188934,0.33745151758194,0.929914116859436,0.146240413188934,0.0172094311565161,0.999496102333069,0.0266713909804821,0.0168159790337086,0.997184991836548,0.0730706378817558,0.282113760709763,0.910610020160675,0.301995545625687,0.850822269916534,0.454787462949753,0.263191670179367,0.33745151758194,0.929914116859436,0.146240413188934,0.282113760709763,0.910610020160675,0.301995545625687,0.702990412712097,0.419565856456757,0.574255168437958,0.785448968410492,0.584083378314972,0.204734981060028,0.19513937830925,0.971059203147888,-0.137711808085442,0.385677367448807,0.821133375167847,-0.420705229043961,0.754838287830353,0.40166237950325,-0.518542528152466,0.19513937830925,0.971059203147888,-0.137711808085442,0.0375991500914097,0.989300429821014,-0.14096437394619,0.0911884754896164,0.92726469039917,-0.36313197016716,0.385677367448807,0.821133375167847,-0.420705229043961,0.385677367448807,0.821133375167847,-0.420705229043961,0.0911884754896164,0.92726469039917,-0.36313197016716,0.058017011731863,0.987557113170624,-0.14616796374321, +0.399394333362579,0.904639661312103,-0.148698210716248,0.754838287830353,0.40166237950325,-0.518542528152466,0.385677367448807,0.821133375167847,-0.420705229043961,0.399394333362579,0.904639661312103,-0.148698210716248,0.87173056602478,0.45006275177002,-0.193725004792213,0.548696398735046,0.668518900871277,0.502010822296143,0.00152639474254102,0.968944251537323,0.247274860739708,-0.0557848513126373,0.906190931797028,0.419172912836075,0.149979919195175,0.432588964700699,0.889029085636139,0.00152639474254102,0.968944251537323,0.247274860739708,-0.0388301573693752,0.978021323680878,0.20485745370388,-0.0528116226196289,0.961616039276123,0.26926851272583,-0.0557848513126373,0.906190931797028,0.419172912836075,-0.0557848513126373,0.906190931797028,0.419172912836075,-0.0528116226196289,0.961616039276123,0.26926851272583,0.0375991500914097,0.989300429821014,-0.14096437394619,0.19513937830925,0.971059203147888,-0.137711808085442,0.149979919195175,0.432588964700699,0.889029085636139,-0.0557848513126373,0.906190931797028,0.419172912836075,0.19513937830925,0.971059203147888,-0.137711808085442,0.785448968410492,0.584083378314972,0.204734981060028,0.601027071475983,0.790183782577515,0.119900159537792,0.0347275286912918,0.994239151477814,0.101403146982193,0.0272583737969398,0.99127209186554,0.128983035683632,0.624202966690063,0.76788067817688,0.143978625535965,0.0347275286912918,0.994239151477814,0.101403146982193,0.0307888351380825,0.993721127510071,0.107566244900227,0.00324956374242902,0.990513205528259,0.137379035353661,0.0272583737969398,0.99127209186554,0.128983035683632,0.0272583737969398,0.99127209186554,0.128983035683632,0.00324956374242902,0.990513205528259,0.137379035353661,-0.0388301573693752,0.978021323680878,0.20485745370388,0.00152639474254102,0.968944251537323,0.247274860739708,0.624202966690063,0.76788067817688,0.143978625535965,0.0272583737969398,0.99127209186554,0.128983035683632,0.00152639474254102,0.968944251537323,0.247274860739708,0.548696398735046,0.668518900871277,0.502010822296143,0.693340718746185,0.714396417140961,-0.0944258198142052, +0.128191024065018,0.984565615653992,-0.119153402745724,0.063341036438942,0.996840834617615,0.0479210540652275,0.633487701416016,0.76544189453125,0.113101147115231,0.128191024065018,0.984565615653992,-0.119153402745724,0.09213537722826,0.989019989967346,-0.115543395280838,0.0503260940313339,0.997583508491516,0.0478990525007248,0.063341036438942,0.996840834617615,0.0479210540652275,0.063341036438942,0.996840834617615,0.0479210540652275,0.0503260940313339,0.997583508491516,0.0478990525007248,0.0307888351380825,0.993721127510071,0.107566244900227,0.0347275286912918,0.994239151477814,0.101403146982193,0.633487701416016,0.76544189453125,0.113101147115231,0.063341036438942,0.996840834617615,0.0479210540652275,0.0347275286912918,0.994239151477814,0.101403146982193,0.601027071475983,0.790183782577515,0.119900159537792,0.628531694412231,0.683484315872192,0.371210426092148,0.0608241781592369,0.990066409111023,0.126763314008713,0.173851832747459,0.945185542106628,-0.276405245065689,0.699336349964142,0.640298962593079,-0.317719727754593,0.0608241781592369,0.990066409111023,0.126763314008713,0.0152148120105267,0.995371878147125,0.0948860645294189,0.119167521595955,0.956874191761017,-0.264935821294785,0.173851832747459,0.945185542106628,-0.276405245065689,0.173851832747459,0.945185542106628,-0.276405245065689,0.119167521595955,0.956874191761017,-0.264935821294785,0.09213537722826,0.989019989967346,-0.115543395280838,0.128191024065018,0.984565615653992,-0.119153402745724,0.699336349964142,0.640298962593079,-0.317719727754593,0.173851832747459,0.945185542106628,-0.276405245065689,0.128191024065018,0.984565615653992,-0.119153402745724,0.693340718746185,0.714396417140961,-0.0944258198142052,0.340618073940277,0.749954223632813,0.567052066326141,-0.0778845399618149,0.968756437301636,0.235467776656151,-0.120079904794693,0.812858641147614,0.569948792457581,0.148756414651871,0.46286728978157,0.873856604099274,-0.0778845399618149,0.968756437301636,0.235467776656151,-0.0318146236240864,0.979532301425934,0.198757156729698,-0.0964507162570953,0.859883785247803,0.501295387744904, +-0.120079904794693,0.812858641147614,0.569948792457581,-0.120079904794693,0.812858641147614,0.569948792457581,-0.0964507162570953,0.859883785247803,0.501295387744904,0.0152148120105267,0.995371878147125,0.0948860645294189,0.0608241781592369,0.990066409111023,0.126763314008713,0.148756414651871,0.46286728978157,0.873856604099274,-0.120079904794693,0.812858641147614,0.569948792457581,0.0608241781592369,0.990066409111023,0.126763314008713,0.628531694412231,0.683484315872192,0.371210426092148,0.355875700712204,0.906293213367462,0.228002443909645,-0.0914863049983978,0.993721783161163,0.0643994733691216,-0.0741240307688713,0.995790958404541,0.0539057552814484,0.389368146657944,0.872968256473541,0.293800622224808,-0.0914863049983978,0.993721783161163,0.0643994733691216,0.00432905880734324,0.995575487613678,0.0938657149672508,0.0101152528077364,0.998629570007324,0.0513481982052326,-0.0741240307688713,0.995790958404541,0.0539057552814484,-0.0741240307688713,0.995790958404541,0.0539057552814484,0.0101152528077364,0.998629570007324,0.0513481982052326,-0.0318146236240864,0.979532301425934,0.198757156729698,-0.0778845399618149,0.968756437301636,0.235467776656151,0.389368146657944,0.872968256473541,0.293800622224808,-0.0741240307688713,0.995790958404541,0.0539057552814484,-0.0778845399618149,0.968756437301636,0.235467776656151,0.340618073940277,0.749954223632813,0.567052066326141,0.460872143507004,0.886726438999176,0.0362347550690174,-0.0077669988386333,0.999922454357147,-0.00973335932940245,-0.0701415315270424,0.994135320186615,0.0823114439845085,0.384320706129074,0.901485502719879,0.199051231145859,-0.0077669988386333,0.999922454357147,-0.00973335932940245,0.00470683723688126,0.999671161174774,0.0252069365233183,-0.00818966887891293,0.992629706859589,0.12090964615345,-0.0701415315270424,0.994135320186615,0.0823114439845085,-0.0701415315270424,0.994135320186615,0.0823114439845085,-0.00818966887891293,0.992629706859589,0.12090964615345,0.00432905880734324,0.995575487613678,0.0938657149672508,-0.0914863049983978,0.993721783161163,0.0643994733691216, +0.384320706129074,0.901485502719879,0.199051231145859,-0.0701415315270424,0.994135320186615,0.0823114439845085,-0.0914863049983978,0.993721783161163,0.0643994733691216,0.355875700712204,0.906293213367462,0.228002443909645,0.35998409986496,0.867266118526459,0.343890994787216,0.0161274503916502,0.983354330062866,0.180981144309044,0.0682670697569847,0.982852220535278,-0.171292245388031,0.474772721529007,0.848200619220734,-0.234832912683487,0.0161274503916502,0.983354330062866,0.180981144309044,-0.0337237343192101,0.987117350101471,0.156403377652168,0.0430123768746853,0.991815567016602,-0.120214991271496,0.0682670697569847,0.982852220535278,-0.171292245388031,0.0682670697569847,0.982852220535278,-0.171292245388031,0.0430123768746853,0.991815567016602,-0.120214991271496,0.00470683723688126,0.999671161174774,0.0252069365233183,-0.0077669988386333,0.999922454357147,-0.00973335932940245,0.474772721529007,0.848200619220734,-0.234832912683487,0.0682670697569847,0.982852220535278,-0.171292245388031,-0.0077669988386333,0.999922454357147,-0.00973335932940245,0.460872143507004,0.886726438999176,0.0362347550690174,0.394051760435104,0.804004788398743,0.445308446884155,0.0325187593698502,0.976952314376831,0.210965871810913,-0.0386612713336945,0.895626246929169,0.44312384724617,0.22581060230732,0.695758759975433,0.681857287883759,0.0325187593698502,0.976952314376831,0.210965871810913,-0.0254004187881947,0.987537741661072,0.155319169163704,-0.108519114553928,0.915941119194031,0.386361747980118,-0.0386612713336945,0.895626246929169,0.44312384724617,-0.0386612713336945,0.895626246929169,0.44312384724617,-0.108519114553928,0.915941119194031,0.386361747980118,-0.0337237343192101,0.987117350101471,0.156403377652168,0.0161274503916502,0.983354330062866,0.180981144309044,0.22581060230732,0.695758759975433,0.681857287883759,-0.0386612713336945,0.895626246929169,0.44312384724617,0.0161274503916502,0.983354330062866,0.180981144309044,0.35998409986496,0.867266118526459,0.343890994787216,0.398877888917923,0.881957292556763,0.251093447208405,-0.0139050232246518,0.995923221111298,0.0891261100769043, +0.029930155724287,0.999076426029205,0.0308278258889914,0.437616169452667,0.872551083564758,0.217133089900017,-0.0139050232246518,0.995923221111298,0.0891261100769043,0.00392397586256266,0.995427072048187,0.095443494617939,0.0219353027641773,0.999756932258606,0.00226145260967314,0.029930155724287,0.999076426029205,0.0308278258889914,0.029930155724287,0.999076426029205,0.0308278258889914,0.0219353027641773,0.999756932258606,0.00226145260967314,-0.0254004187881947,0.987537741661072,0.155319169163704,0.0325187593698502,0.976952314376831,0.210965871810913,0.437616169452667,0.872551083564758,0.217133089900017,0.029930155724287,0.999076426029205,0.0308278258889914,0.0325187593698502,0.976952314376831,0.210965871810913,0.394051760435104,0.804004788398743,0.445308446884155,0.521250128746033,0.839334070682526,0.154326602816582,0.0765232518315315,0.996190786361694,0.041808694601059,0.00862592738121748,0.986981630325317,0.160601481795311,0.436673671007156,0.842924654483795,0.314315378665924,0.0765232518315315,0.996190786361694,0.041808694601059,-7.09159357938915e-05,0.999376535415649,0.0353056378662586,-0.0135720372200012,0.985743761062622,0.167705237865448,0.00862592738121748,0.986981630325317,0.160601481795311,0.00862592738121748,0.986981630325317,0.160601481795311,-0.0135720372200012,0.985743761062622,0.167705237865448,0.00392397586256266,0.995427072048187,0.095443494617939,-0.0139050232246518,0.995923221111298,0.0891261100769043,0.436673671007156,0.842924654483795,0.314315378665924,0.00862592738121748,0.986981630325317,0.160601481795311,-0.0139050232246518,0.995923221111298,0.0891261100769043,0.398877888917923,0.881957292556763,0.251093447208405,0.384831994771957,0.823053538799286,0.417716801166534,0.0541492849588394,0.968682885169983,0.242324933409691,0.111546769738197,0.982672929763794,-0.148024842143059,0.506224989891052,0.854502975940704,-0.116451598703861,0.0541492849588394,0.968682885169983,0.242324933409691,-0.00852504093199968,0.977734506130219,0.209672600030899,0.0249503254890442,0.988700151443481,-0.14781528711319, +0.111546769738197,0.982672929763794,-0.148024842143059,0.111546769738197,0.982672929763794,-0.148024842143059,0.0249503254890442,0.988700151443481,-0.14781528711319,-7.09159357938915e-05,0.999376535415649,0.0353056378662586,0.0765232518315315,0.996190786361694,0.041808694601059,0.506224989891052,0.854502975940704,-0.116451598703861,0.111546769738197,0.982672929763794,-0.148024842143059,0.0765232518315315,0.996190786361694,0.041808694601059,0.521250128746033,0.839334070682526,0.154326602816582,0.384831994771957,0.823053538799286,0.417716801166534,0.452140301465988,0.806186378002167,0.381618410348892,0.0584053285419941,0.971589744091034,0.229351609945297,0.0541492849588394,0.968682885169983,0.242324933409691,0.0584053285419941,0.971589744091034,0.229351609945297,-0.0121619552373886,0.98167097568512,0.19019527733326,-0.00852504093199968,0.977734506130219,0.209672600030899,0.0541492849588394,0.968682885169983,0.242324933409691,0.370153248310089,0.92108142375946,0.120812572538853,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.0155424000695348,0.999395132064819,0.0311088878661394,0.416480928659439,0.906339287757874,0.0713638886809349,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.002303765155375,0.995579421520233,0.0938953906297684,0.00345631665550172,0.999890625476837,0.0143791576847434,0.0155424000695348,0.999395132064819,0.0311088878661394,0.0155424000695348,0.999395132064819,0.0311088878661394,0.00345631665550172,0.999890625476837,0.0143791576847434,-0.0121619552373886,0.98167097568512,0.19019527733326,0.0584053285419941,0.971589744091034,0.229351609945297,0.416480928659439,0.906339287757874,0.0713638886809349,0.0155424000695348,0.999395132064819,0.0311088878661394,0.0584053285419941,0.971589744091034,0.229351609945297,0.452140301465988,0.806186378002167,0.381618410348892,0.545852899551392,0.837256550788879,-0.0323435328900814,0.0829665437340736,0.98315840959549,0.162837713956833,0.0156417097896338,0.980690956115723,0.194937720894814,0.442724764347076,0.874292135238647,0.19901779294014,0.0829665437340736,0.98315840959549,0.162837713956833, +-0.00152228341903538,0.977239012718201,0.212135836482048,-0.00380300800316036,0.977337718009949,0.211651727557182,0.0156417097896338,0.980690956115723,0.194937720894814,0.0156417097896338,0.980690956115723,0.194937720894814,-0.00380300800316036,0.977337718009949,0.211651727557182,0.002303765155375,0.995579421520233,0.0938953906297684,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.442724764347076,0.874292135238647,0.19901779294014,0.0156417097896338,0.980690956115723,0.194937720894814,-0.0166357681155205,0.995624303817749,0.0919543579220772,0.370153248310089,0.92108142375946,0.120812572538853,0.552241027355194,0.750507056713104,-0.362999767065048,0.185870006680489,0.974829435348511,-0.123125806450844,0.12065777182579,0.992693722248077,0.000793443527072668,0.490617632865906,0.784561336040497,-0.379153966903687,0.185870006680489,0.974829435348511,-0.123125806450844,0.0506666153669357,0.996992409229279,-0.0586448013782501,0.00482708029448986,0.994182825088501,0.107597917318344,0.12065777182579,0.992693722248077,0.000793443527072668,0.12065777182579,0.992693722248077,0.000793443527072668,0.00482708029448986,0.994182825088501,0.107597917318344,-0.00152228341903538,0.977239012718201,0.212135836482048,0.0829665437340736,0.98315840959549,0.162837713956833,0.490617632865906,0.784561336040497,-0.379153966903687,0.12065777182579,0.992693722248077,0.000793443527072668,0.0829665437340736,0.98315840959549,0.162837713956833,0.545852899551392,0.837256550788879,-0.0323435328900814,0.176005661487579,-0.290910065174103,0.940421879291534,0.228964373469353,-0.288229167461395,0.92978447675705,0.272147238254547,-0.176300823688507,0.945967197418213,0.135276660323143,-0.174784734845161,0.975269436836243,0.176005661487579,-0.290910065174103,0.940421879291534,0.135276660323143,-0.174784734845161,0.975269436836243,0.0497473366558552,-0.134566709399223,0.989654958248138,0.177994892001152,-0.28425520658493,0.942081153392792,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.368761420249939,0.0988195315003395,-0.924256324768066, +-0.323321968317032,0.276273161172867,-0.905061423778534,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.318880528211594,0.120925262570381,-0.940049111843109,0.538938403129578,-0.218982368707657,0.813383162021637,0.592859327793121,-0.200990110635757,0.77982097864151,0.608900904655457,-0.122346572577953,0.783754348754883,0.641211926937103,-0.110249705612659,0.759402573108673,0.538938403129578,-0.218982368707657,0.813383162021637,0.641211926937103,-0.110249705612659,0.759402573108673,0.53625351190567,-0.0949005037546158,0.838704824447632,0.503244817256927,-0.229387789964676,0.833142101764679,0.451806783676147,-0.247525587677956,0.857089102268219,0.46940404176712,-0.239579230546951,0.849859774112701,0.510328412055969,-0.0449175722897053,0.858805775642395,0.541524887084961,-0.117356345057487,0.832453191280365,0.451806783676147,-0.247525587677956,0.857089102268219,0.541524887084961,-0.117356345057487,0.832453191280365,0.465275973081589,-0.175810903310776,0.867530286312103,0.427427232265472,-0.254156500101089,0.867588937282562,0.516300976276398,-0.446030616760254,0.73108834028244,0.499750405550003,-0.3817298412323,0.777516484260559,0.510328412055969,-0.0449175722897053,0.858805775642395,0.45816645026207,-0.046262338757515,0.887661695480347,0.516300976276398,-0.446030616760254,0.73108834028244,0.45816645026207,-0.046262338757515,0.887661695480347,0.53625351190567,-0.0949005037546158,0.838704824447632,0.709072232246399,-0.490383982658386,0.506695330142975,0.23476405441761,-0.475362211465836,0.847889482975006,0.54632157087326,-0.482646822929382,0.684532463550568,0.608900904655457,-0.122346572577953,0.783754348754883,0.581367552280426,-0.112330824136734,0.805849611759186,0.23476405441761,-0.475362211465836,0.847889482975006,0.581367552280426,-0.112330824136734,0.805849611759186,0.658480286598206,-0.0952623412013054,0.746544599533081,0.423094630241394,-0.536581158638,0.730117499828339, +0.206263855099678,-0.364544987678528,0.908054053783417,0.354619860649109,-0.380006402730942,0.854306638240814,0.3477483689785,-0.198941215872765,0.91623866558075,0.371367067098618,-0.194919556379318,0.907795608043671,0.206263855099678,-0.364544987678528,0.908054053783417,0.371367067098618,-0.194919556379318,0.907795608043671,0.465275973081589,-0.175810903310776,0.867530286312103,0.354210317134857,-0.385083884000778,0.852200388908386,0.724205315113068,-0.169191837310791,0.668506324291229,0.784613907337189,-0.148418456315994,0.601957619190216,0.756192922592163,-0.0511609390377998,0.652345716953278,0.723184883594513,-0.061912901699543,0.687873840332031,0.724205315113068,-0.169191837310791,0.668506324291229,0.723184883594513,-0.061912901699543,0.687873840332031,0.658480286598206,-0.0952623412013054,0.746544599533081,0.686221122741699,-0.180150583386421,0.704731523990631,0.339633166790009,-0.266489624977112,0.902015805244446,0.362585753202438,-0.260607570409775,0.894771039485931,0.3477483689785,-0.198941215872765,0.91623866558075,0.342980980873108,-0.175373032689095,0.92282623052597,0.339633166790009,-0.266489624977112,0.902015805244446,0.342980980873108,-0.175373032689095,0.92282623052597,0.30705800652504,-0.151796445250511,0.939506888389587,0.326374977827072,-0.270279616117477,0.905774891376495,0.769442439079285,-0.503196477890015,0.393384665250778,0.693200528621674,-0.491481930017471,0.527179837226868,0.756192922592163,-0.0511609390377998,0.652345716953278,0.792554795742035,-0.0888480767607689,0.603293359279633,0.769442439079285,-0.503196477890015,0.393384665250778,0.792554795742035,-0.0888480767607689,0.603293359279633,0.84916090965271,-0.13398066163063,0.510856926441193,0.854461014270782,-0.476516664028168,0.206949934363365,0.328068912029266,-0.452030867338181,0.82948112487793,0.289807885885239,-0.43032768368721,0.854885756969452,0.333074867725372,-0.117942728102207,0.935494780540466,0.297187924385071,-0.123561941087246,0.946790277957916,0.328068912029266,-0.452030867338181,0.82948112487793,0.297187924385071,-0.123561941087246,0.946790277957916, +0.30705800652504,-0.151796445250511,0.939506888389587,0.440867334604263,-0.435717403888702,0.784720599651337,0.886831343173981,-0.116333656013012,0.447209715843201,0.910833716392517,-0.10109194368124,0.400202870368958,0.92792272567749,-0.139109119772911,0.345843940973282,0.908291161060333,-0.145772188901901,0.392119407653809,0.886831343173981,-0.116333656013012,0.447209715843201,0.908291161060333,-0.145772188901901,0.392119407653809,0.84916090965271,-0.13398066163063,0.510856926441193,0.869021952152252,-0.121415354311466,0.479644626379013,0.27497398853302,-0.280620843172073,0.919587433338165,0.299889504909515,-0.273949265480042,0.913793206214905,0.333074867725372,-0.117942728102207,0.935494780540466,0.346659570932388,-0.147837936878204,0.926267266273499,0.27497398853302,-0.280620843172073,0.919587433338165,0.346659570932388,-0.147837936878204,0.926267266273499,0.272147238254547,-0.176300823688507,0.945967197418213,0.228964373469353,-0.288229167461395,0.92978447675705,0.588849186897278,-0.495052307844162,0.63888955116272,0.826905488967896,-0.45468458533287,0.330891579389572,0.92792272567749,-0.139109119772911,0.345843940973282,0.919524729251862,-0.11089226603508,0.377063989639282,0.588849186897278,-0.495052307844162,0.63888955116272,0.919524729251862,-0.11089226603508,0.377063989639282,0.892889142036438,-0.0994650796055794,0.439153373241425,0.60429185628891,-0.509560883045197,0.612518608570099,0.840165615081787,-0.14305616915226,0.523122012615204,0.82776153087616,-0.14987875521183,0.540691316127777,0.846161961555481,-0.03146817907691,0.531995892524719,0.866094946861267,-0.071600578725338,0.494725108146667,0.840165615081787,-0.14305616915226,0.523122012615204,0.866094946861267,-0.071600578725338,0.494725108146667,0.892889142036438,-0.0994650796055794,0.439153373241425,0.888745725154877,-0.113963581621647,0.444008260965347,0.894481062889099,-0.324167281389236,0.307927399873734,0.83910346031189,-0.326700925827026,0.434938907623291,0.846161961555481,-0.03146817907691,0.531995892524719,0.824237048625946,-0.0209046006202698,0.565859079360962, +0.894481062889099,-0.324167281389236,0.307927399873734,0.824237048625946,-0.0209046006202698,0.565859079360962,0.818676471710205,-0.0259896032512188,0.573666512966156,0.937271595001221,-0.292794436216354,0.189191550016403,0.815493226051331,-0.138903215527534,0.56185108423233,0.826237261295319,-0.133032575249672,0.547388553619385,0.831015765666962,-0.0195813197642565,0.55590409040451,0.824919760227203,-0.025544935837388,0.564672410488129,0.815493226051331,-0.138903215527534,0.56185108423233,0.824919760227203,-0.025544935837388,0.564672410488129,0.818676471710205,-0.0259896032512188,0.573666512966156,0.820954740047455,-0.140668287873268,0.553394675254822,0.615043818950653,-0.242926478385925,0.750138580799103,0.773024499416351,-0.251035571098328,0.582592725753784,0.831015765666962,-0.0195813197642565,0.55590409040451,0.83541464805603,-0.0103724785149097,0.549522280693054,0.615043818950653,-0.242926478385925,0.750138580799103,0.83541464805603,-0.0103724785149097,0.549522280693054,0.827139914035797,-0.00921932328492403,0.561920404434204,0.694501519203186,-0.291511297225952,0.657790899276733,0.833731591701508,-0.146685212850571,0.532329797744751,0.832327723503113,-0.150266587734222,0.533526301383972,0.818549573421478,-0.0268298108130693,0.573809087276459,0.815437734127045,-0.016533300280571,0.578608632087708,0.833731591701508,-0.146685212850571,0.532329797744751,0.815437734127045,-0.016533300280571,0.578608632087708,0.827139914035797,-0.00921932328492403,0.561920404434204,0.839163839817047,-0.139088898897171,0.525793135166168,0.829259037971497,-0.332770079374313,0.448991775512695,0.786836504936218,-0.339921623468399,0.515113234519958,0.818549573421478,-0.0268298108130693,0.573809087276459,0.839722514152527,-0.0430349707603455,0.541307747364044,0.829259037971497,-0.332770079374313,0.448991775512695,0.839722514152527,-0.0430349707603455,0.541307747364044,0.895096182823181,-0.0639328360557556,0.441265851259232,0.902224242687225,-0.345201700925827,0.258509546518326,0.885190367698669,-0.127925336360931,0.447295337915421,0.901916682720184,-0.10628217458725,0.418629169464111, +0.956947982311249,0.0141221741214395,0.289915651082993,0.949248135089874,-0.0469713434576988,0.311001002788544,0.885190367698669,-0.127925336360931,0.447295337915421,0.949248135089874,-0.0469713434576988,0.311001002788544,0.895096182823181,-0.0639328360557556,0.441265851259232,0.859896123409271,-0.142539709806442,0.490164369344711,0.794584929943085,-0.250500679016113,0.553068041801453,0.930343925952911,-0.284103631973267,0.231830254197121,0.956947982311249,0.0141221741214395,0.289915651082993,0.940903544425964,0.070175789296627,0.331324458122253,0.794584929943085,-0.250500679016113,0.553068041801453,0.940903544425964,0.070175789296627,0.331324458122253,0.943983197212219,0.128329202532768,0.304018646478653,0.850567281246185,-0.294763803482056,0.43548783659935,0.92790675163269,-0.0666510611772537,0.366806298494339,0.940891146659851,-0.0501523986458778,0.33497542142868,0.890287518501282,0.311503052711487,0.33219587802887,0.930425465106964,0.224328979849815,0.289801716804504,0.92790675163269,-0.0666510611772537,0.366806298494339,0.930425465106964,0.224328979849815,0.289801716804504,0.943983197212219,0.128329202532768,0.304018646478653,0.920228779315948,-0.0795585364103317,0.383209377527237,0.924628794193268,-0.320484489202499,0.205794230103493,0.909848988056183,-0.299331039190292,0.287360101938248,0.890287518501282,0.311503052711487,0.33219587802887,0.874410927295685,0.288264513015747,0.39026814699173,0.924628794193268,-0.320484489202499,0.205794230103493,0.874410927295685,0.288264513015747,0.39026814699173,0.87207442522049,0.226961046457291,0.43356055021286,0.945364832878113,-0.312039226293564,0.0944293588399887,0.921497642993927,-0.0544302947819233,0.384550929069519,0.957352161407471,-0.0185783803462982,0.288325995206833,0.92098480463028,0.143564224243164,0.362182676792145,0.880670130252838,0.180893376469612,0.43783301115036,0.921497642993927,-0.0544302947819233,0.384550929069519,0.880670130252838,0.180893376469612,0.43783301115036,0.87207442522049,0.226961046457291,0.43356055021286,0.932468891143799,-0.0516576319932938,0.357537627220154, +0.860090136528015,-0.273277372121811,0.430771857500076,0.805659294128418,-0.350429505109787,0.477611005306244,0.92098480463028,0.143564224243164,0.362182676792145,0.962466359138489,0.0948556363582611,0.254285275936127,0.997261524200439,0.0188792794942856,0.0715057924389839,0.998301982879639,0.0185902323573828,0.0552037134766579,0.997867584228516,0.000807996664661914,0.0652675926685333,0.993885099887848,0.0228749252855778,0.108024179935455,0.997261524200439,0.0188792794942856,0.0715057924389839,0.993885099887848,0.0228749252855778,0.108024179935455,0.962466359138489,0.0948556363582611,0.254285275936127,0.98707377910614,0.00784813892096281,0.160074472427368,0.922730565071106,-0.380059778690338,-0.064209558069706,0.915882885456085,-0.400456249713898,0.0281630977988243,0.997867584228516,0.000807996664661914,0.0652675926685333,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.922730565071106,-0.380059778690338,-0.064209558069706,0.998738765716553,-0.00343948672525585,0.0500902235507965,0.998716592788696,0.000607570458669215,0.0506442487239838,0.936839520931244,-0.322951912879944,-0.134289890527725,0.99686586856842,0.00642402423545718,0.0788490772247314,0.99613493680954,0.00342563749291003,0.0877693593502045,0.996245980262756,0.0132977534085512,0.085540197789669,0.997418582439423,0.00669842446222901,0.0714935287833214,0.99686586856842,0.00642402423545718,0.0788490772247314,0.997418582439423,0.00669842446222901,0.0714935287833214,0.998716592788696,0.000607570458669215,0.0506442487239838,0.998364806175232,0.0151046710088849,0.0551327168941498,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.519298076629639,0.85447096824646,0.014456233009696,-0.584055960178375,0.809352517127991,0.0618640184402466,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.988347291946411,0.104021579027176,-0.111126624047756, +-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.847642540931702,0.516695201396942,-0.120533362030983,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.850336253643036,0.521330118179321,-0.071716271340847,-0.838557243347168,0.544758021831512,-0.00777381658554077,-0.689413130283356,0.722614347934723,0.0503795966506004,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.892108976840973,0.415363639593124,-0.177805513143539,-0.887072622776031,0.441629320383072,-0.134409114718437,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.891784489154816,-0.0943145900964737,-0.442521512508392,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.916463375091553,0.315494209527969,-0.246085956692696,-0.936094522476196,0.112304478883743,-0.333338916301727,-0.906920254230499,0.337041199207306,-0.252782553434372,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.952743351459503,-0.094102218747139,-0.28883358836174,-0.9345583319664,-0.0878022834658623,-0.344806581735611,-0.930652797222137,0.237338930368423,-0.278487771749496,-0.989644408226013,-0.119041472673416,-0.0802060589194298,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.97140896320343,-0.0380677282810211,-0.234340444207191,-0.976031720638275,0.013508215546608,-0.217208698391914,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.95115453004837,0.120947979390621,-0.284036248922348, +-0.907502174377441,0.285730719566345,-0.307892292737961,-0.907502174377441,0.285730719566345,-0.307892292737961,-0.95115453004837,0.120947979390621,-0.284036248922348,-0.967091619968414,0.0677157118916512,-0.245251774787903,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.868080079555511,-0.12176526337862,-0.481259018182755,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.92230236530304,0.124143578112125,-0.365987151861191,-0.89843761920929,0.0845259726047516,-0.430888712406158,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.924254477024078,0.131011307239532,-0.358593851327896,-0.901823163032532,0.0676854476332664,-0.42677116394043,-0.88703578710556,0.163084164261818,-0.43193855881691,-0.959492444992065,0.208813667297363,-0.189132645726204,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.924185991287231,0.22953750193119,-0.305274873971939,-0.890658020973206,0.29931765794754,-0.3422532081604,-0.851243257522583,0.219904631376266,-0.476473480463028,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.691264808177948,0.223771780729294,-0.687080204486847,-0.784305214881897,0.305858105421066,-0.539737164974213,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.838975310325623,0.0505895428359509,-0.541812717914581,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.768200695514679,0.126911073923111,-0.627503931522369,-0.866451263427734,0.0670877397060394,-0.494733601808548,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.869449853897095,0.20692740380764,-0.448595434427261, +-0.869449853897095,0.20692740380764,-0.448595434427261,-0.915551662445068,0.0866205617785454,-0.392762154340744,-0.899354934692383,0.05581059679389,-0.433642566204071,-0.88973480463028,0.0997150093317032,-0.445453524589539,-0.985869348049164,0.156637668609619,0.0593828931450844,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.951151072978973,0.133879944682121,-0.278186410665512,-0.961187064647675,0.215159878134727,-0.17270128428936,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.739092588424683,0.412199884653091,-0.532760143280029,-0.739092588424683,0.412199884653091,-0.532760143280029,-0.692440569400787,0.330745071172714,-0.641197085380554,-0.859512150287628,0.334708124399185,-0.386276096105576,-0.792703151702881,0.400789320468903,-0.45933610200882,-0.674262762069702,0.1860022097826,-0.714683830738068,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.691390633583069,0.257640868425369,-0.674981534481049,-0.728400468826294,0.183097824454308,-0.66023325920105,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.775644063949585,0.145310968160629,-0.614215731620789,-0.747310876846313,0.127351030707359,-0.652156591415405,-0.748834669589996,0.238394916057587,-0.618396639823914,-0.940445303916931,0.267636567354202,-0.209602475166321,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.826238393783569,0.215817183256149,-0.52033942937851,-0.828860461711884,0.332936942577362,-0.449603497982025,-0.490829437971115,0.501539170742035,-0.712421834468842,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.385275810956955,0.337066978216171,-0.85903924703598,-0.484819173812866,0.517048895359039,-0.705415368080139,-0.484819173812866,0.517048895359039,-0.705415368080139, +-0.385275810956955,0.337066978216171,-0.85903924703598,-0.608456432819366,0.421901285648346,-0.672145843505859,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.461357086896896,0.226548045873642,-0.857802748680115,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.416700839996338,0.242014065384865,-0.876236081123352,-0.495217144489288,0.185363501310349,-0.848764061927795,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.580800890922546,0.245291128754616,-0.776210367679596,-0.553896605968475,0.168080806732178,-0.81544303894043,-0.518538475036621,0.333198189735413,-0.787462294101715,-0.585975170135498,0.344384700059891,-0.733506858348846,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.546905636787415,0.341782540082932,-0.764250457286835,-0.476255536079407,0.397201150655746,-0.784481942653656,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.285966575145721,0.363796889781952,-0.886495888233185,-0.370568096637726,0.403648436069489,-0.836508870124817,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.277244091033936,0.21086148917675,-0.937375605106354,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.275922566652298,0.298995345830917,-0.913492441177368,-0.308858275413513,0.227329060435295,-0.923541069030762,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.323321968317032,0.276273161172867,-0.905061423778534,-0.357689201831818,0.230448618531227,-0.904959678649902,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.357689201831818,0.230448618531227,-0.904959678649902, +-0.348480015993118,0.189375415444374,-0.917986214160919,-0.33005753159523,0.373546361923218,-0.866905570030212,0.0695710778236389,-0.308949768543243,0.948530435562134,0.220295935869217,-0.324890851974487,0.919736683368683,0.109529964625835,-0.463935971260071,0.879071414470673,-0.0340686589479446,-0.441913366317749,0.896410584449768,0.0695710778236389,-0.308949768543243,0.948530435562134,-0.0340686589479446,-0.441913366317749,0.896410584449768,-0.310180366039276,-0.395606368780136,0.864455759525299,-0.150470897555351,-0.31821072101593,0.936002492904663,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.0663547664880753,0.333947002887726,-0.940253376960754,-0.166266694664955,0.278747469186783,-0.945862174034119,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.213664010167122,0.313305616378784,-0.925303876399994,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.333563297986984,0.29656058549881,-0.894867241382599,0.463217854499817,-0.406106621026993,0.78772246837616,0.272015511989594,-0.415265917778015,0.868079364299774,0.257376343011856,-0.520962178707123,0.813852488994598,0.398277938365936,-0.536248743534088,0.744185388088226,0.463217854499817,-0.406106621026993,0.78772246837616,0.398277938365936,-0.536248743534088,0.744185388088226,0.611014664173126,-0.523765981197357,0.593574166297913,0.763542711734772,-0.339976668357849,0.549015760421753,0.275892049074173,-0.376482635736465,0.884389221668243,0.289807885885239,-0.43032768368721,0.854885756969452,0.257376343011856,-0.520962178707123,0.813852488994598,0.17542377114296,-0.492901206016541,0.852217674255371,0.275892049074173,-0.376482635736465,0.884389221668243,0.17542377114296,-0.492901206016541,0.852217674255371,0.109529964625835,-0.463935971260071,0.879071414470673,0.220295935869217,-0.324890851974487,0.919736683368683,0.568185806274414,-0.391976445913315,0.723546385765076,0.354619860649109,-0.380006402730942,0.854306638240814,0.418492645025253,-0.417349457740784,0.806649446487427,0.806391000747681,-0.43461674451828,0.401050895452499, +0.568185806274414,-0.391976445913315,0.723546385765076,0.806391000747681,-0.43461674451828,0.401050895452499,0.611014664173126,-0.523765981197357,0.593574166297913,0.440867334604263,-0.435717403888702,0.784720599651337,-0.0490954145789146,-0.337257087230682,0.940131485462189,0.490249872207642,-0.306862562894821,0.815775990486145,0.418492645025253,-0.417349457740784,0.806649446487427,0.0412405952811241,-0.429780393838882,0.901991188526154,-0.0490954145789146,-0.337257087230682,0.940131485462189,0.0412405952811241,-0.429780393838882,0.901991188526154,0.170638188719749,-0.490811139345169,0.854392826557159,0.0555685870349407,-0.379517942667007,0.923514127731323,0.481584459543228,-0.387515157461166,0.786071479320526,0.499750405550003,-0.3817298412323,0.777516484260559,0.414962351322174,-0.562928795814514,0.714784801006317,0.310942828655243,-0.535853862762451,0.784968197345734,0.481584459543228,-0.387515157461166,0.786071479320526,0.310942828655243,-0.535853862762451,0.784968197345734,0.170638188719749,-0.490811139345169,0.854392826557159,0.354210317134857,-0.385083884000778,0.852200388908386,0.567363619804382,-0.433732450008392,0.699981868267059,0.388115346431732,-0.443261563777924,0.808013439178467,0.414962351322174,-0.562928795814514,0.714784801006317,0.532850980758667,-0.568655610084534,0.626658320426941,0.567363619804382,-0.433732450008392,0.699981868267059,0.532850980758667,-0.568655610084534,0.626658320426941,0.730762779712677,-0.524796366691589,0.436548382043839,0.820302903652191,-0.366882711648941,0.43874853849411,0.875056028366089,-0.394868493080139,0.279921293258667,0.54632157087326,-0.482646822929382,0.684532463550568,0.373678237199783,-0.514060199260712,0.772079527378082,0.922787308692932,-0.3760906457901,0.083782009780407,0.875056028366089,-0.394868493080139,0.279921293258667,0.922787308692932,-0.3760906457901,0.083782009780407,0.730762779712677,-0.524796366691589,0.436548382043839,0.709072232246399,-0.490383982658386,0.506695330142975,-0.111819066107273,-0.334474802017212,0.93574732542038,0.256940931081772,-0.374582171440125,0.890881359577179, +0.373678237199783,-0.514060199260712,0.772079527378082,-0.0402895286679268,-0.486978650093079,0.872484087944031,-0.111819066107273,-0.334474802017212,0.93574732542038,-0.0402895286679268,-0.486978650093079,0.872484087944031,0.282550185918808,-0.625282943248749,0.727452158927917,0.23664890229702,-0.448689639568329,0.86178594827652,0.598446249961853,-0.519095242023468,0.610247671604156,0.693200528621674,-0.491481930017471,0.527179837226868,0.651794612407684,-0.644794881343842,0.399253517389297,0.517384827136993,-0.659253060817719,0.545617580413818,0.598446249961853,-0.519095242023468,0.610247671604156,0.517384827136993,-0.659253060817719,0.545617580413818,0.282550185918808,-0.625282943248749,0.727452158927917,0.423094630241394,-0.536581158638,0.730117499828339,0.857245266437531,-0.464626491069794,0.221929728984833,0.731242716312408,-0.51183021068573,0.450903505086899,0.651794612407684,-0.644794881343842,0.399253517389297,0.764307379722595,-0.60006195306778,0.236135452985764,0.857245266437531,-0.464626491069794,0.221929728984833,0.764307379722595,-0.60006195306778,0.236135452985764,0.860257208347321,-0.509540259838104,0.0180641487240791,0.93332827091217,-0.338810741901398,-0.118767276406288,0.921876072883606,-0.385167300701141,0.0423164926469326,0.826905488967896,-0.45468458533287,0.330891579389572,0.728058815002441,-0.511314928531647,0.456604212522507,0.904874742031097,-0.356668084859848,-0.232356280088425,0.921876072883606,-0.385167300701141,0.0423164926469326,0.904874742031097,-0.356668084859848,-0.232356280088425,0.860257208347321,-0.509540259838104,0.0180641487240791,0.854461014270782,-0.476516664028168,0.206949934363365,0.224800527095795,-0.377653300762177,0.898244142532349,0.831725597381592,-0.397647082805634,0.387439489364624,0.728058815002441,-0.511314928531647,0.456604212522507,0.340678364038467,-0.520609378814697,0.782881915569305,0.224800527095795,-0.377653300762177,0.898244142532349,0.340678364038467,-0.520609378814697,0.782881915569305,0.619528710842133,-0.549421966075897,0.560642242431641,0.682247877120972,-0.429192274808884,0.59188836812973, +0.737267017364502,-0.431954801082611,0.519473314285278,0.83910346031189,-0.326700925827026,0.434938907623291,0.845468997955322,-0.443901598453522,0.29687288403511,0.763568758964539,-0.496402263641357,0.412973940372467,0.737267017364502,-0.431954801082611,0.519473314285278,0.763568758964539,-0.496402263641357,0.412973940372467,0.619528710842133,-0.549421966075897,0.560642242431641,0.60429185628891,-0.509560883045197,0.612518608570099,0.948286950588226,-0.2696273624897,0.167490169405937,0.920679688453674,-0.318991452455521,0.224929749965668,0.845468997955322,-0.443901598453522,0.29687288403511,0.903814673423767,-0.393272668123245,0.168688461184502,0.948286950588226,-0.2696273624897,0.167490169405937,0.903814673423767,-0.393272668123245,0.168688461184502,0.936742961406708,-0.349865049123764,0.0103462673723698,0.980608105659485,-0.18874679505825,-0.0527474321424961,0.952621281147003,-0.21545235812664,0.21469259262085,0.773024499416351,-0.251035571098328,0.582592725753784,0.739988207817078,-0.321660608053207,0.590721487998962,0.950254321098328,-0.273420482873917,-0.149191319942474,0.952621281147003,-0.21545235812664,0.21469259262085,0.950254321098328,-0.273420482873917,-0.149191319942474,0.936742961406708,-0.349865049123764,0.0103462673723698,0.937271595001221,-0.292794436216354,0.189191550016403,0.331597626209259,-0.234186932444572,0.913892388343811,0.812639117240906,-0.217517703771591,0.540651261806488,0.739988207817078,-0.321660608053207,0.590721487998962,0.361788481473923,-0.334904283285141,0.870027720928192,0.331597626209259,-0.234186932444572,0.913892388343811,0.361788481473923,-0.334904283285141,0.870027720928192,0.568074822425842,-0.381185531616211,0.729375541210175,0.581863045692444,-0.243657320737839,0.77592945098877,0.746168732643127,-0.324731051921844,0.58118999004364,0.786836504936218,-0.339921623468399,0.515113234519958,0.801258563995361,-0.360501676797867,0.477517813444138,0.725219190120697,-0.381685614585876,0.573038578033447,0.746168732643127,-0.324731051921844,0.58118999004364,0.725219190120697,-0.381685614585876,0.573038578033447, +0.568074822425842,-0.381185531616211,0.729375541210175,0.694501519203186,-0.291511297225952,0.657790899276733,0.914890289306641,-0.121925175189972,0.384850651025772,0.867118418216705,-0.171389430761337,0.467687219381332,0.801258563995361,-0.360501676797867,0.477517813444138,0.853569328784943,-0.332780241966248,0.400845050811768,0.914890289306641,-0.121925175189972,0.384850651025772,0.853569328784943,-0.332780241966248,0.400845050811768,0.926871418952942,-0.302499800920486,0.222268790006638,0.984977781772614,-0.0616224482655525,0.161311641335487,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.930343925952911,-0.284103631973267,0.231830254197121,0.885432124137878,-0.298503637313843,0.356238156557083,0.95844966173172,-0.230193823575974,-0.168478921055794,0.957541882991791,-0.276702135801315,-0.0809285491704941,0.95844966173172,-0.230193823575974,-0.168478921055794,0.926871418952942,-0.302499800920486,0.222268790006638,0.902224242687225,-0.345201700925827,0.258509546518326,0.612357974052429,-0.103161364793777,0.783820986747742,0.884318947792053,-0.054423701018095,0.463700622320175,0.885432124137878,-0.298503637313843,0.356238156557083,0.645715713500977,-0.332651615142822,0.687309324741364,0.612357974052429,-0.103161364793777,0.783820986747742,0.645715713500977,-0.332651615142822,0.687309324741364,0.808006346225739,-0.355535328388214,0.469808757305145,0.839543461799622,-0.133703395724297,0.526583671569824,0.889198124408722,-0.300890505313873,0.344661504030228,0.909848988056183,-0.299331039190292,0.287360101938248,0.89973783493042,-0.341453313827515,0.271810978651047,0.880135655403137,-0.343090146780014,0.328101515769958,0.889198124408722,-0.300890505313873,0.344661504030228,0.880135655403137,-0.343090146780014,0.328101515769958,0.808006346225739,-0.355535328388214,0.469808757305145,0.850567281246185,-0.294763803482056,0.43548783659935,0.931503593921661,-0.173606723546982,0.319627553224564,0.934256434440613,-0.153060808777809,0.322082817554474,0.89973783493042,-0.341453313827515,0.271810978651047,0.90982460975647,-0.359352380037308,0.207569152116776, +0.931503593921661,-0.173606723546982,0.319627553224564,0.90982460975647,-0.359352380037308,0.207569152116776,0.92187511920929,-0.38712340593338,0.016783095896244,0.976979911327362,-0.180214643478394,0.114162653684616,0.971633672714233,-0.235121175646782,-0.0254140961915255,0.805659294128418,-0.350429505109787,0.477611005306244,0.778084576129913,-0.38656085729599,0.495131373405457,0.889443576335907,-0.376923859119415,-0.258493065834045,0.971633672714233,-0.235121175646782,-0.0254140961915255,0.889443576335907,-0.376923859119415,-0.258493065834045,0.92187511920929,-0.38712340593338,0.016783095896244,0.945364832878113,-0.312039226293564,0.0944293588399887,0.778084576129913,-0.38656085729599,0.495131373405457,0.794207036495209,-0.3851597905159,0.469986349344254,0.845588147640228,-0.197172567248344,0.496088355779648,0.82255631685257,-0.213350489735603,0.527145743370056,0.905479967594147,-0.389077335596085,0.16948401927948,0.915882885456085,-0.400456249713898,0.0281630977988243,0.929700791835785,-0.367127627134323,0.0295576956123114,0.909832239151001,-0.380722135305405,0.165093958377838,0.905479967594147,-0.389077335596085,0.16948401927948,0.909832239151001,-0.380722135305405,0.165093958377838,0.794207036495209,-0.3851597905159,0.469986349344254,0.860090136528015,-0.273277372121811,0.430771857500076,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.985689699649811,-0.159650921821594,0.0541065037250519,0.929700791835785,-0.367127627134323,0.0295576956123114,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.98707103729248,-0.159559905529022,-0.0152083747088909,0.932109594345093,-0.355613142251968,-0.0686364024877548,0.917859852313995,-0.320248544216156,-0.234465748071671,0.948014378547668,-0.114206790924072,-0.297027975320816,0.963031113147736,-0.205645516514778,-0.174013987183571,0.953685641288757,-0.109224699437618,-0.280273914337158,0.83915901184082,-0.095047727227211,-0.535516738891602,0.846224725246429,-0.220031172037125,-0.485273152589798,0.963031113147736,-0.205645516514778,-0.174013987183571,0.846224725246429,-0.220031172037125,-0.485273152589798, +0.917859852313995,-0.320248544216156,-0.234465748071671,0.936839520931244,-0.322951912879944,-0.134289890527725,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.988268911838531,-0.00955341197550297,-0.152424588799477,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.989181935787201,0.0672705546021461,-0.130360201001167,-0.925856649875641,-0.0456408374011517,-0.375108331441879,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.959104001522064,0.0086651761084795,-0.28292128443718,-0.955248713493347,-0.100252404808998,-0.278297305107117,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.986347913742065,-0.00934614799916744,-0.164409324526787,-0.972177624702454,-0.127140134572983,-0.196738347411156,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.991557121276855,-0.0114872390404344,-0.129161491990089,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.991487503051758,0.110444560647011,-0.0689526423811913,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.994598388671875,0.0644574537873268,-0.0813599899411201,-0.986041486263275,-0.152487978339195,-0.0668559670448303,-0.980169713497162,-0.140924602746964,-0.139311447739601,-0.989741206169128,0.101899042725563,-0.100145883858204,-0.988190531730652,-0.0454413928091526,0.146337419748306,-0.985062062740326,-0.158299475908279,0.0677790567278862,-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.998956561088562,-0.0175166949629784,-0.0421778038144112,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.886644601821899,0.0169544592499733,-0.462140619754791,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.809789836406708,0.00712836580350995,-0.586676836013794,-0.899722754955292,0.116146586835384,-0.420724302530289,-0.809789836406708,0.00712836580350995,-0.586676836013794, +-0.99408495426178,-0.0907384753227234,-0.0596791878342628,-0.98696756362915,0.0642485171556473,-0.147537335753441,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.837225317955017,0.0578680112957954,-0.543787658214569,-0.837209105491638,-0.0232210718095303,-0.546389758586884,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.893762528896332,0.0482032112777233,-0.4459428191185,-0.885177791118622,-0.0406357459723949,-0.463474959135056,-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.916148722171783,0.0440458282828331,-0.398411154747009,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.97365540266037,-0.173205658793449,-0.148306906223297,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.940555989742279,-0.201011493802071,-0.27376800775528,-0.9450723528862,-0.0753965824842453,-0.318046540021896,-0.915258049964905,-0.0531025789678097,-0.399352967739105,-0.909069240093231,-0.172094643115997,-0.37944233417511,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.98556125164032,0.0224603228271008,-0.167823195457458,-0.978026509284973,-0.112902946770191,-0.175262808799744,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.999493718147278,0.0159836485981941,-0.027509992942214,-0.988052785396576,-0.153378888964653,-0.0150572005659342,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.947363078594208,0.0110504142940044,-0.319970637559891,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.907917976379395,-0.0661699771881104,-0.413891792297363,-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.945402562618256,-0.050961721688509,-0.321895986795425,-0.865500092506409,-0.193985506892204,-0.461821615695953,-0.966712057590485,-0.169407546520233,-0.191752433776855,-0.980060338973999,-0.101997822523117,-0.170523330569267,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.852664291858673,-0.0599740967154503,-0.519005417823792, +-0.835971117019653,-0.209791257977486,-0.507089495658875,-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.907908141613007,-0.0673154443502426,-0.413728773593903,-0.863634645938873,-0.193603023886681,-0.4654600918293,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.969716310501099,-0.0564772598445415,-0.237614944577217,-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.990075469017029,0.0980648398399353,-0.100666083395481,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.965609729290009,-0.0378682911396027,-0.257223159074783,-0.987996399402618,-0.145782336592674,-0.0510938800871372,-0.929782271385193,-0.164813950657845,-0.329152464866638,-0.895569503307343,-0.120400585234165,-0.428321152925491,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.924890220165253,-0.0754820108413696,0.372666954994202,-0.951276540756226,-0.150029584765434,0.26937735080719,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.865073978900909,-0.0701046958565712,0.496721684932709,-0.902597725391388,-0.129000335931778,0.41070231795311,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.780295372009277,0.120378606021404,-0.613716602325439,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.648412227630615,0.109998382627964,-0.753300786018372,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.575329124927521,0.198163598775864,-0.793553829193115,-0.346803456544876,0.0781633630394936,-0.934675216674805,-0.839076340198517,0.0676319822669029,-0.539793372154236,-0.791287958621979,0.230380818247795,-0.566381514072418,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.583944380283356,0.130869150161743,-0.801175534725189,-0.632443249225616,0.0926200598478317,-0.769049525260925,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.857277631759644,0.124718271195889,-0.49952021241188,-0.845429360866547,0.114022135734558,-0.521773993968964,-0.911948204040527,0.11847773194313,-0.392827421426773, +-0.924555361270905,0.129721865057945,-0.358286798000336,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.99224728345871,0.0746024399995804,-0.0993969216942787,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.94175785779953,0.0543955489993095,-0.33186337351799,-0.952089667320251,0.122173994779587,-0.28035494685173,-0.911948204040527,0.11847773194313,-0.392827421426773,-0.90403026342392,0.0349424853920937,-0.426037937402725,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.990341305732727,0.092634342610836,0.103164255619049,-0.994646430015564,0.10008005797863,-0.0257397387176752,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.874018430709839,0.0288148522377014,0.48503765463829,-0.93196302652359,0.0418841950595379,0.360125631093979,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.980975687503815,0.185219094157219,0.0581425651907921,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.58717942237854,0.256551295518875,-0.767724990844727,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.610666573047638,0.342350006103516,-0.71406090259552,-0.393049627542496,0.316276878118515,-0.863412380218506,-0.98127806186676,0.191760405898094,0.0179263819009066,-0.911444067955017,0.292883664369583,-0.2889444231987,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.597305536270142,0.324272274971008,-0.733535051345825,-0.573950409889221,0.32744088768959,-0.750575423240662,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.74196320772171,0.33792832493782,-0.579046785831451,-0.683652579784393,0.337059170007706,-0.647310018539429,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.733271539211273,0.35336098074913,-0.580903470516205,-0.813119411468506,0.13746352493763,-0.565632820129395,-0.918944239616394,0.172730043530464,-0.354550212621689,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.773969650268555,0.336919188499451,-0.536149680614471,-0.813119411468506,0.13746352493763,-0.565632820129395, +-0.773969650268555,0.336919188499451,-0.536149680614471,-0.724233150482178,0.337084531784058,-0.601548373699188,-0.737547695636749,0.135825052857399,-0.661494553089142,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.870153427124023,0.287005603313446,-0.400575578212738,-0.893021106719971,0.295956075191498,-0.339003354310989,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.987496793270111,0.157638937234879,0.000296974234515801,-0.982370257377625,0.172961533069611,0.0709428861737251,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.796990394592285,0.281193733215332,-0.53454327583313,-0.262255430221558,0.337828725576401,-0.903932392597198,-0.318014234304428,0.259491086006165,-0.911883473396301,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.262255430221558,0.337828725576401,-0.903932392597198,-0.192955210804939,0.364899098873138,-0.910833060741425,-0.739116787910461,0.344916701316833,-0.578566253185272,-0.661455273628235,0.378868937492371,-0.647252202033997,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.460823178291321,0.366148501634598,-0.80844122171402,-0.393868446350098,0.414464950561523,-0.820418417453766,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.546110808849335,0.382633835077286,-0.745221078395844,-0.493282347917557,0.436608076095581,-0.752360165119171,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.441216617822647,0.384824961423874,-0.810701966285706,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.651628494262695,0.292820394039154,-0.699740290641785,-0.592969179153442,0.321096628904343,-0.738433957099915,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.635203123092651,0.23354534804821,-0.736188530921936,-0.488191664218903,0.388097107410431,-0.781696617603302,-0.485035240650177,0.426899462938309,-0.763215363025665,-0.555963277816772,0.207732707262039,-0.804830372333527,-0.763972997665405,0.199422031641006,-0.613658010959625,-0.466602355241776,0.295693963766098,-0.833575010299683, +-0.592969179153442,0.321096628904343,-0.738433957099915,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.763972997665405,0.199422031641006,-0.613658010959625,-0.783050179481506,0.231173455715179,-0.577400386333466,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.491230875253677,0.251591295003891,-0.833903014659882,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.199412167072296,0.252065807580948,-0.946941256523132,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.184011220932007,0.307988733053207,-0.933425307273865,-0.0890127569437027,0.300677210092545,-0.949563026428223,-0.381529569625854,0.306254625320435,-0.872148633003235,-0.359770148992538,0.337747693061829,-0.86976546049118,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.316899538040161,0.322130918502808,-0.892079770565033,-0.261555224657059,0.344939857721329,-0.901446282863617,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.382687717676163,0.343956917524338,-0.857463598251343,-0.324584096670151,0.375741183757782,-0.868022859096527,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.247935026884079,0.356422573328018,-0.900828063488007,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.368761420249939,0.0988195315003395,-0.924256324768066,-0.166266694664955,0.278747469186783,-0.945862174034119,-0.167159870266914,0.339122027158737,-0.925772070884705,-0.358513832092285,0.143166244029999,-0.922481000423431,-0.167159870266914,0.339122027158737,-0.925772070884705,-0.259932965040207,0.378969639539719,-0.888153612613678,-0.331373751163483,0.181329444050789,-0.925910890102386,-0.689413130283356,0.722614347934723,0.0503795966506004,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.508436381816864,0.858558356761932,0.0661066174507141,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.631954312324524,0.769828200340271,0.0894333571195602,-0.584055960178375,0.809352517127991,0.0618640184402466,-0.439730614423752,0.896234035491943,0.0583229064941406, +-0.508436381816864,0.858558356761932,0.0661066174507141,-0.508436381816864,0.858558356761932,0.0661066174507141,-0.439730614423752,0.896234035491943,0.0583229064941406,-0.388090044260025,0.919523358345032,0.0621522143483162,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.596203804016113,0.802746891975403,0.0117644211277366,-0.508436381816864,0.858558356761932,0.0661066174507141,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.40021613240242,0.909812211990356,0.109857328236103,-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.906920254230499,0.337041199207306,-0.252782553434372,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.902647852897644,0.338386744260788,-0.26593479514122,-0.930652797222137,0.237338930368423,-0.278487771749496,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.688866555690765,0.720956802368164,-0.0753937587141991,-0.826984763145447,0.545674860477448,-0.135407224297523,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.697861075401306,0.674170970916748,-0.24183315038681,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.862376749515533,0.269565790891647,-0.428533107042313,-0.88703578710556,0.163084164261818,-0.43193855881691,-0.885466039180756,0.269513994455338,-0.37856587767601, +-0.697861075401306,0.674170970916748,-0.24183315038681,-0.76031482219696,0.559701919555664,-0.329628884792328,-0.885466039180756,0.269513994455338,-0.37856587767601,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.869449853897095,0.20692740380764,-0.448595434427261,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.869449853897095,0.20692740380764,-0.448595434427261,-0.88973480463028,0.0997150093317032,-0.445453524589539,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.759849667549133,0.538420021533966,-0.364324450492859,-0.882812201976776,0.183205142617226,-0.432525813579559,-0.851243257522583,0.219904631376266,-0.476473480463028,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.686851382255554,0.378304183483124,-0.620581388473511,-0.748834669589996,0.238394916057587,-0.618396639823914,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.561555504798889,0.701477289199829,-0.438844949007034,-0.750947535037994,0.394535183906555,-0.529546856880188,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.279209464788437,0.828645944595337,-0.485167920589447, +-0.313274592161179,0.766101777553558,-0.561201572418213,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.313274592161179,0.766101777553558,-0.561201572418213,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.44645231962204,0.475395977497101,-0.758075892925262,-0.518538475036621,0.333198189735413,-0.787462294101715,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.360729545354843,0.750401556491852,-0.553869664669037,-0.51100355386734,0.496428489685059,-0.701736509799957,-0.490829437971115,0.501539170742035,-0.712421834468842,-0.23056173324585,0.802569389343262,-0.550203382968903,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.281452149152756,0.504666805267334,-0.816147148609161,-0.33005753159523,0.373546361923218,-0.866905570030212,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.248864367604256,0.741931021213531,-0.622579216957092,-0.332164585590363,0.540829062461853,-0.772768199443817,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.388090044260025,0.919523358345032,0.0621522143483162,-0.439730614423752,0.896234035491943,0.0583229064941406,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.199016839265823,0.964948236942291,0.17107680439949,-0.439730614423752,0.896234035491943,0.0583229064941406,-0.584055960178375,0.809352517127991,0.0618640184402466, +-0.519298076629639,0.85447096824646,0.014456233009696,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.388090044260025,0.919523358345032,0.0621522143483162,-0.199016839265823,0.964948236942291,0.17107680439949,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.537402212619781,0.84289139509201,-0.0270731616765261,-0.419259488582611,0.906754612922668,0.0449165590107441,-0.725264489650726,0.688468635082245,0.00157212698832154,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.472208678722382,0.874220132827759,0.112951770424843,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.670194089412689,0.740228116512299,0.0538731776177883,-0.603735208511353,0.796944797039032,0.0195696428418159,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.472208678722382,0.874220132827759,0.112951770424843,-0.472208678722382,0.874220132827759,0.112951770424843,-0.422245591878891,0.902377247810364,0.0861622914671898,-0.199016839265823,0.964948236942291,0.17107680439949,-0.301414340734482,0.942200183868408,0.146315321326256,-0.531966269016266,0.842713832855225,0.0827364325523376,-0.472208678722382,0.874220132827759,0.112951770424843,-0.301414340734482,0.942200183868408,0.146315321326256,-0.40021613240242,0.909812211990356,0.109857328236103,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.919851839542389,0.297182708978653,-0.256037563085556,-0.906920254230499,0.337041199207306,-0.252782553434372, +-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.441843509674072,0.897076964378357,0.00522481929510832,-0.673733711242676,0.73090273141861,-0.108922548592091,-0.661042153835297,0.746898233890533,-0.0718778744339943,-0.40021613240242,0.909812211990356,0.109857328236103,-0.893205285072327,0.298909872770309,-0.335912525653839,-0.907502174377441,0.285730719566345,-0.307892292737961,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.697861075401306,0.674170970916748,-0.24183315038681,-0.907502174377441,0.285730719566345,-0.307892292737961,-0.920138537883759,0.269878000020981,-0.283744394779205,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.701119959354401,0.688593626022339,-0.185120165348053,-0.466099828481674,0.879687905311584,-0.0943408608436584,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.697861075401306,0.674170970916748,-0.24183315038681,-0.695908904075623,0.684421181678772,-0.21743606030941,-0.468783617019653,0.874258697032928,-0.126148700714111,-0.48543056845665,0.856919169425964,-0.173339679837227,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.847707808017731,0.337914168834686,-0.408907800912857,-0.853949844837189,0.319228500127792,-0.410929262638092,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.459582716226578,0.863844871520996,-0.206290274858475,-0.667522013187408,0.67008239030838,-0.324659913778305,-0.691090166568756,0.646634697914124,-0.322890132665634,-0.48543056845665,0.856919169425964,-0.173339679837227, +-0.851243257522583,0.219904631376266,-0.476473480463028,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.821486532688141,0.276607751846313,-0.498646110296249,-0.829685628414154,0.324270725250244,-0.454389929771423,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.672067224979401,0.664912104606628,-0.325910478830338,-0.462122738361359,0.857072055339813,-0.227749779820442,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.686745047569275,0.659497261047363,-0.30568727850914,-0.671990513801575,0.669385731220245,-0.316782981157303,-0.453953802585602,0.862267315387726,-0.224546074867249,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.792703151702881,0.400789320468903,-0.45933610200882,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.849501669406891,0.347279697656631,-0.397169589996338,-0.867384552955627,0.272356867790222,-0.416492253541946,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.4254250228405,0.863419115543365,-0.271147608757019,-0.62130731344223,0.695989668369293,-0.359965980052948,-0.674779713153839,0.647005677223206,-0.355043590068817,-0.46656408905983,0.848538100719452,-0.24960158765316,-0.73922336101532,0.406404972076416,-0.53701388835907,-0.739092588424683,0.412199884653091,-0.532760143280029,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.739092588424683,0.412199884653091,-0.532760143280029, +-0.792703151702881,0.400789320468903,-0.45933610200882,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.585612177848816,0.712892174720764,-0.385801821947098,-0.412451326847076,0.85350227355957,-0.318461745977402,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.527030885219574,0.755909323692322,-0.388380587100983,-0.548989295959473,0.730122268199921,-0.406856536865234,-0.390997380018234,0.849661648273468,-0.353830814361572,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.31383341550827,0.838994324207306,-0.44451904296875,-0.40109720826149,0.75919508934021,-0.512585461139679,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.40109720826149,0.75919508934021,-0.512585461139679,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.619541585445404,0.509695291519165,-0.596974730491638,-0.656549632549286,0.448514342308044,-0.60644656419754,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.334105014801025,0.851154685020447,-0.404857516288757,-0.436407297849655,0.764336407184601,-0.474698543548584,-0.485382556915283,0.750703573226929,-0.448160707950592,-0.373187690973282,0.84747326374054,-0.37751829624176,-0.490829437971115,0.501539170742035,-0.712421834468842,-0.484819173812866,0.517048895359039,-0.705415368080139,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.484819173812866,0.517048895359039,-0.705415368080139,-0.544903159141541,0.532991290092468,-0.647302687168121,-0.40109720826149,0.75919508934021,-0.512585461139679,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.40109720826149,0.75919508934021,-0.512585461139679, +-0.31383341550827,0.838994324207306,-0.44451904296875,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.35263991355896,0.78518134355545,-0.509053409099579,-0.37128072977066,0.761415183544159,-0.531410932540894,-0.297674864530563,0.831007540225983,-0.469910979270935,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.257006973028183,0.818767726421356,-0.513387680053711,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.37832310795784,0.528036177158356,-0.760295689105988,-0.402432024478912,0.522155225276947,-0.751932382583618,-0.313274592161179,0.766101777553558,-0.561201572418213,-0.257006973028183,0.818767726421356,-0.513387680053711,-0.29217466711998,0.757296979427338,-0.584067821502686,-0.313274592161179,0.766101777553558,-0.561201572418213,-0.279209464788437,0.828645944595337,-0.485167920589447,-0.331252664327621,0.555408656597137,-0.762753427028656,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.335102051496506,0.538878083229065,-0.77286285161972,-0.355353981256485,0.524002254009247,-0.774044632911682,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.279343366622925,0.750426232814789,-0.599022388458252,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.234503656625748,0.799349129199982,-0.553216993808746,-0.254213660955429,0.781683623790741,-0.569513976573944,-0.265330106019974,0.764601349830627,-0.587353944778442,-0.234503656625748,0.799349129199982,-0.553216993808746, +-0.23056173324585,0.802569389343262,-0.550203382968903,-0.23056173324585,0.802569389343262,-0.550203382968903,-0.234503656625748,0.799349129199982,-0.553216993808746,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.22725011408329,0.797015845775604,-0.559574127197266,-0.234503656625748,0.799349129199982,-0.553216993808746,-0.241816326975822,0.806273341178894,-0.539859473705292,-0.234378948807716,0.808495759963989,-0.539815783500671,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.234378948807716,0.808495759963989,-0.539815783500671,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.22725011408329,0.797015845775604,-0.559574127197266,-0.231540709733963,0.798600077629089,-0.555541753768921,-0.183977067470551,0.826869547367096,-0.531449973583221,-0.176512122154236,0.811137557029724,-0.557583630084991,1.3388275874604e-05,0.905516862869263,-0.424310177564621,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.0996078550815582,0.894310653209686,-0.436218619346619,-3.80912609898587e-07,0.898611783981323,-0.438744753599167,7.32525177227217e-06,0.889752805233002,-0.456442594528198,-0.0875224769115448,0.878100991249084,-0.470402628183365,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.0875224769115448,0.878100991249084,-0.470402628183365,-0.189345926046371,0.839082181453705,-0.509989380836487,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.0996078550815582,0.894310653209686,-0.436218619346619,-0.0934270173311234,0.887088000774384,-0.452046722173691,-0.194761946797371,0.850882232189178,-0.487921237945557,-0.202570572495461,0.861213862895966,-0.466128766536713,4.54438037422733e-07,0.914030373096466,-0.405645698308945,-1.13681444418035e-05,0.910587549209595,-0.4133161008358,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.110339634120464,0.902698576450348,-0.415885150432587, +-1.13681444418035e-05,0.910587549209595,-0.4133161008358,1.3388275874604e-05,0.905516862869263,-0.424310177564621,-0.0996078550815582,0.894310653209686,-0.436218619346619,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.0996078550815582,0.894310653209686,-0.436218619346619,-0.202570572495461,0.861213862895966,-0.466128766536713,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.110339634120464,0.902698576450348,-0.415885150432587,-0.105173982679844,0.899458825588226,-0.424160718917847,-0.211027383804321,0.868745028972626,-0.448050916194916,-0.22046186029911,0.873457729816437,-0.434129238128662,1.50015866893227e-05,0.915112435817719,-0.403198808431625,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.118735879659653,0.903533935546875,-0.411738246679306,-1.71747778949793e-05,0.915713608264923,-0.401831477880478,4.54438037422733e-07,0.914030373096466,-0.405645698308945,-0.110339634120464,0.902698576450348,-0.415885150432587,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.110339634120464,0.902698576450348,-0.415885150432587,-0.22046186029911,0.873457729816437,-0.434129238128662,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.118735879659653,0.903533935546875,-0.411738246679306,-0.115082442760468,0.904191732406616,-0.41133126616478,-0.230541929602623,0.876378059387207,-0.422861665487289,-0.241020381450653,0.876797020435333,-0.416096478700638,1.05083618109347e-05,0.954916179180145,-0.296875447034836,-3.50793754932965e-07,0.927993059158325,-0.372597485780716,-0.122025050222874,0.915841460227966,-0.38254976272583,-0.122977651655674,0.942991971969604,-0.309261173009872,-3.50793754932965e-07,0.927993059158325,-0.372597485780716,1.50015866893227e-05,0.915112435817719,-0.403198808431625,-0.118735879659653,0.903533935546875,-0.411738246679306,-0.122025050222874,0.915841460227966,-0.38254976272583,-0.122025050222874,0.915841460227966,-0.38254976272583, +-0.118735879659653,0.903533935546875,-0.411738246679306,-0.241020381450653,0.876797020435333,-0.416096478700638,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.122977651655674,0.942991971969604,-0.309261173009872,-0.122025050222874,0.915841460227966,-0.38254976272583,-0.253017336130142,0.886163532733917,-0.388196408748627,-0.262969821691513,0.908584952354431,-0.324530899524689,6.77310254104668e-06,0.98437488079071,-0.176085412502289,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.115625269711018,0.974825143814087,-0.190648660063744,-1.58852217282401e-05,0.974220514297485,-0.225598022341728,1.05083618109347e-05,0.954916179180145,-0.296875447034836,-0.122977651655674,0.942991971969604,-0.309261173009872,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.122977651655674,0.942991971969604,-0.309261173009872,-0.262969821691513,0.908584952354431,-0.324530899524689,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.115625269711018,0.974825143814087,-0.190648660063744,-0.120101101696491,0.963492274284363,-0.239287346601486,-0.267178118228912,0.927291870117188,-0.262193590402603,-0.268048852682114,0.938291668891907,-0.218537360429764,2.06756514131712e-08,0.990903377532959,-0.134574607014656,9.92930395682379e-08,0.989445388317108,-0.144906148314476,-0.111156977713108,0.980962634086609,-0.159236505627632,-0.107339099049568,0.983265817165375,-0.147196039557457,9.92930395682379e-08,0.989445388317108,-0.144906148314476,6.77310254104668e-06,0.98437488079071,-0.176085412502289,-0.115625269711018,0.974825143814087,-0.190648660063744,-0.111156977713108,0.980962634086609,-0.159236505627632,-0.111156977713108,0.980962634086609,-0.159236505627632,-0.115625269711018,0.974825143814087,-0.190648660063744,-0.268048852682114,0.938291668891907,-0.218537360429764,-0.267555445432663,0.944637537002563,-0.18993167579174,-0.107339099049568,0.983265817165375,-0.147196039557457,-0.111156977713108,0.980962634086609,-0.159236505627632, +-0.267555445432663,0.944637537002563,-0.18993167579174,-0.26593479514122,0.947541415691376,-0.177324414253235,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,1.95083682541508e-09,0.994212210178375,-0.107433840632439,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.10318198800087,0.993300795555115,-0.0520285628736019,1.95083682541508e-09,0.994212210178375,-0.107433840632439,2.06756514131712e-08,0.990903377532959,-0.134574607014656,-0.107339099049568,0.983265817165375,-0.147196039557457,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.107339099049568,0.983265817165375,-0.147196039557457,-0.26593479514122,0.947541415691376,-0.177324414253235,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.10318198800087,0.993300795555115,-0.0520285628736019,-0.104640051722527,0.987427890300751,-0.118476465344429,-0.264488846063614,0.952868759632111,-0.148615971207619,-0.262632071971893,0.961122930049896,-0.0852473974227905,3.1286046578316e-05,0.933347523212433,0.35897421836853,2.28790213441243e-06,0.976968586444855,0.21338301897049,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.108388245105743,0.959665358066559,0.259411454200745,2.28790213441243e-06,0.976968586444855,0.21338301897049,2.26350630327943e-06,0.99591463804245,0.0902996808290482,-0.0865604281425476,0.993676722049713,0.0715120956301689,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.0865604281425476,0.993676722049713,0.0715120956301689,-0.239247843623161,0.970808088779449,0.0170955918729305,-0.220642820000648,0.969886004924774,0.10313955694437,-0.108388245105743,0.959665358066559,0.259411454200745,-0.0658635869622231,0.979993402957916,0.187816023826599,-0.220642820000648,0.969886004924774,0.10313955694437,-0.222894638776779,0.95649117231369,0.188261821866035,0.150505572557449,-0.275890499353409,0.949332714080811,2.95768154501275e-06,-0.273690581321716,0.961817860603333,1.75918557943078e-07,-0.307377070188522,0.951587796211243, +0.165464147925377,-0.303402602672577,0.938386082649231,0.150505572557449,-0.275890499353409,0.949332714080811,0.165464147925377,-0.303402602672577,0.938386082649231,0.18642283976078,-0.302652627229691,0.934691250324249,0.177994892001152,-0.28425520658493,0.942081153392792,0.00903936289250851,-0.0846651792526245,0.99636846780777,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,2.95768154501275e-06,-0.273690581321716,0.961817860603333,0.150505572557449,-0.275890499353409,0.949332714080811,0.00903936289250851,-0.0846651792526245,0.99636846780777,0.150505572557449,-0.275890499353409,0.949332714080811,0.177994892001152,-0.28425520658493,0.942081153392792,0.0497473366558552,-0.134566709399223,0.989654958248138,0.135276660323143,-0.174784734845161,0.975269436836243,0.272147238254547,-0.176300823688507,0.945967197418213,0.220295935869217,-0.324890851974487,0.919736683368683,0.0695710778236389,-0.308949768543243,0.948530435562134,0.135276660323143,-0.174784734845161,0.975269436836243,0.0695710778236389,-0.308949768543243,0.948530435562134,-0.150470897555351,-0.31821072101593,0.936002492904663,0.0497473366558552,-0.134566709399223,0.989654958248138,-0.420449644327164,-0.335328876972198,0.843075752258301,2.46701147261774e-05,-0.340059369802475,0.940403938293457,5.24779306942946e-06,-0.263720482587814,0.964599132537842,-0.223743036389351,-0.286216169595718,0.931675553321838,-0.420449644327164,-0.335328876972198,0.843075752258301,-0.223743036389351,-0.286216169595718,0.931675553321838,-0.150470897555351,-0.31821072101593,0.936002492904663,-0.310180366039276,-0.395606368780136,0.864455759525299,-0.0340686589479446,-0.441913366317749,0.896410584449768,0.109529964625835,-0.463935971260071,0.879071414470673,0.0692463666200638,-0.40363010764122,0.912298023700714,-0.125935733318329,-0.385893911123276,0.913906991481781,-0.0340686589479446,-0.441913366317749,0.896410584449768,-0.125935733318329,-0.385893911123276,0.913906991481781,-0.424630582332611,-0.334179937839508,0.841434895992279,-0.310180366039276,-0.395606368780136,0.864455759525299, +-0.511119365692139,-0.29790985584259,0.806229948997498,1.42427379614674e-05,-0.348549783229828,0.937290251255035,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,-0.481684356927872,-0.307957500219345,0.820452451705933,-0.511119365692139,-0.29790985584259,0.806229948997498,-0.481684356927872,-0.307957500219345,0.820452451705933,-0.424630582332611,-0.334179937839508,0.841434895992279,-0.458524763584137,-0.304732322692871,0.834801316261292,0.0625188425183296,-0.333361506462097,0.940723896026611,0.0843937322497368,-0.217295467853546,0.972450733184814,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.155206382274628,-0.334304124116898,0.929597616195679,0.0843937322497368,-0.217295467853546,0.972450733184814,0.0943290740251541,0.0288522019982338,0.995122849941254,-0.10880571603775,0.0131476251408458,0.99397599697113,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.10880571603775,0.0131476251408458,0.99397599697113,-0.416721314191818,-0.0176437478512526,0.908863008022308,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.155206382274628,-0.334304124116898,0.929597616195679,-0.129447922110558,-0.237919300794601,0.962620198726654,-0.440864354372025,-0.237128034234047,0.86568409204483,-0.458524763584137,-0.304732322692871,0.834801316261292,3.16250188916456e-05,0.998316526412964,0.0580002292990685,-0.000560834130737931,0.759455561637878,0.650558948516846,-0.295125186443329,0.727130055427551,0.619825065135956,-0.0110622951760888,0.998569190502167,0.0523180291056633,-0.000560834130737931,0.759455561637878,0.650558948516846,0.000240212044445798,-0.090602844953537,0.995887100696564,-0.488369077444077,-0.0530646555125713,0.87102222442627,-0.295125186443329,0.727130055427551,0.619825065135956,-0.295125186443329,0.727130055427551,0.619825065135956,-0.488369077444077,-0.0530646555125713,0.87102222442627,-0.416721314191818,-0.0176437478512526,0.908863008022308,-0.27617135643959,0.731259226799011,0.623689949512482,-0.0110622951760888,0.998569190502167,0.0523180291056633, +-0.295125186443329,0.727130055427551,0.619825065135956,-0.27617135643959,0.731259226799011,0.623689949512482,-0.0313069485127926,0.998219788074493,0.0507664456963539,-0.00183687009848654,0.999996066093445,0.00214116298593581,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.0080979410558939,0.965640664100647,-0.259754508733749,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.00238080229610205,0.961185395717621,-0.275893032550812,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.0080979410558939,0.965640664100647,-0.259754508733749,-0.0080979410558939,0.965640664100647,-0.259754508733749,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.133362740278244,0.658979296684265,-0.740243673324585,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.0224155634641647,0.99906861782074,0.0368697941303253,-0.0080979410558939,0.965640664100647,-0.259754508733749,2.80411086350796e-06,0.959221184253693,-0.282656520605087,-0.0313069485127926,0.998219788074493,0.0507664456963539,-0.0285782255232334,0.729885697364807,-0.682971596717834,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.0581545159220695,0.430853486061096,-0.900546133518219,-0.0522882007062435,0.322993904352188,-0.944955408573151,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.215025037527084,0.322512626647949,-0.921818733215332,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.078519344329834,0.720761895179749,-0.688721239566803,-0.187421560287476,0.427111268043518,-0.884561538696289,-0.308555066585541,0.384640067815781,-0.869968831539154,-0.133362740278244,0.658979296684265,-0.740243673324585,-0.260240614414215,0.307801157236099,-0.915168404579163,-1.51857690866564e-07,0.322332769632339,-0.946626484394073, +-7.8074026532704e-06,0.338909506797791,-0.940818905830383,-0.261917173862457,0.326285809278488,-0.908260464668274,-0.260240614414215,0.307801157236099,-0.915168404579163,-0.261917173862457,0.326285809278488,-0.908260464668274,-0.344220340251923,0.314289510250092,-0.884722828865051,-0.333563297986984,0.29656058549881,-0.894867241382599,-0.291237950325012,0.205016359686852,-0.9344242811203,1.21185021271231e-05,0.230906829237938,-0.972975850105286,-1.51857690866564e-07,0.322332769632339,-0.946626484394073,-0.260240614414215,0.307801157236099,-0.915168404579163,-0.291237950325012,0.205016359686852,-0.9344242811203,-0.260240614414215,0.307801157236099,-0.915168404579163,-0.333563297986984,0.29656058549881,-0.894867241382599,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.166266694664955,0.278747469186783,-0.945862174034119,-0.368761420249939,0.0988195315003395,-0.924256324768066,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.285622119903564,0.206322491168976,-0.935869157314301,-0.355169355869293,0.0900881141424179,-0.930450856685638,-0.318880528211594,0.120925262570381,-0.940049111843109,-0.371681064367294,0.176321938633919,-0.911462426185608,-0.142850771546364,0.293649584054947,-0.945179104804993,-0.221301317214966,0.152849704027176,-0.963152468204498,-0.318880528211594,0.120925262570381,-0.940049111843109,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.323321968317032,0.276273161172867,-0.905061423778534,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.25922304391861,0.29964205622673,-0.918160140514374,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.182878151535988,0.52682489156723,-0.830066859722137,-0.208717927336693,0.299666196107864,-0.930933356285095,-0.176512122154236,0.811137557029724,-0.557583630084991,-0.172377914190292,0.741736710071564,-0.648160815238953,-0.215977504849434,0.747572183609009,-0.628083944320679, +-0.22725011408329,0.797015845775604,-0.559574127197266,-0.172377914190292,0.741736710071564,-0.648160815238953,-0.182878151535988,0.52682489156723,-0.830066859722137,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.215977504849434,0.747572183609009,-0.628083944320679,-0.215977504849434,0.747572183609009,-0.628083944320679,-0.222158625721931,0.542235553264618,-0.810324668884277,-0.254485756158829,0.533402621746063,-0.806671380996704,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.22725011408329,0.797015845775604,-0.559574127197266,-0.215977504849434,0.747572183609009,-0.628083944320679,-0.226147398352623,0.75593513250351,-0.614344835281372,-0.23056173324585,0.802569389343262,-0.550203382968903,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.229085221886635,-0.28821063041687,0.929760456085205,-0.226999118924141,-0.298325330018997,0.927077949047089,-0.179358407855034,-0.302890688180923,0.935995697975159,-0.175993114709854,-0.290900677442551,0.94042706489563,-0.179358407855034,-0.302890688180923,0.935995697975159,-0.186343878507614,-0.30264887213707,0.93470823764801,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.150568410754204,-0.275894820690155,0.949321508407593,2.95768154501275e-06,-0.273690581321716,0.961817860603333,2.93843027066032e-06,-0.0644973665475845,0.997917890548706,-0.00905205681920052,-0.0846886336803436,0.996366322040558,-0.150568410754204,-0.275894820690155,0.949321508407593,-0.00905205681920052,-0.0846886336803436,0.996366322040558,-0.0497316643595695,-0.134555041790009,0.989657342433929,-0.177928194403648,-0.284252554178238,0.942094504833221,-0.0695114508271217,-0.308985948562622,0.948523044586182,-0.220322608947754,-0.324951678514481,0.919708907604218,-0.272194772958755,-0.176342085003853,0.945945799350739,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.0695114508271217,-0.308985948562622,0.948523044586182,-0.135230839252472,-0.17477086186409,0.975278377532959,-0.0497316643595695,-0.134555041790009,0.989657342433929,0.150402024388313,-0.318250775337219,0.935999751091003, +0.223788768053055,-0.286292523145676,0.931641161441803,5.24779306942946e-06,-0.263720482587814,0.964599132537842,2.46701147261774e-05,-0.340059369802475,0.940403938293457,0.420541554689407,-0.33530592918396,0.843038976192474,0.223788768053055,-0.286292523145676,0.931641161441803,0.420541554689407,-0.33530592918396,0.843038976192474,0.310132741928101,-0.395607888698578,0.864472031593323,0.150402024388313,-0.318250775337219,0.935999751091003,0.125930786132813,-0.385909855365753,0.913900971412659,-0.0692600607872009,-0.40361499786377,0.912303626537323,-0.109554767608643,-0.463935196399689,0.879068791866302,0.0340442918241024,-0.44191038608551,0.896412968635559,0.125930786132813,-0.385909855365753,0.913900971412659,0.0340442918241024,-0.44191038608551,0.896412968635559,0.310132741928101,-0.395607888698578,0.864472031593323,0.424551904201508,-0.334209501743317,0.841462910175323,0.481838226318359,-0.307934612035751,0.820370674133301,-7.49473110772669e-06,-0.342941403388977,0.939356803894043,1.42427379614674e-05,-0.348549783229828,0.937290251255035,0.511289834976196,-0.297905415296555,0.806123495101929,0.481838226318359,-0.307934612035751,0.820370674133301,0.511289834976196,-0.297905415296555,0.806123495101929,0.458569407463074,-0.304762840270996,0.834765732288361,0.424551904201508,-0.334209501743317,0.841462910175323,-0.0943231582641602,0.0288749188184738,0.995122790336609,-0.0843810960650444,-0.217296659946442,0.972451567649841,0.129447683691978,-0.237919986248016,0.962620079517365,0.108872637152672,0.0131196500733495,0.993969142436981,-0.0843810960650444,-0.217296659946442,0.972451567649841,-0.0625111162662506,-0.333361387252808,0.940724492073059,0.155205458402634,-0.334317892789841,0.929592788219452,0.129447683691978,-0.237919986248016,0.962620079517365,0.129447683691978,-0.237919986248016,0.962620079517365,0.155205458402634,-0.334317892789841,0.929592788219452,0.458569407463074,-0.304762840270996,0.834765732288361,0.440884202718735,-0.237137153744698,0.865671396255493,0.108872637152672,0.0131196500733495,0.993969142436981, +0.129447683691978,-0.237919986248016,0.962620079517365,0.440884202718735,-0.237137153744698,0.865671396255493,0.416714161634445,-0.0174247231334448,0.908870577812195,0.000240212044445798,-0.090602844953537,0.995887100696564,-0.000560834130737931,0.759455561637878,0.650558948516846,0.29518061876297,0.727222681045532,0.61968994140625,0.488590627908707,-0.0529423989355564,0.87090539932251,-0.000560834130737931,0.759455561637878,0.650558948516846,3.16250188916456e-05,0.998316526412964,0.0580002292990685,0.0110333543270826,0.998570621013641,0.0522978268563747,0.29518061876297,0.727222681045532,0.61968994140625,0.29518061876297,0.727222681045532,0.61968994140625,0.0110333543270826,0.998570621013641,0.0522978268563747,0.0313166528940201,0.998217403888702,0.0508056059479713,0.276121646165848,0.73132461309433,0.623635530471802,0.488590627908707,-0.0529423989355564,0.87090539932251,0.29518061876297,0.727222681045532,0.61968994140625,0.276121646165848,0.73132461309433,0.623635530471802,0.416714161634445,-0.0174247231334448,0.908870577812195,0.0285819675773382,0.729895889759064,-0.682960391044617,0.00238245795480907,0.961176156997681,-0.275925070047379,0.00809983070939779,0.96565043926239,-0.259718418121338,0.0785375684499741,0.720712304115295,-0.688771069049835,0.00238245795480907,0.961176156997681,-0.275925070047379,0.00182646268513054,0.99999612569809,0.00212048715911806,0.0224202573299408,0.999069094657898,0.0368568897247314,0.00809983070939779,0.96565043926239,-0.259718418121338,0.00809983070939779,0.96565043926239,-0.259718418121338,0.0224202573299408,0.999069094657898,0.0368568897247314,0.0313166528940201,0.998217403888702,0.0508056059479713,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.0785375684499741,0.720712304115295,-0.688771069049835,0.00809983070939779,0.96565043926239,-0.259718418121338,1.30313710542396e-05,0.959259033203125,-0.282528042793274,0.133469432592392,0.65885329246521,-0.74033659696579,0.0522924698889256,0.322998911142349,-0.944953560829163,0.058124840259552,0.430876910686493,-0.900536835193634, +0.187488585710526,0.427115112543106,-0.884545564651489,0.215213447809219,0.322506368160248,-0.921777009963989,0.058124840259552,0.430876910686493,-0.900536835193634,0.0285819675773382,0.729895889759064,-0.682960391044617,0.0785375684499741,0.720712304115295,-0.688771069049835,0.187488585710526,0.427115112543106,-0.884545564651489,0.187488585710526,0.427115112543106,-0.884545564651489,0.0785375684499741,0.720712304115295,-0.688771069049835,0.133469432592392,0.65885329246521,-0.74033659696579,0.308559060096741,0.384593516588211,-0.869988083839417,0.215213447809219,0.322506368160248,-0.921777009963989,0.187488585710526,0.427115112543106,-0.884545564651489,0.308559060096741,0.384593516588211,-0.869988083839417,0.344331592321396,0.314264476299286,-0.884688377380371,0.261896342039108,0.326266586780548,-0.908273279666901,-7.8074026532704e-06,0.338909506797791,-0.940818905830383,-1.51857690866564e-07,0.322332769632339,-0.946626484394073,0.26021546125412,0.307808876037598,-0.91517299413681,0.261896342039108,0.326266586780548,-0.908273279666901,0.26021546125412,0.307808876037598,-0.91517299413681,0.333691775798798,0.296535044908524,-0.894827723503113,0.344331592321396,0.314264476299286,-0.884688377380371,0.26021546125412,0.307808876037598,-0.91517299413681,-1.51857690866564e-07,0.322332769632339,-0.946626484394073,1.21185021271231e-05,0.230906829237938,-0.972975850105286,0.291167229413986,0.205097615718842,-0.934428453445435,0.26021546125412,0.307808876037598,-0.91517299413681,0.291167229413986,0.205097615718842,-0.934428453445435,0.371691584587097,0.176296725869179,-0.911462962627411,0.333691775798798,0.296535044908524,-0.894827723503113,0.355109542608261,0.0902480930089951,-0.930458247661591,0.368675380945206,0.098903588950634,-0.924281597137451,0.16628709435463,0.278749406337738,-0.94585794210434,0.285638749599457,0.2063317745924,-0.935862064361572,0.355109542608261,0.0902480930089951,-0.930458247661591,0.285638749599457,0.2063317745924,-0.935862064361572,0.371691584587097,0.176296725869179,-0.911462962627411,0.318776696920395,0.121042519807816,-0.940069198608398, +0.22142082452774,0.15281318128109,-0.9631307721138,-1.20188781238539e-06,0.167663976550102,-0.985844194889069,2.50662333201035e-06,0.290553063154221,-0.95685887336731,0.142957478761673,0.29364675283432,-0.945163905620575,0.254412084817886,0.533420383930206,-0.806682765483856,0.323132365942001,0.276261866092682,-0.905132412910461,0.259201914072037,0.299632668495178,-0.91816920042038,0.222146436572075,0.542190074920654,-0.81035852432251,0.222146436572075,0.542190074920654,-0.81035852432251,0.259201914072037,0.299632668495178,-0.91816920042038,0.208717495203018,0.299665898084641,-0.930933594703674,0.182871222496033,0.526780843734741,-0.830096364021301,0.254412084817886,0.533420383930206,-0.806682765483856,0.222146436572075,0.542190074920654,-0.81035852432251,0.216018065810204,0.747482717037201,-0.628176629543304,0.226110190153122,0.755864500999451,-0.614445269107819,0.222146436572075,0.542190074920654,-0.81035852432251,0.182871222496033,0.526780843734741,-0.830096364021301,0.172337353229523,0.741694688796997,-0.64821982383728,0.216018065810204,0.747482717037201,-0.628176629543304,0.216018065810204,0.747482717037201,-0.628176629543304,0.172337353229523,0.741694688796997,-0.64821982383728,0.176429450511932,0.811212837696075,-0.557500243186951,0.227301627397537,0.797038078308105,-0.559521317481995,0.226110190153122,0.755864500999451,-0.614445269107819,0.216018065810204,0.747482717037201,-0.628176629543304,0.227301627397537,0.797038078308105,-0.559521317481995,0.230574190616608,0.802635431289673,-0.550101757049561,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.968618035316467,0.227608129382133,0.0998680666089058,-0.999411582946777,0.0342933759093285,-0.000705166603438556,-0.800974011421204,0.345853120088577,-0.488698601722717,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.735272943973541,0.677123188972473,-0.0296302065253258,-0.968618035316467,0.227608129382133,0.0998680666089058,0.982530891895294,0.179615572094917,-0.048695120960474,0.909924030303955,0.382335722446442,0.160803377628326, +0.918489754199982,0.390081375837326,0.0649086162447929,0.963160037994385,0.267727553844452,0.0253903493285179,0.94057035446167,0.131806656718254,-0.312976598739624,0.959687411785126,0.0514214597642422,-0.27632600069046,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.985291481018066,0.124938115477562,-0.11658088862896,0.959687411785126,0.0514214597642422,-0.27632600069046,0.965870499610901,0.00448970589786768,-0.258986443281174,0.998047888278961,0.0146625395864248,-0.060707226395607,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.577709436416626,0.788253307342529,-0.211915999650955,0.841995894908905,0.44246968626976,-0.308647990226746,0.910410702228546,0.389947533607483,-0.138178318738937,0.633624613285065,0.753813445568085,-0.174026221036911,0.841995894908905,0.44246968626976,-0.308647990226746,0.94057035446167,0.131806656718254,-0.312976598739624,0.985291481018066,0.124938115477562,-0.11658088862896,0.910410702228546,0.389947533607483,-0.138178318738937,-0.0506674610078335,0.99699342250824,-0.0586251579225063,0.157750144600868,0.984252214431763,-0.0797660797834396,0.174809172749519,0.976600348949432,-0.125273838639259,-0.0905638262629509,0.989124715328217,-0.115889199078083,0.157750144600868,0.984252214431763,-0.0797660797834396,0.577709436416626,0.788253307342529,-0.211915999650955,0.633624613285065,0.753813445568085,-0.174026221036911,0.174809172749519,0.976600348949432,-0.125273838639259,-0.735272943973541,0.677123188972473,-0.0296302065253258,-0.552201747894287,0.750596106052399,-0.362875431776047,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.283307284116745,0.949905514717102,-0.131971746683121,-0.185968086123466,0.974813044071198,-0.123107448220253,-0.0506674610078335,0.99699342250824,-0.0586251579225063,-0.0905638262629509,0.989124715328217,-0.115889199078083,-0.283307284116745,0.949905514717102,-0.131971746683121,0.965870499610901,0.00448970589786768,-0.258986443281174,0.982530891895294,0.179615572094917,-0.048695120960474,0.963160037994385,0.267727553844452,0.0253903493285179, +0.998047888278961,0.0146625395864248,-0.060707226395607,0.993812620639801,-0.0107418037950993,-0.110549911856651,0.999412536621094,0.0342502295970917,-0.00125980097800493,0.843631565570831,0.103148303925991,-0.526921272277832,0.860810875892639,0.011091579683125,-0.508804142475128,0.993812620639801,-0.0107418037950993,-0.110549911856651,0.860810875892639,0.011091579683125,-0.508804142475128,0.83915901184082,-0.095047727227211,-0.535516738891602,0.953685641288757,-0.109224699437618,-0.280273914337158,0.552241027355194,0.750507056713104,-0.362999767065048,0.80096834897995,0.345901638269424,-0.488673329353333,0.968575656414032,0.227879360318184,0.0996607095003128,0.735121607780457,0.677271008491516,-0.0300026647746563,0.80096834897995,0.345901638269424,-0.488673329353333,0.843631565570831,0.103148303925991,-0.526921272277832,0.999412536621094,0.0342502295970917,-0.00125980097800493,0.968575656414032,0.227879360318184,0.0996607095003128,-0.909995555877686,0.382108211517334,0.160939007997513,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.963136672973633,0.267785251140594,0.0256693139672279,-0.918653607368469,0.389712989330292,0.0648018419742584,-0.959764063358307,0.0512487143278122,-0.276091665029526,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.959764063358307,0.0512487143278122,-0.276091665029526,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.940623223781586,0.131842687726021,-0.312802702188492,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.910138785839081,0.390371263027191,-0.138771787285805,-0.841935217380524,0.442614436149597,-0.308605521917343,-0.577608048915863,0.788340985774994,-0.21186663210392,-0.633245766162872,0.754034101963043,-0.174448430538177,-0.910138785839081,0.390371263027191,-0.138771787285805, +-0.633245766162872,0.754034101963043,-0.174448430538177,-0.577608048915863,0.788340985774994,-0.21186663210392,-0.157791629433632,0.984245717525482,-0.0797630324959755,-0.174915432929993,0.976571559906006,-0.12535035610199,-0.157791629433632,0.984245717525482,-0.0797630324959755,0.0506666153669357,0.996992409229279,-0.0586448013782501,0.0905739814043045,0.989119470119476,-0.115926384925842,-0.174915432929993,0.976571559906006,-0.12535035610199,0.0905739814043045,0.989119470119476,-0.115926384925842,0.0506666153669357,0.996992409229279,-0.0586448013782501,0.185870006680489,0.974829435348511,-0.123125806450844,0.283193707466125,0.949928641319275,-0.132048457860947,0.185870006680489,0.974829435348511,-0.123125806450844,0.552241027355194,0.750507056713104,-0.362999767065048,0.735121607780457,0.677271008491516,-0.0300026647746563,0.283193707466125,0.949928641319275,-0.132048457860947,-0.982513427734375,0.179776504635811,-0.0484544485807419,-0.965959370136261,0.00427926890552044,-0.258658677339554,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.963136672973633,0.267785251140594,0.0256693139672279,0.981224417686462,0.167806178331375,-0.0950773656368256,0.935576796531677,0.340476334095001,-0.0936591178178787,0.910410702228546,0.389947533607483,-0.138178318738937,0.985291481018066,0.124938115477562,-0.11658088862896,0.995482861995697,0.0543078929185867,-0.0778756663203239,0.981224417686462,0.167806178331375,-0.0950773656368256,0.985291481018066,0.124938115477562,-0.11658088862896,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.999225378036499,0.0259163454174995,-0.0296154581010342,0.995482861995697,0.0543078929185867,-0.0778756663203239,0.994011163711548,0.0471232607960701,-0.0985955893993378,0.998047888278961,0.0146625395864248,-0.060707226395607,0.951579332351685,0.307402849197388,-0.000335537944920361,0.999225378036499,0.0259163454174995,-0.0296154581010342,0.998047888278961,0.0146625395864248,-0.060707226395607,0.963160037994385,0.267727553844452,0.0253903493285179,0.91887229681015,0.394474267959595,-0.00798751227557659, +0.951579332351685,0.307402849197388,-0.000335537944920361,0.963160037994385,0.267727553844452,0.0253903493285179,0.918489754199982,0.390081375837326,0.0649086162447929,0.934445858001709,0.35219806432724,-0.0526059940457344,0.937036633491516,0.347901165485382,-0.0304490700364113,0.933702230453491,0.351534873247147,0.0679962337017059,0.91965240240097,0.390021592378616,0.0460708625614643,0.937036633491516,0.347901165485382,-0.0304490700364113,0.91887229681015,0.394474267959595,-0.00798751227557659,0.918489754199982,0.390081375837326,0.0649086162447929,0.933702230453491,0.351534873247147,0.0679962337017059,0.198442324995995,0.965159118175507,0.170553311705589,0.147601917386055,0.978087961673737,0.146825015544891,0.325861901044846,0.941287815570831,0.0882673636078835,0.35967755317688,0.930222868919373,0.0729219540953636,0.325861901044846,0.941287815570831,0.0882673636078835,0.461842626333237,0.886631667613983,-0.0242011398077011,0.519965469837189,0.854100704193115,0.0121630895882845,0.35967755317688,0.930222868919373,0.0729219540953636,-0.460653066635132,0.887348234653473,-0.0202932339161634,-0.325271785259247,0.941008806228638,0.0932776555418968,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.519298076629639,0.85447096824646,0.014456233009696,-0.325271785259247,0.941008806228638,0.0932776555418968,-0.150234207510948,0.977291941642761,0.149432733654976,-0.199016839265823,0.964948236942291,0.17107680439949,-0.360052734613419,0.929849565029144,0.0757752731442451,-0.934439778327942,0.352213710546494,-0.0526110976934433,-0.739810407161713,0.666273951530457,-0.0935925915837288,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.739810407161713,0.666273951530457,-0.0935925915837288,-0.460653066635132,0.887348234653473,-0.0202932339161634,-0.519298076629639,0.85447096824646,0.014456233009696,-0.787987470626831,0.615683138370514,0.00317366351373494,-0.951680302619934,0.307090789079666,-8.11222344054841e-05,-0.91904205083847,0.394078344106674,-0.00799847114831209, +-0.918653607368469,0.389712989330292,0.0648018419742584,-0.963136672973633,0.267785251140594,0.0256693139672279,-0.999247670173645,0.0258413702249527,-0.0289186723530293,-0.951680302619934,0.307090789079666,-8.11222344054841e-05,-0.963136672973633,0.267785251140594,0.0256693139672279,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.995457231998444,0.0543347783386707,-0.078183077275753,-0.999247670173645,0.0258413702249527,-0.0289186723530293,-0.998071134090424,0.0144893089309335,-0.0603661350905895,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.981092154979706,0.168172180652618,-0.0957925766706467,-0.995457231998444,0.0543347783386707,-0.078183077275753,-0.994002163410187,0.047032356262207,-0.0987302958965302,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.93528687953949,0.341063588857651,-0.0944134220480919,-0.981092154979706,0.168172180652618,-0.0957925766706467,-0.985225796699524,0.125118613243103,-0.11694211512804,-0.910138785839081,0.390371263027191,-0.138771787285805,-0.993900716304779,-0.0106280529871583,-0.109765827655792,-0.953887403011322,-0.109419479966164,-0.279510796070099,-0.839524686336517,-0.0949402377009392,-0.534962296485901,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.843613088130951,0.103205285966396,-0.526939868927002,-0.999411582946777,0.0342933759093285,-0.000705166603438556,-0.993900716304779,-0.0106280529871583,-0.109765827655792,-0.86098724603653,0.0111681213602424,-0.508503913879395,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.911364376544952,0.382403463125229,0.152258291840553,-0.933690547943115,0.351602673530579,0.0678064078092575,-0.911364376544952,0.382403463125229,0.152258291840553,-0.909995555877686,0.382108211517334,0.160939007997513,-0.918653607368469,0.389712989330292,0.0648018419742584,-0.933690547943115,0.351602673530579,0.0678064078092575,-0.918653607368469,0.389712989330292,0.0648018419742584,-0.91904205083847,0.394078344106674,-0.00799847114831209,-0.937026500701904,0.34792622923851,-0.0304722040891647, +-0.933690547943115,0.351602673530579,0.0678064078092575,-0.937026500701904,0.34792622923851,-0.0304722040891647,-0.934439778327942,0.352213710546494,-0.0526110976934433,-0.919622838497162,0.390116900205612,0.0458544790744781,-0.933690547943115,0.351602673530579,0.0678064078092575,0.91965240240097,0.390021592378616,0.0460708625614643,0.884372234344482,0.457667320966721,0.0917949602007866,0.801068782806396,0.595264196395874,0.0628444850444794,0.788574576377869,0.614932358264923,0.00284513644874096,0.801068782806396,0.595264196395874,0.0628444850444794,0.584385097026825,0.809152603149414,0.0613689199090004,0.519965469837189,0.854100704193115,0.0121630895882845,0.788574576377869,0.614932358264923,0.00284513644874096,0.519965469837189,0.854100704193115,0.0121630895882845,0.461842626333237,0.886631667613983,-0.0242011398077011,0.740596115589142,0.665208756923676,-0.0949457511305809,0.788574576377869,0.614932358264923,0.00284513644874096,0.740596115589142,0.665208756923676,-0.0949457511305809,0.934445858001709,0.35219806432724,-0.0526059940457344,0.91965240240097,0.390021592378616,0.0460708625614643,0.788574576377869,0.614932358264923,0.00284513644874096,0.198442324995995,0.965159118175507,0.170553311705589,0.0770793333649635,0.951992928981781,0.296257019042969,-0.12767069041729,0.86908620595932,0.477901011705399,-0.0940338149666786,0.943791687488556,0.316883236169815,0.0770793333649635,0.951992928981781,0.296257019042969,3.1286046578316e-05,0.933347523212433,0.35897421836853,0.00105006573721766,0.819467723369598,0.573124349117279,-0.12767069041729,0.86908620595932,0.477901011705399,-0.12767069041729,0.86908620595932,0.477901011705399,0.00105006573721766,0.819467723369598,0.573124349117279,0.00354147492907941,0.63427597284317,0.773098587989807,-0.321096479892731,0.720745503902435,0.614347457885742,-0.0940338149666786,0.943791687488556,0.316883236169815,-0.12767069041729,0.86908620595932,0.477901011705399,-0.321096479892731,0.720745503902435,0.614347457885742,-0.368012607097626,0.849207520484924,0.378699630498886,0.173189952969551,0.958074808120728,0.228249445557594, +0.340378850698471,0.892681539058685,0.295401394367218,0.369827419519424,0.848678946495056,0.378115952014923,0.0926034152507782,0.943549811840057,0.318022698163986,0.173189952969551,0.958074808120728,0.228249445557594,0.0926034152507782,0.943549811840057,0.318022698163986,-0.199016839265823,0.964948236942291,0.17107680439949,-0.150234207510948,0.977291941642761,0.149432733654976,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,0.0988913848996162,0.994943797588348,0.017530145123601,0.103175163269043,0.993301212787628,-0.052034717053175,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,2.26350630327943e-06,0.99591463804245,0.0902996808290482,0.086555078625679,0.993677139282227,0.0715123042464256,0.0988913848996162,0.994943797588348,0.017530145123601,0.0988913848996162,0.994943797588348,0.017530145123601,0.086555078625679,0.993677139282227,0.0715123042464256,0.239230915904045,0.970812439918518,0.0170813668519258,0.25543686747551,0.966500818729401,-0.0250628516077995,0.103175163269043,0.993301212787628,-0.052034717053175,0.0988913848996162,0.994943797588348,0.017530145123601,0.25543686747551,0.966500818729401,-0.0250628516077995,0.262632310390472,0.961123704910278,-0.0852374881505966,-0.239247843623161,0.970808088779449,0.0170955918729305,-0.0865604281425476,0.993676722049713,0.0715120956301689,-0.0988745242357254,0.994945466518402,0.0175352524966002,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.0865604281425476,0.993676722049713,0.0715120956301689,2.26350630327943e-06,0.99591463804245,0.0902996808290482,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,-0.0988745242357254,0.994945466518402,0.0175352524966002,-0.0988745242357254,0.994945466518402,0.0175352524966002,-5.47067475054064e-06,0.999535381793976,0.0304792337119579,3.30018633576401e-06,0.999121069908142,-0.0419172532856464,-0.10318198800087,0.993300795555115,-0.0520285628736019,-0.255428791046143,0.966503500938416,-0.0250415280461311,-0.0988745242357254,0.994945466518402,0.0175352524966002, +-0.10318198800087,0.993300795555115,-0.0520285628736019,-0.262632071971893,0.961122930049896,-0.0852473974227905,-0.988347291946411,0.104021579027176,-0.111126624047756,-0.884291470050812,0.45781746506691,0.0918247327208519,-0.800784587860107,0.595632255077362,0.0629777014255524,-0.814514100551605,0.577297806739807,0.0573935136198997,0.884372234344482,0.457667320966721,0.0917949602007866,0.988293766975403,-0.00941547844558954,-0.152272343635559,0.988306939601898,0.104397609829903,-0.111133053898811,-0.622444152832031,-0.0568815171718597,0.780594408512115,-0.633827924728394,0.0169978868216276,0.773287355899811,-0.493350982666016,-0.292393028736115,0.81921374797821,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.0507670193910599,-0.311318546533585,0.948948562145233,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.0507670193910599,-0.311318546533585,0.948948562145233,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.0525912828743458,-0.641458690166473,0.765352845191956,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.122217893600464,-0.506918251514435,0.853285849094391,-0.0525912828743458,-0.641458690166473,0.765352845191956,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.362703084945679,-0.449246019124985,0.816470742225647,-0.296234369277954,-0.436655968427658,0.849456787109375,-0.430363267660141,-0.0405699424445629,0.901743590831757, +-0.513725578784943,-0.281165987253189,0.810575008392334,-0.369815438985825,-0.479616552591324,0.795741438865662,-0.362703084945679,-0.449246019124985,0.816470742225647,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.368978589773178,-0.517406225204468,0.772104680538177,-0.369815438985825,-0.479616552591324,0.795741438865662,-0.513725578784943,-0.281165987253189,0.810575008392334,-0.394751042127609,-0.459863156080246,0.795422732830048,-0.321326851844788,-0.594967842102051,0.736724138259888,-0.368978589773178,-0.517406225204468,0.772104680538177,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.430363267660141,-0.0405699424445629,0.901743590831757,-0.296234369277954,-0.436655968427658,0.849456787109375,-0.122217893600464,-0.506918251514435,0.853285849094391,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.208823442459106,0.391514956951141,0.89616334438324,-0.373429536819458,0.295800745487213,0.87923389673233,-0.633827924728394,0.0169978868216276,0.773287355899811,-0.622444152832031,-0.0568815171718597,0.780594408512115,0.20521105825901,0.303497523069382,0.930471777915955,0.126515954732895,0.184289872646332,0.974695205688477,0.00895701535046101,0.33652463555336,0.941632032394409,0.152036800980568,0.404537260532379,0.901795029640198,0.152036800980568,0.404537260532379,0.901795029640198,0.00895701535046101,0.33652463555336,0.941632032394409,-0.373429536819458,0.295800745487213,0.87923389673233,-0.208823442459106,0.391514956951141,0.89616334438324,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.493350982666016,-0.292393028736115,0.81921374797821,0.0972790643572807,0.225614964962006,0.969347536563873,0.0805548876523972,0.00170732999686152,0.996748685836792,0.126515954732895,0.184289872646332,0.974695205688477,0.20521105825901,0.303497523069382,0.930471777915955,-0.0322061702609062,0.215598866343498,0.975950837135315, +-0.0483344346284866,-0.126977697014809,0.990727245807648,0.0805548876523972,0.00170732999686152,0.996748685836792,0.0972790643572807,0.225614964962006,0.969347536563873,-0.24457274377346,0.23941496014595,0.939608812332153,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.0483344346284866,-0.126977697014809,0.990727245807648,-0.0322061702609062,0.215598866343498,0.975950837135315,-0.43378084897995,0.253316581249237,0.864676177501678,-0.501552581787109,-0.0615811087191105,0.862932622432709,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.24457274377346,0.23941496014595,0.939608812332153,-0.552580296993256,0.248522356152534,0.795544862747192,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.501552581787109,-0.0615811087191105,0.862932622432709,-0.43378084897995,0.253316581249237,0.864676177501678,-0.616995096206665,0.248675897717476,0.746644020080566,-0.603928744792938,0.156121075153351,0.781598567962646,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.552580296993256,0.248522356152534,0.795544862747192,-0.578743577003479,0.225211217999458,0.783795773983002,-0.577003598213196,0.190486997365952,0.794217646121979,-0.603928744792938,0.156121075153351,0.781598567962646,-0.616995096206665,0.248675897717476,0.746644020080566,-0.487023383378983,0.129526227712631,0.86373096704483,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.577003598213196,0.190486997365952,0.794217646121979,-0.578743577003479,0.225211217999458,0.783795773983002,-0.356160789728165,-0.327515810728073,0.875147342681885,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.487023383378983,0.129526227712631,0.86373096704483,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.356160789728165,-0.327515810728073,0.875147342681885,-0.321326851844788,-0.594967842102051,0.736724138259888,-0.394751042127609,-0.459863156080246,0.795422732830048,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.699978470802307,0.105198852717876,0.706373274326324, +-0.622288882732391,-0.106440320611,0.775517344474792,-0.579371690750122,-0.130315348505974,0.804578363895416,-0.579371690750122,-0.130315348505974,0.804578363895416,-0.622288882732391,-0.106440320611,0.775517344474792,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.82001256942749,0.130813300609589,0.557195842266083,-0.875361323356628,0.225780814886093,0.42751082777977,-0.891718804836273,0.173081874847412,0.418186724185944,-0.795642733573914,0.111424118280411,0.595430314540863,-0.807716190814972,0.132200345396996,0.574558556079865,-0.873296499252319,0.179054200649261,0.45309242606163,-0.875361323356628,0.225780814886093,0.42751082777977,-0.82001256942749,0.130813300609589,0.557195842266083,-0.76854807138443,0.109590314328671,0.630336225032806,-0.844377338886261,0.131901383399963,0.519258081912994,-0.873296499252319,0.179054200649261,0.45309242606163,-0.807716190814972,0.132200345396996,0.574558556079865,-0.700298309326172,0.131053596735001,0.701717376708984,-0.76689887046814,0.116679958999157,0.631071984767914,-0.844377338886261,0.131901383399963,0.519258081912994,-0.76854807138443,0.109590314328671,0.630336225032806,-0.526602387428284,0.183498844504356,0.830071091651917,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.76689887046814,0.116679958999157,0.631071984767914,-0.700298309326172,0.131053596735001,0.701717376708984,-0.369711548089981,0.146718040108681,0.917489588260651,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.526602387428284,0.183498844504356,0.830071091651917,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.369711548089981,0.146718040108681,0.917489588260651, +-0.190550938248634,-0.252945214509964,0.948529958724976,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.190550938248634,-0.252945214509964,0.948529958724976,-0.257303357124329,-0.354579329490662,0.898926258087158,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.257303357124329,-0.354579329490662,0.898926258087158,-0.795642733573914,0.111424118280411,0.595430314540863,-0.891718804836273,0.173081874847412,0.418186724185944,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.386911332607269,0.0745889842510223,0.919095277786255,-0.32172629237175,0.0042048622854054,0.946823418140411,-0.32172629237175,0.0042048622854054,0.946823418140411, +-0.386911332607269,0.0745889842510223,0.919095277786255,-0.300742030143738,0.219192281365395,0.928175091743469,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.300742030143738,0.219192281365395,0.928175091743469,-0.241419926285744,0.347718894481659,0.905984461307526,-0.149873554706573,0.228948622941971,0.96183180809021,-0.149873554706573,0.228948622941971,0.96183180809021,-0.241419926285744,0.347718894481659,0.905984461307526,-0.295458763837814,0.403195053339005,0.866105020046234,-0.193298250436783,0.311735332012177,0.930299341678619,-0.193298250436783,0.311735332012177,0.930299341678619,-0.295458763837814,0.403195053339005,0.866105020046234,-0.483116298913956,0.378075420856476,0.789719998836517,-0.390417993068695,0.353622496128082,0.850014686584473,-0.546429932117462,0.280326753854752,0.789196491241455,-0.635390877723694,0.277111351490021,0.72075492143631,-0.699978470802307,0.105198852717876,0.706373274326324,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.390417993068695,0.353622496128082,0.850014686584473,-0.483116298913956,0.378075420856476,0.789719998836517,-0.635390877723694,0.277111351490021,0.72075492143631,-0.546429932117462,0.280326753854752,0.789196491241455,-9.54276870857029e-08,0.46919858455658,0.883092641830444,-0.427030801773071,0.423026651144028,0.799182772636414,-0.440599650144577,0.181119993329048,0.879242658615112,-4.4512784569406e-08,0.194622755050659,0.980878174304962,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,-0.161505579948425,-0.139396369457245,0.976977288722992,-0.170562729239464,-0.404366999864578,0.898552000522614,-8.14389480296995e-08,-0.502702832221985,0.864459335803986,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.587400913238525,-0.149357974529266,0.795394480228424, +-0.648984730243683,-0.224779799580574,0.726837575435638,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.587400913238525,-0.149357974529266,0.795394480228424,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.263805389404297,-0.3244608938694,0.908367693424225,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.161505579948425,-0.139396369457245,0.976977288722992,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.263805389404297,-0.3244608938694,0.908367693424225,-0.170562729239464,-0.404366999864578,0.898552000522614,-0.648984730243683,-0.224779799580574,0.726837575435638,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.172886833548546,-0.39629265666008,0.901699721813202,-0.172886833548546,-0.39629265666008,0.901699721813202,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.457513511180878,-0.228730887174606,0.8592808842659, +-0.555301427841187,-0.227197021245956,0.800013661384583,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.555301427841187,-0.227197021245956,0.800013661384583,-0.457513511180878,-0.228730887174606,0.8592808842659,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.718692064285278,-0.158278584480286,0.677074313163757,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.718692064285278,-0.158278584480286,0.677074313163757,-0.620511949062347,-0.17046195268631,0.765446126461029,-0.578703820705414,0.066067636013031,0.812857270240784,-0.578703820705414,0.066067636013031,0.812857270240784,-0.620511949062347,-0.17046195268631,0.765446126461029,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.377665400505066,0.110308043658733,0.919348180294037,-0.377665400505066,0.110308043658733,0.919348180294037,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.198652446269989,0.136567801237106,0.970508337020874,-0.198652446269989,0.136567801237106,0.970508337020874,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.112910144031048,-0.17989219725132,0.9771848320961,-0.0933142006397247,0.13879482448101,0.985915064811707,-0.0933142006397247,0.13879482448101,0.985915064811707,-0.112910144031048,-0.17989219725132,0.9771848320961,-1.530000446337e-07,-0.212198525667191,0.977226614952087,-8.4368110719879e-07,0.104064725339413,0.994570553302765,-0.170562729239464,-0.404366999864578,0.898552000522614,-0.123517006635666,-0.713964462280273,0.689201235771179,-5.37285060886461e-08,-0.762006878852844,0.647568941116333,-8.14389480296995e-08,-0.502702832221985,0.864459335803986, +-0.263805389404297,-0.3244608938694,0.908367693424225,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.123517006635666,-0.713964462280273,0.689201235771179,-0.170562729239464,-0.404366999864578,0.898552000522614,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.263805389404297,-0.3244608938694,0.908367693424225,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.357956528663635,-0.279420256614685,0.890949726104736,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.458856701850891,-0.295015633106232,0.8381028175354,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.524285972118378,-0.359267026185989,0.772043585777283,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.569905459880829,-0.442884385585785,0.692142605781555,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.577887773513794,-0.498514622449875,0.646164774894714,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.416855722665787,-0.70935046672821,0.568377792835236,-0.416855722665787,-0.70935046672821,0.568377792835236,-0.523588418960571,-0.505291521549225,0.685956001281738,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.198799788951874,-0.571179986000061,0.796386957168579,-0.198799788951874,-0.571179986000061,0.796386957168579,-0.249849691987038,-0.417160451412201,0.873814761638641,-0.172886833548546,-0.39629265666008,0.901699721813202,-0.145042181015015,-0.490352720022202,0.859369993209839,-0.145042181015015,-0.490352720022202,0.859369993209839, +-0.172886833548546,-0.39629265666008,0.901699721813202,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.181576877832413,-0.344820499420166,0.920939028263092,-0.555301427841187,-0.227197021245956,0.800013661384583,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.555301427841187,-0.227197021245956,0.800013661384583,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.696915924549103,0.150847509503365,0.701108515262604,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.697688639163971,-0.154477506875992,0.699547946453094,-0.696915924549103,0.150847509503365,0.701108515262604,-0.735670626163483,-0.0863330140709877,0.671815037727356,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.639414668083191,0.235927820205688,0.731769800186157,-0.639414668083191,0.235927820205688,0.731769800186157,-0.697835147380829,0.00019356953271199,0.716258347034454,-0.578703820705414,0.066067636013031,0.812857270240784,-0.520338296890259,0.302176177501678,0.798709988594055,-0.520338296890259,0.302176177501678,0.798709988594055,-0.578703820705414,0.066067636013031,0.812857270240784,-0.377665400505066,0.110308043658733,0.919348180294037,-0.307869553565979,0.363059610128403,0.879433870315552,-0.307869553565979,0.363059610128403,0.879433870315552,-0.377665400505066,0.110308043658733,0.919348180294037,-0.198652446269989,0.136567801237106,0.970508337020874,-0.142266169190407,0.401025503873825,0.904952466487885,-0.142266169190407,0.401025503873825,0.904952466487885,-0.198652446269989,0.136567801237106,0.970508337020874,-0.0933142006397247,0.13879482448101,0.985915064811707,-0.059580460190773,0.412580370903015,0.908970713615417,-0.059580460190773,0.412580370903015,0.908970713615417,-0.0933142006397247,0.13879482448101,0.985915064811707, +-8.4368110719879e-07,0.104064725339413,0.994570553302765,-1.23364577575558e-06,0.405415445566177,0.914132475852966,-0.123517006635666,-0.713964462280273,0.689201235771179,-0.0650144815444946,-0.92928946018219,0.36358517408371,-2.19972790205247e-07,-0.946157574653625,0.323706299066544,-5.37285060886461e-08,-0.762006878852844,0.647568941116333,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.0700107589364052,-0.918608009815216,0.388918846845627,-0.0650144815444946,-0.92928946018219,0.36358517408371,-0.123517006635666,-0.713964462280273,0.689201235771179,-0.0575000047683716,-0.920222759246826,0.387148171663284,-0.0700107589364052,-0.918608009815216,0.388918846845627,-0.179283514618874,-0.639831244945526,0.747310698032379,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.0467732325196266,-0.957661330699921,0.284072071313858,-0.0575000047683716,-0.920222759246826,0.387148171663284,-0.234524860978127,-0.560499131679535,0.794253587722778,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.0467732325196266,-0.957661330699921,0.284072071313858,-0.364492684602737,-0.523588538169861,0.770064949989319,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.010275911539793,-0.987158477306366,0.159412920475006,-0.010275911539793,-0.987158477306366,0.159412920475006,-0.450170427560806,-0.560612559318542,0.695025384426117,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.0177781600505114,-0.99129331111908,0.130466863512993,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.070024810731411,-0.992533028125763,0.0998734086751938,-0.0177781600505114,-0.99129331111908,0.130466863512993,-0.46165919303894,-0.657730937004089,0.595198094844818,-0.070024810731411,-0.992533028125763,0.0998734086751938,-0.444360166788101,-0.714158713817596,0.540852546691895,-0.416855722665787,-0.70935046672821,0.568377792835236,0.0745086520910263,-0.995074927806854,-0.0653797164559364,0.114909864962101,-0.963066697120667,-0.243512377142906,0.0745086520910263,-0.995074927806854,-0.0653797164559364,-0.416855722665787,-0.70935046672821,0.568377792835236, +-0.198799788951874,-0.571179986000061,0.796386957168579,0.786459982395172,-0.152115032076836,-0.598616480827332,0.114909864962101,-0.963066697120667,-0.243512377142906,-0.198799788951874,-0.571179986000061,0.796386957168579,-0.145042181015015,-0.490352720022202,0.859369993209839,0.19354659318924,0.969684422016144,-0.149170637130737,0.786459982395172,-0.152115032076836,-0.598616480827332,-0.145042181015015,-0.490352720022202,0.859369993209839,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.369951218366623,0.895374655723572,0.247871711850166,0.19354659318924,0.969684422016144,-0.149170637130737,-0.214207038283348,-0.365777671337128,0.905716240406036,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.334255129098892,0.900808572769165,0.277159631252289,-0.369951218366623,0.895374655723572,0.247871711850166,-0.603091597557068,-0.0955662354826927,0.791926443576813,-0.696915924549103,0.150847509503365,0.701108515262604,-0.319086283445358,0.899404048919678,0.298757940530777,-0.334255129098892,0.900808572769165,0.277159631252289,-0.702888429164886,0.0738460198044777,0.707456290721893,-0.345288753509521,0.879696190357208,0.326971441507339,-0.319086283445358,0.899404048919678,0.298757940530777,-0.696915924549103,0.150847509503365,0.701108515262604,-0.639414668083191,0.235927820205688,0.731769800186157,-0.343751102685928,0.846281886100769,0.406991451978683,-0.345288753509521,0.879696190357208,0.326971441507339,-0.639414668083191,0.235927820205688,0.731769800186157,-0.520338296890259,0.302176177501678,0.798709988594055,-0.203538998961449,0.867182850837708,0.454495310783386,-0.343751102685928,0.846281886100769,0.406991451978683,-0.520338296890259,0.302176177501678,0.798709988594055,-0.307869553565979,0.363059610128403,0.879433870315552,-0.0728877931833267,0.860819160938263,0.503664255142212,-0.203538998961449,0.867182850837708,0.454495310783386,-0.307869553565979,0.363059610128403,0.879433870315552,-0.142266169190407,0.401025503873825,0.904952466487885, +-0.0103095471858978,0.826472699642181,0.562882483005524,-0.0728877931833267,0.860819160938263,0.503664255142212,-0.142266169190407,0.401025503873825,0.904952466487885,-0.059580460190773,0.412580370903015,0.908970713615417,-4.3436074292913e-07,0.799352884292603,0.60086190700531,-0.0103095471858978,0.826472699642181,0.562882483005524,-0.059580460190773,0.412580370903015,0.908970713615417,-1.23364577575558e-06,0.405415445566177,0.914132475852966,4.47424355343173e-07,0.53668475151062,0.843782901763916,6.76111312714056e-07,0.373505502939224,0.927627980709076,0.0717731863260269,0.317301392555237,0.945604801177979,0.118451811373234,0.516582429409027,0.848004579544067,0.0717731863260269,0.317301392555237,0.945604801177979,-0.249449789524078,0.33998367190361,0.906744658946991,-0.188545882701874,0.431141525506973,0.882364630699158,0.118451811373234,0.516582429409027,0.848004579544067,-0.249449789524078,0.33998367190361,0.906744658946991,-0.472561091184616,0.315939337015152,0.822719991207123,-0.486899256706238,0.335813164710999,0.806324124336243,-0.188545882701874,0.431141525506973,0.882364630699158,-0.472561091184616,0.315939337015152,0.822719991207123,-0.542252838611603,0.257057636976242,0.799926996231079,-0.58552348613739,0.26387482881546,0.766506552696228,-0.486899256706238,0.335813164710999,0.806324124336243,-0.542252838611603,0.257057636976242,0.799926996231079,-0.588205754756927,0.203771024942398,0.782618284225464,-0.62177973985672,0.196991369128227,0.758013486862183,-0.58552348613739,0.26387482881546,0.766506552696228,-0.588205754756927,0.203771024942398,0.782618284225464,-0.623639464378357,0.151776671409607,0.766836106777191,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.62177973985672,0.196991369128227,0.758013486862183,-0.623639464378357,0.151776671409607,0.766836106777191,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.632755398750305,-0.0421934574842453,0.773201406002045,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.549986779689789,-0.0976334884762764,0.829447031021118, +-0.632755398750305,-0.0421934574842453,0.773201406002045,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.549986779689789,-0.0976334884762764,0.829447031021118,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.560693979263306,-0.163896352052689,0.811640381813049,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.560693979263306,-0.163896352052689,0.811640381813049,7.63165886041861e-08,-0.290879458189011,0.956759691238403,9.44835463201343e-08,-0.444976627826691,0.895542204380035,-0.118767827749252,-0.434621602296829,0.892747521400452,-0.147238418459892,-0.299318224191666,0.942724466323853,-0.250313520431519,-0.415625274181366,0.874413371086121,-0.271724343299866,-0.30934464931488,0.911302268505096,-0.147238418459892,-0.299318224191666,0.942724466323853,-0.118767827749252,-0.434621602296829,0.892747521400452,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.271724343299866,-0.30934464931488,0.911302268505096, +-0.250313520431519,-0.415625274181366,0.874413371086121,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.161505579948425,-0.139396369457245,0.976977288722992,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,4.47424355343173e-07,0.53668475151062,0.843782901763916,0.118451811373234,0.516582429409027,0.848004579544067,-0.188545882701874,0.431141525506973,0.882364630699158,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.161505579948425,-0.139396369457245,0.976977288722992,0.118451811373234,0.516582429409027,0.848004579544067,-0.486899256706238,0.335813164710999,0.806324124336243,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.283784598112106,-0.100370064377785,0.953620553016663,-0.188545882701874,0.431141525506973,0.882364630699158,-0.58552348613739,0.26387482881546,0.766506552696228,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.416105598211288,-0.0872009247541428,0.905125498771667,-0.486899256706238,0.335813164710999,0.806324124336243,-0.62177973985672,0.196991369128227,0.758013486862183,-0.587400913238525,-0.149357974529266,0.795394480228424,-0.517772734165192,-0.100642152130604,0.849577903747559,-0.58552348613739,0.26387482881546,0.766506552696228,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.648984730243683,-0.224779799580574,0.726837575435638,-0.587400913238525,-0.149357974529266,0.795394480228424,-0.62177973985672,0.196991369128227,0.758013486862183, +-0.632755398750305,-0.0421934574842453,0.773201406002045,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.648984730243683,-0.224779799580574,0.726837575435638,-0.659780263900757,0.0826388001441956,0.746900856494904,-0.549986779689789,-0.0976334884762764,0.829447031021118,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.639821469783783,-0.326441317796707,0.695747435092926,-0.632755398750305,-0.0421934574842453,0.773201406002045,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.542862832546234,-0.37759456038475,0.750148117542267,-0.549986779689789,-0.0976334884762764,0.829447031021118,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.278693497180939,-0.32365545630455,0.904199659824371,-0.43077763915062,-0.104239799082279,0.896417677402496,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.211436048150063,-0.330257087945938,0.919904887676239,-0.393908798694611,-0.18825888633728,0.899663507938385,-0.457513511180878,-0.228730887174606,0.8592808842659,-0.179457947611809,-0.331312656402588,0.926297307014465,-0.292456030845642,-0.296681672334671,0.909092664718628,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.560693979263306,-0.163896352052689,0.811640381813049,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.457513511180878,-0.228730887174606,0.8592808842659,-0.349053829908371,-0.261093378067017,0.89999532699585,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.652515113353729,-0.172068804502487,0.737981259822845,-0.560693979263306,-0.163896352052689,0.811640381813049,-0.718692064285278,-0.158278584480286,0.677074313163757,-0.737166047096252,-0.154636770486832,0.657779395580292,-0.70303738117218,-0.11312448233366,0.702097773551941,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.620511949062347,-0.17046195268631,0.765446126461029, +-0.718692064285278,-0.158278584480286,0.677074313163757,-0.700187385082245,-0.173420682549477,0.692576825618744,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.620511949062347,-0.17046195268631,0.765446126461029,-0.601977527141571,-0.283897757530212,0.746341168880463,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.442881494760513,-0.176023006439209,0.879131376743317,-0.441231042146683,-0.370093077421188,0.817524433135986,-0.250313520431519,-0.415625274181366,0.874413371086121,-0.112910144031048,-0.17989219725132,0.9771848320961,-0.242541596293449,-0.173334658145905,0.954530596733093,-0.250313520431519,-0.415625274181366,0.874413371086121,-0.118767827749252,-0.434621602296829,0.892747521400452,9.44835463201343e-08,-0.444976627826691,0.895542204380035,-1.530000446337e-07,-0.212198525667191,0.977226614952087,-0.112910144031048,-0.17989219725132,0.9771848320961,-0.118767827749252,-0.434621602296829,0.892747521400452,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,-0.0779154822230339,0.00478862784802914,0.996948480606079,0.0717731863260269,0.317301392555237,0.945604801177979,6.76111312714056e-07,0.373505502939224,0.927627980709076,-0.249449789524078,0.33998367190361,0.906744658946991,0.0717731863260269,0.317301392555237,0.945604801177979,-0.0779154822230339,0.00478862784802914,0.996948480606079,-0.353732317686081,0.185769811272621,0.916713178157806,-0.353732317686081,0.185769811272621,0.916713178157806,-0.444391429424286,0.23224301636219,0.865204930305481,-0.472561091184616,0.315939337015152,0.822719991207123,-0.249449789524078,0.33998367190361,0.906744658946991,-0.444391429424286,0.23224301636219,0.865204930305481,-0.481361955404282,0.151183098554611,0.863385438919067,-0.542252838611603,0.257057636976242,0.799926996231079,-0.472561091184616,0.315939337015152,0.822719991207123,-0.481361955404282,0.151183098554611,0.863385438919067,-0.581030488014221,0.153055503964424,0.799360752105713, +-0.588205754756927,0.203771024942398,0.782618284225464,-0.542252838611603,0.257057636976242,0.799926996231079,-0.581030488014221,0.153055503964424,0.799360752105713,-0.573613166809082,0.148596420884132,0.805535316467285,-0.623639464378357,0.151776671409607,0.766836106777191,-0.588205754756927,0.203771024942398,0.782618284225464,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.623639464378357,0.151776671409607,0.766836106777191,-0.573613166809082,0.148596420884132,0.805535316467285,-0.56029999256134,0.112414121627808,0.820626080036163,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.61323344707489,0.0911746099591255,0.784622132778168,-0.56029999256134,0.112414121627808,0.820626080036163,-0.606586515903473,0.0739869400858879,0.791567265987396,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.41444930434227,-0.260025799274445,0.872134387493134,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.518350064754486,-0.241426467895508,0.820381939411163,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.622898638248444,-0.127465546131134,0.771848320960999,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.61970978975296,-0.0255412068217993,0.784415364265442,-0.588921070098877,0.0488196536898613,0.806714653968811,-0.606586515903473,0.0739869400858879,0.791567265987396,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.17985275387764,-0.0337658226490021,0.983113825321198,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,7.63165886041861e-08,-0.290879458189011,0.956759691238403, +-0.147238418459892,-0.299318224191666,0.942724466323853,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.17985275387764,-0.0337658226490021,0.983113825321198,-0.147238418459892,-0.299318224191666,0.942724466323853,-0.271724343299866,-0.30934464931488,0.911302268505096,-0.271724343299866,-0.30934464931488,0.911302268505096,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.419241636991501,-0.281242728233337,0.863214313983917,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.565346896648407,-0.193536937236786,0.80182683467865,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.664252400398254,-0.106923878192902,0.73982161283493,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.531623661518097,-0.146514028310776,0.834212183952332,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.668087124824524,-0.0715606808662415,0.740633904933929,-0.167769029736519,-0.276487588882446,0.946260094642639,5.00773921885411e-07,-0.279569029808044,0.96012556552887,4.9137469204652e-07,-0.177478060126305,0.984124779701233,-0.0868286490440369,-0.237600758671761,0.967474400997162,-0.0868286490440369,-0.237600758671761,0.967474400997162,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.167769029736519,-0.276487588882446,0.946260094642639,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.264756917953491,-0.358457028865814,0.895216345787048, +-0.353910177946091,-0.00241770781576633,0.935276389122009,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.274904072284698,-0.0619129203259945,0.959476172924042,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.353910177946091,-0.00241770781576633,0.935276389122009,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.569105207920074,0.102337874472141,0.815871477127075,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.569105207920074,0.102337874472141,0.815871477127075,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.864901125431061,0.0519203916192055,0.499249786138535,-0.804547548294067,-0.0347260981798172,0.592872142791748,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.881875574588776,0.0824774503707886,0.46421217918396,-0.865438222885132,0.0103155253455043,0.500909566879272,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.935607731342316,0.127907067537308,0.329056292772293,-0.906198382377625,0.170440211892128,0.386981278657913,-0.889110147953033,0.168669506907463,0.425480872392654,-0.923866987228394,0.119930408895016,0.363437175750732,-0.906198382377625,0.170440211892128,0.386981278657913,-0.935607731342316,0.127907067537308,0.329056292772293,-0.937009155750275,0.036510843783617,0.34739163517952,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.822252154350281,-0.0876013040542603,0.562340915203094,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.628640651702881,-0.0453773140907288,0.776371002197266, +-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.375234842300415,0.19044616818428,0.907154321670532,-0.475325018167496,0.0613151788711548,0.87767106294632,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.342850804328918,0.149466961622238,0.927422761917114,-0.327629566192627,0.327735483646393,0.886142432689667,-0.282756626605988,0.29180520772934,0.913727641105652,-0.297811299562454,0.113283053040504,0.947879433631897,-0.575288116931915,0.238595888018608,0.782378137111664,-0.537454009056091,0.309819668531418,0.784318149089813,-0.327629566192627,0.327735483646393,0.886142432689667,-0.342850804328918,0.149466961622238,0.927422761917114,-0.759655296802521,0.268870204687119,0.592142403125763,-0.724071383476257,0.254366755485535,0.641106963157654,-0.537454009056091,0.309819668531418,0.784318149089813,-0.575288116931915,0.238595888018608,0.782378137111664,-0.704671740531921,0.351113796234131,0.616568624973297,-0.631399393081665,0.364274203777313,0.684572160243988,-0.724071383476257,0.254366755485535,0.641106963157654,-0.759655296802521,0.268870204687119,0.592142403125763,-4.39817654296348e-07,0.573391735553741,0.819281220436096,-0.631399393081665,0.364274203777313,0.684572160243988,-0.704671740531921,0.351113796234131,0.616568624973297,-3.07718238445887e-07,0.537297904491425,0.843392491340637,5.00773921885411e-07,-0.279569029808044,0.96012556552887,-0.167769029736519,-0.276487588882446,0.946260094642639,-0.272893458604813,0.0898328945040703,0.957840979099274,4.89641479362035e-07,0.148217856884003,0.988954782485962,-0.167769029736519,-0.276487588882446,0.946260094642639,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.272893458604813,0.0898328945040703,0.957840979099274,-0.865438222885132,0.0103155253455043,0.500909566879272,-0.804547548294067,-0.0347260981798172,0.592872142791748, +-0.864901125431061,0.0519203916192055,0.499249786138535,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.889110147953033,0.168669506907463,0.425480872392654,-0.881875574588776,0.0824774503707886,0.46421217918396,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.923866987228394,0.119930408895016,0.363437175750732,-0.937009155750275,0.036510843783617,0.34739163517952,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.822252154350281,-0.0876013040542603,0.562340915203094,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.475325018167496,0.0613151788711548,0.87767106294632,-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.628640651702881,-0.0453773140907288,0.776371002197266,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.282756626605988,0.29180520772934,0.913727641105652,-0.375234842300415,0.19044616818428,0.907154321670532,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.297811299562454,0.113283053040504,0.947879433631897,-0.448746651411057,0.331291884183884,0.829983174800873,-0.631399393081665,0.364274203777313,0.684572160243988,-4.39817654296348e-07,0.573391735553741,0.819281220436096,3.14968986003805e-07,0.497228413820267,0.867619633674622,-0.631399393081665,0.364274203777313,0.684572160243988,-0.448746651411057,0.331291884183884,0.829983174800873,-0.654485881328583,0.191099017858505,0.731525301933289,-0.724071383476257,0.254366755485535,0.641106963157654,-0.272893458604813,0.0898328945040703,0.957840979099274,-0.448746651411057,0.331291884183884,0.829983174800873,3.14968986003805e-07,0.497228413820267,0.867619633674622,4.89641479362035e-07,0.148217856884003,0.988954782485962,-0.654485881328583,0.191099017858505,0.731525301933289,-0.448746651411057,0.331291884183884,0.829983174800873,-0.272893458604813,0.0898328945040703,0.957840979099274, +-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.274904072284698,-0.0619129203259945,0.959476172924042,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,-0.149707466363907,-0.694378197193146,0.703865468502045,-0.114588372409344,-0.91277539730072,0.392059504985809,5.75957983528497e-08,-0.917891561985016,0.396831274032593,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.833477973937988,-0.379801094532013,0.401329815387726,-0.73252934217453,-0.666742086410522,0.137316271662712,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.833477973937988,-0.379801094532013,0.401329815387726,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.73252934217453,-0.666742086410522,0.137316271662712, +-0.939025700092316,-0.179976969957352,0.292983204126358,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.888481020927429,-0.454339206218719,-0.0646336674690247,-0.0893125608563423,-0.993775486946106,0.0665845423936844,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,5.75957983528497e-08,-0.917891561985016,0.396831274032593,-0.114588372409344,-0.91277539730072,0.392059504985809,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.73252934217453,-0.666742086410522,0.137316271662712,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.73252934217453,-0.666742086410522,0.137316271662712,-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.773152351379395,-0.626932799816132,0.0958685204386711,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.888481020927429,-0.454339206218719,-0.0646336674690247, +-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.92094761133194,-0.351148068904877,-0.168968558311462,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.805711030960083,0.2922582924366,0.515184164047241,-0.964887261390686,0.141046762466431,0.221581339836121,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.737070262432098,0.114106595516205,0.666113376617432,-0.715191245079041,0.34563997387886,0.607482016086578,-0.805711030960083,0.2922582924366,0.515184164047241,-0.737070262432098,0.114106595516205,0.666113376617432,-0.671664535999298,0.138539746403694,0.727786839008331,-0.654905915260315,0.354517102241516,0.667394816875458,-0.715191245079041,0.34563997387886,0.607482016086578,-0.427030801773071,0.423026651144028,0.799182772636414,-0.654905915260315,0.354517102241516,0.667394816875458,-0.671664535999298,0.138539746403694,0.727786839008331,-0.440599650144577,0.181119993329048,0.879242658615112,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.891603469848633,0.423941075801849,0.159113600850105,-0.959196746349335,0.11716428399086,0.257321119308472,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.959196746349335,0.11716428399086,0.257321119308472,-0.891603469848633,0.423941075801849,0.159113600850105,-0.43017503619194,0.175570383667946,0.885508120059967,-0.67579048871994,0.246512785553932,0.694649934768677,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.56029999256134,0.112414121627808,0.820626080036163,-0.573613166809082,0.148596420884132,0.805535316467285,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.595667660236359,-0.0288831423968077,0.802711427211761, +-0.606586515903473,0.0739869400858879,0.791567265987396,-0.56029999256134,0.112414121627808,0.820626080036163,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.606586515903473,0.0739869400858879,0.791567265987396,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.699317157268524,0.00647760462015867,0.714782238006592,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.751259446144104,-0.0946979001164436,0.653178036212921,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.680364072322845,-0.222016006708145,0.698436498641968,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.65614902973175,-0.210049211978912,0.724808752536774,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.55281138420105,-0.270913004875183,0.788039147853851,-0.65614902973175,-0.210049211978912,0.724808752536774,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.565668165683746,-0.174161463975906,0.806031823158264,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.658806562423706,-0.0609745644032955,0.749837279319763,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.574376881122589,0.024629257619381,0.818220317363739,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.643252074718475,-0.0507875382900238,0.763968110084534,-0.574376881122589,0.024629257619381,0.818220317363739,-0.461474388837814,0.0598364695906639,0.885133326053619, +-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.551568269729614,-0.066366083920002,0.831485390663147,-0.461474388837814,0.0598364695906639,0.885133326053619,-0.344552010297775,0.080650620162487,0.935296356678009,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.429694414138794,-0.0799225717782974,0.899430394172668,-0.344552010297775,0.080650620162487,0.935296356678009,-0.188998743891716,0.0825604945421219,0.978500485420227,-0.17985275387764,-0.0337658226490021,0.983113825321198,-0.31455409526825,-0.0662670135498047,0.946923732757568,-0.188998743891716,0.0825604945421219,0.978500485420227,-2.20459881461466e-07,0.0764520391821861,0.997073292732239,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,-0.17985275387764,-0.0337658226490021,0.983113825321198,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.455359011888504,-0.869095742702484,0.193185538053513, +-0.10268546640873,-0.954509794712067,-0.27994042634964,-0.10268546640873,-0.954509794712067,-0.27994042634964,-0.455359011888504,-0.869095742702484,0.193185538053513,-0.290745884180069,-0.916568994522095,0.274532735347748,0.0937823057174683,-0.994987845420837,-0.034701157361269,0.0937823057174683,-0.994987845420837,-0.034701157361269,-0.290745884180069,-0.916568994522095,0.274532735347748,-0.206606820225716,-0.925182163715363,0.318357825279236,0.0773358419537544,-0.989174544811249,0.124711394309998,0.0773358419537544,-0.989174544811249,0.124711394309998,-0.206606820225716,-0.925182163715363,0.318357825279236,-0.119040817022324,-0.926869869232178,0.356007903814316,0.146457031369209,-0.953701436519623,0.262685596942902,0.327705442905426,-0.778845310211182,0.534798204898834,0.163064703345299,-0.776256680488586,0.608962655067444,0.0583279952406883,-0.422760516405106,0.904362499713898,0.16337314248085,-0.490520834922791,0.855978071689606,-0.622528612613678,0.171263828873634,0.763627350330353,-0.580475151538849,0.190929636359215,0.791577279567719,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.580475151538849,0.190929636359215,0.791577279567719,-0.622528612613678,0.171263828873634,0.763627350330353,-0.359327703714371,0.0683239921927452,0.930706918239594,-0.379682570695877,0.180394545197487,0.907358169555664,-0.379682570695877,0.180394545197487,0.907358169555664,-0.359327703714371,0.0683239921927452,0.930706918239594,0.16337314248085,-0.490520834922791,0.855978071689606,0.0583279952406883,-0.422760516405106,0.904362499713898,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.913874447345734,-0.405475705862045,-0.0205597765743732,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.85067754983902,-0.436321139335632,-0.293209284543991, +-0.85067754983902,-0.436321139335632,-0.293209284543991,-0.850436747074127,-0.497773706912994,-0.17023104429245,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.725718796253204,-0.558084905147552,-0.40233501791954,-0.725718796253204,-0.558084905147552,-0.40233501791954,-0.747807443141937,-0.603074371814728,-0.277642428874969,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.417807817459106,-0.774399518966675,-0.475123226642609,-0.417807817459106,-0.774399518966675,-0.475123226642609,-0.427040606737137,-0.824204504489899,-0.371918439865112,-0.10268546640873,-0.954509794712067,-0.27994042634964,-0.0116365421563387,-0.906590342521667,-0.421851187944412,-0.0116365421563387,-0.906590342521667,-0.421851187944412,-0.10268546640873,-0.954509794712067,-0.27994042634964,0.0937823057174683,-0.994987845420837,-0.034701157361269,0.33331972360611,-0.913330256938934,-0.233935281634331,0.33331972360611,-0.913330256938934,-0.233935281634331,0.0937823057174683,-0.994987845420837,-0.034701157361269,0.0773358419537544,-0.989174544811249,0.124711394309998,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.0773358419537544,-0.989174544811249,0.124711394309998,0.146457031369209,-0.953701436519623,0.262685596942902,0.432196915149689,-0.896145820617676,0.10064011067152,0.414653033018112,-0.778381586074829,0.471364915370941,0.327705442905426,-0.778845310211182,0.534798204898834,0.16337314248085,-0.490520834922791,0.855978071689606,0.144469812512398,-0.614519059658051,0.775560915470123,-0.359327703714371,0.0683239921927452,0.930706918239594,-0.412473618984222,-0.275771468877792,0.868225574493408,0.144469812512398,-0.614519059658051,0.775560915470123,0.16337314248085,-0.490520834922791,0.855978071689606,-0.622528612613678,0.171263828873634,0.763627350330353,-0.718403160572052,-0.0559572800993919,0.69337272644043,-0.412473618984222,-0.275771468877792,0.868225574493408,-0.359327703714371,0.0683239921927452,0.930706918239594,-0.718403160572052,-0.0559572800993919,0.69337272644043, +-0.622528612613678,0.171263828873634,0.763627350330353,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.875134229660034,-0.0694364681839943,0.478872299194336,-0.927511036396027,-0.34048867225647,0.15424208343029,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.580475151538849,0.190929636359215,0.791577279567719,-0.514494359493256,0.13873003423214,0.846197128295898,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.514494359493256,0.13873003423214,0.846197128295898,-0.580475151538849,0.190929636359215,0.791577279567719,-0.379682570695877,0.180394545197487,0.907358169555664,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.0767984315752983,-0.458664745092392,0.885284543037415,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.379682570695877,0.180394545197487,0.907358169555664,0.0583279952406883,-0.422760516405106,0.904362499713898,0.163064703345299,-0.776256680488586,0.608962655067444,-0.119363613426685,-0.784659922122955,0.608326554298401,-0.0767984315752983,-0.458664745092392,0.885284543037415,0.0583279952406883,-0.422760516405106,0.904362499713898,-0.206606820225716,-0.925182163715363,0.318357825279236,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.119040817022324,-0.926869869232178,0.356007903814316,-0.290745884180069,-0.916568994522095,0.274532735347748,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.206606820225716,-0.925182163715363,0.318357825279236,-0.455359011888504,-0.869095742702484,0.193185538053513,-0.59878534078598,-0.646725535392761,0.472442775964737,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.290745884180069,-0.916568994522095,0.274532735347748,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.522891879081726,-0.60482919216156,0.60063773393631, +-0.59878534078598,-0.646725535392761,0.472442775964737,-0.455359011888504,-0.869095742702484,0.193185538053513,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.34188374876976,-0.734208285808563,0.586560964584351,-0.522891879081726,-0.60482919216156,0.60063773393631,-0.606823265552521,-0.772793233394623,0.185892835259438,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.236640691757202,-0.924676179885864,0.298287123441696,-0.34188374876976,-0.734208285808563,0.586560964584351,-0.628255307674408,-0.761967599391937,0.157164663076401,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.236640691757202,-0.924676179885864,0.298287123441696,-0.590461194515228,-0.803650379180908,0.0741724297404289,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.612375915050507,-0.789205372333527,0.0463745556771755,-0.777085840702057,-0.239047214388847,0.582231998443604,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.688236773014069,-0.710206985473633,0.148109123110771,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.43048882484436,-0.478489696979523,0.765328049659729,-0.433876484632492,-0.198223978281021,0.878896176815033,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,-1.02184486650003e-07,-0.267218768596649,0.963635861873627,-0.433876484632492,-0.198223978281021,0.878896176815033,-0.43048882484436,-0.478489696979523,0.765328049659729,1.21897315352726e-07,-0.995536208152771,0.0943798571825027,1.51484229604648e-07,-0.925182104110718,0.379523366689682,-0.236640691757202,-0.924676179885864,0.298287123441696,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.261746942996979,-0.96083676815033,0.0910020172595978,-0.375283002853394,-0.912665247917175,0.161879032850266,4.73723360983058e-07,-0.98859578371048,0.150593131780624, +1.21897315352726e-07,-0.995536208152771,0.0943798571825027,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.291261672973633,-0.854886770248413,0.429342925548553,1.41866473768459e-06,-0.879385590553284,0.476110249757767,4.73723360983058e-07,-0.98859578371048,0.150593131780624,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.444391429424286,0.23224301636219,0.865204930305481,-0.353732317686081,0.185769811272621,0.916713178157806,-0.514494359493256,0.13873003423214,0.846197128295898,-0.0779154822230339,0.00478862784802914,0.996948480606079,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.514494359493256,0.13873003423214,0.846197128295898,-0.353732317686081,0.185769811272621,0.916713178157806,-0.291261672973633,-0.854886770248413,0.429342925548553,-0.0779154822230339,0.00478862784802914,0.996948480606079,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,1.41866473768459e-06,-0.879385590553284,0.476110249757767,-0.0779154822230339,0.00478862784802914,0.996948480606079,-0.291261672973633,-0.854886770248413,0.429342925548553,-0.375283002853394,-0.912665247917175,0.161879032850266,-0.585405886173248,-0.368176370859146,0.722319960594177,-0.522891879081726,-0.60482919216156,0.60063773393631,-0.34188374876976,-0.734208285808563,0.586560964584351,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,-0.43048882484436,-0.478489696979523,0.765328049659729,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.59878534078598,-0.646725535392761,0.472442775964737,-0.522891879081726,-0.60482919216156,0.60063773393631,-0.43048882484436,-0.478489696979523,0.765328049659729,-0.34188374876976,-0.734208285808563,0.586560964584351,-0.236640691757202,-0.924676179885864,0.298287123441696,1.51484229604648e-07,-0.925182104110718,0.379523366689682,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,-0.671664535999298,0.138539746403694,0.727786839008331,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.433876484632492,-0.198223978281021,0.878896176815033,-0.440599650144577,0.181119993329048,0.879242658615112, +-1.02184486650003e-07,-0.267218768596649,0.963635861873627,-4.4512784569406e-08,0.194622755050659,0.980878174304962,-0.440599650144577,0.181119993329048,0.879242658615112,-0.433876484632492,-0.198223978281021,0.878896176815033,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.671664535999298,0.138539746403694,0.727786839008331,-0.737070262432098,0.114106595516205,0.666113376617432,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.661726772785187,-0.164392903447151,0.731500267982483,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.59878534078598,-0.646725535392761,0.472442775964737,-0.646703362464905,-0.405708432197571,0.64589124917984,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.490964561700821,-0.740018248558044,0.45970293879509,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.623622834682465,-0.512402474880219,0.590371310710907,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.769342064857483,-0.367450475692749,0.522582828998566,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.694607675075531,-0.274156987667084,0.66510009765625,-0.737070262432098,0.114106595516205,0.666113376617432,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.769342064857483,-0.367450475692749,0.522582828998566,0.270438581705093,-0.908083260059357,0.319761961698532,0.327705442905426,-0.778845310211182,0.534798204898834,0.414653033018112,-0.778381586074829,0.471364915370941,0.46870344877243,-0.856486141681671,0.216214150190353,-0.0116021437570453,-0.911236345767975,0.411720335483551,0.163064703345299,-0.776256680488586,0.608962655067444,0.327705442905426,-0.778845310211182,0.534798204898834,0.270438581705093,-0.908083260059357,0.319761961698532,-0.353556722402573,-0.819659948348999,0.450727373361588, +-0.119363613426685,-0.784659922122955,0.608326554298401,0.163064703345299,-0.776256680488586,0.608962655067444,-0.0116021437570453,-0.911236345767975,0.411720335483551,-0.435766249895096,-0.790265202522278,0.43079999089241,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.669928133487701,-0.618841350078583,0.410160571336746,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.63380241394043,-0.588700413703918,0.501723408699036,-0.769342064857483,-0.367450475692749,0.522582828998566,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.669928133487701,-0.618841350078583,0.410160571336746,-0.769342064857483,-0.367450475692749,0.522582828998566,-0.84584379196167,0.0282920636236668,0.532680034637451,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.119363613426685,-0.784659922122955,0.608326554298401,-0.353556722402573,-0.819659948348999,0.450727373361588,-0.852545082569122,-0.416288882493973,0.316022843122482,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.852545082569122,-0.416288882493973,0.316022843122482,-0.0767984315752983,-0.458664745092392,0.885284543037415,-0.119363613426685,-0.784659922122955,0.608326554298401,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.510493993759155,-0.677704870700836,0.529256165027618,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.765477299690247,-0.35224324464798,0.53848797082901,-0.999851524829865,-0.0172133073210716,0.000722380937077105,-0.959196746349335,0.11716428399086,0.257321119308472, +-0.765477299690247,-0.35224324464798,0.53848797082901,-0.853866577148438,-0.395726889371872,0.3381008207798,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.0767984315752983,-0.458664745092392,0.885284543037415,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.481361955404282,0.151183098554611,0.863385438919067,-0.444391429424286,0.23224301636219,0.865204930305481,-0.354050636291504,0.0453287996351719,0.93412709236145,-0.765477299690247,-0.35224324464798,0.53848797082901,-0.646522343158722,0.0286232419312,0.762357950210571,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.30642431974411,-0.565001547336578,0.766079246997833,-0.43017503619194,0.175570383667946,0.885508120059967,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.573613166809082,0.148596420884132,0.805535316467285,-0.67579048871994,0.246512785553932,0.694649934768677,-0.959196746349335,0.11716428399086,0.257321119308472,-0.67579048871994,0.246512785553932,0.694649934768677,-0.646522343158722,0.0286232419312,0.762357950210571,-0.765477299690247,-0.35224324464798,0.53848797082901,-0.646522343158722,0.0286232419312,0.762357950210571,-0.581030488014221,0.153055503964424,0.799360752105713,-0.481361955404282,0.151183098554611,0.863385438919067,-0.395902454853058,-0.106055945158005,0.912147700786591,-0.581030488014221,0.153055503964424,0.799360752105713,-0.646522343158722,0.0286232419312,0.762357950210571,-0.67579048871994,0.246512785553932,0.694649934768677,-0.573613166809082,0.148596420884132,0.805535316467285,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.964887261390686,0.141046762466431,0.221581339836121,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.946663439273834,-0.0758193954825401,0.313176870346069,-0.985133051872253,-0.123100079596043,0.119830071926117,-0.852545082569122,-0.416288882493973,0.316022843122482, +-0.669928133487701,-0.618841350078583,0.410160571336746,-0.830590188503265,-0.410076171159744,0.376772344112396,-0.852545082569122,-0.416288882493973,0.316022843122482,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.669928133487701,-0.618841350078583,0.410160571336746,-0.651706695556641,-0.634583413600922,0.415430217981339,-0.353556722402573,-0.819659948348999,0.450727373361588,-0.409424334764481,-0.816124498844147,0.407814234495163,-0.353556722402573,-0.819659948348999,0.450727373361588,-0.0116021437570453,-0.911236345767975,0.411720335483551,-0.119040817022324,-0.926869869232178,0.356007903814316,-0.119040817022324,-0.926869869232178,0.356007903814316,-0.0116021437570453,-0.911236345767975,0.411720335483551,0.270438581705093,-0.908083260059357,0.319761961698532,0.146457031369209,-0.953701436519623,0.262685596942902,0.146457031369209,-0.953701436519623,0.262685596942902,0.270438581705093,-0.908083260059357,0.319761961698532,0.46870344877243,-0.856486141681671,0.216214150190353,0.432196915149689,-0.896145820617676,0.10064011067152,-3.07718238445887e-07,0.537297904491425,0.843392491340637,-0.704671740531921,0.351113796234131,0.616568624973297,-0.722416937351227,0.37959811091423,0.577943861484528,1.07731224829877e-07,0.511693179607391,0.859168291091919,-0.704671740531921,0.351113796234131,0.616568624973297,-0.759655296802521,0.268870204687119,0.592142403125763,-0.825799286365509,0.314353853464127,0.468227744102478,-0.722416937351227,0.37959811091423,0.577943861484528,-0.759655296802521,0.268870204687119,0.592142403125763,-0.575288116931915,0.238595888018608,0.782378137111664,-0.708128273487091,0.24351242184639,0.662763893604279,-0.825799286365509,0.314353853464127,0.468227744102478,-0.537846565246582,0.524820148944855,0.659761250019073,-0.436625689268112,0.575781047344208,0.691255569458008,2.69245763462322e-08,0.599188029766083,0.800608277320862,6.63047643456594e-08,0.56467217206955,0.825315177440643,-0.74644410610199,0.517271161079407,0.418630719184875, +-0.679213166236877,0.566016376018524,0.467220425605774,-0.436625689268112,0.575781047344208,0.691255569458008,-0.537846565246582,0.524820148944855,0.659761250019073,-0.770220935344696,0.564942955970764,0.295971572399139,-0.68751060962677,0.627668857574463,0.365186244249344,-0.679213166236877,0.566016376018524,0.467220425605774,-0.74644410610199,0.517271161079407,0.418630719184875,-0.609346807003021,0.463627010583878,0.643231213092804,-0.537846565246582,0.524820148944855,0.659761250019073,6.63047643456594e-08,0.56467217206955,0.825315177440643,1.66158670822369e-07,0.537752687931061,0.843102693557739,-0.809419929981232,0.419161200523376,0.411270350217819,-0.74644410610199,0.517271161079407,0.418630719184875,-0.537846565246582,0.524820148944855,0.659761250019073,-0.609346807003021,0.463627010583878,0.643231213092804,-0.838650524616241,0.449791878461838,0.307168453931808,-0.770220935344696,0.564942955970764,0.295971572399139,-0.74644410610199,0.517271161079407,0.418630719184875,-0.809419929981232,0.419161200523376,0.411270350217819,-0.674133718013763,0.417697995901108,0.609156966209412,-0.609346807003021,0.463627010583878,0.643231213092804,1.66158670822369e-07,0.537752687931061,0.843102693557739,2.19163851511439e-07,0.528520941734314,0.848920106887817,-0.841250956058502,0.345796346664429,0.415598124265671,-0.809419929981232,0.419161200523376,0.411270350217819,-0.609346807003021,0.463627010583878,0.643231213092804,-0.674133718013763,0.417697995901108,0.609156966209412,-0.853539526462555,0.35643681883812,0.380030393600464,-0.838650524616241,0.449791878461838,0.307168453931808,-0.809419929981232,0.419161200523376,0.411270350217819,-0.841250956058502,0.345796346664429,0.415598124265671,-0.436625689268112,0.575781047344208,0.691255569458008,-0.400272279977798,0.5667445063591,0.720126926898956,1.62401178727123e-07,0.593734920024872,0.804660618305206,2.69245763462322e-08,0.599188029766083,0.800608277320862,-0.679213166236877,0.566016376018524,0.467220425605774,-0.648093163967133,0.533102750778198,0.543853580951691,-0.400272279977798,0.5667445063591,0.720126926898956, +-0.436625689268112,0.575781047344208,0.691255569458008,-0.68751060962677,0.627668857574463,0.365186244249344,-0.67475026845932,0.570691823959351,0.467998743057251,-0.648093163967133,0.533102750778198,0.543853580951691,-0.679213166236877,0.566016376018524,0.467220425605774,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.822638332843781,0.344727516174316,-0.452138453722,-0.886472940444946,0.409068793058395,0.216398671269417,-0.891603469848633,0.423941075801849,0.159113600850105,-0.822638332843781,0.344727516174316,-0.452138453722,-0.773216962814331,0.455902487039566,-0.440781623125076,-0.894166827201843,0.312801986932755,0.320344358682632,-0.886472940444946,0.409068793058395,0.216398671269417,-0.773216962814331,0.455902487039566,-0.440781623125076,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.84546160697937,0.4212307035923,0.328267097473145,-0.894166827201843,0.312801986932755,0.320344358682632,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.775935232639313,0.592567026615143,0.216307118535042,-0.84546160697937,0.4212307035923,0.328267097473145,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.571992337703705,0.750737130641937,0.330482214689255,-0.657712161540985,0.706774055957794,0.26054772734642,-0.775935232639313,0.592567026615143,0.216307118535042,-0.571992337703705,0.750737130641937,0.330482214689255,-0.68751060962677,0.627668857574463,0.365186244249344,-0.770220935344696,0.564942955970764,0.295971572399139,-0.657712161540985,0.706774055957794,0.26054772734642,-0.571992337703705,0.750737130641937,0.330482214689255,-0.626188158988953,0.621568202972412,0.470681846141815,-0.67475026845932,0.570691823959351,0.467998743057251,-0.68751060962677,0.627668857574463,0.365186244249344,-0.649191617965698,0.707069039344788,-0.2803635597229,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.773216962814331,0.455902487039566,-0.440781623125076,-0.772835731506348,0.523139655590057,-0.359235018491745,-0.772835731506348,0.523139655590057,-0.359235018491745, +-0.773216962814331,0.455902487039566,-0.440781623125076,-0.822638332843781,0.344727516174316,-0.452138453722,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.822638332843781,0.344727516174316,-0.452138453722,-0.936773061752319,0.209212213754654,-0.28051084280014,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.964887261390686,0.141046762466431,0.221581339836121,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.982687532901764,0.148475036025047,-0.110816359519958,-0.772835731506348,0.523139655590057,-0.359235018491745,-0.876489698886871,0.368234872817993,-0.310110986232758,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.649191617965698,0.707069039344788,-0.2803635597229,-0.772835731506348,0.523139655590057,-0.359235018491745,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.696303188800812,0.685828387737274,-0.211663439869881,-0.649191617965698,0.707069039344788,-0.2803635597229,-0.574077785015106,0.780576527118683,0.247254893183708,-0.571992337703705,0.750737130641937,0.330482214689255,-0.562135279178619,0.826298594474792,0.0351335853338242,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.626188158988953,0.621568202972412,0.470681846141815,-0.571992337703705,0.750737130641937,0.330482214689255,-0.574077785015106,0.780576527118683,0.247254893183708,-0.698592782020569,0.632910072803497,0.333756059408188,-0.839187562465668,0.434261083602905,0.327385753393173,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.964887261390686,0.141046762466431,0.221581339836121,-0.805711030960083,0.2922582924366,0.515184164047241,-0.400272279977798,0.5667445063591,0.720126926898956,-0.427030801773071,0.423026651144028,0.799182772636414, +-9.54276870857029e-08,0.46919858455658,0.883092641830444,1.62401178727123e-07,0.593734920024872,0.804660618305206,-0.648093163967133,0.533102750778198,0.543853580951691,-0.654905915260315,0.354517102241516,0.667394816875458,-0.427030801773071,0.423026651144028,0.799182772636414,-0.400272279977798,0.5667445063591,0.720126926898956,-0.67475026845932,0.570691823959351,0.467998743057251,-0.715191245079041,0.34563997387886,0.607482016086578,-0.654905915260315,0.354517102241516,0.667394816875458,-0.648093163967133,0.533102750778198,0.543853580951691,-0.626188158988953,0.621568202972412,0.470681846141815,-0.805711030960083,0.2922582924366,0.515184164047241,-0.715191245079041,0.34563997387886,0.607482016086578,-0.67475026845932,0.570691823959351,0.467998743057251,-0.839187562465668,0.434261083602905,0.327385753393173,-0.805711030960083,0.2922582924366,0.515184164047241,-0.626188158988953,0.621568202972412,0.470681846141815,-0.698592782020569,0.632910072803497,0.333756059408188,-0.698592782020569,0.632910072803497,0.333756059408188,-0.574077785015106,0.780576527118683,0.247254893183708,-0.633098483085632,0.772678971290588,-0.0464060492813587,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.839187562465668,0.434261083602905,0.327385753393173,-0.698592782020569,0.632910072803497,0.333756059408188,-0.805653214454651,0.589774489402771,-0.0555792488157749,-0.922215402126312,0.384585738182068,0.0401565469801426,-0.657712161540985,0.706774055957794,0.26054772734642,-0.770220935344696,0.564942955970764,0.295971572399139,-0.838650524616241,0.449791878461838,0.307168453931808,-0.775935232639313,0.592567026615143,0.216307118535042,-0.838650524616241,0.449791878461838,0.307168453931808,-0.853539526462555,0.35643681883812,0.380030393600464,-0.84546160697937,0.4212307035923,0.328267097473145,-0.775935232639313,0.592567026615143,0.216307118535042,-0.886472940444946,0.409068793058395,0.216398671269417,-0.251341193914413,0.0682773515582085,0.965487360954285,-0.43017503619194,0.175570383667946,0.885508120059967,-0.891603469848633,0.423941075801849,0.159113600850105, +-0.894166827201843,0.312801986932755,0.320344358682632,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.251341193914413,0.0682773515582085,0.965487360954285,-0.886472940444946,0.409068793058395,0.216398671269417,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.894166827201843,0.312801986932755,0.320344358682632,-0.84546160697937,0.4212307035923,0.328267097473145,-0.530382573604584,0.125614494085312,0.838400483131409,-0.530382573604584,0.125614494085312,0.838400483131409,-0.84546160697937,0.4212307035923,0.328267097473145,-0.853539526462555,0.35643681883812,0.380030393600464,-0.708128273487091,0.24351242184639,0.662763893604279,-0.722416937351227,0.37959811091423,0.577943861484528,-0.674133718013763,0.417697995901108,0.609156966209412,2.19163851511439e-07,0.528520941734314,0.848920106887817,1.07731224829877e-07,0.511693179607391,0.859168291091919,-0.825799286365509,0.314353853464127,0.468227744102478,-0.841250956058502,0.345796346664429,0.415598124265671,-0.674133718013763,0.417697995901108,0.609156966209412,-0.722416937351227,0.37959811091423,0.577943861484528,-0.708128273487091,0.24351242184639,0.662763893604279,-0.853539526462555,0.35643681883812,0.380030393600464,-0.841250956058502,0.345796346664429,0.415598124265671,-0.825799286365509,0.314353853464127,0.468227744102478,-0.342850804328918,0.149466961622238,0.927422761917114,-0.530382573604584,0.125614494085312,0.838400483131409,-0.708128273487091,0.24351242184639,0.662763893604279,-0.575288116931915,0.238595888018608,0.782378137111664,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.530382573604584,0.125614494085312,0.838400483131409,-0.342850804328918,0.149466961622238,0.927422761917114,-0.305485665798187,0.0270282775163651,0.951813042163849,-0.251341193914413,0.0682773515582085,0.965487360954285,-0.319527357816696,0.0421200580894947,0.946640431880951,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.43017503619194,0.175570383667946,0.885508120059967,-0.251341193914413,0.0682773515582085,0.965487360954285, +-0.305485665798187,0.0270282775163651,0.951813042163849,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.297811299562454,0.113283053040504,0.947879433631897,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.342850804328918,0.149466961622238,0.927422761917114,-0.445870906114578,0.0744200423359871,0.891998112201691,-0.305485665798187,0.0270282775163651,0.951813042163849,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.305485665798187,0.0270282775163651,0.951813042163849,-0.261313170194626,0.0473016165196896,0.964094340801239,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.297811299562454,0.113283053040504,0.947879433631897,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.342262238264084,0.0191853642463684,0.939408481121063,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.51875102519989,-0.078107014298439,0.851349949836731,-0.48541596531868,0.00731633836403489,0.874252736568451,-0.414848148822784,-0.030971497297287,0.909363389015198,-0.51875102519989,-0.078107014298439,0.851349949836731,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.422676056623459,0.0540585480630398,0.904667139053345,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.460432946681976,-0.045799795538187,0.886512160301208,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.641082942485809,-0.126405611634254,0.756990253925323,-0.51875102519989,-0.078107014298439,0.851349949836731,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.51875102519989,-0.078107014298439,0.851349949836731, +-0.641082942485809,-0.126405611634254,0.756990253925323,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.641082942485809,-0.126405611634254,0.756990253925323,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.937622249126434,-0.122151508927345,0.325489401817322,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.937622249126434,-0.122151508927345,0.325489401817322,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.581657707691193,-0.0957741215825081,0.807775616645813,-0.536602079868317,-7.19160962034948e-05,0.843835353851318,-0.628640651702881,-0.0453773140907288,0.776371002197266,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.690808475017548,-0.146260142326355,0.708090126514435,-0.628640651702881,-0.0453773140907288,0.776371002197266,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.822252154350281,-0.0876013040542603,0.562340915203094,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.788548648357391,-0.194663181900978,0.583350121974945,-0.723528325557709,-0.0745094418525696,0.686261773109436,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.937622249126434,-0.122151508927345,0.325489401817322,-0.876360058784485,-0.195948556065559,0.439996898174286,-0.822252154350281,-0.0876013040542603,0.562340915203094, +-0.937622249126434,-0.122151508927345,0.325489401817322,-0.902409493923187,-0.0470132417976856,0.428307116031647,-0.937009155750275,0.036510843783617,0.34739163517952,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.641082942485809,-0.126405611634254,0.756990253925323,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.89311695098877,-0.272431313991547,0.357943087816238,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.762171626091003,-0.197300508618355,0.616576790809631,-0.837839484214783,-0.268814921379089,0.475145787000656,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.595667660236359,-0.0288831423968077,0.802711427211761,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.903943419456482,-0.244961842894554,0.350542455911636,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.880213379859924,-0.25613409280777,0.399524420499802,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.719404876232147,-0.100821450352669,0.68723475933075,-0.837325751781464,-0.176072001457214,0.517575204372406,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.903943419456482,-0.244961842894554,0.350542455911636, +-0.910429537296295,-0.203642666339874,0.360066324472427,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.906593501567841,-0.205873534083366,0.368380516767502,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.887425124645233,-0.14861749112606,0.436336517333984,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.728366911411285,-0.040140189230442,0.684010565280914,-0.804519891738892,-0.100884720683098,0.585294842720032,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.865198612213135,-0.12818269431591,0.48476842045784,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.915488481521606,-0.136658772826195,0.37842470407486,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.809467554092407,-0.120740406215191,0.574616551399231,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.830139756202698,-0.252047330141068,0.497332960367203,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.833477973937988,-0.379801094532013,0.401329815387726, +-0.830139756202698,-0.252047330141068,0.497332960367203,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.830139756202698,-0.252047330141068,0.497332960367203,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.774750471115112,-0.225245729088783,0.590784311294556,-0.81378048658371,-0.240548223257065,0.529053688049316,-0.830139756202698,-0.252047330141068,0.497332960367203,-0.833477973937988,-0.379801094532013,0.401329815387726,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.683599293231964,-0.708920001983643,0.173563927412033,-0.641319811344147,-0.740115642547607,0.202330708503723,-0.719575703144073,-0.229525789618492,0.655384302139282,-0.65614902973175,-0.210049211978912,0.724808752536774,-0.686697542667389,-0.282533407211304,0.669792056083679,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.719575703144073,-0.229525789618492,0.655384302139282,-0.748553097248077,-0.274503946304321,0.60358589887619,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.776309549808502,-0.276962995529175,0.566246330738068,-0.78462290763855,-0.43315315246582,0.443559616804123,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.65614902973175,-0.210049211978912,0.724808752536774, +-0.719575703144073,-0.229525789618492,0.655384302139282,-0.719575703144073,-0.229525789618492,0.655384302139282,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.751667439937592,-0.27047011256218,0.601532995700836,-0.750535070896149,-0.466074585914612,0.46847802400589,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.634543895721436,-0.742676496505737,0.213975787162781,-0.603131473064423,-0.763180077075958,0.231923475861549,-0.764699339866638,-0.238976582884789,0.598435640335083,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.759040057659149,-0.468803137540817,0.45175439119339,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.764699339866638,-0.238976582884789,0.598435640335083,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.774708330631256,-0.245886579155922,0.582551836967468,-0.695716619491577,-0.0862805545330048,0.713115692138672,-0.745798707008362,-0.149605020880699,0.64915519952774,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.666133761405945,-0.0218830388039351,0.745511114597321,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.635141670703888,-0.0666266232728958,0.76951676607132,-0.574376881122589,0.024629257619381,0.818220317363739,-0.723881244659424,-0.0956510677933693,0.683261930942535,-0.764699339866638,-0.238976582884789,0.598435640335083,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.635141670703888,-0.0666266232728958,0.76951676607132, +-0.764699339866638,-0.238976582884789,0.598435640335083,-0.739822328090668,-0.494534015655518,0.456178694963455,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.47883415222168,-0.613580465316772,0.627882838249207,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.508506894111633,-0.815533101558685,0.276272863149643,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.172015964984894,-0.984178066253662,0.042475625872612,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.313353955745697,-0.66547167301178,0.677463471889496,-0.47883415222168,-0.613580465316772,0.627882838249207,-0.380801677703857,-0.863352358341217,0.331078171730042,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.344552010297775,0.080650620162487,0.935296356678009,-0.461474388837814,0.0598364695906639,0.885133326053619,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.635141670703888,-0.0666266232728958,0.76951676607132,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.461474388837814,0.0598364695906639,0.885133326053619,-0.574376881122589,0.024629257619381,0.818220317363739,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.635141670703888,-0.0666266232728958,0.76951676607132,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.507166028022766,-0.0646190196275711,0.859422564506531,-0.47883415222168,-0.613580465316772,0.627882838249207, +-0.313353955745697,-0.66547167301178,0.677463471889496,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.634809017181396,-0.558387160301208,0.534061193466187,-0.47883415222168,-0.613580465316772,0.627882838249207,-0.51817113161087,-0.310628592967987,0.796874284744263,-0.670140147209167,-0.26874902844429,0.691871523857117,-0.172015964984894,-0.984178066253662,0.042475625872612,-0.0893125608563423,-0.993775486946106,0.0665845423936844,-0.114588372409344,-0.91277539730072,0.392059504985809,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.149707466363907,-0.694378197193146,0.703865468502045,-0.313353955745697,-0.66547167301178,0.677463471889496,-0.24828228354454,-0.893886089324951,0.373260855674744,-0.114588372409344,-0.91277539730072,0.392059504985809,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.203462496399879,-0.0831983089447021,0.975541472434998,-0.188998743891716,0.0825604945421219,0.978500485420227,-0.344552010297775,0.080650620162487,0.935296356678009,-0.203462496399879,-0.0831983089447021,0.975541472434998,-0.369722723960876,-0.0735579431056976,0.926225900650024,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.196311458945274,-0.379952639341354,0.903934597969055,-0.196311458945274,-0.379952639341354,0.903934597969055,-0.360987365245819,-0.353285998106003,0.863062679767609,-0.313353955745697,-0.66547167301178,0.677463471889496,-0.149707466363907,-0.694378197193146,0.703865468502045,-0.203462496399879,-0.0831983089447021,0.975541472434998,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,-2.20459881461466e-07,0.0764520391821861,0.997073292732239,-0.188998743891716,0.0825604945421219,0.978500485420227,-0.196311458945274,-0.379952639341354,0.903934597969055,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,-0.203462496399879,-0.0831983089447021,0.975541472434998,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-0.196311458945274,-0.379952639341354,0.903934597969055, +-0.149707466363907,-0.694378197193146,0.703865468502045,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.859193086624146,-0.181860968470573,0.47824028134346,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.908130645751953,-0.144283324480057,0.393040835857391,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.852173566818237,-0.523247539997101,-0.00349177396856248,-0.823865830898285,-0.564590752124786,0.0498245544731617,-0.882710337638855,-0.197786226868629,0.426266551017761,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.879793584346771,-0.306445866823196,0.36339259147644,-0.913659393787384,-0.138570889830589,0.382131725549698,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.911567747592926,-0.228366568684578,0.341896176338196,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.924329221248627,-0.124014884233475,0.360882192850113,-0.888481020927429,-0.454339206218719,-0.0646336674690247,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.939025700092316,-0.179976969957352,0.292983204126358,-0.888481020927429,-0.454339206218719,-0.0646336674690247, +-0.863172888755798,-0.504850447177887,-0.00765585713088512,-0.919660210609436,-0.112061597406864,0.376387119293213,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.930331349372864,-0.18610779941082,0.315986692905426,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.926973938941956,-0.14516507089138,0.345899432897568,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.910429537296295,-0.203642666339874,0.360066324472427,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.915054142475128,-0.143812924623489,0.376820713281631,-0.915621340274811,-0.171829998493195,0.363472133874893,-0.921531438827515,-0.125053524971008,0.367615729570389,-0.926973938941956,-0.14516507089138,0.345899432897568,-0.939025700092316,-0.179976969957352,0.292983204126358,-0.936035335063934,-0.181322365999222,0.3015958070755,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.936245381832123,-0.177436903119087,0.303250223398209,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.926973938941956,-0.14516507089138,0.345899432897568,-0.903943419456482,-0.244961842894554,0.350542455911636,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.910429537296295,-0.203642666339874,0.360066324472427,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.903943419456482,-0.244961842894554,0.350542455911636,-0.898356258869171,-0.281534433364868,0.337185859680176,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.936245381832123,-0.177436903119087,0.303250223398209,-0.91846889257431,-0.167402923107147,0.358317285776138,-0.910429537296295,-0.203642666339874,0.360066324472427,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.939025700092316,-0.179976969957352,0.292983204126358,-0.926973938941956,-0.14516507089138,0.345899432897568, +-0.936245381832123,-0.177436903119087,0.303250223398209,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.937765777111053,-0.19624075293541,0.286504626274109,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.958406686782837,-0.153457880020142,0.240639463067055,-0.940928518772125,-0.141943916678429,0.307417184114456,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.936245381832123,-0.177436903119087,0.303250223398209,-0.929949760437012,-0.214140757918358,0.298893392086029,-0.925302147865295,-0.2355617582798,0.297197818756104,-0.930274248123169,-0.232484817504883,0.283796697854996,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.290834039449692,-0.658133268356323,0.694461107254028,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.14347305893898,-0.928959310054779,0.341247856616974,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.281054764986038,-0.697045922279358,0.659647762775421,-0.0525912828743458,-0.641458690166473,0.765352845191956, +0.0295972488820553,-0.913982093334198,0.404673606157303,-0.14347305893898,-0.928959310054779,0.341247856616974,-0.148418560624123,-0.729007363319397,0.668221592903137,-0.122217893600464,-0.506918251514435,0.853285849094391,0.106425814330578,-0.897813558578491,0.427322268486023,0.0295972488820553,-0.913982093334198,0.404673606157303,-0.0525912828743458,-0.641458690166473,0.765352845191956,-0.296234369277954,-0.436655968427658,0.849456787109375,0.118810221552849,-0.894129753112793,0.431759297847748,0.106425814330578,-0.897813558578491,0.427322268486023,-0.122217893600464,-0.506918251514435,0.853285849094391,-0.362703084945679,-0.449246019124985,0.816470742225647,0.0746587365865707,-0.878905773162842,0.471116334199905,0.118810221552849,-0.894129753112793,0.431759297847748,-0.296234369277954,-0.436655968427658,0.849456787109375,-0.369815438985825,-0.479616552591324,0.795741438865662,0.173959538340569,-0.84886234998703,0.499170124530792,0.0746587365865707,-0.878905773162842,0.471116334199905,-0.362703084945679,-0.449246019124985,0.816470742225647,-0.368978589773178,-0.517406225204468,0.772104680538177,0.345366597175598,-0.783761382102966,0.516178250312805,0.173959538340569,-0.84886234998703,0.499170124530792,-0.369815438985825,-0.479616552591324,0.795741438865662,-0.321326851844788,-0.594967842102051,0.736724138259888,0.318178653717041,-0.851679027080536,0.416419565677643,0.345366597175598,-0.783761382102966,0.516178250312805,-0.368978589773178,-0.517406225204468,0.772104680538177,-0.356160789728165,-0.327515810728073,0.875147342681885,0.340116590261459,-0.61156165599823,0.714361965656281,0.318178653717041,-0.851679027080536,0.416419565677643,-0.321326851844788,-0.594967842102051,0.736724138259888,-0.217264279723167,0.573543012142181,0.789838373661041,0.340116590261459,-0.61156165599823,0.714361965656281,-0.356160789728165,-0.327515810728073,0.875147342681885,-0.487023383378983,0.129526227712631,0.86373096704483,-0.316639393568039,0.610971570014954,0.725570917129517,-0.217264279723167,0.573543012142181,0.789838373661041, +-0.487023383378983,0.129526227712631,0.86373096704483,-0.578743577003479,0.225211217999458,0.783795773983002,-0.395117282867432,0.556619703769684,0.730792045593262,-0.316639393568039,0.610971570014954,0.725570917129517,-0.578743577003479,0.225211217999458,0.783795773983002,-0.616995096206665,0.248675897717476,0.746644020080566,-0.31505212187767,0.551100432872772,0.772677481174469,-0.395117282867432,0.556619703769684,0.730792045593262,-0.616995096206665,0.248675897717476,0.746644020080566,-0.552580296993256,0.248522356152534,0.795544862747192,-0.269040018320084,0.544349014759064,0.794544875621796,-0.31505212187767,0.551100432872772,0.772677481174469,-0.552580296993256,0.248522356152534,0.795544862747192,-0.43378084897995,0.253316581249237,0.864676177501678,-0.16955578327179,0.51304018497467,0.841451466083527,-0.269040018320084,0.544349014759064,0.794544875621796,-0.43378084897995,0.253316581249237,0.864676177501678,-0.24457274377346,0.23941496014595,0.939608812332153,-0.0434524118900299,0.491198420524597,0.8699631690979,-0.16955578327179,0.51304018497467,0.841451466083527,-0.24457274377346,0.23941496014595,0.939608812332153,-0.0322061702609062,0.215598866343498,0.975950837135315,0.0423764511942863,0.502885341644287,0.863313615322113,-0.0434524118900299,0.491198420524597,0.8699631690979,-0.0322061702609062,0.215598866343498,0.975950837135315,0.0972790643572807,0.225614964962006,0.969347536563873,0.141706243157387,0.545924186706543,0.825763881206512,0.0423764511942863,0.502885341644287,0.863313615322113,0.0972790643572807,0.225614964962006,0.969347536563873,0.20521105825901,0.303497523069382,0.930471777915955,0.141706243157387,0.545924186706543,0.825763881206512,0.20521105825901,0.303497523069382,0.930471777915955,0.152036800980568,0.404537260532379,0.901795029640198,0.113456606864929,0.663541316986084,0.739486753940582,-0.235429763793945,0.630609333515167,0.739530086517334,0.113456606864929,0.663541316986084,0.739486753940582,0.152036800980568,0.404537260532379,0.901795029640198,-0.208823442459106,0.391514956951141,0.89616334438324, +-0.808505594730377,0.0228019841015339,0.588046431541443,-0.235429763793945,0.630609333515167,0.739530086517334,-0.208823442459106,0.391514956951141,0.89616334438324,-0.622444152832031,-0.0568815171718597,0.780594408512115,-0.808505594730377,0.0228019841015339,0.588046431541443,-0.622444152832031,-0.0568815171718597,0.780594408512115,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.397183567285538,-0.603774070739746,0.691159963607788,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.580197215080261,-0.483790099620819,0.655223906040192,-0.373429536819458,0.295800745487213,0.87923389673233,-0.475002586841583,0.28080803155899,0.833978116512299,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.633827924728394,0.0169978868216276,0.773287355899811,0.00895701535046101,0.33652463555336,0.941632032394409,-0.193759649991989,0.343486160039902,0.918952941894531,-0.475002586841583,0.28080803155899,0.833978116512299,-0.373429536819458,0.295800745487213,0.87923389673233,0.126515954732895,0.184289872646332,0.974695205688477,-0.0328555330634117,0.200340315699577,0.979175269603729,-0.193759649991989,0.343486160039902,0.918952941894531,0.00895701535046101,0.33652463555336,0.941632032394409,0.0805548876523972,0.00170732999686152,0.996748685836792,-0.0129828387871385,0.0295491050928831,0.999478995800018,-0.0328555330634117,0.200340315699577,0.979175269603729,0.126515954732895,0.184289872646332,0.974695205688477,-0.0483344346284866,-0.126977697014809,0.990727245807648,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.0129828387871385,0.0295491050928831,0.999478995800018,0.0805548876523972,0.00170732999686152,0.996748685836792,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.0483344346284866,-0.126977697014809,0.990727245807648,-0.501552581787109,-0.0615811087191105,0.862932622432709, +-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.290509700775146,-0.138142868876457,0.946847796440125,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.572860062122345,0.00523659866303205,0.819636464118958,-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.501552581787109,-0.0615811087191105,0.862932622432709,-0.603928744792938,0.156121075153351,0.781598567962646,-0.602928280830383,0.102335728704929,0.791204690933228,-0.572860062122345,0.00523659866303205,0.819636464118958,-0.591037333011627,0.0579316169023514,0.80456131696701,-0.577003598213196,0.190486997365952,0.794217646121979,-0.603891611099243,0.107950478792191,0.789722442626953,-0.602928280830383,0.102335728704929,0.791204690933228,-0.603928744792938,0.156121075153351,0.781598567962646,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.603891611099243,0.107950478792191,0.789722442626953,-0.577003598213196,0.190486997365952,0.794217646121979,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.487047672271729,0.000499129353556782,0.873375296592712,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.510501742362976,-0.163286864757538,0.844230651855469,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.493350982666016,-0.292393028736115,0.81921374797821,-0.633827924728394,0.0169978868216276,0.773287355899811,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.510501742362976,-0.163286864757538,0.844230651855469,-0.493350982666016,-0.292393028736115,0.81921374797821,-0.107691086828709,-0.189101710915565,0.97603440284729,-0.0507670193910599,-0.311318546533585,0.948948562145233,-0.195725411176682,-0.372126013040543,0.907311379909515,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.0507670193910599,-0.311318546533585,0.948948562145233, +-0.107691086828709,-0.189101710915565,0.97603440284729,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.0393601134419441,-0.187804654240608,0.9814173579216,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.0499767437577248,-0.140742406249046,0.98878401517868,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.15942145884037,0.201591685414314,0.966408610343933,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.133799597620964,-0.0541736371815205,0.989526569843292,-0.15942145884037,0.201591685414314,0.966408610343933,-0.313454002141953,0.228585183620453,0.921680867671967,-0.430363267660141,-0.0405699424445629,0.901743590831757,-0.285670131444931,-0.00675381347537041,0.958304226398468,-0.313454002141953,0.228585183620453,0.921680867671967,-0.465388923883438,0.182730257511139,0.866038501262665,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.430363267660141,-0.0405699424445629,0.901743590831757,-0.465388923883438,0.182730257511139,0.866038501262665,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.513725578784943,-0.281165987253189,0.810575008392334,-0.499921888113022,-0.167368188500404,0.849744558334351,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.513725578784943,-0.281165987253189,0.810575008392334,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.394751042127609,-0.459863156080246,0.795422732830048,-0.475370079278946,-0.375950664281845,0.795414566993713,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.647953748703003,-0.140468388795853,0.748615086078644,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.42021319270134,-0.298253387212753,0.857009708881378,-0.394751042127609,-0.459863156080246,0.795422732830048, +-0.647953748703003,-0.140468388795853,0.748615086078644,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.270606845617294,-0.42203351855278,0.865251302719116,-0.380814403295517,-0.544244766235352,0.747514545917511,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.264756917953491,-0.358457028865814,0.895216345787048,-0.442073166370392,-0.35576057434082,0.823411107063293,-0.622288882732391,-0.106440320611,0.775517344474792,-0.654485881328583,0.191099017858505,0.731525301933289,-0.445312976837158,-0.0220793094485998,0.895102679729462,-0.622288882732391,-0.106440320611,0.775517344474792,-0.699978470802307,0.105198852717876,0.706373274326324,-0.635390877723694,0.277111351490021,0.72075492143631,-0.724071383476257,0.254366755485535,0.641106963157654,-0.654485881328583,0.191099017858505,0.731525301933289,-0.699978470802307,0.105198852717876,0.706373274326324,-0.537454009056091,0.309819668531418,0.784318149089813,-0.724071383476257,0.254366755485535,0.641106963157654,-0.635390877723694,0.277111351490021,0.72075492143631,-0.483116298913956,0.378075420856476,0.789719998836517,-0.327629566192627,0.327735483646393,0.886142432689667,-0.537454009056091,0.309819668531418,0.784318149089813,-0.483116298913956,0.378075420856476,0.789719998836517,-0.295458763837814,0.403195053339005,0.866105020046234,-0.282756626605988,0.29180520772934,0.913727641105652,-0.327629566192627,0.327735483646393,0.886142432689667,-0.295458763837814,0.403195053339005,0.866105020046234,-0.241419926285744,0.347718894481659,0.905984461307526,-0.375234842300415,0.19044616818428,0.907154321670532,-0.282756626605988,0.29180520772934,0.913727641105652,-0.241419926285744,0.347718894481659,0.905984461307526,-0.300742030143738,0.219192281365395,0.928175091743469,-0.475325018167496,0.0613151788711548,0.87767106294632, +-0.375234842300415,0.19044616818428,0.907154321670532,-0.300742030143738,0.219192281365395,0.928175091743469,-0.386911332607269,0.0745889842510223,0.919095277786255,-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.475325018167496,0.0613151788711548,0.87767106294632,-0.386911332607269,0.0745889842510223,0.919095277786255,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.582251191139221,-0.0373667292296886,0.8121497631073,-0.524919390678406,-0.0342896915972233,0.850461006164551,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.694853127002716,-0.0758793503046036,0.715137243270874,-0.65793776512146,-0.0946976095438004,0.747094452381134,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.784411549568176,-0.0817645415663719,0.614827811717987,-0.743377566337585,-0.0995370298624039,0.661424398422241,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.863092243671417,-0.0405554696917534,0.503415405750275,-0.819737493991852,-0.058789748698473,0.569714307785034,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.906198382377625,0.170440211892128,0.386981278657913,-0.906984090805054,0.0664596706628799,0.415888220071793,-0.880867302417755,0.0466534905135632,0.471058815717697,-0.891718804836273,0.173081874847412,0.418186724185944,-0.889110147953033,0.168669506907463,0.425480872392654,-0.906198382377625,0.170440211892128,0.386981278657913,-0.891718804836273,0.173081874847412,0.418186724185944,-0.875361323356628,0.225780814886093,0.42751082777977,-0.873296499252319,0.179054200649261,0.45309242606163,-0.881875574588776,0.0824774503707886,0.46421217918396,-0.889110147953033,0.168669506907463,0.425480872392654,-0.875361323356628,0.225780814886093,0.42751082777977,-0.844377338886261,0.131901383399963,0.519258081912994,-0.865438222885132,0.0103155253455043,0.500909566879272, +-0.881875574588776,0.0824774503707886,0.46421217918396,-0.873296499252319,0.179054200649261,0.45309242606163,-0.76689887046814,0.116679958999157,0.631071984767914,-0.804547548294067,-0.0347260981798172,0.592872142791748,-0.865438222885132,0.0103155253455043,0.500909566879272,-0.844377338886261,0.131901383399963,0.519258081912994,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.804547548294067,-0.0347260981798172,0.592872142791748,-0.76689887046814,0.116679958999157,0.631071984767914,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.668106019496918,-0.0787400379776955,0.73988801240921,-0.610019505023956,0.0695306435227394,0.789329826831818,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.546015501022339,-0.156832367181778,0.822964489459991,-0.475788027048111,-0.125043883919716,0.870626091957092,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.451804965734482,-0.258582681417465,0.853819251060486,-0.374557912349701,-0.459309637546539,0.805444598197937,-0.399118930101395,-0.637854993343353,0.658669173717499,-0.324905127286911,-0.418012231588364,0.848352789878845,-0.377241224050522,-0.364133298397064,0.851525664329529,-0.36523225903511,-0.644413232803345,0.671816229820251,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.190550938248634,-0.252945214509964,0.948529958724976,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.15942145884037,0.201591685414314,0.966408610343933,-0.15942145884037,0.201591685414314,0.966408610343933,-0.223430380225182,-0.0416654758155346,0.973828971385956,-0.369711548089981,0.146718040108681,0.917489588260651,-0.313454002141953,0.228585183620453,0.921680867671967,-0.313454002141953,0.228585183620453,0.921680867671967,-0.369711548089981,0.146718040108681,0.917489588260651,-0.526602387428284,0.183498844504356,0.830071091651917, +-0.465388923883438,0.182730257511139,0.866038501262665,-0.465388923883438,0.182730257511139,0.866038501262665,-0.526602387428284,0.183498844504356,0.830071091651917,-0.700298309326172,0.131053596735001,0.701717376708984,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.617920100688934,0.0559217892587185,0.784249603748322,-0.700298309326172,0.131053596735001,0.701717376708984,-0.76854807138443,0.109590314328671,0.630336225032806,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.658239662647247,-0.0499899797141552,0.751146852970123,-0.76854807138443,0.109590314328671,0.630336225032806,-0.807716190814972,0.132200345396996,0.574558556079865,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.646299064159393,-0.102004155516624,0.756235778331757,-0.807716190814972,0.132200345396996,0.574558556079865,-0.82001256942749,0.130813300609589,0.557195842266083,-0.647953748703003,-0.140468388795853,0.748615086078644,-0.647953748703003,-0.140468388795853,0.748615086078644,-0.82001256942749,0.130813300609589,0.557195842266083,-0.795642733573914,0.111424118280411,0.595430314540863,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.615729153156281,-0.118636772036552,0.778975605964661,-0.795642733573914,0.111424118280411,0.595430314540863,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.584524810314178,-0.00934467650949955,0.811322033405304,-0.741437435150146,0.0652131661772728,0.667845606803894,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.603891611099243,0.107950478792191,0.789722442626953,-0.603891611099243,0.107950478792191,0.789722442626953,-0.69052267074585,0.0553217492997646,0.721192121505737,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.602928280830383,0.102335728704929,0.791204690933228,-0.602928280830383,0.102335728704929,0.791204690933228,-0.643218100070953,0.0473933443427086,0.764214873313904,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.572860062122345,0.00523659866303205,0.819636464118958, +-0.572860062122345,0.00523659866303205,0.819636464118958,-0.58097106218338,0.000805039831902832,0.81392377614975,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.4957415163517,-0.0890969559550285,0.863887846469879,-0.472298502922058,-0.0110226441174746,0.881369769573212,-0.32172629237175,0.0042048622854054,0.946823418140411,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.303244143724442,-0.182140573859215,0.935343682765961,-0.32172629237175,0.0042048622854054,0.946823418140411,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.123728461563587,-0.118822455406189,0.98517632484436,-0.226705983281136,0.0924999862909317,0.969560861587524,-0.149873554706573,0.228948622941971,0.96183180809021,-0.0129828387871385,0.0295491050928831,0.999478995800018,-0.0129828387871385,0.0295491050928831,0.999478995800018,-0.149873554706573,0.228948622941971,0.96183180809021,-0.193298250436783,0.311735332012177,0.930299341678619,-0.0328555330634117,0.200340315699577,0.979175269603729,-0.0328555330634117,0.200340315699577,0.979175269603729,-0.193298250436783,0.311735332012177,0.930299341678619,-0.390417993068695,0.353622496128082,0.850014686584473,-0.193759649991989,0.343486160039902,0.918952941894531,-0.193759649991989,0.343486160039902,0.918952941894531,-0.390417993068695,0.353622496128082,0.850014686584473,-0.546429932117462,0.280326753854752,0.789196491241455,-0.475002586841583,0.28080803155899,0.833978116512299,-0.475002586841583,0.28080803155899,0.833978116512299,-0.546429932117462,0.280326753854752,0.789196491241455,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.596136093139648,0.0578722842037678,0.800794839859009,-0.625559568405151,0.0949502438306808,0.774376928806305,-0.579371690750122,-0.130315348505974,0.804578363895416,-0.510501742362976,-0.163286864757538,0.844230651855469,-0.510501742362976,-0.163286864757538,0.844230651855469, +-0.579371690750122,-0.130315348505974,0.804578363895416,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.304609298706055,-0.271459877490997,0.912974715232849,-0.47832590341568,-0.315578699111938,0.819520890712738,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.107691086828709,-0.189101710915565,0.97603440284729,-0.107691086828709,-0.189101710915565,0.97603440284729,-0.337153196334839,-0.422568827867508,0.841286718845367,-0.257303357124329,-0.354579329490662,0.898926258087158,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.190550938248634,-0.252945214509964,0.948529958724976,-0.037925910204649,0.0982295796275139,0.994440853595734,-0.0429677926003933,-0.0267293862998486,0.998718798160553,-0.257303357124329,-0.354579329490662,0.898926258087158,3.63054823537823e-07,0.15388910472393,0.988088130950928,-0.0126635609194636,0.124740079045296,0.992108643054962,-0.0868286490440369,-0.237600758671761,0.967474400997162,4.9137469204652e-07,-0.177478060126305,0.984124779701233,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.0868286490440369,-0.237600758671761,0.967474400997162,-0.0126635609194636,0.124740079045296,0.992108643054962,-0.0605999082326889,0.14594429731369,0.987435102462769,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.171102255582809,-0.241622596979141,0.955166220664978,-0.0605999082326889,0.14594429731369,0.987435102462769,-0.127829894423485,0.190948218107224,0.973241090774536,-0.274904072284698,-0.0619129203259945,0.959476172924042,-0.212696865200996,-0.165409207344055,0.963015973567963,-0.127829894423485,0.190948218107224,0.973241090774536,-0.22443599998951,0.214606165885925,0.950564444065094,-0.353910177946091,-0.00241770781576633,0.935276389122009,-0.274904072284698,-0.0619129203259945,0.959476172924042,-0.22443599998951,0.214606165885925,0.950564444065094,-0.340124756097794,0.232896119356155,0.911084234714508,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.353910177946091,-0.00241770781576633,0.935276389122009, +-0.340124756097794,0.232896119356155,0.911084234714508,-0.470622479915619,0.244484186172485,0.847786426544189,-0.450483649969101,0.0697159171104431,0.890058577060699,-0.470622479915619,0.244484186172485,0.847786426544189,-0.605829894542694,0.242477968335152,0.757743120193481,-0.569105207920074,0.102337874472141,0.815871477127075,-0.569105207920074,0.102337874472141,0.815871477127075,-0.605829894542694,0.242477968335152,0.757743120193481,-0.787121653556824,0.192846238613129,0.585875272750854,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.722112536430359,0.0751193687319756,0.687684893608093,-0.787121653556824,0.192846238613129,0.585875272750854,-0.911959171295166,0.11306544393301,0.394393980503082,-0.864901125431061,0.0519203916192055,0.499249786138535,-0.864901125431061,0.0519203916192055,0.499249786138535,-0.911959171295166,0.11306544393301,0.394393980503082,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.906421780586243,0.0424887426197529,0.420231193304062,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.914319634437561,0.0844557657837868,0.39608958363533,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.923866987228394,0.119930408895016,0.363437175750732,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.935607731342316,0.127907067537308,0.329056292772293,-0.923866987228394,0.119930408895016,0.363437175750732,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.937009155750275,0.036510843783617,0.34739163517952,-0.935607731342316,0.127907067537308,0.329056292772293,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.693493843078613,0.0652938112616539,0.717497706413269, +-0.728446364402771,0.0299060400575399,0.684449791908264,-0.693493843078613,0.0652938112616539,0.717497706413269,-0.506538450717926,0.35728594660759,0.784707248210907,-0.670880019664764,0.222317904233932,0.707456648349762,-0.728446364402771,0.0299060400575399,0.684449791908264,-0.506538450717926,0.35728594660759,0.784707248210907,-0.303445160388947,0.533744871616364,0.789327204227448,-0.635132551193237,0.263100981712341,0.726212441921234,-0.670880019664764,0.222317904233932,0.707456648349762,-0.303445160388947,0.533744871616364,0.789327204227448,-0.137337490916252,0.722086369991302,0.678033590316772,-0.640452027320862,0.263455420732498,0.721396148204803,-0.635132551193237,0.263100981712341,0.726212441921234,0.0297247059643269,0.909728348255157,0.414138555526733,0.0670048296451569,0.994928240776062,0.0750212594866753,-0.622281014919281,0.667578756809235,0.408784598112106,-0.625394403934479,0.404965341091156,0.666997015476227,0.0590334981679916,0.956456363201141,-0.285843074321747,0.0566010288894176,0.79650467634201,-0.601977288722992,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.618020296096802,0.785884976387024,-0.020872101187706,0.0566010288894176,0.79650467634201,-0.601977288722992,0.0279303062707186,0.524338662624359,-0.85105162858963,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.00497592147439718,0.235830992460251,-0.971781313419342,-0.00314093637280166,0.0235500875860453,-0.999717712402344,-0.634804606437683,-0.048506136983633,-0.77114874124527,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.00314093637280166,0.0235500875860453,-0.999717712402344,0.0376802645623684,-0.112855963408947,-0.992896676063538,-0.629554569721222,-0.156398043036461,-0.761052429676056,-0.634804606437683,-0.048506136983633,-0.77114874124527,0.0376802645623684,-0.112855963408947,-0.992896676063538,-0.0169328302145004,-0.267134875059128,-0.963510394096375,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.629554569721222,-0.156398043036461,-0.761052429676056, +-0.0169328302145004,-0.267134875059128,-0.963510394096375,-0.137499764561653,-0.576561093330383,-0.805401206016541,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.137499764561653,-0.576561093330383,-0.805401206016541,-0.187847152352333,-0.823827743530273,-0.534809589385986,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.187847152352333,-0.823827743530273,-0.534809589385986,-0.214595109224319,-0.886547148227692,-0.409857511520386,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.214595109224319,-0.886547148227692,-0.409857511520386,-0.290042757987976,-0.933156549930573,-0.212353751063347,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.290042757987976,-0.933156549930573,-0.212353751063347,-0.308195531368256,-0.92970085144043,0.201672866940498,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.914259910583496,-0.121510855853558,0.386476337909698,-0.961337625980377,-0.26931968331337,-0.0574190281331539,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.961337625980377,-0.26931968331337,-0.0574190281331539,-0.914259910583496,-0.121510855853558,0.386476337909698,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.640131115913391,-0.681664824485779,0.354351848363876, +-0.671600103378296,-0.681274831295013,0.291235029697418,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.857174754142761,0.0433638170361519,0.513196885585785,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.628934800624847,-0.667119085788727,0.399240732192993,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.963482022285461,-0.171603709459305,0.205558910965919,-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.70997542142868,0.0398486591875553,0.703098058700562,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.70997542142868,0.0398486591875553,0.703098058700562,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.824441373348236,0.217865794897079,0.522332191467285,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.824443161487579,0.300075203180313,0.479841828346252,-0.824441373348236,0.217865794897079,0.522332191467285,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.809130072593689,0.28207004070282,0.515504539012909, +-0.824443161487579,0.300075203180313,0.479841828346252,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.704593241214752,0.0669582560658455,0.706445336341858,-0.780445158481598,0.102822184562683,0.616711378097534,-0.809130072593689,0.28207004070282,0.515504539012909,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.864185214042664,0.167588025331497,0.474444955587387,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.951627790927887,0.16344353556633,0.260174602270126,-0.763710021972656,0.452771812677383,0.460157334804535,-0.864185214042664,0.167588025331497,0.474444955587387,-0.951627790927887,0.16344353556633,0.260174602270126,-0.973378598690033,0.186897858977318,0.132677674293518,-0.250713557004929,0.911273658275604,0.326684951782227,-0.763710021972656,0.452771812677383,0.460157334804535,-0.971945106983185,0.230451807379723,0.0470606461167336,-0.963071823120117,0.26687878370285,0.035615399479866,0.46399787068367,0.878996670246124,-0.109867215156555,0.372783124446869,0.92624706029892,0.0556701831519604,-0.952061533927917,0.305601567029953,-0.0136558897793293,-0.930095851421356,0.342337965965271,-0.133141040802002,0.226254940032959,0.785780906677246,-0.575636267662048,0.389676988124847,0.859412729740143,-0.331001132726669,-0.930095851421356,0.342337965965271,-0.133141040802002,-0.929100632667542,0.205892205238342,-0.307213872671127,0.0176149271428585,0.596212565898895,-0.802633345127106,0.226254940032959,0.785780906677246,-0.575636267662048,-0.846378862857819,-0.0145592531189322,-0.532382309436798,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.102727353572845,-0.0390269421041012,-0.993943631649017, +-0.111689299345016,0.199150547385216,-0.973583400249481,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.0498217605054379,-0.188205376267433,-0.980865240097046,-0.102727353572845,-0.0390269421041012,-0.993943631649017,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.71641480922699,-0.323539078235626,-0.618119955062866,0.0616355948150158,-0.241510733962059,-0.968438744544983,-0.0498217605054379,-0.188205376267433,-0.980865240097046,-0.71641480922699,-0.323539078235626,-0.618119955062866,-0.702991366386414,-0.382353127002716,-0.599674463272095,0.107462361454964,-0.419666230678558,-0.901294589042664,0.0616355948150158,-0.241510733962059,-0.968438744544983,-0.702991366386414,-0.382353127002716,-0.599674463272095,-0.685542464256287,-0.561854720115662,-0.462980479001999,0.0494586415588856,-0.758598446846008,-0.649678409099579,0.107462361454964,-0.419666230678558,-0.901294589042664,-0.685542464256287,-0.561854720115662,-0.462980479001999,-0.63401335477829,-0.75498354434967,-0.167412534356117,0.0597462803125381,-0.903311491012573,-0.424804508686066,0.0494586415588856,-0.758598446846008,-0.649678409099579,-0.63401335477829,-0.75498354434967,-0.167412534356117,-0.687629640102386,-0.708999514579773,-0.156478121876717,0.108800947666168,-0.916919946670532,-0.383953392505646,0.0597462803125381,-0.903311491012573,-0.424804508686066,-0.79966402053833,-0.564416527748108,-0.204869478940964,0.0492256097495556,-0.998270094394684,0.0321502834558487,0.108800947666168,-0.916919946670532,-0.383953392505646,-0.687629640102386,-0.708999514579773,-0.156478121876717,0.0492256097495556,-0.998270094394684,0.0321502834558487,-0.79966402053833,-0.564416527748108,-0.204869478940964,-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.91729736328125,-0.066786140203476,0.392562210559845,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.88076639175415,-0.0652495622634888,0.469034016132355, +-0.88076639175415,-0.0652495622634888,0.469034016132355,-0.887743651866913,-0.0200926642864943,0.459899425506592,-0.864185214042664,0.167588025331497,0.474444955587387,-0.871415734291077,0.104148954153061,0.479361593723297,-0.763710021972656,0.452771812677383,0.460157334804535,-0.550085604190826,0.511289954185486,0.660294115543365,-0.871415734291077,0.104148954153061,0.479361593723297,-0.864185214042664,0.167588025331497,0.474444955587387,-0.550085604190826,0.511289954185486,0.660294115543365,-0.763710021972656,0.452771812677383,0.460157334804535,-0.250713557004929,0.911273658275604,0.326684951782227,0.220280304551125,0.837858080863953,0.499470114707947,0.401778846979141,0.893144488334656,0.202155500650406,0.372783124446869,0.92624706029892,0.0556701831519604,0.46399787068367,0.878996670246124,-0.109867215156555,0.415264427661896,0.905797719955444,-0.084178239107132,0.226254940032959,0.785780906677246,-0.575636267662048,0.355492949485779,0.712097942829132,-0.605426549911499,0.39429759979248,0.850684344768524,-0.347657263278961,0.389676988124847,0.859412729740143,-0.331001132726669,0.355492949485779,0.712097942829132,-0.605426549911499,0.226254940032959,0.785780906677246,-0.575636267662048,0.0176149271428585,0.596212565898895,-0.802633345127106,0.257443219423294,0.499905705451965,-0.826932430267334,-0.102727353572845,-0.0390269421041012,-0.993943631649017,0.130062997341156,0.00817443151026964,-0.991471946239471,0.148644208908081,0.235804900527,-0.960364937782288,-0.111689299345016,0.199150547385216,-0.973583400249481,-0.0498217605054379,-0.188205376267433,-0.980865240097046,0.179193317890167,-0.112113259732723,-0.977404832839966,0.130062997341156,0.00817443151026964,-0.991471946239471,-0.102727353572845,-0.0390269421041012,-0.993943631649017,0.0616355948150158,-0.241510733962059,-0.968438744544983,0.195894181728363,-0.191160306334496,-0.961812376976013,0.179193317890167,-0.112113259732723,-0.977404832839966,-0.0498217605054379,-0.188205376267433,-0.980865240097046,0.107462361454964,-0.419666230678558,-0.901294589042664, +0.143866539001465,-0.477114796638489,-0.866985499858856,0.195894181728363,-0.191160306334496,-0.961812376976013,0.0616355948150158,-0.241510733962059,-0.968438744544983,0.0494586415588856,-0.758598446846008,-0.649678409099579,0.112310662865639,-0.781480014324188,-0.613738775253296,0.143866539001465,-0.477114796638489,-0.866985499858856,0.107462361454964,-0.419666230678558,-0.901294589042664,0.0597462803125381,-0.903311491012573,-0.424804508686066,0.178519919514656,-0.850810766220093,-0.494218319654465,0.112310662865639,-0.781480014324188,-0.613738775253296,0.0494586415588856,-0.758598446846008,-0.649678409099579,0.108800947666168,-0.916919946670532,-0.383953392505646,0.24877355992794,-0.868550181388855,-0.428640246391296,0.178519919514656,-0.850810766220093,-0.494218319654465,0.0597462803125381,-0.903311491012573,-0.424804508686066,0.0492256097495556,-0.998270094394684,0.0321502834558487,0.112244442105293,-0.986817181110382,0.116588607430458,0.24877355992794,-0.868550181388855,-0.428640246391296,0.108800947666168,-0.916919946670532,-0.383953392505646,0.112244442105293,-0.986817181110382,0.116588607430458,0.0492256097495556,-0.998270094394684,0.0321502834558487,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.963482022285461,-0.171603709459305,0.205558910965919,0.0279303062707186,0.524338662624359,-0.85105162858963,-0.00497592147439718,0.235830992460251,-0.971781313419342,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.111689299345016,0.199150547385216,-0.973583400249481,0.148644208908081,0.235804900527,-0.960364937782288,0.257443219423294,0.499905705451965,-0.826932430267334,0.0176149271428585,0.596212565898895,-0.802633345127106,-0.929100632667542,0.205892205238342,-0.307213872671127,-0.846378862857819,-0.0145592531189322,-0.532382309436798, +-0.111689299345016,0.199150547385216,-0.973583400249481,0.0176149271428585,0.596212565898895,-0.802633345127106,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.671600103378296,-0.681274831295013,0.291235029697418,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.137337490916252,0.722086369991302,0.678033590316772,0.0297247059643269,0.909728348255157,0.414138555526733,-0.625394403934479,0.404965341091156,0.666997015476227,-0.640452027320862,0.263455420732498,0.721396148204803,0.372783124446869,0.92624706029892,0.0556701831519604,0.401778846979141,0.893144488334656,0.202155500650406,0.220280304551125,0.837858080863953,0.499470114707947,-0.250713557004929,0.911273658275604,0.326684951782227,-0.973378598690033,0.186897858977318,0.132677674293518,-0.971945106983185,0.230451807379723,0.0470606461167336,0.372783124446869,0.92624706029892,0.0556701831519604,-0.250713557004929,0.911273658275604,0.326684951782227,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.628934800624847,-0.667119085788727,0.399240732192993,-0.640131115913391,-0.681664824485779,0.354351848363876,-0.857174754142761,0.0433638170361519,0.513196885585785,0.0670048296451569,0.994928240776062,0.0750212594866753,0.0590334981679916,0.956456363201141,-0.285843074321747,-0.618020296096802,0.785884976387024,-0.020872101187706,-0.622281014919281,0.667578756809235,0.408784598112106,0.389676988124847,0.859412729740143,-0.331001132726669,0.39429759979248,0.850684344768524,-0.347657263278961,0.415264427661896,0.905797719955444,-0.084178239107132,0.46399787068367,0.878996670246124,-0.109867215156555,-0.963071823120117,0.26687878370285,0.035615399479866,-0.952061533927917,0.305601567029953,-0.0136558897793293,0.389676988124847,0.859412729740143,-0.331001132726669,0.46399787068367,0.878996670246124,-0.109867215156555,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.728446364402771,0.0299060400575399,0.684449791908264,-0.914259910583496,-0.121510855853558,0.386476337909698, +-0.670880019664764,0.222317904233932,0.707456648349762,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.914259910583496,-0.121510855853558,0.386476337909698,-0.728446364402771,0.0299060400575399,0.684449791908264,-0.635132551193237,0.263100981712341,0.726212441921234,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.921344816684723,-0.0625666826963425,0.383678525686264,-0.670880019664764,0.222317904233932,0.707456648349762,-0.640452027320862,0.263455420732498,0.721396148204803,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.901318669319153,-0.0963634327054024,0.422301977872849,-0.635132551193237,0.263100981712341,0.726212441921234,-0.625394403934479,0.404965341091156,0.666997015476227,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.844539105892181,-0.210838615894318,0.49224054813385,-0.640452027320862,0.263455420732498,0.721396148204803,-0.622281014919281,0.667578756809235,0.408784598112106,-0.857174754142761,0.0433638170361519,0.513196885585785,-0.803415179252625,-0.11637356877327,0.583936095237732,-0.625394403934479,0.404965341091156,0.666997015476227,-0.618020296096802,0.785884976387024,-0.020872101187706,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.857174754142761,0.0433638170361519,0.513196885585785,-0.622281014919281,0.667578756809235,0.408784598112106,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.939677953720093,0.0602783784270287,0.336707293987274,-0.618020296096802,0.785884976387024,-0.020872101187706,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.963482022285461,-0.171603709459305,0.205558910965919,-0.974749982357025,-0.0455602742731571,0.218601703643799,-0.593331098556519,0.705877065658569,-0.386905372142792,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.963482022285461,-0.171603709459305,0.205558910965919,-0.562604904174805,0.470519930124283,-0.679769694805145,-0.634804606437683,-0.048506136983633,-0.77114874124527, +-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.946859300136566,-0.191881895065308,0.258145123720169,-0.56147837638855,0.156364291906357,-0.812583684921265,-0.629554569721222,-0.156398043036461,-0.761052429676056,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.924330711364746,-0.0850119069218636,0.372002333402634,-0.634804606437683,-0.048506136983633,-0.77114874124527,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.947714328765869,-0.0529350228607655,0.314698904752731,-0.629554569721222,-0.156398043036461,-0.761052429676056,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.952737152576447,-0.0828119367361069,0.292291015386581,-0.560076236724854,-0.328557193279266,-0.760502934455872,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.936217784881592,-0.111827448010445,0.333153128623962,-0.569199740886688,-0.610584616661072,-0.550634264945984,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.924568891525269,-0.0491754226386547,0.377828061580658,-0.650948047637939,-0.721578359603882,-0.235778048634529,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.917489349842072,0.0241321120411158,0.397027641534805,-0.832132697105408,-0.552798926830292,0.0443681962788105,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.704593241214752,0.0669582560658455,0.706445336341858,-0.843986213207245,0.0889338254928589,0.528940320014954,-0.859105885028839,-0.3226018846035,0.397322416305542,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.399955481290817,-0.122805923223495,0.908269941806793,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.91729736328125,-0.066786140203476,0.392562210559845, +-0.88076639175415,-0.0652495622634888,0.469034016132355,-0.693493843078613,0.0652938112616539,0.717497706413269,-0.693493843078613,0.0652938112616539,0.717497706413269,-0.88076639175415,-0.0652495622634888,0.469034016132355,-0.871415734291077,0.104148954153061,0.479361593723297,-0.506538450717926,0.35728594660759,0.784707248210907,-0.550085604190826,0.511289954185486,0.660294115543365,-0.303445160388947,0.533744871616364,0.789327204227448,-0.506538450717926,0.35728594660759,0.784707248210907,-0.871415734291077,0.104148954153061,0.479361593723297,-0.137337490916252,0.722086369991302,0.678033590316772,-0.303445160388947,0.533744871616364,0.789327204227448,-0.550085604190826,0.511289954185486,0.660294115543365,0.220280304551125,0.837858080863953,0.499470114707947,0.401778846979141,0.893144488334656,0.202155500650406,0.0297247059643269,0.909728348255157,0.414138555526733,-0.137337490916252,0.722086369991302,0.678033590316772,0.220280304551125,0.837858080863953,0.499470114707947,0.0670048296451569,0.994928240776062,0.0750212594866753,0.0297247059643269,0.909728348255157,0.414138555526733,0.401778846979141,0.893144488334656,0.202155500650406,0.415264427661896,0.905797719955444,-0.084178239107132,0.39429759979248,0.850684344768524,-0.347657263278961,0.0590334981679916,0.956456363201141,-0.285843074321747,0.0670048296451569,0.994928240776062,0.0750212594866753,0.415264427661896,0.905797719955444,-0.084178239107132,0.355492949485779,0.712097942829132,-0.605426549911499,0.0566010288894176,0.79650467634201,-0.601977288722992,0.0590334981679916,0.956456363201141,-0.285843074321747,0.39429759979248,0.850684344768524,-0.347657263278961,0.0279303062707186,0.524338662624359,-0.85105162858963,0.0566010288894176,0.79650467634201,-0.601977288722992,0.355492949485779,0.712097942829132,-0.605426549911499,0.257443219423294,0.499905705451965,-0.826932430267334,0.148644208908081,0.235804900527,-0.960364937782288,-0.00497592147439718,0.235830992460251,-0.971781313419342,0.0279303062707186,0.524338662624359,-0.85105162858963,0.257443219423294,0.499905705451965,-0.826932430267334, +0.130062997341156,0.00817443151026964,-0.991471946239471,-0.00314093637280166,0.0235500875860453,-0.999717712402344,-0.00497592147439718,0.235830992460251,-0.971781313419342,0.148644208908081,0.235804900527,-0.960364937782288,0.179193317890167,-0.112113259732723,-0.977404832839966,0.0376802645623684,-0.112855963408947,-0.992896676063538,-0.00314093637280166,0.0235500875860453,-0.999717712402344,0.130062997341156,0.00817443151026964,-0.991471946239471,0.195894181728363,-0.191160306334496,-0.961812376976013,-0.0169328302145004,-0.267134875059128,-0.963510394096375,0.0376802645623684,-0.112855963408947,-0.992896676063538,0.179193317890167,-0.112113259732723,-0.977404832839966,0.143866539001465,-0.477114796638489,-0.866985499858856,-0.137499764561653,-0.576561093330383,-0.805401206016541,-0.0169328302145004,-0.267134875059128,-0.963510394096375,0.195894181728363,-0.191160306334496,-0.961812376976013,0.112310662865639,-0.781480014324188,-0.613738775253296,-0.187847152352333,-0.823827743530273,-0.534809589385986,-0.137499764561653,-0.576561093330383,-0.805401206016541,0.143866539001465,-0.477114796638489,-0.866985499858856,0.178519919514656,-0.850810766220093,-0.494218319654465,-0.214595109224319,-0.886547148227692,-0.409857511520386,-0.187847152352333,-0.823827743530273,-0.534809589385986,0.112310662865639,-0.781480014324188,-0.613738775253296,0.24877355992794,-0.868550181388855,-0.428640246391296,-0.290042757987976,-0.933156549930573,-0.212353751063347,-0.214595109224319,-0.886547148227692,-0.409857511520386,0.178519919514656,-0.850810766220093,-0.494218319654465,0.112244442105293,-0.986817181110382,0.116588607430458,-0.308195531368256,-0.92970085144043,0.201672866940498,-0.290042757987976,-0.933156549930573,-0.212353751063347,0.24877355992794,-0.868550181388855,-0.428640246391296,-0.308195531368256,-0.92970085144043,0.201672866940498,0.112244442105293,-0.986817181110382,0.116588607430458,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.399955481290817,-0.122805923223495,0.908269941806793, +-0.704593241214752,0.0669582560658455,0.706445336341858,-0.654786646366119,-0.31487238407135,0.687102496623993,-0.282774448394775,-0.492953836917877,0.822821438312531,-0.780445158481598,0.102822184562683,0.616711378097534,-0.704593241214752,0.0669582560658455,0.706445336341858,-0.399955481290817,-0.122805923223495,0.908269941806793,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.780445158481598,0.102822184562683,0.616711378097534,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.780445158481598,0.102822184562683,0.616711378097534,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.849553406238556,0.330861240625381,0.410840421915054,-0.809130072593689,0.28207004070282,0.515504539012909,-0.727731227874756,0.51099693775177,0.457481563091278,-0.824443161487579,0.300075203180313,0.479841828346252,-0.809130072593689,0.28207004070282,0.515504539012909,-0.849553406238556,0.330861240625381,0.410840421915054,-0.727731227874756,0.51099693775177,0.457481563091278,-0.692417323589325,0.398123383522034,0.601710975170135,-0.824441373348236,0.217865794897079,0.522332191467285,-0.824443161487579,0.300075203180313,0.479841828346252,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.824441373348236,0.217865794897079,0.522332191467285,-0.692417323589325,0.398123383522034,0.601710975170135,-0.712208867073059,0.203920423984528,0.671695709228516,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.801447927951813,0.0991643220186234,0.589786112308502,-0.712208867073059,0.203920423984528,0.671695709228516,-0.70997542142868,0.0398486591875553,0.703098058700562,-0.762000739574432,0.0454963482916355,0.645976006984711,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.819959819316864,0.00309126800857484,0.572412610054016,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.70997542142868,0.0398486591875553,0.703098058700562, +-0.819959819316864,0.00309126800857484,0.572412610054016,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.641735196113586,-0.278842270374298,0.71443897485733,-0.654242515563965,-0.0184067133814096,0.756060779094696,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.634391665458679,-0.482863128185272,0.603647589683533,-0.628934800624847,-0.667119085788727,0.399240732192993,-0.643930852413177,-0.563519179821014,0.517493307590485,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.640131115913391,-0.681664824485779,0.354351848363876,-0.671600103378296,-0.681274831295013,0.291235029697418,-0.640131115913391,-0.681664824485779,0.354351848363876,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.781028628349304,-0.598279774188995,0.179040983319283,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.904256820678711,-0.421132296323776,0.0704780146479607,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.961337625980377,-0.26931968331337,-0.0574190281331539,-0.951264023780823,-0.308376491069794,0.000831045501399785,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.961337625980377,-0.26931968331337,-0.0574190281331539, +-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.745959162712097,-0.528664708137512,0.405041486024857,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.821050465106964,-0.340961426496506,0.457844257354736,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.836469411849976,-0.198363080620766,0.510853052139282,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.819959819316864,0.00309126800857484,0.572412610054016,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.849036872386932,-0.0140872662886977,0.528145730495453,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.736697912216187,0.0184260755777359,0.675970911979675,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.819959819316864,0.00309126800857484,0.572412610054016,-0.736697912216187,0.0184260755777359,0.675970911979675,-0.775300860404968,0.0572843737900257,0.628988981246948,-0.712208867073059,0.203920423984528,0.671695709228516,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.830455243587494,0.126324564218521,0.542573809623718,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.712208867073059,0.203920423984528,0.671695709228516,-0.692417323589325,0.398123383522034,0.601710975170135,-0.909037232398987,-0.204509243369102,0.363080382347107,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.911594152450562,-0.365249693393707,0.188649818301201,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.954830288887024,-0.288762301206589,0.0701114311814308,-0.909037232398987,-0.204509243369102,0.363080382347107,-0.89477813243866,-0.14894962310791,0.420934736728668, +-0.89477813243866,-0.14894962310791,0.420934736728668,-0.909037232398987,-0.204509243369102,0.363080382347107,-0.930769860744476,-0.145906552672386,0.335229486227036,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.89477813243866,-0.14894962310791,0.420934736728668,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.959436476230621,-0.277830839157104,0.0478714406490326,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.89477813243866,-0.14894962310791,0.420934736728668,-0.929600596427917,-0.0477378256618977,0.365463882684708,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.894357621669769,-0.110856384038925,0.433399856090546,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.824273407459259,-0.163596406579018,0.542042136192322,-0.736697912216187,0.0184260755777359,0.675970911979675,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.850171804428101,-0.270526498556137,0.451689422130585,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.737134575843811,-0.0549518689513206,0.673507928848267,-0.830455243587494,0.126324564218521,0.542573809623718,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.819830238819122,-0.322179853916168,0.473369419574738,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.923373341560364,-0.348017185926437,0.162066787481308,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.878611862659454,-0.381455332040787,0.287285685539246,-0.830455243587494,0.126324564218521,0.542573809623718,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.830455243587494,0.126324564218521,0.542573809623718, +-0.692417323589325,0.398123383522034,0.601710975170135,-0.727731227874756,0.51099693775177,0.457481563091278,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.99286687374115,0.118978433310986,-0.00771750323474407,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.727731227874756,0.51099693775177,0.457481563091278,-0.849553406238556,0.330861240625381,0.410840421915054,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.924724757671356,-0.373777061700821,-0.0719366744160652,-0.988159596920013,0.0504883304238319,0.144884318113327,-0.99286687374115,0.118978433310986,-0.00771750323474407,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.923127830028534,-0.383502542972565,-0.027582935988903,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.902530491352081,-0.353353559970856,0.246129766106606,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.922197461128235,-0.365358889102936,-0.12674680352211,-0.99286687374115,0.118978433310986,-0.00771750323474407,-0.992888033390045,-0.109178259968758,-0.0474712029099464,-0.652465343475342,-0.309647291898727,-0.691670060157776,-0.81197327375412,-0.313396573066711,0.492424696683884,-0.875657141208649,-0.0230464935302734,0.482383221387863,-0.842729270458221,0.0403629913926125,-0.536822259426117,-0.842729270458221,0.0403629913926125,-0.536822259426117,-0.875657141208649,-0.0230464935302734,0.482383221387863,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.81197327375412,-0.313396573066711,0.492424696683884,-0.652465343475342,-0.309647291898727,-0.691670060157776,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.992888033390045,-0.109178259968758,-0.0474712029099464, +-0.946084976196289,-0.140076860785484,0.292064636945724,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.81197327375412,-0.313396573066711,0.492424696683884,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.875657141208649,-0.0230464935302734,0.482383221387863,-0.842729270458221,0.0403629913926125,-0.536822259426117,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.652465343475342,-0.309647291898727,-0.691670060157776,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.992888033390045,-0.109178259968758,-0.0474712029099464,-0.914948701858521,-0.273785173892975,-0.296497136354446,-0.969196140766144,-0.236172631382942,-0.0698664262890816,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.865864813327789,-0.244937121868134,0.436215579509735,-0.989428818225861,-0.105288505554199,-0.0997243002057076,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.91729736328125,-0.066786140203476,0.392562210559845,-0.922427952289581,-0.117696471512318,0.367796450853348,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.9384805560112,-0.079225167632103,0.336121290922165,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.91729736328125,-0.066786140203476,0.392562210559845,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.92633730173111,-0.258207112550735,0.274277776479721,-0.946084976196289,-0.140076860785484,0.292064636945724,-0.992888033390045,-0.109178259968758,-0.0474712029099464,-0.99286687374115,0.118978433310986,-0.00771750323474407, +-0.849553406238556,0.330861240625381,0.410840421915054,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.970032215118408,-0.16810230910778,-0.175439581274986,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.95596045255661,-0.197021618485451,0.217535972595215,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.945193707942963,-0.0446835197508335,0.323438316583633,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.956452369689941,-0.186609238386154,0.224445641040802,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.961383700370789,-0.0141445295885205,0.274847626686096,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.972173810005188,0.0678133368492126,0.224230632185936,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.958870708942413,0.0859368443489075,0.270521491765976,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.972173810005188,0.0678133368492126,0.224230632185936,-0.982922613620758,0.0160325467586517,0.183319389820099,-0.952221989631653,0.0937438532710075,0.290663599967957,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.972173810005188,0.0678133368492126,0.224230632185936, +-0.982922613620758,0.0160325467586517,0.183319389820099,-0.972173810005188,0.0678133368492126,0.224230632185936,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.966274917125702,-0.204047411680222,0.157090440392494,-0.975469350814819,-0.177975803613663,0.129553586244583,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.968835592269897,-0.0854190364480019,0.232510760426521,-0.978523850440979,-0.125670611858368,0.16339510679245,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.958805680274963,-0.162935614585876,0.232687667012215,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.982539415359497,-0.0605741143226624,0.175918206572533,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.982922613620758,0.0160325467586517,0.183319389820099,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.97018700838089,-0.0247756112366915,0.241087779402733,-0.982922613620758,0.0160325467586517,0.183319389820099,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.965821146965027,-0.0894736871123314,0.243277624249458,-0.974596858024597,0.0424520671367645,0.219906240701675,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.982539415359497,-0.0605741143226624,0.175918206572533,-0.985617160797119,-0.0366758815944195,0.164965406060219,-0.981810450553894,-0.0882907584309578,0.168086394667625,-0.982539415359497,-0.0605741143226624,0.175918206572533,-0.987412691116333,-0.00441687600687146,0.158103331923485,-0.970032215118408,-0.16810230910778,-0.175439581274986, +-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.79966402053833,-0.564416527748108,-0.204869478940964,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.970032215118408,-0.16810230910778,-0.175439581274986,-0.938031911849976,-0.247648358345032,-0.24241815507412,-0.984486639499664,-0.103614777326584,0.141597971320152,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.967040598392487,-0.115117758512497,0.227112963795662,-0.959655821323395,-0.171769455075264,0.222611367702484,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.979095160961151,-0.175281271338463,0.103194698691368,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.990661442279816,-0.0985425710678101,0.0942293852567673,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.993854582309723,-0.0928924381732941,0.060199573636055,-0.970032215118408,-0.16810230910778,-0.175439581274986,-0.99647045135498,-0.0610248073935509,0.0576416812837124,-0.993854582309723,-0.0928924381732941,0.060199573636055,-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.949510335922241,-0.313602298498154,0.00914698373526335,-0.993854582309723,-0.0928924381732941,0.060199573636055,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.982503771781921,-0.137145161628723,0.126006230711937,-0.96697473526001,-0.204628482460976,0.151944413781166,-0.777473032474518,-0.164916694164276,0.606908679008484,-0.534100353717804,-0.534268736839294,0.655205190181732,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.79966402053833,-0.564416527748108,-0.204869478940964, +-0.687629640102386,-0.708999514579773,-0.156478121876717,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.93919175863266,-0.289291828870773,-0.185011401772499,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.687629640102386,-0.708999514579773,-0.156478121876717,-0.63401335477829,-0.75498354434967,-0.167412534356117,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.926034092903137,-0.373746544122696,0.0526726022362709,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.685542464256287,-0.561854720115662,-0.462980479001999,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.63401335477829,-0.75498354434967,-0.167412534356117,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.936240255832672,-0.349661856889725,-0.0345064662396908,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.702991366386414,-0.382353127002716,-0.599674463272095,-0.933903932571411,-0.245449021458626,-0.259957998991013,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.685542464256287,-0.561854720115662,-0.462980479001999,-0.933903932571411,-0.245449021458626,-0.259957998991013,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.938230633735657,-0.262705415487289,-0.225186765193939,-0.71641480922699,-0.323539078235626,-0.618119955062866,-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.933903932571411,-0.245449021458626,-0.259957998991013,-0.702991366386414,-0.382353127002716,-0.599674463272095,-0.944222927093506,-0.212333410978317,-0.251709252595901,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.933903932571411,-0.245449021458626,-0.259957998991013, +-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.944222927093506,-0.212333410978317,-0.251709252595901,-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.93233996629715,-0.243075132369995,-0.267687529325485,-0.71641480922699,-0.323539078235626,-0.618119955062866,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.758833348751068,-0.263335555791855,-0.595673024654388,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.930728018283844,-0.228274121880531,-0.285721004009247,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.846378862857819,-0.0145592531189322,-0.532382309436798,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.798786997795105,-0.165355622768402,-0.578443586826324,-0.93968540430069,-0.176109418272972,-0.293217957019806,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.846378862857819,-0.0145592531189322,-0.532382309436798,-0.929100632667542,0.205892205238342,-0.307213872671127,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.959094822406769,-0.0774711742997169,-0.272277742624283,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.996430158615112,0.0729456469416618,-0.0424961969256401, +-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.930095851421356,0.342337965965271,-0.133141040802002,-0.996430158615112,0.0729456469416618,-0.0424961969256401,-0.985621154308319,0.0365987978875637,-0.164959073066711,-0.929100632667542,0.205892205238342,-0.307213872671127,-0.952061533927917,0.305601567029953,-0.0136558897793293,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.996430158615112,0.0729456469416618,-0.0424961969256401,-0.930095851421356,0.342337965965271,-0.133141040802002,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.951627790927887,0.16344353556633,0.260174602270126,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.973378598690033,0.186897858977318,0.132677674293518,-0.951627790927887,0.16344353556633,0.260174602270126,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.973378598690033,0.186897858977318,0.132677674293518,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.971945106983185,0.230451807379723,0.0470606461167336,-0.971945106983185,0.230451807379723,0.0470606461167336,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.963071823120117,0.26687878370285,0.035615399479866,-0.963071823120117,0.26687878370285,0.035615399479866,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.952061533927917,0.305601567029953,-0.0136558897793293,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.943103134632111,0.0936429277062416,0.319041430950165,-0.948820352554321,0.0114546148106456,0.315608531236649,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.974100291728973,0.0250669196248055,0.224722668528557,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.949044048786163,0.0498209930956364,0.311180293560028, +-0.949044048786163,0.0498209930956364,0.311180293560028,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.970829784870148,0.0159736257046461,0.239236995577812,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.976938724517822,0.0197200588881969,0.212607473134995,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.988910734653473,0.0384649373590946,0.143442898988724,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.996085703372955,0.0419613942503929,0.0777981355786324,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.997484982013702,0.0432191342115402,0.0561778098344803,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.996430158615112,0.0729456469416618,-0.0424961969256401,-0.997910022735596,0.0556037947535515,0.0329231917858124,-0.942768216133118,0.0841219648718834,0.322663128376007,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.949044048786163,0.0498209930956364,0.311180293560028,-0.966921269893646,0.0556005910038948,0.248941779136658,-0.949044048786163,0.0498209930956364,0.311180293560028,-0.932954490184784,0.0962187573313713,0.346897512674332,-0.911959171295166,0.11306544393301,0.394393980503082,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.787121653556824,0.192846238613129,0.585875272750854,-0.845208883285522,0.180517852306366,0.503026068210602,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.911959171295166,0.11306544393301,0.394393980503082,-0.605829894542694,0.242477968335152,0.757743120193481, +-0.675026834011078,0.278837352991104,0.683072924613953,-0.845208883285522,0.180517852306366,0.503026068210602,-0.787121653556824,0.192846238613129,0.585875272750854,-0.470622479915619,0.244484186172485,0.847786426544189,-0.525900900363922,0.292911171913147,0.798518180847168,-0.675026834011078,0.278837352991104,0.683072924613953,-0.605829894542694,0.242477968335152,0.757743120193481,-0.340124756097794,0.232896119356155,0.911084234714508,-0.378590852022171,0.300119310617447,0.875555515289307,-0.525900900363922,0.292911171913147,0.798518180847168,-0.470622479915619,0.244484186172485,0.847786426544189,-0.22443599998951,0.214606165885925,0.950564444065094,-0.237684905529022,0.303838640451431,0.922598361968994,-0.378590852022171,0.300119310617447,0.875555515289307,-0.340124756097794,0.232896119356155,0.911084234714508,-0.127829894423485,0.190948218107224,0.973241090774536,-0.125086843967438,0.303321987390518,0.944642245769501,-0.237684905529022,0.303838640451431,0.922598361968994,-0.22443599998951,0.214606165885925,0.950564444065094,-0.0605999082326889,0.14594429731369,0.987435102462769,-0.0415282510221004,0.300986856222153,0.952723622322083,-0.125086843967438,0.303321987390518,0.944642245769501,-0.127829894423485,0.190948218107224,0.973241090774536,-0.0126635609194636,0.124740079045296,0.992108643054962,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0415282510221004,0.300986856222153,0.952723622322083,-0.0605999082326889,0.14594429731369,0.987435102462769,3.63054823537823e-07,0.15388910472393,0.988088130950928,3.70331861176965e-07,0.294343143701553,0.955699801445007,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0126635609194636,0.124740079045296,0.992108643054962,3.78939120082578e-07,0.396793782711029,0.91790771484375,8.38516669432465e-08,0.584491431713104,0.811399877071381,-0.0581103004515171,0.588280320167542,0.80656635761261,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0581103004515171,0.588280320167542,0.80656635761261,-0.0703992545604706,0.603085041046143,0.794564306735992, +-0.0572116672992706,0.412366509437561,0.909219920635223,-0.0572116672992706,0.412366509437561,0.909219920635223,-0.0703992545604706,0.603085041046143,0.794564306735992,-0.156789898872375,0.606592059135437,0.77939909696579,-0.137307420372963,0.425327509641647,0.894563138484955,-0.137307420372963,0.425327509641647,0.894563138484955,-0.156789898872375,0.606592059135437,0.77939909696579,-0.289225667715073,0.599415302276611,0.746357679367065,-0.265747338533401,0.42672210931778,0.864457488059998,-0.265747338533401,0.42672210931778,0.864457488059998,-0.289225667715073,0.599415302276611,0.746357679367065,-0.437061578035355,0.57153731584549,0.694494247436523,-0.416861653327942,0.41656681895256,0.807897567749023,-0.416861653327942,0.41656681895256,0.807897567749023,-0.437061578035355,0.57153731584549,0.694494247436523,-0.602753758430481,0.505191385746002,0.617632269859314,-0.57666677236557,0.384265154600143,0.720968663692474,-0.57666677236557,0.384265154600143,0.720968663692474,-0.602753758430481,0.505191385746002,0.617632269859314,-0.75182569026947,0.405794024467468,0.519701242446899,-0.726795613765717,0.320454448461533,0.607517123222351,-0.726795613765717,0.320454448461533,0.607517123222351,-0.75182569026947,0.405794024467468,0.519701242446899,-0.891625940799713,0.245754644274712,0.380273282527924,-0.867741763591766,0.189786493778229,0.459352970123291,-0.867741763591766,0.189786493778229,0.459352970123291,-0.891625940799713,0.245754644274712,0.380273282527924,-0.954199731349945,0.131023228168488,0.268953174352646,-0.9303337931633,0.0937243103981018,0.354534655809402,3.70331861176965e-07,0.294343143701553,0.955699801445007,3.78939120082578e-07,0.396793782711029,0.91790771484375,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0110971080139279,0.294075280427933,0.955717802047729,-0.0258949734270573,0.398819208145142,0.916663944721222,-0.0572116672992706,0.412366509437561,0.909219920635223,-0.0415282510221004,0.300986856222153,0.952723622322083,-0.0415282510221004,0.300986856222153,0.952723622322083, +-0.0572116672992706,0.412366509437561,0.909219920635223,-0.137307420372963,0.425327509641647,0.894563138484955,-0.125086843967438,0.303321987390518,0.944642245769501,-0.125086843967438,0.303321987390518,0.944642245769501,-0.137307420372963,0.425327509641647,0.894563138484955,-0.265747338533401,0.42672210931778,0.864457488059998,-0.237684905529022,0.303838640451431,0.922598361968994,-0.237684905529022,0.303838640451431,0.922598361968994,-0.265747338533401,0.42672210931778,0.864457488059998,-0.416861653327942,0.41656681895256,0.807897567749023,-0.378590852022171,0.300119310617447,0.875555515289307,-0.378590852022171,0.300119310617447,0.875555515289307,-0.416861653327942,0.41656681895256,0.807897567749023,-0.57666677236557,0.384265154600143,0.720968663692474,-0.525900900363922,0.292911171913147,0.798518180847168,-0.525900900363922,0.292911171913147,0.798518180847168,-0.57666677236557,0.384265154600143,0.720968663692474,-0.726795613765717,0.320454448461533,0.607517123222351,-0.675026834011078,0.278837352991104,0.683072924613953,-0.675026834011078,0.278837352991104,0.683072924613953,-0.726795613765717,0.320454448461533,0.607517123222351,-0.867741763591766,0.189786493778229,0.459352970123291,-0.845208883285522,0.180517852306366,0.503026068210602,-0.845208883285522,0.180517852306366,0.503026068210602,-0.867741763591766,0.189786493778229,0.459352970123291,-0.9303337931633,0.0937243103981018,0.354534655809402,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.949044048786163,0.0498209930956364,0.311180293560028,-0.92173832654953,0.0887760892510414,0.377514779567719,-0.9303337931633,0.0937243103981018,0.354534655809402,-0.9303337931633,0.0937243103981018,0.354534655809402,-0.954199731349945,0.131023228168488,0.268953174352646,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.960659623146057,0.0338881425559521,0.275653302669525,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.97793060541153,0.0641223564743996,0.198847100138664,-0.954199731349945,0.131023228168488,0.268953174352646, +-0.971547603607178,0.182237133383751,0.151277914643288,-0.971547603607178,0.182237133383751,0.151277914643288,-0.954199731349945,0.131023228168488,0.268953174352646,-0.891625940799713,0.245754644274712,0.380273282527924,-0.90499746799469,0.313914388418198,0.287119030952454,-0.75182569026947,0.405794024467468,0.519701242446899,-0.762992560863495,0.522242605686188,0.380926549434662,-0.90499746799469,0.313914388418198,0.287119030952454,-0.891625940799713,0.245754644274712,0.380273282527924,-0.75182569026947,0.405794024467468,0.519701242446899,-0.602753758430481,0.505191385746002,0.617632269859314,-0.622123241424561,0.643279373645782,0.446266889572144,-0.762992560863495,0.522242605686188,0.380926549434662,-0.602753758430481,0.505191385746002,0.617632269859314,-0.437061578035355,0.57153731584549,0.694494247436523,-0.464312046766281,0.728468775749207,0.50373363494873,-0.622123241424561,0.643279373645782,0.446266889572144,-0.328172445297241,0.765673995018005,0.553214371204376,-0.464312046766281,0.728468775749207,0.50373363494873,-0.437061578035355,0.57153731584549,0.694494247436523,-0.289225667715073,0.599415302276611,0.746357679367065,-0.289225667715073,0.599415302276611,0.746357679367065,-0.156789898872375,0.606592059135437,0.77939909696579,-0.2000462859869,0.78645932674408,0.584348618984222,-0.328172445297241,0.765673995018005,0.553214371204376,-0.156789898872375,0.606592059135437,0.77939909696579,-0.0703992545604706,0.603085041046143,0.794564306735992,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.2000462859869,0.78645932674408,0.584348618984222,-0.0703992545604706,0.603085041046143,0.794564306735992,-0.0581103004515171,0.588280320167542,0.80656635761261,-0.065187118947506,0.788389921188354,0.611712276935577,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.0581103004515171,0.588280320167542,0.80656635761261,8.38516669432465e-08,0.584491431713104,0.811399877071381,-3.37651790971449e-08,0.775006294250488,0.631953537464142,-0.065187118947506,0.788389921188354,0.611712276935577,-0.944222927093506,-0.212333410978317,-0.251709252595901, +-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.714498519897461,-0.221778839826584,-0.663555502891541,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.714498519897461,-0.221778839826584,-0.663555502891541,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.471043854951859,-0.273909032344818,-0.838505506515503,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.561252474784851,-0.260013610124588,-0.785740792751312,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.81737619638443,-0.152003943920135,-0.555689632892609, +-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.81737619638443,-0.152003943920135,-0.555689632892609,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.689217805862427,-0.248354837298393,-0.680660486221313,-0.807295203208923,-0.229477033019066,-0.543704807758331,-0.944222927093506,-0.212333410978317,-0.251709252595901,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.90442430973053,-0.211467266082764,-0.370537996292114,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.588890433311462,0.00803652405738831,-0.808172881603241,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.534115314483643,-0.164715588092804,-0.829210162162781,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.588890433311462,0.00803652405738831,-0.808172881603241,-0.593405485153198,-0.153525695204735,-0.790126502513885,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.701683819293976,-0.147749215364456,-0.697000682353973,-0.81737619638443,-0.152003943920135,-0.555689632892609,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.81737619638443,-0.152003943920135,-0.555689632892609,-0.940533101558685,-0.199141666293144,-0.275209188461304,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.908635258674622,-0.173304677009583,-0.379930824041367,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.588890433311462,0.00803652405738831,-0.808172881603241, +-0.622180819511414,0.141736105084419,-0.769936382770538,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.622180819511414,0.141736105084419,-0.769936382770538,-0.588890433311462,0.00803652405738831,-0.808172881603241,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.643712401390076,-0.00501685729250312,-0.765251040458679,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.729125142097473,-0.024277351796627,-0.683949649333954,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.831664204597473,-0.0509966053068638,-0.55293208360672,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.914027452468872,-0.0927669182419777,-0.394902795553207,-0.945234358310699,-0.137335479259491,-0.296092689037323,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.622180819511414,0.141736105084419,-0.769936382770538,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.622180819511414,0.141736105084419,-0.769936382770538,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.688103079795837,0.117322735488415,-0.716065287590027,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.815724194049835,0.170847594738007,-0.552634596824646,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.770941257476807,0.0789638683199883,-0.631992280483246,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.893019199371338,0.102401807904243,-0.438212931156158, +-0.815724194049835,0.170847594738007,-0.552634596824646,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.893019199371338,0.102401807904243,-0.438212931156158,-0.856478750705719,0.0379295237362385,-0.514786899089813,-0.955027103424072,-0.0512563474476337,-0.292055010795593,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.924489438533783,-0.00722927786409855,-0.381139159202576,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.660623788833618,0.295197784900665,-0.690242350101471,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.731676757335663,0.23897348344326,-0.638389229774475,-0.815724194049835,0.170847594738007,-0.552634596824646,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.815724194049835,0.170847594738007,-0.552634596824646,-0.893019199371338,0.102401807904243,-0.438212931156158,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.893019199371338,0.102401807904243,-0.438212931156158,-0.970383882522583,0.0250234119594097,-0.240268543362617,-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.943421423435211,0.0523655191063881,-0.327435195446014,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.544627487659454,0.749089062213898,-0.377155721187592, +-0.781218111515045,0.528859913349152,-0.331670731306076,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.67194938659668,0.496658027172089,-0.549376606941223,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.767210483551025,0.393296122550964,-0.506662011146545,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.781218111515045,0.528859913349152,-0.331670731306076,-0.85939234495163,0.279522627592087,-0.428149431943893,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.957009434700012,0.223830416798592,-0.184480234980583,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.930336177349091,0.167347490787506,-0.32629656791687,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.987574577331543,0.121956139802933,-0.099110834300518,-0.957009434700012,0.223830416798592,-0.184480234980583,-0.968808591365814,0.0964462608098984,-0.228271648287773,-0.988576948642731,0.0620804913341999,-0.137338176369667,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.987574577331543,0.121956139802933,-0.099110834300518,-0.544627487659454,0.749089062213898,-0.377155721187592,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.659332871437073,0.658399403095245,-0.363029479980469,-0.781218111515045,0.528859913349152,-0.331670731306076,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.781218111515045,0.528859913349152,-0.331670731306076,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.892427146434784,0.365392863750458,-0.26469224691391,-0.957009434700012,0.223830416798592,-0.184480234980583,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.957009434700012,0.223830416798592,-0.184480234980583, +-0.987574577331543,0.121956139802933,-0.099110834300518,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.987574577331543,0.121956139802933,-0.099110834300518,-0.997803390026093,0.0609457939863205,-0.025962932035327,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.971547603607178,0.182237133383751,0.151277914643288,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.996394753456116,0.0641463026404381,0.0555225983262062,-0.989530563354492,0.0796420574188232,0.120359160006046,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.99001944065094,0.138423591852188,0.0264663714915514,-0.971547603607178,0.182237133383751,0.151277914643288,-0.952902376651764,0.297708541154861,0.0578522719442844,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.63557767868042,0.756734430789948,-0.152951180934906,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.770054876804352,0.622105002403259,-0.141424119472504,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.883939802646637,0.464299082756042,0.055469423532486,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.897646903991699,0.429799050092697,-0.0974821746349335,-0.963172733783722,0.265747100114822,-0.0409478656947613,-0.952902376651764,0.297708541154861,0.0578522719442844,-0.883939802646637,0.464299082756042,0.055469423532486,-0.882412433624268,0.439035028219223,0.169104963541031,-0.90499746799469,0.313914388418198,0.287119030952454,-0.762992560863495,0.522242605686188,0.380926549434662,-0.74632716178894,0.630759358406067,0.212458163499832,-0.762992560863495,0.522242605686188,0.380926549434662,-0.622123241424561,0.643279373645782,0.446266889572144, +-0.613025367259979,0.755100011825562,0.232430189847946,-0.74632716178894,0.630759358406067,0.212458163499832,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.883939802646637,0.464299082756042,0.055469423532486,-0.882412433624268,0.439035028219223,0.169104963541031,-0.74632716178894,0.630759358406067,0.212458163499832,-0.613025367259979,0.755100011825562,0.232430189847946,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.743669152259827,0.667196154594421,0.0424902327358723,-0.74632716178894,0.630759358406067,0.212458163499832,-0.952902376651764,0.297708541154861,0.0578522719442844,-0.971547603607178,0.182237133383751,0.151277914643288,-0.882412433624268,0.439035028219223,0.169104963541031,-0.883939802646637,0.464299082756042,0.055469423532486,-0.971547603607178,0.182237133383751,0.151277914643288,-0.90499746799469,0.313914388418198,0.287119030952454,-0.882412433624268,0.439035028219223,0.169104963541031,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.0510411784052849,-0.341072261333466,-0.938650369644165,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.0610240995883942,-0.198125913739204,-0.978275060653687,-0.0510411784052849,-0.341072261333466,-0.938650369644165,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.0610240995883942,-0.198125913739204,-0.978275060653687,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.198316663503647,0.0361166931688786,-0.97947233915329,-0.0826811343431473,0.0399862118065357,-0.995773553848267,-0.0826811343431473,0.0399862118065357,-0.995773553848267,-0.198316663503647,0.0361166931688786,-0.97947233915329,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.126609683036804,0.235696747899055,-0.963543891906738,-0.126609683036804,0.235696747899055,-0.963543891906738,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.151392504572868,0.496224343776703,-0.854892909526825, +-0.151392504572868,0.496224343776703,-0.854892909526825,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.116176627576351,0.761918485164642,-0.637168169021606,-0.116176627576351,0.761918485164642,-0.637168169021606,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.0712970271706581,0.915923774242401,-0.394968897104263,-0.0712970271706581,0.915923774242401,-0.394968897104263,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.0529426410794258,0.98890095949173,-0.138823181390762,-0.0529426410794258,0.98890095949173,-0.138823181390762,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.0526714809238911,0.995817303657532,0.0746564120054245,-0.957486569881439,-0.184700608253479,-0.221596747636795,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.97196090221405,-0.152993932366371,-0.178563609719276,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.985939145088196,-0.15902253985405,-0.0513418577611446,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.963321089744568,-0.261259227991104,-0.0612877458333969,-0.972091674804688,-0.193783447146416,0.132233962416649,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.0510411784052849,-0.341072261333466,-0.938650369644165,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-0.0610240995883942,-0.198125913739204,-0.978275060653687, +-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,-0.0510411784052849,-0.341072261333466,-0.938650369644165,-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,-0.0610240995883942,-0.198125913739204,-0.978275060653687,-0.0826811343431473,0.0399862118065357,-0.995773553848267,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,-0.0826811343431473,0.0399862118065357,-0.995773553848267,-0.126609683036804,0.235696747899055,-0.963543891906738,1.21700082900134e-07,0.228037610650063,-0.973652303218842,1.21700082900134e-07,0.228037610650063,-0.973652303218842,-0.126609683036804,0.235696747899055,-0.963543891906738,-0.151392504572868,0.496224343776703,-0.854892909526825,1.34849686972416e-08,0.484101951122284,-0.875011622905731,1.34849686972416e-08,0.484101951122284,-0.875011622905731,-0.151392504572868,0.496224343776703,-0.854892909526825,-0.116176627576351,0.761918485164642,-0.637168169021606,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,-0.116176627576351,0.761918485164642,-0.637168169021606,-0.0712970271706581,0.915923774242401,-0.394968897104263,4.49168147120815e-10,0.921280324459076,-0.388899117708206,4.49168147120815e-10,0.921280324459076,-0.388899117708206,-0.0712970271706581,0.915923774242401,-0.394968897104263,-0.0529426410794258,0.98890095949173,-0.138823181390762,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,-0.0529426410794258,0.98890095949173,-0.138823181390762,-0.0526714809238911,0.995817303657532,0.0746564120054245,6.42563158237408e-09,0.997556865215302,0.0698588863015175,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.384839832782745,-0.188032418489456,-0.903627216815948, +-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.384839832782745,-0.188032418489456,-0.903627216815948,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.429483532905579,0.812928259372711,-0.393308460712433,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.429483532905579,0.812928259372711,-0.393308460712433,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.206910863518715,0.975700497627258,0.0720853134989738,3.01379898814957e-08,0.939260125160217,0.343206197023392,-0.0593210570514202,0.942984938621521,0.327506184577942,-0.065187118947506,0.788389921188354,0.611712276935577,-3.37651790971449e-08,0.775006294250488,0.631953537464142,-0.0593210570514202,0.942984938621521,0.327506184577942,3.01379898814957e-08,0.939260125160217,0.343206197023392, +6.42563158237408e-09,0.997556865215302,0.0698588863015175,-0.0526714809238911,0.995817303657532,0.0746564120054245,-0.0593210570514202,0.942984938621521,0.327506184577942,-0.113730788230896,0.936106860637665,0.332820117473602,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.065187118947506,0.788389921188354,0.611712276935577,-0.113730788230896,0.936106860637665,0.332820117473602,-0.0593210570514202,0.942984938621521,0.327506184577942,-0.0526714809238911,0.995817303657532,0.0746564120054245,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.384839832782745,-0.188032418489456,-0.903627216815948,-0.324406802654266,-0.316661417484283,-0.891339302062988,-0.406798422336578,-0.29585188627243,-0.864283919334412,-0.384839832782745,-0.188032418489456,-0.903627216815948,-0.475787222385406,-0.178060233592987,-0.861348450183868,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.438093781471252,0.0334425196051598,-0.898306965827942,-0.526446878910065,0.0210285149514675,-0.849947869777679,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.454845458269119,0.202356547117233,-0.867275893688202,-0.546258509159088,0.170718163251877,-0.820034742355347,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.463001251220703,0.409111201763153,-0.786293745040894,-0.566569328308105,0.356520175933838,-0.74289470911026,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.457464754581451,0.645765006542206,-0.611321091651917,-0.565610587596893,0.583545386791229,-0.58271723985672,-0.544627487659454,0.749089062213898,-0.377155721187592, +-0.429483532905579,0.812928259372711,-0.393308460712433,-0.429483532905579,0.812928259372711,-0.393308460712433,-0.544627487659454,0.749089062213898,-0.377155721187592,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.394857853651047,0.906209409236908,-0.151234328746796,-0.521591365337372,0.839731872081757,-0.150972858071327,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.613025367259979,0.755100011825562,0.232430189847946,-0.478356868028641,0.839772462844849,0.256820797920227,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.610087871551514,0.791172564029694,0.0428828820586205,-0.622123241424561,0.643279373645782,0.446266889572144,-0.464312046766281,0.728468775749207,0.50373363494873,-0.478356868028641,0.839772462844849,0.256820797920227,-0.613025367259979,0.755100011825562,0.232430189847946,-0.478356868028641,0.839772462844849,0.256820797920227,-0.353402942419052,0.888349592685699,0.293157428503036,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.492445021867752,0.868746876716614,0.0526943355798721,-0.353402942419052,0.888349592685699,0.293157428503036,-0.478356868028641,0.839772462844849,0.256820797920227,-0.464312046766281,0.728468775749207,0.50373363494873,-0.328172445297241,0.765673995018005,0.553214371204376,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.129164710640907,-0.339349329471588,-0.931750297546387,-0.227135673165321,-0.331291079521179,-0.915781497955322,-0.161409333348274,-0.199696838855743,-0.966472029685974,-0.276372611522675,-0.19510705769062,-0.941037476062775,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.198316663503647,0.0361166931688786,-0.97947233915329, +-0.198316663503647,0.0361166931688786,-0.97947233915329,-0.325351595878601,0.0389973409473896,-0.944788634777069,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.244097396731377,0.233473405241966,-0.941226124763489,-0.354934930801392,0.225770905613899,-0.907220244407654,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.27504888176918,0.476537942886353,-0.83502072095871,-0.371971517801285,0.448436200618744,-0.81273740530014,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.243173062801361,0.732398867607117,-0.635970711708069,-0.353156626224518,0.693709313869476,-0.627732217311859,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.17552162706852,0.900466561317444,-0.397934943437576,-0.29582679271698,0.866319119930267,-0.402464479207993,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.121498480439186,0.982229888439178,-0.143046826124191,-0.234079644083977,0.959807932376862,-0.154840379953384,-0.206910863518715,0.975700497627258,0.0720853134989738,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.113730788230896,0.936106860637665,0.332820117473602,-0.215742915868759,0.924982488155365,0.312829822301865,-0.2000462859869,0.78645932674408,0.584348618984222,-0.0968292355537415,0.787472903728485,0.608695685863495,-0.215742915868759,0.924982488155365,0.312829822301865,-0.353402942419052,0.888349592685699,0.293157428503036,-0.328172445297241,0.765673995018005,0.553214371204376,-0.2000462859869,0.78645932674408,0.584348618984222,-0.353402942419052,0.888349592685699,0.293157428503036,-0.215742915868759,0.924982488155365,0.312829822301865,-0.206910863518715,0.975700497627258,0.0720853134989738,-0.366548269987106,0.927925705909729,0.0677957013249397,-0.107867777347565,0.9911749958992,0.0770490765571594,-0.206910863518715,0.975700497627258,0.0720853134989738, +-0.215742915868759,0.924982488155365,0.312829822301865,-0.113730788230896,0.936106860637665,0.332820117473602,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.0509437471628189,-0.305600702762604,-0.950795948505402,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.122248150408268,-0.293943524360657,-0.947972893714905,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.202779367566109,-0.294267296791077,-0.933963298797607,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.288819432258606,-0.280606776475906,-0.915337741374969,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.368643194437027,-0.262233227491379,-0.891816079616547,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.450327694416046,-0.245938003063202,-0.858323633670807,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.714498519897461,-0.221778839826584,-0.663555502891541,-0.570638835430145,-0.235795333981514,-0.786620497703552,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.714498519897461,-0.221778839826584,-0.663555502891541, +-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.929173946380615,-0.180594563484192,-0.322523593902588,-0.838658630847931,-0.203891232609749,-0.505054533481598,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.684308230876923,0.728986442089081,0.0173502005636692,-0.728694200515747,0.622112631797791,0.286322504281998,-0.847042322158813,0.502337336540222,0.173713743686676,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.61449933052063,0.733339846134186,-0.290866494178772,-0.684308230876923,0.728986442089081,0.0173502005636692,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.618001043796539,0.585912525653839,-0.524195611476898,-0.541614532470703,0.677623927593231,-0.497473150491714,-0.61449933052063,0.733339846134186,-0.290866494178772,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.444960385560989,0.612612128257751,-0.653235554695129,-0.541614532470703,0.677623927593231,-0.497473150491714,-0.618001043796539,0.585912525653839,-0.524195611476898,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.351477026939392,0.553170442581177,-0.755292236804962,-0.444960385560989,0.612612128257751,-0.653235554695129,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.270358890295029,0.506686210632324,-0.818642258644104,-0.351477026939392,0.553170442581177,-0.755292236804962,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.213099703192711,0.426459610462189,-0.879045367240906,-0.199552699923515,0.471701294183731,-0.858881115913391,-0.270358890295029,0.506686210632324,-0.818642258644104,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.131308346986771,0.415217816829681,-0.90019565820694,-0.128462314605713,0.454629749059677,-0.881367802619934,-0.199552699923515,0.471701294183731,-0.858881115913391, +-0.213099703192711,0.426459610462189,-0.879045367240906,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.0530861020088196,0.451810419559479,-0.890533149242401,-0.128462314605713,0.454629749059677,-0.881367802619934,-0.131308346986771,0.415217816829681,-0.90019565820694,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,1.98165164277952e-08,0.454084575176239,-0.890958487987518,-0.0530861020088196,0.451810419559479,-0.890533149242401,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.847042322158813,0.502337336540222,0.173713743686676,-0.728694200515747,0.622112631797791,0.286322504281998,-0.726915895938873,0.446397453546524,0.521845281124115,-0.852592706680298,0.350510209798813,0.387592911720276,-0.852592706680298,0.350510209798813,0.387592911720276,-0.726915895938873,0.446397453546524,0.521845281124115,-0.656375765800476,0.277168720960617,0.701675295829773,-0.77659010887146,0.159818083047867,0.609398126602173,-0.77659010887146,0.159818083047867,0.609398126602173,-0.656375765800476,0.277168720960617,0.701675295829773,-0.631248235702515,0.231331527233124,0.740277886390686,-0.757037222385406,0.07386264950037,0.649183332920074,-0.757037222385406,0.07386264950037,0.649183332920074,-0.631248235702515,0.231331527233124,0.740277886390686,-0.599312365055084,0.22761432826519,0.767473995685577,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.599312365055084,0.22761432826519,0.767473995685577,-0.565815091133118,0.248613849282265,0.786158084869385,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.565815091133118,0.248613849282265,0.786158084869385,-0.548404693603516,0.272784471511841,0.790468752384186,-0.715418756008148,0.062575489282608,0.695888042449951,-0.715418756008148,0.062575489282608,0.695888042449951,-0.548404693603516,0.272784471511841,0.790468752384186,-0.56310248374939,0.296413868665695,0.771397769451141,-0.691517233848572,0.0937234982848167,0.716253936290741,-0.691517233848572,0.0937234982848167,0.716253936290741, +-0.56310248374939,0.296413868665695,0.771397769451141,-0.582047343254089,0.326349675655365,0.744793176651001,-0.670894801616669,0.136083379387856,0.728959143161774,-0.670894801616669,0.136083379387856,0.728959143161774,-0.582047343254089,0.326349675655365,0.744793176651001,-0.566551923751831,0.371688425540924,0.735436260700226,-0.610976159572601,0.186938151717186,0.769260823726654,-0.610976159572601,0.186938151717186,0.769260823726654,-0.566551923751831,0.371688425540924,0.735436260700226,-0.395315915346146,0.400195717811584,0.826782166957855,-0.511263906955719,0.229410231113434,0.828239142894745,-0.511263906955719,0.229410231113434,0.828239142894745,-0.395315915346146,0.400195717811584,0.826782166957855,-0.213978081941605,0.364422500133514,0.906316518783569,-0.34737029671669,0.231676667928696,0.908658266067505,-0.34737029671669,0.231676667928696,0.908658266067505,-0.213978081941605,0.364422500133514,0.906316518783569,-0.150779917836189,0.331106066703796,0.931468784809113,-0.271949082612991,0.202168986201286,0.940835416316986,-0.271949082612991,0.202168986201286,0.940835416316986,-0.150779917836189,0.331106066703796,0.931468784809113,-0.0205323211848736,0.307831794023514,0.951219320297241,-0.119281552731991,0.172357603907585,0.977785646915436,-0.119281552731991,0.172357603907585,0.977785646915436,-0.0205323211848736,0.307831794023514,0.951219320297241,0.102973394095898,0.31115847826004,0.944762885570526,0.0153793878853321,0.13690297305584,0.990465044975281,0.0153793878853321,0.13690297305584,0.990465044975281,0.102973394095898,0.31115847826004,0.944762885570526,0.22580198943615,0.312988311052322,0.922524690628052,0.0923508033156395,0.110743016004562,0.989549040794373,0.0923508033156395,0.110743016004562,0.989549040794373,0.22580198943615,0.312988311052322,0.922524690628052,0.310137838125229,0.29395380616188,0.904105007648468,0.168494120240211,0.0982578992843628,0.980793118476868,0.168494120240211,0.0982578992843628,0.980793118476868,0.310137838125229,0.29395380616188,0.904105007648468,0.184752956032753,0.297427594661713,0.936697959899902, +0.126774579286575,0.124518848955631,0.984085023403168,0.126774579286575,0.124518848955631,0.984085023403168,0.184752956032753,0.297427594661713,0.936697959899902,-1.5048020429731e-07,0.302467465400696,0.953159689903259,-1.18681050764735e-07,0.127460151910782,0.99184376001358,1.68667515509924e-08,0.135232120752335,-0.990813970565796,1.48528812360382e-07,0.231706529855728,-0.972785711288452,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.682427048683167,0.0771267116069794,-0.726873338222504,-0.682427048683167,0.0771267116069794,-0.726873338222504,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.819998681545258,0.0456666238605976,-0.570540606975555, +-0.819998681545258,0.0456666238605976,-0.570540606975555,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.734038233757019,-0.289851784706116,0.614144742488861,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.734038233757019,-0.289851784706116,0.614144742488861,-0.788692355155945,-0.369454473257065,0.491393774747849,-0.802000761032104,-0.590044140815735,0.0929660424590111,-0.802000761032104,-0.590044140815735,0.0929660424590111, +-0.788692355155945,-0.369454473257065,0.491393774747849,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.386757224798203,-0.659731805324554,0.644338965415955,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.386757224798203,-0.659731805324554,0.644338965415955,-0.235601097345352,-0.715268731117249,0.657938301563263,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.235601097345352,-0.715268731117249,0.657938301563263, +-0.0898828059434891,-0.720666527748108,0.687430560588837,-0.0629030466079712,-0.98097163438797,0.183678492903709,-0.0629030466079712,-0.98097163438797,0.183678492903709,-0.0898828059434891,-0.720666527748108,0.687430560588837,6.02130469928852e-08,-0.702668070793152,0.711517870426178,1.42591204621567e-07,-0.984854400157928,0.173383504152298,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,1.68667515509924e-08,0.135232120752335,-0.990813970565796,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.0561104007065296,-0.0872161015868187,-0.994607925415039,-0.0513220615684986,0.132161125540733,-0.989898800849915,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.126279309391975,-0.0819377824664116,-0.98860502243042,-0.124153442680836,0.138728305697441,-0.98251736164093,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.200558245182037,-0.0835472270846367,-0.97611278295517,-0.207227230072021,0.132792234420776,-0.969238340854645,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.27932533621788,-0.0811717063188553,-0.956759333610535,-0.285574078559875,0.125350221991539,-0.95012354850769,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.369849771261215,-0.0732091888785362,-0.926202774047852,-0.382903963327408,0.116449944674969,-0.916419088840485,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.482255756855011,-0.0666500106453896,-0.87349134683609,-0.515001654624939,0.100842766463757,-0.851236760616302,-0.682427048683167,0.0771267116069794,-0.726873338222504,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.636456966400146,-0.0669363811612129,-0.768402218818665,-0.682427048683167,0.0771267116069794,-0.726873338222504, +-0.819998681545258,0.0456666238605976,-0.570540606975555,-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.782451927661896,-0.0749092549085617,-0.618188977241516,-0.819998681545258,0.0456666238605976,-0.570540606975555,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.90760737657547,-0.0720456466078758,-0.413591951131821,-0.91990327835083,0.0356822237372398,-0.390518575906754,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.973700761795044,-0.0712959691882133,-0.216387867927551,-0.981304347515106,0.0225161146372557,-0.191140815615654,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.997006714344025,-0.0554612167179585,-0.0538670085370541,-0.999516606330872,-0.00884886365383863,-0.029802592471242,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.976261258125305,-0.12443421036005,0.177285000681877,-0.981986045837402,-0.0894603729248047,0.166434153914452,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.941608905792236,-0.334299713373184,-0.0402034632861614,-0.925318956375122,-0.192561537027359,0.326657027006149,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.856882989406586,-0.512663781642914,-0.054105382412672,-0.872414171695709,-0.313628405332565,0.374874234199524,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.7458655834198,-0.660820782184601,-0.0836688280105591,-0.808891654014587,-0.467697709798813,0.35630464553833,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.700287878513336,-0.696540057659149,-0.156297340989113,-0.801254093647003,-0.55158919095993,0.23182187974453,-0.802000761032104,-0.590044140815735,0.0929660424590111, +-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.677948117256165,-0.716406941413879,-0.164764747023582,-0.802000761032104,-0.590044140815735,0.0929660424590111,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.65241277217865,-0.752244412899017,-0.0921201631426811,-0.770902812480927,-0.633396327495575,0.0672163814306259,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.615763068199158,-0.787445187568665,-0.0276748742908239,-0.713757514953613,-0.691259980201721,0.112737908959389,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.560462832450867,-0.828097999095917,0.0116213178262115,-0.643781065940857,-0.742869079113007,0.183552697300911,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.489590555429459,-0.871388018131256,0.0313685350120068,-0.557880580425262,-0.793857216835022,0.241991817951202,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.424411714076996,-0.905128479003906,0.0248430278152227,-0.475072354078293,-0.843028664588928,0.252208322286606,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.362132340669632,-0.931851148605347,0.0226626954972744,-0.406699180603027,-0.884667098522186,0.227946996688843,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.298353433609009,-0.954143464565277,0.0243994947522879,-0.322932302951813,-0.926151037216187,0.194830507040024,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.235530853271484,-0.971322953701019,0.0325096361339092,-0.258645951747894,-0.948392570018768,0.183449417352676,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.172015964984894,-0.984178066253662,0.042475625872612, +-0.172015964984894,-0.984178066253662,0.042475625872612,-0.164125293493271,-0.975613534450531,0.145743429660797,-0.0629030466079712,-0.98097163438797,0.183678492903709,-0.0893125608563423,-0.993775486946106,0.0665845423936844,-0.0893125608563423,-0.993775486946106,0.0665845423936844,-0.0629030466079712,-0.98097163438797,0.183678492903709,1.42591204621567e-07,-0.984854400157928,0.173383504152298,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.591074585914612,0.207418039441109,-0.779492437839508,-0.591074585914612,0.207418039441109,-0.779492437839508,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.769784450531006,0.213163867592812,-0.601658582687378,-0.751979172229767,0.168086335062981,-0.637396395206451,-0.751979172229767,0.168086335062981,-0.637396395206451, +-0.769784450531006,0.213163867592812,-0.601658582687378,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.72381591796875,-0.197180986404419,0.661218762397766,-0.651494681835175,-0.183251693844795,0.736188530921936,-0.651494681835175,-0.183251693844795,0.736188530921936,-0.72381591796875,-0.197180986404419,0.661218762397766, +-0.650437414646149,-0.166883498430252,0.741000056266785,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.650437414646149,-0.166883498430252,0.741000056266785,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.184067010879517,-0.51487523317337,0.83727103471756, +-0.206913635134697,-0.568290770053864,0.796387076377869,-0.206913635134697,-0.568290770053864,0.796387076377869,-0.184067010879517,-0.51487523317337,0.83727103471756,-0.084998719394207,-0.517168939113617,0.851652204990387,-0.11381658911705,-0.566020905971527,0.816496133804321,-0.11381658911705,-0.566020905971527,0.816496133804321,-0.084998719394207,-0.517168939113617,0.851652204990387,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.0524307116866112,0.265829503536224,-0.962593197822571,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.134599596261978,0.262850105762482,-0.955401957035065,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.235504195094109,0.261066764593124,-0.936152696609497,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.338840991258621,0.254985898733139,-0.905631840229034,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.458467721939087,0.245376214385033,-0.854164958000183,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.611029267311096,0.235729545354843,-0.755694925785065,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.729940891265869,0.388568073511124,-0.562317609786987,-0.769784450531006,0.213163867592812,-0.601658582687378, +-0.769784450531006,0.213163867592812,-0.601658582687378,-0.729940891265869,0.388568073511124,-0.562317609786987,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.876713752746582,0.173148676753044,-0.448767989873886,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.944848120212555,0.109976798295975,-0.308491587638855,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.98707389831543,0.0412889234721661,-0.154855459928513,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.987321078777313,0.106447607278824,0.117754012346268,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.99981027841568,-0.0162971001118422,0.0106693105772138,-0.987321078777313,0.106447607278824,0.117754012346268,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.969928443431854,-0.113509677350521,0.215300664305687,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.923851847648621,-0.19866980612278,0.327151477336884,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.891455054283142,-0.223491340875626,0.394156634807587,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.808399379253387,-0.22382427752018,0.544419944286346,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.817796945571899,-0.229442059993744,0.527792155742645,-0.72381591796875,-0.197180986404419,0.661218762397766,-0.72381591796875,-0.197180986404419,0.661218762397766, +-0.817796945571899,-0.229442059993744,0.527792155742645,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.650437414646149,-0.166883498430252,0.741000056266785,-0.650437414646149,-0.166883498430252,0.741000056266785,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.596126854419708,-0.1610187292099,0.786578476428986,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.569577991962433,-0.188596680760384,0.80000776052475,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.597430229187012,-0.226283714175224,0.769332587718964,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.643064022064209,-0.269981235265732,0.716644048690796,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.639258921146393,-0.313730597496033,0.702083349227905,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.592115819454193,-0.369304627180099,0.716249287128448,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.24924410879612,-0.198041886091232,0.947975158691406,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.488597750663757,-0.427408635616302,0.760653734207153,-0.24924410879612,-0.198041886091232,0.947975158691406,-0.176319509744644,-0.240196973085403,0.954576790332794,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.358592391014099,-0.481893301010132,0.799493730068207,-0.176319509744644,-0.240196973085403,0.954576790332794, +-0.106686748564243,-0.267717778682709,0.957572400569916,-0.184067010879517,-0.51487523317337,0.83727103471756,-0.184067010879517,-0.51487523317337,0.83727103471756,-0.106686748564243,-0.267717778682709,0.957572400569916,-0.0603146553039551,-0.268659979104996,0.961344838142395,-0.084998719394207,-0.517168939113617,0.851652204990387,-0.084998719394207,-0.517168939113617,0.851652204990387,-0.0603146553039551,-0.268659979104996,0.961344838142395,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.0570282973349094,0.324915587902069,-0.944021999835968,-0.0545923002064228,0.413853853940964,-0.908704936504364,-0.131308346986771,0.415217816829681,-0.90019565820694,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.13765524327755,0.326971411705017,-0.934954941272736,-0.131308346986771,0.415217816829681,-0.90019565820694,-0.213099703192711,0.426459610462189,-0.879045367240906,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.23278284072876,0.329060286283493,-0.915167450904846,-0.213099703192711,0.426459610462189,-0.879045367240906,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.336353063583374,0.33403080701828,-0.880505561828613,-0.298471510410309,0.44779771566391,-0.842847645282745,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.445274412631989,0.345922321081161,-0.825874388217926,-0.390261501073837,0.479690909385681,-0.785870492458344,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.580357730388641,0.370900899171829,-0.724994719028473,-0.496927231550217,0.529703378677368,-0.687370121479034,-0.618001043796539,0.585912525653839,-0.524195611476898, +-0.729940891265869,0.388568073511124,-0.562317609786987,-0.729940891265869,0.388568073511124,-0.562317609786987,-0.618001043796539,0.585912525653839,-0.524195611476898,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.84630936384201,0.373374164104462,-0.379937052726746,-0.713612735271454,0.623848617076874,-0.318700164556503,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.931367695331573,0.311559587717056,-0.188374325633049,-0.791593670845032,0.609075486660004,-0.0490555167198181,-0.847042322158813,0.502337336540222,0.173713743686676,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.977538585662842,0.204975366592407,-0.0490257069468498,-0.847042322158813,0.502337336540222,0.173713743686676,-0.852592706680298,0.350510209798813,0.387592911720276,-0.987321078777313,0.106447607278824,0.117754012346268,-0.987321078777313,0.106447607278824,0.117754012346268,-0.852592706680298,0.350510209798813,0.387592911720276,-0.77659010887146,0.159818083047867,0.609398126602173,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.931344091892242,-0.0584720857441425,0.359415054321289,-0.77659010887146,0.159818083047867,0.609398126602173,-0.757037222385406,0.07386264950037,0.649183332920074,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.88810271024704,-0.162031680345535,0.430138915777206,-0.757037222385406,0.07386264950037,0.649183332920074,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.888332843780518,-0.206319913268089,0.410239964723587,-0.75536584854126,0.0489600002765656,0.653471708297729,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.848279356956482,-0.236357644200325,0.473874598741531,-0.729918479919434,0.0392021089792252,0.682409048080444,-0.715418756008148,0.062575489282608,0.695888042449951,-0.817796945571899,-0.229442059993744,0.527792155742645, +-0.817796945571899,-0.229442059993744,0.527792155742645,-0.715418756008148,0.062575489282608,0.695888042449951,-0.691517233848572,0.0937234982848167,0.716253936290741,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.763033032417297,-0.203145757317543,0.613606095314026,-0.691517233848572,0.0937234982848167,0.716253936290741,-0.670894801616669,0.136083379387856,0.728959143161774,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.691356778144836,-0.166961684823036,0.702957689762115,-0.670894801616669,0.136083379387856,0.728959143161774,-0.610976159572601,0.186938151717186,0.769260823726654,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.601956188678741,-0.126981943845749,0.788368225097656,-0.610976159572601,0.186938151717186,0.769260823726654,-0.511263906955719,0.229410231113434,0.828239142894745,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.539924502372742,-0.097530908882618,0.836043834686279,-0.511263906955719,0.229410231113434,0.828239142894745,-0.34737029671669,0.231676667928696,0.908658266067505,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.530532360076904,-0.0813628509640694,0.843750894069672,-0.34737029671669,0.231676667928696,0.908658266067505,-0.271949082612991,0.202168986201286,0.940835416316986,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.493388056755066,-0.0896371304988861,0.865178227424622,-0.271949082612991,0.202168986201286,0.940835416316986,-0.119281552731991,0.172357603907585,0.977785646915436,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.373312890529633,-0.131910309195518,0.918279409408569,-0.119281552731991,0.172357603907585,0.977785646915436,0.0153793878853321,0.13690297305584,0.990465044975281,-0.24924410879612,-0.198041886091232,0.947975158691406,-0.24924410879612,-0.198041886091232,0.947975158691406,0.0153793878853321,0.13690297305584,0.990465044975281,0.0923508033156395,0.110743016004562,0.989549040794373,-0.176319509744644,-0.240196973085403,0.954576790332794,-0.176319509744644,-0.240196973085403,0.954576790332794, +0.0923508033156395,0.110743016004562,0.989549040794373,0.168494120240211,0.0982578992843628,0.980793118476868,-0.106686748564243,-0.267717778682709,0.957572400569916,-0.106686748564243,-0.267717778682709,0.957572400569916,0.168494120240211,0.0982578992843628,0.980793118476868,0.126774579286575,0.124518848955631,0.984085023403168,-0.0603146553039551,-0.268659979104996,0.961344838142395,-0.0603146553039551,-0.268659979104996,0.961344838142395,0.126774579286575,0.124518848955631,0.984085023403168,-1.18681050764735e-07,0.127460151910782,0.99184376001358,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,1.48528812360382e-07,0.231706529855728,-0.972785711288452,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.0452923513948917,0.23137366771698,-0.971809983253479,-0.042197797447443,0.266968578100204,-0.962780892848969,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.121118888258934,0.239042460918427,-0.963425636291504,-0.122906759381294,0.26610940694809,-0.956075072288513,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.211851760745049,0.243508577346802,-0.946478962898254,-0.221275523304939,0.262335956096649,-0.939264118671417,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.295085877180099,0.239659875631332,-0.924925684928894,-0.315800964832306,0.251591593027115,-0.914861440658569,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.40391007065773,0.225777745246887,-0.886499345302582,-0.436506658792496,0.233594223856926,-0.868847370147705,-0.591074585914612,0.207418039441109,-0.779492437839508,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.550428807735443,0.196756914258003,-0.811366021633148,-0.591074585914612,0.207418039441109,-0.779492437839508, +-0.751979172229767,0.168086335062981,-0.637396395206451,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.716842889785767,0.155832037329674,-0.6795973777771,-0.751979172229767,0.168086335062981,-0.637396395206451,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.841564297676086,0.111185371875763,-0.528589904308319,-0.861584186553955,0.120209991931915,-0.493175595998764,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.920960783958435,0.0725642815232277,-0.382838994264603,-0.930044889450073,0.0694594904780388,-0.360821068286896,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.982601165771484,0.0331035107374191,-0.182754427194595,-0.983544290065765,0.016106903553009,-0.17994736135006,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.999819159507751,-0.0124037507921457,-0.0144206583499908,-0.999397814273834,-0.0340640358626842,-0.00660835672169924,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.983570635318756,-0.0811969041824341,0.161232128739357,-0.980292439460754,-0.109852559864521,0.164192795753479,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.912356376647949,-0.141616865992546,0.384122967720032,-0.927649140357971,-0.173086956143379,0.330919921398163,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.819408297538757,-0.176914528012276,0.545225739479065,-0.849539875984192,-0.187142327427864,0.493213623762131,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.732613027095795,-0.229966312646866,0.640619695186615,-0.730802416801453,-0.185328140854836,0.656948387622833,-0.651494681835175,-0.183251693844795,0.736188530921936, +-0.734038233757019,-0.289851784706116,0.614144742488861,-0.734038233757019,-0.289851784706116,0.614144742488861,-0.651494681835175,-0.183251693844795,0.736188530921936,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.788692355155945,-0.369454473257065,0.491393774747849,-0.788692355155945,-0.369454473257065,0.491393774747849,-0.646958291530609,-0.200475230813026,0.735700130462646,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.820944368839264,-0.437150925397873,0.367354452610016,-0.699751675128937,-0.237756758928299,0.673661112785339,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.805763721466064,-0.495398133993149,0.324538975954056,-0.743825554847717,-0.307951867580414,0.593202412128448,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.75371903181076,-0.530059278011322,0.38851609826088,-0.745765626430511,-0.369670808315277,0.554235696792603,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.693555176258087,-0.548085808753967,0.467528939247131,-0.735174775123596,-0.408614635467529,0.540880918502808,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.638139367103577,-0.555814921855927,0.532773852348328,-0.7086101770401,-0.435911804437637,0.554844617843628,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.592932939529419,-0.562746047973633,0.575975120067596,-0.652298271656036,-0.457809090614319,0.604084372520447,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.510427594184875,-0.590444564819336,0.625171065330505,-0.526753902435303,-0.501215934753418,0.686522305011749,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.386757224798203,-0.659731805324554,0.644338965415955, +-0.386757224798203,-0.659731805324554,0.644338965415955,-0.365993559360504,-0.541276395320892,0.757012963294983,-0.206913635134697,-0.568290770053864,0.796387076377869,-0.235601097345352,-0.715268731117249,0.657938301563263,-0.235601097345352,-0.715268731117249,0.657938301563263,-0.206913635134697,-0.568290770053864,0.796387076377869,-0.11381658911705,-0.566020905971527,0.816496133804321,-0.0898828059434891,-0.720666527748108,0.687430560588837,-0.0898828059434891,-0.720666527748108,0.687430560588837,-0.11381658911705,-0.566020905971527,0.816496133804321,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,6.02130469928852e-08,-0.702668070793152,0.711517870426178,-0.0116365421563387,-0.906590342521667,-0.421851187944412,-0.023888697847724,-0.954553961753845,-0.297079235315323,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.417807817459106,-0.774399518966675,-0.475123226642609,0.33331972360611,-0.913330256938934,-0.233935281634331,0.25480243563652,-0.95263671875,-0.166008993983269,-0.023888697847724,-0.954553961753845,-0.297079235315323,-0.0116365421563387,-0.906590342521667,-0.421851187944412,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.25480243563652,-0.95263671875,-0.166008993983269,0.33331972360611,-0.913330256938934,-0.233935281634331,0.432196915149689,-0.896145820617676,0.10064011067152,0.414681702852249,-0.906808733940125,0.07574313133955,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.413203924894333,-0.90867680311203,-0.0597405806183815,0.46870344877243,-0.856486141681671,0.216214150190353,0.458041399717331,-0.860919594764709,0.221394509077072,0.414681702852249,-0.906808733940125,0.07574313133955,0.432196915149689,-0.896145820617676,0.10064011067152,-0.417807817459106,-0.774399518966675,-0.475123226642609,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.684053778648376,-0.637334287166595,-0.354789197444916,-0.725718796253204,-0.558084905147552,-0.40233501791954,-0.725718796253204,-0.558084905147552,-0.40233501791954, +-0.684053778648376,-0.637334287166595,-0.354789197444916,-0.822762191295624,-0.500289440155029,-0.269764542579651,-0.85067754983902,-0.436321139335632,-0.293209284543991,-0.85067754983902,-0.436321139335632,-0.293209284543991,-0.822762191295624,-0.500289440155029,-0.269764542579651,-0.94079327583313,-0.32646968960762,-0.0912446826696396,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.960407614707947,-0.262317031621933,-0.0938451737165451,-0.94079327583313,-0.32646968960762,-0.0912446826696396,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.984726309776306,-0.138774916529655,0.105145566165447,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.915577232837677,-0.0274117849767208,0.401206791400909,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.718403160572052,-0.0559572800993919,0.69337272644043,-0.718403160572052,-0.0559572800993919,0.69337272644043,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.420695006847382,-0.58874499797821,0.690213739871979,-0.412473618984222,-0.275771468877792,0.868225574493408,-0.412473618984222,-0.275771468877792,0.868225574493408,-0.420695006847382,-0.58874499797821,0.690213739871979,0.0455757603049278,-0.77970951795578,0.624480545520782,0.144469812512398,-0.614519059658051,0.775560915470123,0.144469812512398,-0.614519059658051,0.775560915470123,0.0455757603049278,-0.77970951795578,0.624480545520782,0.374405801296234,-0.792444050312042,0.481510877609253,0.414653033018112,-0.778381586074829,0.471364915370941,0.46870344877243,-0.856486141681671,0.216214150190353,0.414653033018112,-0.778381586074829,0.471364915370941,0.374405801296234,-0.792444050312042,0.481510877609253,0.458041399717331,-0.860919594764709,0.221394509077072,-0.023888697847724,-0.954553961753845,-0.297079235315323,0.25480243563652,-0.95263671875,-0.166008993983269, +-0.236198216676712,-0.958470046520233,0.159829556941986,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.0845373719930649,-0.97024405002594,0.22689189016819,-0.236198216676712,-0.958470046520233,0.159829556941986,0.25480243563652,-0.95263671875,-0.166008993983269,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.117940455675125,-0.949480175971985,0.290821850299835,-0.0845373719930649,-0.97024405002594,0.22689189016819,0.372617810964584,-0.925204813480377,-0.0717768892645836,0.414681702852249,-0.906808733940125,0.07574313133955,-0.420695006847382,-0.58874499797821,0.690213739871979,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.236198216676712,-0.958470046520233,0.159829556941986,-0.0845373719930649,-0.97024405002594,0.22689189016819,-0.0845373719930649,-0.97024405002594,0.22689189016819,0.117940455675125,-0.949480175971985,0.290821850299835,0.0455757603049278,-0.77970951795578,0.624480545520782,-0.420695006847382,-0.58874499797821,0.690213739871979,-0.647312462329865,-0.470428943634033,0.599735856056213,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.236198216676712,-0.958470046520233,0.159829556941986,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.503160178661346,-0.864180862903595,0.00460245879366994,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.023888697847724,-0.954553961753845,-0.297079235315323,-0.84411758184433,-0.344404816627502,0.410914808511734,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.503160178661346,-0.864180862903595,0.00460245879366994,-0.370584458112717,-0.924903690814972,0.0849720388650894,-0.822762191295624,-0.500289440155029,-0.269764542579651,-0.503160178661346,-0.864180862903595,0.00460245879366994,-0.946296811103821,-0.288656622171402,0.145601347088814,-0.94079327583313,-0.32646968960762,-0.0912446826696396,-0.684053778648376,-0.637334287166595,-0.354789197444916,-0.351747512817383,-0.851853609085083,-0.388097018003464,-0.503160178661346,-0.864180862903595,0.00460245879366994, +-0.822762191295624,-0.500289440155029,-0.269764542579651,0.458041399717331,-0.860919594764709,0.221394509077072,0.374405801296234,-0.792444050312042,0.481510877609253,0.0455757603049278,-0.77970951795578,0.624480545520782,0.117940455675125,-0.949480175971985,0.290821850299835,0.117940455675125,-0.949480175971985,0.290821850299835,0.414681702852249,-0.906808733940125,0.07574313133955,0.458041399717331,-0.860919594764709,0.221394509077072,-0.0650144815444946,-0.92928946018219,0.36358517408371,-0.0247087050229311,-0.976878702640533,-0.212361350655556,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,-2.19972790205247e-07,-0.946157574653625,0.323706299066544,0.0745086520910263,-0.995074927806854,-0.0653797164559364,0.331993937492371,-0.770820260047913,-0.543705940246582,0.416777580976486,-0.760090827941895,-0.498556226491928,-0.070024810731411,-0.992533028125763,0.0998734086751938,-0.0177781600505114,-0.99129331111908,0.130466863512993,0.401315569877625,-0.798839211463928,-0.448109120130539,0.377735286951065,-0.830142796039581,-0.410096317529678,-0.010275911539793,-0.987158477306366,0.159412920475006,-0.010275911539793,-0.987158477306366,0.159412920475006,0.377735286951065,-0.830142796039581,-0.410096317529678,0.251897037029266,-0.911083221435547,-0.326305150985718,-0.0467732325196266,-0.957661330699921,0.284072071313858,-0.0467732325196266,-0.957661330699921,0.284072071313858,0.251897037029266,-0.911083221435547,-0.326305150985718,0.105126269161701,-0.962312161922455,-0.250806331634521,-0.0575000047683716,-0.920222759246826,0.387148171663284,-0.0575000047683716,-0.920222759246826,0.387148171663284,0.105126269161701,-0.962312161922455,-0.250806331634521,0.0360650680959225,-0.971361756324768,-0.234852284193039,-0.0700107589364052,-0.918608009815216,0.388918846845627,-0.0700107589364052,-0.918608009815216,0.388918846845627,0.0360650680959225,-0.971361756324768,-0.234852284193039,-0.0247087050229311,-0.976878702640533,-0.212361350655556,-0.0650144815444946,-0.92928946018219,0.36358517408371,-0.070024810731411,-0.992533028125763,0.0998734086751938, +0.416777580976486,-0.760090827941895,-0.498556226491928,0.401315569877625,-0.798839211463928,-0.448109120130539,-0.0177781600505114,-0.99129331111908,0.130466863512993,0.114909864962101,-0.963066697120667,-0.243512377142906,0.480054050683975,-0.702494442462921,-0.525404393672943,0.331993937492371,-0.770820260047913,-0.543705940246582,0.0745086520910263,-0.995074927806854,-0.0653797164559364,0.786459982395172,-0.152115032076836,-0.598616480827332,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.480054050683975,-0.702494442462921,-0.525404393672943,0.114909864962101,-0.963066697120667,-0.243512377142906,0.19354659318924,0.969684422016144,-0.149170637130737,0.417964220046997,0.837518751621246,-0.351949512958527,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.786459982395172,-0.152115032076836,-0.598616480827332,-0.369951218366623,0.895374655723572,0.247871711850166,0.300643712282181,0.812015533447266,-0.500244081020355,0.417964220046997,0.837518751621246,-0.351949512958527,0.19354659318924,0.969684422016144,-0.149170637130737,-0.334255129098892,0.900808572769165,0.277159631252289,0.262743443250656,0.836696147918701,-0.480526208877563,0.300643712282181,0.812015533447266,-0.500244081020355,-0.369951218366623,0.895374655723572,0.247871711850166,-0.319086283445358,0.899404048919678,0.298757940530777,0.344585806131363,0.805059134960175,-0.482846230268478,0.262743443250656,0.836696147918701,-0.480526208877563,-0.334255129098892,0.900808572769165,0.277159631252289,-0.345288753509521,0.879696190357208,0.326971441507339,0.25783696770668,0.862873136997223,-0.43470686674118,0.344585806131363,0.805059134960175,-0.482846230268478,-0.319086283445358,0.899404048919678,0.298757940530777,-0.343751102685928,0.846281886100769,0.406991451978683,0.113817416131496,0.917827665805817,-0.380312949419022,0.25783696770668,0.862873136997223,-0.43470686674118,-0.345288753509521,0.879696190357208,0.326971441507339,-0.203538998961449,0.867182850837708,0.454495310783386,0.0477550774812698,0.912685573101044,-0.405862480401993,0.113817416131496,0.917827665805817,-0.380312949419022, +-0.343751102685928,0.846281886100769,0.406991451978683,-0.0728877931833267,0.860819160938263,0.503664255142212,0.0447619557380676,0.905397772789001,-0.422198206186295,0.0477550774812698,0.912685573101044,-0.405862480401993,-0.203538998961449,0.867182850837708,0.454495310783386,-0.0103095471858978,0.826472699642181,0.562882483005524,0.0501139350235462,0.917618691921234,-0.394289970397949,0.0447619557380676,0.905397772789001,-0.422198206186295,-0.0728877931833267,0.860819160938263,0.503664255142212,-4.3436074292913e-07,0.799352884292603,0.60086190700531,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,0.0501139350235462,0.917618691921234,-0.394289970397949,-0.0103095471858978,0.826472699642181,0.562882483005524,-0.0247087050229311,-0.976878702640533,-0.212361350655556,0.0360558368265629,-0.259087026119232,-0.965180695056915,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,0.0360650680959225,-0.971361756324768,-0.234852284193039,0.162887245416641,-0.252845227718353,-0.953696429729462,0.0360558368265629,-0.259087026119232,-0.965180695056915,-0.0247087050229311,-0.976878702640533,-0.212361350655556,0.105126269161701,-0.962312161922455,-0.250806331634521,0.287318974733353,-0.265834450721741,-0.920206487178802,0.162887245416641,-0.252845227718353,-0.953696429729462,0.0360650680959225,-0.971361756324768,-0.234852284193039,0.251897037029266,-0.911083221435547,-0.326305150985718,0.50138658285141,-0.259844452142715,-0.825283110141754,0.287318974733353,-0.265834450721741,-0.920206487178802,0.105126269161701,-0.962312161922455,-0.250806331634521,0.377735286951065,-0.830142796039581,-0.410096317529678,0.582196235656738,-0.243713214993477,-0.775661945343018,0.50138658285141,-0.259844452142715,-0.825283110141754,0.251897037029266,-0.911083221435547,-0.326305150985718,0.401315569877625,-0.798839211463928,-0.448109120130539,0.605233550071716,-0.242855295538902,-0.758098661899567,0.582196235656738,-0.243713214993477,-0.775661945343018,0.377735286951065,-0.830142796039581,-0.410096317529678, +0.416777580976486,-0.760090827941895,-0.498556226491928,0.586803495883942,-0.278199374675751,-0.760438561439514,0.605233550071716,-0.242855295538902,-0.758098661899567,0.401315569877625,-0.798839211463928,-0.448109120130539,0.331993937492371,-0.770820260047913,-0.543705940246582,0.527179300785065,-0.344850659370422,-0.77663379907608,0.586803495883942,-0.278199374675751,-0.760438561439514,0.416777580976486,-0.760090827941895,-0.498556226491928,0.480054050683975,-0.702494442462921,-0.525404393672943,0.64567369222641,-0.321532547473907,-0.692619979381561,0.527179300785065,-0.344850659370422,-0.77663379907608,0.331993937492371,-0.770820260047913,-0.543705940246582,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.64567369222641,-0.321532547473907,-0.692619979381561,0.480054050683975,-0.702494442462921,-0.525404393672943,0.417964220046997,0.837518751621246,-0.351949512958527,0.563483655452728,0.416101396083832,-0.713684618473053,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.849597811698914,-0.0980970486998558,-0.51822829246521,0.300643712282181,0.812015533447266,-0.500244081020355,0.586945712566376,0.315013289451599,-0.745829284191132,0.563483655452728,0.416101396083832,-0.713684618473053,0.417964220046997,0.837518751621246,-0.351949512958527,0.262743443250656,0.836696147918701,-0.480526208877563,0.578270196914673,0.275099962949753,-0.768064856529236,0.586945712566376,0.315013289451599,-0.745829284191132,0.300643712282181,0.812015533447266,-0.500244081020355,0.344585806131363,0.805059134960175,-0.482846230268478,0.578391373157501,0.257413566112518,-0.774081289768219,0.578270196914673,0.275099962949753,-0.768064856529236,0.262743443250656,0.836696147918701,-0.480526208877563,0.25783696770668,0.862873136997223,-0.43470686674118,0.58739972114563,0.257034152746201,-0.767394959926605,0.578391373157501,0.257413566112518,-0.774081289768219,0.344585806131363,0.805059134960175,-0.482846230268478,0.113817416131496,0.917827665805817,-0.380312949419022,0.471768319606781,0.292233258485794,-0.831885993480682, +0.58739972114563,0.257034152746201,-0.767394959926605,0.25783696770668,0.862873136997223,-0.43470686674118,0.0477550774812698,0.912685573101044,-0.405862480401993,0.241891622543335,0.338840007781982,-0.909217238426208,0.471768319606781,0.292233258485794,-0.831885993480682,0.113817416131496,0.917827665805817,-0.380312949419022,0.0447619557380676,0.905397772789001,-0.422198206186295,0.112730331718922,0.375972926616669,-0.919747948646545,0.241891622543335,0.338840007781982,-0.909217238426208,0.0477550774812698,0.912685573101044,-0.405862480401993,0.0501139350235462,0.917618691921234,-0.394289970397949,0.0816355124115944,0.38482540845871,-0.919372081756592,0.112730331718922,0.375972926616669,-0.919747948646545,0.0447619557380676,0.905397772789001,-0.422198206186295,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,0.0816355124115944,0.38482540845871,-0.919372081756592,0.0501139350235462,0.917618691921234,-0.394289970397949,0.0360558368265629,-0.259087026119232,-0.965180695056915,-0.0285964030772448,-0.448204517364502,-0.893473565578461,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,0.162887245416641,-0.252845227718353,-0.953696429729462,0.154667645692825,-0.442441701889038,-0.883359014987946,-0.0285964030772448,-0.448204517364502,-0.893473565578461,0.0360558368265629,-0.259087026119232,-0.965180695056915,0.287318974733353,-0.265834450721741,-0.920206487178802,0.324519008398056,-0.418067187070847,-0.848473489284515,0.154667645692825,-0.442441701889038,-0.883359014987946,0.162887245416641,-0.252845227718353,-0.953696429729462,0.50138658285141,-0.259844452142715,-0.825283110141754,0.544105112552643,-0.371156424283981,-0.752457559108734,0.324519008398056,-0.418067187070847,-0.848473489284515,0.287318974733353,-0.265834450721741,-0.920206487178802,0.582196235656738,-0.243713214993477,-0.775661945343018,0.627916812896729,-0.361263185739517,-0.689354300498962,0.544105112552643,-0.371156424283981,-0.752457559108734, +0.50138658285141,-0.259844452142715,-0.825283110141754,0.605233550071716,-0.242855295538902,-0.758098661899567,0.657751321792603,-0.360926240682602,-0.661132037639618,0.627916812896729,-0.361263185739517,-0.689354300498962,0.582196235656738,-0.243713214993477,-0.775661945343018,0.586803495883942,-0.278199374675751,-0.760438561439514,0.700498878955841,-0.367755383253098,-0.611602127552032,0.657751321792603,-0.360926240682602,-0.661132037639618,0.605233550071716,-0.242855295538902,-0.758098661899567,0.527179300785065,-0.344850659370422,-0.77663379907608,0.714449048042297,-0.387402921915054,-0.582650482654572,0.700498878955841,-0.367755383253098,-0.611602127552032,0.586803495883942,-0.278199374675751,-0.760438561439514,0.64567369222641,-0.321532547473907,-0.692619979381561,0.829704761505127,-0.297910153865814,-0.472058743238449,0.714449048042297,-0.387402921915054,-0.582650482654572,0.527179300785065,-0.344850659370422,-0.77663379907608,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.829704761505127,-0.297910153865814,-0.472058743238449,0.64567369222641,-0.321532547473907,-0.692619979381561,0.563483655452728,0.416101396083832,-0.713684618473053,0.845793783664703,0.331601172685623,-0.417939811944962,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.763658165931702,-0.0800619348883629,-0.640637516975403,0.586945712566376,0.315013289451599,-0.745829284191132,0.778241574764252,0.403277993202209,-0.481359392404556,0.845793783664703,0.331601172685623,-0.417939811944962,0.563483655452728,0.416101396083832,-0.713684618473053,0.578270196914673,0.275099962949753,-0.768064856529236,0.671574234962463,0.445546746253967,-0.592010259628296,0.778241574764252,0.403277993202209,-0.481359392404556,0.586945712566376,0.315013289451599,-0.745829284191132,0.578391373157501,0.257413566112518,-0.774081289768219,0.56823718547821,0.494539618492126,-0.657675504684448,0.671574234962463,0.445546746253967,-0.592010259628296,0.578270196914673,0.275099962949753,-0.768064856529236, +0.58739972114563,0.257034152746201,-0.767394959926605,0.528667986392975,0.495006203651428,-0.68954986333847,0.56823718547821,0.494539618492126,-0.657675504684448,0.578391373157501,0.257413566112518,-0.774081289768219,0.471768319606781,0.292233258485794,-0.831885993480682,0.29339337348938,0.577668726444244,-0.761721134185791,0.528667986392975,0.495006203651428,-0.68954986333847,0.58739972114563,0.257034152746201,-0.767394959926605,0.241891622543335,0.338840007781982,-0.909217238426208,0.00850844662636518,0.627050518989563,-0.778932094573975,0.29339337348938,0.577668726444244,-0.761721134185791,0.471768319606781,0.292233258485794,-0.831885993480682,0.112730331718922,0.375972926616669,-0.919747948646545,-0.0209043622016907,0.648062288761139,-0.761300325393677,0.00850844662636518,0.627050518989563,-0.778932094573975,0.241891622543335,0.338840007781982,-0.909217238426208,0.0816355124115944,0.38482540845871,-0.919372081756592,0.0730484277009964,0.663973748683929,-0.744179308414459,-0.0209043622016907,0.648062288761139,-0.761300325393677,0.112730331718922,0.375972926616669,-0.919747948646545,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,0.0730484277009964,0.663973748683929,-0.744179308414459,0.0816355124115944,0.38482540845871,-0.919372081756592,-0.0285964030772448,-0.448204517364502,-0.893473565578461,-0.142273917794228,-0.833896338939667,-0.533268332481384,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,0.714449048042297,-0.387402921915054,-0.582650482654572,0.841986060142517,-0.49426481127739,-0.21624481678009,0.791927695274353,-0.557654678821564,-0.248740687966347,0.700498878955841,-0.367755383253098,-0.611602127552032,0.657751321792603,-0.360926240682602,-0.661132037639618,0.725681900978088,-0.606068789958954,-0.32567834854126,0.677578866481781,-0.636642932891846,-0.368201822042465,0.627916812896729,-0.361263185739517,-0.689354300498962,0.627916812896729,-0.361263185739517,-0.689354300498962, +0.677578866481781,-0.636642932891846,-0.368201822042465,0.58957314491272,-0.677521884441376,-0.439735770225525,0.544105112552643,-0.371156424283981,-0.752457559108734,0.544105112552643,-0.371156424283981,-0.752457559108734,0.58957314491272,-0.677521884441376,-0.439735770225525,0.361980944871902,-0.782905459403992,-0.505992889404297,0.324519008398056,-0.418067187070847,-0.848473489284515,0.324519008398056,-0.418067187070847,-0.848473489284515,0.361980944871902,-0.782905459403992,-0.505992889404297,0.118109293282032,-0.8403200507164,-0.529067516326904,0.154667645692825,-0.442441701889038,-0.883359014987946,0.154667645692825,-0.442441701889038,-0.883359014987946,0.118109293282032,-0.8403200507164,-0.529067516326904,-0.142273917794228,-0.833896338939667,-0.533268332481384,-0.0285964030772448,-0.448204517364502,-0.893473565578461,0.700498878955841,-0.367755383253098,-0.611602127552032,0.791927695274353,-0.557654678821564,-0.248740687966347,0.725681900978088,-0.606068789958954,-0.32567834854126,0.657751321792603,-0.360926240682602,-0.661132037639618,0.829704761505127,-0.297910153865814,-0.472058743238449,0.926309108734131,-0.340794384479523,-0.160656705498695,0.841986060142517,-0.49426481127739,-0.21624481678009,0.714449048042297,-0.387402921915054,-0.582650482654572,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.926309108734131,-0.340794384479523,-0.160656705498695,0.829704761505127,-0.297910153865814,-0.472058743238449,0.845793783664703,0.331601172685623,-0.417939811944962,0.93540495634079,0.237250551581383,-0.262163519859314,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.914077579975128,-0.0379646122455597,-0.403758555650711,0.778241574764252,0.403277993202209,-0.481359392404556,0.857928097248077,0.377771407365799,-0.34820693731308,0.93540495634079,0.237250551581383,-0.262163519859314,0.845793783664703,0.331601172685623,-0.417939811944962,0.671574234962463,0.445546746253967,-0.592010259628296,0.747376799583435,0.487252533435822,-0.451677888631821, +0.857928097248077,0.377771407365799,-0.34820693731308,0.778241574764252,0.403277993202209,-0.481359392404556,0.56823718547821,0.494539618492126,-0.657675504684448,0.557595491409302,0.625448524951935,-0.545803368091583,0.747376799583435,0.487252533435822,-0.451677888631821,0.671574234962463,0.445546746253967,-0.592010259628296,0.528667986392975,0.495006203651428,-0.68954986333847,0.376601874828339,0.724782347679138,-0.576941668987274,0.557595491409302,0.625448524951935,-0.545803368091583,0.56823718547821,0.494539618492126,-0.657675504684448,0.29339337348938,0.577668726444244,-0.761721134185791,0.0293780453503132,0.820863783359528,-0.570367753505707,0.376601874828339,0.724782347679138,-0.576941668987274,0.528667986392975,0.495006203651428,-0.68954986333847,0.00850844662636518,0.627050518989563,-0.778932094573975,-0.318089455366135,0.821739256381989,-0.472825407981873,0.0293780453503132,0.820863783359528,-0.570367753505707,0.29339337348938,0.577668726444244,-0.761721134185791,-0.0209043622016907,0.648062288761139,-0.761300325393677,-0.214610368013382,0.864416241645813,-0.454672396183014,-0.318089455366135,0.821739256381989,-0.472825407981873,0.00850844662636518,0.627050518989563,-0.778932094573975,0.0730484277009964,0.663973748683929,-0.744179308414459,0.0425951853394508,0.888551950454712,-0.456794202327728,-0.214610368013382,0.864416241645813,-0.454672396183014,-0.0209043622016907,0.648062288761139,-0.761300325393677,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,0.0425951853394508,0.888551950454712,-0.456794202327728,0.0730484277009964,0.663973748683929,-0.744179308414459,-0.142273917794228,-0.833896338939667,-0.533268332481384,-0.234723791480064,-0.972028970718384,-0.00802458077669144,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,0.841986060142517,-0.49426481127739,-0.21624481678009,0.86516010761261,-0.455062478780746,0.210751533508301,0.81127405166626,-0.551212430000305,0.194934129714966, +0.791927695274353,-0.557654678821564,-0.248740687966347,0.725681900978088,-0.606068789958954,-0.32567834854126,0.736273646354675,-0.65964686870575,0.15088777244091,0.685998976230621,-0.719344675540924,0.109309673309326,0.677578866481781,-0.636642932891846,-0.368201822042465,0.677578866481781,-0.636642932891846,-0.368201822042465,0.685998976230621,-0.719344675540924,0.109309673309326,0.59903222322464,-0.799202442169189,0.0493554137647152,0.58957314491272,-0.677521884441376,-0.439735770225525,0.58957314491272,-0.677521884441376,-0.439735770225525,0.59903222322464,-0.799202442169189,0.0493554137647152,0.379548043012619,-0.924991965293884,0.0182504169642925,0.361980944871902,-0.782905459403992,-0.505992889404297,0.361980944871902,-0.782905459403992,-0.505992889404297,0.379548043012619,-0.924991965293884,0.0182504169642925,0.0856686681509018,-0.996267199516296,0.0106057124212384,0.118109293282032,-0.8403200507164,-0.529067516326904,0.118109293282032,-0.8403200507164,-0.529067516326904,0.0856686681509018,-0.996267199516296,0.0106057124212384,-0.234723791480064,-0.972028970718384,-0.00802458077669144,-0.142273917794228,-0.833896338939667,-0.533268332481384,0.791927695274353,-0.557654678821564,-0.248740687966347,0.81127405166626,-0.551212430000305,0.194934129714966,0.736273646354675,-0.65964686870575,0.15088777244091,0.725681900978088,-0.606068789958954,-0.32567834854126,0.926309108734131,-0.340794384479523,-0.160656705498695,0.946672141551971,-0.257797360420227,0.19326750934124,0.86516010761261,-0.455062478780746,0.210751533508301,0.841986060142517,-0.49426481127739,-0.21624481678009,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.992025136947632,-0.0135554866865277,0.125308886170387,0.946672141551971,-0.257797360420227,0.19326750934124,0.926309108734131,-0.340794384479523,-0.160656705498695,0.93540495634079,0.237250551581383,-0.262163519859314,0.97174334526062,0.23603567481041,0.00144338794052601,0.992025136947632,-0.0135554866865277,0.125308886170387,0.980858027935028,-0.0747446119785309,-0.179807171225548,0.857928097248077,0.377771407365799,-0.34820693731308, +0.908927142620087,0.406034469604492,-0.0948028340935707,0.97174334526062,0.23603567481041,0.00144338794052601,0.93540495634079,0.237250551581383,-0.262163519859314,0.747376799583435,0.487252533435822,-0.451677888631821,0.774248361587524,0.582248449325562,-0.248044982552528,0.908927142620087,0.406034469604492,-0.0948028340935707,0.857928097248077,0.377771407365799,-0.34820693731308,0.557595491409302,0.625448524951935,-0.545803368091583,0.494146764278412,0.774464547634125,-0.394998282194138,0.774248361587524,0.582248449325562,-0.248044982552528,0.747376799583435,0.487252533435822,-0.451677888631821,0.376601874828339,0.724782347679138,-0.576941668987274,0.139661565423012,0.872599422931671,-0.468043655157089,0.494146764278412,0.774464547634125,-0.394998282194138,0.557595491409302,0.625448524951935,-0.545803368091583,0.0293780453503132,0.820863783359528,-0.570367753505707,-0.217602789402008,0.862488985061646,-0.45690444111824,0.139661565423012,0.872599422931671,-0.468043655157089,0.376601874828339,0.724782347679138,-0.576941668987274,-0.318089455366135,0.821739256381989,-0.472825407981873,-0.506362676620483,0.781843066215515,-0.363755911588669,-0.217602789402008,0.862488985061646,-0.45690444111824,0.0293780453503132,0.820863783359528,-0.570367753505707,-0.214610368013382,0.864416241645813,-0.454672396183014,-0.349090456962585,0.866576611995697,-0.35662430524826,-0.506362676620483,0.781843066215515,-0.363755911588669,-0.318089455366135,0.821739256381989,-0.472825407981873,0.0425951853394508,0.888551950454712,-0.456794202327728,0.0188644248992205,0.93314516544342,-0.35900467634201,-0.349090456962585,0.866576611995697,-0.35662430524826,-0.214610368013382,0.864416241645813,-0.454672396183014,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,2.52106922005169e-08,0.935736477375031,-0.352700024843216,0.0188644248992205,0.93314516544342,-0.35900467634201,0.0425951853394508,0.888551950454712,-0.456794202327728,-0.271395593881607,-0.894916951656342,0.35421484708786,-0.26407516002655,-0.547405004501343,0.794110834598541, +0,-0.464990794658661,0.885315537452698,-3.02580502875571e-08,-0.923264861106873,0.384164065122604,0.876293063163757,-0.386514931917191,0.287604868412018,0.762011110782623,-0.166618525981903,0.625761330127716,0.682523310184479,-0.250711411237717,0.686517059803009,0.826429128646851,-0.469586133956909,0.310650587081909,0.747309625148773,-0.577578604221344,0.328528881072998,0.575405716896057,-0.334927320480347,0.746144711971283,0.503849029541016,-0.388366401195526,0.771561920642853,0.695017695426941,-0.638643980026245,0.330279171466827,0.695017695426941,-0.638643980026245,0.330279171466827,0.503849029541016,-0.388366401195526,0.771561920642853,0.452944487333298,-0.465957880020142,0.760081946849823,0.601116895675659,-0.726306319236755,0.333373248577118,0.601116895675659,-0.726306319236755,0.333373248577118,0.452944487333298,-0.465957880020142,0.760081946849823,0.281940132379532,-0.521386981010437,0.805397570133209,0.38341099023819,-0.850178182125092,0.360822707414627,0.38341099023819,-0.850178182125092,0.360822707414627,0.281940132379532,-0.521386981010437,0.805397570133209,0.0131181590259075,-0.542192041873932,0.840152144432068,0.0720963105559349,-0.922054409980774,0.380286365747452,0.0720963105559349,-0.922054409980774,0.380286365747452,0.0131181590259075,-0.542192041873932,0.840152144432068,-0.26407516002655,-0.547405004501343,0.794110834598541,-0.271395593881607,-0.894916951656342,0.35421484708786,0.826429128646851,-0.469586133956909,0.310650587081909,0.682523310184479,-0.250711411237717,0.686517059803009,0.575405716896057,-0.334927320480347,0.746144711971283,0.747309625148773,-0.577578604221344,0.328528881072998,0.949437916278839,-0.215037569403648,0.228749454021454,0.875040590763092,-0.0363671258091927,0.482681632041931,0.762011110782623,-0.166618525981903,0.625761330127716,0.876293063163757,-0.386514931917191,0.287604868412018,0.991393685340881,-0.0117725878953934,0.130384132266045,0.931641757488251,0.146454691886902,0.332557708024979,0.875040590763092,-0.0363671258091927,0.482681632041931,0.949437916278839,-0.215037569403648,0.228749454021454, +0.978284358978271,0.206213906407356,0.0208684783428907,0.939383327960968,0.307013362646103,0.152649343013763,0.931641757488251,0.146454691886902,0.332557708024979,0.991393685340881,-0.0117725878953934,0.130384132266045,0.921564877033234,0.377173900604248,-0.0919675901532173,0.877217411994934,0.478273332118988,0.0417625308036804,0.939383327960968,0.307013362646103,0.152649343013763,0.978284358978271,0.206213906407356,0.0208684783428907,0.773005664348602,0.60207599401474,-0.19991660118103,0.737073123455048,0.654871702194214,-0.166932180523872,0.877217411994934,0.478273332118988,0.0417625308036804,0.921564877033234,0.377173900604248,-0.0919675901532173,0.400419443845749,0.853491067886353,-0.333492338657379,0.395730227231979,0.839276790618896,-0.372843235731125,0.737073123455048,0.654871702194214,-0.166932180523872,0.773005664348602,0.60207599401474,-0.19991660118103,-0.101070150732994,0.919841825962067,-0.379046142101288,-0.128467231988907,0.860839247703552,-0.492394238710403,0.395730227231979,0.839276790618896,-0.372843235731125,0.400419443845749,0.853491067886353,-0.333492338657379,-0.456542074680328,0.826078832149506,-0.330398350954056,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.128467231988907,0.860839247703552,-0.492394238710403,-0.101070150732994,0.919841825962067,-0.379046142101288,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.62518972158432,0.655074954032898,-0.424281060695648,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.456542074680328,0.826078832149506,-0.330398350954056,-0.419228762388229,0.851044833660126,-0.316180527210236,-0.430703699588776,0.765645563602448,-0.47778794169426,-0.62518972158432,0.655074954032898,-0.424281060695648,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.00069262960460037,0.942585170269012,-0.333965301513672,-0.00734906317666173,0.859205365180969,-0.511577963829041,-0.430703699588776,0.765645563602448,-0.47778794169426,-0.419228762388229,0.851044833660126,-0.316180527210236,-3.55305864729871e-08,0.944239854812622,-0.329258650541306, +1.56375783433305e-08,0.863422572612762,-0.504481375217438,-0.00734906317666173,0.859205365180969,-0.511577963829041,-0.00069262960460037,0.942585170269012,-0.333965301513672,-0.26407516002655,-0.547405004501343,0.794110834598541,-0.183962509036064,-0.0350325591862202,0.982308685779572,3.17806012617439e-08,-0.0365307778120041,0.99933248758316,0,-0.464990794658661,0.885315537452698,0.0131181590259075,-0.542192041873932,0.840152144432068,-0.0766318291425705,-0.0284375138580799,0.996653854846954,-0.183962509036064,-0.0350325591862202,0.982308685779572,-0.26407516002655,-0.547405004501343,0.794110834598541,0.281940132379532,-0.521386981010437,0.805397570133209,0.0148814963176847,-0.020852068439126,0.999671876430511,-0.0766318291425705,-0.0284375138580799,0.996653854846954,0.0131181590259075,-0.542192041873932,0.840152144432068,0.452944487333298,-0.465957880020142,0.760081946849823,0.0173269528895617,-0.0208762809634209,0.999631881713867,0.0148814963176847,-0.020852068439126,0.999671876430511,0.281940132379532,-0.521386981010437,0.805397570133209,0.503849029541016,-0.388366401195526,0.771561920642853,0.0708390399813652,-0.00593735510483384,0.997470021247864,0.0173269528895617,-0.0208762809634209,0.999631881713867,0.452944487333298,-0.465957880020142,0.760081946849823,0.575405716896057,-0.334927320480347,0.746144711971283,0.13260954618454,0.0103374812752008,0.991114377975464,0.0708390399813652,-0.00593735510483384,0.997470021247864,0.503849029541016,-0.388366401195526,0.771561920642853,0.682523310184479,-0.250711411237717,0.686517059803009,0.250808626413345,0.0652036815881729,0.965838193893433,0.13260954618454,0.0103374812752008,0.991114377975464,0.575405716896057,-0.334927320480347,0.746144711971283,0.762011110782623,-0.166618525981903,0.625761330127716,0.371559083461761,0.120893597602844,0.920504510402679,0.250808626413345,0.0652036815881729,0.965838193893433,0.682523310184479,-0.250711411237717,0.686517059803009,0.875040590763092,-0.0363671258091927,0.482681632041931,0.503628790378571,0.228875398635864,0.833051025867462, +0.371559083461761,0.120893597602844,0.920504510402679,0.762011110782623,-0.166618525981903,0.625761330127716,0.931641757488251,0.146454691886902,0.332557708024979,0.645216703414917,0.364714354276657,0.671326100826263,0.503628790378571,0.228875398635864,0.833051025867462,0.875040590763092,-0.0363671258091927,0.482681632041931,0.939383327960968,0.307013362646103,0.152649343013763,0.708086907863617,0.491773962974548,0.506726145744324,0.645216703414917,0.364714354276657,0.671326100826263,0.931641757488251,0.146454691886902,0.332557708024979,0.877217411994934,0.478273332118988,0.0417625308036804,0.701581478118896,0.661462426185608,0.265049010515213,0.708086907863617,0.491773962974548,0.506726145744324,0.939383327960968,0.307013362646103,0.152649343013763,0.737073123455048,0.654871702194214,-0.166932180523872,0.576871156692505,0.815990269184113,-0.0371435061097145,0.701581478118896,0.661462426185608,0.265049010515213,0.877217411994934,0.478273332118988,0.0417625308036804,0.395730227231979,0.839276790618896,-0.372843235731125,0.23839108645916,0.898507952690125,-0.368582457304001,0.576871156692505,0.815990269184113,-0.0371435061097145,0.737073123455048,0.654871702194214,-0.166932180523872,-0.128467231988907,0.860839247703552,-0.492394238710403,-0.137437075376511,0.811269104480743,-0.568289935588837,0.23839108645916,0.898507952690125,-0.368582457304001,0.395730227231979,0.839276790618896,-0.372843235731125,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.440458625555038,0.66471540927887,-0.603448033332825,-0.137437075376511,0.811269104480743,-0.568289935588837,-0.128467231988907,0.860839247703552,-0.492394238710403,-0.62518972158432,0.655074954032898,-0.424281060695648,-0.56741863489151,0.567031741142273,-0.597085416316986,-0.440458625555038,0.66471540927887,-0.603448033332825,-0.460331559181213,0.759512424468994,-0.45960396528244,-0.430703699588776,0.765645563602448,-0.47778794169426,-0.368260383605957,0.667870283126831,-0.646787047386169,-0.56741863489151,0.567031741142273,-0.597085416316986,-0.62518972158432,0.655074954032898,-0.424281060695648, +-0.00734906317666173,0.859205365180969,-0.511577963829041,0.0092336917296052,0.746861457824707,-0.664915561676025,-0.368260383605957,0.667870283126831,-0.646787047386169,-0.430703699588776,0.765645563602448,-0.47778794169426,1.56375783433305e-08,0.863422572612762,-0.504481375217438,6.30018490710427e-08,0.75485759973526,-0.655888676643372,0.0092336917296052,0.746861457824707,-0.664915561676025,-0.00734906317666173,0.859205365180969,-0.511577963829041,-0.234723791480064,-0.972028970718384,-0.00802458077669144,-0.271395593881607,-0.894916951656342,0.35421484708786,-3.02580502875571e-08,-0.923264861106873,0.384164065122604,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,0.0856686681509018,-0.996267199516296,0.0106057124212384,0.0720963105559349,-0.922054409980774,0.380286365747452,-0.271395593881607,-0.894916951656342,0.35421484708786,-0.234723791480064,-0.972028970718384,-0.00802458077669144,0.379548043012619,-0.924991965293884,0.0182504169642925,0.38341099023819,-0.850178182125092,0.360822707414627,0.0720963105559349,-0.922054409980774,0.380286365747452,0.0856686681509018,-0.996267199516296,0.0106057124212384,0.59903222322464,-0.799202442169189,0.0493554137647152,0.601116895675659,-0.726306319236755,0.333373248577118,0.38341099023819,-0.850178182125092,0.360822707414627,0.379548043012619,-0.924991965293884,0.0182504169642925,0.685998976230621,-0.719344675540924,0.109309673309326,0.695017695426941,-0.638643980026245,0.330279171466827,0.601116895675659,-0.726306319236755,0.333373248577118,0.59903222322464,-0.799202442169189,0.0493554137647152,0.736273646354675,-0.65964686870575,0.15088777244091,0.747309625148773,-0.577578604221344,0.328528881072998,0.695017695426941,-0.638643980026245,0.330279171466827,0.685998976230621,-0.719344675540924,0.109309673309326,0.81127405166626,-0.551212430000305,0.194934129714966,0.826429128646851,-0.469586133956909,0.310650587081909,0.747309625148773,-0.577578604221344,0.328528881072998,0.736273646354675,-0.65964686870575,0.15088777244091,0.86516010761261,-0.455062478780746,0.210751533508301, +0.876293063163757,-0.386514931917191,0.287604868412018,0.826429128646851,-0.469586133956909,0.310650587081909,0.81127405166626,-0.551212430000305,0.194934129714966,0.946672141551971,-0.257797360420227,0.19326750934124,0.949437916278839,-0.215037569403648,0.228749454021454,0.876293063163757,-0.386514931917191,0.287604868412018,0.86516010761261,-0.455062478780746,0.210751533508301,0.992025136947632,-0.0135554866865277,0.125308886170387,0.991393685340881,-0.0117725878953934,0.130384132266045,0.949437916278839,-0.215037569403648,0.228749454021454,0.946672141551971,-0.257797360420227,0.19326750934124,0.97174334526062,0.23603567481041,0.00144338794052601,0.978284358978271,0.206213906407356,0.0208684783428907,0.991393685340881,-0.0117725878953934,0.130384132266045,0.992025136947632,-0.0135554866865277,0.125308886170387,0.908927142620087,0.406034469604492,-0.0948028340935707,0.921564877033234,0.377173900604248,-0.0919675901532173,0.978284358978271,0.206213906407356,0.0208684783428907,0.97174334526062,0.23603567481041,0.00144338794052601,0.774248361587524,0.582248449325562,-0.248044982552528,0.773005664348602,0.60207599401474,-0.19991660118103,0.921564877033234,0.377173900604248,-0.0919675901532173,0.908927142620087,0.406034469604492,-0.0948028340935707,0.494146764278412,0.774464547634125,-0.394998282194138,0.400419443845749,0.853491067886353,-0.333492338657379,0.773005664348602,0.60207599401474,-0.19991660118103,0.774248361587524,0.582248449325562,-0.248044982552528,0.139661565423012,0.872599422931671,-0.468043655157089,-0.101070150732994,0.919841825962067,-0.379046142101288,0.400419443845749,0.853491067886353,-0.333492338657379,0.494146764278412,0.774464547634125,-0.394998282194138,-0.217602789402008,0.862488985061646,-0.45690444111824,-0.456542074680328,0.826078832149506,-0.330398350954056,-0.101070150732994,0.919841825962067,-0.379046142101288,0.139661565423012,0.872599422931671,-0.468043655157089,-0.506362676620483,0.781843066215515,-0.363755911588669,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.456542074680328,0.826078832149506,-0.330398350954056, +-0.217602789402008,0.862488985061646,-0.45690444111824,-0.349090456962585,0.866576611995697,-0.35662430524826,-0.419228762388229,0.851044833660126,-0.316180527210236,-0.615371227264404,0.732699871063232,-0.290635824203491,-0.506362676620483,0.781843066215515,-0.363755911588669,0.0188644248992205,0.93314516544342,-0.35900467634201,-0.00069262960460037,0.942585170269012,-0.333965301513672,-0.419228762388229,0.851044833660126,-0.316180527210236,-0.349090456962585,0.866576611995697,-0.35662430524826,2.52106922005169e-08,0.935736477375031,-0.352700024843216,-3.55305864729871e-08,0.944239854812622,-0.329258650541306,-0.00069262960460037,0.942585170269012,-0.333965301513672,0.0188644248992205,0.93314516544342,-0.35900467634201,0.613759577274323,-0.0553232282400131,0.787552237510681,0.575852811336517,-0.486751854419708,0.656860768795013,0.491462111473083,-0.292720168828964,0.82023161649704,0.632292747497559,0.0173319820314646,0.774535715579987,0.0368634201586246,-0.304008036851883,0.95195597410202,0.187886357307434,-0.371577531099319,0.909191310405731,0.383882284164429,-0.603094279766083,0.699222147464752,0.274986296892166,-0.651024580001831,0.707495212554932,0.0350082777440548,-0.172622829675674,0.98436564207077,0.0368634201586246,-0.304008036851883,0.95195597410202,0.274986296892166,-0.651024580001831,0.707495212554932,0.275654345750809,-0.681295096874237,0.678123593330383,0.0501973144710064,-0.124382235109806,0.990963816642761,0.0350082777440548,-0.172622829675674,0.98436564207077,0.275654345750809,-0.681295096874237,0.678123593330383,0.147971019148827,-0.704563796520233,0.694042086601257,0.134436830878258,-0.039139598608017,0.990148901939392,0.0501973144710064,-0.124382235109806,0.990963816642761,0.147971019148827,-0.704563796520233,0.694042086601257,0.0575017705559731,-0.60280305147171,0.795815229415894,0.290516257286072,0.00602072011679411,0.956851124763489,0.134436830878258,-0.039139598608017,0.990148901939392,0.0575017705559731,-0.60280305147171,0.795815229415894,0.134694382548332,-0.463504552841187,0.87579733133316, +0.499967753887177,-0.163535639643669,0.850463688373566,0.433234065771103,-0.0361165516078472,0.900557518005371,0.295082241296768,-0.404272556304932,0.865731000900269,0.346632272005081,-0.449827909469604,0.823104381561279,0.521048605442047,-0.286888778209686,0.803867697715759,0.499967753887177,-0.163535639643669,0.850463688373566,0.346632272005081,-0.449827909469604,0.823104381561279,0.370025664567947,-0.503738164901733,0.780595183372498,0.483332127332687,-0.396166235208511,0.780667901039124,0.521048605442047,-0.286888778209686,0.803867697715759,0.370025664567947,-0.503738164901733,0.780595183372498,0.380609661340714,-0.54610675573349,0.746259808540344,0.395630598068237,-0.462299972772598,0.7935711145401,0.483332127332687,-0.396166235208511,0.780667901039124,0.380609661340714,-0.54610675573349,0.746259808540344,0.323241502046585,-0.60172700881958,0.730369389057159,0.433234065771103,-0.0361165516078472,0.900557518005371,0.290516257286072,0.00602072011679411,0.956851124763489,0.134694382548332,-0.463504552841187,0.87579733133316,0.295082241296768,-0.404272556304932,0.865731000900269,0.154182031750679,0.399146050214767,0.903830885887146,0.613759577274323,-0.0553232282400131,0.787552237510681,0.632292747497559,0.0173319820314646,0.774535715579987,0.347748458385468,0.297606498003006,0.889101445674896,-0.199233904480934,0.285865694284439,0.937329471111298,-0.190354779362679,0.393678396940231,0.899323225021362,-0.0414680913090706,0.321205735206604,0.946101069450378,-0.130271911621094,0.17735555768013,0.975486636161804,-0.190354779362679,0.393678396940231,0.899323225021362,0.154182031750679,0.399146050214767,0.903830885887146,0.347748458385468,0.297606498003006,0.889101445674896,-0.0414680913090706,0.321205735206604,0.946101069450378,0.187886357307434,-0.371577531099319,0.909191310405731,0.491462111473083,-0.292720168828964,0.82023161649704,0.575852811336517,-0.486751854419708,0.656860768795013,0.383882284164429,-0.603094279766083,0.699222147464752,-0.0863350555300713,0.219253152608871,0.971840679645538,-0.199233904480934,0.285865694284439,0.937329471111298, +-0.130271911621094,0.17735555768013,0.975486636161804,-0.076492615044117,-0.000426677463110536,0.997070133686066,0.0321443751454353,0.215293377637863,0.976020216941833,-0.0863350555300713,0.219253152608871,0.971840679645538,-0.076492615044117,-0.000426677463110536,0.997070133686066,0.0484236851334572,-0.126815900206566,0.990743577480316,0.244830623269081,0.239294216036797,0.939572274684906,0.0321443751454353,0.215293377637863,0.976020216941833,0.0484236851334572,-0.126815900206566,0.990743577480316,0.290365815162659,-0.138251453638077,0.946876108646393,0.434168308973312,0.253190070390701,0.864518761634827,0.244830623269081,0.239294216036797,0.939572274684906,0.290365815162659,-0.138251453638077,0.946876108646393,0.501423418521881,-0.0618657283484936,0.862987399101257,0.552578508853912,0.248528689146042,0.795544147491455,0.434168308973312,0.253190070390701,0.864518761634827,0.501423418521881,-0.0618657283484936,0.862987399101257,0.591036200523376,0.0579320266842842,0.804562151432037,0.616995334625244,0.248676180839539,0.746643781661987,0.552578508853912,0.248528689146042,0.795544147491455,0.591036200523376,0.0579320266842842,0.804562151432037,0.60392564535141,0.156122982501984,0.781600594520569,0.578737139701843,0.225207775831223,0.7838014960289,0.616995334625244,0.248676180839539,0.746643781661987,0.60392564535141,0.156122982501984,0.781600594520569,0.57700127363205,0.190487146377563,0.794219255447388,0.487023502588272,0.129526108503342,0.86373096704483,0.578737139701843,0.225207775831223,0.7838014960289,0.57700127363205,0.190487146377563,0.794219255447388,0.487047553062439,0.000498084060382098,0.873375296592712,0.356094896793365,-0.327478647232056,0.875188052654266,0.487023502588272,0.129526108503342,0.86373096704483,0.487047553062439,0.000498084060382098,0.873375296592712,0.420201629400253,-0.298252731561661,0.8570157289505,0.420201629400253,-0.298252731561661,0.8570157289505,0.395630598068237,-0.462299972772598,0.7935711145401,0.323241502046585,-0.60172700881958,0.730369389057159,0.356094896793365,-0.327478647232056,0.875188052654266, +0.625528752803802,0.0949555560946465,0.774401128292084,0.579374969005585,-0.130316764116287,0.804575800895691,0.62228399515152,-0.106441542506218,0.775520920753479,0.699977993965149,0.105198934674263,0.706373870372772,0.579374969005585,-0.130316764116287,0.804575800895691,0.477636814117432,-0.315843403339386,0.819820702075958,0.442050814628601,-0.355755299329758,0.823425233364105,0.62228399515152,-0.106441542506218,0.775520920753479,0.477636814117432,-0.315843403339386,0.819820702075958,0.334927916526794,-0.421966195106506,0.842477142810822,0.380699098110199,-0.54412055015564,0.747663736343384,0.442050814628601,-0.355755299329758,0.823425233364105,0.820026814937592,0.130921140313148,0.557149529457092,0.795642733573914,0.111423671245575,0.595430374145508,0.891719162464142,0.173081129789352,0.418186485767365,0.875358283519745,0.225787833333015,0.427513301372528,0.80785346031189,0.132812395691872,0.574224293231964,0.820026814937592,0.130921140313148,0.557149529457092,0.875358283519745,0.225787833333015,0.427513301372528,0.873242199420929,0.179084986448288,0.453185141086578,0.768238186836243,0.109362043440342,0.630753576755524,0.80785346031189,0.132812395691872,0.574224293231964,0.873242199420929,0.179084986448288,0.453185141086578,0.844126224517822,0.131717905402184,0.519712865352631,0.699494361877441,0.129322603344917,0.702839374542236,0.768238186836243,0.109362043440342,0.630753576755524,0.844126224517822,0.131717905402184,0.519712865352631,0.766587615013123,0.116328589618206,0.631514847278595,0.528425633907318,0.181496202945709,0.829352378845215,0.699494361877441,0.129322603344917,0.702839374542236,0.766587615013123,0.116328589618206,0.631514847278595,0.609998941421509,0.0694049596786499,0.789356827735901,0.370503127574921,0.147420585155487,0.917057633399963,0.528425633907318,0.181496202945709,0.829352378845215,0.609998941421509,0.0694049596786499,0.789356827735901,0.475756406784058,-0.124915234744549,0.870661854743958,0.223360776901245,-0.0399122983217239,0.973918259143829,0.370503127574921,0.147420585155487,0.917057633399963, +0.475756406784058,-0.124915234744549,0.870661854743958,0.374557584524155,-0.459309250116348,0.805444955825806,0.19048398733139,-0.248873218894005,0.949619889259338,0.223360776901245,-0.0399122983217239,0.973918259143829,0.374557584524155,-0.459309250116348,0.805444955825806,0.365272045135498,-0.644276142120361,0.671926021575928,0.399061352014542,-0.637620508670807,0.658931016921997,0.255181282758713,-0.350356936454773,0.90118396282196,0.19048398733139,-0.248873218894005,0.949619889259338,0.365272045135498,-0.644276142120361,0.671926021575928,0.334927916526794,-0.421966195106506,0.842477142810822,0.255181282758713,-0.350356936454773,0.90118396282196,0.399061352014542,-0.637620508670807,0.658931016921997,0.380699098110199,-0.54412055015564,0.747663736343384,0.795642733573914,0.111423671245575,0.595430374145508,0.741437256336212,0.0652128756046295,0.667845726013184,0.88086724281311,0.0466531366109848,0.471058756113052,0.891719162464142,0.173081129789352,0.418186485767365,0.741437256336212,0.0652128756046295,0.667845726013184,0.69052255153656,0.0553218685090542,0.721192121505737,0.819737493991852,-0.0587895140051842,0.569714248180389,0.88086724281311,0.0466531366109848,0.471058756113052,0.69052255153656,0.0553218685090542,0.721192121505737,0.643218159675598,0.0473933406174183,0.764214813709259,0.743377506732941,-0.0995368584990501,0.661424338817596,0.819737493991852,-0.0587895140051842,0.569714248180389,0.643218159675598,0.0473933406174183,0.764214813709259,0.580971300601959,0.000804972019977868,0.81392377614975,0.657937824726105,-0.0946975871920586,0.747094452381134,0.743377506732941,-0.0995368584990501,0.661424338817596,0.580971300601959,0.000804972019977868,0.81392377614975,0.47223624587059,-0.0109372045844793,0.881404221057892,0.524923145771027,-0.0342899076640606,0.850458741188049,0.657937824726105,-0.0946975871920586,0.747094452381134,0.47223624587059,-0.0109372045844793,0.881404221057892,0.321686059236526,0.00443004816770554,0.946836054325104,0.386915534734726,0.0745876654982567,0.919093608856201,0.524923145771027,-0.0342899076640606,0.850458741188049, +0.321686059236526,0.00443004816770554,0.946836054325104,0.226750269532204,0.0926256477832794,0.969538450241089,0.300739198923111,0.219192713499069,0.928175926208496,0.386915534734726,0.0745876654982567,0.919093608856201,0.226750269532204,0.0926256477832794,0.969538450241089,0.149907752871513,0.22834187746048,0.961970686912537,0.241420090198517,0.347718894481659,0.905984401702881,0.300739198923111,0.219192713499069,0.928175926208496,0.149907752871513,0.22834187746048,0.961970686912537,0.192397087812424,0.309196352958679,0.931332886219025,0.295458763837814,0.40319499373436,0.866105020046234,0.241420090198517,0.347718894481659,0.905984401702881,0.192397087812424,0.309196352958679,0.931332886219025,0.387087315320969,0.35172712802887,0.852321207523346,0.483116030693054,0.378075450658798,0.789720058441162,0.295458763837814,0.40319499373436,0.866105020046234,0.545160353183746,0.28033983707428,0.790069401264191,0.625528752803802,0.0949555560946465,0.774401128292084,0.699977993965149,0.105198934674263,0.706373870372772,0.635390818119049,0.277111440896988,0.720755100250244,0.387087315320969,0.35172712802887,0.852321207523346,0.545160353183746,0.28033983707428,0.790069401264191,0.635390818119049,0.277111440896988,0.720755100250244,0.483116030693054,0.378075450658798,0.789720058441162,-9.54276870857029e-08,0.46919858455658,0.883092641830444,-4.4512784569406e-08,0.194622755050659,0.980878174304962,0.440599530935287,0.18112014234066,0.879242599010468,0.427030682563782,0.423026651144028,0.799182832241058,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,-8.14389480296995e-08,-0.502702832221985,0.864459335803986,0.170562997460365,-0.404366940259933,0.898552000522614,0.161506175994873,-0.13939642906189,0.976977169513702,0.577886879444122,-0.498515278100967,0.646165132522583,0.523585915565491,-0.50529271364212,0.685957074165344,0.542861461639404,-0.377595067024231,0.750148892402649,0.63982105255127,-0.326441437005997,0.695747852325439,0.524286150932312,-0.359266400337219,0.772043883800507,0.569905579090118,-0.442883878946304,0.6921426653862, +0.648984372615814,-0.224779918789864,0.726837873458862,0.587399959564209,-0.149358853697777,0.795394957065582,0.458856850862503,-0.295015305280685,0.8381028175354,0.524286150932312,-0.359266400337219,0.772043883800507,0.587399959564209,-0.149358853697777,0.795394957065582,0.517772436141968,-0.100642681121826,0.849577963352203,0.357956409454346,-0.279420077800751,0.890949845314026,0.458856850862503,-0.295015305280685,0.8381028175354,0.517772436141968,-0.100642681121826,0.849577963352203,0.416105180978775,-0.0872008353471756,0.905125617980957,0.263805508613586,-0.324460804462433,0.908367693424225,0.357956409454346,-0.279420077800751,0.890949845314026,0.416105180978775,-0.0872008353471756,0.905125617980957,0.283784985542297,-0.100370101630688,0.953620374202728,0.161506175994873,-0.13939642906189,0.976977169513702,0.170562997460365,-0.404366940259933,0.898552000522614,0.263805508613586,-0.324460804462433,0.908367693424225,0.283784985542297,-0.100370101630688,0.953620374202728,0.648984372615814,-0.224779918789864,0.726837873458862,0.569905579090118,-0.442883878946304,0.6921426653862,0.577886879444122,-0.498515278100967,0.646165132522583,0.63982105255127,-0.326441437005997,0.695747852325439,0.523585915565491,-0.50529271364212,0.685957074165344,0.249853223562241,-0.417165219783783,0.873811483383179,0.278689593076706,-0.323656469583511,0.904200494289398,0.542861461639404,-0.377595067024231,0.750148892402649,0.249853223562241,-0.417165219783783,0.873811483383179,0.172889739274979,-0.396294206380844,0.901698410511017,0.211436629295349,-0.330257833003998,0.919904589653015,0.278689593076706,-0.323656469583511,0.904200494289398,0.172889739274979,-0.396294206380844,0.901698410511017,0.181575134396553,-0.344820976257324,0.920939207077026,0.179459974169731,-0.331311762332916,0.926297307014465,0.211436629295349,-0.330257833003998,0.919904589653015,0.181575134396553,-0.344820976257324,0.920939207077026,0.555300772190094,-0.227197304368019,0.800014019012451,0.457515299320221,-0.22873067855835,0.859279990196228,0.179459974169731,-0.331311762332916,0.926297307014465, +0.652515351772308,-0.172068640589714,0.737981021404266,0.457515299320221,-0.22873067855835,0.859279990196228,0.555300772190094,-0.227197304368019,0.800014019012451,0.697688281536102,-0.154478386044502,0.699548006057739,0.652515351772308,-0.172068640589714,0.737981021404266,0.697688281536102,-0.154478386044502,0.699548006057739,0.735670149326324,-0.0863335058093071,0.671815633773804,0.737166225910187,-0.154637187719345,0.657779157161713,0.735670149326324,-0.0863335058093071,0.671815633773804,0.697834551334381,0.000193950618267991,0.716259002685547,0.718691527843475,-0.158279180526733,0.677074670791626,0.737166225910187,-0.154637187719345,0.657779157161713,0.697834551334381,0.000193950618267991,0.716259002685547,0.578704178333282,0.0660680159926414,0.81285697221756,0.620512127876282,-0.170462161302567,0.76544588804245,0.718691527843475,-0.158279180526733,0.677074670791626,0.578704178333282,0.0660680159926414,0.81285697221756,0.377665132284164,0.11030812561512,0.919348180294037,0.442881882190704,-0.176023185253143,0.879131197929382,0.620512127876282,-0.170462161302567,0.76544588804245,0.377665132284164,0.11030812561512,0.919348180294037,0.198651626706123,0.136567875742912,0.970508515834808,0.242541566491127,-0.173334747552872,0.954530596733093,0.442881882190704,-0.176023185253143,0.879131197929382,0.198651626706123,0.136567875742912,0.970508515834808,0.0933130979537964,0.13879482448101,0.985915184020996,0.112910263240337,-0.179892241954803,0.977184772491455,0.242541566491127,-0.173334747552872,0.954530596733093,0.0933130979537964,0.13879482448101,0.985915184020996,-8.4368110719879e-07,0.104064725339413,0.994570553302765,-1.530000446337e-07,-0.212198525667191,0.977226614952087,0.112910263240337,-0.179892241954803,0.977184772491455,0.170562997460365,-0.404366940259933,0.898552000522614,-8.14389480296995e-08,-0.502702832221985,0.864459335803986,-5.37285060886461e-08,-0.762006878852844,0.647568941116333,0.12351680546999,-0.713964104652405,0.689201712608337,0.263805508613586,-0.324460804462433,0.908367693424225,0.170562997460365,-0.404366940259933,0.898552000522614, +0.12351680546999,-0.713964104652405,0.689201712608337,0.179283425211906,-0.639831066131592,0.747310936450958,0.179283425211906,-0.639831066131592,0.747310936450958,0.23452490568161,-0.560499131679535,0.794253587722778,0.357956409454346,-0.279420077800751,0.890949845314026,0.263805508613586,-0.324460804462433,0.908367693424225,0.23452490568161,-0.560499131679535,0.794253587722778,0.364493042230606,-0.523588597774506,0.770064771175385,0.458856850862503,-0.295015305280685,0.8381028175354,0.357956409454346,-0.279420077800751,0.890949845314026,0.364493042230606,-0.523588597774506,0.770064771175385,0.450171023607254,-0.560612738132477,0.695024847984314,0.524286150932312,-0.359266400337219,0.772043883800507,0.458856850862503,-0.295015305280685,0.8381028175354,0.450171023607254,-0.560612738132477,0.695024847984314,0.461659401655197,-0.657731831073761,0.595197021961212,0.569905579090118,-0.442883878946304,0.6921426653862,0.524286150932312,-0.359266400337219,0.772043883800507,0.577886879444122,-0.498515278100967,0.646165132522583,0.569905579090118,-0.442883878946304,0.6921426653862,0.461659401655197,-0.657731831073761,0.595197021961212,0.444360017776489,-0.714160025119781,0.540850877761841,0.444360017776489,-0.714160025119781,0.540850877761841,0.416853666305542,-0.709351301193237,0.568378210067749,0.523585915565491,-0.50529271364212,0.685957074165344,0.577886879444122,-0.498515278100967,0.646165132522583,0.416853666305542,-0.709351301193237,0.568378210067749,0.198796272277832,-0.571186482906342,0.796383082866669,0.249853223562241,-0.417165219783783,0.873811483383179,0.523585915565491,-0.50529271364212,0.685957074165344,0.198796272277832,-0.571186482906342,0.796383082866669,0.1450454890728,-0.49036180973053,0.85936439037323,0.172889739274979,-0.396294206380844,0.901698410511017,0.249853223562241,-0.417165219783783,0.873811483383179,0.1450454890728,-0.49036180973053,0.85936439037323,0.214211598038673,-0.36577895283699,0.905714690685272,0.181575134396553,-0.344820976257324,0.920939207077026,0.172889739274979,-0.396294206380844,0.901698410511017, +0.214211598038673,-0.36577895283699,0.905714690685272,0.603093087673187,-0.0955721437931061,0.791924655437469,0.555300772190094,-0.227197304368019,0.800014019012451,0.181575134396553,-0.344820976257324,0.920939207077026,0.697688281536102,-0.154478386044502,0.699548006057739,0.555300772190094,-0.227197304368019,0.800014019012451,0.603093087673187,-0.0955721437931061,0.791924655437469,0.702888667583466,0.073844738304615,0.707456350326538,0.735670149326324,-0.0863335058093071,0.671815633773804,0.697688281536102,-0.154478386044502,0.699548006057739,0.702888667583466,0.073844738304615,0.707456350326538,0.696915030479431,0.150848433375359,0.701109290122986,0.696915030479431,0.150848433375359,0.701109290122986,0.639413595199585,0.235928192734718,0.731770575046539,0.697834551334381,0.000193950618267991,0.716259002685547,0.735670149326324,-0.0863335058093071,0.671815633773804,0.639413595199585,0.235928192734718,0.731770575046539,0.520338833332062,0.302176594734192,0.798709452152252,0.578704178333282,0.0660680159926414,0.81285697221756,0.697834551334381,0.000193950618267991,0.716259002685547,0.520338833332062,0.302176594734192,0.798709452152252,0.307869166135788,0.363060057163239,0.879433870315552,0.377665132284164,0.11030812561512,0.919348180294037,0.578704178333282,0.0660680159926414,0.81285697221756,0.307869166135788,0.363060057163239,0.879433870315552,0.142265230417252,0.401025265455246,0.904952764511108,0.198651626706123,0.136567875742912,0.970508515834808,0.377665132284164,0.11030812561512,0.919348180294037,0.142265230417252,0.401025265455246,0.904952764511108,0.0595788769423962,0.412579774856567,0.908971130847931,0.0933130979537964,0.13879482448101,0.985915184020996,0.198651626706123,0.136567875742912,0.970508515834808,0.0595788769423962,0.412579774856567,0.908971130847931,-1.23364577575558e-06,0.405415445566177,0.914132475852966,-8.4368110719879e-07,0.104064725339413,0.994570553302765,0.0933130979537964,0.13879482448101,0.985915184020996,0.12351680546999,-0.713964104652405,0.689201712608337,-5.37285060886461e-08,-0.762006878852844,0.647568941116333, +-2.19972790205247e-07,-0.946157574653625,0.323706299066544,0.0650140419602394,-0.929289102554321,0.363586246967316,0.179283425211906,-0.639831066131592,0.747310936450958,0.12351680546999,-0.713964104652405,0.689201712608337,0.0650140419602394,-0.929289102554321,0.363586246967316,0.0700104087591171,-0.918607831001282,0.388919323682785,0.0574995428323746,-0.920222818851471,0.38714811205864,0.23452490568161,-0.560499131679535,0.794253587722778,0.179283425211906,-0.639831066131592,0.747310936450958,0.0700104087591171,-0.918607831001282,0.388919323682785,0.0467730760574341,-0.957661151885986,0.28407296538353,0.364493042230606,-0.523588597774506,0.770064771175385,0.23452490568161,-0.560499131679535,0.794253587722778,0.0574995428323746,-0.920222818851471,0.38714811205864,0.0467730760574341,-0.957661151885986,0.28407296538353,0.0102759916335344,-0.987158536911011,0.159412860870361,0.450171023607254,-0.560612738132477,0.695024847984314,0.364493042230606,-0.523588597774506,0.770064771175385,0.0102759916335344,-0.987158536911011,0.159412860870361,0.0177787970751524,-0.991293430328369,0.13046595454216,0.461659401655197,-0.657731831073761,0.595197021961212,0.450171023607254,-0.560612738132477,0.695024847984314,0.444360017776489,-0.714160025119781,0.540850877761841,0.461659401655197,-0.657731831073761,0.595197021961212,0.0177787970751524,-0.991293430328369,0.13046595454216,0.0700248181819916,-0.992533087730408,0.0998731777071953,0.0700248181819916,-0.992533087730408,0.0998731777071953,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,0.416853666305542,-0.709351301193237,0.568378210067749,0.444360017776489,-0.714160025119781,0.540850877761841,-0.114908866584301,-0.963067054748535,-0.243511691689491,0.198796272277832,-0.571186482906342,0.796383082866669,0.416853666305542,-0.709351301193237,0.568378210067749,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,-0.786457419395447,-0.152120247483253,-0.598618507385254,0.1450454890728,-0.49036180973053,0.85936439037323,0.198796272277832,-0.571186482906342,0.796383082866669, +-0.114908866584301,-0.963067054748535,-0.243511691689491,-0.193546488881111,0.969683647155762,-0.149175480008125,0.214211598038673,-0.36577895283699,0.905714690685272,0.1450454890728,-0.49036180973053,0.85936439037323,-0.786457419395447,-0.152120247483253,-0.598618507385254,0.369951128959656,0.895375072956085,0.24787038564682,0.603093087673187,-0.0955721437931061,0.791924655437469,0.214211598038673,-0.36577895283699,0.905714690685272,-0.193546488881111,0.969683647155762,-0.149175480008125,0.702888667583466,0.073844738304615,0.707456350326538,0.603093087673187,-0.0955721437931061,0.791924655437469,0.369951128959656,0.895375072956085,0.24787038564682,0.334255218505859,0.900808334350586,0.277160137891769,0.696915030479431,0.150848433375359,0.701109290122986,0.702888667583466,0.073844738304615,0.707456350326538,0.334255218505859,0.900808334350586,0.277160137891769,0.31908592581749,0.899403631687164,0.298759669065475,0.345288544893265,0.87969571352005,0.326972752809525,0.639413595199585,0.235928192734718,0.731770575046539,0.696915030479431,0.150848433375359,0.701109290122986,0.31908592581749,0.899403631687164,0.298759669065475,0.343751341104507,0.84628164768219,0.40699166059494,0.520338833332062,0.302176594734192,0.798709452152252,0.639413595199585,0.235928192734718,0.731770575046539,0.345288544893265,0.87969571352005,0.326972752809525,0.203538671135902,0.867182433605194,0.454496145248413,0.307869166135788,0.363060057163239,0.879433870315552,0.520338833332062,0.302176594734192,0.798709452152252,0.343751341104507,0.84628164768219,0.40699166059494,0.0728881284594536,0.860819280147552,0.503664135932922,0.142265230417252,0.401025265455246,0.904952764511108,0.307869166135788,0.363060057163239,0.879433870315552,0.203538671135902,0.867182433605194,0.454496145248413,0.0103098433464766,0.82647317647934,0.562881708145142,0.0595788769423962,0.412579774856567,0.908971130847931,0.142265230417252,0.401025265455246,0.904952764511108,0.0728881284594536,0.860819280147552,0.503664135932922,-4.3436074292913e-07,0.799352884292603,0.60086190700531, +-1.23364577575558e-06,0.405415445566177,0.914132475852966,0.0595788769423962,0.412579774856567,0.908971130847931,0.0103098433464766,0.82647317647934,0.562881708145142,4.47424355343173e-07,0.53668475151062,0.843782901763916,-0.118451468646526,0.516582369804382,0.848004639148712,-0.071773074567318,0.317301362752914,0.945604801177979,6.76111312714056e-07,0.373505502939224,0.927627980709076,-0.071773074567318,0.317301362752914,0.945604801177979,-0.118451468646526,0.516582369804382,0.848004639148712,0.188545614480972,0.431141436100006,0.882364749908447,0.249449476599693,0.339983731508255,0.906744837760925,0.249449476599693,0.339983731508255,0.906744837760925,0.188545614480972,0.431141436100006,0.882364749908447,0.486899077892303,0.335813015699387,0.806324303150177,0.472561210393906,0.315939396619797,0.822720050811768,0.472561210393906,0.315939396619797,0.822720050811768,0.486899077892303,0.335813015699387,0.806324303150177,0.585523724555969,0.263874471187592,0.766506493091583,0.542253017425537,0.257057696580887,0.799926936626434,0.542253017425537,0.257057696580887,0.799926936626434,0.585523724555969,0.263874471187592,0.766506493091583,0.621779799461365,0.19699102640152,0.758013486862183,0.588205575942993,0.203771129250526,0.782618403434753,0.588205575942993,0.203771129250526,0.782618403434753,0.621779799461365,0.19699102640152,0.758013486862183,0.659780263900757,0.0826389640569687,0.746900856494904,0.623639523983002,0.151776775717735,0.766836106777191,0.623639523983002,0.151776775717735,0.766836106777191,0.659780263900757,0.0826389640569687,0.746900856494904,0.632755637168884,-0.0421929024159908,0.77320122718811,0.613233506679535,0.0911747142672539,0.784622073173523,0.588921010494232,0.0488197505474091,0.806714773178101,0.613233506679535,0.0911747142672539,0.784622073173523,0.632755637168884,-0.0421929024159908,0.77320122718811,0.549986064434052,-0.0976332649588585,0.829447448253632,0.549986064434052,-0.0976332649588585,0.829447448253632,0.43077677488327,-0.104239948093891,0.89641809463501,0.619710087776184,-0.0255411379039288,0.784415245056152, +0.588921010494232,0.0488197505474091,0.806714773178101,0.619710087776184,-0.0255411379039288,0.784415245056152,0.43077677488327,-0.104239948093891,0.89641809463501,0.393909394741058,-0.188258990645409,0.899663209915161,0.622898817062378,-0.127465426921844,0.771848142147064,0.622898817062378,-0.127465426921844,0.771848142147064,0.393909394741058,-0.188258990645409,0.899663209915161,0.292458415031433,-0.296681255102158,0.90909206867218,0.518350839614868,-0.241426378488541,0.820381343364716,0.292458415031433,-0.296681255102158,0.90909206867218,0.349055528640747,-0.261093229055405,0.899994790554047,0.414449870586395,-0.260025858879089,0.87213397026062,0.518350839614868,-0.241426378488541,0.820381343364716,0.414449870586395,-0.260025858879089,0.87213397026062,0.349055528640747,-0.261093229055405,0.899994790554047,0.560694456100464,-0.163896709680557,0.81164014339447,0.531623601913452,-0.146514281630516,0.834212183952332,0.531623601913452,-0.146514281630516,0.834212183952332,0.560694456100464,-0.163896709680557,0.81164014339447,0.703037679195404,-0.1131247356534,0.702097415924072,0.668087065219879,-0.0715607106685638,0.740633964538574,7.63165886041861e-08,-0.290879458189011,0.956759691238403,0.147238597273827,-0.299318253993988,0.942724406719208,0.118767857551575,-0.43462148308754,0.892747700214386,9.44835463201343e-08,-0.444976627826691,0.895542204380035,0.250313520431519,-0.4156254529953,0.874413311481476,0.118767857551575,-0.43462148308754,0.892747700214386,0.147238597273827,-0.299318253993988,0.942724406719208,0.271724492311478,-0.309344738721848,0.911302208900452,0.441231101751328,-0.370093107223511,0.817524373531342,0.250313520431519,-0.4156254529953,0.874413311481476,0.271724492311478,-0.309344738721848,0.911302208900452,0.419241696596146,-0.281242728233337,0.863214313983917,0.419241696596146,-0.281242728233337,0.863214313983917,0.565346777439117,-0.193536981940269,0.80182683467865,0.601977169513702,-0.283897697925568,0.746341466903687,0.441231101751328,-0.370093107223511,0.817524373531342,0.700187385082245,-0.173420861363411,0.692576825618744, +0.601977169513702,-0.283897697925568,0.746341466903687,0.565346777439117,-0.193536981940269,0.80182683467865,0.66425222158432,-0.106923833489418,0.739821791648865,0.703037679195404,-0.1131247356534,0.702097415924072,0.700187385082245,-0.173420861363411,0.692576825618744,0.66425222158432,-0.106923833489418,0.739821791648865,0.668087065219879,-0.0715607106685638,0.740633964538574,0.161506175994873,-0.13939642906189,0.976977169513702,-0.118451468646526,0.516582369804382,0.848004639148712,4.47424355343173e-07,0.53668475151062,0.843782901763916,-3.80329794325007e-07,-0.25227952003479,0.967654347419739,0.188545614480972,0.431141436100006,0.882364749908447,-0.118451468646526,0.516582369804382,0.848004639148712,0.161506175994873,-0.13939642906189,0.976977169513702,0.283784985542297,-0.100370101630688,0.953620374202728,0.486899077892303,0.335813015699387,0.806324303150177,0.188545614480972,0.431141436100006,0.882364749908447,0.283784985542297,-0.100370101630688,0.953620374202728,0.416105180978775,-0.0872008353471756,0.905125617980957,0.585523724555969,0.263874471187592,0.766506493091583,0.486899077892303,0.335813015699387,0.806324303150177,0.416105180978775,-0.0872008353471756,0.905125617980957,0.517772436141968,-0.100642681121826,0.849577963352203,0.621779799461365,0.19699102640152,0.758013486862183,0.585523724555969,0.263874471187592,0.766506493091583,0.517772436141968,-0.100642681121826,0.849577963352203,0.587399959564209,-0.149358853697777,0.795394957065582,0.659780263900757,0.0826389640569687,0.746900856494904,0.621779799461365,0.19699102640152,0.758013486862183,0.587399959564209,-0.149358853697777,0.795394957065582,0.648984372615814,-0.224779918789864,0.726837873458862,0.632755637168884,-0.0421929024159908,0.77320122718811,0.659780263900757,0.0826389640569687,0.746900856494904,0.648984372615814,-0.224779918789864,0.726837873458862,0.63982105255127,-0.326441437005997,0.695747852325439,0.549986064434052,-0.0976332649588585,0.829447448253632,0.632755637168884,-0.0421929024159908,0.77320122718811,0.63982105255127,-0.326441437005997,0.695747852325439, +0.542861461639404,-0.377595067024231,0.750148892402649,0.278689593076706,-0.323656469583511,0.904200494289398,0.43077677488327,-0.104239948093891,0.89641809463501,0.549986064434052,-0.0976332649588585,0.829447448253632,0.542861461639404,-0.377595067024231,0.750148892402649,0.393909394741058,-0.188258990645409,0.899663209915161,0.43077677488327,-0.104239948093891,0.89641809463501,0.278689593076706,-0.323656469583511,0.904200494289398,0.211436629295349,-0.330257833003998,0.919904589653015,0.292458415031433,-0.296681255102158,0.90909206867218,0.393909394741058,-0.188258990645409,0.899663209915161,0.211436629295349,-0.330257833003998,0.919904589653015,0.179459974169731,-0.331311762332916,0.926297307014465,0.457515299320221,-0.22873067855835,0.859279990196228,0.349055528640747,-0.261093229055405,0.899994790554047,0.292458415031433,-0.296681255102158,0.90909206867218,0.179459974169731,-0.331311762332916,0.926297307014465,0.560694456100464,-0.163896709680557,0.81164014339447,0.349055528640747,-0.261093229055405,0.899994790554047,0.457515299320221,-0.22873067855835,0.859279990196228,0.652515351772308,-0.172068640589714,0.737981021404266,0.703037679195404,-0.1131247356534,0.702097415924072,0.560694456100464,-0.163896709680557,0.81164014339447,0.652515351772308,-0.172068640589714,0.737981021404266,0.737166225910187,-0.154637187719345,0.657779157161713,0.718691527843475,-0.158279180526733,0.677074670791626,0.700187385082245,-0.173420861363411,0.692576825618744,0.703037679195404,-0.1131247356534,0.702097415924072,0.737166225910187,-0.154637187719345,0.657779157161713,0.620512127876282,-0.170462161302567,0.76544588804245,0.601977169513702,-0.283897697925568,0.746341466903687,0.700187385082245,-0.173420861363411,0.692576825618744,0.718691527843475,-0.158279180526733,0.677074670791626,0.441231101751328,-0.370093107223511,0.817524373531342,0.601977169513702,-0.283897697925568,0.746341466903687,0.620512127876282,-0.170462161302567,0.76544588804245,0.442881882190704,-0.176023185253143,0.879131197929382,0.242541566491127,-0.173334747552872,0.954530596733093, +0.250313520431519,-0.4156254529953,0.874413311481476,0.441231101751328,-0.370093107223511,0.817524373531342,0.442881882190704,-0.176023185253143,0.879131197929382,0.112910263240337,-0.179892241954803,0.977184772491455,0.118767857551575,-0.43462148308754,0.892747700214386,0.250313520431519,-0.4156254529953,0.874413311481476,0.242541566491127,-0.173334747552872,0.954530596733093,9.44835463201343e-08,-0.444976627826691,0.895542204380035,0.118767857551575,-0.43462148308754,0.892747700214386,0.112910263240337,-0.179892241954803,0.977184772491455,-1.530000446337e-07,-0.212198525667191,0.977226614952087,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,6.76111312714056e-07,0.373505502939224,0.927627980709076,-0.071773074567318,0.317301362752914,0.945604801177979,0.0779157355427742,0.0047886953689158,0.99694836139679,0.249449476599693,0.339983731508255,0.906744837760925,0.353732585906982,0.185769870877266,0.916713058948517,0.0779157355427742,0.0047886953689158,0.99694836139679,-0.071773074567318,0.317301362752914,0.945604801177979,0.353732585906982,0.185769870877266,0.916713058948517,0.249449476599693,0.339983731508255,0.906744837760925,0.472561210393906,0.315939396619797,0.822720050811768,0.444391846656799,0.232243061065674,0.865204691886902,0.444391846656799,0.232243061065674,0.865204691886902,0.472561210393906,0.315939396619797,0.822720050811768,0.542253017425537,0.257057696580887,0.799926936626434,0.48136180639267,0.151183158159256,0.863385498523712,0.48136180639267,0.151183158159256,0.863385498523712,0.542253017425537,0.257057696580887,0.799926936626434,0.588205575942993,0.203771129250526,0.782618403434753,0.581029832363129,0.153055608272552,0.799361109733582,0.581029832363129,0.153055608272552,0.799361109733582,0.588205575942993,0.203771129250526,0.782618403434753,0.623639523983002,0.151776775717735,0.766836106777191,0.573613166809082,0.148596376180649,0.805535316467285,0.613233506679535,0.0911747142672539,0.784622073173523,0.560299932956696,0.112414106726646,0.820626080036163,0.573613166809082,0.148596376180649,0.805535316467285, +0.623639523983002,0.151776775717735,0.766836106777191,0.588921010494232,0.0488197505474091,0.806714773178101,0.606586515903473,0.0739869028329849,0.791567265987396,0.560299932956696,0.112414106726646,0.820626080036163,0.613233506679535,0.0911747142672539,0.784622073173523,0.552811503410339,-0.270912885665894,0.788039147853851,0.414449870586395,-0.260025858879089,0.87213397026062,0.531623601913452,-0.146514281630516,0.834212183952332,0.565667927265167,-0.174161449074745,0.806031882762909,0.414449870586395,-0.260025858879089,0.87213397026062,0.552811503410339,-0.270912885665894,0.788039147853851,0.680364370346069,-0.222015723586082,0.698436319828033,0.518350839614868,-0.241426378488541,0.820381343364716,0.518350839614868,-0.241426378488541,0.820381343364716,0.680364370346069,-0.222015723586082,0.698436319828033,0.751259505748749,-0.0946976244449615,0.653178036212921,0.622898817062378,-0.127465426921844,0.771848142147064,0.622898817062378,-0.127465426921844,0.771848142147064,0.751259505748749,-0.0946976244449615,0.653178036212921,0.699317395687103,0.00647763954475522,0.714782059192657,0.619710087776184,-0.0255411379039288,0.784415245056152,0.619710087776184,-0.0255411379039288,0.784415245056152,0.699317395687103,0.00647763954475522,0.714782059192657,0.606586515903473,0.0739869028329849,0.791567265987396,0.588921010494232,0.0488197505474091,0.806714773178101,0.179853022098541,-0.0337657928466797,0.983113825321198,0.147238597273827,-0.299318253993988,0.942724406719208,7.63165886041861e-08,-0.290879458189011,0.956759691238403,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,0.314554452896118,-0.0662669613957405,0.946923553943634,0.271724492311478,-0.309344738721848,0.911302208900452,0.147238597273827,-0.299318253993988,0.942724406719208,0.179853022098541,-0.0337657928466797,0.983113825321198,0.271724492311478,-0.309344738721848,0.911302208900452,0.314554452896118,-0.0662669613957405,0.946923553943634,0.429694622755051,-0.0799226686358452,0.899430394172668,0.419241696596146,-0.281242728233337,0.863214313983917, +0.55156809091568,-0.0663661956787109,0.831485509872437,0.565346777439117,-0.193536981940269,0.80182683467865,0.419241696596146,-0.281242728233337,0.863214313983917,0.429694622755051,-0.0799226686358452,0.899430394172668,0.565346777439117,-0.193536981940269,0.80182683467865,0.55156809091568,-0.0663661956787109,0.831485509872437,0.643251955509186,-0.050787478685379,0.763968348503113,0.66425222158432,-0.106923833489418,0.739821791648865,0.658806502819061,-0.0609745047986507,0.749837398529053,0.668087065219879,-0.0715607106685638,0.740633964538574,0.66425222158432,-0.106923833489418,0.739821791648865,0.643251955509186,-0.050787478685379,0.763968348503113,0.531623601913452,-0.146514281630516,0.834212183952332,0.668087065219879,-0.0715607106685638,0.740633964538574,0.658806502819061,-0.0609745047986507,0.749837398529053,0.565667927265167,-0.174161449074745,0.806031882762909,0.167769253253937,-0.276487588882446,0.946260154247284,0.0868292823433876,-0.237600713968277,0.967474281787872,4.9137469204652e-07,-0.177478060126305,0.984124779701233,5.00773921885411e-07,-0.279569029808044,0.96012556552887,0.0868292823433876,-0.237600713968277,0.967474281787872,0.167769253253937,-0.276487588882446,0.946260154247284,0.264760106801987,-0.358458042144775,0.895215034484863,0.171102255582809,-0.241622537374496,0.955166220664978,0.171102255582809,-0.241622537374496,0.955166220664978,0.264760106801987,-0.358458042144775,0.895215034484863,0.270612746477127,-0.422039151191711,0.865246593952179,0.212696671485901,-0.165409192442894,0.963016033172607,0.353909879922867,-0.00241755158640444,0.935276448726654,0.274903774261475,-0.0619128942489624,0.959476232528687,0.32490462064743,-0.418022364377975,0.848347902297974,0.377237468957901,-0.36413711309433,0.851525783538818,0.450483679771423,0.0697160139679909,0.890058517456055,0.353909879922867,-0.00241755158640444,0.935276448726654,0.377237468957901,-0.36413711309433,0.851525783538818,0.451805233955383,-0.258582532405853,0.853819131851196,0.546013355255127,-0.156816154718399,0.822969079017639,0.569105446338654,0.102337956428528,0.815871298313141, +0.450483679771423,0.0697160139679909,0.890058517456055,0.451805233955383,-0.258582532405853,0.853819131851196,0.546013355255127,-0.156816154718399,0.822969079017639,0.668119072914124,-0.078662782907486,0.739884495735168,0.722112476825714,0.0751197412610054,0.687684893608093,0.569105446338654,0.102337956428528,0.815871298313141,0.864901006221771,0.0519208051264286,0.499249815940857,0.722112476825714,0.0751197412610054,0.687684893608093,0.668119072914124,-0.078662782907486,0.739884495735168,0.804570019245148,-0.0346855819225311,0.592843890190125,0.914319574832916,0.0844556987285614,0.39608958363533,0.906421720981598,0.0424889847636223,0.420231252908707,0.865444779396057,0.0103214215487242,0.500897884368896,0.88187563419342,0.0824778228998184,0.464212000370026,0.935607671737671,0.127907514572144,0.329056054353714,0.923866987228394,0.119930803775787,0.363437175750732,0.889109969139099,0.168669983744621,0.425480663776398,0.906198561191559,0.170440301299095,0.386980891227722,0.906198561191559,0.170440301299095,0.386980891227722,0.906984090805054,0.066459633409977,0.415888011455536,0.937009036540985,0.0365108624100685,0.347391545772552,0.935607671737671,0.127907514572144,0.329056054353714,0.822252213954926,-0.0876014456152916,0.562340915203094,0.902409493923187,-0.047013234347105,0.428307056427002,0.863092243671417,-0.040555365383625,0.50341534614563,0.784411549568176,-0.0817646682262421,0.614827632904053,0.628640949726105,-0.0453776307404041,0.776370704174042,0.723528265953064,-0.0745095536112785,0.686261653900146,0.694853246212006,-0.0758795365691185,0.715137243270874,0.582253575325012,-0.0373691320419312,0.812147974967957,0.422675728797913,0.0540579818189144,0.904667377471924,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.475327998399734,0.0613102093338966,0.877669811248779,0.375233739614487,0.190444394946098,0.907155156135559,0.342850595712662,0.149466872215271,0.927422881126404,0.297811090946198,0.113282963633537,0.947879493236542,0.282756716012955,0.29180508852005,0.913727760314941,0.327629417181015,0.327735424041748,0.886142432689667, +0.575288236141205,0.238595768809319,0.782378077507019,0.342850595712662,0.149466872215271,0.927422881126404,0.327629417181015,0.327735424041748,0.886142432689667,0.537453949451447,0.309819549322128,0.784318149089813,0.759655237197876,0.268870264291763,0.592142403125763,0.575288236141205,0.238595768809319,0.782378077507019,0.537453949451447,0.309819549322128,0.784318149089813,0.724071383476257,0.254366815090179,0.641106963157654,0.704671382904053,0.35111403465271,0.616568863391876,0.759655237197876,0.268870264291763,0.592142403125763,0.724071383476257,0.254366815090179,0.641106963157654,0.631399214267731,0.364274352788925,0.684572279453278,-4.39817654296348e-07,0.573391735553741,0.819281220436096,-3.07718238445887e-07,0.537297904491425,0.843392491340637,0.704671382904053,0.35111403465271,0.616568863391876,0.631399214267731,0.364274352788925,0.684572279453278,5.00773921885411e-07,-0.279569029808044,0.96012556552887,4.89641479362035e-07,0.148217856884003,0.988954782485962,0.272893875837326,0.0898328572511673,0.957840800285339,0.167769253253937,-0.276487588882446,0.946260154247284,0.167769253253937,-0.276487588882446,0.946260154247284,0.272893875837326,0.0898328572511673,0.957840800285339,0.44531324505806,-0.0220793299376965,0.895102560520172,0.264760106801987,-0.358458042144775,0.895215034484863,0.865444779396057,0.0103214215487242,0.500897884368896,0.906421720981598,0.0424889847636223,0.420231252908707,0.864901006221771,0.0519208051264286,0.499249815940857,0.804570019245148,-0.0346855819225311,0.592843890190125,0.889109969139099,0.168669983744621,0.425480663776398,0.923866987228394,0.119930803775787,0.363437175750732,0.914319574832916,0.0844556987285614,0.39608958363533,0.88187563419342,0.0824778228998184,0.464212000370026,0.937009036540985,0.0365108624100685,0.347391545772552,0.906984090805054,0.066459633409977,0.415888011455536,0.863092243671417,-0.040555365383625,0.50341534614563,0.902409493923187,-0.047013234347105,0.428307056427002,0.694853246212006,-0.0758795365691185,0.715137243270874,0.723528265953064,-0.0745095536112785,0.686261653900146, +0.822252213954926,-0.0876014456152916,0.562340915203094,0.784411549568176,-0.0817646682262421,0.614827632904053,0.475327998399734,0.0613102093338966,0.877669811248779,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.628640949726105,-0.0453776307404041,0.776370704174042,0.582253575325012,-0.0373691320419312,0.812147974967957,0.282756716012955,0.29180508852005,0.913727760314941,0.297811090946198,0.113282963633537,0.947879493236542,0.422675728797913,0.0540579818189144,0.904667377471924,0.375233739614487,0.190444394946098,0.907155156135559,0.448747307062149,0.331291794776917,0.829982876777649,3.14968986003805e-07,0.497228413820267,0.867619633674622,-4.39817654296348e-07,0.573391735553741,0.819281220436096,0.631399214267731,0.364274352788925,0.684572279453278,0.631399214267731,0.364274352788925,0.684572279453278,0.724071383476257,0.254366815090179,0.641106963157654,0.654486119747162,0.191098988056183,0.731525182723999,0.448747307062149,0.331291794776917,0.829982876777649,0.272893875837326,0.0898328572511673,0.957840800285339,4.89641479362035e-07,0.148217856884003,0.988954782485962,3.14968986003805e-07,0.497228413820267,0.867619633674622,0.448747307062149,0.331291794776917,0.829982876777649,0.654486119747162,0.191098988056183,0.731525182723999,0.44531324505806,-0.0220793299376965,0.895102560520172,0.272893875837326,0.0898328572511673,0.957840800285339,0.448747307062149,0.331291794776917,0.829982876777649,0.32490462064743,-0.418022364377975,0.848347902297974,0.274903774261475,-0.0619128942489624,0.959476232528687,0.212696671485901,-0.165409192442894,0.963016033172607,0.270612746477127,-0.422039151191711,0.865246593952179,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,5.75957983528497e-08,-0.917891561985016,0.396831274032593,0.114588350057602,-0.912775337696075,0.392059504985809,0.149707362055779,-0.694378197193146,0.703865468502045,0.634809195995331,-0.558387041091919,0.534061014652252,0.508506715297699,-0.815533101558685,0.276272922754288,0.603131353855133,-0.763180196285248,0.231923550367355,0.739822447299957,-0.494534075260162,0.45617863535881, +0.75903993844986,-0.468803286552429,0.451754212379456,0.634543776512146,-0.742676556110382,0.213975921273232,0.641319572925568,-0.740115821361542,0.20233079791069,0.750535011291504,-0.466074794530869,0.4684779047966,0.78462290763855,-0.433153241872787,0.443559587001801,0.683599233627319,-0.708920001983643,0.173564046621323,0.732529401779175,-0.666742026805878,0.137316301465034,0.833478033542633,-0.379800826311111,0.401329815387726,0.879793643951416,-0.306445717811584,0.363392621278763,0.773152410984039,-0.626932680606842,0.0958684459328651,0.823865830898285,-0.564590632915497,0.0498245023190975,0.911567687988281,-0.228366628289223,0.341896325349808,0.930331110954285,-0.186108112335205,0.315986633300781,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.93603527545929,-0.181322798132896,0.301595836877823,0.958406686782837,-0.153457835316658,0.240639463067055,0.920947551727295,-0.351148158311844,-0.168968588113785,0.938031852245331,-0.247648492455482,-0.242418184876442,0.984486639499664,-0.103614754974842,0.141597986221313,0.833478033542633,-0.379800826311111,0.401329815387726,0.732529401779175,-0.666742026805878,0.137316301465034,0.773152410984039,-0.626932680606842,0.0958684459328651,0.879793643951416,-0.306445717811584,0.363392621278763,0.939025521278381,-0.179977178573608,0.292983204126358,0.888480961322784,-0.454339295625687,-0.064633846282959,0.920947551727295,-0.351148158311844,-0.168968588113785,0.958406686782837,-0.153457835316658,0.240639463067055,0.0893126279115677,-0.993775486946106,0.066584125161171,0.114588350057602,-0.912775337696075,0.392059504985809,5.75957983528497e-08,-0.917891561985016,0.396831274032593,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,0.362132221460342,-0.931851267814636,0.0226623974740505,0.603131353855133,-0.763180196285248,0.231923550367355,0.508506715297699,-0.815533101558685,0.276272922754288,0.298353463411331,-0.954143464565277,0.0243995748460293,0.489590495824814,-0.871388077735901,0.0313687920570374, +0.641319572925568,-0.740115821361542,0.20233079791069,0.634543776512146,-0.742676556110382,0.213975921273232,0.424411624670029,-0.905128479003906,0.0248428620398045,0.732529401779175,-0.666742026805878,0.137316301465034,0.683599233627319,-0.708920001983643,0.173564046621323,0.560462832450867,-0.828098118305206,0.0116214090958238,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.773152410984039,-0.626932680606842,0.0958684459328651,0.732529401779175,-0.666742026805878,0.137316301465034,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.677948117256165,-0.71640682220459,-0.164764940738678,0.823865830898285,-0.564590632915497,0.0498245023190975,0.773152410984039,-0.626932680606842,0.0958684459328651,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.745865523815155,-0.66082090139389,-0.0836689472198486,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.700287818908691,-0.696540117263794,-0.156297460198402,0.920947551727295,-0.351148158311844,-0.168968588113785,0.888480961322784,-0.454339295625687,-0.064633846282959,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.938031852245331,-0.247648492455482,-0.242418184876442,0.920947551727295,-0.351148158311844,-0.168968588113785,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.936773419380188,0.209211736917496,-0.280510157346725,0.982687652111053,0.148474961519241,-0.110816136002541,0.985133230686188,-0.123099699616432,0.119829945266247,0.805711448192596,0.292258203029633,0.515183746814728,0.845844030380249,0.0282919183373451,0.532679498195648,0.946663558483124,-0.0758194178342819,0.313176423311234,0.96488744020462,0.141046658158302,0.221580728888512,0.845844030380249,0.0282919183373451,0.532679498195648,0.805711448192596,0.292258203029633,0.515183746814728, +0.715191185474396,0.34563997387886,0.607482135295868,0.737070381641388,0.114106610417366,0.666113376617432,0.737070381641388,0.114106610417366,0.666113376617432,0.715191185474396,0.34563997387886,0.607482135295868,0.654905915260315,0.354517191648483,0.667394876480103,0.671664416790009,0.138539895415306,0.727786839008331,0.427030682563782,0.423026651144028,0.799182832241058,0.440599530935287,0.18112014234066,0.879242599010468,0.671664416790009,0.138539895415306,0.727786839008331,0.654905915260315,0.354517191648483,0.667394876480103,0.936773419380188,0.209211736917496,-0.280510157346725,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.959196865558624,0.117164917290211,0.257320284843445,0.891604006290436,0.423940151929855,0.159113571047783,0.959196865558624,0.117164917290211,0.257320284843445,0.675791025161743,0.246512725949287,0.694649577140808,0.430175453424454,0.17557030916214,0.885507822036743,0.891604006290436,0.423940151929855,0.159113571047783,0.485416024923325,0.00731630343943834,0.874252736568451,0.445871531963348,0.0744199678301811,0.891997873783112,0.573613166809082,0.148596376180649,0.805535316467285,0.560299932956696,0.112414106726646,0.820626080036163,0.595667898654938,-0.0288832504302263,0.802711367607117,0.485416024923325,0.00731630343943834,0.874252736568451,0.560299932956696,0.112414106726646,0.820626080036163,0.606586515903473,0.0739869028329849,0.791567265987396,0.728366792201996,-0.0401403270661831,0.684010624885559,0.595667898654938,-0.0288832504302263,0.802711367607117,0.606586515903473,0.0739869028329849,0.791567265987396,0.699317395687103,0.00647763954475522,0.714782059192657,0.809467434883118,-0.120740197598934,0.574616611003876,0.728366792201996,-0.0401403270661831,0.684010624885559,0.699317395687103,0.00647763954475522,0.714782059192657,0.751259505748749,-0.0946976244449615,0.653178036212921,0.809467434883118,-0.120740197598934,0.574616611003876,0.751259505748749,-0.0946976244449615,0.653178036212921,0.680364370346069,-0.222015723586082,0.698436319828033,0.774750411510468,-0.225245609879494,0.590784311294556, +0.774750411510468,-0.225245609879494,0.590784311294556,0.680364370346069,-0.222015723586082,0.698436319828033,0.552811503410339,-0.270912885665894,0.788039147853851,0.686697602272034,-0.282533258199692,0.669791877269745,0.686697602272034,-0.282533258199692,0.669791877269745,0.552811503410339,-0.270912885665894,0.788039147853851,0.565667927265167,-0.174161449074745,0.806031882762909,0.656148910522461,-0.210049197077751,0.724808871746063,0.656148910522461,-0.210049197077751,0.724808871746063,0.565667927265167,-0.174161449074745,0.806031882762909,0.658806502819061,-0.0609745047986507,0.749837398529053,0.695716381072998,-0.086280569434166,0.713115930557251,0.695716381072998,-0.086280569434166,0.713115930557251,0.658806502819061,-0.0609745047986507,0.749837398529053,0.643251955509186,-0.050787478685379,0.763968348503113,0.66613382101059,-0.0218829568475485,0.745511174201965,0.66613382101059,-0.0218829568475485,0.745511174201965,0.643251955509186,-0.050787478685379,0.763968348503113,0.55156809091568,-0.0663661956787109,0.831485509872437,0.574376583099365,0.0246292874217033,0.818220555782318,0.574376583099365,0.0246292874217033,0.818220555782318,0.55156809091568,-0.0663661956787109,0.831485509872437,0.429694622755051,-0.0799226686358452,0.899430394172668,0.461474180221558,0.0598365068435669,0.885133445262909,0.461474180221558,0.0598365068435669,0.885133445262909,0.429694622755051,-0.0799226686358452,0.899430394172668,0.314554452896118,-0.0662669613957405,0.946923553943634,0.344552159309387,0.08065065741539,0.935296416282654,0.344552159309387,0.08065065741539,0.935296416282654,0.314554452896118,-0.0662669613957405,0.946923553943634,0.179853022098541,-0.0337657928466797,0.983113825321198,0.188998714089394,0.0825605019927025,0.978500485420227,0.188998714089394,0.0825605019927025,0.978500485420227,0.179853022098541,-0.0337657928466797,0.983113825321198,-1.28461969950422e-08,-0.0263626128435135,0.999652504920959,-2.20459881461466e-07,0.0764520391821861,0.997073292732239,0.875134229660034,-0.0694368183612823,0.478872209787369, +0.927510797977448,-0.340489387512207,0.154242485761642,0.688236832618713,-0.710206925868988,0.148108795285225,0.777086198329926,-0.239047184586525,0.582231462001801,0.927510797977448,-0.340489387512207,0.154242485761642,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.612375855445862,-0.789205431938171,0.0463740564882755,0.688236832618713,-0.710206925868988,0.148108795285225,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.850436449050903,-0.49777415394783,-0.170230999588966,0.590460956096649,-0.803650557994843,0.0741726160049438,0.612375855445862,-0.789205431938171,0.0463740564882755,0.850436449050903,-0.49777415394783,-0.170230999588966,0.74780684709549,-0.60307514667511,-0.277642726898193,0.628254175186157,-0.761968374252319,0.157165363430977,0.590460956096649,-0.803650557994843,0.0741726160049438,0.74780684709549,-0.60307514667511,-0.277642726898193,0.427040368318558,-0.824204504489899,-0.371918737888336,0.60682213306427,-0.772793889045715,0.185893401503563,0.628254175186157,-0.761968374252319,0.157165363430977,0.427040368318558,-0.824204504489899,-0.371918737888336,0.102685742080212,-0.954509735107422,-0.279940962791443,0.455358922481537,-0.869095683097839,0.193186178803444,0.60682213306427,-0.772793889045715,0.185893401503563,0.102685742080212,-0.954509735107422,-0.279940962791443,-0.093781977891922,-0.994987845420837,-0.0347020253539085,0.290745735168457,-0.916568696498871,0.274533659219742,0.455358922481537,-0.869095683097839,0.193186178803444,-0.093781977891922,-0.994987845420837,-0.0347020253539085,-0.0773351490497589,-0.989174664020538,0.124710224568844,0.20660699903965,-0.925181925296783,0.318358093500137,0.290745735168457,-0.916568696498871,0.274533659219742,-0.0773351490497589,-0.989174664020538,0.124710224568844,-0.146455511450768,-0.95370215177536,0.26268407702446,0.119040384888649,-0.926869869232178,0.356008052825928,0.20660699903965,-0.925181925296783,0.318358093500137,-0.327705591917038,-0.778845310211182,0.534798204898834,-0.163373842835426,-0.490520238876343,0.855978310108185, +-0.0583271123468876,-0.42276069521904,0.904362440109253,-0.163064643740654,-0.776256620883942,0.608962655067444,0.622528374195099,0.171264365315437,0.763627588748932,0.875134229660034,-0.0694368183612823,0.478872209787369,0.777086198329926,-0.239047184586525,0.582231462001801,0.580475926399231,0.190929397940636,0.791576683521271,0.580475926399231,0.190929397940636,0.791576683521271,0.37968310713768,0.180394127964973,0.907358169555664,0.35932657122612,0.0683242455124855,0.930707454681396,0.622528374195099,0.171264365315437,0.763627588748932,0.37968310713768,0.180394127964973,0.907358169555664,-0.0583271123468876,-0.42276069521904,0.904362440109253,-0.163373842835426,-0.490520238876343,0.855978310108185,0.35932657122612,0.0683242455124855,0.930707454681396,0.984726369380951,-0.138775065541267,0.105145215988159,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.927510797977448,-0.340489387512207,0.154242485761642,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.850677847862244,-0.436320781707764,-0.293209046125412,0.850436449050903,-0.49777415394783,-0.170230999588966,0.913874328136444,-0.405476242303848,-0.0205596126616001,0.850677847862244,-0.436320781707764,-0.293209046125412,0.725718796253204,-0.558084905147552,-0.402335107326508,0.74780684709549,-0.60307514667511,-0.277642726898193,0.850436449050903,-0.49777415394783,-0.170230999588966,0.725718796253204,-0.558084905147552,-0.402335107326508,0.417807519435883,-0.77439957857132,-0.475123256444931,0.427040368318558,-0.824204504489899,-0.371918737888336,0.74780684709549,-0.60307514667511,-0.277642726898193,0.417807519435883,-0.77439957857132,-0.475123256444931,0.0116367666050792,-0.906590223312378,-0.421851634979248,0.102685742080212,-0.954509735107422,-0.279940962791443,0.427040368318558,-0.824204504489899,-0.371918737888336,0.0116367666050792,-0.906590223312378,-0.421851634979248,-0.333319246768951,-0.913330435752869,-0.233935564756393,-0.093781977891922,-0.994987845420837,-0.0347020253539085, +0.102685742080212,-0.954509735107422,-0.279940962791443,-0.333319246768951,-0.913330435752869,-0.233935564756393,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.0773351490497589,-0.989174664020538,0.124710224568844,-0.093781977891922,-0.994987845420837,-0.0347020253539085,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.146455511450768,-0.95370215177536,0.26268407702446,-0.0773351490497589,-0.989174664020538,0.124710224568844,-0.414653658866882,-0.77838122844696,0.471365094184875,-0.144471272826195,-0.614518642425537,0.775560975074768,-0.163373842835426,-0.490520238876343,0.855978310108185,-0.327705591917038,-0.778845310211182,0.534798204898834,0.35932657122612,0.0683242455124855,0.930707454681396,-0.163373842835426,-0.490520238876343,0.855978310108185,-0.144471272826195,-0.614518642425537,0.775560975074768,0.412471860647202,-0.275771468877792,0.868226408958435,0.622528374195099,0.171264365315437,0.763627588748932,0.35932657122612,0.0683242455124855,0.930707454681396,0.412471860647202,-0.275771468877792,0.868226408958435,0.718403398990631,-0.0559571795165539,0.693372488021851,0.718403398990631,-0.0559571795165539,0.693372488021851,0.91557765007019,-0.0274116899818182,0.401205897331238,0.875134229660034,-0.0694368183612823,0.478872209787369,0.622528374195099,0.171264365315437,0.763627588748932,0.91557765007019,-0.0274116899818182,0.401205897331238,0.984726369380951,-0.138775065541267,0.105145215988159,0.927510797977448,-0.340489387512207,0.154242485761642,0.875134229660034,-0.0694368183612823,0.478872209787369,0.580475926399231,0.190929397940636,0.791576683521271,0.777086198329926,-0.239047184586525,0.582231462001801,0.585407078266144,-0.368175864219666,0.72231924533844,0.514495313167572,0.138729900121689,0.84619665145874,0.514495313167572,0.138729900121689,0.84619665145874,0.354051679372787,0.0453287661075592,0.934126675128937,0.37968310713768,0.180394127964973,0.907358169555664,0.580475926399231,0.190929397940636,0.791576683521271,0.0767992734909058,-0.458664745092392,0.88528436422348, +-0.0583271123468876,-0.42276069521904,0.904362440109253,0.37968310713768,0.180394127964973,0.907358169555664,0.354051679372787,0.0453287661075592,0.934126675128937,-0.163064643740654,-0.776256620883942,0.608962655067444,-0.0583271123468876,-0.42276069521904,0.904362440109253,0.0767992734909058,-0.458664745092392,0.88528436422348,0.119363464415073,-0.78466010093689,0.608326315879822,0.20660699903965,-0.925181925296783,0.318358093500137,0.119040384888649,-0.926869869232178,0.356008052825928,0.409424066543579,-0.816124379634857,0.407814919948578,0.43576592206955,-0.790265262126923,0.430800437927246,0.290745735168457,-0.916568696498871,0.274533659219742,0.20660699903965,-0.925181925296783,0.318358093500137,0.43576592206955,-0.790265262126923,0.430800437927246,0.490964144468307,-0.740018129348755,0.459703654050827,0.455358922481537,-0.869095683097839,0.193186178803444,0.290745735168457,-0.916568696498871,0.274533659219742,0.490964144468307,-0.740018129348755,0.459703654050827,0.598784744739532,-0.646725416183472,0.472443729639053,0.60682213306427,-0.772793889045715,0.185893401503563,0.455358922481537,-0.869095683097839,0.193186178803444,0.598784744739532,-0.646725416183472,0.472443729639053,0.522891402244568,-0.60482931137085,0.600638091564178,0.628254175186157,-0.761968374252319,0.157165363430977,0.60682213306427,-0.772793889045715,0.185893401503563,0.522891402244568,-0.60482931137085,0.600638091564178,0.341883778572083,-0.734208166599274,0.586560904979706,0.590460956096649,-0.803650557994843,0.0741726160049438,0.628254175186157,-0.761968374252319,0.157165363430977,0.341883778572083,-0.734208166599274,0.586560904979706,0.236640840768814,-0.924676120281219,0.298287391662598,0.612375855445862,-0.789205431938171,0.0463740564882755,0.590460956096649,-0.803650557994843,0.0741726160049438,0.236640840768814,-0.924676120281219,0.298287391662598,0.261747181415558,-0.960836589336395,0.0910022258758545,0.688236832618713,-0.710206925868988,0.148108795285225,0.612375855445862,-0.789205431938171,0.0463740564882755,0.261747181415558,-0.960836589336395,0.0910022258758545, +0.37528383731842,-0.912664949893951,0.161879166960716,0.777086198329926,-0.239047184586525,0.582231462001801,0.688236832618713,-0.710206925868988,0.148108795285225,0.37528383731842,-0.912664949893951,0.161879166960716,0.585407078266144,-0.368175864219666,0.72231924533844,0.661726534366608,-0.164393022656441,0.731500446796417,0.433876276016235,-0.198224097490311,0.878896176815033,0.43048819899559,-0.478489816188812,0.765328288078308,0.646702706813812,-0.405708491802216,0.645891785621643,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,0.43048819899559,-0.478489816188812,0.765328288078308,0.433876276016235,-0.198224097490311,0.878896176815033,-1.02184486650003e-07,-0.267218768596649,0.963635861873627,1.21897315352726e-07,-0.995536208152771,0.0943798571825027,0.261747181415558,-0.960836589336395,0.0910022258758545,0.236640840768814,-0.924676120281219,0.298287391662598,1.51484229604648e-07,-0.925182104110718,0.379523366689682,0.261747181415558,-0.960836589336395,0.0910022258758545,1.21897315352726e-07,-0.995536208152771,0.0943798571825027,4.73723360983058e-07,-0.98859578371048,0.150593131780624,0.37528383731842,-0.912664949893951,0.161879166960716,0.37528383731842,-0.912664949893951,0.161879166960716,4.73723360983058e-07,-0.98859578371048,0.150593131780624,1.41866473768459e-06,-0.879385590553284,0.476110249757767,0.29126363992691,-0.854885935783386,0.429343044757843,0.354051679372787,0.0453287661075592,0.934126675128937,0.514495313167572,0.138729900121689,0.84619665145874,0.353732585906982,0.185769870877266,0.916713058948517,0.444391846656799,0.232243061065674,0.865204691886902,0.0779157355427742,0.0047886953689158,0.99694836139679,0.353732585906982,0.185769870877266,0.916713058948517,0.514495313167572,0.138729900121689,0.84619665145874,0.585407078266144,-0.368175864219666,0.72231924533844,0.29126363992691,-0.854885935783386,0.429343044757843,1.41866473768459e-06,-0.879385590553284,0.476110249757767,8.73451085681154e-07,-0.0806486308574677,0.99674254655838,0.0779157355427742,0.0047886953689158,0.99694836139679, +0.0779157355427742,0.0047886953689158,0.99694836139679,0.585407078266144,-0.368175864219666,0.72231924533844,0.37528383731842,-0.912664949893951,0.161879166960716,0.29126363992691,-0.854885935783386,0.429343044757843,0.522891402244568,-0.60482931137085,0.600638091564178,0.43048819899559,-0.478489816188812,0.765328288078308,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,0.341883778572083,-0.734208166599274,0.586560904979706,0.646702706813812,-0.405708491802216,0.645891785621643,0.43048819899559,-0.478489816188812,0.765328288078308,0.522891402244568,-0.60482931137085,0.600638091564178,0.598784744739532,-0.646725416183472,0.472443729639053,0.341883778572083,-0.734208166599274,0.586560904979706,-1.47804044559052e-07,-0.645715236663818,0.763578236103058,1.51484229604648e-07,-0.925182104110718,0.379523366689682,0.236640840768814,-0.924676120281219,0.298287391662598,0.671664416790009,0.138539895415306,0.727786839008331,0.440599530935287,0.18112014234066,0.879242599010468,0.433876276016235,-0.198224097490311,0.878896176815033,0.661726534366608,-0.164393022656441,0.731500446796417,-1.02184486650003e-07,-0.267218768596649,0.963635861873627,0.433876276016235,-0.198224097490311,0.878896176815033,0.440599530935287,0.18112014234066,0.879242599010468,-4.4512784569406e-08,0.194622755050659,0.980878174304962,0.661726534366608,-0.164393022656441,0.731500446796417,0.694607734680176,-0.274156808853149,0.66510021686554,0.737070381641388,0.114106610417366,0.666113376617432,0.671664416790009,0.138539895415306,0.727786839008331,0.646702706813812,-0.405708491802216,0.645891785621643,0.623622715473175,-0.512402594089508,0.590371370315552,0.694607734680176,-0.274156808853149,0.66510021686554,0.661726534366608,-0.164393022656441,0.731500446796417,0.598784744739532,-0.646725416183472,0.472443729639053,0.490964144468307,-0.740018129348755,0.459703654050827,0.623622715473175,-0.512402594089508,0.590371370315552,0.646702706813812,-0.405708491802216,0.645891785621643,0.490964144468307,-0.740018129348755,0.459703654050827,0.43576592206955,-0.790265262126923,0.430800437927246, +0.633802711963654,-0.588700532913208,0.501722812652588,0.623622715473175,-0.512402594089508,0.590371370315552,0.623622715473175,-0.512402594089508,0.590371370315552,0.633802711963654,-0.588700532913208,0.501722812652588,0.769342362880707,-0.367450356483459,0.522582530975342,0.694607734680176,-0.274156808853149,0.66510021686554,0.694607734680176,-0.274156808853149,0.66510021686554,0.769342362880707,-0.367450356483459,0.522582530975342,0.845844030380249,0.0282919183373451,0.532679498195648,0.737070381641388,0.114106610417366,0.666113376617432,-0.270437955856323,-0.90808367729187,0.319761455059052,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.414653658866882,-0.77838122844696,0.471365094184875,-0.327705591917038,-0.778845310211182,0.534798204898834,0.0116014555096626,-0.911236226558685,0.41172069311142,-0.270437955856323,-0.90808367729187,0.319761455059052,-0.327705591917038,-0.778845310211182,0.534798204898834,-0.163064643740654,-0.776256620883942,0.608962655067444,0.353555947542191,-0.819660186767578,0.450727581977844,0.0116014555096626,-0.911236226558685,0.41172069311142,-0.163064643740654,-0.776256620883942,0.608962655067444,0.119363464415073,-0.78466010093689,0.608326315879822,0.43576592206955,-0.790265262126923,0.430800437927246,0.409424066543579,-0.816124379634857,0.407814919948578,0.669928908348083,-0.61884069442749,0.410160273313522,0.633802711963654,-0.588700532913208,0.501722812652588,0.633802711963654,-0.588700532913208,0.501722812652588,0.669928908348083,-0.61884069442749,0.410160273313522,0.830590486526489,-0.410075843334198,0.37677213549614,0.769342362880707,-0.367450356483459,0.522582530975342,0.769342362880707,-0.367450356483459,0.522582530975342,0.830590486526489,-0.410075843334198,0.37677213549614,0.946663558483124,-0.0758194178342819,0.313176423311234,0.845844030380249,0.0282919183373451,0.532679498195648,0.651707649230957,-0.634582698345184,0.41542986035347,0.353555947542191,-0.819660186767578,0.450727581977844,0.119363464415073,-0.78466010093689,0.608326315879822,0.51049530506134,-0.677704572677612,0.529255270957947, +0.852545559406281,-0.416287839412689,0.316022753715515,0.651707649230957,-0.634582698345184,0.41542986035347,0.51049530506134,-0.677704572677612,0.529255270957947,0.853867530822754,-0.395726025104523,0.338099449872971,0.985133230686188,-0.123099699616432,0.119829945266247,0.852545559406281,-0.416287839412689,0.316022753715515,0.853867530822754,-0.395726025104523,0.338099449872971,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.0767992734909058,-0.458664745092392,0.88528436422348,0.306425333023071,-0.565001308917999,0.766079008579254,0.51049530506134,-0.677704572677612,0.529255270957947,0.119363464415073,-0.78466010093689,0.608326315879822,0.306425333023071,-0.565001308917999,0.766079008579254,0.765478253364563,-0.352242708206177,0.538486957550049,0.853867530822754,-0.395726025104523,0.338099449872971,0.51049530506134,-0.677704572677612,0.529255270957947,0.999851524829865,-0.0172127522528172,0.000721668882761151,0.853867530822754,-0.395726025104523,0.338099449872971,0.765478253364563,-0.352242708206177,0.538486957550049,0.959196865558624,0.117164917290211,0.257320284843445,0.354051679372787,0.0453287661075592,0.934126675128937,0.395902693271637,-0.106055751442909,0.912147641181946,0.306425333023071,-0.565001308917999,0.766079008579254,0.0767992734909058,-0.458664745092392,0.88528436422348,0.395902693271637,-0.106055751442909,0.912147641181946,0.354051679372787,0.0453287661075592,0.934126675128937,0.444391846656799,0.232243061065674,0.865204691886902,0.48136180639267,0.151183158159256,0.863385498523712,0.765478253364563,-0.352242708206177,0.538486957550049,0.306425333023071,-0.565001308917999,0.766079008579254,0.395902693271637,-0.106055751442909,0.912147641181946,0.646521508693695,0.0286233704537153,0.762358546257019,0.430175453424454,0.17557030916214,0.885507822036743,0.675791025161743,0.246512725949287,0.694649577140808,0.573613166809082,0.148596376180649,0.805535316467285,0.445871531963348,0.0744199678301811,0.891997873783112,0.959196865558624,0.117164917290211,0.257320284843445,0.765478253364563,-0.352242708206177,0.538486957550049, +0.646521508693695,0.0286233704537153,0.762358546257019,0.675791025161743,0.246512725949287,0.694649577140808,0.646521508693695,0.0286233704537153,0.762358546257019,0.395902693271637,-0.106055751442909,0.912147641181946,0.48136180639267,0.151183158159256,0.863385498523712,0.581029832363129,0.153055608272552,0.799361109733582,0.581029832363129,0.153055608272552,0.799361109733582,0.573613166809082,0.148596376180649,0.805535316467285,0.675791025161743,0.246512725949287,0.694649577140808,0.646521508693695,0.0286233704537153,0.762358546257019,0.985133230686188,-0.123099699616432,0.119829945266247,0.982687652111053,0.148474961519241,-0.110816136002541,0.96488744020462,0.141046658158302,0.221580728888512,0.946663558483124,-0.0758194178342819,0.313176423311234,0.830590486526489,-0.410075843334198,0.37677213549614,0.852545559406281,-0.416287839412689,0.316022753715515,0.985133230686188,-0.123099699616432,0.119829945266247,0.946663558483124,-0.0758194178342819,0.313176423311234,0.669928908348083,-0.61884069442749,0.410160273313522,0.651707649230957,-0.634582698345184,0.41542986035347,0.852545559406281,-0.416287839412689,0.316022753715515,0.830590486526489,-0.410075843334198,0.37677213549614,0.409424066543579,-0.816124379634857,0.407814919948578,0.353555947542191,-0.819660186767578,0.450727581977844,0.651707649230957,-0.634582698345184,0.41542986035347,0.669928908348083,-0.61884069442749,0.410160273313522,0.409424066543579,-0.816124379634857,0.407814919948578,0.119040384888649,-0.926869869232178,0.356008052825928,0.0116014555096626,-0.911236226558685,0.41172069311142,0.353555947542191,-0.819660186767578,0.450727581977844,0.119040384888649,-0.926869869232178,0.356008052825928,-0.146455511450768,-0.95370215177536,0.26268407702446,-0.270437955856323,-0.90808367729187,0.319761455059052,0.0116014555096626,-0.911236226558685,0.41172069311142,-0.146455511450768,-0.95370215177536,0.26268407702446,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.270437955856323,-0.90808367729187,0.319761455059052, +-3.07718238445887e-07,0.537297904491425,0.843392491340637,1.07731224829877e-07,0.511693179607391,0.859168291091919,0.722416758537292,0.37959811091423,0.577943980693817,0.704671382904053,0.35111403465271,0.616568863391876,0.704671382904053,0.35111403465271,0.616568863391876,0.722416758537292,0.37959811091423,0.577943980693817,0.825799107551575,0.314353972673416,0.468227863311768,0.759655237197876,0.268870264291763,0.592142403125763,0.759655237197876,0.268870264291763,0.592142403125763,0.825799107551575,0.314353972673416,0.468227863311768,0.708128273487091,0.243512466549873,0.662764012813568,0.575288236141205,0.238595768809319,0.782378077507019,0.537846744060516,0.52482008934021,0.659761130809784,6.63047643456594e-08,0.56467217206955,0.825315177440643,2.69245763462322e-08,0.599188029766083,0.800608277320862,0.436625868082047,0.575780928134918,0.691255569458008,0.746444165706635,0.517271220684052,0.418630808591843,0.537846744060516,0.52482008934021,0.659761130809784,0.436625868082047,0.575780928134918,0.691255569458008,0.679213106632233,0.566016435623169,0.467220544815063,0.770220816135406,0.564943134784698,0.295971602201462,0.746444165706635,0.517271220684052,0.418630808591843,0.679213106632233,0.566016435623169,0.467220544815063,0.68751060962677,0.627668857574463,0.365186214447021,0.609346985816956,0.46362692117691,0.643231153488159,1.66158670822369e-07,0.537752687931061,0.843102693557739,6.63047643456594e-08,0.56467217206955,0.825315177440643,0.537846744060516,0.52482008934021,0.659761130809784,0.809419810771942,0.419161260128021,0.411270409822464,0.609346985816956,0.46362692117691,0.643231153488159,0.537846744060516,0.52482008934021,0.659761130809784,0.746444165706635,0.517271220684052,0.418630808591843,0.838650524616241,0.449791878461838,0.307168394327164,0.809419810771942,0.419161260128021,0.411270409822464,0.746444165706635,0.517271220684052,0.418630808591843,0.770220816135406,0.564943134784698,0.295971602201462,0.674133837223053,0.417697876691818,0.609156847000122,2.19163851511439e-07,0.528520941734314,0.848920106887817, +1.66158670822369e-07,0.537752687931061,0.843102693557739,0.609346985816956,0.46362692117691,0.643231153488159,0.841250956058502,0.345796376466751,0.41559824347496,0.674133837223053,0.417697876691818,0.609156847000122,0.609346985816956,0.46362692117691,0.643231153488159,0.809419810771942,0.419161260128021,0.411270409822464,0.8535395860672,0.35643681883812,0.380030274391174,0.841250956058502,0.345796376466751,0.41559824347496,0.809419810771942,0.419161260128021,0.411270409822464,0.838650524616241,0.449791878461838,0.307168394327164,0.436625868082047,0.575780928134918,0.691255569458008,2.69245763462322e-08,0.599188029766083,0.800608277320862,1.62401178727123e-07,0.593734920024872,0.804660618305206,0.400272339582443,0.566744387149811,0.720126926898956,0.679213106632233,0.566016435623169,0.467220544815063,0.436625868082047,0.575780928134918,0.691255569458008,0.400272339582443,0.566744387149811,0.720126926898956,0.648093104362488,0.533102750778198,0.543853759765625,0.68751060962677,0.627668857574463,0.365186214447021,0.679213106632233,0.566016435623169,0.467220544815063,0.648093104362488,0.533102750778198,0.543853759765625,0.674750208854675,0.57069194316864,0.467998772859573,0.936773419380188,0.209211736917496,-0.280510157346725,0.891604006290436,0.423940151929855,0.159113571047783,0.886474132537842,0.40906697511673,0.21639758348465,0.822638630867004,0.344727039337158,-0.452138125896454,0.822638630867004,0.344727039337158,-0.452138125896454,0.886474132537842,0.40906697511673,0.21639758348465,0.894167304039001,0.312801688909531,0.320343464612961,0.773216545581818,0.455902576446533,-0.440782129764557,0.773216545581818,0.455902576446533,-0.440782129764557,0.894167304039001,0.312801688909531,0.320343464612961,0.845461905002594,0.421230375766754,0.328267008066177,0.696303486824036,0.685827970504761,-0.21166355907917,0.696303486824036,0.685827970504761,-0.21166355907917,0.845461905002594,0.421230375766754,0.328267008066177,0.775935471057892,0.592566728591919,0.21630722284317,0.562135756015778,0.826298296451569,0.0351339690387249, +0.562135756015778,0.826298296451569,0.0351339690387249,0.775935471057892,0.592566728591919,0.21630722284317,0.657711923122406,0.706774234771729,0.260547816753387,0.571992695331573,0.750736892223358,0.330482065677643,0.571992695331573,0.750736892223358,0.330482065677643,0.657711923122406,0.706774234771729,0.260547816753387,0.770220816135406,0.564943134784698,0.295971602201462,0.68751060962677,0.627668857574463,0.365186214447021,0.571992695331573,0.750736892223358,0.330482065677643,0.68751060962677,0.627668857574463,0.365186214447021,0.674750208854675,0.57069194316864,0.467998772859573,0.626188337802887,0.621568083763123,0.470681697130203,0.649192214012146,0.707068502902985,-0.280363410711288,0.772835493087769,0.523139595985413,-0.359235644340515,0.773216545581818,0.455902576446533,-0.440782129764557,0.696303486824036,0.685827970504761,-0.21166355907917,0.772835493087769,0.523139595985413,-0.359235644340515,0.876489520072937,0.36823508143425,-0.310111284255981,0.822638630867004,0.344727039337158,-0.452138125896454,0.773216545581818,0.455902576446533,-0.440782129764557,0.876489520072937,0.36823508143425,-0.310111284255981,0.982687652111053,0.148474961519241,-0.110816136002541,0.936773419380188,0.209211736917496,-0.280510157346725,0.822638630867004,0.344727039337158,-0.452138125896454,0.96488744020462,0.141046658158302,0.221580728888512,0.982687652111053,0.148474961519241,-0.110816136002541,0.876489520072937,0.36823508143425,-0.310111284255981,0.922215342521667,0.384585827589035,0.0401565171778202,0.772835493087769,0.523139595985413,-0.359235644340515,0.805653154850006,0.589774489402771,-0.0555788688361645,0.922215342521667,0.384585827589035,0.0401565171778202,0.876489520072937,0.36823508143425,-0.310111284255981,0.649192214012146,0.707068502902985,-0.280363410711288,0.633098959922791,0.772678554058075,-0.0464056208729744,0.805653154850006,0.589774489402771,-0.0555788688361645,0.772835493087769,0.523139595985413,-0.359235644340515,0.633098959922791,0.772678554058075,-0.0464056208729744,0.649192214012146,0.707068502902985,-0.280363410711288, +0.696303486824036,0.685827970504761,-0.21166355907917,0.562135756015778,0.826298296451569,0.0351339690387249,0.574078142642975,0.780576169490814,0.247255012392998,0.633098959922791,0.772678554058075,-0.0464056208729744,0.562135756015778,0.826298296451569,0.0351339690387249,0.571992695331573,0.750736892223358,0.330482065677643,0.626188337802887,0.621568083763123,0.470681697130203,0.698592841625214,0.632910013198853,0.333756148815155,0.574078142642975,0.780576169490814,0.247255012392998,0.571992695331573,0.750736892223358,0.330482065677643,0.839187681674957,0.434261173009872,0.327385693788528,0.805711448192596,0.292258203029633,0.515183746814728,0.96488744020462,0.141046658158302,0.221580728888512,0.922215342521667,0.384585827589035,0.0401565171778202,0.400272339582443,0.566744387149811,0.720126926898956,1.62401178727123e-07,0.593734920024872,0.804660618305206,-9.54276870857029e-08,0.46919858455658,0.883092641830444,0.427030682563782,0.423026651144028,0.799182832241058,0.648093104362488,0.533102750778198,0.543853759765625,0.400272339582443,0.566744387149811,0.720126926898956,0.427030682563782,0.423026651144028,0.799182832241058,0.654905915260315,0.354517191648483,0.667394876480103,0.674750208854675,0.57069194316864,0.467998772859573,0.648093104362488,0.533102750778198,0.543853759765625,0.654905915260315,0.354517191648483,0.667394876480103,0.715191185474396,0.34563997387886,0.607482135295868,0.626188337802887,0.621568083763123,0.470681697130203,0.674750208854675,0.57069194316864,0.467998772859573,0.715191185474396,0.34563997387886,0.607482135295868,0.805711448192596,0.292258203029633,0.515183746814728,0.839187681674957,0.434261173009872,0.327385693788528,0.698592841625214,0.632910013198853,0.333756148815155,0.626188337802887,0.621568083763123,0.470681697130203,0.805711448192596,0.292258203029633,0.515183746814728,0.698592841625214,0.632910013198853,0.333756148815155,0.805653154850006,0.589774489402771,-0.0555788688361645,0.633098959922791,0.772678554058075,-0.0464056208729744,0.574078142642975,0.780576169490814,0.247255012392998, +0.839187681674957,0.434261173009872,0.327385693788528,0.922215342521667,0.384585827589035,0.0401565171778202,0.805653154850006,0.589774489402771,-0.0555788688361645,0.698592841625214,0.632910013198853,0.333756148815155,0.657711923122406,0.706774234771729,0.260547816753387,0.775935471057892,0.592566728591919,0.21630722284317,0.838650524616241,0.449791878461838,0.307168394327164,0.770220816135406,0.564943134784698,0.295971602201462,0.838650524616241,0.449791878461838,0.307168394327164,0.775935471057892,0.592566728591919,0.21630722284317,0.845461905002594,0.421230375766754,0.328267008066177,0.8535395860672,0.35643681883812,0.380030274391174,0.886474132537842,0.40906697511673,0.21639758348465,0.891604006290436,0.423940151929855,0.159113571047783,0.430175453424454,0.17557030916214,0.885507822036743,0.251340836286545,0.0682772397994995,0.965487420558929,0.894167304039001,0.312801688909531,0.320343464612961,0.886474132537842,0.40906697511673,0.21639758348465,0.251340836286545,0.0682772397994995,0.965487420558929,0.31952691078186,0.0421200059354305,0.946640610694885,0.31952691078186,0.0421200059354305,0.946640610694885,0.530382215976715,0.125614479184151,0.838400721549988,0.845461905002594,0.421230375766754,0.328267008066177,0.894167304039001,0.312801688909531,0.320343464612961,0.530382215976715,0.125614479184151,0.838400721549988,0.708128273487091,0.243512466549873,0.662764012813568,0.8535395860672,0.35643681883812,0.380030274391174,0.845461905002594,0.421230375766754,0.328267008066177,0.722416758537292,0.37959811091423,0.577943980693817,1.07731224829877e-07,0.511693179607391,0.859168291091919,2.19163851511439e-07,0.528520941734314,0.848920106887817,0.674133837223053,0.417697876691818,0.609156847000122,0.825799107551575,0.314353972673416,0.468227863311768,0.722416758537292,0.37959811091423,0.577943980693817,0.674133837223053,0.417697876691818,0.609156847000122,0.841250956058502,0.345796376466751,0.41559824347496,0.708128273487091,0.243512466549873,0.662764012813568,0.825799107551575,0.314353972673416,0.468227863311768,0.841250956058502,0.345796376466751,0.41559824347496, +0.8535395860672,0.35643681883812,0.380030274391174,0.342850595712662,0.149466872215271,0.927422881126404,0.575288236141205,0.238595768809319,0.782378077507019,0.708128273487091,0.243512466549873,0.662764012813568,0.530382215976715,0.125614479184151,0.838400721549988,0.261312931776047,0.0473015941679478,0.964094460010529,0.342850595712662,0.149466872215271,0.927422881126404,0.530382215976715,0.125614479184151,0.838400721549988,0.31952691078186,0.0421200059354305,0.946640610694885,0.305485814809799,0.0270282868295908,0.951812922954559,0.261312931776047,0.0473015941679478,0.964094460010529,0.31952691078186,0.0421200059354305,0.946640610694885,0.251340836286545,0.0682772397994995,0.965487420558929,0.430175453424454,0.17557030916214,0.885507822036743,0.445871531963348,0.0744199678301811,0.891997873783112,0.305485814809799,0.0270282868295908,0.951812922954559,0.251340836286545,0.0682772397994995,0.965487420558929,0.297811090946198,0.113282963633537,0.947879493236542,0.342850595712662,0.149466872215271,0.927422881126404,0.261312931776047,0.0473015941679478,0.964094460010529,0.342262268066406,0.0191853549331427,0.939408481121063,0.445871531963348,0.0744199678301811,0.891997873783112,0.485416024923325,0.00731630343943834,0.874252736568451,0.414848268032074,-0.0309714749455452,0.909363329410553,0.305485814809799,0.0270282868295908,0.951812922954559,0.342262268066406,0.0191853549331427,0.939408481121063,0.261312931776047,0.0473015941679478,0.964094460010529,0.305485814809799,0.0270282868295908,0.951812922954559,0.414848268032074,-0.0309714749455452,0.909363329410553,0.422675728797913,0.0540579818189144,0.904667377471924,0.297811090946198,0.113282963633537,0.947879493236542,0.342262268066406,0.0191853549331427,0.939408481121063,0.460432887077332,-0.0457998625934124,0.886512219905853,0.414848268032074,-0.0309714749455452,0.909363329410553,0.518751204013824,-0.0781070739030838,0.851349830627441,0.460432887077332,-0.0457998625934124,0.886512219905853,0.342262268066406,0.0191853549331427,0.939408481121063,0.485416024923325,0.00731630343943834,0.874252736568451, +0.595667898654938,-0.0288832504302263,0.802711367607117,0.518751204013824,-0.0781070739030838,0.851349830627441,0.414848268032074,-0.0309714749455452,0.909363329410553,0.581657826900482,-0.0957741364836693,0.807775676250458,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.422675728797913,0.0540579818189144,0.904667377471924,0.460432887077332,-0.0457998625934124,0.886512219905853,0.460432887077332,-0.0457998625934124,0.886512219905853,0.518751204013824,-0.0781070739030838,0.851349830627441,0.641083240509033,-0.126405671238899,0.756990015506744,0.581657826900482,-0.0957741364836693,0.807775676250458,0.719404995441437,-0.100821502506733,0.687234699726105,0.641083240509033,-0.126405671238899,0.756990015506744,0.518751204013824,-0.0781070739030838,0.851349830627441,0.595667898654938,-0.0288832504302263,0.802711367607117,0.581657826900482,-0.0957741364836693,0.807775676250458,0.641083240509033,-0.126405671238899,0.756990015506744,0.762171685695648,-0.197300627827644,0.616576731204987,0.690808594226837,-0.146260052919388,0.708090007305145,0.690808594226837,-0.146260052919388,0.708090007305145,0.762171685695648,-0.197300627827644,0.616576731204987,0.837839484214783,-0.268815159797668,0.475145727396011,0.788548588752747,-0.194663256406784,0.583350002765656,0.788548588752747,-0.194663256406784,0.583350002765656,0.837839484214783,-0.268815159797668,0.475145727396011,0.893116891384125,-0.272431463003159,0.357943087816238,0.876360058784485,-0.195948749780655,0.439996868371964,0.876360058784485,-0.195948749780655,0.439996868371964,0.893116891384125,-0.272431463003159,0.357943087816238,0.937765836715698,-0.196240931749344,0.286504596471786,0.937622249126434,-0.122151620686054,0.325489401817322,0.937622249126434,-0.122151620686054,0.325489401817322,0.937765836715698,-0.196240931749344,0.286504596471786,0.965821146965027,-0.0894738808274269,0.243277609348297,0.961383700370789,-0.0141447344794869,0.274847626686096,0.581657826900482,-0.0957741364836693,0.807775676250458,0.690808594226837,-0.146260052919388,0.708090007305145, +0.628640949726105,-0.0453776307404041,0.776370704174042,0.536602318286896,-7.29040693840943e-05,0.843835294246674,0.690808594226837,-0.146260052919388,0.708090007305145,0.788548588752747,-0.194663256406784,0.583350002765656,0.723528265953064,-0.0745095536112785,0.686261653900146,0.628640949726105,-0.0453776307404041,0.776370704174042,0.822252213954926,-0.0876014456152916,0.562340915203094,0.723528265953064,-0.0745095536112785,0.686261653900146,0.788548588752747,-0.194663256406784,0.583350002765656,0.876360058784485,-0.195948749780655,0.439996868371964,0.902409493923187,-0.047013234347105,0.428307056427002,0.822252213954926,-0.0876014456152916,0.562340915203094,0.876360058784485,-0.195948749780655,0.439996868371964,0.937622249126434,-0.122151620686054,0.325489401817322,0.937622249126434,-0.122151620686054,0.325489401817322,0.961383700370789,-0.0141447344794869,0.274847626686096,0.937009036540985,0.0365108624100685,0.347391545772552,0.902409493923187,-0.047013234347105,0.428307056427002,0.641083240509033,-0.126405671238899,0.756990015506744,0.719404995441437,-0.100821502506733,0.687234699726105,0.837325751781464,-0.176072046160698,0.517575263977051,0.762171685695648,-0.197300627827644,0.616576731204987,0.88021332025528,-0.256134212017059,0.399524450302124,0.898356378078461,-0.281534463167191,0.337185859680176,0.893116891384125,-0.272431463003159,0.357943087816238,0.837839484214783,-0.268815159797668,0.475145727396011,0.937765836715698,-0.196240931749344,0.286504596471786,0.893116891384125,-0.272431463003159,0.357943087816238,0.898356378078461,-0.281534463167191,0.337185859680176,0.930274307727814,-0.232484877109528,0.283796668052673,0.837325751781464,-0.176072046160698,0.517575263977051,0.88021332025528,-0.256134212017059,0.399524450302124,0.837839484214783,-0.268815159797668,0.475145727396011,0.762171685695648,-0.197300627827644,0.616576731204987,0.804519951343536,-0.100884638726711,0.585294842720032,0.719404995441437,-0.100821502506733,0.687234699726105,0.595667898654938,-0.0288832504302263,0.802711367607117,0.728366792201996,-0.0401403270661831,0.684010624885559, +0.906593561172485,-0.205873534083366,0.368380606174469,0.903943419456482,-0.244961753487587,0.350542455911636,0.898356378078461,-0.281534463167191,0.337185859680176,0.88021332025528,-0.256134212017059,0.399524450302124,0.887425124645233,-0.148617312312126,0.436336398124695,0.906593561172485,-0.205873534083366,0.368380606174469,0.88021332025528,-0.256134212017059,0.399524450302124,0.837325751781464,-0.176072046160698,0.517575263977051,0.804519951343536,-0.100884638726711,0.585294842720032,0.887425124645233,-0.148617312312126,0.436336398124695,0.837325751781464,-0.176072046160698,0.517575263977051,0.719404995441437,-0.100821502506733,0.687234699726105,0.903943419456482,-0.244961753487587,0.350542455911636,0.906593561172485,-0.205873534083366,0.368380606174469,0.915621399879456,-0.171829804778099,0.363472074270248,0.91042959690094,-0.203642472624779,0.36006623506546,0.906593561172485,-0.205873534083366,0.368380606174469,0.887425124645233,-0.148617312312126,0.436336398124695,0.915488481521606,-0.136658504605293,0.37842458486557,0.915621399879456,-0.171829804778099,0.363472074270248,0.915488481521606,-0.136658504605293,0.37842458486557,0.887425124645233,-0.148617312312126,0.436336398124695,0.804519951343536,-0.100884638726711,0.585294842720032,0.865198731422424,-0.128182396292686,0.484768360853195,0.865198731422424,-0.128182396292686,0.484768360853195,0.804519951343536,-0.100884638726711,0.585294842720032,0.728366792201996,-0.0401403270661831,0.684010624885559,0.809467434883118,-0.120740197598934,0.574616611003876,0.908130645751953,-0.144282877445221,0.393040865659714,0.865198731422424,-0.128182396292686,0.484768360853195,0.809467434883118,-0.120740197598934,0.574616611003876,0.859193027019501,-0.181860834360123,0.47824040055275,0.865198731422424,-0.128182396292686,0.484768360853195,0.908130645751953,-0.144282877445221,0.393040865659714,0.924329221248627,-0.124014526605606,0.360882163047791,0.915488481521606,-0.136658504605293,0.37842458486557,0.924329221248627,-0.124014526605606,0.360882163047791,0.915054202079773,-0.143812745809555,0.376820623874664, +0.915621399879456,-0.171829804778099,0.363472074270248,0.915488481521606,-0.136658504605293,0.37842458486557,0.774750411510468,-0.225245609879494,0.590784311294556,0.81378036737442,-0.240548461675644,0.529053747653961,0.859193027019501,-0.181860834360123,0.47824040055275,0.809467434883118,-0.120740197598934,0.574616611003876,0.81378036737442,-0.240548461675644,0.529053747653961,0.830139815807343,-0.25204735994339,0.49733293056488,0.882710337638855,-0.197786077857018,0.426266610622406,0.859193027019501,-0.181860834360123,0.47824040055275,0.879793643951416,-0.306445717811584,0.363392621278763,0.882710337638855,-0.197786077857018,0.426266610622406,0.830139815807343,-0.25204735994339,0.49733293056488,0.833478033542633,-0.379800826311111,0.401329815387726,0.81378036737442,-0.240548461675644,0.529053747653961,0.748553276062012,-0.274503976106644,0.603585660457611,0.776309669017792,-0.276962965726852,0.566246330738068,0.830139815807343,-0.25204735994339,0.49733293056488,0.748553276062012,-0.274503976106644,0.603585660457611,0.81378036737442,-0.240548461675644,0.529053747653961,0.774750411510468,-0.225245609879494,0.590784311294556,0.686697602272034,-0.282533258199692,0.669791877269745,0.830139815807343,-0.25204735994339,0.49733293056488,0.776309669017792,-0.276962965726852,0.566246330738068,0.78462290763855,-0.433153241872787,0.443559587001801,0.833478033542633,-0.379800826311111,0.401329815387726,0.683599233627319,-0.708920001983643,0.173564046621323,0.641319572925568,-0.740115821361542,0.20233079791069,0.489590495824814,-0.871388077735901,0.0313687920570374,0.560462832450867,-0.828098118305206,0.0116214090958238,0.750535011291504,-0.466074794530869,0.4684779047966,0.641319572925568,-0.740115821361542,0.20233079791069,0.683599233627319,-0.708920001983643,0.173564046621323,0.78462290763855,-0.433153241872787,0.443559587001801,0.719575762748718,-0.229525774717331,0.655384361743927,0.748553276062012,-0.274503976106644,0.603585660457611,0.686697602272034,-0.282533258199692,0.669791877269745,0.656148910522461,-0.210049197077751,0.724808871746063, +0.751667439937592,-0.270470201969147,0.601533055305481,0.776309669017792,-0.276962965726852,0.566246330738068,0.748553276062012,-0.274503976106644,0.603585660457611,0.719575762748718,-0.229525774717331,0.655384361743927,0.750535011291504,-0.466074794530869,0.4684779047966,0.78462290763855,-0.433153241872787,0.443559587001801,0.776309669017792,-0.276962965726852,0.566246330738068,0.751667439937592,-0.270470201969147,0.601533055305481,0.745798587799072,-0.149605080485344,0.649155378341675,0.719575762748718,-0.229525774717331,0.655384361743927,0.656148910522461,-0.210049197077751,0.724808871746063,0.695716381072998,-0.086280569434166,0.713115930557251,0.719575762748718,-0.229525774717331,0.655384361743927,0.745798587799072,-0.149605080485344,0.649155378341675,0.774708449840546,-0.24588668346405,0.582551896572113,0.751667439937592,-0.270470201969147,0.601533055305481,0.751667439937592,-0.270470201969147,0.601533055305481,0.774708449840546,-0.24588668346405,0.582551896572113,0.75903993844986,-0.468803286552429,0.451754212379456,0.750535011291504,-0.466074794530869,0.4684779047966,0.634543776512146,-0.742676556110382,0.213975921273232,0.603131353855133,-0.763180196285248,0.231923550367355,0.362132221460342,-0.931851267814636,0.0226623974740505,0.424411624670029,-0.905128479003906,0.0248428620398045,0.739822447299957,-0.494534075260162,0.45617863535881,0.603131353855133,-0.763180196285248,0.231923550367355,0.634543776512146,-0.742676556110382,0.213975921273232,0.75903993844986,-0.468803286552429,0.451754212379456,0.764699459075928,-0.238976553082466,0.598435521125793,0.739822447299957,-0.494534075260162,0.45617863535881,0.75903993844986,-0.468803286552429,0.451754212379456,0.774708449840546,-0.24588668346405,0.582551896572113,0.764699459075928,-0.238976553082466,0.598435521125793,0.774708449840546,-0.24588668346405,0.582551896572113,0.745798587799072,-0.149605080485344,0.649155378341675,0.723881185054779,-0.0956509634852409,0.68326199054718,0.695716381072998,-0.086280569434166,0.713115930557251,0.66613382101059,-0.0218829568475485,0.745511174201965, +0.723881185054779,-0.0956509634852409,0.68326199054718,0.745798587799072,-0.149605080485344,0.649155378341675,0.66613382101059,-0.0218829568475485,0.745511174201965,0.574376583099365,0.0246292874217033,0.818220555782318,0.635141849517822,-0.0666265115141869,0.76951664686203,0.723881185054779,-0.0956509634852409,0.68326199054718,0.723881185054779,-0.0956509634852409,0.68326199054718,0.635141849517822,-0.0666265115141869,0.76951664686203,0.670140743255615,-0.268748909235001,0.691870987415314,0.764699459075928,-0.238976553082466,0.598435521125793,0.764699459075928,-0.238976553082466,0.598435521125793,0.670140743255615,-0.268748909235001,0.691870987415314,0.634809195995331,-0.558387041091919,0.534061014652252,0.739822447299957,-0.494534075260162,0.45617863535881,0.508506715297699,-0.815533101558685,0.276272922754288,0.380801498889923,-0.863352537155151,0.331078112125397,0.235530734062195,-0.971323013305664,0.0325096696615219,0.298353463411331,-0.954143464565277,0.0243995748460293,0.478834360837936,-0.613580346107483,0.627882719039917,0.380801498889923,-0.863352537155151,0.331078112125397,0.508506715297699,-0.815533101558685,0.276272922754288,0.634809195995331,-0.558387041091919,0.534061014652252,0.235530734062195,-0.971323013305664,0.0325096696615219,0.380801498889923,-0.863352537155151,0.331078112125397,0.248282060027122,-0.893886089324951,0.373260855674744,0.172015935182571,-0.984178006649017,0.0424752794206142,0.31335386633873,-0.66547167301178,0.677463471889496,0.248282060027122,-0.893886089324951,0.373260855674744,0.380801498889923,-0.863352537155151,0.331078112125397,0.478834360837936,-0.613580346107483,0.627882719039917,0.344552159309387,0.08065065741539,0.935296416282654,0.369722604751587,-0.0735579207539558,0.926225900650024,0.507166147232056,-0.0646189451217651,0.859422445297241,0.461474180221558,0.0598365068435669,0.885133445262909,0.635141849517822,-0.0666265115141869,0.76951664686203,0.574376583099365,0.0246292874217033,0.818220555782318,0.461474180221558,0.0598365068435669,0.885133445262909,0.507166147232056,-0.0646189451217651,0.859422445297241, +0.670140743255615,-0.268748909235001,0.691870987415314,0.635141849517822,-0.0666265115141869,0.76951664686203,0.507166147232056,-0.0646189451217651,0.859422445297241,0.518171727657318,-0.310628473758698,0.796873927116394,0.518171727657318,-0.310628473758698,0.796873927116394,0.507166147232056,-0.0646189451217651,0.859422445297241,0.369722604751587,-0.0735579207539558,0.926225900650024,0.360987424850464,-0.35328596830368,0.863062560558319,0.478834360837936,-0.613580346107483,0.627882719039917,0.518171727657318,-0.310628473758698,0.796873927116394,0.360987424850464,-0.35328596830368,0.863062560558319,0.31335386633873,-0.66547167301178,0.677463471889496,0.634809195995331,-0.558387041091919,0.534061014652252,0.670140743255615,-0.268748909235001,0.691870987415314,0.518171727657318,-0.310628473758698,0.796873927116394,0.478834360837936,-0.613580346107483,0.627882719039917,0.172015935182571,-0.984178006649017,0.0424752794206142,0.248282060027122,-0.893886089324951,0.373260855674744,0.114588350057602,-0.912775337696075,0.392059504985809,0.0893126279115677,-0.993775486946106,0.066584125161171,0.149707362055779,-0.694378197193146,0.703865468502045,0.114588350057602,-0.912775337696075,0.392059504985809,0.248282060027122,-0.893886089324951,0.373260855674744,0.31335386633873,-0.66547167301178,0.677463471889496,0.369722604751587,-0.0735579207539558,0.926225900650024,0.344552159309387,0.08065065741539,0.935296416282654,0.188998714089394,0.0825605019927025,0.978500485420227,0.203462436795235,-0.0831982791423798,0.975541412830353,0.203462436795235,-0.0831982791423798,0.975541412830353,0.196311578154564,-0.379952698945999,0.903934597969055,0.360987424850464,-0.35328596830368,0.863062560558319,0.369722604751587,-0.0735579207539558,0.926225900650024,0.196311578154564,-0.379952698945999,0.903934597969055,0.149707362055779,-0.694378197193146,0.703865468502045,0.31335386633873,-0.66547167301178,0.677463471889496,0.360987424850464,-0.35328596830368,0.863062560558319,0.203462436795235,-0.0831982791423798,0.975541412830353,0.188998714089394,0.0825605019927025,0.978500485420227, +-2.20459881461466e-07,0.0764520391821861,0.997073292732239,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,0.196311578154564,-0.379952698945999,0.903934597969055,0.203462436795235,-0.0831982791423798,0.975541412830353,-7.51518314245914e-08,-0.0930996388196945,0.995656847953796,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-2.32817960466036e-08,-0.396771103143692,0.917917609214783,-6.88307366658591e-08,-0.705236434936523,0.708972215652466,0.149707362055779,-0.694378197193146,0.703865468502045,0.196311578154564,-0.379952698945999,0.903934597969055,0.913659393787384,-0.138570725917816,0.38213175535202,0.908130645751953,-0.144282877445221,0.393040865659714,0.859193027019501,-0.181860834360123,0.47824040055275,0.882710337638855,-0.197786077857018,0.426266610622406,0.908130645751953,-0.144282877445221,0.393040865659714,0.913659393787384,-0.138570725917816,0.38213175535202,0.919660210609436,-0.112061873078346,0.37638720870018,0.924329221248627,-0.124014526605606,0.360882163047791,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.823865830898285,-0.564590632915497,0.0498245023190975,0.677948117256165,-0.71640682220459,-0.164764940738678,0.700287818908691,-0.696540117263794,-0.156297460198402,0.911567687988281,-0.228366628289223,0.341896325349808,0.823865830898285,-0.564590632915497,0.0498245023190975,0.852173507213593,-0.523247599601746,-0.00349189271219075,0.930331110954285,-0.186108112335205,0.315986633300781,0.882710337638855,-0.197786077857018,0.426266610622406,0.879793643951416,-0.306445717811584,0.363392621278763,0.911567687988281,-0.228366628289223,0.341896325349808,0.913659393787384,-0.138570725917816,0.38213175535202,0.913659393787384,-0.138570725917816,0.38213175535202,0.911567687988281,-0.228366628289223,0.341896325349808,0.930331110954285,-0.186108112335205,0.315986633300781,0.919660210609436,-0.112061873078346,0.37638720870018,0.915054202079773,-0.143812745809555,0.376820623874664,0.924329221248627,-0.124014526605606,0.360882163047791,0.919660210609436,-0.112061873078346,0.37638720870018, +0.921531438827515,-0.125053957104683,0.367615789175034,0.888480961322784,-0.454339295625687,-0.064633846282959,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.745865523815155,-0.66082090139389,-0.0836689472198486,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.93603527545929,-0.181322798132896,0.301595836877823,0.863172829151154,-0.504850566387177,-0.00765601778402925,0.888480961322784,-0.454339295625687,-0.064633846282959,0.939025521278381,-0.179977178573608,0.292983204126358,0.919660210609436,-0.112061873078346,0.37638720870018,0.930331110954285,-0.186108112335205,0.315986633300781,0.93603527545929,-0.181322798132896,0.301595836877823,0.921531438827515,-0.125053957104683,0.367615789175034,0.915054202079773,-0.143812745809555,0.376820623874664,0.921531438827515,-0.125053957104683,0.367615789175034,0.926973879337311,-0.145165294408798,0.345899522304535,0.91846889257431,-0.167402893304825,0.358317226171494,0.91042959690094,-0.203642472624779,0.36006623506546,0.915621399879456,-0.171829804778099,0.363472074270248,0.915054202079773,-0.143812745809555,0.376820623874664,0.91846889257431,-0.167402893304825,0.358317226171494,0.921531438827515,-0.125053957104683,0.367615789175034,0.93603527545929,-0.181322798132896,0.301595836877823,0.939025521278381,-0.179977178573608,0.292983204126358,0.926973879337311,-0.145165294408798,0.345899522304535,0.91846889257431,-0.167402893304825,0.358317226171494,0.926973879337311,-0.145165294408798,0.345899522304535,0.94092857837677,-0.141944065690041,0.307417243719101,0.936245381832123,-0.177437111735344,0.303250223398209,0.903943419456482,-0.244961753487587,0.350542455911636,0.91042959690094,-0.203642472624779,0.36006623506546,0.929949820041656,-0.214140594005585,0.298893451690674,0.92530220746994,-0.235561564564705,0.297197818756104,0.930274307727814,-0.232484877109528,0.283796668052673,0.898356378078461,-0.281534463167191,0.337185859680176,0.903943419456482,-0.244961753487587,0.350542455911636,0.92530220746994,-0.235561564564705,0.297197818756104,0.929949820041656,-0.214140594005585,0.298893451690674, +0.91042959690094,-0.203642472624779,0.36006623506546,0.91846889257431,-0.167402893304825,0.358317226171494,0.936245381832123,-0.177437111735344,0.303250223398209,0.94092857837677,-0.141944065690041,0.307417243719101,0.926973879337311,-0.145165294408798,0.345899522304535,0.939025521278381,-0.179977178573608,0.292983204126358,0.958406686782837,-0.153457835316658,0.240639463067055,0.936245381832123,-0.177437111735344,0.303250223398209,0.94092857837677,-0.141944065690041,0.307417243719101,0.967040598392487,-0.115117870271206,0.227112993597984,0.95965588092804,-0.171769678592682,0.222611382603645,0.92530220746994,-0.235561564564705,0.297197818756104,0.929949820041656,-0.214140594005585,0.298893451690674,0.955960512161255,-0.197021514177322,0.217535957694054,0.956452369689941,-0.186609178781509,0.224445641040802,0.937765836715698,-0.196240931749344,0.286504596471786,0.930274307727814,-0.232484877109528,0.283796668052673,0.958805739879608,-0.162935703992844,0.232687652111053,0.965821146965027,-0.0894738808274269,0.243277609348297,0.967040598392487,-0.115117870271206,0.227112993597984,0.94092857837677,-0.141944065690041,0.307417243719101,0.958406686782837,-0.153457835316658,0.240639463067055,0.984486639499664,-0.103614754974842,0.141597986221313,0.955960512161255,-0.197021514177322,0.217535957694054,0.929949820041656,-0.214140594005585,0.298893451690674,0.936245381832123,-0.177437111735344,0.303250223398209,0.95965588092804,-0.171769678592682,0.222611382603645,0.92530220746994,-0.235561564564705,0.297197818756104,0.956452369689941,-0.186609178781509,0.224445641040802,0.958805739879608,-0.162935703992844,0.232687652111053,0.930274307727814,-0.232484877109528,0.283796668052673,0.274986296892166,-0.651024580001831,0.707495212554932,0.383882284164429,-0.603094279766083,0.699222147464752,0.64949357509613,-0.740117192268372,0.174311548471451,0.507421135902405,-0.808788597583771,0.297295808792114,0.275654345750809,-0.681295096874237,0.678123593330383,0.274986296892166,-0.651024580001831,0.707495212554932,0.507421135902405,-0.808788597583771,0.297295808792114, +0.353579491376877,-0.879789888858795,0.317728191614151,0.147971019148827,-0.704563796520233,0.694042086601257,0.275654345750809,-0.681295096874237,0.678123593330383,0.353579491376877,-0.879789888858795,0.317728191614151,0.142130747437477,-0.918823480606079,0.368187576532364,0.0575017705559731,-0.60280305147171,0.795815229415894,0.147971019148827,-0.704563796520233,0.694042086601257,0.142130747437477,-0.918823480606079,0.368187576532364,-0.0265892222523689,-0.900146484375,0.434774845838547,0.134694382548332,-0.463504552841187,0.87579733133316,0.0575017705559731,-0.60280305147171,0.795815229415894,-0.0265892222523689,-0.900146484375,0.434774845838547,-0.106808699667454,-0.887159824371338,0.448931515216827,0.295082241296768,-0.404272556304932,0.865731000900269,0.134694382548332,-0.463504552841187,0.87579733133316,-0.106808699667454,-0.887159824371338,0.448931515216827,-0.15303398668766,-0.885538697242737,0.438636392354965,0.346632272005081,-0.449827909469604,0.823104381561279,0.295082241296768,-0.404272556304932,0.865731000900269,-0.15303398668766,-0.885538697242737,0.438636392354965,-0.155293375253677,-0.884754359722137,0.439424335956573,0.370025664567947,-0.503738164901733,0.780595183372498,0.346632272005081,-0.449827909469604,0.823104381561279,-0.155293375253677,-0.884754359722137,0.439424335956573,-0.216106951236725,-0.874920010566711,0.433373659849167,0.380609661340714,-0.54610675573349,0.746259808540344,0.370025664567947,-0.503738164901733,0.780595183372498,-0.216106951236725,-0.874920010566711,0.433373659849167,-0.326960325241089,-0.825367987155914,0.460287511348724,0.323241502046585,-0.60172700881958,0.730369389057159,0.380609661340714,-0.54610675573349,0.746259808540344,-0.326960325241089,-0.825367987155914,0.460287511348724,-0.321650743484497,-0.862662851810455,0.390324980020523,0.356094896793365,-0.327478647232056,0.875188052654266,0.323241502046585,-0.60172700881958,0.730369389057159,-0.321650743484497,-0.862662851810455,0.390324980020523,-0.339530318975449,-0.611383974552155,0.714792907238007,0.217262208461761,0.57354336977005,0.78983873128891, +0.487023502588272,0.129526108503342,0.86373096704483,0.356094896793365,-0.327478647232056,0.875188052654266,-0.339530318975449,-0.611383974552155,0.714792907238007,0.316681206226349,0.610929429531097,0.725588202476501,0.578737139701843,0.225207775831223,0.7838014960289,0.487023502588272,0.129526108503342,0.86373096704483,0.217262208461761,0.57354336977005,0.78983873128891,0.395166456699371,0.556572616100311,0.730801165103912,0.616995334625244,0.248676180839539,0.746643781661987,0.578737139701843,0.225207775831223,0.7838014960289,0.316681206226349,0.610929429531097,0.725588202476501,0.315014570951462,0.551133930683136,0.772668898105621,0.552578508853912,0.248528689146042,0.795544147491455,0.616995334625244,0.248676180839539,0.746643781661987,0.395166456699371,0.556572616100311,0.730801165103912,0.269765794277191,0.544586539268494,0.794135928153992,0.434168308973312,0.253190070390701,0.864518761634827,0.552578508853912,0.248528689146042,0.795544147491455,0.315014570951462,0.551133930683136,0.772668898105621,0.169712319970131,0.514092206954956,0.840777516365051,0.244830623269081,0.239294216036797,0.939572274684906,0.434168308973312,0.253190070390701,0.864518761634827,0.269765794277191,0.544586539268494,0.794135928153992,0.0438507162034512,0.491777509450912,0.869616031646729,0.0321443751454353,0.215293377637863,0.976020216941833,0.244830623269081,0.239294216036797,0.939572274684906,0.169712319970131,0.514092206954956,0.840777516365051,-0.017424713820219,0.492136418819427,0.870343685150146,-0.0863350555300713,0.219253152608871,0.971840679645538,0.0321443751454353,0.215293377637863,0.976020216941833,0.0438507162034512,0.491777509450912,0.869616031646729,-0.0876083523035049,0.564424693584442,0.820822536945343,-0.199233904480934,0.285865694284439,0.937329471111298,-0.0863350555300713,0.219253152608871,0.971840679645538,-0.017424713820219,0.492136418819427,0.870343685150146,-0.0876083523035049,0.564424693584442,0.820822536945343,-0.138553112745285,0.691621780395508,0.708845794200897,-0.190354779362679,0.393678396940231,0.899323225021362, +-0.199233904480934,0.285865694284439,0.937329471111298,0.15533983707428,0.678589880466461,0.717903316020966,0.154182031750679,0.399146050214767,0.903830885887146,-0.190354779362679,0.393678396940231,0.899323225021362,-0.138553112745285,0.691621780395508,0.708845794200897,0.809510111808777,0.027190363034606,0.586475968360901,0.613759577274323,-0.0553232282400131,0.787552237510681,0.154182031750679,0.399146050214767,0.903830885887146,0.15533983707428,0.678589880466461,0.717903316020966,0.809510111808777,0.027190363034606,0.586475968360901,0.857804179191589,-0.476948946714401,0.191551223397255,0.575852811336517,-0.486751854419708,0.656860768795013,0.613759577274323,-0.0553232282400131,0.787552237510681,0.383882284164429,-0.603094279766083,0.699222147464752,0.575852811336517,-0.486751854419708,0.656860768795013,0.857804179191589,-0.476948946714401,0.191551223397255,0.64949357509613,-0.740117192268372,0.174311548471451,0.347748458385468,0.297606498003006,0.889101445674896,0.632292747497559,0.0173319820314646,0.774535715579987,0.595863163471222,0.0579257197678089,0.800994217395782,0.466446876525879,0.281457275152206,0.838575720787048,-0.0414680913090706,0.321205735206604,0.946101069450378,0.347748458385468,0.297606498003006,0.889101445674896,0.466446876525879,0.281457275152206,0.838575720787048,0.178019285202026,0.335278123617172,0.925147414207458,-0.130271911621094,0.17735555768013,0.975486636161804,-0.0414680913090706,0.321205735206604,0.946101069450378,0.178019285202026,0.335278123617172,0.925147414207458,0.0284491945058107,0.192290708422661,0.980925500392914,-0.076492615044117,-0.000426677463110536,0.997070133686066,-0.130271911621094,0.17735555768013,0.975486636161804,0.0284491945058107,0.192290708422661,0.980925500392914,0.013372597284615,0.029881190508604,0.999463975429535,0.0484236851334572,-0.126815900206566,0.990743577480316,-0.076492615044117,-0.000426677463110536,0.997070133686066,0.013372597284615,0.029881190508604,0.999463975429535,0.123857423663139,-0.118740007281303,0.985170066356659,0.290365815162659,-0.138251453638077,0.946876108646393, +0.0484236851334572,-0.126815900206566,0.990743577480316,0.123857423663139,-0.118740007281303,0.985170066356659,0.303152203559875,-0.182029992341995,0.935395061969757,0.501423418521881,-0.0618657283484936,0.862987399101257,0.290365815162659,-0.138251453638077,0.946876108646393,0.303152203559875,-0.182029992341995,0.935395061969757,0.495574027299881,-0.0890679284930229,0.863986849784851,0.591036200523376,0.0579320266842842,0.804562151432037,0.501423418521881,-0.0618657283484936,0.862987399101257,0.495574027299881,-0.0890679284930229,0.863986849784851,0.572860300540924,0.00523662939667702,0.819636225700378,0.60392564535141,0.156122982501984,0.781600594520569,0.591036200523376,0.0579320266842842,0.804562151432037,0.572860300540924,0.00523662939667702,0.819636225700378,0.602928280830383,0.102335661649704,0.791204750537872,0.57700127363205,0.190487146377563,0.794219255447388,0.60392564535141,0.156122982501984,0.781600594520569,0.602928280830383,0.102335661649704,0.791204750537872,0.603891491889954,0.107950486242771,0.789722621440887,0.487047553062439,0.000498084060382098,0.873375296592712,0.57700127363205,0.190487146377563,0.794219255447388,0.603891491889954,0.107950486242771,0.789722621440887,0.584524750709534,-0.00934458523988724,0.811322152614594,0.615728855133057,-0.118637032806873,0.77897584438324,0.420201629400253,-0.298252731561661,0.8570157289505,0.487047553062439,0.000498084060382098,0.873375296592712,0.584524750709534,-0.00934458523988724,0.811322152614594,0.510514736175537,-0.163281068205833,0.844223916530609,0.491462111473083,-0.292720168828964,0.82023161649704,0.187886357307434,-0.371577531099319,0.909191310405731,0.302163988351822,-0.272076666355133,0.91360342502594,0.632292747497559,0.0173319820314646,0.774535715579987,0.491462111473083,-0.292720168828964,0.82023161649704,0.510514736175537,-0.163281068205833,0.844223916530609,0.595863163471222,0.0579257197678089,0.800994217395782,0.101175136864185,-0.185597360134125,0.977403283119202,0.302163988351822,-0.272076666355133,0.91360342502594,0.187886357307434,-0.371577531099319,0.909191310405731, +0.0368634201586246,-0.304008036851883,0.95195597410202,0.0350082777440548,-0.172622829675674,0.98436564207077,0.0401498712599277,-0.017599456012249,0.999038636684418,0.101175136864185,-0.185597360134125,0.977403283119202,0.0368634201586246,-0.304008036851883,0.95195597410202,0.0501973144710064,-0.124382235109806,0.990963816642761,0.0377981849014759,0.105484418570995,0.993702352046967,0.0401498712599277,-0.017599456012249,0.999038636684418,0.0350082777440548,-0.172622829675674,0.98436564207077,0.134436830878258,-0.039139598608017,0.990148901939392,0.159239947795868,0.20620696246624,0.965464353561401,0.0377981849014759,0.105484418570995,0.993702352046967,0.0501973144710064,-0.124382235109806,0.990963816642761,0.290516257286072,0.00602072011679411,0.956851124763489,0.315484464168549,0.231521591544151,0.920253872871399,0.159239947795868,0.20620696246624,0.965464353561401,0.134436830878258,-0.039139598608017,0.990148901939392,0.433234065771103,-0.0361165516078472,0.900557518005371,0.47037798166275,0.179700747132301,0.863974571228027,0.315484464168549,0.231521591544151,0.920253872871399,0.290516257286072,0.00602072011679411,0.956851124763489,0.499967753887177,-0.163535639643669,0.850463688373566,0.618443191051483,0.0514630191028118,0.78414249420166,0.47037798166275,0.179700747132301,0.863974571228027,0.433234065771103,-0.0361165516078472,0.900557518005371,0.521048605442047,-0.286888778209686,0.803867697715759,0.661520719528198,-0.052353672683239,0.74809718132019,0.618443191051483,0.0514630191028118,0.78414249420166,0.499967753887177,-0.163535639643669,0.850463688373566,0.483332127332687,-0.396166235208511,0.780667901039124,0.650227129459381,-0.101999774575233,0.752861678600311,0.661520719528198,-0.052353672683239,0.74809718132019,0.521048605442047,-0.286888778209686,0.803867697715759,0.395630598068237,-0.462299972772598,0.7935711145401,0.648258328437805,-0.140316858887672,0.748379826545715,0.650227129459381,-0.101999774575233,0.752861678600311,0.483332127332687,-0.396166235208511,0.780667901039124,0.615728855133057,-0.118637032806873,0.77897584438324, +0.648258328437805,-0.140316858887672,0.748379826545715,0.395630598068237,-0.462299972772598,0.7935711145401,0.420201629400253,-0.298252731561661,0.8570157289505,0.270612746477127,-0.422039151191711,0.865246593952179,0.380699098110199,-0.54412055015564,0.747663736343384,0.399061352014542,-0.637620508670807,0.658931016921997,0.32490462064743,-0.418022364377975,0.848347902297974,0.264760106801987,-0.358458042144775,0.895215034484863,0.442050814628601,-0.355755299329758,0.823425233364105,0.380699098110199,-0.54412055015564,0.747663736343384,0.270612746477127,-0.422039151191711,0.865246593952179,0.44531324505806,-0.0220793299376965,0.895102560520172,0.62228399515152,-0.106441542506218,0.775520920753479,0.442050814628601,-0.355755299329758,0.823425233364105,0.264760106801987,-0.358458042144775,0.895215034484863,0.654486119747162,0.191098988056183,0.731525182723999,0.699977993965149,0.105198934674263,0.706373870372772,0.62228399515152,-0.106441542506218,0.775520920753479,0.44531324505806,-0.0220793299376965,0.895102560520172,0.635390818119049,0.277111440896988,0.720755100250244,0.699977993965149,0.105198934674263,0.706373870372772,0.654486119747162,0.191098988056183,0.731525182723999,0.724071383476257,0.254366815090179,0.641106963157654,0.537453949451447,0.309819549322128,0.784318149089813,0.483116030693054,0.378075450658798,0.789720058441162,0.635390818119049,0.277111440896988,0.720755100250244,0.724071383476257,0.254366815090179,0.641106963157654,0.327629417181015,0.327735424041748,0.886142432689667,0.295458763837814,0.40319499373436,0.866105020046234,0.483116030693054,0.378075450658798,0.789720058441162,0.537453949451447,0.309819549322128,0.784318149089813,0.282756716012955,0.29180508852005,0.913727760314941,0.241420090198517,0.347718894481659,0.905984401702881,0.295458763837814,0.40319499373436,0.866105020046234,0.327629417181015,0.327735424041748,0.886142432689667,0.375233739614487,0.190444394946098,0.907155156135559,0.300739198923111,0.219192713499069,0.928175926208496,0.241420090198517,0.347718894481659,0.905984401702881, +0.282756716012955,0.29180508852005,0.913727760314941,0.475327998399734,0.0613102093338966,0.877669811248779,0.386915534734726,0.0745876654982567,0.919093608856201,0.300739198923111,0.219192713499069,0.928175926208496,0.375233739614487,0.190444394946098,0.907155156135559,0.582253575325012,-0.0373691320419312,0.812147974967957,0.524923145771027,-0.0342899076640606,0.850458741188049,0.386915534734726,0.0745876654982567,0.919093608856201,0.475327998399734,0.0613102093338966,0.877669811248779,0.694853246212006,-0.0758795365691185,0.715137243270874,0.657937824726105,-0.0946975871920586,0.747094452381134,0.524923145771027,-0.0342899076640606,0.850458741188049,0.582253575325012,-0.0373691320419312,0.812147974967957,0.784411549568176,-0.0817646682262421,0.614827632904053,0.743377506732941,-0.0995368584990501,0.661424338817596,0.657937824726105,-0.0946975871920586,0.747094452381134,0.694853246212006,-0.0758795365691185,0.715137243270874,0.863092243671417,-0.040555365383625,0.50341534614563,0.819737493991852,-0.0587895140051842,0.569714248180389,0.743377506732941,-0.0995368584990501,0.661424338817596,0.784411549568176,-0.0817646682262421,0.614827632904053,0.906984090805054,0.066459633409977,0.415888011455536,0.88086724281311,0.0466531366109848,0.471058756113052,0.819737493991852,-0.0587895140051842,0.569714248180389,0.863092243671417,-0.040555365383625,0.50341534614563,0.906198561191559,0.170440301299095,0.386980891227722,0.891719162464142,0.173081129789352,0.418186485767365,0.88086724281311,0.0466531366109848,0.471058756113052,0.906984090805054,0.066459633409977,0.415888011455536,0.889109969139099,0.168669983744621,0.425480663776398,0.875358283519745,0.225787833333015,0.427513301372528,0.891719162464142,0.173081129789352,0.418186485767365,0.906198561191559,0.170440301299095,0.386980891227722,0.873242199420929,0.179084986448288,0.453185141086578,0.875358283519745,0.225787833333015,0.427513301372528,0.889109969139099,0.168669983744621,0.425480663776398,0.88187563419342,0.0824778228998184,0.464212000370026,0.844126224517822,0.131717905402184,0.519712865352631, +0.873242199420929,0.179084986448288,0.453185141086578,0.88187563419342,0.0824778228998184,0.464212000370026,0.865444779396057,0.0103214215487242,0.500897884368896,0.766587615013123,0.116328589618206,0.631514847278595,0.844126224517822,0.131717905402184,0.519712865352631,0.865444779396057,0.0103214215487242,0.500897884368896,0.804570019245148,-0.0346855819225311,0.592843890190125,0.609998941421509,0.0694049596786499,0.789356827735901,0.766587615013123,0.116328589618206,0.631514847278595,0.804570019245148,-0.0346855819225311,0.592843890190125,0.668119072914124,-0.078662782907486,0.739884495735168,0.475756406784058,-0.124915234744549,0.870661854743958,0.609998941421509,0.0694049596786499,0.789356827735901,0.668119072914124,-0.078662782907486,0.739884495735168,0.546013355255127,-0.156816154718399,0.822969079017639,0.374557584524155,-0.459309250116348,0.805444955825806,0.475756406784058,-0.124915234744549,0.870661854743958,0.546013355255127,-0.156816154718399,0.822969079017639,0.451805233955383,-0.258582532405853,0.853819131851196,0.365272045135498,-0.644276142120361,0.671926021575928,0.374557584524155,-0.459309250116348,0.805444955825806,0.451805233955383,-0.258582532405853,0.853819131851196,0.377237468957901,-0.36413711309433,0.851525783538818,0.399061352014542,-0.637620508670807,0.658931016921997,0.365272045135498,-0.644276142120361,0.671926021575928,0.377237468957901,-0.36413711309433,0.851525783538818,0.32490462064743,-0.418022364377975,0.848347902297974,0.0377981849014759,0.105484418570995,0.993702352046967,0.159239947795868,0.20620696246624,0.965464353561401,0.223360776901245,-0.0399122983217239,0.973918259143829,0.19048398733139,-0.248873218894005,0.949619889259338,0.159239947795868,0.20620696246624,0.965464353561401,0.315484464168549,0.231521591544151,0.920253872871399,0.370503127574921,0.147420585155487,0.917057633399963,0.223360776901245,-0.0399122983217239,0.973918259143829,0.315484464168549,0.231521591544151,0.920253872871399,0.47037798166275,0.179700747132301,0.863974571228027,0.528425633907318,0.181496202945709,0.829352378845215, +0.370503127574921,0.147420585155487,0.917057633399963,0.47037798166275,0.179700747132301,0.863974571228027,0.618443191051483,0.0514630191028118,0.78414249420166,0.699494361877441,0.129322603344917,0.702839374542236,0.528425633907318,0.181496202945709,0.829352378845215,0.618443191051483,0.0514630191028118,0.78414249420166,0.661520719528198,-0.052353672683239,0.74809718132019,0.768238186836243,0.109362043440342,0.630753576755524,0.699494361877441,0.129322603344917,0.702839374542236,0.661520719528198,-0.052353672683239,0.74809718132019,0.650227129459381,-0.101999774575233,0.752861678600311,0.80785346031189,0.132812395691872,0.574224293231964,0.768238186836243,0.109362043440342,0.630753576755524,0.650227129459381,-0.101999774575233,0.752861678600311,0.648258328437805,-0.140316858887672,0.748379826545715,0.820026814937592,0.130921140313148,0.557149529457092,0.80785346031189,0.132812395691872,0.574224293231964,0.648258328437805,-0.140316858887672,0.748379826545715,0.615728855133057,-0.118637032806873,0.77897584438324,0.795642733573914,0.111423671245575,0.595430374145508,0.820026814937592,0.130921140313148,0.557149529457092,0.615728855133057,-0.118637032806873,0.77897584438324,0.584524750709534,-0.00934458523988724,0.811322152614594,0.741437256336212,0.0652128756046295,0.667845726013184,0.795642733573914,0.111423671245575,0.595430374145508,0.584524750709534,-0.00934458523988724,0.811322152614594,0.603891491889954,0.107950486242771,0.789722621440887,0.69052255153656,0.0553218685090542,0.721192121505737,0.741437256336212,0.0652128756046295,0.667845726013184,0.603891491889954,0.107950486242771,0.789722621440887,0.602928280830383,0.102335661649704,0.791204750537872,0.643218159675598,0.0473933406174183,0.764214813709259,0.69052255153656,0.0553218685090542,0.721192121505737,0.602928280830383,0.102335661649704,0.791204750537872,0.572860300540924,0.00523662939667702,0.819636225700378,0.580971300601959,0.000804972019977868,0.81392377614975,0.643218159675598,0.0473933406174183,0.764214813709259,0.572860300540924,0.00523662939667702,0.819636225700378, +0.495574027299881,-0.0890679284930229,0.863986849784851,0.47223624587059,-0.0109372045844793,0.881404221057892,0.580971300601959,0.000804972019977868,0.81392377614975,0.495574027299881,-0.0890679284930229,0.863986849784851,0.303152203559875,-0.182029992341995,0.935395061969757,0.321686059236526,0.00443004816770554,0.946836054325104,0.47223624587059,-0.0109372045844793,0.881404221057892,0.303152203559875,-0.182029992341995,0.935395061969757,0.123857423663139,-0.118740007281303,0.985170066356659,0.226750269532204,0.0926256477832794,0.969538450241089,0.321686059236526,0.00443004816770554,0.946836054325104,0.123857423663139,-0.118740007281303,0.985170066356659,0.013372597284615,0.029881190508604,0.999463975429535,0.149907752871513,0.22834187746048,0.961970686912537,0.226750269532204,0.0926256477832794,0.969538450241089,0.013372597284615,0.029881190508604,0.999463975429535,0.0284491945058107,0.192290708422661,0.980925500392914,0.192397087812424,0.309196352958679,0.931332886219025,0.149907752871513,0.22834187746048,0.961970686912537,0.0284491945058107,0.192290708422661,0.980925500392914,0.178019285202026,0.335278123617172,0.925147414207458,0.387087315320969,0.35172712802887,0.852321207523346,0.192397087812424,0.309196352958679,0.931332886219025,0.178019285202026,0.335278123617172,0.925147414207458,0.466446876525879,0.281457275152206,0.838575720787048,0.545160353183746,0.28033983707428,0.790069401264191,0.387087315320969,0.35172712802887,0.852321207523346,0.466446876525879,0.281457275152206,0.838575720787048,0.595863163471222,0.0579257197678089,0.800994217395782,0.625528752803802,0.0949555560946465,0.774401128292084,0.545160353183746,0.28033983707428,0.790069401264191,0.595863163471222,0.0579257197678089,0.800994217395782,0.510514736175537,-0.163281068205833,0.844223916530609,0.579374969005585,-0.130316764116287,0.804575800895691,0.625528752803802,0.0949555560946465,0.774401128292084,0.510514736175537,-0.163281068205833,0.844223916530609,0.302163988351822,-0.272076666355133,0.91360342502594,0.477636814117432,-0.315843403339386,0.819820702075958, +0.579374969005585,-0.130316764116287,0.804575800895691,0.302163988351822,-0.272076666355133,0.91360342502594,0.101175136864185,-0.185597360134125,0.977403283119202,0.334927916526794,-0.421966195106506,0.842477142810822,0.477636814117432,-0.315843403339386,0.819820702075958,0.101175136864185,-0.185597360134125,0.977403283119202,0.0401498712599277,-0.017599456012249,0.999038636684418,0.255181282758713,-0.350356936454773,0.90118396282196,0.334927916526794,-0.421966195106506,0.842477142810822,0.19048398733139,-0.248873218894005,0.949619889259338,0.255181282758713,-0.350356936454773,0.90118396282196,0.0401498712599277,-0.017599456012249,0.999038636684418,0.0377981849014759,0.105484418570995,0.993702352046967,3.63054823537823e-07,0.15388910472393,0.988088130950928,4.9137469204652e-07,-0.177478060126305,0.984124779701233,0.0868292823433876,-0.237600713968277,0.967474281787872,0.0126644959673285,0.124740086495876,0.992108643054962,0.171102255582809,-0.241622537374496,0.955166220664978,0.0606001727283001,0.145944327116013,0.987435102462769,0.0126644959673285,0.124740086495876,0.992108643054962,0.0868292823433876,-0.237600713968277,0.967474281787872,0.212696671485901,-0.165409192442894,0.963016033172607,0.127829760313034,0.190948247909546,0.973241150379181,0.0606001727283001,0.145944327116013,0.987435102462769,0.171102255582809,-0.241622537374496,0.955166220664978,0.274903774261475,-0.0619128942489624,0.959476232528687,0.224436596035957,0.21460622549057,0.95056426525116,0.127829760313034,0.190948247909546,0.973241150379181,0.212696671485901,-0.165409192442894,0.963016033172607,0.353909879922867,-0.00241755158640444,0.935276448726654,0.34012496471405,0.232896134257317,0.911084234714508,0.224436596035957,0.21460622549057,0.95056426525116,0.274903774261475,-0.0619128942489624,0.959476232528687,0.450483679771423,0.0697160139679909,0.890058517456055,0.470622628927231,0.244484126567841,0.847786426544189,0.34012496471405,0.232896134257317,0.911084234714508,0.353909879922867,-0.00241755158640444,0.935276448726654,0.450483679771423,0.0697160139679909,0.890058517456055, +0.569105446338654,0.102337956428528,0.815871298313141,0.605829894542694,0.242477983236313,0.757743120193481,0.470622628927231,0.244484126567841,0.847786426544189,0.569105446338654,0.102337956428528,0.815871298313141,0.722112476825714,0.0751197412610054,0.687684893608093,0.787121653556824,0.192846432328224,0.58587521314621,0.605829894542694,0.242477983236313,0.757743120193481,0.722112476825714,0.0751197412610054,0.687684893608093,0.864901006221771,0.0519208051264286,0.499249815940857,0.911959171295166,0.113065786659718,0.394393920898438,0.787121653556824,0.192846432328224,0.58587521314621,0.864901006221771,0.0519208051264286,0.499249815940857,0.906421720981598,0.0424889847636223,0.420231252908707,0.932954430580139,0.0962190106511116,0.346897512674332,0.911959171295166,0.113065786659718,0.394393920898438,0.942768275737762,0.0841220244765282,0.322663217782974,0.932954430580139,0.0962190106511116,0.346897512674332,0.906421720981598,0.0424889847636223,0.420231252908707,0.914319574832916,0.0844556987285614,0.39608958363533,0.914319574832916,0.0844556987285614,0.39608958363533,0.923866987228394,0.119930803775787,0.363437175750732,0.952221989631653,0.0937439054250717,0.290663540363312,0.942768275737762,0.0841220244765282,0.322663217782974,0.952221989631653,0.0937439054250717,0.290663540363312,0.923866987228394,0.119930803775787,0.363437175750732,0.935607671737671,0.127907514572144,0.329056054353714,0.958870708942413,0.0859369188547134,0.270521432161331,0.961383700370789,-0.0141447344794869,0.274847626686096,0.958870708942413,0.0859369188547134,0.270521432161331,0.935607671737671,0.127907514572144,0.329056054353714,0.937009036540985,0.0365108624100685,0.347391545772552,0.865864813327789,-0.244937121868134,0.436215370893478,0.728446424007416,0.0299061667174101,0.684449672698975,0.693493843078613,0.0652938857674599,0.717497706413269,0.922428011894226,-0.117696180939674,0.367796540260315,0.693493843078613,0.0652938857674599,0.717497706413269,0.728446424007416,0.0299061667174101,0.684449672698975,0.670880019664764,0.222317710518837,0.707456588745117, +0.506538450717926,0.35728532075882,0.784707605838776,0.506538450717926,0.35728532075882,0.784707605838776,0.670880019664764,0.222317710518837,0.707456588745117,0.635132551193237,0.263100773096085,0.726212561130524,0.303445369005203,0.533744275569916,0.789327561855316,0.303445369005203,0.533744275569916,0.789327561855316,0.635132551193237,0.263100773096085,0.726212561130524,0.640452027320862,0.263455778360367,0.721396088600159,0.137337356805801,0.722086846828461,0.678033173084259,-0.0297253429889679,0.909728527069092,0.41413825750351,0.625394225120544,0.404965937137604,0.666996717453003,0.622280716896057,0.667579412460327,0.408784151077271,-0.06700499355793,0.994928181171417,0.0750212520360947,-0.0590334795415401,0.956456422805786,-0.285842895507813,0.618020355701447,0.785884976387024,-0.0208719410002232,0.593331158161163,0.705877184867859,-0.386905193328857,-0.0566010028123856,0.79650491476059,-0.601976931095123,-0.0566010028123856,0.79650491476059,-0.601976931095123,0.593331158161163,0.705877184867859,-0.386905193328857,0.562604904174805,0.47051990032196,-0.6797696352005,-0.0279301386326551,0.524339079856873,-0.851051330566406,0.00497608492150903,0.23583111166954,-0.971781313419342,0.561478435993195,0.156363993883133,-0.812583804130554,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.00314091914333403,0.0235500894486904,-0.999717712402344,0.00314091914333403,0.0235500894486904,-0.999717712402344,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.629554569721222,-0.156398087739944,-0.761052370071411,-0.0376804433763027,-0.112856008112431,-0.992896676063538,-0.0376804433763027,-0.112856008112431,-0.992896676063538,0.629554569721222,-0.156398087739944,-0.761052370071411,0.560076117515564,-0.328557282686234,-0.760502934455872,0.0169326551258564,-0.267134785652161,-0.963510394096375,0.0169326551258564,-0.267134785652161,-0.963510394096375,0.560076117515564,-0.328557282686234,-0.760502934455872,0.569199740886688,-0.610584735870361,-0.550634264945984,0.137499734759331,-0.576561152935028,-0.805401206016541, +0.137499734759331,-0.576561152935028,-0.805401206016541,0.569199740886688,-0.610584735870361,-0.550634264945984,0.650948166847229,-0.721578299999237,-0.235778078436852,0.18784736096859,-0.823827624320984,-0.534809589385986,0.18784736096859,-0.823827624320984,-0.534809589385986,0.650948166847229,-0.721578299999237,-0.235778078436852,0.832132518291473,-0.552799046039581,0.0443682745099068,0.214595526456833,-0.886546909809113,-0.409857720136642,0.214595526456833,-0.886546909809113,-0.409857720136642,0.832132518291473,-0.552799046039581,0.0443682745099068,0.859106063842773,-0.322601586580276,0.397322475910187,0.290042757987976,-0.933156549930573,-0.212353453040123,0.290042757987976,-0.933156549930573,-0.212353453040123,0.859106063842773,-0.322601586580276,0.397322475910187,0.654786825180054,-0.314872235059738,0.687102377414703,0.308196067810059,-0.929700613021851,0.201672926545143,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.914259970188141,-0.121510900557041,0.386476278305054,0.902530372142792,-0.35335385799408,0.246129766106606,0.921344876289368,-0.0625667944550514,0.383678495883942,0.914259970188141,-0.121510900557041,0.386476278305054,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.951263964176178,-0.308376729488373,0.000831042882055044,0.901318550109863,-0.0963632464408875,0.422301977872849,0.921344876289368,-0.0625667944550514,0.383678495883942,0.951263964176178,-0.308376729488373,0.000831042882055044,0.904256820678711,-0.421132415533066,0.0704780519008636,0.781028568744659,-0.59827983379364,0.179041042923927,0.84453934431076,-0.210837811231613,0.492240488529205,0.901318550109863,-0.0963632464408875,0.422301977872849,0.904256820678711,-0.421132415533066,0.0704780519008636,0.640131115913391,-0.681664824485779,0.354351758956909,0.857174754142761,0.043364193290472,0.513196885585785,0.803415179252625,-0.116373643279076,0.583935976028442,0.671599566936493,-0.681275546550751,0.291234880685806,0.974750101566315,-0.045559749007225,0.218601688742638, +0.939677953720093,0.0602788403630257,0.336707323789597,0.62893533706665,-0.667118549346924,0.399240911006927,0.643931031227112,-0.56351912021637,0.51749324798584,0.634391725063324,-0.482863157987595,0.603647530078888,0.963482141494751,-0.171603187918663,0.205558836460114,0.974750101566315,-0.045559749007225,0.218601688742638,0.643931031227112,-0.56351912021637,0.51749324798584,0.924330651760101,-0.0850117579102516,0.372002333402634,0.946859240531921,-0.191882118582726,0.258145034313202,0.641735076904297,-0.278842389583588,0.71443897485733,0.65424245595932,-0.0184063781052828,0.756060779094696,0.947714447975159,-0.0529348738491535,0.314698785543442,0.924330651760101,-0.0850117579102516,0.372002333402634,0.65424245595932,-0.0184063781052828,0.756060779094696,0.70997554063797,0.0398490242660046,0.703098118305206,0.952737152576447,-0.0828121080994606,0.292290896177292,0.947714447975159,-0.0529348738491535,0.314698785543442,0.70997554063797,0.0398490242660046,0.703098118305206,0.762000799179077,0.0454963818192482,0.645975947380066,0.936217725276947,-0.111827485263348,0.333153009414673,0.952737152576447,-0.0828121080994606,0.292290896177292,0.762000799179077,0.0454963818192482,0.645975947380066,0.801447927951813,0.0991645157337189,0.589785993099213,0.924568891525269,-0.0491753444075584,0.377828150987625,0.936217725276947,-0.111827485263348,0.333153009414673,0.801447927951813,0.0991645157337189,0.589785993099213,0.824441313743591,0.217866167426109,0.522332072257996,0.917489290237427,0.0241320412606001,0.397027730941772,0.924568891525269,-0.0491753444075584,0.377828150987625,0.824441313743591,0.217866167426109,0.522332072257996,0.824443161487579,0.300075590610504,0.479841858148575,0.84398627281189,0.0889337509870529,0.528940320014954,0.917489290237427,0.0241320412606001,0.397027730941772,0.824443161487579,0.300075590610504,0.479841858148575,0.809130072593689,0.28206992149353,0.515504598617554,0.704593360424042,0.0669577419757843,0.706445336341858,0.84398627281189,0.0889337509870529,0.528940320014954,0.809130072593689,0.28206992149353,0.515504598617554, +0.780444979667664,0.102822296321392,0.616711437702179,0.945193707942963,-0.0446834750473499,0.323438256978989,0.887743651866913,-0.0200925394892693,0.459899425506592,0.948820292949677,0.0114547479897738,0.315608501434326,0.97018700838089,-0.0247758682817221,0.241087809205055,0.887743651866913,-0.0200925394892693,0.459899425506592,0.864185392856598,0.167587146162987,0.474445015192032,0.943103075027466,0.0936429277062416,0.319041430950165,0.948820292949677,0.0114547479897738,0.315608501434326,0.943103075027466,0.0936429277062416,0.319041430950165,0.864185392856598,0.167587146162987,0.474445015192032,0.763710796833038,0.452770233154297,0.460157662630081,0.951627790927887,0.163443192839622,0.260174661874771,0.951627790927887,0.163443192839622,0.260174661874771,0.763710796833038,0.452770233154297,0.460157662630081,0.250713855028152,0.911273539066315,0.326684862375259,0.973378658294678,0.186897665262222,0.132677718997002,0.971945106983185,0.2304517775774,0.047060638666153,-0.372783452272415,0.926246881484985,0.0556701570749283,-0.463998109102249,0.878996551036835,-0.109867215156555,0.963071823120117,0.266878843307495,0.035615399479866,0.952061474323273,0.305601835250854,-0.0136559177190065,-0.389676988124847,0.859412610530853,-0.331001073122025,-0.226254805922508,0.785781145095825,-0.575636088848114,0.930095791816711,0.342338055372238,-0.133141040802002,0.930095791816711,0.342338055372238,-0.133141040802002,-0.226254805922508,0.785781145095825,-0.575636088848114,-0.0176147297024727,0.596212863922119,-0.802633166313171,0.929100692272186,0.20589192211628,-0.307213842868805,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.111689388751984,0.199150756001472,-0.973583281040192,0.102727375924587,-0.0390267632901669,-0.993943750858307,0.798786997795105,-0.165355756878853,-0.57844352722168,0.798786997795105,-0.165355756878853,-0.57844352722168,0.102727375924587,-0.0390267632901669,-0.993943750858307,0.0498217418789864,-0.1882054656744,-0.980865120887756,0.758833229541779,-0.263335734605789,-0.595673024654388,0.758833229541779,-0.263335734605789,-0.595673024654388, +0.0498217418789864,-0.1882054656744,-0.980865120887756,-0.061635535210371,-0.241510957479477,-0.968438744544983,0.716414868831635,-0.323539286851883,-0.618119895458221,0.716414868831635,-0.323539286851883,-0.618119895458221,-0.061635535210371,-0.241510957479477,-0.968438744544983,-0.107462324202061,-0.419666409492493,-0.901294589042664,0.702991306781769,-0.382353067398071,-0.599674344062805,0.702991306781769,-0.382353067398071,-0.599674344062805,-0.107462324202061,-0.419666409492493,-0.901294589042664,-0.0494586639106274,-0.758598744869232,-0.649678111076355,0.685542404651642,-0.561854779720306,-0.462980389595032,0.685542404651642,-0.561854779720306,-0.462980389595032,-0.0494586639106274,-0.758598744869232,-0.649678111076355,-0.0597462244331837,-0.903311491012573,-0.424804270267487,0.634013175964355,-0.754983603954315,-0.167412519454956,0.634013175964355,-0.754983603954315,-0.167412519454956,-0.0597462244331837,-0.903311491012573,-0.424804270267487,-0.108800806105137,-0.916919946670532,-0.383953273296356,0.687629699707031,-0.708999276161194,-0.156478196382523,0.799663960933685,-0.564416527748108,-0.204869613051414,0.687629699707031,-0.708999276161194,-0.156478196382523,-0.108800806105137,-0.916919946670532,-0.383953273296356,-0.0492255687713623,-0.998270094394684,0.0321501307189465,-0.0492255687713623,-0.998270094394684,0.0321501307189465,0.534100592136383,-0.534268260002136,0.655205249786377,0.949510335922241,-0.313602358102798,0.00914688967168331,0.799663960933685,-0.564416527748108,-0.204869613051414,0.91729736328125,-0.0667859390377998,0.392562180757523,0.88076651096344,-0.065249428153038,0.469034016132355,0.887743651866913,-0.0200925394892693,0.459899425506592,0.945193707942963,-0.0446834750473499,0.323438256978989,0.88076651096344,-0.065249428153038,0.469034016132355,0.871415734291077,0.104148454964161,0.479361802339554,0.864185392856598,0.167587146162987,0.474445015192032,0.887743651866913,-0.0200925394892693,0.459899425506592,0.763710796833038,0.452770233154297,0.460157662630081,0.864185392856598,0.167587146162987,0.474445015192032, +0.871415734291077,0.104148454964161,0.479361802339554,0.550086200237274,0.511288642883301,0.660294711589813,0.550086200237274,0.511288642883301,0.660294711589813,-0.220280572772026,0.837858080863953,0.49947002530098,0.250713855028152,0.911273539066315,0.326684862375259,0.763710796833038,0.452770233154297,0.460157662630081,-0.401779115200043,0.893144249916077,0.202155500650406,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.463998109102249,0.878996551036835,-0.109867215156555,-0.372783452272415,0.926246881484985,0.0556701570749283,-0.226254805922508,0.785781145095825,-0.575636088848114,-0.389676988124847,0.859412610530853,-0.331001073122025,-0.39429759979248,0.850684344768524,-0.347657203674316,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.0176147297024727,0.596212863922119,-0.802633166313171,-0.226254805922508,0.785781145095825,-0.575636088848114,0.102727375924587,-0.0390267632901669,-0.993943750858307,0.111689388751984,0.199150756001472,-0.973583281040192,-0.148644089698792,0.235805153846741,-0.960364937782288,-0.130063101649284,0.00817450508475304,-0.991471946239471,0.0498217418789864,-0.1882054656744,-0.980865120887756,0.102727375924587,-0.0390267632901669,-0.993943750858307,-0.130063101649284,0.00817450508475304,-0.991471946239471,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.061635535210371,-0.241510957479477,-0.968438744544983,0.0498217418789864,-0.1882054656744,-0.980865120887756,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.195894375443459,-0.191160574555397,-0.961812376976013,-0.107462324202061,-0.419666409492493,-0.901294589042664,-0.061635535210371,-0.241510957479477,-0.968438744544983,-0.195894375443459,-0.191160574555397,-0.961812376976013,-0.143866658210754,-0.477115094661713,-0.866985380649567,-0.0494586639106274,-0.758598744869232,-0.649678111076355,-0.107462324202061,-0.419666409492493,-0.901294589042664,-0.143866658210754,-0.477115094661713,-0.866985380649567, +-0.112310647964478,-0.781480193138123,-0.613738477230072,-0.0597462244331837,-0.903311491012573,-0.424804270267487,-0.0494586639106274,-0.758598744869232,-0.649678111076355,-0.112310647964478,-0.781480193138123,-0.613738477230072,-0.178519800305367,-0.850810825824738,-0.494218230247498,-0.108800806105137,-0.916919946670532,-0.383953273296356,-0.0597462244331837,-0.903311491012573,-0.424804270267487,-0.178519800305367,-0.850810825824738,-0.494218230247498,-0.2487733066082,-0.868550360202789,-0.42863991856575,-0.0492255687713623,-0.998270094394684,0.0321501307189465,-0.108800806105137,-0.916919946670532,-0.383953273296356,-0.2487733066082,-0.868550360202789,-0.42863991856575,-0.112244084477425,-0.986817300319672,0.116588704288006,-0.112244084477425,-0.986817300319672,0.116588704288006,0.282774657011032,-0.492954045534134,0.822821259498596,0.534100592136383,-0.534268260002136,0.655205249786377,-0.0492255687713623,-0.998270094394684,0.0321501307189465,0.946859240531921,-0.191882118582726,0.258145034313202,0.963482141494751,-0.171603187918663,0.205558836460114,0.634391725063324,-0.482863157987595,0.603647530078888,0.641735076904297,-0.278842389583588,0.71443897485733,-0.0279301386326551,0.524339079856873,-0.851051330566406,0.562604904174805,0.47051990032196,-0.6797696352005,0.561478435993195,0.156363993883133,-0.812583804130554,0.00497608492150903,0.23583111166954,-0.971781313419342,0.111689388751984,0.199150756001472,-0.973583281040192,-0.0176147297024727,0.596212863922119,-0.802633166313171,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.148644089698792,0.235805153846741,-0.960364937782288,0.929100692272186,0.20589192211628,-0.307213842868805,-0.0176147297024727,0.596212863922119,-0.802633166313171,0.111689388751984,0.199150756001472,-0.973583281040192,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.803415179252625,-0.116373643279076,0.583935976028442,0.84453934431076,-0.210837811231613,0.492240488529205,0.781028568744659,-0.59827983379364,0.179041042923927,0.671599566936493,-0.681275546550751,0.291234880685806, +0.137337356805801,0.722086846828461,0.678033173084259,0.640452027320862,0.263455778360367,0.721396088600159,0.625394225120544,0.404965937137604,0.666996717453003,-0.0297253429889679,0.909728527069092,0.41413825750351,-0.372783452272415,0.926246881484985,0.0556701570749283,0.250713855028152,0.911273539066315,0.326684862375259,-0.220280572772026,0.837858080863953,0.49947002530098,-0.401779115200043,0.893144249916077,0.202155500650406,0.973378658294678,0.186897665262222,0.132677718997002,0.250713855028152,0.911273539066315,0.326684862375259,-0.372783452272415,0.926246881484985,0.0556701570749283,0.971945106983185,0.2304517775774,0.047060638666153,0.939677953720093,0.0602788403630257,0.336707323789597,0.857174754142761,0.043364193290472,0.513196885585785,0.640131115913391,-0.681664824485779,0.354351758956909,0.62893533706665,-0.667118549346924,0.399240911006927,-0.06700499355793,0.994928181171417,0.0750212520360947,0.622280716896057,0.667579412460327,0.408784151077271,0.618020355701447,0.785884976387024,-0.0208719410002232,-0.0590334795415401,0.956456422805786,-0.285842895507813,-0.389676988124847,0.859412610530853,-0.331001073122025,-0.463998109102249,0.878996551036835,-0.109867215156555,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.39429759979248,0.850684344768524,-0.347657203674316,0.963071823120117,0.266878843307495,0.035615399479866,-0.463998109102249,0.878996551036835,-0.109867215156555,-0.389676988124847,0.859412610530853,-0.331001073122025,0.952061474323273,0.305601835250854,-0.0136559177190065,0.902530372142792,-0.35335385799408,0.246129766106606,0.914259970188141,-0.121510900557041,0.386476278305054,0.728446424007416,0.0299061667174101,0.684449672698975,0.865864813327789,-0.244937121868134,0.436215370893478,0.670880019664764,0.222317710518837,0.707456588745117,0.728446424007416,0.0299061667174101,0.684449672698975,0.914259970188141,-0.121510900557041,0.386476278305054,0.921344876289368,-0.0625667944550514,0.383678495883942,0.635132551193237,0.263100773096085,0.726212561130524,0.670880019664764,0.222317710518837,0.707456588745117, +0.921344876289368,-0.0625667944550514,0.383678495883942,0.901318550109863,-0.0963632464408875,0.422301977872849,0.640452027320862,0.263455778360367,0.721396088600159,0.635132551193237,0.263100773096085,0.726212561130524,0.901318550109863,-0.0963632464408875,0.422301977872849,0.84453934431076,-0.210837811231613,0.492240488529205,0.625394225120544,0.404965937137604,0.666996717453003,0.640452027320862,0.263455778360367,0.721396088600159,0.84453934431076,-0.210837811231613,0.492240488529205,0.803415179252625,-0.116373643279076,0.583935976028442,0.622280716896057,0.667579412460327,0.408784151077271,0.625394225120544,0.404965937137604,0.666996717453003,0.803415179252625,-0.116373643279076,0.583935976028442,0.857174754142761,0.043364193290472,0.513196885585785,0.618020355701447,0.785884976387024,-0.0208719410002232,0.622280716896057,0.667579412460327,0.408784151077271,0.857174754142761,0.043364193290472,0.513196885585785,0.939677953720093,0.0602788403630257,0.336707323789597,0.593331158161163,0.705877184867859,-0.386905193328857,0.618020355701447,0.785884976387024,-0.0208719410002232,0.939677953720093,0.0602788403630257,0.336707323789597,0.974750101566315,-0.045559749007225,0.218601688742638,0.562604904174805,0.47051990032196,-0.6797696352005,0.593331158161163,0.705877184867859,-0.386905193328857,0.974750101566315,-0.045559749007225,0.218601688742638,0.963482141494751,-0.171603187918663,0.205558836460114,0.561478435993195,0.156363993883133,-0.812583804130554,0.562604904174805,0.47051990032196,-0.6797696352005,0.963482141494751,-0.171603187918663,0.205558836460114,0.946859240531921,-0.191882118582726,0.258145034313202,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.561478435993195,0.156363993883133,-0.812583804130554,0.946859240531921,-0.191882118582726,0.258145034313202,0.924330651760101,-0.0850117579102516,0.372002333402634,0.629554569721222,-0.156398087739944,-0.761052370071411,0.634804606437683,-0.0485061928629875,-0.771148681640625,0.924330651760101,-0.0850117579102516,0.372002333402634,0.947714447975159,-0.0529348738491535,0.314698785543442, +0.560076117515564,-0.328557282686234,-0.760502934455872,0.629554569721222,-0.156398087739944,-0.761052370071411,0.947714447975159,-0.0529348738491535,0.314698785543442,0.952737152576447,-0.0828121080994606,0.292290896177292,0.569199740886688,-0.610584735870361,-0.550634264945984,0.560076117515564,-0.328557282686234,-0.760502934455872,0.952737152576447,-0.0828121080994606,0.292290896177292,0.936217725276947,-0.111827485263348,0.333153009414673,0.650948166847229,-0.721578299999237,-0.235778078436852,0.569199740886688,-0.610584735870361,-0.550634264945984,0.936217725276947,-0.111827485263348,0.333153009414673,0.924568891525269,-0.0491753444075584,0.377828150987625,0.832132518291473,-0.552799046039581,0.0443682745099068,0.650948166847229,-0.721578299999237,-0.235778078436852,0.924568891525269,-0.0491753444075584,0.377828150987625,0.917489290237427,0.0241320412606001,0.397027730941772,0.859106063842773,-0.322601586580276,0.397322475910187,0.832132518291473,-0.552799046039581,0.0443682745099068,0.917489290237427,0.0241320412606001,0.397027730941772,0.84398627281189,0.0889337509870529,0.528940320014954,0.654786825180054,-0.314872235059738,0.687102377414703,0.859106063842773,-0.322601586580276,0.397322475910187,0.84398627281189,0.0889337509870529,0.528940320014954,0.704593360424042,0.0669577419757843,0.706445336341858,0.534100592136383,-0.534268260002136,0.655205249786377,0.282774657011032,-0.492954045534134,0.822821259498596,0.399955660104752,-0.122806280851364,0.908269882202148,0.777473151683807,-0.164916008710861,0.606908798217773,0.922428011894226,-0.117696180939674,0.367796540260315,0.693493843078613,0.0652938857674599,0.717497706413269,0.88076651096344,-0.065249428153038,0.469034016132355,0.91729736328125,-0.0667859390377998,0.392562180757523,0.693493843078613,0.0652938857674599,0.717497706413269,0.506538450717926,0.35728532075882,0.784707605838776,0.871415734291077,0.104148454964161,0.479361802339554,0.88076651096344,-0.065249428153038,0.469034016132355,0.550086200237274,0.511288642883301,0.660294711589813,0.871415734291077,0.104148454964161,0.479361802339554, +0.506538450717926,0.35728532075882,0.784707605838776,0.303445369005203,0.533744275569916,0.789327561855316,0.137337356805801,0.722086846828461,0.678033173084259,-0.220280572772026,0.837858080863953,0.49947002530098,0.550086200237274,0.511288642883301,0.660294711589813,0.303445369005203,0.533744275569916,0.789327561855316,-0.401779115200043,0.893144249916077,0.202155500650406,-0.220280572772026,0.837858080863953,0.49947002530098,0.137337356805801,0.722086846828461,0.678033173084259,-0.0297253429889679,0.909728527069092,0.41413825750351,-0.06700499355793,0.994928181171417,0.0750212520360947,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.401779115200043,0.893144249916077,0.202155500650406,-0.0297253429889679,0.909728527069092,0.41413825750351,-0.39429759979248,0.850684344768524,-0.347657203674316,-0.415264666080475,0.90579754114151,-0.0841780975461006,-0.06700499355793,0.994928181171417,0.0750212520360947,-0.0590334795415401,0.956456422805786,-0.285842895507813,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.39429759979248,0.850684344768524,-0.347657203674316,-0.0590334795415401,0.956456422805786,-0.285842895507813,-0.0566010028123856,0.79650491476059,-0.601976931095123,-0.0279301386326551,0.524339079856873,-0.851051330566406,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.355492681264877,0.712098479270935,-0.605426132678986,-0.0566010028123856,0.79650491476059,-0.601976931095123,-0.148644089698792,0.235805153846741,-0.960364937782288,-0.257442891597748,0.499906361103058,-0.82693213224411,-0.0279301386326551,0.524339079856873,-0.851051330566406,0.00497608492150903,0.23583111166954,-0.971781313419342,-0.130063101649284,0.00817450508475304,-0.991471946239471,-0.148644089698792,0.235805153846741,-0.960364937782288,0.00497608492150903,0.23583111166954,-0.971781313419342,0.00314091914333403,0.0235500894486904,-0.999717712402344,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.130063101649284,0.00817450508475304,-0.991471946239471,0.00314091914333403,0.0235500894486904,-0.999717712402344, +-0.0376804433763027,-0.112856008112431,-0.992896676063538,-0.195894375443459,-0.191160574555397,-0.961812376976013,-0.179193526506424,-0.112113378942013,-0.977404832839966,-0.0376804433763027,-0.112856008112431,-0.992896676063538,0.0169326551258564,-0.267134785652161,-0.963510394096375,-0.143866658210754,-0.477115094661713,-0.866985380649567,-0.195894375443459,-0.191160574555397,-0.961812376976013,0.0169326551258564,-0.267134785652161,-0.963510394096375,0.137499734759331,-0.576561152935028,-0.805401206016541,-0.112310647964478,-0.781480193138123,-0.613738477230072,-0.143866658210754,-0.477115094661713,-0.866985380649567,0.137499734759331,-0.576561152935028,-0.805401206016541,0.18784736096859,-0.823827624320984,-0.534809589385986,-0.178519800305367,-0.850810825824738,-0.494218230247498,-0.112310647964478,-0.781480193138123,-0.613738477230072,0.18784736096859,-0.823827624320984,-0.534809589385986,0.214595526456833,-0.886546909809113,-0.409857720136642,-0.2487733066082,-0.868550360202789,-0.42863991856575,-0.178519800305367,-0.850810825824738,-0.494218230247498,0.214595526456833,-0.886546909809113,-0.409857720136642,0.290042757987976,-0.933156549930573,-0.212353453040123,-0.112244084477425,-0.986817300319672,0.116588704288006,-0.2487733066082,-0.868550360202789,-0.42863991856575,0.290042757987976,-0.933156549930573,-0.212353453040123,0.308196067810059,-0.929700613021851,0.201672926545143,0.308196067810059,-0.929700613021851,0.201672926545143,0.654786825180054,-0.314872235059738,0.687102377414703,0.282774657011032,-0.492954045534134,0.822821259498596,-0.112244084477425,-0.986817300319672,0.116588704288006,0.399955660104752,-0.122806280851364,0.908269882202148,0.282774657011032,-0.492954045534134,0.822821259498596,0.654786825180054,-0.314872235059738,0.687102377414703,0.704593360424042,0.0669577419757843,0.706445336341858,0.780444979667664,0.102822296321392,0.616711437702179,0.777473151683807,-0.164916008710861,0.606908798217773,0.399955660104752,-0.122806280851364,0.908269882202148,0.704593360424042,0.0669577419757843,0.706445336341858, +0.946084856987,-0.140076950192451,0.292064756155014,0.966974794864655,-0.204627946019173,0.151944443583488,0.777473151683807,-0.164916008710861,0.606908798217773,0.780444979667664,0.102822296321392,0.616711437702179,0.780444979667664,0.102822296321392,0.616711437702179,0.809130072593689,0.28206992149353,0.515504598617554,0.849553465843201,0.330861002206802,0.410840421915054,0.946084856987,-0.140076950192451,0.292064756155014,0.727731168270111,0.510997116565704,0.457481563091278,0.849553465843201,0.330861002206802,0.410840421915054,0.809130072593689,0.28206992149353,0.515504598617554,0.824443161487579,0.300075590610504,0.479841858148575,0.727731168270111,0.510997116565704,0.457481563091278,0.824443161487579,0.300075590610504,0.479841858148575,0.824441313743591,0.217866167426109,0.522332072257996,0.69241726398468,0.398123800754547,0.601710796356201,0.801447927951813,0.0991645157337189,0.589785993099213,0.712208926677704,0.203920528292656,0.671695649623871,0.69241726398468,0.398123800754547,0.601710796356201,0.824441313743591,0.217866167426109,0.522332072257996,0.775300860404968,0.0572843737900257,0.628988981246948,0.712208926677704,0.203920528292656,0.671695649623871,0.801447927951813,0.0991645157337189,0.589785993099213,0.762000799179077,0.0454963818192482,0.645975947380066,0.70997554063797,0.0398490242660046,0.703098118305206,0.819959878921509,0.00309151108376682,0.572412669658661,0.775300860404968,0.0572843737900257,0.628988981246948,0.762000799179077,0.0454963818192482,0.645975947380066,0.65424245595932,-0.0184063781052828,0.756060779094696,0.849036872386932,-0.0140870260074735,0.528145670890808,0.819959878921509,0.00309151108376682,0.572412669658661,0.70997554063797,0.0398490242660046,0.703098118305206,0.83646947145462,-0.198363229632378,0.510853052139282,0.641735076904297,-0.278842389583588,0.71443897485733,0.634391725063324,-0.482863157987595,0.603647530078888,0.821050524711609,-0.34096160531044,0.457844227552414,0.641735076904297,-0.278842389583588,0.71443897485733,0.83646947145462,-0.198363229632378,0.510853052139282, +0.849036872386932,-0.0140870260074735,0.528145670890808,0.65424245595932,-0.0184063781052828,0.756060779094696,0.821050524711609,-0.34096160531044,0.457844227552414,0.634391725063324,-0.482863157987595,0.603647530078888,0.643931031227112,-0.56351912021637,0.51749324798584,0.745959103107452,-0.528664886951447,0.405041337013245,0.62893533706665,-0.667118549346924,0.399240911006927,0.640131115913391,-0.681664824485779,0.354351758956909,0.745959103107452,-0.528664886951447,0.405041337013245,0.643931031227112,-0.56351912021637,0.51749324798584,0.671599566936493,-0.681275546550751,0.291234880685806,0.781028568744659,-0.59827983379364,0.179041042923927,0.745959103107452,-0.528664886951447,0.405041337013245,0.640131115913391,-0.681664824485779,0.354351758956909,0.781028568744659,-0.59827983379364,0.179041042923927,0.904256820678711,-0.421132415533066,0.0704780519008636,0.911594092845917,-0.365250021219254,0.18864980340004,0.745959103107452,-0.528664886951447,0.405041337013245,0.95483011007309,-0.288762539625168,0.070111446082592,0.911594092845917,-0.365250021219254,0.18864980340004,0.904256820678711,-0.421132415533066,0.0704780519008636,0.951263964176178,-0.308376729488373,0.000831042882055044,0.959436595439911,-0.277830600738525,0.0478714220225811,0.95483011007309,-0.288762539625168,0.070111446082592,0.951263964176178,-0.308376729488373,0.000831042882055044,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.923373401165009,-0.348017007112503,0.162066772580147,0.959436595439911,-0.277830600738525,0.0478714220225811,0.961337685585022,-0.269319504499435,-0.0574190393090248,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.911594092845917,-0.365250021219254,0.18864980340004,0.930769860744476,-0.145906195044518,0.335229486227036,0.821050524711609,-0.34096160531044,0.457844227552414,0.745959103107452,-0.528664886951447,0.405041337013245,0.929600656032562,-0.0477374866604805,0.365463882684708,0.83646947145462,-0.198363229632378,0.510853052139282,0.821050524711609,-0.34096160531044,0.457844227552414,0.930769860744476,-0.145906195044518,0.335229486227036, +0.894357562065125,-0.110856242477894,0.433399796485901,0.849036872386932,-0.0140870260074735,0.528145670890808,0.83646947145462,-0.198363229632378,0.510853052139282,0.929600656032562,-0.0477374866604805,0.365463882684708,0.819959878921509,0.00309151108376682,0.572412669658661,0.849036872386932,-0.0140870260074735,0.528145670890808,0.894357562065125,-0.110856242477894,0.433399796485901,0.824273407459259,-0.163596123456955,0.542042136192322,0.775300860404968,0.0572843737900257,0.628988981246948,0.819959878921509,0.00309151108376682,0.572412669658661,0.824273407459259,-0.163596123456955,0.542042136192322,0.736697912216187,0.0184263195842505,0.675970911979675,0.736697912216187,0.0184263195842505,0.675970911979675,0.737134635448456,-0.0549518167972565,0.673507928848267,0.712208926677704,0.203920528292656,0.671695649623871,0.775300860404968,0.0572843737900257,0.628988981246948,0.830455124378204,0.126324638724327,0.542573690414429,0.69241726398468,0.398123800754547,0.601710796356201,0.712208926677704,0.203920528292656,0.671695649623871,0.737134635448456,-0.0549518167972565,0.673507928848267,0.909037172794342,-0.204508885741234,0.363080441951752,0.930769860744476,-0.145906195044518,0.335229486227036,0.911594092845917,-0.365250021219254,0.18864980340004,0.95483011007309,-0.288762539625168,0.070111446082592,0.959436595439911,-0.277830600738525,0.0478714220225811,0.89477813243866,-0.148949444293976,0.420934796333313,0.909037172794342,-0.204508885741234,0.363080441951752,0.95483011007309,-0.288762539625168,0.070111446082592,0.89477813243866,-0.148949444293976,0.420934796333313,0.929600656032562,-0.0477374866604805,0.365463882684708,0.930769860744476,-0.145906195044518,0.335229486227036,0.909037172794342,-0.204508885741234,0.363080441951752,0.89477813243866,-0.148949444293976,0.420934796333313,0.959436595439911,-0.277830600738525,0.0478714220225811,0.923373401165009,-0.348017007112503,0.162066772580147,0.850171804428101,-0.27052628993988,0.451689451932907,0.850171804428101,-0.27052628993988,0.451689451932907,0.894357562065125,-0.110856242477894,0.433399796485901, +0.929600656032562,-0.0477374866604805,0.365463882684708,0.89477813243866,-0.148949444293976,0.420934796333313,0.819830298423767,-0.322179704904556,0.473369419574738,0.824273407459259,-0.163596123456955,0.542042136192322,0.894357562065125,-0.110856242477894,0.433399796485901,0.850171804428101,-0.27052628993988,0.451689451932907,0.819830298423767,-0.322179704904556,0.473369419574738,0.737134635448456,-0.0549518167972565,0.673507928848267,0.736697912216187,0.0184263195842505,0.675970911979675,0.824273407459259,-0.163596123456955,0.542042136192322,0.878611743450165,-0.381455481052399,0.287285715341568,0.819830298423767,-0.322179704904556,0.473369419574738,0.850171804428101,-0.27052628993988,0.451689451932907,0.923373401165009,-0.348017007112503,0.162066772580147,0.737134635448456,-0.0549518167972565,0.673507928848267,0.819830298423767,-0.322179704904556,0.473369419574738,0.878611743450165,-0.381455481052399,0.287285715341568,0.830455124378204,0.126324638724327,0.542573690414429,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.923127830028534,-0.383502662181854,-0.027582885697484,0.878611743450165,-0.381455481052399,0.287285715341568,0.923373401165009,-0.348017007112503,0.162066772580147,0.923127830028534,-0.383502662181854,-0.027582885697484,0.988159596920013,0.0504882745444775,0.144884407520294,0.830455124378204,0.126324638724327,0.542573690414429,0.878611743450165,-0.381455481052399,0.287285715341568,0.830455124378204,0.126324638724327,0.542573690414429,0.988159596920013,0.0504882745444775,0.144884407520294,0.727731168270111,0.510997116565704,0.457481563091278,0.69241726398468,0.398123800754547,0.601710796356201,0.992866992950439,0.118977770209312,-0.00771740125492215,0.849553465843201,0.330861002206802,0.410840421915054,0.727731168270111,0.510997116565704,0.457481563091278,0.988159596920013,0.0504882745444775,0.144884407520294,0.923127830028534,-0.383502662181854,-0.027582885697484,0.924724698066711,-0.373777091503143,-0.0719366818666458,0.902530372142792,-0.35335385799408,0.246129766106606,0.922197282314301,-0.365359276533127,-0.126746743917465, +0.988159596920013,0.0504882745444775,0.144884407520294,0.923127830028534,-0.383502662181854,-0.027582885697484,0.922197282314301,-0.365359276533127,-0.126746743917465,0.992866992950439,0.118977770209312,-0.00771740125492215,0.922197282314301,-0.365359276533127,-0.126746743917465,0.902530372142792,-0.35335385799408,0.246129766106606,0.865864813327789,-0.244937121868134,0.436215370893478,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.992866992950439,0.118977770209312,-0.00771740125492215,0.922197282314301,-0.365359276533127,-0.126746743917465,0.652465879917145,-0.309646725654602,-0.691669821739197,0.842729508876801,0.0403632298111916,-0.536822021007538,0.875657081604004,-0.0230466760694981,0.482383280992508,0.811973512172699,-0.313396215438843,0.492424458265305,0.842729508876801,0.0403632298111916,-0.536822021007538,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.938480615615845,-0.0792247131466866,0.336121410131454,0.875657081604004,-0.0230466760694981,0.482383280992508,0.914948642253876,-0.273785412311554,-0.296497106552124,0.652465879917145,-0.309646725654602,-0.691669821739197,0.811973512172699,-0.313396215438843,0.492424458265305,0.926337361335754,-0.258206903934479,0.274277895689011,0.914948642253876,-0.273785412311554,-0.296497106552124,0.926337361335754,-0.258206903934479,0.274277895689011,0.946084856987,-0.140076950192451,0.292064756155014,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.811973512172699,-0.313396215438843,0.492424458265305,0.875657081604004,-0.0230466760694981,0.482383280992508,0.938480615615845,-0.0792247131466866,0.336121410131454,0.926337361335754,-0.258206903934479,0.274277895689011,0.842729508876801,0.0403632298111916,-0.536822021007538,0.652465879917145,-0.309646725654602,-0.691669821739197,0.914948642253876,-0.273785412311554,-0.296497106552124,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.989428877830505,-0.105288341641426,-0.0997243225574493, +0.914948642253876,-0.273785412311554,-0.296497106552124,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.969196081161499,-0.236172884702682,-0.0698664113879204,0.865864813327789,-0.244937121868134,0.436215370893478,0.922428011894226,-0.117696180939674,0.367796540260315,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.989428877830505,-0.105288341641426,-0.0997243225574493,0.922428011894226,-0.117696180939674,0.367796540260315,0.91729736328125,-0.0667859390377998,0.392562180757523,0.938480615615845,-0.0792247131466866,0.336121410131454,0.926337361335754,-0.258206903934479,0.274277895689011,0.938480615615845,-0.0792247131466866,0.336121410131454,0.968835592269897,-0.0854190215468407,0.232510715723038,0.966275095939636,-0.204047128558159,0.157090455293655,0.938480615615845,-0.0792247131466866,0.336121410131454,0.91729736328125,-0.0667859390377998,0.392562180757523,0.945193707942963,-0.0446834750473499,0.323438256978989,0.968835592269897,-0.0854190215468407,0.232510715723038,0.946084856987,-0.140076950192451,0.292064756155014,0.926337361335754,-0.258206903934479,0.274277895689011,0.966275095939636,-0.204047128558159,0.157090455293655,0.966974794864655,-0.204627946019173,0.151944443583488,0.946084856987,-0.140076950192451,0.292064756155014,0.849553465843201,0.330861002206802,0.410840421915054,0.992866992950439,0.118977770209312,-0.00771740125492215,0.992887914180756,-0.109178952872753,-0.0474711582064629,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.93919163942337,-0.289291888475418,-0.185011476278305,0.970032155513763,-0.168102562427521,-0.175439640879631,0.938031852245331,-0.247648492455482,-0.242418184876442,0.955960512161255,-0.197021514177322,0.217535957694054,0.975469470024109,-0.177975580096245,0.129553586244583,0.978523850440979,-0.125670671463013,0.163395091891289,0.956452369689941,-0.186609178781509,0.224445641040802,0.979095160961151,-0.175281122326851,0.103194668889046,0.975469470024109,-0.177975580096245,0.129553586244583, +0.955960512161255,-0.197021514177322,0.217535957694054,0.95965588092804,-0.171769678592682,0.222611382603645,0.97018700838089,-0.0247758682817221,0.241087809205055,0.985617160797119,-0.0366762354969978,0.164965406060219,0.968835592269897,-0.0854190215468407,0.232510715723038,0.945193707942963,-0.0446834750473499,0.323438256978989,0.978523850440979,-0.125670671463013,0.163395091891289,0.981810450553894,-0.0882908776402473,0.168086409568787,0.958805739879608,-0.162935703992844,0.232687652111053,0.956452369689941,-0.186609178781509,0.224445641040802,0.961383700370789,-0.0141447344794869,0.274847626686096,0.965821146965027,-0.0894738808274269,0.243277609348297,0.974596858024597,0.0424520932137966,0.219906210899353,0.958870708942413,0.0859369188547134,0.270521432161331,0.972173810005188,0.0678136348724365,0.224230602383614,0.952221989631653,0.0937439054250717,0.290663540363312,0.958870708942413,0.0859369188547134,0.270521432161331,0.974596858024597,0.0424520932137966,0.219906210899353,0.987412750720978,-0.0044169332832098,0.158103331923485,0.982922613620758,0.0160325933247805,0.183319360017776,0.972173810005188,0.0678136348724365,0.224230602383614,0.974596858024597,0.0424520932137966,0.219906210899353,0.952221989631653,0.0937439054250717,0.290663540363312,0.972173810005188,0.0678136348724365,0.224230602383614,0.966921269893646,0.0556005649268627,0.248941779136658,0.942768275737762,0.0841220244765282,0.322663217782974,0.982922613620758,0.0160325933247805,0.183319360017776,0.974100351333618,0.0250669457018375,0.22472271323204,0.966921269893646,0.0556005649268627,0.248941779136658,0.972173810005188,0.0678136348724365,0.224230602383614,0.966275095939636,-0.204047128558159,0.157090455293655,0.975469470024109,-0.177975580096245,0.129553586244583,0.979095160961151,-0.175281122326851,0.103194668889046,0.966974794864655,-0.204627946019173,0.151944443583488,0.978523850440979,-0.125670671463013,0.163395091891289,0.975469470024109,-0.177975580096245,0.129553586244583,0.966275095939636,-0.204047128558159,0.157090455293655,0.968835592269897,-0.0854190215468407,0.232510715723038, +0.985617160797119,-0.0366762354969978,0.164965406060219,0.981810450553894,-0.0882908776402473,0.168086409568787,0.978523850440979,-0.125670671463013,0.163395091891289,0.968835592269897,-0.0854190215468407,0.232510715723038,0.981810450553894,-0.0882908776402473,0.168086409568787,0.982539415359497,-0.0605739802122116,0.17591817677021,0.965821146965027,-0.0894738808274269,0.243277609348297,0.958805739879608,-0.162935703992844,0.232687652111053,0.97018700838089,-0.0247758682817221,0.241087809205055,0.982922613620758,0.0160325933247805,0.183319360017776,0.987412750720978,-0.0044169332832098,0.158103331923485,0.985617160797119,-0.0366762354969978,0.164965406060219,0.948820292949677,0.0114547479897738,0.315608501434326,0.974100351333618,0.0250669457018375,0.22472271323204,0.982922613620758,0.0160325933247805,0.183319360017776,0.97018700838089,-0.0247758682817221,0.241087809205055,0.965821146965027,-0.0894738808274269,0.243277609348297,0.982539415359497,-0.0605739802122116,0.17591817677021,0.987412750720978,-0.0044169332832098,0.158103331923485,0.974596858024597,0.0424520932137966,0.219906210899353,0.985617160797119,-0.0366762354969978,0.164965406060219,0.987412750720978,-0.0044169332832098,0.158103331923485,0.982539415359497,-0.0605739802122116,0.17591817677021,0.981810450553894,-0.0882908776402473,0.168086409568787,0.970032155513763,-0.168102562427521,-0.175439640879631,0.93919163942337,-0.289291888475418,-0.185011476278305,0.799663960933685,-0.564416527748108,-0.204869613051414,0.949510335922241,-0.313602358102798,0.00914688967168331,0.990661561489105,-0.0985424667596817,0.0942294076085091,0.967040598392487,-0.115117870271206,0.227112993597984,0.984486639499664,-0.103614754974842,0.141597986221313,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.970032155513763,-0.168102562427521,-0.175439640879631,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.984486639499664,-0.103614754974842,0.141597986221313,0.938031852245331,-0.247648492455482,-0.242418184876442,0.967040598392487,-0.115117870271206,0.227112993597984, +0.990661561489105,-0.0985424667596817,0.0942294076085091,0.979095160961151,-0.175281122326851,0.103194668889046,0.95965588092804,-0.171769678592682,0.222611382603645,0.966974794864655,-0.204627946019173,0.151944443583488,0.979095160961151,-0.175281122326851,0.103194668889046,0.990661561489105,-0.0985424667596817,0.0942294076085091,0.982503831386566,-0.137144461274147,0.126006171107292,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.993854641914368,-0.0928921699523926,0.060199610888958,0.982503831386566,-0.137144461274147,0.126006171107292,0.990661561489105,-0.0985424667596817,0.0942294076085091,0.970032155513763,-0.168102562427521,-0.175439640879631,0.949510335922241,-0.313602358102798,0.00914688967168331,0.993854641914368,-0.0928921699523926,0.060199610888958,0.99647045135498,-0.0610249526798725,0.0576416961848736,0.534100592136383,-0.534268260002136,0.655205249786377,0.982503831386566,-0.137144461274147,0.126006171107292,0.993854641914368,-0.0928921699523926,0.060199610888958,0.949510335922241,-0.313602358102798,0.00914688967168331,0.982503831386566,-0.137144461274147,0.126006171107292,0.534100592136383,-0.534268260002136,0.655205249786377,0.777473151683807,-0.164916008710861,0.606908798217773,0.966974794864655,-0.204627946019173,0.151944443583488,0.93919163942337,-0.289291888475418,-0.185011476278305,0.926034092903137,-0.373746484518051,0.0526725798845291,0.687629699707031,-0.708999276161194,-0.156478196382523,0.799663960933685,-0.564416527748108,-0.204869613051414,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.972091734409332,-0.19378337264061,0.132233992218971,0.926034092903137,-0.373746484518051,0.0526725798845291,0.93919163942337,-0.289291888475418,-0.185011476278305,0.926034092903137,-0.373746484518051,0.0526725798845291,0.936240255832672,-0.34966179728508,-0.0345064513385296,0.634013175964355,-0.754983603954315,-0.167412519454956,0.687629699707031,-0.708999276161194,-0.156478196382523,0.972091734409332,-0.19378337264061,0.132233992218971,0.985939145088196,-0.159022495150566,-0.051341850310564, +0.936240255832672,-0.34966179728508,-0.0345064513385296,0.926034092903137,-0.373746484518051,0.0526725798845291,0.685542404651642,-0.561854779720306,-0.462980389595032,0.634013175964355,-0.754983603954315,-0.167412519454956,0.936240255832672,-0.34966179728508,-0.0345064513385296,0.938230693340302,-0.262705355882645,-0.225186720490456,0.985939145088196,-0.159022495150566,-0.051341850310564,0.97196090221405,-0.152993887662888,-0.178563609719276,0.938230693340302,-0.262705355882645,-0.225186720490456,0.936240255832672,-0.34966179728508,-0.0345064513385296,0.702991306781769,-0.382353067398071,-0.599674344062805,0.685542404651642,-0.561854779720306,-0.462980389595032,0.938230693340302,-0.262705355882645,-0.225186720490456,0.933903932571411,-0.245449021458626,-0.25995796918869,0.933903932571411,-0.245449021458626,-0.25995796918869,0.938230693340302,-0.262705355882645,-0.225186720490456,0.97196090221405,-0.152993887662888,-0.178563609719276,0.957486629486084,-0.184700474143028,-0.221596762537956,0.716414868831635,-0.323539286851883,-0.618119895458221,0.702991306781769,-0.382353067398071,-0.599674344062805,0.933903932571411,-0.245449021458626,-0.25995796918869,0.93233996629715,-0.243075132369995,-0.267687529325485,0.944222986698151,-0.212333366274834,-0.251709252595901,0.93233996629715,-0.243075132369995,-0.267687529325485,0.933903932571411,-0.245449021458626,-0.25995796918869,0.957486629486084,-0.184700474143028,-0.221596762537956,0.940533101558685,-0.199141666293144,-0.275209188461304,0.930727899074554,-0.228274136781693,-0.285721004009247,0.93233996629715,-0.243075132369995,-0.267687529325485,0.944222986698151,-0.212333366274834,-0.251709252595901,0.758833229541779,-0.263335734605789,-0.595673024654388,0.716414868831635,-0.323539286851883,-0.618119895458221,0.93233996629715,-0.243075132369995,-0.267687529325485,0.930727899074554,-0.228274136781693,-0.285721004009247,0.798786997795105,-0.165355756878853,-0.57844352722168,0.758833229541779,-0.263335734605789,-0.595673024654388,0.930727899074554,-0.228274136781693,-0.285721004009247, +0.939685344696045,-0.176109403371811,-0.293217957019806,0.945234417915344,-0.137335374951363,-0.296092659235001,0.939685344696045,-0.176109403371811,-0.293217957019806,0.930727899074554,-0.228274136781693,-0.285721004009247,0.940533101558685,-0.199141666293144,-0.275209188461304,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.798786997795105,-0.165355756878853,-0.57844352722168,0.939685344696045,-0.176109403371811,-0.293217957019806,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.939685344696045,-0.176109403371811,-0.293217957019806,0.945234417915344,-0.137335374951363,-0.296092659235001,0.955026984214783,-0.051256325095892,-0.292055010795593,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.970383882522583,0.0250233355909586,-0.24026857316494,0.985621094703674,0.0365986451506615,-0.164959043264389,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.955026984214783,-0.051256325095892,-0.292055010795593,0.846378862857819,-0.0145594403147697,-0.532382309436798,0.959094822406769,-0.0774712786078453,-0.272277772426605,0.985621094703674,0.0365986451506615,-0.164959043264389,0.929100692272186,0.20589192211628,-0.307213842868805,0.970383882522583,0.0250233355909586,-0.24026857316494,0.988576829433441,0.0620807446539402,-0.137338176369667,0.996430158615112,0.0729457512497902,-0.042496208101511,0.985621094703674,0.0365986451506615,-0.164959043264389,0.930095791816711,0.342338055372238,-0.133141040802002,0.929100692272186,0.20589192211628,-0.307213842868805,0.985621094703674,0.0365986451506615,-0.164959043264389,0.996430158615112,0.0729457512497902,-0.042496208101511,0.952061474323273,0.305601835250854,-0.0136559177190065,0.930095791816711,0.342338055372238,-0.133141040802002,0.996430158615112,0.0729457512497902,-0.042496208101511,0.997910022735596,0.0556039623916149,0.0329231843352318,0.976938724517822,0.019720233976841,0.212607473134995,0.970829784870148,0.0159736219793558,0.239236995577812,0.943103075027466,0.0936429277062416,0.319041430950165,0.951627790927887,0.163443192839622,0.260174661874771, +0.988910734653473,0.0384650677442551,0.143442898988724,0.976938724517822,0.019720233976841,0.212607473134995,0.951627790927887,0.163443192839622,0.260174661874771,0.973378658294678,0.186897665262222,0.132677718997002,0.973378658294678,0.186897665262222,0.132677718997002,0.971945106983185,0.2304517775774,0.047060638666153,0.996085703372955,0.0419612489640713,0.0777981355786324,0.988910734653473,0.0384650677442551,0.143442898988724,0.971945106983185,0.2304517775774,0.047060638666153,0.963071823120117,0.266878843307495,0.035615399479866,0.997484982013702,0.0432191453874111,0.0561778098344803,0.996085703372955,0.0419612489640713,0.0777981355786324,0.963071823120117,0.266878843307495,0.035615399479866,0.952061474323273,0.305601835250854,-0.0136559177190065,0.997910022735596,0.0556039623916149,0.0329231843352318,0.997484982013702,0.0432191453874111,0.0561778098344803,0.974100351333618,0.0250669457018375,0.22472271323204,0.948820292949677,0.0114547479897738,0.315608501434326,0.943103075027466,0.0936429277062416,0.319041430950165,0.970829784870148,0.0159736219793558,0.239236995577812,0.970829784870148,0.0159736219793558,0.239236995577812,0.949044108390808,0.0498211532831192,0.31118032336235,0.966921269893646,0.0556005649268627,0.248941779136658,0.974100351333618,0.0250669457018375,0.22472271323204,0.949044108390808,0.0498211532831192,0.31118032336235,0.970829784870148,0.0159736219793558,0.239236995577812,0.976938724517822,0.019720233976841,0.212607473134995,0.960659623146057,0.0338883921504021,0.275653272867203,0.960659623146057,0.0338883921504021,0.275653272867203,0.976938724517822,0.019720233976841,0.212607473134995,0.988910734653473,0.0384650677442551,0.143442898988724,0.977930426597595,0.0641225203871727,0.198847070336342,0.977930426597595,0.0641225203871727,0.198847070336342,0.988910734653473,0.0384650677442551,0.143442898988724,0.996085703372955,0.0419612489640713,0.0777981355786324,0.989530563354492,0.0796420350670815,0.120359174907207,0.989530563354492,0.0796420350670815,0.120359174907207,0.996085703372955,0.0419612489640713,0.0777981355786324, +0.997484982013702,0.0432191453874111,0.0561778098344803,0.996394753456116,0.0641462877392769,0.0555225983262062,0.996394753456116,0.0641462877392769,0.0555225983262062,0.997484982013702,0.0432191453874111,0.0561778098344803,0.997910022735596,0.0556039623916149,0.0329231843352318,0.997803330421448,0.0609460808336735,-0.0259629245847464,0.997803330421448,0.0609460808336735,-0.0259629245847464,0.997910022735596,0.0556039623916149,0.0329231843352318,0.996430158615112,0.0729457512497902,-0.042496208101511,0.988576829433441,0.0620807446539402,-0.137338176369667,0.942768275737762,0.0841220244765282,0.322663217782974,0.966921269893646,0.0556005649268627,0.248941779136658,0.949044108390808,0.0498211532831192,0.31118032336235,0.932954430580139,0.0962190106511116,0.346897512674332,0.949044108390808,0.0498211532831192,0.31118032336235,0.921738266944885,0.0887763872742653,0.377514630556107,0.911959171295166,0.113065786659718,0.394393920898438,0.932954430580139,0.0962190106511116,0.346897512674332,0.787121653556824,0.192846432328224,0.58587521314621,0.911959171295166,0.113065786659718,0.394393920898438,0.921738266944885,0.0887763872742653,0.377514630556107,0.845208823680878,0.180517926812172,0.503026068210602,0.605829894542694,0.242477983236313,0.757743120193481,0.787121653556824,0.192846432328224,0.58587521314621,0.845208823680878,0.180517926812172,0.503026068210602,0.675026774406433,0.278837263584137,0.683072924613953,0.470622628927231,0.244484126567841,0.847786426544189,0.605829894542694,0.242477983236313,0.757743120193481,0.675026774406433,0.278837263584137,0.683072924613953,0.525900959968567,0.292911231517792,0.798518180847168,0.34012496471405,0.232896134257317,0.911084234714508,0.470622628927231,0.244484126567841,0.847786426544189,0.525900959968567,0.292911231517792,0.798518180847168,0.378590941429138,0.300119280815125,0.875555515289307,0.224436596035957,0.21460622549057,0.95056426525116,0.34012496471405,0.232896134257317,0.911084234714508,0.378590941429138,0.300119280815125,0.875555515289307,0.237685114145279,0.303838759660721,0.922598421573639, +0.127829760313034,0.190948247909546,0.973241150379181,0.224436596035957,0.21460622549057,0.95056426525116,0.237685114145279,0.303838759660721,0.922598421573639,0.125087037682533,0.303321987390518,0.944642245769501,0.0606001727283001,0.145944327116013,0.987435102462769,0.127829760313034,0.190948247909546,0.973241150379181,0.125087037682533,0.303321987390518,0.944642245769501,0.0415279157459736,0.30098682641983,0.952723741531372,0.0126644959673285,0.124740086495876,0.992108643054962,0.0606001727283001,0.145944327116013,0.987435102462769,0.0415279157459736,0.30098682641983,0.952723741531372,0.0110976947471499,0.29407525062561,0.955717861652374,3.63054823537823e-07,0.15388910472393,0.988088130950928,0.0126644959673285,0.124740086495876,0.992108643054962,0.0110976947471499,0.29407525062561,0.955717861652374,3.70331861176965e-07,0.294343143701553,0.955699801445007,3.78939120082578e-07,0.396793782711029,0.91790771484375,0.0258950460702181,0.398819148540497,0.916663944721222,0.058110199868679,0.588280439376831,0.806566417217255,8.38516669432465e-08,0.584491431713104,0.811399877071381,0.0258950460702181,0.398819148540497,0.916663944721222,0.0572113655507565,0.412366420030594,0.909219980239868,0.0703990161418915,0.603085041046143,0.794564366340637,0.058110199868679,0.588280439376831,0.806566417217255,0.0572113655507565,0.412366420030594,0.909219980239868,0.1373071372509,0.425327479839325,0.894563257694244,0.156789556145668,0.606592118740082,0.779399156570435,0.0703990161418915,0.603085041046143,0.794564366340637,0.1373071372509,0.425327479839325,0.894563257694244,0.2657470703125,0.42672210931778,0.864457488059998,0.289225488901138,0.599415242671967,0.746357798576355,0.156789556145668,0.606592118740082,0.779399156570435,0.2657470703125,0.42672210931778,0.864457488059998,0.416861593723297,0.41656681895256,0.807897686958313,0.437061607837677,0.57153731584549,0.694494187831879,0.289225488901138,0.599415242671967,0.746357798576355,0.416861593723297,0.41656681895256,0.807897686958313,0.576666712760925,0.384265273809433,0.72096860408783, +0.602753698825836,0.505191385746002,0.617632329463959,0.437061607837677,0.57153731584549,0.694494187831879,0.576666712760925,0.384265273809433,0.72096860408783,0.726795554161072,0.320454448461533,0.607517182826996,0.751825571060181,0.405794024467468,0.519701361656189,0.602753698825836,0.505191385746002,0.617632329463959,0.726795554161072,0.320454448461533,0.607517182826996,0.867741763591766,0.189786493778229,0.459352970123291,0.891626000404358,0.245754688978195,0.380273312330246,0.751825571060181,0.405794024467468,0.519701361656189,0.867741763591766,0.189786493778229,0.459352970123291,0.9303337931633,0.0937245115637779,0.354534506797791,0.954199731349945,0.131023362278938,0.268953144550323,0.891626000404358,0.245754688978195,0.380273312330246,3.70331861176965e-07,0.294343143701553,0.955699801445007,0.0110976947471499,0.29407525062561,0.955717861652374,0.0258950460702181,0.398819148540497,0.916663944721222,3.78939120082578e-07,0.396793782711029,0.91790771484375,0.0110976947471499,0.29407525062561,0.955717861652374,0.0415279157459736,0.30098682641983,0.952723741531372,0.0572113655507565,0.412366420030594,0.909219980239868,0.0258950460702181,0.398819148540497,0.916663944721222,0.0415279157459736,0.30098682641983,0.952723741531372,0.125087037682533,0.303321987390518,0.944642245769501,0.1373071372509,0.425327479839325,0.894563257694244,0.0572113655507565,0.412366420030594,0.909219980239868,0.125087037682533,0.303321987390518,0.944642245769501,0.237685114145279,0.303838759660721,0.922598421573639,0.2657470703125,0.42672210931778,0.864457488059998,0.1373071372509,0.425327479839325,0.894563257694244,0.237685114145279,0.303838759660721,0.922598421573639,0.378590941429138,0.300119280815125,0.875555515289307,0.416861593723297,0.41656681895256,0.807897686958313,0.2657470703125,0.42672210931778,0.864457488059998,0.378590941429138,0.300119280815125,0.875555515289307,0.525900959968567,0.292911231517792,0.798518180847168,0.576666712760925,0.384265273809433,0.72096860408783,0.416861593723297,0.41656681895256,0.807897686958313,0.525900959968567,0.292911231517792,0.798518180847168, +0.675026774406433,0.278837263584137,0.683072924613953,0.726795554161072,0.320454448461533,0.607517182826996,0.576666712760925,0.384265273809433,0.72096860408783,0.675026774406433,0.278837263584137,0.683072924613953,0.845208823680878,0.180517926812172,0.503026068210602,0.867741763591766,0.189786493778229,0.459352970123291,0.726795554161072,0.320454448461533,0.607517182826996,0.845208823680878,0.180517926812172,0.503026068210602,0.921738266944885,0.0887763872742653,0.377514630556107,0.9303337931633,0.0937245115637779,0.354534506797791,0.867741763591766,0.189786493778229,0.459352970123291,0.960659623146057,0.0338883921504021,0.275653272867203,0.9303337931633,0.0937245115637779,0.354534506797791,0.921738266944885,0.0887763872742653,0.377514630556107,0.949044108390808,0.0498211532831192,0.31118032336235,0.9303337931633,0.0937245115637779,0.354534506797791,0.960659623146057,0.0338883921504021,0.275653272867203,0.977930426597595,0.0641225203871727,0.198847070336342,0.954199731349945,0.131023362278938,0.268953144550323,0.989530563354492,0.0796420350670815,0.120359174907207,0.971547603607178,0.182237073779106,0.151277899742126,0.954199731349945,0.131023362278938,0.268953144550323,0.977930426597595,0.0641225203871727,0.198847070336342,0.971547603607178,0.182237073779106,0.151277899742126,0.90499746799469,0.313914448022842,0.287118971347809,0.891626000404358,0.245754688978195,0.380273312330246,0.954199731349945,0.131023362278938,0.268953144550323,0.751825571060181,0.405794024467468,0.519701361656189,0.891626000404358,0.245754688978195,0.380273312330246,0.90499746799469,0.313914448022842,0.287118971347809,0.762992441654205,0.522242665290833,0.380926609039307,0.751825571060181,0.405794024467468,0.519701361656189,0.762992441654205,0.522242665290833,0.380926609039307,0.622123301029205,0.643279433250427,0.446267068386078,0.602753698825836,0.505191385746002,0.617632329463959,0.602753698825836,0.505191385746002,0.617632329463959,0.622123301029205,0.643279433250427,0.446267068386078,0.464312165975571,0.728468775749207,0.503733694553375, +0.437061607837677,0.57153731584549,0.694494187831879,0.328172475099564,0.76567405462265,0.553214311599731,0.289225488901138,0.599415242671967,0.746357798576355,0.437061607837677,0.57153731584549,0.694494187831879,0.464312165975571,0.728468775749207,0.503733694553375,0.289225488901138,0.599415242671967,0.746357798576355,0.328172475099564,0.76567405462265,0.553214311599731,0.200046196579933,0.78645932674408,0.584348678588867,0.156789556145668,0.606592118740082,0.779399156570435,0.156789556145668,0.606592118740082,0.779399156570435,0.200046196579933,0.78645932674408,0.584348678588867,0.0968291908502579,0.78747296333313,0.608695685863495,0.0703990161418915,0.603085041046143,0.794564366340637,0.0703990161418915,0.603085041046143,0.794564366340637,0.0968291908502579,0.78747296333313,0.608695685863495,0.0651870667934418,0.788389921188354,0.611712276935577,0.058110199868679,0.588280439376831,0.806566417217255,0.058110199868679,0.588280439376831,0.806566417217255,0.0651870667934418,0.788389921188354,0.611712276935577,-3.37651790971449e-08,0.775006294250488,0.631953537464142,8.38516669432465e-08,0.584491431713104,0.811399877071381,0.944222986698151,-0.212333366274834,-0.251709252595901,0.957486629486084,-0.184700474143028,-0.221596762537956,0.92917388677597,-0.180594369769096,-0.322523593902588,0.904424250125885,-0.21146722137928,-0.370537936687469,0.904424250125885,-0.21146722137928,-0.370537936687469,0.92917388677597,-0.180594369769096,-0.322523593902588,0.838658630847931,-0.203891068696976,-0.505054593086243,0.807295143604279,-0.229477018117905,-0.543704748153687,0.689217746257782,-0.248354837298393,-0.680660486221313,0.714498579502106,-0.221778824925423,-0.663555502891541,0.570639073848724,-0.235795319080353,-0.786620318889618,0.561252772808075,-0.260013580322266,-0.785740613937378,0.471044212579727,-0.273908972740173,-0.838505327701569,0.450328022241592,-0.24593797326088,-0.858323454856873,0.368643432855606,-0.262233227491379,-0.891816020011902,0.406798601150513,-0.29585188627243,-0.864283800125122,0.561252772808075,-0.260013580322266,-0.785740613937378, +0.570639073848724,-0.235795319080353,-0.786620318889618,0.450328022241592,-0.24593797326088,-0.858323454856873,0.471044212579727,-0.273908972740173,-0.838505327701569,0.807295143604279,-0.229477018117905,-0.543704748153687,0.838658630847931,-0.203891068696976,-0.505054593086243,0.714498579502106,-0.221778824925423,-0.663555502891541,0.689217746257782,-0.248354837298393,-0.680660486221313,0.534115433692932,-0.164715558290482,-0.829210162162781,0.471044212579727,-0.273908972740173,-0.838505327701569,0.406798601150513,-0.29585188627243,-0.864283800125122,0.475787192583084,-0.178060233592987,-0.861348450183868,0.593405485153198,-0.153525665402412,-0.790126383304596,0.561252772808075,-0.260013580322266,-0.785740613937378,0.471044212579727,-0.273908972740173,-0.838505327701569,0.534115433692932,-0.164715558290482,-0.829210162162781,0.561252772808075,-0.260013580322266,-0.785740613937378,0.593405485153198,-0.153525665402412,-0.790126383304596,0.701683819293976,-0.147749245166779,-0.697000682353973,0.689217746257782,-0.248354837298393,-0.680660486221313,0.908635377883911,-0.173304617404938,-0.379930704832077,0.904424250125885,-0.21146722137928,-0.370537936687469,0.807295143604279,-0.229477018117905,-0.543704748153687,0.81737619638443,-0.15200386941433,-0.555689573287964,0.81737619638443,-0.15200386941433,-0.555689573287964,0.807295143604279,-0.229477018117905,-0.543704748153687,0.689217746257782,-0.248354837298393,-0.680660486221313,0.701683819293976,-0.147749245166779,-0.697000682353973,0.944222986698151,-0.212333366274834,-0.251709252595901,0.904424250125885,-0.21146722137928,-0.370537936687469,0.908635377883911,-0.173304617404938,-0.379930704832077,0.940533101558685,-0.199141666293144,-0.275209188461304,0.475787192583084,-0.178060233592987,-0.861348450183868,0.52644681930542,0.0210285410284996,-0.849947988986969,0.588890314102173,0.00803658273071051,-0.808173000812531,0.534115433692932,-0.164715558290482,-0.829210162162781,0.534115433692932,-0.164715558290482,-0.829210162162781,0.588890314102173,0.00803658273071051,-0.808173000812531, +0.643712341785431,-0.0050167734734714,-0.765251040458679,0.593405485153198,-0.153525665402412,-0.790126383304596,0.593405485153198,-0.153525665402412,-0.790126383304596,0.643712341785431,-0.0050167734734714,-0.765251040458679,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.701683819293976,-0.147749245166779,-0.697000682353973,0.701683819293976,-0.147749245166779,-0.697000682353973,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.831664323806763,-0.0509964860975742,-0.55293196439743,0.81737619638443,-0.15200386941433,-0.555689573287964,0.908635377883911,-0.173304617404938,-0.379930704832077,0.81737619638443,-0.15200386941433,-0.555689573287964,0.831664323806763,-0.0509964860975742,-0.55293196439743,0.914027333259583,-0.0927668064832687,-0.39490270614624,0.940533101558685,-0.199141666293144,-0.275209188461304,0.908635377883911,-0.173304617404938,-0.379930704832077,0.914027333259583,-0.0927668064832687,-0.39490270614624,0.945234417915344,-0.137335374951363,-0.296092659235001,0.52644681930542,0.0210285410284996,-0.849947988986969,0.546258211135864,0.170718178153038,-0.820034921169281,0.622180461883545,0.141736105084419,-0.769936621189117,0.588890314102173,0.00803658273071051,-0.808173000812531,0.688102960586548,0.117322869598866,-0.716065406799316,0.643712341785431,-0.0050167734734714,-0.765251040458679,0.588890314102173,0.00803658273071051,-0.808173000812531,0.622180461883545,0.141736105084419,-0.769936621189117,0.643712341785431,-0.0050167734734714,-0.765251040458679,0.688102960586548,0.117322869598866,-0.716065406799316,0.770941257476807,0.0789640098810196,-0.631992220878601,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.856478810310364,0.0379295870661736,-0.514786779880524,0.831664323806763,-0.0509964860975742,-0.55293196439743,0.729125201702118,-0.0242772791534662,-0.683949530124664,0.770941257476807,0.0789640098810196,-0.631992220878601,0.856478810310364,0.0379295870661736,-0.514786779880524,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.914027333259583,-0.0927668064832687,-0.39490270614624, +0.831664323806763,-0.0509964860975742,-0.55293196439743,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.955026984214783,-0.051256325095892,-0.292055010795593,0.945234417915344,-0.137335374951363,-0.296092659235001,0.914027333259583,-0.0927668064832687,-0.39490270614624,0.546258211135864,0.170718178153038,-0.820034921169281,0.566569268703461,0.356520175933838,-0.742894768714905,0.660623550415039,0.295197755098343,-0.69024246931076,0.622180461883545,0.141736105084419,-0.769936621189117,0.622180461883545,0.141736105084419,-0.769936621189117,0.660623550415039,0.295197755098343,-0.69024246931076,0.731676697731018,0.238973557949066,-0.638389229774475,0.688102960586548,0.117322869598866,-0.716065406799316,0.688102960586548,0.117322869598866,-0.716065406799316,0.731676697731018,0.238973557949066,-0.638389229774475,0.815724313259125,0.170847624540329,-0.552634537220001,0.770941257476807,0.0789640098810196,-0.631992220878601,0.770941257476807,0.0789640098810196,-0.631992220878601,0.815724313259125,0.170847624540329,-0.552634537220001,0.893019199371338,0.102401807904243,-0.438212871551514,0.856478810310364,0.0379295870661736,-0.514786779880524,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.856478810310364,0.0379295870661736,-0.514786779880524,0.893019199371338,0.102401807904243,-0.438212871551514,0.943421423435211,0.0523654744029045,-0.327435225248337,0.955026984214783,-0.051256325095892,-0.292055010795593,0.924489438533783,-0.0072292392142117,-0.381139189004898,0.943421423435211,0.0523654744029045,-0.327435225248337,0.970383882522583,0.0250233355909586,-0.24026857316494,0.566569268703461,0.356520175933838,-0.742894768714905,0.565610706806183,0.583545327186584,-0.582717299461365,0.671949446201324,0.496658146381378,-0.549376606941223,0.660623550415039,0.295197755098343,-0.69024246931076,0.660623550415039,0.295197755098343,-0.69024246931076,0.671949446201324,0.496658146381378,-0.549376606941223,0.767210483551025,0.393296152353287,-0.506662011146545,0.731676697731018,0.238973557949066,-0.638389229774475,0.731676697731018,0.238973557949066,-0.638389229774475, +0.767210483551025,0.393296152353287,-0.506662011146545,0.859392285346985,0.279522657394409,-0.428149461746216,0.815724313259125,0.170847624540329,-0.552634537220001,0.815724313259125,0.170847624540329,-0.552634537220001,0.859392285346985,0.279522657394409,-0.428149461746216,0.930336058139801,0.167347609996796,-0.326296627521515,0.893019199371338,0.102401807904243,-0.438212871551514,0.943421423435211,0.0523654744029045,-0.327435225248337,0.893019199371338,0.102401807904243,-0.438212871551514,0.930336058139801,0.167347609996796,-0.326296627521515,0.968808591365814,0.0964464396238327,-0.228271663188934,0.970383882522583,0.0250233355909586,-0.24026857316494,0.943421423435211,0.0523654744029045,-0.327435225248337,0.968808591365814,0.0964464396238327,-0.228271663188934,0.988576829433441,0.0620807446539402,-0.137338176369667,0.565610706806183,0.583545327186584,-0.582717299461365,0.544627547264099,0.749089062213898,-0.377155691385269,0.659332871437073,0.658399403095245,-0.363029420375824,0.671949446201324,0.496658146381378,-0.549376606941223,0.781218111515045,0.528859853744507,-0.331670761108398,0.767210483551025,0.393296152353287,-0.506662011146545,0.671949446201324,0.496658146381378,-0.549376606941223,0.659332871437073,0.658399403095245,-0.363029420375824,0.767210483551025,0.393296152353287,-0.506662011146545,0.781218111515045,0.528859853744507,-0.331670761108398,0.892427146434784,0.365392863750458,-0.264692217111588,0.859392285346985,0.279522657394409,-0.428149461746216,0.859392285346985,0.279522657394409,-0.428149461746216,0.892427146434784,0.365392863750458,-0.264692217111588,0.957009434700012,0.223830491304398,-0.184480234980583,0.930336058139801,0.167347609996796,-0.326296627521515,0.930336058139801,0.167347609996796,-0.326296627521515,0.957009434700012,0.223830491304398,-0.184480234980583,0.987574636936188,0.121956363320351,-0.0991108566522598,0.968808591365814,0.0964464396238327,-0.228271663188934,0.968808591365814,0.0964464396238327,-0.228271663188934,0.987574636936188,0.121956363320351,-0.0991108566522598,0.997803330421448,0.0609460808336735,-0.0259629245847464, +0.988576829433441,0.0620807446539402,-0.137338176369667,0.544627547264099,0.749089062213898,-0.377155691385269,0.521591365337372,0.839731931686401,-0.150972828269005,0.63557767868042,0.756734430789948,-0.152951136231422,0.659332871437073,0.658399403095245,-0.363029420375824,0.659332871437073,0.658399403095245,-0.363029420375824,0.63557767868042,0.756734430789948,-0.152951136231422,0.770054936408997,0.622105002403259,-0.141424030065536,0.781218111515045,0.528859853744507,-0.331670761108398,0.781218111515045,0.528859853744507,-0.331670761108398,0.770054936408997,0.622105002403259,-0.141424030065536,0.897646903991699,0.429799139499664,-0.0974820926785469,0.892427146434784,0.365392863750458,-0.264692217111588,0.892427146434784,0.365392863750458,-0.264692217111588,0.897646903991699,0.429799139499664,-0.0974820926785469,0.963172733783722,0.2657470703125,-0.0409478284418583,0.957009434700012,0.223830491304398,-0.184480234980583,0.957009434700012,0.223830491304398,-0.184480234980583,0.963172733783722,0.2657470703125,-0.0409478284418583,0.99001944065094,0.138423517346382,0.0264663714915514,0.987574636936188,0.121956363320351,-0.0991108566522598,0.987574636936188,0.121956363320351,-0.0991108566522598,0.99001944065094,0.138423517346382,0.0264663714915514,0.996394753456116,0.0641462877392769,0.0555225983262062,0.997803330421448,0.0609460808336735,-0.0259629245847464,0.971547603607178,0.182237073779106,0.151277899742126,0.989530563354492,0.0796420350670815,0.120359174907207,0.996394753456116,0.0641462877392769,0.0555225983262062,0.99001944065094,0.138423517346382,0.0264663714915514,0.963172733783722,0.2657470703125,-0.0409478284418583,0.952902376651764,0.297708421945572,0.0578522533178329,0.971547603607178,0.182237073779106,0.151277899742126,0.99001944065094,0.138423517346382,0.0264663714915514,0.521591365337372,0.839731931686401,-0.150972828269005,0.492445111274719,0.868746936321259,0.05269430950284,0.610087811946869,0.791172444820404,0.0428828708827496,0.63557767868042,0.756734430789948,-0.152951136231422,0.63557767868042,0.756734430789948,-0.152951136231422, +0.610087811946869,0.791172444820404,0.0428828708827496,0.743669152259827,0.667196214199066,0.0424903333187103,0.770054936408997,0.622105002403259,-0.141424030065536,0.770054936408997,0.622105002403259,-0.141424030065536,0.743669152259827,0.667196214199066,0.0424903333187103,0.883939743041992,0.464299023151398,0.0554694533348083,0.897646903991699,0.429799139499664,-0.0974820926785469,0.897646903991699,0.429799139499664,-0.0974820926785469,0.883939743041992,0.464299023151398,0.0554694533348083,0.952902376651764,0.297708421945572,0.0578522533178329,0.963172733783722,0.2657470703125,-0.0409478284418583,0.882412493228912,0.439034909009933,0.169104903936386,0.746327102184296,0.630759358406067,0.212458118796349,0.762992441654205,0.522242665290833,0.380926609039307,0.90499746799469,0.313914448022842,0.287118971347809,0.762992441654205,0.522242665290833,0.380926609039307,0.746327102184296,0.630759358406067,0.212458118796349,0.613025426864624,0.755100071430206,0.23243023455143,0.622123301029205,0.643279433250427,0.446267068386078,0.743669152259827,0.667196214199066,0.0424903333187103,0.746327102184296,0.630759358406067,0.212458118796349,0.882412493228912,0.439034909009933,0.169104903936386,0.883939743041992,0.464299023151398,0.0554694533348083,0.613025426864624,0.755100071430206,0.23243023455143,0.746327102184296,0.630759358406067,0.212458118796349,0.743669152259827,0.667196214199066,0.0424903333187103,0.610087811946869,0.791172444820404,0.0428828708827496,0.952902376651764,0.297708421945572,0.0578522533178329,0.883939743041992,0.464299023151398,0.0554694533348083,0.882412493228912,0.439034909009933,0.169104903936386,0.971547603607178,0.182237073779106,0.151277899742126,0.971547603607178,0.182237073779106,0.151277899742126,0.882412493228912,0.439034909009933,0.169104903936386,0.90499746799469,0.313914448022842,0.287118971347809,0.129164814949036,-0.339349329471588,-0.931750297546387,0.122248478233814,-0.293943494558334,-0.94797283411026,0.0509440563619137,-0.305600732564926,-0.950795948505402,0.0510413609445095,-0.341072261333466,-0.938650369644165, +0.161409333348274,-0.199696838855743,-0.966472029685974,0.129164814949036,-0.339349329471588,-0.931750297546387,0.0510413609445095,-0.341072261333466,-0.938650369644165,0.0610240995883942,-0.198125913739204,-0.978275060653687,0.0610240995883942,-0.198125913739204,-0.978275060653687,0.0826811119914055,0.0399862043559551,-0.995773553848267,0.198316425085068,0.0361166931688786,-0.979472398757935,0.161409333348274,-0.199696838855743,-0.966472029685974,0.0826811119914055,0.0399862043559551,-0.995773553848267,0.126609787344933,0.235696777701378,-0.963544011116028,0.244097381830215,0.233473435044289,-0.941226124763489,0.198316425085068,0.0361166931688786,-0.979472398757935,0.126609787344933,0.235696777701378,-0.963544011116028,0.151392564177513,0.496224284172058,-0.85489284992218,0.275048971176147,0.476537972688675,-0.83502072095871,0.244097381830215,0.233473435044289,-0.941226124763489,0.151392564177513,0.496224284172058,-0.85489284992218,0.116176649928093,0.761918485164642,-0.637168228626251,0.243173062801361,0.732398867607117,-0.635970711708069,0.275048971176147,0.476537972688675,-0.83502072095871,0.116176649928093,0.761918485164642,-0.637168228626251,0.0712970197200775,0.915923714637756,-0.394968926906586,0.175521597266197,0.900466620922089,-0.397934854030609,0.243173062801361,0.732398867607117,-0.635970711708069,0.0712970197200775,0.915923714637756,-0.394968926906586,0.0529426261782646,0.98890095949173,-0.138823136687279,0.121498480439186,0.982229888439178,-0.143046751618385,0.175521597266197,0.900466620922089,-0.397934854030609,0.0529426261782646,0.98890095949173,-0.138823136687279,0.0526714846491814,0.995817303657532,0.0746564269065857,0.107867777347565,0.9911749958992,0.0770491063594818,0.121498480439186,0.982229888439178,-0.143046751618385,0.957486629486084,-0.184700474143028,-0.221596762537956,0.97196090221405,-0.152993887662888,-0.178563609719276,0.973700821399689,-0.071295864880085,-0.216387867927551,0.92917388677597,-0.180594369769096,-0.322523593902588,0.997006714344025,-0.0554611533880234,-0.0538670271635056, +0.973700821399689,-0.071295864880085,-0.216387867927551,0.97196090221405,-0.152993887662888,-0.178563609719276,0.985939145088196,-0.159022495150566,-0.051341850310564,0.985939145088196,-0.159022495150566,-0.051341850310564,0.972091734409332,-0.19378337264061,0.132233992218971,0.976261258125305,-0.124434128403664,0.177285045385361,0.997006714344025,-0.0554611533880234,-0.0538670271635056,0.963321030139923,-0.261259317398071,-0.0612877383828163,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.976261258125305,-0.124434128403664,0.177285045385361,0.972091734409332,-0.19378337264061,0.132233992218971,0.0510413609445095,-0.341072261333466,-0.938650369644165,0.0509440563619137,-0.305600732564926,-0.950795948505402,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,0.0610240995883942,-0.198125913739204,-0.978275060653687,0.0510413609445095,-0.341072261333466,-0.938650369644165,9.02392294221954e-09,-0.341732978820801,-0.939797103404999,-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,-7.94607268872483e-10,-0.2061897367239,-0.978512108325958,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,0.0826811119914055,0.0399862043559551,-0.995773553848267,0.0610240995883942,-0.198125913739204,-0.978275060653687,9.18580411735093e-08,0.0372983664274216,-0.999304234981537,1.21700082900134e-07,0.228037610650063,-0.973652303218842,0.126609787344933,0.235696777701378,-0.963544011116028,0.0826811119914055,0.0399862043559551,-0.995773553848267,1.21700082900134e-07,0.228037610650063,-0.973652303218842,1.34849686972416e-08,0.484101951122284,-0.875011622905731,0.151392564177513,0.496224284172058,-0.85489284992218,0.126609787344933,0.235696777701378,-0.963544011116028,1.34849686972416e-08,0.484101951122284,-0.875011622905731,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,0.116176649928093,0.761918485164642,-0.637168228626251,0.151392564177513,0.496224284172058,-0.85489284992218,-2.57043808460367e-08,0.757968664169312,-0.652290999889374,4.49168147120815e-10,0.921280324459076,-0.388899117708206, +0.0712970197200775,0.915923714637756,-0.394968926906586,0.116176649928093,0.761918485164642,-0.637168228626251,4.49168147120815e-10,0.921280324459076,-0.388899117708206,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,0.0529426261782646,0.98890095949173,-0.138823136687279,0.0712970197200775,0.915923714637756,-0.394968926906586,-1.03389430350376e-08,0.989632666110992,-0.143621906638145,6.42563158237408e-09,0.997556865215302,0.0698588863015175,0.0526714846491814,0.995817303657532,0.0746564269065857,0.0529426261782646,0.98890095949173,-0.138823136687279,0.324406921863556,-0.316661387681961,-0.891339302062988,0.288819521665573,-0.280606746673584,-0.915337681770325,0.202779173851013,-0.294267237186432,-0.933963239192963,0.227135673165321,-0.331290990114212,-0.915781378746033,0.384839802980423,-0.188032418489456,-0.903627216815948,0.324406921863556,-0.316661387681961,-0.891339302062988,0.227135673165321,-0.331290990114212,-0.915781378746033,0.276372581720352,-0.195106968283653,-0.94103741645813,0.276372581720352,-0.195106968283653,-0.94103741645813,0.325351297855377,0.0389973521232605,-0.944788753986359,0.438093543052673,0.0334425382316113,-0.898307085037231,0.384839802980423,-0.188032418489456,-0.903627216815948,0.325351297855377,0.0389973521232605,-0.944788753986359,0.354934900999069,0.22577092051506,-0.907220244407654,0.454845368862152,0.202356606721878,-0.867275893688202,0.438093543052673,0.0334425382316113,-0.898307085037231,0.354934900999069,0.22577092051506,-0.907220244407654,0.371971487998962,0.448436200618744,-0.81273740530014,0.463001251220703,0.409111261367798,-0.786293745040894,0.454845368862152,0.202356606721878,-0.867275893688202,0.371971487998962,0.448436200618744,-0.81273740530014,0.353156596422195,0.693709373474121,-0.627732276916504,0.457464814186096,0.645764946937561,-0.611321091651917,0.463001251220703,0.409111261367798,-0.786293745040894,0.353156596422195,0.693709373474121,-0.627732276916504,0.295826852321625,0.866319239139557,-0.402464419603348,0.429483592510223,0.812928259372711,-0.39330843091011, +0.457464814186096,0.645764946937561,-0.611321091651917,0.295826852321625,0.866319239139557,-0.402464419603348,0.234079614281654,0.959807932376862,-0.154840379953384,0.394857794046402,0.906209409236908,-0.151234298944473,0.429483592510223,0.812928259372711,-0.39330843091011,0.234079614281654,0.959807932376862,-0.154840379953384,0.206910818815231,0.975700557231903,0.072085328400135,0.366548269987106,0.927925705909729,0.0677956789731979,0.394857794046402,0.906209409236908,-0.151234298944473,3.01379898814957e-08,0.939260125160217,0.343206197023392,-3.37651790971449e-08,0.775006294250488,0.631953537464142,0.0651870667934418,0.788389921188354,0.611712276935577,0.0593210831284523,0.942984998226166,0.327506184577942,0.0593210831284523,0.942984998226166,0.327506184577942,0.0526714846491814,0.995817303657532,0.0746564269065857,6.42563158237408e-09,0.997556865215302,0.0698588863015175,3.01379898814957e-08,0.939260125160217,0.343206197023392,0.0593210831284523,0.942984998226166,0.327506184577942,0.0651870667934418,0.788389921188354,0.611712276935577,0.0968291908502579,0.78747296333313,0.608695685863495,0.113730780780315,0.936106860637665,0.33282008767128,0.113730780780315,0.936106860637665,0.33282008767128,0.107867777347565,0.9911749958992,0.0770491063594818,0.0526714846491814,0.995817303657532,0.0746564269065857,0.0593210831284523,0.942984998226166,0.327506184577942,0.406798601150513,-0.29585188627243,-0.864283800125122,0.368643432855606,-0.262233227491379,-0.891816020011902,0.288819521665573,-0.280606746673584,-0.915337681770325,0.324406921863556,-0.316661387681961,-0.891339302062988,0.475787192583084,-0.178060233592987,-0.861348450183868,0.406798601150513,-0.29585188627243,-0.864283800125122,0.324406921863556,-0.316661387681961,-0.891339302062988,0.384839802980423,-0.188032418489456,-0.903627216815948,0.384839802980423,-0.188032418489456,-0.903627216815948,0.438093543052673,0.0334425382316113,-0.898307085037231,0.52644681930542,0.0210285410284996,-0.849947988986969,0.475787192583084,-0.178060233592987,-0.861348450183868,0.438093543052673,0.0334425382316113,-0.898307085037231, +0.454845368862152,0.202356606721878,-0.867275893688202,0.546258211135864,0.170718178153038,-0.820034921169281,0.52644681930542,0.0210285410284996,-0.849947988986969,0.454845368862152,0.202356606721878,-0.867275893688202,0.463001251220703,0.409111261367798,-0.786293745040894,0.566569268703461,0.356520175933838,-0.742894768714905,0.546258211135864,0.170718178153038,-0.820034921169281,0.463001251220703,0.409111261367798,-0.786293745040894,0.457464814186096,0.645764946937561,-0.611321091651917,0.565610706806183,0.583545327186584,-0.582717299461365,0.566569268703461,0.356520175933838,-0.742894768714905,0.457464814186096,0.645764946937561,-0.611321091651917,0.429483592510223,0.812928259372711,-0.39330843091011,0.544627547264099,0.749089062213898,-0.377155691385269,0.565610706806183,0.583545327186584,-0.582717299461365,0.429483592510223,0.812928259372711,-0.39330843091011,0.394857794046402,0.906209409236908,-0.151234298944473,0.521591365337372,0.839731931686401,-0.150972828269005,0.544627547264099,0.749089062213898,-0.377155691385269,0.394857794046402,0.906209409236908,-0.151234298944473,0.366548269987106,0.927925705909729,0.0677956789731979,0.492445111274719,0.868746936321259,0.05269430950284,0.521591365337372,0.839731931686401,-0.150972828269005,0.613025426864624,0.755100071430206,0.23243023455143,0.610087811946869,0.791172444820404,0.0428828708827496,0.492445111274719,0.868746936321259,0.05269430950284,0.478356897830963,0.839772462844849,0.256820857524872,0.622123301029205,0.643279433250427,0.446267068386078,0.613025426864624,0.755100071430206,0.23243023455143,0.478356897830963,0.839772462844849,0.256820857524872,0.464312165975571,0.728468775749207,0.503733694553375,0.478356897830963,0.839772462844849,0.256820857524872,0.492445111274719,0.868746936321259,0.05269430950284,0.366548269987106,0.927925705909729,0.0677956789731979,0.35340291261673,0.888349592685699,0.293157488107681,0.35340291261673,0.888349592685699,0.293157488107681,0.328172475099564,0.76567405462265,0.553214311599731,0.464312165975571,0.728468775749207,0.503733694553375, +0.478356897830963,0.839772462844849,0.256820857524872,0.227135673165321,-0.331290990114212,-0.915781378746033,0.202779173851013,-0.294267237186432,-0.933963239192963,0.122248478233814,-0.293943494558334,-0.94797283411026,0.129164814949036,-0.339349329471588,-0.931750297546387,0.276372581720352,-0.195106968283653,-0.94103741645813,0.227135673165321,-0.331290990114212,-0.915781378746033,0.129164814949036,-0.339349329471588,-0.931750297546387,0.161409333348274,-0.199696838855743,-0.966472029685974,0.161409333348274,-0.199696838855743,-0.966472029685974,0.198316425085068,0.0361166931688786,-0.979472398757935,0.325351297855377,0.0389973521232605,-0.944788753986359,0.276372581720352,-0.195106968283653,-0.94103741645813,0.198316425085068,0.0361166931688786,-0.979472398757935,0.244097381830215,0.233473435044289,-0.941226124763489,0.354934900999069,0.22577092051506,-0.907220244407654,0.325351297855377,0.0389973521232605,-0.944788753986359,0.244097381830215,0.233473435044289,-0.941226124763489,0.275048971176147,0.476537972688675,-0.83502072095871,0.371971487998962,0.448436200618744,-0.81273740530014,0.354934900999069,0.22577092051506,-0.907220244407654,0.275048971176147,0.476537972688675,-0.83502072095871,0.243173062801361,0.732398867607117,-0.635970711708069,0.353156596422195,0.693709373474121,-0.627732276916504,0.371971487998962,0.448436200618744,-0.81273740530014,0.243173062801361,0.732398867607117,-0.635970711708069,0.175521597266197,0.900466620922089,-0.397934854030609,0.295826852321625,0.866319239139557,-0.402464419603348,0.353156596422195,0.693709373474121,-0.627732276916504,0.175521597266197,0.900466620922089,-0.397934854030609,0.121498480439186,0.982229888439178,-0.143046751618385,0.234079614281654,0.959807932376862,-0.154840379953384,0.295826852321625,0.866319239139557,-0.402464419603348,0.121498480439186,0.982229888439178,-0.143046751618385,0.107867777347565,0.9911749958992,0.0770491063594818,0.206910818815231,0.975700557231903,0.072085328400135,0.234079614281654,0.959807932376862,-0.154840379953384,0.113730780780315,0.936106860637665,0.33282008767128, +0.0968291908502579,0.78747296333313,0.608695685863495,0.200046196579933,0.78645932674408,0.584348678588867,0.215742841362953,0.92498242855072,0.312829822301865,0.215742841362953,0.92498242855072,0.312829822301865,0.200046196579933,0.78645932674408,0.584348678588867,0.328172475099564,0.76567405462265,0.553214311599731,0.35340291261673,0.888349592685699,0.293157488107681,0.35340291261673,0.888349592685699,0.293157488107681,0.366548269987106,0.927925705909729,0.0677956789731979,0.206910818815231,0.975700557231903,0.072085328400135,0.215742841362953,0.92498242855072,0.312829822301865,0.107867777347565,0.9911749958992,0.0770491063594818,0.113730780780315,0.936106860637665,0.33282008767128,0.215742841362953,0.92498242855072,0.312829822301865,0.206910818815231,0.975700557231903,0.072085328400135,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,-9.81520216214449e-08,-0.293913573026657,-0.955832004547119,0.0509440563619137,-0.305600732564926,-0.950795948505402,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.0509440563619137,-0.305600732564926,-0.950795948505402,0.122248478233814,-0.293943494558334,-0.94797283411026,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.122248478233814,-0.293943494558334,-0.94797283411026,0.202779173851013,-0.294267237186432,-0.933963239192963,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.202779173851013,-0.294267237186432,-0.933963239192963,0.288819521665573,-0.280606746673584,-0.915337681770325,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.368643432855606,-0.262233227491379,-0.891816020011902,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.288819521665573,-0.280606746673584,-0.915337681770325,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.368643432855606,-0.262233227491379,-0.891816020011902, +0.450328022241592,-0.24593797326088,-0.858323454856873,0.482255846261978,-0.066649928689003,-0.873491406440735,0.570639073848724,-0.235795319080353,-0.786620318889618,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.482255846261978,-0.066649928689003,-0.873491406440735,0.450328022241592,-0.24593797326088,-0.858323454856873,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.570639073848724,-0.235795319080353,-0.786620318889618,0.714498579502106,-0.221778824925423,-0.663555502891541,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.838658630847931,-0.203891068696976,-0.505054593086243,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.714498579502106,-0.221778824925423,-0.663555502891541,0.92917388677597,-0.180594369769096,-0.322523593902588,0.973700821399689,-0.071295864880085,-0.216387867927551,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.838658630847931,-0.203891068696976,-0.505054593086243,0.791593611240387,0.609075665473938,-0.0490551590919495,0.847042262554169,0.502337276935577,0.17371392250061,0.728694081306458,0.622112631797791,0.286322861909866,0.684308230876923,0.728986501693726,0.0173510164022446,0.713612794876099,0.623848557472229,-0.31870025396347,0.791593611240387,0.609075665473938,-0.0490551590919495,0.684308230876923,0.728986501693726,0.0173510164022446,0.61449933052063,0.733339667320251,-0.290866613388062,0.61800092458725,0.585912346839905,-0.524195969104767,0.713612794876099,0.623848557472229,-0.31870025396347,0.61449933052063,0.733339667320251,-0.290866613388062,0.541614294052124,0.677623510360718,-0.497473806142807,0.496927082538605,0.529703319072723,-0.687370359897614,0.61800092458725,0.585912346839905,-0.524195969104767,0.541614294052124,0.677623510360718,-0.497473806142807,0.444960027933121,0.612611889839172,-0.653236031532288,0.390261352062225,0.479690968990326,-0.785870671272278,0.496927082538605,0.529703319072723,-0.687370359897614,0.444960027933121,0.612611889839172,-0.653236031532288,0.351476818323135,0.553170502185822,-0.755292236804962, +0.298471510410309,0.447797685861588,-0.842847466468811,0.390261352062225,0.479690968990326,-0.785870671272278,0.351476818323135,0.553170502185822,-0.755292236804962,0.270358949899673,0.506686329841614,-0.818642139434814,0.213099837303162,0.426459789276123,-0.879045188426971,0.298471510410309,0.447797685861588,-0.842847466468811,0.270358949899673,0.506686329841614,-0.818642139434814,0.199552863836288,0.471701383590698,-0.858880877494812,0.131308406591415,0.415217936038971,-0.90019565820694,0.213099837303162,0.426459789276123,-0.879045188426971,0.199552863836288,0.471701383590698,-0.858880877494812,0.128462344408035,0.454629868268967,-0.881367683410645,0.0545922704041004,0.413853853940964,-0.908704876899719,0.131308406591415,0.415217936038971,-0.90019565820694,0.128462344408035,0.454629868268967,-0.881367683410645,0.053086057305336,0.451810449361801,-0.890533089637756,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,0.0545922704041004,0.413853853940964,-0.908704876899719,0.053086057305336,0.451810449361801,-0.890533089637756,1.98165164277952e-08,0.454084575176239,-0.890958487987518,0.847042262554169,0.502337276935577,0.17371392250061,0.852592647075653,0.35051029920578,0.387592852115631,0.726916015148163,0.446397542953491,0.521845161914825,0.728694081306458,0.622112631797791,0.286322861909866,0.852592647075653,0.35051029920578,0.387592852115631,0.776590049266815,0.159818038344383,0.609398126602173,0.656375765800476,0.277168691158295,0.701675295829773,0.726916015148163,0.446397542953491,0.521845161914825,0.776590049266815,0.159818038344383,0.609398126602173,0.757037222385406,0.0738626793026924,0.64918327331543,0.631248354911804,0.231331542134285,0.740277767181396,0.656375765800476,0.277168691158295,0.701675295829773,0.757037222385406,0.0738626793026924,0.64918327331543,0.755365908145905,0.0489600449800491,0.653471648693085,0.599312424659729,0.227614343166351,0.767473995685577,0.631248354911804,0.231331542134285,0.740277767181396,0.755365908145905,0.0489600449800491,0.653471648693085,0.729918420314789,0.0392020680010319,0.682409167289734, +0.565814912319183,0.248613759875298,0.786158204078674,0.599312424659729,0.227614343166351,0.767473995685577,0.729918420314789,0.0392020680010319,0.682409167289734,0.715418756008148,0.062575489282608,0.695888221263885,0.54840475320816,0.272784531116486,0.790468811988831,0.565814912319183,0.248613759875298,0.786158204078674,0.715418756008148,0.062575489282608,0.695888221263885,0.691517293453217,0.0937235057353973,0.716254055500031,0.563102543354034,0.29641380906105,0.771397650241852,0.54840475320816,0.272784531116486,0.790468811988831,0.691517293453217,0.0937235057353973,0.716254055500031,0.670894861221313,0.136083349585533,0.728959083557129,0.582047462463379,0.326349675655365,0.744793057441711,0.563102543354034,0.29641380906105,0.771397650241852,0.670894861221313,0.136083349585533,0.728959083557129,0.610976219177246,0.186938166618347,0.769260764122009,0.566551983356476,0.371688485145569,0.735436320304871,0.582047462463379,0.326349675655365,0.744793057441711,0.610976219177246,0.186938166618347,0.769260764122009,0.511263847351074,0.229410201311111,0.828239262104034,0.395315796136856,0.400195598602295,0.8267822265625,0.566551983356476,0.371688485145569,0.735436320304871,0.511263847351074,0.229410201311111,0.828239262104034,0.347370386123657,0.231676712632179,0.90865820646286,0.213978260755539,0.364422589540482,0.906316459178925,0.395315796136856,0.400195598602295,0.8267822265625,0.347370386123657,0.231676712632179,0.90865820646286,0.271949172019958,0.202169090509415,0.940835416316986,0.150779962539673,0.331106156110764,0.931468784809113,0.213978260755539,0.364422589540482,0.906316459178925,0.271949172019958,0.202169090509415,0.940835416316986,0.119281567633152,0.172357618808746,0.977785646915436,0.0205325204879045,0.307831823825836,0.951219201087952,0.150779962539673,0.331106156110764,0.931468784809113,0.119281567633152,0.172357618808746,0.977785646915436,-0.0153793310746551,0.136903032660484,0.990465044975281,-0.10297329723835,0.31115859746933,0.944762766361237,0.0205325204879045,0.307831823825836,0.951219201087952,-0.0153793310746551,0.136903032660484,0.990465044975281, +-0.0923509448766708,0.110743053257465,0.989548921585083,-0.225802198052406,0.312988340854645,0.922524571418762,-0.10297329723835,0.31115859746933,0.944762766361237,-0.0923509448766708,0.110743053257465,0.989548921585083,-0.168494194746017,0.0982578322291374,0.980793058872223,-0.310137897729874,0.293953686952591,0.904104828834534,-0.225802198052406,0.312988340854645,0.922524571418762,-0.168494194746017,0.0982578322291374,0.980793058872223,-0.126774668693542,0.124518774449825,0.984084963798523,-0.184753134846687,0.297427535057068,0.936697959899902,-0.310137897729874,0.293953686952591,0.904104828834534,-0.126774668693542,0.124518774449825,0.984084963798523,-1.18681050764735e-07,0.127460151910782,0.99184376001358,-1.5048020429731e-07,0.302467465400696,0.953159689903259,-0.184753134846687,0.297427535057068,0.936697959899902,1.68667515509924e-08,0.135232120752335,-0.990813970565796,0.051322091370821,0.132161125540733,-0.989898800849915,0.0452923849225044,0.231373652815819,-0.971809983253479,1.48528812360382e-07,0.231706529855728,-0.972785711288452,0.051322091370821,0.132161125540733,-0.989898800849915,0.124153949320316,0.138728275895119,-0.98251736164093,0.121118932962418,0.239042401313782,-0.963425636291504,0.0452923849225044,0.231373652815819,-0.971809983253479,0.124153949320316,0.138728275895119,-0.98251736164093,0.207228168845177,0.132792174816132,-0.96923816204071,0.211852118372917,0.243508473038673,-0.94647890329361,0.121118932962418,0.239042401313782,-0.963425636291504,0.207228168845177,0.132792174816132,-0.96923816204071,0.285574346780777,0.125350192189217,-0.950123429298401,0.295085906982422,0.239659816026688,-0.924925684928894,0.211852118372917,0.243508473038673,-0.94647890329361,0.285574346780777,0.125350192189217,-0.950123429298401,0.382903873920441,0.11644995957613,-0.916419148445129,0.403909951448441,0.225777745246887,-0.886499404907227,0.295085906982422,0.239659816026688,-0.924925684928894,0.382903873920441,0.11644995957613,-0.916419148445129,0.515001833438873,0.100842840969563,-0.851236581802368,0.550428926944733,0.196756899356842,-0.811365962028503, +0.403909951448441,0.225777745246887,-0.886499404907227,0.515001833438873,0.100842840969563,-0.851236581802368,0.682427048683167,0.0771266594529152,-0.726873219013214,0.716842949390411,0.155831933021545,-0.679597437381744,0.550428926944733,0.196756899356842,-0.811365962028503,0.682427048683167,0.0771266594529152,-0.726873219013214,0.819998681545258,0.045666616410017,-0.5705406665802,0.841564297676086,0.11118533462286,-0.528589963912964,0.716842949390411,0.155831933021545,-0.679597437381744,0.819998681545258,0.045666616410017,-0.5705406665802,0.91990327835083,0.0356822051107883,-0.390518635511398,0.920960783958435,0.0725642070174217,-0.382839053869247,0.841564297676086,0.11118533462286,-0.528589963912964,0.91990327835083,0.0356822051107883,-0.390518635511398,0.981304347515106,0.0225162170827389,-0.191140815615654,0.982601165771484,0.0331035405397415,-0.182754442095757,0.920960783958435,0.0725642070174217,-0.382839053869247,0.981304347515106,0.0225162170827389,-0.191140815615654,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.982601165771484,0.0331035405397415,-0.182754442095757,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.981986045837402,-0.0894603356719017,0.166434153914452,0.983570635318756,-0.0811970829963684,0.161232128739357,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.981986045837402,-0.0894603356719017,0.166434153914452,0.925318956375122,-0.192561462521553,0.326657146215439,0.912356376647949,-0.141616880893707,0.384123086929321,0.983570635318756,-0.0811970829963684,0.161232128739357,0.925318956375122,-0.192561462521553,0.326657146215439,0.872414112091064,-0.313628375530243,0.374874293804169,0.819408297538757,-0.17691445350647,0.545225739479065,0.912356376647949,-0.141616880893707,0.384123086929321,0.872414112091064,-0.313628375530243,0.374874293804169,0.808891654014587,-0.467697739601135,0.35630464553833,0.732613146305084,-0.22996623814106,0.640619695186615,0.819408297538757,-0.17691445350647,0.545225739479065, +0.808891654014587,-0.467697739601135,0.35630464553833,0.801254034042358,-0.551589131355286,0.231821820139885,0.734038114547729,-0.289851725101471,0.614144802093506,0.732613146305084,-0.22996623814106,0.640619695186615,0.801254034042358,-0.551589131355286,0.231821820139885,0.802000761032104,-0.590044140815735,0.0929659008979797,0.788692355155945,-0.369454503059387,0.491393715143204,0.734038114547729,-0.289851725101471,0.614144802093506,0.802000761032104,-0.590044140815735,0.0929659008979797,0.770902872085571,-0.63339626789093,0.0672165155410767,0.820944428443909,-0.437150865793228,0.367354601621628,0.788692355155945,-0.369454503059387,0.491393715143204,0.770902872085571,-0.63339626789093,0.0672165155410767,0.713757395744324,-0.691259980201721,0.11273805052042,0.805763602256775,-0.495398193597794,0.32453915476799,0.820944428443909,-0.437150865793228,0.367354601621628,0.713757395744324,-0.691259980201721,0.11273805052042,0.643780946731567,-0.742869079113007,0.18355256319046,0.75371903181076,-0.530059397220612,0.388516068458557,0.805763602256775,-0.495398193597794,0.32453915476799,0.643780946731567,-0.742869079113007,0.18355256319046,0.557880580425262,-0.793857216835022,0.241991847753525,0.693555176258087,-0.548085689544678,0.467528879642487,0.75371903181076,-0.530059397220612,0.388516068458557,0.557880580425262,-0.793857216835022,0.241991847753525,0.475072354078293,-0.843028664588928,0.252208232879639,0.638139426708221,-0.555814921855927,0.532773792743683,0.693555176258087,-0.548085689544678,0.467528879642487,0.475072354078293,-0.843028664588928,0.252208232879639,0.406699240207672,-0.884667217731476,0.22794634103775,0.592932999134064,-0.562746107578278,0.575975060462952,0.638139426708221,-0.555814921855927,0.532773792743683,0.406699240207672,-0.884667217731476,0.22794634103775,0.322932422161102,-0.926151096820831,0.194830387830734,0.51042777299881,-0.590444564819336,0.625171065330505,0.592932999134064,-0.562746107578278,0.575975060462952,0.322932422161102,-0.926151096820831,0.194830387830734,0.258645862340927,-0.948392689228058,0.183449625968933, +0.386757254600525,-0.659731805324554,0.644338965415955,0.51042777299881,-0.590444564819336,0.625171065330505,0.258645862340927,-0.948392689228058,0.183449625968933,0.164125263690948,-0.975613594055176,0.145743101835251,0.235601052641869,-0.715268850326538,0.657938182353973,0.386757254600525,-0.659731805324554,0.644338965415955,0.164125263690948,-0.975613594055176,0.145743101835251,0.0629032179713249,-0.980971693992615,0.183677971363068,0.0898829028010368,-0.720666646957397,0.687430441379547,0.235601052641869,-0.715268850326538,0.657938182353973,0.0629032179713249,-0.980971693992615,0.183677971363068,1.42591204621567e-07,-0.984854400157928,0.173383504152298,6.02130469928852e-08,-0.702668070793152,0.711517870426178,0.0898829028010368,-0.720666646957397,0.687430441379547,-3.37473665013022e-07,-0.0891835615038872,-0.996015191078186,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.051322091370821,0.132161125540733,-0.989898800849915,1.68667515509924e-08,0.135232120752335,-0.990813970565796,0.0561106503009796,-0.0872161239385605,-0.994607925415039,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.124153949320316,0.138728275895119,-0.98251736164093,0.051322091370821,0.132161125540733,-0.989898800849915,0.126280233263969,-0.0819377601146698,-0.988604843616486,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.207228168845177,0.132792174816132,-0.96923816204071,0.124153949320316,0.138728275895119,-0.98251736164093,0.200559064745903,-0.0835472568869591,-0.97611266374588,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.285574346780777,0.125350192189217,-0.950123429298401,0.207228168845177,0.132792174816132,-0.96923816204071,0.279325723648071,-0.0811716988682747,-0.956759214401245,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.382903873920441,0.11644995957613,-0.916419148445129,0.285574346780777,0.125350192189217,-0.950123429298401,0.369849771261215,-0.0732091665267944,-0.926202774047852,0.482255846261978,-0.066649928689003,-0.873491406440735,0.515001833438873,0.100842840969563,-0.851236581802368, +0.382903873920441,0.11644995957613,-0.916419148445129,0.482255846261978,-0.066649928689003,-0.873491406440735,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.682427048683167,0.0771266594529152,-0.726873219013214,0.515001833438873,0.100842840969563,-0.851236581802368,0.636457085609436,-0.0669363513588905,-0.768402218818665,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.819998681545258,0.045666616410017,-0.5705406665802,0.682427048683167,0.0771266594529152,-0.726873219013214,0.782451927661896,-0.0749091580510139,-0.618188917636871,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.91990327835083,0.0356822051107883,-0.390518635511398,0.819998681545258,0.045666616410017,-0.5705406665802,0.90760737657547,-0.0720455199480057,-0.413591921329498,0.973700821399689,-0.071295864880085,-0.216387867927551,0.981304347515106,0.0225162170827389,-0.191140815615654,0.91990327835083,0.0356822051107883,-0.390518635511398,0.973700821399689,-0.071295864880085,-0.216387867927551,0.997006714344025,-0.0554611533880234,-0.0538670271635056,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.981304347515106,0.0225162170827389,-0.191140815615654,0.997006714344025,-0.0554611533880234,-0.0538670271635056,0.976261258125305,-0.124434128403664,0.177285045385361,0.981986045837402,-0.0894603356719017,0.166434153914452,0.999516606330872,-0.00884868949651718,-0.0298025999218225,0.976261258125305,-0.124434128403664,0.177285045385361,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.925318956375122,-0.192561462521553,0.326657146215439,0.981986045837402,-0.0894603356719017,0.166434153914452,0.941608905792236,-0.334299713373184,-0.0402034483850002,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.872414112091064,-0.313628375530243,0.374874293804169,0.925318956375122,-0.192561462521553,0.326657146215439,0.856882929801941,-0.512663841247559,-0.0541054867208004,0.745865523815155,-0.66082090139389,-0.0836689472198486,0.808891654014587,-0.467697739601135,0.35630464553833,0.872414112091064,-0.313628375530243,0.374874293804169, +0.745865523815155,-0.66082090139389,-0.0836689472198486,0.700287818908691,-0.696540117263794,-0.156297460198402,0.801254034042358,-0.551589131355286,0.231821820139885,0.808891654014587,-0.467697739601135,0.35630464553833,0.700287818908691,-0.696540117263794,-0.156297460198402,0.677948117256165,-0.71640682220459,-0.164764940738678,0.802000761032104,-0.590044140815735,0.0929659008979797,0.801254034042358,-0.551589131355286,0.231821820139885,0.677948117256165,-0.71640682220459,-0.164764940738678,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.770902872085571,-0.63339626789093,0.0672165155410767,0.802000761032104,-0.590044140815735,0.0929659008979797,0.65241277217865,-0.752244353294373,-0.0921202301979065,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.713757395744324,-0.691259980201721,0.11273805052042,0.770902872085571,-0.63339626789093,0.0672165155410767,0.615763127803802,-0.787445247173309,-0.0276748854666948,0.560462832450867,-0.828098118305206,0.0116214090958238,0.643780946731567,-0.742869079113007,0.18355256319046,0.713757395744324,-0.691259980201721,0.11273805052042,0.560462832450867,-0.828098118305206,0.0116214090958238,0.489590495824814,-0.871388077735901,0.0313687920570374,0.557880580425262,-0.793857216835022,0.241991847753525,0.643780946731567,-0.742869079113007,0.18355256319046,0.489590495824814,-0.871388077735901,0.0313687920570374,0.424411624670029,-0.905128479003906,0.0248428620398045,0.475072354078293,-0.843028664588928,0.252208232879639,0.557880580425262,-0.793857216835022,0.241991847753525,0.424411624670029,-0.905128479003906,0.0248428620398045,0.362132221460342,-0.931851267814636,0.0226623974740505,0.406699240207672,-0.884667217731476,0.22794634103775,0.475072354078293,-0.843028664588928,0.252208232879639,0.362132221460342,-0.931851267814636,0.0226623974740505,0.298353463411331,-0.954143464565277,0.0243995748460293,0.322932422161102,-0.926151096820831,0.194830387830734,0.406699240207672,-0.884667217731476,0.22794634103775,0.298353463411331,-0.954143464565277,0.0243995748460293, +0.235530734062195,-0.971323013305664,0.0325096696615219,0.258645862340927,-0.948392689228058,0.183449625968933,0.322932422161102,-0.926151096820831,0.194830387830734,0.235530734062195,-0.971323013305664,0.0325096696615219,0.172015935182571,-0.984178006649017,0.0424752794206142,0.164125263690948,-0.975613594055176,0.145743101835251,0.258645862340927,-0.948392689228058,0.183449625968933,0.172015935182571,-0.984178006649017,0.0424752794206142,0.0893126279115677,-0.993775486946106,0.066584125161171,0.0629032179713249,-0.980971693992615,0.183677971363068,0.164125263690948,-0.975613594055176,0.145743101835251,0.0893126279115677,-0.993775486946106,0.066584125161171,3.53998999003124e-08,-0.997174739837646,0.0751163139939308,1.42591204621567e-07,-0.984854400157928,0.173383504152298,0.0629032179713249,-0.980971693992615,0.183677971363068,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,0.0421977154910564,0.266968548297882,-0.962780892848969,0.0524306744337082,0.265829473733902,-0.96259331703186,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,0.0421977154910564,0.266968548297882,-0.962780892848969,0.122906930744648,0.26610940694809,-0.956075072288513,0.134599775075912,0.262850016355515,-0.955401837825775,0.0524306744337082,0.265829473733902,-0.96259331703186,0.122906930744648,0.26610940694809,-0.956075072288513,0.221275642514229,0.262335985898972,-0.939263999462128,0.235504284501076,0.261066734790802,-0.936152696609497,0.134599775075912,0.262850016355515,-0.955401837825775,0.221275642514229,0.262335985898972,-0.939263999462128,0.315801113843918,0.251591563224792,-0.914861261844635,0.338841140270233,0.254985928535461,-0.90563178062439,0.235504284501076,0.261066734790802,-0.936152696609497,0.315801113843918,0.251591563224792,-0.914861261844635,0.436506778001785,0.233594134449959,-0.868847250938416,0.458467990159988,0.245376154780388,-0.854164838790894,0.338841140270233,0.254985928535461,-0.90563178062439,0.436506778001785,0.233594134449959,-0.868847250938416,0.591074645519257,0.207417994737625,-0.779492437839508, +0.611029326915741,0.235729455947876,-0.755694925785065,0.458467990159988,0.245376154780388,-0.854164838790894,0.591074645519257,0.207417994737625,-0.779492437839508,0.751979172229767,0.168086364865303,-0.637396395206451,0.769784390926361,0.213163912296295,-0.601658582687378,0.611029326915741,0.235729455947876,-0.755694925785065,0.751979172229767,0.168086364865303,-0.637396395206451,0.861584186553955,0.120209991931915,-0.493175595998764,0.876713633537292,0.173148706555367,-0.448768049478531,0.769784390926361,0.213163912296295,-0.601658582687378,0.861584186553955,0.120209991931915,-0.493175595998764,0.930044949054718,0.0694594234228134,-0.360821127891541,0.9448481798172,0.109976790845394,-0.3084916472435,0.876713633537292,0.173148706555367,-0.448768049478531,0.930044949054718,0.0694594234228134,-0.360821127891541,0.983544290065765,0.0161068383604288,-0.179947376251221,0.98707389831543,0.0412889309227467,-0.154855474829674,0.9448481798172,0.109976790845394,-0.3084916472435,0.983544290065765,0.0161068383604288,-0.179947376251221,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.98707389831543,0.0412889309227467,-0.154855474829674,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.980292320251465,-0.109852708876133,0.16419281065464,0.969928443431854,-0.11350966989994,0.215300664305687,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.980292320251465,-0.109852708876133,0.16419281065464,0.927649080753326,-0.173086896538734,0.33092001080513,0.923851847648621,-0.198669716715813,0.327151536941528,0.969928443431854,-0.11350966989994,0.215300664305687,0.927649080753326,-0.173086896538734,0.33092001080513,0.849539875984192,-0.187142178416252,0.49321374297142,0.891455054283142,-0.223491296172142,0.394156754016876,0.923851847648621,-0.198669716715813,0.327151536941528,0.849539875984192,-0.187142178416252,0.49321374297142,0.730802416801453,-0.185328125953674,0.656948506832123,0.808399438858032,-0.223824366927147,0.544419825077057,0.891455054283142,-0.223491296172142,0.394156754016876, +0.730802416801453,-0.185328125953674,0.656948506832123,0.651494562625885,-0.183251723647118,0.736188590526581,0.72381603717804,-0.197181031107903,0.661218702793121,0.808399438858032,-0.223824366927147,0.544419825077057,0.651494562625885,-0.183251723647118,0.736188590526581,0.646958231925964,-0.200475201010704,0.735700070858002,0.650437474250793,-0.166883558034897,0.74099999666214,0.72381603717804,-0.197181031107903,0.661218702793121,0.646958231925964,-0.200475201010704,0.735700070858002,0.699751615524292,-0.23775677382946,0.673661172389984,0.596126854419708,-0.161018744111061,0.786578476428986,0.650437474250793,-0.166883558034897,0.74099999666214,0.699751615524292,-0.23775677382946,0.673661172389984,0.743825554847717,-0.307951986789703,0.593202531337738,0.569577872753143,-0.188596680760384,0.80000764131546,0.596126854419708,-0.161018744111061,0.786578476428986,0.743825554847717,-0.307951986789703,0.593202531337738,0.745765566825867,-0.369670927524567,0.554235637187958,0.597430288791656,-0.226283758878708,0.769332706928253,0.569577872753143,-0.188596680760384,0.80000764131546,0.745765566825867,-0.369670927524567,0.554235637187958,0.735174715518951,-0.408614665269852,0.540880978107452,0.643063962459564,-0.269981235265732,0.716644108295441,0.597430288791656,-0.226283758878708,0.769332706928253,0.735174715518951,-0.408614665269852,0.540880978107452,0.7086101770401,-0.435911774635315,0.554844617843628,0.639258861541748,-0.313730597496033,0.70208340883255,0.643063962459564,-0.269981235265732,0.716644108295441,0.7086101770401,-0.435911774635315,0.554844617843628,0.652298331260681,-0.457809060811996,0.604084253311157,0.592115879058838,-0.369304567575455,0.716249227523804,0.639258861541748,-0.313730597496033,0.70208340883255,0.652298331260681,-0.457809060811996,0.604084253311157,0.526753902435303,-0.501215815544128,0.686522364616394,0.488597840070724,-0.427408516407013,0.760653734207153,0.592115879058838,-0.369304567575455,0.716249227523804,0.526753902435303,-0.501215815544128,0.686522364616394,0.365993618965149,-0.541276335716248,0.757013022899628, +0.358592480421066,-0.481893211603165,0.799493789672852,0.488597840070724,-0.427408516407013,0.760653734207153,0.365993618965149,-0.541276335716248,0.757013022899628,0.206913620233536,-0.568290770053864,0.796387135982513,0.184067040681839,-0.514875173568726,0.837271094322205,0.358592480421066,-0.481893211603165,0.799493789672852,0.206913620233536,-0.568290770053864,0.796387135982513,0.113816358149052,-0.566020905971527,0.816496253013611,0.0849984884262085,-0.517168939113617,0.851652264595032,0.184067040681839,-0.514875173568726,0.837271094322205,0.113816358149052,-0.566020905971527,0.816496253013611,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,0.0849984884262085,-0.517168939113617,0.851652264595032,-8.75981172043794e-08,0.26896545290947,-0.963149726390839,0.0524306744337082,0.265829473733902,-0.96259331703186,0.0570282526314259,0.324915558099747,-0.944022119045258,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,0.0524306744337082,0.265829473733902,-0.96259331703186,0.134599775075912,0.262850016355515,-0.955401837825775,0.137655287981033,0.326971292495728,-0.93495500087738,0.0570282526314259,0.324915558099747,-0.944022119045258,0.134599775075912,0.262850016355515,-0.955401837825775,0.235504284501076,0.261066734790802,-0.936152696609497,0.232782930135727,0.329060286283493,-0.915167391300201,0.137655287981033,0.326971292495728,-0.93495500087738,0.235504284501076,0.261066734790802,-0.936152696609497,0.338841140270233,0.254985928535461,-0.90563178062439,0.336353063583374,0.334030866622925,-0.880505561828613,0.232782930135727,0.329060286283493,-0.915167391300201,0.338841140270233,0.254985928535461,-0.90563178062439,0.458467990159988,0.245376154780388,-0.854164838790894,0.445274382829666,0.345922291278839,-0.825874388217926,0.336353063583374,0.334030866622925,-0.880505561828613,0.458467990159988,0.245376154780388,-0.854164838790894,0.611029326915741,0.235729455947876,-0.755694925785065,0.580357730388641,0.37090077996254,-0.724994778633118, +0.445274382829666,0.345922291278839,-0.825874388217926,0.611029326915741,0.235729455947876,-0.755694925785065,0.769784390926361,0.213163912296295,-0.601658582687378,0.729940891265869,0.388568073511124,-0.562317669391632,0.580357730388641,0.37090077996254,-0.724994778633118,0.769784390926361,0.213163912296295,-0.601658582687378,0.876713633537292,0.173148706555367,-0.448768049478531,0.846309304237366,0.373374283313751,-0.37993723154068,0.729940891265869,0.388568073511124,-0.562317669391632,0.876713633537292,0.173148706555367,-0.448768049478531,0.9448481798172,0.109976790845394,-0.3084916472435,0.931367695331573,0.311559587717056,-0.188374474644661,0.846309304237366,0.373374283313751,-0.37993723154068,0.9448481798172,0.109976790845394,-0.3084916472435,0.98707389831543,0.0412889309227467,-0.154855474829674,0.977538585662842,0.204975366592407,-0.0490257479250431,0.931367695331573,0.311559587717056,-0.188374474644661,0.98707389831543,0.0412889309227467,-0.154855474829674,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.987321078777313,0.106447570025921,0.117754034698009,0.977538585662842,0.204975366592407,-0.0490257479250431,0.99981027841568,-0.0162971559911966,0.0106692928820848,0.969928443431854,-0.11350966989994,0.215300664305687,0.931344091892242,-0.0584721118211746,0.359415024518967,0.987321078777313,0.106447570025921,0.117754034698009,0.969928443431854,-0.11350966989994,0.215300664305687,0.923851847648621,-0.198669716715813,0.327151536941528,0.88810271024704,-0.162031665444374,0.430138915777206,0.931344091892242,-0.0584721118211746,0.359415024518967,0.923851847648621,-0.198669716715813,0.327151536941528,0.891455054283142,-0.223491296172142,0.394156754016876,0.888332843780518,-0.206319883465767,0.410239905118942,0.88810271024704,-0.162031665444374,0.430138915777206,0.891455054283142,-0.223491296172142,0.394156754016876,0.808399438858032,-0.223824366927147,0.544419825077057,0.848279416561127,-0.236357644200325,0.473874539136887,0.888332843780518,-0.206319883465767,0.410239905118942,0.808399438858032,-0.223824366927147,0.544419825077057, +0.72381603717804,-0.197181031107903,0.661218702793121,0.817796945571899,-0.229442059993744,0.527792096138,0.848279416561127,-0.236357644200325,0.473874539136887,0.72381603717804,-0.197181031107903,0.661218702793121,0.650437474250793,-0.166883558034897,0.74099999666214,0.763032972812653,-0.203145816922188,0.613606035709381,0.817796945571899,-0.229442059993744,0.527792096138,0.650437474250793,-0.166883558034897,0.74099999666214,0.596126854419708,-0.161018744111061,0.786578476428986,0.691356778144836,-0.166961759328842,0.702957689762115,0.763032972812653,-0.203145816922188,0.613606035709381,0.596126854419708,-0.161018744111061,0.786578476428986,0.569577872753143,-0.188596680760384,0.80000764131546,0.601956248283386,-0.126981973648071,0.788368165493011,0.691356778144836,-0.166961759328842,0.702957689762115,0.569577872753143,-0.188596680760384,0.80000764131546,0.597430288791656,-0.226283758878708,0.769332706928253,0.539924502372742,-0.0975309163331985,0.836043834686279,0.601956248283386,-0.126981973648071,0.788368165493011,0.597430288791656,-0.226283758878708,0.769332706928253,0.643063962459564,-0.269981235265732,0.716644108295441,0.530532360076904,-0.0813628435134888,0.843750834465027,0.539924502372742,-0.0975309163331985,0.836043834686279,0.643063962459564,-0.269981235265732,0.716644108295441,0.639258861541748,-0.313730597496033,0.70208340883255,0.493387967348099,-0.0896371454000473,0.865178287029266,0.530532360076904,-0.0813628435134888,0.843750834465027,0.639258861541748,-0.313730597496033,0.70208340883255,0.592115879058838,-0.369304567575455,0.716249227523804,0.373312830924988,-0.131910309195518,0.918279409408569,0.493387967348099,-0.0896371454000473,0.865178287029266,0.592115879058838,-0.369304567575455,0.716249227523804,0.488597840070724,-0.427408516407013,0.760653734207153,0.249244153499603,-0.19804185628891,0.947975099086761,0.373312830924988,-0.131910309195518,0.918279409408569,0.488597840070724,-0.427408516407013,0.760653734207153,0.358592480421066,-0.481893211603165,0.799493789672852,0.176319494843483,-0.24019680917263,0.954576790332794, +0.249244153499603,-0.19804185628891,0.947975099086761,0.358592480421066,-0.481893211603165,0.799493789672852,0.184067040681839,-0.514875173568726,0.837271094322205,0.106686748564243,-0.267717808485031,0.957572519779205,0.176319494843483,-0.24019680917263,0.954576790332794,0.184067040681839,-0.514875173568726,0.837271094322205,0.0849984884262085,-0.517168939113617,0.851652264595032,0.0603145211935043,-0.268659979104996,0.961344838142395,0.106686748564243,-0.267717808485031,0.957572519779205,0.0849984884262085,-0.517168939113617,0.851652264595032,-1.87644843663293e-07,-0.520951449871063,0.853586316108704,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,0.0603145211935043,-0.268659979104996,0.961344838142395,-1.79865633498366e-08,0.318326622247696,-0.947981119155884,0.0570282526314259,0.324915558099747,-0.944022119045258,0.0545922704041004,0.413853853940964,-0.908704876899719,-1.4074563736699e-08,0.406104922294617,-0.913826406002045,0.0570282526314259,0.324915558099747,-0.944022119045258,0.137655287981033,0.326971292495728,-0.93495500087738,0.131308406591415,0.415217936038971,-0.90019565820694,0.0545922704041004,0.413853853940964,-0.908704876899719,0.137655287981033,0.326971292495728,-0.93495500087738,0.232782930135727,0.329060286283493,-0.915167391300201,0.213099837303162,0.426459789276123,-0.879045188426971,0.131308406591415,0.415217936038971,-0.90019565820694,0.232782930135727,0.329060286283493,-0.915167391300201,0.336353063583374,0.334030866622925,-0.880505561828613,0.298471510410309,0.447797685861588,-0.842847466468811,0.213099837303162,0.426459789276123,-0.879045188426971,0.336353063583374,0.334030866622925,-0.880505561828613,0.445274382829666,0.345922291278839,-0.825874388217926,0.390261352062225,0.479690968990326,-0.785870671272278,0.298471510410309,0.447797685861588,-0.842847466468811,0.445274382829666,0.345922291278839,-0.825874388217926,0.580357730388641,0.37090077996254,-0.724994778633118,0.496927082538605,0.529703319072723,-0.687370359897614,0.390261352062225,0.479690968990326,-0.785870671272278, +0.580357730388641,0.37090077996254,-0.724994778633118,0.729940891265869,0.388568073511124,-0.562317669391632,0.61800092458725,0.585912346839905,-0.524195969104767,0.496927082538605,0.529703319072723,-0.687370359897614,0.729940891265869,0.388568073511124,-0.562317669391632,0.846309304237366,0.373374283313751,-0.37993723154068,0.713612794876099,0.623848557472229,-0.31870025396347,0.61800092458725,0.585912346839905,-0.524195969104767,0.846309304237366,0.373374283313751,-0.37993723154068,0.931367695331573,0.311559587717056,-0.188374474644661,0.791593611240387,0.609075665473938,-0.0490551590919495,0.713612794876099,0.623848557472229,-0.31870025396347,0.931367695331573,0.311559587717056,-0.188374474644661,0.977538585662842,0.204975366592407,-0.0490257479250431,0.847042262554169,0.502337276935577,0.17371392250061,0.791593611240387,0.609075665473938,-0.0490551590919495,0.977538585662842,0.204975366592407,-0.0490257479250431,0.987321078777313,0.106447570025921,0.117754034698009,0.852592647075653,0.35051029920578,0.387592852115631,0.847042262554169,0.502337276935577,0.17371392250061,0.987321078777313,0.106447570025921,0.117754034698009,0.931344091892242,-0.0584721118211746,0.359415024518967,0.776590049266815,0.159818038344383,0.609398126602173,0.852592647075653,0.35051029920578,0.387592852115631,0.931344091892242,-0.0584721118211746,0.359415024518967,0.88810271024704,-0.162031665444374,0.430138915777206,0.757037222385406,0.0738626793026924,0.64918327331543,0.776590049266815,0.159818038344383,0.609398126602173,0.88810271024704,-0.162031665444374,0.430138915777206,0.888332843780518,-0.206319883465767,0.410239905118942,0.755365908145905,0.0489600449800491,0.653471648693085,0.757037222385406,0.0738626793026924,0.64918327331543,0.888332843780518,-0.206319883465767,0.410239905118942,0.848279416561127,-0.236357644200325,0.473874539136887,0.729918420314789,0.0392020680010319,0.682409167289734,0.755365908145905,0.0489600449800491,0.653471648693085,0.848279416561127,-0.236357644200325,0.473874539136887,0.817796945571899,-0.229442059993744,0.527792096138, +0.715418756008148,0.062575489282608,0.695888221263885,0.729918420314789,0.0392020680010319,0.682409167289734,0.817796945571899,-0.229442059993744,0.527792096138,0.763032972812653,-0.203145816922188,0.613606035709381,0.691517293453217,0.0937235057353973,0.716254055500031,0.715418756008148,0.062575489282608,0.695888221263885,0.763032972812653,-0.203145816922188,0.613606035709381,0.691356778144836,-0.166961759328842,0.702957689762115,0.670894861221313,0.136083349585533,0.728959083557129,0.691517293453217,0.0937235057353973,0.716254055500031,0.691356778144836,-0.166961759328842,0.702957689762115,0.601956248283386,-0.126981973648071,0.788368165493011,0.610976219177246,0.186938166618347,0.769260764122009,0.670894861221313,0.136083349585533,0.728959083557129,0.601956248283386,-0.126981973648071,0.788368165493011,0.539924502372742,-0.0975309163331985,0.836043834686279,0.511263847351074,0.229410201311111,0.828239262104034,0.610976219177246,0.186938166618347,0.769260764122009,0.539924502372742,-0.0975309163331985,0.836043834686279,0.530532360076904,-0.0813628435134888,0.843750834465027,0.347370386123657,0.231676712632179,0.90865820646286,0.511263847351074,0.229410201311111,0.828239262104034,0.530532360076904,-0.0813628435134888,0.843750834465027,0.493387967348099,-0.0896371454000473,0.865178287029266,0.271949172019958,0.202169090509415,0.940835416316986,0.347370386123657,0.231676712632179,0.90865820646286,0.493387967348099,-0.0896371454000473,0.865178287029266,0.373312830924988,-0.131910309195518,0.918279409408569,0.119281567633152,0.172357618808746,0.977785646915436,0.271949172019958,0.202169090509415,0.940835416316986,0.373312830924988,-0.131910309195518,0.918279409408569,0.249244153499603,-0.19804185628891,0.947975099086761,-0.0153793310746551,0.136903032660484,0.990465044975281,0.119281567633152,0.172357618808746,0.977785646915436,0.249244153499603,-0.19804185628891,0.947975099086761,0.176319494843483,-0.24019680917263,0.954576790332794,-0.0923509448766708,0.110743053257465,0.989548921585083,-0.0153793310746551,0.136903032660484,0.990465044975281, +0.176319494843483,-0.24019680917263,0.954576790332794,0.106686748564243,-0.267717808485031,0.957572519779205,-0.168494194746017,0.0982578322291374,0.980793058872223,-0.0923509448766708,0.110743053257465,0.989548921585083,0.106686748564243,-0.267717808485031,0.957572519779205,0.0603145211935043,-0.268659979104996,0.961344838142395,-0.126774668693542,0.124518774449825,0.984084963798523,-0.168494194746017,0.0982578322291374,0.980793058872223,0.0603145211935043,-0.268659979104996,0.961344838142395,-1.67804813600014e-07,-0.272050023078918,0.962283134460449,-1.18681050764735e-07,0.127460151910782,0.99184376001358,-0.126774668693542,0.124518774449825,0.984084963798523,1.48528812360382e-07,0.231706529855728,-0.972785711288452,0.0452923849225044,0.231373652815819,-0.971809983253479,0.0421977154910564,0.266968548297882,-0.962780892848969,-1.57332138428501e-07,0.268469750881195,-0.963288128376007,0.0452923849225044,0.231373652815819,-0.971809983253479,0.121118932962418,0.239042401313782,-0.963425636291504,0.122906930744648,0.26610940694809,-0.956075072288513,0.0421977154910564,0.266968548297882,-0.962780892848969,0.121118932962418,0.239042401313782,-0.963425636291504,0.211852118372917,0.243508473038673,-0.94647890329361,0.221275642514229,0.262335985898972,-0.939263999462128,0.122906930744648,0.26610940694809,-0.956075072288513,0.211852118372917,0.243508473038673,-0.94647890329361,0.295085906982422,0.239659816026688,-0.924925684928894,0.315801113843918,0.251591563224792,-0.914861261844635,0.221275642514229,0.262335985898972,-0.939263999462128,0.295085906982422,0.239659816026688,-0.924925684928894,0.403909951448441,0.225777745246887,-0.886499404907227,0.436506778001785,0.233594134449959,-0.868847250938416,0.315801113843918,0.251591563224792,-0.914861261844635,0.403909951448441,0.225777745246887,-0.886499404907227,0.550428926944733,0.196756899356842,-0.811365962028503,0.591074645519257,0.207417994737625,-0.779492437839508,0.436506778001785,0.233594134449959,-0.868847250938416,0.550428926944733,0.196756899356842,-0.811365962028503, +0.716842949390411,0.155831933021545,-0.679597437381744,0.751979172229767,0.168086364865303,-0.637396395206451,0.591074645519257,0.207417994737625,-0.779492437839508,0.716842949390411,0.155831933021545,-0.679597437381744,0.841564297676086,0.11118533462286,-0.528589963912964,0.861584186553955,0.120209991931915,-0.493175595998764,0.751979172229767,0.168086364865303,-0.637396395206451,0.841564297676086,0.11118533462286,-0.528589963912964,0.920960783958435,0.0725642070174217,-0.382839053869247,0.930044949054718,0.0694594234228134,-0.360821127891541,0.861584186553955,0.120209991931915,-0.493175595998764,0.920960783958435,0.0725642070174217,-0.382839053869247,0.982601165771484,0.0331035405397415,-0.182754442095757,0.983544290065765,0.0161068383604288,-0.179947376251221,0.930044949054718,0.0694594234228134,-0.360821127891541,0.982601165771484,0.0331035405397415,-0.182754442095757,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.983544290065765,0.0161068383604288,-0.179947376251221,0.999819159507751,-0.0124037433415651,-0.0144206630066037,0.983570635318756,-0.0811970829963684,0.161232128739357,0.980292320251465,-0.109852708876133,0.16419281065464,0.999397814273834,-0.0340641662478447,-0.00660836510360241,0.983570635318756,-0.0811970829963684,0.161232128739357,0.912356376647949,-0.141616880893707,0.384123086929321,0.927649080753326,-0.173086896538734,0.33092001080513,0.980292320251465,-0.109852708876133,0.16419281065464,0.912356376647949,-0.141616880893707,0.384123086929321,0.819408297538757,-0.17691445350647,0.545225739479065,0.849539875984192,-0.187142178416252,0.49321374297142,0.927649080753326,-0.173086896538734,0.33092001080513,0.819408297538757,-0.17691445350647,0.545225739479065,0.732613146305084,-0.22996623814106,0.640619695186615,0.730802416801453,-0.185328125953674,0.656948506832123,0.849539875984192,-0.187142178416252,0.49321374297142,0.732613146305084,-0.22996623814106,0.640619695186615,0.734038114547729,-0.289851725101471,0.614144802093506,0.651494562625885,-0.183251723647118,0.736188590526581, +0.730802416801453,-0.185328125953674,0.656948506832123,0.734038114547729,-0.289851725101471,0.614144802093506,0.788692355155945,-0.369454503059387,0.491393715143204,0.646958231925964,-0.200475201010704,0.735700070858002,0.651494562625885,-0.183251723647118,0.736188590526581,0.788692355155945,-0.369454503059387,0.491393715143204,0.820944428443909,-0.437150865793228,0.367354601621628,0.699751615524292,-0.23775677382946,0.673661172389984,0.646958231925964,-0.200475201010704,0.735700070858002,0.820944428443909,-0.437150865793228,0.367354601621628,0.805763602256775,-0.495398193597794,0.32453915476799,0.743825554847717,-0.307951986789703,0.593202531337738,0.699751615524292,-0.23775677382946,0.673661172389984,0.805763602256775,-0.495398193597794,0.32453915476799,0.75371903181076,-0.530059397220612,0.388516068458557,0.745765566825867,-0.369670927524567,0.554235637187958,0.743825554847717,-0.307951986789703,0.593202531337738,0.75371903181076,-0.530059397220612,0.388516068458557,0.693555176258087,-0.548085689544678,0.467528879642487,0.735174715518951,-0.408614665269852,0.540880978107452,0.745765566825867,-0.369670927524567,0.554235637187958,0.693555176258087,-0.548085689544678,0.467528879642487,0.638139426708221,-0.555814921855927,0.532773792743683,0.7086101770401,-0.435911774635315,0.554844617843628,0.735174715518951,-0.408614665269852,0.540880978107452,0.638139426708221,-0.555814921855927,0.532773792743683,0.592932999134064,-0.562746107578278,0.575975060462952,0.652298331260681,-0.457809060811996,0.604084253311157,0.7086101770401,-0.435911774635315,0.554844617843628,0.592932999134064,-0.562746107578278,0.575975060462952,0.51042777299881,-0.590444564819336,0.625171065330505,0.526753902435303,-0.501215815544128,0.686522364616394,0.652298331260681,-0.457809060811996,0.604084253311157,0.51042777299881,-0.590444564819336,0.625171065330505,0.386757254600525,-0.659731805324554,0.644338965415955,0.365993618965149,-0.541276335716248,0.757013022899628,0.526753902435303,-0.501215815544128,0.686522364616394,0.386757254600525,-0.659731805324554,0.644338965415955, +0.235601052641869,-0.715268850326538,0.657938182353973,0.206913620233536,-0.568290770053864,0.796387135982513,0.365993618965149,-0.541276335716248,0.757013022899628,0.235601052641869,-0.715268850326538,0.657938182353973,0.0898829028010368,-0.720666646957397,0.687430441379547,0.113816358149052,-0.566020905971527,0.816496253013611,0.206913620233536,-0.568290770053864,0.796387135982513,0.0898829028010368,-0.720666646957397,0.687430441379547,6.02130469928852e-08,-0.702668070793152,0.711517870426178,-1.32919339534965e-07,-0.564502120018005,0.825431704521179,0.113816358149052,-0.566020905971527,0.816496253013611,0.0116367666050792,-0.906590223312378,-0.421851634979248,0.417807519435883,-0.77439957857132,-0.475123256444931,0.35174748301506,-0.851853489875793,-0.388097107410431,0.0238891579210758,-0.954553842544556,-0.297079294919968,-0.333319246768951,-0.913330435752869,-0.233935564756393,0.0116367666050792,-0.906590223312378,-0.421851634979248,0.0238891579210758,-0.954553842544556,-0.297079294919968,-0.254802078008652,-0.952636897563934,-0.166008740663528,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.333319246768951,-0.913330435752869,-0.233935564756393,-0.254802078008652,-0.952636897563934,-0.166008740663528,-0.37261837720871,-0.925204694271088,-0.0717765539884567,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.41320475935936,-0.908676385879517,-0.0597408637404442,-0.37261837720871,-0.925204694271088,-0.0717765539884567,-0.414683878421783,-0.906807661056519,0.0757431983947754,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.432198375463486,-0.896145224571228,0.100639767944813,-0.414683878421783,-0.906807661056519,0.0757431983947754,-0.458042323589325,-0.860918879508972,0.221395075321198,0.417807519435883,-0.77439957857132,-0.475123256444931,0.725718796253204,-0.558084905147552,-0.402335107326508,0.684054017066956,-0.637334167957306,-0.354789137840271,0.35174748301506,-0.851853489875793,-0.388097107410431,0.725718796253204,-0.558084905147552,-0.402335107326508,0.850677847862244,-0.436320781707764,-0.293209046125412, +0.822762727737427,-0.500288605690002,-0.269764274358749,0.684054017066956,-0.637334167957306,-0.354789137840271,0.850677847862244,-0.436320781707764,-0.293209046125412,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.940793573856354,-0.326468676328659,-0.0912444517016411,0.822762727737427,-0.500288605690002,-0.269764274358749,0.960407793521881,-0.262316405773163,-0.0938449427485466,0.984726369380951,-0.138775065541267,0.105145215988159,0.946296751499176,-0.288656741380692,0.145600974559784,0.940793573856354,-0.326468676328659,-0.0912444517016411,0.984726369380951,-0.138775065541267,0.105145215988159,0.91557765007019,-0.0274116899818182,0.401205897331238,0.844117999076843,-0.344405055046082,0.410913676023483,0.946296751499176,-0.288656741380692,0.145600974559784,0.91557765007019,-0.0274116899818182,0.401205897331238,0.718403398990631,-0.0559571795165539,0.693372488021851,0.64731228351593,-0.47042915225029,0.599735856056213,0.844117999076843,-0.344405055046082,0.410913676023483,0.718403398990631,-0.0559571795165539,0.693372488021851,0.412471860647202,-0.275771468877792,0.868226408958435,0.420693814754486,-0.588744878768921,0.690214514732361,0.64731228351593,-0.47042915225029,0.599735856056213,0.412471860647202,-0.275771468877792,0.868226408958435,-0.144471272826195,-0.614518642425537,0.775560975074768,-0.0455766431987286,-0.779709339141846,0.624480664730072,0.420693814754486,-0.588744878768921,0.690214514732361,-0.144471272826195,-0.614518642425537,0.775560975074768,-0.414653658866882,-0.77838122844696,0.471365094184875,-0.374406605958939,-0.792443752288818,0.481510788202286,-0.0455766431987286,-0.779709339141846,0.624480664730072,-0.468704074621201,-0.856485784053802,0.216214403510094,-0.458042323589325,-0.860918879508972,0.221395075321198,-0.374406605958939,-0.792443752288818,0.481510788202286,-0.414653658866882,-0.77838122844696,0.471365094184875,0.0238891579210758,-0.954553842544556,-0.297079294919968,0.370583802461624,-0.924903988838196,0.0849721506237984,0.236197903752327,-0.958470165729523,0.159829750657082, +-0.254802078008652,-0.952636897563934,-0.166008740663528,0.0845369845628738,-0.970243990421295,0.226892158389091,-0.37261837720871,-0.925204694271088,-0.0717765539884567,-0.254802078008652,-0.952636897563934,-0.166008740663528,0.236197903752327,-0.958470165729523,0.159829750657082,-0.117940910160542,-0.94948011636734,0.290821850299835,-0.414683878421783,-0.906807661056519,0.0757431983947754,-0.37261837720871,-0.925204694271088,-0.0717765539884567,0.0845369845628738,-0.970243990421295,0.226892158389091,0.420693814754486,-0.588744878768921,0.690214514732361,0.0845369845628738,-0.970243990421295,0.226892158389091,0.236197903752327,-0.958470165729523,0.159829750657082,0.64731228351593,-0.47042915225029,0.599735856056213,0.0845369845628738,-0.970243990421295,0.226892158389091,0.420693814754486,-0.588744878768921,0.690214514732361,-0.0455766431987286,-0.779709339141846,0.624480664730072,-0.117940910160542,-0.94948011636734,0.290821850299835,0.64731228351593,-0.47042915225029,0.599735856056213,0.236197903752327,-0.958470165729523,0.159829750657082,0.370583802461624,-0.924903988838196,0.0849721506237984,0.844117999076843,-0.344405055046082,0.410913676023483,0.370583802461624,-0.924903988838196,0.0849721506237984,0.0238891579210758,-0.954553842544556,-0.297079294919968,0.35174748301506,-0.851853489875793,-0.388097107410431,0.503159940242767,-0.864180982112885,0.00460274610668421,0.844117999076843,-0.344405055046082,0.410913676023483,0.370583802461624,-0.924903988838196,0.0849721506237984,0.503159940242767,-0.864180982112885,0.00460274610668421,0.946296751499176,-0.288656741380692,0.145600974559784,0.822762727737427,-0.500288605690002,-0.269764274358749,0.940793573856354,-0.326468676328659,-0.0912444517016411,0.946296751499176,-0.288656741380692,0.145600974559784,0.503159940242767,-0.864180982112885,0.00460274610668421,0.684054017066956,-0.637334167957306,-0.354789137840271,0.822762727737427,-0.500288605690002,-0.269764274358749,0.503159940242767,-0.864180982112885,0.00460274610668421,0.35174748301506,-0.851853489875793,-0.388097107410431, +-0.458042323589325,-0.860918879508972,0.221395075321198,-0.117940910160542,-0.94948011636734,0.290821850299835,-0.0455766431987286,-0.779709339141846,0.624480664730072,-0.374406605958939,-0.792443752288818,0.481510788202286,-0.117940910160542,-0.94948011636734,0.290821850299835,-0.458042323589325,-0.860918879508972,0.221395075321198,-0.414683878421783,-0.906807661056519,0.0757431983947754,0.0650140419602394,-0.929289102554321,0.363586246967316,-2.19972790205247e-07,-0.946157574653625,0.323706299066544,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,0.0247087012976408,-0.976878941059113,-0.21236078441143,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,0.0700248181819916,-0.992533087730408,0.0998731777071953,-0.41677713394165,-0.760090947151184,-0.498556435108185,-0.331994891166687,-0.770820498466492,-0.543704926967621,0.0177787970751524,-0.991293430328369,0.13046595454216,0.0102759916335344,-0.987158536911011,0.159412860870361,-0.377735555171967,-0.830142617225647,-0.410096436738968,-0.401315242052078,-0.798839449882507,-0.448108941316605,0.0102759916335344,-0.987158536911011,0.159412860870361,0.0467730760574341,-0.957661151885986,0.28407296538353,-0.251897215843201,-0.911083340644836,-0.326304823160172,-0.377735555171967,-0.830142617225647,-0.410096436738968,0.0467730760574341,-0.957661151885986,0.28407296538353,0.0574995428323746,-0.920222818851471,0.38714811205864,-0.105126559734344,-0.962312459945679,-0.250805199146271,-0.251897215843201,-0.911083340644836,-0.326304823160172,0.0574995428323746,-0.920222818851471,0.38714811205864,0.0700104087591171,-0.918607831001282,0.388919323682785,-0.0360655821859837,-0.971361935138702,-0.234851464629173,-0.105126559734344,-0.962312459945679,-0.250805199146271,0.0700104087591171,-0.918607831001282,0.388919323682785,0.0650140419602394,-0.929289102554321,0.363586246967316,0.0247087012976408,-0.976878941059113,-0.21236078441143,-0.0360655821859837,-0.971361935138702,-0.234851464629173,0.0700248181819916,-0.992533087730408,0.0998731777071953,0.0177787970751524,-0.991293430328369,0.13046595454216, +-0.401315242052078,-0.798839449882507,-0.448108941316605,-0.41677713394165,-0.760090947151184,-0.498556435108185,-0.114908866584301,-0.963067054748535,-0.243511691689491,-0.0745086371898651,-0.99507474899292,-0.0653811022639275,-0.331994891166687,-0.770820498466492,-0.543704926967621,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.786457419395447,-0.152120247483253,-0.598618507385254,-0.114908866584301,-0.963067054748535,-0.243511691689491,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.193546488881111,0.969683647155762,-0.149175480008125,-0.786457419395447,-0.152120247483253,-0.598618507385254,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.417963266372681,0.837518990039825,-0.351949870586395,0.369951128959656,0.895375072956085,0.24787038564682,-0.193546488881111,0.969683647155762,-0.149175480008125,-0.417963266372681,0.837518990039825,-0.351949870586395,-0.300644010305405,0.812015652656555,-0.500243484973907,0.334255218505859,0.900808334350586,0.277160137891769,0.369951128959656,0.895375072956085,0.24787038564682,-0.300644010305405,0.812015652656555,-0.500243484973907,-0.262743830680847,0.836696147918701,-0.480525940656662,0.31908592581749,0.899403631687164,0.298759669065475,0.334255218505859,0.900808334350586,0.277160137891769,-0.262743830680847,0.836696147918701,-0.480525940656662,-0.344586104154587,0.805059552192688,-0.48284524679184,0.345288544893265,0.87969571352005,0.326972752809525,0.31908592581749,0.899403631687164,0.298759669065475,-0.344586104154587,0.805059552192688,-0.48284524679184,-0.257836908102036,0.862873613834381,-0.434705972671509,0.343751341104507,0.84628164768219,0.40699166059494,0.345288544893265,0.87969571352005,0.326972752809525,-0.257836908102036,0.862873613834381,-0.434705972671509,-0.11381696164608,0.917827963829041,-0.380312442779541,0.203538671135902,0.867182433605194,0.454496145248413,0.343751341104507,0.84628164768219,0.40699166059494,-0.11381696164608,0.917827963829041,-0.380312442779541,-0.04775520414114,0.912685573101044,-0.405862778425217, +0.0728881284594536,0.860819280147552,0.503664135932922,0.203538671135902,0.867182433605194,0.454496145248413,-0.04775520414114,0.912685573101044,-0.405862778425217,-0.0447621680796146,0.905397295951843,-0.422199219465256,0.0103098433464766,0.82647317647934,0.562881708145142,0.0728881284594536,0.860819280147552,0.503664135932922,-0.0447621680796146,0.905397295951843,-0.422199219465256,-0.0501138232648373,0.917617499828339,-0.394292742013931,-4.3436074292913e-07,0.799352884292603,0.60086190700531,0.0103098433464766,0.82647317647934,0.562881708145142,-0.0501138232648373,0.917617499828339,-0.394292742013931,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,0.0247087012976408,-0.976878941059113,-0.21236078441143,2.7049213713326e-07,-0.966701805591583,-0.255905717611313,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,-0.0360571295022964,-0.259087026119232,-0.965180695056915,-0.0360655821859837,-0.971361935138702,-0.234851464629173,0.0247087012976408,-0.976878941059113,-0.21236078441143,-0.0360571295022964,-0.259087026119232,-0.965180695056915,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.105126559734344,-0.962312459945679,-0.250805199146271,-0.0360655821859837,-0.971361935138702,-0.234851464629173,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.251897215843201,-0.911083340644836,-0.326304823160172,-0.105126559734344,-0.962312459945679,-0.250805199146271,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.377735555171967,-0.830142617225647,-0.410096436738968,-0.251897215843201,-0.911083340644836,-0.326304823160172,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.401315242052078,-0.798839449882507,-0.448108941316605,-0.377735555171967,-0.830142617225647,-0.410096436738968,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.41677713394165,-0.760090947151184,-0.498556435108185, +-0.401315242052078,-0.798839449882507,-0.448108941316605,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.331994891166687,-0.770820498466492,-0.543704926967621,-0.41677713394165,-0.760090947151184,-0.498556435108185,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.331994891166687,-0.770820498466492,-0.543704926967621,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.480052798986435,-0.702495813369751,-0.525403618812561,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.417963266372681,0.837518990039825,-0.351949870586395,-0.849597811698914,-0.098102331161499,-0.518227279186249,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.300644010305405,0.812015652656555,-0.500243484973907,-0.417963266372681,0.837518990039825,-0.351949870586395,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.262743830680847,0.836696147918701,-0.480525940656662,-0.300644010305405,0.812015652656555,-0.500243484973907,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.344586104154587,0.805059552192688,-0.48284524679184,-0.262743830680847,0.836696147918701,-0.480525940656662,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.257836908102036,0.862873613834381,-0.434705972671509,-0.344586104154587,0.805059552192688,-0.48284524679184,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.587400138378143,0.257034242153168,-0.767394661903381,-0.11381696164608,0.917827963829041,-0.380312442779541,-0.257836908102036,0.862873613834381,-0.434705972671509, +-0.587400138378143,0.257034242153168,-0.767394661903381,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.04775520414114,0.912685573101044,-0.405862778425217,-0.11381696164608,0.917827963829041,-0.380312442779541,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.0447621680796146,0.905397295951843,-0.422199219465256,-0.04775520414114,0.912685573101044,-0.405862778425217,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.112730614840984,0.375972807407379,-0.919747889041901,-0.0501138232648373,0.917617499828339,-0.394292742013931,-0.0447621680796146,0.905397295951843,-0.422199219465256,-0.112730614840984,0.375972807407379,-0.919747889041901,-0.0816358551383018,0.384825438261032,-0.919372141361237,-5.58922756965785e-08,0.928982675075531,-0.370123028755188,-0.0501138232648373,0.917617499828339,-0.394292742013931,-0.0816358551383018,0.384825438261032,-0.919372141361237,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,-0.0360571295022964,-0.259087026119232,-0.965180695056915,-1.13777434762596e-06,-0.261622309684753,-0.965170323848724,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,0.02859559468925,-0.448204517364502,-0.893473565578461,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.0360571295022964,-0.259087026119232,-0.965180695056915,0.02859559468925,-0.448204517364502,-0.893473565578461,-0.154668197035789,-0.442441701889038,-0.883358955383301,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.162887811660767,-0.252845257520676,-0.953696370124817,-0.154668197035789,-0.442441701889038,-0.883358955383301,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.287319123744965,-0.265834480524063,-0.920206308364868,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.544105172157288,-0.371156364679337,-0.752457618713379,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.501386284828186,-0.259844690561295,-0.825283229351044,-0.544105172157288,-0.371156364679337,-0.752457618713379, +-0.627916693687439,-0.361263155937195,-0.689354360103607,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.582196235656738,-0.243713185191154,-0.775662004947662,-0.627916693687439,-0.361263155937195,-0.689354360103607,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.605233073234558,-0.242855399847031,-0.758099138736725,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.586803376674652,-0.278199374675751,-0.760438680648804,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.527179419994354,-0.344850242137909,-0.776633858680725,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.645673096179962,-0.321531713008881,-0.692620813846588,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.763657927513123,-0.080063633620739,-0.640637516975403,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.56348317861557,0.416100800037384,-0.713685393333435,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.778241693973541,0.403277724981308,-0.481359481811523,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.586945831775665,0.315013438463211,-0.745829105377197,-0.778241693973541,0.403277724981308,-0.481359481811523,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.578270673751831,0.275099694728851,-0.768064677715302,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.56823742389679,0.494539827108383,-0.657675206661224, +-0.587400138378143,0.257034242153168,-0.767394661903381,-0.578391909599304,0.257413566112518,-0.774080753326416,-0.56823742389679,0.494539827108383,-0.657675206661224,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.587400138378143,0.257034242153168,-0.767394661903381,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.471768289804459,0.292233288288116,-0.831886053085327,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.00850863195955753,0.627050459384918,-0.778932213783264,-0.112730614840984,0.375972807407379,-0.919747889041901,-0.241891533136368,0.338839828968048,-0.909217298030853,-0.00850863195955753,0.627050459384918,-0.778932213783264,0.020904216915369,0.648062169551849,-0.761300444602966,-0.0816358551383018,0.384825438261032,-0.919372141361237,-0.112730614840984,0.375972807407379,-0.919747889041901,0.020904216915369,0.648062169551849,-0.761300444602966,-0.0730486586689949,0.663973748683929,-0.744179308414459,-7.48165973618597e-08,0.381586730480194,-0.924333095550537,-0.0816358551383018,0.384825438261032,-0.919372141361237,-0.0730486586689949,0.663973748683929,-0.744179308414459,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,0.02859559468925,-0.448204517364502,-0.893473565578461,-8.36400147363747e-07,-0.428366333246231,-0.903605222702026,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,0.142273634672165,-0.833896279335022,-0.533268332481384,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.627916693687439,-0.361263155937195,-0.689354360103607,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.627916693687439,-0.361263155937195,-0.689354360103607, +-0.544105172157288,-0.371156364679337,-0.752457618713379,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.544105172157288,-0.371156364679337,-0.752457618713379,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.324519574642181,-0.418067008256912,-0.848473250865936,-0.154668197035789,-0.442441701889038,-0.883358955383301,-0.118109680712223,-0.840319991111755,-0.52906745672226,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.154668197035789,-0.442441701889038,-0.883358955383301,0.02859559468925,-0.448204517364502,-0.893473565578461,0.142273634672165,-0.833896279335022,-0.533268332481384,-0.118109680712223,-0.840319991111755,-0.52906745672226,-0.700498700141907,-0.367755472660065,-0.611602365970612,-0.657751083374023,-0.360926151275635,-0.661132156848907,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.714448690414429,-0.387403160333633,-0.582650661468506,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.829704582691193,-0.297910273075104,-0.472058922052383,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.914077639579773,-0.0379647426307201,-0.403758406639099,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.778241693973541,0.403277724981308,-0.481359481811523,-0.845793664455414,0.331601053476334,-0.417939841747284,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.857928216457367,0.377771228551865,-0.34820693731308,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.778241693973541,0.403277724981308,-0.481359481811523, +-0.857928216457367,0.377771228551865,-0.34820693731308,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.56823742389679,0.494539827108383,-0.657675206661224,-0.671574234962463,0.445546597242355,-0.592010200023651,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.56823742389679,0.494539827108383,-0.657675206661224,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.528668165206909,0.495006114244461,-0.689549803733826,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.029377855360508,0.820863842964172,-0.570367813110352,-0.00850863195955753,0.627050459384918,-0.778932213783264,-0.293393403291702,0.577668726444244,-0.761721134185791,-0.029377855360508,0.820863842964172,-0.570367813110352,0.31808939576149,0.821739256381989,-0.472825199365616,0.020904216915369,0.648062169551849,-0.761300444602966,-0.00850863195955753,0.627050459384918,-0.778932213783264,0.31808939576149,0.821739256381989,-0.472825199365616,0.214610382914543,0.864416182041168,-0.454672455787659,-0.0730486586689949,0.663973748683929,-0.744179308414459,0.020904216915369,0.648062169551849,-0.761300444602966,0.214610382914543,0.864416182041168,-0.454672455787659,-0.0425950326025486,0.888552010059357,-0.456794291734695,-1.46010378898609e-07,0.685562074184418,-0.728014171123505,-0.0730486586689949,0.663973748683929,-0.744179308414459,-0.0425950326025486,0.888552010059357,-0.456794291734695,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,0.142273634672165,-0.833896279335022,-0.533268332481384,-2.05287761900763e-07,-0.834947466850281,-0.550329744815826,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,0.234723672270775,-0.972029030323029,-0.00802461709827185,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.81127405166626,-0.551212430000305,0.194934114813805, +-0.86515998840332,-0.455062538385391,0.210751459002495,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.677578806877136,-0.63664299249649,-0.36820188164711,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.589573204517365,-0.677521765232086,-0.439735740423203,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.361981451511383,-0.782905340194702,-0.505992829799652,-0.118109680712223,-0.840319991111755,-0.52906745672226,-0.0856686979532242,-0.996267199516296,0.0106057208031416,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.118109680712223,-0.840319991111755,-0.52906745672226,0.142273634672165,-0.833896279335022,-0.533268332481384,0.234723672270775,-0.972029030323029,-0.00802461709827185,-0.0856686979532242,-0.996267199516296,0.0106057208031416,-0.791927576065063,-0.557654798030853,-0.248740717768669,-0.725681900978088,-0.606068849563599,-0.325678378343582,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.81127405166626,-0.551212430000305,0.194934114813805,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.841985881328583,-0.494265049695969,-0.216244861483574,-0.86515998840332,-0.455062538385391,0.210751459002495,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.926309049129486,-0.340794593095779,-0.160656720399857,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.980858027935028,-0.0747446045279503,-0.179807156324387,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.97174334526062,0.236035600304604,0.00144337257370353, +-0.857928216457367,0.377771228551865,-0.34820693731308,-0.935405015945435,0.23725052177906,-0.262163490056992,-0.97174334526062,0.236035600304604,0.00144337257370353,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.857928216457367,0.377771228551865,-0.34820693731308,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.747376918792725,0.487252414226532,-0.451677888631821,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.557595670223236,0.625448405742645,-0.545803368091583,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.139661610126495,0.872599363327026,-0.468043655157089,-0.029377855360508,0.820863842964172,-0.570367813110352,-0.376601874828339,0.724782407283783,-0.576941609382629,-0.139661610126495,0.872599363327026,-0.468043655157089,0.217602804303169,0.862489104270935,-0.456904381513596,0.31808939576149,0.821739256381989,-0.472825199365616,-0.029377855360508,0.820863842964172,-0.570367813110352,0.217602804303169,0.862489104270935,-0.456904381513596,0.506362557411194,0.78184312582016,-0.363755792379379,0.214610382914543,0.864416182041168,-0.454672455787659,0.31808939576149,0.821739256381989,-0.472825199365616,0.506362557411194,0.78184312582016,-0.363755792379379,0.349090427160263,0.866576611995697,-0.356624364852905,-0.0425950326025486,0.888552010059357,-0.456794291734695,0.214610382914543,0.864416182041168,-0.454672455787659,0.349090427160263,0.866576611995697,-0.356624364852905,-0.0188643857836723,0.933145046234131,-0.359004735946655,-1.36385764903935e-08,0.889107763767242,-0.457697838544846,-0.0425950326025486,0.888552010059357,-0.456794291734695,-0.0188643857836723,0.933145046234131,-0.359004735946655,2.52106922005169e-08,0.935736477375031,-0.352700024843216,0.271395593881607,-0.894916951656342,0.35421484708786, +-3.02580502875571e-08,-0.923264861106873,0.384164065122604,0,-0.464990794658661,0.885315537452698,0.264075130224228,-0.547405004501343,0.794110834598541,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.826429128646851,-0.469586193561554,0.310650527477264,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.762011051177979,-0.166618511080742,0.62576150894165,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.0720962658524513,-0.922054409980774,0.380286395549774,-0.0131181916221976,-0.542192041873932,0.840152204036713,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.0720962658524513,-0.922054409980774,0.380286395549774,0.271395593881607,-0.894916951656342,0.35421484708786,0.264075130224228,-0.547405004501343,0.794110834598541,-0.0131181916221976,-0.542192041873932,0.840152204036713,-0.826429128646851,-0.469586193561554,0.310650527477264,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.949438035488129,-0.21503758430481,0.228749454021454,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.762011051177979,-0.166618511080742,0.62576150894165,-0.875040590763092,-0.0363670960068703,0.482681691646576,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.949438035488129,-0.21503758430481,0.228749454021454, +-0.875040590763092,-0.0363670960068703,0.482681691646576,-0.931641817092896,0.146454632282257,0.332557588815689,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.931641817092896,0.146454632282257,0.332557588815689,-0.939383208751678,0.307013422250748,0.152649462223053,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.939383208751678,0.307013422250748,0.152649462223053,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.400419503450394,0.853491127490997,-0.333492338657379,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.395730197429657,0.839276790618896,-0.372843116521835,0.10107010602951,0.919841766357422,-0.379046142101288,-0.400419503450394,0.853491127490997,-0.333492338657379,-0.395730197429657,0.839276790618896,-0.372843116521835,0.128467231988907,0.860839128494263,-0.492394089698792,0.456542015075684,0.826078951358795,-0.330398410558701,0.10107010602951,0.919841766357422,-0.379046142101288,0.128467231988907,0.860839128494263,-0.492394089698792,0.460331499576569,0.759512424468994,-0.459603935480118,0.61537104845047,0.732699990272522,-0.290635854005814,0.456542015075684,0.826078951358795,-0.330398410558701,0.460331499576569,0.759512424468994,-0.459603935480118,0.625189602375031,0.655075073242188,-0.424281090497971,0.41922864317894,0.851044833660126,-0.316180557012558,0.61537104845047,0.732699990272522,-0.290635854005814,0.625189602375031,0.655075073242188,-0.424281090497971,0.430703580379486,0.765645563602448,-0.47778794169426,0.000692487927153707,0.942585110664368,-0.333965301513672,0.41922864317894,0.851044833660126,-0.316180557012558,0.430703580379486,0.765645563602448,-0.47778794169426,0.00734899286180735,0.859205365180969,-0.511577963829041, +-3.55305864729871e-08,0.944239854812622,-0.329258650541306,0.000692487927153707,0.942585110664368,-0.333965301513672,0.00734899286180735,0.859205365180969,-0.511577963829041,1.56375783433305e-08,0.863422572612762,-0.504481375217438,0.264075130224228,-0.547405004501343,0.794110834598541,0,-0.464990794658661,0.885315537452698,3.17806012617439e-08,-0.0365307778120041,0.99933248758316,0.183962553739548,-0.0350325554609299,0.982308685779572,-0.0131181916221976,-0.542192041873932,0.840152204036713,0.264075130224228,-0.547405004501343,0.794110834598541,0.183962553739548,-0.0350325554609299,0.982308685779572,0.0766317471861839,-0.0284375138580799,0.996653854846954,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.0131181916221976,-0.542192041873932,0.840152204036713,0.0766317471861839,-0.0284375138580799,0.996653854846954,-0.0148816062137485,-0.0208520703017712,0.999671876430511,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.281940132379532,-0.521386981010437,0.805397570133209,-0.0148816062137485,-0.0208520703017712,0.999671876430511,-0.0173269808292389,-0.0208762809634209,0.999631941318512,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.452944546937943,-0.465957880020142,0.760081887245178,-0.0173269808292389,-0.0208762809634209,0.999631941318512,-0.0708390027284622,-0.00593735836446285,0.997470021247864,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.503848969936371,-0.388366371393204,0.771561920642853,-0.0708390027284622,-0.00593735836446285,0.997470021247864,-0.132609471678734,0.0103374812752008,0.991114377975464,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.575405716896057,-0.334927320480347,0.746144711971283,-0.132609471678734,0.0103374812752008,0.991114377975464,-0.250808537006378,0.0652036741375923,0.965838313102722,-0.762011051177979,-0.166618511080742,0.62576150894165,-0.682523250579834,-0.250711381435394,0.686517119407654,-0.250808537006378,0.0652036741375923,0.965838313102722,-0.371559023857117,0.120893567800522,0.920504570007324,-0.875040590763092,-0.0363670960068703,0.482681691646576, +-0.762011051177979,-0.166618511080742,0.62576150894165,-0.371559023857117,0.120893567800522,0.920504570007324,-0.50362890958786,0.228875413537025,0.833050966262817,-0.931641817092896,0.146454632282257,0.332557588815689,-0.875040590763092,-0.0363670960068703,0.482681691646576,-0.50362890958786,0.228875413537025,0.833050966262817,-0.645216703414917,0.364714354276657,0.671326220035553,-0.939383208751678,0.307013422250748,0.152649462223053,-0.931641817092896,0.146454632282257,0.332557588815689,-0.645216703414917,0.364714354276657,0.671326220035553,-0.708086788654327,0.491774052381516,0.506726205348969,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.939383208751678,0.307013422250748,0.152649462223053,-0.708086788654327,0.491774052381516,0.506726205348969,-0.701581537723541,0.661462485790253,0.2650485932827,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.877217292785645,0.478273570537567,0.0417623110115528,-0.701581537723541,0.661462485790253,0.2650485932827,-0.57687121629715,0.815990269184113,-0.0371436290442944,-0.395730197429657,0.839276790618896,-0.372843116521835,-0.737073183059692,0.654871642589569,-0.166932225227356,-0.57687121629715,0.815990269184113,-0.0371436290442944,-0.238391101360321,0.898508012294769,-0.368582278490067,0.128467231988907,0.860839128494263,-0.492394089698792,-0.395730197429657,0.839276790618896,-0.372843116521835,-0.238391101360321,0.898508012294769,-0.368582278490067,0.1374371945858,0.811269164085388,-0.568289756774902,0.460331499576569,0.759512424468994,-0.459603935480118,0.128467231988907,0.860839128494263,-0.492394089698792,0.1374371945858,0.811269164085388,-0.568289756774902,0.440458655357361,0.664715468883514,-0.603448033332825,0.625189602375031,0.655075073242188,-0.424281090497971,0.460331499576569,0.759512424468994,-0.459603935480118,0.440458655357361,0.664715468883514,-0.603448033332825,0.56741863489151,0.567031860351563,-0.597085475921631,0.430703580379486,0.765645563602448,-0.47778794169426,0.625189602375031,0.655075073242188,-0.424281090497971,0.56741863489151,0.567031860351563,-0.597085475921631, +0.368260353803635,0.667870342731476,-0.646787166595459,0.00734899286180735,0.859205365180969,-0.511577963829041,0.430703580379486,0.765645563602448,-0.47778794169426,0.368260353803635,0.667870342731476,-0.646787166595459,-0.00923370569944382,0.746861457824707,-0.664915561676025,1.56375783433305e-08,0.863422572612762,-0.504481375217438,0.00734899286180735,0.859205365180969,-0.511577963829041,-0.00923370569944382,0.746861457824707,-0.664915561676025,6.30018490710427e-08,0.75485759973526,-0.655888676643372,0.234723672270775,-0.972029030323029,-0.00802461709827185,-5.43854135059973e-08,-0.999998927116394,0.00149909313768148,-3.02580502875571e-08,-0.923264861106873,0.384164065122604,0.271395593881607,-0.894916951656342,0.35421484708786,-0.0856686979532242,-0.996267199516296,0.0106057208031416,0.234723672270775,-0.972029030323029,-0.00802461709827185,0.271395593881607,-0.894916951656342,0.35421484708786,-0.0720962658524513,-0.922054409980774,0.380286395549774,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.0856686979532242,-0.996267199516296,0.0106057208031416,-0.0720962658524513,-0.922054409980774,0.380286395549774,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.379548102617264,-0.92499190568924,0.0182504188269377,-0.38341099023819,-0.850178241729736,0.360822707414627,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.599032282829285,-0.799202382564545,0.0493554025888443,-0.601116836071014,-0.726306319236755,0.333373218774796,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.685998976230621,-0.719344735145569,0.109309643507004,-0.695017755031586,-0.638643980026245,0.330279141664505,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.81127405166626,-0.551212430000305,0.194934114813805,-0.736273646354675,-0.65964686870575,0.15088777244091,-0.747309565544128,-0.577578544616699,0.32852891087532,-0.826429128646851,-0.469586193561554,0.310650527477264, +-0.86515998840332,-0.455062538385391,0.210751459002495,-0.81127405166626,-0.551212430000305,0.194934114813805,-0.826429128646851,-0.469586193561554,0.310650527477264,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.86515998840332,-0.455062538385391,0.210751459002495,-0.876293063163757,-0.386514991521835,0.287604779005051,-0.949438035488129,-0.21503758430481,0.228749454021454,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.946672141551971,-0.257797539234161,0.193267464637756,-0.949438035488129,-0.21503758430481,0.228749454021454,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.97174334526062,0.236035600304604,0.00144337257370353,-0.992025136947632,-0.0135554522275925,0.125308871269226,-0.991393685340881,-0.011772595345974,0.130384102463722,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.97174334526062,0.236035600304604,0.00144337257370353,-0.978284358978271,0.206213921308517,0.0208684783428907,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.908927202224731,0.406034260988235,-0.0948027819395065,-0.921564817428589,0.377173990011215,-0.0919675678014755,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.774248421192169,0.582248330116272,-0.248044922947884,-0.773005783557892,0.60207599401474,-0.19991660118103,-0.400419503450394,0.853491127490997,-0.333492338657379,-0.139661610126495,0.872599363327026,-0.468043655157089,-0.494146913290024,0.77446448802948,-0.394998282194138,-0.400419503450394,0.853491127490997,-0.333492338657379,0.10107010602951,0.919841766357422,-0.379046142101288,0.217602804303169,0.862489104270935,-0.456904381513596,-0.139661610126495,0.872599363327026,-0.468043655157089,0.10107010602951,0.919841766357422,-0.379046142101288,0.456542015075684,0.826078951358795,-0.330398410558701,0.506362557411194,0.78184312582016,-0.363755792379379, +0.217602804303169,0.862489104270935,-0.456904381513596,0.456542015075684,0.826078951358795,-0.330398410558701,0.61537104845047,0.732699990272522,-0.290635854005814,0.349090427160263,0.866576611995697,-0.356624364852905,0.506362557411194,0.78184312582016,-0.363755792379379,0.61537104845047,0.732699990272522,-0.290635854005814,0.41922864317894,0.851044833660126,-0.316180557012558,-0.0188643857836723,0.933145046234131,-0.359004735946655,0.349090427160263,0.866576611995697,-0.356624364852905,0.41922864317894,0.851044833660126,-0.316180557012558,0.000692487927153707,0.942585110664368,-0.333965301513672,2.52106922005169e-08,0.935736477375031,-0.352700024843216,-0.0188643857836723,0.933145046234131,-0.359004735946655,0.000692487927153707,0.942585110664368,-0.333965301513672,-3.55305864729871e-08,0.944239854812622,-0.329258650541306,-0.808505594730377,0.0228019841015339,0.588046431541443,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.978504598140717,-0.204393237829208,0.0274245422333479,-0.940490007400513,0.115987449884415,0.319414436817169,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.598716080188751,-0.723723530769348,-0.343166559934616,-0.778936147689819,-0.548393428325653,-0.304175943136215,-0.511491775512695,-0.809081733226776,0.289418309926987,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.598716080188751,-0.723723530769348,-0.343166559934616,-0.356468975543976,-0.884172081947327,0.301942884922028,-0.14347305893898,-0.928959310054779,0.341247856616974,-0.117516413331032,-0.920788824558258,-0.371937990188599,-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.14347305893898,-0.928959310054779,0.341247856616974,0.0295972488820553,-0.913982093334198,0.404673606157303,0.133332267403603,-0.951204597949982,-0.278266400098801,-0.117516413331032,-0.920788824558258,-0.371937990188599,0.0295972488820553,-0.913982093334198,0.404673606157303,0.106425814330578,-0.897813558578491,0.427322268486023, +0.345595240592957,-0.910361468791962,-0.227608993649483,0.133332267403603,-0.951204597949982,-0.278266400098801,0.118810221552849,-0.894129753112793,0.431759297847748,0.0746587365865707,-0.878905773162842,0.471116334199905,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.426962554454803,-0.885034561157227,-0.185518205165863,0.0746587365865707,-0.878905773162842,0.471116334199905,0.173959538340569,-0.84886234998703,0.499170124530792,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.173959538340569,-0.84886234998703,0.499170124530792,0.345366597175598,-0.783761382102966,0.516178250312805,0.773769915103912,-0.63150417804718,0.0498255901038647,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.345366597175598,-0.783761382102966,0.516178250312805,0.318178653717041,-0.851679027080536,0.416419565677643,0.650882303714752,-0.758415997028351,0.0340208187699318,0.773769915103912,-0.63150417804718,0.0498255901038647,0.106425814330578,-0.897813558578491,0.427322268486023,0.118810221552849,-0.894129753112793,0.431759297847748,0.426962554454803,-0.885034561157227,-0.185518205165863,0.345595240592957,-0.910361468791962,-0.227608993649483,0.113456606864929,0.663541316986084,0.739486753940582,-0.235429763793945,0.630609333515167,0.739530086517334,-0.822156250476837,0.554513931274414,-0.128737255930901,-0.545703768730164,0.694533884525299,-0.468860477209091,0.141706243157387,0.545924186706543,0.825763881206512,0.113456606864929,0.663541316986084,0.739486753940582,-0.545703768730164,0.694533884525299,-0.468860477209091,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.235429763793945,0.630609333515167,0.739530086517334,-0.808505594730377,0.0228019841015339,0.588046431541443,-0.940490007400513,0.115987449884415,0.319414436817169,-0.822156250476837,0.554513931274414,-0.128737255930901,-0.858511745929718,-0.474022299051285,0.195602938532829,-0.653047442436218,-0.737685441970825,0.171316161751747,-0.778936147689819,-0.548393428325653,-0.304175943136215, +-0.978504598140717,-0.204393237829208,0.0274245422333479,0.0423764511942863,0.502885341644287,0.863313615322113,0.141706243157387,0.545924186706543,0.825763881206512,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.0434524118900299,0.491198420524597,0.8699631690979,0.0423764511942863,0.502885341644287,0.863313615322113,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.00238645845092833,0.970765769481659,-0.240017145872116,-0.16955578327179,0.51304018497467,0.841451466083527,-0.0434524118900299,0.491198420524597,0.8699631690979,-0.00238645845092833,0.970765769481659,-0.240017145872116,0.177071169018745,0.962892293930054,-0.203676700592041,-0.269040018320084,0.544349014759064,0.794544875621796,-0.16955578327179,0.51304018497467,0.841451466083527,0.177071169018745,0.962892293930054,-0.203676700592041,0.444350570440292,0.854668080806732,-0.268504947423935,-0.31505212187767,0.551100432872772,0.772677481174469,-0.269040018320084,0.544349014759064,0.794544875621796,0.444350570440292,0.854668080806732,-0.268504947423935,0.618921399116516,0.756513297557831,-0.211244150996208,-0.395117282867432,0.556619703769684,0.730792045593262,-0.31505212187767,0.551100432872772,0.772677481174469,0.618921399116516,0.756513297557831,-0.211244150996208,0.687528967857361,0.7027268409729,-0.182972609996796,-0.316639393568039,0.610971570014954,0.725570917129517,-0.395117282867432,0.556619703769684,0.730792045593262,0.687528967857361,0.7027268409729,-0.182972609996796,0.674415171146393,0.721393287181854,-0.157339408993721,-0.217264279723167,0.573543012142181,0.789838373661041,-0.316639393568039,0.610971570014954,0.725570917129517,0.674415171146393,0.721393287181854,-0.157339408993721,0.71202152967453,0.687812209129333,-0.141207948327065,0.340116590261459,-0.61156165599823,0.714361965656281,-0.217264279723167,0.573543012142181,0.789838373661041,0.71202152967453,0.687812209129333,-0.141207948327065,0.907970368862152,-0.418885231018066,0.0111750448122621,0.318178653717041,-0.851679027080536,0.416419565677643, +0.340116590261459,-0.61156165599823,0.714361965656281,0.907970368862152,-0.418885231018066,0.0111750448122621,0.650882303714752,-0.758415997028351,0.0340208187699318,0.857804179191589,-0.476948946714401,0.191551223397255,0.809510111808777,0.027190363034606,0.586475968360901,0.940669000148773,0.120691485702991,0.317136079072952,0.977952122688293,-0.207108452916145,0.0267505515366793,0.507421135902405,-0.808788597583771,0.297295808792114,0.64949357509613,-0.740117192268372,0.174311548471451,0.781899452209473,-0.546732068061829,-0.299528658390045,0.60230165719986,-0.723518788814545,-0.337273120880127,0.353579491376877,-0.879789888858795,0.317728191614151,0.507421135902405,-0.808788597583771,0.297295808792114,0.60230165719986,-0.723518788814545,-0.337273120880127,0.384255915880203,-0.842719793319702,-0.377055495977402,0.142130747437477,-0.918823480606079,0.368187576532364,0.353579491376877,-0.879789888858795,0.317728191614151,0.384255915880203,-0.842719793319702,-0.377055495977402,0.108780093491077,-0.930140674114227,-0.350721210241318,-0.0265892222523689,-0.900146484375,0.434774845838547,0.142130747437477,-0.918823480606079,0.368187576532364,0.108780093491077,-0.930140674114227,-0.350721210241318,-0.13128699362278,-0.959209144115448,-0.250362604856491,-0.106808699667454,-0.887159824371338,0.448931515216827,-0.0265892222523689,-0.900146484375,0.434774845838547,-0.13128699362278,-0.959209144115448,-0.250362604856491,-0.345629841089249,-0.91473114490509,-0.20930090546608,-0.155293375253677,-0.884754359722137,0.439424335956573,-0.15303398668766,-0.885538697242737,0.438636392354965,-0.451789170503616,-0.871648609638214,-0.190039783716202,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.216106951236725,-0.874920010566711,0.433373659849167,-0.155293375253677,-0.884754359722137,0.439424335956573,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.326960325241089,-0.825367987155914,0.460287511348724,-0.216106951236725,-0.874920010566711,0.433373659849167, +-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.321650743484497,-0.862662851810455,0.390324980020523,-0.326960325241089,-0.825367987155914,0.460287511348724,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.15303398668766,-0.885538697242737,0.438636392354965,-0.106808699667454,-0.887159824371338,0.448931515216827,-0.345629841089249,-0.91473114490509,-0.20930090546608,-0.451789170503616,-0.871648609638214,-0.190039783716202,0.15533983707428,0.678589880466461,0.717903316020966,-0.138553112745285,0.691621780395508,0.708845794200897,0.528435289859772,0.652045547962189,-0.543684482574463,0.787477970123291,0.587750554084778,-0.185547024011612,-0.138553112745285,0.691621780395508,0.708845794200897,-0.0876083523035049,0.564424693584442,0.820822536945343,0.345102220773697,0.764186024665833,-0.544907510280609,0.528435289859772,0.652045547962189,-0.543684482574463,0.809510111808777,0.027190363034606,0.586475968360901,0.15533983707428,0.678589880466461,0.717903316020966,0.787477970123291,0.587750554084778,-0.185547024011612,0.940669000148773,0.120691485702991,0.317136079072952,0.64949357509613,-0.740117192268372,0.174311548471451,0.857804179191589,-0.476948946714401,0.191551223397255,0.977952122688293,-0.207108452916145,0.0267505515366793,0.781899452209473,-0.546732068061829,-0.299528658390045,-0.0876083523035049,0.564424693584442,0.820822536945343,-0.017424713820219,0.492136418819427,0.870343685150146,0.151894584298134,0.909278869628906,-0.387478977441788,0.345102220773697,0.764186024665833,-0.544907510280609,-0.017424713820219,0.492136418819427,0.870343685150146,0.0438507162034512,0.491777509450912,0.869616031646729,0.0033106142655015,0.970250010490417,-0.2420824021101,0.151894584298134,0.909278869628906,-0.387478977441788,0.0438507162034512,0.491777509450912,0.869616031646729,0.169712319970131,0.514092206954956,0.840777516365051,-0.176840782165527,0.962587714195251,-0.205310121178627,0.0033106142655015,0.970250010490417,-0.2420824021101, +0.169712319970131,0.514092206954956,0.840777516365051,0.269765794277191,0.544586539268494,0.794135928153992,-0.443993210792542,0.854627668857574,-0.269223988056183,-0.176840782165527,0.962587714195251,-0.205310121178627,0.269765794277191,0.544586539268494,0.794135928153992,0.315014570951462,0.551133930683136,0.772668898105621,-0.618931233882904,0.756517469882965,-0.211200311779976,-0.443993210792542,0.854627668857574,-0.269223988056183,0.315014570951462,0.551133930683136,0.772668898105621,0.395166456699371,0.556572616100311,0.730801165103912,-0.687529325485229,0.702727138996124,-0.182969659566879,-0.618931233882904,0.756517469882965,-0.211200311779976,0.395166456699371,0.556572616100311,0.730801165103912,0.316681206226349,0.610929429531097,0.725588202476501,-0.674412310123444,0.721396505832672,-0.157337516546249,-0.687529325485229,0.702727138996124,-0.182969659566879,0.316681206226349,0.610929429531097,0.725588202476501,0.217262208461761,0.57354336977005,0.78983873128891,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.674412310123444,0.721396505832672,-0.157337516546249,0.217262208461761,0.57354336977005,0.78983873128891,-0.339530318975449,-0.611383974552155,0.714792907238007,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.339530318975449,-0.611383974552155,0.714792907238007,-0.321650743484497,-0.862662851810455,0.390324980020523,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.940490007400513,0.115987449884415,0.319414436817169,-0.978504598140717,-0.204393237829208,0.0274245422333479,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.778936147689819,-0.548393428325653,-0.304175943136215,-0.598716080188751,-0.723723530769348,-0.343166559934616,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.598716080188751,-0.723723530769348,-0.343166559934616, +-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.388200342655182,-0.838193953037262,-0.383055180311203,-0.117516413331032,-0.920788824558258,-0.371937990188599,-0.131656393408775,-0.966851711273193,0.218778967857361,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.117516413331032,-0.920788824558258,-0.371937990188599,0.133332267403603,-0.951204597949982,-0.278266400098801,0.128061220049858,-0.96899151802063,0.211319416761398,-0.131656393408775,-0.966851711273193,0.218778967857361,0.133332267403603,-0.951204597949982,-0.278266400098801,0.345595240592957,-0.910361468791962,-0.227608993649483,0.237983629107475,-0.931620180606842,0.274677366018295,0.128061220049858,-0.96899151802063,0.211319416761398,0.426962554454803,-0.885034561157227,-0.185518205165863,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.29324072599411,-0.889165163040161,0.351276397705078,0.251219034194946,-0.908994376659393,0.33259329199791,0.519384205341339,-0.84962785243988,-0.0915016233921051,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.328634530305862,-0.844697952270508,0.422474563121796,0.29324072599411,-0.889165163040161,0.351276397705078,0.692917943000793,-0.720951020717621,-0.00971447210758924,0.773769915103912,-0.63150417804718,0.0498255901038647,0.309246808290482,-0.813580274581909,0.4923956990242,0.328634530305862,-0.844697952270508,0.422474563121796,0.773769915103912,-0.63150417804718,0.0498255901038647,0.650882303714752,-0.758415997028351,0.0340208187699318,0.281215906143188,-0.870656669139862,0.403577208518982,0.309246808290482,-0.813580274581909,0.4923956990242,0.345595240592957,-0.910361468791962,-0.227608993649483,0.426962554454803,-0.885034561157227,-0.185518205165863,0.251219034194946,-0.908994376659393,0.33259329199791,0.237983629107475,-0.931620180606842,0.274677366018295,-0.545703768730164,0.694533884525299,-0.468860477209091,-0.822156250476837,0.554513931274414,-0.128737255930901, +-0.803932726383209,0.179387986660004,0.56702047586441,-0.535514771938324,0.709998667240143,0.457302868366241,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.545703768730164,0.694533884525299,-0.468860477209091,-0.535514771938324,0.709998667240143,0.457302868366241,-0.121377855539322,0.987778186798096,0.097783550620079,-0.822156250476837,0.554513931274414,-0.128737255930901,-0.940490007400513,0.115987449884415,0.319414436817169,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.803932726383209,0.179387986660004,0.56702047586441,-0.978504598140717,-0.204393237829208,0.0274245422333479,-0.778936147689819,-0.548393428325653,-0.304175943136215,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.288102775812149,0.827652215957642,-0.481651961803436,-0.121377855539322,0.987778186798096,0.097783550620079,-0.00962313264608383,0.994076430797577,0.108256317675114,-0.00238645845092833,0.970765769481659,-0.240017145872116,-0.112935565412045,0.927075207233429,-0.357459247112274,-0.00962313264608383,0.994076430797577,0.108256317675114,0.0122653981670737,0.990436851978302,0.137420937418938,0.177071169018745,0.962892293930054,-0.203676700592041,-0.00238645845092833,0.970765769481659,-0.240017145872116,0.0122653981670737,0.990436851978302,0.137420937418938,0.063245914876461,0.992519915103912,0.104422770440578,0.444350570440292,0.854668080806732,-0.268504947423935,0.177071169018745,0.962892293930054,-0.203676700592041,0.063245914876461,0.992519915103912,0.104422770440578,0.129967212677002,0.980889797210693,0.144788861274719,0.618921399116516,0.756513297557831,-0.211244150996208,0.444350570440292,0.854668080806732,-0.268504947423935,0.129967212677002,0.980889797210693,0.144788861274719,0.267897844314575,0.917610108852386,0.293636858463287,0.687528967857361,0.7027268409729,-0.182972609996796,0.618921399116516,0.756513297557831,-0.211244150996208,0.267897844314575,0.917610108852386,0.293636858463287, +0.398748338222504,0.839199781417847,0.369788587093353,0.674415171146393,0.721393287181854,-0.157339408993721,0.687528967857361,0.7027268409729,-0.182972609996796,0.398748338222504,0.839199781417847,0.369788587093353,0.288282722234726,0.88777357339859,0.35881894826889,0.71202152967453,0.687812209129333,-0.141207948327065,0.674415171146393,0.721393287181854,-0.157339408993721,0.288282722234726,0.88777357339859,0.35881894826889,0.280293792486191,0.902267336845398,0.327641576528549,0.907970368862152,-0.418885231018066,0.0111750448122621,0.71202152967453,0.687812209129333,-0.141207948327065,0.280293792486191,0.902267336845398,0.327641576528549,0.40091934800148,0.279312282800674,0.872495532035828,0.650882303714752,-0.758415997028351,0.0340208187699318,0.907970368862152,-0.418885231018066,0.0111750448122621,0.40091934800148,0.279312282800674,0.872495532035828,0.281215906143188,-0.870656669139862,0.403577208518982,0.977952122688293,-0.207108452916145,0.0267505515366793,0.940669000148773,0.120691485702991,0.317136079072952,0.800122380256653,-0.0497160330414772,0.59777307510376,0.823051929473877,-0.0730400457978249,0.563250243663788,0.60230165719986,-0.723518788814545,-0.337273120880127,0.781899452209473,-0.546732068061829,-0.299528658390045,0.69629830121994,-0.591785550117493,0.406150937080383,0.569242238998413,-0.778901755809784,0.263202279806137,0.384255915880203,-0.842719793319702,-0.377055495977402,0.60230165719986,-0.723518788814545,-0.337273120880127,0.569242238998413,-0.778901755809784,0.263202279806137,0.396028101444244,-0.893289387226105,0.212592795491219,0.108780093491077,-0.930140674114227,-0.350721210241318,0.384255915880203,-0.842719793319702,-0.377055495977402,0.396028101444244,-0.893289387226105,0.212592795491219,0.124722667038441,-0.967377960681915,0.220508724451065,-0.13128699362278,-0.959209144115448,-0.250362604856491,0.108780093491077,-0.930140674114227,-0.350721210241318,0.124722667038441,-0.967377960681915,0.220508724451065,-0.12577448785305,-0.969340980052948,0.211090013384819,-0.345629841089249,-0.91473114490509,-0.20930090546608, +-0.13128699362278,-0.959209144115448,-0.250362604856491,-0.12577448785305,-0.969340980052948,0.211090013384819,-0.229873493313789,-0.934829354286194,0.270651876926422,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.451789170503616,-0.871648609638214,-0.190039783716202,-0.254147201776505,-0.911695897579193,0.322830975055695,-0.306607842445374,-0.890947222709656,0.334969818592072,-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.558195769786835,-0.819674491882324,-0.128650650382042,-0.306607842445374,-0.890947222709656,0.334969818592072,-0.325139492750168,-0.850846469402313,0.412728160619736,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.696458995342255,-0.716163814067841,-0.0453238636255264,-0.325139492750168,-0.850846469402313,0.412728160619736,-0.306984275579453,-0.815310060977936,0.490948140621185,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.76586240530014,-0.642199516296387,0.0321646556258202,-0.306984275579453,-0.815310060977936,0.490948140621185,-0.280955612659454,-0.870750963687897,0.403555154800415,-0.451789170503616,-0.871648609638214,-0.190039783716202,-0.345629841089249,-0.91473114490509,-0.20930090546608,-0.229873493313789,-0.934829354286194,0.270651876926422,-0.254147201776505,-0.911695897579193,0.322830975055695,0.787477970123291,0.587750554084778,-0.185547024011612,0.528435289859772,0.652045547962189,-0.543684482574463,0.548014461994171,0.716788947582245,0.431154042482376,0.805688381195068,0.182572737336159,0.563500881195068,0.528435289859772,0.652045547962189,-0.543684482574463,0.345102220773697,0.764186024665833,-0.544907510280609,0.142034143209457,0.98800665140152,0.0605735071003437,0.548014461994171,0.716788947582245,0.431154042482376,0.940669000148773,0.120691485702991,0.317136079072952,0.787477970123291,0.587750554084778,-0.185547024011612,0.805688381195068,0.182572737336159,0.563500881195068,0.800122380256653,-0.0497160330414772,0.59777307510376,0.781899452209473,-0.546732068061829,-0.299528658390045,0.977952122688293,-0.207108452916145,0.0267505515366793, +0.823051929473877,-0.0730400457978249,0.563250243663788,0.69629830121994,-0.591785550117493,0.406150937080383,0.345102220773697,0.764186024665833,-0.544907510280609,0.151894584298134,0.909278869628906,-0.387478977441788,0.0197281949222088,0.995517432689667,0.0924965441226959,0.142034143209457,0.98800665140152,0.0605735071003437,0.151894584298134,0.909278869628906,-0.387478977441788,0.0033106142655015,0.970250010490417,-0.2420824021101,-0.0119735728949308,0.990600645542145,0.136260956525803,0.0197281949222088,0.995517432689667,0.0924965441226959,0.0033106142655015,0.970250010490417,-0.2420824021101,-0.176840782165527,0.962587714195251,-0.205310121178627,-0.0631091594696045,0.992591083049774,0.103827908635139,-0.0119735728949308,0.990600645542145,0.136260956525803,-0.176840782165527,0.962587714195251,-0.205310121178627,-0.443993210792542,0.854627668857574,-0.269223988056183,-0.129930645227432,0.980921268463135,0.144607678055763,-0.0631091594696045,0.992591083049774,0.103827908635139,-0.443993210792542,0.854627668857574,-0.269223988056183,-0.618931233882904,0.756517469882965,-0.211200311779976,-0.267864286899567,0.917622327804565,0.293628811836243,-0.129930645227432,0.980921268463135,0.144607678055763,-0.618931233882904,0.756517469882965,-0.211200311779976,-0.687529325485229,0.702727138996124,-0.182969659566879,-0.398750096559525,0.839197754859924,0.369791120290756,-0.267864286899567,0.917622327804565,0.293628811836243,-0.687529325485229,0.702727138996124,-0.182969659566879,-0.674412310123444,0.721396505832672,-0.157337516546249,-0.288278460502625,0.887776076793671,0.358816206455231,-0.398750096559525,0.839197754859924,0.369791120290756,-0.674412310123444,0.721396505832672,-0.157337516546249,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.280291855335236,0.902268290519714,0.32764059305191,-0.288278460502625,0.887776076793671,0.358816206455231,-0.71202027797699,0.687813639640808,-0.141207441687584,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.400918304920197,0.279313176870346,0.872495651245117, +-0.280291855335236,0.902268290519714,0.32764059305191,-0.907971680164337,-0.418882578611374,0.0111746350303292,-0.649700701236725,-0.759482562541962,0.0327922664582729,-0.280955612659454,-0.870750963687897,0.403555154800415,-0.400918304920197,0.279313176870346,0.872495651245117,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.571510314941406,-0.776117503643036,0.266491204500198,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.400049656629562,-0.890272080898285,0.217659950256348,-0.131656393408775,-0.966851711273193,0.218778967857361,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.131656393408775,-0.966851711273193,0.218778967857361,0.128061220049858,-0.96899151802063,0.211319416761398,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.128061220049858,-0.96899151802063,0.211319416761398,0.237983629107475,-0.931620180606842,0.274677366018295,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.251219034194946,-0.908994376659393,0.33259329199791,0.29324072599411,-0.889165163040161,0.351276397705078,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.29324072599411,-0.889165163040161,0.351276397705078,0.328634530305862,-0.844697952270508,0.422474563121796,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.328634530305862,-0.844697952270508,0.422474563121796,0.309246808290482,-0.813580274581909,0.4923956990242,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.309246808290482,-0.813580274581909,0.4923956990242,0.281215906143188,-0.870656669139862,0.403577208518982,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.237983629107475,-0.931620180606842,0.274677366018295,0.251219034194946,-0.908994376659393,0.33259329199791, +-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.535514771938324,0.709998667240143,0.457302868366241,-0.803932726383209,0.179387986660004,0.56702047586441,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.121377855539322,0.987778186798096,0.097783550620079,-0.535514771938324,0.709998667240143,0.457302868366241,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.803932726383209,0.179387986660004,0.56702047586441,-0.801450252532959,-0.0496603436768055,0.595996022224426,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.823155224323273,-0.0730217099189758,0.563101470470428,-0.702892601490021,-0.583602070808411,0.406633257865906,-0.194968432188034,-0.00419577397406101,0.980800628662109,-0.00962313264608383,0.994076430797577,0.108256317675114,-0.121377855539322,0.987778186798096,0.097783550620079,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.0122653981670737,0.990436851978302,0.137420937418938,-0.00962313264608383,0.994076430797577,0.108256317675114,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.063245914876461,0.992519915103912,0.104422770440578,0.0122653981670737,0.990436851978302,0.137420937418938,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.129967212677002,0.980889797210693,0.144788861274719,0.063245914876461,0.992519915103912,0.104422770440578,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.267897844314575,0.917610108852386,0.293636858463287,0.129967212677002,0.980889797210693,0.144788861274719,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.398748338222504,0.839199781417847,0.369788587093353,0.267897844314575,0.917610108852386,0.293636858463287,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.288282722234726,0.88777357339859,0.35881894826889,0.398748338222504,0.839199781417847,0.369788587093353,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.280293792486191,0.902267336845398,0.327641576528549,0.288282722234726,0.88777357339859,0.35881894826889,-0.194968432188034,-0.00419577397406101,0.980800628662109, +0.40091934800148,0.279312282800674,0.872495532035828,0.280293792486191,0.902267336845398,0.327641576528549,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.281215906143188,-0.870656669139862,0.403577208518982,0.40091934800148,0.279312282800674,0.872495532035828,-0.194968432188034,-0.00419577397406101,0.980800628662109,0.823051929473877,-0.0730400457978249,0.563250243663788,0.800122380256653,-0.0497160330414772,0.59777307510376,0.196013137698174,-0.00617906451225281,0.980581760406494,0.569242238998413,-0.778901755809784,0.263202279806137,0.69629830121994,-0.591785550117493,0.406150937080383,0.196013137698174,-0.00617906451225281,0.980581760406494,0.396028101444244,-0.893289387226105,0.212592795491219,0.569242238998413,-0.778901755809784,0.263202279806137,0.196013137698174,-0.00617906451225281,0.980581760406494,0.124722667038441,-0.967377960681915,0.220508724451065,0.396028101444244,-0.893289387226105,0.212592795491219,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.12577448785305,-0.969340980052948,0.211090013384819,0.124722667038441,-0.967377960681915,0.220508724451065,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.229873493313789,-0.934829354286194,0.270651876926422,-0.12577448785305,-0.969340980052948,0.211090013384819,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.306607842445374,-0.890947222709656,0.334969818592072,-0.254147201776505,-0.911695897579193,0.322830975055695,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.325139492750168,-0.850846469402313,0.412728160619736,-0.306607842445374,-0.890947222709656,0.334969818592072,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.306984275579453,-0.815310060977936,0.490948140621185,-0.325139492750168,-0.850846469402313,0.412728160619736,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.280955612659454,-0.870750963687897,0.403555154800415,-0.306984275579453,-0.815310060977936,0.490948140621185,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.254147201776505,-0.911695897579193,0.322830975055695, +-0.229873493313789,-0.934829354286194,0.270651876926422,0.196013137698174,-0.00617906451225281,0.980581760406494,0.805688381195068,0.182572737336159,0.563500881195068,0.548014461994171,0.716788947582245,0.431154042482376,0.196013137698174,-0.00617906451225281,0.980581760406494,0.548014461994171,0.716788947582245,0.431154042482376,0.142034143209457,0.98800665140152,0.0605735071003437,0.196013137698174,-0.00617906451225281,0.980581760406494,0.800122380256653,-0.0497160330414772,0.59777307510376,0.805688381195068,0.182572737336159,0.563500881195068,0.196013137698174,-0.00617906451225281,0.980581760406494,0.69629830121994,-0.591785550117493,0.406150937080383,0.823051929473877,-0.0730400457978249,0.563250243663788,0.196013137698174,-0.00617906451225281,0.980581760406494,0.142034143209457,0.98800665140152,0.0605735071003437,0.0197281949222088,0.995517432689667,0.0924965441226959,0.196013137698174,-0.00617906451225281,0.980581760406494,0.0197281949222088,0.995517432689667,0.0924965441226959,-0.0119735728949308,0.990600645542145,0.136260956525803,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.0119735728949308,0.990600645542145,0.136260956525803,-0.0631091594696045,0.992591083049774,0.103827908635139,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.0631091594696045,0.992591083049774,0.103827908635139,-0.129930645227432,0.980921268463135,0.144607678055763,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.129930645227432,0.980921268463135,0.144607678055763,-0.267864286899567,0.917622327804565,0.293628811836243,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.267864286899567,0.917622327804565,0.293628811836243,-0.398750096559525,0.839197754859924,0.369791120290756,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.398750096559525,0.839197754859924,0.369791120290756,-0.288278460502625,0.887776076793671,0.358816206455231,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.288278460502625,0.887776076793671,0.358816206455231,-0.280291855335236,0.902268290519714,0.32764059305191, +0.196013137698174,-0.00617906451225281,0.980581760406494,-0.280291855335236,0.902268290519714,0.32764059305191,-0.400918304920197,0.279313176870346,0.872495651245117,0.196013137698174,-0.00617906451225281,0.980581760406494,-0.400918304920197,0.279313176870346,0.872495651245117,-0.280955612659454,-0.870750963687897,0.403555154800415,0.196013137698174,-0.00617906451225281,0.980581760406494 + } + NormalsW: *33849 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1, +1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *18870 { + a: 0.599494993686676,0.436589986085892,0.614665031433105,0.406969994306564,0.700070023536682,0.462534993886948,0.642899990081787,0.360805004835129,0.58271998167038,0.424589991569519,0.706595003604889,0.484149992465973,0.556320011615753,0.431515008211136,0.561424970626831,0.421719998121262,0.569755017757416,0.429755002260208,0.679275035858154,0.488074988126755,0.679740011692047,0.491369992494583,0.680209994316101,0.494664996862411,0.587324976921082,0.442880004644394,0.739920020103455,0.393550008535385,0.59512996673584,0.415060013532639,0.607424974441528,0.419450014829636,0.732299983501434,0.308129996061325,0.692245006561279,0.30460000038147,0.763355016708374,0.427450001239777,0.747439980506897,0.372229993343353,0.603460013866425,0.428020000457764,0.654365003108978,0.418534994125366,0.658910036087036,0.306659996509552,0.609740018844604,0.442539989948273,0.694530010223389,0.379530012607574,0.682950019836426,0.342485010623932,0.667275011539459,0.287304997444153,0.631789982318878,0.304084986448288,0.657729983329773,0.490940004587173,0.666370034217834,0.496740013360977,0.743385016918182,0.370539993047714,0.63808000087738,0.416860014200211,0.622004985809326,0.364969998598099,0.66347998380661,0.491165012121201,0.681609988212585,0.294649988412857,0.616739988327026,0.322064995765686,0.662365019321442,0.282389998435974,0.5918949842453,0.367579996585846,0.633109986782074,0.342965006828308,0.724184989929199,0.281295001506805,0.711144983768463,0.380315005779266,0.618605017662048,0.312254995107651,0.772655010223389,0.433299988508224,0.674305021762848,0.496825009584427,0.703999996185303,0.408275008201599,0.731855034828186,0.369029998779297,0.663810014724731,0.374199986457825,0.641730010509491,0.494769990444183,0.741490006446838,0.430130004882813,0.611050009727478,0.431710004806519,0.603044986724854,0.375789999961853,0.556789994239807,0.434920012950897,0.733325004577637,0.451119989156723,0.640169978141785,0.375910013914108,0.608235001564026,0.284965008497238,0.658580005168915,0.290885001420975,0.701049983501434, +0.299490004777908,0.620944976806641,0.458860009908676,0.663659989833832,0.46908500790596,0.664470016956329,0.433185011148453,0.587064981460571,0.384415000677109,0.621625006198883,0.378924995660782,0.744159996509552,0.460435003042221,0.628809988498688,0.392024993896484,0.669799983501434,0.306789994239807,0.710685014724731,0.365034997463226,0.685949981212616,0.377555012702942,0.722490012645721,0.441805005073547,0.745095014572144,0.396109998226166,0.689390003681183,0.323345005512238,0.615705013275146,0.476889997720718,0.661800026893616,0.359355002641678,0.621240019798279,0.392884999513626,0.663839995861053,0.447010010480881,0.654330015182495,0.404204994440079,0.694830000400543,0.314440011978149,0.672895014286041,0.40496501326561,0.649590015411377,0.29958501458168,0.61317503452301,0.392654985189438,0.665580034255981,0.321819990873337,0.671329975128174,0.321954995393753,0.637435019016266,0.391019999980927,0.637759983539581,0.403939992189407,0.701484978199005,0.366840004920959,0.762264966964722,0.377745002508163,0.675069987773895,0.289974987506866,0.616680026054382,0.473219990730286,0.669650018215179,0.433245003223419,0.590690016746521,0.315230011940002,0.674300014972687,0.468625009059906,0.718540012836456,0.45754998922348,0.766885042190552,0.444525003433228,0.571659982204437,0.370909988880157,0.679820001125336,0.314565002918243,0.77878999710083,0.383605003356934,0.658744990825653,0.298770010471344,0.670845031738281,0.341140002012253,0.704859972000122,0.42119500041008,0.613059997558594,0.36327001452446,0.696219980716705,0.447474986314774,0.62417995929718,0.344209998846054,0.724415004253387,0.301335006952286,0.703785002231598,0.346015006303787,0.66509997844696,0.419355005025864,0.670565009117126,0.314375013113022,0.726019978523254,0.31734499335289,0.614730000495911,0.480560004711151,0.591760039329529,0.463869988918304,0.736800014972687,0.386685013771057,0.647960007190704,0.306450009346008,0.615079998970032,0.291310012340546,0.59927499294281,0.300599992275238,0.658329963684082,0.3142049908638,0.730494976043701,0.28999999165535, +0.588925004005432,0.419824987649918,0.636099994182587,0.430770009756088,0.635159969329834,0.322670012712479,0.737614989280701,0.365399986505508,0.696815013885498,0.30333998799324,0.631595015525818,0.299214988946915,0.666830003261566,0.29101499915123,0.667720019817352,0.283589988946915,0.566249966621399,0.425029993057251,0.665825009346008,0.389045000076294,0.67936497926712,0.447820007801056,0.629130005836487,0.415035009384155,0.703604996204376,0.303149998188019,0.760264992713928,0.429960012435913,0.658164978027344,0.446909993886948,0.657750010490417,0.321745008230209,0.730024993419647,0.358240008354187,0.733020007610321,0.315925002098083,0.610210001468658,0.301899999380112,0.62897002696991,0.40353000164032,0.671469986438751,0.419384986162186,0.654299974441528,0.38986998796463,0.673444986343384,0.292784988880157,0.665459990501404,0.404199987649918,0.621405005455017,0.323810011148453,0.705280005931854,0.295635014772415,0.613115012645721,0.377959996461868,0.707120001316071,0.322914987802505,0.647589981555939,0.496194988489151,0.730480015277863,0.475845009088516,0.620140016078949,0.405180007219315,0.63916003704071,0.297255009412766,0.625209987163544,0.444505006074905,0.642359972000122,0.491219997406006,0.5640549659729,0.395395010709763,0.715579986572266,0.319920003414154,0.642989993095398,0.487664997577667,0.687059998512268,0.314734995365143,0.674019992351532,0.489910006523132,0.580260038375854,0.369610011577606,0.719884991645813,0.432704985141754,0.567494988441467,0.417439997196198,0.656804978847504,0.340674996376038,0.618404984474182,0.294905006885529,0.683750033378601,0.419225007295609,0.681964993476868,0.301245003938675,0.639914989471436,0.292544990777969,0.586960017681122,0.356054991483688,0.649294972419739,0.289819985628128,0.573925018310547,0.394724994897842,0.662930011749268,0.290244996547699,0.707729995250702,0.395900011062622,0.766945004463196,0.404060006141663,0.687564969062805,0.392634987831116,0.672340035438538,0.375434994697571,0.77572500705719,0.408455014228821,0.617370009422302,0.379114985466003,0.714680016040802, +0.294120013713837,0.593670010566711,0.357185006141663,0.639980018138885,0.305900007486343,0.666885018348694,0.49379500746727,0.71160501241684,0.395599991083145,0.648900032043457,0.468244999647141,0.728259980678558,0.472079992294312,0.700540006160736,0.434334993362427,0.734920024871826,0.336329996585846,0.651219964027405,0.292715013027191,0.636245012283325,0.295780003070831,0.657124996185303,0.493815004825592,0.717575013637543,0.340595006942749,0.691510021686554,0.344190001487732,0.643034994602203,0.467085003852844,0.667829990386963,0.44710499048233,0.552145004272461,0.375220000743866,0.556784987449646,0.398470014333725,0.737214982509613,0.361065000295639,0.644469976425171,0.321960002183914,0.643530011177063,0.431769996881485,0.68648499250412,0.433050006628036,0.601729989051819,0.391739994287491,0.662665009498596,0.493930011987686,0.679194986820221,0.296369999647141,0.713824987411499,0.30265000462532,0.626950025558472,0.30265000462532,0.647364974021912,0.286929994821548,0.593044996261597,0.460020005702972,0.771479964256287,0.436500012874603,0.719569981098175,0.361270010471344,0.592114984989166,0.299650013446808,0.629074990749359,0.313769996166229,0.664080023765564,0.298465013504028,0.674319982528687,0.390545010566711,0.575960040092468,0.370260000228882,0.64621502161026,0.3142049908638,0.679165005683899,0.433279991149902,0.71553498506546,0.285594999790192,0.619589984416962,0.344489991664886,0.684984982013702,0.29763999581337,0.667609989643097,0.468980014324188,0.726034998893738,0.46832001209259,0.62417995929718,0.313230007886887,0.616964995861053,0.393054991960526,0.692274987697601,0.299834996461868,0.684334993362427,0.362480014562607,0.702099978923798,0.324759989976883,0.73545503616333,0.424789994955063,0.578970015048981,0.392789989709854,0.722609996795654,0.394775003194809,0.687735021114349,0.296324998140335,0.681559979915619,0.322490006685257,0.643074989318848,0.446505010128021,0.626354992389679,0.323455005884171,0.736814975738525,0.356734991073608,0.758159995079041,0.399670004844666,0.543675005435944,0.377090007066727, +0.729420006275177,0.279670000076294,0.69362998008728,0.365034997463226,0.648824989795685,0.48981499671936,0.661849975585938,0.49669998884201,0.708904981613159,0.343975007534027,0.55535501241684,0.425999999046326,0.598430037498474,0.403400003910065,0.702314972877502,0.381099998950958,0.69945502281189,0.345560014247894,0.725215017795563,0.309340000152588,0.697420001029968,0.324279993772507,0.591400027275085,0.307440012693405,0.592944979667664,0.289294987916946,0.612365007400513,0.420879989862442,0.694514989852905,0.406150013208389,0.61489999294281,0.342664986848831,0.583209991455078,0.367164999246597,0.751495003700256,0.373919993638992,0.645144999027252,0.296315014362335,0.705365002155304,0.313035011291504,0.695429980754852,0.394019991159439,0.714704990386963,0.311284989118576,0.586165010929108,0.364719986915588,0.731575012207031,0.300334990024567,0.635474979877472,0.300669997930527,0.590115010738373,0.377974987030029,0.770529985427856,0.380674988031387,0.754055023193359,0.421600013971329,0.70525997877121,0.480874985456467,0.724300026893616,0.291314989328384,0.714444994926453,0.409604996442795,0.617774963378906,0.296880006790161,0.740499973297119,0.367969989776611,0.61904501914978,0.417474985122681,0.620469987392426,0.302450001239777,0.60139000415802,0.451279997825623,0.665405035018921,0.314254999160767,0.684729993343353,0.306124985218048,0.629935026168823,0.377640008926392,0.643684983253479,0.341380000114441,0.754189968109131,0.437325000762939,0.609295010566711,0.310499995946884,0.642565011978149,0.301104992628098,0.604359984397888,0.359840005636215,0.642529964447021,0.294429987668991,0.67576003074646,0.299715012311935,0.670355021953583,0.360325008630753,0.622680008411407,0.298774987459183,0.549515008926392,0.401544988155365,0.648975014686584,0.446675002574921,0.584015011787415,0.390855014324188,0.656265020370483,0.432725012302399,0.693599998950958,0.418285012245178,0.599259972572327,0.290589988231659,0.586560010910034,0.360385000705719,0.588824987411499,0.335640013217926,0.595674991607666,0.336870014667511,0.70660001039505, +0.381590008735657,0.657665014266968,0.287180006504059,0.593780040740967,0.278934985399246,0.703925013542175,0.477595001459122,0.711040019989014,0.446774989366531,0.66523003578186,0.306690007448196,0.69945502281189,0.314049988985062,0.678080022335052,0.30663999915123,0.608375012874603,0.319094985723495,0.679319977760315,0.467945009469986,0.711614966392517,0.435815006494522,0.728025019168854,0.337794989347458,0.733680009841919,0.379824995994568,0.709959983825684,0.410380005836487,0.712185025215149,0.42485499382019,0.663689970970154,0.340590000152588,0.575155019760132,0.449169993400574,0.657945036888123,0.468924999237061,0.674574971199036,0.447335004806519,0.721090018749237,0.378019988536835,0.703140020370483,0.395359992980957,0.617779970169067,0.365170001983643,0.667394995689392,0.490855008363724,0.590474963188171,0.467720001935959,0.637570023536682,0.314285010099411,0.685654997825623,0.405930012464523,0.706155002117157,0.297549992799759,0.656520009040833,0.496690005064011,0.597679972648621,0.316554993391037,0.688614964485168,0.301120012998581,0.610300004482269,0.406055003404617,0.631060004234314,0.363254994153976,0.655860006809235,0.359609991312027,0.606364965438843,0.339469999074936,0.708705008029938,0.291949987411499,0.655080020427704,0.37474000453949,0.674160003662109,0.493369996547699,0.749045014381409,0.423420011997223,0.676689982414246,0.287164986133575,0.68402498960495,0.292930006980896,0.560615003108978,0.373349994421005,0.598479986190796,0.308575004339218,0.656754970550537,0.283470004796982,0.622125029563904,0.430990010499954,0.71728503704071,0.423604995012283,0.599250018596649,0.280575007200241,0.726014971733093,0.407115012407303,0.648204982280731,0.493005007505417,0.609225034713745,0.293435007333755,0.662649989128113,0.286314994096756,0.6683149933815,0.298904985189438,0.750270009040833,0.398669987916946,0.705474972724915,0.36727499961853,0.729414999485016,0.419454991817474,0.576184988021851,0.418540000915527,0.402938723564148,0.0219092443585396,0.403812795877457,0.0277214460074902,0.408011436462402,0.0230553075671196, +0.408095359802246,0.0172273479402065,0.414887964725494,0.0202267356216908,0.41511669754982,0.0115994708612561,0.424735695123672,0.0204264856874943,0.425503522157669,0.00795878376811743,0.43552303314209,0.0224140696227551,0.437830895185471,0.00482531217858195,0.446914374828339,0.0276715345680714,0.449745804071426,0.00661841919645667,0.457981318235397,0.0346410945057869,0.461966067552567,0.0144519936293364,0.46610763669014,0.0421995669603348,0.471010684967041,0.0227081291377544,0.47228878736496,0.0496696308255196,0.479503929615021,0.0331420823931694,0.477875888347626,0.0579458326101303,0.485966920852661,0.043541394174099,0.483209908008575,0.06786098331213,0.491942018270493,0.057019054889679,0.488052099943161,0.079984724521637,0.49472314119339,0.073886975646019,0.490634858608246,0.0894224345684052,0.494954824447632,0.0846675559878349,0.491060465574265,0.100401788949966,0.494429379701614,0.0964860394597054,0.485964328050613,0.0983584895730019,0.48801577091217,0.104184702038765,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629,0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343,0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.433449387550354,0.0440797172486782,0.434733867645264,0.0469887256622314,0.432869553565979,0.0544224828481674,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734, +0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536,0.344609946012497,0.03502357006073,0.341523259878159,0.0291850678622723,0.343071222305298,0.0244707502424717,0.435818761587143,0.0491218417882919,0.433857172727585,0.0591713413596153,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.402938723564148,0.0219092443585396,0.408095359802246,0.0172273479402065,0.408011436462402,0.0230553075671196,0.403812795877457,0.0277214460074902,0.41511669754982,0.0115994708612561,0.414887964725494,0.0202267356216908,0.425503522157669,0.00795878376811743,0.424735695123672,0.0204264856874943,0.437830895185471,0.00482531217858195,0.43552303314209,0.0224140696227551,0.449745804071426,0.00661841919645667,0.446914374828339,0.0276715345680714,0.461966067552567,0.0144519936293364,0.457981318235397,0.0346410945057869,0.471010684967041,0.0227081291377544,0.46610763669014,0.0421995669603348,0.479503929615021,0.0331420823931694,0.47228878736496,0.0496696308255196,0.485966920852661,0.043541394174099,0.477875888347626,0.0579458326101303,0.491942018270493,0.057019054889679,0.483209908008575,0.06786098331213,0.49472314119339,0.073886975646019,0.488052099943161,0.079984724521637,0.494954824447632,0.0846675559878349,0.490634858608246,0.0894224345684052,0.494429379701614,0.0964860394597054,0.491060465574265,0.100401788949966,0.48801577091217,0.104184702038765,0.485964328050613,0.0983584895730019,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629, +0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343,0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.432869553565979,0.0544224828481674,0.434733867645264,0.0469887256622314,0.433449387550354,0.0440797172486782,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734,0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536,0.344609946012497,0.03502357006073,0.343071222305298,0.0244707502424717,0.341523259878159,0.0291850678622723,0.433857172727585,0.0591713413596153,0.435818761587143,0.0491218417882919,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.402938723564148,0.0219092443585396,0.403812795877457,0.0277214460074902,0.408011436462402,0.0230553075671196,0.408095359802246,0.0172273479402065,0.414887964725494,0.0202267356216908,0.41511669754982,0.0115994708612561,0.424735695123672,0.0204264856874943,0.425503522157669,0.00795878376811743,0.43552303314209,0.0224140696227551, +0.437830895185471,0.00482531217858195,0.446914374828339,0.0276715345680714,0.449745804071426,0.00661841919645667,0.457981318235397,0.0346410945057869,0.461966067552567,0.0144519936293364,0.46610763669014,0.0421995669603348,0.471010684967041,0.0227081291377544,0.47228878736496,0.0496696308255196,0.479503929615021,0.0331420823931694,0.477875888347626,0.0579458326101303,0.485966920852661,0.043541394174099,0.483209908008575,0.06786098331213,0.491942018270493,0.057019054889679,0.488052099943161,0.079984724521637,0.49472314119339,0.073886975646019,0.490634858608246,0.0894224345684052,0.494954824447632,0.0846675559878349,0.491060465574265,0.100401788949966,0.494429379701614,0.0964860394597054,0.485964328050613,0.0983584895730019,0.48801577091217,0.104184702038765,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629,0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343,0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.433449387550354,0.0440797172486782,0.434733867645264,0.0469887256622314,0.432869553565979,0.0544224828481674,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734,0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536, +0.344609946012497,0.03502357006073,0.341523259878159,0.0291850678622723,0.343071222305298,0.0244707502424717,0.435818761587143,0.0491218417882919,0.433857172727585,0.0591713413596153,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.402938723564148,0.0219092443585396,0.408095359802246,0.0172273479402065,0.408011436462402,0.0230553075671196,0.403812795877457,0.0277214460074902,0.41511669754982,0.0115994708612561,0.414887964725494,0.0202267356216908,0.425503522157669,0.00795878376811743,0.424735695123672,0.0204264856874943,0.437830895185471,0.00482531217858195,0.43552303314209,0.0224140696227551,0.449745804071426,0.00661841919645667,0.446914374828339,0.0276715345680714,0.461966067552567,0.0144519936293364,0.457981318235397,0.0346410945057869,0.471010684967041,0.0227081291377544,0.46610763669014,0.0421995669603348,0.479503929615021,0.0331420823931694,0.47228878736496,0.0496696308255196,0.485966920852661,0.043541394174099,0.477875888347626,0.0579458326101303,0.491942018270493,0.057019054889679,0.483209908008575,0.06786098331213,0.49472314119339,0.073886975646019,0.488052099943161,0.079984724521637,0.494954824447632,0.0846675559878349,0.490634858608246,0.0894224345684052,0.494429379701614,0.0964860394597054,0.491060465574265,0.100401788949966,0.48801577091217,0.104184702038765,0.485964328050613,0.0983584895730019,0.483922094106674,0.0911953151226044,0.477843701839447,0.0779138505458832,0.472201257944107,0.0687426179647446,0.46753653883934,0.0616916008293629,0.461978405714035,0.0548861362040043,0.454261153936386,0.0485335923731327,0.445210963487625,0.0423348806798458,0.43450453877449,0.0364674888551235,0.423219263553619,0.0344794765114784,0.413430750370026,0.0321091637015343, +0.407651662826538,0.0339981392025948,0.405134797096252,0.0350660607218742,0.431381851434708,0.0474456958472729,0.432869553565979,0.0544224828481674,0.434733867645264,0.0469887256622314,0.433449387550354,0.0440797172486782,0.42759981751442,0.0530157722532749,0.429314106702805,0.0611639134585857,0.420271545648575,0.0618074536323547,0.421601086854935,0.0708037316799164,0.412846356630325,0.0665537938475609,0.413809716701508,0.075038842856884,0.406286895275116,0.0682555288076401,0.406865298748016,0.0771427005529404,0.395836710929871,0.0699583813548088,0.395619422197342,0.0784042924642563,0.38184118270874,0.0675530880689621,0.380948722362518,0.075341135263443,0.36993619799614,0.061733927577734,0.369228333234787,0.0682944506406784,0.360229134559631,0.0520382821559906,0.35849142074585,0.0561394914984703,0.351828306913376,0.0405425503849983,0.350542604923248,0.04532241076231,0.346367746591568,0.0286050010472536,0.344609946012497,0.03502357006073,0.343071222305298,0.0244707502424717,0.341523259878159,0.0291850678622723,0.433857172727585,0.0591713413596153,0.435818761587143,0.0491218417882919,0.43046760559082,0.0667726099491119,0.422456681728363,0.0768226832151413,0.414444446563721,0.0808276534080505,0.407249599695206,0.0829412788152695,0.395476758480072,0.0840151086449623,0.380364775657654,0.0806069299578667,0.36878827214241,0.072780929505825,0.357217848300934,0.0602126605808735,0.349523931741714,0.0498364381492138,0.343497306108475,0.0391492769122124,0.34017476439476,0.0323686711490154,0.812229990959167,0.096900001168251,0.804239988327026,0.0964849963784218,0.803764998912811,0.0804449990391731,0.811839997768402,0.0805099979043007,0.82022500038147,0.0973199978470802,0.819914996623993,0.0805699974298477,0.818165004253387,0.107299998402596,0.811434984207153,0.106370002031326,0.804710030555725,0.105439998209476,0.877550005912781,0.0953850001096725,0.872815012931824,0.094760000705719,0.87348997592926,0.080875001847744,0.878000020980835,0.080935001373291,0.882290005683899,0.0960099995136261,0.882510006427765,0.0809900015592575,0.881919980049133, +0.105195000767708,0.876950025558472,0.103814996778965,0.871980011463165,0.102435000240803,0.926169991493225,0.0947699993848801,0.922729969024658,0.0944000035524368,0.923014998435974,0.0799399986863136,0.926310002803802,0.0805699974298477,0.929615020751953,0.0951400026679039,0.92960000038147,0.0812000036239624,0.929175019264221,0.104354999959469,0.925650000572205,0.103780001401901,0.922124981880188,0.103205002844334,0.96978497505188,0.105855002999306,0.967664957046509,0.101680003106594,0.967615008354187,0.100259996950626,0.969835042953491,0.103639997541904,0.965544998645782,0.0974999964237213,0.965394973754883,0.0968749970197678,0.964784979820251,0.093249998986721,0.967404961585999,0.0936549976468086,0.97002500295639,0.0940599963068962,0.841094970703125,0.0635349974036217,0.846119999885559,0.064410001039505,0.846065044403076,0.0674699991941452,0.840839982032776,0.0667399987578392,0.851150035858154,0.0652799978852272,0.851284980773926,0.0681950002908707,0.851770043373108,0.0809149965643883,0.846439957618713,0.0803550034761429,0.841109991073608,0.0797950029373169,0.513844966888428,0.216784998774529,0.51385498046875,0.214454993605614,0.517204999923706,0.21713000535965,0.518499970436096,0.219449996948242,0.513870000839233,0.21212500333786,0.515915036201477,0.214809998869896,0.508435010910034,0.195944994688034,0.508435010910034,0.192855000495911,0.513830006122589,0.192839995026588,0.513830006122589,0.195299997925758,0.513830006122589,0.197760000824928,0.508435010910034,0.199039995670319,0.900215029716492,0.0685850009322166,0.9028599858284,0.0676899999380112,0.902880012989044,0.0699549987912178,0.899955034255981,0.0704400017857552,0.905510008335114,0.0667949989438057,0.905804991722107,0.0694750025868416,0.906440019607544,0.0798449963331223,0.902915000915527,0.0796400010585785,0.89938497543335,0.0794349983334541,0.513830006122589,0.249160006642342,0.513159990310669,0.246765002608299,0.517235040664673,0.247490003705025,0.519805014133453,0.250544995069504,0.512495040893555,0.244375005364418,0.514660000801086,0.244434997439384, +0.508435010910034,0.233380004763603,0.508435010910034,0.231480002403259,0.513759970664978,0.229285001754761,0.513774991035461,0.231189996004105,0.513790011405945,0.23309999704361,0.508435010910034,0.235280007123947,0.94648003578186,0.0701349973678589,0.949315011501312,0.0691599994897842,0.949299991130829,0.0717649981379509,0.946280002593994,0.0722099989652634,0.952154994010925,0.0681900009512901,0.952319979667664,0.0713149979710579,0.952894985675812,0.0814850032329559,0.949380040168762,0.080985002219677,0.945870041847229,0.080485001206398,0.513805031776428,0.292760014533997,0.513844966888428,0.288314998149872,0.516420006752014,0.292185008525848,0.517865002155304,0.297919988632202,0.513885021209717,0.283870011568069,0.514975011348724,0.286449998617172,0.508435010910034,0.268005013465881,0.508435010910034,0.265554994344711,0.513814985752106,0.264064997434616,0.513819992542267,0.266544997692108,0.513830006122589,0.2690249979496,0.508435010910034,0.27046000957489,0.978529989719391,0.0814900025725365,0.981289982795715,0.0811149999499321,0.98165500164032,0.0939399972558022,0.978614985942841,0.0949449986219406,0.975769996643066,0.0818599984049797,0.9755699634552,0.0959499999880791,0.976014971733093,0.0726549997925758,0.978644967079163,0.0729900002479553,0.981274962425232,0.0733200013637543,0.521664977073669,0.33636999130249,0.519865036010742,0.333689987659454,0.521090030670166,0.333745002746582,0.522899985313416,0.336380004882813,0.518064975738525,0.33101499080658,0.519275009632111,0.331115007400513,0.513650000095367,0.313654989004135,0.513674974441528,0.319144994020462,0.508435010910034,0.319059997797012,0.508435010910034,0.313594996929169,0.508435010910034,0.308135002851486,0.513625025749207,0.308165013790131,0.803930044174194,0.0654750019311905,0.811839997768402,0.0656950026750565,0.811779975891113,0.0687000006437302,0.80374002456665,0.0685900002717972,0.819754958152771,0.0659150034189224,0.819819986820221,0.0688150003552437,0.825994968414307,0.0653949975967407,0.829069972038269,0.0630050003528595,0.829874992370605,0.0664649978280067, +0.826879978179932,0.0681499987840652,0.832144975662231,0.060614999383688,0.832870006561279,0.0647749975323677,0.834394991397858,0.0790150016546249,0.831719994544983,0.0795449987053871,0.829039990901947,0.0800699964165688,0.832370042800903,0.0940200015902519,0.82950496673584,0.0962250009179115,0.835229992866516,0.0918200016021729,0.835260033607483,0.0952050015330315,0.83175003528595,0.100194998085499,0.828240036964417,0.105185002088547,0.874899983406067,0.0681499987840652,0.878674983978271,0.0685800015926361,0.8784099817276,0.0707100033760071,0.874334990978241,0.0703800022602081,0.882449984550476,0.0690049976110458,0.882490038871765,0.0710399970412254,0.887295007705688,0.068060003221035,0.890205025672913,0.0661050006747246,0.890484988689423,0.0688749998807907,0.887789964675903,0.0702050030231476,0.893110036849976,0.0641549974679947,0.893175005912781,0.0675449967384338,0.893424987792969,0.0803550034761429,0.891165018081665,0.0806149989366531,0.8889000415802,0.080875001847744,0.891929984092712,0.0935249999165535,0.890105009078979,0.0941200032830238,0.893759965896606,0.0929299965500832,0.893929958343506,0.0970349982380867,0.892410039901733,0.0987650007009506,0.89088499546051,0.100489996373653,0.923869967460632,0.0678000003099442,0.926589965820313,0.0686199963092804,0.926344990730286,0.0709550008177757,0.923395037651062,0.0700350031256676,0.929309964179993,0.0694399997591972,0.929295003414154,0.0718749985098839,0.936604976654053,0.0698200017213821,0.939045011997223,0.0680750012397766,0.939170002937317,0.0705099999904633,0.936930000782013,0.0719899982213974,0.941480040550232,0.0663300007581711,0.941410005092621,0.0690300017595291,0.941390037536621,0.0811349973082542,0.939504981040955,0.0811450034379959,0.937624990940094,0.081155002117157,0.939985036849976,0.0936100035905838,0.938239991664886,0.09408999979496,0.94173002243042,0.093129999935627,0.942090034484863,0.0962599962949753,0.940325021743774,0.0991349965333939,0.938555002212524,0.102009996771812,0.967314958572388,0.0813599973917007,0.970229983329773,0.0813150033354759, +0.964399993419647,0.0814049988985062,0.964529991149902,0.0700350031256676,0.967519998550415,0.0717699974775314,0.970515012741089,0.0735049992799759,0.970739960670471,0.0710799992084503,0.973444998264313,0.0701450034976006,0.973264992237091,0.0730800032615662,0.976150035858154,0.0692100003361702,0.97299998998642,0.0815899968147278,0.972800016403198,0.0950049981474876,0.97539496421814,0.106885001063347,0.972615003585815,0.105259999632835,0.860059976577759,0.065420001745224,0.862985014915466,0.0639299973845482,0.863304972648621,0.0673149973154068,0.860635042190552,0.0682699978351593,0.865909993648529,0.0624350011348724,0.865975022315979,0.0663599967956543,0.866605043411255,0.0800449997186661,0.864324986934662,0.0804999992251396,0.862044990062714,0.0809549987316132,0.865854978561401,0.094990000128746,0.864094972610474,0.096160002052784,0.867609977722168,0.0938149988651276,0.868160009384155,0.0988949984312057,0.866890013217926,0.101039998233318,0.865615010261536,0.10317999869585,0.848520040512085,0.0973149985074997,0.842469990253448,0.0959649980068207,0.854575037956238,0.0986699983477592,0.857235014438629,0.1083599999547,0.850404977798462,0.106114998459816,0.843575000762939,0.103869996964931,0.508435010910034,0.216305002570152,0.508435010910034,0.214094996452332,0.508435010910034,0.218510001897812,0.508435010910034,0.207524999976158,0.508435010910034,0.205349996685982,0.51383501291275,0.202769994735718,0.513844966888428,0.205094993114471,0.51385498046875,0.207420006394386,0.508435010910034,0.209700003266335,0.520349979400635,0.205229997634888,0.518209993839264,0.207609996199608,0.52249002456665,0.202855005860329,0.508404970169067,0.18299999833107,0.508435010910034,0.18155500292778,0.513830006122589,0.18155500292778,0.513819992542267,0.183005005121231,0.508404970169067,0.185969993472099,0.513819992542267,0.185980007052422,0.519474983215332,0.183025002479553,0.520084977149963,0.18155500292778,0.522125005722046,0.18155500292778,0.521224975585938,0.183019995689392,0.51942503452301,0.185949996113777,0.518164992332458,0.186014994978905, +0.516955018043518,0.195849999785423,0.517454981803894,0.198789998888969,0.516454994678497,0.192904993891716,0.910444974899292,0.066100001335144,0.914080023765564,0.0650599971413612,0.914415001869202,0.0677450001239777,0.911239981651306,0.068680003285408,0.917715013027191,0.0640249997377396,0.917595028877258,0.0668099969625473,0.91777503490448,0.0802949965000153,0.915274977684021,0.0798700004816055,0.912779986858368,0.0794449970126152,0.916000008583069,0.0925349965691566,0.913830041885376,0.0931750014424324,0.918164968490601,0.091889999806881,0.918274998664856,0.0929900035262108,0.916314959526062,0.0966650024056435,0.914350032806396,0.100340001285076,0.902424991130829,0.0953100025653839,0.898294985294342,0.0930450037121773,0.906554996967316,0.09757000207901,0.906229972839355,0.109729997813702,0.901679992675781,0.105669997632504,0.897125005722046,0.101604998111725,0.508435010910034,0.247940003871918,0.508435010910034,0.245794996619225,0.508435010910034,0.250079989433289,0.508435010910034,0.240700006484985,0.508435010910034,0.238995000720024,0.513814985752106,0.23691500723362,0.513819992542267,0.23870000243187,0.513819992542267,0.24049000442028,0.508435010910034,0.242404997348785,0.520274996757507,0.238010004162788,0.519005000591278,0.239109992980957,0.521544992923737,0.236904993653297,0.508435010910034,0.225264996290207,0.508435010910034,0.222929999232292,0.513819992542267,0.221235007047653,0.513805031776428,0.223269999027252,0.513790011405945,0.225299999117851,0.508435010910034,0.227605000138283,0.519649982452393,0.222499996423721,0.518635034561157,0.223914995789528,0.520664989948273,0.221090003848076,0.518535017967224,0.232115000486374,0.519675016403198,0.234935000538826,0.51739501953125,0.229289993643761,0.959370017051697,0.0689499974250793,0.96197497844696,0.0682249963283539,0.96212500333786,0.0708350017666817,0.959720015525818,0.0716399997472763,0.964579999446869,0.0675050020217896,0.96220999956131,0.0814799964427948,0.960020005702972,0.0815500020980835,0.962584972381592,0.0944250002503395,0.960384964942932,0.095600001513958, +0.963135004043579,0.100649997591972,0.960880041122437,0.104429997503757,0.949249982833862,0.0958449989557266,0.945259988307953,0.093860000371933,0.953240036964417,0.0978299975395203,0.953374981880188,0.109624996781349,0.94897997379303,0.106509998440742,0.944584965705872,0.103399999439716,0.508435010910034,0.288765013217926,0.508435010910034,0.284664988517761,0.508435010910034,0.292865008115768,0.508435010910034,0.277619987726212,0.508435010910034,0.275310009717941,0.513844966888428,0.27395498752594,0.51385498046875,0.276394993066788,0.513870000839233,0.278834998607635,0.508435010910034,0.279929995536804,0.520159959793091,0.277384996414185,0.518195033073425,0.278659999370575,0.522125005722046,0.276115000247955,0.508435010910034,0.257454991340637,0.508435010910034,0.254819989204407,0.513819992542267,0.254065006971359,0.513819992542267,0.256550014019012,0.513819992542267,0.259030014276505,0.508435010910034,0.260089993476868,0.521044969558716,0.255825012922287,0.518370032310486,0.257719993591309,0.523720026016235,0.253924995660782,0.518305003643036,0.26868999004364,0.51885998249054,0.273245006799698,0.517750024795532,0.264135003089905,0.983214974403381,0.0819049999117851,0.985139966011047,0.0826949998736382,0.984609961509705,0.0954850018024445,0.983134984970093,0.0947149991989136,0.983464956283569,0.0707800015807152,0.985659956932068,0.0682400017976761,0.984835028648376,0.0987249985337257,0.983479976654053,0.101125001907349,0.982129991054535,0.103529997169971,0.982244968414307,0.105784997344017,0.978775024414063,0.107639998197556,0.97876501083374,0.105204999446869,0.97530996799469,0.109494999051094,0.515390038490295,0.334719985723495,0.517040014266968,0.338330000638962,0.513715028762817,0.340404987335205,0.511075019836426,0.335610002279282,0.508435010910034,0.330814987421036,0.513740003108978,0.331115007400513,0.508435010910034,0.324934989213943,0.513710021972656,0.325129985809326,0.517235040664673,0.325085014104843,0.51639997959137,0.319160014390945,0.508435010910034,0.304984986782074,0.513674974441528,0.305364996194839, +0.508435010910034,0.301829993724823,0.513729989528656,0.302565008401871,0.520349979400635,0.305285006761551,0.517955005168915,0.308279991149902,0.522740006446838,0.302289992570877,0.519129991531372,0.308369994163513,0.518149971961975,0.31378498673439,0.5171799659729,0.313719987869263,0.517165005207062,0.319195002317429,0.793545007705688,0.0676150023937225,0.796005010604858,0.0680800005793571,0.795949995517731,0.0807449966669083,0.793545007705688,0.0810249969363213,0.793545007705688,0.0633300021290779,0.796079993247986,0.0643950030207634,0.801270008087158,0.0654650032520294,0.801100015640259,0.0685650035738945,0.80105996131897,0.0804549977183342,0.513830006122589,0.190170004963875,0.508435010910034,0.190174996852875,0.508435010910034,0.1875,0.513830006122589,0.187505006790161,0.518530011177063,0.18741500377655,0.517875015735626,0.190109997987747,0.516960024833679,0.19021999835968,0.517470002174377,0.187529996037483,0.517215013504028,0.192809998989105,0.793560028076172,0.0943299978971481,0.796030044555664,0.0946049988269806,0.796254992485046,0.100934997200966,0.793570041656494,0.0996600016951561,0.801824986934662,0.103825002908707,0.801370024681091,0.0956849977374077,0.51383501291275,0.200265005230904,0.508435010910034,0.202195003628731,0.824479997158051,0.0803200006484985,0.824864983558655,0.0967700034379959,0.823350012302399,0.0684849992394447,0.518489956855774,0.198935002088547,0.521719992160797,0.200870007276535,0.519969999790192,0.200819998979568,0.524955034255981,0.202800005674362,0.827785015106201,0.107160001993179,0.821810007095337,0.108280003070831,0.823199987411499,0.106245003640652,0.815829992294312,0.109394997358322,0.837754964828491,0.0794050022959709,0.838850021362305,0.0938950031995773,0.836854994297028,0.0657550022006035,0.513859987258911,0.209769994020462,0.508435010910034,0.211895003914833,0.843845009803772,0.105460003018379,0.839550018310547,0.100660003721714,0.839419960975647,0.0995350033044815,0.835250020027161,0.0958599969744682,0.519469976425171,0.207524999976158,0.518139958381653,0.211060002446175, +0.517060041427612,0.211209997534752,0.516815006732941,0.214595004916191,0.51383501291275,0.21900999546051,0.508435010910034,0.220719993114471,0.856909990310669,0.080935001373291,0.859335005283356,0.0974150002002716,0.855960011482239,0.0682350024580956,0.865925014019012,0.104835003614426,0.861685037612915,0.107469998300076,0.861425042152405,0.105769999325275,0.857445001602173,0.110105000436306,0.519824981689453,0.220050007104874,0.521214962005615,0.220565006136894,0.519580006599426,0.220269992947578,0.522605001926422,0.221080005168915,0.870050013065338,0.0804599970579147,0.870214998722076,0.0942900031805038,0.870154976844788,0.0683699995279312,0.513774991035461,0.227294996380806,0.508435010910034,0.229544997215271,0.520015001296997,0.223309993743896,0.519225001335144,0.226160004734993,0.518015027046204,0.226600006222725,0.51842999458313,0.229010000824928,0.871540009975433,0.104500003159046,0.8699049949646,0.102229997515678,0.870069980621338,0.100665003061295,0.868270039558411,0.0999649986624718,0.513805031776428,0.235005006194115,0.508435010910034,0.237139999866486,0.88570499420166,0.080935001373291,0.886195003986359,0.0950649976730347,0.885140001773834,0.0706200003623962,0.521360039710999,0.235369995236397,0.522549986839294,0.236139997839928,0.520609974861145,0.235919997096062,0.523739993572235,0.236904993653297,0.891080021858215,0.10215499997139,0.886415004730225,0.104719996452332,0.886399984359741,0.102844998240471,0.881749987602234,0.107280001044273,0.896404981613159,0.0798949971795082,0.896025002002716,0.0929900035262108,0.896564960479736,0.0689899995923042,0.513159990310669,0.242434993386269,0.508435010910034,0.244100004434586,0.896735012531281,0.103694997727871,0.895344972610474,0.100840002298355,0.895524978637695,0.0993200019001961,0.893954992294312,0.0979800000786781,0.520475029945374,0.238529995083809,0.518139958381653,0.241384997963905,0.516829967498779,0.241775006055832,0.515805006027222,0.244240000844002,0.513824999332428,0.25161001086235,0.508435010910034,0.252449989318848,0.909610033035278,0.079645000398159, +0.910194993019104,0.0953750014305115,0.908524990081787,0.0690750032663345,0.914555013179779,0.101954996585846,0.910344958305359,0.10690999776125,0.910290002822876,0.105034999549389,0.906134963035583,0.111859999597073,0.521465003490448,0.250775009393692,0.523975014686584,0.252254992723465,0.521759986877441,0.252234995365143,0.526479959487915,0.25373500585556,0.920395016670227,0.0801199972629547,0.92044997215271,0.0931449979543686,0.92049503326416,0.0684249997138977,0.513819992542267,0.261550009250641,0.508435010910034,0.262825012207031,0.519630014896393,0.257225006818771,0.519245028495789,0.260630011558533,0.518059968948364,0.260924994945526,0.51885998249054,0.264034986495972,0.921905040740967,0.105219997465611,0.92010498046875,0.0992050021886826,0.920199990272522,0.0980999991297722,0.918300032615662,0.093189999461174,0.51383501291275,0.271490007638931,0.508435010910034,0.272884994745255,0.933609962463379,0.0811799988150597,0.933925032615662,0.0946149975061417,0.933115005493164,0.0719299986958504,0.520305037498474,0.2742800116539,0.522379994392395,0.275415003299713,0.520489990711212,0.274679988622665,0.5244500041008,0.276549994945526,0.938624978065491,0.103995002806187,0.933835029602051,0.105259999632835,0.933865010738373,0.103184998035431,0.929044961929321,0.106524996459484,0.94362998008728,0.0808100029826164,0.943495035171509,0.0934949964284897,0.94384503364563,0.0706200003623962,0.513875007629395,0.281354993581772,0.508435010910034,0.282294988632202,0.944310009479523,0.105755001306534,0.943230032920837,0.101279996335506,0.943340003490448,0.0998300015926361,0.942149996757507,0.0967999994754791,0.519340038299561,0.278470009565353,0.517504990100861,0.28277999162674,0.516584992408752,0.282555013895035,0.515670001506805,0.287090003490448,0.5137699842453,0.297659993171692,0.508435010910034,0.297349989414215,0.956454992294312,0.0815149992704391,0.956815004348755,0.0967150032520294,0.956019997596741,0.0714799985289574,0.960950016975403,0.106435000896454,0.957260012626648,0.109274998307228,0.957125008106232,0.107024997472763, +0.953565001487732,0.112109996378422,0.518875002861023,0.297580003738403,0.521749973297119,0.299924999475479,0.520305037498474,0.300105005502701,0.52462500333786,0.302264988422394,0.981269955635071,0.0710199996829033,0.983449995517731,0.0675399973988533,0.985630035400391,0.0640600025653839,0.836619973182678,0.0620750002563,0.855605006217957,0.0653500035405159,0.822875022888184,0.0656550005078316,0.870404958724976,0.0652950033545494,0.884874999523163,0.0685350000858307,0.896659970283508,0.066370002925396,0.9079749584198,0.0664450004696846,0.92079496383667,0.0659099966287613,0.932960033416748,0.0696299970149994,0.943979978561401,0.068230003118515,0.955765008926392,0.068570002913475,0.967660009860992,0.0692899972200394,0.978709995746613,0.0701150000095367,0.80859500169754,0.0222050007432699,0.814445018768311,0.0215799994766712,0.814854979515076,0.0495649985969067,0.807469964027405,0.0496699996292591,0.873365044593811,0.0212799999862909,0.878054976463318,0.0207749996334314,0.876914978027344,0.0481700003147125,0.872385025024414,0.048930000513792,0.926620006561279,0.0233800001442432,0.930005013942719,0.0230749994516373,0.928099989891052,0.0463699996471405,0.924885034561157,0.0472100004553795,0.970219969749451,0.0186299998313189,0.972465038299561,0.0155250001698732,0.970860004425049,0.0234999991953373,0.969259977340698,0.0226700007915497,0.97470498085022,0.012419999577105,0.972460031509399,0.0243299994617701,0.836035013198853,0.0573799982666969,0.836329996585846,0.0533449985086918,0.842290043830872,0.0531600005924702,0.84197998046875,0.0572649985551834,0.836629986763,0.0493150018155575,0.842599987983704,0.0490599982440472,0.848569989204407,0.0488049983978271,0.848245024681091,0.0529749989509583,0.847920000553131,0.0571499988436699,0.876235008239746,0.377559989690781,0.877315044403076,0.377855002880096,0.878520011901855,0.375950008630753,0.876754999160767,0.376255005598068,0.878394961357117,0.37814998626709,0.880285024642944,0.375640004873276,0.860724985599518,0.376484990119934,0.860724985599518,0.377404987812042,0.861530005931854, +0.377395004034042,0.8612300157547,0.376489996910095,0.860729992389679,0.37832498550415,0.86183500289917,0.37830001115799,0.864024996757507,0.378259986639023,0.86312997341156,0.377389997243881,0.862239956855774,0.376515001058578,0.895680010318756,0.0520300008356571,0.895660042762756,0.0489749982953072,0.899150013923645,0.0487949997186661,0.899024963378906,0.0517800003290176,0.895635008811951,0.0459199994802475,0.8992800116539,0.0458149984478951,0.902920007705688,0.0457150004804134,0.902644991874695,0.0486200004816055,0.90236496925354,0.0515250004827976,0.890235006809235,0.386319994926453,0.891290009021759,0.387124985456467,0.892804980278015,0.384350001811981,0.891425013542175,0.384389996528625,0.892345011234283,0.387930005788803,0.8941850066185,0.384305000305176,0.88434499502182,0.384665012359619,0.882584989070892,0.383410006761551,0.871399998664856,0.386119991540909,0.872390031814575,0.387549996376038,0.880825042724609,0.382155001163483,0.870404958724976,0.384694993495941,0.947924971580505,0.0518600009381771,0.947735011577606,0.0491200014948845,0.950255036354065,0.0490499995648861,0.950185000896454,0.0522500015795231,0.947539985179901,0.046374998986721,0.950325012207031,0.0458500012755394,0.953104972839355,0.0453249998390675,0.952775001525879,0.048980001360178,0.952445030212402,0.0526399984955788,0.90769499540329,0.405925005674362,0.909635007381439,0.408259987831116,0.911080002784729,0.406794995069504,0.908939957618713,0.40514999628067,0.911574959754944,0.410589993000031,0.9132199883461,0.408434987068176,0.899814963340759,0.403254985809326,0.897605001926422,0.399645000696182,0.882264971733093,0.407584995031357,0.884024977684021,0.411830008029938,0.895390033721924,0.396030008792877,0.880504965782166,0.403335005044937,0.983700037002563,0.0444400012493134,0.980430006980896,0.0441650003194809,0.982499957084656,0.0233399998396635,0.985790014266968,0.0242500007152557,0.977154970169067,0.0438899993896484,0.979215025901794,0.022435000166297,0.934499979019165,0.421389997005463,0.933174967765808,0.422399997711182,0.932734966278076, +0.424789994955063,0.934424996376038,0.424430012702942,0.931849956512451,0.42340499162674,0.93104499578476,0.425155013799667,0.860759973526001,0.442519992589951,0.860780000686646,0.452834993600845,0.872159957885742,0.45151498913765,0.87171995639801,0.441289991140366,0.86080002784729,0.46314999461174,0.872595012187958,0.461735010147095,0.893265008926392,0.45346000790596,0.892064988613129,0.443819999694824,0.890864968299866,0.434179991483688,0.801394999027252,0.0574299991130829,0.800740003585815,0.0535999983549118,0.807794988155365,0.0537200011312962,0.808120012283325,0.0577699989080429,0.800085008144379,0.049770001322031,0.814849972724915,0.0538350008428097,0.814849972724915,0.0581049993634224,0.826779961585999,0.0589749999344349,0.827995002269745,0.0551300011575222,0.830304980278015,0.0548150017857552,0.829599976539612,0.0588250011205673,0.829214990139008,0.05129000172019,0.831004977226257,0.0508100017905235,0.832800030708313,0.050330001860857,0.832610011100769,0.0544999986886978,0.832419991493225,0.0586749985814095,0.831679999828339,0.0241299998015165,0.834985017776489,0.0266350004822016,0.870045006275177,0.0576400011777878,0.868950009346008,0.0536650009453297,0.873205006122589,0.0529300011694431,0.874024987220764,0.0569350011646748,0.86785501241684,0.0496900007128716,0.87746000289917,0.0522000007331371,0.878005027770996,0.0562350004911423,0.885635018348694,0.0553499981760979,0.885235011577606,0.0514199994504452,0.887775003910065,0.0518999993801117,0.888220012187958,0.0557250007987022,0.884829998016357,0.0474900007247925,0.88732498884201,0.0480750016868114,0.889819979667664,0.0486599989235401,0.890314996242523,0.0523749999701977,0.890805006027222,0.0560950003564358,0.8889000415802,0.0239199995994568,0.890585005283356,0.0251650009304285,0.922680020332336,0.0533099994063377,0.922174990177155,0.0506800003349781,0.925240039825439,0.0500649996101856,0.925599992275238,0.0529250018298626,0.921665012836456,0.0480500012636185,0.928310036659241,0.0494499988853931,0.92851996421814,0.0525350011885166,0.936375021934509,0.0526850000023842, +0.936720013618469,0.0496550016105175,0.939759969711304,0.0509149990975857,0.939589977264404,0.0540499985218048,0.937065005302429,0.04662000015378,0.939929962158203,0.0477849990129471,0.942795038223267,0.0489500015974045,0.942799985408783,0.0521799996495247,0.942809998989105,0.0554100014269352,0.943204998970032,0.024660000577569,0.945814967155457,0.0252749994397163,0.970309972763062,0.044454999268055,0.968194961547852,0.045669998973608,0.966075003147125,0.0468900017440319,0.970290005207062,0.0511000007390976,0.970299959182739,0.047775000333786,0.973685026168823,0.0478699989616871,0.973639965057373,0.0515649989247322,0.973734974861145,0.0441699996590614,0.977069973945618,0.0479599982500076,0.976984977722168,0.0520300008356571,0.975834965705872,0.0233800001442432,0.858520030975342,0.0575699992477894,0.859215021133423,0.0536950007081032,0.861464977264404,0.0533250011503696,0.861189961433411,0.0571449995040894,0.859905004501343,0.0498250015079975,0.861739993095398,0.0495099984109402,0.863574981689453,0.0491899996995926,0.863719999790192,0.0529550015926361,0.86386501789093,0.0567199997603893,0.86319500207901,0.0226099994033575,0.865215003490448,0.0238850004971027,0.844839990139008,0.0213249996304512,0.849689960479736,0.0204050000756979,0.877510011196136,0.380035012960434,0.875290036201477,0.37932500243187,0.867455005645752,0.381350010633469,0.868589997291565,0.382515013217926,0.873075008392334,0.378619998693466,0.8663250207901,0.380185008049011,0.870604991912842,0.378109991550446,0.865175008773804,0.379224985837936,0.868129968643188,0.377600014209747,0.871580004692078,0.376080006361008,0.872759997844696,0.376439988613129,0.873820006847382,0.371764987707138,0.873129963874817,0.369509994983673,0.873944997787476,0.376800000667572,0.874509990215302,0.374015003442764,0.860724985599518,0.375110000371933,0.860724985599518,0.375800013542175,0.86114501953125,0.375820010900497,0.861065030097961,0.375149995088577,0.861989974975586,0.375880002975464,0.861739993095398,0.375245004892349,0.861544966697693,0.370045006275177,0.860724985599518, +0.369365006685257,0.860724985599518,0.373629987239838,0.861479997634888,0.373755007982254,0.863014996051788,0.37406998872757,0.863160014152527,0.371504992246628,0.866549968719482,0.375189989805222,0.867805004119873,0.37542000412941,0.868364989757538,0.37406000494957,0.866795003414154,0.374204993247986,0.869055032730103,0.375654995441437,0.869930028915405,0.373914986848831,0.908580005168915,0.0528399981558323,0.909179985523224,0.0489749982953072,0.91298496723175,0.0507650002837181,0.912620007991791,0.0539649985730648,0.909780025482178,0.045109998434782,0.913344979286194,0.0475649982690811,0.916914999485016,0.050025001168251,0.916790008544922,0.0525549985468388,0.916660010814667,0.0550899989902973,0.915454983711243,0.0255050007253885,0.917834997177124,0.0268050003796816,0.899984955787659,0.0230849999934435,0.904839992523193,0.0224549993872643,0.89131498336792,0.391799986362457,0.889445006847382,0.389910012483597,0.875654995441437,0.394179999828339,0.876960039138794,0.396614998579025,0.887570023536682,0.388020008802414,0.874350011348724,0.391745001077652,0.885954976081848,0.386344999074936,0.873369991779327,0.389645010232925,0.886839985847473,0.383139997720718,0.887624979019165,0.383910000324249,0.889240026473999,0.379404991865158,0.889235019683838,0.377730011940002,0.888409972190857,0.38468000292778,0.889240026473999,0.381080001592636,0.87916499376297,0.381094992160797,0.869495034217834,0.383605003356934,0.880185008049011,0.378684997558594,0.881060004234314,0.379229992628098,0.882290005683899,0.375539988279343,0.882174968719482,0.374484986066818,0.881935000419617,0.379779994487762,0.882405042648315,0.376590013504028,0.883639991283417,0.380995005369186,0.88442999124527,0.381505012512207,0.886070013046265,0.379105001688004,0.884665012359619,0.379390001296997,0.885215044021606,0.382014989852905,0.887480020523071,0.37882000207901,0.959304988384247,0.0517150014638901,0.959890007972717,0.048385001718998,0.962934970855713,0.0490700006484985,0.962594985961914,0.0521700009703636,0.960474967956543,0.0450549982488155,0.963274955749512, +0.0459700003266335,0.965979993343353,0.0497549995779991,0.965885043144226,0.0526250004768372,0.966639995574951,0.0222600009292364,0.953760027885437,0.0221449993550777,0.957035005092621,0.0212799999862909,0.908599972724915,0.421359986066818,0.905589997768402,0.415919989347458,0.888355016708374,0.426815003156662,0.90258002281189,0.410479992628098,0.885845005512238,0.419450014829636,0.901194989681244,0.406870007514954,0.884935021400452,0.415639996528625,0.903545022010803,0.399419993162155,0.904365003108978,0.400790005922318,0.906515002250671,0.396919995546341,0.906374990940094,0.393570005893707,0.905179977416992,0.402159988880157,0.906650006771088,0.400274991989136,0.893355011940002,0.393914997577667,0.878729999065399,0.399975001811981,0.89444500207901,0.38944000005722,0.895509958267212,0.390320003032684,0.898460030555725,0.384974986314774,0.89835000038147,0.381384998559952,0.896574974060059,0.391194999217987,0.898564994335175,0.388570010662079,0.898594975471497,0.393099993467331,0.899535000324249,0.394084990024567,0.902155041694641,0.392289996147156,0.90016496181488,0.391090005636215,0.900470018386841,0.395065009593964,0.904139995574951,0.393489986658096,0.989179968833923,0.0457499995827675,0.986440002918243,0.0450950004160404,0.987565040588379,0.0235600005835295,0.989340007305145,0.0228749997913837,0.981085002422333,0.0091150002554059,0.984120011329651,0.0109550002962351,0.987154960632324,0.0127999996766448,0.923915028572083,0.455175012350082,0.919999957084656,0.445264995098114,0.894805014133453,0.465474992990494,0.896345019340515,0.477485001087189,0.916079998016357,0.435355007648468,0.9235600233078,0.424800008535385,0.926120042800903,0.427664995193481,0.927860021591187,0.423139989376068,0.92467999458313,0.421124994754791,0.928685009479523,0.430525004863739,0.914744973182678,0.414424985647202,0.916319966316223,0.416249990463257,0.918624997138977,0.410670012235641,0.917685031890869,0.407590001821518,0.917899966239929,0.418074995279312,0.919559955596924,0.413744986057281,0.925260007381439,0.419779986143112,0.922724962234497, +0.416034996509552,0.922119975090027,0.417434990406036,0.920184969902039,0.412290006875992,0.793545007705688,0.0596349984407425,0.793540000915527,0.0552799999713898,0.795469999313354,0.0547700002789497,0.795675039291382,0.0589249990880489,0.793529987335205,0.050925001502037,0.795264959335327,0.0506200008094311,0.798539996147156,0.0500449985265732,0.799070000648499,0.0539299994707108,0.799600005149841,0.0578199997544289,0.866925001144409,0.37389999628067,0.865499973297119,0.372734993696213,0.86537504196167,0.373245000839233,0.864069998264313,0.371569991111755,0.863960027694702,0.37228000164032,0.796229958534241,0.016245000064373,0.795979976654053,0.0245999991893768,0.793509960174561,0.0251650009304285,0.793494999408722,0.0178100001066923,0.800599992275238,0.0234350003302097,0.801750004291534,0.0131149999797344,0.828369975090027,0.021619999781251,0.822035014629364,0.0504299998283386,0.821410000324249,0.0216000005602837,0.873484969139099,0.366759985685349,0.871860027313232,0.369980007410049,0.871529996395111,0.371715009212494,0.870229959487915,0.373205006122589,0.814664959907532,0.00925000011920929,0.820304989814758,0.0103649999946356,0.825950026512146,0.0114799998700619,0.839985013008118,0.0222449991852045,0.834715008735657,0.0498199984431267,0.837484955787659,0.024439999833703,0.835384964942932,0.0227700006216764,0.838325023651123,0.0179750006645918,0.841259956359863,0.013175000436604,0.876980006694794,0.375914990901947,0.875890016555786,0.374525010585785,0.875630021095276,0.375135004520416,0.874799966812134,0.3731350004673,0.861175000667572,0.0213350001722574,0.854240000247955,0.0493150018155575,0.855435013771057,0.0208700001239777,0.849895000457764,0.0103150000795722,0.856109976768494,0.0120500000193715,0.862325012683868,0.0137900002300739,0.883074998855591,0.372334986925125,0.882014989852905,0.373620003461838,0.881229996681213,0.375064998865128,0.88095498085022,0.374904990196228,0.868674993515015,0.0217850003391504,0.865715026855469,0.0494400002062321,0.866945028305054,0.022834999486804,0.885074973106384,0.378995001316071, +0.883795022964478,0.377259999513626,0.883535027503967,0.377990007400513,0.882515013217926,0.375524997711182,0.865920007228851,0.017340000718832,0.866940021514893,0.0157299991697073,0.86796498298645,0.0141200004145503,0.887210011482239,0.0226750001311302,0.88086998462677,0.0478300005197525,0.882634997367859,0.0217250008136034,0.890105009078979,0.374989986419678,0.889165043830872,0.376255005598068,0.888355016708374,0.378275007009506,0.888224959373474,0.377514988183975,0.8785400390625,0.0113350003957748,0.883455038070679,0.0138950003311038,0.888370037078857,0.0164550002664328,0.895130038261414,0.0237150005996227,0.892729997634888,0.047290001064539,0.892859995365143,0.024439999833703,0.891240000724792,0.0206300001591444,0.892865002155304,0.017765000462532,0.894490003585815,0.0149050001055002,0.89183497428894,0.3838250041008,0.890655040740967,0.381839990615845,0.890334963798523,0.382735013961792,0.889469981193542,0.379850000143051,0.9130699634552,0.0241999998688698,0.906350016593933,0.0454099997878075,0.908954977989197,0.0233299992978573,0.905155003070831,0.0124399997293949,0.90974497795105,0.0145300002768636,0.914335012435913,0.0166200008243322,0.899405002593994,0.377654999494553,0.897094964981079,0.380529999732971,0.896270036697388,0.382845014333725,0.89478999376297,0.38340499997139,0.923240005970001,0.0236850008368492,0.919290006160736,0.0490350015461445,0.92053496837616,0.0252449996769428,0.900714993476868,0.390439987182617,0.89998996257782,0.389025002717972,0.89936500787735,0.389829993247986,0.8992600440979,0.387609988451004,0.917719960212708,0.0254100002348423,0.921124994754791,0.0194150004535913,0.924530029296875,0.0134199997410178,0.940595030784607,0.0240499991923571,0.93257999420166,0.0464950017631054,0.93529999256134,0.02356499992311,0.906560003757477,0.390879988670349,0.905954957008362,0.39172500371933,0.905259966850281,0.393530011177063,0.90534496307373,0.392569988965988,0.930500030517578,0.0120599996298552,0.935899972915649,0.0133199999108911,0.941295027732849,0.0145850004628301,0.950484991073608,0.0230100005865097, +0.945165038108826,0.0476600006222725,0.948150038719177,0.0241400003433228,0.947539985179901,0.0216600000858307,0.949985027313232,0.016584999859333,0.952430009841919,0.0115099996328354,0.909375011920929,0.404875010251999,0.908224999904633,0.402240008115768,0.907795011997223,0.402709990739822,0.90707004070282,0.399610012769699,0.964020013809204,0.0218449998646975,0.956789970397949,0.0451899990439415,0.960525035858154,0.0215600002557039,0.959110021591187,0.00844500027596951,0.962904989719391,0.00968500040471554,0.966704964637756,0.0109299998730421,0.918300032615662,0.404949992895126,0.916064977645874,0.406314998865128,0.915454983711243,0.408015012741089,0.913830041885376,0.407680004835129,0.80274498462677,0.022834999486804,0.982815027236938,0.0516999997198582,0.983260035514832,0.0480699986219406,0.985710024833679,0.0495399981737137,0.98497998714447,0.0539849996566772,0.988160014152527,0.0510100014507771,0.987139999866486,0.0562650002539158,0.83447003364563,0.0539250001311302,0.834224998950958,0.0580249987542629,0.853729963302612,0.0533349998295307,0.853219985961914,0.0573600009083748,0.821424961090088,0.0544850006699562,0.820814967155457,0.0585400015115738,0.866335034370422,0.0533099994063377,0.866955041885376,0.0571799986064434,0.88134503364563,0.0518100000917912,0.8818199634552,0.0557899996638298,0.892984986305237,0.0506750009953976,0.893244981765747,0.0540650002658367,0.905910015106201,0.0487949997186661,0.90547502040863,0.0521849989891052,0.919479966163635,0.0516199991106987,0.919669985771179,0.0542000010609627,0.932515025138855,0.0495549999177456,0.932444989681244,0.0526099987328053,0.945264995098114,0.0506500005722046,0.945365011692047,0.0536350011825562,0.956335008144379,0.0486849993467331,0.955875039100647,0.0521799996495247,0.968140006065369,0.0487649999558926,0.968089997768402,0.0518600009381771,0.980165004730225,0.0480149984359741,0.979900002479553,0.0518650002777576,0.793545007705688,0.0613150000572205,0.793545007705688,0.0604749992489815,0.795894980430603,0.060454998165369,0.796115040779114,0.06199000030756, +0.800074994564056,0.060394998639822,0.80054497718811,0.0629699975252151,0.808319985866547,0.0608600005507469,0.801905035972595,0.0603550001978874,0.814734995365143,0.0613650009036064,0.814620018005371,0.0646250024437904,0.808515012264252,0.0639500021934509,0.802410006523132,0.0632750019431114,0.820675015449524,0.0610250011086464,0.826609969139099,0.0606900006532669,0.826444983482361,0.0624050013720989,0.820529997348785,0.0635150000452995,0.829479992389679,0.0599550008773804,0.832350015640259,0.0592150017619133,0.832280039787292,0.0597600005567074,0.829365015029907,0.0610800012946129,0.834879994392395,0.0590949989855289,0.837409973144531,0.0589749999344349,0.838789999485016,0.0605750009417534,0.835534989833832,0.060164999216795,0.843119978904724,0.0592550002038479,0.848824977874756,0.0595300011336803,0.849730014801025,0.0619099996984005,0.844259977340698,0.0612450018525124,0.853914976119995,0.059604998677969,0.859004974365234,0.0596799999475479,0.859485030174255,0.0617900006473064,0.854609966278076,0.0618500001728535,0.861714959144592,0.0590500012040138,0.864430010318756,0.0584199987351894,0.864995002746582,0.060114998370409,0.862239956855774,0.060954999178648,0.86796498298645,0.0595999993383884,0.87150502204895,0.060784999281168,0.872959971427917,0.0639299973845482,0.86897999048233,0.062024999409914,0.875414967536926,0.0604000017046928,0.879330039024353,0.0600150004029274,0.880659997463226,0.0637950003147125,0.876810014247894,0.0638649985194206,0.882950007915497,0.0595850013196468,0.886564970016479,0.0591600015759468,0.887495040893555,0.0629699975252151,0.884074985980988,0.0633850023150444,0.888965010643005,0.0585299991071224,0.891369998455048,0.0579049997031689,0.891934990882874,0.059714999049902,0.889714956283569,0.0613400004804134,0.893530011177063,0.0575749985873699,0.895684957504272,0.0572400018572807,0.895689964294434,0.062449999153614,0.893810033798218,0.0610800012946129,0.899340033531189,0.0562250018119812,0.902994990348816,0.0552100017666817,0.903625011444092,0.0588899999856949,0.899654984474182,0.0606699995696545, +0.906374990940094,0.0555850006639957,0.909759998321533,0.0559649989008904,0.910939991474152,0.0590850003063679,0.907279968261719,0.0589900016784668,0.913334965705872,0.0566600002348423,0.916914999485016,0.0573550015687943,0.917165040969849,0.0596200004220009,0.914054989814758,0.0593549981713295,0.919450044631958,0.0573399998247623,0.921985030174255,0.0573300011456013,0.921285033226013,0.061344999819994,0.919224977493286,0.0604850016534328,0.925255000591278,0.0570949986577034,0.928529977798462,0.0568599998950958,0.928539991378784,0.061184998601675,0.924914956092834,0.0612649992108345,0.932729959487915,0.0570550002157688,0.936935007572174,0.0572549998760223,0.937489986419678,0.06182000041008,0.933014988899231,0.0615000016987324,0.939695000648499,0.0576299987733364,0.942454993724823,0.0580100007355213,0.942104995250702,0.0606050007045269,0.939800024032593,0.061209999024868,0.944739997386932,0.0573650002479553,0.947025001049042,0.0567199997603893,0.946125030517578,0.0615799985826015,0.944115042686462,0.0610949993133545,0.949689984321594,0.0566399991512299,0.952355027198792,0.0565599985420704,0.952270030975342,0.0604749992489815,0.949195027351379,0.0610300004482269,0.955924987792969,0.0564199984073639,0.959495007991791,0.0562799982726574,0.959689974784851,0.0608399994671345,0.955980002880096,0.0606600008904934,0.962514996528625,0.0562000013887882,0.965530037879944,0.0561150014400482,0.9651700258255,0.059604998677969,0.962430000305176,0.060224998742342,0.967785000801086,0.0563750006258488,0.970034956932068,0.0566349998116493,0.96978497505188,0.062169998884201,0.96747499704361,0.0608900003135204,0.973425030708313,0.0565650016069412,0.976809978485107,0.0564949996769428,0.976634979248047,0.0609650015830994,0.973209977149963,0.0615650005638599,0.979770004749298,0.0568200014531612,0.982730031013489,0.0571400001645088,0.9826500415802,0.0625749975442886,0.979645013809204,0.061769999563694,0.984849989414215,0.0576499998569489,0.986965000629425,0.0581599995493889,0.986790001392365,0.060054998844862,0.98471999168396,0.0613150000572205, +0.803169965744019,0.0643749982118607,0.800909996032715,0.0642199963331223,0.796095013618469,0.0631899982690811,0.810180008411407,0.0648249983787537,0.817185044288635,0.0652699992060661,0.821704983711243,0.0645850002765656,0.826220035552979,0.063900001347065,0.829214990139008,0.0620450004935265,0.832210004329681,0.0601850003004074,0.836075007915497,0.0611199997365475,0.839940011501312,0.0620549991726875,0.845189988613129,0.0628250017762184,0.85044002532959,0.0635949969291687,0.855105042457581,0.0636000037193298,0.859775006771088,0.0636050030589104,0.862614989280701,0.062440000474453,0.865455031394958,0.0612750016152859,0.869690001010895,0.0636600032448769,0.873929977416992,0.066040001809597,0.877740025520325,0.0662200003862381,0.881554961204529,0.0663999989628792,0.884474992752075,0.0659599974751472,0.887395024299622,0.0655149966478348,0.889959990978241,0.0637250021100044,0.892520010471344,0.0619350001215935,0.895235002040863,0.0637250021100044,0.897949993610382,0.0655200034379959,0.901260018348694,0.064180001616478,0.9045649766922,0.06283999979496,0.90762996673584,0.0627150014042854,0.910690009593964,0.0625950023531914,0.914065003395081,0.0622100010514259,0.917439997196198,0.0618249997496605,0.920009970664978,0.0631999969482422,0.922580003738403,0.0645750015974045,0.925750017166138,0.0649449974298477,0.928925037384033,0.0653150007128716,0.932985007762909,0.0655649974942207,0.937049984931946,0.065820001065731,0.939419984817505,0.0646449998021126,0.941794991493225,0.0634649991989136,0.944050014019012,0.0646649971604347,0.946300029754639,0.0658600032329559,0.949254989624023,0.0650949999690056,0.952210009098053,0.0643350034952164,0.955870032310486,0.0646149963140488,0.959529995918274,0.0648949965834618,0.962204992771149,0.0642250031232834,0.964874982833862,0.0635550022125244,0.967570006847382,0.065090000629425,0.97026002407074,0.0666249990463257,0.97332501411438,0.0658549964427948,0.97639000415802,0.065090000629425,0.979174971580505,0.0659400001168251,0.981959998607635,0.0667949989438057,0.984084963798523,0.0644299983978271, +0.986209988594055,0.0620599985122681,0.863234996795654,0.370559990406036,0.861564993858337,0.368640005588531,0.518319964408875,0.217325001955032,0.521309971809387,0.222194999456406,0.522210001945496,0.20516499876976,0.519894957542419,0.232189998030663,0.517854988574982,0.195869997143745,0.522109985351563,0.237719997763634,0.518635034561157,0.247504994273186,0.523054957389832,0.255479991436005,0.519580006599426,0.269160002470016,0.521894991397858,0.277509987354279,0.517269968986511,0.292335003614426,0.521880030632019,0.305319994688034,0.518220007419586,0.325154989957809,0.930159986019135,0.431845009326935,0.93163001537323,0.433165013790131,0.928555011749268,0.421595007181168,0.920729994773865,0.421440005302429,0.919245004653931,0.408619999885559,0.913159966468811,0.412510007619858,0.911605000495911,0.406280010938644,0.906440019607544,0.404044985771179,0.906814992427826,0.395244985818863,0.902009963989258,0.39724001288414,0.903030037879944,0.391505002975464,0.897585034370422,0.392150014638901,0.899330019950867,0.382629990577698,0.893395006656647,0.388684988021851,0.893310010433197,0.383614987134933,0.889320015907288,0.385500013828278,0.88978499174118,0.377420008182526,0.886025011539459,0.382580012083054,0.886649966239929,0.378255009651184,0.882784962654114,0.380389988422394,0.882794976234436,0.373930007219315,0.879289984703064,0.378414988517761,0.87897002696991,0.375409990549088,0.875090003013611,0.377180010080338,0.874145030975342,0.369944989681244,0.870314955711365,0.375869989395142,0.868579983711243,0.373549997806549,0.863790035247803,0.374264985322952,0.865170001983643,0.374725013971329,0.804919958114624,0.107100002467632,0.802089989185333,0.105530001223087,0.796414971351624,0.102389998733997,0.810374975204468,0.108245000243187,0.831519961357117,0.101510003209114,0.850645005702972,0.107780002057552,0.86710000038147,0.102399997413158,0.876644968986511,0.105889998376369,0.892520010471344,0.100069999694824,0.901435017585754,0.107780002057552,0.916429996490479,0.0975750014185905,0.925475001335144,0.105875000357628,0.94038999080658, +0.100395001471043,0.94894003868103,0.108934998512268,0.963245034217834,0.101970002055168,0.972545027732849,0.1076750010252,0.985044956207275,0.0994549989700317,0.983644962310791,0.102619998157024,0.98819500207901,0.01596499979496,0.989235043525696,0.0191300008445978,0.977895021438599,0.0107650002464652,0.968459963798523,0.0147799998521805,0.955770015716553,0.00997500028461218,0.944419980049133,0.0181200001388788,0.927515029907227,0.0127400001510978,0.916029989719391,0.0210149995982647,0.899824976921082,0.0136749995872378,0.88980495929718,0.0185400005429983,0.873250007629395,0.012725000269711,0.864120006561279,0.0155649995431304,0.845579981803894,0.0117450002580881,0.830664992332458,0.0171249993145466,0.804540038108826,0.0115499999374151,0.809599995613098,0.0104000000283122,0.921555042266846,0.427190005779266,0.916990041732788,0.426714986562729,0.922384977340698,0.432940006256104,0.907074987888336,0.410535007715225,0.906754970550537,0.407290011644363,0.903880000114441,0.406320005655289,0.897930026054382,0.395550012588501,0.897760033607483,0.39384999871254,0.895980000495911,0.393615007400513,0.889959990978241,0.387975007295609,0.889639973640442,0.386734992265701,0.88798999786377,0.386350005865097,0.883020043373108,0.382084995508194,0.882905006408691,0.381235003471375,0.881379961967468,0.380970001220703,0.87573504447937,0.378385007381439,0.875409960746765,0.377779990434647,0.873510003089905,0.37771001458168,0.864279985427856,0.376239985227585,0.866665005683899,0.375950008630753,0.865920007228851,0.37533500790596,0.86403501033783,0.375254988670349,0.927775025367737,0.444169998168945,0.925080001354218,0.438555002212524,0.912339985370636,0.428359985351563,0.914330005645752,0.42230498790741,0.911669969558716,0.41789498925209,0.909375011920929,0.414214998483658,0.902779996395111,0.403829991817474,0.901679992675781,0.401340007781982,0.899805009365082,0.398445010185242,0.894430041313171,0.392114996910095,0.892879962921143,0.390619993209839,0.891420006752014,0.389295011758804,0.886790037155151,0.385125011205673,0.885589957237244, +0.383899986743927,0.884305000305176,0.382995009422302,0.880115032196045,0.380165010690689,0.878844976425171,0.379359990358353,0.877290010452271,0.378870010375977,0.871685028076172,0.377274990081787,0.869854986667633,0.376839995384216,0.868260025978088,0.376394987106323,0.866204977035522,0.376920014619827,0.873039960861206,0.473360002040863,0.873484969139099,0.484984993934631,0.860729992389679,0.379485011100769,0.862219989299774,0.379400014877319,0.860729992389679,0.380645006895065,0.862604975700378,0.380499988794327,0.860729992389679,0.381980001926422,0.862990021705627,0.381790012121201,0.860729992389679,0.383314996957779,0.863380014896393,0.383080005645752,0.860729992389679,0.384350001811981,0.863695025444031,0.384144991636276,0.860729992389679,0.385379999876022,0.864009976387024,0.385205000638962,0.860729992389679,0.38679501414299,0.864359974861145,0.386640012264252,0.860729992389679,0.388204991817474,0.864714980125427,0.388069987297058,0.860729992389679,0.390495002269745,0.865054965019226,0.390334993600845,0.860729992389679,0.392789989709854,0.865399956703186,0.392594993114471,0.860729992389679,0.395689994096756,0.865835011005402,0.395390003919601,0.860729992389679,0.398595005273819,0.866264998912811,0.398185014724731,0.860729992389679,0.402934998273849,0.866909980773926,0.402260005474091,0.860729992389679,0.407270014286041,0.867550015449524,0.406329989433289,0.86073499917984,0.412070006132126,0.8681800365448,0.411065012216568,0.860740005970001,0.41686999797821,0.86880499124527,0.415794998407364,0.860740005970001,0.420794993638992,0.869140028953552,0.419725000858307,0.860740005970001,0.424719989299774,0.869480013847351,0.42365500330925,0.860749959945679,0.433620005846024,0.870599985122681,0.432469993829727,0.78288996219635,0.0964849963784218,0.774899959564209,0.096900001168251,0.775274991989136,0.0805099979043007,0.783349990844727,0.0804449990391731,0.782424986362457,0.105439998209476,0.775694966316223,0.106370002031326,0.766905009746552,0.0973199978470802,0.768970012664795,0.107299998402596,0.767199993133545,0.0805749967694283, +0.714314997196198,0.0947749987244606,0.70958000421524,0.0954049974679947,0.709120035171509,0.0809800028800964,0.713625013828278,0.0809099972248077,0.715160012245178,0.102439999580383,0.710189998149872,0.103820003569126,0.704845011234283,0.0960350036621094,0.705219984054565,0.105200000107288,0.704614996910095,0.0810500010848045,0.664520025253296,0.0951149985194206,0.661035001277924,0.0952799990773201,0.660884976387024,0.0811249986290932,0.664205014705658,0.0806500017642975,0.665050029754639,0.103450000286102,0.661509990692139,0.103945001959801,0.657554984092712,0.0954499989748001,0.657970011234283,0.104434996843338,0.657559990882874,0.08160500228405,0.619040012359619,0.10614500194788,0.618685007095337,0.103804998099804,0.620209991931915,0.0999199971556664,0.620319962501526,0.101345002651215,0.617720007896423,0.0940200015902519,0.619915008544922,0.0933799967169762,0.621739983558655,0.0960400030016899,0.62211000919342,0.0927349999547005,0.621605038642883,0.0965500026941299,0.745989978313446,0.0635500028729439,0.746250033378601,0.0667549967765808,0.741029977798462,0.0674849972128868,0.740970015525818,0.0644299983978271,0.746004998683929,0.079805001616478,0.74067497253418,0.0803700014948845,0.735809981822968,0.0682199969887733,0.735339999198914,0.0809300020337105,0.735944986343384,0.0653050020337105,0.51385498046875,0.148654997348785,0.513844966888428,0.146320000290871,0.518499970436096,0.143649995326996,0.517204999923706,0.14597499370575,0.515915036201477,0.148300006985664,0.513870000839233,0.1509850025177,0.508435010910034,0.170249998569489,0.508435010910034,0.167160004377365,0.513830006122589,0.167809993028641,0.513830006122589,0.170269995927811,0.508435010910034,0.164069995284081,0.513830006122589,0.165350005030632,0.686919987201691,0.0688050016760826,0.687179982662201,0.0706750005483627,0.68426501750946,0.0702399984002113,0.684275031089783,0.0679450035095215,0.687770009040833,0.0797149986028671,0.684260010719299,0.0800150036811829,0.681344985961914,0.0698050037026405,0.680750012397766,0.080315001308918,0.68163001537323, +0.0670849978923798,0.513159990310669,0.1163399964571,0.513830006122589,0.113944999873638,0.519805014133453,0.112559996545315,0.517235040664673,0.115615002810955,0.514660000801086,0.118665002286434,0.512495040893555,0.118735000491142,0.508435010910034,0.13162000477314,0.508435010910034,0.129720002412796,0.513774991035461,0.131919994950294,0.513759970664978,0.1338250041008,0.508435010910034,0.127820000052452,0.513790011405945,0.130009993910789,0.640560030937195,0.0702349990606308,0.640765011310577,0.0723000019788742,0.63773500919342,0.0718400031328201,0.637714982032776,0.0692550018429756,0.641189992427826,0.0805500000715256,0.637665033340454,0.0810199975967407,0.634705007076263,0.0713799968361855,0.634135007858276,0.0814850032329559,0.634869992733002,0.0682799965143204,0.513844966888428,0.0747900009155273,0.513805031776428,0.0703400000929832,0.517865002155304,0.065190002322197,0.516420006752014,0.0709199979901314,0.514975011348724,0.0766500011086464,0.513885021209717,0.0792350023984909,0.508435010910034,0.0975549966096878,0.508435010910034,0.095100000500679,0.513819992542267,0.0965550020337105,0.513814985752106,0.0990350022912025,0.508435010910034,0.0926499962806702,0.513830006122589,0.0940750017762184,0.605719983577728,0.0810699984431267,0.60853499174118,0.081445001065731,0.608569979667664,0.0949150025844574,0.605464994907379,0.0939050018787384,0.605695009231567,0.0732700005173683,0.608370006084442,0.072954997420311,0.611349999904633,0.081825003027916,0.611039996147156,0.0726400017738342,0.611670017242432,0.0959250032901764,0.521090030670166,0.0298100002110004,0.519275009632111,0.0319899991154671,0.518064975738525,0.0320850014686584,0.519479990005493,0.0297699999064207,0.520895004272461,0.0274550002068281,0.522899985313416,0.0276299994438887,0.513674974441528,0.0439650006592274,0.513650000095367,0.0494499988853931,0.508435010910034,0.0495099984109402,0.508435010910034,0.044039998203516,0.513625025749207,0.0549350008368492,0.508435010910034,0.0549749992787838,0.783164978027344,0.0654750019311905,0.783354997634888,0.0685900002717972, +0.775319993495941,0.0687049999833107,0.77524995803833,0.065700002014637,0.767279982566833,0.0688249990344048,0.767340004444122,0.0659250020980835,0.761099994182587,0.0654049962759018,0.760215044021606,0.0681599974632263,0.757215023040771,0.0664749965071678,0.758020043373108,0.0630149990320206,0.758074998855591,0.0800750032067299,0.755394995212555,0.0795499980449677,0.754215002059937,0.0647900030016899,0.752714991569519,0.079025000333786,0.754940032958984,0.0606300011277199,0.757624983787537,0.0962250009179115,0.754765033721924,0.0940250009298325,0.758895039558411,0.105185002088547,0.755389988422394,0.100194998085499,0.75189995765686,0.0918250009417534,0.751879990100861,0.0952050015330315,0.712199985980988,0.0681950002908707,0.712769985198975,0.070424996316433,0.708694994449615,0.0707700029015541,0.708429992198944,0.0686400011181831,0.704620003700256,0.0711100026965141,0.70465499162674,0.0690800026059151,0.699819982051849,0.0681499987840652,0.69932496547699,0.0702999979257584,0.696630001068115,0.0689899995923042,0.69691002368927,0.0662200003862381,0.698225021362305,0.0809649974107742,0.695964992046356,0.0807299986481667,0.693939983844757,0.0676850005984306,0.693709969520569,0.0804900005459785,0.694000005722046,0.0642900019884109,0.697030007839203,0.0941649973392487,0.695204973220825,0.0935899987816811,0.696245014667511,0.100500002503395,0.694725036621094,0.0987749993801117,0.693385004997253,0.0930150002241135,0.693204998970032,0.0970550030469894,0.663259983062744,0.0681750029325485,0.663754999637604,0.0704649984836578,0.660794973373413,0.0713350027799606,0.660529971122742,0.0689650028944016,0.657829999923706,0.0722049996256828,0.6578049659729,0.0697550028562546,0.650480031967163,0.0700149983167648,0.650160014629364,0.0721800029277802,0.647904992103577,0.0706750005483627,0.648025035858154,0.0682400017976761,0.649489998817444,0.0813400000333786,0.647589981555939,0.0812949985265732,0.645645022392273,0.0691649988293648,0.645694971084595,0.0812449976801872,0.645574986934662,0.0664649978280067,0.648895025253296,0.0942049995064735, +0.647140026092529,0.0936949998140335,0.648580014705658,0.102035000920296,0.646809995174408,0.0991550013422966,0.645385026931763,0.0931850001215935,0.645044982433319,0.0962750017642975,0.616970002651215,0.0812449976801872,0.619709968566895,0.0812600031495094,0.616580009460449,0.0734900012612343,0.619539976119995,0.0717649981379509,0.62245500087738,0.0812800005078316,0.622505009174347,0.0700400024652481,0.616330027580261,0.0710749998688698,0.613810002803802,0.073064997792244,0.613610029220581,0.0701399967074394,0.614160001277924,0.0815349966287613,0.610890030860901,0.0692100003361702,0.614695012569427,0.0949750021100044,0.615254998207092,0.105345003306866,0.611824989318848,0.106885001063347,0.727034986019135,0.0654449984431267,0.726459980010986,0.068290002644062,0.723789989948273,0.0673400014638901,0.724105000495911,0.0639550015330315,0.725064992904663,0.0809699967503548,0.722790002822876,0.0805199965834618,0.721114993095398,0.0663900002837181,0.720510005950928,0.0800699964165688,0.721175014972687,0.062465000897646,0.723034977912903,0.096170000731945,0.721274971961975,0.0949949994683266,0.721520006656647,0.103184998035431,0.720245003700256,0.101039998233318,0.719519972801208,0.0938249975442886,0.718975007534027,0.0988949984312057,0.744665026664734,0.0959649980068207,0.738610029220581,0.0973199978470802,0.743560016155243,0.103869996964931,0.736729979515076,0.106114998459816,0.732555031776428,0.0986749976873398,0.729900002479553,0.1083599999547,0.508435010910034,0.149014994502068,0.508435010910034,0.146805003285408,0.508435010910034,0.144600003957748,0.508435010910034,0.157759994268417,0.508435010910034,0.155585005879402,0.513844966888428,0.158010005950928,0.51383501291275,0.16032999753952,0.508435010910034,0.153410002589226,0.51385498046875,0.155689999461174,0.518209993839264,0.155499994754791,0.520349979400635,0.157875001430511,0.52249002456665,0.160254999995232,0.508399963378906,0.1771399974823,0.508435010910034,0.17561000585556,0.513830006122589,0.175595000386238,0.513819992542267,0.177129998803139,0.508399963378906, +0.180109992623329,0.513819992542267,0.180109992623329,0.521224975585938,0.180089995265007,0.519474983215332,0.180079996585846,0.518164992332458,0.177090004086494,0.51942503452301,0.177159994840622,0.517454981803894,0.164309993386269,0.516955018043518,0.167254999279976,0.516454994678497,0.170200005173683,0.676699995994568,0.0664400011301041,0.675920009613037,0.0690800026059151,0.672734975814819,0.0681649968028069,0.673065006732941,0.065420001745224,0.674459993839264,0.0801799967885017,0.671994984149933,0.0807999968528748,0.669555008411407,0.0672449991106987,0.669525027275085,0.0814199969172478,0.669425010681152,0.0643950030207634,0.6734299659729,0.0939349979162216,0.671365022659302,0.0938450023531914,0.67282497882843,0.100594997406006,0.671029984951019,0.0978450030088425,0.669304966926575,0.0937599986791611,0.669234991073608,0.0950950011610985,0.688865005970001,0.0932350009679794,0.684745013713837,0.095550000667572,0.690015017986298,0.101635001599789,0.685464978218079,0.105690002441406,0.680625021457672,0.0978699997067451,0.680909991264343,0.109745003283024,0.508435010910034,0.117315001785755,0.508435010910034,0.115170001983643,0.508435010910034,0.11302500218153,0.508435010910034,0.124114997684956,0.508435010910034,0.122409999370575,0.513819992542267,0.12440499663353,0.513814985752106,0.126194998621941,0.508435010910034,0.120700001716614,0.513819992542267,0.122615002095699,0.519005000591278,0.123999997973442,0.520274996757507,0.125100001692772,0.521544992923737,0.126204997301102,0.508435010910034,0.140174999833107,0.508435010910034,0.137840002775192,0.513805031776428,0.139835000038147,0.513819992542267,0.141874998807907,0.508435010910034,0.135505005717278,0.513790011405945,0.137799993157387,0.518635034561157,0.139190003275871,0.519649982452393,0.140605002641678,0.520664989948273,0.142020002007484,0.519675016403198,0.128169998526573,0.518535017967224,0.130995005369186,0.51739501953125,0.133815005421638,0.627619981765747,0.069020003080368,0.627285003662109,0.0716850012540817,0.624894976615906,0.0708599984645844,0.625029981136322, +0.0682450011372566,0.626680016517639,0.0814699977636337,0.62457001209259,0.0813750028610229,0.622434973716736,0.0674649998545647,0.625914990901947,0.0954549983143806,0.624014973640442,0.0940949991345406,0.625069975852966,0.104434996843338,0.623404979705811,0.100235000252724,0.641829967498779,0.0938849970698357,0.637794971466064,0.0958449989557266,0.642534971237183,0.103399999439716,0.638109982013702,0.106504999101162,0.63375997543335,0.0978050008416176,0.633684992790222,0.109614998102188,0.508435010910034,0.0784349963068962,0.508435010910034,0.0743400007486343,0.508435010910034,0.0702399984002113,0.508435010910034,0.0877949967980385,0.508435010910034,0.0854900032281876,0.51385498046875,0.0867149978876114,0.513844966888428,0.0891550034284592,0.508435010910034,0.0831800028681755,0.513870000839233,0.0842700004577637,0.518195033073425,0.0844400003552437,0.520159959793091,0.0857150033116341,0.522125005722046,0.0869899988174438,0.508435010910034,0.108290001749992,0.508435010910034,0.105650000274181,0.513819992542267,0.106554999947548,0.513819992542267,0.10903500020504,0.508435010910034,0.10300999879837,0.513819992542267,0.104070000350475,0.518370032310486,0.10538499802351,0.521044969558716,0.107280001044273,0.523720026016235,0.109174996614456,0.51885998249054,0.0898550003767014,0.518305003643036,0.0944150015711784,0.517750024795532,0.0989750027656555,0.601760029792786,0.0826499983668327,0.603739976882935,0.0818599984049797,0.604099988937378,0.0947149991989136,0.60273003578186,0.0955249965190887,0.601199984550476,0.0681499987840652,0.603444993495941,0.0707100033760071,0.605024993419647,0.103505000472069,0.603900015354156,0.101115003228188,0.602774977684021,0.0987199991941452,0.60488498210907,0.105784997344017,0.60842502117157,0.105195000767708,0.608354985713959,0.107639998197556,0.611819982528687,0.109494999051094,0.513754963874817,0.0276299994438887,0.513745009899139,0.0298100002110004,0.508435010910034,0.0301649998873472,0.508435010910034,0.0280450005084276,0.513740003108978,0.0319899991154671,0.508435010910034,0.032285001128912, +0.508435010910034,0.0381649993360043,0.513710021972656,0.0379749983549118,0.517235040664673,0.0380199998617172,0.51639997959137,0.0439499989151955,0.508435010910034,0.0581250004470348,0.513674974441528,0.0577349998056889,0.513729989528656,0.0605349987745285,0.508435010910034,0.0612750016152859,0.517955005168915,0.0548250004649162,0.520349979400635,0.0578150004148483,0.522740006446838,0.060809999704361,0.518144965171814,0.049320001155138,0.519124984741211,0.0547400005161762,0.5171799659729,0.0493850000202656,0.517165005207062,0.0439050011336803,0.791079998016357,0.0680800005793571,0.791010022163391,0.0643950030207634,0.791144967079163,0.0807500034570694,0.785989999771118,0.0685650035738945,0.785820007324219,0.0654650032520294,0.513830006122589,0.172934994101524,0.508435010910034,0.172930002212524,0.517875015735626,0.172999992966652,0.518530011177063,0.17569500207901,0.517470002174377,0.175575003027916,0.516960024833679,0.172885000705719,0.517215013504028,0.170300006866455,0.791085004806519,0.0946099981665611,0.790879964828491,0.100934997200966,0.786045014858246,0.0804599970579147,0.785750031471252,0.0956899970769882,0.51383501291275,0.162839993834496,0.508435010910034,0.16091500222683,0.762634992599487,0.0803249999880791,0.762264966964722,0.0967700034379959,0.763749957084656,0.0684899985790253,0.521719992160797,0.162235006690025,0.518489956855774,0.164165005087852,0.519969999790192,0.162285000085831,0.524955034255981,0.160300001502037,0.759350001811981,0.107160001993179,0.763934969902039,0.106245003640652,0.765325009822845,0.108280003070831,0.771299958229065,0.109394997358322,0.749359965324402,0.079415000975132,0.748284995555878,0.0938950031995773,0.750234961509705,0.0657749995589256,0.513859987258911,0.153335005044937,0.508435010910034,0.151209995150566,0.74329000711441,0.105460003018379,0.747720003128052,0.0995350033044815,0.747590005397797,0.100660003721714,0.751890003681183,0.0958599969744682,0.518139958381653,0.152044996619225,0.519469976425171,0.155575007200241,0.517060041427612,0.151899993419647,0.516815006732941, +0.148509994149208,0.51383501291275,0.144099995493889,0.508435010910034,0.142385005950928,0.730204999446869,0.0809499993920326,0.727795004844666,0.0974199995398521,0.731135010719299,0.0682549998164177,0.72121000289917,0.104835003614426,0.725710034370422,0.105774998664856,0.725454986095428,0.107469998300076,0.729695022106171,0.110105000436306,0.521214962005615,0.142539992928505,0.519824981689453,0.143055006861687,0.519580006599426,0.142835006117821,0.522605001926422,0.142024993896484,0.7170649766922,0.0804900005459785,0.716915011405945,0.0943000018596649,0.716944992542267,0.0684050023555756,0.513774991035461,0.135810002684593,0.508435010910034,0.133560001850128,0.519225001335144,0.136940002441406,0.520015001296997,0.139789998531342,0.518015027046204,0.136504992842674,0.51842999458313,0.134090006351471,0.715595006942749,0.104500003159046,0.7170649766922,0.100665003061295,0.717234969139099,0.102229997515678,0.718869984149933,0.0999649986624718,0.513805031776428,0.128104999661446,0.508435010910034,0.125964999198914,0.7014200091362,0.0810049995779991,0.700940012931824,0.095100000500679,0.701974987983704,0.0707049965858459,0.522549986839294,0.126965001225471,0.521360039710999,0.127735003829002,0.520609974861145,0.127185001969337,0.523739993572235,0.126194998621941,0.696049988269806,0.10215499997139,0.700734972953796,0.102849997580051,0.700720012187958,0.104719996452332,0.705389976501465,0.107280001044273,0.690739989280701,0.0801049992442131,0.69112503528595,0.0931250005960464,0.690559983253479,0.0691799968481064,0.513159990310669,0.12067499756813,0.508435010910034,0.119010001420975,0.690394997596741,0.103694997727871,0.691609978675842,0.0993449985980988,0.691784977912903,0.100840002298355,0.69317501783371,0.0979800000786781,0.518139958381653,0.121725000441074,0.520475029945374,0.124580003321171,0.516829967498779,0.121330000460148,0.515805006027222,0.118869997560978,0.513824999332428,0.111489996314049,0.508435010910034,0.110660001635551,0.677605032920837,0.0802500024437904,0.677029967308044,0.0958999991416931,0.678629994392395, +0.0694449990987778,0.672574996948242,0.101954996585846,0.676869988441467,0.105169996619225,0.676789999008179,0.10690999776125,0.681005001068115,0.111859999597073,0.523975014686584,0.110849998891354,0.521465003490448,0.112334996461868,0.521759986877441,0.110870003700256,0.526479959487915,0.109365001320839,0.666864991188049,0.0810350030660629,0.666909992694855,0.0944349989295006,0.666655004024506,0.0688550025224686,0.513819992542267,0.101554997265339,0.508435010910034,0.100280001759529,0.519245028495789,0.102475002408028,0.519630014896393,0.105879999697208,0.518059968948364,0.102179996669292,0.51885998249054,0.0990749970078468,0.66523003578186,0.105219997465611,0.667145013809204,0.0992750003933907,0.667230010032654,0.100325003266335,0.669234991073608,0.0954250022768974,0.51383501291275,0.0916149988770485,0.508435010910034,0.0902250036597252,0.653524994850159,0.0814749971032143,0.653225004673004,0.0948249995708466,0.653995037078857,0.0721950009465218,0.522379994392395,0.0876849964261055,0.520305037498474,0.0888200029730797,0.520489990711212,0.0884200036525726,0.5244500041008,0.0865549966692924,0.648504972457886,0.103995002806187,0.653275012969971,0.103234998881817,0.653299987316132,0.105259999632835,0.658095002174377,0.106524996459484,0.643445014953613,0.0808949992060661,0.643610000610352,0.0935349985957146,0.643204987049103,0.0707350000739098,0.513875007629395,0.0817549973726273,0.508435010910034,0.0808100029826164,0.642830014228821,0.105755001306534,0.643790006637573,0.0998350009322166,0.643904983997345,0.101279996335506,0.644985020160675,0.0967999994754791,0.517504990100861,0.0803249999880791,0.519340038299561,0.0846299976110458,0.516584992408752,0.080545000731945,0.515670001506805,0.0760150030255318,0.5137699842453,0.0654399991035461,0.508435010910034,0.065760001540184,0.630405008792877,0.0814799964427948,0.629840016365051,0.0966299995779991,0.630995035171509,0.0715299993753433,0.624714970588684,0.106550000607967,0.629374980926514,0.107024997472763,0.62914502620697,0.109329998493195,0.633575022220612,0.112109996378422, +0.521749973297119,0.06317999958992,0.518875002861023,0.0655250027775764,0.520305037498474,0.063000001013279,0.52462500333786,0.0608350001275539,0.605719983577728,0.0709900036454201,0.603550016880035,0.0675249993801117,0.601374983787537,0.0640600025653839,0.750465035438538,0.0620899982750416,0.731490015983582,0.0653750002384186,0.764219999313354,0.0656649991869926,0.716690003871918,0.0653299987316132,0.702239990234375,0.0686149969696999,0.690459966659546,0.066550001502037,0.679165005683899,0.0667650029063225,0.666339993476868,0.0662849992513657,0.654139995574951,0.0698850005865097,0.643069982528687,0.0683500021696091,0.631245017051697,0.0686499997973442,0.619385004043579,0.0692699998617172,0.608304977416992,0.0701000019907951,0.772204995155334,0.049575001001358,0.772560000419617,0.021594999358058,0.778409957885742,0.0222200006246567,0.779595017433167,0.0496749989688396,0.777379989624023,0.010414999909699,0.77231502532959,0.00926500000059605,0.784260034561157,0.0228400006890297,0.786985039710999,0.0497800000011921,0.710150003433228,0.0482299998402596,0.708949983119965,0.0208550002425909,0.713639974594116,0.0213549993932247,0.714680016040802,0.0489850006997585,0.713734984397888,0.012810000218451,0.708450019359589,0.0114200003445148,0.718330025672913,0.0218550004065037,0.719215035438538,0.0497400015592575,0.658949971199036,0.0465749986469746,0.657000005245209,0.0232100002467632,0.660385012626648,0.0235149990767241,0.662174999713898,0.0474250018596649,0.659470021724701,0.0128699997439981,0.656485021114349,0.0121950004249811,0.663765013217926,0.0238249991089106,0.665405035018921,0.048275001347065,0.614529967308044,0.0157050006091595,0.616775035858154,0.0188100002706051,0.617694973945618,0.022834999486804,0.615975022315979,0.02364999987185,0.614255011081696,0.024465000256896,0.612285017967224,0.0126000000163913,0.751049995422363,0.0573999993503094,0.745105028152466,0.0572849996387959,0.744785010814667,0.0531850010156631,0.750739991664886,0.0533699989318848,0.739154994487762,0.0571699999272823,0.738824963569641,0.0530049987137318, +0.738494992256165,0.0488349981606007,0.744464993476868,0.0490849986672401,0.750434994697571,0.0493349991738796,0.844139993190765,0.377855002880096,0.845219969749451,0.377559989690781,0.84469997882843,0.376255005598068,0.842934966087341,0.375950008630753,0.841170012950897,0.375640004873276,0.84306001663208,0.37814998626709,0.859920024871826,0.377395004034042,0.859624981880188,0.37830001115799,0.860219955444336,0.376489996910095,0.859215021133423,0.376515001058578,0.858319997787476,0.377389997243881,0.857424974441528,0.378259986639023,0.69140499830246,0.0521499998867512,0.688059985637665,0.0519249998033047,0.687924981117249,0.0489349998533726,0.691415011882782,0.0490950010716915,0.684719979763031,0.0516950003802776,0.68443500995636,0.0487699992954731,0.684149980545044,0.0458500012755394,0.687790036201477,0.0459400005638599,0.691424965858459,0.046034999191761,0.830165028572083,0.387120008468628,0.831220030784607,0.386310011148453,0.830029964447021,0.384380012750626,0.828649997711182,0.384339988231659,0.827270030975342,0.384299993515015,0.829105019569397,0.387930005788803,0.838869988918304,0.383410006761551,0.837110042572021,0.384665012359619,0.845364987850189,0.387160003185272,0.846644997596741,0.385760009288788,0.847930014133453,0.384359985589981,0.840624988079071,0.382155001163483,0.639090001583099,0.0519700013101101,0.63682496547699,0.0523450002074242,0.636749982833862,0.049150001257658,0.639280021190643,0.0492299981415272,0.634554982185364,0.0527249984443188,0.634220004081726,0.0490749999880791,0.633885025978088,0.0454250015318394,0.636680006980896,0.0459549985826015,0.639469981193542,0.0464899986982346,0.811845004558563,0.408179998397827,0.813780009746552,0.405889987945557,0.812579989433289,0.405205011367798,0.810519993305206,0.407050013542175,0.808459997177124,0.40889498591423,0.809909999370575,0.410465002059937,0.823855042457581,0.39963498711586,0.821640014648438,0.403234988451004,0.830280005931854,0.408935010433197,0.83254998922348,0.405099987983704,0.83481502532959,0.401264995336533,0.826070010662079,0.396030008792877, +0.601199984550476,0.0244350004941225,0.604489982128143,0.0235249996185303,0.606580018997192,0.0443050004541874,0.603299975395203,0.0445850007236004,0.607779979705811,0.0226150006055832,0.609860002994537,0.0440250001847744,0.788280010223389,0.422399997711182,0.786954998970032,0.421389997005463,0.787029981613159,0.424434989690781,0.788715004920959,0.424789994955063,0.790395021438599,0.425145000219345,0.789600014686584,0.42340499162674,0.849339962005615,0.451624989509583,0.848950028419495,0.461955010890961,0.849730014801025,0.441300004720688,0.830534994602203,0.43417501449585,0.829370021820068,0.443919986486435,0.828199982643127,0.453660011291504,0.785679996013641,0.0574299991130829,0.778954982757568,0.0577699989080429,0.779275000095367,0.0537250004708767,0.786334991455078,0.0536050014197826,0.77223002910614,0.0581099987030029,0.772220015525818,0.0538400001823902,0.760304987430573,0.0589900016784668,0.757480025291443,0.0588399991393089,0.756770014762878,0.0548299998044968,0.759074985980988,0.0551449991762638,0.75466001033783,0.0586900003254414,0.754459977149963,0.0545150004327297,0.754265010356903,0.0503449998795986,0.756054997444153,0.0508249998092651,0.757849991321564,0.0513049997389317,0.752025008201599,0.0266699995845556,0.755329966545105,0.02415999956429,0.756325006484985,0.0171649996191263,0.751610040664673,0.0228150002658367,0.7586350440979,0.0216550007462502,0.717029988765717,0.0576849989593029,0.713055014610291,0.0569849982857704,0.713869988918304,0.0529850013554096,0.718119978904724,0.0537150017917156,0.70907998085022,0.0562850013375282,0.709614992141724,0.0522600002586842,0.701449990272522,0.0554350018501282,0.698870003223419,0.0558199994266033,0.69930499792099,0.0519899986684322,0.701839983463287,0.0515000000596046,0.696285009384155,0.0562050007283688,0.696765005588531,0.0524800010025501,0.697250008583069,0.0487550012767315,0.699739992618561,0.0481600016355515,0.702229976654053,0.0475649982690811,0.696425020694733,0.0252599995583296,0.698109984397888,0.024015000090003,0.697184979915619,0.0186400003731251, +0.695755004882813,0.0207250006496906,0.699795007705688,0.0227700006216764,0.664404988288879,0.0534950010478497,0.661480009555817,0.0531149990856647,0.661825001239777,0.0502699986100197,0.6649050116539,0.0508849993348122,0.658550024032593,0.0527300015091896,0.658749997615814,0.0496550016105175,0.650680005550385,0.0528399981558323,0.647449970245361,0.0541899986565113,0.647274971008301,0.0510549992322922,0.650325000286102,0.0498050004243851,0.644225001335144,0.0555399991571903,0.644225001335144,0.0523100011050701,0.644225001335144,0.0490799993276596,0.647094964981079,0.0479249991476536,0.64996999502182,0.0467749983072281,0.641194999217987,0.0254250001162291,0.643800020217896,0.0248099993914366,0.642575025558472,0.0182799994945526,0.639464974403381,0.0218199994415045,0.64640998840332,0.0241950005292892,0.618799984455109,0.0457750000059605,0.616680026054382,0.0446150004863739,0.620914995670319,0.046934999525547,0.616659998893738,0.0512199997901917,0.61334502696991,0.0516749992966652,0.613309979438782,0.0480000004172325,0.61667001247406,0.047919999808073,0.610029995441437,0.0521299988031387,0.609944999217987,0.048080001026392,0.613269984722137,0.044319998472929,0.611019968986511,0.023539999499917,0.609094977378845,0.0109550002962351,0.60589998960495,0.00930500030517578,0.728564977645874,0.0575999990105629,0.725889980792999,0.0571799986064434,0.725610017776489,0.0533649995923042,0.727864980697632,0.0537299998104572,0.723209977149963,0.0567599982023239,0.723349988460541,0.0529999993741512,0.723495006561279,0.0492400005459785,0.725329995155334,0.0495500005781651,0.72716498374939,0.0498649999499321,0.721790015697479,0.023955000564456,0.723810017108917,0.0226799994707108,0.722869992256165,0.0156350005418062,0.721074998378754,0.0174100007861853,0.725830018520355,0.0214000009000301,0.737309992313385,0.0204550009220839,0.742160022258759,0.0213699992746115,0.741405010223389,0.0117950001731515,0.737089991569519,0.0103649999946356,0.747014999389648,0.0222849994897842,0.846159994602203,0.37932500243187,0.843945026397705,0.380035012960434, +0.850300014019012,0.382185012102127,0.851794958114624,0.381094992160797,0.853285014629364,0.38000500202179,0.848379969596863,0.378619998693466,0.850849986076355,0.378109991550446,0.854809999465942,0.379119992256165,0.856335043907166,0.378239989280701,0.853325009346008,0.377600014209747,0.848690032958984,0.376439988613129,0.849874973297119,0.376080006361008,0.84832501411438,0.369509994983673,0.84763503074646,0.371764987707138,0.846944987773895,0.374015003442764,0.847509980201721,0.376800000667572,0.86030501127243,0.375820010900497,0.860385000705719,0.375149995088577,0.859709978103638,0.375245004892349,0.859465003013611,0.375880002975464,0.859969973564148,0.373750001192093,0.859905004501343,0.370045006275177,0.85829496383667,0.371504992246628,0.858440041542053,0.374065011739731,0.853649973869324,0.37542000412941,0.854900002479553,0.375189989805222,0.854660034179688,0.374204993247986,0.853089988231659,0.37406000494957,0.851520001888275,0.373914986848831,0.852400004863739,0.375654995441437,0.678510010242462,0.0530299991369247,0.674459993839264,0.0541950017213821,0.674099981784821,0.0509800016880035,0.677900016307831,0.0491550005972385,0.67041003704071,0.0553550012409687,0.670295000076294,0.0528049990534782,0.670184969902039,0.0502550005912781,0.673740029335022,0.0477650016546249,0.677289962768555,0.045279998332262,0.669170022010803,0.0269349999725819,0.671554982662201,0.0256299991160631,0.67096996307373,0.021144999191165,0.669279992580414,0.025535000488162,0.673940002918243,0.0243250001221895,0.682165026664734,0.0225750003010035,0.687020003795624,0.0231950003653765,0.687160015106201,0.0137849999591708,0.681829988956451,0.012555000372231,0.691874980926514,0.02381999976933,0.83201003074646,0.389905005693436,0.830134987831116,0.391790002584457,0.839339971542358,0.395444989204407,0.841080009937286,0.393265008926392,0.842824995517731,0.391090005636215,0.833885014057159,0.388020008802414,0.835494995117188,0.386344999074936,0.84409499168396,0.389124989509583,0.833829998970032,0.383910000324249,0.834614992141724,0.383139997720718, +0.832219958305359,0.377730011940002,0.832215011119843,0.379404991865158,0.832210004329681,0.381080001592636,0.83304500579834,0.38468000292778,0.84228503704071,0.381094992160797,0.849115014076233,0.383269995450974,0.840394973754883,0.379229992628098,0.841269969940186,0.378684997558594,0.839275002479553,0.374484986066818,0.839159965515137,0.375539988279343,0.839049994945526,0.376590013504028,0.83951997756958,0.379779994487762,0.837024986743927,0.381500005722046,0.837810039520264,0.380995005369186,0.836789965629578,0.379390001296997,0.835379958152771,0.379105001688004,0.833974957466125,0.37882000207901,0.836239993572235,0.382010012865067,0.627669990062714,0.0517649985849857,0.62439501285553,0.0522349998354912,0.624055027961731,0.0491300001740456,0.627089977264404,0.0484399981796741,0.621119976043701,0.0527100004255772,0.621019959449768,0.0498199984431267,0.623710036277771,0.0460250005125999,0.62651002407074,0.0451200008392334,0.620175004005432,0.0224200002849102,0.618530035018921,0.0149600002914667,0.622655034065247,0.0220100004225969,0.629960000514984,0.0214300006628036,0.633234977722168,0.0222950000315905,0.63121497631073,0.0101399999111891,0.627874970436096,0.00860999990254641,0.636515021324158,0.0231599994003773,0.815860033035278,0.415885001420975,0.812834978103638,0.421330004930496,0.822380006313324,0.428265005350113,0.825174987316132,0.422284990549088,0.827970027923584,0.416305005550385,0.818884968757629,0.410445004701614,0.820259988307953,0.406839996576309,0.829124987125397,0.412620007991791,0.817095041275024,0.400770008563995,0.817905008792877,0.399405002593994,0.815075039863586,0.393570005893707,0.815034985542297,0.397109985351563,0.814994990825653,0.40064999461174,0.816280007362366,0.402135014533997,0.828104972839355,0.393909990787506,0.837074995040894,0.398355007171631,0.825945019721985,0.390320003032684,0.827010035514832,0.38944000005722,0.823104977607727,0.381384998559952,0.822995007038116,0.384974986314774,0.822890043258667,0.388570010662079,0.824880003929138,0.391194999217987,0.821920037269592,0.394080013036728, +0.8228600025177,0.393099993467331,0.821285009384155,0.391090005636215,0.8192999958992,0.392289996147156,0.817309975624084,0.393489986658096,0.82098001241684,0.395054996013641,0.597660005092621,0.0230749994516373,0.599429965019226,0.0237550009042025,0.6005699634552,0.0452650003135204,0.597835004329681,0.045949999243021,0.598800003528595,0.0161649994552135,0.597759962081909,0.0193300005048513,0.602869987487793,0.0111499996855855,0.59983503818512,0.0130000002682209,0.801445007324219,0.445244997739792,0.797535002231598,0.45516499876976,0.815029978752136,0.471309989690781,0.817165017127991,0.458934992551804,0.819294989109039,0.446559995412827,0.805350005626678,0.435324996709824,0.795295000076294,0.427635014057159,0.797850012779236,0.42476499080658,0.796895027160645,0.421359986066818,0.793645024299622,0.423254996538162,0.792744994163513,0.430510014295578,0.805094957351685,0.416209995746613,0.806684970855713,0.414389997720718,0.803775012493134,0.407514989376068,0.802994966506958,0.410984992980957,0.802214980125427,0.414454996585846,0.803510010242462,0.418029993772507,0.7987300157547,0.416034996509552,0.796195030212402,0.419779986143112,0.799555003643036,0.417910009622574,0.801265001296997,0.412290006875992,0.791604995727539,0.0547749996185303,0.791800022125244,0.0506250001490116,0.791409969329834,0.0589249990880489,0.787474989891052,0.0578199997544289,0.787999987602234,0.0539349988102913,0.788524985313416,0.050050001591444,0.855955004692078,0.372734993696213,0.854529976844788,0.37389999628067,0.85607498884201,0.373245000839233,0.857495009899139,0.37228000164032,0.857380032539368,0.371569991111755,0.790760040283203,0.0162499994039536,0.791025042533875,0.0246050003916025,0.765599966049194,0.0216249991208315,0.765030026435852,0.0504399985074997,0.849595010280609,0.369980007410049,0.847965002059937,0.366759985685349,0.84992504119873,0.371715009212494,0.851225018501282,0.373205006122589,0.766674995422363,0.0103900004178286,0.761034965515137,0.0115099996328354,0.749520003795624,0.0244800001382828,0.752349972724915,0.0498399995267391, +0.748664975166321,0.0180200003087521,0.745725035667419,0.0132200000807643,0.845564961433411,0.374525010585785,0.844475030899048,0.375914990901947,0.845824956893921,0.375135004520416,0.846655011177063,0.3731350004673,0.73157000541687,0.0209299996495247,0.732829988002777,0.0493500009179115,0.730875015258789,0.0121149998158216,0.724659979343414,0.0138600002974272,0.83943498134613,0.373620003461838,0.838374972343445,0.372334986925125,0.840224981307983,0.375064998865128,0.840499997138977,0.374904990196228,0.720059990882874,0.0229049995541573,0.721355020999908,0.049490001052618,0.837660014629364,0.377259999513626,0.836380004882813,0.378995001316071,0.837920010089874,0.377990007400513,0.838940024375916,0.375524997711182,0.720049977302551,0.0157999992370605,0.719020009040833,0.0141949998214841,0.704370021820068,0.0218100007623434,0.70618999004364,0.0478999987244606,0.83228999376297,0.376255005598068,0.831349968910217,0.374989986419678,0.833095014095306,0.378275007009506,0.833225011825562,0.377514988183975,0.703530013561249,0.0139849996194243,0.69861501455307,0.0165550000965595,0.694149971008301,0.0245399996638298,0.694339990615845,0.0473949983716011,0.69412499666214,0.0178699996322393,0.692494988441467,0.0150100002065301,0.830799996852875,0.381839990615845,0.829620003700256,0.3838250041008,0.831120014190674,0.382730007171631,0.831984996795654,0.379850000143051,0.678054988384247,0.0234500002115965,0.680719971656799,0.0455650016665459,0.677245020866394,0.0146549995988607,0.672659993171692,0.0167500004172325,0.824360013008118,0.380529999732971,0.822049975395203,0.377654999494553,0.825185000896454,0.382840007543564,0.826665043830872,0.38340499997139,0.666469991207123,0.0253800004720688,0.66779500246048,0.0492650009691715,0.821465015411377,0.389025002717972,0.820734977722168,0.390439987182617,0.822090029716492,0.389829993247986,0.822194993495941,0.387609988451004,0.665870010852814,0.0195400007069111,0.662459969520569,0.0135500002652407,0.651705026626587,0.023700000718236,0.65446001291275,0.0466750003397465,0.815500020980835,0.39172500371933, +0.814895033836365,0.390879988670349,0.816195011138916,0.393530011177063,0.816105008125305,0.392569988965988,0.651085019111633,0.0134650003165007,0.645689964294434,0.0147399995476007,0.63885498046875,0.024295000359416,0.641844987869263,0.0477849990129471,0.637009978294373,0.0167449992150068,0.634554982185364,0.0116699999198318,0.813230037689209,0.402240008115768,0.812080025672913,0.404875010251999,0.813784956932068,0.40292501449585,0.814379990100861,0.399610012769699,0.626309990882874,0.0217199996113777,0.630195021629333,0.045269999653101,0.624080002307892,0.00985999964177608,0.620285034179688,0.0111050000414252,0.805384993553162,0.406314998865128,0.803149998188019,0.404949992895126,0.806120038032532,0.40820500254631,0.807624995708466,0.407680004835129,0.786404967308044,0.0234399996697903,0.604210019111633,0.0518000014126301,0.602050006389618,0.0540699996054173,0.601310014724731,0.0496699996292591,0.603754997253418,0.0481950007379055,0.599895000457764,0.0563400015234947,0.598865032196045,0.0511449985206127,0.752855002880096,0.0580449998378754,0.752600014209747,0.0539450012147427,0.733860015869141,0.0573850013315678,0.733345031738281,0.0533649995923042,0.766265034675598,0.0585500001907349,0.765650033950806,0.0544949993491173,0.720120012760162,0.0572200007736683,0.720735013484955,0.0533550009131432,0.705264985561371,0.0558600015938282,0.705730020999908,0.0518799982964993,0.69384503364563,0.0541799999773502,0.694090008735657,0.0507850013673306,0.681614995002747,0.0523599982261658,0.681164979934692,0.0489649996161461,0.667405009269714,0.0544250011444092,0.667600035667419,0.0518449991941452,0.654614984989166,0.0527850016951561,0.654534995555878,0.0497299991548061,0.641654968261719,0.0537550002336502,0.641749978065491,0.0507699996232986,0.631115019321442,0.0522449985146523,0.630654990673065,0.0487550012767315,0.618889987468719,0.0519649982452393,0.618844985961914,0.048870000988245,0.607120037078857,0.0519649982452393,0.606850028038025,0.0481350012123585,0.791195034980774,0.060454998165369,0.790979981422424,0.0619850009679794, +0.786545038223267,0.0629649981856346,0.787010014057159,0.060394998639822,0.785174965858459,0.0603550001978874,0.778764963150024,0.0608649998903275,0.784675002098083,0.0632750019431114,0.778575003147125,0.0639550015330315,0.772475004196167,0.0646350011229515,0.772350013256073,0.061370000243187,0.766414999961853,0.0610349997878075,0.766559958457947,0.0635249987244606,0.760650038719177,0.06241500005126,0.760475039482117,0.060699999332428,0.757604956626892,0.0599649995565414,0.75772500038147,0.0610949993133545,0.754804968833923,0.059774998575449,0.754729986190796,0.0592299997806549,0.752205014228821,0.0591150000691414,0.751549959182739,0.0601800009608269,0.7482950091362,0.060589998960495,0.749675035476685,0.0589950010180473,0.743965029716492,0.0592750012874603,0.742825031280518,0.061259999871254,0.73735499382019,0.0619350001215935,0.738255023956299,0.0595550015568733,0.733170032501221,0.059629999101162,0.732474982738495,0.0618750005960464,0.72759997844696,0.06182000041008,0.728080034255981,0.0597099997103214,0.725364983081818,0.0590800009667873,0.724844992160797,0.0609849989414215,0.722090005874634,0.0601500011980534,0.722649991512299,0.0584550015628338,0.719115018844604,0.0596400015056133,0.718109965324402,0.0620650015771389,0.714129984378815,0.0639799982309341,0.715579986572266,0.0608300007879734,0.711669981479645,0.0604499988257885,0.710285007953644,0.0639149993658066,0.706434965133667,0.0638549998402596,0.707759976387024,0.0600700005888939,0.704145014286041,0.0596599988639355,0.703019976615906,0.063459999859333,0.699604988098145,0.063060000538826,0.700529992580414,0.0592500008642673,0.698125004768372,0.0586300007998943,0.697385013103485,0.0614450015127659,0.695164978504181,0.0598249994218349,0.695724964141846,0.0580150000751019,0.693570017814636,0.0576950013637543,0.693289995193481,0.061209999024868,0.691420018672943,0.0625950023531914,0.691410005092621,0.0573749989271164,0.687754988670349,0.0563849993050098,0.687449991703033,0.0608399994671345,0.68348503112793,0.0590850003063679,0.684104979038239,0.0553900003433228, +0.68072497844696,0.0557850003242493,0.679830014705658,0.0592099986970425,0.676174998283386,0.0593300014734268,0.677344977855682,0.0561800003051758,0.673765003681183,0.0569100007414818,0.673070013523102,0.059629999101162,0.669965028762817,0.0599250011146069,0.670184969902039,0.0576400011777878,0.667649984359741,0.0576049983501434,0.667895019054413,0.0607899986207485,0.665825009346008,0.0616500005125999,0.665114998817444,0.0575749985873699,0.661830008029938,0.0573300011456013,0.66218501329422,0.061549998819828,0.658550024032593,0.0614450015127659,0.658550024032593,0.0570899993181229,0.654340028762817,0.0572549998760223,0.654060006141663,0.061719998717308,0.649569988250732,0.0619949996471405,0.650125026702881,0.0574150010943413,0.647355020046234,0.0577800013124943,0.647255003452301,0.061370000243187,0.64494001865387,0.0607450008392334,0.644580006599426,0.0581399984657764,0.642289996147156,0.0574849992990494,0.642925024032593,0.0612149983644485,0.640905022621155,0.0616899989545345,0.639994978904724,0.0568300001323223,0.63732498884201,0.0567350015044212,0.637825012207031,0.061124999076128,0.634739995002747,0.0605599991977215,0.634649991989136,0.0566399991512299,0.631060004234314,0.0564850009977818,0.631009995937347,0.060724999755621,0.627279996871948,0.0608900003135204,0.627475023269653,0.0563249997794628,0.624475002288818,0.0562499985098839,0.624559998512268,0.0602600015699863,0.621840000152588,0.0596349984407425,0.621479988098145,0.0561750009655952,0.619204998016357,0.0564399994909763,0.619525015354156,0.0609200000762939,0.617210030555725,0.0621999986469746,0.616935014724731,0.0567100010812283,0.613574981689453,0.0566399991512299,0.61379998922348,0.061599999666214,0.610395014286041,0.0610000006854534,0.610210001468658,0.0565650016069412,0.607249975204468,0.0568850003182888,0.607380032539368,0.0617999993264675,0.60436999797821,0.0625950023531914,0.604290008544922,0.0571999996900558,0.602180004119873,0.0577099993824959,0.602304995059967,0.061344999819994,0.600239992141724,0.0600950010120869,0.600069999694824,0.0582199990749359, +0.783919990062714,0.0643749982118607,0.786180019378662,0.0642149969935417,0.790995001792908,0.0631899982690811,0.769904971122742,0.0652799978852272,0.776910006999969,0.0648249983787537,0.76087498664856,0.063910000026226,0.765390038490295,0.0645949989557266,0.754875004291534,0.060199998319149,0.757874965667725,0.0620549991726875,0.747144997119904,0.0620700009167194,0.751010000705719,0.0611350014805794,0.736649990081787,0.063620001077652,0.741895020008087,0.0628449991345406,0.727315008640289,0.063629999756813,0.731984972953796,0.0636250004172325,0.721629977226257,0.0613100007176399,0.724475026130676,0.0624700002372265,0.713164985179901,0.0660850033164024,0.717400014400482,0.0636949986219406,0.705545008182526,0.0664699971675873,0.709354996681213,0.0662799999117851,0.699710011482239,0.0656049996614456,0.70262998342514,0.066040001809597,0.694580018520355,0.0620599985122681,0.697144985198975,0.0638350024819374,0.689170002937317,0.065700002014637,0.691874980926514,0.0638799965381622,0.682559967041016,0.0630849972367287,0.685864984989166,0.0643950030207634,0.676440000534058,0.0628850013017654,0.679499983787537,0.0629850029945374,0.669695019721985,0.06216000020504,0.673065006732941,0.0625249966979027,0.664539992809296,0.064910002052784,0.667119979858398,0.0635349974036217,0.658179998397827,0.0656000003218651,0.661360025405884,0.0652550011873245,0.650025010108948,0.0660049989819527,0.654100000858307,0.0658000037074089,0.645259976387024,0.0636050030589104,0.647639989852905,0.0648050010204315,0.640735030174255,0.0659599974751472,0.642994999885559,0.0647850036621094,0.634804964065552,0.0644199997186661,0.637769997119904,0.065190002322197,0.627449989318848,0.0649550035595894,0.63112998008728,0.0646850019693375,0.622134983539581,0.0635500028729439,0.624794960021973,0.0642549991607666,0.616770029067993,0.0666349977254868,0.619454979896545,0.0650949999690056,0.610644996166229,0.0651049986481667,0.613705039024353,0.065870001912117,0.605044960975647,0.0667949989438057,0.60784500837326,0.0659499987959862,0.600809991359711,0.0620799995958805, +0.602925002574921,0.0644349977374077,0.858214974403381,0.370559990406036,0.859889984130859,0.368640005588531,0.518319964408875,0.145785003900528,0.521309971809387,0.140909999608994,0.522210001945496,0.157940000295639,0.519894957542419,0.130915001034737,0.517854988574982,0.167235001921654,0.522109985351563,0.125385001301765,0.518635034561157,0.115599997341633,0.523054957389832,0.107620000839233,0.519580006599426,0.0939449965953827,0.521894991397858,0.0855899974703789,0.517269968986511,0.0707700029015541,0.521875023841858,0.0577850006520748,0.518220007419586,0.0379449985921383,0.791280031204224,0.431834995746613,0.789815008640289,0.433155000209808,0.792899966239929,0.421595007181168,0.800680041313171,0.421395003795624,0.802209973335266,0.408619999885559,0.808300018310547,0.412429988384247,0.809849977493286,0.406280010938644,0.815029978752136,0.404009997844696,0.814639985561371,0.395244985818863,0.819445013999939,0.397229999303818,0.818419992923737,0.391505002975464,0.823870003223419,0.392150014638901,0.822120010852814,0.382629990577698,0.828060030937195,0.388684988021851,0.828140020370483,0.383614987134933,0.832130014896393,0.385495007038116,0.8316650390625,0.377420008182526,0.835430026054382,0.382575005292892,0.834800004959106,0.378255009651184,0.838665008544922,0.380389988422394,0.838660001754761,0.373930007219315,0.842164993286133,0.378414988517761,0.842485010623932,0.375409990549088,0.846364974975586,0.377180010080338,0.8473100066185,0.369944989681244,0.851135015487671,0.375869989395142,0.852874994277954,0.373549997806549,0.856284976005554,0.374725013971329,0.857665002346039,0.374264985322952,0.782209992408752,0.107100002467632,0.785305023193359,0.103825002908707,0.785045027732849,0.105530001223087,0.790724992752075,0.102389998733997,0.782445013523102,0.0115649998188019,0.785234987735748,0.0131249995902181,0.776754975318909,0.108245000243187,0.755620002746582,0.101510003209114,0.736495018005371,0.107780002057552,0.720039963722229,0.102399997413158,0.710494995117188,0.105889998376369,0.694609999656677,0.100069999694824, +0.685699999332428,0.107780002057552,0.670904994010925,0.098690003156662,0.661660015583038,0.105875000357628,0.646744966506958,0.100395001471043,0.638199985027313,0.108934998512268,0.623160004615784,0.101549997925758,0.615429997444153,0.107819996774197,0.60259997844696,0.0994549989700317,0.603739976882935,0.102619998157024,0.799865007400513,0.427154988050461,0.799044966697693,0.43291500210762,0.80443000793457,0.426674991846085,0.817584991455078,0.406289994716644,0.814715027809143,0.407234996557236,0.814395010471344,0.410454988479614,0.825474977493286,0.393615007400513,0.82370001077652,0.393844991922379,0.823525011539459,0.39554500579834,0.833464980125427,0.386350005865097,0.831815004348755,0.386734992265701,0.831494987010956,0.387975007295609,0.840075016021729,0.380970001220703,0.838549971580505,0.381235003471375,0.838434994220734,0.382079988718033,0.847944974899292,0.37771001458168,0.846040010452271,0.377779990434647,0.845719993114471,0.378385007381439,0.85717499256134,0.376239985227585,0.857419967651367,0.375254988670349,0.85553503036499,0.37533500790596,0.854784965515137,0.375950008630753,0.796360015869141,0.438540011644363,0.793675005435944,0.444160014390945,0.809759974479675,0.417860001325607,0.807094991207123,0.422269999980927,0.8090900182724,0.428324997425079,0.812080025672913,0.414160013198853,0.819769978523254,0.40132001042366,0.818679988384247,0.403804987668991,0.82165002822876,0.398429989814758,0.828575015068054,0.390614986419678,0.82702499628067,0.392114996910095,0.830034971237183,0.389295011758804,0.835865020751953,0.383899986743927,0.83466500043869,0.385125011205673,0.837149977684021,0.382990002632141,0.842604994773865,0.379359990358353,0.841340005397797,0.380165010690689,0.844164967536926,0.378870010375977,0.851599991321564,0.376839995384216,0.84977000951767,0.377274990081787,0.853195011615753,0.376394987106323,0.855250000953674,0.376920014619827,0.857524991035461,0.377389997243881,0.858714997768402,0.376540005207062,0.86071503162384,0.486319988965988,0.86075496673584,0.474734991788864,0.848415017127991, +0.473520010709763,0.847880005836487,0.485089987516403,0.826619982719421,0.465624988079071,0.825034976005554,0.477584987878799,0.859234988689423,0.379400014877319,0.858850002288818,0.380499988794327,0.856274962425232,0.379220008850098,0.85512501001358,0.38018000125885,0.858464956283569,0.381785005331039,0.85808002948761,0.383074998855591,0.853994965553284,0.381345003843307,0.852864980697632,0.382510006427765,0.857764959335327,0.384135007858276,0.857445001602173,0.385199993848801,0.851954996585846,0.383599996566772,0.85104501247406,0.384685009717941,0.857089996337891,0.386629998683929,0.856734991073608,0.388060003519058,0.85004997253418,0.386110007762909,0.849054992198944,0.387535005807877,0.85639500617981,0.390325009822845,0.85605001449585,0.392585009336472,0.848075032234192,0.389634996652603,0.847095012664795,0.39173498749733,0.855615019798279,0.395379990339279,0.855185031890869,0.398175001144409,0.845790028572083,0.394169986248016,0.844489991664886,0.396600008010864,0.85453999042511,0.402244985103607,0.853895008563995,0.406314998865128,0.842710018157959,0.399955004453659,0.840934991836548,0.403315007686615,0.853269994258881,0.411049991846085,0.852645039558411,0.415789991617203,0.83917498588562,0.407570004463196,0.837414979934692,0.411819994449615,0.852304995059967,0.419719994068146,0.851965010166168,0.423649996519089,0.836499989032745,0.415630012750626,0.835579991340637,0.419445008039474,0.850844979286194,0.432475000619888,0.833060026168823,0.426809996366501,0.820834994316101,0.43741500377655,0.859045028686523,0.375919997692108,0.859375,0.375304996967316,0.793570041656494,0.100814998149872,0.793545007705688,0.0623200014233589,0.860729992389679,0.367734998464584,0.987125039100647,0.0653650015592575,0.986410021781921,0.0691900029778481,0.988620042800903,0.0666650012135506,0.987164974212646,0.0701399967074394,0.985450029373169,0.0838600024580956,0.985294997692108,0.0832749977707863,0.935325026512146,0.421635001897812,0.935099959373474,0.42425999045372,0.9357750415802,0.424095004796982,0.936154961585999,0.421880006790161, +0.935485005378723,0.401279985904694,0.934834957122803,0.401324987411499,0.934514999389648,0.418870002031326,0.935360014438629,0.41899499297142,0.936200022697449,0.419120013713837,0.936129987239838,0.401235014200211,0.90007495880127,0.485724985599518,0.929319977760315,0.461010009050369,0.989239990711212,0.0507050007581711,0.989014983177185,0.0552150011062622,0.989459991455078,0.0461900010704994,0.989745020866394,0.0466299988329411,0.990314960479736,0.0504000000655651,0.990890026092529,0.0541649982333183,0.989405035972595,0.0579949989914894,0.989794969558716,0.0607750006020069,0.991840004920959,0.0578299984335899,0.992794990539551,0.0615000016987324,0.988460004329681,0.0630699992179871,0.990710020065308,0.0640799999237061,0.938459992408752,0.430364996194839,0.939059972763062,0.428274989128113,0.937855005264282,0.432455003261566,0.932720005512238,0.449600011110306,0.936115026473999,0.438185006380081,0.874954998493195,0.494010001420975,0.601599991321564,0.0832300037145615,0.601435005664825,0.0838050022721291,0.599645018577576,0.0704850032925606,0.600419998168945,0.0693200007081032,0.602535009384155,0.0959549993276596,0.60233998298645,0.0963800027966499,0.786350011825562,0.424264997243881,0.786125004291534,0.421635001897812,0.785290002822876,0.421880006790161,0.78567498922348,0.424095004796982,0.786939978599548,0.418870002031326,0.786620020866394,0.401324987411499,0.785969972610474,0.401279985904694,0.786095023155212,0.41899499297142,0.785320043563843,0.401235014200211,0.785255014896393,0.419120013713837,0.792135000228882,0.461010009050369,0.810485005378723,0.479084998369217,0.597805023193359,0.0508450008928776,0.597559988498688,0.0463900007307529,0.598044991493225,0.0553050003945827,0.596194982528687,0.0542649999260902,0.596740007400513,0.0505449995398521,0.597280025482178,0.046824999153614,0.597665011882782,0.0580499991774559,0.5972900390625,0.0607950016856194,0.594334959983826,0.0615000016987324,0.595265030860901,0.0578799992799759,0.598614990711212,0.0630799978971481,0.59994500875473,0.0653650015592575,0.598510026931763, +0.0666650012135506,0.596419990062714,0.0640799999237061,0.783764958381653,0.433025002479553,0.785335004329681,0.438185006380081,0.788735032081604,0.449600011110306,0.846419990062714,0.494109988212585,0.860729992389679,0.495665013790131,0.821295022964478,0.48581999540329,0.518020033836365,0.0225900001823902,0.514315009117126,0.0211900006979704,0.939895033836365,0.42493999004364,0.939915001392365,0.422315001487732,0.781560003757477,0.42493999004364,0.782389998435974,0.428274989128113,0.781540036201477,0.422315001487732,0.523645043373108,0.337060004472733,0.520319998264313,0.340689986944199,0.524425029754639,0.336620002985001,0.984865009784698,0.0961299985647202,0.985119998455048,0.096780002117157,0.517650008201599,0.344235002994537,0.523620009422302,0.0266650002449751,0.524659991264343,0.0271600000560284,0.783079981803894,0.430649995803833,0.85842502117157,0.293294996023178,0.887984991073608,0.287075012922287,0.888119995594025,0.275034993886948,0.858269989490509,0.284579992294312,0.917540013790131,0.280860006809235,0.917964994907379,0.265495002269745,0.918395042419434,0.250124990940094,0.888255000114441,0.262995004653931,0.858114957809448,0.275860011577606,0.798770010471344,0.255560010671616,0.790464997291565,0.253529995679855,0.783004999160767,0.266714990139008,0.798830032348633,0.269885003566742,0.775539994239807,0.279895007610321,0.798884987831116,0.284209996461868,0.771865010261536,0.26426500082016,0.766065001487732,0.275855004787445,0.777665019035339,0.252680003643036,0.755985021591187,0.250299990177155,0.752869963645935,0.258834987878799,0.749755024909973,0.267369985580444,0.975865006446838,0.256339997053146,0.973235011100769,0.248524993658066,0.964509963989258,0.252249985933304,0.968394994735718,0.26155498623848,0.970600008964539,0.240714997053146,0.960619986057281,0.242939993739128,0.937579989433289,0.246724992990494,0.944509983062744,0.258940011262894,0.951444983482361,0.271154999732971,0.924515008926392,0.248280003666878,0.933234989643097,0.261905014514923,0.941959977149963,0.275534987449646,0.747105002403259, +0.248769998550415,0.745010018348694,0.255849987268448,0.742919981479645,0.262930005788803,0.785679996013641,0.138769999146461,0.779884994029999,0.138655006885529,0.77961003780365,0.125970005989075,0.785174965858459,0.126629993319511,0.774089992046356,0.138539999723434,0.774044990539551,0.125310003757477,0.736204981803894,0.139424994587898,0.732859969139099,0.139400005340576,0.734149992465973,0.128240004181862,0.738065004348755,0.129344999790192,0.729519963264465,0.139369994401932,0.73022997379303,0.127134993672371,0.692534983158112,0.139514997601509,0.687884986400604,0.139235004782677,0.689625024795532,0.127670004963875,0.694485008716583,0.127935007214546,0.683239996433258,0.138950005173683,0.684759974479675,0.127409994602203,0.632189989089966,0.134574994444847,0.626204967498779,0.129659995436668,0.627035021781921,0.12593500316143,0.632080018520355,0.133705005049706,0.758795022964478,0.158924996852875,0.755120038986206,0.158344998955727,0.755275011062622,0.156084999442101,0.759095013141632,0.156474992632866,0.75144499540329,0.157765001058578,0.751459956169128,0.155695006251335,0.751469969749451,0.153624996542931,0.755434989929199,0.153824999928474,0.759395003318787,0.154029995203018,0.573024988174438,0.15072500705719,0.573014974594116,0.152565002441406,0.569864988327026,0.150285005569458,0.568645000457764,0.148359999060631,0.573004961013794,0.154400005936623,0.571079969406128,0.152209997177124,0.578114986419678,0.16839000582695,0.578114986419678,0.171214997768402,0.573040008544922,0.171200007200241,0.573040008544922,0.168950006365776,0.573035001754761,0.166700005531311,0.578114986419678,0.165564998984337,0.716529965400696,0.156010001897812,0.713789999485016,0.156729996204376,0.713620007038116,0.155019998550415,0.716580033302307,0.154770001769066,0.711054980754852,0.157454997301102,0.710654973983765,0.155265003442764,0.710255026817322,0.153080001473427,0.713445007801056,0.153304994106293,0.71663498878479,0.15353000164032,0.573040008544922,0.122550003230572,0.573670029640198,0.124669998884201,0.569840013980865,0.123975001275539, +0.56742000579834,0.121234998106956,0.574299991130829,0.126790001988411,0.572265028953552,0.126715004444122,0.578114986419678,0.136840000748634,0.578114986419678,0.138144999742508,0.573104977607727,0.139719992876053,0.573090016841888,0.13816000521183,0.573080003261566,0.136600002646446,0.578114986419678,0.135535001754761,0.6579350233078,0.154915004968643,0.653689980506897,0.155285000801086,0.653840005397797,0.152960002422333,0.658439993858337,0.152820006012917,0.6494500041008,0.15565499663353,0.649240016937256,0.153095006942749,0.649029970169067,0.150539994239807,0.653990030288696,0.150635004043579,0.658949971199036,0.15072999894619,0.573009967803955,0.0732000023126602,0.572990000247955,0.0786599963903427,0.570360004901886,0.0739500001072884,0.568840026855469,0.0670849978923798,0.572965025901794,0.0841199979186058,0.571879982948303,0.080815002322197,0.578114986419678,0.104120001196861,0.578114986419678,0.106770001351833,0.573055028915405,0.108290001749992,0.573050022125244,0.105625003576279,0.573040008544922,0.102964997291565,0.578114986419678,0.101470001041889,0.608160018920898,0.14190499484539,0.612424969673157,0.141735002398491,0.612855017185211,0.150279998779297,0.608955025672913,0.150454998016357,0.616690039634705,0.14156000316143,0.616760015487671,0.150099992752075,0.567295014858246,0.033415000885725,0.565510034561157,0.0312200002372265,0.567165017127991,0.0311799999326468,0.568554997444153,0.0335050001740456,0.563719987869263,0.0290300007909536,0.565770030021667,0.0288500003516674,0.573104977607727,0.0509000010788441,0.573064982891083,0.0454250015318394,0.578114986419678,0.0454550012946129,0.578114986419678,0.0509099997580051,0.578114986419678,0.0563649982213974,0.573150038719177,0.0563799999654293,0.785430014133453,0.1581149995327,0.779744982719421,0.157839998602867,0.779844999313354,0.155534997582436,0.785665035247803,0.155680000782013,0.774060010910034,0.157570004463196,0.774024963378906,0.155395001173019,0.773985028266907,0.153219997882843,0.779945015907288,0.153229996562004,0.785899996757507,0.153239995241165, +0.769734978675842,0.157859995961189,0.767605006694794,0.159205004572868,0.766990005970001,0.156560003757477,0.769039988517761,0.155729994177818,0.765480041503906,0.160549998283386,0.76493501663208,0.157389998435974,0.764394998550415,0.154235005378723,0.766369998455048,0.153915002942085,0.76834499835968,0.153600007295609,0.766584992408752,0.138455003499985,0.764994978904724,0.138290002942085,0.765765011310577,0.130174994468689,0.768110036849976,0.126719996333122,0.763409972190857,0.138129994273186,0.763419985771179,0.133625000715256,0.733940005302429,0.156139999628067,0.731500029563904,0.156020000576973,0.731774985790253,0.154569998383522,0.734425008296967,0.154620006680489,0.729065001010895,0.155894994735718,0.729130029678345,0.154520004987717,0.729189991950989,0.153145000338554,0.732055008411407,0.153119996190071,0.734915018081665,0.153095006942749,0.726135015487671,0.156344994902611,0.723479986190796,0.157285004854202,0.723179996013641,0.155300006270409,0.725520014762878,0.154799997806549,0.720825016498566,0.158224999904633,0.720839977264404,0.155794993042946,0.720860004425049,0.15336500108242,0.722885012626648,0.153310000896454,0.724905014038086,0.153255000710487,0.724020004272461,0.138614997267723,0.722514986991882,0.138339996337891,0.722289979457855,0.131585001945496,0.72341001033783,0.130370005965233,0.721014976501465,0.138060003519058,0.721175014972687,0.132805004715919,0.690625011920929,0.156910002231598,0.687030017375946,0.15650500357151,0.687394976615906,0.154414996504784,0.691290020942688,0.155025005340576,0.683430016040802,0.156104996800423,0.683499991893768,0.153805002570152,0.683570027351379,0.151500001549721,0.68775999546051,0.152319997549057,0.691954970359802,0.153145000338554,0.671895027160645,0.155715003609657,0.669009983539581,0.156650006771088,0.668784976005554,0.154499992728233,0.671405017375946,0.153630003333092,0.666119992733002,0.157584995031357,0.666170001029968,0.155365005135536,0.666220009326935,0.153150007128716,0.668565034866333,0.15234999358654,0.670910000801086,0.151549994945526,0.670444965362549, +0.138815000653267,0.668565034866333,0.137830004096031,0.668304979801178,0.130989998579025,0.670444965362549,0.12924000620842,0.666684985160828,0.136844992637634,0.666164994239807,0.132740005850792,0.632335007190704,0.151769995689392,0.624485015869141,0.149700000882149,0.624729990959167,0.141849994659424,0.632274985313416,0.139060005545616,0.623889982700348,0.153290003538132,0.620265007019043,0.15412500500679,0.620445013046265,0.152015000581741,0.624189972877502,0.15149499475956,0.616634964942932,0.154964998364449,0.616694986820221,0.152529999613762,0.620620012283325,0.149900004267693,0.620710015296936,0.141705006361008,0.621484994888306,0.128490000963211,0.616765022277832,0.127314999699593,0.745460033416748,0.157374992966652,0.743484973907471,0.158244997262955,0.74326503276825,0.155900001525879,0.745114982128143,0.155499994754791,0.741514980792999,0.159109994769096,0.741415023803711,0.156299993395805,0.741315007209778,0.153494998812675,0.743044972419739,0.153559997677803,0.744769990444183,0.153624996542931,0.74439001083374,0.138174995779991,0.742815017700195,0.138180002570152,0.742470026016235,0.1300999969244,0.743640005588531,0.128700003027916,0.74124002456665,0.138190001249313,0.741299986839294,0.131500005722046,0.75891500711441,0.138280004262924,0.755154967308044,0.13816000521183,0.753715038299561,0.12610000371933,0.758044958114624,0.127845004200935,0.751394987106323,0.138034999370575,0.749379992485046,0.124355003237724,0.578114986419678,0.150519996881485,0.578114986419678,0.152319997549057,0.578114986419678,0.148719996213913,0.578114986419678,0.157879993319511,0.578114986419678,0.159795001149178,0.573035001754761,0.162204995751381,0.573024988174438,0.160245001316071,0.573019981384277,0.15828500688076,0.578114986419678,0.155965000391006,0.566910028457642,0.159834995865822,0.568920016288757,0.157824993133545,0.564895033836365,0.16185000538826,0.578145027160645,0.180230006575584,0.578114986419678,0.18155500292778,0.573040008544922,0.18155500292778,0.573050022125244,0.180224999785423,0.573055028915405,0.178890004754066, +0.578175008296967,0.178904995322227,0.567730009555817,0.18019500374794,0.56716001033783,0.18155500292778,0.565235018730164,0.18155500292778,0.566084980964661,0.18019999563694,0.566929996013641,0.178845003247261,0.568305015563965,0.178829997777939,0.570100009441376,0.168404996395111,0.569630026817322,0.165694996714592,0.57056999206543,0.17111499607563,0.705550014972687,0.158040001988411,0.701314985752106,0.158684998750687,0.700904965400696,0.156444996595383,0.70456999540329,0.155849993228912,0.697080016136169,0.159329995512962,0.697234988212585,0.157039999961853,0.697394967079163,0.154750004410744,0.70048999786377,0.154204994440079,0.703590035438538,0.153659999370575,0.702620029449463,0.139675006270409,0.700425028800964,0.138290002942085,0.700209975242615,0.132935002446175,0.702014982700348,0.130514994263649,0.698230028152466,0.136899992823601,0.698400020599365,0.1353600025177,0.717234969139099,0.141065001487732,0.713365018367767,0.140530005097389,0.714744985103607,0.12652499973774,0.718874990940094,0.129775002598763,0.709495007991791,0.139994993805885,0.71061497926712,0.123280003666878,0.578114986419678,0.124080002307892,0.578114986419678,0.126190006732941,0.578114986419678,0.121969997882843,0.578114986419678,0.13128499686718,0.578114986419678,0.132660001516342,0.573055028915405,0.1338250041008,0.573055028915405,0.13230499625206,0.573050022125244,0.13077999651432,0.578114986419678,0.129910007119179,0.566980004310608,0.13272500038147,0.56817501783371,0.131995007395744,0.565784990787506,0.133450001478195,0.578114986419678,0.143364995718002,0.578114986419678,0.145174995064735,0.573050022125244,0.14708499610424,0.573060035705566,0.145235002040863,0.573069989681244,0.143384993076324,0.578114986419678,0.141554996371269,0.567564964294434,0.145675003528595,0.568515002727509,0.14444500207901,0.566619992256165,0.14690999686718,0.568614959716797,0.137325003743172,0.567539989948273,0.13510499894619,0.569689989089966,0.139544993638992,0.638029992580414,0.154624998569489,0.635120034217834,0.155029997229576,0.634975016117096,0.15310500562191, +0.637674987316132,0.152600005269051,0.632215023040771,0.155440002679825,0.632274985313416,0.153604999184608,0.634829998016357,0.151175007224083,0.637319982051849,0.150580003857613,0.637099981307983,0.139819994568825,0.634684979915619,0.13944000005722,0.634760022163391,0.131595000624657,0.63732498884201,0.128615006804466,0.659950017929077,0.139624997973442,0.654240012168884,0.139404997229576,0.655939996242523,0.126110002398491,0.662190020084381,0.128344997763634,0.648535013198853,0.139190003275871,0.649685025215149,0.123870000243187,0.578114986419678,0.0782549977302551,0.578114986419678,0.0833100005984306,0.578114986419678,0.0732000023126602,0.578114986419678,0.092289999127388,0.578114986419678,0.095260001718998,0.573024988174438,0.0966999977827072,0.573009967803955,0.09358000010252,0.572995007038116,0.0904600024223328,0.578114986419678,0.0893250033259392,0.567070007324219,0.092229999601841,0.568899989128113,0.0906350016593933,0.565245032310486,0.0938249975442886,0.578114986419678,0.114904999732971,0.578114986419678,0.117514997720718,0.573040008544922,0.118029996752739,0.573045015335083,0.115649998188019,0.573050022125244,0.113265000283718,0.578114986419678,0.112295001745224,0.566249966621399,0.116274997591972,0.568769991397858,0.114514999091625,0.563735008239746,0.118040002882481,0.568830013275146,0.102964997291565,0.568310022354126,0.0977149978280067,0.569350004196167,0.108214996755123,0.602620005607605,0.136830002069473,0.605390012264252,0.139369994401932,0.605645000934601,0.151899993419647,0.60233998298645,0.153339996933937,0.604910016059875,0.131109997630119,0.606624960899353,0.129720002412796,0.603195011615753,0.132495000958443,0.606169998645782,0.12593500316143,0.611469984054565,0.124459996819496,0.611694991588593,0.128519997000694,0.616775035858154,0.122984997928143,0.573040008544922,0.0312200002372265,0.573040008544922,0.0290300007909536,0.578114986419678,0.0294100008904934,0.578114986419678,0.0315449982881546,0.578114986419678,0.0336799994111061,0.573040008544922,0.033415000885725,0.578114986419678,0.0395700000226498, +0.573055028915405,0.0394200012087822,0.569324970245361,0.0394500009715557,0.570095002651215,0.0453950017690659,0.578114986419678,0.0626749992370605,0.573050022125244,0.0619699992239475,0.563679993152618,0.062270000576973,0.568549990653992,0.0562550015747547,0.567295014858246,0.0561800003051758,0.56828498840332,0.0507699996232986,0.5693199634552,0.0508249998092651,0.56927502155304,0.0453599989414215,0.792719960212708,0.152639999985695,0.792719960212708,0.156025007367134,0.790955007076263,0.15591000020504,0.791059970855713,0.152875006198883,0.792715013027191,0.159404993057251,0.79085499048233,0.158950001001358,0.788990020751953,0.158490002155304,0.789195001125336,0.155799999833107,0.789394974708557,0.15310999751091,0.573040008544922,0.173645004630089,0.578114986419678,0.173665001988411,0.578114986419678,0.17611500620842,0.573040008544922,0.176090002059937,0.568614959716797,0.176155000925064,0.56923496723175,0.173675000667572,0.570095002651215,0.173580005764961,0.569615006446838,0.176045000553131,0.569849967956543,0.171200007200241,0.791020035743713,0.130030006170273,0.792739987373352,0.130805000662804,0.792739987373352,0.13756999373436,0.791054964065552,0.137950003147125,0.789375007152557,0.138335004448891,0.789304971694946,0.129254996776581,0.573035001754761,0.164454996585846,0.578114986419678,0.162680000066757,0.770339965820313,0.13850000500679,0.771165013313293,0.153410002589226,0.568655014038086,0.165549993515015,0.565614998340607,0.163690000772476,0.567260026931763,0.163770005106926,0.562574982643127,0.161829993128777,0.768985033035278,0.123839996755123,0.773259997367859,0.122974999248981,0.771080017089844,0.126014992594719,0.777530014514923,0.12211500108242,0.761165022850037,0.138205006718636,0.761895000934601,0.15412999689579,0.573009967803955,0.156344994902611,0.578114986419678,0.154139995574951,0.75798499584198,0.125269994139671,0.760715007781982,0.128889992833138,0.760730028152466,0.130734995007515,0.763450026512146,0.132504999637604,0.567739963531494,0.15786500275135,0.568984985351563,0.155169993638992,0.569999992847443, +0.155019998550415,0.570235013961792,0.152469992637634,0.573040008544922,0.148904994130135,0.578114986419678,0.146950006484985,0.747889995574951,0.138105005025864,0.748120009899139,0.153624996542931,0.743214964866638,0.125784993171692,0.746474981307983,0.123664997518063,0.746510028839111,0.12652499973774,0.74974000453949,0.121550001204014,0.567394971847534,0.147880002856255,0.566089987754822,0.147320002317429,0.567629992961884,0.147634997963905,0.564785003662109,0.146754994988441,0.738719999790192,0.138805001974106,0.738115012645721,0.153294995427132,0.573085010051727,0.141554996371269,0.578114986419678,0.139850005507469,0.567219972610474,0.144940003752708,0.567970037460327,0.142344996333122,0.56910502910614,0.141994997859001,0.56871497631073,0.139754995703697,0.738849997520447,0.126049995422363,0.740100026130676,0.12780499458313,0.739684998989105,0.130419999361038,0.741355001926422,0.129559993743896,0.573069989681244,0.135214999318123,0.578114986419678,0.134094998240471,0.726769983768463,0.138995006680489,0.727050006389618,0.153200000524521,0.565959990024567,0.13459500670433,0.564839959144592,0.133904993534088,0.56666499376297,0.134279996156693,0.563719987869263,0.133214995265007,0.722904980182648,0.127859994769096,0.726925015449524,0.125835001468658,0.72681999206543,0.128749996423721,0.730944991111755,0.12381500005722,0.719125032424927,0.139559999108315,0.71875,0.15344999730587,0.573675036430359,0.128784999251366,0.578114986419678,0.128049999475479,0.719579994678497,0.126684993505478,0.720470011234283,0.128979995846748,0.72002500295639,0.131290003657341,0.721355020999908,0.131274998188019,0.566794991493225,0.132349997758865,0.568984985351563,0.129600003361702,0.570219993591309,0.129354998469353,0.571179986000061,0.126849994063377,0.573040008544922,0.120290003716946,0.578114986419678,0.119740001857281,0.706054985523224,0.139835000038147,0.706920027732849,0.15336999297142,0.701690018177032,0.128154993057251,0.706310033798218,0.124145001173019,0.706314980983734,0.126894995570183,0.710934996604919,0.120140001177788,0.565855026245117, +0.120975002646446,0.56349503993988,0.119575001299381,0.565575003623962,0.119640000164509,0.56114000082016,0.118170000612736,0.695384979248047,0.138209998607635,0.694674968719482,0.153944998979568,0.573055028915405,0.110775001347065,0.578114986419678,0.109535001218319,0.567584991455078,0.114990003407001,0.567950010299683,0.111654996871948,0.56905996799469,0.111364997923374,0.568310022354126,0.108319997787476,0.564365029335022,0.116580002009869,0.563464999198914,0.116539999842644,0.565954983234406,0.114964999258518,0.560979962348938,0.118115000426769,0.573035001754761,0.0998300015926361,0.578114986419678,0.0983650013804436,0.676845014095306,0.138885006308556,0.677240014076233,0.151525005698204,0.566954970359802,0.0963649973273277,0.564999997615814,0.094760000705719,0.566779971122742,0.095770001411438,0.563045024871826,0.0931600034236908,0.670554995536804,0.12644499540329,0.677860021591187,0.125434994697571,0.677600026130676,0.128325000405312,0.685169994831085,0.124420002102852,0.663314998149872,0.138235002756119,0.662585020065308,0.151940003037453,0.572979986667633,0.087289996445179,0.578114986419678,0.0863149985671043,0.662954986095428,0.125165000557899,0.664550006389618,0.128490000963211,0.664179980754852,0.130545005202293,0.666149973869324,0.131819993257523,0.567809998989105,0.0908199995756149,0.569499969482422,0.0854000002145767,0.570389986038208,0.0857250019907951,0.571195006370544,0.079985000193119,0.5730299949646,0.0675849989056587,0.578114986419678,0.0679399967193604,0.642814993858337,0.139504998922348,0.643175005912781,0.15056000649929,0.637099981307983,0.125165000557899,0.643615007400513,0.122634999454021,0.643504977226257,0.126240000128746,0.650134980678558,0.120104998350143,0.567809998989105,0.0674500018358231,0.564759969711304,0.0648799985647202,0.566259980201721,0.0646750032901764,0.561710000038147,0.0623149983584881,0.787649989128113,0.153174996376038,0.787524998188019,0.138549998402596,0.609420001506805,0.153929993510246,0.606364965438843,0.156705006957054,0.606005012989044,0.154300004243851,0.609184980392456, +0.152195006608963,0.603314995765686,0.159484997391701,0.602824985980988,0.156409993767738,0.762135028839111,0.159740000963211,0.762014985084534,0.156935006380081,0.748454988002777,0.157570004463196,0.748284995555878,0.155595004558563,0.771899998188019,0.157714992761612,0.771530032157898,0.155560001730919,0.737725019454956,0.157625004649162,0.737919986248016,0.155460000038147,0.72759997844696,0.156120002269745,0.727325022220612,0.154660001397133,0.718675017356873,0.157120004296303,0.718710005283356,0.155285000801086,0.70830500125885,0.157745003700256,0.70761501789093,0.155560001730919,0.693854987621307,0.158120006322861,0.694265007972717,0.156035006046295,0.677664995193481,0.15591000020504,0.677450001239777,0.153714999556541,0.662024974822998,0.15625,0.662304997444153,0.154094994068146,0.643739998340607,0.155139997601509,0.643455028533936,0.1528500020504,0.613025009632111,0.154445007443428,0.612940013408661,0.152360007166862,0.778180003166199,0.185324996709824,0.782979965209961,0.185320004820824,0.781960010528564,0.197595000267029,0.778759956359863,0.198410004377365,0.787779986858368,0.185314998030663,0.785160005092621,0.196785002946854,0.734395027160645,0.187069997191429,0.737945020198822,0.18716000020504,0.739435017108917,0.196869999170303,0.735920011997223,0.197764992713928,0.741490006446838,0.187254995107651,0.742950022220612,0.195975005626678,0.686794996261597,0.185100004076958,0.690945029258728,0.185004994273186,0.692004978656769,0.196050003170967,0.68896496295929,0.196459993720055,0.695095002651215,0.184909999370575,0.695044994354248,0.195639997720718,0.628489971160889,0.192770004272461,0.622045040130615,0.19811999797821,0.622825026512146,0.194564998149872,0.628889977931976,0.191654995083809,0.762775003910065,0.16287000477314,0.762674987316132,0.166229993104935,0.758249998092651,0.166240006685257,0.758360028266907,0.162939995527267,0.762570023536682,0.169589996337891,0.758139967918396,0.169540002942085,0.753715038299561,0.169485002756119,0.753829956054688,0.166244998574257,0.753939986228943,0.163004994392395, +0.84512996673584,0.352299988269806,0.844220042228699,0.352189987897873,0.843620002269745,0.353165000677109,0.84486997127533,0.352894991636276,0.843315005302429,0.35207998752594,0.84237003326416,0.353435009717941,0.859295010566711,0.352344989776611,0.859284996986389,0.351545006036758,0.858539998531342,0.351554989814758,0.858819961547852,0.352344989776611,0.859274983406067,0.350744992494583,0.858265042304993,0.350764989852905,0.857249975204468,0.350789994001389,0.857795000076294,0.351570010185242,0.858345031738281,0.352344989776611,0.717435002326965,0.166119992733002,0.717620015144348,0.168795004487038,0.71424001455307,0.169129997491837,0.714164972305298,0.166604995727539,0.71780002117157,0.171470001339912,0.714314997196198,0.171660006046295,0.710829973220825,0.171849995851517,0.710865020751953,0.169469997286797,0.710895001888275,0.167089998722076,0.831679999828339,0.347000002861023,0.830754995346069,0.346455007791519,0.829975008964539,0.347925007343292,0.831075012683868,0.347954988479614,0.8298299908638,0.345914989709854,0.828875005245209,0.347894996404648,0.83746999502182,0.3473199903965,0.839190006256104,0.348159998655319,0.845999956130981,0.346029996871948,0.844825029373169,0.344994992017746,0.840909957885742,0.3490050137043,0.847175002098083,0.347065001726151,0.853444993495941,0.345120012760162,0.852810025215149,0.343894988298416,0.852180004119873,0.342669993638992,0.658850014209747,0.167239993810654,0.659714996814728,0.169455006718636,0.655884981155396,0.169485002756119,0.655330002307892,0.166995003819466,0.660579979419708,0.171664997935295,0.656440019607544,0.171969994902611,0.652294993400574,0.172275006771088,0.652050018310547,0.169510006904602,0.651804983615875,0.166745007038116,0.809504985809326,0.33144998550415,0.806429982185364,0.329899996519089,0.805705010890961,0.330904990434647,0.808925032615662,0.33195498585701,0.80334997177124,0.328350007534027,0.80248498916626,0.329860001802444,0.819959998130798,0.332870006561279,0.82328999042511,0.335880011320114,0.834095001220703,0.330029994249344,0.831584990024567, +0.326375007629395,0.826619982719421,0.338894993066788,0.83660501241684,0.333680003881454,0.846594989299774,0.328465014696121,0.844905018806458,0.324175000190735,0.843214988708496,0.319884985685349,0.61004501581192,0.182310000061989,0.604645013809204,0.182325005531311,0.60639500617981,0.172515004873276,0.611289978027344,0.172600001096725,0.616180002689362,0.172690004110336,0.615445017814636,0.182294994592667,0.775754988193512,0.327244997024536,0.777339994907379,0.324519991874695,0.778050005435944,0.320760011672974,0.776120007038116,0.322355002164841,0.778919994831085,0.321790009737015,0.779980003833771,0.319164991378784,0.787274956703186,0.163344994187355,0.787729978561401,0.166380003094673,0.782750010490417,0.166219994425774,0.782530009746552,0.163055002689362,0.788185000419617,0.16941499710083,0.782970011234283,0.169385001063347,0.777760028839111,0.169355005025864,0.77777498960495,0.166065007448196,0.777785003185272,0.162770003080368,0.769544959068298,0.161779999732971,0.768620014190674,0.164869993925095,0.766914963722229,0.165010005235672,0.767439961433411,0.161829993128777,0.767699956893921,0.167960003018379,0.766384959220886,0.168194994330406,0.765074968338013,0.168430000543594,0.765205025672913,0.165154993534088,0.765339970588684,0.161880001425743,0.764150023460388,0.185469999909401,0.765689969062805,0.186010003089905,0.767359972000122,0.193605005741119,0.763904988765717,0.189869999885559,0.767225027084351,0.186550006270409,0.770820021629333,0.197339996695518,0.738584995269775,0.162235006690025,0.739700019359589,0.165515005588531,0.736374974250793,0.165940001606941,0.735489964485168,0.162654995918274,0.740810036659241,0.168799996376038,0.737254977226257,0.169225007295609,0.733700037002563,0.169654995203018,0.733049988746643,0.166364997625351,0.732394993305206,0.163075000047684,0.72623997926712,0.163564994931221,0.726795017719269,0.166969999670982,0.724759995937347,0.166390001773834,0.724234998226166,0.163200005888939,0.727344989776611,0.170375004410744,0.725284993648529,0.16957999765873,0.723224997520447,0.168785005807877, +0.722725033760071,0.165810003876686,0.72222501039505,0.162839993834496,0.724629998207092,0.185774996876717,0.726040005683899,0.18656499683857,0.726209998130798,0.192809998989105,0.724545001983643,0.191200003027916,0.727445006370544,0.187360003590584,0.727874994277954,0.194419994950294,0.691565036773682,0.166179999709129,0.692555010318756,0.1684750020504,0.688955008983612,0.169310003519058,0.688109993934631,0.167080000042915,0.693549990653992,0.170764997601509,0.689805030822754,0.171544998884201,0.686065018177032,0.172325000166893,0.685360014438629,0.170149996876717,0.684650003910065,0.16797499358654,0.674515008926392,0.167380005121231,0.674480020999908,0.169715002179146,0.670114994049072,0.168775007128716,0.669905006885529,0.166345000267029,0.674449980258942,0.172049999237061,0.670329988002777,0.171204999089241,0.666204988956451,0.170359998941422,0.665750026702881,0.167834997177124,0.665295004844666,0.165309995412827,0.667034983634949,0.187095001339912,0.67010498046875,0.186104997992516,0.669200003147125,0.192894995212555,0.6650750041008,0.190809994935989,0.67316997051239,0.185114994645119,0.673330008983612,0.19497999548912,0.626044988632202,0.172354996204376,0.6319699883461,0.170634999871254,0.630039989948273,0.187285006046295,0.625265002250671,0.181785002350807,0.625455021858215,0.167594999074936,0.625750005245209,0.169974997639656,0.620934963226318,0.16991999745369,0.620764970779419,0.167319998145103,0.621109962463379,0.172519996762276,0.616124987602234,0.169864997267723,0.616070032119751,0.167044997215271,0.620355010032654,0.182040005922318,0.617684960365295,0.195759996771812,0.612545013427734,0.196960002183914,0.746845006942749,0.162404999136925,0.746644973754883,0.165484994649887,0.745064973831177,0.165700003504753,0.745074987411499,0.162774994969368,0.7464399933815,0.168569996953011,0.745059967041016,0.168630003929138,0.743680000305176,0.168689996004105,0.743489980697632,0.165920004248619,0.743300020694733,0.163145005702972,0.743965029716492,0.185819998383522,0.745540022850037,0.186704993247986,0.745939970016479, +0.194690003991127,0.74413001537323,0.193130001425743,0.747115015983582,0.187590003013611,0.747745037078857,0.196250006556511,0.754170000553131,0.186979994177818,0.757804989814758,0.186804994940758,0.758525013923645,0.197369992733002,0.756110012531281,0.198424994945526,0.76144003868103,0.186629995703697,0.760944962501526,0.196315005421638,0.844130039215088,0.350394994020462,0.846099972724915,0.350780010223389,0.850669980049133,0.349379986524582,0.849354982376099,0.348659992218018,0.848075032234192,0.351164996623993,0.851984977722168,0.350095003843307,0.85589998960495,0.349025011062622,0.855239987373352,0.347979992628098,0.854579985141754,0.346929997205734,0.850250005722046,0.351424992084503,0.853410005569458,0.350665003061295,0.852419972419739,0.351680010557175,0.854835033416748,0.351235002279282,0.856575012207031,0.349909991025925,0.849135041236877,0.35317000746727,0.848105013370514,0.352934986352921,0.847494959831238,0.355549991130829,0.848255038261414,0.35691499710083,0.84707498550415,0.352694988250732,0.846735000610352,0.354184985160828,0.858709990978241,0.353574991226196,0.859315037727356,0.353630006313324,0.858105003833771,0.353520005941391,0.857869982719421,0.354694992303848,0.85860002040863,0.354804992675781,0.859335005283356,0.354914993047714,0.859354972839355,0.357210010290146,0.858590006828308,0.356765002012253,0.857829988002777,0.356325000524521,0.858569979667664,0.36039999127388,0.85775500535965,0.359250009059906,0.853749990463257,0.353574991226196,0.852584958076477,0.353469997644424,0.852304995059967,0.354095011949539,0.853630006313324,0.353974997997284,0.851415038108826,0.353370010852814,0.850984990596771,0.354220002889633,0.705404996871948,0.166669994592667,0.705080032348633,0.16957999765873,0.701640009880066,0.168430000543594,0.701719999313354,0.166065007448196,0.704755008220673,0.172490000724792,0.701560020446777,0.170790001749992,0.698359966278076,0.169090002775192,0.698199987411499,0.167274996638298,0.698035001754761,0.165464997291565,0.699644982814789,0.186880007386208,0.70217502117157,0.186234995722771, +0.703334987163544,0.191194996237755,0.69999498128891,0.188549995422363,0.704710006713867,0.185589998960495,0.706669986248016,0.193839997053146,0.712080001831055,0.185644999146461,0.716189980506897,0.185414999723434,0.718535006046295,0.195775002241135,0.714484989643097,0.196559995412827,0.720295011997223,0.185185000300407,0.722584962844849,0.194989994168282,0.830765008926392,0.3420549929142,0.832390010356903,0.343529999256134,0.841135025024414,0.340184986591339,0.839839994907379,0.338380008935928,0.834020018577576,0.345005005598068,0.842429995536804,0.341989994049072,0.850834965705872,0.338970005512238,0.84987998008728,0.336840003728867,0.848919987678528,0.334704995155334,0.835744976997375,0.346159994602203,0.843625009059906,0.34349000453949,0.851505041122437,0.340820014476776,0.834995031356812,0.349155008792877,0.834205031394958,0.348639994859695,0.833410024642944,0.351074993610382,0.833790004253387,0.352209985256195,0.833410024642944,0.348125010728836,0.833029985427856,0.34994500875473,0.842519998550415,0.349700003862381,0.848264992237091,0.347860008478165,0.854014992713928,0.346024990081787,0.841580033302307,0.351875007152557,0.840719997882843,0.351534992456436,0.840099990367889,0.353410005569458,0.840595006942749,0.354065001010895,0.839854955673218,0.351200014352798,0.83960497379303,0.352755010128021,0.838155031204224,0.350354999303818,0.837360024452209,0.350104987621307,0.836534976959229,0.351404994726181,0.837650001049042,0.351114988327026,0.836570024490356,0.349860012531281,0.83542001247406,0.351695001125336,0.64155501127243,0.166834995150566,0.641205012798309,0.169455006718636,0.636520028114319,0.168960005044937,0.636619985103607,0.166569992899895,0.640860021114349,0.172069996595383,0.636415004730225,0.171354994177818,0.631829977035522,0.168469995260239,0.63169002532959,0.166305005550385,0.634440004825592,0.185955002903938,0.632655024528503,0.194140002131462,0.63883501291275,0.184630006551743,0.636420011520386,0.196624994277954,0.650694966316223,0.184689998626709,0.655939996242523,0.184514999389648,0.654034972190857, +0.197510004043579,0.649075031280518,0.198500007390976,0.661185026168823,0.184340000152588,0.658995032310486,0.196524992585182,0.828655004501343,0.288749992847443,0.828249990940094,0.304064989089966,0.849560022354126,0.302625000476837,0.806939959526062,0.305510014295578,0.814994990825653,0.326810002326965,0.827839970588684,0.31938499212265,0.840690016746521,0.311955004930496,0.817474961280823,0.329840004444122,0.829715013504028,0.322879999876022,0.841949999332428,0.315919995307922,0.81623500585556,0.337150007486343,0.814880013465881,0.335895001888275,0.813905000686646,0.338425010442734,0.814915001392365,0.340950012207031,0.813520014286041,0.334639996290207,0.812894999980927,0.335900008678436,0.828689992427826,0.340474992990494,0.83822500705719,0.336030006408691,0.847755014896393,0.331584990024567,0.827849984169006,0.34468001127243,0.826775014400482,0.344049990177155,0.825444996356964,0.347130000591278,0.826065003871918,0.349449992179871,0.825704991817474,0.343419998884201,0.82482498884201,0.344805002212524,0.823554992675781,0.3420549929142,0.822345018386841,0.341380000114441,0.820994973182678,0.342460006475449,0.822899997234344,0.343075007200241,0.821139991283417,0.340705007314682,0.819095015525818,0.341850012540817,0.601260006427765,0.18486000597477,0.597874999046326,0.187399998307228,0.597835004329681,0.17093500494957,0.602115035057068,0.171725004911423,0.599855005741119,0.193230003118515,0.597594976425171,0.191754996776581,0.602115035057068,0.194710001349449,0.611670017242432,0.20108500123024,0.606539964675903,0.199615001678467,0.607329964637756,0.195834994316101,0.601410031318665,0.198149994015694,0.789075016975403,0.316175013780594,0.786195039749146,0.313654989004135,0.784974992275238,0.316864997148514,0.788295030593872,0.318574994802475,0.783315002918243,0.31114000082016,0.781650006771088,0.315154999494553,0.797450006008148,0.330390006303787,0.798925042152405,0.325374990701675,0.795340001583099,0.322124987840652,0.794445037841797,0.325255006551743,0.786814987659454,0.322670012712479,0.789875030517578,0.326550006866455, +0.791370034217834,0.321915000677109,0.792930006980896,0.330435007810593,0.792715013027191,0.161695003509521,0.79271000623703,0.165010005235672,0.791384994983673,0.16541500389576,0.79126501083374,0.162220001220703,0.792704999446869,0.168325006961823,0.791509985923767,0.168614998459816,0.790310025215149,0.168905004858971,0.790064990520477,0.165824994444847,0.789815008640289,0.162740007042885,0.853384971618652,0.354589998722076,0.854764997959137,0.355729997158051,0.85496997833252,0.354629993438721,0.856145024299622,0.356869995594025,0.856315016746521,0.355284988880157,0.79069995880127,0.19378000497818,0.792744994163513,0.192770004272461,0.792755007743835,0.194845005869865,0.790884971618652,0.196105003356934,0.789020001888275,0.197365000844002,0.788655042648315,0.194790005683899,0.77270495891571,0.185939997434616,0.772729992866516,0.16865499317646,0.846904993057251,0.36421000957489,0.848574995994568,0.360035002231598,0.84961998462677,0.355569988489151,0.850239992141724,0.355865001678467,0.778645038604736,0.201719999313354,0.774899959564209,0.20082999765873,0.774789988994598,0.197874993085861,0.771154999732971,0.199939996004105,0.762794971466064,0.186049997806549,0.763819992542267,0.169009998440742,0.76385498046875,0.190885007381439,0.762485027313232,0.194739997386932,0.762425005435944,0.193094998598099,0.761119961738586,0.198589995503426,0.844359993934631,0.353720009326935,0.84521496295929,0.35513499379158,0.845800042152405,0.353540003299713,0.846074998378754,0.356550008058548,0.750640034675598,0.187285006046295,0.750079989433289,0.169025003910065,0.756404995918274,0.200884997844696,0.751994967460632,0.199495002627373,0.751929998397827,0.197335004806519,0.747579991817474,0.198105007410049,0.838719964027405,0.35869500041008,0.839740037918091,0.357179999351501,0.841480016708374,0.353749990463257,0.840764999389648,0.355664998292923,0.742725014686584,0.186535000801086,0.742245018482208,0.168744996190071,0.83671498298645,0.352180004119873,0.837975025177002,0.353799998760223,0.838629961013794,0.351934999227524,0.83924001455307, +0.355419993400574,0.743780016899109,0.195264995098114,0.743900001049042,0.196539998054504,0.743539988994598,0.19454999268055,0.744024991989136,0.197819992899895,0.730920016765594,0.187215000391006,0.730525016784668,0.170015007257462,0.831694960594177,0.358550012111664,0.832574963569641,0.356889992952347,0.834604978561401,0.351949989795685,0.833454966545105,0.355230003595352,0.736104965209961,0.200084999203682,0.731954991817474,0.198035001754761,0.731894969940186,0.196089997887611,0.727805018424988,0.195979997515678,0.722464978694916,0.185479998588562,0.720515012741089,0.170124992728233,0.724444985389709,0.192640006542206,0.724164962768555,0.194934993982315,0.723564982414246,0.193094998598099,0.723879992961884,0.197235003113747,0.830039978027344,0.349440008401871,0.831245005130768,0.351235002279282,0.832049965858459,0.348949998617172,0.832450032234192,0.353035002946854,0.708395004272461,0.185615003108978,0.707790017127991,0.172169998288155,0.71525502204895,0.199210003018379,0.711130023002625,0.197530001401901,0.710574984550476,0.195199996232986,0.707005023956299,0.195849999785423,0.823439955711365,0.358585000038147,0.825439989566803,0.354965001344681,0.827470004558563,0.348675012588501,0.827445030212402,0.351339995861053,0.697369992733002,0.185894995927811,0.695954978466034,0.169925004243851,0.821789979934692,0.344714999198914,0.822564959526062,0.345939993858337,0.823859989643097,0.343939989805222,0.823339998722076,0.347164988517761,0.700039982795715,0.188834995031357,0.697740018367767,0.193639993667603,0.697520017623901,0.192094996571541,0.695439994335175,0.198445007205009,0.679984986782074,0.185110002756119,0.680254995822906,0.172185003757477,0.813400030136108,0.348340004682541,0.814604997634888,0.346244990825653,0.817005038261414,0.341399997472763,0.815814971923828,0.344144999980927,0.689445018768311,0.199544996023178,0.681415021419525,0.19854000210762,0.681145012378693,0.195720002055168,0.673390030860901,0.197540000081062,0.664110004901886,0.18571500480175,0.66339498758316,0.171014994382858,0.664600014686584,0.191725000739098, +0.661639988422394,0.195769995450974,0.66203498840332,0.193664997816086,0.658675014972687,0.199819996953011,0.807895004749298,0.332754999399185,0.809880018234253,0.335314989089966,0.810909986495972,0.333929985761642,0.811864972114563,0.337879985570908,0.644765019416809,0.184660002589226,0.646574974060059,0.172175005078316,0.648395001888275,0.202215000987053,0.641955018043518,0.201030001044273,0.642750024795532,0.197559997439384,0.635509967803955,0.199849992990494,0.79534500837326,0.339415013790131,0.798144996166229,0.335904985666275,0.799965023994446,0.330125004053116,0.800940036773682,0.332394987344742,0.788954973220825,0.18529999256134,0.789245009422302,0.16915999352932,0.790130019187927,0.185285001993179,0.607885003089905,0.167510002851486,0.607140004634857,0.1700100004673,0.603349983692169,0.168889999389648,0.604579985141754,0.166050001978874,0.599560022354126,0.167765006422997,0.601279973983765,0.164594992995262,0.7639399766922,0.165694996714592,0.764060020446777,0.162375003099442,0.750234961509705,0.165865004062653,0.750394999980927,0.16270500421524,0.773195028305054,0.165464997291565,0.773665010929108,0.16227500140667,0.741595029830933,0.165720000863075,0.740939974784851,0.162689998745918,0.729920029640198,0.166669994592667,0.729319989681244,0.163320004940033,0.72017502784729,0.167304992675781,0.71983003616333,0.164480000734329,0.707970023155212,0.169524997472763,0.708150029182434,0.166879996657372,0.695374965667725,0.16787500679493,0.694800019264221,0.165824994444847,0.679920017719269,0.169929996132851,0.679579973220825,0.167675003409386,0.662734985351563,0.168644994497299,0.662074983119965,0.16627499461174,0.646629989147186,0.169485002756119,0.646679997444153,0.166789993643761,0.611634969711304,0.169939994812012,0.611979961395264,0.167274996638298,0.792715013027191,0.160634994506836,0.792715013027191,0.161164999008179,0.791105031967163,0.161235004663467,0.790944993495941,0.160254999995232,0.78949499130249,0.161304995417595,0.789175033569336,0.159869998693466,0.782339990139008,0.161029994487762,0.786895036697388, +0.161424994468689,0.777785003185272,0.160640001296997,0.777785003185272,0.158504992723465,0.782150030136108,0.159005001187325,0.786509990692139,0.159504994750023,0.773684978485107,0.160655006766319,0.769585013389587,0.16066999733448,0.769630014896393,0.159559994935989,0.773705005645752,0.159030005335808,0.7674800157547,0.16109499335289,0.765375018119812,0.161520004272461,0.765410006046295,0.161160007119179,0.767520010471344,0.160359993577003,0.763499975204468,0.161654993891716,0.761624991893768,0.161789998412132,0.760475039482117,0.160710006952286,0.762939989566803,0.160934999585152,0.757429957389832,0.161589995026588,0.75323498249054,0.161394998431206,0.752524971961975,0.159779995679855,0.756500005722046,0.160245001316071,0.749799966812134,0.161129996180534,0.746370017528534,0.160864993929863,0.745895028114319,0.159329995512962,0.749210000038147,0.159555003046989,0.744585037231445,0.161404997110367,0.742794990539551,0.161945000290871,0.742290019989014,0.160740002989769,0.744094967842102,0.160034999251366,0.740034997463226,0.161149993538857,0.737269997596741,0.160359993577003,0.735960006713867,0.158484995365143,0.73912501335144,0.159610003232956,0.734300017356873,0.160545006394386,0.731325030326843,0.160730004310608,0.730255007743835,0.158384993672371,0.733105003833771,0.158435001969337,0.728609979152679,0.160885006189346,0.72589498758316,0.161035001277924,0.725555002689362,0.158504992723465,0.727905035018921,0.158445000648499,0.723890006542206,0.161455005407333,0.72188001871109,0.161874994635582,0.721530020236969,0.160909995436668,0.723545014858246,0.159710004925728,0.71991503238678,0.162424996495247,0.717944979667664,0.162974998354912,0.718459963798523,0.159824997186661,0.719995021820068,0.160370007157326,0.714450001716614,0.163804993033409,0.710950016975403,0.164629995822906,0.711004972457886,0.162174999713898,0.714730024337769,0.160999998450279,0.707844972610474,0.16457000374794,0.70474499464035,0.164505004882813,0.704084992408752,0.162345007061958,0.707544982433319,0.162259995937347,0.701254963874817,0.164210006594658, +0.697764992713928,0.163914993405342,0.697499990463257,0.16236500442028,0.700789988040924,0.162355005741119,0.694975018501282,0.163855001330376,0.69218498468399,0.163794994354248,0.692809998989105,0.161404997110367,0.695155024528503,0.161884993314743,0.688315033912659,0.164425000548363,0.684445023536682,0.165055006742477,0.684239983558655,0.162139996886253,0.688525021076202,0.16177000105381,0.67891001701355,0.164755001664162,0.673375010490417,0.164454996585846,0.672240018844604,0.161534994840622,0.67824000120163,0.161834999918938,0.669444978237152,0.163939997553825,0.665515005588531,0.163424998521805,0.665740013122559,0.161544993519783,0.668990015983582,0.161540001630783,0.662284970283508,0.16372999548912,0.659049987792969,0.164035007357597,0.659245014190674,0.160824999213219,0.662490010261536,0.161184996366501,0.655115008354187,0.163994997739792,0.651185035705566,0.163955003023148,0.650565028190613,0.16117000579834,0.654905021190643,0.160995006561279,0.64580500125885,0.163829997181892,0.640429973602295,0.163699999451637,0.639304995536804,0.160565003752708,0.644935011863708,0.160864993929863,0.636150002479553,0.163660004734993,0.631870031356812,0.163619995117188,0.632045030593872,0.160929992794991,0.635675013065338,0.16075000166893,0.625465035438538,0.163599997758865,0.625469982624054,0.159604996442795,0.620805025100708,0.163770005106926,0.616145014762878,0.163939997553825,0.616214990615845,0.16083499789238,0.620844960212708,0.160219997167587,0.612069964408875,0.163884997367859,0.60799503326416,0.163829997181892,0.608105003833771,0.160144999623299,0.612159967422485,0.16049000620842,0.604844987392426,0.163619995117188,0.601689994335175,0.163409993052483,0.602100014686584,0.162220001220703,0.605104982852936,0.161184996366501,0.785969972610474,0.158810004591942,0.787524998188019,0.158995002508163,0.787845015525818,0.159689992666245,0.787209987640381,0.158305004239082,0.789085030555725,0.159180000424385,0.780945003032684,0.158425003290176,0.775920033454895,0.15803499519825,0.772799968719482,0.15837499499321,0.769680023193359, +0.15871000289917,0.767565011978149,0.159779995679855,0.765444993972778,0.160854995250702,0.762539982795715,0.160335004329681,0.759634971618652,0.159820005297661,0.755810022354126,0.159294992685318,0.751985013484955,0.158775001764297,0.748830020427704,0.158564999699593,0.745674967765808,0.158354997634888,0.743790030479431,0.159140005707741,0.741904973983765,0.159924998879433,0.738425016403198,0.158619999885559,0.734950006008148,0.157309994101524,0.732304990291595,0.157224997878075,0.729660034179688,0.157140001654625,0.72775000333786,0.157285004854202,0.725844979286194,0.157425001263618,0.723510026931763,0.158494994044304,0.721180021762848,0.159565001726151,0.71933501958847,0.158745005726814,0.717494964599609,0.157920002937317,0.71425998210907,0.158865004777908,0.711030006408691,0.1598149985075,0.707925021648407,0.160005003213882,0.704815030097961,0.160190001130104,0.701054990291595,0.160520002245903,0.697290003299713,0.160850003361702,0.694504976272583,0.160005003213882,0.691715002059937,0.159160003066063,0.687775015830994,0.159140005707741,0.683835029602051,0.159119993448257,0.677950024604797,0.158869996666908,0.672065019607544,0.15862500667572,0.669000029563904,0.159095004200935,0.665930032730103,0.159565001726151,0.662259995937347,0.15871499478817,0.658590018749237,0.15786999464035,0.654299974441528,0.158140003681183,0.650004982948303,0.158409997820854,0.644335031509399,0.158004999160767,0.638665020465851,0.157594993710518,0.635399997234344,0.157890006899834,0.632130026817322,0.158185005187988,0.624679982662201,0.156444996595383,0.620554983615875,0.157175004482269,0.616425037384033,0.157900005578995,0.612594962120056,0.157470002770424,0.608759999275208,0.157034993171692,0.605735003948212,0.158944994211197,0.602710008621216,0.160850003361702,0.568960011005402,0.177440002560616,0.573050022125244,0.177489995956421,0.856950044631958,0.358060002326965,0.857069969177246,0.3558050096035,0.568814992904663,0.150175005197525,0.566004991531372,0.145850002765656,0.565155029296875,0.159850001335144,0.567340016365051,0.137174993753433, +0.569254994392395,0.168375000357628,0.565254986286163,0.132785007357597,0.568515002727509,0.123915001749992,0.567629992961884,0.102339997887611,0.565425038337708,0.0919900014996529,0.569499969482422,0.0737150013446808,0.56828498840332,0.0393900014460087,0.77477502822876,0.317414999008179,0.774425029754639,0.321119993925095,0.77512001991272,0.313710004091263,0.78286999464035,0.322230011224747,0.792204976081848,0.319150000810623,0.801140010356903,0.326864987611771,0.804419994354248,0.332574993371964,0.811514973640442,0.33304500579834,0.812629997730255,0.343109995126724,0.818690001964569,0.338925004005432,0.818804979324341,0.34442999958992,0.82463002204895,0.34273499250412,0.823390007019043,0.352874994277954,0.828840017318726,0.345295011997223,0.828740000724792,0.350389987230301,0.832545042037964,0.347559988498688,0.832069993019104,0.355789989233017,0.835785031318665,0.349510014057159,0.835085034370422,0.353704988956451,0.839004993438721,0.350780010223389,0.838979959487915,0.357055008411407,0.842445015907288,0.351974993944168,0.842559993267059,0.354689985513687,0.846099972724915,0.35249999165535,0.846490025520325,0.360379993915558,0.850275039672852,0.353269994258881,0.851809978485107,0.355224996805191,0.856389999389648,0.354355007410049,0.855069994926453,0.353965014219284,0.787240028381348,0.127945005893707,0.784865021705627,0.123960003256798,0.786830008029938,0.125220000743866,0.788800001144409,0.126479998230934,0.786909997463226,0.195785000920296,0.781199991703033,0.123034998774529,0.766219973564148,0.128169998526573,0.753859996795654,0.123410001397133,0.742285013198853,0.127670004963875,0.734899997711182,0.124935001134872,0.722130000591278,0.129570007324219,0.71525502204895,0.123410001397133,0.698395013809204,0.134709998965263,0.700039982795715,0.131435006856918,0.696444988250732,0.131644994020462,0.689570009708405,0.124959997832775,0.693965017795563,0.125499993562698,0.668349981307983,0.129134997725487,0.656544983386993,0.122634999454021,0.634590029716492,0.129435002803802,0.621904969215393,0.124459996819496,0.602530002593994, +0.131274998188019,0.604349970817566,0.128604993224144,0.599645018577576,0.19548000395298,0.597885012626648,0.192815005779266,0.616855025291443,0.199599996209145,0.631999969482422,0.196309998631477,0.653535008430481,0.201014995574951,0.668995022773743,0.194629997014999,0.692440032958984,0.198994994163513,0.703525006771088,0.19234000146389,0.719569981098175,0.198219999670982,0.726125001907349,0.194309994578362,0.740064978599548,0.198954999446869,0.745679974555969,0.196685001254082,0.758764982223511,0.199739992618561,0.767504990100861,0.195415005087852,0.785269975662231,0.199874997138977,0.781955003738403,0.200794994831085,0.789860010147095,0.312139987945557,0.793524980545044,0.310624986886978,0.791710019111633,0.299124985933304,0.78751003742218,0.305130004882813,0.809170007705688,0.327580004930496,0.810339987277985,0.330309987068176,0.814254999160767,0.330725014209747,0.823879957199097,0.339800000190735,0.824254989624023,0.341269999742508,0.82616001367569,0.341159999370575,0.83192503452301,0.345459997653961,0.832234978675842,0.346509993076324,0.833714962005615,0.346565008163452,0.838739991188049,0.349429994821548,0.838874995708466,0.350104987621307,0.840384960174561,0.350104987621307,0.845695018768311,0.351619988679886,0.845894992351532,0.352059990167618,0.847575008869171,0.351929992437363,0.855939984321594,0.352649986743927,0.853675007820129,0.35300999879837,0.854375004768372,0.353484988212585,0.856164991855621,0.353500008583069,0.787765026092529,0.293749988079071,0.776645004749298,0.303290009498596,0.79890501499176,0.304789990186691,0.804040014743805,0.316184997558594,0.816174983978271,0.332864999771118,0.818099975585938,0.33500999212265,0.820989966392517,0.337404996156693,0.827735006809235,0.342260003089905,0.829304993152618,0.343365013599396,0.830615043640137,0.344415009021759,0.834975004196167,0.347400009632111,0.836234986782074,0.348239988088608,0.837484955787659,0.348834991455078,0.841619968414307,0.350620001554489,0.842854976654053,0.351134985685349,0.844274997711182,0.351375013589859,0.849174976348877,0.352180004119873, +0.850780010223389,0.352425009012222,0.85223001241684,0.352719992399216,0.854179978370667,0.352165013551712,0.855989992618561,0.351864993572235,0.857140004634857,0.35249999165535,0.859259963035583,0.349750012159348,0.857915043830872,0.349830001592636,0.859245002269745,0.348760008811951,0.857569992542267,0.348895013332367,0.859225034713745,0.347609996795654,0.857235014438629,0.347795009613037,0.859205007553101,0.346464991569519,0.856894969940186,0.346695005893707,0.859194993972778,0.345580011606216,0.856604993343353,0.345800012350082,0.859179973602295,0.344695001840591,0.856315016746521,0.344904989004135,0.859160006046295,0.343475013971329,0.8559849858284,0.343685001134872,0.859135031700134,0.342260003089905,0.855655014514923,0.34246501326561,0.859104990959167,0.340330004692078,0.855304956436157,0.340575009584427,0.859075009822845,0.33840000629425,0.854954957962036,0.338685005903244,0.859035015106201,0.335960000753403,0.85445499420166,0.336400002241135,0.858990013599396,0.333514988422394,0.853955030441284,0.334109991788864,0.858950018882751,0.3298299908638,0.85335499048233,0.330709993839264,0.858904957771301,0.326144993305206,0.85275000333786,0.327304989099503,0.850975036621094,0.31768000125885,0.850265026092529,0.310155004262924,0.858739972114563,0.31547999382019,0.858585000038147,0.304390013217926,0.805564999580383,0.138659998774529,0.799769997596741,0.138769999146461,0.800305008888245,0.126629993319511,0.805869996547699,0.125970005989075,0.811434984207153,0.125310003757477,0.811360001564026,0.138549998402596,0.852519989013672,0.139394998550415,0.849179983139038,0.13944000005722,0.847350001335144,0.129374995827675,0.851240038871765,0.128260001540184,0.855129957199097,0.127140000462532,0.855854988098145,0.13934999704361,0.89770495891571,0.138954997062683,0.893095016479492,0.139135003089905,0.89191997051239,0.128254994750023,0.896399974822998,0.127845004200935,0.900884985923767,0.127440005540848,0.902310013771057,0.138775005936623,0.953189969062805,0.134525001049042,0.953274965286255,0.133650004863739,0.958449959754944, +0.12593500316143,0.959264993667603,0.129659995436668,0.82659500837326,0.158920004963875,0.826300024986267,0.156470000743866,0.830119967460632,0.156079992651939,0.830274999141693,0.158340007066727,0.825999975204468,0.154019996523857,0.829964995384216,0.153819993138313,0.833930015563965,0.15361499786377,0.833940029144287,0.155684992671013,0.833950042724609,0.157759994268417,0.573014974594116,0.210539996623993,0.573024988174438,0.212375000119209,0.568645000457764,0.21475000679493,0.569864988327026,0.212825000286102,0.571079969406128,0.210895001888275,0.573004961013794,0.208700001239777,0.578114986419678,0.191884994506836,0.578114986419678,0.194710001349449,0.573040008544922,0.194154992699623,0.573040008544922,0.191899999976158,0.578114986419678,0.197540000081062,0.573035001754761,0.196410000324249,0.868900001049042,0.155890002846718,0.868849992752075,0.154644995927811,0.871814966201782,0.154874995350838,0.871644973754883,0.15658999979496,0.868795037269592,0.153400003910065,0.871984958648682,0.153154999017715,0.875174999237061,0.152905002236366,0.874779999256134,0.155100002884865,0.874384999275208,0.157295003533363,0.573670029640198,0.238429993391037,0.573040008544922,0.240555003285408,0.56742000579834,0.241870000958443,0.569840013980865,0.23913000524044,0.572265028953552,0.236385002732277,0.574299991130829,0.236310005187988,0.578114986419678,0.224965006113052,0.578114986419678,0.226270005106926,0.573090016841888,0.224944993853569,0.573104977607727,0.223379999399185,0.578114986419678,0.2275750041008,0.573080003261566,0.226504996418953,0.927184998989105,0.154964998364449,0.926769971847534,0.152899995446205,0.931504964828491,0.153040006756783,0.931599974632263,0.155155003070831,0.926360011100769,0.150839999318123,0.931410014629364,0.150920003652573,0.936460018157959,0.151004999876022,0.936239957809448,0.153174996376038,0.936020016670227,0.155340000987053,0.572990000247955,0.284444987773895,0.573009967803955,0.2899050116539,0.568840026855469,0.296025007963181,0.570360004901886,0.289155006408691,0.571879982948303,0.282285004854202, +0.572965025901794,0.278979986906052,0.578114986419678,0.256330013275146,0.578114986419678,0.258980005979538,0.573050022125244,0.25747999548912,0.573055028915405,0.254819989204407,0.578114986419678,0.261635005474091,0.573040008544922,0.260145008563995,0.973100006580353,0.141800001263618,0.9773850440979,0.141910001635551,0.976585030555725,0.150435000658035,0.972674965858459,0.15047000348568,0.968765020370483,0.150505006313324,0.968814969062805,0.141690000891685,0.565510034561157,0.331880003213882,0.567295014858246,0.329685002565384,0.568554997444153,0.329594999551773,0.567165017127991,0.331919997930527,0.565770030021667,0.334250003099442,0.563719987869263,0.334075003862381,0.573069989681244,0.317685008049011,0.573109984397888,0.312204986810684,0.578114986419678,0.312195003032684,0.578114986419678,0.317649990320206,0.573150038719177,0.306719988584518,0.578114986419678,0.306739985942841,0.799995005130768,0.158109992742538,0.799754977226257,0.155674993991852,0.805570006370544,0.155530005693436,0.805665016174316,0.157824993133545,0.799520015716553,0.153239995241165,0.805469989776611,0.153229996562004,0.81141996383667,0.153219997882843,0.81138002872467,0.155379995703697,0.811339974403381,0.157545000314713,0.815654993057251,0.157859995961189,0.816354990005493,0.155725002288818,0.818405032157898,0.156560003757477,0.817780017852783,0.159209996461868,0.817049980163574,0.153595000505447,0.819029986858368,0.153915002942085,0.821004986763,0.154235005378723,0.820455014705658,0.157395005226135,0.819905042648315,0.160559996962547,0.820450007915497,0.138319998979568,0.818859994411469,0.138479992747307,0.817375004291534,0.126735001802444,0.819705009460449,0.130199998617172,0.822035014629364,0.1336649954319,0.822035014629364,0.13816000521183,0.85147500038147,0.156104996800423,0.850984990596771,0.154585003852844,0.853635013103485,0.154524996876717,0.853919982910156,0.155974999070168,0.850489974021912,0.153064996004105,0.85335499048233,0.153080001473427,0.856220006942749,0.153090000152588,0.856289982795715,0.15446500480175,0.856359958648682, +0.155845001339912,0.85929000377655,0.156279996037483,0.859905004501343,0.154734998941422,0.862244963645935,0.155214995145798,0.861950039863586,0.157199993729591,0.860514998435974,0.15319000184536,0.862545013427734,0.153229996562004,0.864570021629333,0.15327000617981,0.864589989185333,0.155695006251335,0.864614963531494,0.1581149995327,0.862879991531372,0.138284996151924,0.861355006694794,0.138579994440079,0.861755013465881,0.130390003323555,0.863014996051788,0.131589993834496,0.864279985427856,0.132785007357597,0.864400029182434,0.13798999786377,0.894840002059937,0.156700000166893,0.8941850066185,0.15480500459671,0.898064970970154,0.15421000123024,0.898424983024597,0.156305000185966,0.893530011177063,0.152915000915527,0.897709965705872,0.152115002274513,0.90189003944397,0.151309996843338,0.901950001716614,0.15361000597477,0.902004957199097,0.15591000020504,0.91346001625061,0.155575007200241,0.913954973220825,0.153504997491837,0.916540026664734,0.1543850004673,0.916305005550385,0.156515002250671,0.914454996585846,0.151435002684593,0.9167799949646,0.152260005474091,0.919104993343353,0.153080001473427,0.919124960899353,0.155265003442764,0.919149994850159,0.157454997301102,0.916914999485016,0.137755006551743,0.915030002593994,0.138730004429817,0.915050029754639,0.129209995269775,0.917194962501526,0.130924999713898,0.919340014457703,0.13264000415802,0.918799996376038,0.136779993772507,0.953155040740967,0.151679992675781,0.953155040740967,0.139045000076294,0.960714995861053,0.141894996166229,0.960875034332275,0.149755001068115,0.961310029029846,0.153205007314682,0.961089968681335,0.151480004191399,0.96494996547699,0.152034997940063,0.96508002281189,0.153940007090569,0.964820027351379,0.15013000369072,0.968804955482483,0.15259000658989,0.968845009803772,0.154675006866455,0.964765012264252,0.141794994473457,0.963994979858398,0.128494992852211,0.968724966049194,0.127330005168915,0.839940011501312,0.157360002398491,0.840285003185272,0.15548999607563,0.842139959335327,0.155884996056557,0.841920018196106,0.158224999904633,0.840624988079071, +0.15361499786377,0.842360019683838,0.153545007109642,0.844089984893799,0.153479993343353,0.843994975090027,0.156279996037483,0.843899965286255,0.159085005521774,0.842570006847382,0.138209998607635,0.840999960899353,0.138194993138313,0.841769993305206,0.12873500585556,0.84290999174118,0.130154997110367,0.844045042991638,0.131575003266335,0.844134986400604,0.138219997286797,0.830269992351532,0.138180002570152,0.826514959335327,0.138304993510246,0.827430009841919,0.127859994769096,0.831759989261627,0.126110002398491,0.836094975471497,0.124365001916885,0.834030032157898,0.138060003519058,0.578114986419678,0.210785001516342,0.578114986419678,0.212585002183914,0.578114986419678,0.214385002851486,0.578114986419678,0.203315004706383,0.578114986419678,0.205225005745888,0.573024988174438,0.202859997749329,0.573035001754761,0.200904995203018,0.578114986419678,0.207135006785393,0.573019981384277,0.204815000295639,0.568920016288757,0.205280005931854,0.566910028457642,0.203270003199577,0.564895033836365,0.201254993677139,0.578150033950806,0.185585007071495,0.578114986419678,0.186985000967979,0.573040008544922,0.187014997005463,0.573050022125244,0.185615003108978,0.573055028915405,0.184210002422333,0.578184962272644,0.184184998273849,0.566084980964661,0.182905003428459,0.567730009555817,0.182909995317459,0.568305015563965,0.184269994497299,0.566929996013641,0.184255003929138,0.569630026817322,0.197414994239807,0.570100009441376,0.194704994559288,0.57056999206543,0.191990002989769,0.879894971847534,0.157849997282028,0.880874991416931,0.155640006065369,0.884549975395203,0.156230002641678,0.884140014648438,0.158484995365143,0.881855010986328,0.153435006737709,0.884965002536774,0.153974995017052,0.888074994087219,0.154514998197556,0.888224959373474,0.156815007328987,0.888379991054535,0.159115001559258,0.885060012340546,0.137724995613098,0.882809996604919,0.139235004782677,0.882950007915497,0.130325004458427,0.885055005550385,0.132434993982315,0.887165009975433,0.134540006518364,0.887310028076172,0.136219993233681,0.872030019760132,0.140349999070168, +0.868185043334961,0.140945002436638,0.866575002670288,0.129749998450279,0.870649993419647,0.126505002379417,0.874724984169006,0.123259998857975,0.875874996185303,0.139760002493858,0.578114986419678,0.23691999912262,0.578114986419678,0.239024996757507,0.578114986419678,0.241129994392395,0.578114986419678,0.230444997549057,0.578114986419678,0.231820002198219,0.573055028915405,0.230804994702339,0.573055028915405,0.229285001754761,0.578114986419678,0.233199998736382,0.573050022125244,0.232329994440079,0.56817501783371,0.231114998459816,0.566980004310608,0.230385005474091,0.565784990787506,0.229660004377365,0.578114986419678,0.217924997210503,0.578114986419678,0.219734996557236,0.573060035705566,0.217869997024536,0.573050022125244,0.216014996170998,0.578114986419678,0.22155000269413,0.573069989681244,0.219724997878075,0.568515002727509,0.218655005097389,0.567564964294434,0.217429995536804,0.566619992256165,0.216199994087219,0.567539989948273,0.228000000119209,0.568614959716797,0.225779995322227,0.569689989089966,0.223554998636246,0.947764992713928,0.154445007443428,0.948019981384277,0.152500003576279,0.950614988803864,0.152989998459816,0.950515031814575,0.154864996671677,0.948269963264465,0.150549992918968,0.950709998607635,0.151115000247955,0.95320999622345,0.153479993343353,0.953269958496094,0.155285000801086,0.950760006904602,0.139445006847382,0.948369979858398,0.139844998717308,0.948140025138855,0.128604993224144,0.95066499710083,0.131565004587173,0.931214988231659,0.139479994773865,0.925490021705627,0.139644995331764,0.92330002784729,0.128315001726151,0.929549992084503,0.126094996929169,0.9357950091362,0.123874999582767,0.936940014362335,0.139320001006126,0.578114986419678,0.279790014028549,0.578114986419678,0.284844994544983,0.578114986419678,0.289900004863739,0.578114986419678,0.267850011587143,0.578114986419678,0.270815014839172,0.573009967803955,0.26952001452446,0.573024988174438,0.266400009393692,0.578114986419678,0.273779988288879,0.572995007038116,0.272639989852905,0.568899989128113,0.272464990615845,0.567070007324219, +0.270870000123978,0.565245032310486,0.269275009632111,0.578114986419678,0.245594993233681,0.578114986419678,0.248199999332428,0.573045015335083,0.24745500087738,0.573040008544922,0.24507500231266,0.578114986419678,0.250804990530014,0.573050022125244,0.249840006232262,0.568769991397858,0.248585000634193,0.566249966621399,0.246830001473427,0.563735008239746,0.245069995522499,0.568310022354126,0.265385001897812,0.568830013275146,0.260140001773834,0.569350004196167,0.254895001649857,0.980175018310547,0.13934999704361,0.982969999313354,0.136794999241829,0.983029961585999,0.153145000338554,0.979804992675781,0.151789993047714,0.978870034217834,0.129720002412796,0.980625033378601,0.131095007061958,0.982380032539368,0.132475003600121,0.974020004272461,0.124459996819496,0.979319989681244,0.12593500316143,0.973800003528595,0.128525003790855,0.968715012073517,0.122984997928143,0.573040008544922,0.334075003862381,0.573040008544922,0.331880003213882,0.578114986419678,0.331559985876083,0.578114986419678,0.333689987659454,0.573040008544922,0.329685002565384,0.578114986419678,0.329425007104874,0.578114986419678,0.323534995317459,0.573055028915405,0.323684990406036,0.569324970245361,0.323650002479553,0.570095002651215,0.317710012197495,0.578114986419678,0.300429999828339,0.573050022125244,0.301140010356903,0.568549990653992,0.306845009326935,0.563679993152618,0.300830006599426,0.56828498840332,0.312330007553101,0.567295014858246,0.306919991970062,0.5693199634552,0.312274992465973,0.56927502155304,0.317739993333817,0.794479966163635,0.15591000020504,0.794574975967407,0.158950001001358,0.794384956359863,0.152869999408722,0.796050012111664,0.15310500562191,0.796244978904724,0.155799999833107,0.796440005302429,0.158490002155304,0.573040008544922,0.18945999443531,0.578114986419678,0.189435005187988,0.56923496723175,0.189429998397827,0.568614959716797,0.186955004930496,0.569615006446838,0.187065005302429,0.570095002651215,0.189524993300438,0.569849967956543,0.191899999976158,0.79441499710083,0.137950003147125,0.794459998607635,0.130030006170273, +0.796180009841919,0.129254996776581,0.796095013618469,0.13832500576973,0.573035001754761,0.198654994368553,0.578114986419678,0.200424998998642,0.815109968185425,0.138514995574951,0.814234972000122,0.153404995799065,0.565614998340607,0.199420005083084,0.568655014038086,0.197559997439384,0.567260026931763,0.199334993958473,0.562574982643127,0.201275005936623,0.812224984169006,0.122974999248981,0.816505014896393,0.123839996755123,0.814404964447021,0.126025006175041,0.807950019836426,0.12211500108242,0.824275016784668,0.138229995965958,0.823505043983459,0.15412500500679,0.573009967803955,0.206760004162788,0.578114986419678,0.208959996700287,0.824759960174561,0.128910005092621,0.827504992485046,0.125269994139671,0.824730038642883,0.130759999155998,0.822010040283203,0.132550001144409,0.568984985351563,0.207939997315407,0.567739963531494,0.20524500310421,0.569999992847443,0.208090007305145,0.570235013961792,0.210639998316765,0.573040008544922,0.214194998145103,0.578114986419678,0.216154992580414,0.837514996528625,0.138129994273186,0.837280035018921,0.15361499786377,0.839010000228882,0.123664997518063,0.842270016670227,0.125784993171692,0.838935017585754,0.126550003886223,0.835749983787537,0.121550001204014,0.566089987754822,0.215784996747971,0.567394971847534,0.215224996209145,0.567629992961884,0.215474992990494,0.564785003662109,0.216344997286797,0.846660017967224,0.138830006122589,0.8472900390625,0.15327000617981,0.573085010051727,0.22155000269413,0.578114986419678,0.22325499355793,0.567970037460327,0.220760002732277,0.567219972610474,0.218170002102852,0.56910502910614,0.221104994416237,0.56871497631073,0.223350003361702,0.845290005207062,0.127865001559258,0.846629977226257,0.126049995422363,0.845695018768311,0.130474999547005,0.843945026397705,0.129679992794991,0.573069989681244,0.227895006537437,0.578114986419678,0.229010000824928,0.858605027198792,0.138964995741844,0.858370006084442,0.153139993548393,0.564839959144592,0.229204997420311,0.565959990024567,0.22851499915123,0.56666499376297,0.228829994797707,0.563719987869263, +0.229894995689392,0.858280003070831,0.125870004296303,0.862015008926392,0.127924993634224,0.858440041542053,0.128765001893044,0.854544997215271,0.12381500005722,0.866294980049133,0.139465004205704,0.866680026054382,0.153335005044937,0.573675036430359,0.234319999814034,0.578114986419678,0.235060006380081,0.865020036697388,0.128979995846748,0.865904986858368,0.126684993505478,0.865424990653992,0.131270006299019,0.864135026931763,0.131274998188019,0.568984985351563,0.233504995703697,0.566794991493225,0.230755001306534,0.570219993591309,0.233750000596046,0.571179986000061,0.236255005002022,0.573040008544922,0.242815002799034,0.578114986419678,0.243365004658699,0.879344999790192,0.139495000243187,0.878515005111694,0.153170004487038,0.878790020942688,0.124109998345375,0.883029997348785,0.128079995512962,0.878834962844849,0.126790001988411,0.874549984931946,0.120140001177788,0.56349503993988,0.243530005216599,0.565855026245117,0.242125004529953,0.565575003623962,0.243469998240471,0.56114000082016,0.244939997792244,0.890205025672913,0.137679994106293,0.890799999237061,0.153714999556541,0.573055028915405,0.252330005168915,0.578114986419678,0.2535699903965,0.567950010299683,0.251455008983612,0.567584991455078,0.248119994997978,0.56905996799469,0.251740008592606,0.568310022354126,0.254790008068085,0.889315009117126,0.129824995994568,0.891515016555786,0.125499993562698,0.88954496383667,0.131400004029274,0.887115001678467,0.134155005216599,0.573035001754761,0.263274997472763,0.578114986419678,0.264739990234375,0.908670008182526,0.138754993677139,0.908174991607666,0.151374995708466,0.564999997615814,0.26834499835968,0.566954970359802,0.26673498749733,0.566779971122742,0.2673299908638,0.563045024871826,0.26995000243187,0.90762996673584,0.125434994697571,0.914939999580383,0.12644499540329,0.907970011234283,0.128325000405312,0.900319993495941,0.124420002102852,0.922145009040833,0.138209998607635,0.922729969024658,0.151960000395775,0.572979986667633,0.27581000328064,0.578114986419678,0.276784986257553,0.920949995517731,0.128425002098083, +0.922529995441437,0.125165000557899,0.921319961547852,0.130480006337166,0.919369995594025,0.131689995527267,0.569499969482422,0.277705013751984,0.567809998989105,0.272285014390945,0.570389986038208,0.277375012636185,0.571195006370544,0.283125013113022,0.5730299949646,0.295520007610321,0.578114986419678,0.295165002346039,0.942654967308044,0.139579996466637,0.942364990711212,0.150775000452995,0.941869974136353,0.122634999454021,0.948395013809204,0.125165000557899,0.941969990730286,0.126240000128746,0.935344994068146,0.120104998350143,0.564759969711304,0.298220008611679,0.567809998989105,0.295650005340576,0.566259980201721,0.298429995775223,0.561710000038147,0.300785005092621,0.797935009002686,0.138549998402596,0.797785043716431,0.153174996376038,0.976240038871765,0.153815001249313,0.976410031318665,0.152125000953674,0.979490041732788,0.154174998402596,0.979169964790344,0.156554996967316,0.982564985752106,0.156220003962517,0.982100009918213,0.159299999475479,0.82337498664856,0.15692999958992,0.823249995708466,0.159740000963211,0.837110042572021,0.155589997768402,0.836944997310638,0.157560005784035,0.813865005970001,0.155554994940758,0.81349503993988,0.157700002193451,0.847490012645721,0.155434995889664,0.847689986228943,0.157594993710518,0.858094990253448,0.154599994421005,0.857825040817261,0.156059995293617,0.866719961166382,0.155169993638992,0.866760015487671,0.157004997134209,0.877830028533936,0.155369997024536,0.877139985561371,0.157570004463196,0.891205012798309,0.155809998512268,0.891610026359558,0.157904997467995,0.9079549908638,0.153559997677803,0.907729983329773,0.155744999647141,0.922950029373169,0.154084995388985,0.923164963722229,0.156210005283356,0.942129969596863,0.152834996581078,0.941890001296997,0.15489499270916,0.972609996795654,0.152355000376701,0.972545027732849,0.154245004057884,0.802489995956421,0.18529500067234,0.807285010814667,0.18529500067234,0.806755006313324,0.19836999475956,0.803550004959106,0.197569996118546,0.800345003604889,0.196765005588531,0.797690033912659,0.18529999256134,0.847559988498688, +0.187034994363785,0.851099967956543,0.186934992671013,0.849599957466125,0.197614997625351,0.84612500667572,0.196730002760887,0.84264999628067,0.195844992995262,0.844020009040833,0.187140002846718,0.894520044326782,0.184744998812675,0.898669958114624,0.184825003147125,0.896544992923737,0.196180000901222,0.893499970436096,0.195775002241135,0.890455007553101,0.195370003581047,0.890370011329651,0.184660002589226,0.956595003604889,0.191200003027916,0.962674975395203,0.194079995155334,0.963469982147217,0.197650000452995,0.957000017166138,0.192320004105568,0.822620034217834,0.162845000624657,0.827039957046509,0.162915006279945,0.827160000801086,0.166209995746613,0.822735011577606,0.166199997067451,0.831454992294312,0.162984997034073,0.831584990024567,0.166215002536774,0.831709980964661,0.169444993138313,0.827275037765503,0.16949999332428,0.822844982147217,0.169554993510246,0.873450040817261,0.352064996957779,0.873730003833771,0.352660000324249,0.874974966049194,0.35291001200676,0.874350011348724,0.351940006017685,0.876075029373169,0.354429990053177,0.874279975891113,0.353484988212585,0.876219987869263,0.353159993886948,0.875249981880188,0.35181000828743,0.860029995441437,0.351545006036758,0.860289990901947,0.350749999284744,0.859775006771088,0.352340012788773,0.860249996185303,0.35232999920845,0.860774993896484,0.351545006036758,0.861304998397827,0.350760012865067,0.868014991283417,0.165999993681908,0.871289968490601,0.166464999318123,0.871214985847473,0.168984994292259,0.867834985256195,0.168665006756783,0.874565005302429,0.166934996843338,0.874594986438751,0.169310003519058,0.874629974365234,0.171680003404617,0.871140003204346,0.171505004167557,0.867650032043457,0.171330004930496,0.886669993400574,0.346450001001358,0.88730001449585,0.347404986619949,0.888384997844696,0.347350001335144,0.887580037117004,0.345880001783371,0.889660000801086,0.349815011024475,0.888384997844696,0.348890006542206,0.889464974403381,0.347294986248016,0.888485014438629,0.345310002565384,0.87754499912262,0.34867000579834,0.87923002243042,0.347779989242554, +0.872380018234253,0.345779985189438,0.871240019798279,0.346839994192123,0.880919992923737,0.34689000248909,0.873520016670227,0.344714999198914,0.866124987602234,0.342539995908737,0.865530014038086,0.343780010938644,0.864935040473938,0.345014989376068,0.92619001865387,0.166834995150566,0.929854989051819,0.1667799949646,0.929360032081604,0.169064998626709,0.9254350066185,0.169009998440742,0.933524966239929,0.166724994778633,0.933284997940063,0.169119998812675,0.933040022850037,0.171515002846718,0.928860008716583,0.171350002288818,0.92467999458313,0.171185001730919,0.908470034599304,0.330105006694794,0.909029960632324,0.330540001392365,0.912189960479736,0.329230010509491,0.911509990692139,0.328455001115799,0.913609981536865,0.331030011177063,0.910130023956299,0.331335008144379,0.91535496711731,0.327915012836456,0.914550006389618,0.326804995536804,0.891515016555786,0.338109999895096,0.894775032997131,0.334950000047684,0.883810043334961,0.329355001449585,0.881389975547791,0.333119988441467,0.898030042648315,0.331790000200272,0.886224985122681,0.325585007667542,0.874419987201691,0.319379985332489,0.872839987277985,0.323754996061325,0.87126499414444,0.328130006790161,0.980669975280762,0.181700006127357,0.975304961204529,0.181690007448196,0.97393000125885,0.172049999237061,0.978749990463257,0.172195002436638,0.969940006732941,0.181675001978874,0.969105005264282,0.171904996037483,0.940760016441345,0.321635007858276,0.942364990711212,0.324355006217957,0.941959977149963,0.319335013628006,0.940010011196136,0.317784994840622,0.938055038452148,0.31623500585556,0.939154982566833,0.318915009498596,0.798155009746552,0.163330003619194,0.802890002727509,0.163039997220039,0.802664995193481,0.166205003857613,0.79769504070282,0.166364997625351,0.807624995708466,0.162754997611046,0.807639956474304,0.166044995188713,0.807654976844788,0.16933000087738,0.802444994449615,0.169365003705025,0.797240018844604,0.169400006532669,0.815855026245117,0.161764994263649,0.817950010299683,0.161819994449615,0.818485021591187,0.16499499976635,0.816779971122742, +0.164849996566772,0.820044994354248,0.161880001425743,0.820190012454987,0.165144994854927,0.820340037345886,0.168410003185272,0.819025039672852,0.168170005083084,0.817710041999817,0.167934998869896,0.819784998893738,0.185945004224777,0.8213250041008,0.185399994254112,0.82158499956131,0.18979500234127,0.818140029907227,0.193535000085831,0.814695000648499,0.197280004620552,0.818244993686676,0.186489999294281,0.846840023994446,0.16219000518322,0.849934995174408,0.162605002522469,0.849059998989105,0.165879994630814,0.845730006694794,0.165464997291565,0.853034973144531,0.163014993071556,0.852389991283417,0.166290000081062,0.851745009422302,0.169569998979568,0.848185002803802,0.16915500164032,0.844624996185303,0.16873499751091,0.859194993972778,0.163475006818771,0.861204981803894,0.163104996085167,0.860684990882874,0.166290000081062,0.858654975891113,0.166875004768372,0.863209962844849,0.162735000252724,0.862720012664795,0.165700003504753,0.862224996089935,0.168669998645782,0.860170006752014,0.169475004076958,0.858114957809448,0.170279994606972,0.859454989433289,0.186405003070831,0.860859990119934,0.185615003108978,0.860944986343384,0.191015005111694,0.85929000377655,0.192629992961884,0.857635021209717,0.194240003824234,0.858044981956482,0.187199994921684,0.893880009651184,0.165969997644424,0.897325038909912,0.166855007410049,0.896479964256287,0.169084995985031,0.892889976501465,0.168255001306534,0.900770008563995,0.167744994163513,0.900070011615753,0.169909998774529,0.89936500787735,0.172079995274544,0.89563000202179,0.171309992671013,0.891894996166229,0.170544996857643,0.910849988460541,0.167135000228882,0.915395021438599,0.166085004806519,0.915199995040894,0.168485000729561,0.910884976387024,0.169449999928474,0.919945001602173,0.165034994482994,0.919515013694763,0.167524993419647,0.919090032577515,0.1700100004673,0.914999961853027,0.170890003442764,0.910915017127991,0.171764999628067,0.915345013141632,0.185764998197556,0.918415009975433,0.18673500418663,0.92041003704071,0.190449997782707,0.916289985179901,0.192550003528595, +0.912169992923737,0.194655001163483,0.912274956703186,0.184795007109642,0.960150003433228,0.181264996528625,0.955410003662109,0.186810001730919,0.953449964523315,0.170184999704361,0.959280014038086,0.171849995851517,0.959715008735657,0.167160004377365,0.96450001001358,0.167074993252754,0.96434497833252,0.169475004076958,0.959495007991791,0.169505000114441,0.969280004501343,0.166989997029305,0.969195008277893,0.169444993138313,0.964195013046265,0.171875,0.965044975280762,0.18147000670433,0.972949981689453,0.196439996361732,0.967815041542053,0.195260003209114,0.838564991950989,0.162375003099442,0.840345025062561,0.162740007042885,0.8403599858284,0.165659993886948,0.838775038719177,0.165450006723404,0.842124998569489,0.163104996085167,0.841939985752106,0.165869995951653,0.841755032539368,0.168640002608299,0.840369999408722,0.168579995632172,0.838984966278076,0.168524995446205,0.839969992637634,0.186599999666214,0.841544985771179,0.185709998011589,0.841430008411407,0.193000003695488,0.839599967002869,0.194564998149872,0.837774991989136,0.196125000715256,0.83840000629425,0.187490001320839,0.827674984931946,0.186725005507469,0.831310033798218,0.186894997954369,0.829405009746552,0.198324993252754,0.826979994773865,0.197280004620552,0.824559986591339,0.196235001087189,0.824034988880157,0.18656000494957,0.870480000972748,0.350975006818771,0.872434973716736,0.3505499958992,0.867830038070679,0.349229991436005,0.866535007953644,0.349970012903214,0.874384999275208,0.350125014781952,0.869120001792908,0.348484992980957,0.863849997520447,0.346845000982285,0.863219976425171,0.34790500998497,0.862589955329895,0.348964989185333,0.866155028343201,0.35157498717308,0.868319988250732,0.351274996995926,0.865135014057159,0.350569993257523,0.863730013370514,0.351164996623993,0.861950039863586,0.349864989519119,0.869480013847351,0.352999985218048,0.870409965515137,0.356750011444092,0.871150016784668,0.355365008115768,0.870504975318909,0.35275000333786,0.872215032577515,0.360199987888336,0.871824979782104,0.364050000905991,0.871894955635071, +0.353985011577606,0.87152498960495,0.35249999165535,0.859920024871826,0.353565007448196,0.860520005226135,0.353500008583069,0.86006498336792,0.354795008897781,0.860790014266968,0.354674994945526,0.86011004447937,0.356754988431931,0.859380006790161,0.361544996500015,0.860190033912659,0.360385000705719,0.860870003700256,0.356299996376038,0.864894986152649,0.353484988212585,0.865040004253387,0.353884994983673,0.866355001926422,0.353985011577606,0.866055011749268,0.353365004062653,0.866885006427765,0.355109989643097,0.865314960479736,0.354499995708466,0.867669999599457,0.354090005159378,0.867215037345886,0.353244990110397,0.880055010318756,0.166484996676445,0.88374000787735,0.165875002741814,0.8838250041008,0.168235003948212,0.880385041236877,0.169394999742508,0.887425005435944,0.165264993906021,0.887259960174561,0.167074993252754,0.887099981307983,0.168880000710487,0.883904993534088,0.170589998364449,0.880710005760193,0.17229999601841,0.883309960365295,0.186000004410744,0.885839998722076,0.186629995703697,0.885490000247955,0.188299998641014,0.882160007953644,0.190954998135567,0.878829956054688,0.193609997630119,0.880779981613159,0.185369998216629,0.869295001029968,0.185230001807213,0.873404979705811,0.185444995760918,0.871024966239929,0.196355000138283,0.866970002651215,0.195580005645752,0.8629150390625,0.19480499625206,0.865185022354126,0.185010001063347,0.884299993515015,0.344489991664886,0.885879993438721,0.342960000038147,0.877065002918243,0.339794993400574,0.875824987888336,0.341639995574951,0.887465000152588,0.341430008411407,0.878304958343506,0.337949991226196,0.869145035743713,0.334470003843307,0.868250012397766,0.336629986763,0.867354989051819,0.338789999485016,0.882609963417053,0.345690011978149,0.874675035476685,0.343174993991852,0.866739988327026,0.340665012598038,0.883430004119873,0.348699986934662,0.88468998670578,0.351759999990463,0.885049998760223,0.350609987974167,0.884204983711243,0.348159998655319,0.88646000623703,0.355349987745285,0.886875033378601,0.358119994401932,0.885405004024506,0.349454998970032, +0.884984970092773,0.347624987363815,0.875964999198914,0.349395006895065,0.870180010795593,0.347665011882782,0.864395022392273,0.345930010080338,0.876960039138794,0.351570010185242,0.877990007400513,0.353760004043579,0.878470003604889,0.353089988231659,0.877810001373291,0.351215004920959,0.87966001033783,0.356745004653931,0.879949986934662,0.358390003442764,0.878944993019104,0.352420002222061,0.878659963607788,0.350865006446838,0.880339980125427,0.349979996681213,0.880864977836609,0.350735008716583,0.8819699883461,0.351004987955093,0.881114959716797,0.349709987640381,0.883469998836517,0.353300005197525,0.881850004196167,0.351794987916946,0.883074998855591,0.351269990205765,0.881895005702972,0.349440008401871,0.94410502910614,0.166409999132156,0.948915004730225,0.166170001029968,0.94897997379303,0.168524995446205,0.944375038146973,0.16899000108242,0.953724980354309,0.16593000292778,0.953590035438538,0.168060004711151,0.949050009250641,0.170874997973442,0.94464498758316,0.171570003032684,0.951020002365112,0.185479998588562,0.952834963798523,0.193694993853569,0.949079990386963,0.196189999580383,0.946630001068115,0.184149995446205,0.929494976997375,0.184055000543594,0.934749960899353,0.184184998273849,0.936429977416992,0.198084995150566,0.931470036506653,0.197119995951653,0.926509976387024,0.196150004863739,0.924239993095398,0.183925002813339,0.902845025062561,0.325475007295609,0.910189986228943,0.30316498875618,0.888885021209717,0.302729994058609,0.88978499174118,0.318390011787415,0.867574989795685,0.302294999361038,0.876720011234283,0.311300009489059,0.900439977645874,0.328635007143021,0.888005018234253,0.321985006332397,0.875569999217987,0.315340012311935,0.901875019073486,0.335990011692047,0.903205037117004,0.339884996414185,0.904124975204468,0.337179988622665,0.903174996376038,0.33474999666214,0.905485033988953,0.342009991407394,0.904744982719421,0.347339987754822,0.905045032501221,0.334470003843307,0.90447998046875,0.333510011434555,0.889490008354187,0.33976998925209,0.879850029945374,0.335534989833832,0.870204985141754, +0.331299990415573,0.890429973602295,0.344015002250671,0.892274975776672,0.348805010318756,0.892865002155304,0.346439987421036,0.89148998260498,0.343349993228912,0.894999980926514,0.352219998836517,0.894999980926514,0.358000010251999,0.893455028533936,0.344074994325638,0.892544984817505,0.342685014009476,0.894659996032715,0.341239988803864,0.895339965820313,0.342265009880066,0.897220015525818,0.341585010290146,0.895850002765656,0.340514987707138,0.8994500041008,0.343544989824295,0.89649498462677,0.343914985656738,0.89910501241684,0.340909987688065,0.897040009498596,0.339789986610413,0.987455010414124,0.186924993991852,0.984064996242523,0.184310004115105,0.98275500535965,0.171389997005463,0.986760020256042,0.170585006475449,0.987900018692017,0.191214993596077,0.985630035400391,0.192699998617172,0.98335999250412,0.194189995527267,0.978974997997284,0.199104994535446,0.9738450050354,0.200589999556541,0.978155016899109,0.195315003395081,0.984104990959167,0.197620004415512,0.928784966468811,0.313594996929169,0.92951500415802,0.315845012664795,0.932900011539459,0.314004987478256,0.931650042533875,0.310849994421005,0.935180008411407,0.319559991359711,0.931205034255981,0.320205003023148,0.936285018920898,0.312169998884201,0.934514999389648,0.308104991912842,0.918995022773743,0.323415011167526,0.920539975166321,0.328579992055893,0.923295021057129,0.322569996118546,0.922544956207275,0.319950014352798,0.92510998249054,0.328420013189316,0.922760009765625,0.337700009346008,0.92815500497818,0.324310004711151,0.926405012607574,0.31920999288559,0.794034957885742,0.16541500389576,0.793910026550293,0.168610006570816,0.794165015220642,0.162220001220703,0.795614957809448,0.162750005722046,0.795359969139099,0.165824994444847,0.795109987258911,0.16889500617981,0.863955020904541,0.355659991502762,0.863700032234192,0.354559987783432,0.862365007400513,0.355239987373352,0.862589955329895,0.356824994087219,0.794620037078857,0.196095004677773,0.794795036315918,0.193774998188019,0.796840012073517,0.194775000214577,0.796490013599396,0.19734500348568, +0.812765002250671,0.185890004038811,0.812680006027222,0.168634995818138,0.870139956474304,0.359890013933182,0.869040012359619,0.355419993400574,0.868449985980988,0.355724990367889,0.810615003108978,0.200780004262924,0.806874990463257,0.20168000459671,0.810724973678589,0.197824999690056,0.814360022544861,0.199880003929138,0.822679996490479,0.185980007052422,0.821590006351471,0.168980002403259,0.823014974594116,0.194649994373322,0.821640014648438,0.190799996256828,0.823069989681244,0.193014994263649,0.82438999414444,0.198500007390976,0.8734450340271,0.354914993047714,0.872810006141663,0.353325009346008,0.872609972953796,0.356350004673004,0.834854960441589,0.187195003032684,0.835350036621094,0.168984994292259,0.833519995212555,0.19938500225544,0.829115033149719,0.200790002942085,0.833590030670166,0.197225004434586,0.837924957275391,0.197980001568794,0.878910005092621,0.356880009174347,0.877104997634888,0.353460013866425,0.877864956855774,0.355374991893768,0.842785000801086,0.186425000429153,0.843190014362335,0.168685004115105,0.88060998916626,0.353450000286102,0.879904985427856,0.351579993963242,0.879369974136353,0.355100005865097,0.841704964637756,0.196410000324249,0.841794967651367,0.195124998688698,0.842040002346039,0.194419994950294,0.841619968414307,0.19768999516964,0.854575037956238,0.187065005302429,0.85493004322052,0.169925004243851,0.885985016822815,0.356460005044937,0.883880019187927,0.351514995098114,0.885089993476868,0.354804992675781,0.853559970855713,0.1978649944067,0.849415004253387,0.199925005435944,0.853614985942841,0.195930004119873,0.857699990272522,0.195804998278618,0.863025009632111,0.185310006141663,0.864939987659454,0.170000001788139,0.861335039138794,0.194749996066093,0.861050009727478,0.192450001835823,0.861930012702942,0.192910000681877,0.861624956130981,0.197050005197525,0.8872150182724,0.350730001926422,0.886350035667419,0.348430007696152,0.886044979095459,0.3525750041008,0.877089977264404,0.185405001044273,0.877669990062714,0.171990007162094,0.874369978904724,0.197304993867874,0.87024998664856, +0.198994994163513,0.874925017356873,0.19497999548912,0.878489971160889,0.195614993572235,0.892969965934753,0.35436999797821,0.890869975090027,0.348049998283386,0.890935003757477,0.350744992494583,0.888105034828186,0.185644999146461,0.889495015144348,0.169715002179146,0.895745038986206,0.345180004835129,0.894394993782043,0.343169987201691,0.894994974136353,0.346439987421036,0.887755036354065,0.193375006318092,0.885439991950989,0.188574999570847,0.887969970703125,0.191835001111031,0.890065014362335,0.198180004954338,0.90547502040863,0.184809997677803,0.905140042304993,0.171920001506805,0.903575003147125,0.345259994268417,0.9011549949646,0.340400010347366,0.902405023574829,0.343174993991852,0.904089987277985,0.198235005140305,0.896070003509521,0.199259996414185,0.904354989528656,0.195415005087852,0.912114977836609,0.197209998965263,0.921324968338013,0.185330003499985,0.921885013580322,0.17059999704361,0.923864960670471,0.195409998297691,0.920889973640442,0.191365003585815,0.923460006713867,0.193299993872643,0.926840007305145,0.199454993009567,0.908179998397827,0.334010004997253,0.907034993171692,0.332504987716675,0.906224966049194,0.336685001850128,0.940690040588379,0.184169992804527,0.938845038414001,0.171540006995201,0.943565011024475,0.200619995594025,0.937124967575073,0.201820001006126,0.942754983901978,0.197135001420975,0.949999988079071,0.199420005083084,0.919924974441528,0.334210008382797,0.917945027351379,0.328249990940094,0.917089998722076,0.330725014209747,0.796175003051758,0.169149994850159,0.796519994735718,0.185285001993179,0.79534500837326,0.185269996523857,0.977499961853027,0.167190000414848,0.980744957923889,0.165769994258881,0.981750011444092,0.168579995632172,0.978124976158142,0.169689998030663,0.983990013599396,0.164350003004074,0.985374987125397,0.167465001344681,0.821334958076477,0.16236500442028,0.821460008621216,0.165669992566109,0.83500999212265,0.162680000066757,0.835180044174194,0.165830001235008,0.811740040779114,0.162259995937347,0.812209963798523,0.165444999933243,0.844480037689209,0.162650004029274, +0.84383499622345,0.165669992566109,0.856114983558655,0.163245007395744,0.855520009994507,0.166584998369217,0.865615010261536,0.164364993572235,0.865275025367737,0.167184993624687,0.877310037612915,0.166710004210472,0.877490043640137,0.169349998235703,0.890655040740967,0.165615007281303,0.890074968338013,0.167665004730225,0.905809998512268,0.167439997196198,0.90547502040863,0.169679999351501,0.923065006732941,0.16593499481678,0.922474980354309,0.168270006775856,0.938814997673035,0.166565001010895,0.938830018043518,0.169054999947548,0.973389983177185,0.167089998722076,0.973659992218018,0.169569998979568,0.794324994087219,0.161235004663467,0.794484972953796,0.16024999320507,0.796254992485046,0.159865006804466,0.795935034751892,0.161304995417595,0.798534989356995,0.161414995789528,0.803079962730408,0.161025002598763,0.798915028572083,0.159500002861023,0.803269982337952,0.159005001187325,0.807624995708466,0.158515006303787,0.807624995708466,0.160634994506836,0.811720013618469,0.160644993185997,0.811694979667664,0.159030005335808,0.815770030021667,0.159545004367828,0.815814971923828,0.160655006766319,0.817914962768555,0.161074995994568,0.817875027656555,0.16032999753952,0.819980025291443,0.161115005612373,0.820015013217926,0.161495000123978,0.821889996528625,0.161634996533394,0.822450041770935,0.160905003547668,0.824919998645782,0.160695001482964,0.823769986629486,0.16177000105381,0.827970027923584,0.161575004458427,0.828894972801208,0.160229995846748,0.83287501335144,0.159765005111694,0.832165002822876,0.161375001072884,0.835605025291443,0.161109998822212,0.83619499206543,0.159535005688667,0.839514970779419,0.15930500626564,0.839040040969849,0.160840004682541,0.840829968452454,0.161375001072884,0.841320037841797,0.160009995102882,0.843119978904724,0.160710006952286,0.842620015144348,0.161909997463226,0.845384955406189,0.161115005612373,0.846289992332458,0.159580007195473,0.849460005760193,0.158445000648499,0.848150014877319,0.160319998860359,0.851125001907349,0.16049499809742,0.852315008640289,0.158384993672371,0.855170011520386, +0.158325001597404,0.854099988937378,0.16066999733448,0.856814980506897,0.160809993743896,0.8575199842453,0.15837499499321,0.859869956970215,0.158429995179176,0.859534978866577,0.160950005054474,0.861544966697693,0.161359995603561,0.861885011196136,0.159620001912117,0.863894999027252,0.160809993743896,0.863555014133453,0.16177000105381,0.865525007247925,0.162314996123314,0.865440011024475,0.160260006785393,0.866979956626892,0.159710004925728,0.867500007152557,0.162854999303818,0.870999991893768,0.163664996623993,0.870710015296936,0.160864993929863,0.874440014362335,0.16202500462532,0.874500036239624,0.164480000734329,0.877604961395264,0.164399996399879,0.877905011177063,0.162090003490448,0.881370007991791,0.162159994244576,0.880710005760193,0.164324998855591,0.884199976921082,0.164014995098114,0.884660005569458,0.162155002355576,0.887950003147125,0.162155002355576,0.887690007686615,0.163709998130798,0.890475034713745,0.163644999265671,0.890300035476685,0.161675006151199,0.892645001411438,0.161200001835823,0.893265008926392,0.163585007190704,0.897119998931885,0.164210006594658,0.896914958953857,0.161559998989105,0.901180028915405,0.161925002932549,0.900974988937378,0.164835005998611,0.906475007534027,0.164535000920296,0.907135009765625,0.161630004644394,0.913089990615845,0.161335006356239,0.911970019340515,0.16423499584198,0.915845036506653,0.163715004920959,0.916299998760223,0.1613450050354,0.919510006904602,0.1613499969244,0.919725000858307,0.163194999098778,0.922865033149719,0.163479998707771,0.922659993171692,0.161025002598763,0.925809979438782,0.160695001482964,0.925999999046326,0.163764998316765,0.930070042610168,0.163800001144409,0.930279970169067,0.160820007324219,0.934749960899353,0.160944998264313,0.934134960174561,0.163835003972054,0.939674973487854,0.163580000400543,0.940539956092834,0.160594999790192,0.9463250041008,0.160239994525909,0.945214986801147,0.163324996829033,0.94938999414444,0.163310006260872,0.949864983558655,0.160449996590614,0.953405022621155,0.16066500544548,0.953565001487732,0.16329500079155, +0.959755003452301,0.163279995322227,0.959789991378784,0.159404993057251,0.964455008506775,0.163534998893738,0.964410006999969,0.159995004534721,0.969030022621155,0.160579994320869,0.969155013561249,0.163784995675087,0.973280012607574,0.163674995303154,0.97317498922348,0.160260006785393,0.977315008640289,0.159940004348755,0.9774050116539,0.163564994931221,0.980509996414185,0.163375005125999,0.980280041694641,0.160980001091957,0.983245015144348,0.162015005946159,0.983615040779114,0.163185000419617,0.799454987049103,0.158804997801781,0.797899961471558,0.158989995718002,0.79821503162384,0.158299997448921,0.797585010528564,0.159679993987083,0.796344995498657,0.159174993634224,0.809480011463165,0.15803000330925,0.804470002651215,0.158415004611015,0.815714955329895,0.158700004220009,0.812595009803772,0.158364996314049,0.819944977760315,0.16083499789238,0.817829966545105,0.159769997000694,0.825760006904602,0.159804999828339,0.822849988937378,0.160319998860359,0.833415031433105,0.158759996294975,0.829584956169128,0.159284994006157,0.839725017547607,0.158335000276566,0.836570024490356,0.15854999423027,0.843510031700134,0.159899994730949,0.841619968414307,0.159115001559258,0.850470006465912,0.157275006175041,0.846989989280701,0.158584997057915,0.855764985084534,0.157085001468658,0.85311496257782,0.157179996371269,0.859580039978027,0.15735499560833,0.8576700091362,0.157220005989075,0.864255011081696,0.159465000033379,0.861914992332458,0.158409997820854,0.867940008640289,0.157800003886223,0.866100013256073,0.15862999856472,0.874415040016174,0.159659996628761,0.871174991130829,0.158730000257492,0.880630016326904,0.160005003213882,0.877524971961975,0.159830003976822,0.88816499710083,0.160634994506836,0.884400010108948,0.160319998860359,0.893745005130768,0.158950001001358,0.890954971313477,0.159789994359016,0.901594996452332,0.158920004963875,0.897670030593872,0.158934995532036,0.913275003433228,0.15845499932766,0.90743499994278,0.158684998750687,0.91933000087738,0.159404993057251,0.916299998760223,0.158930003643036,0.926494956016541, +0.157829999923706,0.92290997505188,0.158614993095398,0.93538498878479,0.158144995570183,0.93094003200531,0.157985001802444,0.947044968605042,0.157344996929169,0.941215038299561,0.157745003700256,0.953334987163544,0.157975003123283,0.950190007686615,0.157659992575645,0.960550010204315,0.156305000185966,0.968940019607544,0.157629996538162,0.964744985103607,0.156965002417564,0.976779997348785,0.156874999403954,0.972859978675842,0.157254993915558,0.9826700091362,0.160659998655319,0.979725003242493,0.158765003085136,0.568960011005402,0.185664996504784,0.861795008182526,0.358025014400482,0.861620008945465,0.355769991874695,0.861000001430511,0.359230011701584,0.568814992904663,0.212929993867874,0.566004991531372,0.217254996299744,0.565155029296875,0.203260004520416,0.567340016365051,0.225930005311966,0.569254994392395,0.194729998707771,0.565254986286163,0.230324998497963,0.568515002727509,0.239189997315407,0.564365029335022,0.246529996395111,0.567629992961884,0.260764986276627,0.565425038337708,0.271115005016327,0.569499969482422,0.289389997720718,0.56828498840332,0.323715001344681,0.94192498922348,0.30401998758316,0.941205024719238,0.299704998731613,0.942649960517883,0.308340013027191,0.925665020942688,0.316774994134903,0.916769981384277,0.325109988451004,0.906475007534027,0.331809997558594,0.899459958076477,0.33788999915123,0.893599987030029,0.34196001291275,0.88945996761322,0.344664990901947,0.885829985141754,0.347034990787506,0.882660031318665,0.349070012569427,0.879500031471252,0.350425004959106,0.876105010509491,0.351689994335175,0.872489988803864,0.352279990911484,0.868350028991699,0.353125005960464,0.86226499080658,0.354304999113083,0.863579988479614,0.353895008563995,0.798655033111572,0.125220000743866,0.800619959831238,0.123960003256798,0.798240005970001,0.127945005893707,0.796689987182617,0.126479998230934,0.798595011234283,0.195769995450974,0.804284989833832,0.123034998774529,0.819254994392395,0.128195002675056,0.831629991531372,0.123410001397133,0.843104958534241,0.127735003829002,0.850589990615845,0.124935001134872, +0.863075017929077,0.129600003361702,0.870225012302399,0.123410001397133,0.885069966316223,0.13111500442028,0.895920038223267,0.124959997832775,0.917155027389526,0.129069998860359,0.928939998149872,0.122634999454021,0.950834989547729,0.129409998655319,0.963585019111633,0.124459996819496,0.98114001750946,0.128604993224144,0.982959985733032,0.131274998188019,0.985859990119934,0.194949999451637,0.987614989280701,0.192279994487762,0.968654990196228,0.199120000004768,0.953500032424927,0.195869997143745,0.931980013847351,0.200635001063347,0.916499972343445,0.194289997220039,0.893069982528687,0.198719993233681,0.881965041160583,0.192094996571541,0.865939974784851,0.198019996285439,0.859375,0.194130003452301,0.84552001953125,0.198809996247292,0.839859962463379,0.196555003523827,0.826754987239838,0.19964499771595,0.817999958992004,0.195339992642403,0.803560018539429,0.200764998793602,0.800244987010956,0.199849992990494,0.927865028381348,0.309419989585876,0.930065035820007,0.302069991827011,0.92561000585556,0.29603499174118,0.924080014228821,0.307994991540909,0.903659999370575,0.329490005970001,0.907585024833679,0.328974992036819,0.908694982528687,0.326139986515045,0.892030000686646,0.340400010347366,0.893939971923828,0.340454995632172,0.894275009632111,0.338950008153915,0.884639978408813,0.346055001020432,0.886110007762909,0.345970004796982,0.886389970779419,0.344900012016296,0.878105044364929,0.349765002727509,0.879610002040863,0.349739998579025,0.879719972610474,0.349054992198944,0.871004998683929,0.35173499584198,0.872675001621246,0.351835012435913,0.872864961624146,0.35139000415802,0.862670004367828,0.352600008249283,0.862465023994446,0.353450000286102,0.864259958267212,0.353410005569458,0.864939987659454,0.35291999578476,0.929369986057281,0.290280014276505,0.918269991874695,0.302134990692139,0.913480043411255,0.314139991998672,0.899955034255981,0.333889991044998,0.90180504322052,0.331690013408661,0.897114992141724,0.336419999599457,0.888949990272522,0.342720001935959,0.890489995479584,0.341560006141663,0.887670040130615, +0.343809992074966,0.882174968719482,0.347795009613037,0.883404970169067,0.346924990415573,0.880944967269897,0.348425000905991,0.875674962997437,0.350845009088516,0.876890003681183,0.350304991006851,0.874269962310791,0.351119995117188,0.867820024490356,0.352290004491806,0.869410037994385,0.352010011672974,0.866379976272583,0.352604985237122,0.864410042762756,0.352084994316101,0.862594962120056,0.351814985275269,0.861459970474243,0.352465003728867,0.860605001449585,0.349804997444153,0.860920011997223,0.348865002393723,0.861225008964539,0.347759991884232,0.861530005931854,0.346655011177063,0.861795008182526,0.345755010843277,0.862060010433197,0.344855010509491,0.862344980239868,0.343629986047745,0.862630009651184,0.342400014400482,0.862919986248016,0.340499997138977,0.86321496963501,0.338595002889633,0.863640010356903,0.336295008659363,0.864069998264313,0.333995014429092,0.864580035209656,0.330565005540848,0.865085005760193,0.327140003442764,0.867074966430664,0.30986499786377,0.866580009460449,0.31742998957634,0.573050022125244,0.182879999279976,0.578150033950806,0.182870000600815,0.567775011062622,0.185605004429817,0.792739987373352,0.129004999995232,0.794714987277985,0.127739995718002,0.797999978065491,0.155735000967979,0.792715013027191,0.160019993782043,0.794530034065247,0.159600004553795,0.797235012054443,0.161359995603561,0.796885013580322,0.163039997220039,0.79653000831604,0.16609500348568,0.794039964675903,0.185214996337891,0.79272997379303,0.185165002942085,0.798370003700256,0.198599994182587,0.861530005931854,0.354490011930466,0.861495018005371,0.353475004434586,0.578145027160645,0.177509993314743,0.567775011062622,0.177499994635582,0.790769994258881,0.127739995718002,0.787429988384247,0.155739992856979,0.790899991989136,0.159600004553795,0.788195013999939,0.161365002393723,0.78854501247406,0.163039997220039,0.788895010948181,0.16609999537468,0.791429996490479,0.185224995017052,0.787145018577576,0.19862000644207,0.857129991054535,0.354524999856949,0.857134997844696,0.353509992361069,0.600324988365173,0.155365005135536, +0.600685000419617,0.152529999613762,0.59996497631073,0.158199995756149,0.77403998374939,0.325969994068146,0.775409996509552,0.359250009059906,0.775754988193512,0.334800004959106,0.77386999130249,0.33372500538826,0.773725032806396,0.358480006456375,0.775685012340546,0.328519999980927,0.773810029029846,0.327374994754791,0.596570014953613,0.168365001678467,0.597625017166138,0.165839999914169,0.59552001953125,0.170890003442764,0.59791499376297,0.164425000548363,0.598209977149963,0.163004994392395,0.599089980125427,0.160604998469353,0.983985006809235,0.136230006814003,0.984215021133423,0.154424995183945,0.984860002994537,0.156269997358322,0.985509991645813,0.1581149995327,0.944074988365173,0.322925001382828,0.943645000457764,0.317975014448166,0.989910006523132,0.170330002903938,0.989989995956421,0.186839997768402,0.990200042724609,0.191204994916916,0.988844990730286,0.167899996042252,0.9877849817276,0.165470004081726,0.987495005130768,0.164155006408691,0.987205028533936,0.162839993834496,0.986355006694794,0.160479992628098,0.942425012588501,0.325650006532669,0.944290041923523,0.324324995279312,0.788275003433228,0.388610005378723,0.785964965820313,0.392870008945465,0.789209961891174,0.388675004243851,0.789799988269806,0.387405008077621,0.77197003364563,0.332585006952286,0.771719992160797,0.357699990272522,0.771865010261536,0.326155006885529,0.771939992904663,0.324849992990494,0.772655010223389,0.319875001907349,0.772799968719482,0.311199992895126,0.772729992866516,0.315539985895157,0.7742800116539,0.289115011692047,0.773025035858154,0.298330008983612,0.944885015487671,0.294454991817474,0.943419992923737,0.28499498963356,0.945160031318665,0.305189996957779,0.945019960403442,0.299820005893707,0.94622004032135,0.321734994649887,0.945430040359497,0.316619992256165,0.946285009384155,0.323065012693405,0.946179986000061,0.329679995775223,0.944095015525818,0.330785006284714,0.946444988250732,0.355610013008118,0.944409966468811,0.356460005044937,0.94863498210907,0.364809989929199,0.944914996623993,0.360300004482269,0.601109981536865, +0.138565003871918,0.943145036697388,0.313160002231598,0.945294976234436,0.310905009508133,0.775884985923767,0.308499991893768,0.772915005683899,0.304764986038208,0.828549981117249,0.277229994535446,0.828444957733154,0.26570999622345,0.858824968338013,0.320814996957779,0.851864993572235,0.322495013475418,0.865835011005402,0.322284996509552,0.23148250579834,0.678007006645203,0.232232496142387,0.677661001682281,0.232195496559143,0.679141998291016,0.231427505612373,0.679188013076782,0.229972004890442,0.684697985649109,0.229305505752563,0.683929979801178,0.230847492814064,0.681357979774475,0.231582492589951,0.681928992271423,0.22791700065136,0.687390983104706,0.227409496903419,0.686519980430603,0.225589007139206,0.689502000808716,0.225178495049477,0.688367009162903,0.223306998610497,0.690620005130768,0.223010495305061,0.689427971839905,0.221006497740746,0.690850019454956,0.220934495329857,0.689400970935822,0.216090500354767,0.689061999320984,0.21645000576973,0.687600016593933,0.218846499919891,0.688832998275757,0.218633502721786,0.690470993518829,0.213679000735283,0.68700897693634,0.214068502187729,0.685658991336823,0.211177006363869,0.684942007064819,0.211801007390022,0.683786988258362,0.209864005446434,0.683737993240356,0.210727497935295,0.682951986789703,0.230874001979828,0.677134990692139,0.231443494558334,0.676401972770691,0.227523505687714,0.674995005130768,0.227686002850533,0.673577010631561,0.229836001992226,0.674776017665863,0.229462996125221,0.676073014736176,0.225320503115654,0.674197971820831,0.22536900639534,0.672625005245209,0.22282050549984,0.673902988433838,0.222837492823601,0.672173023223877,0.219953998923302,0.673933982849121,0.219660997390747,0.672169029712677,0.217121496796608,0.674444019794464,0.216927498579025,0.672717988491058,0.214729994535446,0.675631999969482,0.214306995272636,0.674197971820831,0.212510496377945,0.67724198102951,0.211886003613472,0.676163017749786,0.210988506674767,0.679737985134125,0.210216507315636,0.678965985774994,0.210142999887466,0.681222975254059,0.209190994501114,0.681392014026642, +0.209860503673553,0.682318985462189,0.208994492888451,0.682816028594971,0.236314997076988,0.677541971206665,0.239196494221687,0.677887976169586,0.239480003714561,0.682703018188477,0.236450001597404,0.681168019771576,0.239152505993843,0.687357008457184,0.235953003168106,0.685195982456207,0.235945492982864,0.69309002161026,0.233606994152069,0.689689993858337,0.204294994473457,0.687599003314972,0.20099550485611,0.690186023712158,0.200314000248909,0.685625970363617,0.203568994998932,0.684522986412048,0.206084504723549,0.690859019756317,0.202896997332573,0.69486802816391,0.209636002779007,0.694480001926422,0.207076504826546,0.699047982692719,0.213550493121147,0.697690010070801,0.211968004703522,0.703015029430389,0.217249497771263,0.699571013450623,0.216230496764183,0.70525598526001,0.221438005566597,0.699576020240784,0.221580997109413,0.705039978027344,0.225159004330635,0.698164999485016,0.226188004016876,0.702767014503479,0.228403493762016,0.695996999740601,0.23012800514698,0.699850976467133,0.233134999871254,0.696591019630432,0.231129005551338,0.693080008029938,0.200815498828888,0.680114984512329,0.203941494226456,0.680772006511688,0.203017503023148,0.672922015190125,0.205800995230675,0.675302982330322,0.206167504191399,0.66687798500061,0.208353504538536,0.670499980449677,0.209784999489784,0.66278600692749,0.211529493331909,0.667187988758087,0.213829502463341,0.660113990306854,0.215075001120567,0.664921998977661,0.217673495411873,0.659030020236969,0.218445494771004,0.664043009281158,0.221386507153511,0.659018993377686,0.222009494900703,0.664000988006592,0.225152999162674,0.659940004348755,0.225249007344246,0.66472202539444,0.22910350561142,0.662168025970459,0.228476494550705,0.666337013244629,0.233138501644135,0.665677011013031,0.231774494051933,0.668940007686615,0.234901994466782,0.672973990440369,0.23751500248909,0.671261012554169,0.25,0.642305016517639,0.246733993291855,0.641874015331268,0.246739506721497,0.637311995029449,0.25,0.637634992599487,0.25,0.601683020591736,0.248081505298615,0.602962017059326,0.247816503047943, +0.598667979240417,0.25,0.597940027713776,0.229083001613617,0.594515979290009,0.228662505745888,0.596074998378754,0.225737497210503,0.59434700012207,0.226119995117188,0.593367993831635,0.235028505325317,0.596450984477997,0.234754502773285,0.599307000637054,0.231674998998642,0.597681999206543,0.231979995965958,0.5954629778862,0.238833993673325,0.597675979137421,0.238372996449471,0.601287007331848,0.241980001330376,0.598832011222839,0.241640999913216,0.60308301448822,0.24515500664711,0.599058985710144,0.245171502232552,0.603631973266602,0.225284993648529,0.593650996685028,0.225772500038147,0.593118011951447,0.224963501095772,0.59263801574707,0.225489005446434,0.592612981796265,0.225309506058693,0.591578006744385,0.225762501358986,0.592019975185394,0.22596450150013,0.590891003608704,0.226236000657082,0.591609001159668,0.22784349322319,0.589281022548676,0.22868449985981,0.591120004653931,0.230673000216484,0.588001012802124,0.231379002332687,0.590686976909637,0.234172493219376,0.587580978870392,0.234721496701241,0.590695977210999,0.237893998622894,0.587463974952698,0.238714993000031,0.590893983840942,0.241402000188828,0.587311029434204,0.242022499442101,0.59103798866272,0.244543001055717,0.586847007274628,0.24482449889183,0.590771019458771,0.247511506080627,0.586405992507935,0.247548505663872,0.590354025363922,0.25,0.585901021957397,0.25,0.589679002761841,0.247748494148254,0.596296012401581,0.25,0.595818996429443,0.245214998722076,0.596482992172241,0.242188006639481,0.596482992172241,0.239083006978035,0.595708012580872,0.235175997018814,0.594874024391174,0.232154503464699,0.594214022159576,0.229311496019363,0.593648016452789,0.226330503821373,0.59281200170517,0.226037994027138,0.592805981636047,0.225780501961708,0.592585027217865,0.226015001535416,0.592254996299744,0.226386502385139,0.592009007930756,0.229187503457069,0.592145979404449,0.23190750181675,0.592424988746643,0.235061004757881,0.592633008956909,0.239043995738029,0.593106985092163,0.242200002074242,0.593533992767334,0.245092496275902,0.593418002128601,0.247685000300407, +0.593101024627686,0.25,0.592752993106842,0.247727006673813,0.595018982887268,0.25,0.59467601776123,0.245282500982285,0.595120012760162,0.242307499051094,0.595220029354095,0.23921500146389,0.594660997390747,0.235254496335983,0.594027996063232,0.23224849998951,0.593531012535095,0.229435995221138,0.593177974224091,0.226440995931625,0.592504978179932,0.226178005337715,0.592629015445709,0.225937500596046,0.59256500005722,0.226152494549751,0.59237802028656,0.226465493440628,0.592226028442383,0.229459494352341,0.592697978019714,0.232211500406265,0.593284010887146,0.235254004597664,0.59366101026535,0.239238500595093,0.59427797794342,0.242321506142616,0.59485000371933,0.245260000228882,0.594802975654602,0.247764006257057,0.594551026821136,0.25,0.594308972358704,0.25,0.603130996227264,0.25,0.609678983688354,0.247780501842499,0.61032098531723,0.248049005866051,0.604043006896973,0.244535505771637,0.610827028751373,0.245049506425858,0.604794979095459,0.240213498473167,0.611298978328705,0.241449505090714,0.604331016540527,0.236705496907234,0.611374020576477,0.23810650408268,0.602584004402161,0.232843995094299,0.609912991523743,0.234501495957375,0.6007199883461,0.230239003896713,0.607876002788544,0.231415495276451,0.598962008953094,0.227020502090454,0.604767978191376,0.228478506207466,0.5971599817276,0.223014503717422,0.600821018218994,0.225343003869057,0.595264971256256,0.221612498164177,0.596342027187347,0.224618002772331,0.594045996665955,0.221557006239891,0.592276990413666,0.224126502871513,0.592555999755859,0.222124993801117,0.588696002960205,0.224325999617577,0.590658009052277,0.22333799302578,0.585014998912811,0.225195497274399,0.589277029037476,0.225479006767273,0.581761002540588,0.22682249546051,0.587218999862671,0.228464499115944,0.579315006732941,0.229772999882698,0.585219025611877,0.25,0.579469978809357,0.25,0.582952976226807,0.247403994202614,0.583424985408783,0.247216999530792,0.579308986663818,0.244378998875618,0.583813011646271,0.24405500292778,0.579176008701324,0.241062000393867,0.583796977996826,0.240803003311157, +0.579384028911591,0.237354502081871,0.583950996398926,0.236901000142097,0.579171001911163,0.233560502529144,0.584311008453369,0.232719495892525,0.578882992267609,0.25,0.615543007850647,0.247547000646591,0.616023004055023,0.243839994072914,0.615952014923096,0.239776000380516,0.617043018341064,0.23556099832058,0.618956029415131,0.232122004032135,0.618898987770081,0.229349493980408,0.620015978813171,0.224889993667603,0.613606989383698,0.220763996243477,0.60724800825119,0.220893993973732,0.580806016921997,0.223837494850159,0.575870990753174,0.218426004052162,0.585878014564514,0.216954499483109,0.591584026813507,0.218563497066498,0.59961199760437,0.246737003326416,0.571956992149353,0.25,0.571963012218475,0.243151992559433,0.572125017642975,0.240192994475365,0.571740984916687,0.236643001437187,0.570940971374512,0.232298493385315,0.570738017559052,0.22749499976635,0.572777986526489,0.246852993965149,0.689513027667999,0.25,0.690757989883423,0.25,0.699401021003723,0.247242495417595,0.699307978153229,0.243566498160362,0.700468003749847,0.242230504751205,0.689710974693298,0.240201503038406,0.70378702878952,0.237784504890442,0.69651198387146,0.23293699324131,0.710861027240753,0.231374993920326,0.702733993530273,0.23463000357151,0.699509978294373,0.23691600561142,0.707126975059509,0.228161498904228,0.715264022350311,0.226822003722191,0.706314980983734,0.221596494317055,0.709230005741119,0.222359001636505,0.719031989574432,0.214753001928329,0.719705998897552,0.215396001935005,0.709547996520996,0.20754699409008,0.717562019824982,0.210923001170158,0.707231998443604,0.195893004536629,0.704264998435974,0.200449496507645,0.698040008544922,0.205394506454468,0.702552020549774,0.201147004961967,0.711933970451355,0.192473992705345,0.688401997089386,0.197730004787445,0.686505973339081,0.198391005396843,0.692193984985352,0.192974001169205,0.695398986339569,0.193382993340492,0.679045021533966,0.198251500725746,0.679637014865875,0.200929000973701,0.656919002532959,0.204428002238274,0.663896024227142,0.200721994042397,0.670966029167175,0.196295499801636, +0.666728019714355,0.211328506469727,0.648299992084503,0.212833493947983,0.656138002872467,0.20847299695015,0.659080982208252,0.206397503614426,0.651454985141754,0.220252007246017,0.647098004817963,0.220934495329857,0.654888987541199,0.217048496007919,0.65489000082016,0.216067001223564,0.646941006183624,0.231470495462418,0.650889992713928,0.22970449924469,0.658908009529114,0.225158497691154,0.656044006347656,0.22528700530529,0.648256003856659,0.236325994133949,0.657415986061096,0.234538495540619,0.663025975227356,0.241214007139206,0.6632000207901,0.239991992712021,0.670140027999878,0.246006995439529,0.667208015918732,0.246409997344017,0.675769984722137,0.25,0.675399005413055,0.25,0.666682004928589,0.246865496039391,0.685486972332001,0.25,0.686214983463287,0.242430001497269,0.684403002262115,0.246625006198883,0.680257022380829,0.25,0.680321991443634,0.241955503821373,0.678373992443085,0.25,0.543444991111755,0.246996507048607,0.543537020683289,0.247106999158859,0.532805979251862,0.25,0.532652974128723,0.237197995185852,0.543029010295868,0.232544496655464,0.543129026889801,0.233335494995117,0.531359016895294,0.237846001982689,0.531849026679993,0.227487996220589,0.543704986572266,0.222037002444267,0.545228004455566,0.222532004117966,0.532041013240814,0.228420004248619,0.531226992607117,0.215878993272781,0.548631012439728,0.208088994026184,0.554489016532898,0.206503003835678,0.54000198841095,0.21543100476265,0.534622013568878,0.20100499689579,0.56004399061203,0.194337502121925,0.566084980964661,0.189594000577927,0.554175019264221,0.197510495781898,0.546697020530701,0.187859505414963,0.572755992412567,0.181595996022224,0.580623984336853,0.176300495862961,0.569526016712189,0.182790502905846,0.561106026172638,0.169286504387856,0.60308301448822,0.164131999015808,0.615545988082886,0.158380001783371,0.611509025096893,0.163328006863594,0.594973027706146,0.175562500953674,0.590399980545044,0.169893503189087,0.579847991466522,0.24737249314785,0.519586980342865,0.25,0.519474983215332,0.234394505620003,0.517499983310699,0.238166496157646, +0.518832981586456,0.223011001944542,0.516753971576691,0.22944800555706,0.516331017017365,0.205700501799583,0.52447098493576,0.215059995651245,0.519223988056183,0.195944502949715,0.531010985374451,0.186970993876457,0.53905200958252,0.171039998531342,0.556565999984741,0.179033994674683,0.547242999076843,0.154505506157875,0.586471974849701,0.163234993815422,0.567400991916656,0.149356499314308,0.607343018054962,0.232742995023727,0.62863701581955,0.234182506799698,0.629212975502014,0.233768492937088,0.633083999156952,0.232289493083954,0.632243990898132,0.238185003399849,0.63680100440979,0.235714495182037,0.634500026702881,0.235940992832184,0.631012976169586,0.238287001848221,0.632534027099609,0.241217494010925,0.634279012680054,0.241332992911339,0.638463020324707,0.243835002183914,0.635500013828278,0.24422849714756,0.640491008758545,0.231598004698753,0.632293999195099,0.232305005192757,0.627960979938507,0.231144994497299,0.631389021873474,0.231670498847961,0.627907991409302,0.223801001906395,0.621504008769989,0.228241503238678,0.626318991184235,0.218191996216774,0.615463018417358,0.215055495500565,0.602765023708344,0.213545992970467,0.591053009033203,0.215625002980232,0.582903981208801,0.2187460064888,0.575617015361786,0.223059505224228,0.570559024810791,0.227304503321648,0.567174971103668,0.23207700252533,0.565322995185852,0.236608505249023,0.564988017082214,0.240205004811287,0.565100014209747,0.243450000882149,0.56530100107193,0.246714994311333,0.565268993377686,0.25,0.565019011497498,0.245395496487617,0.6178839802742,0.245579496026039,0.617473006248474,0.246927499771118,0.618520021438599,0.246674999594688,0.619180977344513,0.247606992721558,0.620648980140686,0.247228503227234,0.620926022529602,0.247552007436752,0.62322199344635,0.247291505336761,0.623124003410339,0.246901497244835,0.626078009605408,0.246625497937202,0.626138985157013,0.2457544952631,0.628264009952545,0.245658501982689,0.627753973007202,0.243847995996475,0.629705011844635,0.243788003921509,0.629208981990814,0.241620004177094,0.629899024963379,0.241776496171951, +0.629247009754181,0.239140003919601,0.628371000289917,0.239424005150795,0.627852022647858,0.237794995307922,0.626573979854584,0.238340497016907,0.626362025737762,0.237882003188133,0.623908996582031,0.237286493182182,0.623982012271881,0.238719493150711,0.621195018291473,0.239178001880646,0.621317982673645,0.24312150478363,0.618089020252228,0.243064999580383,0.617698013782501,0.240563005208969,0.619687974452972,0.240316495299339,0.619268000125885,0.246274501085281,0.619821012020111,0.246699497103691,0.621360003948212,0.24677050113678,0.623236000537872,0.24625700712204,0.625726997852325,0.245518505573273,0.626850008964539,0.24372099339962,0.628174006938934,0.241963997483253,0.628427982330322,0.239572495222092,0.627265989780426,0.238884493708611,0.626416981220245,0.238550499081612,0.623872995376587,0.239697992801666,0.621461987495422,0.240838497877121,0.620235979557037,0.243164002895355,0.618591010570526,0.245170995593071,0.618393003940582,0.242961004376411,0.617226004600525,0.246068507432938,0.617040991783142,0.239319995045662,0.619002997875214,0.238121002912521,0.621071994304657,0.236476495862007,0.624145984649658,0.238931998610497,0.629050016403198,0.237276494503021,0.627052009105682,0.241450503468513,0.630515992641449,0.243930995464325,0.630411028862,0.246037006378174,0.628947019577026,0.247786998748779,0.626435995101929,0.248420506715775,0.6233189702034,0.248404994606972,0.620082020759583,0.247447997331619,0.617654979228973,0.243939995765686,0.633359014987946,0.244001001119614,0.631502985954285,0.246566504240036,0.630352020263672,0.246737003326416,0.63325297832489,0.25,0.627920985221863,0.25,0.632269024848938,0.25,0.619400978088379,0.25,0.623710989952087,0.25,0.616976022720337,0.247843995690346,0.616743981838226,0.25,0.616083025932312,0.241312503814697,0.632697999477386,0.241387501358986,0.631448984146118,0.238756999373436,0.629890024662018,0.238510996103287,0.631026029586792,0.238027006387711,0.625086009502411,0.238675996661186,0.625113010406494,0.23734849691391,0.625141978263855,0.236570000648499,0.625455975532532, +0.236822500824928,0.627781987190247,0.236377000808716,0.629011988639832,0.235744506120682,0.625981986522675,0.235325500369072,0.62456202507019,0.234888002276421,0.627296984195709,0.23394800722599,0.626025974750519,0.23573499917984,0.622452974319458,0.233658000826836,0.624786972999573,0.235728994011879,0.62119597196579,0.233281493186951,0.624116003513336,0.245945006608963,0.662506997585297,0.25,0.662616014480591,0.241734504699707,0.659588992595673,0.237495496869087,0.654349029064178,0.246291995048523,0.650106012821198,0.246612995862961,0.646946012973785,0.25,0.646813988685608,0.25,0.649990022182465,0.243593007326126,0.64828097820282,0.243772506713867,0.645528018474579,0.240756496787071,0.646856009960175,0.241191998124123,0.643661975860596,0.246205493807793,0.654905021190643,0.25,0.654480993747711,0.242890000343323,0.653129994869232,0.239610001444817,0.650086998939514,0.24600750207901,0.65903502702713,0.25,0.658900022506714,0.242201998829842,0.656493008136749,0.238291993737221,0.65216600894928,0.246761992573738,0.644419014453888,0.25,0.644720017910004,0.243988499045372,0.643065989017487,0.241327494382858,0.641404986381531,0.232519000768661,0.636408984661102,0.231891006231308,0.63636302947998,0.233331993222237,0.641023993492126,0.232971996068954,0.641964018344879,0.234354004263878,0.643495976924896,0.234436497092247,0.645573973655701,0.23658150434494,0.644125998020172,0.237118005752563,0.646453022956848,0.238610506057739,0.64317399263382,0.238662004470825,0.645662009716034,0.238830506801605,0.64038097858429,0.234654992818832,0.64205002784729,0.234282001852989,0.640097975730896,0.233883500099182,0.637256026268005,0.235572502017021,0.637435019016266,0.235679998993874,0.639678001403809,0.236038997769356,0.641844987869263,0.237292006611824,0.641686022281647,0.237202495336533,0.639894008636475,0.236982002854347,0.638015985488892,0.231360495090485,0.636339008808136,0.232550993561745,0.642177999019623,0.233971998095512,0.647141993045807,0.229697003960609,0.642379999160767,0.228165507316589,0.632983982563019,0.224577993154526, +0.63995498418808,0.223816499114037,0.631178975105286,0.219535499811172,0.638759016990662,0.21883450448513,0.629393994808197,0.214827492833138,0.638364017009735,0.213615000247955,0.628085970878601,0.21204499900341,0.616245985031128,0.209462001919746,0.639819025993347,0.207698002457619,0.629316985607147,0.20379950106144,0.64377897977829,0.201359495520592,0.633620977401733,0.197869494557381,0.650924026966095,0.194711998105049,0.641750991344452,0.192324995994568,0.662361979484558,0.188535004854202,0.654627978801727,0.18817549943924,0.678201973438263,0.183665499091148,0.671262979507446,0.205461993813515,0.618248999118805,0.198431506752968,0.62286901473999,0.191199004650116,0.630940020084381,0.184085503220558,0.643794000148773,0.21016600728035,0.604362010955811,0.19582399725914,0.612201988697052,0.188130006194115,0.621967971324921,0.203445002436638,0.60701197385788,0.185900002717972,0.613864004611969,0.19361799955368,0.603460013866425,0.201228499412537,0.597557008266449,0.208187997341156,0.5937380194664,0.203776493668556,0.586039006710052,0.20975549519062,0.584069013595581,0.197288006544113,0.590184986591339,0.190661504864693,0.596347987651825,0.212577506899834,0.57763797044754,0.204765498638153,0.571559011936188,0.20983749628067,0.566488981246948,0.216183498501778,0.560257971286774,0.217155992984772,0.569773018360138,0.222246006131172,0.563971996307373,0.221863493323326,0.555671989917755,0.227037504315376,0.560878992080688,0.22706550359726,0.553191006183624,0.232027500867844,0.551856994628906,0.231955006718636,0.559246003627777,0.236511498689651,0.558661997318268,0.236618995666504,0.551401019096375,0.241605997085571,0.519731998443604,0.241218999028206,0.532539010047913,0.241108000278473,0.54338800907135,0.24465249478817,0.519771993160248,0.244340494275093,0.5329509973526,0.244103506207466,0.543422996997833,0.240274503827095,0.558526992797852,0.243654996156693,0.55843198299408,0.240672498941422,0.551403999328613,0.244017496705055,0.551428020000458,0.246703505516052,0.558350026607513,0.246756494045258,0.55178701877594,0.25, +0.55814802646637,0.25,0.551741003990173,0.199158996343613,0.576371014118195,0.192835003137589,0.581894993782043,0.186854004859924,0.588701009750366,0.183408498764038,0.606471002101898,0.180134996771812,0.598315000534058,0.176640495657921,0.618417978286743,0.173478499054909,0.610565006732941,0.181705504655838,0.635037004947662,0.179281994700432,0.626676023006439,0.17025600373745,0.629589021205902,0.167733505368233,0.621692001819611,0.175936505198479,0.648527026176453,0.172919496893883,0.639936983585358,0.179758995771408,0.658675014972687,0.228917002677917,0.683443009853363,0.230394005775452,0.680939972400665,0.227049499750137,0.685809016227722,0.224895000457764,0.687537014484406,0.22282050549984,0.688637018203735,0.220888495445251,0.688528001308441,0.218962505459785,0.687940001487732,0.216655999422073,0.686775982379913,0.214288994669914,0.684930980205536,0.212145999073982,0.683189988136292,0.211202502250671,0.68249899148941,0.210354998707771,0.682123005390167,0.210704997181892,0.681248009204865,0.211427003145218,0.680213987827301,0.212869003415108,0.677859008312225,0.214997500181198,0.676594018936157,0.217245995998383,0.675486981868744,0.220134496688843,0.675007998943329,0.222815498709679,0.674902975559235,0.225296005606651,0.675092995166779,0.227439001202583,0.675810992717743,0.229257494211197,0.67687201499939,0.23055000603199,0.677703976631165,0.231068000197411,0.678207993507385,0.230924502015114,0.679086029529572,0.232830494642258,0.674535989761353,0.233979001641273,0.677214026451111,0.230706498026848,0.67180198431015,0.228016495704651,0.669854998588562,0.225320503115654,0.668690979480743,0.222504496574402,0.668106019496918,0.21908800303936,0.668150007724762,0.21611699461937,0.668860971927643,0.212985500693321,0.670785009860992,0.21017399430275,0.673429012298584,0.208117499947548,0.677178978919983,0.206550493836403,0.681286990642548,0.206284001469612,0.683623015880585,0.234035506844521,0.679718017578125,0.233358502388,0.683211982250214,0.231691494584084,0.686703979969025,0.229473993182182,0.690023005008698,0.226947501301765, +0.692709028720856,0.224256500601768,0.694281995296478,0.221260502934456,0.695034027099609,0.218024507164955,0.694850981235504,0.214809998869896,0.693260014057159,0.211765006184578,0.690825998783112,0.208719506859779,0.687843024730682,0.20703150331974,0.685572028160095,0.25,0.712056994438171,0.247161000967026,0.711372017860413,0.244990006089211,0.712368011474609,0.242048993706703,0.715638995170593,0.238214001059532,0.719727993011475,0.233028993010521,0.724563002586365,0.227173000574112,0.728500008583069,0.220492497086525,0.730798006057739,0.212735995650291,0.730233013629913,0.203511506319046,0.726180016994476,0.195324495434761,0.717763006687164,0.190972506999969,0.707280993461609,0.188960492610931,0.697210013866425,0.188579499721527,0.68885600566864,0.164438992738724,0.684818029403687,0.165140494704247,0.683960974216461,0.164931505918503,0.699361026287079,0.164308995008469,0.69904500246048,0.163568496704102,0.710555016994476,0.163026496767998,0.709533989429474,0.160483494400978,0.720905005931854,0.160210505127907,0.718923985958099,0.157958999276161,0.724470973014832,0.15777750313282,0.722626984119415,0.156051993370056,0.726215004920959,0.153824999928474,0.727302014827728,0.153750002384186,0.725319027900696,0.155874505639076,0.724402010440826,0.150885000824928,0.728120982646942,0.14750400185585,0.727824985980988,0.148258000612259,0.723958015441895,0.151068493723869,0.725127995014191,0.144413992762566,0.724830985069275,0.145582497119904,0.721653997898102,0.141721993684769,0.718698978424072,0.139942497014999,0.710052013397217,0.140991494059563,0.708867013454437,0.142974495887756,0.716693997383118,0.138659507036209,0.699388980865479,0.139765501022339,0.698789000511169,0.137900501489639,0.686106026172638,0.139400005340576,0.686114013195038,0.138753995299339,0.671783983707428,0.140327498316765,0.672501027584076,0.141614496707916,0.658016979694366,0.142913997173309,0.658876001834869,0.14614999294281,0.647036015987396,0.147606000304222,0.648041009902954,0.149577006697655,0.641663014888763,0.151129499077797,0.642625987529755, +0.151656001806259,0.639186024665833,0.153344005346298,0.639491021633148,0.162081494927406,0.687475979328156,0.163410499691963,0.686262011528015,0.163267999887466,0.698045015335083,0.16185949742794,0.696547985076904,0.162000507116318,0.707889020442963,0.160833492875099,0.706075012683868,0.159703493118286,0.716183006763458,0.158761993050575,0.714221000671387,0.156500995159149,0.717194974422455,0.157423004508018,0.720022976398468,0.153246000409126,0.719498991966248,0.154690995812416,0.719304978847504,0.155474007129669,0.721879005432129,0.1535315066576,0.722527027130127,0.148854494094849,0.721343994140625,0.149475499987602,0.718209981918335,0.151479005813599,0.719434022903442,0.151231005787849,0.722437024116516,0.147174999117851,0.715839982032776,0.146533995866776,0.719156980514526,0.142436996102333,0.706915974617004,0.144384995102882,0.704366981983185,0.145434007048607,0.710958003997803,0.143962502479553,0.714897990226746,0.141574993729591,0.697179973125458,0.143756493926048,0.695710003376007,0.140930503606796,0.685953974723816,0.14368000626564,0.685365974903107,0.141455501317978,0.673548996448517,0.144658505916595,0.674036026000977,0.144241496920586,0.659720003604889,0.147052004933357,0.662419974803925,0.149234995245934,0.649464011192322,0.151255995035172,0.654572010040283,0.152973502874374,0.645757019519806,0.154749497771263,0.648810029029846,0.155568495392799,0.642207980155945,0.158122003078461,0.644677996635437,0.167225494980812,0.685694992542267,0.169089496135712,0.69151097536087,0.167355492711067,0.703450977802277,0.165965005755424,0.699806988239288,0.165493994951248,0.713212013244629,0.164331004023552,0.711165010929108,0.162821993231773,0.722571015357971,0.16185100376606,0.720894992351532,0.160257503390312,0.730373024940491,0.159716993570328,0.72768098115921,0.158280998468399,0.734544992446899,0.155157998204231,0.738358974456787,0.15429599583149,0.734993994235992,0.15727099776268,0.731962025165558,0.150794997811317,0.741217970848083,0.145951494574547,0.740378022193909,0.146492004394531,0.735184013843536,0.150591999292374, +0.736535012722015,0.140224501490593,0.734953999519348,0.14223949611187,0.731007993221283,0.137546494603157,0.728004992008209,0.134655997157097,0.71798700094223,0.136442497372627,0.713930010795593,0.139072999358177,0.7238450050354,0.13238200545311,0.704949975013733,0.134688496589661,0.701385021209717,0.131663501262665,0.688691973686218,0.134136006236076,0.686616003513336,0.132593005895615,0.670822978019714,0.13493150472641,0.670449018478394,0.136342003941536,0.652957022190094,0.13842299580574,0.654453992843628,0.140762493014336,0.642186999320984,0.143773004412651,0.642094016075134,0.147091001272202,0.63119500875473,0.148478493094444,0.635042011737823,0.152528494596481,0.62780100107193,0.153054505586624,0.632304012775421,0.157176494598389,0.629534006118774,0.157142996788025,0.632498025894165,0.166023999452591,0.68468302488327,0.16533599793911,0.699162006378174,0.163861498236656,0.710608005523682,0.161330506205559,0.720176994800568,0.158933505415916,0.725978970527649,0.156578004360199,0.729179978370667,0.153911992907524,0.731458008289337,0.146929502487183,0.731702983379364,0.150654494762421,0.732445001602173,0.143423497676849,0.72790801525116,0.138226002454758,0.711615025997162,0.140423998236656,0.721179008483887,0.136635005474091,0.699881970882416,0.135932996869087,0.686004996299744,0.136979505419731,0.670898973941803,0.140140503644943,0.656540989875793,0.144839495420456,0.645199000835419,0.148571997880936,0.639316022396088,0.152410507202148,0.635657012462616,0.155108004808426,0.636730015277863,0.159215003252029,0.641454994678497,0.156522005796432,0.639162003993988,0.160872995853424,0.65182101726532,0.161528006196022,0.641333997249603,0.157417505979538,0.654372990131378,0.155029505491257,0.657455027103424,0.151057004928589,0.665699005126953,0.148856997489929,0.672671973705292,0.146768003702164,0.683127999305725,0.146270006895065,0.693700015544891,0.147947505116463,0.700196981430054,0.149045005440712,0.704815983772278,0.151259005069733,0.708702027797699,0.152995496988297,0.713590025901794,0.156394496560097,0.709571003913879, +0.158761993050575,0.703607022762299,0.159339502453804,0.695272982120514,0.15837650001049,0.688121974468231,0.15361100435257,0.705268025398254,0.151886001229286,0.69991797208786,0.151105493307114,0.6960129737854,0.149699494242668,0.689943015575409,0.14971250295639,0.682478010654449,0.152242004871368,0.67595100402832,0.154242500662804,0.669170022010803,0.15600149333477,0.702445983886719,0.155464500188828,0.696621000766754,0.155364006757736,0.689944982528687,0.153987005352974,0.68502002954483,0.157407000660896,0.67907702922821,0.159896999597549,0.677219986915588,0.157937005162239,0.664397001266479,0.158547505736351,0.660126984119415,0.16176749765873,0.676135003566742,0.162585496902466,0.673040986061096,0.160290494561195,0.658972978591919,0.162665501236916,0.663551986217499,0.163358002901077,0.662747025489807,0.163697004318237,0.66534298658371,0.163066506385803,0.666604995727539,0.164699494838715,0.670818984508514,0.163276493549347,0.67179399728775,0.161944001913071,0.661297976970673,0.163562998175621,0.659175992012024,0.164866000413895,0.654704988002777,0.167162001132965,0.670987010002136,0.157177999615669,0.622817993164063,0.151161998510361,0.619410991668701,0.171560496091843,0.658200979232788,0.168750002980232,0.647451996803284,0.166118502616882,0.637403011322021,0.171430498361588,0.677619993686676,0.175133496522903,0.666863977909088,0.182874500751495,0.684961020946503,0.182734996080399,0.697009027004242,0.177105501294136,0.682823002338409,0.175900995731354,0.694773972034454,0.183531492948532,0.709517002105713,0.174844995141029,0.707311987876892,0.178513005375862,0.673511981964111,0.163657993078232,0.631030023097992,0.161392003297806,0.625512003898621,0.160364001989365,0.634810984134674,0.159259498119354,0.631102979183197,0.144785493612289,0.625465989112854,0.141412496566772,0.613906979560852,0.137588992714882,0.637790977954865,0.132337003946304,0.627372980117798,0.131641998887062,0.651889979839325,0.123351000249386,0.650075018405914,0.127168506383896,0.672699987888336,0.11634249985218,0.677537977695465,0.126214504241943, +0.694980025291443,0.1163375005126,0.707063019275665,0.11973249912262,0.729928970336914,0.127915993332863,0.713593006134033,0.130796507000923,0.728820025920868,0.124167501926422,0.747359991073608,0.134533002972603,0.740676999092102,0.129339993000031,0.759661018848419,0.135723501443863,0.770138025283813,0.138568997383118,0.749882996082306,0.144648998975754,0.756501019001007,0.143574506044388,0.777002990245819,0.151801496744156,0.758723974227905,0.170790493488312,0.732671976089478,0.173362493515015,0.720230996608734,0.167594000697136,0.743242025375366,0.163784995675087,0.751172006130219,0.158303499221802,0.756188988685608,0.18597300350666,0.726146996021271,0.180737495422363,0.744009017944336,0.176588505506516,0.75915801525116,0.170964494347572,0.772433996200562,0.162719994783401,0.777197003364563,0.153314501047134,0.778910994529724,0.198089495301247,0.739360988140106,0.209140494465828,0.746022999286652,0.218138501048088,0.747789978981018,0.226029500365257,0.746074974536896,0.232149496674538,0.743619024753571,0.237443000078201,0.739817976951599,0.241269499063492,0.736837029457092,0.24448250234127,0.734260976314545,0.247316002845764,0.730440974235535,0.25,0.729717016220093,0.250000506639481,0.759752988815308,0.250000506639481,0.788128018379211,0.246919497847557,0.788484990596771,0.246991500258446,0.759733021259308,0.243491500616074,0.789866983890533,0.243908494710922,0.760792970657349,0.239488497376442,0.791312992572784,0.240473002195358,0.763137996196747,0.234935000538826,0.793214976787567,0.236175000667572,0.765802025794983,0.228755503892899,0.79524302482605,0.230559498071671,0.76843398809433,0.221909493207932,0.795612990856171,0.223689004778862,0.770296990871429,0.212032005190849,0.793654024600983,0.215160995721817,0.770415008068085,0.201482996344566,0.789752006530762,0.205462500452995,0.767175018787384,0.188425496220589,0.777140021324158,0.193584501743317,0.758190989494324,0.182433992624283,0.802133977413177,0.196764498949051,0.808032989501953,0.20719949901104,0.814252018928528,0.217664003372192,0.819706976413727,0.224965497851372, +0.822198987007141,0.231674507260323,0.822997987270355,0.237019494175911,0.823148012161255,0.24176099896431,0.822463989257813,0.245968505740166,0.821981012821198,0.250000506639481,0.820546984672546,0.105515003204346,0.716189026832581,0.105020999908447,0.683304011821747,0.0989779978990555,0.724618971347809,0.09740349650383,0.69055300951004,0.0928030014038086,0.733285009860992,0.0870499983429909,0.743138015270233,0.0825750008225441,0.706144988536835,0.0902199968695641,0.697610974311829,0.0816825032234192,0.753113985061646,0.0765995010733604,0.762757003307343,0.0705024972558022,0.721827983856201,0.076263003051281,0.714052021503448,0.0891050025820732,0.790364980697632,0.0847610011696815,0.802123010158539,0.0932295024394989,0.778509974479675,0.0977305024862289,0.766220986843109,0.1110730022192,0.740418016910553,0.103903003036976,0.752821028232574,0.0995455011725426,0.824270009994507,0.0962644964456558,0.83831799030304,0.102386496961117,0.810236990451813,0.105493001639843,0.79553097486496,0.110926002264023,0.777723014354706,0.117201000452042,0.761461973190308,0.113477997481823,0.852636992931366,0.111800000071526,0.868556976318359,0.115345999598503,0.835386991500854,0.116959996521473,0.81844699382782,0.120031997561455,0.798521995544434,0.124194502830505,0.778967022895813,0.130872502923012,0.873153984546661,0.130747497081757,0.891665995121002,0.130785003304482,0.854588985443115,0.13069050014019,0.836076974868774,0.131375506520271,0.813932001590729,0.132951006293297,0.791935980319977,0.150295495986938,0.885852992534637,0.152467504143715,0.905018985271454,0.148001000285149,0.867054998874664,0.145961001515388,0.848433017730713,0.143838003277779,0.82506400346756,0.143058001995087,0.800518989562988,0.169357001781464,0.886282026767731,0.174600005149841,0.906624019145966,0.165177002549171,0.867833018302917,0.161626502871513,0.849443018436432,0.158127993345261,0.827071011066437,0.155857503414154,0.802380979061127,0.187283501029015,0.878715991973877,0.195156499743462,0.896408021450043,0.180729493498802,0.861216008663177,0.176076501607895, +0.845561027526855,0.1708614975214,0.824672996997833,0.167162001132965,0.801982998847961,0.181019499897957,0.821599006652832,0.202058002352715,0.864486992359161,0.211709499359131,0.877291023731232,0.193933501839638,0.850961029529572,0.188159003853798,0.838521003723145,0.193729996681213,0.82234799861908,0.202231004834175,0.834074020385742,0.211807504296303,0.844137012958527,0.0634139999747276,0.785771012306213,0.0597570016980171,0.791978001594543,0.0534695014357567,0.748189985752106,0.0569849982857704,0.740921020507813,0.0728859975934029,0.829854011535645,0.0690840035676956,0.837323009967804,0.0864000022411346,0.871577978134155,0.0832215026021004,0.881271004676819,0.105091497302055,0.908693015575409,0.103001996874809,0.920516014099121,0.129405498504639,0.937354028224945,0.128442496061325,0.95108300447464,0.157395496964455,0.952054977416992,0.15837949514389,0.967024028301239,0.186444997787476,0.950406014919281,0.189701497554779,0.963099002838135,0.213673502206802,0.931747019290924,0.218482494354248,0.940652012825012,0.234748005867004,0.898443996906281,0.241920500993729,0.903298020362854,0.114230997860432,0.645931005477905,0.127952501177788,0.614723026752472,0.14079050719738,0.596768021583557,0.0559424981474876,0.797038018703461,0.0498929992318153,0.751492977142334,0.065030001103878,0.843414008617401,0.0796670019626617,0.890286982059479,0.0999474972486496,0.931587994098663,0.126377493143082,0.96465402841568,0.158252999186516,0.980697989463806,0.192948505282402,0.97511100769043,0.222944006323814,0.950178027153015,0.250000506639481,0.908200979232788,0.0717860013246536,0.771519005298615,0.0673979967832565,0.779102027416229,0.0612509995698929,0.735078990459442,0.0655094981193542,0.728775978088379,0.0806765034794807,0.812656998634338,0.0766505002975464,0.82192999124527,0.0930714979767799,0.850854992866516,0.0898159965872765,0.862030982971191,0.109736502170563,0.883710980415344,0.107437498867512,0.897137999534607,0.130496993660927,0.90836501121521,0.130144506692886,0.923110008239746,0.154372006654739,0.922034025192261,0.156065493822098, +0.937072992324829,0.17909799516201,0.923816025257111,0.182834506034851,0.937286019325256,0.202640503644943,0.911638975143433,0.207950994372368,0.922021985054016,0.22053000330925,0.886916995048523,0.227437496185303,0.893523991107941,0.250000506639481,0.860507011413574,0.244890496134758,0.860984027385712,0.23955899477005,0.859512984752655,0.220098495483398,0.850739002227783,0.227456003427505,0.855126023292542,0.23378349840641,0.858202993869781,0.0462919995188713,0.722594022750854,0.0499089993536472,0.718142986297607,0.0539849996566772,0.713423013687134,0.0588539987802505,0.708451986312866,0.0640269964933395,0.702616989612579,0.0696780011057854,0.695756018161774,0.0759755000472069,0.688005983829498,0.083066999912262,0.679361999034882,0.0913800001144409,0.669619977474213,0.101020999252796,0.659130990505219,0.0934899970889091,0.519122004508972,0.0878745019435883,0.489726006984711,0.0999765023589134,0.476042002439499,0.105192996561527,0.506344974040985,0.0835885033011436,0.530094027519226,0.0778874978423119,0.505092024803162,0.0729464963078499,0.542212009429932,0.0677015036344528,0.519025027751923,0.0627769976854324,0.556128978729248,0.0582975000143051,0.53234201669693,0.0553149990737438,0.567529022693634,0.0501280017197132,0.543956995010376,0.0481544993817806,0.577172994613647,0.0425065010786057,0.554328978061676,0.0411750003695488,0.586803019046783,0.0349470004439354,0.56446897983551,0.0338734984397888,0.597931981086731,0.0270594991743565,0.575416028499603,0.0270319990813732,0.607370018959045,0.0194370001554489,0.586987018585205,0.022061500698328,0.61710399389267,0.0135855004191399,0.596203029155731,0.114845000207424,0.456126987934113,0.119153000414371,0.488985002040863,0.128491505980492,0.436037003993988,0.132314994931221,0.473091006278992,0.142981499433517,0.418662995100021,0.145963996648788,0.458761990070343,0.156642496585846,0.399926006793976,0.15854500234127,0.44387099146843,0.166008502244949,0.387816995382309,0.169446006417274,0.42985200881958,0.174190998077393,0.375959008932114,0.179324492812157,0.417605996131897, +0.183479994535446,0.366019010543823,0.188372999429703,0.406976997852325,0.193704500794411,0.355248004198074,0.197726994752884,0.397399008274078,0.204514503479004,0.34400200843811,0.208305492997169,0.386786997318268,0.212596505880356,0.336160987615585,0.215454503893852,0.378697007894516,0.218298003077507,0.328873991966248,0.220979496836662,0.371917992830276,0.223559498786926,0.323924988508224,0.226837500929832,0.366432994604111,0.22800549864769,0.31988400220871,0.231684505939484,0.362533986568451,0.233498498797417,0.315714985132217,0.23675049841404,0.360572993755341,0.238482505083084,0.313300013542175,0.240895003080368,0.358741998672485,0.241972997784615,0.311381995677948,0.244217500090599,0.356312990188599,0.246765002608299,0.308966010808945,0.247849494218826,0.354259014129639,0.249999493360519,0.307610988616943,0.249999493360519,0.353895008563995,0.0434884987771511,0.703356981277466,0.0399994999170303,0.683440029621124,0.0444414988160133,0.678448021411896,0.0474255010485649,0.698552012443542,0.0493899993598461,0.671938002109528,0.0518569983541965,0.691501975059509,0.0547235012054443,0.664390981197357,0.0569199994206429,0.685558974742889,0.0605775006115437,0.656601011753082,0.0624770000576973,0.678893983364105,0.066991999745369,0.648504018783569,0.0685544982552528,0.671589970588684,0.0741195008158684,0.640241980552673,0.075312502682209,0.663658022880554,0.0821380019187927,0.631862998008728,0.0829034969210625,0.654686987400055,0.0909949988126755,0.621719002723694,0.0915485024452209,0.644504010677338,0.100892998278141,0.609959006309509,0.101421497762203,0.63262802362442,0.11209449917078,0.596439003944397,0.113091498613358,0.6180499792099,0.124053500592709,0.580781996250153,0.125674992799759,0.598574995994568,0.136151999235153,0.565002977848053,0.138091996312141,0.581547021865845,0.147902995347977,0.549691021442413,0.15022699534893,0.566964983940125,0.158629506826401,0.534767985343933,0.160375505685806,0.551744997501373,0.168670505285263,0.521241009235382,0.169477000832558,0.539543986320496,0.178488001227379,0.509459972381592, +0.178453996777534,0.528941988945007,0.18843649327755,0.500063002109528,0.187601506710052,0.519914984703064,0.198615998029709,0.49235400557518,0.197221502661705,0.512548983097076,0.207257002592087,0.487381011247635,0.207062005996704,0.50748598575592,0.215982005000114,0.482816010713577,0.216848492622375,0.502579987049103,0.22282400727272,0.480066001415253,0.224664002656937,0.498928993940353,0.228955507278442,0.47885000705719,0.231195494532585,0.497940003871918,0.234635502099991,0.478329986333847,0.236266493797302,0.498605012893677,0.238666504621506,0.478255987167358,0.240121006965637,0.500127017498016,0.241926997900009,0.478487014770508,0.243398994207382,0.501514971256256,0.245121493935585,0.47852098941803,0.246353507041931,0.502633988857269,0.247758492827415,0.478413999080658,0.248767495155334,0.502528011798859,0.25,0.478276997804642,0.25,0.502520978450775,0.0373109988868237,0.670383989810944,0.0336454994976521,0.65463000535965,0.0385985001921654,0.647734999656677,0.041533000767231,0.663551986217499,0.0438739992678165,0.638821005821228,0.0468824990093708,0.656570971012115,0.0499179996550083,0.630541026592255,0.0525914989411831,0.64860200881958,0.0564855001866817,0.623157978057861,0.0587265007197857,0.640600979328156,0.0634170025587082,0.614502012729645,0.0653384998440742,0.631838977336884,0.0709209963679314,0.603717982769012,0.0726490020751953,0.622732996940613,0.0794380009174347,0.592592000961304,0.0809115022420883,0.613146007061005,0.0886680036783218,0.581062972545624,0.0899249985814095,0.603043019771576,0.098692998290062,0.569411993026733,0.0997380018234253,0.590409994125366,0.109762497246265,0.558337986469269,0.111001498997211,0.578034996986389,0.121630996465683,0.544848024845123,0.12287200242281,0.564064979553223,0.133880496025085,0.529474973678589,0.135024502873421,0.548695981502533,0.146055996417999,0.51434201002121,0.146922498941422,0.532931983470917,0.15769450366497,0.499204009771347,0.15820300579071,0.517866015434265,0.168596997857094,0.485123991966248,0.168747499585152,0.504132986068726,0.179123505949974, +0.472485989332199,0.178968995809555,0.492008000612259,0.189557000994682,0.461879998445511,0.189184993505478,0.48199799656868,0.199980497360229,0.453519999980927,0.199345499277115,0.47368198633194,0.207699492573738,0.448334991931915,0.206911996006966,0.468136012554169,0.215326502919197,0.443996995687485,0.214441999793053,0.463878005743027,0.22367849946022,0.441112995147705,0.222109004855156,0.460864007472992,0.22885949909687,0.439925998449326,0.228594496846199,0.459838002920151,0.233922496438026,0.43987300992012,0.23446249961853,0.45924299955368,0.237991005182266,0.43970999121666,0.238336995244026,0.458990007638931,0.241474002599716,0.439754009246826,0.242733001708984,0.458988010883331,0.244669497013092,0.439722001552582,0.245084002614021,0.459336012601852,0.248030006885529,0.439152002334595,0.248018994927406,0.459881991147995,0.249999493360519,0.438924998044968,0.249999493360519,0.459986001253128,0.0289625003933907,0.637512981891632,0.0337079986929893,0.628104984760284,0.0396265015006065,0.619463980197906,0.0463760010898113,0.611436009407043,0.0532450005412102,0.603170990943909,0.060284499078989,0.59340101480484,0.0679704993963242,0.582121014595032,0.0770910009741783,0.570087015628815,0.0867939963936806,0.558493971824646,0.0968040004372597,0.546187996864319,0.108005501329899,0.534763991832733,0.120257496833801,0.519141972064972,0.132907494902611,0.504770994186401,0.145692005753517,0.490296006202698,0.158261999487877,0.477093011140823,0.169056504964828,0.461760014295578,0.179379999637604,0.447988986968994,0.189514502882957,0.437285989522934,0.199697494506836,0.428146004676819,0.208100497722626,0.421151012182236,0.217013999819756,0.414761006832123,0.223182499408722,0.411134004592896,0.228802502155304,0.408091992139816,0.234164506196976,0.40540400147438,0.238958492875099,0.404060989618301,0.242877498269081,0.403203010559082,0.245533496141434,0.403140991926193,0.248509004712105,0.402945011854172,0.249999493360519,0.403014004230499,0.243132993578911,0.625388979911804,0.243861496448517,0.624855995178223,0.242130994796753, +0.625514984130859,0.241181492805481,0.625185012817383,0.240621000528336,0.62465900182724,0.240101993083954,0.624071002006531,0.244186505675316,0.624108016490936,0.244500994682312,0.623088002204895,0.244413495063782,0.622242987155914,0.244325995445251,0.621499001979828,0.243621006608009,0.620976984500885,0.242579996585846,0.621088981628418,0.241469502449036,0.621725022792816,0.240680992603302,0.622406005859375,0.239985004067421,0.623223006725311,0.242365002632141,0.623413980007172,0.243228495121002,0.623327970504761,0.241552501916885,0.623471975326538,0.240803003311157,0.623520016670227,0.243920505046844,0.623219013214111,0.253775000572205,0.00916699972003698,0.25374099612236,0.013760999776423,0.249999493360519,0.0137679995968938,0.2499990016222,0.00930199958384037,0.288064509630203,0.0499380007386208,0.287978500127792,0.0541080012917519,0.284202009439468,0.0453570000827312,0.282831013202667,0.0382900014519691,0.278423488140106,0.0300290007144213,0.27963450551033,0.0360630005598068,0.274251013994217,0.0282290000468493,0.273660510778427,0.0229320004582405,0.267677485942841,0.0206799991428852,0.267435997724533,0.0157880000770092,0.262668490409851,0.0168469995260239,0.262594014406204,0.0121130002662539,0.257770508527756,0.0148590002208948,0.257759988307953,0.0102340001612902,0.288953512907028,0.0513279996812344,0.288916498422623,0.0570509992539883,0.289581000804901,0.0524230003356934,0.289817988872528,0.0583509989082813,0.290255010128021,0.0525970011949539,0.290398985147476,0.0582000017166138,0.291162014007568,0.052726998925209,0.291606485843658,0.0574310012161732,0.29491600394249,0.0479759983718395,0.294400990009308,0.0514830015599728,0.297522485256195,0.04254499822855,0.297876000404358,0.0461070016026497,0.300255507230759,0.0367729999125004,0.300957500934601,0.0402610003948212,0.303610503673553,0.029602000489831,0.304365009069443,0.0329990014433861,0.306464493274689,0.0251659993082285,0.307139009237289,0.0278639998286963,0.309383511543274,0.0218690000474453,0.3099485039711,0.0240630004554987,0.311895996332169,0.0192820001393557, +0.312407493591309,0.0214360002428293,0.314121514558792,0.0171230006963015,0.314583003520966,0.0192900002002716,0.25373300909996,0.0183579996228218,0.25,0.0181009992957115,0.257738500833511,0.0193879995495081,0.262575507164001,0.0214970000088215,0.267462998628616,0.0255159996449947,0.273750990629196,0.0334779992699623,0.278981000185013,0.0417370013892651,0.283349990844727,0.0502180010080338,0.286578506231308,0.057472001761198,0.288070499897003,0.0611880011856556,0.289858013391495,0.0630429983139038,0.291059494018555,0.0631510019302368,0.292901009321213,0.0623660013079643,0.295561999082565,0.0561130009591579,0.298896491527557,0.05027199909091,0.301847994327545,0.0442770011723042,0.305135488510132,0.0367750003933907,0.308017492294312,0.0317890010774136,0.310871005058289,0.0279840007424355,0.313324987888336,0.0253180004656315,0.315489500761032,0.0231849998235703,0.25280749797821,0.0370140001177788,0.250000506639481,0.0362839996814728,0.255756497383118,0.0381200015544891,0.259390503168106,0.039292998611927,0.263280004262924,0.0412359982728958,0.268957495689392,0.0458119995892048,0.274455487728119,0.0512799993157387,0.279112488031387,0.0575769990682602,0.283425003290176,0.0622680000960827,0.286483496427536,0.0667940005660057,0.290285497903824,0.0690340027213097,0.292822003364563,0.0703879967331886,0.296824514865875,0.0720200017094612,0.301694989204407,0.0690599977970123,0.306177496910095,0.0647870004177094,0.309123009443283,0.0594520010054111,0.312103003263474,0.0532689988613129,0.314103990793228,0.0481010004878044,0.316334009170532,0.0438759997487068,0.318561494350433,0.0412620007991791,0.32074499130249,0.039547998458147,0.252478986978531,0.0601590014994144,0.250001013278961,0.0596110001206398,0.281388491392136,0.0824949964880943,0.276330500841141,0.0781219974160194,0.271798998117447,0.072722002863884,0.266542494297028,0.0681570023298264,0.261505991220474,0.0639130026102066,0.258064985275269,0.062135998159647,0.254970014095306,0.0611659996211529,0.28523451089859,0.0868119969964027,0.291494011878967,0.0908150002360344,0.295722991228104, +0.0938849970698357,0.301519513130188,0.098302997648716,0.307836502790451,0.097680002450943,0.313024997711182,0.095051996409893,0.316005498170853,0.0898410007357597,0.318894505500793,0.0833360031247139,0.320995002985001,0.0771899968385696,0.323419988155365,0.0724449977278709,0.325695008039474,0.0700440034270287,0.327984511852264,0.068912997841835,0.252398490905762,0.0922560021281242,0.250001013278961,0.0920369997620583,0.282324492931366,0.115411996841431,0.27649050951004,0.110587000846863,0.271573513746262,0.105089999735355,0.266024500131607,0.100317001342773,0.260924488306046,0.0958520025014877,0.257557511329651,0.0939420014619827,0.254689514636993,0.0930659994482994,0.286777496337891,0.120013996958733,0.294308990240097,0.125056996941566,0.299391001462936,0.12881800532341,0.306196004152298,0.134130999445915,0.312771499156952,0.133130997419357,0.317647486925125,0.129636004567146,0.3203204870224,0.124003000557423,0.322979003190994,0.116860002279282,0.326033502817154,0.111621998250484,0.329241007566452,0.108232997357845,0.331681996583939,0.106462001800537,0.33398848772049,0.105475999414921,0.252286493778229,0.134829998016357,0.252152502536774,0.187565997242928,0.25,0.188407003879547,0.250000506639481,0.135050997138023,0.280548989772797,0.160683006048203,0.276706010103226,0.211282998323441,0.272090494632721,0.206022992730141,0.275031507015228,0.155542999505997,0.270433485507965,0.149569004774094,0.268196493387222,0.200765997171402,0.263888001441956,0.195595994591713,0.265215992927551,0.144084006547928,0.259893000125885,0.190832003951073,0.260423988103867,0.138815999031067,0.257048010826111,0.188546001911163,0.257229000329971,0.13646100461483,0.254357010126114,0.187792003154755,0.254485011100769,0.135500997304916,0.284750491380692,0.16541999578476,0.280443012714386,0.215644001960754,0.292028486728668,0.170021995902061,0.286953002214432,0.220558002591133,0.297046512365341,0.173270002007484,0.291620999574661,0.223859995603561,0.304004013538361,0.177453994750977,0.298297494649887,0.227788001298904,0.311096489429474,0.174827992916107, +0.305756509304047,0.226172000169754,0.316608488559723,0.170242995023727,0.311753511428833,0.222894996404648,0.320198506116867,0.164484992623329,0.315779507160187,0.218349993228912,0.324084013700485,0.157567992806435,0.320095986127853,0.21306100487709,0.328327000141144,0.154756993055344,0.324404507875443,0.21076899766922,0.332129508256912,0.153687998652458,0.328221499919891,0.210207998752594,0.334742993116379,0.153013005852699,0.330895006656647,0.210409000515938,0.337074488401413,0.152537003159523,0.333224505186081,0.211089000105858,0.252874493598938,0.290405005216599,0.249998494982719,0.290491014719009,0.255905985832214,0.290452003479004,0.25959300994873,0.29033300280571,0.263314485549927,0.290428996086121,0.2683424949646,0.290832996368408,0.273405492305756,0.290619999170303,0.277743995189667,0.290300011634827,0.28201299905777,0.289038002490997,0.285344511270523,0.287936985492706,0.289576500654221,0.28514900803566,0.292396992444992,0.283071011304855,0.296651512384415,0.279991000890732,0.30180698633194,0.274892002344131,0.306793004274368,0.270987987518311,0.310433506965637,0.268990010023117,0.3142069876194,0.267343014478683,0.317375987768173,0.268292009830475,0.320425003767014,0.26996898651123,0.322996497154236,0.271084010601044,0.325310498476028,0.271862000226974,0.268518000841141,0.678007006645203,0.268572509288788,0.679188013076782,0.267804503440857,0.679141998291016,0.267767995595932,0.677661001682281,0.270027995109558,0.684696972370148,0.26841801404953,0.681928992271423,0.269152998924255,0.681357979774475,0.270695000886917,0.683929979801178,0.272083014249802,0.687390983104706,0.2725909948349,0.686519026756287,0.274411499500275,0.689500987529755,0.274821996688843,0.688367009162903,0.276693493127823,0.690618991851807,0.276989996433258,0.689427971839905,0.278993487358093,0.690850019454956,0.279065489768982,0.689400017261505,0.283910006284714,0.689061999320984,0.281367003917694,0.690469980239868,0.281153500080109,0.688832998275757,0.283550500869751,0.687600016593933,0.286321491003036,0.687008023262024,0.285932004451752, +0.685658991336823,0.288823485374451,0.684942007064819,0.288199007511139,0.683786988258362,0.290136486291885,0.683737993240356,0.289272487163544,0.682951986789703,0.269126504659653,0.677134990692139,0.268556505441666,0.676401019096375,0.272476494312286,0.674995005130768,0.270536988973618,0.676073014736176,0.270164012908936,0.674776017665863,0.272314488887787,0.673577010631561,0.274679988622665,0.674197971820831,0.27463099360466,0.672625005245209,0.27717998623848,0.673902988433838,0.277162998914719,0.672172009944916,0.280046492815018,0.673933982849121,0.280339002609253,0.672169029712677,0.282878488302231,0.674444019794464,0.283072501420975,0.672717988491058,0.285270005464554,0.675630986690521,0.285692989826202,0.674197018146515,0.287490010261536,0.677241027355194,0.288114011287689,0.676163017749786,0.289011508226395,0.679736971855164,0.289783507585526,0.678965985774994,0.289857000112534,0.681222021579742,0.290809512138367,0.681391000747681,0.290139496326447,0.682317972183228,0.291005998849869,0.682816028594971,0.263684988021851,0.677541971206665,0.263550013303757,0.681168019771576,0.260520488023758,0.682703018188477,0.260803997516632,0.677887976169586,0.264046996831894,0.685195982456207,0.260847985744476,0.687357008457184,0.266393512487411,0.689688980579376,0.264055013656616,0.69309002161026,0.295704990625381,0.687597990036011,0.296431511640549,0.684521973133087,0.299686014652252,0.685625016689301,0.29900449514389,0.690186023712158,0.293915510177612,0.690859019756317,0.297102987766266,0.694867014884949,0.290364503860474,0.694478988647461,0.292923986911774,0.699047982692719,0.286449491977692,0.69768899679184,0.288032501935959,0.703014016151428,0.282750993967056,0.699570000171661,0.283769994974136,0.70525598526001,0.278562486171722,0.699575006961823,0.278418987989426,0.705039978027344,0.274841487407684,0.698164999485016,0.273811995983124,0.702767014503479,0.271596997976303,0.695995986461639,0.269872486591339,0.699850976467133,0.266865491867065,0.696591019630432,0.268871486186981,0.693080008029938,0.296058505773544,0.680770993232727, +0.299184501171112,0.680113971233368,0.294199496507645,0.675302028656006,0.296982496976852,0.672922015190125,0.291646987199783,0.670499980449677,0.293832987546921,0.666876971721649,0.288471013307571,0.667187988758087,0.290214985609055,0.662784993648529,0.284925490617752,0.6649209856987,0.28617051243782,0.660112977027893,0.281554996967316,0.664043009281158,0.282326489686966,0.659030020236969,0.277990490198135,0.664000988006592,0.278614014387131,0.659018993377686,0.274751007556915,0.66472202539444,0.274847507476807,0.659940004348755,0.271523505449295,0.666335999965668,0.27089649438858,0.662168025970459,0.268225997686386,0.668938994407654,0.266862004995346,0.66567599773407,0.265098512172699,0.672973990440369,0.26248499751091,0.671259999275208,0.253260493278503,0.637311995029449,0.253266006708145,0.641873002052307,0.252183496952057,0.598667979240417,0.251918494701385,0.602962017059326,0.270916998386383,0.594515025615692,0.273880004882813,0.593367993831635,0.274262487888336,0.59434700012207,0.271337509155273,0.596074998378754,0.264971494674683,0.596450984477997,0.268020004034042,0.5954629778862,0.268325001001358,0.597681999206543,0.265245497226715,0.599307000637054,0.261166006326675,0.597675025463104,0.261626988649368,0.601287007331848,0.258020013570786,0.598832011222839,0.258358985185623,0.60308301448822,0.25484499335289,0.599058985710144,0.25482851266861,0.603631973266602,0.274227499961853,0.593116998672485,0.274715006351471,0.593649983406067,0.274511009454727,0.592612028121948,0.275036513805389,0.59263801574707,0.274237513542175,0.592019021511078,0.274690508842468,0.591578006744385,0.27376401424408,0.591607987880707,0.274035513401031,0.590889990329742,0.272156000137329,0.589281022548676,0.271315485239029,0.591118991374969,0.268620997667313,0.590686976909637,0.269327014684677,0.587999999523163,0.265278488397598,0.590695977210999,0.265827506780624,0.587580978870392,0.261285006999969,0.590893983840942,0.262105494737625,0.587463974952698,0.257977485656738,0.59103798866272,0.258597999811172,0.587311029434204,0.25517550110817, +0.590771019458771,0.255457013845444,0.586847007274628,0.252451509237289,0.590354025363922,0.252487987279892,0.586405992507935,0.252251505851746,0.596296012401581,0.254785001277924,0.596482992172241,0.257811993360519,0.596482992172241,0.260917007923126,0.595708012580872,0.264824002981186,0.594874024391174,0.267845511436462,0.594214022159576,0.270687997341156,0.593648016452789,0.273669511079788,0.592810988426208,0.273961991071701,0.592805981636047,0.274219512939453,0.592585027217865,0.273984998464584,0.592253983020782,0.273613512516022,0.592009007930756,0.270812511444092,0.592145979404449,0.268092513084412,0.592424988746643,0.26493901014328,0.592633008956909,0.260955989360809,0.593106985092163,0.25780001282692,0.593533992767334,0.254907488822937,0.593418002128601,0.252315014600754,0.593101024627686,0.252272993326187,0.595018982887268,0.254717499017715,0.595120012760162,0.257692486047745,0.595220029354095,0.260785013437271,0.594659984111786,0.264745503664017,0.594027996063232,0.267751485109329,0.593531012535095,0.270563989877701,0.593177974224091,0.273559004068375,0.592504024505615,0.273822009563446,0.592629015445709,0.274062514305115,0.59256500005722,0.273847490549088,0.59237802028656,0.273534506559372,0.592226028442383,0.270539999008179,0.592697978019714,0.267788499593735,0.593284010887146,0.264746010303497,0.59366101026535,0.260761499404907,0.594277024269104,0.257678508758545,0.59485000371933,0.254739999771118,0.594802975654602,0.252236008644104,0.594551026821136,0.25195100903511,0.604043006896973,0.252219498157501,0.61032098531723,0.254950493574142,0.604794979095459,0.255464494228363,0.610826015472412,0.258550494909286,0.604331016540527,0.259786486625671,0.611298978328705,0.261893510818481,0.602584004402161,0.263294488191605,0.611374020576477,0.265498489141464,0.6007199883461,0.267156004905701,0.609911978244781,0.268584489822388,0.598962008953094,0.269760996103287,0.607876002788544,0.271521508693695,0.597159028053284,0.272979497909546,0.604767978191376,0.276985496282578,0.600820004940033,0.274657011032104,0.595264971256256, +0.27538201212883,0.594045996665955,0.278387486934662,0.596342027187347,0.275873512029648,0.592554986476898,0.27844250202179,0.592276990413666,0.275673985481262,0.590658009052277,0.277875006198883,0.588696002960205,0.274804502725601,0.589276015758514,0.276661485433578,0.585014998912811,0.27317750453949,0.58721798658371,0.274520993232727,0.581761002540588,0.270226508378983,0.585218012332916,0.271535485982895,0.579315006732941,0.252783000469208,0.579308986663818,0.252595990896225,0.583424985408783,0.255620986223221,0.583813011646271,0.25594499707222,0.579176008701324,0.258938014507294,0.583796977996826,0.259196996688843,0.579384028911591,0.263099014759064,0.579171001911163,0.26264551281929,0.583950996398926,0.266439497470856,0.584309995174408,0.267280489206314,0.578882992267609,0.252452999353409,0.616021990776062,0.256159991025925,0.615952014923096,0.260224014520645,0.617043018341064,0.264438986778259,0.618956029415131,0.267877995967865,0.618898987770081,0.270650506019592,0.620015978813171,0.275110006332397,0.613606989383698,0.279235988855362,0.60724800825119,0.279105514287949,0.580805003643036,0.276162505149841,0.575869977474213,0.281574010848999,0.585878014564514,0.283044993877411,0.591584026813507,0.281436502933502,0.59961199760437,0.253262996673584,0.571956992149353,0.256848007440567,0.572124004364014,0.259806990623474,0.571740984916687,0.263356506824493,0.570940971374512,0.267701506614685,0.570738017559052,0.272504985332489,0.572777986526489,0.253147512674332,0.689513027667999,0.252757996320724,0.699307978153229,0.257770001888275,0.689710974693298,0.256433486938477,0.700468003749847,0.262215495109558,0.69651198387146,0.259799003601074,0.70378702878952,0.267063498497009,0.710861027240753,0.263084501028061,0.707126975059509,0.265370011329651,0.699509024620056,0.268625497817993,0.702733993530273,0.271838992834091,0.715264022350311,0.27317801117897,0.706314980983734,0.278403997421265,0.709228992462158,0.277640998363495,0.719030976295471,0.284604489803314,0.709546983242035,0.285247504711151,0.719704985618591,0.292453497648239, +0.717562019824982,0.289077490568161,0.707230985164642,0.304107487201691,0.704264998435974,0.298853486776352,0.711933016777039,0.294606000185013,0.702551007270813,0.299551010131836,0.698038995265961,0.307526499032974,0.688400983810425,0.307026505470276,0.695397973060608,0.301609486341476,0.69219297170639,0.302270501852036,0.686505019664764,0.301748991012573,0.679636001586914,0.306617498397827,0.679045021533966,0.29907101392746,0.656917989253998,0.303704500198364,0.666727006435394,0.299277991056442,0.670965015888214,0.295572012662888,0.663895010948181,0.288671493530273,0.648298978805542,0.293602496385574,0.651453971862793,0.29152700304985,0.659080982208252,0.287166506052017,0.656138002872467,0.279747992753983,0.647096991539001,0.283933490514755,0.646941006183624,0.282951503992081,0.654888987541199,0.279065996408463,0.654887974262238,0.268530011177063,0.650889992713928,0.274713009595871,0.648256003856659,0.274841994047165,0.656042993068695,0.27029550075531,0.658908009529114,0.26367449760437,0.657415986061096,0.265461504459381,0.663025975227356,0.258786499500275,0.6632000207901,0.26000851392746,0.670140027999878,0.253993004560471,0.667208015918732,0.253590494394302,0.675769984722137,0.253134995698929,0.685486972332001,0.257570505142212,0.684401988983154,0.253374993801117,0.680257022380829,0.258044511079788,0.678373992443085,0.252893000841141,0.532805979251862,0.253003507852554,0.543537020683289,0.262801498174667,0.543027997016907,0.262153506278992,0.531848013401031,0.266663998365402,0.531359016895294,0.267455011606216,0.543129026889801,0.27251198887825,0.543704986572266,0.271580010652542,0.531226992607117,0.277467489242554,0.532039999961853,0.277963012456894,0.545226991176605,0.284121006727219,0.548629999160767,0.28456848859787,0.534622013568878,0.293496996164322,0.540000975131989,0.291911005973816,0.554488003253937,0.298994988203049,0.560042977333069,0.30248948931694,0.54669600725174,0.310405492782593,0.55417400598526,0.305662512779236,0.566084027290344,0.312140494585037,0.572754979133606,0.317209511995316,0.561105012893677, +0.323698997497559,0.569525003433228,0.318403512239456,0.580622971057892,0.330713510513306,0.603082001209259,0.336672008037567,0.594972014427185,0.341619998216629,0.611508011817932,0.335868000984192,0.615544974803925,0.324437499046326,0.590399026870728,0.330106496810913,0.579846978187561,0.252626985311508,0.519586980342865,0.265605509281158,0.517499983310699,0.261833012104034,0.51883202791214,0.276988506317139,0.516753017902374,0.27055150270462,0.516331017017365,0.284939497709274,0.519222974777222,0.294299513101578,0.524469971656799,0.304055511951447,0.53100997209549,0.313028991222382,0.539050996303558,0.328959494829178,0.55656498670578,0.320966005325317,0.547241985797882,0.336764991283417,0.567399978637695,0.345494508743286,0.586471021175385,0.350643992424011,0.607342004776001,0.267257004976273,0.628636002540588,0.267710506916046,0.632243990898132,0.266231507062912,0.633083999156952,0.265817493200302,0.629212975502014,0.261815011501312,0.63680100440979,0.26171350479126,0.632533013820648,0.264059513807297,0.631012976169586,0.264285504817963,0.63449901342392,0.2586669921875,0.638463020324707,0.258782505989075,0.634279012680054,0.255771487951279,0.640491008758545,0.256165504455566,0.635500013828278,0.267695009708405,0.627960979938507,0.268402487039566,0.632292985916138,0.268329501152039,0.627907991409302,0.268855512142181,0.631389021873474,0.276199012994766,0.621504008769989,0.271758496761322,0.626318991184235,0.281807988882065,0.615463018417358,0.284944504499435,0.602765023708344,0.286453992128372,0.591053009033203,0.284375011920929,0.582903981208801,0.281253486871719,0.575616002082825,0.276940494775772,0.57055801153183,0.272695511579514,0.567174971103668,0.26792299747467,0.565322995185852,0.263391494750977,0.564988017082214,0.259795010089874,0.565100014209747,0.256550014019012,0.56530100107193,0.253284990787506,0.565268993377686,0.254604488611221,0.6178839802742,0.25332498550415,0.619180977344513,0.253072500228882,0.618520021438599,0.2544204890728,0.617473006248474,0.252771496772766,0.620926022529602,0.252393007278442, +0.620648980140686,0.252708494663239,0.623124003410339,0.252447992563248,0.62322199344635,0.253374487161636,0.626138985157013,0.253098487854004,0.626078009605408,0.254341512918472,0.627753973007202,0.254245489835739,0.628264009952545,0.256211996078491,0.629208981990814,0.256152004003525,0.629703998565674,0.258223503828049,0.629247009754181,0.258379995822906,0.629899024963379,0.260576009750366,0.627852022647858,0.260859996080399,0.628371000289917,0.261659502983093,0.626362025737762,0.262205004692078,0.626573979854584,0.262118488550186,0.623908996582031,0.260821998119354,0.621317028999329,0.261280506849289,0.621195018291473,0.262713491916656,0.62398099899292,0.25687849521637,0.618089020252228,0.256935000419617,0.617698013782501,0.25968399643898,0.619268000125885,0.259436994791031,0.619687974452972,0.253725498914719,0.619821012020111,0.253300487995148,0.621360003948212,0.253230005502701,0.623236000537872,0.25374299287796,0.625726997852325,0.254481494426727,0.626850008964539,0.256278991699219,0.628174006938934,0.258035987615585,0.628427982330322,0.260428011417389,0.627265989780426,0.261115491390228,0.626416981220245,0.261449486017227,0.623872995376587,0.260302007198334,0.621461987495422,0.259161502122879,0.620235979557037,0.256836503744125,0.618589997291565,0.254828989505768,0.618393003940582,0.253931492567062,0.617040991783142,0.25703901052475,0.617226004600525,0.260679990053177,0.619002997875214,0.261878997087479,0.621071994304657,0.263523489236832,0.624145984649658,0.262723505496979,0.627052009105682,0.261067986488342,0.629050016403198,0.258549511432648,0.630515992641449,0.256069511175156,0.630411028862,0.253962993621826,0.628947019577026,0.252213001251221,0.626435995101929,0.251579493284225,0.6233189702034,0.251594990491867,0.620082020759583,0.252552509307861,0.617654979228973,0.256060510873795,0.633359014987946,0.253262996673584,0.63325297832489,0.253433495759964,0.630351006984711,0.255998998880386,0.631502985954285,0.252156496047974,0.61674302816391,0.258687496185303,0.632697999477386,0.258612513542175,0.631448984146118, +0.261242985725403,0.629889011383057,0.261489003896713,0.631026029586792,0.261972993612289,0.625086009502411,0.261323988437653,0.625113010406494,0.26265150308609,0.625141978263855,0.263429999351501,0.625455975532532,0.263177514076233,0.627781987190247,0.263622999191284,0.629011988639832,0.264256000518799,0.625981986522675,0.264674514532089,0.624561011791229,0.265112489461899,0.627295970916748,0.266052007675171,0.626025021076202,0.26426500082016,0.622452974319458,0.266342490911484,0.624786972999573,0.26427149772644,0.62119597196579,0.266718506813049,0.624116003513336,0.254055500030518,0.662506997585297,0.258266001939774,0.659588992595673,0.262504488229752,0.654349029064178,0.253708004951477,0.650106012821198,0.253387004137039,0.646946012973785,0.256406992673874,0.64828097820282,0.256227493286133,0.645528018474579,0.259243488311768,0.646856009960175,0.258807986974716,0.643661975860596,0.253794491291046,0.654904007911682,0.257110506296158,0.653129994869232,0.260390013456345,0.650086998939514,0.25399249792099,0.65903502702713,0.257798492908478,0.656493008136749,0.261707991361618,0.65216600894928,0.253238499164581,0.644419014453888,0.256011486053467,0.643065989017487,0.258672505617142,0.641404986381531,0.268108993768692,0.63636302947998,0.267480999231339,0.636408984661102,0.267028003931046,0.641964018344879,0.266667991876602,0.641023993492126,0.265563488006592,0.645573973655701,0.265646487474442,0.643495976924896,0.262881994247437,0.646453022956848,0.26341849565506,0.644124984741211,0.261337995529175,0.645662009716034,0.261389493942261,0.643172979354858,0.261169493198395,0.64038097858429,0.265345007181168,0.64205002784729,0.265718013048172,0.640097975730896,0.266116499900818,0.637256026268005,0.26442751288414,0.637435019016266,0.264319986104965,0.639678001403809,0.263961493968964,0.641844987869263,0.262708008289337,0.641686022281647,0.262797504663467,0.639894008636475,0.263018488883972,0.638015985488892,0.268639504909515,0.636339008808136,0.267449498176575,0.642177999019623,0.266027987003326,0.647140979766846,0.27030348777771, +0.642378985881805,0.271834492683411,0.632983982563019,0.275422513484955,0.63995498418808,0.276183485984802,0.631178975105286,0.280464500188828,0.638759016990662,0.281165510416031,0.629393994808197,0.285172492265701,0.638364017009735,0.286384999752045,0.628085970878601,0.287954986095428,0.616244971752167,0.292302012443542,0.629316985607147,0.290538012981415,0.639819025993347,0.298640489578247,0.633620977401733,0.296200513839722,0.643778026103973,0.30528798699379,0.641750991344452,0.302130490541458,0.650923013687134,0.311465501785278,0.654627025127411,0.307675004005432,0.662361025810242,0.31633448600769,0.67126202583313,0.311825007200241,0.678201019763947,0.294538497924805,0.618247985839844,0.301569014787674,0.622868001461029,0.308800995349884,0.63093900680542,0.315914988517761,0.643792986869812,0.28983399271965,0.604360997676849,0.30417600274086,0.612200975418091,0.311870008707047,0.621967017650604,0.296555012464523,0.607011020183563,0.30638200044632,0.603459000587463,0.314099997282028,0.613862991333008,0.298771500587463,0.597555994987488,0.291812002658844,0.593737006187439,0.296223491430283,0.586037993431091,0.290244489908218,0.58406800031662,0.302711993455887,0.590183973312378,0.309338510036469,0.596346974372864,0.287422001361847,0.577637016773224,0.29016250371933,0.566488981246948,0.295234501361847,0.571559011936188,0.282844007015228,0.569772005081177,0.283816486597061,0.560257971286774,0.277754008769989,0.563971996307373,0.278136491775513,0.555670976638794,0.272962003946304,0.560878992080688,0.27293449640274,0.553191006183624,0.267972499132156,0.551856994628906,0.268044501543045,0.559246003627777,0.263488501310349,0.558660984039307,0.263380497694016,0.551401019096375,0.258780509233475,0.532539010047913,0.258393496274948,0.519730985164642,0.258891493082047,0.54338800907135,0.255659013986588,0.532949984073639,0.255347013473511,0.519771993160248,0.255896508693695,0.543422996997833,0.256345003843307,0.55843198299408,0.259725511074066,0.558526992797852,0.259326994419098,0.551403999328613,0.255982488393784,0.551428020000458, +0.253296494483948,0.558350026607513,0.253242999315262,0.55178701877594,0.300841003656387,0.576370000839233,0.307164996862411,0.581893980503082,0.313145995140076,0.588699996471405,0.319864988327026,0.598313987255096,0.316591501235962,0.606469988822937,0.32652148604393,0.610563993453979,0.323359489440918,0.618417024612427,0.320717990398407,0.626675009727478,0.318294495344162,0.635035991668701,0.332266509532928,0.621690988540649,0.329744011163712,0.629588007926941,0.327080488204956,0.639935970306396,0.324063986539841,0.648526012897491,0.320241004228592,0.658674001693726,0.269605994224548,0.680939972400665,0.271083503961563,0.683443009853363,0.272950500249863,0.685809016227722,0.275104999542236,0.687537014484406,0.27717998623848,0.688637018203735,0.279112011194229,0.68852698802948,0.281037509441376,0.687940001487732,0.283344507217407,0.686775028705597,0.285710990428925,0.684930980205536,0.287853986024857,0.683189988136292,0.288798004388809,0.68249899148941,0.289645493030548,0.682121992111206,0.289295494556427,0.681246995925903,0.288572996854782,0.680213987827301,0.287131011486053,0.677857995033264,0.285003006458282,0.676594018936157,0.282754510641098,0.675486981868744,0.279866009950638,0.675007998943329,0.277184993028641,0.674902975559235,0.274704486131668,0.675091981887817,0.272561490535736,0.675809979438782,0.270743012428284,0.67687201499939,0.269450008869171,0.677703022956848,0.268932491540909,0.678207993507385,0.269075989723206,0.67908501625061,0.266021013259888,0.677214026451111,0.267169505357742,0.674534976482391,0.269293993711472,0.671800971031189,0.27198401093483,0.669854998588562,0.274679988622665,0.668690979480743,0.277495503425598,0.668105006217957,0.280912011861801,0.668148994445801,0.283883512020111,0.668860971927643,0.28701451420784,0.670783996582031,0.289826512336731,0.673427999019623,0.291882991790771,0.677178978919983,0.293449491262436,0.681286990642548,0.293716013431549,0.683622002601624,0.265964508056641,0.679718017578125,0.266641497612,0.683211028575897,0.268308997154236,0.686703026294708,0.270525991916656, +0.690023005008698,0.273052990436554,0.692709028720856,0.275743514299393,0.694281995296478,0.278739988803864,0.695034027099609,0.281976014375687,0.694850981235504,0.285189986228943,0.693259000778198,0.288235485553741,0.690825998783112,0.291281014680862,0.687843024730682,0.292968511581421,0.685572028160095,0.252839505672455,0.711372017860413,0.255010008811951,0.712368011474609,0.257951498031616,0.715638995170593,0.261786490678787,0.719727993011475,0.266971498727798,0.724563002586365,0.272827506065369,0.728500008583069,0.279507994651794,0.730798006057739,0.287264496088028,0.730232000350952,0.296489000320435,0.726179003715515,0.304675996303558,0.717763006687164,0.309027493000031,0.707279980182648,0.311040014028549,0.697210013866425,0.311421006917953,0.68885600566864,0.335561513900757,0.684817016124725,0.335691511631012,0.699043989181519,0.335069000720978,0.699360013008118,0.334859997034073,0.683960020542145,0.336973994970322,0.709532976150513,0.336432009935379,0.710552990436554,0.339789986610413,0.718922972679138,0.339516997337341,0.720903992652893,0.342222988605499,0.722625970840454,0.342041492462158,0.724469006061554,0.343948513269424,0.726213991641998,0.344125986099243,0.724400997161865,0.346250504255295,0.725318014621735,0.346175491809845,0.727301001548767,0.349115490913391,0.728120028972626,0.34893199801445,0.725126981735229,0.351742506027222,0.723957002162933,0.35249650478363,0.72782301902771,0.354418009519577,0.721651971340179,0.355586498975754,0.724829971790314,0.358278512954712,0.718697011470795,0.357026010751724,0.716692984104156,0.359008997678757,0.708866000175476,0.360058009624481,0.710051000118256,0.360234498977661,0.698786973953247,0.361340492963791,0.699388027191162,0.360599994659424,0.686112999916077,0.362100005149841,0.686103999614716,0.359672993421555,0.672499001026154,0.3612459897995,0.671782970428467,0.357086002826691,0.658874988555908,0.358385503292084,0.65801602602005,0.352394014596939,0.648038983345032,0.35385000705719,0.647033989429474,0.348870992660522,0.642624020576477,0.350423008203506,0.641662001609802, +0.346656501293182,0.639490008354187,0.348343998193741,0.63918399810791,0.337918996810913,0.687475025653839,0.338140994310379,0.696546971797943,0.336732000112534,0.698044002056122,0.336589485406876,0.686260998249054,0.337999999523163,0.707888007164001,0.33916649222374,0.706073999404907,0.340297013521194,0.716181993484497,0.341238498687744,0.714219987392426,0.343499511480331,0.717193007469177,0.342577487230301,0.720022022724152,0.346754491329193,0.71949702501297,0.346468508243561,0.722526013851166,0.344526499509811,0.721877992153168,0.345309495925903,0.719303011894226,0.351146012544632,0.721342027187347,0.34876948595047,0.722436010837555,0.348521500825882,0.71943199634552,0.350524991750717,0.718208014965057,0.352825492620468,0.715838015079498,0.353466510772705,0.71915602684021,0.357563495635986,0.706914007663727,0.356038004159927,0.714896976947784,0.354566514492035,0.710956990718842,0.355615496635437,0.704366028308868,0.358425498008728,0.697179019451141,0.356243997812271,0.695707976818085,0.359070003032684,0.685952007770538,0.35632050037384,0.685364007949829,0.358545005321503,0.673547029495239,0.355342000722885,0.674033999443054,0.355758488178253,0.659717977046967,0.352948009967804,0.662418007850647,0.350765496492386,0.649461984634399,0.348744004964828,0.654570996761322,0.347026497125626,0.645754992961884,0.345250487327576,0.648808002471924,0.34443199634552,0.642207026481628,0.34187850356102,0.644676983356476,0.332774996757507,0.685693979263306,0.334035485982895,0.699805974960327,0.332644492387772,0.703449010848999,0.330910503864288,0.691510021686554,0.335669010877609,0.711163997650146,0.334506511688232,0.713210999965668,0.338149011135101,0.720893025398254,0.337178498506546,0.72257000207901,0.340283513069153,0.727679014205933,0.339742988348007,0.730370998382568,0.341719508171082,0.734543979167938,0.342729508876801,0.731959998607635,0.34570449590683,0.734992980957031,0.344842493534088,0.738358020782471,0.349205493927002,0.741217017173767,0.349408507347107,0.736533999443054,0.353508502244949,0.735183000564575,0.354048997163773, +0.740377008914948,0.35776099562645,0.731006026268005,0.359775990247726,0.734951972961426,0.362453997135162,0.728003025054932,0.360927492380142,0.723843991756439,0.363557994365692,0.713927984237671,0.365344494581223,0.717984974384308,0.36531201004982,0.701382994651794,0.36761799454689,0.704948008060455,0.365864485502243,0.686614990234375,0.368337005376816,0.688691020011902,0.365069001913071,0.670446991920471,0.367407500743866,0.670822024345398,0.36157700419426,0.654452979564667,0.363658010959625,0.652954995632172,0.356227487325668,0.642093002796173,0.359237998723984,0.642184972763062,0.351521492004395,0.635040998458862,0.352908998727798,0.631193995475769,0.347471505403519,0.627799987792969,0.346945494413376,0.63230299949646,0.342857003211975,0.632497012615204,0.342823505401611,0.629531979560852,0.33397650718689,0.684682011604309,0.33466449379921,0.699160993099213,0.336138486862183,0.71060699224472,0.338669985532761,0.720175981521606,0.341066986322403,0.725978016853333,0.343422502279282,0.72917902469635,0.346088498830795,0.731456995010376,0.34934601187706,0.732443988323212,0.353071004152298,0.731702029705048,0.356577008962631,0.727905988693237,0.359576493501663,0.721177995204926,0.361774504184723,0.71161299943924,0.36336550116539,0.699881017208099,0.364066988229752,0.686003983020782,0.36302050948143,0.670897006988525,0.359859496355057,0.656539976596832,0.355160504579544,0.645197987556458,0.351428002119064,0.639313995838165,0.347589492797852,0.635655999183655,0.344891995191574,0.636729001998901,0.343478500843048,0.639159977436066,0.340784996747971,0.641453981399536,0.339127004146576,0.651820003986359,0.338472008705139,0.641332983970642,0.342582494020462,0.654371976852417,0.344970494508743,0.657454013824463,0.348942995071411,0.665696978569031,0.351143002510071,0.672670006752014,0.353232502937317,0.683126986026764,0.353730499744415,0.69369900226593,0.352052509784698,0.700195014476776,0.350955009460449,0.704814970493317,0.348741501569748,0.708700001239777,0.347005009651184,0.713589012622833,0.343605995178223,0.709569990634918, +0.341238498687744,0.703606009483337,0.340660989284515,0.695272028446198,0.341623991727829,0.688120007514954,0.346389502286911,0.705267012119293,0.348114490509033,0.699916005134583,0.348895013332367,0.696011006832123,0.350300997495651,0.689942002296448,0.35028749704361,0.682476997375488,0.347757995128632,0.675949990749359,0.345757991075516,0.669167995452881,0.343998491764069,0.702444970607758,0.344536006450653,0.696618974208832,0.344636499881744,0.689943015575409,0.346013486385345,0.685019016265869,0.342593491077423,0.679075002670288,0.340103507041931,0.677218019962311,0.34206348657608,0.664395987987518,0.34145250916481,0.660125970840454,0.338232487440109,0.676133990287781,0.337414503097534,0.673039019107819,0.339709997177124,0.658972024917603,0.337334990501404,0.663550972938538,0.336933493614197,0.666603982448578,0.336303502321243,0.665341973304749,0.336641997098923,0.662744998931885,0.336723506450653,0.671791970729828,0.335300505161285,0.670817971229553,0.338055998086929,0.661297023296356,0.336436986923218,0.659174978733063,0.332838505506516,0.670985996723175,0.335133999586105,0.654703974723816,0.348838001489639,0.61940997838974,0.34282198548317,0.622816026210785,0.331250488758087,0.647450983524323,0.328440010547638,0.65819901227951,0.333881497383118,0.63740199804306,0.328570008277893,0.677618026733398,0.324867010116577,0.666863024234772,0.317126005887985,0.684960007667542,0.317265003919601,0.697008013725281,0.322894990444183,0.682821989059448,0.324099510908127,0.694773018360138,0.316469013690948,0.709517002105713,0.32515549659729,0.707310974597931,0.321487486362457,0.673511028289795,0.336342513561249,0.631029009819031,0.338607996702194,0.625510990619659,0.339635998010635,0.634809970855713,0.340741008520126,0.631102025508881,0.355214506387711,0.625464975833893,0.358587503433228,0.613905012607574,0.362410992383957,0.637789011001587,0.367662996053696,0.62737101316452,0.368358492851257,0.651888012886047,0.376649498939514,0.650072991847992,0.372832000255585,0.672698974609375,0.383657485246658,0.677536010742188,0.373785495758057, +0.694979012012482,0.3836629986763,0.707062005996704,0.380268007516861,0.729927003383636,0.372084498405457,0.713590979576111,0.369204014539719,0.728817999362946,0.375833004713058,0.747358977794647,0.365467488765717,0.74067497253418,0.37066051363945,0.759658992290497,0.364277005195618,0.770135998725891,0.361431509256363,0.749881029129028,0.356426000595093,0.777001976966858,0.355351507663727,0.756498992443085,0.348199486732483,0.758722007274628,0.329210013151169,0.732671022415161,0.326638013124466,0.720229029655457,0.332406491041183,0.743241012096405,0.336215496063232,0.751170992851257,0.341697007417679,0.756187975406647,0.314027488231659,0.72614598274231,0.319262504577637,0.744008004665375,0.323412001132965,0.759157001972198,0.329035997390747,0.7724329829216,0.337280511856079,0.777195990085602,0.346686005592346,0.778909027576447,0.301910996437073,0.739359974861145,0.290859997272491,0.746022999286652,0.281861990690231,0.747789025306702,0.273970991373062,0.746074974536896,0.267850995063782,0.743619024753571,0.262557506561279,0.739817976951599,0.258731007575989,0.736837029457092,0.255517989397049,0.734260976314545,0.252684503793716,0.730440974235535,0.253008991479874,0.759733021259308,0.253081500530243,0.788484990596771,0.256092011928558,0.760792970657349,0.256509512662888,0.789866983890533,0.259527504444122,0.763137996196747,0.260511994361877,0.791312992572784,0.263825505971909,0.765802025794983,0.265065997838974,0.793214976787567,0.26944100856781,0.76843398809433,0.271245002746582,0.79524302482605,0.276311486959457,0.770296990871429,0.278091490268707,0.795611977577209,0.284839987754822,0.770413994789124,0.28796848654747,0.793654024600983,0.294537991285324,0.767175018787384,0.298517495393753,0.789752006530762,0.306416004896164,0.758189976215363,0.311574995517731,0.777139008045197,0.317566514015198,0.802133023738861,0.30323600769043,0.808032989501953,0.29280149936676,0.814251005649567,0.282337009906769,0.819706976413727,0.275034993886948,0.822198987007141,0.268326014280319,0.822997987270355,0.262980997562408,0.823148012161255, +0.258239507675171,0.822463989257813,0.254031985998154,0.821981012821198,0.394979000091553,0.683301985263824,0.394485503435135,0.716187000274658,0.402597010135651,0.690550982952118,0.401022493839264,0.724617004394531,0.407197505235672,0.73328298330307,0.409780502319336,0.69760799407959,0.417425513267517,0.706143021583557,0.412950485944748,0.743135988712311,0.418318003416061,0.753111004829407,0.423737496137619,0.714048981666565,0.429497987031937,0.721826016902924,0.42340099811554,0.76275497674942,0.410896003246307,0.790363013744354,0.41523951292038,0.802120983600616,0.406771510839462,0.778508007526398,0.40226998925209,0.766219019889832,0.388927489519119,0.740415990352631,0.396097511053085,0.752819001674652,0.403736501932144,0.838316023349762,0.400455504655838,0.824267983436584,0.397614002227783,0.810235023498535,0.394507497549057,0.795529007911682,0.389074504375458,0.777720987796783,0.382799506187439,0.76146000623703,0.388200998306274,0.868555009365082,0.386523008346558,0.852635025978088,0.384654998779297,0.835385978221893,0.383040994405746,0.818445026874542,0.379968494176865,0.798520028591156,0.375806510448456,0.778964996337891,0.369253486394882,0.891664028167725,0.369128495454788,0.873152017593384,0.369215488433838,0.854587018489838,0.369309991598129,0.836075007915497,0.368624985218048,0.813930988311768,0.367049992084503,0.791934013366699,0.347533494234085,0.905017971992493,0.3497054874897,0.885851979255676,0.351999998092651,0.867053985595703,0.354039490222931,0.848430991172791,0.356162488460541,0.825061976909637,0.356943011283875,0.800517022609711,0.32540100812912,0.906623005867004,0.330644011497498,0.88628101348877,0.334823489189148,0.867832005023956,0.338373988866806,0.849442005157471,0.341872990131378,0.827069997787476,0.344143003225327,0.802379012107849,0.304844498634338,0.896407008171082,0.312717497348785,0.878714978694916,0.319271504878998,0.861214995384216,0.323924511671066,0.845560014247894,0.3291395008564,0.824671983718872,0.332839012145996,0.801981985569,0.318980991840363,0.821599006652832,0.28829151391983, +0.877290010452271,0.297942996025085,0.8644859790802,0.306067496538162,0.85096001625061,0.311841487884521,0.838519990444183,0.306270509958267,0.822346985340118,0.297769993543625,0.834074020385742,0.288193494081497,0.844135999679565,0.436586499214172,0.78576797246933,0.443015486001968,0.740917980670929,0.446530997753143,0.748187005519867,0.440243989229202,0.791975021362305,0.427114993333817,0.829850971698761,0.430916994810104,0.837320029735565,0.416779488325119,0.881268978118896,0.413600504398346,0.871576011180878,0.396999001502991,0.920513987541199,0.394909501075745,0.908690989017487,0.371558487415314,0.951081991195679,0.370595514774323,0.937353014945984,0.341621994972229,0.967023015022278,0.342605501413345,0.952053010463715,0.31029999256134,0.963097989559174,0.313556492328644,0.95040500164032,0.281518489122391,0.940652012825012,0.286327987909317,0.931746006011963,0.258080512285233,0.903298020362854,0.265253007411957,0.898443996906281,0.385769009590149,0.645928978919983,0.372047513723373,0.61472100019455,0.359209507703781,0.596767008304596,0.450107991695404,0.751489996910095,0.444058507680893,0.797034978866577,0.434970498085022,0.843411028385162,0.420334011316299,0.890285015106201,0.400054007768631,0.931586027145386,0.373623490333557,0.964652001857758,0.341748505830765,0.980696976184845,0.307052999734879,0.975109994411469,0.277057498693466,0.950177013874054,0.428214490413666,0.771516978740692,0.434491008520126,0.728774011135101,0.438749492168427,0.735076010227203,0.432603001594543,0.779098987579346,0.419324487447739,0.812654972076416,0.423350512981415,0.821928024291992,0.410185009241104,0.862029016017914,0.406929492950439,0.850852012634277,0.392563492059708,0.897135972976685,0.390264511108398,0.883709013462067,0.369856506586075,0.923107981681824,0.369504004716873,0.908362984657288,0.343935489654541,0.937071979045868,0.345629006624222,0.9220330119133,0.31716650724411,0.937285006046295,0.32090350985527,0.923815011978149,0.292050004005432,0.922020971775055,0.297360509634018,0.911638021469116,0.272563993930817,0.893523991107941, +0.279471009969711,0.886916995048523,0.255110502243042,0.860984027385712,0.260441988706589,0.859512984752655,0.27990248799324,0.850737988948822,0.272545009851456,0.85512501001358,0.26621749997139,0.858202993869781,0.453708499670029,0.722590982913971,0.450091511011124,0.718140006065369,0.446015506982803,0.71341997385025,0.441146492958069,0.708449006080627,0.43597349524498,0.702615022659302,0.430322498083115,0.695753991603851,0.424024492502213,0.68800300359726,0.416933506727219,0.679359972476959,0.408619999885559,0.669618010520935,0.398979008197784,0.659129023551941,0.40650948882103,0.519119024276733,0.394807010889053,0.506343007087708,0.400023013353348,0.476040005683899,0.412124991416931,0.489724010229111,0.416411489248276,0.530090987682343,0.422111988067627,0.505088984966278,0.427053511142731,0.542209029197693,0.432298004627228,0.519021987915039,0.437222987413406,0.55612701177597,0.441702008247375,0.532338976860046,0.444685012102127,0.567526996135712,0.449871987104416,0.543954014778137,0.451844990253448,0.577170014381409,0.457493007183075,0.554325997829437,0.458824992179871,0.5867999792099,0.465052992105484,0.564465999603271,0.466126501560211,0.597927987575531,0.472940504550934,0.57541298866272,0.472968012094498,0.607366979122162,0.480563014745712,0.586983978748322,0.477939009666443,0.617101013660431,0.48641449213028,0.596199989318848,0.380846500396729,0.488983988761902,0.385154485702515,0.456124991178513,0.36768451333046,0.473089009523392,0.371508002281189,0.436035007238388,0.354035496711731,0.458761006593704,0.357017487287521,0.418662011623383,0.34145450592041,0.443870007991791,0.343356996774673,0.399924993515015,0.330552995204926,0.429850995540619,0.33399099111557,0.387814998626709,0.320674985647202,0.417605012655258,0.325808495283127,0.375957012176514,0.311626493930817,0.406976014375687,0.316519498825073,0.366017997264862,0.302272498607635,0.397397994995117,0.30629500746727,0.355246990919113,0.291693985462189,0.386786997318268,0.295484513044357,0.344000995159149,0.284545004367828,0.378695994615555,0.287402510643005, +0.336160987615585,0.279019504785538,0.371917992830276,0.281700998544693,0.328873991966248,0.273161500692368,0.366432994604111,0.276439487934113,0.323924988508224,0.268314510583878,0.362533986568451,0.271993488073349,0.31988400220871,0.26324850320816,0.360572993755341,0.266500502824783,0.315714985132217,0.259104013442993,0.358741998672485,0.261516511440277,0.313299000263214,0.255781501531601,0.356312990188599,0.258026003837585,0.311381995677948,0.252149492502213,0.354259014129639,0.253233999013901,0.308966010808945,0.456511497497559,0.703354001045227,0.452574491500854,0.698548972606659,0.455558508634567,0.678444981575012,0.460000991821289,0.683436989784241,0.448143512010574,0.691498994827271,0.450610488653183,0.671935021877289,0.443080514669418,0.685555994510651,0.445276498794556,0.664388000965118,0.437523007392883,0.678891003131866,0.439422994852066,0.656597971916199,0.431445509195328,0.671586990356445,0.43300849199295,0.648500978946686,0.424687504768372,0.663655996322632,0.425880491733551,0.640239000320435,0.417096495628357,0.654685020446777,0.417861998081207,0.631860971450806,0.40845200419426,0.644500970840454,0.409004986286163,0.621716976165771,0.398578494787216,0.632625997066498,0.39910700917244,0.609956979751587,0.386908501386642,0.618048012256622,0.3879055082798,0.596437990665436,0.374325007200241,0.59857302904129,0.37594598531723,0.580780029296875,0.361907988786697,0.581546008586884,0.363848000764847,0.565002024173737,0.34977251291275,0.566963016986847,0.352097004652023,0.549688994884491,0.339623987674713,0.551743984222412,0.341370493173599,0.534766018390656,0.330523014068604,0.539542973041534,0.331328988075256,0.521239995956421,0.321545988321304,0.528940975666046,0.321511507034302,0.509459018707275,0.312398493289948,0.519913971424103,0.311562985181808,0.500061988830566,0.302778512239456,0.51254802942276,0.301384001970291,0.492352992296219,0.292937994003296,0.507484972476959,0.292742490768433,0.487379997968674,0.283151000738144,0.502578973770142,0.284017503261566,0.482816010713577,0.275335997343063,0.498928993940353, +0.277175486087799,0.480066001415253,0.268804013729095,0.497940003871918,0.271043986082077,0.478848993778229,0.263733506202698,0.498605012893677,0.265363991260529,0.478329986333847,0.259878486394882,0.500127017498016,0.261332988739014,0.478255987167358,0.256601005792618,0.50151401758194,0.25807249546051,0.478487014770508,0.253646492958069,0.502633988857269,0.254878014326096,0.47852098941803,0.251231998205185,0.502528011798859,0.252240985631943,0.478413999080658,0.462689489126205,0.670381009578705,0.45846700668335,0.66354900598526,0.461401998996735,0.647732019424438,0.466354489326477,0.654627025127411,0.453117996454239,0.656567990779877,0.456126004457474,0.638818025588989,0.447408497333527,0.648599028587341,0.450082004070282,0.630537986755371,0.441273510456085,0.640597999095917,0.443514496088028,0.623154997825623,0.434661507606506,0.631835997104645,0.436583012342453,0.614498972892761,0.427350997924805,0.622730016708374,0.429078996181488,0.603716015815735,0.419088512659073,0.613143980503082,0.420561999082565,0.592589974403381,0.410075008869171,0.603039979934692,0.411332011222839,0.581061005592346,0.400261998176575,0.590408027172089,0.401306986808777,0.569409012794495,0.388998001813889,0.578032970428467,0.390237510204315,0.558336019515991,0.377128005027771,0.564064025878906,0.378369003534317,0.544845998287201,0.36497551202774,0.548694014549255,0.366119503974915,0.529473006725311,0.353077501058578,0.5329310297966,0.35394349694252,0.514340996742249,0.341796487569809,0.517865002155304,0.34230500459671,0.499202996492386,0.331252485513687,0.504131972789764,0.331402987241745,0.485123008489609,0.321030497550964,0.492006987333298,0.320876002311707,0.47248500585556,0.310814499855042,0.48199799656868,0.310442507266998,0.46187898516655,0.300654500722885,0.473681002855301,0.30001899600029,0.453518986701965,0.293087512254715,0.468136012554169,0.29229998588562,0.448334008455276,0.285557508468628,0.463878005743027,0.284673005342484,0.443996995687485,0.277890503406525,0.460862994194031,0.276320993900299,0.441112995147705,0.271405011415482, +0.459838002920151,0.27114000916481,0.439925998449326,0.265536993741989,0.459241986274719,0.266077011823654,0.43987300992012,0.261662513017654,0.458990007638931,0.262008488178253,0.43970999121666,0.257266491651535,0.458988010883331,0.258525490760803,0.439754009246826,0.254915505647659,0.459336012601852,0.255329489707947,0.439722001552582,0.251980513334274,0.459881991147995,0.251969486474991,0.439152002334595,0.46629199385643,0.628102004528046,0.47103750705719,0.637510001659393,0.460373491048813,0.619460999965668,0.45362401008606,0.611433029174805,0.446754992008209,0.60316801071167,0.439715504646301,0.593398988246918,0.432029485702515,0.582118988037109,0.422908514738083,0.570083975791931,0.4132060110569,0.558492004871368,0.403196007013321,0.546185970306396,0.391993999481201,0.534762024879456,0.379741996526718,0.519140005111694,0.367092490196228,0.504769027233124,0.354307502508163,0.490294992923737,0.341737508773804,0.477091997861862,0.330942988395691,0.461757987737656,0.320619493722916,0.447986990213394,0.310485005378723,0.437285006046295,0.300301998853683,0.428144991397858,0.291898995637894,0.421149998903275,0.282985508441925,0.414759993553162,0.276816993951797,0.411132991313934,0.271196991205215,0.408091008663177,0.265834987163544,0.40540400147438,0.261040985584259,0.404060989618301,0.257121503353119,0.403203010559082,0.254465997219086,0.403140991926193,0.251489996910095,0.402945011854172,0.256138503551483,0.624855995178223,0.256867498159409,0.625388979911804,0.257869005203247,0.625514984130859,0.258819013834,0.625185012817383,0.259379506111145,0.62465900182724,0.259898006916046,0.624071002006531,0.255813509225845,0.624108016490936,0.255499005317688,0.623088002204895,0.255586504936218,0.622242987155914,0.255674511194229,0.621499001979828,0.256379008293152,0.620976984500885,0.257420003414154,0.621088981628418,0.258530497550964,0.621725022792816,0.259319007396698,0.622406005859375,0.26001501083374,0.623223006725311,0.256771504878998,0.623327970504761,0.257634997367859,0.623413980007172,0.258447498083115,0.623471975326538, +0.259197503328323,0.623519003391266,0.256079494953156,0.623219013214111,0.246223002672195,0.00916799996048212,0.24625800549984,0.0137620000168681,0.211936995387077,0.0499389991164207,0.217170000076294,0.0382919982075691,0.215799495577812,0.0453590005636215,0.212023004889488,0.0541080012917519,0.221577003598213,0.0300309993326664,0.226339995861053,0.0229349993169308,0.225749492645264,0.0282320007681847,0.22036649286747,0.0360650010406971,0.232564002275467,0.0157919991761446,0.232322499155998,0.0206829998642206,0.237405002117157,0.0121160000562668,0.237331002950668,0.0168500002473593,0.242238506674767,0.010236999951303,0.242228493094444,0.0148620000109076,0.211048007011414,0.0513290017843246,0.211085006594658,0.0570509992539883,0.210420504212379,0.0524239987134933,0.210183501243591,0.0583520010113716,0.209746494889259,0.0525970011949539,0.209602504968643,0.0582000017166138,0.208839505910873,0.052726998925209,0.208395004272461,0.0574310012161732,0.20508599281311,0.0479749999940395,0.205601006746292,0.0514819994568825,0.202480003237724,0.04254399985075,0.202126502990723,0.0461059994995594,0.199746996164322,0.0367709994316101,0.19904500246048,0.0402589999139309,0.196392506361008,0.0296000000089407,0.195637494325638,0.0329970009624958,0.193538501858711,0.0251630004495382,0.192863494157791,0.027861999347806,0.190620005130768,0.0218659993261099,0.190054506063461,0.0240609999746084,0.188107505440712,0.0192789994180202,0.187595993280411,0.0214329995214939,0.18588200211525,0.017119999974966,0.185420498251915,0.0192859992384911,0.24626649916172,0.0183589998632669,0.242261007428169,0.0193900000303984,0.237424492835999,0.0215000007301569,0.232537001371384,0.0255190003663301,0.226249992847443,0.0334799997508526,0.221020504832268,0.041737999767065,0.216650992631912,0.0502189993858337,0.213422507047653,0.057472001761198,0.211930498480797,0.0611889995634556,0.210143506526947,0.0630429983139038,0.208941996097565,0.0631510019302368,0.207100495696068,0.0623660013079643,0.204439997673035,0.0561119988560677,0.201105505228043,0.05027100071311, +0.198154494166374,0.0442750006914139,0.194866999983788,0.0367720015347004,0.191985502839088,0.0317870005965233,0.189132004976273,0.0279810000211,0.186678498983383,0.0253149997442961,0.184513494372368,0.0231810007244349,0.24719350039959,0.0370149984955788,0.244244500994682,0.0381209999322891,0.240610495209694,0.0392940007150173,0.236721500754356,0.0412370003759861,0.231043994426727,0.0458140000700951,0.225546002388,0.051281001418829,0.220889002084732,0.0575780011713505,0.216576501727104,0.0622689984738827,0.213517501950264,0.0667949989438057,0.209716007113457,0.0690340027213097,0.207179501652718,0.0703879967331886,0.203177005052567,0.0720190033316612,0.198306992650032,0.0690580010414124,0.193823993206024,0.0647850036621094,0.190879002213478,0.0594500005245209,0.187899500131607,0.0532660000026226,0.185898497700691,0.0480980016291142,0.183668494224548,0.0438730008900166,0.181440994143486,0.0412579998373985,0.179257497191429,0.0395440012216568,0.247522503137589,0.0601590014994144,0.22367100417614,0.0781219974160194,0.218612998723984,0.0824949964880943,0.233458995819092,0.0681570023298264,0.228202506899834,0.072723001241684,0.238495498895645,0.0639140009880066,0.241936504840851,0.062135998159647,0.245031997561455,0.0611659996211529,0.21476699411869,0.0868119969964027,0.208507001399994,0.0908140018582344,0.204278007149696,0.0938839986920357,0.198481500148773,0.098301000893116,0.192164495587349,0.0976779982447624,0.186976507306099,0.0950490012764931,0.183995500206947,0.0898379981517792,0.181106999516487,0.0833320021629333,0.17900650203228,0.0771860033273697,0.176581501960754,0.0724399983882904,0.174307003617287,0.0700389966368675,0.172017499804497,0.0689070001244545,0.247602999210358,0.0922560021281242,0.22351099550724,0.110586002469063,0.217676505446434,0.115411996841431,0.233976498246193,0.100317001342773,0.2284274995327,0.105089999735355,0.239077001810074,0.0958520025014877,0.24244399368763,0.0939420014619827,0.245312005281448,0.0930659994482994,0.213223502039909,0.120012000203133,0.205691993236542,0.125055000185966,0.200609505176544, +0.128815993666649,0.193803995847702,0.134128004312515,0.187228500843048,0.133127003908157,0.182353004813194,0.129631996154785,0.179680004715919,0.123998001217842,0.177021503448486,0.116855002939701,0.173967495560646,0.111616998910904,0.170760005712509,0.108227998018265,0.168319001793861,0.106455996632576,0.166012495756149,0.10547000169754,0.247714504599571,0.134829998016357,0.247847005724907,0.187565997242928,0.219451501965523,0.160680994391441,0.224968999624252,0.155542001128197,0.227908506989479,0.206021994352341,0.223293006420135,0.211281001567841,0.229567006230354,0.149568006396294,0.234784498810768,0.144084006547928,0.236111506819725,0.195594996213913,0.231802999973297,0.200764998793602,0.239576995372772,0.138815000653267,0.240106999874115,0.190831005573273,0.242771998047829,0.13646100461483,0.24295149743557,0.188545003533363,0.245516002178192,0.135499998927116,0.245643004775047,0.187792003154755,0.215249493718147,0.16541799902916,0.219556003808975,0.215642005205154,0.207971498370171,0.170019999146461,0.213045492768288,0.220556005835533,0.20295350253582,0.173267006874084,0.208377495408058,0.223857000470161,0.19599549472332,0.177450999617577,0.201701000332832,0.227783992886543,0.188903003931046,0.174823999404907,0.194241493940353,0.226168006658554,0.183391004800797,0.170238003134727,0.188244998455048,0.222890004515648,0.179801002144814,0.164480000734329,0.184218496084213,0.218345001339912,0.175916001200676,0.157563000917435,0.179902493953705,0.213054999709129,0.171672999858856,0.154751002788544,0.175594002008438,0.21076300740242,0.167870506644249,0.153680995106697,0.171776995062828,0.210200995206833,0.165257006883621,0.153006002306938,0.169103503227234,0.210401996970177,0.162925496697426,0.152529999613762,0.1667740046978,0.211081996560097,0.247122004628181,0.290405005216599,0.244090497493744,0.290452003479004,0.24040350317955,0.290331989526749,0.236682504415512,0.290428012609482,0.23165400326252,0.290832012891769,0.226591497659683,0.290618002414703,0.222252503037453,0.290298014879227,0.21798400580883,0.289034992456436, +0.214652001857758,0.287934005260468,0.210420504212379,0.28514501452446,0.207599997520447,0.283066987991333,0.203345507383347,0.279987007379532,0.198190003633499,0.274888008832932,0.193204000592232,0.270983994007111,0.189563497900963,0.268985003232956,0.185790002346039,0.267338007688522,0.182621002197266,0.268287003040314,0.179571494460106,0.269962996244431,0.177000492811203,0.271077990531921,0.174685999751091,0.271856009960175,0.156146496534348,0.239429995417595,0.155618995428085,0.252270996570587,0.150794997811317,0.253084003925323,0.150694504380226,0.240614995360374,0.155846506357193,0.280452013015747,0.14665499329567,0.321505010128021,0.143745496869087,0.314678996801376,0.152372494339943,0.274102002382278,0.13179250061512,0.359162986278534,0.129641503095627,0.350767999887466,0.111511997878551,0.384279012680054,0.109813496470451,0.375063985586166,0.0915089994668961,0.398795992136002,0.0900015011429787,0.389194995164871,0.072734497487545,0.396634995937347,0.0714014992117882,0.386768013238907,0.0541315004229546,0.38604199886322,0.0329264998435974,0.364432990550995,0.0330930016934872,0.354633003473282,0.0533744990825653,0.376049995422363,0.015650499612093,0.328956007957458,0.0168869998306036,0.319781005382538,0.00562949990853667,0.289213985204697,0.00782450009137392,0.281073004007339,0.00385349988937378,0.269057989120483,0.00716699985787272,0.262295991182327,0.150294497609138,0.194004997611046,0.152974501252174,0.226457998156548,0.149192497134209,0.232985004782677,0.147326499223709,0.201903998851776,0.140702500939369,0.158309996128082,0.138294503092766,0.166930004954338,0.125611007213593,0.125975996255875,0.123635500669479,0.135138005018234,0.103102497756481,0.106472998857498,0.101600997149944,0.115962997078896,0.076553501188755,0.101204000413418,0.0756020024418831,0.111189000308514,0.0486700013279915,0.115264996886253,0.0482980012893677,0.125551998615265,0.0287165008485317,0.140649005770683,0.0289949998259544,0.150933995842934,0.0125569999217987,0.173455998301506,0.0136209996417165,0.183633998036385,0.00605450011789799, +0.210445001721382,0.00784299988299608,0.219707995653152,0.00403399998322129,0.230351999402046,0.00701999990269542,0.237773001194,0.00500199990347028,0.24702300131321,0.00840049982070923,0.247357994318008,0.339388996362686,0.252285003662109,0.338849008083344,0.239460006356239,0.344311505556107,0.24065600335598,0.344210505485535,0.253089994192123,0.348354488611221,0.32150000333786,0.339163988828659,0.280456990003586,0.342638492584229,0.274105995893478,0.351263999938965,0.314673006534576,0.363213509321213,0.359153002500534,0.365364998579025,0.350758999586105,0.383489489555359,0.384270012378693,0.38518899679184,0.375054985284805,0.403489500284195,0.398791998624802,0.404998004436493,0.389191001653671,0.422263503074646,0.396636992692947,0.423597514629364,0.386770993471146,0.462072491645813,0.364446014165878,0.440867006778717,0.386049002408981,0.441624492406845,0.376055985689163,0.461906999349594,0.354645013809204,0.479350507259369,0.328972995281219,0.478114485740662,0.31979700922966,0.489373505115509,0.28923299908638,0.487179011106491,0.281091004610062,0.491151005029678,0.269077003002167,0.487838000059128,0.262313991785049,0.342024505138397,0.226497992873192,0.344698488712311,0.19403700530529,0.34766748547554,0.201933994889259,0.345809996128082,0.23301799595356,0.354289501905441,0.158327996730804,0.356697499752045,0.16694800555706,0.36938551068306,0.125986993312836,0.37136098742485,0.135149002075195,0.39189800620079,0.106480002403259,0.393399506807327,0.115969002246857,0.418449997901917,0.101208001375198,0.419401496648788,0.111192002892494,0.446337997913361,0.115266002714634,0.446709513664246,0.125552996993065,0.466292500495911,0.140658006072044,0.466013491153717,0.150942996144295,0.482452005147934,0.173470005393028,0.481387495994568,0.183648005127907,0.48895400762558,0.210462003946304,0.487165510654449,0.219724997878075,0.490973502397537,0.230370000004768,0.487986505031586,0.237790003418922,0.490004003047943,0.247041001915932,0.486605495214462,0.247373998165131,0.140318498015404,0.251702010631561,0.139705002307892,0.243966996669769, +0.132634997367859,0.294811010360718,0.140524506568909,0.261436998844147,0.12075749784708,0.326454013586044,0.103136502206326,0.348645985126495,0.0849959999322891,0.360168009996414,0.0684774965047836,0.356258004903793,0.0416814982891083,0.326178997755051,0.0531144998967648,0.345178008079529,0.0343824997544289,0.301809012889862,0.0307055003941059,0.274619996547699,0.0285310000181198,0.260906010866165,0.139108002185822,0.239068001508713,0.135672003030777,0.219095006585121,0.128242999315262,0.188227996230125,0.117190003395081,0.163330003619194,0.0959305018186569,0.144117996096611,0.0759859979152679,0.140663996338844,0.0539775006473064,0.152985006570816,0.0397889986634254,0.176363006234169,0.0299210008233786,0.193390995264053,0.0264950003474951,0.210960000753403,0.0248429998755455,0.238290995359421,0.0286615006625652,0.249566003680229,0.35530099272728,0.24397699534893,0.354687005281448,0.251706004142761,0.354480504989624,0.261411011219025,0.362372994422913,0.294800013303757,0.374249011278152,0.326444000005722,0.391867995262146,0.348639011383057,0.410006493330002,0.360166013240814,0.426524013280869,0.356260001659393,0.441886991262436,0.345183998346329,0.453321009874344,0.326187014579773,0.460620999336243,0.301818013191223,0.464298993349075,0.274628013372421,0.466473489999771,0.260915011167526,0.359326511621475,0.219123005867004,0.355897009372711,0.239078998565674,0.366760492324829,0.188243001699448,0.37781149148941,0.163332998752594,0.399069994688034,0.144122004508972,0.419016510248184,0.140667006373405,0.441027998924255,0.152995005249977,0.455220013856888,0.17637799680233,0.465086996555328,0.193406999111176,0.468513995409012,0.210957005620003,0.470162510871887,0.238299995660782,0.466343492269516,0.24957400560379,0.0854189991950989,0.253161996603012,0.409586995840073,0.253159999847412 + } + UVIndex: *33849 { + a: 309,107,70,106,107,199,86,70,70,86,150,147,47,106,70,147,147,150,231,333,142,47,147,333,182,313,142,333,231,28,182,333,182,28,33,194,313,182,194,232,232,194,174,29,194,33,308,174,174,308,152,322,43,29,174,322,322,152,9,10,11,43,322,10,257,5,11,10,289,257,10,9,257,289,213,177,5,257,177,143,42,18,166,169,18,256,227,166,166,227,84,255,169,166,255,94,6,234,7,122,7,155,340,122,6,122,8,51,122,340,4,8,8,4,0,12,302,51,8,12,199,264,57,86,264,23,146,57,57,146,224,185,150,86,57,185,185,224,278,176,231,150,185,176,303,28,231,176,128,303,176,278,303,128,73,58,28,303,58,33,33,58,212,308,58,73,186,212,212,186,304,89,152,308,212,89,89,304,124,295,152,89,295,9,2,289,9,295,99,2,295,124,2,99,290,90,289,2,90,213,213,90,52,62,90,290,67,52,52,67,48,269,91,62,52,269,68,323,219,13,68,219,339,68,13,30,19,337,68,19,246,92,206,220,163,206,153,279,220,220,279,14,114,340,220,114,114,14,15,20,4,114,20,0,23,49,329,146,49,242,262,329,329,262,125,115,224,146,329,115,115,125,31,191,224,115,191,278,280,128,278,191,21,280,191,31,280,21,103,59,128,280,59,73,73,59,87,186,59,103,134,87,87,134,158,208,304,186,87,208,208,158,281,192,304,208,192,124,178,99,124,192,97,178,192,281,178,97,300,296,99,178,296,290,290,296,154,67,296,300,330,154,154,330,339,219,67,154,219,48,108,13,339,332,298,108,332,221,108,298,117,261,13,108,261,30,153,245,60,279,245,251,254,60,60,254,193,235,14,279,60,235,235,193,78,316,14,235,316,15,242,1,144,262,1,215,72,144,144,72,63,133,125,262,144,133,133,63,81,82,125,133,82,31,74,21,31,82,135,74,82,81,74,135,123,137,21,74,137,103,103,137,76,134,137,123,205,76,76,205,167,311,158,134,76,311,311,167,249,243,158,311,243,281,44,97,281,243,306,44,243,249,44,306,165,299,97,44,299,300,300,299,259,330,299,165,175,259,259,175,221,332,330,259,332,339,45,298,221,305,130,45,305,201,45,130,226,189,298,45,189,117,251,283,37,254,283,161,172,37,37,172,272,50,193,254,37,50,50,272,98,140,193,50,140,78,215,170,61,72,170,307,32,61,61,32,317,267,63,72,61,267,267,317,3,53,63,267,53,81,321,135,81,53,318,321,53,3,321,318,71,46,135,321, +46,123,123,46,168,205,46,71,275,168,168,275,217,66,167,205,168,66,66,217,230,24,167,66,24,249,236,306,249,24,83,236,24,230,236,83,338,286,306,236,286,165,165,286,40,175,286,338,65,40,40,65,201,305,175,40,305,221,297,130,201,183,105,297,183,149,297,105,131,179,130,297,179,226,161,284,285,172,284,88,314,285,285,314,294,319,272,172,285,319,319,294,35,244,272,319,244,98,307,210,100,32,210,138,225,100,100,225,116,38,317,32,100,38,38,116,190,268,317,38,268,3,156,318,3,268,129,156,268,190,156,129,79,301,318,156,301,71,71,301,96,275,301,79,80,96,96,80,223,25,217,275,96,25,25,223,69,184,217,25,184,230,237,83,230,184,239,237,184,69,237,239,218,102,83,237,102,338,338,102,233,65,102,218,141,233,233,141,149,183,65,233,183,201,238,105,149,250,101,238,250,196,238,101,252,16,105,238,16,131,88,240,327,314,240,202,111,327,327,111,132,270,294,314,327,270,270,132,263,41,294,270,41,35,138,214,203,225,214,197,27,203,203,27,173,310,116,225,203,310,310,173,109,207,116,310,207,190,112,129,190,207,22,112,207,109,112,22,291,265,129,112,265,79,79,265,104,80,265,291,64,104,104,64,293,93,223,80,104,93,93,293,266,151,223,93,151,69,75,239,69,151,17,75,151,266,75,17,118,292,239,75,292,218,218,292,248,141,292,118,126,248,248,126,196,250,141,248,250,149,258,101,196,171,39,258,171,209,258,39,229,113,101,258,113,252,202,241,282,111,241,288,331,282,282,331,54,334,132,111,282,334,334,54,110,260,132,334,260,263,197,119,253,27,119,181,145,253,253,145,247,271,173,27,253,271,271,247,180,77,173,271,77,109,95,22,109,77,55,95,77,180,95,55,164,204,22,95,204,291,291,204,336,64,204,164,120,336,336,120,136,274,293,64,336,274,274,136,195,159,293,274,159,266,315,17,266,159,211,315,159,195,315,211,222,216,17,315,216,118,118,56,312,126,56,139,320,312,312,320,209,171,126,312,171,196,164,55,287,335,287,55,180,162,198,328,287,162,335,287,328,36,162,180,247,273,198,162,273,160,136,120,26,85,120,164,335,26,26,335,36,121,26,121,324,85,222,211,34,325,211,195,34,34,195,136,85,325,34,85,324,323,127,269,48,127,200,91,269,23,264,12,0,264,199,302,12,242,49,20,15,49,23,0,20,215,1, +316,78,1,242,15,316,307,170,140,98,170,215,78,140,138,210,244,35,210,307,98,244,197,214,41,263,214,138,35,41,157,276,260,110,276,197,263,260,145,273,247,145,181,160,273,228,187,188,277,187,326,148,188,188,148,155,7,277,188,7,234,42,200,127,18,127,323,256,18,84,227,337,246,227,256,323,337,340,155,148,163,148,326,92,163,340,114,4,340,163,220,68,337,323,219,323,48,341,342,343,344,344,343,345,346,346,345,347,348,348,347,349,350,350,349,351,352,352,351,353,354,354,353,355,356,356,355,357,358,358,357,359,360,360,359,361,362,362,361,363,364,364,363,365,366,366,365,367,368,365,369,370,367,363,371,369,365,361,372,371,363,359,373,372,361,357,374,373,359,355,375,374,357,353,376,375,355,351,377,376,353,349,378,377,351,347,379,378,349,345,380,379,347,343,381,380,345,342,382,381,343,383,384,385,386,387,383,386,388,389,387,388,390,391,389,390,392,393,391,392,394,395,393,394,396,397,395,396,398,399,397,398,400,401,399,400,402,403,401,402,404,405,403,404,406,406,407,408,405,386,385,409,410,388,386,410,411,390,388,411,412,392,390,412,413,394,392,413,414,396,394,414,415,398,396,415,416,400,398,416,417,402,400,417,418,404,402,418,419,406,404,419,420,421,407,406,420,422,423,424,425,423,426,427,424,426,428,429,427,428,430,431,429,430,432,433,431,432,434,435,433,434,436,437,435,436,438,439,437,438,440,441,439,440,442,443,441,442,444,445,443,444,446,447,445,446,448,449,447,447,449,450,451,445,447,451,452,443,445,452,453,441,443,453,454,439,441,454,455,437,439,455,456,435,437,456,457,433,435,457,458,431,433,458,459,429,431,459,460,427,429,460,461,424,427,461,462,425,424,462,463,464,465,466,467,468,469,465,464,470,471,469,468,472,473,471,470,474,475,473,472,476,477,475,474,478,479,477,476,480,481,479,478,482,483,481,480,484,485,483,482,486,487,485,484,487,486,488,489,465,490,491,466,469,492,490,465,471,493,492,469,473,494,493,471,475,495,494,473,477,496,495,475,479,497,496,477,481,498,497,479,483,499,498,481,485,500,499,483,487,501,500,485,502,501,487,489,503,504,505,506,506,505,507,508,508,507,509,510,510,509,511,512,512,511,513,514,514,513, +515,516,516,515,517,518,518,517,519,520,520,519,521,522,522,521,523,524,524,523,525,526,526,525,527,528,528,527,529,530,527,531,532,529,525,533,531,527,523,534,533,525,521,535,534,523,519,536,535,521,517,537,536,519,515,538,537,517,513,539,538,515,511,540,539,513,509,541,540,511,507,542,541,509,505,543,542,507,504,544,543,505,545,546,547,548,549,545,548,550,551,549,550,552,553,551,552,554,555,553,554,556,557,555,556,558,559,557,558,560,561,559,560,562,563,561,562,564,565,563,564,566,567,565,566,568,568,569,570,567,548,547,571,572,550,548,572,573,552,550,573,574,554,552,574,575,556,554,575,576,558,556,576,577,560,558,577,578,562,560,578,579,564,562,579,580,566,564,580,581,568,566,581,582,583,569,568,582,584,585,586,587,585,588,589,586,588,590,591,589,590,592,593,591,592,594,595,593,594,596,597,595,596,598,599,597,598,600,601,599,600,602,603,601,602,604,605,603,604,606,607,605,606,608,609,607,608,610,611,609,609,611,612,613,607,609,613,614,605,607,614,615,603,605,615,616,601,603,616,617,599,601,617,618,597,599,618,619,595,597,619,620,593,595,620,621,591,593,621,622,589,591,622,623,586,589,623,624,587,586,624,625,626,627,628,629,630,631,627,626,632,633,631,630,634,635,633,632,636,637,635,634,638,639,637,636,640,641,639,638,642,643,641,640,644,645,643,642,646,647,645,644,648,649,647,646,649,648,650,651,627,652,653,628,631,654,652,627,633,655,654,631,635,656,655,633,637,657,656,635,639,658,657,637,641,659,658,639,643,660,659,641,645,661,660,643,647,662,661,645,649,663,662,647,664,663,649,651,665,666,667,668,669,665,668,670,665,669,671,672,666,665,672,673,674,675,676,677,678,674,677,679,674,678,680,681,675,674,681,682,683,684,685,686,687,683,686,688,683,687,689,690,684,683,690,691,692,693,694,695,693,696,697,694,694,697,698,699,695,694,699,700,701,702,703,704,702,705,706,703,703,706,707,708,704,703,708,709,710,711,712,713,711,714,715,712,716,717,718,719,716,719,720,721,722,723,724,725,723,726,727,724,724,727,728,729,725,724,729,730,731,732,733,734,732,735,736,733,737,738,739,740,737,740,741,742,743,744,745,746,744,747,748, +745,745,748,749,750,746,745,750,751,752,753,754,755,753,756,757,754,758,759,760,761,758,761,762,763,764,765,766,767,768,764,767,769,764,768,770,771,765,764,771,772,773,774,775,776,774,777,778,775,779,780,781,782,779,782,783,784,785,786,787,788,786,789,790,787,787,790,670,668,788,787,668,667,791,792,793,794,792,795,796,793,793,796,797,798,794,793,798,799,800,801,799,798,802,800,798,797,800,802,803,804,801,800,804,805,806,807,808,809,807,810,811,808,808,811,679,677,809,808,677,676,812,813,814,815,813,816,817,814,814,817,818,819,815,814,819,820,821,822,820,819,823,821,819,818,821,823,824,825,822,821,825,826,827,828,829,830,828,831,832,829,829,832,688,686,830,829,686,685,833,834,835,836,834,837,838,835,835,838,839,840,836,835,840,841,842,843,841,840,844,842,840,839,842,844,845,846,843,842,846,847,848,849,700,699,850,848,699,698,848,850,851,852,849,848,852,853,854,855,856,853,855,857,770,856,856,770,768,858,849,853,856,858,859,700,849,858,768,769,859,858,859,769,860,861,695,700,859,861,862,863,864,865,863,866,867,864,864,867,868,869,865,864,869,870,871,872,870,869,873,871,869,868,871,873,874,875,872,871,875,876,877,878,709,708,879,877,708,707,877,879,880,881,878,877,881,882,883,884,714,711,883,711,710,885,886,887,888,889,886,889,890,891,890,889,892,893,889,888,894,892,895,896,897,898,899,895,898,900,901,902,903,904,901,904,905,906,720,719,907,908,719,718,909,907,910,911,912,913,911,914,915,912,912,915,916,917,913,912,917,918,919,920,918,917,921,919,917,916,919,921,922,923,920,919,923,924,925,926,730,729,927,925,729,728,925,927,928,929,926,925,929,930,931,932,735,732,931,732,731,933,934,935,936,937,934,937,938,939,938,937,940,941,937,936,942,940,943,944,945,946,943,946,947,948,947,946,949,950,946,945,951,949,741,740,952,953,740,739,954,952,955,956,957,958,956,959,851,957,957,851,850,960,958,957,960,961,962,963,961,960,850,698,962,960,962,698,697,964,963,962,964,965,966,967,751,750,968,966,750,749,966,968,969,970,967,966,970,971,972,973,756,753,972,753,752,974,975,976,977,978,975,978,979,980,979,978,981,982,978,977,983,981, +984,985,986,987,984,987,988,989,988,987,990,991,987,986,992,990,762,761,993,994,761,760,995,993,996,997,998,999,765,996,999,766,996,765,772,1000,997,996,1000,1001,999,998,1002,1003,766,999,1003,1004,1005,1006,1007,1004,1006,1008,860,1007,1007,860,769,767,766,1004,1007,767,1009,1010,1011,1012,1009,1012,1013,1014,1014,1013,1015,1016,1015,781,780,1016,1014,1016,1017,777,1016,780,1018,1017,784,783,1019,1020,1019,1021,1022,1020,784,1020,1023,1024,1020,1022,1025,1023,1026,1027,1028,1024,1027,1029,1018,1028,1030,1031,1032,1033,1030,1034,1035,1031,1031,1035,1036,1037,1038,1032,1031,1037,1039,718,717,1040,1039,1040,1041,1042,1043,1044,1045,1046,1044,1047,909,1045,1048,1049,1050,1051,1049,1048,1033,1032,1052,1050,1049,1053,1054,888,887,1055,1054,1055,721,720,1056,799,801,1057,669,670,1056,1057,1056,670,790,1058,794,799,1056,1058,1059,1060,1061,908,1060,1062,894,1061,1063,1064,1065,805,1064,1066,671,1065,1065,671,669,1057,801,805,1065,1057,1067,709,878,1068,802,797,1067,1068,1067,797,796,1069,704,709,1067,1069,1070,714,884,1071,1070,1071,891,890,1072,1073,1074,882,1073,1075,803,1074,1074,803,802,1068,878,882,1074,1068,1076,1077,1078,893,1077,1079,715,1078,1080,945,944,1081,1080,1081,885,710,1082,870,872,1083,879,707,1082,1083,1082,707,706,1084,865,870,1082,1084,1085,1086,1087,876,1086,1088,880,1087,1087,880,879,1083,872,876,1087,1083,1089,1090,1091,713,1090,1092,951,1091,1093,676,675,1094,873,868,1093,1094,1093,868,867,1095,809,676,1093,1095,1096,739,738,1097,1096,1097,948,947,1098,1099,1100,950,1099,1101,954,1100,1102,1103,1104,682,1103,1105,874,1104,1104,874,873,1094,675,682,1104,1094,1106,936,935,1107,1106,1107,742,741,1108,820,822,1109,678,679,1108,1109,1108,679,811,1110,815,820,1108,1110,1111,1112,1113,953,1112,1114,942,1113,1115,1116,1117,826,1116,1118,680,1117,1117,680,678,1109,822,826,1117,1109,1119,730,926,1120,823,818,1119,1120,1119,818,817,1121,725,730,1119,1121,1122,735,932,1123,1122,1123,939,938,1124,1125,1126,930,1125,1127,824,1126,1126,824,823,1120,926,930,1126,1120,1128,1129,1130,941,1129,1131,736,1130,1132,986, +985,1133,1132,1133,933,731,1134,918,920,1135,927,728,1134,1135,1134,728,727,1136,913,918,1134,1136,1137,1138,1139,924,1138,1140,928,1139,1139,928,927,1135,920,924,1139,1135,1141,1142,1143,734,1142,1144,992,1143,1145,685,684,1146,921,916,1145,1146,1145,916,915,1147,830,685,1145,1147,1148,760,759,1149,1148,1149,989,988,1150,1151,1152,991,1151,1153,995,1152,1154,1155,1156,691,1155,1157,922,1156,1156,922,921,1146,684,691,1156,1146,1158,977,976,1159,1158,1159,763,762,1160,841,843,1161,687,688,1160,1161,1160,688,832,1162,836,841,1160,1162,1163,1164,1165,994,1164,1166,983,1165,1167,1168,1169,847,1168,1170,689,1169,1169,689,687,1161,843,847,1169,1161,1171,751,967,1172,844,839,1171,1172,1171,839,838,1173,746,751,1171,1173,1174,756,973,1175,1174,1175,980,979,1176,1177,1178,971,1177,1179,845,1178,1178,845,844,1172,967,971,1178,1172,1180,1181,1182,982,1181,1183,757,1182,1184,1022,1021,1185,1184,1185,974,752,1186,961,963,1187,968,749,1186,1187,1186,749,748,1188,958,961,1186,1188,1189,1190,1191,965,1190,1192,969,1191,1191,969,968,1187,963,965,1191,1187,1193,1194,1195,755,1194,1196,1025,1195,788,667,1038,1037,1038,667,666,1053,1038,1053,1049,1032,1197,1198,1000,772,1198,1199,1001,1000,795,1200,1069,796,1200,701,704,1069,705,1201,1084,706,1201,862,865,1084,789,1202,1058,790,1202,791,794,1058,866,1203,1095,867,1203,806,809,1095,810,1204,1110,811,1204,812,815,1110,816,1205,1121,817,1205,722,725,1121,726,1206,1136,727,1206,910,913,1136,914,1207,1147,915,1207,827,830,1147,831,1208,1162,832,1208,833,836,1162,837,1209,1173,838,1209,743,746,1173,747,1210,1188,748,1210,955,958,1188,959,1211,852,851,1211,854,853,852,857,1212,771,770,1212,1197,772,771,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1226,1229,1230,1227,1231,1232,1233,1234,1232,1235,1236,1233,1233,1236,1237,1238,1234,1233,1238,1239,1240,1241,1242,1243,1241,1244,1245,1242,1246,1247,1248,1249,1247,1250,1251,1248,1248,1251,1252,1253,1249,1248,1253,1254,1255,1256,1257,1258,1256,1259,1260,1257,1257,1260,1261,1262,1258,1257,1262,1263,1264,1265,1266, +1267,1265,1268,1269,1266,1270,1271,1272,1273,1271,1274,1275,1272,1276,1277,1278,1279,1277,1280,1281,1278,1278,1281,1282,1283,1279,1278,1283,1284,1285,1286,1287,1288,1286,1289,1290,1287,1291,1292,1293,1294,1292,1295,1296,1293,1297,1298,1299,1300,1298,1301,1302,1299,1303,1304,1305,1306,1304,1307,1308,1305,1309,1310,1311,1312,1310,1313,1314,1311,1311,1314,1315,1316,1312,1311,1316,1317,1318,1319,1320,1321,1319,1322,1216,1320,1320,1216,1215,1323,1321,1320,1323,1324,1325,1326,1327,1328,1326,1329,1330,1327,1327,1330,1331,1332,1328,1327,1332,1333,1334,1335,1331,1330,1336,1337,1338,1339,1337,1340,1220,1338,1338,1220,1219,1341,1339,1338,1341,1342,1343,1344,1345,1346,1344,1347,1348,1345,1345,1348,1349,1350,1346,1345,1350,1351,1352,1353,1349,1348,1354,1355,1356,1357,1355,1358,1224,1356,1356,1224,1223,1359,1357,1356,1359,1360,1361,1362,1363,1364,1362,1365,1366,1363,1363,1366,1367,1368,1364,1363,1368,1369,1370,1371,1367,1366,1372,1373,1227,1230,1373,1374,1228,1227,1375,1376,1377,1378,1376,1372,1379,1377,1377,1379,1301,1380,1378,1377,1380,1381,1382,1302,1301,1379,1383,1384,1385,1386,1384,1387,1388,1385,1385,1388,1389,1390,1386,1385,1390,1391,1392,1393,1389,1388,1394,1395,1237,1236,1396,1397,1398,1399,1397,1400,1401,1398,1400,1402,1403,1401,1402,1404,1252,1403,1405,1406,1407,1408,1406,1409,1410,1407,1411,1412,1413,1414,1412,1246,1249,1413,1413,1249,1254,1415,1414,1413,1415,1416,1417,1418,1419,1420,1417,1420,1421,1422,1423,1424,1425,1426,1424,1427,1428,1425,1429,1430,1431,1432,1430,1433,1434,1431,1431,1434,1435,1436,1432,1431,1436,1437,1438,1439,1435,1434,1440,1441,1261,1260,1442,1443,1444,1445,1443,1446,1447,1444,1446,1448,1449,1447,1448,1270,1273,1449,1450,1451,1452,1453,1451,1454,1455,1452,1274,1456,1457,1275,1456,1396,1399,1457,1458,1459,1460,1461,1459,1462,1463,1460,1464,1465,1466,1467,1465,1468,1469,1466,1470,1471,1472,1473,1471,1474,1475,1472,1472,1475,1374,1476,1473,1472,1476,1477,1478,1228,1374,1475,1479,1480,1282,1281,1481,1482,1483,1317,1482,1484,1485,1483,1484,1486,1487,1485,1486,1291,1294,1487,1488,1489,1490,1491,1489, +1492,1493,1490,1295,1494,1495,1296,1494,1442,1445,1495,1496,1497,1498,1499,1497,1500,1501,1498,1502,1503,1504,1505,1503,1506,1507,1504,1508,1509,1510,1511,1509,1297,1300,1510,1512,1513,1299,1302,1513,1514,1300,1299,1515,1516,1517,1518,1516,1519,1315,1517,1520,1521,1522,1523,1521,1524,1308,1522,1525,1526,1527,1528,1526,1529,1530,1527,1531,1532,1533,1523,1532,1534,1530,1533,1535,1536,1537,1538,1536,1539,1540,1537,1537,1540,1541,1542,1538,1537,1542,1543,1544,1545,1546,1426,1545,1547,1548,1546,1549,1550,1551,1552,1553,1550,1549,1554,1555,1329,1556,1557,1556,1215,1214,1557,1558,1559,1560,1408,1559,1561,1428,1560,1562,1563,1557,1214,1563,1564,1555,1557,1565,1235,1566,1567,1566,1331,1335,1567,1568,1569,1567,1335,1569,1570,1565,1567,1571,1572,1573,1243,1572,1574,1410,1573,1575,1387,1576,1577,1576,1237,1395,1577,1578,1579,1577,1395,1579,1580,1575,1577,1581,1582,1583,1461,1582,1584,1245,1583,1585,1340,1586,1587,1586,1389,1393,1587,1588,1589,1590,1467,1589,1591,1463,1590,1592,1593,1587,1393,1593,1594,1585,1587,1595,1347,1596,1597,1596,1219,1218,1597,1598,1599,1600,1453,1599,1601,1469,1600,1602,1603,1597,1218,1603,1604,1595,1597,1605,1259,1606,1607,1606,1349,1353,1607,1608,1609,1607,1353,1609,1610,1605,1607,1611,1612,1613,1267,1612,1614,1455,1613,1615,1433,1616,1617,1616,1261,1441,1617,1618,1619,1617,1441,1619,1620,1615,1617,1621,1622,1623,1499,1622,1624,1269,1623,1625,1358,1626,1627,1626,1435,1439,1627,1628,1629,1630,1505,1629,1631,1501,1630,1632,1633,1627,1439,1633,1634,1625,1627,1635,1365,1636,1637,1636,1223,1222,1637,1638,1639,1640,1491,1639,1641,1507,1640,1642,1643,1637,1222,1643,1644,1635,1637,1645,1280,1646,1647,1646,1367,1371,1647,1648,1649,1647,1371,1649,1650,1645,1647,1651,1652,1653,1288,1652,1654,1493,1653,1655,1474,1656,1657,1656,1282,1480,1657,1658,1659,1657,1480,1659,1660,1655,1657,1661,1662,1663,1528,1662,1664,1290,1663,1665,1322,1541,1553,1553,1541,1540,1550,1666,1667,1668,1669,1667,1297,1509,1668,1668,1509,1508,1670,1669,1668,1670,1671,1333,1332,1672,1673,1332,1331,1566,1672,1672,1566,1235,1232,1673,1672,1232, +1231,1239,1238,1674,1675,1238,1237,1576,1674,1674,1576,1387,1384,1675,1674,1384,1383,1394,1236,1235,1565,1334,1330,1329,1555,1392,1388,1387,1575,1324,1323,1676,1677,1323,1215,1556,1676,1676,1556,1329,1326,1677,1676,1326,1325,1391,1390,1678,1679,1390,1389,1586,1678,1678,1586,1340,1337,1679,1678,1337,1336,1213,1216,1322,1665,1217,1220,1340,1585,1342,1341,1680,1681,1341,1219,1596,1680,1680,1596,1347,1344,1681,1680,1344,1343,1352,1348,1347,1595,1351,1350,1682,1683,1350,1349,1606,1682,1682,1606,1259,1256,1683,1682,1256,1255,1440,1260,1259,1605,1263,1262,1684,1685,1262,1261,1616,1684,1684,1616,1433,1430,1685,1684,1430,1429,1438,1434,1433,1615,1437,1436,1686,1687,1436,1435,1626,1686,1686,1626,1358,1355,1687,1686,1355,1354,1221,1224,1358,1625,1360,1359,1688,1689,1359,1223,1636,1688,1688,1636,1365,1362,1689,1688,1362,1361,1370,1366,1365,1635,1369,1368,1690,1691,1368,1367,1646,1690,1690,1646,1280,1277,1691,1690,1277,1276,1479,1281,1280,1645,1284,1283,1692,1693,1283,1282,1656,1692,1692,1656,1474,1471,1693,1692,1471,1470,1478,1475,1474,1655,1477,1476,1694,1695,1476,1374,1373,1694,1694,1373,1372,1376,1695,1694,1376,1375,1382,1379,1372,1230,1381,1380,1696,1697,1380,1301,1298,1696,1696,1298,1297,1667,1697,1696,1667,1666,1698,1699,1700,1701,1699,1535,1538,1700,1700,1538,1543,1702,1701,1700,1702,1703,1318,1321,1704,1705,1321,1324,1706,1704,1704,1706,1707,1708,1705,1704,1708,1709,1324,1677,1710,1706,1677,1325,1711,1710,1710,1711,1712,1713,1706,1710,1713,1707,1325,1328,1714,1711,1328,1333,1715,1714,1714,1715,1716,1717,1711,1714,1717,1712,1333,1673,1718,1715,1673,1231,1719,1718,1718,1719,1720,1721,1715,1718,1721,1716,1231,1234,1722,1719,1234,1239,1723,1722,1722,1723,1724,1725,1719,1722,1725,1720,1239,1675,1726,1723,1675,1383,1727,1726,1726,1727,1728,1729,1723,1726,1729,1724,1383,1386,1730,1727,1386,1391,1731,1730,1730,1731,1732,1733,1727,1730,1733,1728,1391,1679,1734,1731,1679,1336,1735,1734,1734,1735,1736,1737,1731,1734,1737,1732,1336,1339,1738,1735,1339,1342,1739,1738,1738,1739,1740,1741,1735,1738,1741,1736,1342,1681,1742,1739,1681, +1343,1743,1742,1742,1743,1744,1745,1739,1742,1745,1740,1343,1346,1746,1743,1346,1351,1747,1746,1746,1747,1748,1749,1743,1746,1749,1744,1351,1683,1750,1747,1683,1255,1751,1750,1750,1751,1752,1753,1747,1750,1753,1748,1255,1258,1754,1751,1258,1263,1755,1754,1754,1755,1756,1757,1751,1754,1757,1752,1263,1685,1758,1755,1685,1429,1759,1758,1758,1759,1760,1761,1755,1758,1761,1756,1429,1432,1762,1759,1432,1437,1763,1762,1762,1763,1764,1765,1759,1762,1765,1760,1437,1687,1766,1763,1687,1354,1767,1766,1766,1767,1768,1769,1763,1766,1769,1764,1354,1357,1770,1767,1357,1360,1771,1770,1770,1771,1772,1773,1767,1770,1773,1768,1360,1689,1774,1771,1689,1361,1775,1774,1774,1775,1776,1777,1771,1774,1777,1772,1361,1364,1778,1775,1364,1369,1779,1778,1778,1779,1780,1781,1775,1778,1781,1776,1369,1691,1782,1779,1691,1276,1783,1782,1782,1783,1784,1785,1779,1782,1785,1780,1276,1279,1786,1783,1279,1284,1787,1786,1786,1787,1788,1789,1783,1786,1789,1784,1284,1693,1790,1787,1693,1470,1791,1790,1790,1791,1792,1793,1787,1790,1793,1788,1470,1473,1794,1791,1473,1477,1795,1794,1794,1795,1796,1797,1791,1794,1797,1792,1477,1695,1798,1795,1695,1375,1799,1798,1798,1799,1800,1801,1795,1798,1801,1796,1375,1378,1802,1799,1378,1381,1803,1802,1802,1803,1804,1805,1799,1802,1805,1800,1381,1697,1806,1803,1697,1666,1807,1806,1806,1807,1808,1809,1803,1806,1809,1804,1666,1669,1810,1807,1669,1671,1811,1810,1810,1811,1812,1813,1807,1810,1813,1808,1709,1814,1815,1703,1814,785,1036,1815,1815,1036,1035,1816,1701,1703,1815,1816,789,786,1817,1818,786,785,1814,1817,1817,1814,1709,1708,1818,1817,1708,1707,791,1202,1819,1820,1202,789,1818,1819,1819,1818,1707,1713,1820,1819,1713,1712,795,792,1821,1822,792,791,1820,1821,1821,1820,1712,1717,1822,1821,1717,1716,701,1200,1823,1824,1200,795,1822,1823,1823,1822,1716,1721,1824,1823,1721,1720,705,702,1825,1826,702,701,1824,1825,1825,1824,1720,1725,1826,1825,1725,1724,862,1201,1827,1828,1201,705,1826,1827,1827,1826,1724,1729,1828,1827,1729,1728,866,863,1829,1830,863,862,1828,1829,1829,1828,1728,1733,1830,1829,1733,1732,806,1203,1831,1832, +1203,866,1830,1831,1831,1830,1732,1737,1832,1831,1737,1736,810,807,1833,1834,807,806,1832,1833,1833,1832,1736,1741,1834,1833,1741,1740,812,1204,1835,1836,1204,810,1834,1835,1835,1834,1740,1745,1836,1835,1745,1744,816,813,1837,1838,813,812,1836,1837,1837,1836,1744,1749,1838,1837,1749,1748,722,1205,1839,1840,1205,816,1838,1839,1839,1838,1748,1753,1840,1839,1753,1752,726,723,1841,1842,723,722,1840,1841,1841,1840,1752,1757,1842,1841,1757,1756,910,1206,1843,1844,1206,726,1842,1843,1843,1842,1756,1761,1844,1843,1761,1760,914,911,1845,1846,911,910,1844,1845,1845,1844,1760,1765,1846,1845,1765,1764,827,1207,1847,1848,1207,914,1846,1847,1847,1846,1764,1769,1848,1847,1769,1768,831,828,1849,1850,828,827,1848,1849,1849,1848,1768,1773,1850,1849,1773,1772,833,1208,1851,1852,1208,831,1850,1851,1851,1850,1772,1777,1852,1851,1777,1776,837,834,1853,1854,834,833,1852,1853,1853,1852,1776,1781,1854,1853,1781,1780,743,1209,1855,1856,1209,837,1854,1855,1855,1854,1780,1785,1856,1855,1785,1784,747,744,1857,1858,744,743,1856,1857,1857,1856,1784,1789,1858,1857,1789,1788,955,1210,1859,1860,1210,747,1858,1859,1859,1858,1788,1793,1860,1859,1793,1792,959,956,1861,1862,956,955,1860,1861,1861,1860,1792,1797,1862,1861,1797,1796,854,1211,1863,1864,1211,959,1862,1863,1863,1862,1796,1801,1864,1863,1801,1800,857,855,1865,1866,855,854,1864,1865,1865,1864,1800,1805,1866,1865,1805,1804,1197,1212,1867,1868,1212,857,1866,1867,1867,1866,1804,1809,1868,1867,1809,1808,1199,1198,1869,1870,1198,1197,1868,1869,1869,1868,1808,1813,1870,1869,1813,1812,906,1046,1042,900,901,906,900,898,1422,1548,1547,1871,1417,1422,1871,1872,951,945,1080,1091,1080,710,713,1091,715,714,1070,1078,1070,890,893,1078,715,1079,1873,712,1873,1089,713,712,951,1092,1874,949,1874,1098,950,949,894,1062,1875,892,1875,1076,893,892,954,739,1096,1100,1096,947,950,1100,894,888,1054,1061,1054,720,908,1061,954,1101,1876,952,1876,1111,953,952,909,1047,1877,907,1877,1059,908,907,942,936,1106,1113,1106,741,953,1113,909,718,1039,1045,1039,1042,1046,1045,942,1114,1878,940,1878,1128,941,940,736,735,1122,1130, +1122,938,941,1130,736,1131,1879,733,1879,1141,734,733,992,986,1132,1143,1132,731,734,1143,992,1144,1880,990,1880,1150,991,990,995,760,1148,1152,1148,988,991,1152,995,1153,1881,993,1881,1163,994,993,983,977,1158,1165,1158,762,994,1165,983,1166,1882,981,1882,1180,982,981,757,756,1174,1182,1174,979,982,1182,757,1183,1883,754,1883,1193,755,754,1025,1022,1184,1195,1184,752,755,1195,1025,1196,1884,1023,1884,1026,1024,1023,1018,780,779,1028,779,784,1024,1028,1018,1029,1885,1017,1885,778,777,1017,1010,1009,774,773,1009,1014,777,774,1308,1524,1886,1305,1886,1887,1306,1305,1308,1307,1888,1522,1888,1531,1523,1522,1530,1529,1889,1533,1889,1520,1523,1533,1530,1534,1890,1527,1890,1661,1528,1527,1290,1289,1891,1663,1891,1525,1528,1663,1290,1664,1892,1287,1892,1651,1288,1287,1493,1492,1893,1653,1893,1285,1288,1653,1493,1654,1894,1490,1894,1638,1491,1490,1507,1506,1895,1640,1895,1488,1491,1640,1507,1641,1896,1504,1896,1628,1505,1504,1501,1500,1897,1630,1897,1502,1505,1630,1501,1631,1898,1498,1898,1621,1499,1498,1269,1268,1899,1623,1899,1496,1499,1623,1269,1624,1900,1266,1900,1611,1267,1266,1455,1454,1901,1613,1901,1264,1267,1613,1455,1614,1902,1452,1902,1598,1453,1452,1469,1468,1903,1600,1903,1450,1453,1600,1469,1601,1904,1466,1904,1588,1467,1466,1463,1462,1905,1590,1905,1464,1467,1590,1463,1591,1906,1460,1906,1581,1461,1460,1245,1244,1907,1583,1907,1458,1461,1583,1245,1584,1908,1242,1908,1571,1243,1242,1410,1409,1909,1573,1909,1240,1243,1573,1410,1574,1910,1407,1910,1558,1408,1407,1428,1427,1911,1560,1911,1405,1408,1560,1428,1561,1912,1425,1912,1544,1426,1425,1913,1914,1546,1548,1914,1423,1426,1546,666,673,1052,1053,673,1915,1916,1052,1052,1916,1917,1050,1066,1918,672,671,1918,1915,673,672,1075,1919,804,803,1919,1063,805,804,1088,1920,881,880,1920,1072,882,881,1105,1921,875,874,1921,1085,876,875,1118,1922,681,680,1922,1102,682,681,1127,1923,825,824,1923,1115,826,825,1140,1924,929,928,1924,1124,930,929,1157,1925,923,922,1925,1137,924,923,1170,1926,690,689,1926,1154,691,690,1179,1927,846,845,1927,1167,847,846,1192,1928,970,969,1928, +1176,971,970,696,1929,964,697,1929,1189,965,964,1008,1930,861,860,1930,692,695,861,1931,1932,1003,1002,1932,1005,1004,1003,1300,1514,1933,1510,1933,1934,1511,1510,1230,1229,1935,1382,1935,1512,1302,1382,1655,1660,1936,1478,1936,1225,1228,1478,1645,1650,1937,1479,1937,1658,1480,1479,1635,1644,1938,1370,1938,1648,1371,1370,1625,1634,1939,1221,1939,1642,1222,1221,1615,1620,1940,1438,1940,1632,1439,1438,1605,1610,1941,1440,1941,1618,1441,1440,1595,1604,1942,1352,1942,1608,1353,1352,1585,1594,1943,1217,1943,1602,1218,1217,1575,1580,1944,1392,1944,1592,1393,1392,1565,1570,1945,1394,1945,1578,1395,1394,1555,1564,1946,1334,1946,1568,1335,1334,1947,1948,1213,1665,1948,1562,1214,1213,1520,1889,1949,1521,1889,1529,1950,1949,1949,1950,1519,1951,1521,1949,1951,1524,1484,1952,1953,1954,1952,1289,1286,1953,1953,1286,1285,1893,1954,1953,1893,1492,1295,1955,1956,1957,1955,1506,1503,1956,1956,1503,1502,1897,1957,1956,1897,1500,1446,1958,1959,1960,1958,1268,1265,1959,1959,1265,1264,1901,1960,1959,1901,1454,1274,1961,1962,1963,1961,1468,1465,1962,1962,1465,1464,1905,1963,1962,1905,1462,1400,1964,1965,1966,1964,1244,1241,1965,1965,1241,1240,1909,1966,1965,1909,1409,1967,1968,1969,1970,1968,1427,1424,1969,1969,1424,1423,1914,1970,1969,1914,1913,1515,1971,1972,1516,1971,1887,1886,1972,1972,1886,1524,1951,1516,1972,1951,1519,1481,1973,1974,1975,1973,1519,1950,1974,1974,1950,1529,1526,1975,1974,1526,1525,1289,1952,1976,1891,1952,1484,1482,1976,1976,1482,1481,1975,1891,1976,1975,1525,1291,1486,1977,1978,1486,1484,1954,1977,1977,1954,1492,1489,1978,1977,1489,1488,1506,1955,1979,1895,1955,1295,1292,1979,1979,1292,1291,1978,1895,1979,1978,1488,1442,1494,1980,1981,1494,1295,1957,1980,1980,1957,1500,1497,1981,1980,1497,1496,1268,1958,1982,1899,1958,1446,1443,1982,1982,1443,1442,1981,1899,1982,1981,1496,1270,1448,1983,1984,1448,1446,1960,1983,1983,1960,1454,1451,1984,1983,1451,1450,1468,1961,1985,1903,1961,1274,1271,1985,1985,1271,1270,1984,1903,1985,1984,1450,1396,1456,1986,1987,1456,1274,1963,1986,1986,1963,1462,1459,1987,1986,1459,1458,1244,1964, +1988,1907,1964,1400,1397,1988,1988,1397,1396,1987,1907,1988,1987,1458,1404,1402,1989,1990,1402,1400,1966,1989,1989,1966,1409,1406,1990,1989,1406,1405,1427,1968,1991,1911,1968,1967,1992,1991,1991,1992,1404,1990,1911,1991,1990,1405,1404,1992,1253,1252,1992,1967,1254,1253,1517,1315,1314,1993,1518,1517,1993,1994,1250,1995,1996,1251,1995,1997,1998,1996,1996,1998,1401,1403,1251,1996,1403,1252,1997,1999,2000,1998,1999,2001,2002,2000,2000,2002,1399,1398,1998,2000,1398,1401,2001,2003,2004,2002,2003,2005,2006,2004,2004,2006,1275,1457,2002,2004,1457,1399,2005,2007,2008,2006,2007,2009,2010,2008,2008,2010,1273,1272,2006,2008,1272,1275,2009,2011,2012,2010,2011,2013,2014,2012,2012,2014,1447,1449,2010,2012,1449,1273,2013,2015,2016,2014,2015,2017,2018,2016,2016,2018,1445,1444,2014,2016,1444,1447,2017,2019,2020,2018,2019,2021,2022,2020,2020,2022,1296,1495,2018,2020,1495,1445,2021,2023,2024,2022,2023,2025,2026,2024,2024,2026,1294,1293,2022,2024,1293,1296,2025,2027,2028,2026,2027,2029,2030,2028,2028,2030,1485,1487,2026,2028,1487,1294,2029,2031,2032,2030,2031,1309,1312,2032,2032,1312,1317,1483,2030,2032,1483,1485,1315,1519,1973,1316,1973,1481,1317,1316,1970,1913,1416,1415,1970,1415,1254,1967,1420,1419,1411,1414,1420,1414,1416,1421,2033,2034,2035,2036,2034,2033,2037,2038,2039,2034,2038,2040,2034,2039,2041,2035,2042,2043,2044,2045,2043,2042,2046,2047,2048,2043,2047,2049,2043,2048,2050,2044,2051,2052,2053,2054,2052,2051,2055,2056,2057,2052,2056,2058,2052,2057,2059,2053,2060,2061,2062,2063,2062,2061,2064,2065,2066,2062,2065,2067,2063,2062,2066,2068,2069,2070,2071,2072,2071,2070,2073,2074,2075,2071,2074,2076,2072,2071,2075,2077,2078,2079,2080,2081,2078,2081,2082,2083,2084,2085,2086,2087,2085,2088,2089,2086,2090,2091,2092,2093,2092,2091,2094,2095,2096,2092,2095,2097,2093,2092,2096,2098,2099,2100,2101,2102,2099,2102,2103,2104,2105,2106,2107,2108,2106,2109,2110,2107,2111,2112,2113,2114,2113,2112,2115,2116,2117,2113,2116,2118,2114,2113,2117,2119,2120,2121,2122,2123,2120,2123,2124,2125,2126,2127,2128,2129,2127,2130,2131,2128,2132,2133,2134,2135, +2133,2132,2136,2137,2138,2133,2137,2139,2133,2138,2140,2134,2141,2142,2143,2144,2141,2144,2145,2146,2147,2148,2149,2150,2148,2151,2152,2149,2153,2154,2155,2156,2155,2154,2036,2035,2157,2155,2035,2041,2156,2155,2157,2158,2159,2160,2161,2162,2161,2160,2163,2164,2165,2161,2164,2166,2162,2161,2165,2167,2168,2169,2164,2163,2169,2168,2170,2171,2172,2169,2171,2173,2169,2172,2166,2164,2174,2175,2176,2177,2176,2175,2045,2044,2178,2176,2044,2050,2177,2176,2178,2179,2180,2181,2182,2183,2182,2181,2184,2185,2186,2182,2185,2187,2183,2182,2186,2188,2189,2190,2185,2184,2190,2189,2191,2192,2193,2190,2192,2194,2190,2193,2187,2185,2195,2196,2197,2198,2197,2196,2054,2053,2199,2197,2053,2059,2198,2197,2199,2200,2201,2202,2203,2204,2203,2202,2205,2206,2207,2203,2206,2208,2204,2203,2207,2209,2210,2211,2206,2205,2211,2210,2212,2213,2214,2211,2213,2215,2211,2214,2208,2206,2216,2217,2065,2064,2217,2216,2218,2219,2220,2217,2219,2221,2217,2220,2067,2065,2222,2218,2223,2224,2223,2218,2216,2225,2138,2139,2223,2225,2224,2223,2139,2226,2216,2064,2227,2225,2227,2064,2061,2228,2140,2227,2228,2229,2227,2140,2138,2225,2230,2231,2232,2233,2232,2231,2234,2235,2236,2232,2235,2237,2233,2232,2236,2238,2239,2240,2235,2234,2240,2239,2241,2242,2243,2240,2242,2244,2240,2243,2237,2235,2245,2246,2074,2073,2246,2245,2247,2248,2249,2246,2248,2250,2246,2249,2076,2074,2251,2252,2078,2083,2252,2253,2079,2078,2254,2255,2256,2257,2255,2258,2259,2256,2256,2259,2260,2261,2256,2261,2262,2257,2263,2264,2265,2266,2267,2263,2266,2268,2269,903,902,2270,2269,2270,2271,2272,2086,2089,2273,2274,2086,2274,2275,2087,2276,2277,2278,2279,2278,2277,2280,2281,2282,2278,2281,2283,2279,2278,2282,2284,2285,2286,2281,2280,2286,2285,2287,2288,2289,2286,2288,2290,2286,2289,2283,2281,2291,2292,2095,2094,2292,2291,2293,2294,2295,2292,2294,2296,2292,2295,2097,2095,2297,2298,2099,2104,2298,2299,2100,2099,2300,2301,2302,2303,2301,2304,2305,2302,2302,2305,2306,2307,2302,2307,2308,2303,2309,2310,2311,2312,2310,2313,2314,2311,2311,2314,2315,2316,2311,2316,2317,2312,2107,2110,2318,2319,2107,2319,2320, +2108,2321,2322,2323,2324,2323,2322,2325,2326,2220,2221,2323,2326,2324,2323,2221,2327,2328,2329,2326,2325,2329,2328,2330,2331,2066,2067,2329,2331,2329,2067,2220,2326,2332,2333,2116,2115,2333,2332,2334,2335,2336,2333,2335,2337,2333,2336,2118,2116,2338,2339,2120,2125,2339,2340,2121,2120,2341,2342,2343,2344,2342,2345,2346,2343,2343,2346,2347,2348,2343,2348,2349,2344,2350,2351,2352,2353,2351,2354,2355,2352,2352,2355,2356,2357,2352,2357,2358,2353,2128,2131,2359,2360,2128,2360,2361,2129,2362,2363,2364,2365,2363,2362,2366,2367,2132,2363,2367,2136,2363,2132,2135,2364,2364,2135,2368,2369,2365,2364,2369,2370,2371,2368,2372,2373,2372,2368,2135,2134,2140,2229,2372,2134,2373,2372,2229,2374,2375,2376,2377,2378,2376,2379,2380,2377,2381,2380,2379,2382,2381,2382,2147,2150,2382,2379,2143,2383,2382,2383,2384,2147,2385,2152,2151,2386,2385,2386,2387,2388,2386,2151,2389,2390,2386,2390,2391,2387,2392,2393,2389,2394,2392,2394,2384,2395,1034,1030,2396,2397,2396,1030,1033,2398,2397,2396,2399,2400,2084,2087,2401,2402,2401,2265,2264,2402,2403,2404,2405,2406,2403,2406,2275,2407,1048,2408,2398,1033,2408,1048,1051,2409,2410,2398,2408,2411,2254,2257,2412,2413,2412,2089,2088,2413,2168,2163,2414,2415,2414,2163,2160,2416,2157,2041,2414,2416,2414,2041,2039,2415,2417,2418,2273,2419,2417,2419,2262,2420,2421,2170,2422,2423,2422,2170,2168,2415,2039,2040,2422,2415,2423,2422,2040,2424,2245,2073,2425,2426,2425,2073,2070,2427,2165,2166,2425,2427,2425,2166,2172,2426,2251,2083,2428,2429,2428,2259,2258,2429,2430,2247,2431,2432,2431,2247,2245,2426,2172,2173,2431,2426,2432,2431,2173,2433,2434,2435,2260,2436,2434,2436,2082,2437,2309,2312,2438,2439,2438,2079,2253,2439,2239,2234,2440,2441,2440,2234,2231,2442,2075,2076,2440,2442,2440,2076,2249,2441,2443,2241,2444,2445,2444,2241,2239,2441,2249,2250,2444,2441,2445,2444,2250,2446,2447,2448,2080,2449,2447,2449,2317,2450,2042,2045,2451,2452,2451,2045,2175,2453,2236,2237,2451,2453,2451,2237,2243,2452,2105,2108,2454,2455,2454,2314,2313,2455,2456,2457,2315,2458,2456,2458,2320,2459,2460,2046,2461,2462,2461,2046,2042,2452,2243, +2244,2461,2452,2462,2461,2244,2463,2300,2303,2464,2465,2464,2110,2109,2465,2189,2184,2466,2467,2466,2184,2181,2468,2178,2050,2466,2468,2466,2050,2048,2467,2469,2470,2318,2471,2469,2471,2308,2472,2473,2191,2474,2475,2474,2191,2189,2467,2048,2049,2474,2467,2475,2474,2049,2476,2291,2094,2477,2478,2477,2094,2091,2479,2186,2187,2477,2479,2477,2187,2193,2478,2297,2104,2480,2481,2480,2305,2304,2481,2482,2293,2483,2484,2483,2293,2291,2478,2193,2194,2483,2478,2484,2483,2194,2485,2486,2487,2306,2488,2486,2488,2103,2489,2350,2353,2490,2491,2490,2100,2299,2491,2285,2280,2492,2493,2492,2280,2277,2494,2096,2097,2492,2494,2492,2097,2295,2493,2495,2287,2496,2497,2496,2287,2285,2493,2295,2296,2496,2493,2497,2496,2296,2498,2499,2500,2101,2501,2499,2501,2358,2502,2051,2054,2503,2504,2503,2054,2196,2505,2282,2283,2503,2505,2503,2283,2289,2504,2126,2129,2506,2507,2506,2355,2354,2507,2508,2509,2356,2510,2508,2510,2361,2511,2512,2055,2513,2514,2513,2055,2051,2504,2289,2290,2513,2504,2514,2513,2290,2515,2341,2344,2516,2517,2516,2131,2130,2517,2210,2205,2518,2519,2518,2205,2202,2520,2199,2059,2518,2520,2518,2059,2057,2519,2521,2522,2359,2523,2521,2523,2349,2524,2525,2212,2526,2527,2526,2212,2210,2519,2057,2058,2526,2519,2527,2526,2058,2528,2332,2115,2529,2530,2529,2115,2112,2531,2207,2208,2529,2531,2529,2208,2214,2530,2338,2125,2532,2533,2532,2346,2345,2533,2534,2334,2535,2536,2535,2334,2332,2530,2214,2215,2535,2530,2536,2535,2215,2537,2538,2539,2347,2540,2538,2540,2124,2541,2388,2387,2542,2543,2542,2121,2340,2543,2328,2325,2544,2545,2544,2325,2322,2546,2117,2118,2544,2546,2544,2118,2336,2545,2547,2330,2548,2549,2548,2330,2328,2545,2336,2337,2548,2545,2549,2548,2337,2550,2551,2552,2122,2553,2551,2553,2391,2554,2033,2036,2410,2411,2410,2036,2154,2399,2410,2399,2396,2398,2555,2136,2367,2556,2556,2367,2366,2557,2167,2165,2427,2558,2558,2427,2070,2069,2077,2075,2442,2559,2559,2442,2231,2230,2158,2157,2416,2560,2560,2416,2160,2159,2238,2236,2453,2561,2561,2453,2175,2174,2179,2178,2468,2562,2562,2468,2181,2180,2188,2186,2479,2563,2563,2479,2091, +2090,2098,2096,2494,2564,2564,2494,2277,2276,2284,2282,2505,2565,2565,2505,2196,2195,2200,2199,2520,2566,2566,2520,2202,2201,2209,2207,2531,2567,2567,2531,2112,2111,2119,2117,2546,2568,2568,2546,2322,2321,2327,2221,2219,2569,2569,2219,2218,2222,2226,2139,2137,2570,2570,2137,2136,2555,2571,2572,2573,2574,2575,2573,2572,2576,2573,2577,2578,2574,2579,2580,2581,2582,2583,2581,2580,2584,2581,2585,2586,2582,2587,2588,2589,2590,2591,2589,2588,2592,2589,2593,2594,2590,2595,2596,2597,2598,2595,2598,2599,2600,2601,2602,2603,2604,2602,2605,2606,2603,2603,2606,2607,2608,2604,2603,2608,2609,2610,2611,2612,2613,2610,2613,2614,2615,1250,1247,2616,2617,1247,1246,2618,2616,2616,2618,2619,2620,2617,2616,2620,2621,2622,2623,2624,2625,2623,2626,2627,2624,2624,2627,2628,2629,2625,2624,2629,2630,2631,2632,2633,2634,2631,2634,2635,2636,2637,2638,2639,2640,2637,2640,2641,2642,2643,2644,2645,2646,2644,2647,2648,2645,2645,2648,2649,2650,2646,2645,2650,2651,2652,2653,2654,2655,2652,2655,2656,2657,2658,2659,2660,2661,2658,2661,2662,2663,2664,2665,2666,2667,2665,2668,2669,2666,2670,2671,2672,2673,2670,2673,2674,2675,1313,1310,2676,2677,1310,1309,2678,2676,2676,2678,2679,2680,2677,2676,2680,2681,2682,2683,2684,2685,2683,2686,2687,2684,2684,2687,2571,2574,2685,2684,2574,2578,2688,2689,2690,2691,2689,2692,2693,2690,2690,2693,2694,2695,2691,2690,2695,2696,2694,2697,2698,2695,2699,2698,2697,2700,2698,2701,2696,2695,2702,2703,2704,2705,2703,2706,2707,2704,2704,2707,2579,2582,2705,2704,2582,2586,2708,2709,2710,2711,2709,2712,2713,2710,2710,2713,2714,2715,2711,2710,2715,2716,2714,2717,2718,2715,2719,2718,2717,2720,2718,2721,2716,2715,2722,2723,2724,2725,2723,2726,2727,2724,2724,2727,2587,2590,2725,2724,2590,2594,2728,2729,2730,2731,2729,2732,2733,2730,2730,2733,2734,2735,2731,2730,2735,2736,2734,2737,2738,2735,2739,2738,2737,2740,2738,2741,2736,2735,2599,2598,2742,2743,2598,2597,2744,2742,2745,2746,2747,2748,2746,2749,2750,2747,2747,2750,2669,2751,2748,2747,2751,2743,2669,2668,2752,2751,2753,2752,2668,2754,2752,2599,2743,2751,2755,2756,2757,2758,2756, +2759,2760,2757,2757,2760,2761,2762,2758,2757,2762,2763,2761,2764,2765,2762,2766,2765,2764,2767,2765,2768,2763,2762,2607,2769,2770,2608,2771,2770,2769,2772,2770,2773,2609,2608,2774,2775,2776,2777,2774,2777,2778,2779,2780,2779,2778,2781,2780,2781,2782,2783,2784,2785,2786,2787,2784,2787,2788,2789,1246,1412,2790,2618,1412,1411,2791,2790,2790,2791,2792,2793,2618,2790,2793,2619,2794,1419,1418,2795,2794,2795,2796,2797,2798,2799,2800,2801,2798,2801,2802,2803,2804,2805,2806,2807,2805,2808,2809,2806,2806,2809,2810,2811,2807,2806,2811,2812,2810,2813,2814,2811,2815,2814,2813,2816,2814,2817,2812,2811,2628,2818,2819,2629,2820,2819,2818,2821,2819,2822,2630,2629,2823,2824,2825,2826,2823,2826,2827,2828,2829,2828,2827,2830,2829,2830,2639,2638,2831,2832,2833,2834,2831,2834,2835,2836,2837,2642,2641,2838,2837,2838,2776,2775,2839,2840,2841,2842,2839,2842,2843,2844,2845,2846,2847,2848,2845,2848,2849,2850,2851,2852,2853,2854,2852,2855,2856,2853,2853,2856,2744,2857,2854,2853,2857,2858,2744,2597,2859,2857,2860,2859,2597,2596,2859,2861,2858,2857,2649,2862,2863,2650,2864,2863,2862,2865,2863,2866,2651,2650,2867,2868,2869,2870,2867,2870,2871,2872,2873,2872,2871,2874,2873,2874,2660,2659,2875,2876,2877,2878,2875,2878,2879,2880,2881,2663,2662,2882,2881,2882,2825,2824,2883,2884,2885,2886,2883,2886,2887,2888,2889,2890,2891,2892,2889,2892,2893,2894,2895,2896,2897,2898,2896,2664,2667,2897,2899,2896,2895,2900,2901,2754,2668,2665,2901,2665,2664,2902,2903,2904,2905,2906,2903,2906,2907,2908,2909,2910,2911,2912,2909,2912,2674,2913,2914,2915,2916,2917,2914,2917,2918,2919,2920,2921,2911,2922,2920,2922,2918,2923,1539,1536,2924,2925,1536,1535,2926,2924,2924,2926,2927,2928,2925,2924,2928,2929,2930,2931,2800,2932,2930,2932,2933,2934,2935,1552,1551,2936,2701,2937,2938,2696,2937,2572,2571,2938,2939,2940,2786,2941,2939,2941,2802,2942,2943,2576,2572,2937,2943,2937,2701,2944,2773,2945,2946,2609,2945,2697,2694,2946,2947,2700,2697,2945,2947,2945,2773,2948,2949,2950,2612,2951,2949,2951,2788,2952,2768,2953,2954,2763,2953,2769,2607,2954,2955,2772,2769,2953,2955,2953,2768, +2956,2957,2958,2841,2959,2957,2959,2614,2960,2585,2961,2962,2586,2961,2764,2761,2962,2963,2964,2847,2965,2963,2965,2843,2966,2967,2767,2764,2961,2967,2961,2585,2968,2721,2969,2970,2716,2969,2580,2579,2970,2971,2972,2833,2973,2971,2973,2849,2974,2975,2584,2580,2969,2975,2969,2721,2976,2822,2977,2978,2630,2977,2717,2714,2978,2979,2720,2717,2977,2979,2977,2822,2980,2981,2982,2633,2983,2981,2983,2835,2984,2817,2985,2986,2812,2985,2818,2628,2986,2987,2821,2818,2985,2987,2985,2817,2988,2989,2990,2885,2991,2989,2991,2635,2992,2593,2993,2994,2594,2993,2813,2810,2994,2995,2996,2891,2997,2995,2997,2887,2998,2999,2816,2813,2993,2999,2993,2593,3000,2741,3001,3002,2736,3001,2588,2587,3002,3003,3004,2877,3005,3003,3005,2893,3006,3007,2592,2588,3001,3007,3001,2741,3008,2866,3009,3010,2651,3009,2737,2734,3010,3011,2740,2737,3009,3011,3009,2866,3012,3013,3014,2654,3015,3013,3015,2879,3016,2861,3017,3018,2858,3017,2862,2649,3018,3019,2865,2862,3017,3019,3017,2861,3020,3021,3022,2916,3023,3021,3023,2656,3024,2929,2578,2577,3025,2925,2929,3025,2936,3026,3027,3028,3029,3027,3030,3031,3028,3028,3031,2898,2897,3029,3028,2897,2667,2692,3032,3033,2693,3032,2601,2604,3033,3033,2604,2609,2946,2693,3033,2946,2694,2605,3034,3035,2606,3034,2755,2758,3035,3035,2758,2763,2954,2606,3035,2954,2607,2686,3036,3037,2687,3036,2688,2691,3037,3037,2691,2696,2938,2687,3037,2938,2571,2759,3038,3039,2760,3038,2702,2705,3039,3039,2705,2586,2962,2760,3039,2962,2761,2706,3040,3041,2707,3040,2708,2711,3041,3041,2711,2716,2970,2707,3041,2970,2579,2712,3042,3043,2713,3042,2622,2625,3043,3043,2625,2630,2978,2713,3043,2978,2714,2626,3044,3045,2627,3044,2804,2807,3045,3045,2807,2812,2986,2627,3045,2986,2628,2808,3046,3047,2809,3046,2722,2725,3047,3047,2725,2594,2994,2809,3047,2994,2810,2726,3048,3049,2727,3048,2728,2731,3049,3049,2731,2736,3002,2727,3049,3002,2587,2732,3050,3051,2733,3050,2643,2646,3051,3051,2646,2651,3010,2733,3051,3010,2734,2647,3052,3053,2648,3052,2851,2854,3053,3053,2854,2858,3018,2648,3053,3018,2649,2855,3054,3055,2856,3054,2745,2748,3055,3055, +2748,2743,2742,2856,3055,2742,2744,2749,3056,3057,2750,3056,3026,3029,3057,3057,3029,2667,2666,2750,3057,2666,2669,1535,1699,3058,2926,1699,1698,3059,3058,3058,3059,3060,3061,2926,3058,3061,2927,2682,3062,3063,2683,3062,3064,3065,3063,3063,3065,3066,3067,2683,3063,3067,2686,2686,3067,3068,3036,3067,3066,3069,3068,3068,3069,3070,3071,3036,3068,3071,2688,2688,3071,3072,2689,3071,3070,3073,3072,3072,3073,3074,3075,2689,3072,3075,2692,2692,3075,3076,3032,3075,3074,3077,3076,3076,3077,3078,3079,3032,3076,3079,2601,2601,3079,3080,2602,3079,3078,3081,3080,3080,3081,3082,3083,2602,3080,3083,2605,2605,3083,3084,3034,3083,3082,3085,3084,3084,3085,3086,3087,3034,3084,3087,2755,2755,3087,3088,2756,3087,3086,3089,3088,3088,3089,3090,3091,2756,3088,3091,2759,2759,3091,3092,3038,3091,3090,3093,3092,3092,3093,3094,3095,3038,3092,3095,2702,2702,3095,3096,2703,3095,3094,3097,3096,3096,3097,3098,3099,2703,3096,3099,2706,2706,3099,3100,3040,3099,3098,3101,3100,3100,3101,3102,3103,3040,3100,3103,2708,2708,3103,3104,2709,3103,3102,3105,3104,3104,3105,3106,3107,2709,3104,3107,2712,2712,3107,3108,3042,3107,3106,3109,3108,3108,3109,3110,3111,3042,3108,3111,2622,2622,3111,3112,2623,3111,3110,3113,3112,3112,3113,3114,3115,2623,3112,3115,2626,2626,3115,3116,3044,3115,3114,3117,3116,3116,3117,3118,3119,3044,3116,3119,2804,2804,3119,3120,2805,3119,3118,3121,3120,3120,3121,3122,3123,2805,3120,3123,2808,2808,3123,3124,3046,3123,3122,3125,3124,3124,3125,3126,3127,3046,3124,3127,2722,2722,3127,3128,2723,3127,3126,3129,3128,3128,3129,3130,3131,2723,3128,3131,2726,2726,3131,3132,3048,3131,3130,3133,3132,3132,3133,3134,3135,3048,3132,3135,2728,2728,3135,3136,2729,3135,3134,3137,3136,3136,3137,3138,3139,2729,3136,3139,2732,2732,3139,3140,3050,3139,3138,3141,3140,3140,3141,3142,3143,3050,3140,3143,2643,2643,3143,3144,2644,3143,3142,3145,3144,3144,3145,3146,3147,2644,3144,3147,2647,2647,3147,3148,3052,3147,3146,3149,3148,3148,3149,3150,3151,3052,3148,3151,2851,2851,3151,3152,2852,3151,3150,3153,3152,3152,3153,3154,3155,2852,3152,3155,2855,2855,3155,3156, +3054,3155,3154,3157,3156,3156,3157,3158,3159,3054,3156,3159,2745,2745,3159,3160,2746,3159,3158,3161,3160,3160,3161,3162,3163,2746,3160,3163,2749,2749,3163,3164,3056,3163,3162,3165,3164,3164,3165,3166,3167,3056,3164,3167,3026,3026,3167,3168,3027,3167,3166,3169,3168,3168,3169,3170,3171,3027,3168,3171,3030,2153,3172,3173,2400,3172,3064,3060,3173,3173,3060,3059,3174,2397,2400,3173,3174,2158,3175,3176,2156,3175,3066,3065,3176,3176,3065,3064,3172,2156,3176,3172,2153,2159,3177,3178,2560,3177,3070,3069,3178,3178,3069,3066,3175,2560,3178,3175,2158,2167,3179,3180,2162,3179,3074,3073,3180,3180,3073,3070,3177,2162,3180,3177,2159,2069,3181,3182,2558,3181,3078,3077,3182,3182,3077,3074,3179,2558,3182,3179,2167,2077,3183,3184,2072,3183,3082,3081,3184,3184,3081,3078,3181,2072,3184,3181,2069,2230,3185,3186,2559,3185,3086,3085,3186,3186,3085,3082,3183,2559,3186,3183,2077,2238,3187,3188,2233,3187,3090,3089,3188,3188,3089,3086,3185,2233,3188,3185,2230,2174,3189,3190,2561,3189,3094,3093,3190,3190,3093,3090,3187,2561,3190,3187,2238,2179,3191,3192,2177,3191,3098,3097,3192,3192,3097,3094,3189,2177,3192,3189,2174,2180,3193,3194,2562,3193,3102,3101,3194,3194,3101,3098,3191,2562,3194,3191,2179,2188,3195,3196,2183,3195,3106,3105,3196,3196,3105,3102,3193,2183,3196,3193,2180,2090,3197,3198,2563,3197,3110,3109,3198,3198,3109,3106,3195,2563,3198,3195,2188,2098,3199,3200,2093,3199,3114,3113,3200,3200,3113,3110,3197,2093,3200,3197,2090,2276,3201,3202,2564,3201,3118,3117,3202,3202,3117,3114,3199,2564,3202,3199,2098,2284,3203,3204,2279,3203,3122,3121,3204,3204,3121,3118,3201,2279,3204,3201,2276,2195,3205,3206,2565,3205,3126,3125,3206,3206,3125,3122,3203,2565,3206,3203,2284,2200,3207,3208,2198,3207,3130,3129,3208,3208,3129,3126,3205,2198,3208,3205,2195,2201,3209,3210,2566,3209,3134,3133,3210,3210,3133,3130,3207,2566,3210,3207,2200,2209,3211,3212,2204,3211,3138,3137,3212,3212,3137,3134,3209,2204,3212,3209,2201,2111,3213,3214,2567,3213,3142,3141,3214,3214,3141,3138,3211,2567,3214,3211,2209,2119,3215,3216,2114,3215,3146,3145,3216,3216,3145,3142,3213,2114, +3216,3213,2111,2321,3217,3218,2568,3217,3150,3149,3218,3218,3149,3146,3215,2568,3218,3215,2119,2327,3219,3220,2324,3219,3154,3153,3220,3220,3153,3150,3217,2324,3220,3217,2321,2222,3221,3222,2569,3221,3158,3157,3222,3222,3157,3154,3219,2569,3222,3219,2327,2226,3223,3224,2224,3223,3162,3161,3224,3224,3161,3158,3221,2224,3224,3221,2222,2555,3225,3226,2570,3225,3166,3165,3226,3226,3165,3162,3223,2570,3226,3223,2226,2557,3227,3228,2556,3227,3170,3169,3228,3228,3169,3166,3225,2556,3228,3225,2555,2266,2265,2405,2271,2266,2271,2270,2268,3229,2934,2933,2796,3229,2796,2795,3230,2438,2312,2317,2449,2438,2449,2080,2079,2428,2083,2082,2436,2428,2436,2260,2259,3231,2437,2082,2081,3231,2081,2080,2448,3232,2450,2317,2316,3232,2316,2315,2457,3233,2420,2262,2261,3233,2261,2260,2435,2454,2108,2320,2458,2454,2458,2315,2314,2412,2257,2262,2419,2412,2419,2273,2089,3234,2459,2320,2319,3234,2319,2318,2470,3235,2407,2275,2274,3235,2274,2273,2418,2464,2303,2308,2471,2464,2471,2318,2110,2401,2087,2275,2406,2401,2406,2405,2265,3236,2472,2308,2307,3236,2307,2306,2487,2480,2104,2103,2488,2480,2488,2306,2305,3237,2489,2103,2102,3237,2102,2101,2500,2490,2353,2358,2501,2490,2501,2101,2100,3238,2502,2358,2357,3238,2357,2356,2509,2506,2129,2361,2510,2506,2510,2356,2355,3239,2511,2361,2360,3239,2360,2359,2522,2516,2344,2349,2523,2516,2523,2359,2131,3240,2524,2349,2348,3240,2348,2347,2539,2532,2125,2124,2540,2532,2540,2347,2346,3241,2541,2124,2123,3241,2123,2122,2552,2542,2387,2391,2553,2542,2553,2122,2121,3242,2554,2391,2390,3242,2390,2389,2393,2148,2147,2384,2394,2148,2394,2389,2151,3243,2395,2384,2383,3243,2383,2143,2142,2376,2375,2145,2144,2376,2144,2143,2379,3244,2913,2674,2673,3244,2673,2672,3245,3246,2675,2674,2912,3246,2912,2911,2921,3247,2919,2918,2922,3247,2922,2911,2910,3248,2923,2918,2917,3248,2917,2916,3022,3249,2657,2656,3023,3249,3023,2916,2915,3250,3024,2656,2655,3250,2655,2654,3014,3251,2880,2879,3015,3251,3015,2654,2653,3252,3016,2879,2878,3252,2878,2877,3004,3253,2894,2893,3005,3253,3005,2877,2876,3254,3006,2893,2892,3254,2892,2891, +2996,3255,2888,2887,2997,3255,2997,2891,2890,3256,2998,2887,2886,3256,2886,2885,2990,3257,2636,2635,2991,3257,2991,2885,2884,3258,2992,2635,2634,3258,2634,2633,2982,3259,2836,2835,2983,3259,2983,2633,2632,3260,2984,2835,2834,3260,2834,2833,2972,3261,2850,2849,2973,3261,2973,2833,2832,3262,2974,2849,2848,3262,2848,2847,2964,3263,2844,2843,2965,3263,2965,2847,2846,3264,2966,2843,2842,3264,2842,2841,2958,3265,2615,2614,2959,3265,2959,2841,2840,3266,2960,2614,2613,3266,2613,2612,2950,3267,2789,2788,2951,3267,2951,2612,2611,3268,2952,2788,2787,3268,2787,2786,2940,3269,2803,2802,2941,3269,2941,2786,2785,3270,2942,2802,2801,3270,2801,2800,2931,3271,3272,2933,2932,3271,2932,2800,2799,3273,2037,3274,3275,3274,2037,2033,2411,3274,2411,2408,2409,3276,3275,3274,2409,3025,2577,3277,3278,2424,2040,2038,3279,3279,2038,2037,3273,2433,2173,2171,3280,3280,2171,2170,2421,2446,2250,2248,3281,3281,2248,2247,2430,2463,2244,2242,3282,3282,2242,2241,2443,2476,2049,2047,3283,3283,2047,2046,2460,2485,2194,2192,3284,3284,2192,2191,2473,2498,2296,2294,3285,3285,2294,2293,2482,2515,2290,2288,3286,3286,2288,2287,2495,2528,2058,2056,3287,3287,2056,2055,2512,2537,2215,2213,3288,3288,2213,2212,2525,2550,2337,2335,3289,3289,2335,2334,2534,2068,2066,2331,3290,3290,2331,2330,2547,2374,2229,2228,3291,3291,2228,2061,2060,3292,2370,2369,3293,3293,2369,2368,2371,2899,2902,2664,2896,2753,2600,2599,2752,2860,3020,2861,2859,2864,3012,2866,2863,2739,3008,2741,2738,2591,3000,2593,2589,2815,2988,2817,2814,2820,2980,2822,2819,2719,2976,2721,2718,2583,2968,2585,2581,2766,2956,2768,2765,2771,2948,2773,2770,2699,2944,2701,2698,2575,3277,2577,2573,2910,2909,3294,3247,2909,2913,3295,3294,3294,3295,2908,3296,3247,3294,3296,2919,2872,3297,3298,3299,3297,2880,3251,3298,3298,3251,2653,2652,3299,3298,2652,2657,2663,3300,3301,3302,3300,2888,3255,3301,3301,3255,2890,2889,3302,3301,2889,2894,2828,3303,3304,3305,3303,2836,3259,3304,3304,3259,2632,2631,3305,3304,2631,2636,2642,3306,3307,3308,3306,2844,3263,3307,3307,3263,2846,2845,3308,3307,2845,2850,2779,3309,3310,3311,3309, +2789,3267,3310,3310,3267,2611,2610,3311,3310,2610,2615,3312,3313,3314,3315,3313,3272,3271,3314,3314,3271,2799,2798,3315,3314,2798,2803,2904,2903,3316,3317,2903,2908,3295,3316,3316,3295,2913,3244,3317,3316,3244,3245,2868,3318,3319,3320,3318,2915,2914,3319,3319,2914,2919,3296,3320,3319,3296,2908,2657,3249,3321,3299,3249,2915,3318,3321,3321,3318,2868,2867,3299,3321,2867,2872,2659,3322,3323,2873,3322,2876,2875,3323,3323,2875,2880,3297,2873,3323,3297,2872,2894,3253,3324,3302,3253,2876,3322,3324,3324,3322,2659,2658,3302,3324,2658,2663,2824,3325,3326,2881,3325,2884,2883,3326,3326,2883,2888,3300,2881,3326,3300,2663,2636,3257,3327,3305,3257,2884,3325,3327,3327,3325,2824,2823,3305,3327,2823,2828,2638,3328,3329,2829,3328,2832,2831,3329,3329,2831,2836,3303,2829,3329,3303,2828,2850,3261,3330,3308,3261,2832,3328,3330,3330,3328,2638,2637,3308,3330,2637,2642,2775,3331,3332,2837,3331,2840,2839,3332,3332,2839,2844,3306,2837,3332,3306,2642,2615,3265,3333,3311,3265,2840,3331,3333,3333,3331,2775,2774,3311,3333,2774,2779,2783,3334,3335,2780,3334,2785,2784,3335,3335,2784,2789,3309,2780,3335,3309,2779,2803,3269,3336,3315,3269,2785,3334,3336,3336,3334,2783,3337,3315,3336,3337,3312,3337,2783,2782,3338,3337,3338,3339,3312,3340,3341,3342,3343,3341,1313,2677,3342,3342,2677,2681,3344,3343,3342,3344,3345,1997,1995,3346,3347,1995,1250,2617,3346,3346,2617,2621,3348,3347,3346,3348,3349,2001,1999,3350,3351,1999,1997,3347,3350,3350,3347,3349,3352,3351,3350,3352,3353,2005,2003,3354,3355,2003,2001,3351,3354,3354,3351,3353,3356,3355,3354,3356,3357,2009,2007,3358,3359,2007,2005,3355,3358,3358,3355,3357,3360,3359,3358,3360,3361,2013,2011,3362,3363,2011,2009,3359,3362,3362,3359,3361,3364,3363,3362,3364,3365,2017,2015,3366,3367,2015,2013,3363,3366,3366,3363,3365,3368,3367,3366,3368,3369,2021,2019,3370,3371,2019,2017,3367,3370,3370,3367,3369,3372,3371,3370,3372,3373,2025,2023,3374,3375,2023,2021,3371,3374,3374,3371,3373,3376,3375,3374,3376,3377,2029,2027,3378,3379,2027,2025,3375,3378,3378,3375,3377,3380,3379,3378,3380,3381,1309,2031,3382,2678,2031,2029,3379, +3382,3382,3379,3381,3383,2678,3382,3383,2679,3320,2908,2907,3384,3320,3384,2869,2868,3272,3313,3385,3386,3313,3312,3339,3385,2791,1411,1419,2794,2791,2794,2797,2792,2268,897,896,2267,2907,2906,3344,2681,2906,2905,3345,3344,2270,902,897,2268,2271,2405,2404,2272,1051,3387,3276,2409,2154,2153,2400,2399,1698,3388,3174,3059,3388,1034,2397,3174,3064,3062,3061,3060,3062,2682,2927,3061,2682,2685,2928,2927,2685,2578,2929,2928,1539,2925,2936,1551,3025,3278,2935,2936,2795,1418,3389,3230,2796,2933,3272,2797,2797,3272,3386,2792,3386,3385,2793,2792,3385,3339,2619,2793,3339,3338,2620,2619,3338,2782,2621,2620,2782,2781,3348,2621,2781,2778,3349,3348,2778,2777,3352,3349,2777,2776,3353,3352,2776,2838,3356,3353,2838,2641,3357,3356,2641,2640,3360,3357,2640,2639,3361,3360,2639,2830,3364,3361,2830,2827,3365,3364,2827,2826,3368,3365,2826,2825,3369,3368,2825,2882,3372,3369,2882,2662,3373,3372,2662,2661,3376,3373,2661,2660,3377,3376,2660,2874,3380,3377,2874,2871,3381,3380,2871,2870,3383,3381,2870,2869,2679,3383,2869,3384,2680,2679,3384,2907,2681,2680,900,1042,1041,899,1313,3341,1993,1314,3341,3340,1994,1993,898,897,902,901,905,1043,1046,906,3387,1051,1050,1917,785,788,1037,1036,1034,3388,1816,1035,3388,1698,1701,1816,1318,1705,1702,1543,1705,1709,1703,1702,1322,1319,1542,1541,1319,1318,1543,1542,1540,1539,1551,1550,1554,1947,1665,1553,1872,3389,1418,1417,1421,1913,1548,1422,1416,1913,1421,1199,3390,3391,1001,3390,3392,3393,3391,3391,3393,3394,3395,997,1001,3391,3395,3396,1303,1306,3397,3396,3397,3398,3399,3400,3401,3402,3403,3400,3403,3404,3405,3403,3402,1303,3396,1515,1518,3406,3407,1671,1670,3408,3409,1670,1508,3410,3408,3408,3410,3411,3412,3409,3408,3412,3413,1812,1811,3414,3415,1811,1671,3409,3414,3414,3409,3413,3416,3415,3414,3416,3417,1199,1870,3418,3390,1870,1812,3415,3418,3418,3415,3417,3419,3390,3418,3419,3392,3398,3397,3420,3421,3397,1306,3422,3420,3403,3396,3399,3404,1887,1971,3423,3424,1971,1515,3407,3423,3425,3406,1518,1994,3426,3427,3428,3429,2366,2362,3426,3429,3426,2362,2365,3430,3427,3426,3430,3431,3430,2365,2370,3431,3430, +2370,3292,3432,2672,2671,3433,3432,3433,3434,3435,3436,3437,3438,3439,3438,3440,3441,3439,3433,3439,3441,3434,2905,2904,3442,3443,2898,3031,3444,3445,3031,3030,3446,3444,3444,3446,3447,3448,3445,3444,3448,3449,3030,3171,3450,3446,3171,3170,3451,3450,3450,3451,3452,3453,3446,3450,3453,3447,3170,3227,3454,3451,3227,2557,3455,3454,3454,3455,3456,3457,3451,3454,3457,3452,3458,3459,3245,2672,3433,2671,3436,3439,3442,2904,3317,3460,3317,3245,3459,3460,3340,3343,3461,3462,3463,3461,3343,3345,3345,2905,3443,3463,1994,3340,3462,3425,3464,2375,2378,3465,3466,3467,3404,3399,3421,3466,3399,3398,3468,3469,3435,3434,3470,3468,3434,3441,1010,773,3471,3472,3471,773,776,3473,1931,1002,3474,3475,1002,998,3474,3474,998,997,3395,3475,3474,3395,3394,3476,1011,1010,3472,3477,2145,2375,3464,2146,2145,3477,3478,3456,3455,3429,3428,3455,2557,2366,3429,3458,2672,3432,3479,3432,3435,3469,3479,1306,1887,3424,3422,3480,3481,3482,3483,3481,3484,3485,3482,3482,3485,3486,3487,3483,3482,3487,3488,3489,3490,3491,3492,3491,3493,3494,3492,3493,3491,3495,3496,3491,3490,3497,3495,3495,3497,3498,3499,3500,3496,3495,3499,3501,3502,3503,3504,3502,3505,3506,3503,3503,3506,3507,3508,3509,3504,3503,3508,3510,3511,3508,3507,3511,3512,3509,3508,3513,3514,3499,3498,3514,3515,3500,3499,3516,3517,3518,3519,3517,3520,3521,3518,3522,3523,3524,3525,3523,3526,3527,3524,3528,3529,3530,3531,3529,3532,3533,3530,3534,3535,3536,3537,3538,3539,3540,3541,3539,3542,3543,3540,3540,3543,3544,3545,3541,3540,3545,3546,3547,3548,3549,3550,3548,3551,3552,3549,3553,3554,3555,3556,3553,3556,3557,3558,3559,3560,3561,3562,3560,3563,3564,3561,3561,3564,3565,3566,3562,3561,3566,3567,3568,3569,3570,3571,3569,3572,3573,3570,3574,3575,3576,3577,3574,3577,3578,3579,3580,3581,3582,3583,3581,3584,3585,3582,3582,3585,3586,3587,3583,3582,3587,3588,3589,3590,3591,3592,3590,3593,3594,3591,3595,3596,3597,3598,3595,3598,3599,3600,3601,3602,3603,3604,3602,3605,3606,3603,3607,3608,3609,3610,3608,3611,3612,3609,3613,3614,3615,3616,3613,3616,3617,3618,3619,3620,3621,3622,3620,3623,3624,3621,3621,3624, +3625,3626,3622,3621,3626,3627,3628,3629,3630,3631,3629,3632,3633,3630,3630,3633,3634,3635,3631,3630,3635,3636,3637,3638,3639,3640,3638,3641,3642,3639,3643,3644,3645,3646,3644,3647,3648,3645,3645,3648,3649,3650,3646,3645,3650,3651,3652,3653,3654,3655,3653,3656,3657,3654,3654,3657,3658,3659,3655,3654,3659,3660,3661,3662,3663,3664,3662,3665,3666,3663,3667,3668,3669,3670,3668,3671,3672,3669,3669,3672,3673,3674,3670,3669,3674,3675,3676,3677,3678,3679,3677,3680,3681,3678,3678,3681,3682,3683,3679,3678,3683,3684,3685,3686,3687,3688,3686,3689,3690,3687,3691,3692,3693,3694,3695,3696,3697,3698,3696,3699,3700,3697,3697,3700,3606,3701,3698,3697,3701,3692,3693,3702,3703,3535,3702,3605,3704,3703,3705,3706,3707,3708,3706,3709,3710,3707,3707,3710,3711,3712,3708,3707,3712,3713,3714,3715,3716,3717,3715,3718,3719,3716,3720,3721,3722,3723,3721,3724,3725,3722,3726,3727,3551,3548,3726,3548,3547,3728,3729,3730,3731,3732,3729,3732,3733,3734,3733,3732,3735,3736,3732,3731,3737,3735,3738,3739,3740,3741,3738,3741,3742,3743,3744,3745,3746,3747,3744,3747,3748,3749,3557,3556,3750,3751,3556,3555,3752,3750,3753,3754,3755,3756,3754,3757,3758,3755,3755,3758,3759,3760,3756,3755,3760,3761,3762,3763,3764,3765,3763,3766,3767,3764,3768,3769,3770,3771,3769,3772,3773,3770,3774,3775,3572,3569,3774,3569,3568,3776,3777,3778,3779,3780,3777,3780,3781,3782,3781,3780,3783,3784,3780,3779,3785,3783,3786,3787,3788,3789,3786,3789,3790,3791,3790,3789,3792,3793,3789,3788,3794,3792,3578,3577,3795,3796,3577,3576,3797,3795,3798,3799,3800,3801,3799,3802,3803,3800,3800,3803,3691,3804,3801,3800,3804,3805,3806,3807,3808,3809,3807,3694,3534,3808,3810,3811,3812,3813,3811,3814,3815,3812,3816,3817,3593,3590,3816,3590,3589,3818,3819,3820,3821,3822,3819,3822,3823,3824,3823,3822,3825,3826,3822,3821,3827,3825,3828,3829,3830,3831,3828,3831,3832,3833,3832,3831,3834,3835,3831,3830,3836,3834,3599,3598,3837,3838,3598,3597,3839,3837,3840,3841,3842,3843,3841,3601,3604,3842,3601,3841,3844,3845,3841,3840,3846,3844,3847,3848,3849,3845,3848,3850,3704,3849,3851,3852,3853,3854,3851,3854,3855,3856, +3856,3855,3857,3858,3857,3615,3614,3858,3856,3858,3859,3610,3858,3614,3860,3859,3617,3861,3862,3618,3618,3862,3863,3864,3865,3866,3867,3864,3866,3868,3860,3867,3869,3870,3871,3872,3870,3873,3874,3871,3871,3874,3875,3876,3872,3871,3876,3877,3878,3555,3554,3879,3878,3879,3880,3881,3882,3883,3884,3885,3883,3886,3752,3884,3887,3888,3889,3890,3887,3890,3891,3892,3893,3731,3730,3894,3893,3894,3558,3557,3637,3895,3896,3636,3895,3520,3625,3896,3897,3898,3899,3751,3898,3900,3737,3899,3901,3902,3903,3640,3902,3904,3521,3903,3720,3905,3906,3546,3905,3641,3634,3906,3907,3551,3727,3908,3907,3908,3734,3733,3909,3910,3911,3723,3910,3912,3642,3911,3913,3914,3915,3736,3914,3916,3552,3915,3917,3788,3787,3918,3917,3918,3728,3547,3714,3919,3920,3713,3919,3724,3544,3920,3921,3922,3923,3717,3922,3924,3725,3923,3925,3926,3927,3550,3926,3928,3794,3927,3522,3929,3930,3651,3929,3718,3711,3930,3931,3576,3575,3932,3931,3932,3791,3790,3933,3934,3935,3793,3934,3936,3797,3935,3937,3938,3939,3525,3938,3940,3719,3939,3941,3779,3778,3942,3941,3942,3579,3578,3661,3943,3944,3660,3943,3526,3649,3944,3945,3946,3947,3796,3946,3948,3785,3947,3949,3950,3951,3664,3950,3952,3527,3951,3768,3953,3954,3567,3953,3665,3658,3954,3955,3572,3775,3956,3955,3956,3782,3781,3957,3958,3959,3771,3958,3960,3666,3959,3961,3962,3963,3784,3962,3964,3573,3963,3965,3830,3829,3966,3965,3966,3776,3568,3762,3967,3968,3761,3967,3772,3565,3968,3969,3970,3971,3765,3970,3972,3773,3971,3973,3974,3975,3571,3974,3976,3836,3975,3528,3977,3978,3675,3977,3766,3759,3978,3979,3597,3596,3980,3979,3980,3833,3832,3981,3982,3983,3835,3982,3984,3839,3983,3981,3985,3986,3987,3985,3976,3988,3986,3989,3821,3820,3990,3989,3990,3600,3599,3685,3991,3992,3684,3991,3532,3673,3992,3993,3994,3995,3838,3994,3996,3827,3995,3997,3998,3999,3688,3998,4000,3533,3999,3810,4001,4002,3588,4001,3689,3682,4002,4003,3593,3817,4004,4003,4004,3824,3823,4005,4006,4007,3813,4006,4008,3690,4007,4009,4010,4011,3826,4010,4012,3594,4011,4013,3862,3861,4014,4013,4014,3818,3589,3806,4015,4016,3805,4015,3814,3586,4016,4017,4018, +4019,3809,4018,4020,3815,4019,4021,4022,4023,3592,4022,4024,3863,4023,4025,3627,3516,4026,4025,4026,3891,3877,4027,4028,4029,4030,4028,4031,4032,4029,4029,4032,3843,3842,4030,4029,3842,3604,3632,4033,4034,3633,4033,3538,3541,4034,4034,3541,3546,3906,3633,4034,3906,3634,3542,4035,4036,3543,4035,3705,3708,4036,4036,3708,3713,3920,3543,4036,3920,3544,3544,3724,3721,3545,3721,3720,3546,3545,3634,3641,3638,3635,3638,3637,3636,3635,3711,3718,3715,3712,3715,3714,3713,3712,3623,4037,4038,3624,4037,3628,3631,4038,4038,3631,3636,3896,3624,4038,3896,3625,3709,4039,4040,3710,4039,3643,3646,4040,4040,3646,3651,3930,3710,4040,3930,3711,3625,3520,3517,3626,3517,3516,3627,3626,3649,3526,3523,3650,3523,3522,3651,3650,3647,4041,4042,3648,4041,3652,3655,4042,4042,3655,3660,3944,3648,4042,3944,3649,3658,3665,3662,3659,3662,3661,3660,3659,3656,4043,4044,3657,4043,3559,3562,4044,4044,3562,3567,3954,3657,4044,3954,3658,3565,3772,3769,3566,3769,3768,3567,3566,3563,4045,4046,3564,4045,3753,3756,4046,4046,3756,3761,3968,3564,4046,3968,3565,3759,3766,3763,3760,3763,3762,3761,3760,3757,4047,4048,3758,4047,3667,3670,4048,4048,3670,3675,3978,3758,4048,3978,3759,3673,3532,3529,3674,3529,3528,3675,3674,3671,4049,4050,3672,4049,3676,3679,4050,4050,3679,3684,3992,3672,4050,3992,3673,3682,3689,3686,3683,3686,3685,3684,3683,3680,4051,4052,3681,4051,3580,3583,4052,4052,3583,3588,4002,3681,4052,4002,3682,3586,3814,3811,3587,3811,3810,3588,3587,3584,4053,4054,3585,4053,3798,3801,4054,4054,3801,3805,4016,3585,4054,4016,3586,3691,3694,3807,3804,3807,3806,3805,3804,3803,3802,3695,3698,3803,3698,3692,3691,3606,3605,3702,3701,3702,3693,3692,3701,3699,4055,4056,3700,4055,4027,4030,4056,4056,4030,3604,3603,3700,4056,3603,3606,4057,4058,4059,4060,4058,4061,4062,4059,4063,4064,4065,4066,4064,4067,4068,4065,4069,4070,4071,4072,4070,4073,4074,4071,4075,4076,4077,4078,4079,4080,4081,4082,4080,4083,4084,4081,4081,4084,4085,4086,4082,4081,4086,4087,4088,4089,4090,4091,4089,4092,4093,4090,4094,4095,4096,4097,4095,4098,4099,4096,4096,4099,4100,4101,4097,4096,4101,4102, +4103,4104,4105,4106,4104,4107,4108,4105,4105,4108,4109,4110,4106,4105,4110,4111,4112,4113,4114,4115,4113,4116,4117,4114,4118,4119,4120,4121,4119,4122,4123,4120,4120,4123,4124,4125,4121,4120,4125,4126,4127,4128,4129,4130,4128,4131,4132,4129,4129,4132,4133,4134,4130,4129,4134,4135,4136,4137,4138,4139,4137,4140,4141,4138,4142,4143,4144,4145,4143,4146,4147,4144,4144,4147,4148,4149,4145,4144,4149,4150,4151,4152,4153,4154,4151,4154,4155,4156,4157,4158,4159,4160,4158,4161,4162,4159,4163,4164,4165,4166,4164,4167,4168,4165,4165,4168,4169,4170,4166,4165,4170,4171,4172,4173,4174,4175,4173,4176,4177,4174,4174,4177,4178,4179,4175,4174,4179,4180,4181,4182,4183,4184,4182,4185,4186,4183,4187,4188,4189,4190,4188,4191,4192,4189,4189,4192,4193,4194,4190,4189,4194,4195,4196,4197,4198,4199,4197,4200,4201,4198,4198,4201,4202,4203,4199,4198,4203,4204,4205,4206,4207,4208,4206,4209,4210,4207,4211,4212,4213,4214,4212,4215,4216,4213,4213,4216,4217,4218,4214,4213,4218,4219,4220,4221,4222,4223,4221,4224,4225,4222,4222,4225,4226,4227,4223,4222,4227,4228,4229,4230,4231,4232,4230,4233,4234,4231,4235,4236,4237,4238,4239,4240,4241,4242,4240,4235,4243,4241,4241,4243,4155,4244,4242,4241,4244,4245,4156,4246,4247,4248,4246,4238,4077,4247,4249,4250,4251,4252,4250,4253,4254,4251,4251,4254,4255,4256,4252,4251,4256,4257,4258,4259,4260,4261,4259,4262,4263,4260,4264,4265,4266,4267,4265,4268,4269,4266,4270,4271,4272,4273,4271,4274,4275,4272,4272,4275,4276,4277,4273,4272,4277,4278,4274,4279,4280,4275,4279,4281,4282,4280,4280,4282,4100,4283,4275,4280,4283,4276,4284,4285,4286,4287,4285,4288,4289,4286,4094,4097,4290,4291,4097,4102,4292,4290,4290,4292,4293,4294,4291,4290,4294,4295,4296,4295,4294,4297,4297,4294,4293,4298,4299,4297,4298,4300,4301,4302,4303,4304,4302,4305,4306,4303,4307,4308,4309,4310,4308,4311,4312,4309,4309,4312,4313,4314,4310,4309,4314,4315,4316,4317,4318,4319,4317,4320,4321,4318,4322,4323,4324,4325,4323,4326,4327,4324,4328,4329,4330,4331,4329,4332,4333,4330,4330,4333,4334,4335,4331,4330,4335,4336,4332,4337,4338,4333,4337,4118,4121,4338,4338,4121, +4126,4339,4333,4338,4339,4334,4340,4341,4342,4343,4341,4344,4345,4342,4122,4346,4347,4123,4346,4270,4273,4347,4347,4273,4278,4348,4123,4347,4348,4124,4349,4350,4351,4352,4350,4353,4354,4351,4355,4356,4357,4358,4356,4359,4360,4357,4361,4362,4363,4364,4362,4365,4366,4363,4363,4366,4236,4367,4364,4363,4367,4368,4237,4369,4370,4078,4369,4371,4372,4370,4373,4374,4375,4376,4374,4377,4378,4375,3480,4379,4380,4381,4379,3494,4382,4380,4380,4382,4383,4384,4381,4380,4384,4385,4383,4386,4387,4384,4386,4142,4145,4387,4387,4145,4150,4388,4384,4387,4388,4385,4389,4390,4391,4392,4390,4393,4394,4391,4146,4395,4396,4147,4395,4328,4331,4396,4396,4331,4336,4397,4147,4396,4397,4148,4398,4399,4400,4401,4399,4402,4403,4400,4404,4405,4406,4407,4405,4408,4409,4406,4410,4411,4412,4413,4410,4413,4153,4152,4411,4410,4414,4415,4410,4152,4416,4414,4417,4418,4419,4248,4418,4420,4416,4419,4421,4422,4423,4424,4422,4425,4426,4423,4427,4428,4429,4430,4424,4431,4432,4433,4432,4434,4430,4433,4435,4436,4437,4438,4436,4439,4440,4437,4437,4440,4441,4442,4438,4437,4442,4443,4304,4444,4445,4446,4445,4447,4448,4446,4449,4450,4451,4452,4449,4452,4453,4454,4455,4185,4176,4456,4455,4456,4169,4057,4287,4457,4458,4459,4458,4460,4306,4459,4461,4462,4463,4060,4462,4464,4186,4463,4465,4268,4083,4466,4465,4466,4178,4181,4467,4468,4469,4184,4468,4470,4269,4469,4091,4471,4472,4473,4472,4474,4289,4473,4475,4262,4253,4476,4475,4476,4085,4264,4477,4478,4479,4267,4478,4480,4263,4479,4352,4481,4482,4483,4482,4484,4093,4483,4485,4067,4191,4486,4485,4486,4255,4258,4358,4487,4488,4489,4488,4490,4354,4489,4491,4492,4493,4261,4492,4494,4068,4493,4495,4209,4200,4496,4495,4496,4193,4063,4343,4497,4498,4499,4498,4500,4360,4499,4501,4502,4503,4066,4502,4504,4210,4503,4505,4326,4107,4506,4505,4506,4202,4205,4507,4508,4509,4208,4508,4510,4327,4509,4115,4511,4512,4513,4512,4514,4345,4513,4515,4320,4311,4516,4515,4516,4109,4322,4517,4518,4519,4325,4518,4520,4321,4519,4401,4521,4522,4523,4522,4524,4117,4523,4525,4073,4215,4526,4525,4526,4313,4316,4407,4527,4528,4529,4528,4530,4403,4529, +4531,4532,4533,4319,4532,4534,4074,4533,4535,4233,4224,4536,4535,4536,4217,4069,4392,4537,4538,4539,4538,4540,4409,4539,4541,4542,4543,4072,4542,4544,4234,4543,4545,4377,4131,4546,4545,4546,4226,4229,4547,4548,4549,4232,4548,4550,4378,4549,4139,4551,4552,4553,4552,4554,4394,4553,4555,4371,4365,4556,4555,4556,4133,4373,4557,4558,4559,4376,4558,4560,4372,4559,4427,4561,4562,4563,4562,4564,4141,4563,4565,4061,4167,4566,4565,4566,4441,4567,4568,4569,4570,4571,4569,4153,4413,4570,4570,4413,4412,4572,4571,4570,4572,4573,4180,4179,4574,4575,4179,4178,4466,4574,4574,4466,4083,4080,4575,4574,4080,4079,4087,4086,4576,4577,4086,4085,4476,4576,4576,4476,4253,4250,4577,4576,4250,4249,4265,4264,4085,4084,4265,4084,4083,4268,4182,4181,4178,4177,4182,4177,4176,4185,4259,4258,4255,4254,4259,4254,4253,4262,4171,4170,4578,4579,4170,4169,4456,4578,4578,4456,4176,4173,4579,4578,4173,4172,4257,4256,4580,4581,4256,4255,4486,4580,4580,4486,4191,4188,4581,4580,4188,4187,4058,4057,4169,4168,4058,4168,4167,4061,4064,4063,4193,4192,4064,4192,4191,4067,4195,4194,4582,4583,4194,4193,4496,4582,4582,4496,4200,4197,4583,4582,4197,4196,4206,4205,4202,4201,4206,4201,4200,4209,4204,4203,4584,4585,4203,4202,4506,4584,4584,4506,4107,4104,4585,4584,4104,4103,4323,4322,4109,4108,4323,4108,4107,4326,4111,4110,4586,4587,4110,4109,4516,4586,4586,4516,4311,4308,4587,4586,4308,4307,4317,4316,4313,4312,4317,4312,4311,4320,4315,4314,4588,4589,4314,4313,4526,4588,4588,4526,4215,4212,4589,4588,4212,4211,4070,4069,4217,4216,4070,4216,4215,4073,4219,4218,4590,4591,4218,4217,4536,4590,4590,4536,4224,4221,4591,4590,4221,4220,4230,4229,4226,4225,4230,4225,4224,4233,4228,4227,4592,4593,4227,4226,4546,4592,4592,4546,4131,4128,4593,4592,4128,4127,4374,4373,4133,4132,4374,4132,4131,4377,4135,4134,4594,4595,4134,4133,4556,4594,4594,4556,4365,4362,4595,4594,4362,4361,4369,4237,4236,4366,4369,4366,4365,4371,4368,4367,4240,4239,4367,4236,4235,4240,4246,4156,4155,4243,4246,4243,4235,4238,4245,4244,4596,4597,4244,4155,4154,4596,4596,4154,4153,4569,4597,4596,4569,4568,4598,4599, +4600,4601,4599,4435,4438,4600,4600,4438,4443,4602,4601,4600,4602,4603,4163,4166,4604,4605,4166,4171,4606,4604,4604,4606,4607,4608,4605,4604,4608,4609,4171,4579,4610,4606,4579,4172,4611,4610,4610,4611,4612,4613,4606,4610,4613,4607,4172,4175,4614,4611,4175,4180,4615,4614,4614,4615,4616,4617,4611,4614,4617,4612,4180,4575,4618,4615,4575,4079,4619,4618,4618,4619,4620,4621,4615,4618,4621,4616,4079,4082,4622,4619,4082,4087,4623,4622,4622,4623,4624,4625,4619,4622,4625,4620,4087,4577,4626,4623,4577,4249,4627,4626,4626,4627,4628,4629,4623,4626,4629,4624,4249,4252,4630,4627,4252,4257,4631,4630,4630,4631,4632,4633,4627,4630,4633,4628,4257,4581,4634,4631,4581,4187,4635,4634,4634,4635,4636,4637,4631,4634,4637,4632,4187,4190,4638,4635,4190,4195,4639,4638,4638,4639,4640,4641,4635,4638,4641,4636,4195,4583,4642,4639,4583,4196,4643,4642,4642,4643,4644,4645,4639,4642,4645,4640,4196,4199,4646,4643,4199,4204,4647,4646,4646,4647,4648,4649,4643,4646,4649,4644,4204,4585,4650,4647,4585,4103,4651,4650,4650,4651,4652,4653,4647,4650,4653,4648,4103,4106,4654,4651,4106,4111,4655,4654,4654,4655,4656,4657,4651,4654,4657,4652,4111,4587,4658,4655,4587,4307,4659,4658,4658,4659,4660,4661,4655,4658,4661,4656,4307,4310,4662,4659,4310,4315,4663,4662,4662,4663,4664,4665,4659,4662,4665,4660,4315,4589,4666,4663,4589,4211,4667,4666,4666,4667,4668,4669,4663,4666,4669,4664,4211,4214,4670,4667,4214,4219,4671,4670,4670,4671,4672,4673,4667,4670,4673,4668,4219,4591,4674,4671,4591,4220,4675,4674,4674,4675,4676,4677,4671,4674,4677,4672,4220,4223,4678,4675,4223,4228,4679,4678,4678,4679,4680,4681,4675,4678,4681,4676,4228,4593,4682,4679,4593,4127,4683,4682,4682,4683,4684,4685,4679,4682,4685,4680,4127,4130,4686,4683,4130,4135,4687,4686,4686,4687,4688,4689,4683,4686,4689,4684,4135,4595,4690,4687,4595,4361,4691,4690,4690,4691,4692,4693,4687,4690,4693,4688,4361,4364,4694,4691,4364,4368,4695,4694,4694,4695,4696,4697,4691,4694,4697,4692,4695,4368,4239,4698,4695,4698,4699,4696,4239,4242,4700,4698,4242,4245,4701,4700,4700,4701,4702,4703,4698,4700,4703,4699,4245,4597,4704,4701, +4597,4568,4705,4704,4704,4705,4706,4707,4701,4704,4707,4702,4568,4571,4708,4705,4571,4573,4709,4708,4708,4709,4710,4711,4705,4708,4711,4706,4609,4712,4713,4714,4712,3619,4715,4713,4713,4715,3875,4716,4714,4713,4716,4603,3623,3620,4717,4718,3620,3619,4712,4717,4717,4712,4609,4608,4718,4717,4608,4607,3628,4037,4719,4720,4037,3623,4718,4719,4719,4718,4607,4613,4720,4719,4613,4612,3632,3629,4721,4722,3629,3628,4720,4721,4721,4720,4612,4617,4722,4721,4617,4616,3538,4033,4723,4724,4033,3632,4722,4723,4723,4722,4616,4621,4724,4723,4621,4620,3542,3539,4725,4726,3539,3538,4724,4725,4725,4724,4620,4625,4726,4725,4625,4624,3705,4035,4727,4728,4035,3542,4726,4727,4727,4726,4624,4629,4728,4727,4629,4628,3709,3706,4729,4730,3706,3705,4728,4729,4729,4728,4628,4633,4730,4729,4633,4632,3643,4039,4731,4732,4039,3709,4730,4731,4731,4730,4632,4637,4732,4731,4637,4636,3647,3644,4733,4734,3644,3643,4732,4733,4733,4732,4636,4641,4734,4733,4641,4640,3652,4041,4735,4736,4041,3647,4734,4735,4735,4734,4640,4645,4736,4735,4645,4644,3656,3653,4737,4738,3653,3652,4736,4737,4737,4736,4644,4649,4738,4737,4649,4648,3559,4043,4739,4740,4043,3656,4738,4739,4739,4738,4648,4653,4740,4739,4653,4652,3563,3560,4741,4742,3560,3559,4740,4741,4741,4740,4652,4657,4742,4741,4657,4656,3753,4045,4743,4744,4045,3563,4742,4743,4743,4742,4656,4661,4744,4743,4661,4660,3757,3754,4745,4746,3754,3753,4744,4745,4745,4744,4660,4665,4746,4745,4665,4664,3667,4047,4747,4748,4047,3757,4746,4747,4747,4746,4664,4669,4748,4747,4669,4668,3671,3668,4749,4750,3668,3667,4748,4749,4749,4748,4668,4673,4750,4749,4673,4672,3676,4049,4751,4752,4049,3671,4750,4751,4751,4750,4672,4677,4752,4751,4677,4676,3680,3677,4753,4754,3677,3676,4752,4753,4753,4752,4676,4681,4754,4753,4681,4680,3580,4051,4755,4756,4051,3680,4754,4755,4755,4754,4680,4685,4756,4755,4685,4684,3584,3581,4757,4758,3581,3580,4756,4757,4757,4756,4684,4689,4758,4757,4689,4688,3798,4053,4759,4760,4053,3584,4758,4759,4759,4758,4688,4693,4760,4759,4693,4692,3802,3799,4761,4762,3799,3798,4760,4761,4761,4760,4692,4697,4762,4761, +4697,4696,4763,3695,3802,4762,4763,4762,4696,4699,3699,3696,4764,4765,3696,3695,4763,4764,4764,4763,4699,4703,4765,4764,4703,4702,4027,4055,4766,4767,4055,3699,4765,4766,4766,4765,4702,4707,4767,4766,4707,4706,4031,4028,4768,4769,4028,4027,4767,4768,4768,4767,4706,4711,4769,4768,4711,4710,4770,3885,3881,4771,4770,4771,3742,3749,4447,4772,4773,4448,4772,4300,4298,4773,3794,3788,3917,3927,3917,3547,3550,3927,3552,3551,3907,3915,3907,3733,3736,3915,3552,3916,4774,3549,4774,3925,3550,3549,3794,3928,4775,3792,4775,3933,3793,3792,3737,3900,4776,3735,4776,3913,3736,3735,3797,3576,3931,3935,3931,3790,3793,3935,3737,3731,3893,3899,3893,3557,3751,3899,3797,3936,4777,3795,4777,3945,3796,3795,3752,3886,4778,3750,4778,3897,3751,3750,3785,3779,3941,3947,3941,3578,3796,3947,3752,3555,3878,3884,3878,3881,3885,3884,3785,3948,4779,3783,4779,3961,3784,3783,3573,3572,3955,3963,3955,3781,3784,3963,3573,3964,4780,3570,4780,3973,3571,3570,3836,3830,3965,3975,3965,3568,3571,3975,3836,3976,3985,3834,3985,3981,3835,3834,3839,3597,3979,3983,3979,3832,3835,3983,3839,3984,4781,3837,4781,3993,3838,3837,3827,3821,3989,3995,3989,3599,3838,3995,3827,3996,4782,3825,4782,4009,3826,3825,3594,3593,4003,4011,4003,3823,3826,4011,3594,4012,4783,3591,4783,4021,3592,3591,3863,3862,4013,4023,4013,3589,3592,4023,4024,3865,3864,3863,3860,3614,3613,3867,3613,3618,3864,3867,3860,3868,4784,3859,4784,3607,3610,3859,3852,3851,3609,3612,3851,3856,3610,3609,4160,4159,4785,4786,4159,4162,4787,4785,4162,4788,4423,4426,4788,4431,4424,4423,4429,4789,4433,4430,4789,4421,4424,4433,4430,4434,4561,4427,4140,4790,4563,4141,4790,4428,4427,4563,4141,4564,4791,4138,4791,4551,4139,4138,4393,4792,4553,4394,4792,4136,4139,4553,4394,4554,4793,4391,4793,4537,4392,4391,4408,4794,4539,4409,4794,4389,4392,4539,4409,4540,4795,4406,4795,4527,4407,4406,4402,4796,4529,4403,4796,4404,4407,4529,4403,4530,4797,4400,4797,4521,4401,4400,4116,4798,4523,4117,4798,4398,4401,4523,4117,4524,4799,4114,4799,4511,4115,4114,4344,4800,4513,4345,4800,4112,4115,4513,4345,4514,4801,4342,4801,4497,4343,4342, +4359,4802,4499,4360,4802,4340,4343,4499,4360,4500,4803,4357,4803,4487,4358,4357,4353,4804,4489,4354,4804,4355,4358,4489,4354,4490,4805,4351,4805,4481,4352,4351,4092,4806,4483,4093,4806,4349,4352,4483,4093,4484,4807,4090,4807,4471,4091,4090,4288,4808,4473,4289,4808,4088,4091,4473,4289,4474,4809,4286,4809,4457,4287,4286,4305,4810,4459,4306,4810,4284,4287,4459,4306,4460,4811,4303,4811,4444,4304,4303,4812,4813,4446,4448,4813,4301,4304,4446,4814,3519,4815,4816,4814,4816,4817,3892,4818,4062,4061,4565,4818,4565,4567,4454,3521,3520,3895,3903,3895,3637,3640,3903,3521,3904,4819,3518,4819,4815,3519,3518,3642,3912,4820,3639,4820,3901,3640,3639,3642,3641,3905,3911,3905,3720,3723,3911,3725,3924,4821,3722,4821,3909,3723,3722,3725,3724,3919,3923,3919,3714,3717,3923,3719,3940,4822,3716,4822,3921,3717,3716,3719,3718,3929,3939,3929,3522,3525,3939,3527,3952,4823,3524,4823,3937,3525,3524,3527,3526,3943,3951,3943,3661,3664,3951,3666,3960,4824,3663,4824,3949,3664,3663,3666,3665,3953,3959,3953,3768,3771,3959,3773,3972,4825,3770,4825,3957,3771,3770,3773,3772,3967,3971,3967,3762,3765,3971,3767,4826,4827,3764,4827,3969,3765,3764,3767,3766,3977,4828,3977,3528,3531,4828,3533,4000,4829,3530,4829,4830,3531,3530,3533,3532,3991,3999,3991,3685,3688,3999,3690,4008,4831,3687,4831,3997,3688,3687,3690,3689,4001,4007,4001,3810,3813,4007,3815,4020,4832,3812,4832,4005,3813,3812,3815,3814,4015,4019,4015,3806,3809,4019,3534,3537,4833,3808,4833,4017,3809,3808,3693,3535,3534,3694,3704,3850,4834,3703,4834,3536,3535,3703,3704,3605,3602,3849,3602,3601,3845,3849,4835,4836,3844,3846,4836,3847,3845,3844,4416,4420,4837,4414,4837,4838,4415,4414,4416,4152,4151,4419,4151,4156,4248,4419,4077,4076,4839,4247,4839,4417,4248,4247,4077,4238,4237,4078,4372,4560,4840,4370,4840,4075,4078,4370,4372,4371,4555,4559,4555,4373,4376,4559,4378,4550,4841,4375,4841,4557,4376,4375,4378,4377,4545,4549,4545,4229,4232,4549,4234,4544,4842,4231,4842,4547,4232,4231,4234,4233,4535,4543,4535,4069,4072,4543,4074,4534,4843,4071,4843,4541,4072,4071,4074,4073,4525,4533,4525,4316,4319,4533,4321,4520, +4844,4318,4844,4531,4319,4318,4321,4320,4515,4519,4515,4322,4325,4519,4327,4510,4845,4324,4845,4517,4325,4324,4327,4326,4505,4509,4505,4205,4208,4509,4210,4504,4846,4207,4846,4507,4208,4207,4210,4209,4495,4503,4495,4063,4066,4503,4068,4494,4847,4065,4847,4501,4066,4065,4068,4067,4485,4493,4485,4258,4261,4493,4263,4480,4848,4260,4848,4491,4261,4260,4263,4262,4475,4479,4475,4264,4267,4479,4269,4470,4849,4266,4849,4477,4267,4266,4269,4268,4465,4469,4465,4181,4184,4469,4186,4464,4850,4183,4850,4467,4184,4183,4186,4185,4455,4463,4455,4057,4060,4463,4851,4852,4059,4062,4852,4461,4060,4059,4421,4789,4853,4422,4789,4429,4854,4853,4853,4854,4855,4856,4422,4853,4856,4425,4383,4857,4858,4859,4857,4140,4137,4858,4858,4137,4136,4792,4859,4858,4792,4393,4146,4860,4861,4862,4860,4408,4405,4861,4861,4405,4404,4796,4862,4861,4796,4402,4332,4863,4864,4865,4863,4116,4113,4864,4864,4113,4112,4800,4865,4864,4800,4344,4122,4866,4867,4868,4866,4359,4356,4867,4867,4356,4355,4804,4868,4867,4804,4353,4274,4869,4870,4871,4869,4092,4089,4870,4870,4089,4088,4808,4871,4870,4808,4288,4872,4873,4874,4875,4873,4305,4302,4874,4874,4302,4301,4813,4875,4874,4813,4812,4425,4856,4876,4877,4856,4855,3494,4876,4878,3494,4855,4854,4878,4854,4429,4428,4140,4857,4879,4790,4857,4383,4382,4879,4879,4382,3494,4878,4790,4879,4878,4428,4142,4386,4880,4881,4386,4383,4859,4880,4880,4859,4393,4390,4881,4880,4390,4389,4408,4860,4882,4794,4860,4146,4143,4882,4882,4143,4142,4881,4794,4882,4881,4389,4328,4395,4883,4884,4395,4146,4862,4883,4883,4862,4402,4399,4884,4883,4399,4398,4116,4863,4885,4798,4863,4332,4329,4885,4885,4329,4328,4884,4798,4885,4884,4398,4118,4337,4886,4887,4337,4332,4865,4886,4886,4865,4344,4341,4887,4886,4341,4340,4359,4866,4888,4802,4866,4122,4119,4888,4888,4119,4118,4887,4802,4888,4887,4340,4270,4346,4889,4890,4346,4122,4868,4889,4889,4868,4353,4350,4890,4889,4350,4349,4092,4869,4891,4806,4869,4274,4271,4891,4891,4271,4270,4890,4806,4891,4890,4349,4281,4279,4892,4893,4279,4274,4871,4892,4892,4871,4288,4285,4893,4892,4285,4284,4305,4873,4894,4810, +4873,4872,4895,4894,4894,4895,4281,4893,4810,4894,4893,4284,4281,4895,4896,4282,4895,4872,4897,4896,4896,4897,4102,4101,4282,4896,4101,4100,4098,4898,4899,4099,4898,4900,4901,4899,4899,4901,4276,4283,4099,4899,4283,4100,4900,4902,4903,4901,4902,4904,4905,4903,4903,4905,4278,4277,4901,4903,4277,4276,4904,4906,4907,4905,4906,4908,4909,4907,4907,4909,4124,4348,4905,4907,4348,4278,4908,4910,4911,4909,4910,4912,4913,4911,4911,4913,4126,4125,4909,4911,4125,4124,4912,4914,4915,4913,4914,4916,4917,4915,4915,4917,4334,4339,4913,4915,4339,4126,4916,4918,4919,4917,4918,4920,4921,4919,4919,4921,4336,4335,4917,4919,4335,4334,4920,4922,4923,4921,4922,4924,4925,4923,4923,4925,4148,4397,4921,4923,4397,4336,4150,4926,4927,4388,4926,4928,4929,4927,4927,4929,3480,4381,4388,4927,4381,4385,4930,4931,4932,4933,4930,4933,4934,4935,4936,4937,4938,4939,4936,4939,4940,4941,4942,4943,4944,4945,4942,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4953,4956,4957,4954,4954,4957,4958,4959,4955,4954,4959,4960,4961,4962,4963,4964,4961,4964,4965,4966,4967,4968,4969,4970,4968,4971,4972,4969,4973,4974,4975,4976,4974,4977,4978,4975,4975,4978,4979,4980,4976,4975,4980,4981,4982,4983,4984,4985,4982,4985,4986,4987,4988,4989,4990,4991,4989,4992,4993,4990,4994,4995,4996,4997,4995,4998,4999,4996,4996,4999,5000,5001,4997,4996,5001,5002,5003,5004,5005,5006,5003,5006,5007,5008,5009,5010,5011,5012,5010,5013,5014,5011,5015,5016,5017,5018,5015,5018,5019,5020,5021,5022,5023,5024,5021,5024,5025,5026,5027,5028,5029,5030,5028,5031,5032,5029,5033,5034,5035,5036,5034,5037,5038,5035,5035,5038,5039,5040,5036,5035,5040,5041,5042,5043,5044,5045,5043,5046,5047,5044,5044,5047,5048,5049,5045,5044,5049,5050,5051,5052,5053,5054,5051,5054,5055,5056,5057,5058,5059,5060,5058,5061,5062,5059,5059,5062,5063,5064,5060,5059,5064,5065,5066,5067,5068,5069,5067,5070,5071,5068,5068,5071,5072,5073,5069,5068,5073,5074,5075,5076,5077,5078,5075,5078,5079,5080,5081,5082,5083,5084,5082,5085,5086,5083,5083,5086,5087,5088,5084,5083,5088,5089,5090,5091,5092,5093,5091,5094,5095,5092,5092,5095, +5096,5097,5093,5092,5097,5098,5099,5100,5101,5102,5099,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5110,5108,5113,5111,5111,5113,5019,5114,5112,5111,5114,5115,5116,5107,4951,5117,5116,5117,5118,5020,5119,5120,5121,5122,5120,5123,5124,5121,5121,5124,5125,5126,5122,5121,5126,5127,5128,5129,5130,5131,5128,5131,5132,5133,5134,5135,5136,5137,5134,5137,5138,5139,5140,5141,4961,4966,5141,5142,4962,4961,5143,5144,5145,5146,5144,5147,5148,5145,5145,5148,5149,5150,5145,5150,5151,5146,5152,5153,5154,5155,5152,5155,5156,5157,5158,3746,3745,5159,5158,5159,5160,5161,4969,4972,5162,5163,4969,5163,5164,4970,5165,5166,5167,5168,5166,5169,5170,5167,5167,5170,5171,5172,5168,5167,5172,5173,5174,5175,5176,5177,5174,5177,5178,5179,5180,5181,5182,5183,5180,5183,5184,5185,5186,5187,4982,4987,5187,5188,4983,4982,5189,5190,5191,5192,5190,5193,5194,5191,5191,5194,5195,5196,5191,5196,5197,5192,5198,5199,5200,5201,5199,5202,5203,5200,5200,5203,5204,5205,5200,5205,5206,5201,4990,4993,5207,5208,4990,5208,5209,4991,5210,5211,5212,5213,5211,5214,5215,5212,5212,5215,5105,5216,5213,5212,5216,5217,5218,5219,5220,5221,5218,5221,4948,5106,5222,5223,5224,5225,5222,5225,5226,5227,5228,5229,5003,5008,5229,5230,5004,5003,5231,5232,5233,5234,5232,5235,5236,5233,5233,5236,5237,5238,5233,5238,5239,5234,5240,5241,5242,5243,5241,5244,5245,5242,5242,5245,5246,5247,5242,5247,5248,5243,5011,5014,5249,5250,5011,5250,5251,5012,5252,5253,5254,5255,5252,5255,5017,5016,5252,5016,5256,5257,5252,5257,5258,5253,5259,5260,5256,5261,5259,5261,5118,5262,5263,5264,5265,5266,5264,5267,5268,5265,5269,5268,5267,5270,5269,5270,5027,5030,5270,5267,5023,5271,5270,5271,5272,5027,5273,5032,5031,5274,5274,5031,5275,5276,5277,5278,5275,5279,5277,5279,5272,5280,3873,3870,5281,5282,3870,3869,5283,5281,5281,5283,5284,5285,5282,5281,5285,5286,4967,4970,5287,5288,5287,5154,5153,5288,5289,5290,5291,5292,5289,5292,5164,5293,5294,3889,3888,5295,5294,5295,5296,5297,5143,5146,5298,5299,5298,4972,4971,5299,5300,5052,5046,5301,5300,5301,5039,4935,5302,5303,5162,5304,5302,5304,5151,5305, +5306,5307,5053,5308,5306,5308,4934,5309,5310,5135,4956,5311,5310,5311,5048,5056,5140,4966,5312,5313,5312,5148,5147,5313,5314,5315,5136,5316,5314,5316,5055,5317,5318,5319,5149,5320,5318,5320,4965,5321,5198,5201,5322,5323,5322,4962,5142,5323,5324,5129,5123,5325,5324,5325,4958,5139,5326,5327,5130,5328,5326,5328,5138,5329,5330,5331,4963,5332,5330,5332,5206,5333,5334,4937,5061,5335,5334,5335,5125,5133,4988,4991,5336,5337,5336,5203,5202,5337,5338,5339,5204,5340,5338,5340,5209,5341,5342,5343,4938,5344,5342,5344,5132,5345,5189,5192,5346,5347,5346,4993,4992,5347,5348,5076,5070,5349,5348,5349,5063,4941,5350,5351,5207,5352,5350,5352,5197,5353,5354,5355,5077,5356,5354,5356,4940,5357,5358,5181,4977,5359,5358,5359,5072,5080,5186,4987,5360,5361,5360,5194,5193,5361,5362,5363,5182,5364,5362,5364,5079,5365,5366,5367,5195,5368,5366,5368,4986,5369,5240,5243,5370,5371,5370,4983,5188,5371,5372,5175,5169,5373,5372,5373,4979,5185,5374,5375,5176,5376,5374,5376,5184,5377,5378,5379,4984,5380,5378,5380,5248,5381,5382,4943,5085,5383,5382,5383,5171,5179,5009,5012,5384,5385,5384,5245,5244,5385,5386,5387,5246,5388,5386,5388,5251,5389,5390,5391,4944,5392,5390,5392,5178,5393,5231,5234,5394,5395,5394,5014,5013,5395,5396,5100,5094,5397,5396,5397,5087,4947,5398,5399,5249,5400,5398,5400,5239,5401,5402,5403,5101,5404,5402,5404,4946,5405,5406,5223,4998,5407,5406,5407,5096,5104,5228,5008,5408,5409,5408,5236,5235,5409,5410,5411,5224,5412,5410,5412,5103,5413,5414,5415,5237,5416,5414,5416,5007,5417,5273,5274,5418,5419,5418,5004,5230,5419,5420,5219,5214,5421,5420,5421,5000,5227,5422,5423,5220,5424,5422,5424,5226,5425,5426,5427,5005,5428,5426,5428,5276,5429,5430,4931,5037,5431,5430,5431,5284,5297,5432,5433,5434,5435,5433,5017,5255,5434,5434,5255,5254,5436,5435,5434,5436,5437,5050,5049,5438,5439,5049,5048,5311,5438,5438,5311,4956,4953,5439,5438,4953,4952,4960,4959,5440,5441,4959,4958,5325,5440,5440,5325,5123,5120,5441,5440,5120,5119,5134,5139,4958,4957,5134,4957,4956,5135,5051,5056,5048,5047,5051,5047,5046,5052,5128,5133,5125,5124,5128,5124,5123,5129,5041,5040, +5442,5443,5040,5039,5301,5442,5442,5301,5046,5043,5443,5442,5043,5042,5127,5126,5444,5445,5126,5125,5335,5444,5444,5335,5061,5058,5445,5444,5058,5057,4930,4935,5039,5038,4930,5038,5037,4931,4936,4941,5063,5062,4936,5062,5061,4937,5065,5064,5446,5447,5064,5063,5349,5446,5446,5349,5070,5067,5447,5446,5067,5066,5075,5080,5072,5071,5075,5071,5070,5076,5074,5073,5448,5449,5073,5072,5359,5448,5448,5359,4977,4974,5449,5448,4974,4973,5180,5185,4979,4978,5180,4978,4977,5181,4981,4980,5450,5451,4980,4979,5373,5450,5450,5373,5169,5166,5451,5450,5166,5165,5174,5179,5171,5170,5174,5170,5169,5175,5173,5172,5452,5453,5172,5171,5383,5452,5452,5383,5085,5082,5453,5452,5082,5081,4942,4947,5087,5086,4942,5086,5085,4943,5089,5088,5454,5455,5088,5087,5397,5454,5454,5397,5094,5091,5455,5454,5091,5090,5099,5104,5096,5095,5099,5095,5094,5100,5098,5097,5456,5457,5097,5096,5407,5456,5456,5407,4998,4995,5457,5456,4995,4994,5222,5227,5000,4999,5222,4999,4998,5223,5002,5001,5458,5459,5001,5000,5421,5458,5458,5421,5214,5211,5459,5458,5211,5210,5218,5106,5105,5215,5218,5215,5214,5219,5217,5216,5110,5109,5216,5105,5108,5110,5116,5020,5019,5113,5116,5113,5108,5107,5115,5114,5460,5461,5114,5019,5018,5460,5460,5018,5017,5433,5461,5460,5433,5432,5462,5463,5464,5465,5462,5465,5466,5467,5468,5469,5470,5471,5468,5471,5472,5473,5474,5475,5476,5477,5474,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5485,5488,5489,5486,5486,5489,5490,5491,5487,5486,5491,5492,5493,5494,5495,5496,5497,5495,5494,5498,5496,5495,5499,5500,4098,4095,5501,5502,4095,4094,5503,5501,5501,5503,5504,5505,5502,5501,5505,5506,5507,5508,5509,5510,5508,5511,5512,5509,5509,5512,5513,5514,5510,5509,5514,5515,5516,5517,5518,5519,5520,5518,5517,5521,5519,5518,5522,5523,5524,5525,5526,5527,5525,5528,5529,5526,5526,5529,5530,5531,5527,5526,5531,5532,5533,5534,5535,5536,5534,5537,5538,5535,5535,5538,5539,5540,5536,5535,5540,5541,5542,5543,5544,5545,5546,5544,5543,5547,5545,5544,5548,5549,5550,5551,5552,5553,5551,5554,5555,5552,5552,5555,5556,5557,5553,5552,5557,5558,5559,5560,5561,5562, +5560,5563,5564,5561,5565,5566,5567,5568,5565,5568,5569,5570,5571,5572,5573,5574,5572,5575,5576,5573,5573,5576,5577,5578,5574,5573,5578,5579,5580,5581,5582,5583,5581,5584,5585,5582,5582,5585,5586,5587,5583,5582,5587,5588,5589,5590,5591,5592,5589,5592,5593,5594,5595,5596,5597,5598,5596,5599,5600,5597,5597,5600,5601,5602,5598,5597,5602,5603,5604,5605,5606,5607,5605,5608,5609,5606,5606,5609,5610,5611,5607,5606,5611,5612,5613,5614,5615,5616,5613,5616,5617,5618,5619,5620,5621,5622,5620,5623,5624,5621,5621,5624,5625,5626,5622,5621,5626,5627,5628,5629,5630,5631,5629,5632,5633,5630,5630,5633,5634,5635,5631,5630,5635,5636,5637,5638,5639,5640,5637,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5648,5651,5652,5649,5649,5652,5564,5653,5650,5649,5653,5646,5654,5563,5655,5656,5654,5656,5481,5643,5657,5658,5659,5660,5658,5661,5662,5659,5659,5662,5663,5664,5660,5659,5664,5665,5666,5667,5668,5669,5666,5669,5670,5671,5672,5673,5674,5675,5672,5675,5676,5677,5678,5679,5680,5681,5679,5682,5683,5680,5680,5683,5684,5685,5681,5680,5685,5686,5687,5688,5689,5690,5688,5678,5681,5689,5689,5681,5686,5691,5690,5689,5691,5506,5692,5693,5694,5695,5696,5694,5693,5697,5695,5694,5698,5699,5504,5503,5700,5701,5503,4094,4291,5700,5700,4291,4295,5702,5701,5700,5702,5703,4295,4296,5704,5702,5704,4296,5705,5706,5702,5704,5707,5703,5708,5709,5710,5711,5712,5710,5709,5713,5711,5710,5714,5715,5716,5717,5718,5719,5717,5720,5721,5718,5718,5721,5722,5723,5719,5718,5723,5724,5725,5726,5727,5728,5725,5728,5729,5730,5731,5732,5733,5734,5731,5734,5735,5736,5737,5738,5739,5740,5738,5741,5742,5739,5739,5742,5743,5744,5740,5739,5744,5745,5528,5746,5747,5529,5746,5737,5740,5747,5747,5740,5745,5748,5529,5747,5748,5530,5749,5750,5751,5752,5753,5751,5750,5754,5752,5751,5755,5756,5682,5757,5758,5683,5757,5524,5527,5758,5758,5527,5532,5759,5683,5758,5759,5684,5760,5761,5762,5763,5764,5762,5761,5765,5763,5762,5766,5767,5768,5769,5770,5771,5772,5770,5769,5773,5771,5770,5774,5775,5776,5777,5778,5779,5777,5780,5781,5778,5778,5781,5645,5782,5779,5778,5782,5783,5784,5644, +5480,5785,5784,5785,5786,5787,5788,5789,5790,5791,5788,5791,5792,5793,5794,5795,5796,5797,5795,3484,3481,5796,5796,3481,3480,5798,5797,5796,5798,5799,5554,5800,5801,5555,5800,5794,5797,5801,5801,5797,5799,5802,5555,5801,5802,5556,5803,5804,5805,5806,5807,5805,5804,5808,5806,5805,5809,5810,5741,5811,5812,5742,5811,5550,5553,5812,5812,5553,5558,5813,5742,5812,5813,5743,5814,5815,5816,5817,5818,5816,5815,5819,5817,5816,5820,5821,5822,5823,5824,5825,5826,5824,5823,5827,5825,5824,5828,5829,5830,5831,5832,5833,5831,5559,5562,5832,5831,5830,5834,5835,5831,5835,5836,5559,5837,5838,5655,5839,5837,5839,5836,5840,5841,5842,5843,5844,5845,5843,5842,5846,5844,5843,5847,5848,5849,5850,5851,5852,5853,5851,5850,5854,5855,5846,5842,5856,5855,5856,5851,5853,4439,4436,5857,5858,4436,4435,5859,5857,5857,5859,5860,5861,5858,5857,5861,5862,5863,5713,5709,5864,5863,5864,5865,5866,5867,4451,4450,5868,5867,5868,5869,5870,5594,5871,5872,5588,5871,5463,5577,5872,5873,5697,5693,5874,5873,5874,5714,5875,5876,5877,5464,5878,5876,5878,5593,5879,5677,5880,5881,5492,5880,5590,5586,5881,5882,5883,5591,5884,5882,5884,5676,5885,5886,5498,5494,5887,5886,5887,5698,5888,5671,5889,5890,5665,5889,5673,5490,5890,5891,5892,5674,5893,5891,5893,5670,5894,5895,5765,5761,5896,5895,5896,5499,5897,5473,5898,5899,5603,5898,5667,5663,5899,5900,5773,5769,5901,5900,5901,5766,5902,5903,5904,5668,5905,5903,5905,5472,5906,5618,5907,5908,5612,5907,5469,5601,5908,5909,5754,5750,5910,5909,5910,5774,5911,5912,5913,5470,5914,5912,5914,5617,5915,5736,5916,5917,5515,5916,5614,5610,5917,5918,5919,5615,5920,5918,5920,5735,5921,5922,5521,5517,5923,5922,5923,5755,5924,5730,5925,5926,5724,5925,5732,5513,5926,5927,5928,5733,5929,5927,5929,5729,5930,5931,5819,5815,5932,5931,5932,5522,5933,5479,5934,5935,5627,5934,5726,5722,5935,5936,5827,5823,5937,5936,5937,5820,5938,5939,5940,5727,5941,5939,5941,5478,5942,5642,5943,5944,5636,5943,5475,5625,5944,5945,5808,5804,5946,5945,5946,5828,5947,5948,5949,5476,5950,5948,5950,5641,5951,5793,5952,5953,5541,5952,5638,5634,5953,5954,5955,5639,5956, +5954,5956,5792,5957,5958,5547,5543,5959,5958,5959,5809,5960,5787,5961,5962,5783,5961,5789,5539,5962,5963,5964,5790,5965,5963,5965,5786,5966,5967,5854,5850,5968,5967,5968,5548,5969,5970,5579,5467,5971,5970,5971,5972,5862,5973,5974,5975,5976,5974,5977,5978,5975,5975,5978,5833,5832,5976,5975,5832,5562,5584,5979,5980,5585,5979,5484,5487,5980,5980,5487,5492,5881,5585,5980,5881,5586,5488,5981,5982,5489,5981,5657,5660,5982,5982,5660,5665,5890,5489,5982,5890,5490,5490,5673,5672,5491,5672,5677,5492,5491,5586,5590,5589,5587,5589,5594,5588,5587,5663,5667,5666,5664,5666,5671,5665,5664,5575,5983,5984,5576,5983,5580,5583,5984,5984,5583,5588,5872,5576,5984,5872,5577,5661,5985,5986,5662,5985,5595,5598,5986,5986,5598,5603,5899,5662,5986,5899,5663,5577,5463,5462,5578,5462,5467,5579,5578,5601,5469,5468,5602,5468,5473,5603,5602,5599,5987,5988,5600,5987,5604,5607,5988,5988,5607,5612,5908,5600,5988,5908,5601,5610,5614,5613,5611,5613,5618,5612,5611,5608,5989,5990,5609,5989,5507,5510,5990,5990,5510,5515,5917,5609,5990,5917,5610,5513,5732,5731,5514,5731,5736,5515,5514,5511,5991,5992,5512,5991,5716,5719,5992,5992,5719,5724,5926,5512,5992,5926,5513,5722,5726,5725,5723,5725,5730,5724,5723,5720,5993,5994,5721,5993,5619,5622,5994,5994,5622,5627,5935,5721,5994,5935,5722,5625,5475,5474,5626,5474,5479,5627,5626,5623,5995,5996,5624,5995,5628,5631,5996,5996,5631,5636,5944,5624,5996,5944,5625,5634,5638,5637,5635,5637,5642,5636,5635,5632,5997,5998,5633,5997,5533,5536,5998,5998,5536,5541,5953,5633,5998,5953,5634,5539,5789,5788,5540,5788,5793,5541,5540,5537,5999,6000,5538,5999,5776,5779,6000,6000,5779,5783,5962,5538,6000,5962,5539,5645,5644,5784,5782,5784,5787,5783,5782,5781,5780,5647,5650,5781,5650,5646,5645,5564,5563,5654,5653,5654,5643,5646,5653,5651,6001,6002,5652,6001,5973,5976,6002,6002,5976,5562,5561,5652,6002,5561,5564,4435,4599,6003,5859,4599,4598,6004,6003,6003,6004,6005,6006,5859,6003,6006,5860,5571,6007,6008,5572,6007,6009,6010,6008,6008,6010,6011,6012,5572,6008,6012,5575,5575,6012,6013,5983,6012,6011,6014,6013,6013,6014,6015,6016,5983,6013, +6016,5580,5580,6016,6017,5581,6016,6015,6018,6017,6017,6018,6019,6020,5581,6017,6020,5584,5584,6020,6021,5979,6020,6019,6022,6021,6021,6022,6023,6024,5979,6021,6024,5484,5484,6024,6025,5485,6024,6023,6026,6025,6025,6026,6027,6028,5485,6025,6028,5488,5488,6028,6029,5981,6028,6027,6030,6029,6029,6030,6031,6032,5981,6029,6032,5657,5657,6032,6033,5658,6032,6031,6034,6033,6033,6034,6035,6036,5658,6033,6036,5661,5661,6036,6037,5985,6036,6035,6038,6037,6037,6038,6039,6040,5985,6037,6040,5595,5595,6040,6041,5596,6040,6039,6042,6041,6041,6042,6043,6044,5596,6041,6044,5599,5599,6044,6045,5987,6044,6043,6046,6045,6045,6046,6047,6048,5987,6045,6048,5604,5604,6048,6049,5605,6048,6047,6050,6049,6049,6050,6051,6052,5605,6049,6052,5608,5608,6052,6053,5989,6052,6051,6054,6053,6053,6054,6055,6056,5989,6053,6056,5507,5507,6056,6057,5508,6056,6055,6058,6057,6057,6058,6059,6060,5508,6057,6060,5511,5511,6060,6061,5991,6060,6059,6062,6061,6061,6062,6063,6064,5991,6061,6064,5716,5716,6064,6065,5717,6064,6063,6066,6065,6065,6066,6067,6068,5717,6065,6068,5720,5720,6068,6069,5993,6068,6067,6070,6069,6069,6070,6071,6072,5993,6069,6072,5619,5619,6072,6073,5620,6072,6071,6074,6073,6073,6074,6075,6076,5620,6073,6076,5623,5623,6076,6077,5995,6076,6075,6078,6077,6077,6078,6079,6080,5995,6077,6080,5628,5628,6080,6081,5629,6080,6079,6082,6081,6081,6082,6083,6084,5629,6081,6084,5632,5632,6084,6085,5997,6084,6083,6086,6085,6085,6086,6087,6088,5997,6085,6088,5533,5533,6088,6089,5534,6088,6087,6090,6089,6089,6090,6091,6092,5534,6089,6092,5537,5537,6092,6093,5999,6092,6091,6094,6093,6093,6094,6095,6096,5999,6093,6096,5776,5776,6096,6097,5777,6096,6095,6098,6097,6097,6098,6099,6100,5777,6097,6100,5780,5647,5780,6100,6101,6100,6099,6102,6101,5647,6101,6103,5648,6101,6102,6104,6103,6103,6104,6105,6106,5648,6103,6106,5651,5651,6106,6107,6001,6106,6105,6108,6107,6107,6108,6109,6110,6001,6107,6110,5973,5973,6110,6111,5974,6110,6109,6112,6111,6111,6112,6113,6114,5974,6111,6114,5977,5033,6115,6116,6117,6115,6009,6118,6116,6116,6118,6005,6119,6117,6116,6119,5286, +5041,6120,6121,5036,6120,6011,6010,6121,6121,6010,6009,6115,5036,6121,6115,5033,5042,6122,6123,5443,6122,6015,6014,6123,6123,6014,6011,6120,5443,6123,6120,5041,5050,6124,6125,5045,6124,6019,6018,6125,6125,6018,6015,6122,5045,6125,6122,5042,4952,6126,6127,5439,6126,6023,6022,6127,6127,6022,6019,6124,5439,6127,6124,5050,4960,6128,6129,4955,6128,6027,6026,6129,6129,6026,6023,6126,4955,6129,6126,4952,5119,6130,6131,5441,6130,6031,6030,6131,6131,6030,6027,6128,5441,6131,6128,4960,5127,6132,6133,5122,6132,6035,6034,6133,6133,6034,6031,6130,5122,6133,6130,5119,5057,6134,6135,5445,6134,6039,6038,6135,6135,6038,6035,6132,5445,6135,6132,5127,5065,6136,6137,5060,6136,6043,6042,6137,6137,6042,6039,6134,5060,6137,6134,5057,5066,6138,6139,5447,6138,6047,6046,6139,6139,6046,6043,6136,5447,6139,6136,5065,5074,6140,6141,5069,6140,6051,6050,6141,6141,6050,6047,6138,5069,6141,6138,5066,4973,6142,6143,5449,6142,6055,6054,6143,6143,6054,6051,6140,5449,6143,6140,5074,4981,6144,6145,4976,6144,6059,6058,6145,6145,6058,6055,6142,4976,6145,6142,4973,5165,6146,6147,5451,6146,6063,6062,6147,6147,6062,6059,6144,5451,6147,6144,4981,5173,6148,6149,5168,6148,6067,6066,6149,6149,6066,6063,6146,5168,6149,6146,5165,5081,6150,6151,5453,6150,6071,6070,6151,6151,6070,6067,6148,5453,6151,6148,5173,5089,6152,6153,5084,6152,6075,6074,6153,6153,6074,6071,6150,5084,6153,6150,5081,5090,6154,6155,5455,6154,6079,6078,6155,6155,6078,6075,6152,5455,6155,6152,5089,5098,6156,6157,5093,6156,6083,6082,6157,6157,6082,6079,6154,5093,6157,6154,5090,4994,6158,6159,5457,6158,6087,6086,6159,6159,6086,6083,6156,5457,6159,6156,5098,5002,6160,6161,4997,6160,6091,6090,6161,6161,6090,6087,6158,4997,6161,6158,4994,5210,6162,6163,5459,6162,6095,6094,6163,6163,6094,6091,6160,5459,6163,6160,5002,5217,6164,6165,5213,6164,6099,6098,6165,6165,6098,6095,6162,5213,6165,6162,5210,5217,5109,6166,6164,6166,6102,6099,6164,5115,6167,6168,5112,6167,6105,6104,6168,6168,6104,6102,6166,5112,6168,6166,5109,5432,6169,6170,5461,6169,6109,6108,6170,6170,6108,6105,6167,5461,6170,6167,5115,5437,6171, +6172,5435,6171,6113,6112,6172,6172,6112,6109,6169,5435,6172,6169,5432,5155,5154,5291,6173,5155,6173,5160,5156,6174,5866,5865,6175,6174,6175,5707,6176,5322,5201,5206,5332,5322,5332,4963,4962,5312,4966,4965,5320,5312,5320,5149,5148,6177,5321,4965,4964,6177,4964,4963,5331,6178,5333,5206,5205,6178,5205,5204,5339,6179,5305,5151,5150,6179,5150,5149,5319,5336,4991,5209,5340,5336,5340,5204,5203,5298,5146,5151,5304,5298,5304,5162,4972,6180,5341,5209,5208,6180,5208,5207,5351,6181,5293,5164,5163,6181,5163,5162,5303,5346,5192,5197,5352,5346,5352,5207,4993,5287,4970,5164,5292,5287,5292,5291,5154,6182,5353,5197,5196,6182,5196,5195,5367,5360,4987,4986,5368,5360,5368,5195,5194,6183,5369,4986,4985,6183,4985,4984,5379,5370,5243,5248,5380,5370,5380,4984,4983,6184,5381,5248,5247,6184,5247,5246,5387,5384,5012,5251,5388,5384,5388,5246,5245,6185,5389,5251,5250,6185,5250,5249,5399,5394,5234,5239,5400,5394,5400,5249,5014,6186,5401,5239,5238,6186,5238,5237,5415,5408,5008,5007,5416,5408,5416,5237,5236,6187,5417,5007,5006,6187,5006,5005,5427,5418,5274,5276,5428,5418,5428,5005,5004,5278,5429,5276,5275,5028,5027,5272,5279,5028,5279,5275,5031,6188,5280,5272,5271,6188,5271,5023,5022,5264,5263,5025,5024,5264,5024,5023,5267,6189,6190,5848,5847,6189,5847,5569,6191,5845,5570,5569,5852,5851,5856,6192,6192,5856,5842,5841,5549,5548,5968,6193,6193,5968,5850,5849,5546,5969,5548,5544,5810,5809,5959,6194,6194,5959,5543,5542,5807,5960,5809,5805,5829,5828,5946,6195,6195,5946,5804,5803,5826,5947,5828,5824,5821,5820,5937,6196,6196,5937,5823,5822,5818,5938,5820,5816,5523,5522,5932,6197,6197,5932,5815,5814,5520,5933,5522,5518,5756,5755,5923,6198,6198,5923,5517,5516,5753,5924,5755,5751,5775,5774,5910,6199,6199,5910,5750,5749,5772,5911,5774,5770,5767,5766,5901,6200,6200,5901,5769,5768,5764,5902,5766,5762,5500,5499,5896,6201,6201,5896,5761,5760,5497,5897,5499,5495,5699,5698,5887,6202,6202,5887,5494,5493,5696,5888,5698,5694,5715,5714,5874,6203,6203,5874,5693,5692,5712,5875,5714,5710,6204,5865,5864,6205,6205,5864,5709,5708,6206,6207,4932,6208,6206,6208,5296,6209,5971, +5467,5466,6210,5971,6210,5869,5972,5300,4935,4934,5308,5300,5308,5053,5052,6211,5309,4934,4933,6211,4933,4932,6207,6212,5317,5055,5054,6212,5054,5053,5307,5310,5056,5055,5316,5310,5316,5136,5135,6213,5329,5138,5137,6213,5137,5136,5315,5324,5139,5138,5328,5324,5328,5130,5129,6214,5345,5132,5131,6214,5131,5130,5327,5334,5133,5132,5344,5334,5344,4938,4937,6215,5357,4940,4939,6215,4939,4938,5343,5348,4941,4940,5356,5348,5356,5077,5076,6216,5365,5079,5078,6216,5078,5077,5355,5358,5080,5079,5364,5358,5364,5182,5181,6217,5377,5184,5183,6217,5183,5182,5363,5372,5185,5184,5376,5372,5376,5176,5175,6218,5393,5178,5177,6218,5177,5176,5375,5382,5179,5178,5392,5382,5392,4944,4943,6219,5405,4946,4945,6219,4945,4944,5391,5396,4947,4946,5404,5396,5404,5101,5100,6220,5413,5103,5102,6220,5102,5101,5403,5406,5104,5103,5412,5406,5412,5224,5223,6221,5425,5226,5225,6221,5225,5224,5411,5420,5227,5226,5424,5420,5424,5220,5219,6222,4949,4948,5221,6222,5221,5220,5423,4948,4951,5107,5106,6223,5262,5118,5117,6223,5117,4951,4950,5015,5020,5118,5261,5015,5261,5256,5016,6224,6225,5258,5257,6224,5257,5256,5260,6226,5840,5836,5835,6226,5835,5834,6227,5560,5559,5836,5839,5560,5839,5655,5563,6228,5482,5481,5656,6228,5656,5655,5838,5643,5481,5480,5644,6229,5966,5786,5785,6229,5785,5480,5483,5961,5787,5786,5965,5961,5965,5790,5789,6230,5957,5792,5791,6230,5791,5790,5964,5952,5793,5792,5956,5952,5956,5639,5638,6231,5951,5641,5640,6231,5640,5639,5955,5943,5642,5641,5950,5943,5950,5476,5475,6232,5942,5478,5477,6232,5477,5476,5949,5934,5479,5478,5941,5934,5941,5727,5726,6233,5930,5729,5728,6233,5728,5727,5940,5925,5730,5729,5929,5925,5929,5733,5732,6234,5921,5735,5734,6234,5734,5733,5928,5916,5736,5735,5920,5916,5920,5615,5614,6235,5915,5617,5616,6235,5616,5615,5919,5907,5618,5617,5914,5907,5914,5470,5469,6236,5906,5472,5471,6236,5471,5470,5913,5898,5473,5472,5905,5898,5905,5668,5667,6237,5894,5670,5669,6237,5669,5668,5904,5889,5671,5670,5893,5889,5893,5674,5673,6238,5885,5676,5675,6238,5675,5674,5892,5880,5677,5676,5884,5880,5884,5591,5590,6239,5879,5593, +5592,6239,5592,5591,5883,5871,5594,5593,5878,5871,5878,5464,5463,6240,6241,5466,5465,6240,5465,5464,5877,5841,5844,6242,6192,5844,5848,6243,6242,6242,6243,6244,6245,6192,6242,6245,5852,5794,6246,6247,6248,6246,5810,6194,6247,6247,6194,5542,5545,6248,6247,5545,5549,5550,6249,6250,6251,6249,5821,6196,6250,6250,6196,5822,5825,6251,6250,5825,5829,5737,6252,6253,6254,6252,5756,6198,6253,6253,6198,5516,5519,6254,6253,5519,5523,5524,6255,6256,6257,6255,5767,6200,6256,6256,6200,5768,5771,6257,6256,5771,5775,5678,6258,6259,6260,6258,5699,6202,6259,6259,6202,5493,5496,6260,6259,5496,5500,6261,6262,6263,6264,6262,6204,6205,6263,6263,6205,5708,5711,6264,6263,5711,5715,6244,6243,6265,3484,6243,5848,6190,6265,6244,3484,6266,6245,6266,5849,5852,6245,5549,6193,6267,6248,6193,5849,6266,6267,6267,6266,3484,5795,6248,6267,5795,5794,5554,6268,6269,5800,6268,5803,5806,6269,6269,5806,5810,6246,5800,6269,6246,5794,5829,6195,6270,6251,6195,5803,6268,6270,6270,6268,5554,5551,6251,6270,5551,5550,5741,6271,6272,5811,6271,5814,5817,6272,6272,5817,5821,6249,5811,6272,6249,5550,5523,6197,6273,6254,6197,5814,6271,6273,6273,6271,5741,5738,6254,6273,5738,5737,5528,6274,6275,5746,6274,5749,5752,6275,6275,5752,5756,6252,5746,6275,6252,5737,5775,6199,6276,6257,6199,5749,6274,6276,6276,6274,5528,5525,6257,6276,5525,5524,5682,6277,6278,5757,6277,5760,5763,6278,6278,5763,5767,6255,5757,6278,6255,5524,5500,6201,6279,6260,6201,5760,6277,6279,6279,6277,5682,5679,6260,6279,5679,5678,5687,6280,6281,5688,6280,5692,5695,6281,6281,5695,5699,6258,5688,6281,6258,5678,5715,6203,6282,6264,6203,5692,6280,6282,6282,6280,5687,6283,6264,6282,6283,6261,6261,6283,6284,6285,6283,5687,5690,6284,6284,5690,5506,5505,6285,6284,5505,5504,4900,4898,6286,6287,4898,4098,5502,6286,6286,5502,5506,5691,6287,6286,5691,5686,4904,4902,6288,6289,4902,4900,6287,6288,6288,6287,5686,5685,6289,6288,5685,5684,4908,4906,6290,6291,4906,4904,6289,6290,6290,6289,5684,5759,6291,6290,5759,5532,4912,4910,6292,6293,4910,4908,6291,6292,6292,6291,5532,5531,6293,6292,5531,5530,4916,4914,6294,6295,4914, +4912,6293,6294,6294,6293,5530,5748,6295,6294,5748,5745,4920,4918,6296,6297,4918,4916,6295,6296,6296,6295,5745,5744,6297,6296,5744,5743,4924,4922,6298,6299,4922,4920,6297,6298,6298,6297,5743,5813,6299,6298,5813,5558,3480,4929,6300,5798,4929,4928,6301,6300,6300,6301,5556,5802,5798,6300,5802,5799,6302,3740,3739,6303,6302,6303,5157,5156,5159,3745,3740,6302,5159,6302,5156,5160,6173,5291,5290,6304,6173,6304,5161,5160,5295,3888,6305,6306,5295,6306,6209,5296,6208,4932,4931,5430,6208,5430,5297,5296,5283,3869,3889,5294,5283,5294,5297,5284,5037,5034,6307,5431,5034,5033,6117,6307,6307,6117,5286,5285,5431,6307,5285,5284,4598,6308,6309,6004,6308,3873,5282,6309,6309,5282,5286,6119,6004,6309,6119,6005,6009,6007,6310,6118,6007,5571,6311,6310,6310,6311,5860,6006,6118,6310,6006,6005,5571,5574,6312,6311,5574,5579,5970,6312,6312,5970,5862,5861,6311,6312,5861,5860,6313,6314,4439,5858,6313,5858,5862,5972,5868,4450,6314,6313,5868,6313,5972,5869,6210,5466,6241,6315,6210,6315,5870,5869,5704,5706,6176,5707,5865,6204,6316,6175,6175,6316,5703,5707,5504,5701,6317,6285,5701,5703,6316,6317,6317,6316,6204,6262,6285,6317,6262,6261,4771,3881,3880,6318,4771,6318,3743,3742,3741,3740,3745,3744,3741,3744,3749,3742,6319,3882,3885,4770,6319,4770,3749,3748,6320,6305,3888,3887,6320,3887,3892,4817,4026,3516,3519,4814,4026,4814,3892,3891,3890,3889,3869,3872,3890,3872,3877,3891,3619,3622,6321,4715,3622,3627,4025,6321,6321,4025,3877,3876,4715,6321,3876,3875,3873,6308,6322,3874,6308,4598,4601,6322,6322,4601,4603,4716,3874,6322,4716,3875,4163,4605,6323,6324,4605,4609,4714,6323,6323,4714,4603,4602,6324,6323,4602,4443,4167,4164,6325,4566,4164,4163,6324,6325,6325,6324,4443,4442,4566,6325,4442,4441,4440,4439,6314,6326,4440,6326,4567,4441,6326,6314,4450,4449,6326,4449,4454,4567,6327,4851,4062,4818,6327,4818,4454,4453,4299,5705,4296,4297,4812,4448,4773,6328,6328,4773,4298,4293,4812,6328,6329,4875,6328,4293,4292,6329,6329,4292,4102,4897,4875,6329,4897,4872,3843,4032,6330,6331,4032,4031,6332,6330,4157,4160,4786,6333,6334,6335,6336,6337,6335,6338,6339,6336,4573,4572,6340, +6341,4572,4412,6342,6340,4710,4709,6343,6344,4709,4573,6341,6343,6332,4031,4769,6345,4769,4710,6344,6345,6338,4157,6333,6339,6346,6347,5254,5253,6346,5253,5258,6225,5437,5436,6348,6349,5436,5254,6347,6348,5567,5566,6350,6351,5830,5833,6352,6353,5834,5830,6353,6354,6352,5833,5978,6355,5978,5977,6356,6355,6356,5977,6114,6357,6114,6113,6358,6357,6358,6113,6171,6359,6171,5437,6349,6359,5566,6360,6361,6350,6362,6363,6364,6365,6366,6367,6337,6336,6368,6366,6336,6339,6369,6368,6339,6333,6370,6369,6333,4786,6371,6372,4785,4787,6372,6370,4786,4785,3494,3493,6373,4876,6373,6374,4877,4876,6375,6376,6265,6190,6376,3512,3484,6265,6377,6378,6189,6191,6378,6375,6190,6189,6379,6380,6351,6350,6381,6379,6350,6361,6382,6381,6361,6383,6384,6382,6383,6385,6386,6384,6385,6387,6388,4835,3846,3840,3843,6331,6388,3840,6191,5569,5568,6389,5568,5567,6351,6389,6351,6380,6390,6389,6390,6377,6191,6389,4787,4162,4426,6391,4426,4425,4877,6391,4877,6374,6392,6391,6392,6371,4787,6391,3494,4379,6393,3492,4379,3480,3483,6393,6393,3483,3488,6394,3492,6393,6394,3489,3511,3510,3486,3485,3511,3485,3484,3512,4924,6395,6396,4925,6395,4928,4926,6396,6396,4926,4150,4149,4925,6396,4149,4148,5556,6301,6397,5557,6301,4928,6395,6397,6397,6395,4924,6299,5557,6397,6299,5558,5845,5569,5847,5843,4162,4161,4788,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6403,6402,6408,6409,6407,6406,6410,6411,6409,6408,6412,6413,6411,6410,6414,6415,6416,6417,6418,6419,6415,6414,6420,6421,6419,6418,6422,6423,6421,6420,6417,6416,6413,6412,6424,6425,6399,6398,6426,6427,6428,6429,6429,6428,6425,6424,6405,6404,6401,6400,6430,6431,6427,6426,6432,6433,6431,6430,6434,6435,6433,6432,6436,6437,6435,6434,6438,6439,6437,6436,6440,6441,6439,6438,6442,6443,6441,6440,6444,6445,6443,6442,6446,6447,6445,6444,6447,6446,6423,6422,6448,6449,6450,6451,6451,6450,6452,6453,6453,6452,6454,6455,6456,6457,6458,6459,6460,6461,6457,6456,6462,6463,6461,6460,6464,6465,6463,6462,6466,6467,6465,6464,6468,6469,6467,6466,6470,6471,6469,6468,6472,6473,6471,6470,6474,6473,6472,6475,6455,6454,6474,6475,6459,6458, +6476,6477,6477,6476,6478,6479,6479,6478,6480,6481,6481,6480,6482,6483,6483,6482,6484,6485,6485,6484,6486,6487,6487,6486,6488,6489,6489,6488,6490,6491,6491,6490,6492,6493,6493,6492,6494,6495,6496,6497,6449,6448,6495,6494,6497,6496,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6511,6510,6516,6517,6515,6514,6518,6519,6517,6516,6503,6519,6518,6504,6512,6507,6506,6513,6509,6508,6520,6521,6521,6520,6522,6523,6523,6522,6524,6525,6525,6524,6526,6527,6528,6529,6527,6526,6528,6530,6531,6529,6531,6530,6532,6533,6533,6532,6534,6535,6535,6534,6536,6537,6537,6536,6538,6539,6539,6538,6540,6541,6541,6540,6542,6543,6504,6544,6545,6505,6518,6546,6544,6504,6546,6518,6516,6547,6547,6516,6514,6548,6548,6514,6510,6549,6549,6510,6513,6550,6506,6551,6550,6513,6551,6506,6509,6552,6552,6509,6521,6553,6553,6521,6523,6554,6554,6523,6525,6555,6555,6525,6527,6556,6529,6557,6556,6527,6531,6558,6557,6529,6558,6531,6533,6559,6559,6533,6535,6560,6560,6535,6537,6561,6561,6537,6539,6562,6562,6539,6541,6563,6563,6541,6543,6564,6544,6565,6566,6545,6546,6567,6565,6544,6568,6567,6546,6547,6569,6568,6547,6548,6569,6548,6549,6570,6570,6549,6550,6571,6551,6572,6571,6550,6572,6551,6552,6573,6574,6573,6552,6553,6575,6574,6553,6554,6576,6575,6554,6555,6577,6576,6555,6556,6557,6578,6577,6556,6558,6579,6578,6557,6580,6579,6558,6559,6581,6580,6559,6560,6582,6581,6560,6561,6583,6582,6561,6562,6584,6583,6562,6563,6585,6584,6563,6564,6586,6587,6588,6589,6588,6590,6591,6589,6590,6592,6593,6591,6592,6594,6595,6593,6594,6596,6597,6595,6596,6598,6599,6597,6598,6600,6601,6599,6602,6603,6601,6600,6603,6602,6604,6605,6604,6606,6607,6605,6606,6608,6609,6607,6609,6608,6610,6611,6610,6612,6613,6611,6612,6614,6615,6613,6616,6617,6618,6619,6620,6621,6619,6618,6622,6623,6621,6620,6623,6622,6624,6625,6626,6627,6625,6624,6615,6614,6627,6626,6503,6502,6586,6589,6591,6519,6503,6589,6593,6517,6519,6591,6595,6515,6517,6593,6597,6511,6515,6595,6599,6512,6511,6597,6601,6507,6512,6599,6603,6508,6507,6601,6520,6508,6603,6605,6607,6522,6520,6605, +6609,6524,6522,6607,6526,6524,6609,6611,6613,6528,6526,6611,6615,6530,6528,6613,6532,6530,6615,6626,6534,6532,6626,6624,6622,6536,6534,6624,6538,6536,6622,6620,6540,6538,6620,6618,6617,6542,6540,6618,6628,6629,6588,6587,6590,6588,6629,6630,6630,6631,6592,6590,6631,6632,6594,6592,6632,6633,6596,6594,6633,6634,6598,6596,6600,6598,6634,6635,6602,6600,6635,6636,6637,6638,6612,6610,6610,6608,6639,6637,6608,6606,6640,6639,6606,6604,6641,6640,6604,6602,6636,6641,6642,6643,6616,6619,6644,6642,6619,6621,6621,6623,6645,6644,6646,6645,6623,6625,6625,6627,6647,6646,6648,6647,6627,6614,6612,6638,6648,6614,6649,6650,6651,6652,6652,6653,6654,6649,6653,6655,6656,6654,6657,6658,6659,6660,6661,6662,6658,6657,6663,6662,6661,6664,6663,6664,6665,6666,6667,6668,6666,6665,6669,6670,6671,6672,6673,6674,6675,6676,6674,6673,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6692,6691,6697,6698,6696,6695,6699,6700,6698,6697,6701,6700,6699,6702,6650,6649,6703,6704,6649,6654,6705,6703,6671,6668,6667,6672,6675,6670,6669,6676,6677,6682,6681,6678,6685,6680,6679,6686,6689,6684,6683,6690,6693,6688,6687,6694,6706,6700,6701,6707,6700,6706,6708,6698,6703,6706,6707,6704,6708,6706,6703,6705,6659,6656,6655,6660,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6722,6725,6728,6723,6737,6733,6736,6738,6739,6740,6712,6711,6741,6742,6716,6715,6743,6744,6720,6719,6723,6745,6746,6724,6728,6747,6745,6723,6748,6747,6728,6727,6749,6750,6732,6731,6736,6751,6752,6738,6735,6753,6751,6736,6754,6755,6756,6757,6758,6759,6760,6761,6761,6762,6763,6758,6762,6764,6765,6763,6499,6765,6764,6500,6757,6766,6767,6754,6767,6766,6768,6769,6770,6635,6634,6771,6772,6636,6635,6770,6773,6641,6636,6772,6774,6640,6641,6773,6774,6775,6639,6640,6775,6776,6637,6639,6776,6777,6638,6637,6777,6778,6648,6638,6778,6779,6647,6648,6779,6780,6646,6647,6780,6781,6645,6646,6781,6782,6644,6645,6782,6783,6642,6644,6783,6784,6643,6642,6785,6786,6787,6788,6788,6787, +6789,6790,6790,6789,6791,6792,6792,6791,6793,6794,6794,6793,6795,6796,6796,6795,6797,6798,6798,6797,6799,6800,6800,6799,6801,6802,6802,6801,6803,6804,6805,6806,6807,6808,6809,6810,6786,6785,6810,6809,6811,6812,6812,6811,6808,6807,6813,6788,6790,6814,6814,6790,6792,6815,6815,6792,6794,6816,6816,6794,6796,6817,6817,6796,6798,6818,6818,6798,6800,6819,6819,6800,6802,6820,6820,6802,6804,6821,6822,6805,6808,6823,6811,6824,6823,6808,6809,6825,6824,6811,6825,6809,6785,6826,6826,6785,6788,6813,6810,6827,6828,6786,6827,6810,6812,6829,6830,6829,6812,6807,6806,6831,6830,6807,6801,6832,6833,6803,6799,6834,6832,6801,6797,6835,6834,6799,6795,6836,6835,6797,6793,6837,6836,6795,6791,6838,6837,6793,6789,6839,6838,6791,6787,6840,6839,6789,6786,6828,6840,6787,6841,6842,6843,6844,6845,6846,6844,6843,6847,6848,6838,6839,6839,6840,6849,6847,6840,6850,6851,6849,6829,6631,6630,6827,6629,6828,6827,6630,6850,6629,6628,6851,6629,6850,6840,6828,6836,6837,6845,6843,6842,6835,6836,6843,6837,6838,6848,6845,6764,6841,6844,6500,6846,6501,6500,6844,6841,6764,6762,6852,6842,6841,6852,6853,6835,6842,6853,6834,6834,6853,6854,6832,6853,6852,6855,6854,6852,6762,6761,6855,6856,6805,6822,6857,6858,6806,6805,6856,6859,6831,6806,6858,6832,6854,6860,6833,6854,6855,6861,6860,6855,6761,6760,6861,6862,6863,6831,6859,6864,6865,6863,6862,6755,6754,6865,6864,6830,6831,6863,6866,6866,6863,6865,6867,6754,6767,6867,6865,6829,6830,6866,6868,6868,6632,6631,6829,6867,6869,6868,6866,6768,6771,6634,6769,6767,6769,6869,6867,6869,6633,6632,6868,6633,6869,6769,6634,6755,6760,6759,6756,6861,6760,6755,6864,6860,6861,6864,6862,6833,6860,6862,6859,6833,6859,6858,6803,6803,6858,6856,6804,6804,6856,6857,6821,6702,6699,6870,6871,6699,6697,6872,6870,6697,6695,6873,6872,6874,6875,6876,6877,6878,6879,6875,6874,6880,6881,6879,6878,6882,6874,6877,6883,6884,6878,6874,6882,6885,6880,6878,6884,6886,6882,6883,6887,6888,6884,6882,6886,6889,6885,6884,6888,6875,6890,6891,6876,6879,6892,6890,6875,6881,6893,6892,6879,6757,6894,6895,6766,6894,6896,6897,6895,6896,6898,6899,6897,6898,6900,6901,6899, +6900,6902,6903,6901,6902,6881,6880,6903,6902,6904,6893,6881,6905,6898,6896,6906,6906,6896,6894,6907,6907,6894,6757,6756,6759,6908,6907,6756,6906,6907,6908,6909,6905,6906,6909,6910,6910,6900,6898,6905,6911,6902,6900,6910,6904,6902,6911,6912,6913,6908,6759,6758,6890,6499,6498,6891,6892,6765,6499,6890,6893,6763,6765,6892,6904,6758,6763,6893,6913,6758,6904,6912,6912,6911,6910,6909,6913,6912,6909,6908,6903,6880,6885,6901,6885,6889,6899,6901,6895,6914,6768,6766,6897,6915,6914,6895,6915,6897,6899,6916,6916,6899,6889,6873,6870,6886,6887,6871,6872,6888,6886,6870,6873,6889,6888,6872,6691,6916,6873,6695,6917,6915,6916,6691,6918,6914,6915,6917,6768,6914,6918,6771,6694,6919,6917,6691,6771,6918,6920,6770,6919,6920,6918,6917,6687,6921,6919,6694,6920,6919,6921,6922,6770,6920,6922,6772,6923,6921,6687,6690,6921,6923,6924,6922,6925,6772,6922,6924,6923,6926,6927,6924,6926,6928,6929,6927,6928,6930,6931,6929,6930,6932,6933,6931,6932,6934,6935,6933,6923,6690,6683,6926,6926,6683,6686,6928,6679,6930,6928,6686,6682,6932,6930,6679,6932,6682,6677,6934,6924,6927,6936,6925,6937,6929,6931,6938,6933,6939,6938,6931,6936,6927,6929,6937,6940,6773,6772,6925,6941,6937,6938,6942,6943,6936,6937,6941,6940,6925,6936,6943,6942,6944,6945,6941,6941,6945,6946,6943,6946,6947,6940,6943,6947,6774,6773,6940,6948,6949,6774,6947,6947,6946,6950,6948,6950,6946,6945,6951,6775,6774,6949,6952,6952,6949,6953,6954,6725,6722,6954,6953,6952,6954,6955,6956,6956,6776,6775,6952,6954,6722,6721,6955,6724,6746,6743,6719,6718,6721,6724,6719,6957,6777,6776,6956,6958,6957,6956,6955,6718,6958,6955,6721,6959,6778,6777,6957,6957,6958,6960,6959,6958,6718,6717,6960,6720,6744,6741,6715,6714,6717,6720,6715,6961,6960,6717,6714,6961,6962,6959,6960,6778,6959,6962,6779,6779,6962,6963,6780,6962,6961,6964,6963,6961,6714,6713,6964,6716,6742,6965,6966,6967,6713,6716,6966,6965,6968,6969,6966,6970,6967,6966,6969,6782,6781,6971,6972,6963,6971,6781,6780,6964,6973,6971,6963,6973,6974,6972,6971,6967,6970,6974,6973,6713,6967,6973,6964,6968,6739,6711,6969,6710,6970,6969,6711,6972,6975,6783,6782,6975,6972, +6974,6976,6976,6974,6970,6710,6975,6977,6784,6783,6976,6978,6977,6975,6978,6976,6710,6709,6979,6953,6949,6948,6948,6950,6980,6979,6732,6750,6748,6727,6726,6729,6732,6727,6953,6979,6726,6725,6979,6980,6729,6726,6951,6981,6980,6950,6738,6752,6749,6731,6730,6737,6738,6731,6980,6981,6730,6729,6951,6982,6983,6981,6944,6982,6951,6945,6981,6983,6737,6730,6982,6984,6985,6983,6942,6986,6987,6944,6939,6986,6942,6938,6987,6984,6982,6944,6985,6733,6737,6983,6984,6988,6989,6985,6986,6990,6991,6987,6933,6935,6992,6939,6989,6734,6733,6985,6991,6988,6984,6987,6986,6939,6992,6990,6403,6993,6994,6404,6407,6995,6993,6403,6409,6996,6995,6407,6411,6997,6996,6409,6413,6998,6997,6411,6416,6999,6998,6413,6415,7000,6999,6416,6419,7001,7000,6415,6421,7002,7001,6419,6423,7003,7002,6421,6446,7004,7003,6423,7005,7004,6446,6444,7006,7005,6444,6442,7007,7006,6442,6440,7008,7007,6440,6438,7009,7008,6438,6436,7010,7009,6436,6434,7011,7010,6434,6432,7012,7011,6432,6430,7013,7012,6430,6426,7013,6426,6429,7014,7015,7014,6429,6424,7016,7015,6424,6398,7016,6398,6401,7017,6404,6994,7017,6401,6425,7018,7019,6399,6428,7020,7018,6425,6427,7021,7020,6428,6431,7022,7021,6427,6433,7023,7022,6431,6435,7024,7023,6433,6437,7025,7024,6435,6439,7026,7025,6437,6441,7027,7026,6439,6443,7028,7027,6441,6445,7029,7028,6443,7030,7029,6445,6447,7031,7032,6405,6400,6399,7019,7031,6400,7033,6402,6405,7032,6406,6402,7033,7034,6408,6406,7034,7035,6410,6408,7035,7036,6412,6410,7036,7037,6417,6412,7037,7038,6414,6417,7038,7039,6418,6414,7039,7040,6420,6418,7040,7041,6422,6420,7041,7042,7030,6447,6422,7042,6656,6659,6474,6454,6654,6656,6454,6452,6705,6654,6452,6450,6708,6705,6450,6449,6497,6698,6708,6449,6696,6698,6497,6494,6692,6696,6494,6492,6693,6692,6492,6490,6688,6693,6490,6488,6689,6688,6488,6486,6684,6689,6486,6484,6685,6684,6484,6482,6680,6685,6482,6480,6681,6680,6480,6478,6678,6681,6478,6476,6674,6678,6476,6458,6675,6674,6458,6457,6461,6670,6675,6457,6463,6671,6670,6461,6465,6668,6671,6463,6467,6666,6668,6465,6469,6663,6666,6467,6471,6662,6663,6469,6473,6658,6662,6471, +6474,6659,6658,6473,7035,6472,6470,7036,7036,6470,6468,7037,7037,6468,6466,7038,7038,6466,6464,7039,7039,6464,6462,7040,7040,6462,6460,7041,7041,6460,6456,7042,7042,6456,6459,7030,7030,6459,6477,7029,7029,6477,6479,7028,7028,6479,6481,7027,7027,6481,6483,7026,7026,6483,6485,7025,7025,6485,6487,7024,7024,6487,6489,7023,7023,6489,6491,7022,7022,6491,6493,7021,7021,6493,6495,7020,7020,6495,6496,7018,7018,6496,6448,7019,7019,6448,6451,7031,7031,6451,6453,7032,7032,6453,6455,7033,7033,6455,6475,7034,6472,7035,7034,6475,7043,7044,6652,6651,6653,6652,7044,7045,6655,6653,7045,7046,6660,6655,7046,7047,6657,6660,7047,7048,6661,6657,7048,7049,6661,7049,7050,6664,6664,7050,7051,6665,6665,7051,7052,6667,6667,7052,7053,6672,7054,6669,6672,7053,6669,7054,7055,6676,7055,7056,6673,6676,6934,6677,6673,7056,7057,7058,7059,7060,7059,7061,7062,7060,7061,7063,7064,7062,7063,7065,7066,7064,7067,7068,7069,7070,7071,7072,7073,7074,7072,7075,7076,7073,7077,7078,7079,7080,7078,7081,7082,7079,7081,7083,7084,7082,7083,7085,7086,7084,7085,7087,7088,7086,7087,7089,7090,7088,7089,7091,7092,7090,7091,7093,7094,7092,7095,7096,7097,7098,7099,7100,7098,7097,7101,7102,7100,7099,7103,7102,7101,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7110,7109,7114,7115,7116,7117,7118,7119,7120,7116,7115,7121,7122,7120,7119,7123,7124,7122,7121,7125,7126,7124,7123,7127,7128,7126,7125,7129,7130,7128,7127,7131,7132,7130,7129,7133,7134,7135,7136,7136,7135,7137,7138,7137,7139,7140,7138,7139,7141,7142,7140,7143,7144,7145,7146,7147,7148,7149,7150,7148,7151,7152,7149,7153,7154,7155,7156,7154,7157,7158,7155,7157,7159,7160,7158,7159,7161,7162,7160,7161,7163,7164,7162,7163,7165,7166,7164,7165,7167,7168,7166,7169,7170,7168,7167,7170,7169,7171,7172,7173,7133,7136,7174,7174,7136,7138,7175,7140,7176,7175,7138,7176,7140,7142,7177,7178,7146,7145,7179,7149,7180,7181,7150,7180,7149,7152,7182,7155,7183,7184,7156,7158,7185,7183,7155,7160,7186,7185,7158,7162,7187,7186,7160,7164,7188,7187,7162,7166,7189,7188,7164,7168,7190,7189,7166,7170,7191,7190,7168,7191,7170,7172,7192,7118,7117, +7113,7114,7075,7077,7080,7076,7156,7184,7182,7152,7151,7153,7156,7152,7107,7106,7103,7104,7065,7067,7070,7066,7146,7178,7177,7142,7141,7143,7146,7142,7112,7111,7105,7108,7068,7071,7074,7069,7150,7181,7179,7145,7144,7147,7150,7145,7096,7057,7060,7097,7062,7099,7097,7060,7064,7101,7099,7062,7066,7104,7101,7064,7070,7107,7104,7066,7069,7108,7107,7070,7074,7112,7108,7069,7073,7109,7112,7074,7076,7114,7109,7073,7080,7118,7114,7076,7079,7115,7118,7080,7082,7119,7115,7079,7084,7121,7119,7082,7086,7123,7121,7084,7088,7125,7123,7086,7090,7127,7125,7088,7092,7129,7127,7090,7094,7131,7129,7092,7172,7193,7194,7192,7058,7173,7174,7059,7059,7174,7175,7061,7176,7063,7061,7175,7065,7063,7176,7177,7178,7067,7065,7177,7068,7067,7178,7179,7181,7071,7068,7179,7180,7072,7071,7181,7075,7072,7180,7182,7184,7077,7075,7182,7183,7078,7077,7184,7185,7081,7078,7183,7186,7083,7081,7185,7187,7085,7083,7186,7188,7087,7085,7187,7189,7089,7087,7188,7190,7091,7089,7189,7191,7093,7091,7190,7093,7191,7192,7094,7194,7131,7094,7192,7132,7131,7194,7193,7195,7132,7193,7196,7132,7195,7197,7130,7198,7128,7130,7197,7198,7199,7126,7128,7124,7126,7199,7200,7201,7122,7124,7200,7120,7122,7201,7202,7116,7120,7202,7203,7204,7205,7113,7117,7117,7116,7203,7204,7205,7206,7110,7113,7111,7110,7206,7105,7106,7105,7206,7103,7103,7206,7207,7102,7208,7100,7102,7207,7209,7098,7100,7208,7210,7095,7098,7209,7207,7206,7205,7211,7212,7211,7205,7204,7213,7212,7204,7203,7202,7214,7213,7203,7201,7215,7214,7202,7215,7201,7200,7216,7217,7216,7200,7199,7218,7208,7207,7211,7209,7208,7218,7219,7219,7218,7211,7212,7219,7220,7210,7209,7220,7219,7212,7213,7221,7220,7213,7214,7221,7214,7215,7216,7222,7210,7220,7221,7216,7217,7222,7221,7095,7210,7222,7223,7223,7222,7217,7224,7217,7199,7198,7224,7225,7224,7198,7197,7223,7226,7096,7095,7224,7225,7226,7223,7226,7227,7057,7096,7227,7226,7225,7228,7229,7230,7231,7232,7232,7231,7233,7234,7235,7236,7230,7229,7235,7228,7195,7236,7230,7236,7233,7231,7232,7234,7235,7229,7234,7227,7228,7235,7227,7234,7058,7057,7234,7233,7173,7058,7236,7237,7238,7233, +7233,7238,7133,7173,7195,7196,7237,7236,7195,7228,7225,7197,6753,6735,7239,7240,6991,6990,7241,7242,7243,6988,6991,7242,7134,7133,7238,7244,7241,6990,6992,7245,6934,7056,7246,6935,7247,7246,7056,7055,7248,7246,7247,7249,7055,7054,7250,7247,7249,7247,7250,7251,7237,7196,7243,7242,7241,7238,7237,7242,7244,7238,7241,7245,7245,6992,6935,7252,7134,7244,7248,7249,7135,7134,7249,7251,6935,7246,7248,7252,7244,7245,7252,7248,7239,7171,7169,7240,7253,7254,6734,6989,7239,6735,6734,7254,6989,6988,7243,7253,7196,7255,7253,7243,7254,7253,7255,7256,7239,7254,7256,7171,7172,7171,7256,7255,7255,7196,7193,7172,7240,7169,7167,7257,6753,7240,7257,7258,7257,7167,7165,7259,7258,7257,7259,7260,7163,7261,7259,7165,7260,7259,7261,7262,7161,7263,7261,7163,7263,7264,7262,7261,7159,7265,7263,7161,7266,7264,7263,7265,7267,7266,7265,7268,7157,7268,7265,7159,7154,7269,7268,7157,7270,7267,7268,7269,7153,7271,7269,7154,7269,7271,7272,7270,7273,7272,7271,7274,7153,7151,7274,7271,7273,7274,7275,7276,7148,7275,7274,7151,7147,7277,7275,7148,7278,7139,7137,7279,7280,7141,7139,7278,7141,7280,7281,7143,7143,7281,7282,7144,7144,7282,7277,7147,7251,7279,7137,7135,7279,7251,7250,7283,7283,7284,7278,7279,7284,7285,7280,7278,7285,7286,7281,7280,7286,7287,7282,7281,7287,7288,7277,7282,7288,7276,7275,7277,7054,7053,7283,7250,7283,7053,7052,7289,7051,7290,7289,7052,7050,7291,7290,7051,7049,7292,7291,7050,7048,7293,7292,7049,7047,7294,7293,7048,7046,7295,7294,7047,7045,7296,7295,7046,7044,7297,7296,7045,7043,7298,7297,7044,7299,7300,7301,7302,7302,7301,7303,7304,7304,7303,7305,7306,7306,7305,7307,7308,7308,7307,7309,7310,7310,7309,7311,7312,7312,7311,7313,7314,7314,7313,7315,7316,7316,7315,7317,7318,7298,7299,7302,7297,7297,7302,7304,7296,7296,7304,7306,7295,7295,7306,7308,7294,7294,7308,7310,7293,7293,7310,7312,7292,7292,7312,7314,7291,7291,7314,7316,7290,7290,7316,7318,7289,7284,7283,7289,7318,7318,7317,7285,7284,7286,7285,7317,7319,7319,7317,7315,7320,7313,7321,7320,7315,7313,7311,7322,7321,7311,7309,7323,7322,7324,7323,7309,7307,7307,7305,7325,7324,7305,7303, +7326,7325,7303,7301,7327,7326,7301,7300,7328,7327,7266,7329,7330,7264,7329,7331,7332,7330,7333,7334,7335,7336,7337,7338,7339,7340,7334,7337,7340,7335,7331,7333,7336,7332,7341,7342,7338,7337,7343,7341,7337,7334,7334,7333,7344,7343,7345,7346,7331,7329,7346,7344,7333,7331,7266,7267,7345,7329,7342,7341,7347,7348,7341,7343,7349,7347,7343,7344,7350,7349,7344,7346,7351,7350,7345,7352,7351,7346,7267,7270,7352,7345,7348,7347,7353,7354,7355,7353,7347,7349,7349,7350,7356,7355,7357,7356,7350,7351,7357,7351,7352,7358,7358,7352,7270,7272,7354,7353,7359,7360,7353,7355,7361,7359,7355,7356,7362,7361,7356,7357,7363,7362,7358,7364,7363,7357,7272,7273,7364,7358,7360,7359,7365,7366,7359,7361,7367,7365,7361,7362,7368,7367,7362,7363,7369,7368,7364,7370,7369,7363,7273,7276,7370,7364,7366,7365,7371,7372,7373,7371,7365,7367,7367,7368,7374,7373,7368,7369,7375,7374,7369,7370,7376,7375,7370,7276,7288,7376,7372,7371,7377,7378,7371,7373,7379,7377,7373,7374,7380,7379,7374,7375,7381,7380,7375,7376,7382,7381,7376,7288,7287,7382,7319,7382,7287,7286,7381,7382,7319,7383,7378,7377,7384,7385,7377,7379,7386,7384,7379,7380,7387,7386,7380,7381,7383,7387,7388,7320,7321,7389,7321,7322,7390,7389,7386,7387,7388,7389,7390,7384,7386,7389,7383,7319,7388,7387,7319,7320,7388,7391,7392,7393,7394,7395,7396,7392,7391,7396,7395,7397,7398,7398,7397,7399,7400,7400,7399,7401,7402,7402,7401,7403,7404,7404,7403,7405,7406,7406,7405,7407,7408,7408,7407,7409,7410,7264,7330,7411,7262,7412,7260,7262,7411,7260,7412,7413,7258,6753,7258,7413,6751,7392,7414,7415,7393,7396,7416,7414,7392,7416,7396,7398,7417,7417,7398,7400,7418,7418,7400,7402,7419,7419,7402,7404,7420,7420,7404,7406,7421,7421,7406,7408,7422,7422,7408,7410,7423,7424,7425,7426,7427,7428,7429,7425,7424,7429,7428,7430,7431,7431,7430,7432,7433,7433,7432,7434,7435,7435,7434,7436,7437,7437,7436,7438,7439,7439,7438,7440,7441,7441,7440,7442,7443,7444,7445,7327,7328,7445,7444,7423,7410,7445,7446,7326,7327,7446,7445,7410,7409,7338,7424,7427,7339,7342,7428,7424,7338,7428,7342,7348,7430,7430,7348,7354,7432,7432,7354,7360,7434,7434, +7360,7366,7436,7436,7366,7372,7438,7438,7372,7378,7440,7440,7378,7385,7442,7390,7447,7385,7384,7322,7323,7447,7390,7447,7448,7442,7385,7448,7447,7323,7324,7425,7391,7394,7426,7429,7395,7391,7425,7395,7429,7431,7397,7397,7431,7433,7399,7399,7433,7435,7401,7401,7435,7437,7403,7403,7437,7439,7405,7405,7439,7441,7407,7407,7441,7443,7409,7446,7449,7325,7326,7449,7448,7324,7325,7448,7449,7443,7442,7409,7443,7449,7446,7450,7451,7393,7415,7451,7452,7394,7393,7452,7453,7426,7394,7453,7454,7427,7426,7339,7427,7454,7455,7455,7456,7340,7339,7335,7340,7456,7457,7457,7458,7336,7335,7332,7336,7458,7459,7330,7332,7459,7411,7460,7461,7462,7463,7464,7465,7461,7460,7466,7467,7465,7464,7468,7469,7467,7466,7470,7471,7469,7468,7472,7473,7471,7470,7474,7475,7473,7472,7476,7477,7475,7474,7478,7479,7477,7476,7480,7481,7479,7478,7463,7462,7482,7483,7483,7482,7484,7485,7485,7484,7486,7487,7487,7486,7488,7489,7489,7488,7490,7491,7491,7490,7492,7493,7493,7492,7494,7495,7495,7494,7496,7497,7497,7496,7498,7499,7499,7498,7500,7501,7501,7500,7502,7503,7503,7502,7504,7505,7505,7504,7506,7507,7507,7506,7508,7509,7509,7508,7510,7511,7511,7510,7512,7513,7513,7512,7514,7515,7515,7514,7516,7517,7518,7519,7520,7521,7521,7520,7522,7523,7523,7522,7524,7525,7525,7524,7526,7527,7527,7526,7528,7529,7529,7528,7530,7531,7531,7530,7532,7533,7533,7532,7534,7535,7535,7534,7536,7537,7537,7536,7538,7539,7539,7538,7540,7541,7541,7540,7542,7543,7543,7542,7544,7545,7545,7544,7546,7547,7547,7546,7548,7549,7549,7548,7550,7551,7551,7550,7552,7553,7553,7552,7554,7555,7555,7554,7556,7557,7557,7556,7558,7559,7559,7558,7560,7561,7561,7560,7562,7563,7563,7562,7564,7565,7565,7564,7566,7567,7567,7566,7568,7569,7569,7568,7570,7571,7571,7570,7572,7573,7573,7572,7574,7575,7450,7518,7521,7451,7451,7521,7523,7452,7452,7523,7525,7453,7453,7525,7527,7454,7454,7527,7529,7455,7455,7529,7531,7456,7456,7531,7533,7457,7457,7533,7535,7458,7458,7535,7537,7459,7459,7537,7539,7411,7411,7539,7541,7412,7412,7541,7543,7413,7413,7543,7545,6751,6751,7545,7547,6752,6752,7547,7549,6749,6749,7549,7551, +6750,6750,7551,7553,6748,6748,7553,7555,6747,6747,7555,7557,6745,6745,7557,7559,6746,6746,7559,7561,6743,6743,7561,7563,6744,6744,7563,7565,6741,6741,7565,7567,6742,6742,7567,7569,6965,6965,7569,7571,6968,6968,7571,7573,6739,6739,7573,7575,6740,7576,7577,7578,7579,7579,7578,7580,7581,7581,7580,7582,7583,7583,7582,7584,7585,7585,7584,7586,7587,7587,7586,7588,7589,7589,7588,7590,7591,7591,7590,7592,7593,7593,7592,7594,7595,7595,7594,7596,7597,7597,7596,7598,7599,7599,7598,7600,7601,7601,7600,7602,7603,7603,7602,7604,7605,7605,7604,7606,7607,7607,7606,7608,7609,7609,7608,7610,7611,7611,7610,7612,7613,7613,7612,7614,7615,7615,7614,7616,7617,7617,7616,7618,7619,7619,7618,7620,7621,7621,7620,7622,7623,7623,7622,7624,7625,7625,7624,7626,7627,7627,7626,7628,7629,7629,7628,7630,7631,7631,7630,7632,7633,7577,7634,7635,7578,7578,7635,7636,7580,7580,7636,7637,7582,7582,7637,7638,7584,7584,7638,7639,7586,7586,7639,7640,7588,7588,7640,7641,7590,7590,7641,7642,7592,7592,7642,7643,7594,7594,7643,7644,7596,7596,7644,7645,7598,7598,7645,7646,7600,7600,7646,7647,7602,7602,7647,7648,7604,7604,7648,7649,7606,7606,7649,7650,7608,7608,7650,7651,7610,7610,7651,7652,7612,7612,7652,7653,7614,7614,7653,7654,7616,7616,7654,7655,7618,7618,7655,7656,7620,7620,7656,7657,7622,7622,7657,7658,7624,7624,7658,7659,7626,7626,7659,7660,7628,7628,7660,7661,7630,7630,7661,7662,7632,7634,7480,7478,7635,7635,7478,7476,7636,7636,7476,7474,7637,7637,7474,7472,7638,7638,7472,7470,7639,7639,7470,7468,7640,7640,7468,7466,7641,7641,7466,7464,7642,7642,7464,7460,7643,7643,7460,7463,7644,7644,7463,7483,7645,7645,7483,7485,7646,7646,7485,7487,7647,7647,7487,7489,7648,7648,7489,7491,7649,7649,7491,7493,7650,7650,7493,7495,7651,7651,7495,7497,7652,7652,7497,7499,7653,7653,7499,7501,7654,7654,7501,7503,7655,7655,7503,7505,7656,7656,7505,7507,7657,7657,7507,7509,7658,7658,7509,7511,7659,7659,7511,7513,7660,7660,7513,7515,7661,7661,7515,7517,7662,7519,7576,7579,7520,7520,7579,7581,7522,7522,7581,7583,7524,7524,7583,7585,7526,7526,7585,7587,7528,7528,7587,7589,7530,7530, +7589,7591,7532,7532,7591,7593,7534,7534,7593,7595,7536,7536,7595,7597,7538,7538,7597,7599,7540,7540,7599,7601,7542,7542,7601,7603,7544,7544,7603,7605,7546,7546,7605,7607,7548,7548,7607,7609,7550,7550,7609,7611,7552,7552,7611,7613,7554,7554,7613,7615,7556,7556,7615,7617,7558,7558,7617,7619,7560,7560,7619,7621,7562,7562,7621,7623,7564,7564,7623,7625,7566,7566,7625,7627,7568,7568,7627,7629,7570,7570,7629,7631,7572,7572,7631,7633,7574,6818,7663,7664,6817,6819,7665,7663,6818,6820,7666,7665,6819,6821,7667,7666,6820,6857,7668,7667,6821,6817,7664,7669,6816,6816,7669,7670,6815,6815,7670,7671,6814,6814,7671,7672,6813,6813,7672,7673,6826,6826,7673,7674,6825,6825,7674,7675,6824,6824,7675,7676,6823,6823,7676,7677,6822,6857,6822,7677,7668,7663,7665,7678,7679,7680,7678,7665,7666,7681,7680,7666,7667,7675,7674,7678,7680,7680,7681,7676,7675,7674,7673,7679,7678,7679,7682,7664,7663,7673,7672,7682,7679,7670,7682,7672,7671,7669,7664,7682,7670,7668,7677,7676,7681,7681,7667,7668,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7694,7693,7695,7696,7696,7695,7697,7698,7698,7697,7699,7700,7700,7699,7684,7683,7690,7689,7692,7691,7701,7702,7688,7687,7703,7704,7702,7701,7705,7706,7704,7703,7707,7708,7706,7705,7709,7710,7708,7707,7711,7712,7710,7709,7713,7714,7712,7711,7715,7716,7714,7713,7717,7718,7716,7715,7719,7720,7718,7717,7721,7722,7720,7719,7723,7724,7722,7721,7684,7725,7726,7685,7699,7727,7725,7684,7697,7728,7727,7699,7695,7729,7728,7697,7693,7730,7729,7695,7692,7731,7730,7693,7689,7732,7731,7692,7688,7733,7732,7689,7702,7734,7733,7688,7704,7735,7734,7702,7706,7736,7735,7704,7708,7737,7736,7706,7710,7738,7737,7708,7712,7739,7738,7710,7714,7740,7739,7712,7716,7741,7740,7714,7718,7742,7741,7716,7720,7743,7742,7718,7722,7744,7743,7720,7724,7745,7744,7722,7725,7746,7747,7726,7727,7748,7746,7725,7728,7749,7748,7727,7729,7750,7749,7728,7730,7751,7750,7729,7731,7752,7751,7730,7732,7753,7752,7731,7733,7754,7753,7732,7734,7755,7754,7733,7735,7756,7755,7734,7736,7757,7756,7735,7737,7758,7757,7736,7738,7759,7758,7737,7739,7760,7759,7738, +7740,7761,7760,7739,7741,7762,7761,7740,7742,7763,7762,7741,7743,7764,7763,7742,7744,7765,7764,7743,7745,7766,7765,7744,7746,7767,7768,7747,7754,7769,7770,7753,7752,7771,7772,7751,7751,7772,7773,7750,7750,7773,7774,7749,7749,7774,7775,7748,7748,7775,7767,7746,7753,7770,7771,7752,7755,7776,7769,7754,7756,7777,7776,7755,7757,7778,7777,7756,7758,7779,7778,7757,7759,7780,7779,7758,7760,7781,7780,7759,7761,7782,7781,7760,7762,7783,7782,7761,7763,7784,7783,7762,7764,7785,7784,7763,7765,7786,7785,7764,7766,7787,7786,7765,7767,7788,7789,7768,7769,7790,7791,7770,7771,7792,7793,7772,7772,7793,7794,7773,7773,7794,7795,7774,7774,7795,7796,7775,7775,7796,7788,7767,7770,7791,7792,7771,7776,7797,7790,7769,7777,7798,7797,7776,7778,7799,7798,7777,7779,7800,7799,7778,7780,7801,7800,7779,7781,7802,7801,7780,7782,7803,7802,7781,7783,7804,7803,7782,7784,7805,7804,7783,7785,7806,7805,7784,7786,7807,7806,7785,7787,7808,7807,7786,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7820,7819,7821,7822,7822,7821,7823,7824,7824,7823,7825,7826,7826,7825,7810,7809,7816,7815,7818,7817,7827,7828,7814,7813,7829,7830,7828,7827,7831,7832,7830,7829,7833,7834,7832,7831,7835,7836,7834,7833,7837,7838,7836,7835,7839,7840,7838,7837,7841,7842,7840,7839,7843,7844,7842,7841,7845,7846,7844,7843,7847,7848,7846,7845,7849,7850,7848,7847,7810,7851,7852,7811,7825,7853,7851,7810,7823,7854,7853,7825,7821,7855,7854,7823,7819,7856,7855,7821,7818,7857,7856,7819,7815,7858,7857,7818,7814,7859,7858,7815,7828,7860,7859,7814,7830,7861,7860,7828,7832,7862,7861,7830,7834,7863,7862,7832,7836,7864,7863,7834,7838,7865,7864,7836,7840,7866,7865,7838,7842,7867,7866,7840,7844,7868,7867,7842,7846,7869,7868,7844,7848,7870,7869,7846,7850,7871,7870,7848,7788,7809,7812,7789,7796,7826,7809,7788,7795,7824,7826,7796,7794,7822,7824,7795,7793,7820,7822,7794,7792,7817,7820,7793,7791,7816,7817,7792,7790,7813,7816,7791,7797,7827,7813,7790,7798,7829,7827,7797,7799,7831,7829,7798,7800,7833,7831,7799,7801,7835,7833,7800,7802,7837,7835,7801,7803,7839,7837,7802,7804,7841,7839,7803,7805,7843, +7841,7804,7806,7845,7843,7805,7807,7847,7845,7806,7808,7849,7847,7807,7872,7873,7874,7875,7876,7877,7878,7879,7880,7876,7879,7881,7882,7880,7881,7883,7884,7882,7883,7885,7886,7884,7885,7887,7888,7889,7890,7891,7892,7888,7891,7893,7894,7892,7893,7895,7896,7894,7895,7897,7889,7886,7887,7890,7898,7872,7875,7899,7900,7901,7902,7903,7901,7898,7899,7902,7877,7874,7873,7878,7904,7900,7903,7905,7906,7904,7905,7907,7908,7906,7907,7909,7910,7908,7909,7911,7912,7910,7911,7913,7914,7912,7913,7915,7916,7914,7915,7917,7918,7916,7917,7919,7920,7918,7919,7921,7921,7896,7897,7920,7922,7923,7924,7925,7923,7926,7927,7924,7926,7928,7929,7927,7930,7931,7932,7933,7934,7930,7933,7935,7936,7934,7935,7937,7938,7936,7937,7939,7940,7938,7939,7941,7942,7940,7941,7943,7944,7942,7943,7945,7946,7944,7945,7947,7948,7949,7946,7947,7928,7949,7948,7929,7931,7950,7951,7932,7950,7952,7953,7951,7952,7954,7955,7953,7954,7956,7957,7955,7956,7958,7959,7957,7958,7960,7961,7959,7960,7962,7963,7961,7962,7964,7965,7963,7964,7966,7967,7965,7966,7968,7969,7967,7970,7922,7925,7971,7968,7970,7971,7969,6498,6501,7972,7973,6502,6505,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7980,7983,7985,7986,7984,7985,7987,7988,7986,7987,7989,7975,7974,7988,7989,7982,7981,7976,7979,7977,7990,7991,7978,7990,7992,7993,7991,7992,7994,7995,7993,7994,7996,7997,7995,7998,7997,7996,7999,7998,7999,8000,8001,8000,8002,8003,8001,8002,8004,8005,8003,8004,8006,8007,8005,8006,8008,8009,8007,8008,8010,8011,8009,8010,6543,6542,8011,7974,6505,6545,8012,7988,7974,8012,8013,8013,8014,7986,7988,8014,8015,7984,7986,8015,8016,7980,7984,8016,8017,7981,7980,7976,7981,8017,8018,8018,8019,7977,7976,8019,8020,7990,7977,8020,8021,7992,7990,8021,8022,7994,7992,8022,8023,7996,7994,7999,7996,8023,8024,8000,7999,8024,8025,8025,8026,8002,8000,8026,8027,8004,8002,8027,8028,8006,8004,8028,8029,8008,8006,8029,8030,8010,8008,8030,6564,6543,8010,8012,6545,6566,8031,8013,8012,8031,8032,8033,8014,8013,8032,8034,8015,8014,8033,8034,8035,8016,8015,8035,8036,8017,8016,8018,8017,8036,8037,8037,8038,8019,8018, +8039,8020,8019,8038,8040,8021,8020,8039,8041,8022,8021,8040,8042,8023,8022,8041,8024,8023,8042,8043,8025,8024,8043,8044,8045,8026,8025,8044,8046,8027,8026,8045,8047,8028,8027,8046,8048,8029,8028,8047,8049,8030,8029,8048,6585,6564,8030,8049,6586,8050,8051,6587,8051,8050,8052,8053,8053,8052,8054,8055,8055,8054,8056,8057,8057,8056,8058,8059,8059,8058,8060,8061,8061,8060,8062,8063,8064,8063,8062,8065,8065,8066,8067,8064,8067,8066,8068,8069,8069,8068,8070,8071,8070,8072,8073,8071,8073,8072,8074,8075,8075,8074,8076,8077,6616,8078,8079,6617,8080,8079,8078,8081,8082,8080,8081,8083,8083,8084,8085,8082,8086,8085,8084,8087,8076,8086,8087,8077,7975,8050,6586,6502,8052,8050,7975,7989,8054,8052,7989,7987,8056,8054,7987,7985,8058,8056,7985,7983,8060,8058,7983,7982,8062,8060,7982,7979,8065,8062,7979,7978,7991,8066,8065,7978,8068,8066,7991,7993,8070,8068,7993,7995,7997,8072,8070,7995,8074,8072,7997,7998,8076,8074,7998,8001,8003,8086,8076,8001,8005,8085,8086,8003,8082,8085,8005,8007,8009,8080,8082,8007,8011,8079,8080,8009,6617,8079,8011,6542,6628,6587,8051,8088,8053,8089,8088,8051,8089,8053,8055,8090,8090,8055,8057,8091,8091,8057,8059,8092,8092,8059,8061,8093,8063,8094,8093,8061,8064,8095,8094,8063,8096,8073,8075,8097,8073,8096,8098,8071,8071,8098,8099,8069,8069,8099,8100,8067,8067,8100,8095,8064,8101,8078,6616,6643,8102,8081,8078,8101,8081,8102,8103,8083,8104,8084,8083,8103,8084,8104,8105,8087,8106,8077,8087,8105,8075,8077,8106,8097,8107,8108,6651,6650,8108,8107,8109,8110,8110,8109,8111,8112,8113,8114,8115,8116,8117,8113,8116,8118,8119,8120,8117,8118,8119,8121,8122,8120,8123,8122,8121,8124,8125,8126,8127,8128,8129,8130,8131,8132,8132,8133,8134,8129,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8147,8150,8152,8153,8151,8152,8154,8155,8153,8154,8156,6701,6702,8155,8156,6650,6704,8157,8107,8107,8157,8158,8109,8127,8126,8123,8124,8131,8130,8125,8128,8134,8133,8137,8136,8141,8140,8135,8138,8145,8144,8139,8142,8149,8148,8143,8146,8159,6707,6701,8156,8156,8154,8160,8159,8157,6704,6707,8159,8160,8158, +8157,8159,8115,8114,8112,8111,6709,6712,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8174,8173,8176,8175,8187,8188,8184,8183,8189,8161,6712,6740,8190,8165,8164,8191,8192,8169,8168,8193,8173,8172,8194,8195,8176,8173,8195,8196,8197,8177,8176,8196,8198,8181,8180,8199,8184,8188,8200,8201,8185,8184,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8208,8207,8211,8212,8212,8211,8213,8214,7973,7972,8214,8213,8204,8203,8215,8216,8215,8217,8218,8216,8219,8220,8093,8094,8221,8219,8094,8095,8222,8221,8095,8100,8223,8222,8100,8099,8223,8099,8098,8224,8224,8098,8096,8225,8225,8096,8097,8226,8226,8097,8106,8227,8227,8106,8105,8228,8228,8105,8104,8229,8229,8104,8103,8230,8230,8103,8102,8231,8231,8102,8101,8232,8232,8101,6643,6784,8233,8234,8235,8236,8234,8237,8238,8235,8237,8239,8240,8238,8239,8241,8242,8240,8241,8243,8244,8242,8243,8245,8246,8244,8245,8247,8248,8246,8247,8249,8250,8248,8249,8251,8252,8250,8253,8254,8255,8256,8257,8233,8236,8258,8258,8259,8260,8257,8259,8255,8254,8260,8261,8262,8237,8234,8262,8263,8239,8237,8263,8264,8241,8239,8264,8265,8243,8241,8265,8266,8245,8243,8266,8267,8247,8245,8267,8268,8249,8247,8268,8269,8251,8249,8270,8271,8254,8253,8260,8254,8271,8272,8257,8260,8272,8273,8273,8274,8233,8257,8274,8261,8234,8233,8258,8236,8275,8276,8276,8277,8259,8258,8278,8255,8259,8277,8256,8255,8278,8279,8250,8252,8280,8281,8248,8250,8281,8282,8246,8248,8282,8283,8244,8246,8283,8284,8242,8244,8284,8285,8240,8242,8285,8286,8238,8240,8286,8287,8235,8238,8287,8288,8236,8235,8288,8275,8289,8290,8291,8292,6845,8291,8290,6846,6847,8287,8286,6848,8287,6847,6849,8288,8288,6849,6851,8293,8277,8276,8089,8090,8088,8089,8276,8275,8293,6851,6628,8088,8088,8275,8288,8293,8284,8291,6845,8285,8292,8291,8284,8283,8285,6845,6848,8286,8214,7972,8290,8289,6846,8290,7972,6501,8289,8294,8212,8214,8292,8295,8294,8289,8283,8282,8295,8292,8282,8281,8296,8295,8295,8296,8297,8294,8294,8297,8208,8212,8298,8299,8270,8253,8300,8298,8253,8256,8301,8300,8256,8279, +8281,8280,8302,8296,8296,8302,8303,8297,8297,8303,8209,8208,8304,8301,8279,8305,8306,8304,8305,8307,8206,8306,8307,8203,8278,8308,8305,8279,8308,8309,8307,8305,8203,8307,8309,8215,8277,8310,8308,8278,8310,8277,8090,8091,8309,8308,8310,8311,8218,8217,8093,8220,8215,8309,8311,8217,8311,8310,8091,8092,8092,8093,8217,8311,8206,8205,8210,8209,8303,8306,8206,8209,8302,8304,8306,8303,8280,8301,8304,8302,8280,8252,8300,8301,8252,8251,8298,8300,8251,8269,8299,8298,6702,6871,8312,8155,8155,8312,8313,8153,8153,8313,8314,8151,8315,6877,6876,8316,8317,8315,8316,8318,8319,8317,8318,8320,8321,6883,6877,8315,8322,8321,8315,8317,8323,8322,8317,8319,8324,6887,6883,8321,8325,8324,8321,8322,8326,8325,8322,8323,8316,6876,6891,8327,8318,8316,8327,8328,8320,8318,8328,8329,8204,8216,8330,8331,8331,8330,8332,8333,8333,8332,8334,8335,8335,8334,8336,8337,8337,8336,8338,8339,8339,8338,8319,8320,8339,8320,8329,8340,8341,8342,8333,8335,8342,8343,8331,8333,8343,8205,8204,8331,8210,8205,8343,8344,8342,8345,8344,8343,8341,8346,8345,8342,8346,8341,8335,8337,8347,8346,8337,8339,8340,8348,8347,8339,8349,8207,8210,8344,8327,6891,6498,7973,8328,8327,7973,8213,8329,8328,8213,8211,8340,8329,8211,8207,8349,8348,8340,8207,8348,8345,8346,8347,8349,8344,8345,8348,8338,8336,8323,8319,8323,8336,8334,8326,8330,8216,8218,8350,8332,8330,8350,8351,8351,8352,8334,8332,8352,8314,8326,8334,8312,6871,6887,8324,8313,8312,8324,8325,8314,8313,8325,8326,8147,8151,8314,8352,8353,8147,8352,8351,8354,8353,8351,8350,8218,8220,8354,8350,8148,8147,8353,8355,8220,8219,8356,8354,8355,8353,8354,8356,8143,8148,8355,8357,8356,8358,8357,8355,8219,8221,8358,8356,8359,8144,8143,8357,8357,8358,8360,8359,8361,8360,8358,8221,8359,8360,8362,8363,8363,8362,8364,8365,8365,8364,8366,8367,8367,8366,8368,8369,8369,8368,8370,8371,8359,8363,8139,8144,8363,8365,8140,8139,8135,8140,8365,8367,8136,8135,8367,8369,8369,8371,8134,8136,8360,8361,8372,8362,8373,8374,8366,8364,8368,8366,8374,8375,8372,8373,8364,8362,8376,8361,8221,8222,8377,8378,8374,8373,8379,8377,8373,8372,8376,8379,8372,8361,8378,8377, +8380,8381,8377,8379,8382,8380,8382,8379,8376,8383,8383,8376,8222,8223,8384,8383,8223,8385,8383,8384,8386,8382,8386,8387,8380,8382,8224,8388,8385,8223,8388,8389,8390,8385,8175,8390,8389,8174,8388,8391,8392,8389,8391,8388,8224,8225,8389,8392,8171,8174,8172,8169,8192,8194,8170,8169,8172,8171,8393,8391,8225,8226,8394,8392,8391,8393,8170,8171,8392,8394,8395,8393,8226,8227,8393,8395,8396,8394,8394,8396,8167,8170,8168,8165,8190,8193,8166,8165,8168,8167,8397,8166,8167,8396,8397,8396,8395,8398,8227,8228,8398,8395,8228,8229,8399,8398,8398,8399,8400,8397,8397,8400,8163,8166,8164,8401,8402,8191,8403,8401,8164,8163,8402,8401,8404,8405,8406,8404,8401,8403,8231,8407,8408,8230,8399,8229,8230,8408,8400,8399,8408,8409,8409,8408,8407,8410,8403,8409,8410,8406,8163,8400,8409,8403,8405,8404,8161,8189,8162,8161,8404,8406,8407,8231,8232,8411,8411,8412,8410,8407,8412,8162,8406,8410,8411,8232,6784,6977,8412,8411,6977,6978,6978,6709,8162,8412,8413,8384,8385,8390,8384,8413,8414,8386,8180,8177,8197,8199,8178,8177,8180,8179,8390,8175,8178,8413,8413,8178,8179,8414,8387,8386,8414,8415,8188,8181,8198,8200,8182,8181,8188,8187,8414,8179,8182,8415,8387,8415,8416,8417,8381,8380,8387,8417,8415,8182,8187,8416,8417,8416,8418,8419,8378,8381,8420,8421,8375,8374,8378,8421,8420,8381,8417,8419,8418,8416,8187,8183,8419,8418,8422,8423,8421,8420,8424,8425,8368,8375,8426,8370,8422,8418,8183,8186,8424,8420,8419,8423,8421,8425,8426,8375,7879,7878,8427,8428,7881,7879,8428,8429,7883,7881,8429,8430,7885,7883,8430,8431,7887,7885,8431,8432,7890,7887,8432,8433,7891,7890,8433,8434,7893,7891,8434,8435,7895,7893,8435,8436,7897,7895,8436,8437,7920,7897,8437,8438,8439,7918,7920,8438,8440,7916,7918,8439,8441,7914,7916,8440,8442,7912,7914,8441,8443,7910,7912,8442,8444,7908,7910,8443,8445,7906,7908,8444,8446,7904,7906,8445,8447,7900,7904,8446,8447,8448,7901,7900,8449,7898,7901,8448,8450,7872,7898,8449,8450,8451,7873,7872,7878,7873,8451,8427,7899,7875,8452,8453,7902,7899,8453,8454,7903,7902,8454,8455,7905,7903,8455,8456,7907,7905,8456,8457,7909,7907,8457,8458,7911,7909,8458,8459, +7913,7911,8459,8460,7915,7913,8460,8461,7917,7915,8461,8462,7919,7917,8462,8463,8464,7921,7919,8463,8465,7874,7877,8466,7875,7874,8465,8452,8467,8466,7877,7876,7880,8468,8467,7876,7882,8469,8468,7880,7884,8470,8469,7882,7886,8471,8470,7884,7889,8472,8471,7886,7888,8473,8472,7889,7892,8474,8473,7888,7894,8475,8474,7892,7896,8476,8475,7894,8464,8476,7896,7921,8111,7929,7948,8115,8109,7927,7929,8111,8158,7924,7927,8109,8160,7925,7924,8158,7971,7925,8160,8154,8152,7969,7971,8154,8150,7967,7969,8152,8149,7965,7967,8150,8146,7963,7965,8149,8145,7961,7963,8146,8142,7959,7961,8145,8141,7957,7959,8142,8138,7955,7957,8141,8137,7953,7955,8138,8133,7951,7953,8137,8132,7932,7951,8133,8131,7933,7932,8132,7935,7933,8131,8128,7937,7935,8128,8127,7939,7937,8127,8124,7941,7939,8124,8121,7943,7941,8121,8119,7945,7943,8119,8118,7947,7945,8118,8116,7948,7947,8116,8115,8469,8470,7944,7946,8470,8471,7942,7944,8471,8472,7940,7942,8472,8473,7938,7940,8473,8474,7936,7938,8474,8475,7934,7936,8475,8476,7930,7934,8476,8464,7931,7930,8464,8463,7950,7931,8463,8462,7952,7950,8462,8461,7954,7952,8461,8460,7956,7954,8460,8459,7958,7956,8459,8458,7960,7958,8458,8457,7962,7960,8457,8456,7964,7962,8456,8455,7966,7964,8455,8454,7968,7966,8454,8453,7970,7968,8453,8452,7922,7970,8452,8465,7923,7922,8465,8466,7926,7923,8466,8467,7928,7926,8467,8468,7949,7928,7946,7949,8468,8469,7043,6651,8108,8477,8110,8478,8477,8108,8112,8479,8478,8110,8114,8480,8479,8112,8113,8481,8480,8114,8117,8482,8481,8113,8117,8120,8483,8482,8120,8122,8484,8483,8122,8123,8485,8484,8123,8126,8486,8485,8487,8486,8126,8125,8125,8130,8488,8487,8488,8130,8129,8489,8371,8489,8129,8134,8490,8491,8492,8493,8492,8491,8494,8495,8495,8494,8496,8497,8497,8496,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8507,8506,8508,8509,8510,8511,8512,8513,8513,8512,8514,8515,8515,8514,8516,8517,8517,8516,8518,8519,8519,8518,8520,8521,8521,8520,8522,8523,8523,8522,8524,8525,8525,8524,8526,8527,8528,8529,8530,8531,8532,8530,8529,8533,8534,8532,8533,8535,8536,8537,8534,8535,8538,8539,8540,8541,8542,8543, +8544,8545,8546,8547,8542,8545,8548,8549,8550,8551,8552,8548,8551,8553,8554,8552,8553,8555,8556,8554,8555,8557,8558,8556,8557,8559,8560,8558,8559,8561,8562,8560,8561,8563,8564,8562,8563,8565,8566,8567,8568,8569,8567,8570,8571,8568,8571,8570,8572,8573,8573,8572,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8583,8582,8584,8585,8586,8587,8588,8589,8589,8588,8590,8591,8591,8590,8592,8593,8593,8592,8594,8595,8595,8594,8596,8597,8597,8596,8598,8599,8599,8598,8600,8601,8602,8601,8600,8603,8603,8604,8605,8602,8606,8607,8567,8566,8607,8608,8570,8567,8572,8570,8608,8609,8609,8610,8574,8572,8611,8612,8578,8577,8582,8581,8613,8614,8614,8615,8584,8582,8588,8587,8616,8617,8590,8588,8617,8618,8592,8590,8618,8619,8594,8592,8619,8620,8596,8594,8620,8621,8598,8596,8621,8622,8600,8598,8622,8623,8603,8600,8623,8624,8624,8625,8604,8603,8549,8547,8546,8550,8509,8508,8511,8510,8587,8584,8615,8616,8585,8584,8587,8586,8540,8537,8536,8541,8499,8498,8501,8500,8577,8574,8610,8611,8575,8574,8577,8576,8543,8539,8538,8544,8503,8502,8505,8504,8581,8578,8612,8613,8579,8578,8581,8580,8531,8530,8491,8490,8494,8491,8530,8532,8496,8494,8532,8534,8498,8496,8534,8537,8501,8498,8537,8540,8502,8501,8540,8539,8505,8502,8539,8543,8506,8505,8543,8542,8508,8506,8542,8547,8511,8508,8547,8549,8512,8511,8549,8548,8514,8512,8548,8552,8516,8514,8552,8554,8518,8516,8554,8556,8520,8518,8556,8558,8522,8520,8558,8560,8524,8522,8560,8562,8526,8524,8562,8564,8604,8625,8626,8627,8493,8492,8607,8606,8492,8495,8608,8607,8609,8608,8495,8497,8499,8610,8609,8497,8611,8610,8499,8500,8503,8612,8611,8500,8613,8612,8503,8504,8614,8613,8504,8507,8509,8615,8614,8507,8616,8615,8509,8510,8617,8616,8510,8513,8618,8617,8513,8515,8619,8618,8515,8517,8620,8619,8517,8519,8621,8620,8519,8521,8622,8621,8521,8523,8623,8622,8523,8525,8624,8623,8525,8527,8527,8526,8625,8624,8626,8625,8526,8564,8565,8627,8626,8564,8628,8629,8627,8565,8565,8563,8630,8628,8631,8630,8563,8561,8631,8561,8559,8632,8557,8633,8632,8559,8634,8633,8557,8555,8553,8635,8634,8555,8551,8636,8635,8553,8637,8550,8546,8638, +8550,8637,8636,8551,8638,8546,8545,8639,8544,8538,8639,8545,8541,8536,8639,8538,8536,8535,8640,8639,8641,8640,8535,8533,8642,8641,8533,8529,8643,8642,8529,8528,8640,8644,8638,8639,8645,8637,8638,8644,8646,8636,8637,8645,8635,8636,8646,8647,8634,8635,8647,8648,8648,8649,8633,8634,8650,8632,8633,8649,8651,8644,8640,8641,8642,8652,8651,8641,8652,8645,8644,8651,8652,8642,8643,8653,8653,8646,8645,8652,8654,8647,8646,8653,8654,8649,8648,8647,8655,8654,8653,8643,8649,8654,8655,8650,8528,8656,8655,8643,8656,8657,8650,8655,8650,8657,8631,8632,8658,8630,8631,8657,8656,8528,8531,8659,8657,8656,8659,8658,8659,8531,8490,8660,8660,8661,8658,8659,8662,8663,8664,8665,8663,8666,8667,8664,8668,8662,8665,8669,8668,8669,8628,8661,8665,8664,8667,8669,8663,8662,8668,8666,8666,8668,8661,8660,8660,8490,8493,8666,8666,8493,8606,8667,8669,8667,8670,8671,8667,8606,8566,8670,8628,8669,8671,8629,8628,8630,8658,8661,8202,8672,8673,8185,8424,8674,8675,8425,8676,8674,8424,8423,8569,8677,8670,8566,8675,8678,8426,8425,8371,8370,8679,8489,8680,8488,8489,8679,8681,8682,8680,8679,8488,8680,8683,8487,8682,8684,8683,8680,8671,8674,8676,8629,8675,8674,8671,8670,8677,8678,8675,8670,8678,8685,8370,8426,8569,8682,8681,8677,8568,8684,8682,8569,8370,8685,8681,8679,8677,8681,8685,8678,8673,8672,8602,8605,8686,8422,8186,8687,8673,8687,8186,8185,8422,8686,8676,8423,8629,8676,8686,8688,8687,8689,8688,8686,8673,8605,8689,8687,8604,8688,8689,8605,8688,8604,8627,8629,8672,8690,8601,8602,8202,8691,8690,8672,8690,8692,8599,8601,8691,8693,8692,8690,8597,8599,8692,8694,8693,8695,8694,8692,8595,8597,8694,8696,8696,8694,8695,8697,8593,8595,8696,8698,8699,8698,8696,8697,8700,8701,8698,8699,8591,8593,8698,8701,8589,8591,8701,8702,8703,8702,8701,8700,8586,8589,8702,8704,8702,8703,8705,8704,8706,8707,8704,8705,8586,8704,8707,8585,8706,8708,8709,8707,8583,8585,8707,8709,8580,8583,8709,8710,8711,8712,8571,8573,8713,8711,8573,8575,8575,8576,8714,8713,8576,8579,8715,8714,8579,8580,8710,8715,8684,8568,8571,8712,8712,8716,8683,8684,8716,8712,8711,8717,8717,8711,8713,8718,8718,8713, +8714,8719,8719,8714,8715,8720,8720,8715,8710,8721,8721,8710,8709,8708,8487,8683,8716,8486,8716,8722,8485,8486,8484,8485,8722,8723,8483,8484,8723,8724,8482,8483,8724,8725,8481,8482,8725,8726,8480,8481,8726,8727,8479,8480,8727,8728,8478,8479,8728,8729,8477,8478,8729,8730,7043,8477,8730,7298,7299,8731,8732,7300,8731,8733,8734,8732,8733,8735,8736,8734,8735,8737,8738,8736,8737,8739,8740,8738,8739,8741,8742,8740,8741,8743,8744,8742,8743,8745,8746,8744,8745,8747,8748,8746,7298,8730,8731,7299,8730,8729,8733,8731,8729,8728,8735,8733,8728,8727,8737,8735,8727,8726,8739,8737,8726,8725,8741,8739,8725,8724,8743,8741,8724,8723,8745,8743,8723,8722,8747,8745,8717,8747,8722,8716,8747,8717,8718,8748,8719,8749,8748,8718,8749,8750,8746,8748,8744,8746,8750,8751,8744,8751,8752,8742,8742,8752,8753,8740,8754,8738,8740,8753,8738,8754,8755,8736,8736,8755,8756,8734,8734,8756,8757,8732,8732,8757,7328,7300,8699,8697,8758,8759,8759,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8765,8764,8767,8766,8761,8760,8763,8762,8770,8766,8769,8771,8772,8765,8766,8770,8765,8772,8773,8762,8774,8759,8761,8775,8775,8761,8762,8773,8699,8759,8774,8700,8771,8776,8777,8770,8770,8777,8778,8772,8772,8778,8779,8773,8773,8779,8780,8775,8774,8775,8780,8781,8700,8774,8781,8703,8776,8782,8783,8777,8784,8778,8777,8783,8778,8784,8785,8779,8786,8780,8779,8785,8786,8787,8781,8780,8787,8705,8703,8781,8782,8788,8789,8783,8783,8789,8790,8784,8784,8790,8791,8785,8785,8791,8792,8786,8787,8786,8792,8793,8705,8787,8793,8706,8788,8794,8795,8789,8789,8795,8796,8790,8790,8796,8797,8791,8791,8797,8798,8792,8793,8792,8798,8799,8706,8793,8799,8708,8794,8800,8801,8795,8802,8796,8795,8801,8796,8802,8803,8797,8797,8803,8804,8798,8798,8804,8805,8799,8799,8805,8721,8708,8800,8806,8807,8801,8801,8807,8808,8802,8802,8808,8809,8803,8803,8809,8810,8804,8804,8810,8811,8805,8805,8811,8720,8721,8749,8719,8720,8811,8810,8812,8749,8811,8806,8813,8814,8807,8807,8814,8815,8808,8808,8815,8816,8809,8809,8816,8812,8810,8817,8818,8751,8750,8751,8818,8819,8752,8815,8818,8817,8816,8819,8818,8815,8814, +8812,8816,8817,8749,8749,8817,8750,8820,8821,8822,8823,8824,8820,8823,8825,8825,8826,8827,8824,8826,8828,8829,8827,8828,8830,8831,8829,8830,8832,8833,8831,8832,8834,8835,8833,8834,8836,8837,8835,8836,8838,8839,8837,8697,8695,8840,8758,8841,8840,8695,8693,8693,8691,8842,8841,8202,8201,8842,8691,8823,8822,8843,8844,8825,8823,8844,8845,8845,8846,8826,8825,8846,8847,8828,8826,8847,8848,8830,8828,8848,8849,8832,8830,8849,8850,8834,8832,8850,8851,8836,8834,8851,7423,8838,8836,8852,8853,8854,8855,8856,8852,8855,8857,8857,8858,8859,8856,8858,8860,8861,8859,8860,8862,8863,8861,8862,8864,8865,8863,8864,8866,8867,8865,8866,8868,8869,8867,8868,8870,8871,8869,7444,7328,8757,8872,8872,8838,7423,7444,8872,8757,8756,8873,8873,8839,8838,8872,8769,8768,8853,8852,8771,8769,8852,8856,8856,8859,8776,8771,8859,8861,8782,8776,8861,8863,8788,8782,8863,8865,8794,8788,8865,8867,8800,8794,8867,8869,8806,8800,8869,8871,8813,8806,8819,8814,8813,8874,8752,8819,8874,8753,8874,8813,8871,8875,8875,8754,8753,8874,8855,8854,8821,8820,8857,8855,8820,8824,8824,8827,8858,8857,8827,8829,8860,8858,8829,8831,8862,8860,8831,8833,8864,8862,8833,8835,8866,8864,8835,8837,8868,8866,8837,8839,8870,8868,8873,8756,8755,8876,8876,8755,8754,8875,8875,8871,8870,8876,8839,8873,8876,8870,8877,8843,8822,8878,8878,8822,8821,8879,8879,8821,8854,8880,8880,8854,8853,8881,8768,8882,8881,8853,8882,8768,8767,8883,8764,8884,8883,8767,8884,8764,8763,8885,8760,8886,8885,8763,8758,8840,8886,8760,8887,8888,8889,8890,8891,8887,8890,8892,8893,8891,8892,8894,8895,8893,8894,8896,8897,8895,8896,8898,8899,8897,8898,8900,8901,8899,8900,8902,8903,8901,8902,8904,8905,8903,8904,8906,8907,8905,8906,8908,8888,8909,8910,8889,8909,8911,8912,8910,8911,8913,8914,8912,8913,8915,8916,8914,8915,8917,8918,8916,8917,8919,8920,8918,8919,8921,8922,8920,8921,8923,8924,8922,8923,8925,8926,8924,8925,8927,8928,8926,8927,8929,8930,8928,8929,8931,8932,8930,8931,8933,8934,8932,8933,8935,8936,8934,8935,8937,8938,8936,8937,8939,8940,8938,8939,8941,8942,8940,8941,7517,7516,8942,8943,8944,8945,8946,8944,8947,8948, +8945,8947,8949,8950,8948,8949,8951,8952,8950,8951,8953,8954,8952,8953,8955,8956,8954,8955,8957,8958,8956,8957,8959,8960,8958,8959,8961,8962,8960,8961,8963,8964,8962,8963,8965,8966,8964,8965,8967,8968,8966,8967,8969,8970,8968,8969,8971,8972,8970,8971,8973,8974,8972,8973,8975,8976,8974,8975,8977,8978,8976,8977,8979,8980,8978,8979,8981,8982,8980,8981,8983,8984,8982,8983,8985,8986,8984,8985,8987,8988,8986,8987,8989,8990,8988,8989,8991,8992,8990,8991,8993,8994,8992,8993,8995,8996,8994,8995,8997,8998,8996,8997,7575,7574,8998,8877,8878,8944,8943,8878,8879,8947,8944,8879,8880,8949,8947,8880,8881,8951,8949,8881,8882,8953,8951,8882,8883,8955,8953,8883,8884,8957,8955,8884,8885,8959,8957,8885,8886,8961,8959,8886,8840,8963,8961,8840,8841,8965,8963,8841,8842,8967,8965,8842,8201,8969,8967,8201,8200,8971,8969,8200,8198,8973,8971,8198,8199,8975,8973,8199,8197,8977,8975,8197,8196,8979,8977,8196,8195,8981,8979,8195,8194,8983,8981,8194,8192,8985,8983,8192,8193,8987,8985,8193,8190,8989,8987,8190,8191,8991,8989,8191,8402,8993,8991,8402,8405,8995,8993,8405,8189,8997,8995,8189,6740,7575,8997,8999,9000,9001,9002,9000,9003,9004,9001,9003,9005,9006,9004,9005,9007,9008,9006,9007,9009,9010,9008,9009,9011,9012,9010,9011,9013,9014,9012,9013,9015,9016,9014,9015,9017,9018,9016,9017,9019,9020,9018,9019,9021,9022,9020,9021,9023,9024,9022,9023,9025,9026,9024,9025,9027,9028,9026,9027,9029,9030,9028,9029,9031,9032,9030,9031,9033,9034,9032,9033,9035,9036,9034,9035,9037,9038,9036,9037,9039,9040,9038,9039,9041,9042,9040,9041,9043,9044,9042,9043,9045,9046,9044,9045,9047,9048,9046,9047,9049,9050,9048,9049,9051,9052,9050,9051,9053,9054,9052,9053,7633,7632,9054,9002,9001,9055,9056,9001,9004,9057,9055,9004,9006,9058,9057,9006,9008,9059,9058,9008,9010,9060,9059,9010,9012,9061,9060,9012,9014,9062,9061,9014,9016,9063,9062,9016,9018,9064,9063,9018,9020,9065,9064,9020,9022,9066,9065,9022,9024,9067,9066,9024,9026,9068,9067,9026,9028,9069,9068,9028,9030,9070,9069,9030,9032,9071,9070,9032,9034,9072,9071,9034,9036,9073,9072,9036,9038,9074,9073,9038,9040,9075,9074,9040, +9042,9076,9075,9042,9044,9077,9076,9044,9046,9078,9077,9046,9048,9079,9078,9048,9050,9080,9079,9050,9052,9081,9080,9052,9054,9082,9081,9054,7632,7662,9082,9056,9055,8905,8907,9055,9057,8903,8905,9057,9058,8901,8903,9058,9059,8899,8901,9059,9060,8897,8899,9060,9061,8895,8897,9061,9062,8893,8895,9062,9063,8891,8893,9063,9064,8887,8891,9064,9065,8888,8887,9065,9066,8909,8888,9066,9067,8911,8909,9067,9068,8913,8911,9068,9069,8915,8913,9069,9070,8917,8915,9070,9071,8919,8917,9071,9072,8921,8919,9072,9073,8923,8921,9073,9074,8925,8923,9074,9075,8927,8925,9075,9076,8929,8927,9076,9077,8931,8929,9077,9078,8933,8931,9078,9079,8935,8933,9079,9080,8937,8935,9080,9081,8939,8937,9081,9082,8941,8939,9082,7662,7517,8941,8946,8945,9000,8999,8945,8948,9003,9000,8948,8950,9005,9003,8950,8952,9007,9005,8952,8954,9009,9007,8954,8956,9011,9009,8956,8958,9013,9011,8958,8960,9015,9013,8960,8962,9017,9015,8962,8964,9019,9017,8964,8966,9021,9019,8966,8968,9023,9021,8968,8970,9025,9023,8970,8972,9027,9025,8972,8974,9029,9027,8974,8976,9031,9029,8976,8978,9033,9031,8978,8980,9035,9033,8980,8982,9037,9035,8982,8984,9039,9037,8984,8986,9041,9039,8986,8988,9043,9041,8988,8990,9045,9043,8990,8992,9047,9045,8992,8994,9049,9047,8994,8996,9051,9049,8996,8998,9053,9051,8998,7574,7633,9053,8266,8265,9083,9084,8267,8266,9084,9085,8268,8267,9085,9086,8269,8268,9086,9087,8299,8269,9087,9088,8265,8264,9089,9083,8264,8263,9090,9089,8263,8262,9091,9090,8262,8261,9092,9091,8261,8274,9093,9092,8274,8273,9094,9093,8273,8272,9095,9094,8272,8271,9096,9095,8271,8270,9097,9096,8299,9088,9097,8270,9084,9098,9099,9085,9100,9086,9085,9099,9101,9087,9086,9100,9095,9100,9099,9094,9100,9095,9096,9101,9094,9099,9098,9093,9098,9084,9083,9102,9093,9098,9102,9092,9090,9091,9092,9102,9089,9090,9102,9083,9088,9101,9096,9097,9101,9088,9087,9103,7686,7685,9104,9105,9106,9107,9108,9109,9110,9111,9112,9110,9113,9114,9111,9113,9115,9116,9114,9115,9117,9118,9116,9117,9103,9104,9118,9106,9109,9112,9107,9119,9105,9108,9120,9121,9119,9120,9122,9123,9121,9122,9124,9125,9123,9124,9126, +9127,9125,9126,9128,9129,9127,9128,9130,9131,9129,9130,9132,9133,9131,9132,9134,9135,9133,9134,9136,9137,9135,9136,9138,9139,9137,9138,9140,9141,9139,9140,9142,9104,7685,7726,9143,9118,9104,9143,9144,9116,9118,9144,9145,9114,9116,9145,9146,9111,9114,9146,9147,9112,9111,9147,9148,9107,9112,9148,9149,9108,9107,9149,9150,9120,9108,9150,9151,9122,9120,9151,9152,9124,9122,9152,9153,9126,9124,9153,9154,9128,9126,9154,9155,9130,9128,9155,9156,9132,9130,9156,9157,9134,9132,9157,9158,9136,9134,9158,9159,9138,9136,9159,9160,9140,9138,9160,9161,9142,9140,9161,9162,9143,7726,7747,9163,9144,9143,9163,9164,9145,9144,9164,9165,9146,9145,9165,9166,9147,9146,9166,9167,9148,9147,9167,9168,9149,9148,9168,9169,9150,9149,9169,9170,9151,9150,9170,9171,9152,9151,9171,9172,9153,9152,9172,9173,9154,9153,9173,9174,9155,9154,9174,9175,9156,9155,9175,9176,9157,9156,9176,9177,9158,9157,9177,9178,9159,9158,9178,9179,9160,9159,9179,9180,9161,9160,9180,9181,9162,9161,9181,9182,9163,7747,7768,9183,9170,9169,9184,9185,9168,9167,9186,9187,9167,9166,9188,9186,9166,9165,9189,9188,9165,9164,9190,9189,9164,9163,9183,9190,9169,9168,9187,9184,9171,9170,9185,9191,9172,9171,9191,9192,9173,9172,9192,9193,9174,9173,9193,9194,9175,9174,9194,9195,9176,9175,9195,9196,9177,9176,9196,9197,9178,9177,9197,9198,9179,9178,9198,9199,9180,9179,9199,9200,9181,9180,9200,9201,9182,9181,9201,9202,9183,7768,7789,9203,9185,9184,9204,9205,9187,9186,9206,9207,9186,9188,9208,9206,9188,9189,9209,9208,9189,9190,9210,9209,9190,9183,9203,9210,9184,9187,9207,9204,9191,9185,9205,9211,9192,9191,9211,9212,9193,9192,9212,9213,9194,9193,9213,9214,9195,9194,9214,9215,9196,9195,9215,9216,9197,9196,9216,9217,9198,9197,9217,9218,9199,9198,9218,9219,9200,9199,9219,9220,9201,9200,9220,9221,9202,9201,9221,9222,9223,7812,7811,9224,9225,9226,9227,9228,9229,9230,9231,9232,9230,9233,9234,9231,9233,9235,9236,9234,9235,9237,9238,9236,9237,9223,9224,9238,9226,9229,9232,9227,9239,9225,9228,9240,9241,9239,9240,9242,9243,9241,9242,9244,9245,9243,9244,9246,9247,9245,9246,9248,9249,9247,9248,9250,9251,9249, +9250,9252,9253,9251,9252,9254,9255,9253,9254,9256,9257,9255,9256,9258,9259,9257,9258,9260,9261,9259,9260,9262,9224,7811,7852,9263,9238,9224,9263,9264,9236,9238,9264,9265,9234,9236,9265,9266,9231,9234,9266,9267,9232,9231,9267,9268,9227,9232,9268,9269,9228,9227,9269,9270,9240,9228,9270,9271,9242,9240,9271,9272,9244,9242,9272,9273,9246,9244,9273,9274,9248,9246,9274,9275,9250,9248,9275,9276,9252,9250,9276,9277,9254,9252,9277,9278,9256,9254,9278,9279,9258,9256,9279,9280,9260,9258,9280,9281,9262,9260,9281,9282,9203,7789,7812,9223,9210,9203,9223,9237,9209,9210,9237,9235,9208,9209,9235,9233,9206,9208,9233,9230,9207,9206,9230,9229,9204,9207,9229,9226,9205,9204,9226,9225,9211,9205,9225,9239,9212,9211,9239,9241,9213,9212,9241,9243,9214,9213,9243,9245,9215,9214,9245,9247,9216,9215,9247,9249,9217,9216,9249,9251,9218,9217,9251,9253,9219,9218,9253,9255,9220,9219,9255,9257,9221,9220,9257,9259,9222,9221,9259,9261,9283,9284,9285,9286,9287,9288,9289,9290,9288,9291,9292,9289,9291,9293,9294,9292,9293,9295,9296,9294,9295,9297,9298,9296,9299,9300,9301,9302,9300,9303,9304,9301,9303,9305,9306,9304,9305,9307,9308,9306,9297,9299,9302,9298,9309,9310,9311,9312,9313,9309,9312,9314,9310,9283,9286,9311,9284,9287,9290,9285,9315,9313,9314,9316,9317,9315,9316,9318,9319,9317,9318,9320,9321,9319,9320,9322,9323,9321,9322,9324,9325,9323,9324,9326,9327,9325,9326,9328,9329,9327,9328,9330,9331,9329,9330,9332,9307,9331,9332,9308,9333,9334,9335,9336,9337,9338,9339,9340,9341,9337,9340,9342,9343,9341,9342,9344,9345,9343,9344,9346,9347,9345,9346,9348,9349,9350,9351,9352,9353,9349,9352,9354,9355,9353,9354,9356,9357,9355,9356,9358,9350,9347,9348,9351,9359,9360,9361,9362,9360,9363,9364,9361,9334,9359,9362,9335,9338,9333,9336,9339,9363,9365,9366,9364,9365,9367,9368,9366,9367,9369,9370,9368,9369,9371,9372,9370,9371,9373,9374,9372,9373,9375,9376,9374,9375,9377,9378,9376,9377,9379,9380,9378,9379,9381,9382,9380,9381,9357,9358,9382,9286,9285,9383,9384,9290,9289,9385,9386,9289,9292,9387,9385,9292,9294,9388,9387,9294,9296,9389,9388,9296,9298,9390,9389,9302,9301,9391,9392, +9301,9304,9393,9391,9304,9306,9394,9393,9306,9308,9395,9394,9298,9302,9392,9390,9312,9311,9396,9397,9314,9312,9397,9398,9311,9286,9384,9396,9285,9290,9386,9383,9316,9314,9398,9399,9318,9316,9399,9400,9320,9318,9400,9401,9322,9320,9401,9402,9324,9322,9402,9403,9326,9324,9403,9404,9328,9326,9404,9405,9330,9328,9405,9406,9332,9330,9406,9407,9308,9332,9407,9395,9336,9335,9408,9409,9340,9339,9410,9411,9342,9340,9411,9412,9344,9342,9412,9413,9346,9344,9413,9414,9348,9346,9414,9415,9352,9351,9416,9417,9354,9352,9417,9418,9356,9354,9418,9419,9358,9356,9419,9420,9351,9348,9415,9416,9362,9361,9421,9422,9361,9364,9423,9421,9335,9362,9422,9408,9339,9336,9409,9410,9364,9366,9424,9423,9366,9368,9425,9424,9368,9370,9426,9425,9370,9372,9427,9426,9372,9374,9428,9427,9374,9376,9429,9428,9376,9378,9430,9429,9378,9380,9431,9430,9380,9382,9432,9431,9382,9358,9420,9432,9384,9383,9433,9386,9385,9433,9385,9387,9433,9387,9388,9433,9388,9389,9433,9389,9390,9433,9392,9391,9433,9391,9393,9433,9393,9394,9433,9394,9395,9433,9390,9392,9433,9397,9396,9433,9398,9397,9433,9396,9384,9433,9383,9386,9433,9399,9398,9433,9400,9399,9433,9401,9400,9433,9402,9401,9433,9403,9402,9433,9404,9403,9433,9405,9404,9433,9406,9405,9433,9407,9406,9433,9395,9407,9433,9409,9408,9434,9411,9410,9434,9412,9411,9434,9413,9412,9434,9414,9413,9434,9415,9414,9434,9417,9416,9434,9418,9417,9434,9419,9418,9434,9420,9419,9434,9416,9415,9434,9422,9421,9434,9421,9423,9434,9408,9422,9434,9410,9409,9434,9423,9424,9434,9424,9425,9434,9425,9426,9434,9426,9427,9434,9427,9428,9434,9428,9429,9434,9429,9430,9434,9430,9431,9434,9431,9432,9434,9432,9420,9434 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "ByPolygon" + ReferenceInformationType: "IndexToDirect" + Materials: *8479 { + a: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Geometry: 2807092190992, "Geometry::", "Mesh" { + Vertices: *543 { + a: 3.94270324707031,0.984960973262787,6.30861520767212,3.8688268661499,1.12995374202728,6.30861520767212,3.75375866889954,1.24502003192902,6.30861520767212,3.60876607894897,1.31889688968658,6.30861520767212,3.44804000854492,1.34435558319092,6.30861520767212,3.28731417655945,1.31889688968658,6.30861520767212,3.14232063293457,1.24502003192902,6.30861520767212,3.0272536277771,1.12995374202728,6.30861520767212,2.95337772369385,0.984960973262787,6.30861520767212,2.92791962623596,0.824233412742615,6.30861377716064,2.95337772369385,0.663508296012878,6.30861377716064,3.0272536277771,0.518515288829803,6.30861377716064,3.14232063293457,0.40344712138176,6.30861330032349,3.28731417655945,0.329570770263672,6.30861330032349,3.44804000854492,0.304113954305649,6.30861330032349,3.60876607894897,0.329570770263672,6.30861330032349,3.75375866889954,0.40344712138176,6.30861330032349,3.86882638931274,0.518515288829803,6.30861377716064,3.94270253181458,0.663508296012878,6.30861377716064,3.9681601524353,0.824233412742615,6.30861377716064,4.23847150802612,1.08106231689453,6.66223573684692,4.12042188644409,1.31274831295013,6.66223669052124,3.93655300140381,1.49661481380463,6.6622371673584,3.70486879348755,1.61466646194458,6.6622371673584,3.4480402469635,1.65534234046936,6.6622371673584,3.19121336936951,1.61466646194458,6.6622371673584,2.95952677726746,1.49661481380463,6.6622371673584,2.77565860748291,1.31274831295013,6.66223669052124,2.65760970115662,1.08106231689453,6.66223573684692,2.61692976951599,0.824232459068298,6.66223573684692,2.65760946273804,0.567407190799713,6.66223573684692,2.77565860748291,0.335720062255859,6.66223573684692,2.95952677726746,0.151854574680328,6.66223573684692,3.19121336936951,0.0338031575083733,6.66223573684692,3.4480402469635,-0.00687737017869949,6.66223573684692,3.70486664772034,0.0338031575083733,6.66223573684692,3.93655276298523,0.151854574680328,6.66223573684692,4.12042140960693,0.335720062255859,6.66223573684692,4.23847103118896,0.567407190799713,6.66223573684692,4.27914953231812,0.824232459068298,6.66223573684692, +4.56127405166626,1.18594372272491,7.19025087356567,4.39501333236694,1.51225435733795,7.19025135040283,4.13605690002441,1.77120959758759,7.19025230407715,3.8097517490387,1.93747043609619,7.19025230407715,3.4480402469635,1.99475741386414,7.19025230407715,3.08632826805115,1.93747043609619,7.19025230407715,2.76002359390259,1.77120959758759,7.19025230407715,2.50106716156006,1.51224780082703,7.19025135040283,2.33480739593506,1.18594372272491,7.19025087356567,2.27751708030701,0.82423198223114,7.19025087356567,2.33480715751648,0.462520331144333,7.19025087356567,2.50106763839722,0.13621611893177,7.19025087356567,2.76002430915833,-0.12273907661438,7.19025087356567,3.08632874488831,-0.28899958729744,7.19024991989136,3.4480402469635,-0.346286863088608,7.19024991989136,3.80975532531738,-0.28899958729744,7.19024991989136,4.13605642318726,-0.12273907661438,7.19025087356567,4.39501237869263,0.13621611893177,7.19025087356567,4.56127309799194,0.462520360946655,7.19025087356567,4.6185622215271,0.82423198223114,7.19025087356567,4.69135141372681,1.22820687294006,7.68679094314575,4.50566387176514,1.59264314174652,7.68679094314575,4.21644878387451,1.88186001777649,7.68679094314575,3.85201644897461,2.06754326820374,7.68679094314575,3.4480402469635,2.13152956962585,7.68679094314575,3.04406356811523,2.06754326820374,7.68679094314575,2.67963194847107,1.88186013698578,7.68679094314575,2.39041447639465,1.59264314174652,7.68679094314575,2.20472931861877,1.22820699214935,7.68679094314575,2.1407458782196,0.824231028556824,7.68679094314575,2.20472931861877,0.420255422592163,7.68679094314575,2.39041447639465,0.0558271631598473,7.68679094314575,2.67963194847107,-0.233390092849731,7.68679094314575,3.04406428337097,-0.419072926044464,7.68679094314575,3.4480402469635,-0.483059585094452,7.68679094314575,3.85201644897461,-0.419072926044464,7.68679094314575,4.2164478302002,-0.233390092849731,7.68679094314575,4.50566291809082,0.0558271296322346,7.68679094314575,4.69135093688965,0.420255422592163,7.68679094314575,4.7553334236145,0.824231147766113,7.68679094314575, +4.75599431991577,1.23296236991882,8.12961673736572,4.56065225601196,1.60167920589447,8.12961673736572,4.2564001083374,1.89430201053619,8.12961673736572,3.8730206489563,2.08216762542725,8.12961673736572,3.44804048538208,2.14691019058228,8.12961673736572,3.02306008338928,2.08216762542725,8.12961673736572,2.63968062400818,1.89430201053619,8.12961673736572,2.33542823791504,1.60167920589447,8.12961673736572,2.14008688926697,1.23296236991882,8.12961673736572,2.07277703285217,0.824230432510376,8.12961673736572,2.14008665084839,0.415507793426514,8.12961673736572,2.33542823791504,0.0467815771698952,8.12961673736572,2.63968062400818,-0.245831966400146,8.12961673736572,3.02306008338928,-0.433706909418106,8.12961673736572,3.44804048538208,-0.498439908027649,8.12961673736572,3.87301993370056,-0.433706909418106,8.12961673736572,4.25639963150024,-0.245831966400146,8.12961673736572,4.5606517791748,0.046781562268734,8.12961673736572,4.75599431991577,0.415507793426514,8.12961673736572,4.82330417633057,0.824230432510376,8.12961673736572,4.66095590591431,1.21833789348602,8.50782489776611,4.47980833053589,1.57385313510895,8.50782489776611,4.19766330718994,1.85600197315216,8.50782489776611,3.84214043617249,2.0371515750885,8.50782489776611,3.44804048538208,2.09956884384155,8.50782489776611,3.05394053459167,2.0371515750885,8.50782489776611,2.6984167098999,1.85600197315216,8.50782489776611,2.41627287864685,1.57385313510895,8.50782489776611,2.23512554168701,1.21833789348602,8.50782489776611,2.17270612716675,0.824229538440704,8.50782489776611,2.23512554168701,0.430132180452347,8.50782489776611,2.41627287864685,0.0746059566736221,8.50782489776611,2.69841742515564,-0.207532078027725,8.50782489776611,3.05394053459167,-0.388681590557098,8.50782489776611,3.44804048538208,-0.451098889112473,8.50782489776611,3.84214043617249,-0.388681590557098,8.50782489776611,4.19766902923584,-0.207532078027725,8.50782489776611,4.47980690002441,0.0746059417724609,8.50782489776611,4.66095542907715,0.430132180452347,8.50782489776611,4.72337436676025,0.824229538440704,8.50782489776611, +4.42636632919312,1.14210712909698,8.81210517883301,4.28025388717651,1.42886829376221,8.81210517883301,4.05268478393555,1.65644681453705,8.81210517883301,3.76591753959656,1.80256164073944,8.81210517883301,3.44804048538208,1.8529087305069,8.81210517883301,3.13016295433044,1.80256164073944,8.81210517883301,2.84340190887451,1.65644681453705,8.81210517883301,2.61582684516907,1.42886829376221,8.81210517883301,2.46971487998962,1.14210712909698,8.81210517883301,2.41936850547791,0.82422924041748,8.81210517883301,2.46971487998962,0.50635153055191,8.81210517883301,2.61582684516907,0.219590350985527,8.81210517883301,2.84340190887451,-0.00797693431377411,8.81210517883301,3.13016295433044,-0.154091775417328,8.81210517883301,3.44804048538208,-0.204438805580139,8.81210517883301,3.76591753959656,-0.154091775417328,8.81210517883301,4.05267858505249,-0.00797693431377411,8.81210517883301,4.28025341033936,0.219590350985527,8.81210517883301,4.42636585235596,0.50635153055191,8.81210517883301,4.47671175003052,0.82422924041748,8.81210517883301,4.12684679031372,1.04478597640991,9.03496265411377,4.02546262741089,1.24375951290131,9.03496265411377,3.86756205558777,1.40165042877197,9.03496265411377,3.66859579086304,1.50303769111633,9.03496265411377,3.44804048538208,1.53796970844269,9.03496265411377,3.22748422622681,1.50303769111633,9.03496265411377,3.02851867675781,1.40165042877197,9.03496265411377,2.87061738967896,1.24375951290131,9.03496265411377,2.76923966407776,1.04478597640991,9.03496265411377,2.73430776596069,0.824229061603546,9.03496265411377,2.76923966407776,0.603683769702911,9.03496265411377,2.87061834335327,0.404710233211517,9.03496265411377,3.02851867675781,0.24680757522583,9.03496265411377,3.22748470306396,0.14543205499649,9.03496265411377,3.44804048538208,0.110499948263168,9.03496265411377,3.66859579086304,0.14543205499649,9.03496265411377,3.86756205558777,0.24680757522583,9.03496265411377,4.02546262741089,0.404710233211517,9.03496265411377,4.12684011459351,0.603683769702911,9.03496265411377,4.16177320480347,0.824229061603546,9.03496265411377, +3.79221773147583,0.936067044734955,9.17091178894043,3.74081492424011,1.03694641590118,9.17091178894043,3.66075396537781,1.11700367927551,9.17091178894043,3.55987048149109,1.16840648651123,9.17091178894043,3.44804048538208,1.18612539768219,9.17091178894043,3.33620977401733,1.16840648651123,9.17091178894043,3.23532676696777,1.11700367927551,9.17091178894043,3.15526580810547,1.03694641590118,9.17091178894043,3.10386323928833,0.936067044734955,9.17091178894043,3.0861508846283,0.824229001998901,9.17091178894043,3.10386323928833,0.712402522563934,9.17091178894043,3.15526580810547,0.611523270606995,9.17091178894043,3.23532676696777,0.53145432472229,9.17091178894043,3.33620977401733,0.480051517486572,9.17091178894043,3.44804048538208,0.462344348430634,9.17091178894043,3.55987048149109,0.480051517486572,9.17091178894043,3.66075325012207,0.53145432472229,9.17091178894043,3.74081492424011,0.611523270606995,9.17091178894043,3.79221701622009,0.712402522563934,9.17091178894043,3.80992913246155,0.824229001998901,9.17091178894043,3.44804048538208,0.824229001998901,9.21660232543945 + } + PolygonVertexIndex: *700 { + a: 0,1,21,-21,1,2,22,-22,2,3,23,-23,3,4,24,-24,4,5,25,-25,5,6,26,-26,6,7,27,-27,7,8,28,-28,8,9,29,-29,9,10,30,-30,10,11,31,-31,11,12,32,-32,12,13,33,-33,13,14,34,-34,14,15,35,-35,15,16,36,-36,16,17,37,-37,17,18,38,-38,18,19,39,-39,19,0,20,-40,20,21,41,-41,21,22,42,-42,22,23,43,-43,23,24,44,-44,24,25,45,-45,25,26,46,-46,26,27,47,-47,27,28,48,-48,28,29,49,-49,29,30,50,-50,30,31,51,-51,31,32,52,-52,32,33,53,-53,33,34,54,-54,34,35,55,-55,35,36,56,-56,36,37,57,-57,37,38,58,-58,38,39,59,-59,39,20,40,-60,40,41,61,-61,41,42,62,-62,42,43,63,-63,43,44,64,-64,44,45,65,-65,45,46,66,-66,46,47,67,-67,47,48,68,-68,48,49,69,-69,49,50,70,-70,50,51,71,-71,51,52,72,-72,52,53,73,-73,53,54,74,-74,54,55,75,-75,55,56,76,-76,56,57,77,-77,57,58,78,-78,58,59,79,-79,59,40,60,-80,60,61,81,-81,61,62,82,-82,62,63,83,-83,63,64,84,-84,64,65,85,-85,65,66,86,-86,66,67,87,-87,67,68,88,-88,68,69,89,-89,69,70,90,-90,70,71,91,-91,71,72,92,-92,72,73,93,-93,73,74,94,-94,74,75,95,-95,75,76,96,-96,76,77,97,-97,77,78,98,-98,78,79,99,-99,79,60,80,-100,80,81,101,-101,81,82,102,-102,82,83,103,-103,83,84,104,-104,84,85,105,-105,85,86,106,-106,86,87,107,-107,87,88,108,-108,88,89,109,-109,89,90,110,-110,90,91,111,-111,91,92,112,-112,92,93,113,-113,93,94,114,-114,94,95,115,-115,95,96,116,-116,96,97,117,-117,97,98,118,-118,98,99,119,-119,99,80,100,-120,100,101,121,-121,101,102,122,-122,102,103,123,-123,103,104,124,-124,104,105,125,-125,105,106,126,-126,106,107,127,-127,107,108,128,-128,108,109,129,-129,109,110,130,-130,110,111,131,-131,111,112,132,-132,112,113,133,-133,113,114,134,-134,114,115,135,-135,115,116,136,-136,116,117,137,-137,117,118,138,-138,118,119,139,-139,119,100,120,-140,120,121,141,-141,121,122,142,-142,122,123,143,-143,123,124,144,-144,124,125,145,-145,125,126,146,-146,126,127,147,-147,127,128,148,-148,128,129,149,-149,129,130,150,-150,130,131,151,-151,131,132,152,-152,132,133,153,-153,133,134,154,-154,134,135,155,-155,135,136,156,-156,136,137,157,-157,137,138,158,-158,138,139,159,-159,139,120,140,-160,140,141,161,-161,141,142,162,-162, +142,143,163,-163,143,144,164,-164,144,145,165,-165,145,146,166,-166,146,147,167,-167,147,148,168,-168,148,149,169,-169,149,150,170,-170,150,151,171,-171,151,152,172,-172,152,153,173,-173,153,154,174,-174,154,155,175,-175,155,156,176,-176,156,157,177,-177,157,158,178,-178,158,159,179,-179,159,140,160,-180,160,161,-181,161,162,-181,162,163,-181,163,164,-181,164,165,-181,165,166,-181,166,167,-181,167,168,-181,168,169,-181,169,170,-181,170,171,-181,171,172,-181,172,173,-181,173,174,-181,174,175,-181,175,176,-181,176,177,-181,177,178,-181,178,179,-181,179,160,-181 + } + Edges: *360 { + a: 0,1,2,3,4,5,6,8,9,10,12,13,14,16,17,18,20,21,22,24,25,26,28,29,30,32,33,34,36,37,38,40,41,42,44,45,46,48,49,50,52,53,54,56,57,58,60,61,62,64,65,66,68,69,70,72,73,74,76,78,81,82,83,85,86,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,118,121,122,125,126,129,130,133,134,137,138,141,142,145,146,149,150,153,154,158,161,162,163,165,166,169,170,173,174,177,178,181,182,185,186,189,190,193,194,197,198,201,202,205,206,209,210,213,214,217,218,221,222,225,226,229,230,233,234,238,241,242,243,245,246,249,250,253,254,257,258,261,262,265,266,269,270,273,274,277,278,281,282,285,286,289,290,293,294,297,298,301,302,305,306,309,310,313,314,318,321,322,323,325,326,329,330,333,334,337,338,341,342,345,346,349,350,353,354,357,358,361,362,365,366,369,370,373,374,377,378,381,382,385,386,389,390,393,394,398,401,402,403,405,406,409,410,413,414,417,418,421,422,425,426,429,430,433,434,437,438,441,442,445,446,449,450,453,454,457,458,461,462,465,466,469,470,473,474,478,481,482,483,485,486,489,490,493,494,497,498,501,502,505,506,509,510,513,514,517,518,521,522,525,526,529,530,533,534,537,538,541,542,545,546,549,550,553,554,558,561,562,563,565,566,569,570,573,574,577,578,581,582,585,586,589,590,593,594,597,598,601,602,605,606,609,610,613,614,617,618,621,622,625,626,629,630,633,634,638,641,642,644,647,650,653,656,659,662,665,668,671,674,677,680,683,686,689,692,695 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: *543 { + a: 0.946585834026337,0.307561695575714,0.0968568623065948,0.80521160364151,0.585023880004883,0.0968571305274963,0.585020005702972,0.805214643478394,0.0968552455306053,0.307567179203033,0.946584105491638,0.0968551188707352,-5.52816548093915e-09,0.995298266410828,0.0968575179576874,-0.307566672563553,0.946584105491638,0.0968570038676262,-0.585019767284393,0.805214643478394,0.0968569368124008,-0.805212020874023,0.585023283958435,0.0968573167920113,-0.946585595607758,0.307562351226807,0.096857100725174,-0.995298266410828,-1.57552278778894e-07,0.0968573242425919,-0.946584522724152,-0.307565331459045,0.0968570858240128,-0.805212736129761,-0.585022330284119,0.0968572571873665,-0.585022330284119,-0.805212676525116,0.0968585982918739,-0.307564616203308,-0.946584641933441,0.0968587026000023,-2.48767015875728e-08,-0.995298326015472,0.0968577787280083,0.307564616203308,-0.946584641933441,0.0968587920069695,0.585022330284119,-0.805212676525116,0.096858449280262,0.805212914943695,-0.585022270679474,0.0968567803502083,0.946584761142731,-0.307565122842789,0.0968565493822098,0.995298326015472,-9.50842149904929e-07,0.0968568176031113,0.932681202888489,0.30304491519928,0.195626199245453,0.79338538646698,0.576429605484009,0.195624053478241,0.576429128646851,0.793386518955231,0.195620492100716,0.303047776222229,0.932681143283844,0.195621937513351,-6.44935056470786e-08,0.980678975582123,0.195624396204948,-0.303045928478241,0.932681798934937,0.195622026920319,-0.576429307460785,0.793385982513428,0.195622310042381,-0.793384790420532,0.576429486274719,0.195626556873322,-0.932680726051331,0.303045958280563,0.195626944303513,-0.980678677558899,-1.31918994838998e-07,0.195625588297844,-0.932680904865265,-0.303047120571136,0.195624589920044,-0.793385207653046,-0.576429426670074,0.195624783635139,-0.576429426670074,-0.793384552001953,0.19562703371048,-0.303048074245453,-0.93267959356308,0.195628836750984,-1.3191912273669e-07,-0.980678081512451,0.195628821849823,0.303047150373459,-0.932680130004883,0.195628061890602,0.576430439949036,-0.79338413476944,0.195626094937325, +0.793385565280914,-0.576429069042206,0.195624649524689,0.932680904865265,-0.30304691195488,0.195624709129333,0.980678737163544,-1.00258421298349e-06,0.195625752210617,0.907803356647491,0.294958770275116,0.298148274421692,0.772223234176636,0.561052203178406,0.298147320747375,0.561052024364471,0.772223472595215,0.298146694898605,0.294959723949432,0.907803297042847,0.298147559165955,6.47930491481929e-08,0.954520225524902,0.298146486282349,-0.294960349798203,0.907803416252136,0.298146545886993,-0.561054527759552,0.772221982479095,0.298145949840546,-0.772225260734558,0.56104964017868,0.298146963119507,-0.907803118228912,0.29496031999588,0.298147648572922,-0.954520225524902,-2.91568049703983e-08,0.298146486282349,-0.907802820205688,-0.294963389635086,0.29814538359642,-0.772221684455872,-0.561055779457092,0.298144370317459,-0.5610511302948,-0.772225081920624,0.298144727945328,-0.294962406158447,-0.90780234336853,0.298147916793823,-2.20295135022752e-07,-0.954518914222717,0.298150420188904,0.294963806867599,-0.907801866531372,0.298147737979889,0.561052978038788,-0.77222353219986,0.298145115375519,0.772221803665161,-0.56105500459671,0.298145622014999,0.907802224159241,-0.294964164495468,0.298146575689316,0.954519927501678,-1.34769152282388e-06,0.298147082328796,0.869140982627869,0.28239718079567,0.406012088060379,0.739335834980011,0.537154257297516,0.406014651060104,0.537155270576477,0.739334285259247,0.406016200780869,0.282398760318756,0.869138956069946,0.406015396118164,1.94592232105606e-07,0.913866400718689,0.406015038490295,-0.282398402690887,0.869139134883881,0.406015485525131,-0.537156581878662,0.739334225654602,0.406014412641525,-0.739336490631104,0.53715592622757,0.406011253595352,-0.869141399860382,0.282397836446762,0.406010806560516,-0.913867950439453,2.80662035834212e-08,0.406011551618576,-0.869139969348907,-0.282400369644165,0.406012058258057,-0.739335000514984,-0.537157297134399,0.406012088060379,-0.537155568599701,-0.739336788654327,0.406011044979095,-0.282399475574493,-0.869141280651093,0.406010031700134,-1.49686201211807e-08,-0.913868963718414,0.40600922703743, +0.282398968935013,-0.869140923023224,0.40601122379303,0.537156939506531,-0.739335238933563,0.406012147665024,0.739334523677826,-0.537157714366913,0.406012415885925,0.869139432907104,-0.282402068376541,0.4060118496418,0.913868129253387,-9.67348228186893e-07,0.406011193990707,0.81230640411377,0.263933122158051,0.520094096660614,0.690989434719086,0.502030551433563,0.52009528875351,0.502031564712524,0.690987944602966,0.520096063613892,0.263934135437012,0.812306106090546,0.52009391784668,0,0.854109346866608,0.520093679428101,-0.263934016227722,0.81230628490448,0.52009379863739,-0.502030789852142,0.69098836183548,0.520096302032471,-0.690988421440125,0.502030372619629,0.520096659660339,-0.812305927276611,0.263932406902313,0.520095109939575,-0.854108333587646,1.27386621661444e-16,0.52009528875351,-0.812305748462677,-0.263931840658188,0.520095646381378,-0.690987884998322,-0.502032995223999,0.520094931125641,-0.502031207084656,-0.690990388393402,0.520093262195587,-0.263933449983597,-0.812307238578796,0.520092487335205,6.56266308851627e-07,-0.854110181331635,0.520092308521271,0.263934075832367,-0.812307238578796,0.520092070102692,0.502031803131104,-0.690990924835205,0.520091891288757,0.690989375114441,-0.502033352851868,0.520092666149139,0.812306046485901,-0.26393324136734,0.520094335079193,0.85410875082016,-4.54163426866216e-07,0.520094394683838,0.731152355670929,0.237566396594048,0.639514207839966,0.621956706047058,0.451876580715179,0.639513432979584,0.451880097389221,0.621954143047333,0.639513373374939,0.237566515803337,0.731154680252075,0.63951164484024,2.92101254295574e-09,0.76878148317337,0.63951164484024,-0.237566277384758,0.731154441833496,0.639511942863464,-0.451879650354385,0.621953725814819,0.639514207839966,-0.621955513954163,0.451876759529114,0.639514446258545,-0.731152355670929,0.237566292285919,0.639514327049255,-0.768779933452606,-2.19074767215943e-08,0.639513492584229,-0.731153845787048,-0.237565606832504,0.639512836933136,-0.62195497751236,-0.451878190040588,0.639514029026031,-0.451874554157257,-0.621956408023834,0.639515280723572, +-0.237566396594048,-0.731150567531586,0.639516294002533,9.05510120219333e-08,-0.768777966499329,0.63951575756073,0.237566262483597,-0.73115074634552,0.639516174793243,0.451875865459442,-0.621955752372742,0.639514863491058,0.6219562292099,-0.451876938343048,0.639513611793518,0.731153607368469,-0.237565964460373,0.63951301574707,0.768779397010803,-3.70966660057093e-07,0.639514088630676,0.618456065654755,0.200946286320686,0.759692490100861,0.526091277599335,0.382224977016449,0.759692132472992,0.382231265306473,0.526086568832397,0.759692251682281,0.2009506970644,0.618454158306122,0.759692907333374,1.01257890960937e-09,0.650283455848694,0.759691774845123,-0.200949907302856,0.618453979492188,0.759693384170532,-0.382229059934616,0.526086986064911,0.759693086147308,-0.526090204715729,0.382225424051285,0.759692490100861,-0.618455529212952,0.200946062803268,0.759693026542664,-0.650282144546509,1.01257724427484e-09,0.759692788124084,-0.618454217910767,-0.200949013233185,0.759693384170532,-0.526086628437042,-0.382227838039398,0.75969386100769,-0.382224887609482,-0.526091635227203,0.759692013263702,-0.20095083117485,-0.618455946445465,0.759691417217255,-8.63730178934929e-07,-0.650283575057983,0.759691596031189,0.200948759913445,-0.61845600605011,0.759692013263702,0.38222336769104,-0.526090800762177,0.759693324565887,0.526087701320648,-0.382226139307022,0.75969409942627,0.61845451593399,-0.200948774814606,0.759693205356598,0.650282621383667,-1.47532728078659e-06,0.759692490100861,0.46950551867485,0.152548640966415,0.869651436805725,0.399382591247559,0.290172070264816,0.86965149641037,0.290168792009354,0.399380445480347,0.869653701782227,0.15255731344223,0.469500154256821,0.86965274810791,1.26180408344112e-08,0.493663489818573,0.869653046131134,-0.15255668759346,0.469500035047531,0.869652986526489,-0.290170013904572,0.399381577968597,0.869652628898621,-0.399385035037994,0.290171593427658,0.869650542736053,-0.469504237174988,0.152548342943192,0.869652092456818,-0.493664622306824,-5.67817934893355e-08,0.869652330875397,-0.469501912593842,-0.152550026774406,0.869653105735779, +-0.399383395910263,-0.290166676044464,0.869652986526489,-0.290169805288315,-0.399385392665863,0.869650959968567,-0.15255069732666,-0.469505697488785,0.869650900363922,7.09769309992225e-09,-0.493666470050812,0.869651317596436,0.152549505233765,-0.469505935907364,0.869650959968567,0.29016900062561,-0.39938560128212,0.869651138782501,0.399384707212448,-0.290165901184082,0.869652688503265,0.46950176358223,-0.152549609541893,0.869653224945068,0.493664473295212,-4.42347572970903e-06,0.869652509689331,0.296473741531372,0.0963291004300117,0.950170636177063,0.252193808555603,0.183235913515091,0.950169920921326,0.183229193091393,0.252197831869125,0.95017021894455,0.0963359251618385,0.296469688415527,0.950171172618866,1.85327593271722e-08,0.311731696128845,0.950170278549194,-0.0963359028100967,0.296469748020172,0.950171113014221,-0.18323190510273,0.252197653055191,0.950169682502747,-0.252198219299316,0.183234259486198,0.950169086456299,-0.296476989984512,0.0963293835520744,0.950169563293457,-0.31173250079155,-1.85135135666314e-07,0.950169920921326,-0.296476036310196,-0.0963337644934654,0.950169384479523,-0.252199441194534,-0.183228343725204,0.950169920921326,-0.183234229683876,-0.252195328474045,0.950169920921326,-0.0963263064622879,-0.296479374170303,0.950169146060944,1.69394400728606e-08,-0.311733394861221,0.950169622898102,0.0963264852762222,-0.296479284763336,0.950169086456299,0.183233708143234,-0.252195358276367,0.950170040130615,0.252198874950409,-0.183228239417076,0.95017009973526,0.296474993228912,-0.0963335409760475,0.950169682502747,0.31173038482666,-3.4822935504053e-06,0.950170695781708,-4.87677311866719e-07,-6.28609598152252e-07,1 + } + NormalsW: *181 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1400 { + a: 0.97025203704834,0.821563959121704,0.937357485294342,0.88612300157547,0.930409014225006,0.881074488162994,0.962083458900452,0.818910002708435,0.937357485294342,0.88612300157547,0.886123538017273,0.937357485294342,0.881075024604797,0.930409014225006,0.930409014225006,0.881074488162994,0.886123538017273,0.937357485294342,0.821564495563507,0.97025203704834,0.818910002708435,0.962082982063293,0.881075024604797,0.930409014225006,0.821564495563507,0.97025203704834,0.75,0.981586456298828,0.75,0.972997486591339,0.818910002708435,0.962082982063293,0.75,0.981586456298828,0.678435981273651,0.97025203704834,0.681089997291565,0.962082982063293,0.75,0.972997486591339,0.678435981273651,0.97025203704834,0.613876461982727,0.937357485294342,0.618925511837006,0.930409014225006,0.681089997291565,0.962082982063293,0.613876461982727,0.937357485294342,0.562642514705658,0.88612300157547,0.569590985774994,0.881074488162994,0.618925511837006,0.930409014225006,0.562642514705658,0.88612300157547,0.52974796295166,0.821563959121704,0.537916541099548,0.818910002708435,0.569590985774994,0.881074488162994,0.52974796295166,0.821563959121704,0.518413543701172,0.75,0.527002513408661,0.75,0.537916541099548,0.818910002708435,0.518413543701172,0.75,0.52974796295166,0.678435504436493,0.537916541099548,0.681089997291565,0.527002513408661,0.75,0.52974796295166,0.678435504436493,0.562642514705658,0.613876461982727,0.569590985774994,0.618924975395203,0.537916541099548,0.681089997291565,0.562642514705658,0.613876461982727,0.613876461982727,0.562642514705658,0.618925511837006,0.569590985774994,0.569590985774994,0.618924975395203,0.613876461982727,0.562642514705658,0.678435981273651,0.52974796295166,0.681089997291565,0.537916541099548,0.618925511837006,0.569590985774994,0.678435981273651,0.52974796295166,0.75,0.518413007259369,0.75,0.527002513408661,0.681089997291565,0.537916541099548,0.75,0.518413007259369,0.821564495563507,0.52974796295166,0.818910002708435,0.537916541099548,0.75,0.527002513408661,0.821564495563507,0.52974796295166,0.886123538017273, +0.562642514705658,0.881074488162994,0.569590985774994,0.818910002708435,0.537916541099548,0.886123538017273,0.562642514705658,0.937357485294342,0.613876461982727,0.930409014225006,0.618924975395203,0.881074488162994,0.569590985774994,0.937357485294342,0.613876461982727,0.97025203704834,0.678435504436493,0.962083458900452,0.681089997291565,0.930409014225006,0.618924975395203,0.97025203704834,0.678435504436493,0.981586456298828,0.75,0.972997486591339,0.75,0.962083458900452,0.681089997291565,0.981586456298828,0.75,0.97025203704834,0.821563959121704,0.962083458900452,0.818910002708435,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.930409014225006,0.881074488162994,0.919018030166626,0.872798502445221,0.948692500591278,0.814558982849121,0.930409014225006,0.881074488162994,0.881075024604797,0.930409014225006,0.872798502445221,0.919017493724823,0.919018030166626,0.872798502445221,0.881075024604797,0.930409014225006,0.818910002708435,0.962082982063293,0.814558982849121,0.948692500591278,0.872798502445221,0.919017493724823,0.818910002708435,0.962082982063293,0.75,0.972997486591339,0.75,0.958917498588562,0.814558982849121,0.948692500591278,0.75,0.972997486591339,0.681089997291565,0.962082982063293,0.685441017150879,0.948692500591278,0.75,0.958917498588562,0.681089997291565,0.962082982063293,0.618925511837006,0.930409014225006,0.627201497554779,0.919017493724823,0.685441017150879,0.948692500591278,0.618925511837006,0.930409014225006,0.569590985774994,0.881074488162994,0.580982506275177,0.872798502445221,0.627201497554779,0.919017493724823,0.569590985774994,0.881074488162994,0.537916541099548,0.818910002708435,0.551307499408722,0.814558982849121,0.580982506275177,0.872798502445221,0.537916541099548,0.818910002708435,0.527002513408661,0.75,0.541082501411438,0.75,0.551307499408722,0.814558982849121,0.527002513408661,0.75,0.537916541099548,0.681089997291565,0.551307499408722,0.685441017150879,0.541082501411438,0.75,0.537916541099548,0.681089997291565,0.569590985774994,0.618924975395203,0.580982506275177,0.627201497554779, +0.551307499408722,0.685441017150879,0.569590985774994,0.618924975395203,0.618925511837006,0.569590985774994,0.627201497554779,0.580981969833374,0.580982506275177,0.627201497554779,0.618925511837006,0.569590985774994,0.681089997291565,0.537916541099548,0.685441017150879,0.551307499408722,0.627201497554779,0.580981969833374,0.681089997291565,0.537916541099548,0.75,0.527002513408661,0.75,0.541082501411438,0.685441017150879,0.551307499408722,0.75,0.527002513408661,0.818910002708435,0.537916541099548,0.814558982849121,0.551307499408722,0.75,0.541082501411438,0.818910002708435,0.537916541099548,0.881074488162994,0.569590985774994,0.872798502445221,0.580981969833374,0.814558982849121,0.551307499408722,0.881074488162994,0.569590985774994,0.930409014225006,0.618924975395203,0.919017493724823,0.627201497554779,0.872798502445221,0.580981969833374,0.930409014225006,0.618924975395203,0.962083458900452,0.681089997291565,0.948692500591278,0.685441017150879,0.919017493724823,0.627201497554779,0.962083458900452,0.681089997291565,0.972997486591339,0.75,0.958917498588562,0.75,0.948692500591278,0.685441017150879,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.948692500591278,0.814558982849121,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.919018030166626,0.872798502445221,0.903465032577515,0.861498475074768,0.930409014225006,0.808618485927582,0.919018030166626,0.872798502445221,0.872798502445221,0.919017493724823,0.861499011516571,0.903465032577515,0.903465032577515,0.861498475074768,0.872798502445221,0.919017493724823,0.814558982849121,0.948692500591278,0.808618485927582,0.930409014225006,0.861499011516571,0.903465032577515,0.814558982849121,0.948692500591278,0.75,0.958917498588562,0.75,0.939692974090576,0.808618485927582,0.930409014225006,0.75,0.958917498588562,0.685441017150879,0.948692500591278,0.691381514072418,0.930409014225006,0.75,0.939692974090576,0.685441017150879,0.948692500591278,0.627201497554779,0.919017493724823,0.638500988483429,0.903465032577515,0.691381514072418,0.930409014225006,0.627201497554779, +0.919017493724823,0.580982506275177,0.872798502445221,0.596534967422485,0.861498475074768,0.638500988483429,0.903465032577515,0.580982506275177,0.872798502445221,0.551307499408722,0.814558982849121,0.569590985774994,0.808618485927582,0.596534967422485,0.861498475074768,0.551307499408722,0.814558982849121,0.541082501411438,0.75,0.560307025909424,0.75,0.569590985774994,0.808618485927582,0.541082501411438,0.75,0.551307499408722,0.685441017150879,0.569590985774994,0.691381514072418,0.560307025909424,0.75,0.551307499408722,0.685441017150879,0.580982506275177,0.627201497554779,0.596534967422485,0.638500988483429,0.569590985774994,0.691381514072418,0.580982506275177,0.627201497554779,0.627201497554779,0.580981969833374,0.638500988483429,0.596534967422485,0.596534967422485,0.638500988483429,0.627201497554779,0.580981969833374,0.685441017150879,0.551307499408722,0.691381514072418,0.569590985774994,0.638500988483429,0.596534967422485,0.685441017150879,0.551307499408722,0.75,0.541082501411438,0.75,0.560307025909424,0.691381514072418,0.569590985774994,0.75,0.541082501411438,0.814558982849121,0.551307499408722,0.808618485927582,0.569590985774994,0.75,0.560307025909424,0.814558982849121,0.551307499408722,0.872798502445221,0.580981969833374,0.861499011516571,0.596534967422485,0.808618485927582,0.569590985774994,0.872798502445221,0.580981969833374,0.919017493724823,0.627201497554779,0.903465032577515,0.638500988483429,0.861499011516571,0.596534967422485,0.919017493724823,0.627201497554779,0.948692500591278,0.685441017150879,0.930409014225006,0.691381514072418,0.903465032577515,0.638500988483429,0.948692500591278,0.685441017150879,0.958917498588562,0.75,0.939692974090576,0.75,0.930409014225006,0.691381514072418,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.930409014225006,0.808618485927582,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.903465032577515,0.861498475074768,0.884133458137512,0.847453474998474,0.90768301486969,0.801234483718872,0.903465032577515,0.861498475074768,0.861499011516571,0.903465032577515, +0.847453474998474,0.884132981300354,0.884133458137512,0.847453474998474,0.861499011516571,0.903465032577515,0.808618485927582,0.930409014225006,0.801234483718872,0.90768301486969,0.847453474998474,0.884132981300354,0.808618485927582,0.930409014225006,0.75,0.939692974090576,0.75,0.915798008441925,0.801234483718872,0.90768301486969,0.75,0.939692974090576,0.691381514072418,0.930409014225006,0.698765516281128,0.90768301486969,0.75,0.915798008441925,0.691381514072418,0.930409014225006,0.638500988483429,0.903465032577515,0.652546525001526,0.884132981300354,0.698765516281128,0.90768301486969,0.638500988483429,0.903465032577515,0.596534967422485,0.861498475074768,0.615867018699646,0.847453474998474,0.652546525001526,0.884132981300354,0.596534967422485,0.861498475074768,0.569590985774994,0.808618485927582,0.59231698513031,0.801234006881714,0.615867018699646,0.847453474998474,0.569590985774994,0.808618485927582,0.560307025909424,0.75,0.584201991558075,0.75,0.59231698513031,0.801234006881714,0.560307025909424,0.75,0.569590985774994,0.691381514072418,0.59231698513031,0.698765516281128,0.584201991558075,0.75,0.569590985774994,0.691381514072418,0.596534967422485,0.638500988483429,0.615867018699646,0.652546525001526,0.59231698513031,0.698765516281128,0.596534967422485,0.638500988483429,0.638500988483429,0.596534967422485,0.652546525001526,0.615866482257843,0.615867018699646,0.652546525001526,0.638500988483429,0.596534967422485,0.691381514072418,0.569590985774994,0.698765516281128,0.59231698513031,0.652546525001526,0.615866482257843,0.691381514072418,0.569590985774994,0.75,0.560307025909424,0.75,0.584201991558075,0.698765516281128,0.59231698513031,0.75,0.560307025909424,0.808618485927582,0.569590985774994,0.801234483718872,0.59231698513031,0.75,0.584201991558075,0.808618485927582,0.569590985774994,0.861499011516571,0.596534967422485,0.847453474998474,0.615866482257843,0.801234483718872,0.59231698513031,0.861499011516571,0.596534967422485,0.903465032577515,0.638500988483429,0.884132981300354,0.652546525001526,0.847453474998474,0.615866482257843, +0.903465032577515,0.638500988483429,0.930409014225006,0.691381514072418,0.90768301486969,0.698765516281128,0.884132981300354,0.652546525001526,0.930409014225006,0.691381514072418,0.939692974090576,0.75,0.915798008441925,0.75,0.90768301486969,0.698765516281128,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.90768301486969,0.801234483718872,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.884133458137512,0.847453474998474,0.861499011516571,0.831008493900299,0.881075024604797,0.792588472366333,0.884133458137512,0.847453474998474,0.847453474998474,0.884132981300354,0.831008493900299,0.861498475074768,0.861499011516571,0.831008493900299,0.847453474998474,0.884132981300354,0.801234483718872,0.90768301486969,0.792588472366333,0.881074488162994,0.831008493900299,0.861498475074768,0.801234483718872,0.90768301486969,0.75,0.915798008441925,0.75,0.88782000541687,0.792588472366333,0.881074488162994,0.75,0.915798008441925,0.698765516281128,0.90768301486969,0.707411527633667,0.881074488162994,0.75,0.88782000541687,0.698765516281128,0.90768301486969,0.652546525001526,0.884132981300354,0.668991506099701,0.861498475074768,0.707411527633667,0.881074488162994,0.652546525001526,0.884132981300354,0.615867018699646,0.847453474998474,0.638500988483429,0.831008493900299,0.668991506099701,0.861498475074768,0.615867018699646,0.847453474998474,0.59231698513031,0.801234006881714,0.618925511837006,0.792588472366333,0.638500988483429,0.831008493900299,0.59231698513031,0.801234006881714,0.584201991558075,0.75,0.61217999458313,0.75,0.618925511837006,0.792588472366333,0.584201991558075,0.75,0.59231698513031,0.698765516281128,0.618925511837006,0.707410991191864,0.61217999458313,0.75,0.59231698513031,0.698765516281128,0.615867018699646,0.652546525001526,0.638500988483429,0.668991506099701,0.618925511837006,0.707410991191864,0.615867018699646,0.652546525001526,0.652546525001526,0.615866482257843,0.668991506099701,0.638500988483429,0.638500988483429,0.668991506099701,0.652546525001526,0.615866482257843,0.698765516281128,0.59231698513031, +0.707411527633667,0.618924975395203,0.668991506099701,0.638500988483429,0.698765516281128,0.59231698513031,0.75,0.584201991558075,0.75,0.61217999458313,0.707411527633667,0.618924975395203,0.75,0.584201991558075,0.801234483718872,0.59231698513031,0.792588472366333,0.618924975395203,0.75,0.61217999458313,0.801234483718872,0.59231698513031,0.847453474998474,0.615866482257843,0.831008493900299,0.638500988483429,0.792588472366333,0.618924975395203,0.847453474998474,0.615866482257843,0.884132981300354,0.652546525001526,0.861499011516571,0.668991506099701,0.831008493900299,0.638500988483429,0.884132981300354,0.652546525001526,0.90768301486969,0.698765516281128,0.881074488162994,0.707410991191864,0.861499011516571,0.668991506099701,0.90768301486969,0.698765516281128,0.915798008441925,0.75,0.88782000541687,0.75,0.881074488162994,0.707410991191864,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.881075024604797,0.792588472366333,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.861499011516571,0.831008493900299,0.836118996143341,0.81256902217865,0.851238965988159,0.782894492149353,0.861499011516571,0.831008493900299,0.831008493900299,0.861498475074768,0.81256902217865,0.836118996143341,0.836118996143341,0.81256902217865,0.831008493900299,0.861498475074768,0.792588472366333,0.881074488162994,0.782894492149353,0.851238489151001,0.81256902217865,0.836118996143341,0.792588472366333,0.881074488162994,0.75,0.88782000541687,0.75,0.856448531150818,0.782894492149353,0.851238489151001,0.75,0.88782000541687,0.707411527633667,0.881074488162994,0.717105507850647,0.851238489151001,0.75,0.856448531150818,0.707411527633667,0.881074488162994,0.668991506099701,0.861498475074768,0.68743097782135,0.836118996143341,0.717105507850647,0.851238489151001,0.668991506099701,0.861498475074768,0.638500988483429,0.831008493900299,0.663881003856659,0.81256902217865,0.68743097782135,0.836118996143341,0.638500988483429,0.831008493900299,0.618925511837006,0.792588472366333,0.648761034011841,0.782894492149353,0.663881003856659,0.81256902217865, +0.618925511837006,0.792588472366333,0.61217999458313,0.75,0.643551468849182,0.75,0.648761034011841,0.782894492149353,0.61217999458313,0.75,0.618925511837006,0.707410991191864,0.648761034011841,0.717105507850647,0.643551468849182,0.75,0.618925511837006,0.707410991191864,0.638500988483429,0.668991506099701,0.663881003856659,0.68743097782135,0.648761034011841,0.717105507850647,0.638500988483429,0.668991506099701,0.668991506099701,0.638500988483429,0.68743097782135,0.663881003856659,0.663881003856659,0.68743097782135,0.668991506099701,0.638500988483429,0.707411527633667,0.618924975395203,0.717105507850647,0.648761034011841,0.68743097782135,0.663881003856659,0.707411527633667,0.618924975395203,0.75,0.61217999458313,0.75,0.643550992012024,0.717105507850647,0.648761034011841,0.75,0.61217999458313,0.792588472366333,0.618924975395203,0.782894492149353,0.648761034011841,0.75,0.643550992012024,0.792588472366333,0.618924975395203,0.831008493900299,0.638500988483429,0.81256902217865,0.663881003856659,0.782894492149353,0.648761034011841,0.831008493900299,0.638500988483429,0.861499011516571,0.668991506099701,0.836118996143341,0.68743097782135,0.81256902217865,0.663881003856659,0.861499011516571,0.668991506099701,0.881074488162994,0.707410991191864,0.851238965988159,0.717105507850647,0.836118996143341,0.68743097782135,0.881074488162994,0.707410991191864,0.88782000541687,0.75,0.856449007987976,0.75,0.851238965988159,0.717105507850647,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.851238965988159,0.782894492149353,0.856449007987976,0.75,0.851238965988159,0.782894492149353,0.836118996143341,0.81256902217865,0.808618485927582,0.792588472366333,0.818910002708435,0.772390007972717,0.836118996143341,0.81256902217865,0.81256902217865,0.836118996143341,0.792588472366333,0.808618485927582,0.808618485927582,0.792588472366333,0.81256902217865,0.836118996143341,0.782894492149353,0.851238489151001,0.772390484809875,0.818910002708435,0.792588472366333,0.808618485927582,0.782894492149353,0.851238489151001,0.75,0.856448531150818,0.75, +0.822456002235413,0.772390484809875,0.818910002708435,0.75,0.856448531150818,0.717105507850647,0.851238489151001,0.727609992027283,0.818910002708435,0.75,0.822456002235413,0.717105507850647,0.851238489151001,0.68743097782135,0.836118996143341,0.707411527633667,0.808618485927582,0.727609992027283,0.818910002708435,0.68743097782135,0.836118996143341,0.663881003856659,0.81256902217865,0.691381514072418,0.792588472366333,0.707411527633667,0.808618485927582,0.663881003856659,0.81256902217865,0.648761034011841,0.782894492149353,0.681089997291565,0.772390007972717,0.691381514072418,0.792588472366333,0.648761034011841,0.782894492149353,0.643551468849182,0.75,0.677543520927429,0.75,0.681089997291565,0.772390007972717,0.643551468849182,0.75,0.648761034011841,0.717105507850647,0.681089997291565,0.727609515190125,0.677543520927429,0.75,0.648761034011841,0.717105507850647,0.663881003856659,0.68743097782135,0.691381514072418,0.707410991191864,0.681089997291565,0.727609515190125,0.663881003856659,0.68743097782135,0.68743097782135,0.663881003856659,0.707411527633667,0.691381514072418,0.691381514072418,0.707410991191864,0.68743097782135,0.663881003856659,0.717105507850647,0.648761034011841,0.727609992027283,0.681089997291565,0.707411527633667,0.691381514072418,0.717105507850647,0.648761034011841,0.75,0.643550992012024,0.75,0.677543520927429,0.727609992027283,0.681089997291565,0.75,0.643550992012024,0.782894492149353,0.648761034011841,0.772390484809875,0.681089997291565,0.75,0.677543520927429,0.782894492149353,0.648761034011841,0.81256902217865,0.663881003856659,0.792588472366333,0.691381514072418,0.772390484809875,0.681089997291565,0.81256902217865,0.663881003856659,0.836118996143341,0.68743097782135,0.808618485927582,0.707410991191864,0.792588472366333,0.691381514072418,0.836118996143341,0.68743097782135,0.851238965988159,0.717105507850647,0.818910002708435,0.727609515190125,0.808618485927582,0.707410991191864,0.851238965988159,0.717105507850647,0.856449007987976,0.75,0.822456479072571,0.75,0.818910002708435,0.727609515190125,0.856449007987976, +0.75,0.851238965988159,0.782894492149353,0.818910002708435,0.772390007972717,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.808618485927582,0.792588472366333,0.779674530029297,0.771559476852417,0.784884512424469,0.761334538459778,0.808618485927582,0.792588472366333,0.792588472366333,0.808618485927582,0.77156001329422,0.779674530029297,0.779674530029297,0.771559476852417,0.792588472366333,0.808618485927582,0.772390484809875,0.818910002708435,0.761334538459778,0.784884512424469,0.77156001329422,0.779674530029297,0.772390484809875,0.818910002708435,0.75,0.822456002235413,0.75,0.78667950630188,0.761334538459778,0.784884512424469,0.75,0.822456002235413,0.727609992027283,0.818910002708435,0.738665521144867,0.784884512424469,0.75,0.78667950630188,0.727609992027283,0.818910002708435,0.707411527633667,0.808618485927582,0.72843998670578,0.779674530029297,0.738665521144867,0.784884512424469,0.707411527633667,0.808618485927582,0.691381514072418,0.792588472366333,0.720325469970703,0.771559476852417,0.72843998670578,0.779674530029297,0.691381514072418,0.792588472366333,0.681089997291565,0.772390007972717,0.715115487575531,0.761334538459778,0.720325469970703,0.771559476852417,0.681089997291565,0.772390007972717,0.677543520927429,0.75,0.71332049369812,0.75,0.715115487575531,0.761334538459778,0.677543520927429,0.75,0.681089997291565,0.727609515190125,0.715115487575531,0.738665521144867,0.71332049369812,0.75,0.681089997291565,0.727609515190125,0.691381514072418,0.707410991191864,0.720325469970703,0.72843998670578,0.715115487575531,0.738665521144867,0.691381514072418,0.707410991191864,0.707411527633667,0.691381514072418,0.72843998670578,0.720325469970703,0.720325469970703,0.72843998670578,0.707411527633667,0.691381514072418,0.727609992027283,0.681089997291565,0.738665521144867,0.715115487575531,0.72843998670578,0.720325469970703,0.727609992027283,0.681089997291565,0.75,0.677543520927429,0.75,0.713320016860962,0.738665521144867,0.715115487575531,0.75,0.677543520927429,0.772390484809875,0.681089997291565,0.761334538459778, +0.715115487575531,0.75,0.713320016860962,0.772390484809875,0.681089997291565,0.792588472366333,0.691381514072418,0.77156001329422,0.720325469970703,0.761334538459778,0.715115487575531,0.792588472366333,0.691381514072418,0.808618485927582,0.707410991191864,0.779674530029297,0.72843998670578,0.77156001329422,0.720325469970703,0.808618485927582,0.707410991191864,0.818910002708435,0.727609515190125,0.784884512424469,0.738665521144867,0.779674530029297,0.72843998670578,0.818910002708435,0.727609515190125,0.822456479072571,0.75,0.78667950630188,0.75,0.784884512424469,0.738665521144867,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.784884512424469,0.761334538459778,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.779674530029297,0.771559476852417,0.75,0.75,0.779674530029297,0.771559476852417,0.77156001329422,0.779674530029297,0.75,0.75,0.77156001329422,0.779674530029297,0.761334538459778,0.784884512424469,0.75,0.75,0.761334538459778,0.784884512424469,0.75,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.738665521144867,0.784884512424469,0.75,0.75,0.738665521144867,0.784884512424469,0.72843998670578,0.779674530029297,0.75,0.75,0.72843998670578,0.779674530029297,0.720325469970703,0.771559476852417,0.75,0.75,0.720325469970703,0.771559476852417,0.715115487575531,0.761334538459778,0.75,0.75,0.715115487575531,0.761334538459778,0.71332049369812,0.75,0.75,0.75,0.71332049369812,0.75,0.715115487575531,0.738665521144867,0.75,0.75,0.715115487575531,0.738665521144867,0.720325469970703,0.72843998670578,0.75,0.75,0.720325469970703,0.72843998670578,0.72843998670578,0.720325469970703,0.75,0.75,0.72843998670578,0.720325469970703,0.738665521144867,0.715115487575531,0.75,0.75,0.738665521144867,0.715115487575531,0.75,0.713320016860962,0.75,0.75,0.75,0.713320016860962,0.761334538459778,0.715115487575531,0.75,0.75,0.761334538459778,0.715115487575531,0.77156001329422,0.720325469970703,0.75,0.75,0.77156001329422,0.720325469970703,0.779674530029297,0.72843998670578,0.75,0.75,0.779674530029297,0.72843998670578,0.784884512424469, +0.738665521144867,0.75,0.75,0.784884512424469,0.738665521144867,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.75,0.75 + } + UVIndex: *700 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { + a: 0 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Geometry: 2807092192528, "Geometry::", "Mesh" { + Vertices: *543 { + a: -3.94270277023315,0.984960973262787,6.30861520767212,-3.86882734298706,1.12995374202728,6.30861520767212,-3.75375819206238,1.24502003192902,6.30861520767212,-3.60876607894897,1.31889688968658,6.30861520767212,-3.44804000854492,1.34435558319092,6.30861520767212,-3.28731393814087,1.31889688968658,6.30861520767212,-3.14232063293457,1.24502003192902,6.30861520767212,-3.0272536277771,1.12995374202728,6.30861520767212,-2.95337796211243,0.984960973262787,6.30861520767212,-2.92791962623596,0.824233412742615,6.30861377716064,-2.95337796211243,0.663508296012878,6.30861377716064,-3.0272536277771,0.518515288829803,6.30861377716064,-3.14232063293457,0.40344712138176,6.30861330032349,-3.28731393814087,0.329570770263672,6.30861330032349,-3.44804000854492,0.304113954305649,6.30861330032349,-3.60876607894897,0.329570770263672,6.30861330032349,-3.75375819206238,0.40344712138176,6.30861330032349,-3.86882638931274,0.518515288829803,6.30861377716064,-3.942702293396,0.663508296012878,6.30861377716064,-3.9681601524353,0.824233412742615,6.30861377716064,-4.23847150802612,1.08106231689453,6.66223573684692,-4.12042188644409,1.31274831295013,6.66223669052124,-3.93655300140381,1.49661481380463,6.6622371673584,-3.70486879348755,1.61466646194458,6.6622371673584,-3.44804048538208,1.65534234046936,6.6622371673584,-3.19121336936951,1.61466646194458,6.6622371673584,-2.95952701568604,1.49661481380463,6.6622371673584,-2.77565860748291,1.31274831295013,6.66223669052124,-2.6576099395752,1.08106231689453,6.66223573684692,-2.61692953109741,0.824232459068298,6.66223573684692,-2.65760946273804,0.567407190799713,6.66223573684692,-2.77565860748291,0.335720062255859,6.66223573684692,-2.95952701568604,0.151854574680328,6.66223573684692,-3.19121336936951,0.0338031575083733,6.66223573684692,-3.44804048538208,-0.00687737017869949,6.66223573684692,-3.70486664772034,0.0338031575083733,6.66223573684692,-3.93655252456665,0.151854574680328,6.66223573684692,-4.12042188644409,0.335720062255859,6.66223573684692,-4.23847055435181,0.567407190799713,6.66223573684692, +-4.27915048599243,0.824232459068298,6.66223573684692,-4.5612735748291,1.18594372272491,7.19025087356567,-4.39501333236694,1.51225435733795,7.19025135040283,-4.13605737686157,1.77120959758759,7.19025230407715,-3.80975151062012,1.93747043609619,7.19025230407715,-3.44804000854492,1.99475741386414,7.19025230407715,-3.08632850646973,1.93747043609619,7.19025230407715,-2.76002335548401,1.77120959758759,7.19025230407715,-2.50106716156006,1.51224780082703,7.19025135040283,-2.33480715751648,1.18594372272491,7.19025087356567,-2.27751708030701,0.82423198223114,7.19025087356567,-2.33480715751648,0.462520331144333,7.19025087356567,-2.5010678768158,0.13621611893177,7.19025087356567,-2.76002430915833,-0.12273907661438,7.19025087356567,-3.08632898330688,-0.28899958729744,7.19024991989136,-3.44804000854492,-0.346286863088608,7.19024991989136,-3.80975556373596,-0.28899958729744,7.19024991989136,-4.13605690002441,-0.12273907661438,7.19025087356567,-4.39501237869263,0.13621611893177,7.19025087356567,-4.56127309799194,0.462520360946655,7.19025087356567,-4.6185622215271,0.82423198223114,7.19025087356567,-4.69135093688965,1.22820687294006,7.68679094314575,-4.50566387176514,1.59264314174652,7.68679094314575,-4.21644878387451,1.88186001777649,7.68679094314575,-3.85201668739319,2.06754326820374,7.68679094314575,-3.44804000854492,2.13152956962585,7.68679094314575,-3.04406380653381,2.06754326820374,7.68679094314575,-2.67963171005249,1.88186013698578,7.68679094314575,-2.39041447639465,1.59264314174652,7.68679094314575,-2.20472931861877,1.22820699214935,7.68679094314575,-2.1407458782196,0.824231028556824,7.68679094314575,-2.20472931861877,0.420255422592163,7.68679094314575,-2.39041447639465,0.0558271631598473,7.68679094314575,-2.67963171005249,-0.233390092849731,7.68679094314575,-3.04406428337097,-0.419072926044464,7.68679094314575,-3.44804000854492,-0.483059585094452,7.68679094314575,-3.85201668739319,-0.419072926044464,7.68679094314575,-4.2164478302002,-0.233390092849731,7.68679094314575,-4.50566291809082,0.0558271296322346,7.68679094314575,-4.69135093688965,0.420255422592163,7.68679094314575, +-4.7553334236145,0.824231147766113,7.68679094314575,-4.75599479675293,1.23296236991882,8.12961673736572,-4.56065225601196,1.60167920589447,8.12961673736572,-4.25640106201172,1.89430201053619,8.12961673736572,-3.8730206489563,2.08216762542725,8.12961673736572,-3.44804048538208,2.14691019058228,8.12961673736572,-3.02306008338928,2.08216762542725,8.12961673736572,-2.63968062400818,1.89430201053619,8.12961673736572,-2.33542823791504,1.60167920589447,8.12961673736572,-2.14008665084839,1.23296236991882,8.12961673736572,-2.07277727127075,0.824230432510376,8.12961673736572,-2.14008665084839,0.415507793426514,8.12961673736572,-2.33542823791504,0.0467815771698952,8.12961673736572,-2.63968062400818,-0.245831966400146,8.12961673736572,-3.02306008338928,-0.433706909418106,8.12961673736572,-3.44804048538208,-0.498439908027649,8.12961673736572,-3.87301993370056,-0.433706909418106,8.12961673736572,-4.2564001083374,-0.245831966400146,8.12961673736572,-4.5606517791748,0.046781562268734,8.12961673736572,-4.75599479675293,0.415507793426514,8.12961673736572,-4.82330417633057,0.824230432510376,8.12961673736572,-4.66095542907715,1.21833789348602,8.50782489776611,-4.47980880737305,1.57385313510895,8.50782489776611,-4.1976637840271,1.85600197315216,8.50782489776611,-3.84214043617249,2.0371515750885,8.50782489776611,-3.44804048538208,2.09956884384155,8.50782489776611,-3.05394053459167,2.0371515750885,8.50782489776611,-2.6984167098999,1.85600197315216,8.50782489776611,-2.41627287864685,1.57385313510895,8.50782489776611,-2.23512578010559,1.21833789348602,8.50782489776611,-2.17270612716675,0.824229538440704,8.50782489776611,-2.23512578010559,0.430132180452347,8.50782489776611,-2.41627287864685,0.0746059566736221,8.50782489776611,-2.69841742515564,-0.207532078027725,8.50782489776611,-3.05394053459167,-0.388681590557098,8.50782489776611,-3.44804048538208,-0.451098889112473,8.50782489776611,-3.84214043617249,-0.388681590557098,8.50782489776611,-4.19766902923584,-0.207532078027725,8.50782489776611,-4.47980785369873,0.0746059417724609,8.50782489776611, +-4.66095495223999,0.430132180452347,8.50782489776611,-4.72337436676025,0.824229538440704,8.50782489776611,-4.42636632919312,1.14210712909698,8.81210517883301,-4.28025388717651,1.42886829376221,8.81210517883301,-4.05268526077271,1.65644681453705,8.81210517883301,-3.76591753959656,1.80256164073944,8.81210517883301,-3.44804048538208,1.8529087305069,8.81210517883301,-3.13016295433044,1.80256164073944,8.81210517883301,-2.84340190887451,1.65644681453705,8.81210517883301,-2.61582684516907,1.42886829376221,8.81210517883301,-2.46971487998962,1.14210712909698,8.81210517883301,-2.41936850547791,0.82422924041748,8.81210517883301,-2.46971487998962,0.50635153055191,8.81210517883301,-2.61582684516907,0.219590350985527,8.81210517883301,-2.84340190887451,-0.00797693431377411,8.81210517883301,-3.13016295433044,-0.154091775417328,8.81210517883301,-3.44804048538208,-0.204438805580139,8.81210517883301,-3.76591753959656,-0.154091775417328,8.81210517883301,-4.05267906188965,-0.00797693431377411,8.81210517883301,-4.28025341033936,0.219590350985527,8.81210517883301,-4.42636585235596,0.50635153055191,8.81210517883301,-4.47671175003052,0.82422924041748,8.81210517883301,-4.12684679031372,1.04478597640991,9.03496265411377,-4.02546310424805,1.24375951290131,9.03496265411377,-3.86756205558777,1.40165042877197,9.03496265411377,-3.66859579086304,1.50303769111633,9.03496265411377,-3.44804048538208,1.53796970844269,9.03496265411377,-3.22748422622681,1.50303769111633,9.03496265411377,-3.02851867675781,1.40165042877197,9.03496265411377,-2.87061715126038,1.24375951290131,9.03496265411377,-2.76923942565918,1.04478597640991,9.03496265411377,-2.73430752754211,0.824229061603546,9.03496265411377,-2.76923942565918,0.603683769702911,9.03496265411377,-2.87061810493469,0.404710233211517,9.03496265411377,-3.02851867675781,0.24680757522583,9.03496265411377,-3.22748470306396,0.14543205499649,9.03496265411377,-3.44804048538208,0.110499948263168,9.03496265411377,-3.66859579086304,0.14543205499649,9.03496265411377,-3.86756205558777,0.24680757522583,9.03496265411377, +-4.02546310424805,0.404710233211517,9.03496265411377,-4.12684011459351,0.603683769702911,9.03496265411377,-4.16177320480347,0.824229061603546,9.03496265411377,-3.79221773147583,0.936067044734955,9.17091178894043,-3.74081492424011,1.03694641590118,9.17091178894043,-3.66075396537781,1.11700367927551,9.17091178894043,-3.55987048149109,1.16840648651123,9.17091178894043,-3.44804048538208,1.18612539768219,9.17091178894043,-3.33620977401733,1.16840648651123,9.17091178894043,-3.23532676696777,1.11700367927551,9.17091178894043,-3.15526580810547,1.03694641590118,9.17091178894043,-3.10386323928833,0.936067044734955,9.17091178894043,-3.0861508846283,0.824229001998901,9.17091178894043,-3.10386323928833,0.712402522563934,9.17091178894043,-3.15526580810547,0.611523270606995,9.17091178894043,-3.23532676696777,0.53145432472229,9.17091178894043,-3.33620977401733,0.480051517486572,9.17091178894043,-3.44804048538208,0.462344348430634,9.17091178894043,-3.55987048149109,0.480051517486572,9.17091178894043,-3.66075325012207,0.53145432472229,9.17091178894043,-3.74081492424011,0.611523270606995,9.17091178894043,-3.79221701622009,0.712402522563934,9.17091178894043,-3.80992913246155,0.824229001998901,9.17091178894043,-3.44804048538208,0.824229001998901,9.21660232543945 + } + PolygonVertexIndex: *700 { + a: 0,20,21,-2,1,21,22,-3,2,22,23,-4,3,23,24,-5,4,24,25,-6,5,25,26,-7,6,26,27,-8,7,27,28,-9,8,28,29,-10,9,29,30,-11,10,30,31,-12,11,31,32,-13,12,32,33,-14,13,33,34,-15,14,34,35,-16,15,35,36,-17,16,36,37,-18,17,37,38,-19,18,38,39,-20,19,39,20,-1,20,40,41,-22,21,41,42,-23,22,42,43,-24,23,43,44,-25,24,44,45,-26,25,45,46,-27,26,46,47,-28,27,47,48,-29,28,48,49,-30,29,49,50,-31,30,50,51,-32,31,51,52,-33,32,52,53,-34,33,53,54,-35,34,54,55,-36,35,55,56,-37,36,56,57,-38,37,57,58,-39,38,58,59,-40,39,59,40,-21,40,60,61,-42,41,61,62,-43,42,62,63,-44,43,63,64,-45,44,64,65,-46,45,65,66,-47,46,66,67,-48,47,67,68,-49,48,68,69,-50,49,69,70,-51,50,70,71,-52,51,71,72,-53,52,72,73,-54,53,73,74,-55,54,74,75,-56,55,75,76,-57,56,76,77,-58,57,77,78,-59,58,78,79,-60,59,79,60,-41,60,80,81,-62,61,81,82,-63,62,82,83,-64,63,83,84,-65,64,84,85,-66,65,85,86,-67,66,86,87,-68,67,87,88,-69,68,88,89,-70,69,89,90,-71,70,90,91,-72,71,91,92,-73,72,92,93,-74,73,93,94,-75,74,94,95,-76,75,95,96,-77,76,96,97,-78,77,97,98,-79,78,98,99,-80,79,99,80,-61,80,100,101,-82,81,101,102,-83,82,102,103,-84,83,103,104,-85,84,104,105,-86,85,105,106,-87,86,106,107,-88,87,107,108,-89,88,108,109,-90,89,109,110,-91,90,110,111,-92,91,111,112,-93,92,112,113,-94,93,113,114,-95,94,114,115,-96,95,115,116,-97,96,116,117,-98,97,117,118,-99,98,118,119,-100,99,119,100,-81,100,120,121,-102,101,121,122,-103,102,122,123,-104,103,123,124,-105,104,124,125,-106,105,125,126,-107,106,126,127,-108,107,127,128,-109,108,128,129,-110,109,129,130,-111,110,130,131,-112,111,131,132,-113,112,132,133,-114,113,133,134,-115,114,134,135,-116,115,135,136,-117,116,136,137,-118,117,137,138,-119,118,138,139,-120,119,139,120,-101,120,140,141,-122,121,141,142,-123,122,142,143,-124,123,143,144,-125,124,144,145,-126,125,145,146,-127,126,146,147,-128,127,147,148,-129,128,148,149,-130,129,149,150,-131,130,150,151,-132,131,151,152,-133,132,152,153,-134,133,153,154,-135,134,154,155,-136,135,155,156,-137,136,156,157,-138,137,157,158,-139,138,158,159,-140,139,159,140,-121,140,160,161,-142,141,161,162, +-143,142,162,163,-144,143,163,164,-145,144,164,165,-146,145,165,166,-147,146,166,167,-148,147,167,168,-149,148,168,169,-150,149,169,170,-151,150,170,171,-152,151,171,172,-153,152,172,173,-154,153,173,174,-155,154,174,175,-156,155,175,176,-157,156,176,177,-158,157,177,178,-159,158,178,179,-160,159,179,160,-141,160,180,-162,161,180,-163,162,180,-164,163,180,-165,164,180,-166,165,180,-167,166,180,-168,167,180,-169,168,180,-170,169,180,-171,170,180,-172,171,180,-173,172,180,-174,173,180,-175,174,180,-176,175,180,-177,176,180,-178,177,180,-179,178,180,-180,179,180,-161 + } + Edges: *360 { + a: 0,1,2,3,5,6,7,9,10,11,13,14,15,17,18,19,21,22,23,25,26,27,29,30,31,33,34,35,37,38,39,41,42,43,45,46,47,49,50,51,53,54,55,57,58,59,61,62,63,65,66,67,69,70,71,73,74,75,77,79,80,81,82,85,86,89,90,93,94,97,98,101,102,105,106,109,110,113,114,117,118,121,122,125,126,129,130,133,134,137,138,141,142,145,146,149,150,153,154,157,160,161,162,165,166,169,170,173,174,177,178,181,182,185,186,189,190,193,194,197,198,201,202,205,206,209,210,213,214,217,218,221,222,225,226,229,230,233,234,237,240,241,242,245,246,249,250,253,254,257,258,261,262,265,266,269,270,273,274,277,278,281,282,285,286,289,290,293,294,297,298,301,302,305,306,309,310,313,314,317,320,321,322,325,326,329,330,333,334,337,338,341,342,345,346,349,350,353,354,357,358,361,362,365,366,369,370,373,374,377,378,381,382,385,386,389,390,393,394,397,400,401,402,405,406,409,410,413,414,417,418,421,422,425,426,429,430,433,434,437,438,441,442,445,446,449,450,453,454,457,458,461,462,465,466,469,470,473,474,477,480,481,482,485,486,489,490,493,494,497,498,501,502,505,506,509,510,513,514,517,518,521,522,525,526,529,530,533,534,537,538,541,542,545,546,549,550,553,554,557,560,561,562,565,566,569,570,573,574,577,578,581,582,585,586,589,590,593,594,597,598,601,602,605,606,609,610,613,614,617,618,621,622,625,626,629,630,633,634,637,640,641,644,647,650,653,656,659,662,665,668,671,674,677,680,683,686,689,692,695 + } + GeometryVersion: 124 + LayerElementNormal: 0 { + Version: 102 + Name: "" + MappingInformationType: "ByVertice" + ReferenceInformationType: "Direct" + Normals: *543 { + a: -0.946585834026337,0.307561695575714,0.0968568623065948,-0.80521160364151,0.585023880004883,0.0968571305274963,-0.585020005702972,0.805214643478394,0.0968552455306053,-0.307567179203033,0.946584105491638,0.0968551188707352,5.52816548093915e-09,0.995298266410828,0.0968575179576874,0.307566672563553,0.946584105491638,0.0968570038676262,0.585019767284393,0.805214643478394,0.0968569368124008,0.805212020874023,0.585023283958435,0.0968573167920113,0.946585595607758,0.307562351226807,0.096857100725174,0.995298266410828,-1.57552278778894e-07,0.0968573242425919,0.946584522724152,-0.307565331459045,0.0968570858240128,0.805212736129761,-0.585022330284119,0.0968572571873665,0.585022330284119,-0.805212676525116,0.0968585982918739,0.307564616203308,-0.946584641933441,0.0968587026000023,2.48767015875728e-08,-0.995298326015472,0.0968577787280083,-0.307564616203308,-0.946584641933441,0.0968587920069695,-0.585022330284119,-0.805212676525116,0.096858449280262,-0.805212914943695,-0.585022270679474,0.0968567803502083,-0.946584761142731,-0.307565122842789,0.0968565493822098,-0.995298326015472,-9.50842149904929e-07,0.0968568176031113,-0.932681202888489,0.30304491519928,0.195626199245453,-0.79338538646698,0.576429605484009,0.195624053478241,-0.576429128646851,0.793386518955231,0.195620492100716,-0.303047776222229,0.932681143283844,0.195621937513351,6.44935056470786e-08,0.980678975582123,0.195624396204948,0.303045928478241,0.932681798934937,0.195622026920319,0.576429307460785,0.793385982513428,0.195622310042381,0.793384790420532,0.576429486274719,0.195626556873322,0.932680726051331,0.303045958280563,0.195626944303513,0.980678677558899,-1.31918994838998e-07,0.195625588297844,0.932680904865265,-0.303047120571136,0.195624589920044,0.793385207653046,-0.576429426670074,0.195624783635139,0.576429426670074,-0.793384552001953,0.19562703371048,0.303048074245453,-0.93267959356308,0.195628836750984,1.3191912273669e-07,-0.980678081512451,0.195628821849823,-0.303047150373459,-0.932680130004883,0.195628061890602,-0.576430439949036,-0.79338413476944,0.195626094937325, +-0.793385565280914,-0.576429069042206,0.195624649524689,-0.932680904865265,-0.30304691195488,0.195624709129333,-0.980678737163544,-1.00258421298349e-06,0.195625752210617,-0.907803356647491,0.294958770275116,0.298148274421692,-0.772223234176636,0.561052203178406,0.298147320747375,-0.561052024364471,0.772223472595215,0.298146694898605,-0.294959723949432,0.907803297042847,0.298147559165955,-6.47930491481929e-08,0.954520225524902,0.298146486282349,0.294960349798203,0.907803416252136,0.298146545886993,0.561054527759552,0.772221982479095,0.298145949840546,0.772225260734558,0.56104964017868,0.298146963119507,0.907803118228912,0.29496031999588,0.298147648572922,0.954520225524902,-2.91568049703983e-08,0.298146486282349,0.907802820205688,-0.294963389635086,0.29814538359642,0.772221684455872,-0.561055779457092,0.298144370317459,0.5610511302948,-0.772225081920624,0.298144727945328,0.294962406158447,-0.90780234336853,0.298147916793823,2.20295135022752e-07,-0.954518914222717,0.298150420188904,-0.294963806867599,-0.907801866531372,0.298147737979889,-0.561052978038788,-0.77222353219986,0.298145115375519,-0.772221803665161,-0.56105500459671,0.298145622014999,-0.907802224159241,-0.294964164495468,0.298146575689316,-0.954519927501678,-1.34769152282388e-06,0.298147082328796,-0.869140982627869,0.28239718079567,0.406012088060379,-0.739335834980011,0.537154257297516,0.406014651060104,-0.537155270576477,0.739334285259247,0.406016200780869,-0.282398760318756,0.869138956069946,0.406015396118164,-1.94592232105606e-07,0.913866400718689,0.406015038490295,0.282398402690887,0.869139134883881,0.406015485525131,0.537156581878662,0.739334225654602,0.406014412641525,0.739336490631104,0.53715592622757,0.406011253595352,0.869141399860382,0.282397836446762,0.406010806560516,0.913867950439453,2.80662035834212e-08,0.406011551618576,0.869139969348907,-0.282400369644165,0.406012058258057,0.739335000514984,-0.537157297134399,0.406012088060379,0.537155568599701,-0.739336788654327,0.406011044979095,0.282399475574493,-0.869141280651093,0.406010031700134,1.49686201211807e-08,-0.913868963718414,0.40600922703743, +-0.282398968935013,-0.869140923023224,0.40601122379303,-0.537156939506531,-0.739335238933563,0.406012147665024,-0.739334523677826,-0.537157714366913,0.406012415885925,-0.869139432907104,-0.282402068376541,0.4060118496418,-0.913868129253387,-9.67348228186893e-07,0.406011193990707,-0.81230640411377,0.263933122158051,0.520094096660614,-0.690989434719086,0.502030551433563,0.52009528875351,-0.502031564712524,0.690987944602966,0.520096063613892,-0.263934135437012,0.812306106090546,0.52009391784668,-6.36931189248199e-17,0.854109346866608,0.520093679428101,0.263934016227722,0.81230628490448,0.52009379863739,0.502030789852142,0.69098836183548,0.520096302032471,0.690988421440125,0.502030372619629,0.520096659660339,0.812305927276611,0.263932406902313,0.520095109939575,0.854108333587646,1.27386621661444e-16,0.52009528875351,0.812305748462677,-0.263931840658188,0.520095646381378,0.690987884998322,-0.502032995223999,0.520094931125641,0.502031207084656,-0.690990388393402,0.520093262195587,0.263933449983597,-0.812307238578796,0.520092487335205,-6.56266308851627e-07,-0.854110181331635,0.520092308521271,-0.263934075832367,-0.812307238578796,0.520092070102692,-0.502031803131104,-0.690990924835205,0.520091891288757,-0.690989375114441,-0.502033352851868,0.520092666149139,-0.812306046485901,-0.26393324136734,0.520094335079193,-0.85410875082016,-4.54163426866216e-07,0.520094394683838,-0.731152355670929,0.237566396594048,0.639514207839966,-0.621956706047058,0.451876580715179,0.639513432979584,-0.451880097389221,0.621954143047333,0.639513373374939,-0.237566515803337,0.731154680252075,0.63951164484024,-2.92101254295574e-09,0.76878148317337,0.63951164484024,0.237566277384758,0.731154441833496,0.639511942863464,0.451879650354385,0.621953725814819,0.639514207839966,0.621955513954163,0.451876759529114,0.639514446258545,0.731152355670929,0.237566292285919,0.639514327049255,0.768779933452606,-2.19074767215943e-08,0.639513492584229,0.731153845787048,-0.237565606832504,0.639512836933136,0.62195497751236,-0.451878190040588,0.639514029026031,0.451874554157257,-0.621956408023834,0.639515280723572, +0.237566396594048,-0.731150567531586,0.639516294002533,-9.05510120219333e-08,-0.768777966499329,0.63951575756073,-0.237566262483597,-0.73115074634552,0.639516174793243,-0.451875865459442,-0.621955752372742,0.639514863491058,-0.6219562292099,-0.451876938343048,0.639513611793518,-0.731153607368469,-0.237565964460373,0.63951301574707,-0.768779397010803,-3.70966660057093e-07,0.639514088630676,-0.618456065654755,0.200946286320686,0.759692490100861,-0.526091277599335,0.382224977016449,0.759692132472992,-0.382231265306473,0.526086568832397,0.759692251682281,-0.2009506970644,0.618454158306122,0.759692907333374,-1.01257890960937e-09,0.650283455848694,0.759691774845123,0.200949907302856,0.618453979492188,0.759693384170532,0.382229059934616,0.526086986064911,0.759693086147308,0.526090204715729,0.382225424051285,0.759692490100861,0.618455529212952,0.200946062803268,0.759693026542664,0.650282144546509,1.01257724427484e-09,0.759692788124084,0.618454217910767,-0.200949013233185,0.759693384170532,0.526086628437042,-0.382227838039398,0.75969386100769,0.382224887609482,-0.526091635227203,0.759692013263702,0.20095083117485,-0.618455946445465,0.759691417217255,8.63730178934929e-07,-0.650283575057983,0.759691596031189,-0.200948759913445,-0.61845600605011,0.759692013263702,-0.38222336769104,-0.526090800762177,0.759693324565887,-0.526087701320648,-0.382226139307022,0.75969409942627,-0.61845451593399,-0.200948774814606,0.759693205356598,-0.650282621383667,-1.47532728078659e-06,0.759692490100861,-0.46950551867485,0.152548640966415,0.869651436805725,-0.399382591247559,0.290172070264816,0.86965149641037,-0.290168792009354,0.399380445480347,0.869653701782227,-0.15255731344223,0.469500154256821,0.86965274810791,-1.26180408344112e-08,0.493663489818573,0.869653046131134,0.15255668759346,0.469500035047531,0.869652986526489,0.290170013904572,0.399381577968597,0.869652628898621,0.399385035037994,0.290171593427658,0.869650542736053,0.469504237174988,0.152548342943192,0.869652092456818,0.493664622306824,-5.67817934893355e-08,0.869652330875397,0.469501912593842,-0.152550026774406,0.869653105735779, +0.399383395910263,-0.290166676044464,0.869652986526489,0.290169805288315,-0.399385392665863,0.869650959968567,0.15255069732666,-0.469505697488785,0.869650900363922,-7.09769309992225e-09,-0.493666470050812,0.869651317596436,-0.152549505233765,-0.469505935907364,0.869650959968567,-0.29016900062561,-0.39938560128212,0.869651138782501,-0.399384707212448,-0.290165901184082,0.869652688503265,-0.46950176358223,-0.152549609541893,0.869653224945068,-0.493664473295212,-4.42347572970903e-06,0.869652509689331,-0.296473741531372,0.0963291004300117,0.950170636177063,-0.252193808555603,0.183235913515091,0.950169920921326,-0.183229193091393,0.252197831869125,0.95017021894455,-0.0963359251618385,0.296469688415527,0.950171172618866,-1.85327593271722e-08,0.311731696128845,0.950170278549194,0.0963359028100967,0.296469748020172,0.950171113014221,0.18323190510273,0.252197653055191,0.950169682502747,0.252198219299316,0.183234259486198,0.950169086456299,0.296476989984512,0.0963293835520744,0.950169563293457,0.31173250079155,-1.85135135666314e-07,0.950169920921326,0.296476036310196,-0.0963337644934654,0.950169384479523,0.252199441194534,-0.183228343725204,0.950169920921326,0.183234229683876,-0.252195328474045,0.950169920921326,0.0963263064622879,-0.296479374170303,0.950169146060944,-1.69394400728606e-08,-0.311733394861221,0.950169622898102,-0.0963264852762222,-0.296479284763336,0.950169086456299,-0.183233708143234,-0.252195358276367,0.950170040130615,-0.252198874950409,-0.183228239417076,0.95017009973526,-0.296474993228912,-0.0963335409760475,0.950169682502747,-0.31173038482666,-3.4822935504053e-06,0.950170695781708,4.87677311866719e-07,-6.28609598152252e-07,1 + } + NormalsW: *181 { + a: 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 + } + } + LayerElementUV: 0 { + Version: 101 + Name: "map1" + MappingInformationType: "ByPolygonVertex" + ReferenceInformationType: "IndexToDirect" + UV: *1400 { + a: 0.97025203704834,0.821563959121704,0.937357485294342,0.88612300157547,0.930409014225006,0.881074488162994,0.962083458900452,0.818910002708435,0.937357485294342,0.88612300157547,0.886123538017273,0.937357485294342,0.881075024604797,0.930409014225006,0.930409014225006,0.881074488162994,0.886123538017273,0.937357485294342,0.821564495563507,0.97025203704834,0.818910002708435,0.962082982063293,0.881075024604797,0.930409014225006,0.821564495563507,0.97025203704834,0.75,0.981586456298828,0.75,0.972997486591339,0.818910002708435,0.962082982063293,0.75,0.981586456298828,0.678435981273651,0.97025203704834,0.681089997291565,0.962082982063293,0.75,0.972997486591339,0.678435981273651,0.97025203704834,0.613876461982727,0.937357485294342,0.618925511837006,0.930409014225006,0.681089997291565,0.962082982063293,0.613876461982727,0.937357485294342,0.562642514705658,0.88612300157547,0.569590985774994,0.881074488162994,0.618925511837006,0.930409014225006,0.562642514705658,0.88612300157547,0.52974796295166,0.821563959121704,0.537916541099548,0.818910002708435,0.569590985774994,0.881074488162994,0.52974796295166,0.821563959121704,0.518413543701172,0.75,0.527002513408661,0.75,0.537916541099548,0.818910002708435,0.518413543701172,0.75,0.52974796295166,0.678435504436493,0.537916541099548,0.681089997291565,0.527002513408661,0.75,0.52974796295166,0.678435504436493,0.562642514705658,0.613876461982727,0.569590985774994,0.618924975395203,0.537916541099548,0.681089997291565,0.562642514705658,0.613876461982727,0.613876461982727,0.562642514705658,0.618925511837006,0.569590985774994,0.569590985774994,0.618924975395203,0.613876461982727,0.562642514705658,0.678435981273651,0.52974796295166,0.681089997291565,0.537916541099548,0.618925511837006,0.569590985774994,0.678435981273651,0.52974796295166,0.75,0.518413007259369,0.75,0.527002513408661,0.681089997291565,0.537916541099548,0.75,0.518413007259369,0.821564495563507,0.52974796295166,0.818910002708435,0.537916541099548,0.75,0.527002513408661,0.821564495563507,0.52974796295166,0.886123538017273, +0.562642514705658,0.881074488162994,0.569590985774994,0.818910002708435,0.537916541099548,0.886123538017273,0.562642514705658,0.937357485294342,0.613876461982727,0.930409014225006,0.618924975395203,0.881074488162994,0.569590985774994,0.937357485294342,0.613876461982727,0.97025203704834,0.678435504436493,0.962083458900452,0.681089997291565,0.930409014225006,0.618924975395203,0.97025203704834,0.678435504436493,0.981586456298828,0.75,0.972997486591339,0.75,0.962083458900452,0.681089997291565,0.981586456298828,0.75,0.97025203704834,0.821563959121704,0.962083458900452,0.818910002708435,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.930409014225006,0.881074488162994,0.919018030166626,0.872798502445221,0.948692500591278,0.814558982849121,0.930409014225006,0.881074488162994,0.881075024604797,0.930409014225006,0.872798502445221,0.919017493724823,0.919018030166626,0.872798502445221,0.881075024604797,0.930409014225006,0.818910002708435,0.962082982063293,0.814558982849121,0.948692500591278,0.872798502445221,0.919017493724823,0.818910002708435,0.962082982063293,0.75,0.972997486591339,0.75,0.958917498588562,0.814558982849121,0.948692500591278,0.75,0.972997486591339,0.681089997291565,0.962082982063293,0.685441017150879,0.948692500591278,0.75,0.958917498588562,0.681089997291565,0.962082982063293,0.618925511837006,0.930409014225006,0.627201497554779,0.919017493724823,0.685441017150879,0.948692500591278,0.618925511837006,0.930409014225006,0.569590985774994,0.881074488162994,0.580982506275177,0.872798502445221,0.627201497554779,0.919017493724823,0.569590985774994,0.881074488162994,0.537916541099548,0.818910002708435,0.551307499408722,0.814558982849121,0.580982506275177,0.872798502445221,0.537916541099548,0.818910002708435,0.527002513408661,0.75,0.541082501411438,0.75,0.551307499408722,0.814558982849121,0.527002513408661,0.75,0.537916541099548,0.681089997291565,0.551307499408722,0.685441017150879,0.541082501411438,0.75,0.537916541099548,0.681089997291565,0.569590985774994,0.618924975395203,0.580982506275177,0.627201497554779, +0.551307499408722,0.685441017150879,0.569590985774994,0.618924975395203,0.618925511837006,0.569590985774994,0.627201497554779,0.580981969833374,0.580982506275177,0.627201497554779,0.618925511837006,0.569590985774994,0.681089997291565,0.537916541099548,0.685441017150879,0.551307499408722,0.627201497554779,0.580981969833374,0.681089997291565,0.537916541099548,0.75,0.527002513408661,0.75,0.541082501411438,0.685441017150879,0.551307499408722,0.75,0.527002513408661,0.818910002708435,0.537916541099548,0.814558982849121,0.551307499408722,0.75,0.541082501411438,0.818910002708435,0.537916541099548,0.881074488162994,0.569590985774994,0.872798502445221,0.580981969833374,0.814558982849121,0.551307499408722,0.881074488162994,0.569590985774994,0.930409014225006,0.618924975395203,0.919017493724823,0.627201497554779,0.872798502445221,0.580981969833374,0.930409014225006,0.618924975395203,0.962083458900452,0.681089997291565,0.948692500591278,0.685441017150879,0.919017493724823,0.627201497554779,0.962083458900452,0.681089997291565,0.972997486591339,0.75,0.958917498588562,0.75,0.948692500591278,0.685441017150879,0.972997486591339,0.75,0.962083458900452,0.818910002708435,0.948692500591278,0.814558982849121,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.919018030166626,0.872798502445221,0.903465032577515,0.861498475074768,0.930409014225006,0.808618485927582,0.919018030166626,0.872798502445221,0.872798502445221,0.919017493724823,0.861499011516571,0.903465032577515,0.903465032577515,0.861498475074768,0.872798502445221,0.919017493724823,0.814558982849121,0.948692500591278,0.808618485927582,0.930409014225006,0.861499011516571,0.903465032577515,0.814558982849121,0.948692500591278,0.75,0.958917498588562,0.75,0.939692974090576,0.808618485927582,0.930409014225006,0.75,0.958917498588562,0.685441017150879,0.948692500591278,0.691381514072418,0.930409014225006,0.75,0.939692974090576,0.685441017150879,0.948692500591278,0.627201497554779,0.919017493724823,0.638500988483429,0.903465032577515,0.691381514072418,0.930409014225006,0.627201497554779, +0.919017493724823,0.580982506275177,0.872798502445221,0.596534967422485,0.861498475074768,0.638500988483429,0.903465032577515,0.580982506275177,0.872798502445221,0.551307499408722,0.814558982849121,0.569590985774994,0.808618485927582,0.596534967422485,0.861498475074768,0.551307499408722,0.814558982849121,0.541082501411438,0.75,0.560307025909424,0.75,0.569590985774994,0.808618485927582,0.541082501411438,0.75,0.551307499408722,0.685441017150879,0.569590985774994,0.691381514072418,0.560307025909424,0.75,0.551307499408722,0.685441017150879,0.580982506275177,0.627201497554779,0.596534967422485,0.638500988483429,0.569590985774994,0.691381514072418,0.580982506275177,0.627201497554779,0.627201497554779,0.580981969833374,0.638500988483429,0.596534967422485,0.596534967422485,0.638500988483429,0.627201497554779,0.580981969833374,0.685441017150879,0.551307499408722,0.691381514072418,0.569590985774994,0.638500988483429,0.596534967422485,0.685441017150879,0.551307499408722,0.75,0.541082501411438,0.75,0.560307025909424,0.691381514072418,0.569590985774994,0.75,0.541082501411438,0.814558982849121,0.551307499408722,0.808618485927582,0.569590985774994,0.75,0.560307025909424,0.814558982849121,0.551307499408722,0.872798502445221,0.580981969833374,0.861499011516571,0.596534967422485,0.808618485927582,0.569590985774994,0.872798502445221,0.580981969833374,0.919017493724823,0.627201497554779,0.903465032577515,0.638500988483429,0.861499011516571,0.596534967422485,0.919017493724823,0.627201497554779,0.948692500591278,0.685441017150879,0.930409014225006,0.691381514072418,0.903465032577515,0.638500988483429,0.948692500591278,0.685441017150879,0.958917498588562,0.75,0.939692974090576,0.75,0.930409014225006,0.691381514072418,0.958917498588562,0.75,0.948692500591278,0.814558982849121,0.930409014225006,0.808618485927582,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.903465032577515,0.861498475074768,0.884133458137512,0.847453474998474,0.90768301486969,0.801234483718872,0.903465032577515,0.861498475074768,0.861499011516571,0.903465032577515, +0.847453474998474,0.884132981300354,0.884133458137512,0.847453474998474,0.861499011516571,0.903465032577515,0.808618485927582,0.930409014225006,0.801234483718872,0.90768301486969,0.847453474998474,0.884132981300354,0.808618485927582,0.930409014225006,0.75,0.939692974090576,0.75,0.915798008441925,0.801234483718872,0.90768301486969,0.75,0.939692974090576,0.691381514072418,0.930409014225006,0.698765516281128,0.90768301486969,0.75,0.915798008441925,0.691381514072418,0.930409014225006,0.638500988483429,0.903465032577515,0.652546525001526,0.884132981300354,0.698765516281128,0.90768301486969,0.638500988483429,0.903465032577515,0.596534967422485,0.861498475074768,0.615867018699646,0.847453474998474,0.652546525001526,0.884132981300354,0.596534967422485,0.861498475074768,0.569590985774994,0.808618485927582,0.59231698513031,0.801234006881714,0.615867018699646,0.847453474998474,0.569590985774994,0.808618485927582,0.560307025909424,0.75,0.584201991558075,0.75,0.59231698513031,0.801234006881714,0.560307025909424,0.75,0.569590985774994,0.691381514072418,0.59231698513031,0.698765516281128,0.584201991558075,0.75,0.569590985774994,0.691381514072418,0.596534967422485,0.638500988483429,0.615867018699646,0.652546525001526,0.59231698513031,0.698765516281128,0.596534967422485,0.638500988483429,0.638500988483429,0.596534967422485,0.652546525001526,0.615866482257843,0.615867018699646,0.652546525001526,0.638500988483429,0.596534967422485,0.691381514072418,0.569590985774994,0.698765516281128,0.59231698513031,0.652546525001526,0.615866482257843,0.691381514072418,0.569590985774994,0.75,0.560307025909424,0.75,0.584201991558075,0.698765516281128,0.59231698513031,0.75,0.560307025909424,0.808618485927582,0.569590985774994,0.801234483718872,0.59231698513031,0.75,0.584201991558075,0.808618485927582,0.569590985774994,0.861499011516571,0.596534967422485,0.847453474998474,0.615866482257843,0.801234483718872,0.59231698513031,0.861499011516571,0.596534967422485,0.903465032577515,0.638500988483429,0.884132981300354,0.652546525001526,0.847453474998474,0.615866482257843, +0.903465032577515,0.638500988483429,0.930409014225006,0.691381514072418,0.90768301486969,0.698765516281128,0.884132981300354,0.652546525001526,0.930409014225006,0.691381514072418,0.939692974090576,0.75,0.915798008441925,0.75,0.90768301486969,0.698765516281128,0.939692974090576,0.75,0.930409014225006,0.808618485927582,0.90768301486969,0.801234483718872,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.884133458137512,0.847453474998474,0.861499011516571,0.831008493900299,0.881075024604797,0.792588472366333,0.884133458137512,0.847453474998474,0.847453474998474,0.884132981300354,0.831008493900299,0.861498475074768,0.861499011516571,0.831008493900299,0.847453474998474,0.884132981300354,0.801234483718872,0.90768301486969,0.792588472366333,0.881074488162994,0.831008493900299,0.861498475074768,0.801234483718872,0.90768301486969,0.75,0.915798008441925,0.75,0.88782000541687,0.792588472366333,0.881074488162994,0.75,0.915798008441925,0.698765516281128,0.90768301486969,0.707411527633667,0.881074488162994,0.75,0.88782000541687,0.698765516281128,0.90768301486969,0.652546525001526,0.884132981300354,0.668991506099701,0.861498475074768,0.707411527633667,0.881074488162994,0.652546525001526,0.884132981300354,0.615867018699646,0.847453474998474,0.638500988483429,0.831008493900299,0.668991506099701,0.861498475074768,0.615867018699646,0.847453474998474,0.59231698513031,0.801234006881714,0.618925511837006,0.792588472366333,0.638500988483429,0.831008493900299,0.59231698513031,0.801234006881714,0.584201991558075,0.75,0.61217999458313,0.75,0.618925511837006,0.792588472366333,0.584201991558075,0.75,0.59231698513031,0.698765516281128,0.618925511837006,0.707410991191864,0.61217999458313,0.75,0.59231698513031,0.698765516281128,0.615867018699646,0.652546525001526,0.638500988483429,0.668991506099701,0.618925511837006,0.707410991191864,0.615867018699646,0.652546525001526,0.652546525001526,0.615866482257843,0.668991506099701,0.638500988483429,0.638500988483429,0.668991506099701,0.652546525001526,0.615866482257843,0.698765516281128,0.59231698513031, +0.707411527633667,0.618924975395203,0.668991506099701,0.638500988483429,0.698765516281128,0.59231698513031,0.75,0.584201991558075,0.75,0.61217999458313,0.707411527633667,0.618924975395203,0.75,0.584201991558075,0.801234483718872,0.59231698513031,0.792588472366333,0.618924975395203,0.75,0.61217999458313,0.801234483718872,0.59231698513031,0.847453474998474,0.615866482257843,0.831008493900299,0.638500988483429,0.792588472366333,0.618924975395203,0.847453474998474,0.615866482257843,0.884132981300354,0.652546525001526,0.861499011516571,0.668991506099701,0.831008493900299,0.638500988483429,0.884132981300354,0.652546525001526,0.90768301486969,0.698765516281128,0.881074488162994,0.707410991191864,0.861499011516571,0.668991506099701,0.90768301486969,0.698765516281128,0.915798008441925,0.75,0.88782000541687,0.75,0.881074488162994,0.707410991191864,0.915798008441925,0.75,0.90768301486969,0.801234483718872,0.881075024604797,0.792588472366333,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.861499011516571,0.831008493900299,0.836118996143341,0.81256902217865,0.851238965988159,0.782894492149353,0.861499011516571,0.831008493900299,0.831008493900299,0.861498475074768,0.81256902217865,0.836118996143341,0.836118996143341,0.81256902217865,0.831008493900299,0.861498475074768,0.792588472366333,0.881074488162994,0.782894492149353,0.851238489151001,0.81256902217865,0.836118996143341,0.792588472366333,0.881074488162994,0.75,0.88782000541687,0.75,0.856448531150818,0.782894492149353,0.851238489151001,0.75,0.88782000541687,0.707411527633667,0.881074488162994,0.717105507850647,0.851238489151001,0.75,0.856448531150818,0.707411527633667,0.881074488162994,0.668991506099701,0.861498475074768,0.68743097782135,0.836118996143341,0.717105507850647,0.851238489151001,0.668991506099701,0.861498475074768,0.638500988483429,0.831008493900299,0.663881003856659,0.81256902217865,0.68743097782135,0.836118996143341,0.638500988483429,0.831008493900299,0.618925511837006,0.792588472366333,0.648761034011841,0.782894492149353,0.663881003856659,0.81256902217865, +0.618925511837006,0.792588472366333,0.61217999458313,0.75,0.643551468849182,0.75,0.648761034011841,0.782894492149353,0.61217999458313,0.75,0.618925511837006,0.707410991191864,0.648761034011841,0.717105507850647,0.643551468849182,0.75,0.618925511837006,0.707410991191864,0.638500988483429,0.668991506099701,0.663881003856659,0.68743097782135,0.648761034011841,0.717105507850647,0.638500988483429,0.668991506099701,0.668991506099701,0.638500988483429,0.68743097782135,0.663881003856659,0.663881003856659,0.68743097782135,0.668991506099701,0.638500988483429,0.707411527633667,0.618924975395203,0.717105507850647,0.648761034011841,0.68743097782135,0.663881003856659,0.707411527633667,0.618924975395203,0.75,0.61217999458313,0.75,0.643550992012024,0.717105507850647,0.648761034011841,0.75,0.61217999458313,0.792588472366333,0.618924975395203,0.782894492149353,0.648761034011841,0.75,0.643550992012024,0.792588472366333,0.618924975395203,0.831008493900299,0.638500988483429,0.81256902217865,0.663881003856659,0.782894492149353,0.648761034011841,0.831008493900299,0.638500988483429,0.861499011516571,0.668991506099701,0.836118996143341,0.68743097782135,0.81256902217865,0.663881003856659,0.861499011516571,0.668991506099701,0.881074488162994,0.707410991191864,0.851238965988159,0.717105507850647,0.836118996143341,0.68743097782135,0.881074488162994,0.707410991191864,0.88782000541687,0.75,0.856449007987976,0.75,0.851238965988159,0.717105507850647,0.88782000541687,0.75,0.881075024604797,0.792588472366333,0.851238965988159,0.782894492149353,0.856449007987976,0.75,0.851238965988159,0.782894492149353,0.836118996143341,0.81256902217865,0.808618485927582,0.792588472366333,0.818910002708435,0.772390007972717,0.836118996143341,0.81256902217865,0.81256902217865,0.836118996143341,0.792588472366333,0.808618485927582,0.808618485927582,0.792588472366333,0.81256902217865,0.836118996143341,0.782894492149353,0.851238489151001,0.772390484809875,0.818910002708435,0.792588472366333,0.808618485927582,0.782894492149353,0.851238489151001,0.75,0.856448531150818,0.75, +0.822456002235413,0.772390484809875,0.818910002708435,0.75,0.856448531150818,0.717105507850647,0.851238489151001,0.727609992027283,0.818910002708435,0.75,0.822456002235413,0.717105507850647,0.851238489151001,0.68743097782135,0.836118996143341,0.707411527633667,0.808618485927582,0.727609992027283,0.818910002708435,0.68743097782135,0.836118996143341,0.663881003856659,0.81256902217865,0.691381514072418,0.792588472366333,0.707411527633667,0.808618485927582,0.663881003856659,0.81256902217865,0.648761034011841,0.782894492149353,0.681089997291565,0.772390007972717,0.691381514072418,0.792588472366333,0.648761034011841,0.782894492149353,0.643551468849182,0.75,0.677543520927429,0.75,0.681089997291565,0.772390007972717,0.643551468849182,0.75,0.648761034011841,0.717105507850647,0.681089997291565,0.727609515190125,0.677543520927429,0.75,0.648761034011841,0.717105507850647,0.663881003856659,0.68743097782135,0.691381514072418,0.707410991191864,0.681089997291565,0.727609515190125,0.663881003856659,0.68743097782135,0.68743097782135,0.663881003856659,0.707411527633667,0.691381514072418,0.691381514072418,0.707410991191864,0.68743097782135,0.663881003856659,0.717105507850647,0.648761034011841,0.727609992027283,0.681089997291565,0.707411527633667,0.691381514072418,0.717105507850647,0.648761034011841,0.75,0.643550992012024,0.75,0.677543520927429,0.727609992027283,0.681089997291565,0.75,0.643550992012024,0.782894492149353,0.648761034011841,0.772390484809875,0.681089997291565,0.75,0.677543520927429,0.782894492149353,0.648761034011841,0.81256902217865,0.663881003856659,0.792588472366333,0.691381514072418,0.772390484809875,0.681089997291565,0.81256902217865,0.663881003856659,0.836118996143341,0.68743097782135,0.808618485927582,0.707410991191864,0.792588472366333,0.691381514072418,0.836118996143341,0.68743097782135,0.851238965988159,0.717105507850647,0.818910002708435,0.727609515190125,0.808618485927582,0.707410991191864,0.851238965988159,0.717105507850647,0.856449007987976,0.75,0.822456479072571,0.75,0.818910002708435,0.727609515190125,0.856449007987976, +0.75,0.851238965988159,0.782894492149353,0.818910002708435,0.772390007972717,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.808618485927582,0.792588472366333,0.779674530029297,0.771559476852417,0.784884512424469,0.761334538459778,0.808618485927582,0.792588472366333,0.792588472366333,0.808618485927582,0.77156001329422,0.779674530029297,0.779674530029297,0.771559476852417,0.792588472366333,0.808618485927582,0.772390484809875,0.818910002708435,0.761334538459778,0.784884512424469,0.77156001329422,0.779674530029297,0.772390484809875,0.818910002708435,0.75,0.822456002235413,0.75,0.78667950630188,0.761334538459778,0.784884512424469,0.75,0.822456002235413,0.727609992027283,0.818910002708435,0.738665521144867,0.784884512424469,0.75,0.78667950630188,0.727609992027283,0.818910002708435,0.707411527633667,0.808618485927582,0.72843998670578,0.779674530029297,0.738665521144867,0.784884512424469,0.707411527633667,0.808618485927582,0.691381514072418,0.792588472366333,0.720325469970703,0.771559476852417,0.72843998670578,0.779674530029297,0.691381514072418,0.792588472366333,0.681089997291565,0.772390007972717,0.715115487575531,0.761334538459778,0.720325469970703,0.771559476852417,0.681089997291565,0.772390007972717,0.677543520927429,0.75,0.71332049369812,0.75,0.715115487575531,0.761334538459778,0.677543520927429,0.75,0.681089997291565,0.727609515190125,0.715115487575531,0.738665521144867,0.71332049369812,0.75,0.681089997291565,0.727609515190125,0.691381514072418,0.707410991191864,0.720325469970703,0.72843998670578,0.715115487575531,0.738665521144867,0.691381514072418,0.707410991191864,0.707411527633667,0.691381514072418,0.72843998670578,0.720325469970703,0.720325469970703,0.72843998670578,0.707411527633667,0.691381514072418,0.727609992027283,0.681089997291565,0.738665521144867,0.715115487575531,0.72843998670578,0.720325469970703,0.727609992027283,0.681089997291565,0.75,0.677543520927429,0.75,0.713320016860962,0.738665521144867,0.715115487575531,0.75,0.677543520927429,0.772390484809875,0.681089997291565,0.761334538459778, +0.715115487575531,0.75,0.713320016860962,0.772390484809875,0.681089997291565,0.792588472366333,0.691381514072418,0.77156001329422,0.720325469970703,0.761334538459778,0.715115487575531,0.792588472366333,0.691381514072418,0.808618485927582,0.707410991191864,0.779674530029297,0.72843998670578,0.77156001329422,0.720325469970703,0.808618485927582,0.707410991191864,0.818910002708435,0.727609515190125,0.784884512424469,0.738665521144867,0.779674530029297,0.72843998670578,0.818910002708435,0.727609515190125,0.822456479072571,0.75,0.78667950630188,0.75,0.784884512424469,0.738665521144867,0.822456479072571,0.75,0.818910002708435,0.772390007972717,0.784884512424469,0.761334538459778,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.779674530029297,0.771559476852417,0.75,0.75,0.779674530029297,0.771559476852417,0.77156001329422,0.779674530029297,0.75,0.75,0.77156001329422,0.779674530029297,0.761334538459778,0.784884512424469,0.75,0.75,0.761334538459778,0.784884512424469,0.75,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.738665521144867,0.784884512424469,0.75,0.75,0.738665521144867,0.784884512424469,0.72843998670578,0.779674530029297,0.75,0.75,0.72843998670578,0.779674530029297,0.720325469970703,0.771559476852417,0.75,0.75,0.720325469970703,0.771559476852417,0.715115487575531,0.761334538459778,0.75,0.75,0.715115487575531,0.761334538459778,0.71332049369812,0.75,0.75,0.75,0.71332049369812,0.75,0.715115487575531,0.738665521144867,0.75,0.75,0.715115487575531,0.738665521144867,0.720325469970703,0.72843998670578,0.75,0.75,0.720325469970703,0.72843998670578,0.72843998670578,0.720325469970703,0.75,0.75,0.72843998670578,0.720325469970703,0.738665521144867,0.715115487575531,0.75,0.75,0.738665521144867,0.715115487575531,0.75,0.713320016860962,0.75,0.75,0.75,0.713320016860962,0.761334538459778,0.715115487575531,0.75,0.75,0.761334538459778,0.715115487575531,0.77156001329422,0.720325469970703,0.75,0.75,0.77156001329422,0.720325469970703,0.779674530029297,0.72843998670578,0.75,0.75,0.779674530029297,0.72843998670578,0.784884512424469, +0.738665521144867,0.75,0.75,0.784884512424469,0.738665521144867,0.78667950630188,0.75,0.75,0.75,0.78667950630188,0.75,0.784884512424469,0.761334538459778,0.75,0.75 + } + UVIndex: *700 { + a: 0,3,2,1,4,7,6,5,8,11,10,9,12,15,14,13,16,19,18,17,20,23,22,21,24,27,26,25,28,31,30,29,32,35,34,33,36,39,38,37,40,43,42,41,44,47,46,45,48,51,50,49,52,55,54,53,56,59,58,57,60,63,62,61,64,67,66,65,68,71,70,69,72,75,74,73,76,79,78,77,80,83,82,81,84,87,86,85,88,91,90,89,92,95,94,93,96,99,98,97,100,103,102,101,104,107,106,105,108,111,110,109,112,115,114,113,116,119,118,117,120,123,122,121,124,127,126,125,128,131,130,129,132,135,134,133,136,139,138,137,140,143,142,141,144,147,146,145,148,151,150,149,152,155,154,153,156,159,158,157,160,163,162,161,164,167,166,165,168,171,170,169,172,175,174,173,176,179,178,177,180,183,182,181,184,187,186,185,188,191,190,189,192,195,194,193,196,199,198,197,200,203,202,201,204,207,206,205,208,211,210,209,212,215,214,213,216,219,218,217,220,223,222,221,224,227,226,225,228,231,230,229,232,235,234,233,236,239,238,237,240,243,242,241,244,247,246,245,248,251,250,249,252,255,254,253,256,259,258,257,260,263,262,261,264,267,266,265,268,271,270,269,272,275,274,273,276,279,278,277,280,283,282,281,284,287,286,285,288,291,290,289,292,295,294,293,296,299,298,297,300,303,302,301,304,307,306,305,308,311,310,309,312,315,314,313,316,319,318,317,320,323,322,321,324,327,326,325,328,331,330,329,332,335,334,333,336,339,338,337,340,343,342,341,344,347,346,345,348,351,350,349,352,355,354,353,356,359,358,357,360,363,362,361,364,367,366,365,368,371,370,369,372,375,374,373,376,379,378,377,380,383,382,381,384,387,386,385,388,391,390,389,392,395,394,393,396,399,398,397,400,403,402,401,404,407,406,405,408,411,410,409,412,415,414,413,416,419,418,417,420,423,422,421,424,427,426,425,428,431,430,429,432,435,434,433,436,439,438,437,440,443,442,441,444,447,446,445,448,451,450,449,452,455,454,453,456,459,458,457,460,463,462,461,464,467,466,465,468,471,470,469,472,475,474,473,476,479,478,477,480,483,482,481,484,487,486,485,488,491,490,489,492,495,494,493,496,499,498,497,500,503,502,501,504,507,506,505,508,511,510,509,512,515,514,513,516,519,518,517,520,523,522,521,524,527,526,525,528,531,530,529,532,535, +534,533,536,539,538,537,540,543,542,541,544,547,546,545,548,551,550,549,552,555,554,553,556,559,558,557,560,563,562,561,564,567,566,565,568,571,570,569,572,575,574,573,576,579,578,577,580,583,582,581,584,587,586,585,588,591,590,589,592,595,594,593,596,599,598,597,600,603,602,601,604,607,606,605,608,611,610,609,612,615,614,613,616,619,618,617,620,623,622,621,624,627,626,625,628,631,630,629,632,635,634,633,636,639,638,637,640,642,641,643,645,644,646,648,647,649,651,650,652,654,653,655,657,656,658,660,659,661,663,662,664,666,665,667,669,668,670,672,671,673,675,674,676,678,677,679,681,680,682,684,683,685,687,686,688,690,689,691,693,692,694,696,695,697,699,698 + } + } + LayerElementMaterial: 0 { + Version: 101 + Name: "" + MappingInformationType: "AllSame" + ReferenceInformationType: "IndexToDirect" + Materials: *1 { + a: 0 + } + } + Layer: 0 { + Version: 100 + LayerElement: { + Type: "LayerElementNormal" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementMaterial" + TypedIndex: 0 + } + LayerElement: { + Type: "LayerElementUV" + TypedIndex: 0 + } + } + } + Geometry: 2807563820512, "Geometry::Jaw_Left", "Shape" { + Version: 100 + Indexes: *5114 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, +3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, +3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, +4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, +4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, +5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, +5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, +5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6193,6195,6196,6198,6199,6200,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6238,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6289,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335, +6336,6338,6339,6340,6341,6343,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826, +6836,6837,6838,6839,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7146,7147,7156,7157,7159,7160,7161,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474, +7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7575,7577,7578,7580,7581,7582,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7620,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7671,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980, +7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8528,8529,8538,8539,8541,8542,8543,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669, +8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *15342 { + a: 1.3649650812149,-0.000192165374755859,-0.000145912170410156,1.36496507003903,-0.000127792358398438,-0.000138759613037109,1.36496543884277,-0.000192165374755859,-0.000145912170410156,1.36496472358704,-0.000224590301513672,-0.000141143798828125,1.36496503278613,-0.000304698944091797,-0.000152587890625,1.36496496200562,-0.000224590301513672,-0.000141143798828125,1.3649650812149,-0.000175952911376953,-0.000134706497192383,1.36496507003903,-0.000128269195556641,-0.000123023986816406,1.36496484279633,-0.000175952911376953,-0.000134706497192383,1.36496496200562,-0.000240325927734375,-0.000120162963867188,1.36496507003903,-0.000304698944091797,-0.000130653381347656,1.36496496200562,-0.000240325927734375,-0.000119209289550781,1.36496496200562,-0.000192642211914063,-0.000104427337646484,1.36496507003903,-0.00016021728515625,-6.22272491455078e-05,1.36496472358704,-0.000192642211914063,-0.000104427337646484,1.36496507003903,-0.000304222106933594,-0.000125885009765625,1.3649650812149,-0.000223636627197266,-9.25064086914063e-05,1.36496507003903,-0.000207901000976563,-5.00679016113281e-05,1.36496472358704,-0.000223636627197266,-9.25064086914063e-05,1.36496511101723,-0.0003204345703125,-0.000124454498291016,1.36496520042419,-0.000288963317871094,-9.87052917480469e-05,1.36496510915458,-0.000288009643554688,-6.29425048828125e-05,1.36496496200562,-0.000288963317871094,-9.87052917480469e-05,1.36496513523161,-0.000352859497070313,-0.0001220703125,1.3649650812149,-0.000352382659912109,-0.000112056732177734,1.36496513709426,-0.000352859497070313,-8.86917114257813e-05,1.36496496200562,-0.000352382659912109,-0.000112056732177734,1.36496506817639,-0.000416278839111328,-0.000121116638183594,1.36496496200562,-0.000417232513427734,-0.000117301940917969,1.36496506258845,-0.000417232513427734,-9.44137573242188e-05,1.36496496200562,-0.000417232513427734,-0.000117301940917969,1.36496501229703,-0.000448226928710938,-0.000116348266601563,1.36496496200562,-0.000449180603027344,-0.000108718872070313,1.36496505513787,-0.000448226928710938, +-9.5367431640625e-05,1.36496460437775,-0.000449180603027344,-0.000108718872070313,1.36496493965387,-0.00048065185546875,-0.000111579895019531,1.36496496200562,-0.000464916229248047,-0.000104904174804688,1.36496507376432,-0.00048065185546875,-0.000102996826171875,1.36496531963348,-0.000464916229248047,-0.000104904174804688,1.3649650812149,-0.000256061553955078,-0.000145912170410156,1.36496496200562,-0.000256061553955078,-0.000131607055664063,1.36496484279633,-0.000256061553955078,-0.000145912170410156,1.36496496200562,-0.000256061553955078,-0.000131607055664063,1.36496505700052,-0.000304222106933594,-0.000138759613037109,1.36496514081955,-0.000288009643554688,-0.000150203704833984,1.3649650812149,-0.000224590301513672,-0.000137805938720703,1.3649650812149,-0.000192642211914063,-0.000142812728881836,1.36496496200562,-0.00016021728515625,-0.000130891799926758,1.36496496200562,-0.00016021728515625,-0.000143527984619141,1.36496496200562,-0.00016021728515625,-0.000140905380249023,1.3649650812149,-0.000144481658935547,-0.00012516975402832,1.36496496200562,-0.000143527984619141,-0.00014042854309082,1.3649650812149,-0.000144481658935547,-0.000138282775878906,1.36496499180794,-0.000128269195556641,-0.000123023986816406,1.36496507003903,-0.000127792358398438,-0.000136375427246094,1.36496520042419,-0.000127792358398438,-0.000138998031616211,1.36496493220329,-0.000128269195556641,-0.000136613845825195,1.36496502161026,-0.000128269195556641,-0.000123023986816406,1.36496490240097,-0.000127792358398438,-0.000138998031616211,1.36496511101723,-0.000128269195556641,-0.000136613845825195,1.3649650812149,-0.000128746032714844,-0.000123739242553711,1.36496472358704,-0.000128269195556641,-0.000139474868774414,1.3649650812149,-0.000128269195556641,-0.000136852264404297,1.36496496200562,-0.00016021728515625,-0.000130891799926758,1.36496520042419,-0.000192642211914063,-0.000142812728881836,1.3649650812149,-0.00016021728515625,-0.000143527984619141,1.36496496200562,-0.00016021728515625,-0.000140905380249023,1.36496484279633,-0.000192165374755859, +-0.000136375427246094,1.36496460437775,-0.000256061553955078,-0.000136375427246094,1.36496514081955,-0.000288009643554688,-0.000134468078613281,1.36496495828032,-0.000303745269775391,-0.000145435333251953,1.36496478319168,-0.000288486480712891,-0.000141620635986328,1.36496496200562,-0.000257015228271484,-0.000136375427246094,1.3649650812149,-0.000224590301513672,-0.000129222869873047,1.3649650812149,-0.000207901000976563,-0.000116825103759766,1.3649650812149,-0.000208854675292969,-0.000127315521240234,1.36496496200562,-0.000175952911376953,-0.000119924545288086,1.3649650812149,-0.000175952911376953,-8.96453857421875e-05,1.36496496200562,-0.00016021728515625,-0.000110387802124023,1.36496496200562,-0.00016021728515625,-6.77108764648438e-05,1.36496496200562,-0.000144481658935547,-9.72747802734375e-05,1.3649650812149,-0.00016021728515625,-6.22272491455078e-05,1.36496507003903,-0.000127792358398438,-9.27448272705078e-05,1.3649650812149,-0.000128269195556641,-9.27448272705078e-05,1.36496484279633,-0.00016021728515625,-6.22272491455078e-05,1.36496499180794,-0.000128269195556641,-9.27448272705078e-05,1.36496490240097,-0.00016021728515625,-6.34193420410156e-05,1.36496478319168,-0.000144481658935547,-9.41753387451172e-05,1.36496484279633,-0.000175952911376953,-8.96453857421875e-05,1.3649650812149,-0.000175952911376953,-0.000119924545288086,1.36496484279633,-0.00016021728515625,-0.000110387802124023,1.36496472358704,-0.000192642211914063,-0.000110626220703125,1.36496472358704,-0.000192165374755859,-0.000123023986816406,1.36496514081955,-0.000288009643554688,-0.000123023986816406,1.36496507003903,-0.000304698944091797,-0.000127792358398438,1.36496502161026,-0.000272274017333984,-0.000126361846923828,1.3649650812149,-0.000272274017333984,-0.000123977661132813,1.36496496200562,-0.000288009643554688,-0.000123023986816406,1.36496499180794,-0.000272274017333984,-0.000126361846923828,1.36496496200562,-0.000272274017333984,-0.000123977661132813,1.36496496200562,-0.000240325927734375,-0.000113487243652344,1.36496496200562,-0.000224590301513672, +-0.000112533569335938,1.3649650812149,-0.000192165374755859,-9.48905944824219e-05,1.3649650812149,-0.000208377838134766,-7.29560852050781e-05,1.3649650812149,-0.000192642211914063,-7.72476196289063e-05,1.36496520042419,-0.000207901000976563,-4.43458557128906e-05,1.3649650812149,-0.000175952911376953,-5.03063201904297e-05,1.36496520042419,-0.000207901000976563,-4.57763671875e-05,1.36496507003903,-0.000175952911376953,-5.00679016113281e-05,1.36496499180794,-0.000175952911376953,-4.86373901367188e-05,1.36496484279633,-0.000207901000976563,-4.57763671875e-05,1.36496493220329,-0.000175952911376953,-4.86373901367188e-05,1.36496484279633,-0.000207901000976563,-4.10079956054688e-05,1.36496531963348,-0.000175952911376953,-4.60147857666016e-05,1.36496472358704,-0.000208377838134766,-7.29560852050781e-05,1.36496496200562,-0.000192165374755859,-9.48905944824219e-05,1.36496460437775,-0.000192642211914063,-7.72476196289063e-05,1.36496543884277,-0.000224590301513672,-0.000102996826171875,1.36496460437775,-0.000208377838134766,-0.000104427337646484,1.36496496200562,-0.000304222106933594,-0.000123977661132813,1.36496507003903,-0.0003204345703125,-0.000124931335449219,1.36496490240097,-0.000288963317871094,-0.000123977661132813,1.36496496200562,-0.000304222106933594,-0.000123977661132813,1.36496496200562,-0.000288963317871094,-0.000123977661132813,1.3649650812149,-0.000288486480712891,-0.000118732452392578,1.36496496200562,-0.000256538391113281,-0.000115871429443359,1.3649650812149,-0.000240325927734375,-9.34600830078125e-05,1.36496520042419,-0.000288009643554688,-8.44001770019531e-05,1.36496520042419,-0.000256061553955078,-7.53402709960938e-05,1.36496520042419,-0.000288963317871094,-6.00814819335938e-05,1.3649650812149,-0.000256061553955078,-4.91142272949219e-05,1.36496496200562,-0.000288963317871094,-6.00814819335938e-05,1.36496507003903,-0.000256061553955078,-5.43594360351563e-05,1.36496496200562,-0.000256538391113281,-5.05447387695313e-05,1.3649650812149,-0.000288963317871094,-6.00814819335938e-05,1.36496484279633,-0.000256538391113281, +-5.05447387695313e-05,1.36496472358704,-0.000288009643554688,-5.340576171875e-05,1.36496484279633,-0.000256061553955078,-4.33921813964844e-05,1.36496520042419,-0.000288009643554688,-8.44001770019531e-05,1.36496496200562,-0.000240325927734375,-9.34600830078125e-05,1.36496472358704,-0.000256061553955078,-7.53402709960938e-05,1.36496520042419,-0.000288963317871094,-0.000108242034912109,1.36496543884277,-0.000256061553955078,-0.000104427337646484,1.36496526002884,-0.000352859497070313,-0.000119209289550781,1.36496507376432,-0.000336170196533203,-0.000123977661132813,1.3649650812149,-0.000336170196533203,-0.000121593475341797,1.36496496200562,-0.000352859497070313,-0.000119209289550781,1.36496496200562,-0.000336170196533203,-0.000121593475341797,1.36496496200562,-0.000352859497070313,-0.000115871429443359,1.36496496200562,-0.0003204345703125,-0.000116348266601563,1.36496484279633,-0.0003204345703125,-0.000106334686279297,1.36496520042419,-0.000352859497070313,-0.000102043151855469,1.3649650812149,-0.0003204345703125,-9.34600830078125e-05,1.36496496200562,-0.000352859497070313,-8.67843627929688e-05,1.3649650812149,-0.0003204345703125,-7.34329223632813e-05,1.36496496200562,-0.000351905822753906,-8.58306884765625e-05,1.36496507003903,-0.0003204345703125,-7.58171081542969e-05,1.36496496200562,-0.0003204345703125,-7.43865966796875e-05,1.36496475338936,-0.000351905822753906,-8.58306884765625e-05,1.36496520042419,-0.0003204345703125,-7.43865966796875e-05,1.36496520042419,-0.000352859497070313,-8.29696655273438e-05,1.36496484279633,-0.0003204345703125,-6.91413879394531e-05,1.36496543884277,-0.000352859497070313,-0.000102043151855469,1.36496543884277,-0.0003204345703125,-0.000106334686279297,1.36496496200562,-0.0003204345703125,-9.34600830078125e-05,1.36496484279633,-0.000352382659912109,-0.000116825103759766,1.36496472358704,-0.0003204345703125,-0.000113010406494141,1.36496499180794,-0.000416755676269531,-0.000117301940917969,1.36496504582465,-0.000384807586669922,-0.000122547149658203,1.36496496200562,-0.000384330749511719,-0.000118255615234375, +1.3649650812149,-0.000416755676269531,-0.000117301940917969,1.36496493220329,-0.000384330749511719,-0.000118255615234375,1.36496496200562,-0.000416278839111328,-0.000116348266601563,1.36496496200562,-0.000384330749511719,-0.000115871429443359,1.3649650812149,-0.000384807586669922,-0.000115871429443359,1.36496496200562,-0.000416278839111328,-0.000108718872070313,1.3649650812149,-0.000384807586669922,-0.000107288360595703,1.36496496200562,-0.000416278839111328,-9.1552734375e-05,1.36496496200562,-0.000384807586669922,-9.1552734375e-05,1.36496496200562,-0.000417232513427734,-9.34600830078125e-05,1.364965043962,-0.000384807586669922,-9.29832458496094e-05,1.36496496200562,-0.000384330749511719,-9.1552734375e-05,1.36496499180794,-0.000417232513427734,-9.34600830078125e-05,1.36496493220329,-0.000384330749511719,-9.1552734375e-05,1.36496484279633,-0.000416755676269531,-8.67843627929688e-05,1.36496460437775,-0.000384807586669922,-8.63075256347656e-05,1.36496472358704,-0.000416278839111328,-0.000108718872070313,1.36496484279633,-0.000384807586669922,-0.000115871429443359,1.36496496200562,-0.000384807586669922,-0.000107288360595703,1.36496496200562,-0.000417232513427734,-0.000120162963867188,1.36496472358704,-0.000384807586669922,-0.000120162963867188,1.3649650812149,-0.000448703765869141,-0.000112533569335938,1.36496501788497,-0.000432014465332031,-0.000118255615234375,1.36496499180794,-0.000432968139648438,-0.000116348266601563,1.36496493220329,-0.000448703765869141,-0.000112533569335938,1.36496511101723,-0.000432968139648438,-0.000116348266601563,1.36496496200562,-0.000448226928710938,-0.000111579895019531,1.36496496200562,-0.000432491302490234,-0.000115394592285156,1.3649650812149,-0.000432491302490234,-0.00011444091796875,1.3649650812149,-0.000448226928710938,-0.000102996826171875,1.3649650812149,-0.000448703765869141,-0.000105857849121094,1.36496496200562,-0.000449180603027344,-9.25064086914063e-05,1.36496496200562,-0.000448226928710938,-9.25064086914063e-05,1.36496493220329,-0.000448703765869141,-9.63211059570313e-05,1.3649650812149, +-0.000448226928710938,-9.5367431640625e-05,1.36496484279633,-0.000449180603027344,-9.34600830078125e-05,1.36496493220329,-0.000448703765869141,-9.63211059570313e-05,1.36496490240097,-0.000449180603027344,-9.34600830078125e-05,1.3649650812149,-0.000448703765869141,-9.1552734375e-05,1.36496537923813,-0.000448226928710938,-8.96453857421875e-05,1.36496496200562,-0.000448226928710938,-0.000102996826171875,1.36496472358704,-0.000432491302490234,-0.00011444091796875,1.36496460437775,-0.000448703765869141,-0.000105857849121094,1.36496472358704,-0.000448226928710938,-0.000111579895019531,1.36496472358704,-0.000432968139648438,-0.000115394592285156,1.36496493220329,-0.00048065185546875,-0.000111579895019531,1.3649650067091,-0.00048065185546875,-0.00011444091796875,1.36496493220329,-0.00048065185546875,-0.000112533569335938,1.36496493220329,-0.00048065185546875,-0.000111579895019531,1.36496505141258,-0.00048065185546875,-0.000112533569335938,1.36496496200562,-0.00048065185546875,-0.000108718872070313,1.36496496200562,-0.000464916229248047,-0.000111579895019531,1.36496496200562,-0.000464916229248047,-0.000107765197753906,1.36496496200562,-0.000463962554931641,-0.000102043151855469,1.36496496200562,-0.000464916229248047,-0.000102043151855469,1.36496496200562,-0.00048065185546875,-9.918212890625e-05,1.3649650812149,-0.000463962554931641,-9.63211059570313e-05,1.3649650812149,-0.00048065185546875,-0.000101089477539063,1.36496506631374,-0.000464916229248047,-9.82284545898438e-05,1.36496499180794,-0.000463962554931641,-9.72747802734375e-05,1.3649650812149,-0.00048065185546875,-0.000101089477539063,1.36496490240097,-0.000463962554931641,-9.72747802734375e-05,1.3649650812149,-0.00048065185546875,-9.918212890625e-05,1.36496514081955,-0.000464439392089844,-9.44137573242188e-05,1.36496472358704,-0.000463962554931641,-0.000102043151855469,1.36496472358704,-0.000464916229248047,-0.000107765197753906,1.36496460437775,-0.000464916229248047,-0.000102043151855469,1.36496460437775,-0.000464439392089844,-0.0001068115234375,1.3649650812149,-0.000464916229248047, +-0.000110626220703125,1.3649650812149,-0.000496387481689453,-0.000107765197753906,1.36496505141258,-0.00048065185546875,-0.000107765197753906,1.36496496200562,-0.00048065185546875,-9.918212890625e-05,1.36496520042419,-0.00048065185546875,-0.000102996826171875,1.36496502161026,-0.00048065185546875,-0.000107765197753906,1.3649650812149,-0.00048065185546875,-9.918212890625e-05,1.36496472358704,-0.00048065185546875,-0.000102996826171875,1.36496472358704,-0.000143527984619141,-0.00014042854309082,1.36496531963348,-0.000144481658935547,-0.00012516975402832,1.36496496200562,-0.000144481658935547,-0.000138282775878906,1.36496460437775,-0.000224590301513672,-0.000138759613037109,1.36496496200562,-0.00016021728515625,-6.77108764648438e-05,1.3649650812149,-0.000144481658935547,-9.72747802734375e-05,1.36496496200562,-0.000207901000976563,-4.43458557128906e-05,1.36496460437775,-0.000175952911376953,-5.03063201904297e-05,1.36496567726135,-0.000288963317871094,-6.00814819335938e-05,1.36496543884277,-0.000256061553955078,-4.91142272949219e-05,1.3649650812149,-0.000352859497070313,-8.67843627929688e-05,1.36496520042419,-0.0003204345703125,-7.34329223632813e-05,1.36496531963348,-0.000416278839111328,-9.1552734375e-05,1.36496484279633,-0.000384807586669922,-9.1552734375e-05,1.36496496200562,-0.000449180603027344,-9.25064086914063e-05,1.36496496200562,-0.000448226928710938,-9.25064086914063e-05,1.3649650812149,-0.000463962554931641,-9.63211059570313e-05,1.3649650812149,-0.00048065185546875,-0.000108718872070313,1.3649650812149,-0.00048065185546875,-0.000102996826171875,1.36496496200562,-0.000448226928710938,-0.000111579895019531,1.36496537923813,-0.000464916229248047,-0.000111579895019531,1.36496472358704,-0.000416278839111328,-0.000116348266601563,1.3649650812149,-0.000432491302490234,-0.000115394592285156,1.3649650812149,-0.000352859497070313,-0.000115871429443359,1.36496543884277,-0.000384330749511719,-0.000115871429443359,1.3649650812149,-0.000288486480712891,-0.000118732452392578,1.36496496200562,-0.0003204345703125,-0.000116348266601563, +1.36496531963348,-0.000240325927734375,-0.000113487243652344,1.36496460437775,-0.000256538391113281,-0.000115871429443359,1.36496460437775,-0.000207901000976563,-0.000116825103759766,1.36496496200562,-0.000224590301513672,-0.000112533569335938,1.36496472358704,-0.000224113464355469,-0.000129222869873047,1.36496496200562,-0.000208854675292969,-0.000127315521240234,1.36496496200562,-0.000192165374755859,-0.000136375427246094,1.36496496200562,-0.000128269195556641,-0.000139474868774414,1.36496496200562,-0.000128746032714844,-0.000123739242553711,1.36496496200562,-0.000128269195556641,-0.000136852264404297,1.36496496200562,-0.000192642211914063,-0.000110626220703125,1.36496496200562,-0.000192165374755859,-0.000123023986816406,1.36496520042419,-0.000224590301513672,-0.000102996826171875,1.36496496200562,-0.000208377838134766,-0.000104427337646484,1.3649650812149,-0.000288963317871094,-0.000108242034912109,1.36496484279633,-0.000256061553955078,-0.000104427337646484,1.36496496200562,-0.000352382659912109,-0.000116825103759766,1.3649650812149,-0.0003204345703125,-0.000113010406494141,1.36496496200562,-0.000417232513427734,-0.000120162963867188,1.3649650812149,-0.000384807586669922,-0.000120162963867188,1.36496496200562,-0.000448226928710938,-0.000111579895019531,1.36496496200562,-0.000432968139648438,-0.000115394592285156,1.3649650812149,-0.000464439392089844,-0.0001068115234375,1.36496496200562,-0.000464916229248047,-0.000110626220703125,1.36496496200562,-0.00048065185546875,-0.000102996826171875,1.36496496200562,-0.000448703765869141,-9.1552734375e-05,1.36496520042419,-0.000464439392089844,-9.44137573242188e-05,1.36496496200562,-0.000416755676269531,-8.67843627929688e-05,1.36496496200562,-0.000448226928710938,-8.96453857421875e-05,1.3649650812149,-0.000352859497070313,-8.29696655273438e-05,1.36496496200562,-0.000384807586669922,-8.63075256347656e-05,1.3649650812149,-0.000288009643554688,-5.340576171875e-05,1.36496496200562,-0.0003204345703125,-6.91413879394531e-05,1.36496496200562,-0.000207901000976563,-4.10079956054688e-05, +1.36496496200562,-0.000256061553955078,-4.33921813964844e-05,1.36496496200562,-0.00016021728515625,-6.34193420410156e-05,1.36496496200562,-0.000175952911376953,-4.60147857666016e-05,1.36496496200562,-0.000144481658935547,-9.41753387451172e-05,1.36496496200562,-0.000288963317871094,-0.000150203704833984,1.36496496200562,-0.000288009643554688,-0.000134468078613281,1.36496496200562,-0.000288486480712891,-0.000142097473144531,1.22847032546997,-0.000173091888427734,-0.000131607055664063,1.228471159935,-0.000173091888427734,-0.000131607055664063,1.22847068309784,-0.000202178955078125,-0.000126361846923828,1.22847064770758,-0.000274181365966797,-0.000136852264404297,1.22847068309784,-0.000202178955078125,-0.000126361846923828,1.22847068309784,-0.000158786773681641,-0.000121116638183594,1.22847092151642,-0.000158786773681641,-0.000121116638183594,1.22847068309784,-0.000231266021728516,-0.000131607055664063,1.22847104072571,-0.000230312347412109,-0.000131130218505859,1.22847056388855,-0.000258922576904297,-0.000134944915771484,1.22847068309784,-0.000202655792236328,-0.000123977661132813,1.22847068309784,-0.000173568725585938,-0.000128269195556641,1.22847068309784,-0.000173568725585938,-0.000128269195556641,1.22847092151642,-0.000173091888427734,-0.000123023986816406,1.22847092151642,-0.000202178955078125,-0.000125408172607422,1.22847068309784,-0.000173091888427734,-0.000123023986816406,1.22847068309784,-0.000259876251220703,-0.000135421752929688,1.22840416431427,-0.000216007232666016,-0.000131607055664063,1.22847064211965,-0.000303268432617188,-0.000156402587890625,1.22853767871857,-0.000216007232666016,-0.000132083892822266,1.22847064398229,-0.000461578369140625,-8.20159912109375e-05,1.22852694988251,-0.000447273254394531,-8.10623168945313e-05,1.22854840755463,-0.00038909912109375,-7.82012939453125e-05,1.22857689857483,-0.000303268432617188,-6.96182250976563e-05,1.22857856750488,-0.000245094299316406,-6.19888305664063e-05,1.22847064398229,-0.000447273254394531,-0.000149726867675781,1.22852408885956,-0.000432968139648438,-0.000147819519042969, +1.22854864597321,-0.00037384033203125,-0.000144004821777344,1.22857975959778,-0.000303268432617188,-0.000134944915771484,1.22858262062073,-0.000246047973632813,-0.000126361846923828,1.22850143909454,-0.000447273254394531,-0.000121116638183594,1.22850167751312,-0.000447273254394531,-8.10623168945313e-05,1.22852170467377,-0.000432491302490234,-0.000123023986816406,1.22850322723389,-0.000432014465332031,-0.000149726867675781,1.22847064398229,-0.000446796417236328,-0.000123977661132813,1.22853577136993,-0.000403404235839844,-0.000118255615234375,1.22854340076447,-0.000418663024902344,-8.0108642578125e-05,1.22854650020599,-0.000374794006347656,-0.000111579895019531,1.22853672504425,-0.00040435791015625,-0.000146865844726563,1.22856187820435,-0.000346183776855469,-0.000112533569335938,1.22856068611145,-0.000345706939697266,-7.34329223632813e-05,1.22857332229614,-0.000302791595458984,-0.000104904174804688,1.22856378555298,-0.000347137451171875,-0.000140190124511719,1.2285795211792,-0.000274181365966797,-0.000115394592285156,1.22858309745789,-0.000274181365966797,-6.53266906738281e-05,1.22858047485352,-0.000244617462158203,-0.000101566314697266,1.22858119010925,-0.000274658203125,-0.000133037567138672,1.22849333286285,-0.000462055206298828,-0.000113487243652344,1.22847064398229,-0.000461578369140625,-0.000110626220703125,1.22849440574646,-0.000461578369140625,-8.10623168945313e-05,1.22850275039673,-0.000447750091552734,-0.000108718872070313,1.22848761081696,-0.000446796417236328,-0.000133514404296875,1.22853791713715,-0.000418663024902344,-0.000109672546386719,1.22852504253387,-0.000432491302490234,-0.000109672546386719,1.22854483127594,-0.000432968139648438,-7.72476196289063e-05,1.2285395860672,-0.000403881072998047,-0.000105857849121094,1.2285293340683,-0.000418663024902344,-0.000127792358398438,1.22855949401855,-0.000361442565917969,-0.000102043151855469,1.22854769229889,-0.000374794006347656,-0.000102996826171875,1.22855710983276,-0.000375270843505859,-7.34329223632813e-05,1.22856450080872,-0.000346660614013672,-9.918212890625e-05, +1.22855424880981,-0.000361442565917969,-0.000120162963867188,1.22858500480652,-0.000288486480712891,-8.96453857421875e-05,1.22857809066772,-0.000302314758300781,-9.20295715332031e-05,1.22858357429504,-0.000288486480712891,-6.67572021484375e-05,1.22858715057373,-0.000273227691650391,-8.7738037109375e-05,1.22857785224915,-0.000288963317871094,-0.000112533569335938,1.22851765155792,-0.000447750091552734,-0.000113487243652344,1.22851884365082,-0.000446796417236328,-8.20159912109375e-05,1.22851383686066,-0.000432491302490234,-0.000130653381347656,1.2285121679306,-0.000432491302490234,-0.000141143798828125,1.22852146625519,-0.000418186187744141,-0.000138282775878906,1.22851431369781,-0.000432968139648438,-0.000147819519042969,1.22850096225739,-0.000432491302490234,-0.000140190124511719,1.22848716378212,-0.000447750091552734,-0.000142097473144531,1.22848734259605,-0.000447273254394531,-0.000149726867675781,1.22847064398229,-0.000446796417236328,-0.000142097473144531,1.22854673862457,-0.000403881072998047,-0.000105857849121094,1.22854888439178,-0.000403404235839844,-7.72476196289063e-05,1.22853982448578,-0.000389575958251953,-0.000128746032714844,1.22854006290436,-0.00038909912109375,-0.000138282775878906,1.22854673862457,-0.000374794006347656,-0.000133514404296875,1.22854173183441,-0.00038909912109375,-0.000145912170410156,1.22853481769562,-0.00040435791015625,-0.000136375427246094,1.22852957248688,-0.000418186187744141,-0.000138282775878906,1.22853195667267,-0.000418663024902344,-0.000146865844726563,1.2285737991333,-0.000318050384521484,-9.77516174316406e-05,1.22857069969177,-0.000331878662109375,-6.96182250976563e-05,1.22856712341309,-0.000318050384521484,-0.000123500823974609,1.22856783866882,-0.000332355499267578,-0.000130653381347656,1.22857642173767,-0.000303745269775391,-0.000125885009765625,1.22857022285461,-0.000332832336425781,-0.000139236450195313,1.22856140136719,-0.000346660614013672,-0.000131607055664063,1.22855401039124,-0.000360965728759766,-0.000134468078613281,1.22855591773987,-0.000361442565917969,-0.000142097473144531, +1.22858667373657,-0.0002593994140625,-8.72611999511719e-05,1.22858548164368,-0.000258922576904297,-6.34193420410156e-05,1.22858142852783,-0.000245094299316406,-9.05990600585938e-05,1.22858023643494,-0.000245094299316406,-0.000110149383544922,1.22857999801636,-0.000245094299316406,-0.000123977661132813,1.22858071327209,-0.000245571136474609,-0.000118732452392578,1.22858190536499,-0.000245094299316406,-0.000131607055664063,1.2285795211792,-0.000274181365966797,-0.000124454498291016,1.2285783290863,-0.000288486480712891,-0.000125885009765625,1.22858047485352,-0.000288009643554688,-0.000133991241455078,1.22848019003868,-0.000461578369140625,-0.000110626220703125,1.22848057746887,-0.000476360321044922,-8.29696655273438e-05,1.22847962379456,-0.000447750091552734,-0.000142097473144531,1.2284799516201,-0.000446319580078125,-0.000149726867675781,1.22847962379456,-0.000447750091552734,-0.000131607055664063,1.22849404811859,-0.000446796417236328,-0.000142097473144531,1.22849524021149,-0.000447273254394531,-0.000148773193359375,1.22850143909454,-0.000446796417236328,-0.000110626220703125,1.22850108146667,-0.000462055206298828,-8.29696655273438e-05,1.22849535942078,-0.000446796417236328,-0.00012969970703125,1.22850823402405,-0.000447750091552734,-0.000111579895019531,1.22850799560547,-0.000461578369140625,-8.20159912109375e-05,1.22850668430328,-0.000432491302490234,-0.000140190124511719,1.22850906848907,-0.000432014465332031,-0.000147819519042969,1.22850704193115,-0.000432968139648438,-0.000128746032714844,1.22851717472076,-0.000432968139648438,-0.000140190124511719,1.22851955890656,-0.000432968139648438,-0.000148773193359375,1.22852456569672,-0.000433444976806641,-0.000111579895019531,1.22852671146393,-0.000447273254394531,-8.0108642578125e-05,1.22851979732513,-0.000432491302490234,-0.000127792358398438,1.22853124141693,-0.000432491302490234,-0.000108718872070313,1.22853648662567,-0.000446796417236328,-7.82012939453125e-05,1.22852551937103,-0.000417709350585938,-0.000139236450195313,1.22852838039398,-0.000417709350585938,-0.000147819519042969, +1.22852456569672,-0.000418663024902344,-0.000124931335449219,1.22853267192841,-0.000403404235839844,-0.000138282775878906,1.22853457927704,-0.000403404235839844,-0.00014495849609375,1.22854030132294,-0.000417232513427734,-0.000108718872070313,1.22854673862457,-0.000418663024902344,-7.82012939453125e-05,1.22853434085846,-0.000403881072998047,-0.000123023986816406,1.2285441160202,-0.00040435791015625,-0.000105857849121094,1.22854840755463,-0.000418186187744141,-7.82012939453125e-05,1.22853672504425,-0.000403881072998047,-0.0001373291015625,1.22853863239288,-0.00040435791015625,-0.000144004821777344,1.22853624820709,-0.000403881072998047,-0.000123977661132813,1.22854340076447,-0.00038909912109375,-0.000134468078613281,1.22854506969452,-0.00038909912109375,-0.000144004821777344,1.22854864597321,-0.000389575958251953,-0.000102996826171875,1.22854971885681,-0.00038909912109375,-7.53402709960938e-05,1.22854387760162,-0.000389575958251953,-0.000119209289550781,1.22855305671692,-0.000375270843505859,-0.000102043151855469,1.22855257987976,-0.00038909912109375,-7.2479248046875e-05,1.22855043411255,-0.000374794006347656,-0.000134468078613281,1.2285521030426,-0.00037384033203125,-0.000144004821777344,1.2285487651825,-0.000374317169189453,-0.000121116638183594,1.2285578250885,-0.000360965728759766,-0.000132560729980469,1.22855973243713,-0.000361442565917969,-0.000142097473144531,1.22856521606445,-0.000346660614013672,-9.918212890625e-05,1.22856163978577,-0.000345706939697266,-7.2479248046875e-05,1.22856140136719,-0.000346660614013672,-0.000118255615234375,1.22856974601746,-0.000346660614013672,-9.72747802734375e-05,1.22856664657593,-0.000346660614013672,-7.15255737304688e-05,1.22856473922729,-0.000331401824951172,-0.000131607055664063,1.22856712341309,-0.000331878662109375,-0.000139236450195313,1.2285635471344,-0.000331878662109375,-0.000119209289550781,1.22857213020325,-0.000318050384521484,-0.000128746032714844,1.22857451438904,-0.000316619873046875,-0.000136852264404297,1.22857880592346,-0.000302791595458984,-9.44137573242188e-05, +1.22857666015625,-0.000302791595458984,-6.77108764648438e-05,1.22857165336609,-0.000302791595458984,-0.000115394592285156,1.2284804880619,-0.000461578369140625,-9.1552734375e-05,1.22847064398229,-0.000462055206298828,-9.25064086914063e-05,1.22858738899231,-0.000258922576904297,-7.10487365722656e-05,1.22858071327209,-0.000245094299316406,-7.10487365722656e-05,1.22850251197815,-0.000447273254394531,-9.1552734375e-05,1.22850847244263,-0.000446796417236328,-9.1552734375e-05,1.22851932048798,-0.000447273254394531,-8.96453857421875e-05,1.22852718830109,-0.000446796417236328,-8.7738037109375e-05,1.22850263118744,-0.000461578369140625,-8.96453857421875e-05,1.22852742671967,-0.000432491302490234,-8.7738037109375e-05,1.22849524021149,-0.000461101531982422,-9.1552734375e-05,1.22853577136993,-0.000432968139648438,-8.86917114257813e-05,1.2285441160202,-0.000432491302490234,-8.86917114257813e-05,1.22854578495026,-0.000418186187744141,-8.96453857421875e-05,1.22854316234589,-0.000418186187744141,-8.7738037109375e-05,1.22854793071747,-0.000418186187744141,-8.67843627929688e-05,1.22854948043823,-0.00040435791015625,-8.48770141601563e-05,1.22855019569397,-0.00038909912109375,-8.392333984375e-05,1.22854864597321,-0.00038909912109375,-8.48770141601563e-05,1.22855401039124,-0.000389575958251953,-8.29696655273438e-05,1.22855949401855,-0.000374794006347656,-8.20159912109375e-05,1.22856378555298,-0.000346660614013672,-8.10623168945313e-05,1.2285623550415,-0.000345706939697266,-8.10623168945313e-05,1.22856903076172,-0.000346660614013672,-7.91549682617188e-05,1.2285737991333,-0.000331878662109375,-7.82012939453125e-05,1.22857928276062,-0.000303268432617188,-7.72476196289063e-05,1.2285783290863,-0.000302791595458984,-7.53402709960938e-05,1.22858548164368,-0.000288963317871094,-7.43865966796875e-05,1.22858643531799,-0.000274181365966797,-7.2479248046875e-05,1.22847064398229,-0.000461578369140625,-8.10623168945313e-05,1.22852289676666,-0.000432968139648438,-8.10623168945313e-05,1.2285441160202,-0.00038909912109375,-7.82012939453125e-05,1.22856640815735, +-0.000302791595458984,-6.91413879394531e-05,1.22857165336609,-0.000245094299316406,-6.19888305664063e-05,1.22847064211965,-0.000417232513427734,-0.000153541564941406,1.22847064398229,-0.000374794006347656,-0.000164985656738281,1.22849988937378,-0.000447273254394531,-0.000120162963867188,1.22850072383881,-0.000446796417236328,-8.10623168945313e-05,1.22851812839508,-0.000418186187744141,-0.000123977661132813,1.22847064398229,-0.000432491302490234,-0.000147819519042969,1.22847064398229,-0.000447273254394531,-0.000123977661132813,1.22853076457977,-0.000403881072998047,-0.000119209289550781,1.2285383939743,-0.000418186187744141,-7.72476196289063e-05,1.22854197025299,-0.000374317169189453,-0.000111579895019531,1.22847064398229,-0.000403881072998047,-0.000161170959472656,1.22855019569397,-0.000331878662109375,-0.000111579895019531,1.22855305671692,-0.000346660614013672,-7.34329223632813e-05,1.22856426239014,-0.000288486480712891,-0.000108718872070313,1.22856593132019,-0.000259876251220703,-0.00011444091796875,1.22856712341309,-0.000274181365966797,-6.38961791992188e-05,1.22856855392456,-0.000245094299316406,-0.000102519989013672,1.22848692536354,-0.000446796417236328,-0.000110626220703125,1.22847064398229,-0.000446796417236328,-0.000110626220703125,1.22848853468895,-0.000461578369140625,-8.20159912109375e-05,1.22850120067596,-0.000446796417236328,-0.000110626220703125,1.22848534584045,-0.000447750091552734,-0.000132560729980469,1.2285248041153,-0.000418186187744141,-0.000109672546386719,1.22852003574371,-0.000432491302490234,-0.000111579895019531,1.22853267192841,-0.000432491302490234,-7.91549682617188e-05,1.22853267192841,-0.00040435791015625,-0.0001068115234375,1.22852146625519,-0.000417709350585938,-0.000125885009765625,1.22853982448578,-0.000360965728759766,-0.000100135803222656,1.22854244709015,-0.000375270843505859,-0.000102996826171875,1.22854173183441,-0.000360488891601563,-7.34329223632813e-05,1.22854864597321,-0.000346660614013672,-0.000101089477539063,1.22854292392731,-0.000360965728759766,-0.0001220703125,1.22856187820435, +-0.000288486480712891,-8.96453857421875e-05,1.22856402397156,-0.000288486480712891,-9.48905944824219e-05,1.22856569290161,-0.000288963317871094,-6.67572021484375e-05,1.22856307029724,-0.000274181365966797,-8.82148742675781e-05,1.22856497764587,-0.000288486480712891,-0.000112533569335938,1.22851002216339,-0.000432491302490234,-0.000111579895019531,1.22851312160492,-0.000447750091552734,-8.0108642578125e-05,1.2285064458847,-0.000432491302490234,-0.00012969970703125,1.22850573062897,-0.000432968139648438,-0.000136375427246094,1.22851383686066,-0.000418186187744141,-0.0001373291015625,1.22847064398229,-0.000432968139648438,-0.000150680541992188,1.22849595546722,-0.000432491302490234,-0.000138282775878906,1.22848495841026,-0.000447273254394531,-0.000139236450195313,1.22847064398229,-0.000432968139648438,-0.000145912170410156,1.22847064398229,-0.000447273254394531,-0.000138282775878906,1.22853314876556,-0.000389575958251953,-0.000102996826171875,1.22853672504425,-0.000403881072998047,-7.43865966796875e-05,1.22853171825409,-0.00038909912109375,-0.000123023986816406,1.22853171825409,-0.00038909912109375,-0.000132560729980469,1.22853720188141,-0.000374794006347656,-0.000132560729980469,1.22847064398229,-0.000389575958251953,-0.000162124633789063,1.22852694988251,-0.000403881072998047,-0.000134468078613281,1.22852122783661,-0.000418663024902344,-0.000135421752929688,1.22847064398229,-0.000418186187744141,-0.000155448913574219,1.22855257987976,-0.000317573547363281,-9.48905944824219e-05,1.22855639457703,-0.000317573547363281,-6.96182250976563e-05,1.22855401039124,-0.000317573547363281,-0.000120639801025391,1.22855472564697,-0.000317573547363281,-0.000126838684082031,1.22855806350708,-0.000288486480712891,-0.000125885009765625,1.22854948043823,-0.000346660614013672,-0.000128746032714844,1.22854244709015,-0.000360965728759766,-0.000130653381347656,1.22847064398229,-0.000360965728759766,-0.000165939331054688,1.22856521606445,-0.0002593994140625,-8.72611999511719e-05,1.22856855392456,-0.000259876251220703,-6.29425048828125e-05,1.22856855392456, +-0.000244617462158203,-9.05990600585938e-05,1.22856783866882,-0.000245094299316406,-0.000109195709228516,1.22856092453003,-0.000244617462158203,-0.000120639801025391,1.22856211662292,-0.000259876251220703,-0.0001220703125,1.22856044769287,-0.000274181365966797,-0.000124454498291016,1.22847732901573,-0.000447750091552734,-0.000110626220703125,1.22847779095173,-0.000462055206298828,-8.20159912109375e-05,1.22847901284695,-0.000446796417236328,-0.000139236450195313,1.22847872972488,-0.000447750091552734,-0.000131607055664063,1.22848987579346,-0.000432968139648438,-0.000139236450195313,1.22849655151367,-0.000447273254394531,-0.000110626220703125,1.22849702835083,-0.000461101531982422,-8.0108642578125e-05,1.2284928560257,-0.000432491302490234,-0.000128746032714844,1.2285031080246,-0.000447750091552734,-0.000110626220703125,1.22850382328033,-0.000447273254394531,-8.0108642578125e-05,1.22850108146667,-0.000432968139648438,-0.0001373291015625,1.22850263118744,-0.000432968139648438,-0.000127792358398438,1.22850930690765,-0.000418663024902344,-0.000136375427246094,1.22851669788361,-0.000432491302490234,-0.000109672546386719,1.22851979732513,-0.000447750091552734,-7.91549682617188e-05,1.2285133600235,-0.000418663024902344,-0.000126838684082031,1.22852003574371,-0.000418186187744141,-0.000108718872070313,1.22852671146393,-0.000432491302490234,-7.91549682617188e-05,1.22851765155792,-0.000418186187744141,-0.000136375427246094,1.22851765155792,-0.000417232513427734,-0.000126838684082031,1.2285236120224,-0.000403404235839844,-0.000136375427246094,1.22852957248688,-0.000403404235839844,-0.000107765197753906,1.22853648662567,-0.000417709350585938,-7.91549682617188e-05,1.22852742671967,-0.000403881072998047,-0.0001220703125,1.22853052616119,-0.000403881072998047,-0.000105857849121094,1.22853577136993,-0.000403404235839844,-7.82012939453125e-05,1.2285293340683,-0.00038909912109375,-0.000133514404296875,1.2285293340683,-0.000403881072998047,-0.000123023986816406,1.2285338640213,-0.00038909912109375,-0.000132560729980469,1.22853744029999, +-0.000389575958251953,-0.000102996826171875,1.22854006290436,-0.00038909912109375,-7.62939453125e-05,1.22853577136993,-0.000375747680664063,-0.000118255615234375,1.22854030132294,-0.000375270843505859,-0.000102043151855469,1.22854220867157,-0.000374317169189453,-7.43865966796875e-05,1.22854006290436,-0.000374794006347656,-0.000132560729980469,1.22854173183441,-0.000375270843505859,-0.000118255615234375,1.2285453081131,-0.000360965728759766,-0.000131607055664063,1.22854483127594,-0.000346183776855469,-0.000100135803222656,1.22854697704315,-0.000346660614013672,-7.15255737304688e-05,1.22854864597321,-0.000346660614013672,-0.000118255615234375,1.22854912281036,-0.000332355499267578,-9.67979431152344e-05,1.22855257987976,-0.000332355499267578,-7.00950622558594e-05,1.22855186462402,-0.000331878662109375,-0.00012969970703125,1.22855114936829,-0.000331878662109375,-0.000118732452392578,1.22855687141418,-0.000302791595458984,-0.000126361846923828,1.22855854034424,-0.000302314758300781,-9.48905944824219e-05,1.22856163978577,-0.000302791595458984,-6.81877136230469e-05,1.22855949401855,-0.000302791595458984,-0.000117301940917969,1.22847694158554,-0.000462055206298828,-9.1552734375e-05,1.22847064398229,-0.000461578369140625,-9.25064086914063e-05,1.22856521606445,-0.000259876251220703,-7.00950622558594e-05,1.22856903076172,-0.000245571136474609,-7.05718994140625e-05,1.22850120067596,-0.000446796417236328,-8.96453857421875e-05,1.22850334644318,-0.000447273254394531,-9.05990600585938e-05,1.22851192951202,-0.000447750091552734,-9.1552734375e-05,1.22851884365082,-0.000432968139648438,-8.7738037109375e-05,1.22849726676941,-0.000447750091552734,-8.7738037109375e-05,1.22852218151093,-0.000432491302490234,-9.05990600585938e-05,1.22848784923553,-0.000461578369140625,-9.1552734375e-05,1.22852265834808,-0.000432491302490234,-8.7738037109375e-05,1.2285281419754,-0.000418663024902344,-8.86917114257813e-05,1.22853243350983,-0.000418663024902344,-8.67843627929688e-05,1.22853577136993,-0.000418663024902344,-8.67843627929688e-05,1.22853243350983, +-0.000403404235839844,-8.58306884765625e-05,1.2285338640213,-0.00038909912109375,-8.48770141601563e-05,1.22853767871857,-0.000389575958251953,-8.48770141601563e-05,1.22854363918304,-0.00038909912109375,-8.48770141601563e-05,1.2285407781601,-0.000375270843505859,-8.29696655273438e-05,1.22853934764862,-0.000360965728759766,-8.0108642578125e-05,1.2285441160202,-0.000346660614013672,-8.0108642578125e-05,1.22855019569397,-0.000346183776855469,-7.91549682617188e-05,1.22855019569397,-0.000331401824951172,-8.0108642578125e-05,1.22855305671692,-0.000317096710205078,-7.86781311035156e-05,1.22855854034424,-0.000303745269775391,-7.62939453125e-05,1.22856402397156,-0.000302314758300781,-7.62939453125e-05,1.22856187820435,-0.000288486480712891,-7.48634338378906e-05,1.22856330871582,-0.000274181365966797,-7.2479248046875e-05,1.22847899794579,-0.000461578369140625,-8.10623168945313e-05,1.22847064398229,-0.000461101531982422,-7.91549682617188e-05,1.22849059104919,-0.000462055206298828,-8.0108642578125e-05,1.22849893569946,-0.000462055206298828,-7.72476196289063e-05,1.22850120067596,-0.000446796417236328,-8.10623168945313e-05,1.22850596904755,-0.000446796417236328,-8.0108642578125e-05,1.22851622104645,-0.000447750091552734,-8.0108642578125e-05,1.22852337360382,-0.000446796417236328,-7.72476196289063e-05,1.22852504253387,-0.000432968139648438,-7.91549682617188e-05,1.22853195667267,-0.000432491302490234,-7.72476196289063e-05,1.2285395860672,-0.000432491302490234,-7.62939453125e-05,1.22854244709015,-0.000418186187744141,-7.53402709960938e-05,1.22854125499725,-0.000418186187744141,-7.72476196289063e-05,1.22854220867157,-0.000418186187744141,-7.72476196289063e-05,1.22854292392731,-0.000403881072998047,-7.43865966796875e-05,1.22854506969452,-0.00038909912109375,-7.62939453125e-05,1.22854626178741,-0.000389575958251953,-7.62939453125e-05,1.22854745388031,-0.000375270843505859,-7.43865966796875e-05,1.22854924201965,-0.000375747680664063,-7.43865966796875e-05,1.22855424880981,-0.000345706939697266,-7.2479248046875e-05,1.22855639457703,-0.000346660614013672, +-7.2479248046875e-05,1.22855997085571,-0.000331878662109375,-6.96182250976563e-05,1.22856378555298,-0.000317096710205078,-6.96182250976563e-05,1.22856950759888,-0.000302314758300781,-6.72340393066406e-05,1.22857189178467,-0.000302314758300781,-6.866455078125e-05,1.22857475280762,-0.000288486480712891,-6.4849853515625e-05,1.22857522964478,-0.000274181365966797,-6.62803649902344e-05,1.22857713699341,-0.000259876251220703,-6.19888305664063e-05,1.22857522964478,-0.000245094299316406,-6.103515625e-05,1.2284799516201,-0.000447750091552734,-0.000134468078613281,1.22847064398229,-0.000447273254394531,-0.000130653381347656,1.22852146625519,-0.000418186187744141,-0.000127792358398438,1.22851884365082,-0.000432968139648438,-0.00012969970703125,1.22851359844208,-0.000432968139648438,-0.000134468078613281,1.22850692272186,-0.000432491302490234,-0.000131607055664063,1.2285248041153,-0.000418663024902344,-0.000130653381347656,1.22850108146667,-0.000446796417236328,-0.000125885009765625,1.2285293340683,-0.000418663024902344,-0.000130653381347656,1.22849500179291,-0.000447750091552734,-0.000133514404296875,1.22853362560272,-0.00040435791015625,-0.000125885009765625,1.22848716378212,-0.000447273254394531,-0.000136375427246094,1.2285350561142,-0.000403881072998047,-0.0001220703125,1.22853624820709,-0.000403881072998047,-0.000126838684082031,1.22853982448578,-0.000389575958251953,-0.000132560729980469,1.22854363918304,-0.000389575958251953,-0.000125885009765625,1.22854626178741,-0.000375270843505859,-0.000117301940917969,1.22854924201965,-0.000374317169189453,-0.000123023986816406,1.22855424880981,-0.000360965728759766,-0.000125885009765625,1.22856044769287,-0.000346660614013672,-0.0001220703125,1.22856187820435,-0.000346660614013672,-0.000117301940917969,1.22856378555298,-0.000331878662109375,-0.0001220703125,1.22856760025024,-0.000317573547363281,-0.000125885009765625,1.22857189178467,-0.000302791595458984,-0.000118732452392578,1.22857451438904,-0.000302791595458984,-0.000110626220703125,1.22857785224915,-0.000288486480712891,-0.000116348266601563, +1.2285795211792,-0.000274181365966797,-0.000117778778076172,1.22857999801636,-0.000245094299316406,-0.000113010406494141,1.22858047485352,-0.000244617462158203,-0.000106334686279297,1.22856760025024,-0.000245094299316406,-0.000105857849121094,1.22856616973877,-0.000244617462158203,-0.000113487243652344,1.2284799516201,-0.000446796417236328,-0.000128746032714844,1.22847064398229,-0.000446796417236328,-0.000121116638183594,1.22847826778889,-0.000447273254394531,-0.000123977661132813,1.22847064398229,-0.000446796417236328,-0.000120162963867188,1.2284904718399,-0.000447750091552734,-0.000127792358398438,1.22849762439728,-0.000447273254394531,-0.000124931335449219,1.22850179672241,-0.000447273254394531,-0.000118255615234375,1.22850751876831,-0.000433444976806641,-0.000125885009765625,1.22851502895355,-0.000432491302490234,-0.000126838684082031,1.22852146625519,-0.000432491302490234,-0.000123023986816406,1.22852265834808,-0.000432968139648438,-0.000120162963867188,1.22852623462677,-0.000418663024902344,-0.0001220703125,1.22853195667267,-0.000418663024902344,-0.000123977661132813,1.22853624820709,-0.000403404235839844,-0.000118255615234375,1.22853696346283,-0.000403881072998047,-0.000115394592285156,1.22853863239288,-0.000403404235839844,-0.000119209289550781,1.22854197025299,-0.000389575958251953,-0.000123977661132813,1.2285453081131,-0.00038909912109375,-0.000116348266601563,1.22854673862457,-0.000374317169189453,-0.000108718872070313,1.22855043411255,-0.000374794006347656,-0.000115394592285156,1.22855639457703,-0.000360965728759766,-0.000116348266601563,1.22856330871582,-0.000346183776855469,-0.000112533569335938,1.22856307029724,-0.000346660614013672,-0.000108718872070313,1.22856545448303,-0.000332355499267578,-0.000113487243652344,1.22856974601746,-0.000317096710205078,-0.000117301940917969,1.22857403755188,-0.000302791595458984,-0.000110626220703125,1.22857522964478,-0.000302314758300781,-0.000102996826171875,1.22858023643494,-0.000288486480712891,-0.0001068115234375,1.22858309745789,-0.000274181365966797,-0.000107765197753906, +1.22858285903931,-0.000245571136474609,-0.000103950500488281,1.22858071327209,-0.000244617462158203,-0.000100135803222656,1.22856855392456,-0.000245571136474609,-9.918212890625e-05,1.22856616973877,-0.000244617462158203,-0.000102996826171875,1.22856378555298,-0.000274181365966797,-0.000107288360595703,1.22856283187866,-0.000288963317871094,-0.000107765197753906,1.22856378555298,-0.000288963317871094,-0.000105857849121094,1.22855854034424,-0.000303745269775391,-0.000110626220703125,1.22855281829834,-0.000317096710205078,-0.000115394592285156,1.22854971885681,-0.000331878662109375,-0.000113010406494141,1.22854971885681,-0.000346660614013672,-0.000108718872070313,1.22854697704315,-0.000346183776855469,-0.000112533569335938,1.22854149341583,-0.000360488891601563,-0.000117301940917969,1.22854101657867,-0.000374794006347656,-0.000117301940917969,1.22854220867157,-0.000374317169189453,-0.000110626220703125,1.22853624820709,-0.000375270843505859,-0.000113487243652344,1.22853171825409,-0.000389575958251953,-0.000118255615234375,1.2285293340683,-0.000403404235839844,-0.000117301940917969,1.22853100299835,-0.000403404235839844,-0.00011444091796875,1.22852742671967,-0.000403404235839844,-0.000119209289550781,1.22852170467377,-0.000418663024902344,-0.0001220703125,1.2285178899765,-0.000418663024902344,-0.000121116638183594,1.22851860523224,-0.000432491302490234,-0.000118255615234375,1.22851407527924,-0.000432968139648438,-0.0001220703125,1.22850692272186,-0.000432968139648438,-0.000123977661132813,1.22850239276886,-0.000432491302490234,-0.000123023986816406,1.22850036621094,-0.000447273254394531,-0.000117301940917969,1.22849380970001,-0.000433444976806641,-0.000123023986816406,1.22848543524742,-0.000447273254394531,-0.000127792358398438,1.2285521030426,-0.000258922576904297,-0.000128269195556641,1.22853481769562,-0.000244617462158203,-0.000138759613037109,1.22854387760162,-0.000317573547363281,-0.000141620635986328,1.22853982448578,-0.000346660614013672,-0.000143051147460938,1.22853600978851,-0.000360965728759766,-0.000142097473144531, +1.22852861881256,-0.000374794006347656,-0.000144004821777344,1.22852599620819,-0.00038909912109375,-0.000142097473144531,1.22851860523224,-0.000403881072998047,-0.00014495849609375,1.22851407527924,-0.000417709350585938,-0.000142097473144531,1.22850561141968,-0.000417232513427734,-0.000143051147460938,1.22849833965302,-0.000432968139648438,-0.000141143798828125,1.22848811745644,-0.000432968139648438,-0.000143051147460938,1.22848090529442,-0.000432491302490234,-0.000142097473144531,1.22841465473175,-0.000447273254394531,-8.10623168945313e-05,1.22839343547821,-0.00038909912109375,-7.82012939453125e-05,1.22836399078369,-0.000303268432617188,-6.96182250976563e-05,1.22836256027222,-0.000245094299316406,-6.19888305664063e-05,1.22841739654541,-0.000432968139648438,-0.000147819519042969,1.22839272022247,-0.00037384033203125,-0.000144004821777344,1.22836184501648,-0.000303268432617188,-0.000134944915771484,1.22835898399353,-0.000246047973632813,-0.000126361846923828,1.22844016551971,-0.000447273254394531,-0.000121116638183594,1.22843968868256,-0.000447273254394531,-8.10623168945313e-05,1.22841966152191,-0.000432491302490234,-0.000123023986816406,1.22843825817108,-0.000432014465332031,-0.000149726867675781,1.22840571403503,-0.000403404235839844,-0.000118255615234375,1.22839784622192,-0.000418663024902344,-8.0108642578125e-05,1.22839498519897,-0.000374794006347656,-0.000111579895019531,1.22840464115143,-0.00040435791015625,-0.000146865844726563,1.22837924957275,-0.000346183776855469,-0.000112533569335938,1.22838091850281,-0.000345706939697266,-7.34329223632813e-05,1.22836804389954,-0.000302791595458984,-0.000104904174804688,1.22837734222412,-0.000347137451171875,-0.000140190124511719,1.22836184501648,-0.000274181365966797,-0.000115394592285156,1.22835779190063,-0.000274181365966797,-6.53266906738281e-05,1.22836112976074,-0.000244617462158203,-0.000101566314697266,1.22835898399353,-0.000274658203125,-0.000133037567138672,1.22844779491425,-0.000462055206298828,-0.000113487243652344,1.22844707965851,-0.000461578369140625,-8.10623168945313e-05, +1.22843861579895,-0.000447750091552734,-0.000108718872070313,1.22845351696014,-0.000446796417236328,-0.000133514404296875,1.22840356826782,-0.000418663024902344,-0.000109672546386719,1.2284163236618,-0.000432491302490234,-0.000109672546386719,1.22839665412903,-0.000432968139648438,-7.72476196289063e-05,1.22840178012848,-0.000403881072998047,-0.000105857849121094,1.22841203212738,-0.000418663024902344,-0.000127792358398438,1.22838163375854,-0.000361442565917969,-0.000102043151855469,1.22839403152466,-0.000374794006347656,-0.000102996826171875,1.22838425636292,-0.000375270843505859,-7.34329223632813e-05,1.22837710380554,-0.000346660614013672,-9.918212890625e-05,1.22838687896729,-0.000361442565917969,-0.000120162963867188,1.22835636138916,-0.000288486480712891,-8.96453857421875e-05,1.22836303710938,-0.000302314758300781,-9.20295715332031e-05,1.22835803031921,-0.000288486480712891,-6.67572021484375e-05,1.22835421562195,-0.000273227691650391,-8.7738037109375e-05,1.22836351394653,-0.000288963317871094,-0.000112533569335938,1.22842383384705,-0.000447750091552734,-0.000113487243652344,1.22842276096344,-0.000446796417236328,-8.20159912109375e-05,1.22842752933502,-0.000432491302490234,-0.000130653381347656,1.22842943668365,-0.000432491302490234,-0.000141143798828125,1.22842001914978,-0.000418186187744141,-0.000138282775878906,1.22842681407928,-0.000432968139648438,-0.000147819519042969,1.22844076156616,-0.000432491302490234,-0.000140190124511719,1.22845405340195,-0.000447750091552734,-0.000142097473144531,1.2284542620182,-0.000447273254394531,-0.000149726867675781,1.22839426994324,-0.000403881072998047,-0.000105857849121094,1.22839283943176,-0.000403404235839844,-7.72476196289063e-05,1.22840166091919,-0.000389575958251953,-0.000128746032714844,1.2284015417099,-0.00038909912109375,-0.000138282775878906,1.22839510440826,-0.000374794006347656,-0.000133514404296875,1.22840023040771,-0.00038909912109375,-0.000145912170410156,1.22840654850006,-0.00040435791015625,-0.000136375427246094,1.22841143608093,-0.000418186187744141,-0.000138282775878906, +1.22840929031372,-0.000418663024902344,-0.000146865844726563,1.22836780548096,-0.000318050384521484,-9.77516174316406e-05,1.22837042808533,-0.000331878662109375,-6.96182250976563e-05,1.22837352752686,-0.000318050384521484,-0.000123500823974609,1.2283730506897,-0.000332355499267578,-0.000130653381347656,1.22836470603943,-0.000303745269775391,-0.000125885009765625,1.22837114334106,-0.000332832336425781,-0.000139236450195313,1.22837972640991,-0.000346660614013672,-0.000131607055664063,1.22838735580444,-0.000360965728759766,-0.000134468078613281,1.22838521003723,-0.000361442565917969,-0.000142097473144531,1.22835493087769,-0.0002593994140625,-8.72611999511719e-05,1.228355884552,-0.000258922576904297,-6.34193420410156e-05,1.22836017608643,-0.000245094299316406,-9.05990600585938e-05,1.22836136817932,-0.000245094299316406,-0.000110149383544922,1.22836089134216,-0.000245094299316406,-0.000123977661132813,1.22836065292358,-0.000245571136474609,-0.000118732452392578,1.22835946083069,-0.000245094299316406,-0.000131607055664063,1.22836208343506,-0.000274181365966797,-0.000124454498291016,1.22836256027222,-0.000288486480712891,-0.000125885009765625,1.228360414505,-0.000288009643554688,-0.000133991241455078,1.22846135497093,-0.000461578369140625,-0.000110626220703125,1.22846081852913,-0.000476360321044922,-8.29696655273438e-05,1.22846162319183,-0.000447750091552734,-0.000142097473144531,1.22846162319183,-0.000446319580078125,-0.000149726867675781,1.22846162319183,-0.000447750091552734,-0.000131607055664063,1.22844731807709,-0.000446796417236328,-0.000142097473144531,1.22844588756561,-0.000447273254394531,-0.000148773193359375,1.22843980789185,-0.000446796417236328,-0.000110626220703125,1.22844004631042,-0.000462055206298828,-8.29696655273438e-05,1.22844588756561,-0.000446796417236328,-0.00012969970703125,1.22843325138092,-0.000447750091552734,-0.000111579895019531,1.22843325138092,-0.000461578369140625,-8.20159912109375e-05,1.22843456268311,-0.000432491302490234,-0.000140190124511719,1.2284322977066,-0.000432014465332031,-0.000147819519042969, +1.22843420505524,-0.000432968139648438,-0.000128746032714844,1.22842490673065,-0.000432968139648438,-0.000140190124511719,1.2284220457077,-0.000432968139648438,-0.000148773193359375,1.22841680049896,-0.000433444976806641,-0.000111579895019531,1.22841465473175,-0.000447273254394531,-8.0108642578125e-05,1.22842192649841,-0.000432491302490234,-0.000127792358398438,1.22841048240662,-0.000432491302490234,-0.000108718872070313,1.2284049987793,-0.000446796417236328,-7.82012939453125e-05,1.22841608524323,-0.000417709350585938,-0.000139236450195313,1.2284129858017,-0.000417709350585938,-0.000147819519042969,1.22841715812683,-0.000418663024902344,-0.000124931335449219,1.22840845584869,-0.000403404235839844,-0.000138282775878906,1.22840690612793,-0.000403404235839844,-0.00014495849609375,1.22840130329132,-0.000417232513427734,-0.000108718872070313,1.22839450836182,-0.000418663024902344,-7.82012939453125e-05,1.22840678691864,-0.000403881072998047,-0.000123023986816406,1.22839772701263,-0.00040435791015625,-0.000105857849121094,1.22839319705963,-0.000418186187744141,-7.82012939453125e-05,1.22840487957001,-0.000403881072998047,-0.0001373291015625,1.22840297222137,-0.00040435791015625,-0.000144004821777344,1.22840523719788,-0.000403881072998047,-0.000123977661132813,1.22839820384979,-0.00038909912109375,-0.000134468078613281,1.22839593887329,-0.00038909912109375,-0.000144004821777344,1.22839272022247,-0.000389575958251953,-0.000102996826171875,1.22839140892029,-0.00038909912109375,-7.53402709960938e-05,1.22839736938477,-0.000389575958251953,-0.000119209289550781,1.2283878326416,-0.000375270843505859,-0.000102043151855469,1.22838878631592,-0.00038909912109375,-7.2479248046875e-05,1.22839164733887,-0.000374794006347656,-0.000134468078613281,1.22838926315308,-0.00037384033203125,-0.000144004821777344,1.22839212417603,-0.000374317169189453,-0.000121116638183594,1.22838377952576,-0.000360965728759766,-0.000132560729980469,1.22838091850281,-0.000361442565917969,-0.000142097473144531,1.22837591171265,-0.000346660614013672,-9.918212890625e-05, +1.22837948799133,-0.000345706939697266,-7.2479248046875e-05,1.22837948799133,-0.000346660614013672,-0.000118255615234375,1.2283718585968,-0.000346660614013672,-9.72747802734375e-05,1.22837471961975,-0.000346660614013672,-7.15255737304688e-05,1.2283763885498,-0.000331401824951172,-0.000131607055664063,1.22837424278259,-0.000331878662109375,-0.000139236450195313,1.22837781906128,-0.000331878662109375,-0.000119209289550781,1.22836923599243,-0.000318050384521484,-0.000128746032714844,1.22836661338806,-0.000316619873046875,-0.000136852264404297,1.22836232185364,-0.000302791595458984,-9.44137573242188e-05,1.22836446762085,-0.000302791595458984,-6.77108764648438e-05,1.22836971282959,-0.000302791595458984,-0.000115394592285156,1.22846081852913,-0.000461578369140625,-9.1552734375e-05,1.22835397720337,-0.000258922576904297,-7.10487365722656e-05,1.22836065292358,-0.000245094299316406,-7.10487365722656e-05,1.22843861579895,-0.000447273254394531,-9.1552734375e-05,1.22843289375305,-0.000446796417236328,-9.1552734375e-05,1.22842156887054,-0.000447273254394531,-8.96453857421875e-05,1.22841465473175,-0.000446796417236328,-8.7738037109375e-05,1.22843873500824,-0.000461578369140625,-8.96453857421875e-05,1.22841393947601,-0.000432491302490234,-8.7738037109375e-05,1.22844636440277,-0.000461101531982422,-9.1552734375e-05,1.22840583324432,-0.000432968139648438,-8.86917114257813e-05,1.22839772701263,-0.000432491302490234,-8.86917114257813e-05,1.22839593887329,-0.000418186187744141,-8.96453857421875e-05,1.22839879989624,-0.000418186187744141,-8.7738037109375e-05,1.22839319705963,-0.000418186187744141,-8.67843627929688e-05,1.22839176654816,-0.00040435791015625,-8.48770141601563e-05,1.22839069366455,-0.00038909912109375,-8.392333984375e-05,1.2283923625946,-0.00038909912109375,-8.48770141601563e-05,1.22838759422302,-0.000389575958251953,-8.29696655273438e-05,1.22838139533997,-0.000374794006347656,-8.20159912109375e-05,1.22837710380554,-0.000346660614013672,-8.10623168945313e-05,1.22837901115417,-0.000345706939697266,-8.10623168945313e-05,1.22837233543396, +-0.000346660614013672,-7.91549682617188e-05,1.22836756706238,-0.000331878662109375,-7.82012939453125e-05,1.22836232185364,-0.000303268432617188,-7.72476196289063e-05,1.22836303710938,-0.000302791595458984,-7.53402709960938e-05,1.22835540771484,-0.000288963317871094,-7.43865966796875e-05,1.22835493087769,-0.000274181365966797,-7.2479248046875e-05,1.22841882705688,-0.000432968139648438,-8.10623168945313e-05,1.22839725017548,-0.00038909912109375,-7.82012939453125e-05,1.22837471961975,-0.000302791595458984,-6.91413879394531e-05,1.22836923599243,-0.000245094299316406,-6.19888305664063e-05,1.22844135761261,-0.000447273254394531,-0.000120162963867188,1.22844064235687,-0.000446796417236328,-8.10623168945313e-05,1.22842347621918,-0.000418186187744141,-0.000123977661132813,1.22841060161591,-0.000403881072998047,-0.000119209289550781,1.22840321063995,-0.000418186187744141,-7.72476196289063e-05,1.22839903831482,-0.000374317169189453,-0.000111579895019531,1.22839117050171,-0.000331878662109375,-0.000111579895019531,1.22838830947876,-0.000346660614013672,-7.34329223632813e-05,1.22837686538696,-0.000288486480712891,-0.000108718872070313,1.22837471961975,-0.000259876251220703,-0.00011444091796875,1.22837424278259,-0.000274181365966797,-6.38961791992188e-05,1.22837209701538,-0.000245094299316406,-0.000102519989013672,1.22845441102982,-0.000446796417236328,-0.000110626220703125,1.22845262289047,-0.000461578369140625,-8.20159912109375e-05,1.22843992710114,-0.000446796417236328,-0.000110626220703125,1.22845605015755,-0.000447750091552734,-0.000132560729980469,1.22841644287109,-0.000418186187744141,-0.000109672546386719,1.22842109203339,-0.000432491302490234,-0.000111579895019531,1.22840905189514,-0.000432491302490234,-7.91549682617188e-05,1.22840893268585,-0.00040435791015625,-0.0001068115234375,1.22842001914978,-0.000417709350585938,-0.000125885009765625,1.2284015417099,-0.000360965728759766,-0.000100135803222656,1.22839915752411,-0.000375270843505859,-0.000102996826171875,1.22839939594269,-0.000360488891601563,-7.34329223632813e-05, +1.22839283943176,-0.000346660614013672,-0.000101089477539063,1.22839832305908,-0.000360965728759766,-0.0001220703125,1.22837972640991,-0.000288486480712891,-8.96453857421875e-05,1.2283775806427,-0.000288486480712891,-9.48905944824219e-05,1.22837591171265,-0.000288963317871094,-6.67572021484375e-05,1.22837829589844,-0.000274181365966797,-8.82148742675781e-05,1.22837686538696,-0.000288486480712891,-0.000112533569335938,1.22843146324158,-0.000432491302490234,-0.000111579895019531,1.22842848300934,-0.000447750091552734,-8.0108642578125e-05,1.22843480110168,-0.000432491302490234,-0.00012969970703125,1.22843563556671,-0.000432968139648438,-0.000136375427246094,1.22842729091644,-0.000418186187744141,-0.0001373291015625,1.22844564914703,-0.000432491302490234,-0.000138282775878906,1.22845655679703,-0.000447273254394531,-0.000139236450195313,1.2284083366394,-0.000389575958251953,-0.000102996826171875,1.22840476036072,-0.000403881072998047,-7.43865966796875e-05,1.22840988636017,-0.00038909912109375,-0.000123023986816406,1.22840940952301,-0.00038909912109375,-0.000132560729980469,1.22840404510498,-0.000374794006347656,-0.000132560729980469,1.22841441631317,-0.000403881072998047,-0.000134468078613281,1.22842049598694,-0.000418663024902344,-0.000135421752929688,1.22838830947876,-0.000317573547363281,-9.48905944824219e-05,1.22838473320007,-0.000317573547363281,-6.96182250976563e-05,1.22838687896729,-0.000317573547363281,-0.000120639801025391,1.22838687896729,-0.000317573547363281,-0.000126838684082031,1.22838282585144,-0.000288486480712891,-0.000125885009765625,1.22839176654816,-0.000346660614013672,-0.000128746032714844,1.22839832305908,-0.000360965728759766,-0.000130653381347656,1.2283763885498,-0.0002593994140625,-8.72611999511719e-05,1.22837328910828,-0.000259876251220703,-6.29425048828125e-05,1.22837281227112,-0.000244617462158203,-9.05990600585938e-05,1.22837328910828,-0.000245094299316406,-0.000109195709228516,1.22838044166565,-0.000244617462158203,-0.000120639801025391,1.2283787727356,-0.000259876251220703,-0.0001220703125, +1.22838091850281,-0.000274181365966797,-0.000124454498291016,1.2284642457962,-0.000447750091552734,-0.000110626220703125,1.22846354544163,-0.000462055206298828,-8.20159912109375e-05,1.22846233844757,-0.000446796417236328,-0.000139236450195313,1.22846257686615,-0.000447750091552734,-0.000131607055664063,1.22845160961151,-0.000432968139648438,-0.000139236450195313,1.2284449338913,-0.000447273254394531,-0.000110626220703125,1.22844409942627,-0.000461101531982422,-8.0108642578125e-05,1.22844851016998,-0.000432491302490234,-0.000128746032714844,1.22843837738037,-0.000447750091552734,-0.000110626220703125,1.22843754291534,-0.000447273254394531,-8.0108642578125e-05,1.22844016551971,-0.000432968139648438,-0.0001373291015625,1.22843861579895,-0.000432968139648438,-0.000127792358398438,1.22843205928802,-0.000418663024902344,-0.000136375427246094,1.22842514514923,-0.000432491302490234,-0.000109672546386719,1.22842156887054,-0.000447750091552734,-7.91549682617188e-05,1.22842764854431,-0.000418663024902344,-0.000126838684082031,1.22842109203339,-0.000418186187744141,-0.000108718872070313,1.22841453552246,-0.000432491302490234,-7.91549682617188e-05,1.22842359542847,-0.000418186187744141,-0.000136375427246094,1.22842359542847,-0.000417232513427734,-0.000126838684082031,1.22841775417328,-0.000403404235839844,-0.000136375427246094,1.2284117937088,-0.000403404235839844,-0.000107765197753906,1.22840535640717,-0.000417709350585938,-7.91549682617188e-05,1.22841393947601,-0.000403881072998047,-0.0001220703125,1.22841095924377,-0.000403881072998047,-0.000105857849121094,1.22840571403503,-0.000403404235839844,-7.82012939453125e-05,1.22841215133667,-0.00038909912109375,-0.000133514404296875,1.22841215133667,-0.000403881072998047,-0.000123023986816406,1.22840714454651,-0.00038909912109375,-0.000132560729980469,1.22840404510498,-0.000389575958251953,-0.000102996826171875,1.2284015417099,-0.00038909912109375,-7.62939453125e-05,1.22840523719788,-0.000375747680664063,-0.000118255615234375,1.22840118408203,-0.000375270843505859,-0.000102043151855469, +1.22839951515198,-0.000374317169189453,-7.43865966796875e-05,1.22840178012848,-0.000374794006347656,-0.000132560729980469,1.22839987277985,-0.000375270843505859,-0.000118255615234375,1.22839570045471,-0.000360965728759766,-0.000131607055664063,1.22839665412903,-0.000346183776855469,-0.000100135803222656,1.22839462757111,-0.000346660614013672,-7.15255737304688e-05,1.2283923625946,-0.000346660614013672,-0.000118255615234375,1.22839272022247,-0.000332355499267578,-9.67979431152344e-05,1.22838830947876,-0.000332355499267578,-7.00950622558594e-05,1.2283890247345,-0.000331878662109375,-0.00012969970703125,1.22839045524597,-0.000331878662109375,-0.000118732452392578,1.22838425636292,-0.000302791595458984,-0.000126361846923828,1.22838258743286,-0.000302314758300781,-9.48905944824219e-05,1.22837948799133,-0.000302791595458984,-6.81877136230469e-05,1.22838163375854,-0.000302791595458984,-0.000117301940917969,1.22846451401711,-0.000462055206298828,-9.1552734375e-05,1.2283763885498,-0.000259876251220703,-7.00950622558594e-05,1.2283718585968,-0.000245571136474609,-7.05718994140625e-05,1.228440284729,-0.000446796417236328,-8.96453857421875e-05,1.22843825817108,-0.000447273254394531,-9.05990600585938e-05,1.22842967510223,-0.000447750091552734,-9.1552734375e-05,1.22842288017273,-0.000432968139648438,-8.7738037109375e-05,1.22844409942627,-0.000447750091552734,-8.7738037109375e-05,1.22841954231262,-0.000432491302490234,-9.05990600585938e-05,1.22845369577408,-0.000461578369140625,-9.1552734375e-05,1.22841918468475,-0.000432491302490234,-8.7738037109375e-05,1.22841346263885,-0.000418663024902344,-8.86917114257813e-05,1.22840893268585,-0.000418663024902344,-8.67843627929688e-05,1.22840559482574,-0.000418663024902344,-8.67843627929688e-05,1.22840905189514,-0.000403404235839844,-8.58306884765625e-05,1.22840797901154,-0.00038909912109375,-8.48770141601563e-05,1.22840368747711,-0.000389575958251953,-8.48770141601563e-05,1.22839784622192,-0.00038909912109375,-8.48770141601563e-05,1.22840070724487,-0.000375270843505859,-8.29696655273438e-05, +1.22840201854706,-0.000360965728759766,-8.0108642578125e-05,1.22839713096619,-0.000346660614013672,-8.0108642578125e-05,1.22839140892029,-0.000346183776855469,-7.91549682617188e-05,1.22839152812958,-0.000331401824951172,-8.0108642578125e-05,1.2283878326416,-0.000317096710205078,-7.86781311035156e-05,1.22838282585144,-0.000303745269775391,-7.62939453125e-05,1.22837686538696,-0.000302314758300781,-7.62939453125e-05,1.22837901115417,-0.000288486480712891,-7.48634338378906e-05,1.22837805747986,-0.000274181365966797,-7.2479248046875e-05,1.22846232354641,-0.000461578369140625,-8.10623168945313e-05,1.22845104336739,-0.000462055206298828,-8.0108642578125e-05,1.22844254970551,-0.000462055206298828,-7.72476196289063e-05,1.22844040393829,-0.000446796417236328,-8.10623168945313e-05,1.22843551635742,-0.000446796417236328,-8.0108642578125e-05,1.22842562198639,-0.000447750091552734,-8.0108642578125e-05,1.22841835021973,-0.000446796417236328,-7.72476196289063e-05,1.22841584682465,-0.000432968139648438,-7.91549682617188e-05,1.2284095287323,-0.000432491302490234,-7.72476196289063e-05,1.22840178012848,-0.000432491302490234,-7.62939453125e-05,1.22839903831482,-0.000418186187744141,-7.53402709960938e-05,1.228400349617,-0.000418186187744141,-7.72476196289063e-05,1.22839915752411,-0.000418186187744141,-7.72476196289063e-05,1.22839903831482,-0.000403881072998047,-7.43865966796875e-05,1.22839641571045,-0.00038909912109375,-7.62939453125e-05,1.22839534282684,-0.000389575958251953,-7.62939453125e-05,1.22839391231537,-0.000375270843505859,-7.43865966796875e-05,1.22839200496674,-0.000375747680664063,-7.43865966796875e-05,1.22838711738586,-0.000345706939697266,-7.2479248046875e-05,1.22838473320007,-0.000346660614013672,-7.2479248046875e-05,1.2283821105957,-0.000331878662109375,-6.96182250976563e-05,1.2283775806427,-0.000317096710205078,-6.96182250976563e-05,1.2283718585968,-0.000302314758300781,-6.72340393066406e-05,1.22836971282959,-0.000302314758300781,-6.866455078125e-05,1.22836661338806,-0.000288486480712891,-6.4849853515625e-05,1.22836589813232, +-0.000274181365966797,-6.62803649902344e-05,1.22836422920227,-0.000259876251220703,-6.19888305664063e-05,1.22836589813232,-0.000245094299316406,-6.103515625e-05,1.22846138477325,-0.000447750091552734,-0.000134468078613281,1.22842037677765,-0.000418186187744141,-0.000127792358398438,1.2284232378006,-0.000432968139648438,-0.00012969970703125,1.22842800617218,-0.000432968139648438,-0.000134468078613281,1.22843420505524,-0.000432491302490234,-0.000131607055664063,1.22841680049896,-0.000418663024902344,-0.000130653381347656,1.228440284729,-0.000446796417236328,-0.000125885009765625,1.22841215133667,-0.000418663024902344,-0.000130653381347656,1.22844660282135,-0.000447750091552734,-0.000133514404296875,1.22840821743011,-0.00040435791015625,-0.000125885009765625,1.2284542620182,-0.000447273254394531,-0.000136375427246094,1.22840654850006,-0.000403881072998047,-0.0001220703125,1.22840523719788,-0.000403881072998047,-0.000126838684082031,1.22840178012848,-0.000389575958251953,-0.000132560729980469,1.22839772701263,-0.000389575958251953,-0.000125885009765625,1.22839534282684,-0.000375270843505859,-0.000117301940917969,1.22839176654816,-0.000374317169189453,-0.000123023986816406,1.22838735580444,-0.000360965728759766,-0.000125885009765625,1.22838091850281,-0.000346660614013672,-0.0001220703125,1.22837948799133,-0.000346660614013672,-0.000117301940917969,1.22837734222412,-0.000331878662109375,-0.0001220703125,1.22837376594543,-0.000317573547363281,-0.000125885009765625,1.22836899757385,-0.000302791595458984,-0.000118732452392578,1.22836685180664,-0.000302791595458984,-0.000110626220703125,1.22836303710938,-0.000288486480712891,-0.000116348266601563,1.22836184501648,-0.000274181365966797,-0.000117778778076172,1.22836112976074,-0.000245094299316406,-0.000113010406494141,1.228360414505,-0.000244617462158203,-0.000106334686279297,1.22837448120117,-0.000245094299316406,-0.000105857849121094,1.22837471961975,-0.000244617462158203,-0.000113487243652344,1.22846139967442,-0.000446796417236328,-0.000128746032714844,1.22846300899982,-0.000447273254394531, +-0.000123977661132813,1.22845086455345,-0.000447750091552734,-0.000127792358398438,1.2284437417984,-0.000447273254394531,-0.000124931335449219,1.22843945026398,-0.000447273254394531,-0.000118255615234375,1.22843384742737,-0.000433444976806641,-0.000125885009765625,1.22842645645142,-0.000432491302490234,-0.000126838684082031,1.22842037677765,-0.000432491302490234,-0.000123023986816406,1.22841835021973,-0.000432968139648438,-0.000120162963867188,1.22841513156891,-0.000418663024902344,-0.0001220703125,1.2284095287323,-0.000418663024902344,-0.000123977661132813,1.22840547561646,-0.000403404235839844,-0.000118255615234375,1.22840428352356,-0.000403881072998047,-0.000115394592285156,1.22840285301208,-0.000403404235839844,-0.000119209289550781,1.22839987277985,-0.000389575958251953,-0.000123977661132813,1.22839522361755,-0.00038909912109375,-0.000116348266601563,1.22839426994324,-0.000374317169189453,-0.000108718872070313,1.22839140892029,-0.000374794006347656,-0.000115394592285156,1.22838473320007,-0.000360965728759766,-0.000116348266601563,1.22837853431702,-0.000346183776855469,-0.000112533569335938,1.22837829589844,-0.000346660614013672,-0.000108718872070313,1.22837543487549,-0.000332355499267578,-0.000113487243652344,1.2283718585968,-0.000317096710205078,-0.000117301940917969,1.22836661338806,-0.000302791595458984,-0.000110626220703125,1.22836637496948,-0.000302314758300781,-0.000102996826171875,1.22836017608643,-0.000288486480712891,-0.0001068115234375,1.22835803031921,-0.000274181365966797,-0.000107765197753906,1.22835803031921,-0.000245571136474609,-0.000103950500488281,1.22836065292358,-0.000244617462158203,-0.000100135803222656,1.2283730506897,-0.000245571136474609,-9.918212890625e-05,1.22837543487549,-0.000244617462158203,-0.000102996826171875,1.22837734222412,-0.000274181365966797,-0.000107288360595703,1.22837829589844,-0.000288963317871094,-0.000107765197753906,1.2283775806427,-0.000288963317871094,-0.000105857849121094,1.22838258743286,-0.000303745269775391,-0.000110626220703125,1.2283878326416,-0.000317096710205078, +-0.000115394592285156,1.22839117050171,-0.000331878662109375,-0.000113010406494141,1.22839152812958,-0.000346660614013672,-0.000108718872070313,1.22839367389679,-0.000346183776855469,-0.000112533569335938,1.22839975357056,-0.000360488891601563,-0.000117301940917969,1.22840070724487,-0.000374794006347656,-0.000117301940917969,1.22839879989624,-0.000374317169189453,-0.000110626220703125,1.22840487957001,-0.000375270843505859,-0.000113487243652344,1.22841012477875,-0.000389575958251953,-0.000118255615234375,1.22841227054596,-0.000403404235839844,-0.000117301940917969,1.2284107208252,-0.000403404235839844,-0.00011444091796875,1.2284140586853,-0.000403404235839844,-0.000119209289550781,1.22841989994049,-0.000418663024902344,-0.0001220703125,1.22842347621918,-0.000418663024902344,-0.000121116638183594,1.22842264175415,-0.000432491302490234,-0.000118255615234375,1.22842717170715,-0.000432968139648438,-0.0001220703125,1.2284346818924,-0.000432968139648438,-0.000123977661132813,1.22843909263611,-0.000432491302490234,-0.000123023986816406,1.22844088077545,-0.000447273254394531,-0.000117301940917969,1.22844755649567,-0.000433444976806641,-0.000123023986816406,1.22845616936684,-0.000447273254394531,-0.000127792358398438,1.22838926315308,-0.000258922576904297,-0.000128269195556641,1.22840654850006,-0.000244617462158203,-0.000138759613037109,1.2283980846405,-0.000317573547363281,-0.000141620635986328,1.2284015417099,-0.000346660614013672,-0.000143051147460938,1.22840535640717,-0.000360965728759766,-0.000142097473144531,1.22841274738312,-0.000374794006347656,-0.000144004821777344,1.22841536998749,-0.00038909912109375,-0.000142097473144531,1.22842216491699,-0.000403881072998047,-0.00014495849609375,1.22842752933502,-0.000417709350585938,-0.000142097473144531,1.228435754776,-0.000417232513427734,-0.000143051147460938,1.22844314575195,-0.000432968139648438,-0.000141143798828125,1.22845327854156,-0.000432968139648438,-0.000143051147460938,1.22846019268036,-0.000432491302490234,-0.000142097473144531,1.22846655547619,-0.000447273254394531, +-0.000142097473144531,1.22846641391516,-0.000446319580078125,-0.000150680541992188,1.22846616059542,-0.000446796417236328,-0.000131607055664063,1.22846655547619,-0.000446796417236328,-0.000126838684082031,1.22846709936857,-0.000447273254394531,-0.000123977661132813,1.22846712172031,-0.000461578369140625,-0.000110626220703125,1.22846688330173,-0.000462055206298828,-9.1552734375e-05,1.22846710681915,-0.000461578369140625,-8.20159912109375e-05,1.22846710681915,-0.000462055206298828,-8.20159912109375e-05,1.22846764326096,-0.000461101531982422,-8.20159912109375e-05,1.22846806794405,-0.000461101531982422,-9.34600830078125e-05,1.22846779227257,-0.000447273254394531,-0.000110626220703125,1.22846734523773,-0.000447750091552734,-0.000123023986816406,1.22846658527851,-0.000446796417236328,-0.000127792358398438,1.22846683114767,-0.000447750091552734,-0.000139236450195313,1.22846711426973,-0.000432968139648438,-0.000144004821777344,1.2284642457962,-0.000432968139648438,-0.000146865844726563,1.22846066951752,-0.000432491302490234,-0.000149726867675781,1.22845667600632,-0.000418663024902344,-0.000152587890625,1.2284542620182,-0.000417709350585938,-0.000153541564941406,1.22845095396042,-0.000403881072998047,-0.000157356262207031,1.22844851016998,-0.00038909912109375,-0.000159263610839844,1.22844564914703,-0.000375270843505859,-0.00016021728515625,1.22844254970551,-0.000360965728759766,-0.000163078308105469,1.22843945026398,-0.000346660614013672,-0.000162124633789063,1.22843658924103,-0.000317573547363281,-0.000158309936523438,1.22847490012646,-0.000447273254394531,-0.000142097473144531,1.22847491502762,-0.000446319580078125,-0.000150680541992188,1.2284749224782,-0.000446796417236328,-0.000131607055664063,1.22847498953342,-0.000446796417236328,-0.000126838684082031,1.22847447544336,-0.000447273254394531,-0.000123977661132813,1.2284741923213,-0.000461578369140625,-0.000110626220703125,1.22847421467304,-0.000462055206298828,-9.1552734375e-05,1.22847422212362,-0.000461578369140625,-8.20159912109375e-05,1.22847418487072,-0.000462055206298828, +-8.20159912109375e-05,1.22847379744053,-0.000461101531982422,-8.20159912109375e-05,1.22847326844931,-0.000461101531982422,-9.34600830078125e-05,1.22847352176905,-0.000447273254394531,-0.000110626220703125,1.2284742295742,-0.000447750091552734,-0.000123023986816406,1.22847450524569,-0.000446796417236328,-0.000127792358398438,1.22847447544336,-0.000447750091552734,-0.000139236450195313,1.22847422212362,-0.000432968139648438,-0.000144004821777344,1.22847694158554,-0.000432968139648438,-0.000146865844726563,1.22848057746887,-0.000432491302490234,-0.000149726867675781,1.22848430275917,-0.000418663024902344,-0.000152587890625,1.22848734259605,-0.000417709350585938,-0.000153541564941406,1.2284904718399,-0.000403881072998047,-0.000157356262207031,1.2284928560257,-0.00038909912109375,-0.000159263610839844,1.22849595546722,-0.000375270843505859,-0.00016021728515625,1.22849905490875,-0.000360965728759766,-0.000163078308105469,1.22850179672241,-0.000346660614013672,-0.000162124633789063,1.22850489616394,-0.000317573547363281,-0.000158309936523438,1.22856688499451,-0.000230312347412109,-0.000105857849121094,1.22856831550598,-0.000231266021728516,-0.000100612640380859,1.22856903076172,-0.000230312347412109,-9.01222229003906e-05,1.22856974601746,-0.000245571136474609,-7.00950622558594e-05,1.22856879234314,-0.000230789184570313,-9.77516174316406e-05,1.2285590171814,-0.000231266021728516,-0.000123500823974609,1.22837281227112,-0.000231266021728516,-0.000100612640380859,1.22837448120117,-0.000230312347412109,-0.000105857849121094,1.22837090492249,-0.000245571136474609,-7.00950622558594e-05,1.22837233543396,-0.000230312347412109,-9.01222229003906e-05,1.22837281227112,-0.000230789184570313,-9.77516174316406e-05,1.2283821105957,-0.000230789184570313,-0.000123023986816406,1.22858095169067,-0.000245094299316406,-7.15255737304688e-05,1.22857928276062,-0.000245094299316406,-6.24656677246094e-05,1.22857594490051,-0.000245571136474609,-6.15119934082031e-05,1.22857284545898,-0.000245571136474609,-6.29425048828125e-05,1.22856974601746,-0.000245094299316406, +-7.15255737304688e-05,1.22856879234314,-0.000245094299316406,-9.05990600585938e-05,1.22856879234314,-0.000245571136474609,-9.918212890625e-05,1.22856831550598,-0.000245571136474609,-0.000101089477539063,1.22856712341309,-0.000245571136474609,-0.000105381011962891,1.2285590171814,-0.000230312347412109,-0.000122547149658203,1.22838163375854,-0.000230312347412109,-0.000122547149658203,1.22837448120117,-0.000245571136474609,-0.000105381011962891,1.22837233543396,-0.000245571136474609,-0.000101089477539063,1.22837209701538,-0.000245571136474609,-9.918212890625e-05,1.22837233543396,-0.000245094299316406,-9.05990600585938e-05,1.22837114334106,-0.000245094299316406,-7.15255737304688e-05,1.22836852073669,-0.000245571136474609,-6.29425048828125e-05,1.22836542129517,-0.000245571136474609,-6.15119934082031e-05,1.22836184501648,-0.000245094299316406,-6.24656677246094e-05,1.22836017608643,-0.000245094299316406,-7.15255737304688e-05,1.22836017608643,-0.000244617462158203,-9.05990600585938e-05,1.22858071327209,-0.000244617462158203,-9.05990600585938e-05,1.2283763885498,-0.000230789184570313,-0.000113487243652344,1.2283763885498,-0.000231266021728516,-0.00011444091796875,1.22856473922729,-0.000230789184570313,-0.000113487243652344,1.22856521606445,-0.000231266021728516,-0.00011444091796875,1.22847064398229,-0.000332355499267578,-0.000165939331054688,1.22843599319458,-0.000273227691650391,-0.000149250030517578,1.22841536998749,-0.000230312347412109,-0.0001373291015625,1.228470640257,-0.000274181365966797,-0.000145912170410156,1.22843873500824,-0.0002593994140625,-0.000142097473144531,1.22853100299835,-0.000216484069824219,-0.000131130218505859,1.22852575778961,-0.000231266021728516,-0.000136375427246094,1.22854173183441,-0.000201702117919922,-0.000131130218505859,1.22853648662567,-0.000202178955078125,-0.000131130218505859,1.22838926315308,-0.000187397003173828,-0.000131130218505859,1.22839510440826,-0.000173568725585938,-0.000128269195556641,1.22841024398804,-0.000216484069824219,-0.000131607055664063,1.22839987277985,-0.000201702117919922, +-0.000131607055664063,1.22840535640717,-0.000202655792236328,-0.000130653381347656,1.22855162620544,-0.000187397003173828,-0.000131130218505859,1.22854602336884,-0.000173568725585938,-0.000128269195556641,1.22848638892174,-0.000461578369140625,-0.000112533569335938,1.22848525643349,-0.000447273254394531,-0.000126838684082031,1.22853481769562,-0.000432491302490234,-0.000108718872070313,1.22852909564972,-0.000418186187744141,-0.000123977661132813,1.22855615615845,-0.000374794006347656,-0.000102043151855469,1.22855305671692,-0.000374317169189453,-0.000117301940917969,1.2285133600235,-0.000461101531982422,-8.10623168945313e-05,1.22851955890656,-0.000447273254394531,-8.392333984375e-05,1.22851383686066,-0.000447273254394531,-9.1552734375e-05,1.22850835323334,-0.000461578369140625,-8.29696655273438e-05,1.22851383686066,-0.000461578369140625,-8.48770141601563e-05,1.22851455211639,-0.000432491302490234,-0.000140190124511719,1.22851645946503,-0.000432491302490234,-0.000134468078613281,1.22849071025848,-0.000446796417236328,-0.000142097473144531,1.22849118709564,-0.000447273254394531,-0.000148773193359375,1.22854912281036,-0.000403404235839844,-7.62939453125e-05,1.22854995727539,-0.00040435791015625,-7.91549682617188e-05,1.22854924201965,-0.000403881072998047,-8.58306884765625e-05,1.22854912281036,-0.000418186187744141,-8.0108642578125e-05,1.22854995727539,-0.00040435791015625,-8.0108642578125e-05,1.22854149341583,-0.00038909912109375,-0.000138282775878906,1.22854197025299,-0.000389575958251953,-0.000128746032714844,1.22853124141693,-0.000418663024902344,-0.000139236450195313,1.22853338718414,-0.000417709350585938,-0.000146865844726563,1.22856831550598,-0.000331878662109375,-7.05718994140625e-05,1.22857260704041,-0.000332355499267578,-7.20024108886719e-05,1.22857141494751,-0.000332355499267578,-7.91549682617188e-05,1.2285680770874,-0.000346660614013672,-7.43865966796875e-05,1.22857046127319,-0.000331878662109375,-7.29560852050781e-05,1.22857022285461,-0.000317096710205078,-0.000129222869873047,1.22856974601746,-0.000317096710205078, +-0.000123023986816406,1.22855639457703,-0.000360965728759766,-0.000132560729980469,1.2285578250885,-0.000360488891601563,-0.000142097473144531,1.22858738899231,-0.000259876251220703,-8.7738037109375e-05,1.22858738899231,-0.000259876251220703,-7.20024108886719e-05,1.22858047485352,-0.000245094299316406,-0.000105857849121094,1.22858047485352,-0.000245571136474609,-0.000111103057861328,1.22858142852783,-0.000274658203125,-0.000134944915771484,1.22857904434204,-0.000274658203125,-0.000125885009765625,1.22848749160767,-0.000462055206298828,-8.29696655273438e-05,1.2284951210022,-0.000461578369140625,-8.67843627929688e-05,1.22848758101463,-0.000461578369140625,-9.25064086914063e-05,1.22848066687584,-0.000475883483886719,-8.48770141601563e-05,1.22848787903786,-0.000461101531982422,-8.48770141601563e-05,1.22850143909454,-0.000461578369140625,-8.20159912109375e-05,1.22850215435028,-0.000447750091552734,-8.48770141601563e-05,1.22850251197815,-0.000447750091552734,-8.96453857421875e-05,1.22850215435028,-0.000461578369140625,-8.48770141601563e-05,1.22850215435028,-0.000462055206298828,-8.48770141601563e-05,1.22850215435028,-0.000447273254394531,-0.000111579895019531,1.2284996509552,-0.000446796417236328,-0.000121116638183594,1.22854125499725,-0.000432491302490234,-7.82012939453125e-05,1.22854506969452,-0.000432491302490234,-8.29696655273438e-05,1.22854030132294,-0.000432491302490234,-8.86917114257813e-05,1.22853672504425,-0.000446796417236328,-8.29696655273438e-05,1.22854149341583,-0.000432968139648438,-8.20159912109375e-05,1.22854483127594,-0.000417709350585938,-7.91549682617188e-05,1.22854387760162,-0.000418186187744141,-8.29696655273438e-05,1.2285441160202,-0.000418186187744141,-8.7738037109375e-05,1.22854697704315,-0.000418663024902344,-8.20159912109375e-05,1.22854483127594,-0.000418186187744141,-8.29696655273438e-05,1.22853982448578,-0.000418663024902344,-0.000108718872070313,1.22853672504425,-0.000403881072998047,-0.000116348266601563,1.22855520248413,-0.000375270843505859,-7.2479248046875e-05,1.22855877876282,-0.000375270843505859, +-7.62939453125e-05,1.22855687141418,-0.000375747680664063,-8.20159912109375e-05,1.22855401039124,-0.00038909912109375,-7.82012939453125e-05,1.22855663299561,-0.000374794006347656,-7.72476196289063e-05,1.22856092453003,-0.000346660614013672,-7.2479248046875e-05,1.22856163978577,-0.000346660614013672,-7.53402709960938e-05,1.22856330871582,-0.000346660614013672,-8.10623168945313e-05,1.22856330871582,-0.000346660614013672,-7.43865966796875e-05,1.22856211662292,-0.000346660614013672,-7.53402709960938e-05,1.22856473922729,-0.000346183776855469,-0.000100135803222656,1.22856330871582,-0.000346660614013672,-0.000110626220703125,1.22858357429504,-0.000288486480712891,-6.58035278320313e-05,1.22858548164368,-0.000273704528808594,-6.72340393066406e-05,1.22858643531799,-0.000288009643554688,-7.2479248046875e-05,1.22858476638794,-0.000288486480712891,-6.91413879394531e-05,1.22858572006226,-0.000288009643554688,-6.77108764648438e-05,1.22858667373657,-0.000274181365966797,-8.86917114257813e-05,1.22858190536499,-0.000274658203125,-0.000108242034912109,1.22852647304535,-0.000447750091552734,-8.0108642578125e-05,1.22852742671967,-0.000433444976806641,-8.20159912109375e-05,1.22852742671967,-0.000432491302490234,-9.1552734375e-05,1.22852742671967,-0.000447273254394531,-8.29696655273438e-05,1.22852718830109,-0.000447750091552734,-8.29696655273438e-05,1.22852504253387,-0.000432491302490234,-0.000110626220703125,1.22852218151093,-0.000432491302490234,-0.000121116638183594,1.22851264476776,-0.000447750091552734,-0.000111579895019531,1.22851121425629,-0.000432491302490234,-0.000125885009765625,1.22851693630219,-0.000432014465332031,-0.000147819519042969,1.22850370407104,-0.000432491302490234,-0.000139236450195313,1.22850632667542,-0.000432968139648438,-0.000149726867675781,1.22850406169891,-0.000432491302490234,-0.000128746032714844,1.22847273945808,-0.000447750091552734,-0.000142097473144531,1.22847284376621,-0.000447273254394531,-0.000149726867675781,1.22847261279821,-0.000447750091552734,-0.000126838684082031,1.22847282886505,-0.000446796417236328, +-0.000130653381347656,1.22849118709564,-0.000446796417236328,-0.000134468078613281,1.22854888439178,-0.00038909912109375,-7.72476196289063e-05,1.22854888439178,-0.00038909912109375,-7.91549682617188e-05,1.22854948043823,-0.00038909912109375,-8.29696655273438e-05,1.22855067253113,-0.000389575958251953,-7.91549682617188e-05,1.22854948043823,-0.00038909912109375,-8.0108642578125e-05,1.22854793071747,-0.00038909912109375,-0.000102996826171875,1.22854602336884,-0.000374317169189453,-0.000110626220703125,1.22854554653168,-0.000403404235839844,-0.000105857849121094,1.22854006290436,-0.000403881072998047,-0.000123023986816406,1.22854340076447,-0.00038909912109375,-0.00014495849609375,1.22853577136993,-0.000403881072998047,-0.000136375427246094,1.22853767871857,-0.00040435791015625,-0.00014495849609375,1.22853577136993,-0.000403404235839844,-0.000123977661132813,1.22852337360382,-0.000417232513427734,-0.000139236450195313,1.22852647304535,-0.000418663024902344,-0.000148773193359375,1.22852289676666,-0.000418186187744141,-0.000127792358398438,1.22853171825409,-0.000417709350585938,-0.000128746032714844,1.22857642173767,-0.000302791595458984,-6.91413879394531e-05,1.22857809066772,-0.000302791595458984,-7.20024108886719e-05,1.22857904434204,-0.000303268432617188,-7.62939453125e-05,1.22857856750488,-0.000303268432617188,-7.15255737304688e-05,1.22857809066772,-0.000303268432617188,-7.15255737304688e-05,1.22857809066772,-0.000302314758300781,-9.34600830078125e-05,1.22857451438904,-0.000302791595458984,-0.000104904174804688,1.22857189178467,-0.000331878662109375,-9.67979431152344e-05,1.22856783866882,-0.000331878662109375,-0.000115871429443359,1.22857213020325,-0.000317573547363281,-0.000138282775878906,1.22856330871582,-0.000346660614013672,-0.000130653381347656,1.22856545448303,-0.000346183776855469,-0.000140190124511719,1.22856283187866,-0.000345230102539063,-0.000119209289550781,1.22854864597321,-0.000375270843505859,-0.000133514404296875,1.22855043411255,-0.000375747680664063,-0.000143051147460938,1.22854793071747,-0.000374794006347656, +-0.000120162963867188,1.22855758666992,-0.000360488891601563,-0.000123023986816406,1.2285840511322,-0.000244617462158203,-8.91685485839844e-05,1.22858428955078,-0.000245094299316406,-7.10487365722656e-05,1.22858142852783,-0.000245094299316406,-0.000101566314697266,1.22858023643494,-0.0002593994140625,-0.000112056732177734,1.22858285903931,-0.0002593994140625,-0.000105857849121094,1.22858262062073,-0.000245094299316406,-0.000130653381347656,1.22858023643494,-0.000245094299316406,-0.0001220703125,1.22858166694641,-0.0002593994140625,-0.000131130218505859,1.22857999801636,-0.000259876251220703,-0.000124454498291016,1.2285795211792,-0.000259876251220703,-0.000115871429443359,1.22857880592346,-0.000273227691650391,-0.000113487243652344,1.22857904434204,-0.000274181365966797,-0.000117778778076172,1.22847064398229,-0.000461101531982422,-8.67843627929688e-05,1.22847229987383,-0.000461578369140625,-8.20159912109375e-05,1.22847422212362,-0.000462055206298828,-8.48770141601563e-05,1.22847228497267,-0.000461578369140625,-9.05990600585938e-05,1.22847253829241,-0.000461578369140625,-8.67843627929688e-05,1.22848320007324,-0.000447273254394531,-0.000148773193359375,1.22848334908485,-0.000447273254394531,-0.000142097473144531,1.22848320007324,-0.000446796417236328,-0.000131607055664063,1.22848331928253,-0.000447750091552734,-0.000135421752929688,1.22847217321396,-0.000461578369140625,-0.000110626220703125,1.22847232222557,-0.000446796417236328,-0.000121116638183594,1.22849953174591,-0.000447273254394531,-0.000148773193359375,1.22849762439728,-0.000447750091552734,-0.000139236450195313,1.22849822044373,-0.000447750091552734,-0.000111579895019531,1.22849988937378,-0.000461578369140625,-9.1552734375e-05,1.22849857807159,-0.000446796417236328,-0.000124931335449219,1.22849798202515,-0.000446796417236328,-0.000128746032714844,1.2284916639328,-0.000446796417236328,-0.000131607055664063,1.22849476337433,-0.000447750091552734,-0.000126838684082031,1.22850477695465,-0.000446796417236328,-0.000109672546386719,1.22850441932678,-0.000446796417236328, +-9.25064086914063e-05,1.22851169109344,-0.000432968139648438,-0.000149726867675781,1.22850930690765,-0.000432968139648438,-0.000141143798828125,1.22850430011749,-0.000447273254394531,-0.000123977661132813,1.22850441932678,-0.000447750091552734,-0.000119209289550781,1.22851049900055,-0.000432491302490234,-0.000131607055664063,1.22851026058197,-0.000432968139648438,-0.000134468078613281,1.22852194309235,-0.000432014465332031,-0.000148773193359375,1.22851932048798,-0.000432968139648438,-0.000139236450195313,1.22852170467377,-0.000432491302490234,-0.000112533569335938,1.22852432727814,-0.000446796417236328,-8.86917114257813e-05,1.22851693630219,-0.000432968139648438,-0.000128746032714844,1.22851836681366,-0.000432491302490234,-0.000125885009765625,1.22852098941803,-0.000432968139648438,-0.000123977661132813,1.22852027416229,-0.000432491302490234,-0.000128746032714844,1.22852766513824,-0.000432491302490234,-0.000109672546386719,1.22853076457977,-0.000432968139648438,-8.7738037109375e-05,1.22853052616119,-0.000417709350585938,-0.00014495849609375,1.22852790355682,-0.000417232513427734,-0.000139236450195313,1.22852671146393,-0.000417232513427734,-0.000126838684082031,1.22852694988251,-0.000418663024902344,-0.00012969970703125,1.22852265834808,-0.000418186187744141,-0.000123977661132813,1.22852408885956,-0.000432491302490234,-0.000121116638183594,1.22853577136993,-0.000403404235839844,-0.000146865844726563,1.2285338640213,-0.000403881072998047,-0.0001373291015625,1.22854006290436,-0.000418186187744141,-0.000108718872070313,1.22854578495026,-0.000432491302490234,-8.7738037109375e-05,1.22853577136993,-0.000403881072998047,-0.000119209289550781,1.22853457927704,-0.00040435791015625,-0.000123977661132813,1.22853243350983,-0.000418663024902344,-0.000124931335449219,1.22853434085846,-0.000418663024902344,-0.000123023986816406,1.22854125499725,-0.000403881072998047,-0.000105857849121094,1.2285453081131,-0.000418663024902344,-8.67843627929688e-05,1.22854006290436,-0.000390052795410156,-0.00014495849609375,1.2285383939743,-0.00038909912109375, +-0.000138282775878906,1.22853600978851,-0.000403881072998047,-0.000120162963867188,1.22853744029999,-0.00040435791015625,-0.000118255615234375,1.22853767871857,-0.000389575958251953,-0.000126838684082031,1.22853791713715,-0.000389575958251953,-0.00012969970703125,1.22854721546173,-0.000374794006347656,-0.000144004821777344,1.22854506969452,-0.000374317169189453,-0.000134468078613281,1.22854793071747,-0.000389575958251953,-0.000103950500488281,1.22855019569397,-0.000403404235839844,-8.48770141601563e-05,1.22854197025299,-0.00038909912109375,-0.000123977661132813,1.22854387760162,-0.00038909912109375,-0.000119209289550781,1.22854506969452,-0.000375270843505859,-0.00011444091796875,1.2285453081131,-0.000374317169189453,-0.000119209289550781,1.22854995727539,-0.000375270843505859,-0.000103950500488281,1.22855114936829,-0.00038909912109375,-8.29696655273438e-05,1.22855448722839,-0.000361442565917969,-0.000143051147460938,1.2285521030426,-0.000360965728759766,-0.000134468078613281,1.22855114936829,-0.000375270843505859,-0.000123023986816406,1.22855138778687,-0.000374317169189453,-0.000125885009765625,1.22854769229889,-0.000374317169189453,-0.000115394592285156,1.22854816913605,-0.000374794006347656,-0.000111579895019531,1.22856187820435,-0.000346183776855469,-0.000141143798828125,1.22855997085571,-0.000346183776855469,-0.000131607055664063,1.22856330871582,-0.000360965728759766,-0.000101089477539063,1.22856259346008,-0.000360965728759766,-8.20159912109375e-05,1.22856187820435,-0.000346660614013672,-0.00011444091796875,1.22856140136719,-0.000346660614013672,-0.000119209289550781,1.22855806350708,-0.000360965728759766,-0.000121116638183594,1.22855997085571,-0.000360965728759766,-0.000115394592285156,1.22856664657593,-0.000346660614013672,-9.918212890625e-05,1.22856545448303,-0.000346660614013672,-8.0108642578125e-05,1.22856831550598,-0.000331878662109375,-0.000138282775878906,1.22856616973877,-0.000332355499267578,-0.000131130218505859,1.22856259346008,-0.000345706939697266,-0.000113487243652344,1.22856402397156,-0.000346660614013672, +-0.000110626220703125,1.22856545448303,-0.000331401824951172,-0.000122547149658203,1.22856545448303,-0.000332355499267578,-0.000124931335449219,1.22857737541199,-0.000302314758300781,-0.000135898590087891,1.22857451438904,-0.000303745269775391,-0.000126838684082031,1.22857689857483,-0.000317096710205078,-9.5367431640625e-05,1.22857689857483,-0.000317096710205078,-7.77244567871094e-05,1.22856974601746,-0.000317573547363281,-0.000120162963867188,1.22857236862183,-0.000317573547363281,-0.000115394592285156,1.22857213020325,-0.000302791595458984,-0.000109672546386719,1.22857308387756,-0.000303268432617188,-0.00011444091796875,1.22847637534142,-0.000461101531982422,-0.000112533569335938,1.22847664356232,-0.000462055206298828,-9.05990600585938e-05,1.22858214378357,-0.0002593994140625,-6.24656677246094e-05,1.22857999801636,-0.000245094299316406,-6.43730163574219e-05,1.22858715057373,-0.000259876251220703,-6.53266906738281e-05,1.22858357429504,-0.000244617462158203,-6.53266906738281e-05,1.22850406169891,-0.000447273254394531,-8.20159912109375e-05,1.2285041809082,-0.000447750091552734,-8.29696655273438e-05,1.2285236120224,-0.000446796417236328,-8.0108642578125e-05,1.22852432727814,-0.000446796417236328,-8.29696655273438e-05,1.22849893569946,-0.000461578369140625,-8.29696655273438e-05,1.22849977016449,-0.000461578369140625,-8.48770141601563e-05,1.22853100299835,-0.000447273254394531,-8.10623168945313e-05,1.22853147983551,-0.000447273254394531,-8.392333984375e-05,1.22854673862457,-0.000432491302490234,-7.91549682617188e-05,1.22854697704315,-0.000432491302490234,-8.29696655273438e-05,1.22854578495026,-0.000418663024902344,-7.82012939453125e-05,1.22854602336884,-0.000418186187744141,-8.10623168945313e-05,1.22854948043823,-0.000403881072998047,-7.43865966796875e-05,1.22855043411255,-0.000403881072998047,-7.91549682617188e-05,1.22854995727539,-0.000389575958251953,-7.72476196289063e-05,1.22855067253113,-0.00038909912109375,-7.72476196289063e-05,1.22855973243713,-0.000360488891601563,-7.34329223632813e-05,1.22856163978577,-0.000360965728759766, +-7.53402709960938e-05,1.22856330871582,-0.000346183776855469,-7.34329223632813e-05,1.22856450080872,-0.000345706939697266,-7.53402709960938e-05,1.2285737991333,-0.000317573547363281,-6.91413879394531e-05,1.22857570648193,-0.000317573547363281,-7.15255737304688e-05,1.2285852432251,-0.000259876251220703,-6.38961791992188e-05,1.22858667373657,-0.0002593994140625,-6.62803649902344e-05,1.22848162055016,-0.000446796417236328,-0.000111579895019531,1.22848153114319,-0.000447750091552734,-0.000126838684082031,1.22852194309235,-0.000418663024902344,-0.000108718872070313,1.22851932048798,-0.000417232513427734,-0.0001220703125,1.2285395860672,-0.000374317169189453,-0.000102996826171875,1.2285407781601,-0.000360965728759766,-0.000116348266601563,1.22850334644318,-0.000447273254394531,-8.392333984375e-05,1.22850728034973,-0.000446796417236328,-9.25064086914063e-05,1.22851240634918,-0.000446796417236328,-8.48770141601563e-05,1.22850811481476,-0.000447750091552734,-7.91549682617188e-05,1.2285076379776,-0.000447750091552734,-8.48770141601563e-05,1.22850739955902,-0.000432491302490234,-0.000138282775878906,1.22851145267487,-0.000418186187744141,-0.000133514404296875,1.22850608825684,-0.000432491302490234,-0.000134468078613281,1.22850871086121,-0.000432968139648438,-0.000134468078613281,1.22847064211965,-0.000432968139648438,-0.000145912170410156,1.22847350686789,-0.000432968139648438,-0.000146865844726563,1.22847519814968,-0.000432491302490234,-0.000145912170410156,1.22847193479538,-0.000432491302490234,-0.000145912170410156,1.22847259789705,-0.000432491302490234,-0.000146865844726563,1.22853362560272,-0.00040435791015625,-8.0108642578125e-05,1.22853243350983,-0.000403404235839844,-8.67843627929688e-05,1.2285350561142,-0.000389575958251953,-7.82012939453125e-05,1.22853577136993,-0.000403404235839844,-7.72476196289063e-05,1.2285338640213,-0.000403404235839844,-8.0108642578125e-05,1.22853267192841,-0.000389575958251953,-0.000134468078613281,1.22853481769562,-0.000374794006347656,-0.000128746032714844,1.22853171825409,-0.00038909912109375, +-0.000131607055664063,1.22853314876556,-0.000389575958251953,-0.000128746032714844,1.22851598262787,-0.000403404235839844,-0.000143051147460938,1.22850048542023,-0.000418663024902344,-0.000148773193359375,1.22848880290985,-0.000403404235839844,-0.000156402587890625,1.22850525379181,-0.000403881072998047,-0.000149726867675781,1.22850275039673,-0.000403881072998047,-0.000148773193359375,1.22855067253113,-0.000332355499267578,-7.34329223632813e-05,1.22855091094971,-0.000332355499267578,-7.82012939453125e-05,1.22855424880981,-0.000318050384521484,-7.2479248046875e-05,1.22855401039124,-0.000331401824951172,-7.00950622558594e-05,1.2285521030426,-0.000332355499267578,-7.20024108886719e-05,1.22855591773987,-0.000317573547363281,-0.000127315521240234,1.2285590171814,-0.000302791595458984,-0.000123500823974609,1.22855472564697,-0.000317573547363281,-0.000125885009765625,1.22855687141418,-0.000317096710205078,-0.000123977661132813,1.22853744029999,-0.000345706939697266,-0.000144004821777344,1.2285178899765,-0.000360965728759766,-0.000153541564941406,1.22850072383881,-0.000346660614013672,-0.000163078308105469,1.2285224199295,-0.000346660614013672,-0.000153541564941406,1.22852051258087,-0.000346660614013672,-0.000154495239257813,1.22856402397156,-0.0002593994140625,-7.20024108886719e-05,1.22856378555298,-0.0002593994140625,-8.72611999511719e-05,1.2285680770874,-0.000245094299316406,-0.000105857849121094,1.22856664657593,-0.000245571136474609,-0.000107765197753906,1.22847734391689,-0.000461578369140625,-8.58306884765625e-05,1.22848188877106,-0.000461578369140625,-9.25064086914063e-05,1.22848796844482,-0.000461578369140625,-8.48770141601563e-05,1.22848284244537,-0.000461101531982422,-8.20159912109375e-05,1.22848224639893,-0.000461578369140625,-8.48770141601563e-05,1.22849702835083,-0.000447273254394531,-8.29696655273438e-05,1.22849988937378,-0.000447750091552734,-8.96453857421875e-05,1.22850096225739,-0.000446796417236328,-8.392333984375e-05,1.22849917411804,-0.000447273254394531,-8.10623168945313e-05,1.22849977016449,-0.000447750091552734, +-8.392333984375e-05,1.2284996509552,-0.000447273254394531,-0.000108718872070313,1.22849762439728,-0.000447750091552734,-0.000119209289550781,1.22852456569672,-0.000432491302490234,-8.29696655273438e-05,1.22852528095245,-0.000432491302490234,-8.67843627929688e-05,1.22853004932404,-0.000432968139648438,-8.10623168945313e-05,1.22852957248688,-0.000432968139648438,-7.72476196289063e-05,1.22852694988251,-0.000432968139648438,-8.10623168945313e-05,1.22853434085846,-0.000418186187744141,-8.10623168945313e-05,1.22853457927704,-0.000417709350585938,-8.7738037109375e-05,1.22853720188141,-0.000418186187744141,-8.0108642578125e-05,1.22853791713715,-0.000418663024902344,-7.91549682617188e-05,1.22853624820709,-0.000418186187744141,-8.0108642578125e-05,1.22853171825409,-0.00040435791015625,-0.000105857849121094,1.22853004932404,-0.00040435791015625,-0.000118255615234375,1.22854101657867,-0.000375747680664063,-7.72476196289063e-05,1.2285395860672,-0.000374317169189453,-8.29696655273438e-05,1.22854030132294,-0.000360965728759766,-7.53402709960938e-05,1.22854149341583,-0.000374317169189453,-7.2479248046875e-05,1.22854006290436,-0.000375270843505859,-7.72476196289063e-05,1.22854506969452,-0.000346183776855469,-7.53402709960938e-05,1.22854769229889,-0.000346660614013672,-8.10623168945313e-05,1.22855138778687,-0.000346660614013672,-7.62939453125e-05,1.22855043411255,-0.000346183776855469,-7.34329223632813e-05,1.22854864597321,-0.000346660614013672,-7.62939453125e-05,1.22854721546173,-0.000346183776855469,-0.000100135803222656,1.22854888439178,-0.000346660614013672,-0.000110626220703125,1.22856330871582,-0.000288009643554688,-6.91413879394531e-05,1.2285623550415,-0.000288486480712891,-7.34329223632813e-05,1.22856497764587,-0.000274181365966797,-6.72340393066406e-05,1.22856616973877,-0.000288963317871094,-6.53266906738281e-05,1.22856378555298,-0.000288009643554688,-6.77108764648438e-05,1.22856211662292,-0.000273227691650391,-8.91685485839844e-05,1.22856330871582,-0.000274181365966797,-0.000107765197753906,1.22851932048798,-0.000432491302490234, +-8.20159912109375e-05,1.22852075099945,-0.000432968139648438,-8.7738037109375e-05,1.22852265834808,-0.000432491302490234,-8.29696655273438e-05,1.22852146625519,-0.000432968139648438,-8.10623168945313e-05,1.22852122783661,-0.000432968139648438,-8.29696655273438e-05,1.22851884365082,-0.000432491302490234,-0.000109672546386719,1.22851693630219,-0.000432491302490234,-0.000121116638183594,1.22850620746613,-0.000432491302490234,-0.000110626220703125,1.2285041809082,-0.000432491302490234,-0.000124931335449219,1.22850179672241,-0.000418663024902344,-0.000142097473144531,1.22848930954933,-0.000432968139648438,-0.000146865844726563,1.22848263382912,-0.000418186187744141,-0.000149726867675781,1.2284951210022,-0.000417232513427734,-0.000146865844726563,1.22849237918854,-0.000418186187744141,-0.000146865844726563,1.22849225997925,-0.000432491302490234,-0.000143051147460938,1.22848239541054,-0.000432491302490234,-0.00014495849609375,1.22847874462605,-0.000432491302490234,-0.000148773193359375,1.22848570346832,-0.000432491302490234,-0.00014495849609375,1.2284984588623,-0.000432491302490234,-0.000139236450195313,1.2285019159317,-0.000432491302490234,-0.000133514404296875,1.22849774360657,-0.000432491302490234,-0.000132560729980469,1.22849988937378,-0.000432491302490234,-0.000133514404296875,1.22847420722246,-0.000447273254394531,-0.000142097473144531,1.22847256809473,-0.000447750091552734,-0.000139236450195313,1.22847064398229,-0.000447750091552734,-0.000143051147460938,1.22847230732441,-0.000447273254394531,-0.000141143798828125,1.22847064398229,-0.000447750091552734,-0.000132560729980469,1.2284744977951,-0.000447273254394531,-0.000136375427246094,1.22847281396389,-0.000447273254394531,-0.000134468078613281,1.22848716378212,-0.000432491302490234,-0.000138282775878906,1.22849154472351,-0.000432968139648438,-0.000135421752929688,1.22848525643349,-0.000446796417236328,-0.000136375427246094,1.22848859429359,-0.000432491302490234,-0.000138282775878906,1.2285383939743,-0.00038909912109375,-7.91549682617188e-05,1.22854125499725,-0.000389575958251953, +-8.29696655273438e-05,1.22854387760162,-0.00038909912109375,-7.91549682617188e-05,1.22854244709015,-0.00038909912109375,-7.82012939453125e-05,1.22854149341583,-0.00038909912109375,-7.91549682617188e-05,1.22854053974152,-0.000375270843505859,-0.000102996826171875,1.22853982448578,-0.000374794006347656,-0.000110626220703125,1.22853147983551,-0.000403881072998047,-0.000103950500488281,1.22853004932404,-0.00038909912109375,-0.000118255615234375,1.22852671146393,-0.000389575958251953,-0.000144004821777344,1.22850954532623,-0.00038909912109375,-0.000153541564941406,1.22849440574646,-0.00038909912109375,-0.000162124633789063,1.22851359844208,-0.000375270843505859,-0.000152587890625,1.22851145267487,-0.00038909912109375,-0.000151634216308594,1.22852146625519,-0.00038909912109375,-0.000144004821777344,1.22849154472351,-0.000403881072998047,-0.000158309936523438,1.22850739955902,-0.000403404235839844,-0.000151634216308594,1.22852790355682,-0.000403881072998047,-0.000135421752929688,1.22852909564972,-0.00038909912109375,-0.000131607055664063,1.2285281419754,-0.000403881072998047,-0.000128746032714844,1.22852861881256,-0.000403404235839844,-0.00012969970703125,1.22850871086121,-0.000418186187744141,-0.000144004821777344,1.22848570346832,-0.000418663024902344,-0.000152587890625,1.22849774360657,-0.000418186187744141,-0.000147819519042969,1.22851574420929,-0.000417232513427734,-0.0001373291015625,1.22851765155792,-0.000417709350585938,-0.000131607055664063,1.22851550579071,-0.000417709350585938,-0.000133514404296875,1.22851645946503,-0.000418663024902344,-0.000133514404296875,1.2285224199295,-0.000403881072998047,-0.000135421752929688,1.22852528095245,-0.000403881072998047,-0.00012969970703125,1.22852146625519,-0.000417232513427734,-0.000133514404296875,1.22852337360382,-0.000403881072998047,-0.000133514404296875,1.22855973243713,-0.000302791595458984,-7.00950622558594e-05,1.22856211662292,-0.000303268432617188,-7.58171081542969e-05,1.22856521606445,-0.000302314758300781,-7.05718994140625e-05,1.22856450080872,-0.000302791595458984, +-6.866455078125e-05,1.22856283187866,-0.000302314758300781,-7.10487365722656e-05,1.22856211662292,-0.000303268432617188,-9.48905944824219e-05,1.22856187820435,-0.000302791595458984,-0.000108242034912109,1.22855019569397,-0.000331401824951172,-9.67979431152344e-05,1.22855091094971,-0.000331878662109375,-0.000114917755126953,1.22850513458252,-0.000274181365966797,-0.000148296356201172,1.22853624820709,-0.000288963317871094,-0.000141143798828125,1.22852170467377,-0.000317096710205078,-0.000152587890625,1.2284928560257,-0.000317096710205078,-0.000160694122314453,1.2285133600235,-0.000302791595458984,-0.000151157379150391,1.22854149341583,-0.000331401824951172,-0.000143051147460938,1.22850275039673,-0.000331401824951172,-0.000162124633789063,1.2285236120224,-0.000331878662109375,-0.000152111053466797,1.22855067253113,-0.000331401824951172,-0.00012969970703125,1.22855162620544,-0.000332355499267578,-0.000124454498291016,1.22854995727539,-0.000345706939697266,-0.0001220703125,1.22855091094971,-0.000331878662109375,-0.000124454498291016,1.22853124141693,-0.000374794006347656,-0.000144004821777344,1.22849726676941,-0.000375270843505859,-0.000162124633789063,1.22851574420929,-0.000374317169189453,-0.000154495239257813,1.2285383939743,-0.000375270843505859,-0.000133514404296875,1.22854030132294,-0.000374794006347656,-0.000127792358398438,1.22853910923004,-0.000375270843505859,-0.000125885009765625,1.22853982448578,-0.000375270843505859,-0.000125885009765625,1.22854363918304,-0.000360965728759766,-0.000130653381347656,1.22854673862457,-0.000345706939697266,-0.000125885009765625,1.22854292392731,-0.000360488891601563,-0.000128746032714844,1.22854483127594,-0.000361442565917969,-0.000128746032714844,1.22856712341309,-0.000245571136474609,-7.10487365722656e-05,1.22856688499451,-0.000245094299316406,-8.91685485839844e-05,1.22856783866882,-0.000245094299316406,-0.000101089477539063,1.22856712341309,-0.0002593994140625,-0.000112533569335938,1.22856521606445,-0.000259876251220703,-0.000105857849121094,1.22856163978577,-0.000259876251220703, +-0.000121116638183594,1.22856426239014,-0.000245094299316406,-0.000116825103759766,1.22856330871582,-0.000258922576904297,-0.000119209289550781,1.22856378555298,-0.000259876251220703,-0.000118732452392578,1.22856283187866,-0.000273227691650391,-0.000119209289550781,1.22856211662292,-0.000288963317871094,-0.000118255615234375,1.22856521606445,-0.000274181365966797,-0.000113487243652344,1.22847064398229,-0.000461101531982422,-8.48770141601563e-05,1.22847189754248,-0.000462055206298828,-8.96453857421875e-05,1.22847375273705,-0.000461578369140625,-8.48770141601563e-05,1.22847228497267,-0.000462055206298828,-8.29696655273438e-05,1.22847203910351,-0.000462055206298828,-8.48770141601563e-05,1.22848185896873,-0.000446796417236328,-0.000132560729980469,1.22847259044647,-0.000447273254394531,-0.000126838684082031,1.22847232967615,-0.000447750091552734,-0.000123977661132813,1.22849333286285,-0.000447750091552734,-9.1552734375e-05,1.22849225997925,-0.000447273254394531,-0.000112533569335938,1.22849678993225,-0.000447750091552734,-0.000123977661132813,1.22848883271217,-0.000432491302490234,-0.000131607055664063,1.22848951816559,-0.000447750091552734,-0.000125885009765625,1.22850167751312,-0.000446796417236328,-9.1552734375e-05,1.2285019159317,-0.000446796417236328,-0.000109672546386719,1.22850155830383,-0.000432968139648438,-0.000123977661132813,1.22850167751312,-0.000432491302490234,-0.000120162963867188,1.22850406169891,-0.000432491302490234,-0.000130653381347656,1.22851598262787,-0.000447273254394531,-8.96453857421875e-05,1.22851359844208,-0.000432491302490234,-0.000110626220703125,1.22850978374481,-0.000432968139648438,-0.000128746032714844,1.22851049900055,-0.000432491302490234,-0.000123977661132813,1.22851645946503,-0.000418663024902344,-0.000123977661132813,1.22852218151093,-0.000432491302490234,-8.86917114257813e-05,1.22852003574371,-0.000432491302490234,-0.000108718872070313,1.2285190820694,-0.000418186187744141,-0.000127792358398438,1.2285178899765,-0.000418663024902344,-0.000123023986816406,1.22851836681366,-0.000418186187744141, +-0.000121116638183594,1.22853052616119,-0.000418663024902344,-8.7738037109375e-05,1.22852718830109,-0.000418186187744141,-0.000108718872070313,1.22852957248688,-0.000403404235839844,-0.000119209289550781,1.22852456569672,-0.000403881072998047,-0.000126838684082031,1.2285248041153,-0.000403404235839844,-0.000121116638183594,1.22853434085846,-0.000403881072998047,-8.67843627929688e-05,1.22853171825409,-0.00040435791015625,-0.0001068115234375,1.22853004932404,-0.000403404235839844,-0.000120162963867188,1.22853052616119,-0.00040435791015625,-0.000115394592285156,1.22853004932404,-0.000389575958251953,-0.000123977661132813,1.22853553295135,-0.000389575958251953,-8.48770141601563e-05,1.2285350561142,-0.00038909912109375,-0.000102996826171875,1.22853338718414,-0.00038909912109375,-0.0001220703125,1.22853362560272,-0.000389575958251953,-0.000117301940917969,1.22853934764862,-0.000374317169189453,-0.000112533569335938,1.22854268550873,-0.000375270843505859,-8.29696655273438e-05,1.22854197025299,-0.000375270843505859,-0.000102043151855469,1.22854197025299,-0.000360488891601563,-0.000121116638183594,1.22854220867157,-0.000374317169189453,-0.000115394592285156,1.22854173183441,-0.000374794006347656,-0.000110626220703125,1.22854125499725,-0.000360488891601563,-8.0108642578125e-05,1.22854220867157,-0.000360965728759766,-0.000100135803222656,1.22854995727539,-0.000346660614013672,-0.000113487243652344,1.22854602336884,-0.000360488891601563,-0.000121116638183594,1.2285441160202,-0.000360965728759766,-0.000115394592285156,1.22855043411255,-0.000332355499267578,-8.0108642578125e-05,1.22854888439178,-0.000332355499267578,-9.918212890625e-05,1.22855067253113,-0.000332355499267578,-0.000113487243652344,1.22854971885681,-0.000332355499267578,-0.000110149383544922,1.22855234146118,-0.000318050384521484,-0.000121116638183594,1.22855591773987,-0.000317573547363281,-7.72476196289063e-05,1.22855544090271,-0.000317096710205078,-9.48905944824219e-05,1.22855687141418,-0.000318050384521484,-0.000119686126708984,1.22855567932129,-0.000317573547363281, +-0.000113487243652344,1.22856259346008,-0.000303268432617188,-0.000112056732177734,1.22847449034452,-0.000461578369140625,-9.1552734375e-05,1.22847490012646,-0.000447273254394531,-0.000110626220703125,1.22856593132019,-0.000259876251220703,-6.58035278320313e-05,1.22857022285461,-0.000245094299316406,-6.58035278320313e-05,1.22857022285461,-0.000258922576904297,-6.19888305664063e-05,1.2285680770874,-0.000245094299316406,-6.58035278320313e-05,1.22850167751312,-0.000447750091552734,-8.20159912109375e-05,1.22850155830383,-0.000446796417236328,-8.29696655273438e-05,1.22851693630219,-0.000447750091552734,-8.10623168945313e-05,1.22851622104645,-0.000446796417236328,-8.29696655273438e-05,1.22849345207214,-0.000461578369140625,-8.10623168945313e-05,1.22849309444427,-0.000461578369140625,-8.48770141601563e-05,1.22852456569672,-0.000432491302490234,-7.91549682617188e-05,1.22852313518524,-0.000432968139648438,-8.29696655273438e-05,1.22853481769562,-0.000418186187744141,-7.72476196289063e-05,1.22853243350983,-0.000418663024902344,-8.20159912109375e-05,1.22853720188141,-0.000418186187744141,-7.91549682617188e-05,1.22853553295135,-0.000418663024902344,-8.10623168945313e-05,1.22853815555573,-0.00038909912109375,-7.43865966796875e-05,1.22853648662567,-0.00038909912109375,-7.82012939453125e-05,1.22854340076447,-0.000374317169189453,-7.53402709960938e-05,1.22854292392731,-0.000375270843505859,-8.0108642578125e-05,1.2285441160202,-0.000360965728759766,-7.2479248046875e-05,1.22854197025299,-0.000360488891601563,-7.53402709960938e-05,1.22855305671692,-0.000331878662109375,-7.15255737304688e-05,1.22855091094971,-0.000331878662109375,-7.43865966796875e-05,1.2285590171814,-0.000317096710205078,-6.81877136230469e-05,1.22855687141418,-0.000317096710205078,-7.15255737304688e-05,1.22856760025024,-0.0002593994140625,-6.43730163574219e-05,1.22856545448303,-0.000260353088378906,-6.53266906738281e-05,1.22847064398229,-0.000461101531982422,-8.10623168945313e-05,1.22847393155098,-0.000462055206298828,-8.0108642578125e-05,1.22847230732441,-0.000462055206298828, +-8.10623168945313e-05,1.22847253829241,-0.000461101531982422,-8.20159912109375e-05,1.22848924994469,-0.000461101531982422,-8.0108642578125e-05,1.2284844815731,-0.000461578369140625,-8.10623168945313e-05,1.22847846150398,-0.000461578369140625,-8.10623168945313e-05,1.22848343849182,-0.000461101531982422,-8.10623168945313e-05,1.22849786281586,-0.000461101531982422,-7.82012939453125e-05,1.22849535942078,-0.000461101531982422,-8.0108642578125e-05,1.22849428653717,-0.000461578369140625,-7.82012939453125e-05,1.2285008430481,-0.000447750091552734,-8.10623168945313e-05,1.22850024700165,-0.000462055206298828,-7.82012939453125e-05,1.2284996509552,-0.000447273254394531,-7.91549682617188e-05,1.22850465774536,-0.000447273254394531,-8.20159912109375e-05,1.22850286960602,-0.000447750091552734,-8.0108642578125e-05,1.22850215435028,-0.000447750091552734,-8.0108642578125e-05,1.22851431369781,-0.000447273254394531,-8.0108642578125e-05,1.22851073741913,-0.000447750091552734,-7.72476196289063e-05,1.22850930690765,-0.000446796417236328,-7.91549682617188e-05,1.22852146625519,-0.000447750091552734,-7.82012939453125e-05,1.22852051258087,-0.000447750091552734,-7.72476196289063e-05,1.22851860523224,-0.000447273254394531,-7.72476196289063e-05,1.22852385044098,-0.000432968139648438,-7.91549682617188e-05,1.22852408885956,-0.000446796417236328,-7.82012939453125e-05,1.22852265834808,-0.000447750091552734,-7.91549682617188e-05,1.2285293340683,-0.000432968139648438,-7.72476196289063e-05,1.2285281419754,-0.000432491302490234,-7.91549682617188e-05,1.22852623462677,-0.000432491302490234,-7.72476196289063e-05,1.22853577136993,-0.000432968139648438,-7.72476196289063e-05,1.22853600978851,-0.000432491302490234,-7.53402709960938e-05,1.22853291034698,-0.000432491302490234,-7.62939453125e-05,1.2285395860672,-0.000418663024902344,-7.62939453125e-05,1.22854149341583,-0.000432491302490234,-7.62939453125e-05,1.22853815555573,-0.000418186187744141,-7.62939453125e-05,1.2285395860672,-0.000417232513427734,-7.91549682617188e-05,1.22854220867157,-0.000418663024902344, +-7.72476196289063e-05,1.22853982448578,-0.000418186187744141,-7.72476196289063e-05,1.22853910923004,-0.000403881072998047,-7.72476196289063e-05,1.22854149341583,-0.000418663024902344,-7.82012939453125e-05,1.22853934764862,-0.000418186187744141,-7.82012939453125e-05,1.2285395860672,-0.000403404235839844,-7.62939453125e-05,1.22854244709015,-0.000403881072998047,-7.72476196289063e-05,1.22853863239288,-0.00040435791015625,-7.62939453125e-05,1.22854220867157,-0.000389575958251953,-7.34329223632813e-05,1.22854387760162,-0.00038909912109375,-7.53402709960938e-05,1.2285407781601,-0.00038909912109375,-7.62939453125e-05,1.22854459285736,-0.000389575958251953,-7.72476196289063e-05,1.22854578495026,-0.000389575958251953,-7.72476196289063e-05,1.22854363918304,-0.000389575958251953,-7.62939453125e-05,1.22854435443878,-0.000375747680664063,-7.43865966796875e-05,1.22854673862457,-0.00038909912109375,-7.62939453125e-05,1.22854483127594,-0.00038909912109375,-7.62939453125e-05,1.2285453081131,-0.000360965728759766,-7.43865966796875e-05,1.22854816913605,-0.000374317169189453,-7.43865966796875e-05,1.2285441160202,-0.000374317169189453,-7.34329223632813e-05,1.22855019569397,-0.000345706939697266,-7.15255737304688e-05,1.22855162620544,-0.000360965728759766,-7.2479248046875e-05,1.22854769229889,-0.000360965728759766,-7.15255737304688e-05,1.22855472564697,-0.000346660614013672,-7.2479248046875e-05,1.22855544090271,-0.000346660614013672,-7.2479248046875e-05,1.22855305671692,-0.000346660614013672,-7.2479248046875e-05,1.22855567932129,-0.000331878662109375,-7.00950622558594e-05,1.22855806350708,-0.000346660614013672,-7.05718994140625e-05,1.22855520248413,-0.000346660614013672,-7.15255737304688e-05,1.22855997085571,-0.000317573547363281,-6.96182250976563e-05,1.22856163978577,-0.000331401824951172,-6.96182250976563e-05,1.22855758666992,-0.000331878662109375,-6.866455078125e-05,1.22856497764587,-0.000302791595458984,-6.72340393066406e-05,1.22856664657593,-0.000317573547363281,-6.81877136230469e-05,1.2285623550415,-0.000318050384521484,-6.77108764648438e-05, +1.22856903076172,-0.000302791595458984,-6.96182250976563e-05,1.22857069969177,-0.000303268432617188,-6.77108764648438e-05,1.22856712341309,-0.000303745269775391,-6.77108764648438e-05,1.2285692691803,-0.000288486480712891,-6.4849853515625e-05,1.22857093811035,-0.000274181365966797,-6.38961791992188e-05,1.22857522964478,-0.000288486480712891,-6.58035278320313e-05,1.22857022285461,-0.000288486480712891,-6.43730163574219e-05,1.22857236862183,-0.000259876251220703,-6.15119934082031e-05,1.22857642173767,-0.0002593994140625,-6.34193420410156e-05,1.22857141494751,-0.000259876251220703,-6.43730163574219e-05,1.22857356071472,-0.000245094299316406,-6.05583190917969e-05,1.22857618331909,-0.0002593994140625,-6.103515625e-05,1.22857284545898,-0.000259876251220703,-6.103515625e-05,1.2284799516201,-0.000476360321044922,-8.10623168945313e-05,1.22847665846348,-0.000476360321044922,-8.20159912109375e-05,1.22847419977188,-0.000461101531982422,-8.10623168945313e-05,1.22847574949265,-0.000461578369140625,-7.91549682617188e-05,1.22847637534142,-0.000475883483886719,-8.10623168945313e-05,1.22849249839783,-0.000461578369140625,-7.91549682617188e-05,1.22848606109619,-0.000461578369140625,-8.10623168945313e-05,1.22849988937378,-0.000461101531982422,-8.0108642578125e-05,1.22849726676941,-0.000461101531982422,-8.0108642578125e-05,1.22850143909454,-0.000446796417236328,-7.91549682617188e-05,1.2285008430481,-0.000461578369140625,-8.0108642578125e-05,1.22850728034973,-0.000461578369140625,-7.91549682617188e-05,1.22850358486176,-0.000447750091552734,-8.20159912109375e-05,1.22851765155792,-0.000446796417236328,-7.82012939453125e-05,1.22851240634918,-0.000447750091552734,-8.0108642578125e-05,1.22852504253387,-0.000447750091552734,-7.91549682617188e-05,1.2285224199295,-0.000446796417236328,-7.82012939453125e-05,1.22852623462677,-0.000432491302490234,-7.82012939453125e-05,1.22852551937103,-0.000447750091552734,-7.91549682617188e-05,1.22853457927704,-0.000446796417236328,-7.72476196289063e-05,1.22852981090546,-0.000446796417236328,-8.0108642578125e-05, +1.22854268550873,-0.000432968139648438,-7.72476196289063e-05,1.22853910923004,-0.000432491302490234,-7.72476196289063e-05,1.22854506969452,-0.000418186187744141,-7.72476196289063e-05,1.22854459285736,-0.000432491302490234,-7.62939453125e-05,1.22854268550873,-0.000418186187744141,-7.72476196289063e-05,1.22854387760162,-0.000418663024902344,-7.72476196289063e-05,1.22854578495026,-0.000417709350585938,-7.72476196289063e-05,1.2285441160202,-0.000418186187744141,-7.62939453125e-05,1.22854650020599,-0.00040435791015625,-7.43865966796875e-05,1.22854626178741,-0.00040435791015625,-7.72476196289063e-05,1.22854793071747,-0.000389575958251953,-7.53402709960938e-05,1.22854745388031,-0.000403881072998047,-7.53402709960938e-05,1.22854769229889,-0.000389575958251953,-7.62939453125e-05,1.22854745388031,-0.000389575958251953,-7.62939453125e-05,1.22855043411255,-0.000374317169189453,-7.43865966796875e-05,1.22854864597321,-0.00038909912109375,-7.62939453125e-05,1.22855353355408,-0.000375270843505859,-7.2479248046875e-05,1.22855186462402,-0.000374794006347656,-7.34329223632813e-05,1.22855830192566,-0.000346183776855469,-7.15255737304688e-05,1.22855615615845,-0.000360965728759766,-7.2479248046875e-05,1.22855877876282,-0.000346183776855469,-7.2479248046875e-05,1.22855854034424,-0.000346660614013672,-7.2479248046875e-05,1.22856378555298,-0.000331878662109375,-6.96182250976563e-05,1.22856092453003,-0.000346660614013672,-7.15255737304688e-05,1.22856712341309,-0.000332355499267578,-7.00950622558594e-05,1.22856545448303,-0.000331878662109375,-7.00950622558594e-05,1.22857308387756,-0.000302314758300781,-6.72340393066406e-05,1.22857046127319,-0.000317573547363281,-6.81877136230469e-05,1.22857475280762,-0.000303268432617188,-6.91413879394531e-05,1.2285737991333,-0.000303268432617188,-6.866455078125e-05,1.2285795211792,-0.000288486480712891,-6.4849853515625e-05,1.22857999801636,-0.000273227691650391,-6.43730163574219e-05,1.22857999801636,-0.000288486480712891,-6.43730163574219e-05,1.22858166694641,-0.000259876251220703,-6.103515625e-05,1.22858119010925, +-0.000259876251220703,-6.34193420410156e-05,1.22857761383057,-0.000245571136474609,-6.103515625e-05,1.22857975959778,-0.000259876251220703,-6.103515625e-05,1.22847710549831,-0.000447750091552734,-0.000140190124511719,1.22847734391689,-0.000446796417236328,-0.000132560729980469,1.22847656905651,-0.000447750091552734,-0.00012969970703125,1.22856593132019,-0.000230312347412109,-0.000109195709228516,1.22856140136719,-0.000274181365966797,-0.000123023986816406,1.22856283187866,-0.000273227691650391,-0.000121116638183594,1.2285578250885,-0.000288486480712891,-0.000125408172607422,1.22856068611145,-0.000302791595458984,-0.000121116638183594,1.2285532951355,-0.000318050384521484,-0.000128746032714844,1.22855305671692,-0.000331878662109375,-0.000125885009765625,1.22854769229889,-0.000346183776855469,-0.00012969970703125,1.22854888439178,-0.000346660614013672,-0.000124931335449219,1.22854149341583,-0.000360488891601563,-0.000132560729980469,1.22854149341583,-0.000361442565917969,-0.000128746032714844,1.22853577136993,-0.000374317169189453,-0.000133514404296875,1.22853720188141,-0.000375270843505859,-0.000125885009765625,1.22853076457977,-0.00038909912109375,-0.000134468078613281,1.22853028774261,-0.00038909912109375,-0.00012969970703125,1.22852528095245,-0.000403404235839844,-0.000135421752929688,1.22852694988251,-0.000403881072998047,-0.000130653381347656,1.22851955890656,-0.000418663024902344,-0.000136375427246094,1.22851932048798,-0.000418186187744141,-0.000132560729980469,1.22851145267487,-0.000418186187744141,-0.000138282775878906,1.22851383686066,-0.000417232513427734,-0.000133514404296875,1.22850382328033,-0.000432968139648438,-0.000138282775878906,1.22850370407104,-0.000432491302490234,-0.000133514404296875,1.22849249839783,-0.000432491302490234,-0.000138282775878906,1.22849500179291,-0.000432491302490234,-0.000134468078613281,1.22848239541054,-0.000447273254394531,-0.000139236450195313,1.22847871482372,-0.000446796417236328,-0.000135421752929688,1.22848185896873,-0.000447750091552734,-0.000136375427246094,1.22847710549831, +-0.000446796417236328,-0.00012969970703125,1.22847640514374,-0.000447750091552734,-0.000124931335449219,1.22847609221935,-0.000447750091552734,-0.000123977661132813,1.22855544090271,-0.000259876251220703,-0.000128269195556641,1.22855544090271,-0.000245094299316406,-0.000126361846923828,1.22855877876282,-0.0002593994140625,-0.000125885009765625,1.22855257987976,-0.000302791595458984,-0.000133991241455078,1.22855067253113,-0.000331878662109375,-0.000134468078613281,1.22855353355408,-0.000317573547363281,-0.000131130218505859,1.22854292392731,-0.000360965728759766,-0.000135421752929688,1.2285395860672,-0.000361442565917969,-0.000136375427246094,1.22854197025299,-0.000361442565917969,-0.000134468078613281,1.22853195667267,-0.00038909912109375,-0.000136375427246094,1.22852909564972,-0.00038909912109375,-0.000138282775878906,1.22853124141693,-0.000389575958251953,-0.0001373291015625,1.22852051258087,-0.000403404235839844,-0.000139236450195313,1.22851669788361,-0.000418663024902344,-0.000141143798828125,1.22851979732513,-0.000418663024902344,-0.000138282775878906,1.2285053730011,-0.000432491302490234,-0.000139236450195313,1.22850012779236,-0.000432491302490234,-0.000139236450195313,1.22850430011749,-0.000432968139648438,-0.000141143798828125,1.22848570346832,-0.000432968139648438,-0.000139236450195313,1.22847943007946,-0.000446796417236328,-0.000142097473144531,1.22848355770111,-0.000432491302490234,-0.000141143798828125,1.22854900360107,-0.000245094299316406,-0.000128746032714844,1.22854948043823,-0.000274181365966797,-0.000131130218505859,1.22855043411255,-0.000288486480712891,-0.000133514404296875,1.22854745388031,-0.000346660614013672,-0.000136375427246094,1.2285487651825,-0.000332355499267578,-0.000135421752929688,1.2285453081131,-0.000346660614013672,-0.000135421752929688,1.22853529453278,-0.000374794006347656,-0.0001373291015625,1.22853720188141,-0.000375270843505859,-0.000138282775878906,1.22853314876556,-0.000374794006347656,-0.000139236450195313,1.2285248041153,-0.000403404235839844,-0.000139236450195313,1.22852671146393, +-0.00038909912109375,-0.0001373291015625,1.22852265834808,-0.000403881072998047,-0.000140190124511719,1.22851121425629,-0.000418186187744141,-0.000141143798828125,1.22851407527924,-0.000417232513427734,-0.000139236450195313,1.22850787639618,-0.000418663024902344,-0.000139236450195313,1.22849249839783,-0.000432968139648438,-0.000140190124511719,1.22849631309509,-0.000432491302490234,-0.000140190124511719,1.22848379611969,-0.000432968139648438,-0.00014495849609375,1.22848868370056,-0.000432968139648438,-0.000140190124511719,1.22847732901573,-0.000432968139648438,-0.000144004821777344,1.22847926616669,-0.000432491302490234,-0.000144004821777344,1.22847064398229,-0.000432968139648438,-0.000149726867675781,1.22847513854504,-0.000432968139648438,-0.000150680541992188,1.22847420722246,-0.000432491302490234,-0.000149726867675781,1.22847064211965,-0.000418663024902344,-0.000152587890625,1.22847664356232,-0.000418663024902344,-0.000155448913574219,1.22847585380077,-0.000418663024902344,-0.000151634216308594,1.22847064211965,-0.000418663024902344,-0.000156402587890625,1.22847789525986,-0.000418186187744141,-0.000157356262207031,1.22847732901573,-0.000418663024902344,-0.000154495239257813,1.22847064398229,-0.000403881072998047,-0.00016021728515625,1.2284794151783,-0.000403881072998047,-0.00016021728515625,1.22847869992256,-0.000403404235839844,-0.000157356262207031,1.22847064211965,-0.000403404235839844,-0.00016021728515625,1.22848090529442,-0.00038909912109375,-0.000162124633789063,1.22848019003868,-0.000403881072998047,-0.000161170959472656,1.22847064398229,-0.000389575958251953,-0.000164985656738281,1.22848236560822,-0.000375747680664063,-0.000164031982421875,1.2284816801548,-0.00038909912109375,-0.000163078308105469,1.22847064398229,-0.000374794006347656,-0.000166893005371094,1.22848403453827,-0.000360965728759766,-0.000166893005371094,1.22848305106163,-0.000374317169189453,-0.000165939331054688,1.22848534584045,-0.000332355499267578,-0.000165939331054688,1.22847064398229,-0.000317573547363281,-0.000164031982421875,1.228485673666, +-0.000332355499267578,-0.000164031982421875,1.22845619916916,-0.000447273254394531,-0.000126838684082031,1.22845515608788,-0.000461578369140625,-0.000112533569335938,1.22841262817383,-0.000418186187744141,-0.000123977661132813,1.22840666770935,-0.000432491302490234,-0.000108718872070313,1.22838854789734,-0.000374317169189453,-0.000117301940917969,1.22838473320007,-0.000374794006347656,-0.000102043151855469,1.22843313217163,-0.000461578369140625,-8.29696655273438e-05,1.22842800617218,-0.000447273254394531,-9.1552734375e-05,1.22842228412628,-0.000447273254394531,-8.392333984375e-05,1.22842824459076,-0.000461101531982422,-8.10623168945313e-05,1.22842764854431,-0.000461578369140625,-8.48770141601563e-05,1.22842514514923,-0.000432491302490234,-0.000134468078613281,1.22842681407928,-0.000432491302490234,-0.000140190124511719,1.22845017910004,-0.000447273254394531,-0.000148773193359375,1.22845041751862,-0.000446796417236328,-0.000142097473144531,1.22839272022247,-0.000418186187744141,-8.0108642578125e-05,1.22839248180389,-0.000403881072998047,-8.58306884765625e-05,1.228391289711,-0.00040435791015625,-7.91549682617188e-05,1.22839272022247,-0.000403404235839844,-7.62939453125e-05,1.22839152812958,-0.00040435791015625,-8.0108642578125e-05,1.22839999198914,-0.000389575958251953,-0.000128746032714844,1.22839939594269,-0.00038909912109375,-0.000138282775878906,1.22840809822083,-0.000417709350585938,-0.000146865844726563,1.22841024398804,-0.000418663024902344,-0.000139236450195313,1.22837328910828,-0.000346660614013672,-7.43865966796875e-05,1.22836947441101,-0.000332355499267578,-7.91549682617188e-05,1.22836852073669,-0.000332355499267578,-7.20024108886719e-05,1.22837281227112,-0.000331878662109375,-7.05718994140625e-05,1.22837090492249,-0.000331878662109375,-7.29560852050781e-05,1.2283718585968,-0.000317096710205078,-0.000123023986816406,1.22837114334106,-0.000317096710205078,-0.000129222869873047,1.22838354110718,-0.000360488891601563,-0.000142097473144531,1.22838544845581,-0.000360965728759766,-0.000132560729980469,1.22835397720337, +-0.000259876251220703,-7.20024108886719e-05,1.22835302352905,-0.000259876251220703,-8.7738037109375e-05,1.22836065292358,-0.000245571136474609,-0.000111103057861328,1.22836089134216,-0.000245094299316406,-0.000105857849121094,1.22836256027222,-0.000274658203125,-0.000125885009765625,1.228360414505,-0.000274658203125,-0.000134944915771484,1.22846066951752,-0.000475883483886719,-8.48770141601563e-05,1.22845375537872,-0.000461578369140625,-9.25064086914063e-05,1.2284460067749,-0.000461578369140625,-8.67843627929688e-05,1.22845375537872,-0.000462055206298828,-8.29696655273438e-05,1.22845342755318,-0.000461101531982422,-8.48770141601563e-05,1.22843909263611,-0.000461578369140625,-8.48770141601563e-05,1.22843897342682,-0.000447750091552734,-8.96453857421875e-05,1.22843885421753,-0.000447750091552734,-8.48770141601563e-05,1.22844016551971,-0.000461578369140625,-8.20159912109375e-05,1.2284392118454,-0.000462055206298828,-8.48770141601563e-05,1.22844159603119,-0.000446796417236328,-0.000121116638183594,1.22843945026398,-0.000447273254394531,-0.000111579895019531,1.22840452194214,-0.000446796417236328,-8.29696655273438e-05,1.22840130329132,-0.000432491302490234,-8.86917114257813e-05,1.22839617729187,-0.000432491302490234,-8.29696655273438e-05,1.22840011119843,-0.000432491302490234,-7.82012939453125e-05,1.22839975357056,-0.000432968139648438,-8.20159912109375e-05,1.2283947467804,-0.000418663024902344,-8.20159912109375e-05,1.22839725017548,-0.000418186187744141,-8.7738037109375e-05,1.22839760780334,-0.000418186187744141,-8.29696655273438e-05,1.22839665412903,-0.000417709350585938,-7.91549682617188e-05,1.22839653491974,-0.000418186187744141,-8.29696655273438e-05,1.22840428352356,-0.000403881072998047,-0.000116348266601563,1.22840166091919,-0.000418663024902344,-0.000108718872070313,1.22838735580444,-0.00038909912109375,-7.82012939453125e-05,1.22838473320007,-0.000375747680664063,-8.20159912109375e-05,1.22838258743286,-0.000375270843505859,-7.62939453125e-05,1.22838640213013,-0.000375270843505859,-7.2479248046875e-05,1.22838497161865, +-0.000374794006347656,-7.72476196289063e-05,1.22837829589844,-0.000346660614013672,-7.43865966796875e-05,1.22837781906128,-0.000346660614013672,-8.10623168945313e-05,1.22837948799133,-0.000346660614013672,-7.53402709960938e-05,1.22838044166565,-0.000346660614013672,-7.2479248046875e-05,1.22837948799133,-0.000346660614013672,-7.53402709960938e-05,1.22837829589844,-0.000346660614013672,-0.000110626220703125,1.22837662696838,-0.000346183776855469,-0.000100135803222656,1.22835636138916,-0.000288486480712891,-6.91413879394531e-05,1.22835516929626,-0.000288009643554688,-7.2479248046875e-05,1.22835540771484,-0.000273704528808594,-6.72340393066406e-05,1.22835755348206,-0.000288486480712891,-6.58035278320313e-05,1.22835540771484,-0.000288009643554688,-6.77108764648438e-05,1.22835898399353,-0.000274658203125,-0.000108242034912109,1.22835493087769,-0.000274181365966797,-8.86917114257813e-05,1.22841358184814,-0.000447273254394531,-8.29696655273438e-05,1.22841417789459,-0.000432491302490234,-9.1552734375e-05,1.2284140586853,-0.000433444976806641,-8.20159912109375e-05,1.22841513156891,-0.000447750091552734,-8.0108642578125e-05,1.22841393947601,-0.000447750091552734,-8.29696655273438e-05,1.22841906547546,-0.000432491302490234,-0.000121116638183594,1.22841703891754,-0.000432491302490234,-0.000110626220703125,1.2284300327301,-0.000432491302490234,-0.000125885009765625,1.22842872142792,-0.000447750091552734,-0.000111579895019531,1.2284243106842,-0.000432014465332031,-0.000147819519042969,1.22843515872955,-0.000432968139648438,-0.000149726867675781,1.22843778133392,-0.000432491302490234,-0.000139236450195313,1.22843730449677,-0.000432491302490234,-0.000128746032714844,1.2284642457962,-0.000447750091552734,-0.000140190124511719,1.22846423089504,-0.000447273254394531,-0.000149726867675781,1.22846847400069,-0.000446796417236328,-0.000130653381347656,1.22846859693527,-0.000447750091552734,-0.000126838684082031,1.22844994068146,-0.000446796417236328,-0.000134468078613281,1.22839093208313,-0.000389575958251953,-7.91549682617188e-05,1.22839248180389, +-0.00038909912109375,-8.29696655273438e-05,1.22839212417603,-0.00038909912109375,-7.91549682617188e-05,1.22839260101318,-0.00038909912109375,-7.72476196289063e-05,1.22839224338531,-0.00038909912109375,-8.0108642578125e-05,1.22839534282684,-0.000374317169189453,-0.000110626220703125,1.22839367389679,-0.00038909912109375,-0.000102996826171875,1.22840142250061,-0.000403881072998047,-0.000123023986816406,1.22839617729187,-0.000403404235839844,-0.000105857849121094,1.22839796543121,-0.00038909912109375,-0.00014495849609375,1.2284038066864,-0.00040435791015625,-0.00014495849609375,1.22840595245361,-0.000403881072998047,-0.000136375427246094,1.22840583324432,-0.000403404235839844,-0.000123977661132813,1.22841501235962,-0.000418663024902344,-0.000148773193359375,1.22841787338257,-0.000417232513427734,-0.000139236450195313,1.22841894626617,-0.000418186187744141,-0.000127792358398438,1.22840976715088,-0.000417709350585938,-0.000128746032714844,1.2283627986908,-0.000303268432617188,-7.15255737304688e-05,1.22836256027222,-0.000303268432617188,-7.62939453125e-05,1.22836327552795,-0.000302791595458984,-7.20024108886719e-05,1.22836446762085,-0.000302791595458984,-6.91413879394531e-05,1.22836303710938,-0.000303268432617188,-7.15255737304688e-05,1.22836661338806,-0.000302791595458984,-0.000104904174804688,1.22836351394653,-0.000302314758300781,-9.34600830078125e-05,1.22837328910828,-0.000331878662109375,-0.000115871429443359,1.22836923599243,-0.000331878662109375,-9.67979431152344e-05,1.22836899757385,-0.000317573547363281,-0.000138282775878906,1.22837591171265,-0.000346183776855469,-0.000140190124511719,1.22837829589844,-0.000346660614013672,-0.000130653381347656,1.22837853431702,-0.000345230102539063,-0.000119209289550781,1.22839069366455,-0.000375747680664063,-0.000143051147460938,1.22839272022247,-0.000375270843505859,-0.000133514404296875,1.22839319705963,-0.000374794006347656,-0.000120162963867188,1.22838401794434,-0.000360488891601563,-0.000123023986816406,1.22835683822632,-0.000245094299316406,-7.10487365722656e-05,1.22835755348206, +-0.000244617462158203,-8.91685485839844e-05,1.22835946083069,-0.000245094299316406,-0.000101566314697266,1.22835850715637,-0.0002593994140625,-0.000105857849121094,1.2283616065979,-0.0002593994140625,-0.000112056732177734,1.22836089134216,-0.000245094299316406,-0.0001220703125,1.22835874557495,-0.000245094299316406,-0.000130653381347656,1.2283616065979,-0.000259876251220703,-0.000124454498291016,1.22835993766785,-0.0002593994140625,-0.000131130218505859,1.22836136817932,-0.000259876251220703,-0.000115871429443359,1.22836256027222,-0.000274181365966797,-0.000117778778076172,1.22836232185364,-0.000273227691650391,-0.000113487243652344,1.22846926003695,-0.000461578369140625,-9.05990600585938e-05,1.22846709191799,-0.000462055206298828,-8.48770141601563e-05,1.22846902161837,-0.000461578369140625,-8.20159912109375e-05,1.22846876829863,-0.000461578369140625,-8.67843627929688e-05,1.22845819592476,-0.000447273254394531,-0.000142097473144531,1.22845831513405,-0.000447273254394531,-0.000148773193359375,1.22845819592476,-0.000447750091552734,-0.000135421752929688,1.22845795750618,-0.000446796417236328,-0.000131607055664063,1.22846899926662,-0.000446796417236328,-0.000121116638183594,1.22846901416779,-0.000461578369140625,-0.000110626220703125,1.22844362258911,-0.000447750091552734,-0.000139236450195313,1.22844159603119,-0.000447273254394531,-0.000148773193359375,1.22844135761261,-0.000461578369140625,-9.1552734375e-05,1.22844290733337,-0.000447750091552734,-0.000111579895019531,1.22844326496124,-0.000446796417236328,-0.000128746032714844,1.22844254970551,-0.000446796417236328,-0.000124931335449219,1.22844660282135,-0.000447750091552734,-0.000126838684082031,1.22844958305359,-0.000446796417236328,-0.000131607055664063,1.22843670845032,-0.000446796417236328,-9.25064086914063e-05,1.22843682765961,-0.000446796417236328,-0.000109672546386719,1.22843205928802,-0.000432968139648438,-0.000141143798828125,1.22842991352081,-0.000432968139648438,-0.000149726867675781,1.2284369468689,-0.000447750091552734,-0.000119209289550781,1.2284369468689, +-0.000447273254394531,-0.000123977661132813,1.22843110561371,-0.000432968139648438,-0.000134468078613281,1.22843098640442,-0.000432491302490234,-0.000131607055664063,1.22842228412628,-0.000432968139648438,-0.000139236450195313,1.22841966152191,-0.000432014465332031,-0.000148773193359375,1.22841715812683,-0.000446796417236328,-8.86917114257813e-05,1.2284197807312,-0.000432491302490234,-0.000112533569335938,1.22842264175415,-0.000432491302490234,-0.000125885009765625,1.22842442989349,-0.000432968139648438,-0.000128746032714844,1.22842156887054,-0.000432491302490234,-0.000128746032714844,1.22842061519623,-0.000432968139648438,-0.000123977661132813,1.2284107208252,-0.000432968139648438,-8.7738037109375e-05,1.22841382026672,-0.000432491302490234,-0.000109672546386719,1.22841393947601,-0.000417232513427734,-0.000139236450195313,1.22841119766235,-0.000417709350585938,-0.00014495849609375,1.22841429710388,-0.000418663024902344,-0.00012969970703125,1.22841453552246,-0.000417232513427734,-0.000126838684082031,1.22841715812683,-0.000432491302490234,-0.000121116638183594,1.22841882705688,-0.000418186187744141,-0.000123977661132813,1.22840738296509,-0.000403881072998047,-0.0001373291015625,1.22840583324432,-0.000403404235839844,-0.000146865844726563,1.22839522361755,-0.000432491302490234,-8.7738037109375e-05,1.2284015417099,-0.000418186187744141,-0.000108718872070313,1.22840690612793,-0.00040435791015625,-0.000123977661132813,1.22840619087219,-0.000403881072998047,-0.000119209289550781,1.22840702533722,-0.000418663024902344,-0.000123023986816406,1.22840929031372,-0.000418663024902344,-0.000124931335449219,1.22839641571045,-0.000418663024902344,-8.67843627929688e-05,1.22839999198914,-0.000403881072998047,-0.000105857849121094,1.22840321063995,-0.00038909912109375,-0.000138282775878906,1.2284015417099,-0.000390052795410156,-0.00014495849609375,1.22840416431427,-0.00040435791015625,-0.000118255615234375,1.22840547561646,-0.000403881072998047,-0.000120162963867188,1.22840368747711,-0.000389575958251953,-0.00012969970703125,1.22840332984924, +-0.000389575958251953,-0.000126838684082031,1.22839605808258,-0.000374317169189453,-0.000134468078613281,1.22839426994324,-0.000374794006347656,-0.000144004821777344,1.22839093208313,-0.000403404235839844,-8.48770141601563e-05,1.22839391231537,-0.000389575958251953,-0.000103950500488281,1.22839760780334,-0.00038909912109375,-0.000119209289550781,1.2283992767334,-0.00038909912109375,-0.000123977661132813,1.22839605808258,-0.000374317169189453,-0.000119209289550781,1.22839641571045,-0.000375270843505859,-0.00011444091796875,1.22839069366455,-0.00038909912109375,-8.29696655273438e-05,1.22839212417603,-0.000375270843505859,-0.000103950500488281,1.22838926315308,-0.000360965728759766,-0.000134468078613281,1.22838735580444,-0.000361442565917969,-0.000143051147460938,1.22838950157166,-0.000374317169189453,-0.000125885009765625,1.22839045524597,-0.000375270843505859,-0.000123023986816406,1.22839343547821,-0.000374794006347656,-0.000111579895019531,1.22839379310608,-0.000374317169189453,-0.000115394592285156,1.22838139533997,-0.000346183776855469,-0.000131607055664063,1.22837948799133,-0.000346183776855469,-0.000141143798828125,1.2283787727356,-0.000360965728759766,-8.20159912109375e-05,1.22837829589844,-0.000360965728759766,-0.000101089477539063,1.22838020324707,-0.000346660614013672,-0.000119209289550781,1.22837972640991,-0.000346660614013672,-0.00011444091796875,1.22838091850281,-0.000360965728759766,-0.000115394592285156,1.22838282585144,-0.000360965728759766,-0.000121116638183594,1.22837615013123,-0.000346660614013672,-8.0108642578125e-05,1.22837471961975,-0.000346660614013672,-9.918212890625e-05,1.22837495803833,-0.000332355499267578,-0.000131130218505859,1.22837328910828,-0.000331878662109375,-0.000138282775878906,1.22837710380554,-0.000346660614013672,-0.000110626220703125,1.2283787727356,-0.000345706939697266,-0.000113487243652344,1.22837543487549,-0.000332355499267578,-0.000124931335449219,1.2283763885498,-0.000331401824951172,-0.000122547149658203,1.22836685180664,-0.000303745269775391,-0.000126838684082031,1.22836399078369, +-0.000302314758300781,-0.000135898590087891,1.22836446762085,-0.000317096710205078,-7.77244567871094e-05,1.22836470603943,-0.000317096710205078,-9.5367431640625e-05,1.22836852073669,-0.000317573547363281,-0.000115394592285156,1.22837162017822,-0.000317573547363281,-0.000120162963867188,1.22836852073669,-0.000303268432617188,-0.00011444091796875,1.22836828231812,-0.000302791595458984,-0.000109672546386719,1.22846467792988,-0.000462055206298828,-9.05990600585938e-05,1.22846469283104,-0.000461101531982422,-0.000112533569335938,1.22835397720337,-0.000259876251220703,-6.53266906738281e-05,1.22836136817932,-0.000245094299316406,-6.43730163574219e-05,1.22835874557495,-0.0002593994140625,-6.24656677246094e-05,1.22835803031921,-0.000244617462158203,-6.53266906738281e-05,1.22843718528748,-0.000447273254394531,-8.20159912109375e-05,1.2284369468689,-0.000447750091552734,-8.29696655273438e-05,1.22841787338257,-0.000446796417236328,-8.0108642578125e-05,1.22841691970825,-0.000446796417236328,-8.29696655273438e-05,1.22844231128693,-0.000461578369140625,-8.29696655273438e-05,1.22844159603119,-0.000461578369140625,-8.48770141601563e-05,1.22841060161591,-0.000447273254394531,-8.10623168945313e-05,1.22841000556946,-0.000447273254394531,-8.392333984375e-05,1.22839462757111,-0.000432491302490234,-7.91549682617188e-05,1.22839462757111,-0.000432491302490234,-8.29696655273438e-05,1.228395819664,-0.000418663024902344,-7.82012939453125e-05,1.22839558124542,-0.000418186187744141,-8.10623168945313e-05,1.22839140892029,-0.000403881072998047,-7.43865966796875e-05,1.22839093208313,-0.000403881072998047,-7.91549682617188e-05,1.22839069366455,-0.000389575958251953,-7.72476196289063e-05,1.22839069366455,-0.00038909912109375,-7.72476196289063e-05,1.22838139533997,-0.000360488891601563,-7.34329223632813e-05,1.22837972640991,-0.000360965728759766,-7.53402709960938e-05,1.2283775806427,-0.000346183776855469,-7.34329223632813e-05,1.2283763885498,-0.000345706939697266,-7.53402709960938e-05,1.22836709022522,-0.000317573547363281,-6.91413879394531e-05,1.22836542129517, +-0.000317573547363281,-7.15255737304688e-05,1.22835659980774,-0.000259876251220703,-6.38961791992188e-05,1.22835397720337,-0.0002593994140625,-6.62803649902344e-05,1.22845977544785,-0.000447750091552734,-0.000126838684082031,1.22845989465714,-0.000446796417236328,-0.000111579895019531,1.22842216491699,-0.000417232513427734,-0.0001220703125,1.22841954231262,-0.000418663024902344,-0.000108718872070313,1.22840070724487,-0.000360965728759766,-0.000116348266601563,1.22840166091919,-0.000374317169189453,-0.000102996826171875,1.22843360900879,-0.000447750091552734,-7.91549682617188e-05,1.22842872142792,-0.000446796417236328,-8.48770141601563e-05,1.22843408584595,-0.000446796417236328,-9.25064086914063e-05,1.2284380197525,-0.000447273254394531,-8.392333984375e-05,1.22843372821808,-0.000447750091552734,-8.48770141601563e-05,1.22843551635742,-0.000432491302490234,-0.000134468078613281,1.22842979431152,-0.000418186187744141,-0.000133514404296875,1.22843444347382,-0.000432491302490234,-0.000138282775878906,1.22843253612518,-0.000432968139648438,-0.000134468078613281,1.22846917062998,-0.000432491302490234,-0.000145912170410156,1.22846587002277,-0.000432491302490234,-0.000145912170410156,1.22846803069115,-0.000432968139648438,-0.000146865844726563,1.22846872732043,-0.000432491302490234,-0.000146865844726563,1.22840523719788,-0.000403404235839844,-7.72476196289063e-05,1.22840631008148,-0.000389575958251953,-7.82012939453125e-05,1.22840905189514,-0.000403404235839844,-8.67843627929688e-05,1.22840774059296,-0.00040435791015625,-8.0108642578125e-05,1.22840774059296,-0.000403404235839844,-8.0108642578125e-05,1.2284095287323,-0.00038909912109375,-0.000131607055664063,1.22840678691864,-0.000374794006347656,-0.000128746032714844,1.22840881347656,-0.000389575958251953,-0.000134468078613281,1.22840821743011,-0.000389575958251953,-0.000128746032714844,1.22842562198639,-0.000403404235839844,-0.000143051147460938,1.22843611240387,-0.000403881072998047,-0.000149726867675781,1.22845274209976,-0.000403404235839844,-0.000156402587890625,1.22844099998474, +-0.000418663024902344,-0.000148773193359375,1.22843837738037,-0.000403881072998047,-0.000148773193359375,1.22838735580444,-0.000331401824951172,-7.00950622558594e-05,1.22838664054871,-0.000318050384521484,-7.2479248046875e-05,1.22838973999023,-0.000332355499267578,-7.82012939453125e-05,1.22839021682739,-0.000332355499267578,-7.34329223632813e-05,1.2283890247345,-0.000332355499267578,-7.20024108886719e-05,1.22838664054871,-0.000317573547363281,-0.000125885009765625,1.2283821105957,-0.000302791595458984,-0.000123500823974609,1.22838521003723,-0.000317573547363281,-0.000127315521240234,1.22838425636292,-0.000317096710205078,-0.000123977661132813,1.22840404510498,-0.000345706939697266,-0.000144004821777344,1.22841918468475,-0.000346660614013672,-0.000153541564941406,1.22844064235687,-0.000346660614013672,-0.000163078308105469,1.22842347621918,-0.000360965728759766,-0.000153541564941406,1.22842085361481,-0.000346660614013672,-0.000154495239257813,1.22837734222412,-0.0002593994140625,-8.72611999511719e-05,1.22837734222412,-0.0002593994140625,-7.20024108886719e-05,1.22837448120117,-0.000245571136474609,-0.000107765197753906,1.22837328910828,-0.000245094299316406,-0.000105857849121094,1.22845852375031,-0.000461101531982422,-8.20159912109375e-05,1.22845304012299,-0.000461578369140625,-8.48770141601563e-05,1.2284594476223,-0.000461578369140625,-9.25064086914063e-05,1.22846396267414,-0.000461578369140625,-8.58306884765625e-05,1.2284591794014,-0.000461578369140625,-8.48770141601563e-05,1.22844207286835,-0.000447273254394531,-8.10623168945313e-05,1.22844088077545,-0.000446796417236328,-8.392333984375e-05,1.22844159603119,-0.000447750091552734,-8.96453857421875e-05,1.22844409942627,-0.000447273254394531,-8.29696655273438e-05,1.22844183444977,-0.000447750091552734,-8.392333984375e-05,1.22844398021698,-0.000447750091552734,-0.000119209289550781,1.22844207286835,-0.000447273254394531,-0.000108718872070313,1.22841143608093,-0.000432968139648438,-7.72476196289063e-05,1.22841131687164,-0.000432968139648438,-8.10623168945313e-05,1.2284163236618, +-0.000432491302490234,-8.67843627929688e-05,1.22841703891754,-0.000432491302490234,-8.29696655273438e-05,1.22841465473175,-0.000432968139648438,-8.10623168945313e-05,1.22840332984924,-0.000418663024902344,-7.91549682617188e-05,1.22840404510498,-0.000418186187744141,-8.0108642578125e-05,1.22840666770935,-0.000417709350585938,-8.7738037109375e-05,1.2284072637558,-0.000418186187744141,-8.10623168945313e-05,1.22840523719788,-0.000418186187744141,-8.0108642578125e-05,1.22841084003448,-0.00040435791015625,-0.000118255615234375,1.22840976715088,-0.00040435791015625,-0.000105857849121094,1.22840011119843,-0.000374317169189453,-7.2479248046875e-05,1.22840094566345,-0.000360965728759766,-7.53402709960938e-05,1.22840225696564,-0.000374317169189453,-8.29696655273438e-05,1.228400349617,-0.000375747680664063,-7.72476196289063e-05,1.2284015417099,-0.000375270843505859,-7.72476196289063e-05,1.22839069366455,-0.000346183776855469,-7.34329223632813e-05,1.22838973999023,-0.000346660614013672,-7.62939453125e-05,1.22839415073395,-0.000346660614013672,-8.10623168945313e-05,1.22839713096619,-0.000346183776855469,-7.53402709960938e-05,1.22839283943176,-0.000346660614013672,-7.62939453125e-05,1.22839260101318,-0.000346660614013672,-0.000110626220703125,1.22839462757111,-0.000346183776855469,-0.000100135803222656,1.22837519645691,-0.000288963317871094,-6.53266906738281e-05,1.2283763885498,-0.000274181365966797,-6.72340393066406e-05,1.22837901115417,-0.000288486480712891,-7.34329223632813e-05,1.22837829589844,-0.000288009643554688,-6.91413879394531e-05,1.2283775806427,-0.000288009643554688,-6.77108764648438e-05,1.22837829589844,-0.000274181365966797,-0.000107765197753906,1.22837948799133,-0.000273227691650391,-8.91685485839844e-05,1.22842037677765,-0.000432968139648438,-8.10623168945313e-05,1.2284187078476,-0.000432491302490234,-8.29696655273438e-05,1.22842073440552,-0.000432968139648438,-8.7738037109375e-05,1.22842228412628,-0.000432491302490234,-8.20159912109375e-05,1.22842025756836,-0.000432968139648438,-8.29696655273438e-05,1.22842478752136, +-0.000432491302490234,-0.000121116638183594,1.22842264175415,-0.000432491302490234,-0.000109672546386719,1.22843754291534,-0.000432491302490234,-0.000124931335449219,1.22843539714813,-0.000432491302490234,-0.000110626220703125,1.22843956947327,-0.000418663024902344,-0.000142097473144531,1.22844636440277,-0.000417232513427734,-0.000146865844726563,1.22845897078514,-0.000418186187744141,-0.000149726867675781,1.22845208644867,-0.000432968139648438,-0.000146865844726563,1.22844898700714,-0.000418186187744141,-0.000146865844726563,1.22844922542572,-0.000432491302490234,-0.000143051147460938,1.22846248745918,-0.000432491302490234,-0.000148773193359375,1.22845926880836,-0.000432491302490234,-0.00014495849609375,1.22845566272736,-0.000432491302490234,-0.00014495849609375,1.2284437417984,-0.000432491302490234,-0.000132560729980469,1.22843968868256,-0.000432491302490234,-0.000133514404296875,1.22844278812408,-0.000432491302490234,-0.000139236450195313,1.22844135761261,-0.000432491302490234,-0.000133514404296875,1.2284687384963,-0.000447750091552734,-0.000139236450195313,1.22846710681915,-0.000447273254394531,-0.000142097473144531,1.22846901789308,-0.000447273254394531,-0.000141143798828125,1.22846657782793,-0.000447273254394531,-0.000136375427246094,1.22846875339746,-0.000447273254394531,-0.000134468078613281,1.22845631837845,-0.000446796417236328,-0.000136375427246094,1.22844994068146,-0.000432968139648438,-0.000135421752929688,1.22845429182053,-0.000432491302490234,-0.000138282775878906,1.22845304012299,-0.000432491302490234,-0.000138282775878906,1.22839879989624,-0.00038909912109375,-7.82012939453125e-05,1.22839796543121,-0.00038909912109375,-7.91549682617188e-05,1.22840058803558,-0.000389575958251953,-8.29696655273438e-05,1.22840285301208,-0.00038909912109375,-7.91549682617188e-05,1.22839987277985,-0.00038909912109375,-7.91549682617188e-05,1.22840189933777,-0.000374794006347656,-0.000110626220703125,1.22840106487274,-0.000375270843505859,-0.000102996826171875,1.2284117937088,-0.00038909912109375,-0.000118255615234375,1.22841012477875, +-0.000403881072998047,-0.000103950500488281,1.2284152507782,-0.000389575958251953,-0.000144004821777344,1.22842800617218,-0.000375270843505859,-0.000152587890625,1.22844707965851,-0.00038909912109375,-0.000162124633789063,1.22843182086945,-0.00038909912109375,-0.000153541564941406,1.2284300327301,-0.00038909912109375,-0.000151634216308594,1.22842001914978,-0.00038909912109375,-0.000144004821777344,1.22844994068146,-0.000403881072998047,-0.000158309936523438,1.22843396663666,-0.000403404235839844,-0.000151634216308594,1.22841322422028,-0.000403881072998047,-0.000128746032714844,1.22841215133667,-0.00038909912109375,-0.000131607055664063,1.22841310501099,-0.000403881072998047,-0.000135421752929688,1.22841274738312,-0.000403404235839844,-0.00012969970703125,1.22843241691589,-0.000418186187744141,-0.000144004821777344,1.22845560312271,-0.000418663024902344,-0.000152587890625,1.22844338417053,-0.000418186187744141,-0.000147819519042969,1.22842609882355,-0.000417709350585938,-0.000133514404296875,1.22842383384705,-0.000417709350585938,-0.000131607055664063,1.22842597961426,-0.000417232513427734,-0.0001373291015625,1.22842490673065,-0.000418663024902344,-0.000133514404296875,1.22841989994049,-0.000417232513427734,-0.000133514404296875,1.22841596603394,-0.000403881072998047,-0.00012969970703125,1.22841906547546,-0.000403881072998047,-0.000135421752929688,1.22841799259186,-0.000403881072998047,-0.000133514404296875,1.22837710380554,-0.000302791595458984,-6.866455078125e-05,1.22837591171265,-0.000302314758300781,-7.05718994140625e-05,1.22837901115417,-0.000303268432617188,-7.58171081542969e-05,1.2283821105957,-0.000302791595458984,-7.00950622558594e-05,1.22837829589844,-0.000302314758300781,-7.10487365722656e-05,1.22837924957275,-0.000302791595458984,-0.000108242034912109,1.22837972640991,-0.000303268432617188,-9.48905944824219e-05,1.22838997840881,-0.000331878662109375,-0.000114917755126953,1.22839069366455,-0.000331401824951172,-9.67979431152344e-05,1.22840535640717,-0.000288963317871094,-0.000141143798828125,1.22844862937927, +-0.000317096710205078,-0.000160694122314453,1.22841989994049,-0.000317096710205078,-0.000152587890625,1.22842800617218,-0.000302791595458984,-0.000151157379150391,1.22840011119843,-0.000331401824951172,-0.000143051147460938,1.22843885421753,-0.000331401824951172,-0.000162124633789063,1.22841787338257,-0.000331878662109375,-0.000152111053466797,1.22839117050171,-0.000345706939697266,-0.0001220703125,1.2283890247345,-0.000332355499267578,-0.000124454498291016,1.22839117050171,-0.000331401824951172,-0.00012969970703125,1.22838997840881,-0.000331878662109375,-0.000124454498291016,1.22841000556946,-0.000374794006347656,-0.000144004821777344,1.22844421863556,-0.000375270843505859,-0.000162124633789063,1.22842586040497,-0.000374317169189453,-0.000154495239257813,1.22840297222137,-0.000375270843505859,-0.000125885009765625,1.22840106487274,-0.000374794006347656,-0.000127792358398438,1.22840309143066,-0.000375270843505859,-0.000133514404296875,1.22840142250061,-0.000375270843505859,-0.000125885009765625,1.22839891910553,-0.000360488891601563,-0.000128746032714844,1.22839462757111,-0.000345706939697266,-0.000125885009765625,1.22839772701263,-0.000360965728759766,-0.000130653381347656,1.22839665412903,-0.000361442565917969,-0.000128746032714844,1.22837471961975,-0.000245094299316406,-8.91685485839844e-05,1.22837448120117,-0.000245571136474609,-7.10487365722656e-05,1.2283730506897,-0.000245094299316406,-0.000101089477539063,1.22837662696838,-0.000259876251220703,-0.000105857849121094,1.22837448120117,-0.0002593994140625,-0.000112533569335938,1.22837710380554,-0.000258922576904297,-0.000119209289550781,1.22837710380554,-0.000245094299316406,-0.000116825103759766,1.22837972640991,-0.000259876251220703,-0.000121116638183594,1.22837734222412,-0.000259876251220703,-0.000118732452392578,1.22837924957275,-0.000288963317871094,-0.000118255615234375,1.2283787727356,-0.000273227691650391,-0.000119209289550781,1.22837591171265,-0.000274181365966797,-0.000113487243652344,1.22846926376224,-0.000462055206298828,-8.29696655273438e-05,1.22846779227257, +-0.000461578369140625,-8.48770141601563e-05,1.22846940904856,-0.000462055206298828,-8.96453857421875e-05,1.2284692786634,-0.000462055206298828,-8.48770141601563e-05,1.2284594476223,-0.000446796417236328,-0.000132560729980469,1.22846875339746,-0.000447750091552734,-0.000123977661132813,1.22846874594688,-0.000447273254394531,-0.000126838684082031,1.22844922542572,-0.000447273254394531,-0.000112533569335938,1.22844803333282,-0.000447750091552734,-9.1552734375e-05,1.22844445705414,-0.000447750091552734,-0.000123977661132813,1.22845202684402,-0.000447750091552734,-0.000125885009765625,1.22845208644867,-0.000432491302490234,-0.000131607055664063,1.22843945026398,-0.000446796417236328,-0.000109672546386719,1.22843992710114,-0.000446796417236328,-9.1552734375e-05,1.22843992710114,-0.000432491302490234,-0.000120162963867188,1.22843956947327,-0.000432968139648438,-0.000123977661132813,1.22843730449677,-0.000432491302490234,-0.000130653381347656,1.22842800617218,-0.000432491302490234,-0.000110626220703125,1.22842538356781,-0.000447273254394531,-8.96453857421875e-05,1.22843110561371,-0.000432491302490234,-0.000123977661132813,1.22843170166016,-0.000432968139648438,-0.000128746032714844,1.22842538356781,-0.000418663024902344,-0.000123977661132813,1.22842109203339,-0.000432491302490234,-0.000108718872070313,1.22841942310333,-0.000432491302490234,-8.86917114257813e-05,1.22842228412628,-0.000418186187744141,-0.000127792358398438,1.22842299938202,-0.000418186187744141,-0.000121116638183594,1.22842335700989,-0.000418663024902344,-0.000123023986816406,1.22841429710388,-0.000418186187744141,-0.000108718872070313,1.22841119766235,-0.000418663024902344,-8.7738037109375e-05,1.22841203212738,-0.000403404235839844,-0.000119209289550781,1.22841656208038,-0.000403404235839844,-0.000121116638183594,1.22841691970825,-0.000403881072998047,-0.000126838684082031,1.22840940952301,-0.00040435791015625,-0.0001068115234375,1.22840702533722,-0.000403881072998047,-8.67843627929688e-05,1.22841095924377,-0.00040435791015625,-0.000115394592285156,1.22841095924377, +-0.000403404235839844,-0.000120162963867188,1.22841119766235,-0.000389575958251953,-0.000123977661132813,1.22840595245361,-0.00038909912109375,-0.000102996826171875,1.2284060716629,-0.000389575958251953,-8.48770141601563e-05,1.22840797901154,-0.000389575958251953,-0.000117301940917969,1.22840750217438,-0.00038909912109375,-0.0001220703125,1.22840201854706,-0.000374317169189453,-0.000112533569335938,1.22839939594269,-0.000375270843505859,-0.000102043151855469,1.22839868068695,-0.000375270843505859,-8.29696655273438e-05,1.22839951515198,-0.000360488891601563,-0.000121116638183594,1.22839951515198,-0.000374794006347656,-0.000110626220703125,1.22839903831482,-0.000374317169189453,-0.000115394592285156,1.22839903831482,-0.000360965728759766,-0.000100135803222656,1.22840011119843,-0.000360488891601563,-8.0108642578125e-05,1.22839117050171,-0.000346660614013672,-0.000113487243652344,1.22839725017548,-0.000360965728759766,-0.000115394592285156,1.22839558124542,-0.000360488891601563,-0.000121116638183594,1.22839248180389,-0.000332355499267578,-9.918212890625e-05,1.22839140892029,-0.000332355499267578,-8.0108642578125e-05,1.228391289711,-0.000332355499267578,-0.000110149383544922,1.22839069366455,-0.000332355499267578,-0.000113487243652344,1.22838878631592,-0.000318050384521484,-0.000121116638183594,1.22838592529297,-0.000317096710205078,-9.48905944824219e-05,1.22838544845581,-0.000317573547363281,-7.72476196289063e-05,1.22838568687439,-0.000317573547363281,-0.000113487243652344,1.22838497161865,-0.000318050384521484,-0.000119686126708984,1.22837901115417,-0.000303268432617188,-0.000112056732177734,1.22846632450819,-0.000447273254394531,-0.000110626220703125,1.22846682369709,-0.000461578369140625,-9.1552734375e-05,1.22837114334106,-0.000258922576904297,-6.19888305664063e-05,1.22837090492249,-0.000245094299316406,-6.58035278320313e-05,1.22837495803833,-0.000259876251220703,-6.58035278320313e-05,1.22837328910828,-0.000245094299316406,-6.58035278320313e-05,1.22843992710114,-0.000447750091552734,-8.20159912109375e-05,1.22843945026398, +-0.000446796417236328,-8.29696655273438e-05,1.22842466831207,-0.000447750091552734,-8.10623168945313e-05,1.22842538356781,-0.000446796417236328,-8.29696655273438e-05,1.2284482717514,-0.000461578369140625,-8.10623168945313e-05,1.22844803333282,-0.000461578369140625,-8.48770141601563e-05,1.22841680049896,-0.000432491302490234,-7.91549682617188e-05,1.22841835021973,-0.000432968139648438,-8.29696655273438e-05,1.22840654850006,-0.000418186187744141,-7.72476196289063e-05,1.22840893268585,-0.000418663024902344,-8.20159912109375e-05,1.22840452194214,-0.000418186187744141,-7.91549682617188e-05,1.22840559482574,-0.000418663024902344,-8.10623168945313e-05,1.22840344905853,-0.00038909912109375,-7.43865966796875e-05,1.2284049987793,-0.00038909912109375,-7.82012939453125e-05,1.2283980846405,-0.000374317169189453,-7.53402709960938e-05,1.22839844226837,-0.000375270843505859,-8.0108642578125e-05,1.22839772701263,-0.000360965728759766,-7.2479248046875e-05,1.22839975357056,-0.000360488891601563,-7.53402709960938e-05,1.22838807106018,-0.000331878662109375,-7.15255737304688e-05,1.22838973999023,-0.000331878662109375,-7.43865966796875e-05,1.2283821105957,-0.000317096710205078,-6.81877136230469e-05,1.22838473320007,-0.000317096710205078,-7.15255737304688e-05,1.22837328910828,-0.0002593994140625,-6.43730163574219e-05,1.2283763885498,-0.000260353088378906,-6.53266906738281e-05,1.22846878319979,-0.000462055206298828,-8.10623168945313e-05,1.22846737504005,-0.000462055206298828,-8.0108642578125e-05,1.22846876829863,-0.000461101531982422,-8.20159912109375e-05,1.22846275568008,-0.000461578369140625,-8.10623168945313e-05,1.22845682501793,-0.000461578369140625,-8.10623168945313e-05,1.22845235466957,-0.000461101531982422,-8.0108642578125e-05,1.22845783829689,-0.000461101531982422,-8.10623168945313e-05,1.22844588756561,-0.000461101531982422,-8.0108642578125e-05,1.22844350337982,-0.000461101531982422,-7.82012939453125e-05,1.2284471988678,-0.000461578369140625,-7.82012939453125e-05,1.22844123840332,-0.000462055206298828,-7.82012939453125e-05,1.22844088077545, +-0.000447750091552734,-8.10623168945313e-05,1.22844207286835,-0.000447273254394531,-7.91549682617188e-05,1.22843861579895,-0.000447750091552734,-8.0108642578125e-05,1.22843658924103,-0.000447273254394531,-8.20159912109375e-05,1.2284392118454,-0.000447750091552734,-8.0108642578125e-05,1.22843086719513,-0.000447750091552734,-7.72476196289063e-05,1.22842717170715,-0.000447273254394531,-8.0108642578125e-05,1.2284322977066,-0.000446796417236328,-7.91549682617188e-05,1.2284209728241,-0.000447750091552734,-7.72476196289063e-05,1.22842025756836,-0.000447750091552734,-7.82012939453125e-05,1.22842288017273,-0.000447273254394531,-7.72476196289063e-05,1.22841727733612,-0.000446796417236328,-7.82012939453125e-05,1.22841763496399,-0.000432968139648438,-7.91549682617188e-05,1.2284187078476,-0.000447750091552734,-7.91549682617188e-05,1.22841358184814,-0.000432491302490234,-7.91549682617188e-05,1.22841238975525,-0.000432968139648438,-7.72476196289063e-05,1.22841477394104,-0.000432491302490234,-7.72476196289063e-05,1.22840559482574,-0.000432491302490234,-7.53402709960938e-05,1.22840559482574,-0.000432968139648438,-7.72476196289063e-05,1.22840881347656,-0.000432491302490234,-7.62939453125e-05,1.22839987277985,-0.000432491302490234,-7.62939453125e-05,1.22840178012848,-0.000418663024902344,-7.62939453125e-05,1.22840285301208,-0.000418186187744141,-7.62939453125e-05,1.22839951515198,-0.000418663024902344,-7.72476196289063e-05,1.22840166091919,-0.000417232513427734,-7.91549682617188e-05,1.2284015417099,-0.000418186187744141,-7.72476196289063e-05,1.22839963436127,-0.000418663024902344,-7.82012939453125e-05,1.22840297222137,-0.000403881072998047,-7.72476196289063e-05,1.22840166091919,-0.000418186187744141,-7.82012939453125e-05,1.22839903831482,-0.000403881072998047,-7.72476196289063e-05,1.22840225696564,-0.000403404235839844,-7.62939453125e-05,1.22840309143066,-0.00040435791015625,-7.62939453125e-05,1.22839748859406,-0.00038909912109375,-7.53402709960938e-05,1.22839915752411,-0.000389575958251953,-7.34329223632813e-05,1.22840106487274,-0.00038909912109375, +-7.62939453125e-05,1.22839593887329,-0.000389575958251953,-7.72476196289063e-05,1.22839641571045,-0.000389575958251953,-7.72476196289063e-05,1.22839796543121,-0.000389575958251953,-7.62939453125e-05,1.22839510440826,-0.00038909912109375,-7.62939453125e-05,1.2283970117569,-0.000375747680664063,-7.43865966796875e-05,1.22839665412903,-0.00038909912109375,-7.62939453125e-05,1.22839260101318,-0.000374317169189453,-7.43865966796875e-05,1.22839629650116,-0.000360965728759766,-7.43865966796875e-05,1.22839677333832,-0.000374317169189453,-7.34329223632813e-05,1.2283890247345,-0.000360965728759766,-7.2479248046875e-05,1.22839117050171,-0.000345706939697266,-7.15255737304688e-05,1.22839391231537,-0.000360965728759766,-7.15255737304688e-05,1.22838592529297,-0.000346660614013672,-7.2479248046875e-05,1.22838616371155,-0.000346660614013672,-7.2479248046875e-05,1.22838830947876,-0.000346660614013672,-7.2479248046875e-05,1.2283833026886,-0.000346660614013672,-7.05718994140625e-05,1.22838544845581,-0.000331878662109375,-7.00950622558594e-05,1.22838568687439,-0.000346660614013672,-7.15255737304688e-05,1.22837948799133,-0.000331401824951172,-6.96182250976563e-05,1.22838091850281,-0.000317573547363281,-6.96182250976563e-05,1.22838377952576,-0.000331878662109375,-6.866455078125e-05,1.22837424278259,-0.000317573547363281,-6.81877136230469e-05,1.22837615013123,-0.000302791595458984,-6.72340393066406e-05,1.2283787727356,-0.000318050384521484,-6.77108764648438e-05,1.22837042808533,-0.000303268432617188,-6.77108764648438e-05,1.22837233543396,-0.000302791595458984,-6.96182250976563e-05,1.22837376594543,-0.000303745269775391,-6.77108764648438e-05,1.22837162017822,-0.000288486480712891,-6.4849853515625e-05,1.22836661338806,-0.000288486480712891,-6.58035278320313e-05,1.22837066650391,-0.000274181365966797,-6.38961791992188e-05,1.22837066650391,-0.000288486480712891,-6.43730163574219e-05,1.22836494445801,-0.0002593994140625,-6.34193420410156e-05,1.22836899757385,-0.000259876251220703,-6.15119934082031e-05,1.22836995124817,-0.000259876251220703,-6.43730163574219e-05, +1.22836494445801,-0.0002593994140625,-6.103515625e-05,1.22836804389954,-0.000245094299316406,-6.05583190917969e-05,1.22836804389954,-0.000259876251220703,-6.103515625e-05,1.22846138477325,-0.000476360321044922,-8.10623168945313e-05,1.2284654378891,-0.000461578369140625,-7.91549682617188e-05,1.22846710681915,-0.000461101531982422,-8.10623168945313e-05,1.22846466302872,-0.000476360321044922,-8.20159912109375e-05,1.22846493124962,-0.000475883483886719,-8.10623168945313e-05,1.22844862937927,-0.000461578369140625,-7.91549682617188e-05,1.22845560312271,-0.000461578369140625,-8.10623168945313e-05,1.22844111919403,-0.000461101531982422,-8.0108642578125e-05,1.22844398021698,-0.000461101531982422,-8.0108642578125e-05,1.22844016551971,-0.000446796417236328,-7.91549682617188e-05,1.22844076156616,-0.000461578369140625,-8.0108642578125e-05,1.22843408584595,-0.000461578369140625,-7.91549682617188e-05,1.22843790054321,-0.000447750091552734,-8.20159912109375e-05,1.22842395305634,-0.000446796417236328,-7.82012939453125e-05,1.22842931747437,-0.000447750091552734,-8.0108642578125e-05,1.22841644287109,-0.000447750091552734,-7.91549682617188e-05,1.22841918468475,-0.000446796417236328,-7.82012939453125e-05,1.2284152507782,-0.000432491302490234,-7.82012939453125e-05,1.22841608524323,-0.000447750091552734,-7.91549682617188e-05,1.22840678691864,-0.000446796417236328,-7.72476196289063e-05,1.22841143608093,-0.000446796417236328,-8.0108642578125e-05,1.22839879989624,-0.000432968139648438,-7.72476196289063e-05,1.22840237617493,-0.000432491302490234,-7.72476196289063e-05,1.22839665412903,-0.000418186187744141,-7.72476196289063e-05,1.22839677333832,-0.000432491302490234,-7.62939453125e-05,1.22839868068695,-0.000418186187744141,-7.72476196289063e-05,1.22839760780334,-0.000418663024902344,-7.72476196289063e-05,1.22839570045471,-0.000417709350585938,-7.72476196289063e-05,1.22839736938477,-0.000418186187744141,-7.62939453125e-05,1.22839486598969,-0.00040435791015625,-7.43865966796875e-05,1.228395819664,-0.00040435791015625,-7.72476196289063e-05,1.22839367389679, +-0.000389575958251953,-7.53402709960938e-05,1.22839426994324,-0.000403881072998047,-7.53402709960938e-05,1.22839391231537,-0.000389575958251953,-7.62939453125e-05,1.22839331626892,-0.000389575958251953,-7.62939453125e-05,1.22839117050171,-0.000374317169189453,-7.43865966796875e-05,1.22839272022247,-0.00038909912109375,-7.62939453125e-05,1.22838735580444,-0.000375270843505859,-7.2479248046875e-05,1.22838878631592,-0.000374794006347656,-7.34329223632813e-05,1.22838306427002,-0.000346183776855469,-7.15255737304688e-05,1.22838497161865,-0.000360965728759766,-7.2479248046875e-05,1.22838234901428,-0.000346183776855469,-7.2479248046875e-05,1.22838282585144,-0.000346660614013672,-7.2479248046875e-05,1.22837734222412,-0.000331878662109375,-6.96182250976563e-05,1.22838044166565,-0.000346660614013672,-7.15255737304688e-05,1.22837352752686,-0.000332355499267578,-7.00950622558594e-05,1.22837519645691,-0.000331878662109375,-7.00950622558594e-05,1.22836756706238,-0.000302314758300781,-6.72340393066406e-05,1.22837066650391,-0.000317573547363281,-6.81877136230469e-05,1.22836661338806,-0.000303268432617188,-6.91413879394531e-05,1.22836756706238,-0.000303268432617188,-6.866455078125e-05,1.22836184501648,-0.000288486480712891,-6.4849853515625e-05,1.22836136817932,-0.000273227691650391,-6.43730163574219e-05,1.2283616065979,-0.000288486480712891,-6.43730163574219e-05,1.22835946083069,-0.000259876251220703,-6.103515625e-05,1.22836017608643,-0.000259876251220703,-6.34193420410156e-05,1.22836351394653,-0.000245571136474609,-6.103515625e-05,1.2283616065979,-0.000259876251220703,-6.103515625e-05,1.2284642457962,-0.000446796417236328,-0.000132560729980469,1.22846478223801,-0.000447750091552734,-0.00012969970703125,1.2283775806427,-0.000230312347412109,-0.000117301940917969,1.22837972640991,-0.000274181365966797,-0.000123023986816406,1.22837829589844,-0.000273227691650391,-0.000121116638183594,1.22838354110718,-0.000288486480712891,-0.000125408172607422,1.22838020324707,-0.000302791595458984,-0.000121116638183594,1.22838759422302,-0.000318050384521484, +-0.000128746032714844,1.22838830947876,-0.000331878662109375,-0.000125885009765625,1.22839391231537,-0.000346183776855469,-0.00012969970703125,1.22839260101318,-0.000346660614013672,-0.000124931335449219,1.22839987277985,-0.000360488891601563,-0.000132560729980469,1.22839999198914,-0.000361442565917969,-0.000128746032714844,1.22840619087219,-0.000374317169189453,-0.000133514404296875,1.22840464115143,-0.000375270843505859,-0.000125885009765625,1.22841084003448,-0.00038909912109375,-0.000134468078613281,1.2284107208252,-0.00038909912109375,-0.00012969970703125,1.22841620445251,-0.000403404235839844,-0.000135421752929688,1.22841429710388,-0.000403881072998047,-0.000130653381347656,1.22842144966125,-0.000418663024902344,-0.000136375427246094,1.2284220457077,-0.000418186187744141,-0.000132560729980469,1.22842991352081,-0.000418186187744141,-0.000138282775878906,1.22842741012573,-0.000417232513427734,-0.000133514404296875,1.22843718528748,-0.000432968139648438,-0.000138282775878906,1.22843754291534,-0.000432491302490234,-0.000133514404296875,1.22844839096069,-0.000432491302490234,-0.000138282775878906,1.22844660282135,-0.000432491302490234,-0.000134468078613281,1.22846259176731,-0.000446796417236328,-0.000135421752929688,1.22845906019211,-0.000447273254394531,-0.000139236450195313,1.2284594476223,-0.000447750091552734,-0.000136375427246094,1.22846454381943,-0.000447750091552734,-0.000124931335449219,1.22846426069736,-0.000446796417236328,-0.00012969970703125,1.22846521437168,-0.000447750091552734,-0.000123977661132813,1.22838592529297,-0.000245094299316406,-0.000126361846923828,1.22838616371155,-0.000259876251220703,-0.000128269195556641,1.22838234901428,-0.0002593994140625,-0.000125885009765625,1.22839069366455,-0.000331878662109375,-0.000134468078613281,1.22838878631592,-0.000302791595458984,-0.000133991241455078,1.22838807106018,-0.000317573547363281,-0.000131130218505859,1.22840225696564,-0.000361442565917969,-0.000136375427246094,1.22839832305908,-0.000360965728759766,-0.000135421752929688,1.22839975357056,-0.000361442565917969, +-0.000134468078613281,1.22841250896454,-0.00038909912109375,-0.000138282775878906,1.22840976715088,-0.00038909912109375,-0.000136375427246094,1.22841000556946,-0.000389575958251953,-0.0001373291015625,1.22842490673065,-0.000418663024902344,-0.000141143798828125,1.22842109203339,-0.000403404235839844,-0.000139236450195313,1.22842168807983,-0.000418663024902344,-0.000138282775878906,1.22844099998474,-0.000432491302490234,-0.000139236450195313,1.22843623161316,-0.000432491302490234,-0.000139236450195313,1.22843730449677,-0.000432968139648438,-0.000141143798828125,1.22846178710461,-0.000446796417236328,-0.000142097473144531,1.22845563292503,-0.000432968139648438,-0.000139236450195313,1.22845757007599,-0.000432491302490234,-0.000141143798828125,1.22839248180389,-0.000245094299316406,-0.000130176544189453,1.22839176654816,-0.000274181365966797,-0.000131130218505859,1.22839117050171,-0.000288486480712891,-0.000133514404296875,1.22839391231537,-0.000346660614013672,-0.000136375427246094,1.2283923625946,-0.000332355499267578,-0.000135421752929688,1.22839665412903,-0.000346660614013672,-0.000135421752929688,1.22840631008148,-0.000374794006347656,-0.0001373291015625,1.22840452194214,-0.000375270843505859,-0.000138282775878906,1.22840821743011,-0.000374794006347656,-0.000139236450195313,1.22841656208038,-0.000403404235839844,-0.000139236450195313,1.22841465473175,-0.00038909912109375,-0.0001373291015625,1.22841906547546,-0.000403881072998047,-0.000140190124511719,1.2284300327301,-0.000418186187744141,-0.000141143798828125,1.22842741012573,-0.000417232513427734,-0.000139236450195313,1.22843337059021,-0.000418663024902344,-0.000139236450195313,1.22844898700714,-0.000432968139648438,-0.000140190124511719,1.22844505310059,-0.000432491302490234,-0.000140190124511719,1.22845754027367,-0.000432968139648438,-0.00014495849609375,1.22845250368118,-0.000432968139648438,-0.000140190124511719,1.2284642457962,-0.000432968139648438,-0.000144004821777344,1.22846205532551,-0.000432491302490234,-0.000144004821777344,1.228466399014,-0.000432968139648438, +-0.000150680541992188,1.22846736013889,-0.000432491302490234,-0.000149726867675781,1.22846467792988,-0.000418663024902344,-0.000155448913574219,1.22846534848213,-0.000418663024902344,-0.000151634216308594,1.22846327722073,-0.000418186187744141,-0.000157356262207031,1.22846399247646,-0.000418663024902344,-0.000154495239257813,1.22846205532551,-0.000403881072998047,-0.00016021728515625,1.22846274077892,-0.000403404235839844,-0.000157356262207031,1.22846066951752,-0.00038909912109375,-0.000162124633789063,1.22846111655235,-0.000403881072998047,-0.000161170959472656,1.22845906019211,-0.000375747680664063,-0.000164031982421875,1.22846010327339,-0.00038909912109375,-0.000163078308105469,1.22845751047134,-0.000360965728759766,-0.000166893005371094,1.22845822572708,-0.000374317169189453,-0.000165939331054688,1.22845640778542,-0.000332355499267578,-0.000165939331054688,1.22845563292503,-0.000332355499267578,-0.000164031982421875,1.22846850007772,-0.000447273254394531,-0.000149726867675781,1.22846850007772,-0.000447750091552734,-0.000142097473144531,1.22846463322639,-0.000475883483886719,-8.48770141601563e-05,1.22847064211965,-0.000461101531982422,-8.20159912109375e-05,1.22846899926662,-0.000461578369140625,-7.91549682617188e-05,1.22846592217684,-0.000461578369140625,-8.20159912109375e-05,1.22846573591232,-0.000461101531982422,-8.10623168945313e-05,1.22846655547619,-0.000461578369140625,-8.48770141601563e-05,1.22846928238869,-0.000447273254394531,-0.000110626220703125,1.22846478223801,-0.000446796417236328,-0.000140190124511719,1.2284649014473,-0.000447750091552734,-0.000136375427246094,1.22846466302872,-0.000447750091552734,-0.000142097473144531,1.22847731411457,-0.000447273254394531,-0.000149726867675781,1.22847664356232,-0.000475883483886719,-8.48770141601563e-05,1.22847231477499,-0.000461578369140625,-7.91549682617188e-05,1.22847518324852,-0.000461578369140625,-8.20159912109375e-05,1.22847570478916,-0.000461101531982422,-8.10623168945313e-05,1.22847490012646,-0.000461578369140625,-8.48770141601563e-05,1.22847203165293,-0.000447273254394531, +-0.000110626220703125,1.22847664356232,-0.000446796417236328,-0.000140190124511719,1.22847662866116,-0.000447750091552734,-0.000136375427246094,1.22847640514374,-0.000447750091552734,-0.000142097473144531,1.22858071327209,-0.000245094299316406,-6.53266906738281e-05,1.22857117652893,-0.000245094299316406,-6.4849853515625e-05,1.22857451438904,-0.000245094299316406,-6.103515625e-05,1.22857737541199,-0.000244617462158203,-6.24656677246094e-05,1.22836065292358,-0.000245094299316406,-6.53266906738281e-05,1.22836995124817,-0.000245094299316406,-6.4849853515625e-05,1.22836661338806,-0.000245094299316406,-6.103515625e-05,1.22836375236511,-0.000244617462158203,-6.24656677246094e-05,1.22857236862183,-0.000230312347412109,-6.15119934082031e-05,1.22856593132019,-0.000231266021728516,-0.000109672546386719,1.22854864597321,-0.000230789184570313,-0.000129222869873047,1.22839260101318,-0.000230312347412109,-0.00012969970703125,1.22837781906128,-0.000231266021728516,-0.000118255615234375,1.22836899757385,-0.000230312347412109,-6.15119934082031e-05,1.22837495803833,-0.000230312347412109,-0.000109195709228516,1.22837567329407,-0.000231266021728516,-0.000109672546386719,1.2285635471344,-0.000230312347412109,-0.000117301940917969,1.2285635471344,-0.000231266021728516,-0.000118255615234375,1.22850251197815,-0.000259876251220703,-0.000142574310302734,1.22847064211965,-0.000347137451171875,-0.0001678466796875,1.22848474979401,-0.000346183776855469,-0.000165939331054688,1.22845682501793,-0.000346183776855469,-0.000165939331054688,0,8.82148742675781e-06,0,0.0830608457545168,-3.4332275390625e-05,-4.76837158203125e-06,0.0703143030477804,-2.81333923339844e-05,0,0.757855892254156,-0.000270366668701172,-6.38961791992188e-05,0.660627305529488,-0.000274658203125,-4.29153442382813e-05,0.0760002583483583,-4.14848327636719e-05,-4.76837158203125e-06,0.730143427834264,-0.000274658203125,-5.53131103515625e-05,0.0804990381147945,-2.288818359375e-05,-5.7220458984375e-06,0.741256594679726,-0.000268936157226563,-4.86373901367188e-05,0.0503747090697289,-2.288818359375e-05, +0,0.830882787680821,-0.000258922576904297,-7.82012939453125e-05,0.0672357082330564,-4.14848327636719e-05,0,0.763880133526982,-0.000267505645751953,-6.96182250976563e-05,0.0234380979090929,-7.15255737304688e-06,0,0.881245017051697,-0.000260353088378906,-9.72747802734375e-05,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,2.32458114624023e-06,0,0,4.64916229248047e-06,0,1.33459436893463,-0.00038909912109375,-0.000383377075195313,1.34670233726501,-0.0005035400390625,-0.000340461730957031,1.3470778465271,-0.000487327575683594,-0.000371932983398438,0.893698930740356,-0.000263214111328125,-0.000116348266601563,0,6.91413879394531e-06,0,0,9.05990600585938e-06,0,0.0116154262796044,9.05990600585938e-06,0,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.17911529541016e-06,0,0,-4.64916229248047e-06,0,0,-2.32458114624023e-06,0,0,6.79492950439453e-06,0,0,4.58955764770508e-06,0,1.05825936794281,-0.000519752502441406,-0.000269889831542969,1.28174698352814,-0.000525474548339844,-0.000304222106933594,0,9.05990600585938e-06,0,0,6.79492950439453e-06,0,0,6.88433647155762e-06,0,0,9.29832458496094e-06,0,0,9.05990600585938e-06,0,1.02680432796478,-0.000166893005371094,-0.000330448150634766,1.30457663536072,-0.000304222106933594,-0.000363349914550781,0.999523639678955,-9.44137573242188e-05,-0.000414609909057617,0.896050035953521,-7.05718994140625e-05,-0.000446677207946777,0.0259927213191977,1.1444091796875e-05,-1.59740447998047e-05,0.949190318584442,-0.000132560729980469,-0.000354528427124023,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.88433647155762e-06, +0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0.102785736322403,-5.10215759277344e-05,-7.62939453125e-06,0.0768131911754608,-3.67164611816406e-05,0,0.491778135299683,-0.000203609466552734,0.0274524688720703,0.482111930847168,-0.000213146209716797,0.0524778366088867,0.483032941818237,-0.00018310546875,-3.4332275390625e-05,0.45543360710144,-0.000178813934326172,-3.4332275390625e-05,0.346761345863342,-0.000144481658935547,-1.71661376953125e-05,0.365082621574402,-0.0001373291015625,-2.38418579101563e-05,0.235384941101074,-0.000102996826171875,-9.5367431640625e-06,0.258294105529785,-9.87052917480469e-05,-1.71661376953125e-05,0.152963757514954,-5.48362731933594e-05,-5.7220458984375e-06,0.186163187026978,-7.58171081542969e-05,-1.1444091796875e-05,0.099475085735321,-5.29289245605469e-05,-4.76837158203125e-06,0.135049223899841,-5.29289245605469e-05,-8.58306884765625e-06,0.421441316604614,-0.00016021728515625,-3.0517578125e-05,0.42161750793457,-0.000169277191162109,-2.38418579101563e-05,0.424224615097046,-0.0156350135803223,0.0274534225463867,0.56117057800293,-0.0002288818359375,-4.57763671875e-05,0.344980001449585,-0.000120162963867188,-2.47955322265625e-05,0.351723670959473,-0.000127315521240234,-2.47955322265625e-05,0.400705337524414,-0.000146865844726563,-3.0517578125e-05,0.40894079208374,-0.000147342681884766,-2.95639038085938e-05,0.45334267616272,-0.00016021728515625,-3.52859497070313e-05,0.431637525558472,-0.000150203704833984,-3.14712524414063e-05,0.522329807281494,-0.000186920166015625,-3.71932983398438e-05,0.541519165039063,-0.000194549560546875,-4.38690185546875e-05,0.55851674079895,-0.000210285186767578,-3.814697265625e-05,0.560335636138916,-0.000208377838134766,-4.9591064453125e-05,0.58084237575531,-0.000225543975830078,-5.340576171875e-05,0.58714234828949,-0.000226974487304688,-4.10079956054688e-05,0.671184420585632,-0.000238895416259766,-5.7220458984375e-05,0.626863777637482,-0.000244140625,-4.29153442382813e-05,0.692663729190826, +-0.000253200531005859,-5.91278076171875e-05,0.648530185222626,-0.000261306762695313,-4.1961669921875e-05,0.748779058456421,-0.000259876251220703,-6.103515625e-05,0.658923029899597,-0.000277042388916016,-4.10079956054688e-05,0.755280137062073,-0.000263214111328125,-6.19888305664063e-05,0.662555932998657,-0.000276088714599609,-4.29153442382813e-05,0.0891851484775543,-4.33921813964844e-05,-4.76837158203125e-06,0.117345690727234,-5.48362731933594e-05,-5.7220458984375e-06,0.171438574790955,-6.62803649902344e-05,-8.58306884765625e-06,0.250651717185974,-9.1552734375e-05,-1.23977661132813e-05,0.369745492935181,-0.000148773193359375,-2.288818359375e-05,0.45048987865448,-0.00018310546875,-2.95639038085938e-05,0.48127007484436,-0.000190258026123047,-3.52859497070313e-05,0.484103202819824,-0.000208377838134766,0.0524759292602539,0.412964344024658,-0.0146751403808594,0.0274524688720703,0.349689245223999,-0.000118732452392578,-2.57492065429688e-05,0.404040098190308,-0.000139713287353516,-3.0517578125e-05,0.443905353546143,-0.000156879425048828,-3.33786010742188e-05,0.526261568069458,-0.000196933746337891,-4.10079956054688e-05,0.55199134349823,-0.000207424163818359,-4.38690185546875e-05,0.592066049575806,-0.000227451324462891,-4.67300415039063e-05,0.650171101093292,-0.00025177001953125,-5.05447387695313e-05,0.671900689601898,-0.000265598297119141,-5.14984130859375e-05,0.685556173324585,-0.000270366668701172,-5.24520874023438e-05,0.690571784973145,-0.000277042388916016,-5.43594360351563e-05,0.0982866287231445,-4.81605529785156e-05,-5.7220458984375e-06,0.128800928592682,-5.48362731933594e-05,-8.58306884765625e-06,0.180914998054504,-7.77244567871094e-05,-1.1444091796875e-05,0.256503582000732,-9.87052917480469e-05,-1.52587890625e-05,0.368706345558167,-0.000154018402099609,-2.47955322265625e-05,0.434292078018188,-0.000165462493896484,-3.0517578125e-05,0.466396570205688,-0.000194549560546875,-3.4332275390625e-05,0.490866899490356,-0.000211238861083984,0.0524740219116211,0.440650463104248,-0.0188703536987305,0.0274486541748047,0.35479474067688, +-0.000130176544189453,-2.57492065429688e-05,0.408038139343262,-0.000144481658935547,-3.0517578125e-05,0.428120374679565,-0.000152587890625,-3.14712524414063e-05,0.521356105804443,-0.000193119049072266,-3.814697265625e-05,0.554143190383911,-0.000204086303710938,-4.10079956054688e-05,0.581949949264526,-0.000225543975830078,-4.29153442382813e-05,0.619668543338776,-0.000242710113525391,-4.38690185546875e-05,0.644409537315369,-0.000270366668701172,-4.57763671875e-05,0.663944959640503,-0.000270366668701172,-4.67300415039063e-05,0.667629837989807,-0.000274658203125,-4.76837158203125e-05,0.0561977922916412,-1.85966491699219e-05,0,0.0762875080108643,-2.81333923339844e-05,0,0.112181782722473,-3.95774841308594e-05,0,0.161702036857605,-7.58171081542969e-05,-2.86102294921875e-06,0.218079805374146,-7.77244567871094e-05,-4.76837158203125e-06,0.275912761688232,-0.000100612640380859,-5.7220458984375e-06,0.356832504272461,-0.000133037567138672,-1.23977661132813e-05,0.45018458366394,-0.000148773193359375,-2.09808349609375e-05,0.470242261886597,-0.000190258026123047,-3.4332275390625e-05,0.385592937469482,-0.000116825103759766,-2.57492065429688e-05,0.395714282989502,-0.000133037567138672,-3.33786010742188e-05,0.464385509490967,-0.000158309936523438,-4.38690185546875e-05,0.537501811981201,-0.000188827514648438,-5.7220458984375e-05,0.536719799041748,-0.000187397003173828,-6.19888305664063e-05,0.770329833030701,-0.000261783599853516,-7.72476196289063e-05,0.730189502239227,-0.000253200531005859,-7.62939453125e-05,0.694950342178345,-0.000244140625,-7.43865966796875e-05,0.604317188262939,-0.000227451324462891,-7.15255737304688e-05,0.575654983520508,-0.000213146209716797,-6.96182250976563e-05,0.0744514614343643,-3.67164611816406e-05,0,0.0984735488891602,-4.33921813964844e-05,0,0.144206404685974,-5.48362731933594e-05,-4.76837158203125e-06,0.210955381393433,-7.77244567871094e-05,-6.67572021484375e-06,0.359201788902283,-0.000133037567138672,-1.71661376953125e-05,0.451842784881592,-0.000185489654541016,-2.288818359375e-05,0.500880002975464,-0.000196933746337891, +-3.14712524414063e-05,0.499831199645996,-0.000226497650146484,0.0524768829345703,0.431340217590332,-0.000391483306884766,0.0274534225463867,0.336514472961426,-0.000121593475341797,-2.38418579101563e-05,0.39201807975769,-0.000133037567138672,-3.14712524414063e-05,0.477706670761108,-0.000167369842529297,-4.00543212890625e-05,0.55807089805603,-0.000204563140869141,-4.9591064453125e-05,0.564189791679382,-0.000207424163818359,-5.43594360351563e-05,0.576846122741699,-0.000218868255615234,-5.81741333007813e-05,0.662659049034119,-0.000230312347412109,-6.29425048828125e-05,0.745554327964783,-0.000249862670898438,-6.58035278320313e-05,0.761156320571899,-0.000261783599853516,-6.67572021484375e-05,0.7668616771698,-0.000267505645751953,-6.866455078125e-05,0.0261162221431732,-5.24520874023438e-06,0,0.0414824485778809,-9.05990600585938e-06,0,0.0675036907196045,-3.95774841308594e-05,0,0.099582314491272,-4.14848327636719e-05,0,0.127595543861389,-5.10215759277344e-05,0,0.146854877471924,-3.95774841308594e-05,0,0.254952669143677,-8.53538513183594e-05,0,0.379336595535278,-0.000123500823974609,-1.04904174804688e-05,0.684795379638672,-0.00017547607421875,-6.58035278320313e-05,0.643939018249512,-0.000155925750732422,-5.340576171875e-05,0.568763732910156,-0.000135421752929688,-3.71932983398438e-05,0.55784273147583,-0.000108718872070313,-2.57492065429688e-05,0.445690870285034,-0.000167369842529297,-2.57492065429688e-05,0.800117492675781,-0.000262260437011719,-9.63211059570313e-05,0.791603446006775,-0.000253677368164063,-9.44137573242188e-05,0.77684497833252,-0.000237464904785156,-9.25064086914063e-05,0.755624175071716,-0.000222206115722656,-8.86917114257813e-05,0.728229999542236,-0.000207901000976563,-8.392333984375e-05,0.695577621459961,-0.000188827514648438,-7.2479248046875e-05,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06, +0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-8.82148742675781e-06,0,1.30375850200653,-0.000359535217285156,-0.000359058380126953,1.33131122589111,-0.000479698181152344,-0.000323295593261719,1.25121927261353,-0.000311851501464844,-0.000330448150634766,1.30131840705872,-0.000428199768066406,-0.000287055969238281,1.16104674339294,-0.000245094299316406,-0.000276088714599609,1.24565887451172,-0.000338554382324219,-0.000240802764892578,1.01190710067749,-0.000151634216308594,-0.000200271606445313,1.14684581756592,-0.000262260437011719,-0.000174522399902344,0.77003812789917,-6.866455078125e-05,-0.000120401382446289,0.977339267730713,-0.000165462493896484,-0.000110626220703125,0.173465728759766,0,-1.29938125610352e-05,0.570259094238281,-3.95774841308594e-05,-2.26497650146484e-05,0.444470882415771,-3.4332275390625e-05,-4.64916229248047e-06,1.09560298919678,-0.000189781188964844,-0.000240325927734375,1.20303726196289,-0.000313758850097656,-0.000205039978027344,0.410212993621826,-7.15255737304688e-06,-4.66108322143555e-05,0.715891361236572,-7.77244567871094e-05,-4.91142272949219e-05,1.33021640777588,-0.000439643859863281,-0.000353813171386719,1.29689526557922,-0.000372886657714844,-0.000320911407470703,1.23435950279236,-0.000313758850097656,-0.000275611877441406,1.18571376800537,-0.000263214111328125,-0.000240325927734375,1.11981058120728, +-0.000205039978027344,-0.000203132629394531,0.915144920349121,-0.000105857849121094,-0.000129938125610352,0.603090286254883,-5.10215759277344e-05,-5.79357147216797e-05,0.426719188690186,-2.52723693847656e-05,-2.62260437011719e-05,0.288735866546631,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,0.0756633281707764,-2.55107879638672e-05,0,0.157494306564331,-5.10215759277344e-05,2.86102294921875e-06,0.306370496749878,-0.000102996826171875,0,0.443500995635986,-0.000178813934326172,-2.19345092773438e-05,0.569231510162354,-0.000118255615234375,-2.86102294921875e-05,0.69504714012146,-0.000150203704833984,-4.48226928710938e-05,0.743502616882324,-0.000164508819580078,-6.103515625e-05,0.781400203704834,-0.000171661376953125,-7.53402709960938e-05,0.812712907791138,-0.00020599365234375,-8.67843627929688e-05,0.838680744171143,-0.000213623046875,-9.918212890625e-05,0.859451770782471,-0.000233650207519531,-0.000105857849121094,0.875101208686829,-0.00025177001953125,-0.000110626220703125,0.885751008987427,-0.000253677368164063,-0.000112533569335938,0.891781449317932,-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,0.0213689804077148,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06, +0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.0121298730373383,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0.0103045701980591,1.1444091796875e-05,0,0.0426156520843506,-1.1444091796875e-05,0,0.0424262285232544,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06,0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0.125698328018188,-3.69548797607422e-05,5.7220458984375e-06,0.0750446319580078,-3.88622283935547e-05,4.76837158203125e-06,0.194816112518311,-6.866455078125e-05,7.62939453125e-06,0.3502197265625,-0.000116825103759766,0,0.219695568084717,-7.31945037841797e-05,1.04904174804688e-05,0.099637508392334,-2.07424163818359e-05,8.58306884765625e-06,0.209419727325439,-7.31945037841797e-05,1.09672546386719e-05,0.0960636138916016,-4.12464141845703e-05,8.10623168945313e-06,0.167927265167236,-2.98023223876953e-05,1.23977661132813e-05,0.0673513412475586,-1.60932540893555e-05,5.7220458984375e-06,0.0955123901367188,-1.1444091796875e-05, +1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,0.360369682312012,-0.000105381011962891,3.814697265625e-06,0.287108898162842,-5.98430633544922e-05,1.23977661132813e-05,0.339129447937012,-7.31945037841797e-05,7.15255737304688e-06,0.20779275894165,-3.88622283935547e-05,1.47819519042969e-05,0.531244277954102,-0.000171661376953125,-1.71661376953125e-05,0.415458202362061,-8.24928283691406e-05,6.19888305664063e-06,0.479450702667236,-0.000119686126708984,-4.29153442382813e-06,0.517007350921631,-0.000139713287353516,-1.38282775878906e-05,0.622618675231934,-0.000119686126708984,-2.00271606445313e-05,0.544069766998291,-9.67979431152344e-05,-2.86102294921875e-06,0.679069519042969,-0.000174045562744141,-3.4332275390625e-05,0.720271110534668,-0.000196933746337891,-4.62532043457031e-05,0.689748764038086,-0.000263214111328125,-8.7738037109375e-05,0.892221927642822,-0.000231266021728516,-7.43865966796875e-05,0.830560684204102,-0.000190258026123047,-5.62667846679688e-05,0.753755569458008,-0.000142574310302734,-3.76701354980469e-05,0.771912574768066,-0.000302791595458984,-0.000115394592285156,1.08034944534302,-0.000296592712402344,-0.000161170959472656,1.01996612548828,-0.000263214111328125,-0.000134468078613281,0.843175411224365,-0.000330924987792969,-0.000151634216308594,1.13101506233215,-0.000365257263183594,-0.000195026397705078,1.21189785003662,-0.000274658203125,-0.00030517578125,1.2703857421875,-0.000334739685058594,-0.000300884246826172,1.27754426002502,-0.000372886657714844,-0.000267982482910156,0.901171684265137,-0.0003662109375,-0.00018310546875,1.17170143127441,-0.00038909912109375,-0.000225067138671875,0.948055267333984,-0.000426292419433594,-0.000208854675292969,1.20341920852661,-0.000414848327636719,-0.000247001647949219,1.28122329711914,-0.00034332275390625,-0.000346660614013672,1.31634414196014,-0.000418663024902344,-0.000339508056640625,1.31878316402435,-0.000452995300292969,-0.000306129455566406,1.22776365280151,-0.000456809997558594,-0.000268936157226563,0.985237121582031, +-0.000439643859863281,-0.000229835510253906,1.01392495632172,-0.000475883483886719,-0.000246047973632813,1.22099769115448,-0.000491142272949219,-0.000284194946289063,1.31958293914795,-0.000388145446777344,-0.000369071960449219,1.33946204185486,-0.000473976135253906,-0.000361442565917969,1.33963811397552,-0.000487327575683594,-0.000330924987792969,1.32914090156555,-0.000407218933105469,-0.000376701354980469,1.34461450576782,-0.000460624694824219,-0.0003662109375,1.34433913230896,-0.000517845153808594,-0.000337600708007813,1.04853415489197,-0.000537872314453125,-0.000264167785644531,1.0348037481308,-0.000517845153808594,-0.000256538391113281,1.26894295215607,-0.000517845153808594,-0.000294685363769531,1.2767790555954,-0.000540733337402344,-0.000300407409667969,1.33350530266762,-0.000393867492675781,-0.000380516052246094,1.34665313363075,-0.000457763671875,-0.000369071960449219,1.34629634022713,-0.000506401062011719,-0.000338554382324219,1.05598545074463,-0.000537872314453125,-0.000267982482910156,1.28065371513367,-0.000531196594238281,-0.000304222106933594,1.02063226699829,-0.000222682952880859,-0.000109195709228516,0.942208766937256,-0.000194549560546875,-8.48770141601563e-05,0.904837131500244,-9.1552734375e-05,-0.000161409378051758,1.03130483627319,-0.000159263610839844,-0.000165939331054688,1.07346677780151,-0.000211238861083984,-0.000142574310302734,0.844156265258789,-0.000146389007568359,-6.05583190917969e-05,0.60545539855957,-3.33786010742188e-05,-8.16583633422852e-05,0.770670413970947,-8.24928283691406e-05,-9.27448272705078e-05,0.856390476226807,-0.000100612640380859,-7.93933868408203e-05,0.727402210235596,-8.72611999511719e-05,-3.48091125488281e-05,0.657641410827637,-0.000116825103759766,-1.62124633789063e-05,0.601768970489502,-7.39097595214844e-05,-1.07288360595703e-05,0.547848701477051,-7.10487365722656e-05,2.14576721191406e-06,0.446821689605713,-5.98430633544922e-05,1.1444091796875e-05,0.327988147735596,-4.57763671875e-05,1.57356262207031e-05,0.483216285705566,-5.96046447753906e-05,3.09944152832031e-06,0.436394691467285, +-3.88622283935547e-05,1.21593475341797e-05,0.341680526733398,-3.21865081787109e-05,1.93119049072266e-05,0.226046085357666,-2.288818359375e-05,1.74045562744141e-05,0.109471321105957,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.91413879394531e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06,0,0,-2.29477882385254e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58210706710815e-06,0,0,2.29477882385254e-06,0,0,-6.86943531036377e-06,0,0,-4.57838177680969e-06,0,0,9.16421413421631e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06,0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0, +0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06,0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,0.0107431411743164,-9.17911529541016e-06,0,0.00806045532226563,6.79492950439453e-06,0,0.0271463394165039,-1.1444091796875e-05,2.38418579101563e-06,0.0213623046875,-9.29832458496094e-06,0,0.0521087646484375,-2.62260437011719e-06,3.27825546264648e-06,0.0436134338378906,2.14576721191406e-06,2.02655792236328e-06,0.0859479904174805,6.91413879394531e-06,4.72180545330048e-06,0.0752296447753906,8.82148742675781e-06,1.9073486328125e-06,0.126181125640869,2.14576721191406e-06,6.19888305664063e-06,0.111748695373535,-5.24520874023438e-06,1.65402889251709e-06,0.169600009918213,2.14576721191406e-06,8.40425491333008e-06,0.141875267028809,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06, +0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,0.0114669799804688,-4.64916229248047e-06,0,0.0287084579467773,0,2.14576721191406e-06,0.0551691055297852,4.52995300292969e-06,2.74181365966797e-06,0.0906467437744141,-6.91413879394531e-06,3.15159559249878e-06,0.131220817565918,4.52995300292969e-06,4.64916229248047e-06,0.169955253601074,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,0.00185728073120117,-4.64916229248047e-06,0,0.00609827041625977,6.91413879394531e-06,0,0.0152416229248047,-9.29832458496094e-06,0,0.0314812660217285,0,0,0.0579161643981934,2.14576721191406e-06,0,0.111053466796875,9.05990600585938e-06,1.78813934326172e-06,0.235386371612549,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06,0,0.00349617004394531,1.1444091796875e-05,0,0.0106906890869141,2.14576721191406e-06,0,0.0252981185913086,-1.1444091796875e-05,0,0.0505228042602539,2.14576721191406e-06,1.78813934326172e-06,0.0891180038452148,-4.52995300292969e-06,1.98930501937866e-06,0.145628929138184,1.1444091796875e-05,2.20537185668945e-06,0.21415901184082,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06, +0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,0.0102958679199219,-4.64916229248047e-06,0,0.0262269973754883,2.14576721191406e-06,1.78813934326172e-06,0.0513553619384766,-9.29832458496094e-06,2.50339508056641e-06,0.0855073928833008,0,2.29477882385254e-06,0.124117851257324,-4.52995300292969e-06,2.47359275817871e-06,0.159722328186035,8.82148742675781e-06,3.39746475219727e-06,0.222784042358398,-6.91413879394531e-06,5.48362731933594e-06,0.228226661682129,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,0.00562191009521484,2.26497650146484e-06,0,0.0158681869506836,8.82148742675781e-06,0,0.0346908569335938,-9.29832458496094e-06,1.66893005371094e-06,0.0640678405761719,6.91413879394531e-06,1.84774398803711e-06,0.10295295715332,-1.1444091796875e-05,1.83470547199249e-06,0.146941661834717,9.05990600585938e-06,1.78813934326172e-06,0.187146186828613,4.52995300292969e-06,4.35113906860352e-06,0.197600841522217,-1.1444091796875e-05,6.67572021484375e-06,0.142857551574707,4.52995300292969e-06,1.00135803222656e-05,0.101873874664307,-9.29832458496094e-06,7.09295272827148e-06,0.067927360534668,-9.29832458496094e-06,4.88758087158203e-06,0.040745735168457,4.52995300292969e-06,3.33786010742188e-06,0.0208044052124023,6.79492950439453e-06,1.96695327758789e-06,0.00742053985595703,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,0.0104684829711914,2.26497650146484e-06,0,0.0221433639526367,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06, +0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,0.0374631881713867,0,3.42726707458496e-06,0.0567011833190918,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,0.0322318077087402,2.26497650146484e-06,3.814697265625e-06,0.0803427696228027,-2.62260437011719e-06,6.9737434387207e-06,0.0639152526855469,2.26497650146484e-06,6.79492950439453e-06,0.0654335021972656,2.26497650146484e-06,6.79492950439453e-06,0.0840225219726563,0,7.98702239990234e-06,0.0774340629577637,-2.26497650146484e-06,7.74860382080078e-06,0.0447211265563965,-7.03334808349609e-06,5.36441802978516e-06,0.0436091423034668,9.17911529541016e-06,5.12599945068359e-06,0.102429389953613,2.14576721191406e-06,9.29832458496094e-06,0.0784506797790527,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,0.148072242736816,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,0.332592964172363,-2.74181365966797e-05,1.50203704833984e-05,0.238994121551514,-2.288818359375e-05,1.69277191162109e-05,0.117329597473145,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,4.64916229248047e-06,0,0.229795932769775,2.38418579101563e-06,0,0.358342170715332,-1.66893005371094e-05,4.52995300292969e-06,0.383089542388916,-9.29832458496094e-06,1.06096267700195e-05,0.300035953521729,-2.55107879638672e-05,1.01327896118164e-05,0.310536861419678,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,0.00850725173950195,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,0.00578451156616211,-9.29832458496094e-06,0,0.00125932693481445,-4.52995300292969e-06,0,0.00250673294067383,-4.52995300292969e-06,0,0.000705718994140625,-2.62260437011719e-06,0,0.000753402709960938,2.26497650146484e-06,0,0.000226497650146484,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06, +0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0.000125408172607422,8.82148742675781e-06,0,5.43594360351563e-05,4.41074371337891e-06,0,6.19888305664063e-06,6.91413879394531e-06,0,4.29153442382813e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,2.43186950683594e-05,8.82148742675781e-06,0,1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06,0,0,6.88433647155762e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0.197163581848145,8.58306884765625e-06,-4.21702861785889e-05,0.372637271881104,-1.81198120117188e-05,-8.70823860168457e-05,0.52381443977356,-2.95639038085938e-05,-0.000131726264953613,0.653875827789307,-6.00814819335938e-05,-0.000175952911376953,0.767556667327881,-5.24520874023438e-05,-0.000217676162719727,0.715638160705566,-7.15255737304688e-05,-0.000213384628295898,0.788506388664246,-0.000102996826171875,-0.000243186950683594,0.852230608463287,-0.000119209289550781,-0.000268220901489258, +0.906218290328979,-0.000125885009765625,-0.000288486480712891,0.950169861316681,-0.000151634216308594,-0.000303745269775391,0.985588252544403,-0.000148773193359375,-0.000314712524414063,1.01019749045372,-0.00016021728515625,-0.000323295593261719,1.02306029200554,-0.000151634216308594,-0.00032806396484375,0.208703517913818,8.58306884765625e-06,-3.090500831604e-05,0.405456066131592,-2.19345092773438e-05,-6.79492950439453e-05,0.578542470932007,-4.10079956054688e-05,-0.000106453895568848,0.725355863571167,-6.77108764648438e-05,-0.000148773193359375,0.847596168518066,-0.000107765197753906,-0.000191926956176758,0.949557065963745,-0.000136375427246094,-0.000230789184570313,1.03465247154236,-0.000155448913574219,-0.00026702880859375,1.1053215265274,-0.000201225280761719,-0.000295162200927734,1.16311705112457,-0.000222206115722656,-0.000317096710205078,1.21003556251526,-0.000256538391113281,-0.000332355499267578,1.24733281135559,-0.000273704528808594,-0.000343799591064453,1.27520394325256,-0.000277519226074219,-0.000354766845703125,1.29313948750496,-0.000313758850097656,-0.000360488891601563,1.30209344625473,-0.00029754638671875,-0.000363349914550781,0.0611886978149414,0,-2.02804803848267e-05,0.149044990539551,4.76837158203125e-06,-5.26309013366699e-05,0.259457111358643,6.67572021484375e-06,-9.59634780883789e-05,0.360846519470215,-1.1444091796875e-05,-0.000137686729431152,0.462302327156067,-1.04904174804688e-05,-0.00018155574798584,0.572170734405518,-4.10079956054688e-05,-0.000229954719543457,0.681912302970886,-4.10079956054688e-05,-0.000277280807495117,0.750664830207825,-6.38961791992188e-05,-0.000306844711303711,0.824874997138977,-7.53402709960938e-05,-0.000339031219482422,0.894773006439209,-9.1552734375e-05,-0.000368833541870117,0.97424852848053,-9.82284545898438e-05,-0.000402450561523438,1.0124564319849,-0.000105857849121094,-0.00041961669921875,0.302828311920166,4.76837158203125e-06,-0.000131845474243164,0.378895282745361,-5.7220458984375e-06,-0.000170886516571045,0.444914102554321,-1.1444091796875e-05,-0.000207424163818359, +0.550791382789612,-1.33514404296875e-05,-0.000261425971984863,0.683815240859985,-3.62396240234375e-05,-0.000330090522766113,0.677270531654358,-4.38690185546875e-05,-0.000331878662109375,0.728476703166962,-4.00543212890625e-05,-0.000360369682312012,0.785586297512054,-5.53131103515625e-05,-0.000390529632568359,0.843563437461853,-3.62396240234375e-05,-0.000419855117797852,0.889088280498981,-4.38690185546875e-05,-0.000443339347839355,0.0323586910963058,0,-1.96695327758789e-05,0.174976348876953,8.58306884765625e-06,-4.89950180053711e-05,0.325138092041016,-6.67572021484375e-06,-9.72747802734375e-05,0.454932928085327,-2.76565551757813e-05,-0.000144124031066895,0.571283102035522,-2.95639038085938e-05,-0.000189423561096191,0.678191542625427,-3.91006469726563e-05,-0.000232934951782227,0.777182102203369,-7.34329223632813e-05,-0.000274896621704102,0.707085728645325,-9.05990600585938e-05,-0.000255346298217773,0.774913609027863,-8.67843627929688e-05,-0.000284671783447266,0.836520195007324,-0.000113487243652344,-0.000311136245727539,0.887921333312988,-0.00011444091796875,-0.000332117080688477,0.923958659172058,-0.000140190124511719,-0.000345945358276367,0.943437516689301,-0.000128746032714844,-0.000352382659912109,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.0934806391505845,-3.67164611816406e-05,0,0.582627952095208,-0.00022125244140625,-6.38961791992188e-05,0.101718530058861,-4.14848327636719e-05,0,0.376977920532227,-0.000139713287353516,-1.23977661132813e-05,0.414340496063232,-0.0001373291015625,-1.81198120117188e-05,0.266873717308044,-8.72611999511719e-05,-5.7220458984375e-06,0.325498580932617,-0.000121593475341797,-8.58306884765625e-06,0.209143280982971,-7.39097595214844e-05,-2.86102294921875e-06,0.16087281703949,-7.58171081542969e-05,0,0.124556422233582,-4.33921813964844e-05,0,0.441892862319946,-0.000144481658935547,-2.38418579101563e-05,0.330294370651245,-0.000104427337646484,-2.38418579101563e-05, +0.333240509033203,-0.000115871429443359,-2.76565551757813e-05,0.291433811187744,-9.87052917480469e-05,-2.86102294921875e-05,0.347733974456787,-0.000124454498291016,-3.91006469726563e-05,0.389325141906738,-0.0001373291015625,-4.67300415039063e-05,0.432406544685364,-0.000164031982421875,-5.14984130859375e-05,0.482679605484009,-0.000188827514648438,-5.81741333007813e-05,0.524906635284424,-0.000194549560546875,-6.00814819335938e-05,0.556575894355774,-0.000218868255615234,-6.103515625e-05,0.576038241386414,-0.000221729278564453,-6.38961791992188e-05,0.0881219804505236,-2.52723693847656e-05,-6.67572021484375e-06,0.111991465091705,-5.7220458984375e-05,-6.67572021484375e-06,0.14850452542305,-7.39097595214844e-05,-8.58306884765625e-06,0.186945855617523,-8.72611999511719e-05,-1.1444091796875e-05,0.277098655700684,-0.000102996826171875,-1.81198120117188e-05,0.380880951881409,-0.000154018402099609,-2.76565551757813e-05,0.438390016555786,-0.000151157379150391,-2.95639038085938e-05,0.541717529296875,-0.000190258026123047,-3.814697265625e-05,0.576250314712524,-0.000217437744140625,-4.00543212890625e-05,0.659483194351196,-0.000234127044677734,-4.57763671875e-05,0.343156099319458,-0.000121593475341797,-2.47955322265625e-05,0.375573396682739,-0.000124454498291016,-2.6702880859375e-05,0.41280198097229,-0.000143051147460938,-3.0517578125e-05,0.519097566604614,-0.000185489654541016,-3.62396240234375e-05,0.552040576934814,-0.000200271606445313,-3.71932983398438e-05,0.584945440292358,-0.000218868255615234,-4.10079956054688e-05,0.633975386619568,-0.000249862670898438,-4.29153442382813e-05,0.645068764686584,-0.00025177001953125,-4.1961669921875e-05,0.660172760486603,-0.000265598297119141,-4.29153442382813e-05,0.663708925247192,-0.000267505645751953,-4.29153442382813e-05,0.659564793131722,-0.000261306762695313,-4.29153442382813e-05,0.102166682503594,-4.33921813964844e-05,-6.67572021484375e-06,0.114605695009232,-4.57763671875e-05,-6.67572021484375e-06,0.144515007734299,-5.7220458984375e-05,-8.58306884765625e-06,0.191801190376282,-8.53538513183594e-05, +-1.1444091796875e-05,0.281798481941223,-0.000108242034912109,-1.62124633789063e-05,0.40507698059082,-0.000142574310302734,-2.38418579101563e-05,0.487721800804138,-0.000167369842529297,-2.86102294921875e-05,0.559443712234497,-0.00018310546875,-3.52859497070313e-05,0.633019924163818,-0.000203609466552734,-4.00543212890625e-05,0.694179773330688,-0.000234127044677734,-4.57763671875e-05,0.339361667633057,-0.000116825103759766,-2.38418579101563e-05,0.361016273498535,-0.000124454498291016,-2.6702880859375e-05,0.394493103027344,-0.000139713287353516,-3.14712524414063e-05,0.496936559677124,-0.000175952911376953,-4.00543212890625e-05,0.547789692878723,-0.000201702117919922,-4.29153442382813e-05,0.587801814079285,-0.000211715698242188,-4.48226928710938e-05,0.650454640388489,-0.000249862670898438,-4.86373901367188e-05,0.675729155540466,-0.00026702880859375,-4.86373901367188e-05,0.681689977645874,-0.000272750854492188,-4.76837158203125e-05,0.677414834499359,-0.000268936157226563,-4.67300415039063e-05,0.669478073737992,-0.000265598297119141,-4.67300415039063e-05,0.0730367079377174,-2.55107879638672e-05,4.76837158203125e-06,0.0786640048027039,-3.69548797607422e-05,4.76837158203125e-06,0.27056622505188,-7.39097595214844e-05,0,0.301513910293579,-8.72611999511719e-05,-5.24520874023438e-06,0.19356107711792,-7.12871551513672e-05,8.58306884765625e-06,0.233784675598145,-6.65187835693359e-05,4.76837158203125e-06,0.154376983642578,-5.26905059814453e-05,6.67572021484375e-06,0.120623350143433,-5.26905059814453e-05,7.62939453125e-06,0.0948883295059204,-4.12464141845703e-05,5.7220458984375e-06,0.329222202301025,-0.000100612640380859,-1.1444091796875e-05,0.18033242225647,-4.9591064453125e-05,-1.1444091796875e-05,0.201693296432495,-5.86509704589844e-05,-1.66893005371094e-05,0.245386600494385,-6.15119934082031e-05,-2.76565551757813e-05,0.2740318775177,-7.72476196289063e-05,-3.76701354980469e-05,0.324366092681885,-0.000100135803222656,-4.86373901367188e-05,0.378668904304504,-0.000125885009765625,-5.81741333007813e-05,0.431930541992188,-0.000140190124511719, +-6.58035278320313e-05,0.479336202144623,-0.000157356262207031,-6.96182250976563e-05,0.516731679439545,-0.000180244445800781,-7.05718994140625e-05,0.540700495243073,-0.000185966491699219,-7.2479248046875e-05,0.548925220966339,-0.000185966491699219,-7.53402709960938e-05,0.0234642699360847,-6.91413879394531e-06,0,0.0251403748989105,2.14576721191406e-06,0,0.0826427936553955,-9.05990600585938e-06,-2.86102294921875e-06,0.0945982933044434,-1.66893005371094e-05,-6.91413879394531e-06,0.0589549541473389,-7.15255737304688e-06,0,0.0709023475646973,4.29153442382813e-06,0,0.0475742816925049,2.14576721191406e-06,0,0.0376660823822021,2.14576721191406e-06,2.14576721191406e-06,0.0300120115280151,-1.1444091796875e-05,1.9073486328125e-06,0.110206365585327,-9.05990600585938e-06,-1.07288360595703e-05,0.141508340835571,-2.19345092773438e-05,-1.88350677490234e-05,0.176405191421509,-1.04904174804688e-05,-2.83718109130859e-05,0.22304630279541,-2.288818359375e-05,-4.41074371337891e-05,0.290633678436279,-4.57763671875e-05,-6.43730163574219e-05,0.386872172355652,-6.00814819335938e-05,-9.01222229003906e-05,0.498671889305115,-8.67843627929688e-05,-0.000113964080810547,0.61747682094574,-0.000109672546386719,-0.000134944915771484,0.733282804489136,-0.000148773193359375,-0.000149250030517578,0.831969380378723,-0.000166893005371094,-0.00016021728515625,0.898578107357025,-0.000166893005371094,-0.000170707702636719,0.922046005725861,-0.000171661376953125,-0.000176906585693359,0.164752259850502,0,-5.71012496948242e-05,0.164752274751663,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341,0,-5.71608543395996e-05,0.16475248336792,0,-5.71608543395996e-05,0.164752244949341,0,-5.7220458984375e-05,0.164752244949341,0,-5.69820404052734e-05,0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,0.16475236415863,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,0.16475248336792,0,-5.71608543395996e-05,0.164752244949341,0,-5.71012496948242e-05,0.164752244949341,0,-5.71608543395996e-05,0.164752006530762, +0,-5.71012496948242e-05,0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,0.171116590499878,-1.9073486328125e-06,-5.93662261962891e-05,0.17587673664093,0,-6.09159469604492e-05,0.180306673049927,0,-6.25848770141602e-05,0.184573352336884,0,-6.41345977783203e-05,0.188271641731262,0,-6.53266906738281e-05,0.190809398889542,0,-6.61611557006836e-05,0.191712632775307,0,-6.63995742797852e-05,0,9.05990600585938e-06,0,0.0526230335235596,0,-1.05202198028564e-05,0.0804190635681152,-1.04904174804688e-05,-1.79409980773926e-05,0.110532760620117,0,-2.78949737548828e-05,0.1606764793396,-6.67572021484375e-06,-4.32729721069336e-05,0.269533753395081,-1.81198120117188e-05,-7.48634338378906e-05,0.388612866401672,-2.288818359375e-05,-0.000105142593383789,0.512962639331818,-5.62667846679688e-05,-0.000133752822875977,0.635793149471283,-4.48226928710938e-05,-0.00015711784362793,0.742478907108307,-7.34329223632813e-05,-0.000176191329956055,0.81542032957077,-6.866455078125e-05,-0.000190973281860352,0.841353297233582,-7.34329223632813e-05,-0.000198841094970703,0.0481942296028137,-1.40666961669922e-05,3.33786010742188e-06,0.0517162084579468,-1.59740447998047e-05,4.29153442382813e-06,0.0619155764579773,-1.40666961669922e-05,5.24520874023438e-06,0.0780516862869263,-1.83582305908203e-05,6.19888305664063e-06,0.0989878177642822,-1.1444091796875e-05,8.10623168945313e-06,0.123143434524536,-3.69548797607422e-05,8.10623168945313e-06,0.148154497146606,-2.98023223876953e-05,4.29153442382813e-06,0.172005891799927,-3.4332275390625e-05,0,0.194048881530762,-2.81333923339844e-05,-4.29153442382813e-06,0.21704363822937,-5.48362731933594e-05,-1.00135803222656e-05,0.123548030853271,-2.71797180175781e-05,-1.09672546386719e-05,0.143582344055176,-2.71797180175781e-05,-1.71661376953125e-05,0.171879768371582,-4.00543212890625e-05,-2.6702880859375e-05,0.210759162902832,-4.29153442382813e-05,-3.86238098144531e-05,0.259849309921265,-6.77108764648438e-05,-5.14984130859375e-05,0.314969658851624,-7.91549682617188e-05,-6.24656677246094e-05,0.371531009674072,-9.72747802734375e-05, +-7.15255737304688e-05,0.4244544506073,-0.000107765197753906,-7.58171081542969e-05,0.468077838420868,-0.000123023986816406,-7.86781311035156e-05,0.496838957071304,-0.000131607055664063,-8.24928283691406e-05,0.506895244121552,-0.000140190124511719,-8.44001770019531e-05,0,-4.58955764770508e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.85453414916992e-06,0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0.102783769369125,-5.10215759277344e-05,-7.62939453125e-06,0.0768118798732758,-3.67164611816406e-05,0,0.603522062301636,-0.000203609466552734,-4.29153442382813e-05,0.59784722328186,-0.000213146209716797,-3.91006469726563e-05,0.523395538330078,-0.00018310546875,-3.4332275390625e-05,0.495804786682129,-0.000178813934326172,-3.4332275390625e-05,0.346720218658447,-0.000144481658935547,-1.71661376953125e-05,0.365042328834534,-0.0001373291015625,-2.38418579101563e-05,0.235363125801086,-0.000102996826171875,-9.5367431640625e-06,0.258273839950562,-9.87052917480469e-05,-1.71661376953125e-05,0.152953505516052,-5.48362731933594e-05,-5.7220458984375e-06,0.186152815818787,-7.58171081542969e-05,-1.1444091796875e-05,0.0994709730148315,-5.29289245605469e-05,-4.76837158203125e-06,0.135044395923615,-5.29289245605469e-05,-8.58306884765625e-06,0.421386957168579,-0.00016021728515625,-3.0517578125e-05,0.42155909538269,-0.000169277191162109,-2.38418579101563e-05,0.600241661071777,-0.000215053558349609,-4.1961669921875e-05,0.647118806838989,-0.0002288818359375,-4.57763671875e-05,0.689835071563721,-0.000240325927734375,-4.86373901367188e-05,0.703327417373657, +-0.000254154205322266,-4.9591064453125e-05,0.801268815994263,-0.000293254852294922,-6.103515625e-05,0.817743301391602,-0.000295162200927734,-5.81741333007813e-05,0.906530618667603,-0.0003204345703125,-7.05718994140625e-05,0.863131999969482,-0.000299930572509766,-6.38961791992188e-05,1.04450726509094,-0.000373363494873047,-7.43865966796875e-05,1.08286929130554,-0.00038909912109375,-8.86917114257813e-05,1.11689877510071,0.00443935394287109,-7.72476196289063e-05,1.1205153465271,-0.000417232513427734,-9.918212890625e-05,0.968299388885498,-0.000451564788818359,-0.000105857849121094,0.911198496818542,0.074347972869873,-8.20159912109375e-05,0.812356233596802,-0.000238895416259766,-5.7220458984375e-05,0.824045658111572,0.0571374893188477,-0.0489835739135742,0.804297924041748,-0.000253200531005859,-5.91278076171875e-05,0.756246089935303,0.028691291809082,-4.1961669921875e-05,0.78317129611969,-0.000259876251220703,-6.103515625e-05,0.700903654098511,0.0126686096191406,-4.10079956054688e-05,0.755266666412354,-0.000263214111328125,-6.19888305664063e-05,0.662544220685959,-0.000276088714599609,-4.29153442382813e-05,0.0891833007335663,-4.33921813964844e-05,-4.76837158203125e-06,0.117341041564941,-5.48362731933594e-05,-5.7220458984375e-06,0.171426773071289,-6.62803649902344e-05,-8.58306884765625e-06,0.250630140304565,-9.1552734375e-05,-1.23977661132813e-05,0.369702219963074,-0.000148773193359375,-2.288818359375e-05,0.45042872428894,-0.00018310546875,-2.95639038085938e-05,0.521634578704834,-0.000190258026123047,-3.52859497070313e-05,0.599839925765991,-0.000208377838134766,-4.10079956054688e-05,0.608727216720581,-0.0002288818359375,-4.29153442382813e-05,0.699256181716919,-0.000237941741943359,-5.14984130859375e-05,0.807940721511841,-0.000279903411865234,-6.00814819335938e-05,0.887659549713135,-0.000314235687255859,-6.77108764648438e-05,1.05236220359802,-0.000394344329833984,-8.10623168945313e-05,1.10382986068726,0.000133514404296875,-8.7738037109375e-05,0.967616558074951,-0.000437259674072266,-9.44137573242188e-05,0.844596862792969, +-0.00025177001953125,-5.05447387695313e-05,0.846054673194885,-0.000265598297119141,-5.14984130859375e-05,0.792774677276611,-0.000270366668701172,-5.24520874023438e-05,0.739719539880753,-0.000277042388916016,-5.43594360351563e-05,0.0982849597930908,-4.81605529785156e-05,-5.7220458984375e-06,0.128795921802521,-5.48362731933594e-05,-8.58306884765625e-06,0.180903673171997,-7.77244567871094e-05,-1.1444091796875e-05,0.256482243537903,-9.87052917480469e-05,-1.52587890625e-05,0.36866307258606,-0.000154018402099609,-2.47955322265625e-05,0.43423318862915,-0.000165462493896484,-3.0517578125e-05,0.506765127182007,-0.000194549560546875,-3.4332275390625e-05,0.606605291366577,-0.000211238861083984,-4.29153442382813e-05,0.649121284484863,-0.000217437744140625,-4.67300415039063e-05,0.709467172622681,-0.000260829925537109,-5.05447387695313e-05,0.815936088562012,-0.000288486480712891,-6.00814819335938e-05,0.856096506118774,-0.000304698944091797,-6.38961791992188e-05,1.04255843162537,-0.000386714935302734,-7.72476196289063e-05,1.10813856124878,0.015902042388916,-8.10623168945313e-05,0.947392463684082,0.0667223930358887,-8.58306884765625e-05,0.840033292770386,0.0598697662353516,-0.0250968933105469,0.792383193969727,0.0285000801086426,-4.57763671875e-05,0.782246470451355,0.0126757621765137,-4.67300415039063e-05,0.743937134742737,-0.000274658203125,-4.76837158203125e-05,0.056196928024292,-1.85966491699219e-05,0,0.0762843489646912,-2.81333923339844e-05,0,0.112174153327942,-3.95774841308594e-05,0,0.161687135696411,-7.58171081542969e-05,-2.86102294921875e-06,0.218053340911865,-7.77244567871094e-05,-4.76837158203125e-06,0.275873899459839,-0.000100612640380859,-5.7220458984375e-06,0.356773376464844,-0.000133037567138672,-1.23977661132813e-05,0.450096130371094,-0.000148773193359375,-2.09808349609375e-05,0.558565855026245,-0.000190258026123047,-3.4332275390625e-05,0.668161630630493,-0.000234127044677734,-5.05447387695313e-05,0.791267395019531,-0.000265598297119141,-6.77108764648438e-05,0.928593158721924,-0.000316143035888672,-8.86917114257813e-05, +1.07481741905212,-0.000377655029296875,-0.00011444091796875,1.0732753276825,-0.000375270843505859,-0.000124931335449219,0.827426850795746,-0.000261783599853516,-7.72476196289063e-05,0.851035714149475,-0.000253200531005859,-7.62939453125e-05,0.872035980224609,-0.000244140625,-7.43865966796875e-05,0.908223748207092,-0.000227451324462891,-7.15255737304688e-05,0.958134412765503,-0.000425815582275391,-0.000139236450195313,0.0744503140449524,-3.67164611816406e-05,0,0.0984694361686707,-4.33921813964844e-05,0,0.144196391105652,-5.48362731933594e-05,-4.76837158203125e-06,0.210935950279236,-7.77244567871094e-05,-6.67572021484375e-06,0.359158992767334,-0.000133037567138672,-1.71661376953125e-05,0.45177960395813,-0.000185489654541016,-2.288818359375e-05,0.541239261627197,-0.000196933746337891,-3.14712524414063e-05,0.615561723709106,-0.000226497650146484,-4.00543212890625e-05,0.603628635406494,-0.000199794769287109,-4.1961669921875e-05,0.672902345657349,-0.000242710113525391,-4.86373901367188e-05,0.783890962600708,-0.000265598297119141,-6.29425048828125e-05,0.955244064331055,-0.000334262847900391,-8.0108642578125e-05,1.11595940589905,-0.000409603118896484,-0.000100135803222656,1.12821793556213,-0.000414371490478516,-0.000108718872070313,0.983858823776245,-0.000437259674072266,-0.000115394592285156,0.836764931678772,-0.000230312347412109,-6.29425048828125e-05,0.823271751403809,-0.000249862670898438,-6.58035278320313e-05,0.795548260211945,-0.000261783599853516,-6.67572021484375e-05,0.766847789287567,-0.000267505645751953,-6.866455078125e-05,0.0261158645153046,-5.24520874023438e-06,0,0.0414807200431824,-9.05990600585938e-06,0,0.0674995183944702,-3.95774841308594e-05,0,0.099573016166687,-4.14848327636719e-05,0,0.127580404281616,-5.10215759277344e-05,0,0.146834135055542,-3.95774841308594e-05,0,0.254908323287964,-8.53538513183594e-05,0,0.379257917404175,-0.000123500823974609,-1.04904174804688e-05,1.04993438720703,-0.000350475311279297,-0.000130653381347656,0.968214511871338,-0.000311374664306641,-0.000105857849121094,0.817880630493164, +-0.000270366668701172,-7.53402709960938e-05,0.693174362182617,-0.000217437744140625,-5.14984130859375e-05,0.534009695053101,-0.000167369842529297,-2.57492065429688e-05,0.878486692905426,-0.000262260437011719,-9.63211059570313e-05,0.869955480098724,-0.000253677368164063,-9.44137573242188e-05,0.916084289550781,-0.000237464904785156,-9.25064086914063e-05,0.944753170013428,-0.000222206115722656,-8.86917114257813e-05,0.943821668624878,-0.000414848327636719,-0.0001678466796875,1.07152104377747,-0.000377655029296875,-0.000145912170410156,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06,0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-8.82148742675781e-06,0,1.30364859104156,-0.000359535217285156,-0.000359058380126953,1.33116126060486,-0.000479698181152344,-0.000323295593261719,1.25105667114258,-0.000311851501464844,-0.000330448150634766,1.30109548568726,-0.000428199768066406,-0.000287055969238281,1.16082286834717,-0.000245094299316406,-0.000276088714599609,1.24536180496216,-0.000338554382324219,-0.000240802764892578,1.01164054870605,-0.000151634216308594,-0.000200271606445313,1.14649629592896,-0.000262260437011719, +-0.000174522399902344,0.769798755645752,-6.866455078125e-05,-0.000120401382446289,0.976996421813965,-0.000165462493896484,-0.000110626220703125,0.173402309417725,0,-1.29938125610352e-05,0.570027351379395,-3.95774841308594e-05,-2.26497650146484e-05,0.444282531738281,-3.4332275390625e-05,-4.64916229248047e-06,1.0953516960144,-0.000189781188964844,-0.000240325927734375,1.20270538330078,-0.000313758850097656,-0.000205039978027344,0.410068988800049,-7.15255737304688e-06,-4.66108322143555e-05,0.715614795684814,-7.77244567871094e-05,-4.91142272949219e-05,1.33008217811584,-0.000439643859863281,-0.000353813171386719,1.29669070243835,-0.000372886657714844,-0.000320911407470703,1.23407912254333,-0.000313758850097656,-0.000275611877441406,1.18539524078369,-0.000263214111328125,-0.000240325927734375,1.11946678161621,-0.000205039978027344,-0.000203132629394531,0.914819717407227,-0.000105857849121094,-0.000129938125610352,0.602851867675781,-5.10215759277344e-05,-5.79357147216797e-05,0.426541805267334,-2.52723693847656e-05,-2.62260437011719e-05,0.288614273071289,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,0.0756523609161377,-2.55107879638672e-05,0,0.157466411590576,-5.10215759277344e-05,2.86102294921875e-06,0.306302547454834,-0.000102996826171875,0,0.53180980682373,-0.000178813934326172,-2.19345092773438e-05,0.761335372924805,-0.000236034393310547,-5.7220458984375e-05,0.905502796173096,-0.000299930572509766,-8.96453857421875e-05,1.00241041183472,-0.000329494476318359,-0.0001220703125,1.07822275161743,-0.00034332275390625,-0.000150680541992188,1.14086651802063,-0.0004119873046875,-0.000174522399902344,0.999799489974976,-0.000426292419433594,-0.000197410583496094,0.970189809799194,-0.000233650207519531,-0.000105857849121094,0.935951113700867,-0.00025177001953125,-0.000110626220703125,0.88571560382843,-0.000253677368164063,-0.000112533569335938,0.891763001680374, +-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,0.0213675498962402,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.0121296644210815,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0.0103033781051636,1.1444091796875e-05,0,0.042611837387085,-1.1444091796875e-05,0,0.0424216985702515,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06,0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06, +0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0.125670433044434,-3.69548797607422e-05,5.7220458984375e-06,0.0750255584716797,-3.88622283935547e-05,4.76837158203125e-06,0.194766998291016,-6.866455078125e-05,7.62939453125e-06,0.350126266479492,-0.000116825103759766,0,0.219629764556885,-7.31945037841797e-05,1.04904174804688e-05,0.0996079444885254,-2.07424163818359e-05,8.58306884765625e-06,0.209350109100342,-7.31945037841797e-05,1.09672546386719e-05,0.0960321426391602,-4.12464141845703e-05,8.10623168945313e-06,0.167864799499512,-2.98023223876953e-05,1.23977661132813e-05,0.0673270225524902,-1.60932540893555e-05,5.7220458984375e-06,0.0954747200012207,-1.1444091796875e-05,1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,0.360260963439941,-0.000105381011962891,3.814697265625e-06,0.287003040313721,-5.98430633544922e-05,1.23977661132813e-05,0.339015483856201,-7.31945037841797e-05,7.15255737304688e-06,0.207709789276123,-3.88622283935547e-05,1.47819519042969e-05,0.531097412109375,-0.000171661376953125,-1.71661376953125e-05,0.415305614471436,-8.24928283691406e-05,6.19888305664063e-06,0.47929048538208,-0.000119686126708984,-4.29153442382813e-06,0.516849994659424,-0.000139713287353516,-1.38282775878906e-05,0.622409820556641,-0.000119686126708984,-2.00271606445313e-05,0.543870449066162,-9.67979431152344e-05,-2.86102294921875e-06,0.678859233856201,-0.000174045562744141,-3.4332275390625e-05,0.720067501068115,-0.000196933746337891,-4.62532043457031e-05,0.952444553375244,-0.000263214111328125,-8.7738037109375e-05,0.891955375671387,-0.000231266021728516,-7.43865966796875e-05,0.830295562744141,-0.000190258026123047,-5.62667846679688e-05,0.753498077392578,-0.000142574310302734,-3.76701354980469e-05,1.03460168838501,-0.000302791595458984,-0.000115394592285156,1.1456995010376,-0.000296592712402344,-0.000161170959472656,1.08530855178833, +-0.000263214111328125,-0.000134468078613281,1.105877161026,-0.000330924987792969,-0.000151634216308594,1.19639110565186,-0.000365257263183594,-0.000195026397705078,1.21170544624329,-0.000274658203125,-0.00030517578125,1.27014398574829,-0.000334739685058594,-0.000300884246826172,1.27728486061096,-0.000372886657714844,-0.000267982482910156,1.163898229599,-0.0003662109375,-0.00018310546875,1.23711037635803,-0.00038909912109375,-0.000225067138671875,1.21080565452576,-0.000426292419433594,-0.000208854675292969,1.26885962486267,-0.000414848327636719,-0.000247001647949219,1.28108739852905,-0.00034332275390625,-0.000346660614013672,1.31617259979248,-0.000418663024902344,-0.000339508056640625,1.31859469413757,-0.000452995300292969,-0.000306129455566406,1.29323649406433,-0.000456809997558594,-0.000268936157226563,1.11349630355835,-0.000439643859863281,-0.000229835510253906,1.12458574771881,-0.000475883483886719,-0.000246047973632813,1.31135630607605,-0.000491142272949219,-0.000284194946289063,1.31950092315674,-0.000388145446777344,-0.000369071960449219,1.33936011791229,-0.000473976135253906,-0.000361442565917969,1.33952820301056,-0.000487327575683594,-0.000330924987792969,1.32908695936203,-0.000407218933105469,-0.000376701354980469,1.344546854496,-0.000460624694824219,-0.0003662109375,1.34426432847977,-0.000517845153808594,-0.000337600708007813,1.04845947027206,-0.000537872314453125,-0.000264167785644531,1.09559416770935,-0.000517845153808594,-0.000256538391113281,1.32405984401703,-0.000517845153808594,-0.000294685363769531,1.33193349838257,-0.000540733337402344,-0.000300407409667969,1.33347842097282,-0.000393867492675781,-0.000380516052246094,1.34661826491356,-0.000457763671875,-0.000369071960449219,1.34625777602196,-0.000506401062011719,-0.000338554382324219,1.05594569444656,-0.000537872314453125,-0.000267982482910156,1.20751142501831,-0.000531196594238281,-0.000304222106933594,1.02031278610229,-0.000222682952880859,-0.000109195709228516,0.941895008087158,-0.000194549560546875,-8.48770141601563e-05,0.904573917388916,-9.1552734375e-05, +-0.000161409378051758,1.03095817565918,-0.000159263610839844,-0.000165939331054688,1.07311391830444,-0.000211238861083984,-0.000142574310302734,0.843857288360596,-0.000146389007568359,-6.05583190917969e-05,0.6052565574646,-3.33786010742188e-05,-8.16583633422852e-05,0.770381450653076,-8.24928283691406e-05,-9.27448272705078e-05,0.856074810028076,-0.000100612640380859,-7.93933868408203e-05,0.727127552032471,-8.72611999511719e-05,-3.48091125488281e-05,0.65739631652832,-0.000116825103759766,-1.62124633789063e-05,0.601527690887451,-7.39097595214844e-05,-1.07288360595703e-05,0.54763126373291,-7.10487365722656e-05,2.14576721191406e-06,0.446645259857178,-5.98430633544922e-05,1.1444091796875e-05,0.327857494354248,-4.57763671875e-05,1.57356262207031e-05,0.483014106750488,-5.96046447753906e-05,3.09944152832031e-06,0.436212539672852,-3.88622283935547e-05,1.21593475341797e-05,0.341536045074463,-3.21865081787109e-05,1.93119049072266e-05,0.225949287414551,-2.288818359375e-05,1.74045562744141e-05,0.10942554473877,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.79492950439453e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.87316060066223e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06,0,0,-2.32458114624023e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58583235740662e-06,0,0,2.29477882385254e-06,0,0,-6.83963298797607e-06,0,0,-4.57838177680969e-06,0,0,9.17911529541016e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06, +0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06, +0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,0.0107383728027344,-9.17911529541016e-06,0,0.008056640625,6.79492950439453e-06,0,0.0271339416503906,-1.1444091796875e-05,2.38418579101563e-06,0.0213508605957031,-9.29832458496094e-06,0,0.0520849227905273,-2.62260437011719e-06,3.27825546264648e-06,0.0435924530029297,2.14576721191406e-06,2.02655792236328e-06,0.0859060287475586,6.91413879394531e-06,4.72180545330048e-06,0.0751914978027344,8.82148742675781e-06,1.9073486328125e-06,0.12612247467041,2.14576721191406e-06,6.19888305664063e-06,0.1116943359375,-5.24520874023438e-06,1.65402889251709e-06,0.169522762298584,2.14576721191406e-06,8.40425491333008e-06,0.141809463500977,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06,0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,0.0114612579345703,-4.64916229248047e-06,0,0.0286951065063477,0,2.14576721191406e-06,0.0551424026489258,4.52995300292969e-06,2.74181365966797e-06,0.0906009674072266,-6.91413879394531e-06,3.15159559249878e-06,0.131157875061035,4.52995300292969e-06,4.64916229248047e-06,0.169876098632813,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,0.00185632705688477,-4.64916229248047e-06,0,0.00609445571899414,6.91413879394531e-06,0,0.0152349472045898,-9.29832458496094e-06,0,0.031468391418457,0,0,0.0578923225402832,2.14576721191406e-06,0,0.111007213592529,9.05990600585938e-06,1.78813934326172e-06,0.235284805297852,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06, +0,0.00349330902099609,1.1444091796875e-05,0,0.010685920715332,2.14576721191406e-06,0,0.0252857208251953,-1.1444091796875e-05,0,0.0504999160766602,2.14576721191406e-06,1.78813934326172e-06,0.089078426361084,-4.52995300292969e-06,1.98930501937866e-06,0.145565986633301,1.1444091796875e-05,2.20537185668945e-06,0.214066028594971,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,0.0102910995483398,-4.64916229248047e-06,0,0.0262126922607422,2.14576721191406e-06,1.78813934326172e-06,0.0513277053833008,-9.29832458496094e-06,2.50339508056641e-06,0.0854644775390625,0,2.29477882385254e-06,0.124058723449707,-4.52995300292969e-06,2.47359275817871e-06,0.159650802612305,8.82148742675781e-06,3.39746475219727e-06,0.222687721252441,-6.91413879394531e-06,5.48362731933594e-06,0.228129386901855,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,0.00561904907226563,2.26497650146484e-06,0,0.0158615112304688,8.82148742675781e-06,0,0.0346755981445313,-9.29832458496094e-06,1.66893005371094e-06,0.0640392303466797,6.91413879394531e-06,1.84774398803711e-06,0.1029052734375,-1.1444091796875e-05,1.83470547199249e-06,0.146875858306885,9.05990600585938e-06,1.78813934326172e-06,0.187060832977295,4.52995300292969e-06,4.35113906860352e-06,0.197512149810791,-1.1444091796875e-05,6.67572021484375e-06, +0.142795085906982,4.52995300292969e-06,1.00135803222656e-05,0.101827621459961,-9.29832458496094e-06,7.09295272827148e-06,0.0678958892822266,-9.29832458496094e-06,4.88758087158203e-06,0.0407266616821289,4.52995300292969e-06,3.33786010742188e-06,0.0207939147949219,6.79492950439453e-06,1.96695327758789e-06,0.00741672515869141,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,0.0104646682739258,2.26497650146484e-06,0,0.0221343040466309,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06,0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,0.0374464988708496,0,3.42726707458496e-06,0.0566768646240234,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,0.0322175025939941,2.26497650146484e-06,3.814697265625e-06,0.0803065299987793,-2.62260437011719e-06,6.9737434387207e-06,0.0638866424560547,2.26497650146484e-06,6.79492950439453e-06,0.0654029846191406,2.26497650146484e-06,6.79492950439453e-06,0.0839853286743164,0,7.98702239990234e-06,0.0773978233337402,-2.26497650146484e-06,7.74860382080078e-06,0.0447006225585938,-7.03334808349609e-06,5.36441802978516e-06,0.0435891151428223,9.17911529541016e-06,5.12599945068359e-06,0.102383136749268,2.14576721191406e-06,9.29832458496094e-06,0.0784139633178711,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,0.148007869720459,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,0.332450866699219,-2.74181365966797e-05,1.50203704833984e-05,0.238889694213867,-2.288818359375e-05,1.69277191162109e-05,0.117278099060059,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05, +0,0,4.61935997009277e-06,0,0,4.64916229248047e-06,0,0.229700088500977,2.38418579101563e-06,0,0.35819149017334,-1.66893005371094e-05,4.52995300292969e-06,0.382926464080811,-9.29832458496094e-06,1.06096267700195e-05,0.299910068511963,-2.55107879638672e-05,1.01327896118164e-05,0.310403823852539,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,0.00850439071655273,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,0.0057826042175293,-9.29832458496094e-06,0,0.00125932693481445,-4.52995300292969e-06,0,0.00250673294067383,-4.52995300292969e-06,0,0.000705718994140625,-2.62260437011719e-06,0,0.000752449035644531,2.26497650146484e-06,0,0.000228404998779297,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0.000125408172607422,8.82148742675781e-06,0,5.57899475097656e-05,4.41074371337891e-06,0,5.7220458984375e-06,6.91413879394531e-06,0,5.7220458984375e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,2.43186950683594e-05,8.82148742675781e-06,0,1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06, +0,0,6.88433647155762e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0.197105407714844,8.58306884765625e-06,-4.21702861785889e-05,0.372541904449463,-1.81198120117188e-05,-8.70823860168457e-05,0.523701429367065,-2.95639038085938e-05,-0.000131726264953613,0.653756618499756,-6.00814819335938e-05,-0.000175952911376953,0.767434120178223,-5.24520874023438e-05,-0.000217676162719727,0.71554160118103,-7.15255737304688e-05,-0.000213384628295898,0.788416981697083,-0.000102996826171875,-0.000243186950683594,0.852152585983276,-0.000119209289550781,-0.000268220901489258,0.906155586242676,-0.000125885009765625,-0.000288486480712891,0.950120627880096,-0.000151634216308594,-0.000303745269775391,0.985551536083221,-0.000148773193359375,-0.000314712524414063,1.01017466187477,-0.00016021728515625,-0.000323295593261719,1.02304962277412,-0.000151634216308594,-0.00032806396484375,0.208634853363037,8.58306884765625e-06,-3.090500831604e-05,0.405336856842041,-2.19345092773438e-05,-6.79492950439453e-05,0.578392505645752,-4.10079956054688e-05,-0.000106453895568848,0.725183963775635,-6.77108764648438e-05,-0.000148773193359375,0.847414016723633,-0.000107765197753906,-0.000191926956176758,0.949378728866577,-0.000136375427246094,-0.000230789184570313,1.03449583053589,-0.000155448913574219,-0.00026702880859375,1.1051914691925,-0.000201225280761719,-0.000295162200927734,1.16301393508911,-0.000222206115722656,-0.000317096710205078,1.20995509624481,-0.000256538391113281,-0.000332355499267578,1.24727010726929,-0.000273704528808594,-0.000343799591064453,1.27515876293182,-0.000277519226074219,-0.000354766845703125,1.29311320185661,-0.000313758850097656,-0.000360488891601563,1.30208450555801,-0.00029754638671875,-0.000363349914550781,0.0611715316772461,0,-2.02804803848267e-05,0.149009227752686,4.76837158203125e-06, +-5.26309013366699e-05,0.259407520294189,6.67572021484375e-06,-9.59634780883789e-05,0.360788106918335,-1.1444091796875e-05,-0.000137686729431152,0.462241172790527,-1.04904174804688e-05,-0.00018155574798584,0.572112321853638,-4.10079956054688e-05,-0.000229954719543457,0.681854248046875,-4.10079956054688e-05,-0.000277280807495117,0.750614523887634,-6.38961791992188e-05,-0.000306844711303711,0.824832916259766,-7.53402709960938e-05,-0.000339031219482422,0.894739508628845,-9.1552734375e-05,-0.000368833541870117,0.974225401878357,-9.82284545898438e-05,-0.000402450561523438,1.0124476402998,-0.000105857849121094,-0.00041961669921875,0.302764892578125,4.76837158203125e-06,-0.000131845474243164,0.378828525543213,-5.7220458984375e-06,-0.000170886516571045,0.444851160049438,-1.1444091796875e-05,-0.000207424163818359,0.550727725028992,-1.33514404296875e-05,-0.000261425971984863,0.683751583099365,-3.62396240234375e-05,-0.000330090522766113,0.677222967147827,-4.38690185546875e-05,-0.000331878662109375,0.72844010591507,-4.00543212890625e-05,-0.000360369682312012,0.785560607910156,-5.53131103515625e-05,-0.000390529632568359,0.843545824289322,-3.62396240234375e-05,-0.000419855117797852,0.889081947505474,-4.38690185546875e-05,-0.000443339347839355,0.0323583334684372,0,-1.96695327758789e-05,0.174931526184082,8.58306884765625e-06,-4.89950180053711e-05,0.325066566467285,-6.67572021484375e-06,-9.72747802734375e-05,0.4548499584198,-2.76565551757813e-05,-0.000144124031066895,0.571193933486938,-2.95639038085938e-05,-0.000189423561096191,0.678101778030396,-3.91006469726563e-05,-0.000232934951782227,0.777098178863525,-7.34329223632813e-05,-0.000274896621704102,0.707023859024048,-9.05990600585938e-05,-0.000255346298217773,0.77485990524292,-8.67843627929688e-05,-0.000284671783447266,0.836473643779755,-0.000113487243652344,-0.000311136245727539,0.887889266014099,-0.00011444091796875,-0.000332117080688477,0.923935800790787,-0.000140190124511719,-0.000345945358276367,0.943427979946136,-0.000128746032714844,-0.000352382659912109,0,-1.1444091796875e-05, +0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0.101716846227646,-4.14848327636719e-05,0,0.376917600631714,-0.000139713287353516,-1.23977661132813e-05,0.414265871047974,-0.0001373291015625,-1.81198120117188e-05,0.266844987869263,-8.72611999511719e-05,-5.7220458984375e-06,0.325454235076904,-0.000121593475341797,-8.58306884765625e-06,0.209126830101013,-7.39097595214844e-05,-2.86102294921875e-06,0.16086357831955,-7.58171081542969e-05,0,0.124552011489868,-4.33921813964844e-05,0,0.441805601119995,-0.000144481658935547,-2.38418579101563e-05,0.660455465316772,-0.000208377838134766,-4.67300415039063e-05,0.666347742080688,-0.000231266021728516,-5.62667846679688e-05,0.582760334014893,-0.000196933746337891,-5.7220458984375e-05,0.695357799530029,-0.000249385833740234,-7.91549682617188e-05,0.778550148010254,-0.000274658203125,-9.25064086914063e-05,0.864722609519958,-0.000327587127685547,-0.000102996826171875,0.794760942459106,-0.000188827514648438,-5.81741333007813e-05,0.524876654148102,-0.000194549560546875,-6.00814819335938e-05,0.556556105613708,-0.000218868255615234,-6.103515625e-05,0.576028764247894,-0.000221729278564453,-6.38961791992188e-05,0.111989557743073,-5.7220458984375e-05,-6.67572021484375e-06,0.148498117923737,-7.39097595214844e-05,-8.58306884765625e-06,0.186934113502502,-8.72611999511719e-05,-1.1444091796875e-05,0.277076840400696,-0.000102996826171875,-1.81198120117188e-05,0.380840659141541,-0.000154018402099609,-2.76565551757813e-05,0.438331842422485,-0.000151157379150391,-2.95639038085938e-05,0.54163646697998,-0.000190258026123047,-3.814697265625e-05,0.576151132583618,-0.000217437744140625,-4.00543212890625e-05,0.659367799758911,-0.000234127044677734,-4.57763671875e-05,0.68618631362915,-0.000242710113525391,-4.86373901367188e-05,0.75101113319397,-0.000249385833740234,-5.43594360351563e-05,0.825459957122803,-0.000286102294921875,-6.00814819335938e-05,1.03803849220276,-0.000371456146240234,-7.15255737304688e-05, +1.1039400100708,-0.000400543212890625,-7.53402709960938e-05,0.906806945800781,0.044710636138916,-8.10623168945313e-05,0.730706214904785,0.0347747802734375,-4.29153442382813e-05,0.669278502464294,0.0287008285522461,-4.1961669921875e-05,0.660148561000824,0.0126800537109375,-4.29153442382813e-05,0.66369754076004,-0.000267505645751953,-4.29153442382813e-05,0.114603728055954,-4.57763671875e-05,-6.67572021484375e-06,0.14451003074646,-5.7220458984375e-05,-8.58306884765625e-06,0.191790342330933,-8.53538513183594e-05,-1.1444091796875e-05,0.281776428222656,-0.000108242034912109,-1.62124633789063e-05,0.405032277107239,-0.000142574310302734,-2.38418579101563e-05,0.487657070159912,-0.000167369842529297,-2.86102294921875e-05,0.559357881546021,-0.00018310546875,-3.52859497070313e-05,0.632908821105957,-0.000203609466552734,-4.00543212890625e-05,0.694051265716553,-0.000234127044677734,-4.57763671875e-05,0.678593158721924,-0.000234127044677734,-4.67300415039063e-05,0.721897602081299,-0.000249385833740234,-5.43594360351563e-05,0.788846254348755,-0.000279903411865234,-6.29425048828125e-05,0.993720054626465,-0.000352382659912109,-8.0108642578125e-05,1.09543895721436,-0.000402927398681641,-8.58306884765625e-05,0.912518858909607,-0.000423431396484375,-9.05990600585938e-05,0.74718451499939,-0.000249862670898438,-4.86373901367188e-05,0.675689458847046,-0.00026702880859375,-4.86373901367188e-05,0.681665182113647,-0.000272750854492188,-4.76837158203125e-05,0.67740336060524,-0.000268936157226563,-4.67300415039063e-05,0.0786625444889069,-3.69548797607422e-05,4.76837158203125e-06,0.270517587661743,-7.39097595214844e-05,0,0.301451921463013,-8.72611999511719e-05,-5.24520874023438e-06,0.193536996841431,-7.12871551513672e-05,8.58306884765625e-06,0.233748435974121,-6.65187835693359e-05,4.76837158203125e-06,0.15436327457428,-5.26905059814453e-05,6.67572021484375e-06,0.120615720748901,-5.26905059814453e-05,7.62939453125e-06,0.0948845148086548,-4.12464141845703e-05,5.7220458984375e-06,0.329148769378662,-0.000100612640380859,-1.1444091796875e-05,0.360581636428833, +-9.87052917480469e-05,-2.288818359375e-05,0.403295278549194,-0.000116825103759766,-3.38554382324219e-05,0.490670204162598,-0.000123500823974609,-5.53131103515625e-05,0.547965288162231,-0.000155448913574219,-7.48634338378906e-05,0.648637294769287,-0.000201225280761719,-9.82284545898438e-05,0.757248401641846,-0.00025177001953125,-0.000117301940917969,0.431891679763794,-0.000140190124511719,-6.58035278320313e-05,0.479304909706116,-0.000157356262207031,-6.96182250976563e-05,0.516710877418518,-0.000180244445800781,-7.05718994140625e-05,0.540690332651138,-0.000185966491699219,-7.2479248046875e-05,0.0251399576663971,2.14576721191406e-06,0,0.0826292037963867,-9.05990600585938e-06,-2.86102294921875e-06,0.0945813655853271,-1.66893005371094e-05,-6.91413879394531e-06,0.0589487552642822,-7.15255737304688e-06,0,0.0708925724029541,4.29153442382813e-06,0,0.0475705862045288,2.14576721191406e-06,0,0.0376638770103455,2.14576721191406e-06,2.14576721191406e-06,0.0300108790397644,-1.1444091796875e-05,1.9073486328125e-06,0.110184907913208,-9.05990600585938e-06,-1.07288360595703e-05,0.141480207443237,-2.19345092773438e-05,-1.88350677490234e-05,0.176369428634644,-1.04904174804688e-05,-2.83718109130859e-05,0.223005294799805,-2.288818359375e-05,-4.41074371337891e-05,0.290587663650513,-4.57763671875e-05,-6.43730163574219e-05,0.386821985244751,-6.00814819335938e-05,-9.01222229003906e-05,0.498619675636292,-8.67843627929688e-05,-0.000113964080810547,0.617428064346313,-0.000109672546386719,-0.000134944915771484,0.733240902423859,-0.000148773193359375,-0.000149250030517578,0.831940054893494,-0.000166893005371094,-0.00016021728515625,0.898563206195831,-0.000166893005371094,-0.000170707702636719,0.164752259850502,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341,0,-5.71608543395996e-05,0.164752006530762,0,-5.71608543395996e-05,0.16475236415863,0,-5.7220458984375e-05,0.164752244949341,0,-5.69820404052734e-05,0.16475236415863,-1.9073486328125e-06,-5.71012496948242e-05,0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,0.164752244949341, +-1.9073486328125e-06,-5.71012496948242e-05,0.164752244949341,0,-5.71608543395996e-05,0.164752244949341,0,-5.71012496948242e-05,0.16475248336792,0,-5.71608543395996e-05,0.164752244949341,0,-5.71012496948242e-05,0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,0.171115636825562,-1.9073486328125e-06,-5.93662261962891e-05,0.175875425338745,0,-6.09159469604492e-05,0.180305600166321,0,-6.25848770141602e-05,0.184572279453278,0,-6.41345977783203e-05,0.188270688056946,0,-6.53266906738281e-05,0.190808907151222,0,-6.61611557006836e-05,0,9.05990600585938e-06,0,0.0526125431060791,0,-1.05202198028564e-05,0.0804030895233154,-1.04904174804688e-05,-1.79409980773926e-05,0.110512256622314,0,-2.78949737548828e-05,0.160651206970215,-6.67572021484375e-06,-4.32729721069336e-05,0.269499063491821,-1.81198120117188e-05,-7.48634338378906e-05,0.388572096824646,-2.288818359375e-05,-0.000105142593383789,0.512922048568726,-5.62667846679688e-05,-0.000133752822875977,0.63575679063797,-4.48226928710938e-05,-0.00015711784362793,0.742452621459961,-7.34329223632813e-05,-0.000176191329956055,0.815406739711761,-6.866455078125e-05,-0.000190973281860352,0.051715224981308,-1.59740447998047e-05,4.29153442382813e-06,0.061913013458252,-1.40666961669922e-05,5.24520874023438e-06,0.078046441078186,-1.83582305908203e-05,6.19888305664063e-06,0.0989785194396973,-1.1444091796875e-05,8.10623168945313e-06,0.123127460479736,-3.69548797607422e-05,8.10623168945313e-06,0.148130178451538,-2.98023223876953e-05,4.29153442382813e-06,0.171972990036011,-3.4332275390625e-05,0,0.194007396697998,-2.81333923339844e-05,-4.29153442382813e-06,0.216992855072021,-5.48362731933594e-05,-1.00135803222656e-05,0.247035503387451,-5.48362731933594e-05,-2.24113464355469e-05,0.287095546722412,-5.48362731933594e-05,-3.4332275390625e-05,0.34368371963501,-8.0108642578125e-05,-5.29289245605469e-05,0.421437740325928,-8.48770141601563e-05,-7.67707824707031e-05,0.519618988037109,-0.000136375427246094,-0.000102996826171875,0.629860401153564,-0.000159263610839844,-0.000125408172607422,0.371495723724365, +-9.72747802734375e-05,-7.15255737304688e-05,0.42442524433136,-0.000107765197753906,-7.58171081542969e-05,0.468058049678802,-0.000123023986816406,-7.86781311035156e-05,0.496828973293304,-0.000131607055664063,-8.24928283691406e-05,0,-1.1444091796875e-05,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,4.64916229248047e-06,0,0,9.23871994018555e-06,0,0,-6.85453414916992e-06,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.58955764770508e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-2.20537185668945e-06,0,0,-4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,9.14931297302246e-06,0,0,-6.82473182678223e-06,0,0,-4.55975532531738e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06, +0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,-4.58955764770508e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,-9.13441181182861e-06,0,0,-6.82473182678223e-06,0,0,2.29477882385254e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-2.20537185668945e-06,0 + } + Normals: *15342 { + a: 1.19805335998535e-05,1.88946723937988e-05,7.80224800109863e-05,-0.614461195952437,0.749745225533843,0.814773395657539,-1.16590851545334,-0.240294694900513,-0.206867203116417,-0.913618355989456,0.0098986029624939,-0.584552064538002,-0.619066671002656,0.343794822692871,-1.09113328158855,-0.315515846014023,-0.17753529548645,-0.602287426590919,-0.023861825466156,-0.15188592672348,-0.212667301297188,-0.69493628081902,0.402802750468254,0.628791183233261,-1.5471442937851,0.132654160261154,-0.185470476746559,-1.63190490007401,0.721633225679398,-0.849049150943756,-0.567862928379327,0.406946957111359,-1.76065814495087,0.241949856281281,0.613293945789337,-1.06640541553497,0.315853178501129,0.74684401601553,-0.0226553976535797,-0.503562893545656,0.187537610530853,0.553376749157906,-1.58790630102158,0.707293130457401,0.0987792313098907,-0.638961130287498,1.34007716178894,-0.946060866117477,0.19638979434967,0.613596469163895,-0.173842936754227,-0.563044355901705,-0.687545478343964,-0.784781724214554,-1.07353590428829,0.400756120681763,-0.467526644468307,-0.262565977292468,1.13182666897774,-1.03471972048283,0.661275804042816,0.267492161132395,-0.971807699650526,-0.577145219711735,-0.250795185565948,-0.855060428380966,-1.61035192012787,0.635240375995636,-0.683768751099706,-0.262565495097746,1.13492992520332,-0.964947324246168,0.697275191545486,0.677596673369408,-1.17042575776577,-0.149451435305195,-0.976381419226527,-1.28964272141457,-1.12976706027985,0.546767042018473,-1.14108696579933,-0.262560766047955,1.1332531273365,-1.01409049332142,0.512480154633522,0.790262222290039,-1.19417808949947,-0.1192213770547,-0.824054062366486,-1.02769935131073,-0.872991770505905,0.766147598624229,-1.21789884567261,-0.262565093532643,1.1178991496563,-1.13944013416767,0.659998387098312,0.594193920493126,-1.40319219231606,-0.119221098150149,-0.818420767784119,-1.09465092420578,-0.786892170337596,0.678768739104271,-1.39529198408127,1.32694438077507e-05,0.794311374425888,-1.7628465294838,0.427553787827492,-0.00210999138653278,-1.80498433113098, +-0.12688849921642,-0.560878708958626,-1.69106703996658,-0.576962461117764,0.184556446969509,-1.80296277999878,0.42637254048066,-0.785583509132266,-1.41663205623627,0.50694967556672,-0.713502241298556,-1.45706140995026,-0.42726277316,-0.638136595487595,-1.40347957611084,-0.402323126792908,-0.570511803030968,-1.43952152132988,0.132578037679195,-0.69389071688056,-1.72950613498688,-0.443712701443691,-0.487277179956436,-1.60197216272354,0.547586327167592,-0.404261544346809,-1.52141952514648,0.715978659689426,-0.551255136728287,-0.786042138934135,0.876180529594421,-0.355893686413765,-0.546769827604294,0.630455315113068,-0.695534810423851,-0.776312917470932,0.796452917158604,-0.415322214365005,-0.626322239637375,0.791548579931259,-0.10607847571373,-0.186290383338928,0.83967137336731,-0.535538703203201,-0.489223688840866,0.949243485927582,-0.366952742449939,-0.287920355796814,0.268663994967937,-0.19723216816783,-0.0111247301101685,0.126882781628628,-0.0203189998865128,0.00500339269638062,0.411970466375351,0.157771630212665,0.033059298992157,0.389412045478821,-0.00873894989490509,0.0260104537010193,0.126984424889088,-0.0094742476940155,0.0197185873985291,0.496665969491005,0.298256209120154,0.276770830154419,0.516594290733337,0.236893430352211,0.317298650741577,0.348438411951065,0.464752033352852,0.48555862903595,-4.05311584472656e-06,3.45809385180473e-05,-8.94069671630859e-07,5.96046447753906e-08,3.86536121368408e-05,5.54323196411133e-06,-0.173207879066467,0.00332286953926086,-0.227451354265213,0.0804459452629089,-0.135909020900726,-0.159753009676933,-9.29832458496094e-06,2.17556953430176e-05,6.63250684738159e-05,-0.11800342798233,0.039883553981781,-0.121078640222549,-0.0635483264923096,-0.166561871767044,-1.11222895979881,0.341134697198868,-0.396801382303238,-0.854643493890762,0.204598516225815,-0.0261932015419006,-0.917223453521729,0.634756972081959,-0.133726805448532,-1.52172952890396,0.215290099382401,-0.390380322933197,-1.32069915533066,1.16869965195656,-0.144410490989685,-0.762308120727539,1.3866383433342,-0.273424595594406, +-0.938454657793045,1.6739130616188,0.725759521126747,-0.681906715035439,1.26531809568405,0.342954903841019,-0.814839690923691,1.4545174241066,0.608566671609879,0.00072866678237915,1.46635884046555,0.536587588489056,0.284489631652832,1.45164978504181,0.562011808156967,0.322154551744461,1.01493865251541,0.536588102579117,0.631569415330887,1.04565289616585,0.563178837299347,1.16570889949799,0.491110705770552,0.140282273292542,1.1913677752018,0.430817207052514,0.330282986164093,1.55096179246902,0.51448442786932,0.326831102371216,1.55878794193268,0.45997925568372,0.140275239944458,1.1913620531559,0.458443321287632,0.389693558216095,1.40134990215302,0.372921906411648,0.0549466609954834,1.36212199926376,0.246016144752502,0.361852437257767,1.54352629184723,-0.340577214956284,0.571555659174919,1.23830419778824,-0.460649967193604,0.426350325345993,0.778145372867584,-0.8202770575881,0.466259106993675,1.24817931652069,-0.9053242104128,0.871447652578354,0.665400505065918,-0.36499360203743,0.325618654489517,0.125734627246857,0.102074056863785,1.61026322841644,0.59308997541666,0.0265230042859912,1.40263855457306,0.398832380771637,-0.707817896734923,0.160422712564468,0.25533789396286,-0.817902475595474,1.73616242408752,0.277191340923309,-0.0872377157211304,1.74318224191666,0.391125233843923,0.22501003742218,0.498883694410324,-0.242220491170883,-0.136084526777267,1.54238575696945,0.373031690716743,-0.0377454459667206,1.6654344201088,0.550655797123909,-0.000225365161895752,1.59156328439713,0.503279779106379,-0.0967020988464355,-0.0127487033605576,0.976372957229614,0.300723791122437,0.479072391986847,0.962761104106903,0.344737887382507,0.738461822271347,1.03020831942558,0.0890980362892151,-0.0271859765052795,0.827658534049988,-0.0859224200248718,-0.101099103689194,1.26644784212112,-0.676518514752388,-0.35918790102005,0.551513653015718,-0.569949902855438,-0.296721816062927,0.821913063526154,-0.959419727325439,-1.16327004134655,0.76071771979332,-0.692789167165756,-1.21909683942795,0.526228637900203,-0.576848521828651,-0.5067078769207, +0.988256752490997,-0.684127759188414,-0.573804408311844,0.688364051282406,-0.86778212338686,-1.13127893209457,0.947958618402481,-1.7847473025322,-0.528813302516937,0.653028950095177,-1.59751522541046,0.545374557375908,1.06388258934021,-1.46186846494675,0.456285908818245,1.09793600440025,-1.14296972751617,1.36629772186279,0.874970555305481,-1.30513167381287,1.13226273655891,0.894683957099915,-0.94490721821785,1.31605017185211,0.47275074198842,-0.921604148367123,1.37235128879547,-0.125868823379278,-1.08429588377476,1.21031524240971,-0.0548489689826965,-0.701025202870369,1.19547052681446,-0.524187417700887,-0.722503036260605,1.26296648383141,-0.281986266374588,-0.637654572725296,1.17632813751698,-0.117699332535267,-0.542823672294617,0.840239137411118,-0.250452026724815,0.163792014122009,0.3245669901371,-0.36015397310257,0.0860353112220764,-0.115885123610497,-0.71885284781456,0.122333228588104,-0.0541491955518723,-0.396313205361366,-0.163210570812225,-0.606974974274635,-1.00093939900398,0.144031882286072,-0.387053787708282,-0.844490386545658,-0.745947822928429,-0.670133218169212,-1.14502868056297,-0.684338903146539,-0.712726354598999,-0.928996473550797,-0.996005356311798,-0.677097946405411,-0.673057392239571,-0.70960146188736,-0.704248175024986,-0.903550177812576,-0.47817362844944,-0.721485957503319,-0.988888025283813,-0.669079583138227,-0.666801556944847,-1.16919961571693,-0.592600151896477,-0.63711154460907,-0.999889522790909,-1.0406131669879,0.281390845775604,-1.00130029022694,-1.12001863121986,0.534276947379112,-0.665396749973297,-1.1850560605526,-0.0326533764600754,-0.836704678833485,-1.25743383169174,1.07246291637421,-0.607308931648731,-1.21464186906815,1.00047816336155,-0.494249224662781,-0.289910539984703,1.2982380092144,-0.961989985778928,-0.0707803728301997,1.31732052564621,-1.06310502439737,-0.22501590102911,1.21932585537434,-1.08550032228231,-0.120482064783573,1.22054098546505,-0.975003648549318,-0.0527753084897995,1.28835293650627,-1.05251803249121,0.204595293849707,1.60869938135147,-0.806260399520397,0.225163899362087, +1.2758761048317,-1.02902898937464,0.723317891359329,0.677013605833054,-1.12499786913395,0.758160121738911,0.279133141040802,-1.14873313903809,0.793804816901684,-0.0163709819316864,-1.31238168478012,0.508437987416983,-0.123723745346069,-1.16269084811211,0.53354468551877,-0.0476038455963135,-1.23404309153557,-0.0839923524401636,-0.612509191036224,-1.24818959832191,-0.0929894151935855,-0.663561329245567,-1.40609329938889,-0.172898396849632,-0.560912370681763,-1.39660909771919,0.0839898160554915,-0.612509965896606,-1.24818795919418,0.102113215001665,-0.657214120030403,-1.42698848247528,-0.0486114605046888,-0.711022153496742,-1.31336477398872,-0.0463057362578363,-0.536067485809326,-1.42962089180946,-0.804810009896755,0.0014420747756958,-1.30233728885651,-0.806609712541103,0.588519841432571,-1.16164687275887,-0.864582171394631,-0.00517293810844421,-1.31111738085747,-0.344773713672133,1.59009736776352,-0.784125957638025,-0.451375193893909,1.51647305488586,-0.826742004603148,-0.0448378399014473,1.31566751003265,-1.008719407022,0.0707739549373976,1.3235422372818,-0.898677408695221,-0.0897307172417641,1.6278777718544,-0.746525164693594,0.233062051236629,1.593357026577,-0.855151362717152,0.290108762681484,1.29824188351631,-0.907707141712308,0.427924871444702,1.18220722675323,-1.03834740072489,0.293757639825344,1.19700035452843,-0.966156662907451,0.841727413237095,0.931847810745239,-1.13506004214287,1.08922412991524,-0.0217037498950958,-1.20990145206451,1.08393153548241,0.000446110963821411,-1.24968007206917,0.661730274558067,-0.214332640171051,-0.981947496533394,1.08583974838257,-0.46688312292099,-1.02210065722466,0.522029913961887,-0.755191341042519,-0.794758483767509,0.228504940447749,-0.787134170532227,-1.06714576482773,0.0998842939734459,-0.686414569616318,-1.04196413606405,0.71472180634737,-0.755191937088966,-0.79475911706686,0.731020458042622,-0.71495133638382,-0.819183208048344,0.774802230298519,-0.790003582835197,-0.585125990211964,0.759312763810158,-0.611969023942947,-0.571365147829056,-0.258308529853821,-0.0502482056617737, +-0.987126171588898,-0.152606189250946,0.846352204680443,-0.940489307045937,-0.127729594707489,-0.209277614951134,-0.944470882415771,0.544468641281128,1.1538891941309,-0.625224076211452,0.32863861322403,1.19601885974407,-0.766833499073982,0.38998407125473,1.29731202125549,-0.992359966039658,0.837134701031118,1.18807943165302,-0.690290436148643,0.647952675819397,1.06693275272846,-0.826881438493729,1.04698067903519,0.886314079165459,-0.66654135286808,1.07444582879543,1.20328670740128,-0.40324792265892,1.0629807561636,1.30360373854637,-0.721690833568573,1.05710589885712,1.15385122597218,-0.733600586652756,1.73909640312195,0.772481918334961,-0.498092904686928,1.62197369337082,-0.0592180192470551,-0.470108076930046,1.72107660770416,0.0587446987628937,-0.386969745159149,1.39415806531906,-0.630725383758545,-0.453460454940796,1.33088517189026,-0.504790514707565,0.295835077762604,0.606168493628502,-0.440513789653778,0.327914126217365,0.951014630314583,-0.767926454544067,-0.256121799349785,0.791722841560841,-1.06959487497807,-0.498976781964302,1.01488883048296,-1.34482190012932,0.0719733908772469,0.909936256706715,-0.667636781930923,0.434450548142195,0.750711694359779,-0.660647183656693,0.335591092705727,0.842631004750729,-1.34934976696968,0.0894445553421974,0.0518690943717957,-0.785460263490677,0.211865395307541,-0.137129247188568,0.965133219957352,0.337603181600571,-0.321407735347748,0.192963182926178,0.32014761865139,0.360508799552917,1.42194294929504,0.109611004590988,0.489457041025162,1.23811677098274,0.233808904886246,0.472425475716591,1.02153590321541,-0.151256442070007,0.407954760842586,-0.0117082595825195,-0.342038713395596,0.699224084615707,0.637722089886665,-0.0622754395008087,0.677316173911095,-0.267066419124603,-0.833370894193649,0.512101694941521,-0.0845235586166382,-0.460784433409572,0.703427016735077,-0.382542669773102,-0.695295266807079,0.772813111543655,-0.045377790927887,-0.554933220148087,1.13464736938477,-0.601798623800278,-0.785200074315071,0.925994396209717,-1.40034985542297,-0.595727734267712,0.967309832572937, +-1.55423080921173,-0.453397272154689,0.296293341554701,-1.57731014490128,-0.44451242685318,0.337003856897354,-1.70815110206604,0.00911179184913635,0.69013899564743,-0.418024480342865,-0.0815294981002808,0.407966801362363,-1.80056393146515,-0.346113406121731,-0.0958046093583107,-1.77610170841217,0.00492480397224426,0.027110924012959,-0.775394350290298,0.2632155418396,0.0828115595504642,-0.98244372010231,0.541710257530212,-0.0918744951486588,-1.54516893625259,-0.291746377944946,-0.477058704942465,-1.78452861309052,-0.319686740636826,-1.21681600809097,-0.216683149337769,-0.0391174554824829,-0.722450852394104,-0.597853153944016,-0.188632428646088,-0.643091565929353,-1.5693251490593,-0.187399357557297,-0.75014653801918,-0.506005764007568,-0.77582579664886,-0.815785586833954,-0.13702517747879,-0.404701709747314,-0.433853837539914,-1.06840801239014,-0.855555832386017,-0.241924419999123,-1.10455398261547,-0.955979941412807,-0.361904934048653,-1.54678964614868,-0.883622020483017,-0.28200589120388,-1.02100266516209,-1.00726290047169,-0.982628457248211,-0.396796047687531,-0.579310417175293,-0.734690070152283,-1.50962823629379,-0.597724378108978,-0.896080255508423,-1.03759123384953,-0.950061038136482,-1.08367073535919,-1.53171628713608,0.419859811663628,-1.08210021257401,-1.16564199328423,0.578594654798508,-1.23884874582291,-1.11435216665268,0.336988866329193,-1.20173341035843,-1.34098291397095,-0.81265527009964,-1.36570978164673,-0.562139302492142,1.29199939966202,-1.12510097026825,-1.09993204474449,0.702553614974022,-1.31339883804321,-1.3861363530159,0.0609714090824127,-1.47894859313965,-0.882212400436401,0.828702136874199,-1.50122106075287,-0.777741104364395,-0.815136909484863,-1.47673213481903,-0.941686525940895,-0.649133458733559,-1.27865749597549,-0.666934549808502,-1.03918519616127,-1.30494368076324,-0.604939058423042,-1.10491979122162,-1.33306068181992,-1.03638924658298,-0.766406282782555,-1.3817378282547,-1.03450573980808,-0.742913901805878,-1.31385987997055,-0.689917325973511,-0.708672866225243,-1.2768412232399,-0.739897012710571, +-0.843826413154602,-1.10947740077972,-0.729139387607574,-1.09945380687714,-1.16613912582397,0.696229457855225,-1.25936922430992,-0.883802935481071,0.517744109034538,-1.28699213266373,-0.811212211847305,1.45139068365097,-0.921561568975449,-0.818036377429962,1.1545392870903,-1.2722709774971,-0.970841273665428,1.07048557698727,-0.716168381273746,-0.974647492170334,1.03943079710007,-0.876310914754868,-0.785057067871094,1.49995905160904,-0.66947814822197,-0.757135927677155,1.50638604164124,-0.631551496684551,-0.972421556711197,1.62340557575226,-0.237842865288258,-0.329245883971453,1.94907879829407,-0.144248902797699,-0.476024217903614,1.79611510038376,-0.287537589669228,-0.894153296947479,1.25132101774216,-0.576339706778526,-1.38654768466949,0.752844631671906,-1.1590564250946,-0.544864811003208,1.76900523900986,-0.373342726379633,-0.688544921576977,-0.0469383001327515,-1.29204726219177,-0.576969921588898,0.50716170668602,-0.988381206989288,0.69165825471282,0.0869064331054688,-1.22139638662338,0.188148774206638,0.589339837431908,0.162438988685608,0.187553368508816,0.736048504710197,0.532366514205933,0.391488492488861,0.856711447238922,0.951823856914416,0.988034427165985,1.28782993555069,-0.55048568546772,0.762719742953777,0.578320264816284,-0.915151238441467,0.562068771570921,1.73156636953354,0.268702335655689,0.72830867767334,1.6389656662941,-0.0935294330120087,0.702015936374664,1.80767631530762,0.0716423208359629,0.596256361993776,1.76123237609863,0.274059204384685,0.344773926102205,1.88572573661804,-0.345780590549111,0.451372113078833,1.51646679639816,-0.826751582324505,0.36664542555809,1.87954115867615,-0.476456977427006,0.289740719162507,1.90432417392731,-0.33827087469399,0.346520926630525,1.52660447359085,-1.09691405296326,0.319237407124071,1.56420028209686,-1.01444271206856,0.410991318785234,1.38176828622818,-1.12157660722733,0.307928845286369,1.68537753820419,-0.891781955957413,0.40486665815115,0.457082450389862,-1.67734175920486,0.0579869414499239,-0.0389366149902344,-0.474326983094215,0.0432001032855371,0.107020258903503, +-0.428724618628621,-0.066577073186636,-0.00335341691970825,-0.0816144510172307,-0.00255383551120758,-0.0614949464797974,-0.461074039340019,-0.0253404080867767,-0.00860351324081421,-0.698123574256897,-0.0715515129268169,0.00242060422897339,-0.138285317923874,0.0839811861515045,0.0918930768966675,-0.479019176214933,0.0923748388886452,0.0320449471473694,-0.91302827000618,0.150744948536158,-0.395505249500275,-0.731136076152325,0.0642054527997971,-0.338068127632141,-1.00379583239555,0.0434647276997566,0.328452885150909,0.431305319070816,0.0921502858400345,2.09212303161621e-05,4.43756580352783e-05,0.23088277131319,0.599731117486954,0.509171605110168,0.474539920687675,0.34639835357666,-0.675759684294462,1.12679672241211,-0.00705897808074951,-0.884495258331299,0.98780357837677,-0.147628486156464,-1.24374949932098,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058, +-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205, +-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954, +0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147, +0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484, +-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504, +-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959, +0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324, +-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084, +0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483, +-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209, +-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692, +-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943, +-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961, +-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232, +-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006, +-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167, +-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762, +0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532, +0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127, +0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114, +-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084, +-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146, +-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896, +0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445, +-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147, +-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068, +-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284, +-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004, +-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468, +-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305, +0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755, +-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633, +-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676, +-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546, +-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952, +-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239, +-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022, +0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618, +-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699, +-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399, +-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126, +0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522, +-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864, +-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498, +-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885, +-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959, +-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, +-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646, +-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465, +-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338, +0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533, +-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518, +-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037, +-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367, +-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105, +-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338, +-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593, +0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549, +0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146, +0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797, +-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809, +-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853, +-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836, +1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017, +0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293, +0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578, +-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408, +-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153, +-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908, +-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211, +-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163, +0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531, +-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041, +-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715, +0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714, +0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673, +-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024, +0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437, +-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443, +-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155, +-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036, +0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019, +-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159, +0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048, +-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721, +0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767, +-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871, +-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785, +0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454, +0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581, +0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148, +0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732, +0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323, +1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619, +-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641, +-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315, +-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213, +-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522, +-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043,0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664, +-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683, +-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989, +0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197, +-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522, +0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174, +0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189, +-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.936012446880341,0.940078016370535, +0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965, +0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257, +-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427, +0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759, +-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281, +-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435, +-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527, +-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817, +-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179, +-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062, +0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564, +0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438, +-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577, +-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337, +0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596, +-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578, +0.847917661070824,-1.04395531117916,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593, +-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596, +0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683, +0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305, +-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308, +-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388, +1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807563817632, "Geometry::Jaw_Right", "Shape" { + Version: 100 + Indexes: *5114 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, +3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, +3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, +4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, +4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, +5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, +5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, +5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6193,6195,6196,6198,6199,6200,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6238,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6289,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335, +6336,6338,6339,6340,6341,6343,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826, +6836,6837,6838,6839,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7146,7147,7156,7157,7159,7160,7161,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474, +7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7575,7577,7578,7580,7581,7582,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7620,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7671,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980, +7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8528,8529,8538,8539,8541,8542,8543,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669, +8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 + } + Vertices: *15342 { + a: -1.3649628162384,-0.000192165374755859,-0.000145912170410156,-1.3649625889957,-0.000127792358398438,-0.000138759613037109,-1.36496222019196,-0.000192165374755859,-0.000145912170410156,-1.3649628162384,-0.000224590301513672,-0.000141143798828125,-1.3649626262486,-0.000304698944091797,-0.000152587890625,-1.3649628162384,-0.000224590301513672,-0.000141143798828125,-1.36496257781982,-0.000175952911376953,-0.000134706497192383,-1.3649625889957,-0.000128269195556641,-0.000123023986816406,-1.36496269702911,-0.000175952911376953,-0.000134706497192383,-1.36496257781982,-0.000240325927734375,-0.000120162963867188,-1.3649625889957,-0.000304698944091797,-0.000130653381347656,-1.36496251821518,-0.000240325927734375,-0.000119209289550781,-1.3649628162384,-0.000192642211914063,-0.000104427337646484,-1.3649625889957,-0.00016021728515625,-6.22272491455078e-05,-1.36496257781982,-0.000192642211914063,-0.000104427337646484,-1.3649625889957,-0.000304222106933594,-0.000125885009765625,-1.36496257781982,-0.000223636627197266,-9.25064086914063e-05,-1.3649625889957,-0.000207901000976563,-5.00679016113281e-05,-1.36496245861053,-0.000223636627197266,-9.25064086914063e-05,-1.3649625480175,-0.0003204345703125,-0.000124454498291016,-1.36496257781982,-0.000288963317871094,-9.87052917480469e-05,-1.36496254988015,-0.000288009643554688,-6.29425048828125e-05,-1.36496269702911,-0.000288963317871094,-9.87052917480469e-05,-1.3649626430124,-0.000352859497070313,-0.0001220703125,-1.36496257781982,-0.000352382659912109,-0.000112056732177734,-1.36496264114976,-0.000352859497070313,-8.86917114257813e-05,-1.36496245861053,-0.000352382659912109,-0.000112056732177734,-1.36496259085834,-0.000416278839111328,-0.000121116638183594,-1.3649628162384,-0.000417232513427734,-0.000117301940917969,-1.36496259644628,-0.000417232513427734,-9.44137573242188e-05,-1.36496257781982,-0.000417232513427734,-0.000117301940917969,-1.36496276594698,-0.000448226928710938,-0.000116348266601563,-1.36496269702911,-0.000449180603027344,-0.000108718872070313,-1.36496260389686, +-0.000448226928710938,-9.5367431640625e-05,-1.36496269702911,-0.000449180603027344,-0.000108718872070313,-1.36496260017157,-0.00048065185546875,-0.000111579895019531,-1.36496245861053,-0.000464916229248047,-0.000104904174804688,-1.3649625852704,-0.00048065185546875,-0.000102996826171875,-1.36496269702911,-0.000464916229248047,-0.000104904174804688,-1.3649628162384,-0.000256061553955078,-0.000145912170410156,-1.36496239900589,-0.000256061553955078,-0.000131607055664063,-1.3649628162384,-0.000256061553955078,-0.000145912170410156,-1.36496257781982,-0.000256061553955078,-0.000131607055664063,-1.36496248282492,-0.000304222106933594,-0.000138759613037109,-1.36496257781982,-0.000288009643554688,-0.000150203704833984,-1.3649628162384,-0.000224590301513672,-0.000137805938720703,-1.36496257781982,-0.000192642211914063,-0.000142812728881836,-1.36496269702911,-0.00016021728515625,-0.000130891799926758,-1.36496245861053,-0.00016021728515625,-0.000143527984619141,-1.3649628162384,-0.00016021728515625,-0.000140905380249023,-1.3649628162384,-0.000144481658935547,-0.00012516975402832,-1.36496257781982,-0.000143527984619141,-0.00014042854309082,-1.3649628162384,-0.000144481658935547,-0.000138282775878906,-1.36496278643608,-0.000128269195556641,-0.000123023986816406,-1.3649625889957,-0.000127792358398438,-0.000136375427246094,-1.36496251821518,-0.000127792358398438,-0.000138998031616211,-1.36496260762215,-0.000128269195556641,-0.000136613845825195,-1.36496251821518,-0.000128269195556641,-0.000123023986816406,-1.36496257781982,-0.000127792358398438,-0.000138998031616211,-1.36496266722679,-0.000128269195556641,-0.000136613845825195,-1.36496257781982,-0.000128746032714844,-0.000123739242553711,-1.36496257781982,-0.000128269195556641,-0.000139474868774414,-1.36496269702911,-0.000128269195556641,-0.000136852264404297,-1.36496257781982,-0.00016021728515625,-0.000130891799926758,-1.36496245861053,-0.000192642211914063,-0.000142812728881836,-1.36496257781982,-0.00016021728515625,-0.000143527984619141,-1.36496257781982,-0.00016021728515625, +-0.000140905380249023,-1.36496269702911,-0.000192165374755859,-0.000136375427246094,-1.3649628162384,-0.000256061553955078,-0.000136375427246094,-1.36496257781982,-0.000288009643554688,-0.000134468078613281,-1.36496258154511,-0.000303745269775391,-0.000145435333251953,-1.3649628162384,-0.000288486480712891,-0.000141620635986328,-1.36496257781982,-0.000257015228271484,-0.000136375427246094,-1.36496257781982,-0.000224590301513672,-0.000129222869873047,-1.36496269702911,-0.000207901000976563,-0.000116825103759766,-1.3649628162384,-0.000208854675292969,-0.000127315521240234,-1.36496245861053,-0.000175952911376953,-0.000119924545288086,-1.36496245861053,-0.000175952911376953,-8.96453857421875e-05,-1.36496245861053,-0.00016021728515625,-0.000110387802124023,-1.36496269702911,-0.00016021728515625,-6.77108764648438e-05,-1.36496245861053,-0.000144481658935547,-9.72747802734375e-05,-1.36496257781982,-0.00016021728515625,-6.22272491455078e-05,-1.3649625889957,-0.000127792358398438,-9.27448272705078e-05,-1.36496257781982,-0.000128269195556641,-9.27448272705078e-05,-1.36496269702911,-0.00016021728515625,-6.22272491455078e-05,-1.36496266722679,-0.000128269195556641,-9.27448272705078e-05,-1.36496257781982,-0.00016021728515625,-6.34193420410156e-05,-1.36496257781982,-0.000144481658935547,-9.41753387451172e-05,-1.3649628162384,-0.000175952911376953,-8.96453857421875e-05,-1.36496257781982,-0.000175952911376953,-0.000119924545288086,-1.3649628162384,-0.00016021728515625,-0.000110387802124023,-1.36496269702911,-0.000192642211914063,-0.000110626220703125,-1.36496257781982,-0.000192165374755859,-0.000123023986816406,-1.36496257781982,-0.000288009643554688,-0.000123023986816406,-1.3649625889957,-0.000304698944091797,-0.000127792358398438,-1.3649628162384,-0.000272274017333984,-0.000126361846923828,-1.3649628162384,-0.000272274017333984,-0.000123977661132813,-1.36496239900589,-0.000288009643554688,-0.000123023986816406,-1.36496278643608,-0.000272274017333984,-0.000126361846923828,-1.36496269702911,-0.000272274017333984,-0.000123977661132813, +-1.36496245861053,-0.000240325927734375,-0.000113487243652344,-1.3649628162384,-0.000224590301513672,-0.000112533569335938,-1.3649628162384,-0.000192165374755859,-9.48905944824219e-05,-1.3649628162384,-0.000208377838134766,-7.29560852050781e-05,-1.36496269702911,-0.000192642211914063,-7.72476196289063e-05,-1.36496257781982,-0.000207901000976563,-4.43458557128906e-05,-1.36496245861053,-0.000175952911376953,-5.03063201904297e-05,-1.36496251821518,-0.000207901000976563,-4.57763671875e-05,-1.3649625889957,-0.000175952911376953,-5.00679016113281e-05,-1.3649625480175,-0.000175952911376953,-4.86373901367188e-05,-1.36496269702911,-0.000207901000976563,-4.57763671875e-05,-1.36496260762215,-0.000175952911376953,-4.86373901367188e-05,-1.36496269702911,-0.000207901000976563,-4.10079956054688e-05,-1.36496257781982,-0.000175952911376953,-4.60147857666016e-05,-1.36496245861053,-0.000208377838134766,-7.29560852050781e-05,-1.36496269702911,-0.000192165374755859,-9.48905944824219e-05,-1.36496269702911,-0.000192642211914063,-7.72476196289063e-05,-1.36496269702911,-0.000224590301513672,-0.000102996826171875,-1.36496269702911,-0.000208377838134766,-0.000104427337646484,-1.36496257781982,-0.000304222106933594,-0.000123977661132813,-1.3649625889957,-0.0003204345703125,-0.000124931335449219,-1.36496257781982,-0.000288963317871094,-0.000123977661132813,-1.36496251821518,-0.000304222106933594,-0.000123977661132813,-1.36496275663376,-0.000288963317871094,-0.000123977661132813,-1.36496245861053,-0.000288486480712891,-0.000118732452392578,-1.36496269702911,-0.000256538391113281,-0.000115871429443359,-1.3649628162384,-0.000240325927734375,-9.34600830078125e-05,-1.36496233940125,-0.000288009643554688,-8.44001770019531e-05,-1.36496233940125,-0.000256061553955078,-7.53402709960938e-05,-1.36496233940125,-0.000288963317871094,-6.00814819335938e-05,-1.36496257781982,-0.000256061553955078,-4.91142272949219e-05,-1.36496239900589,-0.000288963317871094,-6.00814819335938e-05,-1.3649625889957,-0.000256061553955078,-5.43594360351563e-05,-1.36496251821518,-0.000256538391113281, +-5.05447387695313e-05,-1.36496257781982,-0.000288963317871094,-6.00814819335938e-05,-1.36496257781982,-0.000256538391113281,-5.05447387695313e-05,-1.3649628162384,-0.000288009643554688,-5.340576171875e-05,-1.36496269702911,-0.000256061553955078,-4.33921813964844e-05,-1.36496269702911,-0.000288009643554688,-8.44001770019531e-05,-1.36496269702911,-0.000240325927734375,-9.34600830078125e-05,-1.36496269702911,-0.000256061553955078,-7.53402709960938e-05,-1.36496269702911,-0.000288963317871094,-0.000108242034912109,-1.36496245861053,-0.000256061553955078,-0.000104427337646484,-1.36496257781982,-0.000352859497070313,-0.000119209289550781,-1.3649625852704,-0.000336170196533203,-0.000123977661132813,-1.36496257781982,-0.000336170196533203,-0.000121593475341797,-1.36496245861053,-0.000352859497070313,-0.000119209289550781,-1.36496287584305,-0.000336170196533203,-0.000121593475341797,-1.36496269702911,-0.000352859497070313,-0.000115871429443359,-1.36496245861053,-0.0003204345703125,-0.000116348266601563,-1.3649628162384,-0.0003204345703125,-0.000106334686279297,-1.36496257781982,-0.000352859497070313,-0.000102043151855469,-1.36496233940125,-0.0003204345703125,-9.34600830078125e-05,-1.36496245861053,-0.000352859497070313,-8.67843627929688e-05,-1.36496233940125,-0.0003204345703125,-7.34329223632813e-05,-1.36496257781982,-0.000351905822753906,-8.58306884765625e-05,-1.3649625889957,-0.0003204345703125,-7.58171081542969e-05,-1.36496287584305,-0.0003204345703125,-7.43865966796875e-05,-1.36496278643608,-0.000351905822753906,-8.58306884765625e-05,-1.36496257781982,-0.0003204345703125,-7.43865966796875e-05,-1.3649628162384,-0.000352859497070313,-8.29696655273438e-05,-1.36496269702911,-0.0003204345703125,-6.91413879394531e-05,-1.36496245861053,-0.000352859497070313,-0.000102043151855469,-1.36496269702911,-0.0003204345703125,-0.000106334686279297,-1.36496269702911,-0.0003204345703125,-9.34600830078125e-05,-1.36496269702911,-0.000352382659912109,-0.000116825103759766,-1.36496269702911,-0.0003204345703125,-0.000113010406494141,-1.36496266722679, +-0.000416755676269531,-0.000117301940917969,-1.36496261321008,-0.000384807586669922,-0.000122547149658203,-1.3649628162384,-0.000384330749511719,-0.000118255615234375,-1.36496257781982,-0.000416755676269531,-0.000117301940917969,-1.36496248841286,-0.000384330749511719,-0.000118255615234375,-1.36496257781982,-0.000416278839111328,-0.000116348266601563,-1.36496269702911,-0.000384330749511719,-0.000115871429443359,-1.36496269702911,-0.000384807586669922,-0.000115871429443359,-1.36496245861053,-0.000416278839111328,-0.000108718872070313,-1.36496222019196,-0.000384807586669922,-0.000107288360595703,-1.36496257781982,-0.000416278839111328,-9.1552734375e-05,-1.36496269702911,-0.000384807586669922,-9.1552734375e-05,-1.36496263742447,-0.000417232513427734,-9.34600830078125e-05,-1.36496261507273,-0.000384807586669922,-9.29832458496094e-05,-1.36496257781982,-0.000384330749511719,-9.1552734375e-05,-1.36496266722679,-0.000417232513427734,-9.34600830078125e-05,-1.36496272683144,-0.000384330749511719,-9.1552734375e-05,-1.3649628162384,-0.000416755676269531,-8.67843627929688e-05,-1.36496293544769,-0.000384807586669922,-8.63075256347656e-05,-1.36496257781982,-0.000416278839111328,-0.000108718872070313,-1.36496257781982,-0.000384807586669922,-0.000115871429443359,-1.3649628162384,-0.000384807586669922,-0.000107288360595703,-1.36496257781982,-0.000417232513427734,-0.000120162963867188,-1.36496269702911,-0.000384807586669922,-0.000120162963867188,-1.3649628162384,-0.000448703765869141,-0.000112533569335938,-1.36496276035905,-0.000432014465332031,-0.000118255615234375,-1.36496266722679,-0.000432968139648438,-0.000116348266601563,-1.36496260762215,-0.000448703765869141,-0.000112533569335938,-1.36496278643608,-0.000432968139648438,-0.000116348266601563,-1.36496263742447,-0.000448226928710938,-0.000111579895019531,-1.36496293544769,-0.000432491302490234,-0.000115394592285156,-1.36496245861053,-0.000432491302490234,-0.00011444091796875,-1.36496257781982,-0.000448226928710938,-0.000102996826171875,-1.36496269702911,-0.000448703765869141,-0.000105857849121094, +-1.36496269702911,-0.000449180603027344,-9.25064086914063e-05,-1.36496269702911,-0.000448226928710938,-9.25064086914063e-05,-1.36496260762215,-0.000448703765869141,-9.63211059570313e-05,-1.36496257781982,-0.000448226928710938,-9.5367431640625e-05,-1.36496257781982,-0.000449180603027344,-9.34600830078125e-05,-1.36496260762215,-0.000448703765869141,-9.63211059570313e-05,-1.36496263742447,-0.000449180603027344,-9.34600830078125e-05,-1.36496257781982,-0.000448703765869141,-9.1552734375e-05,-1.36496257781982,-0.000448226928710938,-8.96453857421875e-05,-1.3649628162384,-0.000448226928710938,-0.000102996826171875,-1.36496269702911,-0.000432491302490234,-0.00011444091796875,-1.36496269702911,-0.000448703765869141,-0.000105857849121094,-1.36496269702911,-0.000448226928710938,-0.000111579895019531,-1.3649628162384,-0.000432968139648438,-0.000115394592285156,-1.36496260762215,-0.00048065185546875,-0.000111579895019531,-1.36496277153492,-0.00048065185546875,-0.00011444091796875,-1.36496260762215,-0.00048065185546875,-0.000112533569335938,-1.36496260762215,-0.00048065185546875,-0.000111579895019531,-1.36496248841286,-0.00048065185546875,-0.000112533569335938,-1.36496275663376,-0.00048065185546875,-0.000108718872070313,-1.3649622797966,-0.000464916229248047,-0.000111579895019531,-1.3649628162384,-0.000464916229248047,-0.000107765197753906,-1.3649628162384,-0.000463962554931641,-0.000102043151855469,-1.36496257781982,-0.000464916229248047,-0.000102043151855469,-1.36496257781982,-0.00048065185546875,-9.918212890625e-05,-1.36496245861053,-0.000463962554931641,-9.63211059570313e-05,-1.36496257781982,-0.00048065185546875,-0.000101089477539063,-1.36496259272099,-0.000464916229248047,-9.82284545898438e-05,-1.36496266722679,-0.000463962554931641,-9.72747802734375e-05,-1.36496257781982,-0.00048065185546875,-0.000101089477539063,-1.36496287584305,-0.000463962554931641,-9.72747802734375e-05,-1.36496257781982,-0.00048065185546875,-9.918212890625e-05,-1.36496257781982,-0.000464439392089844,-9.44137573242188e-05,-1.36496269702911,-0.000463962554931641, +-0.000102043151855469,-1.3649628162384,-0.000464916229248047,-0.000107765197753906,-1.3649628162384,-0.000464916229248047,-0.000102043151855469,-1.3649628162384,-0.000464439392089844,-0.0001068115234375,-1.36496269702911,-0.000464916229248047,-0.000110626220703125,-1.36496257781982,-0.000496387481689453,-0.000107765197753906,-1.36496248841286,-0.00048065185546875,-0.000107765197753906,-1.36496245861053,-0.00048065185546875,-9.918212890625e-05,-1.36496251821518,-0.00048065185546875,-0.000102996826171875,-1.36496251821518,-0.00048065185546875,-0.000107765197753906,-1.36496257781982,-0.00048065185546875,-9.918212890625e-05,-1.36496257781982,-0.00048065185546875,-0.000102996826171875,-1.36496257781982,-0.000143527984619141,-0.00014042854309082,-1.36496269702911,-0.000144481658935547,-0.00012516975402832,-1.36496269702911,-0.000144481658935547,-0.000138282775878906,-1.3649628162384,-0.000224590301513672,-0.000138759613037109,-1.36496257781982,-0.00016021728515625,-6.77108764648438e-05,-1.36496257781982,-0.000144481658935547,-9.72747802734375e-05,-1.36496257781982,-0.000207901000976563,-4.43458557128906e-05,-1.3649628162384,-0.000175952911376953,-5.03063201904297e-05,-1.36496222019196,-0.000288963317871094,-6.00814819335938e-05,-1.36496245861053,-0.000256061553955078,-4.91142272949219e-05,-1.36496269702911,-0.000352859497070313,-8.67843627929688e-05,-1.36496269702911,-0.0003204345703125,-7.34329223632813e-05,-1.36496269702911,-0.000416278839111328,-9.1552734375e-05,-1.36496269702911,-0.000384807586669922,-9.1552734375e-05,-1.3649628162384,-0.000449180603027344,-9.25064086914063e-05,-1.36496257781982,-0.000448226928710938,-9.25064086914063e-05,-1.36496257781982,-0.000463962554931641,-9.63211059570313e-05,-1.36496257781982,-0.00048065185546875,-0.000108718872070313,-1.36496257781982,-0.00048065185546875,-0.000102996826171875,-1.36496257781982,-0.000448226928710938,-0.000111579895019531,-1.36496257781982,-0.000464916229248047,-0.000111579895019531,-1.36496269702911,-0.000416278839111328,-0.000116348266601563,-1.3649628162384, +-0.000432491302490234,-0.000115394592285156,-1.3649628162384,-0.000352859497070313,-0.000115871429443359,-1.36496257781982,-0.000384330749511719,-0.000115871429443359,-1.36496269702911,-0.000288486480712891,-0.000118732452392578,-1.3649628162384,-0.0003204345703125,-0.000116348266601563,-1.36496269702911,-0.000240325927734375,-0.000113487243652344,-1.36496269702911,-0.000256538391113281,-0.000115871429443359,-1.36496269702911,-0.000207901000976563,-0.000116825103759766,-1.36496257781982,-0.000224590301513672,-0.000112533569335938,-1.3649628162384,-0.000224113464355469,-0.000129222869873047,-1.36496269702911,-0.000208854675292969,-0.000127315521240234,-1.36496245861053,-0.000192165374755859,-0.000136375427246094,-1.3649628162384,-0.000128269195556641,-0.000139474868774414,-1.3649628162384,-0.000128746032714844,-0.000123739242553711,-1.36496269702911,-0.000128269195556641,-0.000136852264404297,-1.3649628162384,-0.000192642211914063,-0.000110626220703125,-1.36496257781982,-0.000192165374755859,-0.000123023986816406,-1.3649628162384,-0.000224590301513672,-0.000102996826171875,-1.36496257781982,-0.000208377838134766,-0.000104427337646484,-1.36496305465698,-0.000288963317871094,-0.000108242034912109,-1.36496233940125,-0.000256061553955078,-0.000104427337646484,-1.36496317386627,-0.000352382659912109,-0.000116825103759766,-1.3649628162384,-0.0003204345703125,-0.000113010406494141,-1.3649628162384,-0.000417232513427734,-0.000120162963867188,-1.36496245861053,-0.000384807586669922,-0.000120162963867188,-1.3649628162384,-0.000448226928710938,-0.000111579895019531,-1.3649628162384,-0.000432968139648438,-0.000115394592285156,-1.36496257781982,-0.000464439392089844,-0.0001068115234375,-1.3649628162384,-0.000464916229248047,-0.000110626220703125,-1.36496269702911,-0.00048065185546875,-0.000102996826171875,-1.36496263742447,-0.000448703765869141,-9.1552734375e-05,-1.36496251821518,-0.000464439392089844,-9.44137573242188e-05,-1.36496245861053,-0.000416755676269531,-8.67843627929688e-05,-1.36496251821518,-0.000448226928710938,-8.96453857421875e-05, +-1.36496245861053,-0.000352859497070313,-8.29696655273438e-05,-1.36496269702911,-0.000384807586669922,-8.63075256347656e-05,-1.36496269702911,-0.000288009643554688,-5.340576171875e-05,-1.36496245861053,-0.0003204345703125,-6.91413879394531e-05,-1.36496269702911,-0.000207901000976563,-4.10079956054688e-05,-1.36496257781982,-0.000256061553955078,-4.33921813964844e-05,-1.3649628162384,-0.00016021728515625,-6.34193420410156e-05,-1.36496257781982,-0.000175952911376953,-4.60147857666016e-05,-1.3649622797966,-0.000144481658935547,-9.41753387451172e-05,-1.36496245861053,-0.000288963317871094,-0.000150203704833984,-1.36496245861053,-0.000288009643554688,-0.000134468078613281,-1.36496245861053,-0.000288486480712891,-0.000142097473144531,-1.22846579551697,-0.000173091888427734,-0.000131607055664063,-1.22846472263336,-0.000173091888427734,-0.000131607055664063,-1.22846472263336,-0.000202178955078125,-0.000126361846923828,-1.22846475802362,-0.000274181365966797,-0.000136852264404297,-1.22846472263336,-0.000202178955078125,-0.000126361846923828,-1.22846472263336,-0.000158786773681641,-0.000121116638183594,-1.22846472263336,-0.000158786773681641,-0.000121116638183594,-1.22846484184265,-0.000231266021728516,-0.000131607055664063,-1.22846472263336,-0.000230312347412109,-0.000131130218505859,-1.22846484184265,-0.000258922576904297,-0.000134944915771484,-1.22846472263336,-0.000202655792236328,-0.000123977661132813,-1.22846472263336,-0.000173568725585938,-0.000128269195556641,-1.22846472263336,-0.000173568725585938,-0.000128269195556641,-1.22846472263336,-0.000173091888427734,-0.000123023986816406,-1.22846472263336,-0.000202178955078125,-0.000125408172607422,-1.22846472263336,-0.000173091888427734,-0.000123023986816406,-1.22846472263336,-0.000259876251220703,-0.000135421752929688,-1.22853147983551,-0.000216007232666016,-0.000131607055664063,-1.22846476361156,-0.000303268432617188,-0.000156402587890625,-1.22839796543121,-0.000216007232666016,-0.000132083892822266,-1.22846476174891,-0.000461578369140625,-8.20159912109375e-05,-1.22840845584869, +-0.000447273254394531,-8.10623168945313e-05,-1.22838735580444,-0.00038909912109375,-7.82012939453125e-05,-1.22835898399353,-0.000303268432617188,-6.96182250976563e-05,-1.2283570766449,-0.000245094299316406,-6.19888305664063e-05,-1.22846476174891,-0.000447273254394531,-0.000149726867675781,-1.22841119766235,-0.000432968139648438,-0.000147819519042969,-1.22838759422302,-0.00037384033203125,-0.000144004821777344,-1.22835612297058,-0.000303268432617188,-0.000134944915771484,-1.22835326194763,-0.000246047973632813,-0.000126361846923828,-1.22843408584595,-0.000447273254394531,-0.000121116638183594,-1.22843432426453,-0.000447273254394531,-8.10623168945313e-05,-1.22841429710388,-0.000432491302490234,-0.000123023986816406,-1.22843241691589,-0.000432014465332031,-0.000149726867675781,-1.22846476174891,-0.000446796417236328,-0.000123977661132813,-1.22839999198914,-0.000403404235839844,-0.000118255615234375,-1.22839224338531,-0.000418663024902344,-8.0108642578125e-05,-1.22838950157166,-0.000374794006347656,-0.000111579895019531,-1.22839891910553,-0.00040435791015625,-0.000146865844726563,-1.22837328910828,-0.000346183776855469,-0.000112533569335938,-1.22837519645691,-0.000345706939697266,-7.34329223632813e-05,-1.22836184501648,-0.000302791595458984,-0.000104904174804688,-1.22837233543396,-0.000347137451171875,-0.000140190124511719,-1.22835612297058,-0.000274181365966797,-0.000115394592285156,-1.22835230827332,-0.000274181365966797,-6.53266906738281e-05,-1.22835516929626,-0.000244617462158203,-0.000101566314697266,-1.22835421562195,-0.000274658203125,-0.000133037567138672,-1.22844278812408,-0.000462055206298828,-0.000113487243652344,-1.22846476174891,-0.000461578369140625,-0.000110626220703125,-1.22844183444977,-0.000461578369140625,-8.10623168945313e-05,-1.22843325138092,-0.000447750091552734,-0.000108718872070313,-1.22844851016998,-0.000446796417236328,-0.000133514404296875,-1.22839796543121,-0.000418663024902344,-0.000109672546386719,-1.22841036319733,-0.000432491302490234,-0.000109672546386719,-1.228391289711,-0.000432968139648438, +-7.72476196289063e-05,-1.22839593887329,-0.000403881072998047,-0.000105857849121094,-1.22840654850006,-0.000418663024902344,-0.000127792358398438,-1.22837615013123,-0.000361442565917969,-0.000102043151855469,-1.22838842868805,-0.000374794006347656,-0.000102996826171875,-1.22837901115417,-0.000375270843505859,-7.34329223632813e-05,-1.22837138175964,-0.000346660614013672,-9.918212890625e-05,-1.22838091850281,-0.000361442565917969,-0.000120162963867188,-1.22835111618042,-0.000288486480712891,-8.96453857421875e-05,-1.2283570766449,-0.000302314758300781,-9.20295715332031e-05,-1.22835230827332,-0.000288486480712891,-6.67572021484375e-05,-1.22834753990173,-0.000273227691650391,-8.7738037109375e-05,-1.22835803031921,-0.000288963317871094,-0.000112533569335938,-1.22841799259186,-0.000447750091552734,-0.000113487243652344,-1.22841715812683,-0.000446796417236328,-8.20159912109375e-05,-1.22842264175415,-0.000432491302490234,-0.000130653381347656,-1.22842371463776,-0.000432491302490234,-0.000141143798828125,-1.22841429710388,-0.000418186187744141,-0.000138282775878906,-1.22842085361481,-0.000432968139648438,-0.000147819519042969,-1.22843515872955,-0.000432491302490234,-0.000140190124511719,-1.22844848036766,-0.000447750091552734,-0.000142097473144531,-1.22844853997231,-0.000447273254394531,-0.000149726867675781,-1.22846476174891,-0.000446796417236328,-0.000142097473144531,-1.22838950157166,-0.000403881072998047,-0.000105857849121094,-1.22838640213013,-0.000403404235839844,-7.72476196289063e-05,-1.22839605808258,-0.000389575958251953,-0.000128746032714844,-1.22839605808258,-0.00038909912109375,-0.000138282775878906,-1.22838950157166,-0.000374794006347656,-0.000133514404296875,-1.22839426994324,-0.00038909912109375,-0.000145912170410156,-1.22840189933777,-0.00040435791015625,-0.000136375427246094,-1.22840642929077,-0.000418186187744141,-0.000138282775878906,-1.22840368747711,-0.000418663024902344,-0.000146865844726563,-1.22836184501648,-0.000318050384521484,-9.77516174316406e-05,-1.22836470603943,-0.000331878662109375,-6.96182250976563e-05, +-1.22836852073669,-0.000318050384521484,-0.000123500823974609,-1.22836756706238,-0.000332355499267578,-0.000130653381347656,-1.22835898399353,-0.000303745269775391,-0.000125885009765625,-1.22836470603943,-0.000332832336425781,-0.000139236450195313,-1.22837424278259,-0.000346660614013672,-0.000131607055664063,-1.22838187217712,-0.000360965728759766,-0.000134468078613281,-1.22837996482849,-0.000361442565917969,-0.000142097473144531,-1.22834968566895,-0.0002593994140625,-8.72611999511719e-05,-1.22835040092468,-0.000258922576904297,-6.34193420410156e-05,-1.22835397720337,-0.000245094299316406,-9.05990600585938e-05,-1.22835612297058,-0.000245094299316406,-0.000110149383544922,-1.22835612297058,-0.000245094299316406,-0.000123977661132813,-1.22835397720337,-0.000245571136474609,-0.000118732452392578,-1.22835397720337,-0.000245094299316406,-0.000131607055664063,-1.22835612297058,-0.000274181365966797,-0.000124454498291016,-1.2283570766449,-0.000288486480712891,-0.000125885009765625,-1.22835540771484,-0.000288009643554688,-0.000133991241455078,-1.22845521569252,-0.000461578369140625,-0.000110626220703125,-1.22845536470413,-0.000476360321044922,-8.29696655273438e-05,-1.22845631837845,-0.000447750091552734,-0.000142097473144531,-1.22845616936684,-0.000446319580078125,-0.000149726867675781,-1.22845619916916,-0.000447750091552734,-0.000131607055664063,-1.22844183444977,-0.000446796417236328,-0.000142097473144531,-1.22844088077545,-0.000447273254394531,-0.000148773193359375,-1.22843408584595,-0.000446796417236328,-0.000110626220703125,-1.22843432426453,-0.000462055206298828,-8.29696655273438e-05,-1.22844004631042,-0.000446796417236328,-0.00012969970703125,-1.22842752933502,-0.000447750091552734,-0.000111579895019531,-1.22842752933502,-0.000461578369140625,-8.20159912109375e-05,-1.22842931747437,-0.000432491302490234,-0.000140190124511719,-1.22842645645142,-0.000432014465332031,-0.000147819519042969,-1.22842860221863,-0.000432968139648438,-0.000128746032714844,-1.22841906547546,-0.000432968139648438,-0.000140190124511719,-1.22841608524323, +-0.000432968139648438,-0.000148773193359375,-1.22841131687164,-0.000433444976806641,-0.000111579895019531,-1.22840845584869,-0.000447273254394531,-8.0108642578125e-05,-1.22841596603394,-0.000432491302490234,-0.000127792358398438,-1.22840464115143,-0.000432491302490234,-0.000108718872070313,-1.22839891910553,-0.000446796417236328,-7.82012939453125e-05,-1.22841036319733,-0.000417709350585938,-0.000139236450195313,-1.22840750217438,-0.000417709350585938,-0.000147819519042969,-1.22841131687164,-0.000418663024902344,-0.000124931335449219,-1.22840261459351,-0.000403404235839844,-0.000138282775878906,-1.22840082645416,-0.000403404235839844,-0.00014495849609375,-1.22839510440826,-0.000417232513427734,-0.000108718872070313,-1.22838926315308,-0.000418663024902344,-7.82012939453125e-05,-1.22840178012848,-0.000403881072998047,-0.000123023986816406,-1.228391289711,-0.00040435791015625,-0.000105857849121094,-1.22838735580444,-0.000418186187744141,-7.82012939453125e-05,-1.22839879989624,-0.000403881072998047,-0.0001373291015625,-1.22839689254761,-0.00040435791015625,-0.000144004821777344,-1.22839879989624,-0.000403881072998047,-0.000123977661132813,-1.22839212417603,-0.00038909912109375,-0.000134468078613281,-1.22839033603668,-0.00038909912109375,-0.000144004821777344,-1.22838735580444,-0.000389575958251953,-0.000102996826171875,-1.22838664054871,-0.00038909912109375,-7.53402709960938e-05,-1.22839224338531,-0.000389575958251953,-0.000119209289550781,-1.22838282585144,-0.000375270843505859,-0.000102043151855469,-1.22838282585144,-0.00038909912109375,-7.2479248046875e-05,-1.22838473320007,-0.000374794006347656,-0.000134468078613281,-1.22838377952576,-0.00037384033203125,-0.000144004821777344,-1.22838664054871,-0.000374317169189453,-0.000121116638183594,-1.22837710380554,-0.000360965728759766,-0.000132560729980469,-1.22837615013123,-0.000361442565917969,-0.000142097473144531,-1.22837042808533,-0.000346660614013672,-9.918212890625e-05,-1.22837424278259,-0.000345706939697266,-7.2479248046875e-05,-1.22837424278259,-0.000346660614013672, +-0.000118255615234375,-1.22836661338806,-0.000346660614013672,-9.72747802734375e-05,-1.22836947441101,-0.000346660614013672,-7.15255737304688e-05,-1.22837138175964,-0.000331401824951172,-0.000131607055664063,-1.22836852073669,-0.000331878662109375,-0.000139236450195313,-1.22837233543396,-0.000331878662109375,-0.000119209289550781,-1.22836375236511,-0.000318050384521484,-0.000128746032714844,-1.22836089134216,-0.000316619873046875,-0.000136852264404297,-1.2283570766449,-0.000302791595458984,-9.44137573242188e-05,-1.22835898399353,-0.000302791595458984,-6.77108764648438e-05,-1.22836470603943,-0.000302791595458984,-0.000115394592285156,-1.22845527529716,-0.000461578369140625,-9.1552734375e-05,-1.22846476174891,-0.000462055206298828,-9.25064086914063e-05,-1.22834753990173,-0.000258922576904297,-7.10487365722656e-05,-1.22835540771484,-0.000245094299316406,-7.10487365722656e-05,-1.22843325138092,-0.000447273254394531,-9.1552734375e-05,-1.22842752933502,-0.000446796417236328,-9.1552734375e-05,-1.22841608524323,-0.000447273254394531,-8.96453857421875e-05,-1.2284083366394,-0.000446796417236328,-8.7738037109375e-05,-1.22843325138092,-0.000461578369140625,-8.96453857421875e-05,-1.22840857505798,-0.000432491302490234,-8.7738037109375e-05,-1.22844088077545,-0.000461101531982422,-9.1552734375e-05,-1.22839987277985,-0.000432968139648438,-8.86917114257813e-05,-1.228391289711,-0.000432491302490234,-8.86917114257813e-05,-1.22839021682739,-0.000418186187744141,-8.96453857421875e-05,-1.22839224338531,-0.000418186187744141,-8.7738037109375e-05,-1.22838747501373,-0.000418186187744141,-8.67843627929688e-05,-1.22838664054871,-0.00040435791015625,-8.48770141601563e-05,-1.22838568687439,-0.00038909912109375,-8.392333984375e-05,-1.22838652133942,-0.00038909912109375,-8.48770141601563e-05,-1.22838091850281,-0.000389575958251953,-8.29696655273438e-05,-1.22837615013123,-0.000374794006347656,-8.20159912109375e-05,-1.22837138175964,-0.000346660614013672,-8.10623168945313e-05,-1.22837328910828,-0.000345706939697266,-8.10623168945313e-05,-1.22836661338806, +-0.000346660614013672,-7.91549682617188e-05,-1.22836184501648,-0.000331878662109375,-7.82012939453125e-05,-1.2283570766449,-0.000303268432617188,-7.72476196289063e-05,-1.2283570766449,-0.000302791595458984,-7.53402709960938e-05,-1.2283501625061,-0.000288963317871094,-7.43865966796875e-05,-1.22834920883179,-0.000274181365966797,-7.2479248046875e-05,-1.22846476174891,-0.000461578369140625,-8.10623168945313e-05,-1.22841310501099,-0.000432968139648438,-8.10623168945313e-05,-1.228391289711,-0.00038909912109375,-7.82012939453125e-05,-1.22836947441101,-0.000302791595458984,-6.91413879394531e-05,-1.22836375236511,-0.000245094299316406,-6.19888305664063e-05,-1.22846476361156,-0.000417232513427734,-0.000153541564941406,-1.22846476174891,-0.000374794006347656,-0.000164985656738281,-1.22843527793884,-0.000447273254394531,-0.000120162963867188,-1.22843515872955,-0.000446796417236328,-8.10623168945313e-05,-1.22841787338257,-0.000418186187744141,-0.000123977661132813,-1.22846476174891,-0.000432491302490234,-0.000147819519042969,-1.22846476174891,-0.000447273254394531,-0.000123977661132813,-1.22840464115143,-0.000403881072998047,-0.000119209289550781,-1.2283970117569,-0.000418186187744141,-7.72476196289063e-05,-1.22839307785034,-0.000374317169189453,-0.000111579895019531,-1.22846476174891,-0.000403881072998047,-0.000161170959472656,-1.22838568687439,-0.000331878662109375,-0.000111579895019531,-1.22838282585144,-0.000346660614013672,-7.34329223632813e-05,-1.22837233543396,-0.000288486480712891,-0.000108718872070313,-1.22836947441101,-0.000259876251220703,-0.00011444091796875,-1.22836852073669,-0.000274181365966797,-6.38961791992188e-05,-1.22836661338806,-0.000245094299316406,-0.000102519989013672,-1.22844848036766,-0.000446796417236328,-0.000110626220703125,-1.22846476174891,-0.000446796417236328,-0.000110626220703125,-1.22844758629799,-0.000461578369140625,-8.20159912109375e-05,-1.22843515872955,-0.000446796417236328,-0.000110626220703125,-1.22845047712326,-0.000447750091552734,-0.000132560729980469,-1.22841143608093,-0.000418186187744141, +-0.000109672546386719,-1.22841513156891,-0.000432491302490234,-0.000111579895019531,-1.2284038066864,-0.000432491302490234,-7.91549682617188e-05,-1.2284027338028,-0.00040435791015625,-0.0001068115234375,-1.22841429710388,-0.000417709350585938,-0.000125885009765625,-1.22839605808258,-0.000360965728759766,-0.000100135803222656,-1.22839319705963,-0.000375270843505859,-0.000102996826171875,-1.22839415073395,-0.000360488891601563,-7.34329223632813e-05,-1.22838747501373,-0.000346660614013672,-0.000101089477539063,-1.22839224338531,-0.000360965728759766,-0.0001220703125,-1.22837328910828,-0.000288486480712891,-8.96453857421875e-05,-1.22837138175964,-0.000288486480712891,-9.48905944824219e-05,-1.22837042808533,-0.000288963317871094,-6.67572021484375e-05,-1.22837233543396,-0.000274181365966797,-8.82148742675781e-05,-1.22837042808533,-0.000288486480712891,-0.000112533569335938,-1.22842562198639,-0.000432491302490234,-0.000111579895019531,-1.22842276096344,-0.000447750091552734,-8.0108642578125e-05,-1.22842943668365,-0.000432491302490234,-0.00012969970703125,-1.22843039035797,-0.000432968139648438,-0.000136375427246094,-1.22842264175415,-0.000418186187744141,-0.0001373291015625,-1.22846476174891,-0.000432968139648438,-0.000150680541992188,-1.22843992710114,-0.000432491302490234,-0.000138282775878906,-1.22845044732094,-0.000447273254394531,-0.000139236450195313,-1.22846476174891,-0.000432968139648438,-0.000145912170410156,-1.22846476174891,-0.000447273254394531,-0.000138282775878906,-1.2284027338028,-0.000389575958251953,-0.000102996826171875,-1.22839903831482,-0.000403881072998047,-7.43865966796875e-05,-1.22840476036072,-0.00038909912109375,-0.000123023986816406,-1.22840452194214,-0.00038909912109375,-0.000132560729980469,-1.22839891910553,-0.000374794006347656,-0.000132560729980469,-1.22846476174891,-0.000389575958251953,-0.000162124633789063,-1.2284095287323,-0.000403881072998047,-0.000134468078613281,-1.2284152507782,-0.000418663024902344,-0.000135421752929688,-1.22846476174891,-0.000418186187744141,-0.000155448913574219, +-1.22838282585144,-0.000317573547363281,-9.48905944824219e-05,-1.22837901115417,-0.000317573547363281,-6.96182250976563e-05,-1.22838187217712,-0.000317573547363281,-0.000120639801025391,-1.22838091850281,-0.000317573547363281,-0.000126838684082031,-1.22837805747986,-0.000288486480712891,-0.000125885009765625,-1.22838664054871,-0.000346660614013672,-0.000128746032714844,-1.22839319705963,-0.000360965728759766,-0.000130653381347656,-1.22846476174891,-0.000360965728759766,-0.000165939331054688,-1.22837042808533,-0.0002593994140625,-8.72611999511719e-05,-1.22836756706238,-0.000259876251220703,-6.29425048828125e-05,-1.22836661338806,-0.000244617462158203,-9.05990600585938e-05,-1.22836756706238,-0.000245094299316406,-0.000109195709228516,-1.22837424278259,-0.000244617462158203,-0.000120639801025391,-1.22837328910828,-0.000259876251220703,-0.0001220703125,-1.22837519645691,-0.000274181365966797,-0.000124454498291016,-1.22845903038979,-0.000447750091552734,-0.000110626220703125,-1.22845809161663,-0.000462055206298828,-8.20159912109375e-05,-1.22845615446568,-0.000446796417236328,-0.000139236450195313,-1.22845715284348,-0.000447750091552734,-0.000131607055664063,-1.22844564914703,-0.000432968139648438,-0.000139236450195313,-1.22843909263611,-0.000447273254394531,-0.000110626220703125,-1.2284380197525,-0.000461101531982422,-8.0108642578125e-05,-1.22844278812408,-0.000432491302490234,-0.000128746032714844,-1.22843325138092,-0.000447750091552734,-0.000110626220703125,-1.228431224823,-0.000447273254394531,-8.0108642578125e-05,-1.22843432426453,-0.000432968139648438,-0.0001373291015625,-1.22843337059021,-0.000432968139648438,-0.000127792358398438,-1.22842657566071,-0.000418663024902344,-0.000136375427246094,-1.22841894626617,-0.000432491302490234,-0.000109672546386719,-1.22841620445251,-0.000447750091552734,-7.91549682617188e-05,-1.22842288017273,-0.000418663024902344,-0.000126838684082031,-1.22841513156891,-0.000418186187744141,-0.000108718872070313,-1.2284095287323,-0.000432491302490234,-7.91549682617188e-05,-1.22841799259186, +-0.000418186187744141,-0.000136375427246094,-1.22841906547546,-0.000417232513427734,-0.000126838684082031,-1.22841227054596,-0.000403404235839844,-0.000136375427246094,-1.22840666770935,-0.000403404235839844,-0.000107765197753906,-1.22839975357056,-0.000417709350585938,-7.91549682617188e-05,-1.22840845584869,-0.000403881072998047,-0.0001220703125,-1.22840571403503,-0.000403881072998047,-0.000105857849121094,-1.22839987277985,-0.000403404235839844,-7.82012939453125e-05,-1.22840654850006,-0.00038909912109375,-0.000133514404296875,-1.22840642929077,-0.000403881072998047,-0.000123023986816406,-1.22840178012848,-0.00038909912109375,-0.000132560729980469,-1.2283980846405,-0.000389575958251953,-0.000102996826171875,-1.22839498519897,-0.00038909912109375,-7.62939453125e-05,-1.22839987277985,-0.000375747680664063,-0.000118255615234375,-1.22839510440826,-0.000375270843505859,-0.000102043151855469,-1.22839415073395,-0.000374317169189453,-7.43865966796875e-05,-1.22839593887329,-0.000374794006347656,-0.000132560729980469,-1.22839426994324,-0.000375270843505859,-0.000118255615234375,-1.22839021682739,-0.000360965728759766,-0.000131607055664063,-1.22839140892029,-0.000346183776855469,-0.000100135803222656,-1.22838854789734,-0.000346660614013672,-7.15255737304688e-05,-1.22838759422302,-0.000346660614013672,-0.000118255615234375,-1.22838664054871,-0.000332355499267578,-9.67979431152344e-05,-1.22838282585144,-0.000332355499267578,-7.00950622558594e-05,-1.22838377952576,-0.000331878662109375,-0.00012969970703125,-1.22838473320007,-0.000331878662109375,-0.000118732452392578,-1.22837901115417,-0.000302791595458984,-0.000126361846923828,-1.22837710380554,-0.000302314758300781,-9.48905944824219e-05,-1.22837424278259,-0.000302791595458984,-6.81877136230469e-05,-1.22837615013123,-0.000302791595458984,-0.000117301940917969,-1.2284591794014,-0.000462055206298828,-9.1552734375e-05,-1.22846476174891,-0.000461578369140625,-9.25064086914063e-05,-1.22837042808533,-0.000259876251220703,-7.00950622558594e-05,-1.22836565971375,-0.000245571136474609, +-7.05718994140625e-05,-1.22843515872955,-0.000446796417236328,-8.96453857421875e-05,-1.22843313217163,-0.000447273254394531,-9.05990600585938e-05,-1.22842371463776,-0.000447750091552734,-9.1552734375e-05,-1.22841715812683,-0.000432968139648438,-8.7738037109375e-05,-1.22843813896179,-0.000447750091552734,-8.7738037109375e-05,-1.22841322422028,-0.000432491302490234,-9.05990600585938e-05,-1.22844755649567,-0.000461578369140625,-9.1552734375e-05,-1.22841322422028,-0.000432491302490234,-8.7738037109375e-05,-1.22840738296509,-0.000418663024902344,-8.86917114257813e-05,-1.22840368747711,-0.000418663024902344,-8.67843627929688e-05,-1.22839987277985,-0.000418663024902344,-8.67843627929688e-05,-1.22840368747711,-0.000403404235839844,-8.58306884765625e-05,-1.22840178012848,-0.00038909912109375,-8.48770141601563e-05,-1.22839796543121,-0.000389575958251953,-8.48770141601563e-05,-1.2283923625946,-0.00038909912109375,-8.48770141601563e-05,-1.22839510440826,-0.000375270843505859,-8.29696655273438e-05,-1.2283970117569,-0.000360965728759766,-8.0108642578125e-05,-1.22839212417603,-0.000346660614013672,-8.0108642578125e-05,-1.22838568687439,-0.000346183776855469,-7.91549682617188e-05,-1.22838568687439,-0.000331401824951172,-8.0108642578125e-05,-1.22838282585144,-0.000317096710205078,-7.86781311035156e-05,-1.22837710380554,-0.000303745269775391,-7.62939453125e-05,-1.22837233543396,-0.000302314758300781,-7.62939453125e-05,-1.22837424278259,-0.000288486480712891,-7.48634338378906e-05,-1.22837233543396,-0.000274181365966797,-7.2479248046875e-05,-1.22845712304115,-0.000461578369140625,-8.10623168945313e-05,-1.22846476174891,-0.000461101531982422,-7.91549682617188e-05,-1.22844481468201,-0.000462055206298828,-8.0108642578125e-05,-1.22843623161316,-0.000462055206298828,-7.72476196289063e-05,-1.22843515872955,-0.000446796417236328,-8.10623168945313e-05,-1.22842943668365,-0.000446796417236328,-8.0108642578125e-05,-1.2284197807312,-0.000447750091552734,-8.0108642578125e-05,-1.22841227054596,-0.000446796417236328,-7.72476196289063e-05,-1.22841131687164, +-0.000432968139648438,-7.91549682617188e-05,-1.22840356826782,-0.000432491302490234,-7.72476196289063e-05,-1.22839605808258,-0.000432491302490234,-7.62939453125e-05,-1.22839307785034,-0.000418186187744141,-7.53402709960938e-05,-1.22839415073395,-0.000418186187744141,-7.72476196289063e-05,-1.22839307785034,-0.000418186187744141,-7.72476196289063e-05,-1.22839319705963,-0.000403881072998047,-7.43865966796875e-05,-1.22839140892029,-0.00038909912109375,-7.62939453125e-05,-1.22838938236237,-0.000389575958251953,-7.62939453125e-05,-1.22838830947876,-0.000375270843505859,-7.43865966796875e-05,-1.22838664054871,-0.000375747680664063,-7.43865966796875e-05,-1.22838187217712,-0.000345706939697266,-7.2479248046875e-05,-1.22837901115417,-0.000346660614013672,-7.2479248046875e-05,-1.22837615013123,-0.000331878662109375,-6.96182250976563e-05,-1.22837233543396,-0.000317096710205078,-6.96182250976563e-05,-1.22836565971375,-0.000302314758300781,-6.72340393066406e-05,-1.22836375236511,-0.000302314758300781,-6.866455078125e-05,-1.22836089134216,-0.000288486480712891,-6.4849853515625e-05,-1.22836089134216,-0.000274181365966797,-6.62803649902344e-05,-1.22835898399353,-0.000259876251220703,-6.19888305664063e-05,-1.22836089134216,-0.000245094299316406,-6.103515625e-05,-1.22845616936684,-0.000447750091552734,-0.000134468078613281,-1.22846476174891,-0.000447273254394531,-0.000130653381347656,-1.22841429710388,-0.000418186187744141,-0.000127792358398438,-1.22841703891754,-0.000432968139648438,-0.00012969970703125,-1.22842288017273,-0.000432968139648438,-0.000134468078613281,-1.22842836380005,-0.000432491302490234,-0.000131607055664063,-1.22841143608093,-0.000418663024902344,-0.000130653381347656,-1.22843420505524,-0.000446796417236328,-0.000125885009765625,-1.22840666770935,-0.000418663024902344,-0.000130653381347656,-1.22844088077545,-0.000447750091552734,-0.000133514404296875,-1.22840285301208,-0.00040435791015625,-0.000125885009765625,-1.22844859957695,-0.000447273254394531,-0.000136375427246094,-1.22840070724487,-0.000403881072998047,-0.0001220703125, +-1.22839987277985,-0.000403881072998047,-0.000126838684082031,-1.22839605808258,-0.000389575958251953,-0.000132560729980469,-1.22839224338531,-0.000389575958251953,-0.000125885009765625,-1.22838938236237,-0.000375270843505859,-0.000117301940917969,-1.22838664054871,-0.000374317169189453,-0.000123023986816406,-1.22838091850281,-0.000360965728759766,-0.000125885009765625,-1.22837519645691,-0.000346660614013672,-0.0001220703125,-1.22837424278259,-0.000346660614013672,-0.000117301940917969,-1.22837138175964,-0.000331878662109375,-0.0001220703125,-1.22836852073669,-0.000317573547363281,-0.000125885009765625,-1.22836375236511,-0.000302791595458984,-0.000118732452392578,-1.22836089134216,-0.000302791595458984,-0.000110626220703125,-1.22835803031921,-0.000288486480712891,-0.000116348266601563,-1.22835612297058,-0.000274181365966797,-0.000117778778076172,-1.22835612297058,-0.000245094299316406,-0.000113010406494141,-1.22835516929626,-0.000244617462158203,-0.000106334686279297,-1.22836756706238,-0.000245094299316406,-0.000105857849121094,-1.22836947441101,-0.000244617462158203,-0.000113487243652344,-1.22845616936684,-0.000446796417236328,-0.000128746032714844,-1.22846476174891,-0.000446796417236328,-0.000121116638183594,-1.22845713794231,-0.000447273254394531,-0.000123977661132813,-1.22846476174891,-0.000446796417236328,-0.000120162963867188,-1.22844564914703,-0.000447750091552734,-0.000127792358398438,-1.2284380197525,-0.000447273254394531,-0.000124931335449219,-1.22843337059021,-0.000447273254394531,-0.000118255615234375,-1.22842860221863,-0.000433444976806641,-0.000125885009765625,-1.22842073440552,-0.000432491302490234,-0.000126838684082031,-1.2284152507782,-0.000432491302490234,-0.000123023986816406,-1.22841322422028,-0.000432968139648438,-0.000120162963867188,-1.2284095287323,-0.000418663024902344,-0.0001220703125,-1.2284038066864,-0.000418663024902344,-0.000123977661132813,-1.22839987277985,-0.000403404235839844,-0.000118255615234375,-1.22839891910553,-0.000403881072998047,-0.000115394592285156,-1.2283970117569,-0.000403404235839844, +-0.000119209289550781,-1.22839319705963,-0.000389575958251953,-0.000123977661132813,-1.22839045524597,-0.00038909912109375,-0.000116348266601563,-1.22838938236237,-0.000374317169189453,-0.000108718872070313,-1.22838473320007,-0.000374794006347656,-0.000115394592285156,-1.22837901115417,-0.000360965728759766,-0.000116348266601563,-1.22837233543396,-0.000346183776855469,-0.000112533569335938,-1.22837233543396,-0.000346660614013672,-0.000108718872070313,-1.22837042808533,-0.000332355499267578,-0.000113487243652344,-1.22836565971375,-0.000317096710205078,-0.000117301940917969,-1.22836184501648,-0.000302791595458984,-0.000110626220703125,-1.22836089134216,-0.000302314758300781,-0.000102996826171875,-1.22835516929626,-0.000288486480712891,-0.0001068115234375,-1.22835230827332,-0.000274181365966797,-0.000107765197753906,-1.22835230827332,-0.000245571136474609,-0.000103950500488281,-1.22835421562195,-0.000244617462158203,-0.000100135803222656,-1.22836756706238,-0.000245571136474609,-9.918212890625e-05,-1.22836947441101,-0.000244617462158203,-0.000102996826171875,-1.22837138175964,-0.000274181365966797,-0.000107288360595703,-1.22837233543396,-0.000288963317871094,-0.000107765197753906,-1.22837233543396,-0.000288963317871094,-0.000105857849121094,-1.22837710380554,-0.000303745269775391,-0.000110626220703125,-1.22838282585144,-0.000317096710205078,-0.000115394592285156,-1.22838568687439,-0.000331878662109375,-0.000113010406494141,-1.22838568687439,-0.000346660614013672,-0.000108718872070313,-1.22838938236237,-0.000346183776855469,-0.000112533569335938,-1.22839415073395,-0.000360488891601563,-0.000117301940917969,-1.22839510440826,-0.000374794006347656,-0.000117301940917969,-1.22839331626892,-0.000374317169189453,-0.000110626220703125,-1.22839879989624,-0.000375270843505859,-0.000113487243652344,-1.22840368747711,-0.000389575958251953,-0.000118255615234375,-1.22840547561646,-0.000403404235839844,-0.000117301940917969,-1.22840464115143,-0.000403404235839844,-0.00011444091796875,-1.2284083366394,-0.000403404235839844,-0.000119209289550781, +-1.22841429710388,-0.000418663024902344,-0.0001220703125,-1.22841799259186,-0.000418663024902344,-0.000121116638183594,-1.22841715812683,-0.000432491302490234,-0.000118255615234375,-1.22842168807983,-0.000432968139648438,-0.0001220703125,-1.22842860221863,-0.000432968139648438,-0.000123977661132813,-1.22843325138092,-0.000432491302490234,-0.000123023986816406,-1.22843515872955,-0.000447273254394531,-0.000117301940917969,-1.22844183444977,-0.000433444976806641,-0.000123023986816406,-1.22845044732094,-0.000447273254394531,-0.000127792358398438,-1.22838377952576,-0.000258922576904297,-0.000128269195556641,-1.22840189933777,-0.000244617462158203,-0.000138759613037109,-1.2283923625946,-0.000317573547363281,-0.000141620635986328,-1.22839605808258,-0.000346660614013672,-0.000143051147460938,-1.22839987277985,-0.000360965728759766,-0.000142097473144531,-1.22840642929077,-0.000374794006347656,-0.000144004821777344,-1.22840940952301,-0.00038909912109375,-0.000142097473144531,-1.22841715812683,-0.000403881072998047,-0.00014495849609375,-1.22842180728912,-0.000417709350585938,-0.000142097473144531,-1.22843039035797,-0.000417232513427734,-0.000143051147460938,-1.22843706607819,-0.000432968139648438,-0.000141143798828125,-1.22844764590263,-0.000432968139648438,-0.000143051147460938,-1.22845521569252,-0.000432491302490234,-0.000142097473144531,-1.22852098941803,-0.000447273254394531,-8.10623168945313e-05,-1.22854292392731,-0.00038909912109375,-7.82012939453125e-05,-1.22857165336609,-0.000303268432617188,-6.96182250976563e-05,-1.22857356071472,-0.000245094299316406,-6.19888305664063e-05,-1.22851812839508,-0.000432968139648438,-0.000147819519042969,-1.22854292392731,-0.00037384033203125,-0.000144004821777344,-1.22857356071472,-0.000303268432617188,-0.000134944915771484,-1.22857642173767,-0.000246047973632813,-0.000126361846923828,-1.2284961938858,-0.000447273254394531,-0.000121116638183594,-1.2284961938858,-0.000447273254394531,-8.10623168945313e-05,-1.22851622104645,-0.000432491302490234,-0.000123023986816406,-1.22849726676941,-0.000432014465332031, +-0.000149726867675781,-1.22853052616119,-0.000403404235839844,-0.000118255615234375,-1.22853815555573,-0.000418663024902344,-8.0108642578125e-05,-1.22854101657867,-0.000374794006347656,-0.000111579895019531,-1.22853052616119,-0.00040435791015625,-0.000146865844726563,-1.22855639457703,-0.000346183776855469,-0.000112533569335938,-1.22855544090271,-0.000345706939697266,-7.34329223632813e-05,-1.22856783866882,-0.000302791595458984,-0.000104904174804688,-1.22855830192566,-0.000347137451171875,-0.000140190124511719,-1.22857451438904,-0.000274181365966797,-0.000115394592285156,-1.2285783290863,-0.000274181365966797,-6.53266906738281e-05,-1.22857451438904,-0.000244617462158203,-0.000101566314697266,-1.22857642173767,-0.000274658203125,-0.000133037567138672,-1.22848761081696,-0.000462055206298828,-0.000113487243652344,-1.22848868370056,-0.000461578369140625,-8.10623168945313e-05,-1.22849714756012,-0.000447750091552734,-0.000108718872070313,-1.22848188877106,-0.000446796417236328,-0.000133514404296875,-1.22853243350983,-0.000418663024902344,-0.000109672546386719,-1.2285190820694,-0.000432491302490234,-0.000109672546386719,-1.22853910923004,-0.000432968139648438,-7.72476196289063e-05,-1.22853434085846,-0.000403881072998047,-0.000105857849121094,-1.22852385044098,-0.000418663024902344,-0.000127792358398438,-1.22855448722839,-0.000361442565917969,-0.000102043151855469,-1.22854197025299,-0.000374794006347656,-0.000102996826171875,-1.22855162620544,-0.000375270843505859,-7.34329223632813e-05,-1.22855830192566,-0.000346660614013672,-9.918212890625e-05,-1.2285487651825,-0.000361442565917969,-0.000120162963867188,-1.22857928276062,-0.000288486480712891,-8.96453857421875e-05,-1.22857260704041,-0.000302314758300781,-9.20295715332031e-05,-1.2285783290863,-0.000288486480712891,-6.67572021484375e-05,-1.22858119010925,-0.000273227691650391,-8.7738037109375e-05,-1.22857260704041,-0.000288963317871094,-0.000112533569335938,-1.22851145267487,-0.000447750091552734,-0.000113487243652344,-1.2285133600235,-0.000446796417236328,-8.20159912109375e-05, +-1.22850859165192,-0.000432491302490234,-0.000130653381347656,-1.22850668430328,-0.000432491302490234,-0.000141143798828125,-1.22851622104645,-0.000418186187744141,-0.000138282775878906,-1.22850859165192,-0.000432968139648438,-0.000147819519042969,-1.22849535942078,-0.000432491302490234,-0.000140190124511719,-1.22848105430603,-0.000447750091552734,-0.000142097473144531,-1.22848185896873,-0.000447273254394531,-0.000149726867675781,-1.22854101657867,-0.000403881072998047,-0.000105857849121094,-1.22854292392731,-0.000403404235839844,-7.72476196289063e-05,-1.22853434085846,-0.000389575958251953,-0.000128746032714844,-1.22853434085846,-0.00038909912109375,-0.000138282775878906,-1.22854101657867,-0.000374794006347656,-0.000133514404296875,-1.22853624820709,-0.00038909912109375,-0.000145912170410156,-1.22852861881256,-0.00040435791015625,-0.000136375427246094,-1.22852385044098,-0.000418186187744141,-0.000138282775878906,-1.22852671146393,-0.000418663024902344,-0.000146865844726563,-1.22856783866882,-0.000318050384521484,-9.77516174316406e-05,-1.22856593132019,-0.000331878662109375,-6.96182250976563e-05,-1.22856211662292,-0.000318050384521484,-0.000123500823974609,-1.22856307029724,-0.000332355499267578,-0.000130653381347656,-1.22857069969177,-0.000303745269775391,-0.000125885009765625,-1.22856497764587,-0.000332832336425781,-0.000139236450195313,-1.22855639457703,-0.000346660614013672,-0.000131607055664063,-1.2285487651825,-0.000360965728759766,-0.000134468078613281,-1.22855067253113,-0.000361442565917969,-0.000142097473144531,-1.22858119010925,-0.0002593994140625,-8.72611999511719e-05,-1.22858023643494,-0.000258922576904297,-6.34193420410156e-05,-1.22857546806335,-0.000245094299316406,-9.05990600585938e-05,-1.22857451438904,-0.000245094299316406,-0.000110149383544922,-1.22857451438904,-0.000245094299316406,-0.000123977661132813,-1.22857546806335,-0.000245571136474609,-0.000118732452392578,-1.22857642173767,-0.000245094299316406,-0.000131607055664063,-1.22857356071472,-0.000274181365966797,-0.000124454498291016,-1.22857356071472, +-0.000288486480712891,-0.000125885009765625,-1.22857546806335,-0.000288009643554688,-0.000133991241455078,-1.22847428917885,-0.000461578369140625,-0.000110626220703125,-1.22847518324852,-0.000476360321044922,-8.29696655273438e-05,-1.22847425937653,-0.000447750091552734,-0.000142097473144531,-1.22847425937653,-0.000446319580078125,-0.000149726867675781,-1.22847425937653,-0.000447750091552734,-0.000131607055664063,-1.22848856449127,-0.000446796417236328,-0.000142097473144531,-1.22848963737488,-0.000447273254394531,-0.000148773193359375,-1.2284961938858,-0.000446796417236328,-0.000110626220703125,-1.22849535942078,-0.000462055206298828,-8.29696655273438e-05,-1.22848963737488,-0.000446796417236328,-0.00012969970703125,-1.22850298881531,-0.000447750091552734,-0.000111579895019531,-1.22850286960602,-0.000461578369140625,-8.20159912109375e-05,-1.22850108146667,-0.000432491302490234,-0.000140190124511719,-1.22850382328033,-0.000432014465332031,-0.000147819519042969,-1.2285019159317,-0.000432968139648438,-0.000128746032714844,-1.22851145267487,-0.000432968139648438,-0.000140190124511719,-1.2285133600235,-0.000432968139648438,-0.000148773193359375,-1.2285190820694,-0.000433444976806641,-0.000111579895019531,-1.22852098941803,-0.000447273254394531,-8.0108642578125e-05,-1.22851431369781,-0.000432491302490234,-0.000127792358398438,-1.22852575778961,-0.000432491302490234,-0.000108718872070313,-1.22853052616119,-0.000446796417236328,-7.82012939453125e-05,-1.22852003574371,-0.000417709350585938,-0.000139236450195313,-1.22852289676666,-0.000417709350585938,-0.000147819519042969,-1.2285190820694,-0.000418663024902344,-0.000124931335449219,-1.22852671146393,-0.000403404235839844,-0.000138282775878906,-1.22852861881256,-0.000403404235839844,-0.00014495849609375,-1.22853529453278,-0.000417232513427734,-0.000108718872070313,-1.22854101657867,-0.000418663024902344,-7.82012939453125e-05,-1.22852861881256,-0.000403881072998047,-0.000123023986816406,-1.22853815555573,-0.00040435791015625,-0.000105857849121094,-1.22854292392731,-0.000418186187744141, +-7.82012939453125e-05,-1.22853147983551,-0.000403881072998047,-0.0001373291015625,-1.22853338718414,-0.00040435791015625,-0.000144004821777344,-1.22853052616119,-0.000403881072998047,-0.000123977661132813,-1.22853720188141,-0.00038909912109375,-0.000134468078613281,-1.22853910923004,-0.00038909912109375,-0.000144004821777344,-1.22854292392731,-0.000389575958251953,-0.000102996826171875,-1.22854387760162,-0.00038909912109375,-7.53402709960938e-05,-1.22853815555573,-0.000389575958251953,-0.000119209289550781,-1.22854781150818,-0.000375270843505859,-0.000102043151855469,-1.22854685783386,-0.00038909912109375,-7.2479248046875e-05,-1.22854471206665,-0.000374794006347656,-0.000134468078613281,-1.22854685783386,-0.00037384033203125,-0.000144004821777344,-1.22854387760162,-0.000374317169189453,-0.000121116638183594,-1.22855257987976,-0.000360965728759766,-0.000132560729980469,-1.22855448722839,-0.000361442565917969,-0.000142097473144531,-1.22856020927429,-0.000346660614013672,-9.918212890625e-05,-1.22855639457703,-0.000345706939697266,-7.2479248046875e-05,-1.22855544090271,-0.000346660614013672,-0.000118255615234375,-1.22856402397156,-0.000346660614013672,-9.72747802734375e-05,-1.22856116294861,-0.000346660614013672,-7.15255737304688e-05,-1.22855925559998,-0.000331401824951172,-0.000131607055664063,-1.22856116294861,-0.000331878662109375,-0.000139236450195313,-1.22855830192566,-0.000331878662109375,-0.000119209289550781,-1.22856688499451,-0.000318050384521484,-0.000128746032714844,-1.22856879234314,-0.000316619873046875,-0.000136852264404297,-1.22857356071472,-0.000302791595458984,-9.44137573242188e-05,-1.22857069969177,-0.000302791595458984,-6.77108764648438e-05,-1.22856593132019,-0.000302791595458984,-0.000115394592285156,-1.22847518324852,-0.000461578369140625,-9.1552734375e-05,-1.22858214378357,-0.000258922576904297,-7.10487365722656e-05,-1.22857451438904,-0.000245094299316406,-7.10487365722656e-05,-1.22849714756012,-0.000447273254394531,-9.1552734375e-05,-1.22850286960602,-0.000446796417236328,-9.1552734375e-05,-1.22851431369781, +-0.000447273254394531,-8.96453857421875e-05,-1.22852194309235,-0.000446796417236328,-8.7738037109375e-05,-1.22849714756012,-0.000461578369140625,-8.96453857421875e-05,-1.22852194309235,-0.000432491302490234,-8.7738037109375e-05,-1.22848951816559,-0.000461101531982422,-9.1552734375e-05,-1.22853052616119,-0.000432968139648438,-8.86917114257813e-05,-1.22853815555573,-0.000432491302490234,-8.86917114257813e-05,-1.22854006290436,-0.000418186187744141,-8.96453857421875e-05,-1.22853720188141,-0.000418186187744141,-8.7738037109375e-05,-1.22854292392731,-0.000418186187744141,-8.67843627929688e-05,-1.22854387760162,-0.00040435791015625,-8.48770141601563e-05,-1.22854495048523,-0.00038909912109375,-8.392333984375e-05,-1.22854387760162,-0.00038909912109375,-8.48770141601563e-05,-1.22854781150818,-0.000389575958251953,-8.29696655273438e-05,-1.22855448722839,-0.000374794006347656,-8.20159912109375e-05,-1.22855830192566,-0.000346660614013672,-8.10623168945313e-05,-1.22855734825134,-0.000345706939697266,-8.10623168945313e-05,-1.22856402397156,-0.000346660614013672,-7.91549682617188e-05,-1.22856783866882,-0.000331878662109375,-7.82012939453125e-05,-1.22857356071472,-0.000303268432617188,-7.72476196289063e-05,-1.22857356071472,-0.000302791595458984,-7.53402709960938e-05,-1.22858023643494,-0.000288963317871094,-7.43865966796875e-05,-1.22858119010925,-0.000274181365966797,-7.2479248046875e-05,-1.22851717472076,-0.000432968139648438,-8.10623168945313e-05,-1.22853815555573,-0.00038909912109375,-7.82012939453125e-05,-1.22856116294861,-0.000302791595458984,-6.91413879394531e-05,-1.22856688499451,-0.000245094299316406,-6.19888305664063e-05,-1.22849440574646,-0.000447273254394531,-0.000120162963867188,-1.22849524021149,-0.000446796417236328,-8.10623168945313e-05,-1.22851240634918,-0.000418186187744141,-0.000123977661132813,-1.2285248041153,-0.000403881072998047,-0.000119209289550781,-1.22853243350983,-0.000418186187744141,-7.72476196289063e-05,-1.22853624820709,-0.000374317169189453,-0.000111579895019531,-1.22854495048523,-0.000331878662109375, +-0.000111579895019531,-1.22854685783386,-0.000346660614013672,-7.34329223632813e-05,-1.22855925559998,-0.000288486480712891,-0.000108718872070313,-1.22856020927429,-0.000259876251220703,-0.00011444091796875,-1.22856116294861,-0.000274181365966797,-6.38961791992188e-05,-1.22856307029724,-0.000245094299316406,-0.000102519989013672,-1.22848105430603,-0.000446796417236328,-0.000110626220703125,-1.22848296165466,-0.000461578369140625,-8.20159912109375e-05,-1.22849535942078,-0.000446796417236328,-0.000110626220703125,-1.22847899794579,-0.000447750091552734,-0.000132560729980469,-1.2285190820694,-0.000418186187744141,-0.000109672546386719,-1.22851431369781,-0.000432491302490234,-0.000111579895019531,-1.22852671146393,-0.000432491302490234,-7.91549682617188e-05,-1.22852671146393,-0.00040435791015625,-0.0001068115234375,-1.22851622104645,-0.000417709350585938,-0.000125885009765625,-1.22853434085846,-0.000360965728759766,-0.000100135803222656,-1.22853720188141,-0.000375270843505859,-0.000102996826171875,-1.22853624820709,-0.000360488891601563,-7.34329223632813e-05,-1.22854292392731,-0.000346660614013672,-0.000101089477539063,-1.22853720188141,-0.000360965728759766,-0.0001220703125,-1.22855639457703,-0.000288486480712891,-8.96453857421875e-05,-1.22855830192566,-0.000288486480712891,-9.48905944824219e-05,-1.22856020927429,-0.000288963317871094,-6.67572021484375e-05,-1.22855734825134,-0.000274181365966797,-8.82148742675781e-05,-1.22855925559998,-0.000288486480712891,-0.000112533569335938,-1.22850489616394,-0.000432491302490234,-0.000111579895019531,-1.2285076379776,-0.000447750091552734,-8.0108642578125e-05,-1.22850096225739,-0.000432491302490234,-0.00012969970703125,-1.22850012779236,-0.000432968139648438,-0.000136375427246094,-1.2285076379776,-0.000418186187744141,-0.0001373291015625,-1.2284904718399,-0.000432491302490234,-0.000138282775878906,-1.2284791469574,-0.000447273254394531,-0.000139236450195313,-1.22852766513824,-0.000389575958251953,-0.000102996826171875,-1.22853052616119,-0.000403881072998047,-7.43865966796875e-05, +-1.22852575778961,-0.00038909912109375,-0.000123023986816406,-1.22852575778961,-0.00038909912109375,-0.000132560729980469,-1.22853147983551,-0.000374794006347656,-0.000132560729980469,-1.22852098941803,-0.000403881072998047,-0.000134468078613281,-1.22851526737213,-0.000418663024902344,-0.000135421752929688,-1.22854781150818,-0.000317573547363281,-9.48905944824219e-05,-1.22855162620544,-0.000317573547363281,-6.96182250976563e-05,-1.2285487651825,-0.000317573547363281,-0.000120639801025391,-1.22854971885681,-0.000317573547363281,-0.000126838684082031,-1.22855257987976,-0.000288486480712891,-0.000125885009765625,-1.22854387760162,-0.000346660614013672,-0.000128746032714844,-1.22853720188141,-0.000360965728759766,-0.000130653381347656,-1.22855925559998,-0.0002593994140625,-8.72611999511719e-05,-1.22856307029724,-0.000259876251220703,-6.29425048828125e-05,-1.22856307029724,-0.000244617462158203,-9.05990600585938e-05,-1.22856211662292,-0.000245094299316406,-0.000109195709228516,-1.22855544090271,-0.000244617462158203,-0.000120639801025391,-1.22855734825134,-0.000259876251220703,-0.0001220703125,-1.22855544090271,-0.000274181365966797,-0.000124454498291016,-1.22847139835358,-0.000447750091552734,-0.000110626220703125,-1.22847233712673,-0.000462055206298828,-8.20159912109375e-05,-1.22847330570221,-0.000446796417236328,-0.000139236450195313,-1.22847330570221,-0.000447750091552734,-0.000131607055664063,-1.22848379611969,-0.000432968139648438,-0.000139236450195313,-1.22849154472351,-0.000447273254394531,-0.000110626220703125,-1.22849154472351,-0.000461101531982422,-8.0108642578125e-05,-1.22848761081696,-0.000432491302490234,-0.000128746032714844,-1.22849726676941,-0.000447750091552734,-0.000110626220703125,-1.22849822044373,-0.000447273254394531,-8.0108642578125e-05,-1.22849524021149,-0.000432968139648438,-0.0001373291015625,-1.22849714756012,-0.000432968139648438,-0.000127792358398438,-1.22850382328033,-0.000418663024902344,-0.000136375427246094,-1.22851049900055,-0.000432491302490234,-0.000109672546386719,-1.22851431369781, +-0.000447750091552734,-7.91549682617188e-05,-1.2285076379776,-0.000418663024902344,-0.000126838684082031,-1.22851431369781,-0.000418186187744141,-0.000108718872070313,-1.22852098941803,-0.000432491302490234,-7.91549682617188e-05,-1.22851240634918,-0.000418186187744141,-0.000136375427246094,-1.22851240634918,-0.000417232513427734,-0.000126838684082031,-1.22851812839508,-0.000403404235839844,-0.000136375427246094,-1.22852385044098,-0.000403404235839844,-0.000107765197753906,-1.22853052616119,-0.000417709350585938,-7.91549682617188e-05,-1.22852194309235,-0.000403881072998047,-0.0001220703125,-1.2285248041153,-0.000403881072998047,-0.000105857849121094,-1.22853052616119,-0.000403404235839844,-7.82012939453125e-05,-1.22852385044098,-0.00038909912109375,-0.000133514404296875,-1.22852385044098,-0.000403881072998047,-0.000123023986816406,-1.22852861881256,-0.00038909912109375,-0.000132560729980469,-1.22853147983551,-0.000389575958251953,-0.000102996826171875,-1.22853434085846,-0.00038909912109375,-7.62939453125e-05,-1.22853052616119,-0.000375747680664063,-0.000118255615234375,-1.22853434085846,-0.000375270843505859,-0.000102043151855469,-1.22853624820709,-0.000374317169189453,-7.43865966796875e-05,-1.22853434085846,-0.000374794006347656,-0.000132560729980469,-1.22853624820709,-0.000375270843505859,-0.000118255615234375,-1.22853910923004,-0.000360965728759766,-0.000131607055664063,-1.22853910923004,-0.000346183776855469,-0.000100135803222656,-1.22854101657867,-0.000346660614013672,-7.15255737304688e-05,-1.22854292392731,-0.000346660614013672,-0.000118255615234375,-1.22854292392731,-0.000332355499267578,-9.67979431152344e-05,-1.22854781150818,-0.000332355499267578,-7.00950622558594e-05,-1.22854685783386,-0.000331878662109375,-0.00012969970703125,-1.22854590415955,-0.000331878662109375,-0.000118732452392578,-1.22855162620544,-0.000302791595458984,-0.000126361846923828,-1.22855353355408,-0.000302314758300781,-9.48905944824219e-05,-1.22855639457703,-0.000302791595458984,-6.81877136230469e-05,-1.22855448722839,-0.000302791595458984, +-0.000117301940917969,-1.22847136855125,-0.000462055206298828,-9.1552734375e-05,-1.22855925559998,-0.000259876251220703,-7.00950622558594e-05,-1.22856402397156,-0.000245571136474609,-7.05718994140625e-05,-1.22849535942078,-0.000446796417236328,-8.96453857421875e-05,-1.22849726676941,-0.000447273254394531,-9.05990600585938e-05,-1.22850668430328,-0.000447750091552734,-9.1552734375e-05,-1.2285133600235,-0.000432968139648438,-8.7738037109375e-05,-1.22849154472351,-0.000447750091552734,-8.7738037109375e-05,-1.22851622104645,-0.000432491302490234,-9.05990600585938e-05,-1.22848200798035,-0.000461578369140625,-9.1552734375e-05,-1.22851717472076,-0.000432491302490234,-8.7738037109375e-05,-1.22852289676666,-0.000418663024902344,-8.86917114257813e-05,-1.22852671146393,-0.000418663024902344,-8.67843627929688e-05,-1.22853052616119,-0.000418663024902344,-8.67843627929688e-05,-1.22852671146393,-0.000403404235839844,-8.58306884765625e-05,-1.22852861881256,-0.00038909912109375,-8.48770141601563e-05,-1.22853243350983,-0.000389575958251953,-8.48770141601563e-05,-1.22853815555573,-0.00038909912109375,-8.48770141601563e-05,-1.22853529453278,-0.000375270843505859,-8.29696655273438e-05,-1.22853338718414,-0.000360965728759766,-8.0108642578125e-05,-1.22853910923004,-0.000346660614013672,-8.0108642578125e-05,-1.22854483127594,-0.000346183776855469,-7.91549682617188e-05,-1.22854387760162,-0.000331401824951172,-8.0108642578125e-05,-1.22854781150818,-0.000317096710205078,-7.86781311035156e-05,-1.22855353355408,-0.000303745269775391,-7.62939453125e-05,-1.22855830192566,-0.000302314758300781,-7.62939453125e-05,-1.22855639457703,-0.000288486480712891,-7.48634338378906e-05,-1.22855734825134,-0.000274181365966797,-7.2479248046875e-05,-1.22847332060337,-0.000461578369140625,-8.10623168945313e-05,-1.22848471999168,-0.000462055206298828,-8.0108642578125e-05,-1.22849333286285,-0.000462055206298828,-7.72476196289063e-05,-1.22849535942078,-0.000446796417236328,-8.10623168945313e-05,-1.22850012779236,-0.000446796417236328,-8.0108642578125e-05,-1.22851049900055, +-0.000447750091552734,-8.0108642578125e-05,-1.22851812839508,-0.000446796417236328,-7.72476196289063e-05,-1.2285190820694,-0.000432968139648438,-7.91549682617188e-05,-1.22852671146393,-0.000432491302490234,-7.72476196289063e-05,-1.22853434085846,-0.000432491302490234,-7.62939453125e-05,-1.22853720188141,-0.000418186187744141,-7.53402709960938e-05,-1.22853529453278,-0.000418186187744141,-7.72476196289063e-05,-1.22853624820709,-0.000418186187744141,-7.72476196289063e-05,-1.22853720188141,-0.000403881072998047,-7.43865966796875e-05,-1.22853910923004,-0.00038909912109375,-7.62939453125e-05,-1.22854006290436,-0.000389575958251953,-7.62939453125e-05,-1.22854197025299,-0.000375270843505859,-7.43865966796875e-05,-1.22854387760162,-0.000375747680664063,-7.43865966796875e-05,-1.2285487651825,-0.000345706939697266,-7.2479248046875e-05,-1.22855162620544,-0.000346660614013672,-7.2479248046875e-05,-1.22855448722839,-0.000331878662109375,-6.96182250976563e-05,-1.22855830192566,-0.000317096710205078,-6.96182250976563e-05,-1.22856402397156,-0.000302314758300781,-6.72340393066406e-05,-1.22856688499451,-0.000302314758300781,-6.866455078125e-05,-1.22856879234314,-0.000288486480712891,-6.4849853515625e-05,-1.22856974601746,-0.000274181365966797,-6.62803649902344e-05,-1.22857165336609,-0.000259876251220703,-6.19888305664063e-05,-1.22856974601746,-0.000245094299316406,-6.103515625e-05,-1.22847425937653,-0.000447750091552734,-0.000134468078613281,-1.22851526737213,-0.000418186187744141,-0.000127792358398438,-1.2285133600235,-0.000432968139648438,-0.00012969970703125,-1.2285076379776,-0.000432968139648438,-0.000134468078613281,-1.22850096225739,-0.000432491302490234,-0.000131607055664063,-1.2285190820694,-0.000418663024902344,-0.000130653381347656,-1.22849535942078,-0.000446796417236328,-0.000125885009765625,-1.22852385044098,-0.000418663024902344,-0.000130653381347656,-1.22848951816559,-0.000447750091552734,-0.000133514404296875,-1.22852766513824,-0.00040435791015625,-0.000125885009765625,-1.22848090529442,-0.000447273254394531,-0.000136375427246094, +-1.22852957248688,-0.000403881072998047,-0.0001220703125,-1.22853052616119,-0.000403881072998047,-0.000126838684082031,-1.22853434085846,-0.000389575958251953,-0.000132560729980469,-1.22853815555573,-0.000389575958251953,-0.000125885009765625,-1.22854006290436,-0.000375270843505859,-0.000117301940917969,-1.22854387760162,-0.000374317169189453,-0.000123023986816406,-1.2285487651825,-0.000360965728759766,-0.000125885009765625,-1.22855544090271,-0.000346660614013672,-0.0001220703125,-1.22855639457703,-0.000346660614013672,-0.000117301940917969,-1.22855830192566,-0.000331878662109375,-0.0001220703125,-1.22856211662292,-0.000317573547363281,-0.000125885009765625,-1.22856688499451,-0.000302791595458984,-0.000118732452392578,-1.22856879234314,-0.000302791595458984,-0.000110626220703125,-1.22857260704041,-0.000288486480712891,-0.000116348266601563,-1.22857356071472,-0.000274181365966797,-0.000117778778076172,-1.22857451438904,-0.000245094299316406,-0.000113010406494141,-1.22857546806335,-0.000244617462158203,-0.000106334686279297,-1.22856211662292,-0.000245094299316406,-0.000105857849121094,-1.22856020927429,-0.000244617462158203,-0.000113487243652344,-1.22847424447536,-0.000446796417236328,-0.000128746032714844,-1.22847239673138,-0.000447273254394531,-0.000123977661132813,-1.22848477959633,-0.000447750091552734,-0.000127792358398438,-1.22849237918854,-0.000447273254394531,-0.000124931335449219,-1.2284961938858,-0.000447273254394531,-0.000118255615234375,-1.2285019159317,-0.000433444976806641,-0.000125885009765625,-1.22850954532623,-0.000432491302490234,-0.000126838684082031,-1.22851526737213,-0.000432491302490234,-0.000123023986816406,-1.22851717472076,-0.000432968139648438,-0.000120162963867188,-1.22852098941803,-0.000418663024902344,-0.0001220703125,-1.22852671146393,-0.000418663024902344,-0.000123977661132813,-1.22853052616119,-0.000403404235839844,-0.000118255615234375,-1.22853147983551,-0.000403881072998047,-0.000115394592285156,-1.22853338718414,-0.000403404235839844,-0.000119209289550781,-1.22853624820709,-0.000389575958251953, +-0.000123977661132813,-1.22854006290436,-0.00038909912109375,-0.000116348266601563,-1.22854101657867,-0.000374317169189453,-0.000108718872070313,-1.22854483127594,-0.000374794006347656,-0.000115394592285156,-1.22855067253113,-0.000360965728759766,-0.000116348266601563,-1.22855734825134,-0.000346183776855469,-0.000112533569335938,-1.22855734825134,-0.000346660614013672,-0.000108718872070313,-1.22856020927429,-0.000332355499267578,-0.000113487243652344,-1.22856402397156,-0.000317096710205078,-0.000117301940917969,-1.22856879234314,-0.000302791595458984,-0.000110626220703125,-1.22856974601746,-0.000302314758300781,-0.000102996826171875,-1.22857546806335,-0.000288486480712891,-0.0001068115234375,-1.22857737541199,-0.000274181365966797,-0.000107765197753906,-1.22857737541199,-0.000245571136474609,-0.000103950500488281,-1.22857546806335,-0.000244617462158203,-0.000100135803222656,-1.22856307029724,-0.000245571136474609,-9.918212890625e-05,-1.22856020927429,-0.000244617462158203,-0.000102996826171875,-1.22855830192566,-0.000274181365966797,-0.000107288360595703,-1.22855734825134,-0.000288963317871094,-0.000107765197753906,-1.22855830192566,-0.000288963317871094,-0.000105857849121094,-1.22855353355408,-0.000303745269775391,-0.000110626220703125,-1.22854781150818,-0.000317096710205078,-0.000115394592285156,-1.22854399681091,-0.000331878662109375,-0.000113010406494141,-1.22854387760162,-0.000346660614013672,-0.000108718872070313,-1.22854197025299,-0.000346183776855469,-0.000112533569335938,-1.22853624820709,-0.000360488891601563,-0.000117301940917969,-1.22853529453278,-0.000374794006347656,-0.000117301940917969,-1.22853624820709,-0.000374317169189453,-0.000110626220703125,-1.22853052616119,-0.000375270843505859,-0.000113487243652344,-1.22852575778961,-0.000389575958251953,-0.000118255615234375,-1.22852385044098,-0.000403404235839844,-0.000117301940917969,-1.22852575778961,-0.000403404235839844,-0.00011444091796875,-1.22852194309235,-0.000403404235839844,-0.000119209289550781,-1.22851622104645,-0.000418663024902344,-0.0001220703125, +-1.22851240634918,-0.000418663024902344,-0.000121116638183594,-1.2285133600235,-0.000432491302490234,-0.000118255615234375,-1.22850859165192,-0.000432968139648438,-0.0001220703125,-1.22850096225739,-0.000432968139648438,-0.000123977661132813,-1.22849726676941,-0.000432491302490234,-0.000123023986816406,-1.22849524021149,-0.000447273254394531,-0.000117301940917969,-1.22848856449127,-0.000433444976806641,-0.000123023986816406,-1.2284799516201,-0.000447273254394531,-0.000127792358398438,-1.22854685783386,-0.000258922576904297,-0.000128269195556641,-1.22852861881256,-0.000244617462158203,-0.000138759613037109,-1.22853815555573,-0.000317573547363281,-0.000141620635986328,-1.22853434085846,-0.000346660614013672,-0.000143051147460938,-1.22853052616119,-0.000360965728759766,-0.000142097473144531,-1.22852289676666,-0.000374794006347656,-0.000144004821777344,-1.22852003574371,-0.00038909912109375,-0.000142097473144531,-1.2285133600235,-0.000403881072998047,-0.00014495849609375,-1.22850859165192,-0.000417709350585938,-0.000142097473144531,-1.22850012779236,-0.000417232513427734,-0.000143051147460938,-1.22849249839783,-0.000432968139648438,-0.000141143798828125,-1.22848188877106,-0.000432968139648438,-0.000143051147460938,-1.22847521305084,-0.000432491302490234,-0.000142097473144531,-1.22846956551075,-0.000447273254394531,-0.000142097473144531,-1.2284694686532,-0.000446319580078125,-0.000150680541992188,-1.22846948355436,-0.000446796417236328,-0.000131607055664063,-1.22846956551075,-0.000446796417236328,-0.000126838684082031,-1.22846854478121,-0.000447273254394531,-0.000123977661132813,-1.22846852242947,-0.000461578369140625,-0.000110626220703125,-1.22846852242947,-0.000462055206298828,-9.1552734375e-05,-1.22846853733063,-0.000461578369140625,-8.20159912109375e-05,-1.22846853733063,-0.000462055206298828,-8.20159912109375e-05,-1.22846871614456,-0.000461101531982422,-8.20159912109375e-05,-1.22846757620573,-0.000461101531982422,-9.34600830078125e-05,-1.22846761345863,-0.000447273254394531,-0.000110626220703125,-1.22846853733063, +-0.000447750091552734,-0.000123023986816406,-1.22846858203411,-0.000446796417236328,-0.000127792358398438,-1.22846857458353,-0.000447750091552734,-0.000139236450195313,-1.22846852988005,-0.000432968139648438,-0.000144004821777344,-1.22847139835358,-0.000432968139648438,-0.000146865844726563,-1.22847521305084,-0.000432491302490234,-0.000149726867675781,-1.2284791469574,-0.000418663024902344,-0.000152587890625,-1.22848185896873,-0.000417709350585938,-0.000153541564941406,-1.2284848690033,-0.000403881072998047,-0.000157356262207031,-1.22848761081696,-0.00038909912109375,-0.000159263610839844,-1.2284904718399,-0.000375270843505859,-0.00016021728515625,-1.22849345207214,-0.000360965728759766,-0.000163078308105469,-1.2284961938858,-0.000346660614013672,-0.000162124633789063,-1.22849905490875,-0.000317573547363281,-0.000158309936523438,-1.2284609824419,-0.000447273254394531,-0.000142097473144531,-1.22846096754074,-0.000446319580078125,-0.000150680541992188,-1.22846096009016,-0.000446796417236328,-0.000131607055664063,-1.22846089303493,-0.000446796417236328,-0.000126838684082031,-1.22846188396215,-0.000447273254394531,-0.000123977661132813,-1.22846192866564,-0.000461578369140625,-0.000110626220703125,-1.2284619063139,-0.000462055206298828,-9.1552734375e-05,-1.22846189886332,-0.000461578369140625,-8.20159912109375e-05,-1.22846193611622,-0.000462055206298828,-8.20159912109375e-05,-1.22846184670925,-0.000461101531982422,-8.20159912109375e-05,-1.22846285253763,-0.000461101531982422,-9.34600830078125e-05,-1.22846188396215,-0.000447273254394531,-0.000110626220703125,-1.22846189141273,-0.000447750091552734,-0.000123023986816406,-1.22846090048552,-0.000446796417236328,-0.000127792358398438,-1.22846093028784,-0.000447750091552734,-0.000139236450195313,-1.22846189886332,-0.000432968139648438,-0.000144004821777344,-1.2284591794014,-0.000432968139648438,-0.000146865844726563,-1.22845524549484,-0.000432491302490234,-0.000149726867675781,-1.22845134139061,-0.000418663024902344,-0.000152587890625,-1.22844853997231,-0.000417709350585938, +-0.000153541564941406,-1.22844564914703,-0.000403881072998047,-0.000157356262207031,-1.22844278812408,-0.00038909912109375,-0.000159263610839844,-1.22843992710114,-0.000375270843505859,-0.00016021728515625,-1.22843706607819,-0.000360965728759766,-0.000163078308105469,-1.22843337059021,-0.000346660614013672,-0.000162124633789063,-1.22843050956726,-0.000317573547363281,-0.000158309936523438,-1.22836852073669,-0.000230312347412109,-0.000105857849121094,-1.22836756706238,-0.000231266021728516,-0.000100612640380859,-1.22836661338806,-0.000230312347412109,-9.01222229003906e-05,-1.22836565971375,-0.000245571136474609,-7.00950622558594e-05,-1.22836661338806,-0.000230789184570313,-9.77516174316406e-05,-1.22837615013123,-0.000231266021728516,-0.000123500823974609,-1.22856307029724,-0.000231266021728516,-0.000100612640380859,-1.22856116294861,-0.000230312347412109,-0.000105857849121094,-1.22856402397156,-0.000245571136474609,-7.00950622558594e-05,-1.22856307029724,-0.000230312347412109,-9.01222229003906e-05,-1.22856307029724,-0.000230789184570313,-9.77516174316406e-05,-1.22855353355408,-0.000230789184570313,-0.000123023986816406,-1.22835445404053,-0.000245094299316406,-7.15255737304688e-05,-1.22835612297058,-0.000245094299316406,-6.24656677246094e-05,-1.22835993766785,-0.000245571136474609,-6.15119934082031e-05,-1.2283627986908,-0.000245571136474609,-6.29425048828125e-05,-1.22836565971375,-0.000245094299316406,-7.15255737304688e-05,-1.22836661338806,-0.000245094299316406,-9.05990600585938e-05,-1.22836756706238,-0.000245571136474609,-9.918212890625e-05,-1.22836661338806,-0.000245571136474609,-0.000101089477539063,-1.22836852073669,-0.000245571136474609,-0.000105381011962891,-1.22837615013123,-0.000230312347412109,-0.000122547149658203,-1.22855353355408,-0.000230312347412109,-0.000122547149658203,-1.22856116294861,-0.000245571136474609,-0.000105381011962891,-1.22856307029724,-0.000245571136474609,-0.000101089477539063,-1.22856307029724,-0.000245571136474609,-9.918212890625e-05,-1.22856307029724,-0.000245094299316406,-9.05990600585938e-05, +-1.22856402397156,-0.000245094299316406,-7.15255737304688e-05,-1.22856688499451,-0.000245571136474609,-6.29425048828125e-05,-1.22857069969177,-0.000245571136474609,-6.15119934082031e-05,-1.22857451438904,-0.000245094299316406,-6.24656677246094e-05,-1.22857546806335,-0.000245094299316406,-7.15255737304688e-05,-1.22857546806335,-0.000244617462158203,-9.05990600585938e-05,-1.22835516929626,-0.000244617462158203,-9.05990600585938e-05,-1.22855925559998,-0.000230789184570313,-0.000113487243652344,-1.22856020927429,-0.000231266021728516,-0.00011444091796875,-1.22837138175964,-0.000230789184570313,-0.000113487243652344,-1.22837042808533,-0.000231266021728516,-0.00011444091796875,-1.22846476174891,-0.000332355499267578,-0.000165939331054688,-1.22850000858307,-0.000273227691650391,-0.000149250030517578,-1.22852003574371,-0.000230312347412109,-0.0001373291015625,-1.2284647654742,-0.000274181365966797,-0.000145912170410156,-1.22849726676941,-0.0002593994140625,-0.000142097473144531,-1.22840464115143,-0.000216484069824219,-0.000131130218505859,-1.22840940952301,-0.000231266021728516,-0.000136375427246094,-1.22839415073395,-0.000201702117919922,-0.000131130218505859,-1.22839879989624,-0.000202178955078125,-0.000131130218505859,-1.22854590415955,-0.000187397003173828,-0.000131130218505859,-1.22854006290436,-0.000173568725585938,-0.000128269195556641,-1.2285248041153,-0.000216484069824219,-0.000131607055664063,-1.22853529453278,-0.000201702117919922,-0.000131607055664063,-1.22853052616119,-0.000202655792236328,-0.000130653381347656,-1.22838377952576,-0.000187397003173828,-0.000131130218505859,-1.22838938236237,-0.000173568725585938,-0.000128269195556641,-1.22844949364662,-0.000461578369140625,-0.000112533569335938,-1.22845038771629,-0.000447273254394531,-0.000126838684082031,-1.22840082645416,-0.000432491302490234,-0.000108718872070313,-1.22840654850006,-0.000418186187744141,-0.000123977661132813,-1.22837996482849,-0.000374794006347656,-0.000102043151855469,-1.22838282585144,-0.000374317169189453,-0.000117301940917969,-1.22842264175415, +-0.000461101531982422,-8.10623168945313e-05,-1.22841608524323,-0.000447273254394531,-8.392333984375e-05,-1.22842180728912,-0.000447273254394531,-9.1552734375e-05,-1.22842764854431,-0.000461578369140625,-8.29696655273438e-05,-1.22842180728912,-0.000461578369140625,-8.48770141601563e-05,-1.22842085361481,-0.000432491302490234,-0.000140190124511719,-1.22841989994049,-0.000432491302490234,-0.000134468078613281,-1.22844564914703,-0.000446796417236328,-0.000142097473144531,-1.22844469547272,-0.000447273254394531,-0.000148773193359375,-1.22838664054871,-0.000403404235839844,-7.62939453125e-05,-1.22838568687439,-0.00040435791015625,-7.91549682617188e-05,-1.22838664054871,-0.000403881072998047,-8.58306884765625e-05,-1.22838664054871,-0.000418186187744141,-8.0108642578125e-05,-1.22838568687439,-0.00040435791015625,-8.0108642578125e-05,-1.22839415073395,-0.00038909912109375,-0.000138282775878906,-1.22839415073395,-0.000389575958251953,-0.000128746032714844,-1.22840464115143,-0.000418663024902344,-0.000139236450195313,-1.22840285301208,-0.000417709350585938,-0.000146865844726563,-1.22836756706238,-0.000331878662109375,-7.05718994140625e-05,-1.22836375236511,-0.000332355499267578,-7.20024108886719e-05,-1.22836470603943,-0.000332355499267578,-7.91549682617188e-05,-1.22836756706238,-0.000346660614013672,-7.43865966796875e-05,-1.22836470603943,-0.000331878662109375,-7.29560852050781e-05,-1.22836565971375,-0.000317096710205078,-0.000129222869873047,-1.22836565971375,-0.000317096710205078,-0.000123023986816406,-1.22837996482849,-0.000360965728759766,-0.000132560729980469,-1.22837805747986,-0.000360488891601563,-0.000142097473144531,-1.22834825515747,-0.000259876251220703,-8.7738037109375e-05,-1.22834753990173,-0.000259876251220703,-7.20024108886719e-05,-1.22835421562195,-0.000245094299316406,-0.000105857849121094,-1.22835421562195,-0.000245571136474609,-0.000111103057861328,-1.22835445404053,-0.000274658203125,-0.000134944915771484,-1.22835612297058,-0.000274658203125,-0.000125885009765625,-1.22844868898392,-0.000462055206298828,-8.29696655273438e-05, +-1.22844004631042,-0.000461578369140625,-8.67843627929688e-05,-1.22844758629799,-0.000461578369140625,-9.25064086914063e-05,-1.22845521569252,-0.000475883483886719,-8.48770141601563e-05,-1.22844764590263,-0.000461101531982422,-8.48770141601563e-05,-1.22843432426453,-0.000461578369140625,-8.20159912109375e-05,-1.22843325138092,-0.000447750091552734,-8.48770141601563e-05,-1.22843325138092,-0.000447750091552734,-8.96453857421875e-05,-1.22843325138092,-0.000461578369140625,-8.48770141601563e-05,-1.22843337059021,-0.000462055206298828,-8.48770141601563e-05,-1.22843432426453,-0.000447273254394531,-0.000111579895019531,-1.22843611240387,-0.000446796417236328,-0.000121116638183594,-1.22839426994324,-0.000432491302490234,-7.82012939453125e-05,-1.22839021682739,-0.000432491302490234,-8.29696655273438e-05,-1.22839617729187,-0.000432491302490234,-8.86917114257813e-05,-1.22839903831482,-0.000446796417236328,-8.29696655273438e-05,-1.22839426994324,-0.000432968139648438,-8.20159912109375e-05,-1.22839021682739,-0.000417709350585938,-7.91549682617188e-05,-1.22839212417603,-0.000418186187744141,-8.29696655273438e-05,-1.22839212417603,-0.000418186187744141,-8.7738037109375e-05,-1.22838950157166,-0.000418663024902344,-8.20159912109375e-05,-1.22839140892029,-0.000418186187744141,-8.29696655273438e-05,-1.22839593887329,-0.000418663024902344,-0.000108718872070313,-1.22839891910553,-0.000403881072998047,-0.000116348266601563,-1.22837996482849,-0.000375270843505859,-7.2479248046875e-05,-1.22837615013123,-0.000375270843505859,-7.62939453125e-05,-1.22837901115417,-0.000375747680664063,-8.20159912109375e-05,-1.22838187217712,-0.00038909912109375,-7.82012939453125e-05,-1.22837901115417,-0.000374794006347656,-7.72476196289063e-05,-1.22837519645691,-0.000346660614013672,-7.2479248046875e-05,-1.22837424278259,-0.000346660614013672,-7.53402709960938e-05,-1.22837233543396,-0.000346660614013672,-8.10623168945313e-05,-1.22837233543396,-0.000346660614013672,-7.43865966796875e-05,-1.22837328910828,-0.000346660614013672,-7.53402709960938e-05,-1.22837138175964, +-0.000346183776855469,-0.000100135803222656,-1.22837233543396,-0.000346660614013672,-0.000110626220703125,-1.22835230827332,-0.000288486480712891,-6.58035278320313e-05,-1.22834920883179,-0.000273704528808594,-6.72340393066406e-05,-1.22834968566895,-0.000288009643554688,-7.2479248046875e-05,-1.22835040092468,-0.000288486480712891,-6.91413879394531e-05,-1.22834968566895,-0.000288009643554688,-6.77108764648438e-05,-1.22834920883179,-0.000274181365966797,-8.86917114257813e-05,-1.22835326194763,-0.000274658203125,-0.000108242034912109,-1.22840940952301,-0.000447750091552734,-8.0108642578125e-05,-1.22840750217438,-0.000433444976806641,-8.20159912109375e-05,-1.22840857505798,-0.000432491302490234,-9.1552734375e-05,-1.2284083366394,-0.000447273254394531,-8.29696655273438e-05,-1.22840845584869,-0.000447750091552734,-8.29696655273438e-05,-1.22841036319733,-0.000432491302490234,-0.000110626220703125,-1.22841334342957,-0.000432491302490234,-0.000121116638183594,-1.22842288017273,-0.000447750091552734,-0.000111579895019531,-1.22842454910278,-0.000432491302490234,-0.000125885009765625,-1.22841894626617,-0.000432014465332031,-0.000147819519042969,-1.22843146324158,-0.000432491302490234,-0.000139236450195313,-1.22842955589294,-0.000432968139648438,-0.000149726867675781,-1.228431224823,-0.000432491302490234,-0.000128746032714844,-1.2284629046917,-0.000447750091552734,-0.000142097473144531,-1.22846280038357,-0.000447273254394531,-0.000149726867675781,-1.22846279293299,-0.000447750091552734,-0.000126838684082031,-1.22846281528473,-0.000446796417236328,-0.000130653381347656,-1.22844469547272,-0.000446796417236328,-0.000134468078613281,-1.22838747501373,-0.00038909912109375,-7.72476196289063e-05,-1.22838640213013,-0.00038909912109375,-7.91549682617188e-05,-1.22838664054871,-0.00038909912109375,-8.29696655273438e-05,-1.22838568687439,-0.000389575958251953,-7.91549682617188e-05,-1.22838664054871,-0.00038909912109375,-8.0108642578125e-05,-1.22838759422302,-0.00038909912109375,-0.000102996826171875,-1.22838950157166,-0.000374317169189453, +-0.000110626220703125,-1.22839033603668,-0.000403404235839844,-0.000105857849121094,-1.22839605808258,-0.000403881072998047,-0.000123023986816406,-1.22839224338531,-0.00038909912109375,-0.00014495849609375,-1.22839975357056,-0.000403881072998047,-0.000136375427246094,-1.2283980846405,-0.00040435791015625,-0.00014495849609375,-1.22839987277985,-0.000403404235839844,-0.000123977661132813,-1.22841227054596,-0.000417232513427734,-0.000139236450195313,-1.22840929031372,-0.000418663024902344,-0.000148773193359375,-1.22841322422028,-0.000418186187744141,-0.000127792358398438,-1.22840368747711,-0.000417709350585938,-0.000128746032714844,-1.22835898399353,-0.000302791595458984,-6.91413879394531e-05,-1.22835803031921,-0.000302791595458984,-7.20024108886719e-05,-1.2283570766449,-0.000303268432617188,-7.62939453125e-05,-1.2283570766449,-0.000303268432617188,-7.15255737304688e-05,-1.22835803031921,-0.000303268432617188,-7.15255737304688e-05,-1.2283570766449,-0.000302314758300781,-9.34600830078125e-05,-1.22836089134216,-0.000302791595458984,-0.000104904174804688,-1.22836375236511,-0.000331878662109375,-9.67979431152344e-05,-1.22836852073669,-0.000331878662109375,-0.000115871429443359,-1.22836375236511,-0.000317573547363281,-0.000138282775878906,-1.22837233543396,-0.000346660614013672,-0.000130653381347656,-1.22837042808533,-0.000346183776855469,-0.000140190124511719,-1.22837233543396,-0.000345230102539063,-0.000119209289550781,-1.22838759422302,-0.000375270843505859,-0.000133514404296875,-1.22838568687439,-0.000375747680664063,-0.000143051147460938,-1.22838747501373,-0.000374794006347656,-0.000120162963867188,-1.22837805747986,-0.000360488891601563,-0.000123023986816406,-1.22835159301758,-0.000244617462158203,-8.91685485839844e-05,-1.228351354599,-0.000245094299316406,-7.10487365722656e-05,-1.22835397720337,-0.000245094299316406,-0.000101566314697266,-1.22835516929626,-0.0002593994140625,-0.000112056732177734,-1.22835206985474,-0.0002593994140625,-0.000105857849121094,-1.22835326194763,-0.000245094299316406,-0.000130653381347656, +-1.22835516929626,-0.000245094299316406,-0.0001220703125,-1.22835326194763,-0.0002593994140625,-0.000131130218505859,-1.22835516929626,-0.000259876251220703,-0.000124454498291016,-1.22835612297058,-0.000259876251220703,-0.000115871429443359,-1.2283570766449,-0.000273227691650391,-0.000113487243652344,-1.22835612297058,-0.000274181365966797,-0.000117778778076172,-1.22846476174891,-0.000461101531982422,-8.67843627929688e-05,-1.22846382111311,-0.000461578369140625,-8.20159912109375e-05,-1.22846189886332,-0.000462055206298828,-8.48770141601563e-05,-1.22846383601427,-0.000461578369140625,-9.05990600585938e-05,-1.22846382111311,-0.000461578369140625,-8.67843627929688e-05,-1.22845250368118,-0.000447273254394531,-0.000148773193359375,-1.22845241427422,-0.000447273254394531,-0.000142097473144531,-1.22845238447189,-0.000446796417236328,-0.000131607055664063,-1.22845232486725,-0.000447750091552734,-0.000135421752929688,-1.22846299409866,-0.000461578369140625,-0.000110626220703125,-1.22846379876137,-0.000446796417236328,-0.000121116638183594,-1.22843611240387,-0.000447273254394531,-0.000148773193359375,-1.2284380197525,-0.000447750091552734,-0.000139236450195313,-1.22843706607819,-0.000447750091552734,-0.000111579895019531,-1.22843611240387,-0.000461578369140625,-9.1552734375e-05,-1.22843706607819,-0.000446796417236328,-0.000124931335449219,-1.2284380197525,-0.000446796417236328,-0.000128746032714844,-1.2284437417984,-0.000446796417236328,-0.000131607055664063,-1.22844088077545,-0.000447750091552734,-0.000126838684082031,-1.22843039035797,-0.000446796417236328,-0.000109672546386719,-1.22843134403229,-0.000446796417236328,-9.25064086914063e-05,-1.22842359542847,-0.000432968139648438,-0.000149726867675781,-1.22842669487,-0.000432968139648438,-0.000141143798828125,-1.228431224823,-0.000447273254394531,-0.000123977661132813,-1.22843134403229,-0.000447750091552734,-0.000119209289550781,-1.22842574119568,-0.000432491302490234,-0.000131607055664063,-1.22842562198639,-0.000432968139648438,-0.000134468078613281,-1.22841417789459,-0.000432014465332031, +-0.000148773193359375,-1.22841608524323,-0.000432968139648438,-0.000139236450195313,-1.22841322422028,-0.000432491302490234,-0.000112533569335938,-1.22841131687164,-0.000446796417236328,-8.86917114257813e-05,-1.22841894626617,-0.000432968139648438,-0.000128746032714844,-1.22841703891754,-0.000432491302490234,-0.000125885009765625,-1.22841513156891,-0.000432968139648438,-0.000123977661132813,-1.22841501235962,-0.000432491302490234,-0.000128746032714844,-1.2284083366394,-0.000432491302490234,-0.000109672546386719,-1.22840476036072,-0.000432968139648438,-8.7738037109375e-05,-1.22840559482574,-0.000417709350585938,-0.00014495849609375,-1.22840750217438,-0.000417232513427734,-0.000139236450195313,-1.2284095287323,-0.000417232513427734,-0.000126838684082031,-1.22840857505798,-0.000418663024902344,-0.00012969970703125,-1.22841334342957,-0.000418186187744141,-0.000123977661132813,-1.22841143608093,-0.000432491302490234,-0.000121116638183594,-1.22840082645416,-0.000403404235839844,-0.000146865844726563,-1.22840178012848,-0.000403881072998047,-0.0001373291015625,-1.22839510440826,-0.000418186187744141,-0.000108718872070313,-1.22839033603668,-0.000432491302490234,-8.7738037109375e-05,-1.22840094566345,-0.000403881072998047,-0.000119209289550781,-1.22840070724487,-0.00040435791015625,-0.000123977661132813,-1.22840368747711,-0.000418663024902344,-0.000124931335449219,-1.22840070724487,-0.000418663024902344,-0.000123023986816406,-1.22839415073395,-0.000403881072998047,-0.000105857849121094,-1.22839021682739,-0.000418663024902344,-8.67843627929688e-05,-1.22839617729187,-0.000390052795410156,-0.00014495849609375,-1.22839796543121,-0.00038909912109375,-0.000138282775878906,-1.22839987277985,-0.000403881072998047,-0.000120162963867188,-1.2283980846405,-0.00040435791015625,-0.000118255615234375,-1.22839796543121,-0.000389575958251953,-0.000126838684082031,-1.2283980846405,-0.000389575958251953,-0.00012969970703125,-1.22838854789734,-0.000374794006347656,-0.000144004821777344,-1.22839033603668,-0.000374317169189453,-0.000134468078613281, +-1.22838747501373,-0.000389575958251953,-0.000103950500488281,-1.22838568687439,-0.000403404235839844,-8.48770141601563e-05,-1.22839415073395,-0.00038909912109375,-0.000123977661132813,-1.22839224338531,-0.00038909912109375,-0.000119209289550781,-1.22839033603668,-0.000375270843505859,-0.00011444091796875,-1.22839033603668,-0.000374317169189453,-0.000119209289550781,-1.22838664054871,-0.000375270843505859,-0.000103950500488281,-1.22838473320007,-0.00038909912109375,-8.29696655273438e-05,-1.22838091850281,-0.000361442565917969,-0.000143051147460938,-1.22838377952576,-0.000360965728759766,-0.000134468078613281,-1.22838473320007,-0.000375270843505859,-0.000123023986816406,-1.22838473320007,-0.000374317169189453,-0.000125885009765625,-1.22838842868805,-0.000374317169189453,-0.000115394592285156,-1.22838747501373,-0.000374794006347656,-0.000111579895019531,-1.22837328910828,-0.000346183776855469,-0.000141143798828125,-1.22837519645691,-0.000346183776855469,-0.000131607055664063,-1.22837233543396,-0.000360965728759766,-0.000101089477539063,-1.22837328910828,-0.000360965728759766,-8.20159912109375e-05,-1.22837328910828,-0.000346660614013672,-0.00011444091796875,-1.22837424278259,-0.000346660614013672,-0.000119209289550781,-1.22837805747986,-0.000360965728759766,-0.000121116638183594,-1.22837519645691,-0.000360965728759766,-0.000115394592285156,-1.22836947441101,-0.000346660614013672,-9.918212890625e-05,-1.22836947441101,-0.000346660614013672,-8.0108642578125e-05,-1.22836756706238,-0.000331878662109375,-0.000138282775878906,-1.22836947441101,-0.000332355499267578,-0.000131130218505859,-1.22837328910828,-0.000345706939697266,-0.000113487243652344,-1.22837233543396,-0.000346660614013672,-0.000110626220703125,-1.22837042808533,-0.000331401824951172,-0.000122547149658203,-1.22837042808533,-0.000332355499267578,-0.000124931335449219,-1.22835803031921,-0.000302314758300781,-0.000135898590087891,-1.22836089134216,-0.000303745269775391,-0.000126838684082031,-1.22835803031921,-0.000317096710205078,-9.5367431640625e-05,-1.22835898399353, +-0.000317096710205078,-7.77244567871094e-05,-1.22836565971375,-0.000317573547363281,-0.000120162963867188,-1.2283627986908,-0.000317573547363281,-0.000115394592285156,-1.22836375236511,-0.000302791595458984,-0.000109672546386719,-1.2283627986908,-0.000303268432617188,-0.00011444091796875,-1.22845903038979,-0.000461101531982422,-0.000112533569335938,-1.22845900058746,-0.000462055206298828,-9.05990600585938e-05,-1.22835397720337,-0.0002593994140625,-6.24656677246094e-05,-1.22835516929626,-0.000245094299316406,-6.43730163574219e-05,-1.22834849357605,-0.000259876251220703,-6.53266906738281e-05,-1.228351354599,-0.000244617462158203,-6.53266906738281e-05,-1.2284322977066,-0.000447273254394531,-8.20159912109375e-05,-1.22843134403229,-0.000447750091552734,-8.29696655273438e-05,-1.22841238975525,-0.000446796417236328,-8.0108642578125e-05,-1.22841143608093,-0.000446796417236328,-8.29696655273438e-05,-1.22843706607819,-0.000461578369140625,-8.29696655273438e-05,-1.22843611240387,-0.000461578369140625,-8.48770141601563e-05,-1.22840464115143,-0.000447273254394531,-8.10623168945313e-05,-1.22840476036072,-0.000447273254394531,-8.392333984375e-05,-1.22838842868805,-0.000432491302490234,-7.91549682617188e-05,-1.22838842868805,-0.000432491302490234,-8.29696655273438e-05,-1.22839033603668,-0.000418663024902344,-7.82012939453125e-05,-1.22838926315308,-0.000418186187744141,-8.10623168945313e-05,-1.22838664054871,-0.000403881072998047,-7.43865966796875e-05,-1.22838568687439,-0.000403881072998047,-7.91549682617188e-05,-1.22838664054871,-0.000389575958251953,-7.72476196289063e-05,-1.22838473320007,-0.00038909912109375,-7.72476196289063e-05,-1.22837615013123,-0.000360488891601563,-7.34329223632813e-05,-1.22837424278259,-0.000360965728759766,-7.53402709960938e-05,-1.22837233543396,-0.000346183776855469,-7.34329223632813e-05,-1.22837138175964,-0.000345706939697266,-7.53402709960938e-05,-1.22836089134216,-0.000317573547363281,-6.91413879394531e-05,-1.22835993766785,-0.000317573547363281,-7.15255737304688e-05,-1.22835040092468,-0.000259876251220703, +-6.38961791992188e-05,-1.22834849357605,-0.0002593994140625,-6.62803649902344e-05,-1.2284542620182,-0.000446796417236328,-0.000111579895019531,-1.22845441102982,-0.000447750091552734,-0.000126838684082031,-1.2284140586853,-0.000418663024902344,-0.000108718872070313,-1.22841608524323,-0.000417232513427734,-0.0001220703125,-1.22839593887329,-0.000374317169189453,-0.000102996826171875,-1.22839522361755,-0.000360965728759766,-0.000116348266601563,-1.22843217849731,-0.000447273254394531,-8.392333984375e-05,-1.22842860221863,-0.000446796417236328,-9.25064086914063e-05,-1.22842359542847,-0.000446796417236328,-8.48770141601563e-05,-1.22842764854431,-0.000447750091552734,-7.91549682617188e-05,-1.22842836380005,-0.000447750091552734,-8.48770141601563e-05,-1.22842848300934,-0.000432491302490234,-0.000138282775878906,-1.22842454910278,-0.000418186187744141,-0.000133514404296875,-1.22842943668365,-0.000432491302490234,-0.000134468078613281,-1.22842669487,-0.000432968139648438,-0.000134468078613281,-1.22846476361156,-0.000432968139648438,-0.000145912170410156,-1.22846189886332,-0.000432968139648438,-0.000146865844726563,-1.22846092283726,-0.000432491302490234,-0.000145912170410156,-1.22846394777298,-0.000432491302490234,-0.000145912170410156,-1.22846280783415,-0.000432491302490234,-0.000146865844726563,-1.22840178012848,-0.00040435791015625,-8.0108642578125e-05,-1.22840368747711,-0.000403404235839844,-8.67843627929688e-05,-1.22840082645416,-0.000389575958251953,-7.82012939453125e-05,-1.22839975357056,-0.000403404235839844,-7.72476196289063e-05,-1.22840178012848,-0.000403404235839844,-8.0108642578125e-05,-1.22840261459351,-0.000389575958251953,-0.000134468078613281,-1.22840082645416,-0.000374794006347656,-0.000128746032714844,-1.22840368747711,-0.00038909912109375,-0.000131607055664063,-1.2284027338028,-0.000389575958251953,-0.000128746032714844,-1.22842001914978,-0.000403404235839844,-0.000143051147460938,-1.22843515872955,-0.000418663024902344,-0.000148773193359375,-1.22844660282135,-0.000403404235839844,-0.000156402587890625, +-1.22843050956726,-0.000403881072998047,-0.000149726867675781,-1.2284322977066,-0.000403881072998047,-0.000148773193359375,-1.22838473320007,-0.000332355499267578,-7.34329223632813e-05,-1.22838473320007,-0.000332355499267578,-7.82012939453125e-05,-1.22838091850281,-0.000318050384521484,-7.2479248046875e-05,-1.22838187217712,-0.000331401824951172,-7.00950622558594e-05,-1.22838377952576,-0.000332355499267578,-7.20024108886719e-05,-1.22837996482849,-0.000317573547363281,-0.000127315521240234,-1.22837615013123,-0.000302791595458984,-0.000123500823974609,-1.22838091850281,-0.000317573547363281,-0.000125885009765625,-1.22837901115417,-0.000317096710205078,-0.000123977661132813,-1.22839796543121,-0.000345706939697266,-0.000144004821777344,-1.22841799259186,-0.000360965728759766,-0.000153541564941406,-1.22843515872955,-0.000346660614013672,-0.000163078308105469,-1.22841322422028,-0.000346660614013672,-0.000153541564941406,-1.22841513156891,-0.000346660614013672,-0.000154495239257813,-1.22837138175964,-0.0002593994140625,-7.20024108886719e-05,-1.22837233543396,-0.0002593994140625,-8.72611999511719e-05,-1.22836756706238,-0.000245094299316406,-0.000105857849121094,-1.22836947441101,-0.000245571136474609,-0.000107765197753906,-1.22845806181431,-0.000461578369140625,-8.58306884765625e-05,-1.22845423221588,-0.000461578369140625,-9.25064086914063e-05,-1.2284477353096,-0.000461578369140625,-8.48770141601563e-05,-1.22845327854156,-0.000461101531982422,-8.20159912109375e-05,-1.2284534573555,-0.000461578369140625,-8.48770141601563e-05,-1.2284380197525,-0.000447273254394531,-8.29696655273438e-05,-1.22843611240387,-0.000447750091552734,-8.96453857421875e-05,-1.22843515872955,-0.000446796417236328,-8.392333984375e-05,-1.22843706607819,-0.000447273254394531,-8.10623168945313e-05,-1.22843611240387,-0.000447750091552734,-8.392333984375e-05,-1.22843611240387,-0.000447273254394531,-0.000108718872070313,-1.2284380197525,-0.000447750091552734,-0.000119209289550781,-1.22841131687164,-0.000432491302490234,-8.29696655273438e-05,-1.22841131687164, +-0.000432491302490234,-8.67843627929688e-05,-1.22840559482574,-0.000432968139648438,-8.10623168945313e-05,-1.22840642929077,-0.000432968139648438,-7.72476196289063e-05,-1.22840845584869,-0.000432968139648438,-8.10623168945313e-05,-1.22840189933777,-0.000418186187744141,-8.10623168945313e-05,-1.22840070724487,-0.000417709350585938,-8.7738037109375e-05,-1.22839796543121,-0.000418186187744141,-8.0108642578125e-05,-1.22839784622192,-0.000418663024902344,-7.91549682617188e-05,-1.22839891910553,-0.000418186187744141,-8.0108642578125e-05,-1.22840464115143,-0.00040435791015625,-0.000105857849121094,-1.22840559482574,-0.00040435791015625,-0.000118255615234375,-1.22839415073395,-0.000375747680664063,-7.72476196289063e-05,-1.22839605808258,-0.000374317169189453,-8.29696655273438e-05,-1.22839522361755,-0.000360965728759766,-7.53402709960938e-05,-1.22839415073395,-0.000374317169189453,-7.2479248046875e-05,-1.22839605808258,-0.000375270843505859,-7.72476196289063e-05,-1.22839033603668,-0.000346183776855469,-7.53402709960938e-05,-1.22838854789734,-0.000346660614013672,-8.10623168945313e-05,-1.22838377952576,-0.000346660614013672,-7.62939453125e-05,-1.22838473320007,-0.000346183776855469,-7.34329223632813e-05,-1.22838640213013,-0.000346660614013672,-7.62939453125e-05,-1.22838842868805,-0.000346183776855469,-0.000100135803222656,-1.22838652133942,-0.000346660614013672,-0.000110626220703125,-1.22837233543396,-0.000288009643554688,-6.91413879394531e-05,-1.22837328910828,-0.000288486480712891,-7.34329223632813e-05,-1.22837042808533,-0.000274181365966797,-6.72340393066406e-05,-1.22836947441101,-0.000288963317871094,-6.53266906738281e-05,-1.22837233543396,-0.000288009643554688,-6.77108764648438e-05,-1.22837328910828,-0.000273227691650391,-8.91685485839844e-05,-1.22837233543396,-0.000274181365966797,-0.000107765197753906,-1.22841715812683,-0.000432491302490234,-8.20159912109375e-05,-1.22841501235962,-0.000432968139648438,-8.7738037109375e-05,-1.22841334342957,-0.000432491302490234,-8.29696655273438e-05,-1.22841417789459,-0.000432968139648438, +-8.10623168945313e-05,-1.2284152507782,-0.000432968139648438,-8.29696655273438e-05,-1.22841703891754,-0.000432491302490234,-0.000109672546386719,-1.22841894626617,-0.000432491302490234,-0.000121116638183594,-1.22842955589294,-0.000432491302490234,-0.000110626220703125,-1.22843146324158,-0.000432491302490234,-0.000124931335449219,-1.22843420505524,-0.000418663024902344,-0.000142097473144531,-1.22844669222832,-0.000432968139648438,-0.000146865844726563,-1.22845336794853,-0.000418186187744141,-0.000149726867675781,-1.22844088077545,-0.000417232513427734,-0.000146865844726563,-1.2284437417984,-0.000418186187744141,-0.000146865844726563,-1.2284437417984,-0.000432491302490234,-0.000143051147460938,-1.22845336794853,-0.000432491302490234,-0.00014495849609375,-1.22845713794231,-0.000432491302490234,-0.000148773193359375,-1.22845041751862,-0.000432491302490234,-0.00014495849609375,-1.22843718528748,-0.000432491302490234,-0.000139236450195313,-1.22843408584595,-0.000432491302490234,-0.000133514404296875,-1.2284380197525,-0.000432491302490234,-0.000132560729980469,-1.22843611240387,-0.000432491302490234,-0.000133514404296875,-1.22846191376448,-0.000447273254394531,-0.000142097473144531,-1.22846283763647,-0.000447750091552734,-0.000139236450195313,-1.22846476174891,-0.000447750091552734,-0.000143051147460938,-1.22846381366253,-0.000447273254394531,-0.000141143798828125,-1.22846476174891,-0.000447750091552734,-0.000132560729980469,-1.2284609079361,-0.000447273254394531,-0.000136375427246094,-1.22846283018589,-0.000447273254394531,-0.000134468078613281,-1.22844848036766,-0.000432491302490234,-0.000138282775878906,-1.22844469547272,-0.000432968139648438,-0.000135421752929688,-1.22845038771629,-0.000446796417236328,-0.000136375427246094,-1.22844752669334,-0.000432491302490234,-0.000138282775878906,-1.22839689254761,-0.00038909912109375,-7.91549682617188e-05,-1.22839415073395,-0.000389575958251953,-8.29696655273438e-05,-1.22839140892029,-0.00038909912109375,-7.91549682617188e-05,-1.22839307785034,-0.00038909912109375,-7.82012939453125e-05, +-1.22839403152466,-0.00038909912109375,-7.91549682617188e-05,-1.22839510440826,-0.000375270843505859,-0.000102996826171875,-1.22839617729187,-0.000374794006347656,-0.000110626220703125,-1.22840452194214,-0.000403881072998047,-0.000103950500488281,-1.22840559482574,-0.00038909912109375,-0.000118255615234375,-1.22840929031372,-0.000389575958251953,-0.000144004821777344,-1.22842645645142,-0.00038909912109375,-0.000153541564941406,-1.22844099998474,-0.00038909912109375,-0.000162124633789063,-1.22842288017273,-0.000375270843505859,-0.000152587890625,-1.22842454910278,-0.00038909912109375,-0.000151634216308594,-1.2284140586853,-0.00038909912109375,-0.000144004821777344,-1.22844386100769,-0.000403881072998047,-0.000158309936523438,-1.22842848300934,-0.000403404235839844,-0.000151634216308594,-1.22840738296509,-0.000403881072998047,-0.000135421752929688,-1.22840642929077,-0.00038909912109375,-0.000131607055664063,-1.22840750217438,-0.000403881072998047,-0.000128746032714844,-1.22840654850006,-0.000403404235839844,-0.00012969970703125,-1.22842657566071,-0.000418186187744141,-0.000144004821777344,-1.2284494638443,-0.000418663024902344,-0.000152587890625,-1.22843813896179,-0.000418186187744141,-0.000147819519042969,-1.22841989994049,-0.000417232513427734,-0.0001373291015625,-1.22841799259186,-0.000417709350585938,-0.000131607055664063,-1.22842073440552,-0.000417709350585938,-0.000133514404296875,-1.22841882705688,-0.000418663024902344,-0.000133514404296875,-1.22841334342957,-0.000403881072998047,-0.000135421752929688,-1.22841036319733,-0.000403881072998047,-0.00012969970703125,-1.22841417789459,-0.000417232513427734,-0.000133514404296875,-1.22841227054596,-0.000403881072998047,-0.000133514404296875,-1.22837615013123,-0.000302791595458984,-7.00950622558594e-05,-1.22837328910828,-0.000303268432617188,-7.58171081542969e-05,-1.22837042808533,-0.000302314758300781,-7.05718994140625e-05,-1.22837138175964,-0.000302791595458984,-6.866455078125e-05,-1.22837328910828,-0.000302314758300781,-7.10487365722656e-05,-1.22837328910828,-0.000303268432617188, +-9.48905944824219e-05,-1.22837424278259,-0.000302791595458984,-0.000108242034912109,-1.22838568687439,-0.000331401824951172,-9.67979431152344e-05,-1.22838473320007,-0.000331878662109375,-0.000114917755126953,-1.22843050956726,-0.000274181365966797,-0.000148296356201172,-1.22839879989624,-0.000288963317871094,-0.000141143798828125,-1.2284140586853,-0.000317096710205078,-0.000152587890625,-1.22844278812408,-0.000317096710205078,-0.000160694122314453,-1.22842180728912,-0.000302791595458984,-0.000151157379150391,-1.22839415073395,-0.000331401824951172,-0.000143051147460938,-1.22843325138092,-0.000331401824951172,-0.000162124633789063,-1.22841238975525,-0.000331878662109375,-0.000152111053466797,-1.22838473320007,-0.000331401824951172,-0.00012969970703125,-1.22838377952576,-0.000332355499267578,-0.000124454498291016,-1.22838568687439,-0.000345706939697266,-0.0001220703125,-1.22838473320007,-0.000331878662109375,-0.000124454498291016,-1.22840464115143,-0.000374794006347656,-0.000144004821777344,-1.2284380197525,-0.000375270843505859,-0.000162124633789063,-1.22842001914978,-0.000374317169189453,-0.000154495239257813,-1.2283970117569,-0.000375270843505859,-0.000133514404296875,-1.22839522361755,-0.000374794006347656,-0.000127792358398438,-1.2283970117569,-0.000375270843505859,-0.000125885009765625,-1.22839605808258,-0.000375270843505859,-0.000125885009765625,-1.228391289711,-0.000360965728759766,-0.000130653381347656,-1.22838938236237,-0.000345706939697266,-0.000125885009765625,-1.22839319705963,-0.000360488891601563,-0.000128746032714844,-1.22839140892029,-0.000361442565917969,-0.000128746032714844,-1.22836852073669,-0.000245571136474609,-7.10487365722656e-05,-1.22836852073669,-0.000245094299316406,-8.91685485839844e-05,-1.22836852073669,-0.000245094299316406,-0.000101089477539063,-1.22836852073669,-0.0002593994140625,-0.000112533569335938,-1.22837042808533,-0.000259876251220703,-0.000105857849121094,-1.22837424278259,-0.000259876251220703,-0.000121116638183594,-1.22837138175964,-0.000245094299316406,-0.000116825103759766, +-1.22837233543396,-0.000258922576904297,-0.000119209289550781,-1.22837138175964,-0.000259876251220703,-0.000118732452392578,-1.22837328910828,-0.000273227691650391,-0.000119209289550781,-1.22837328910828,-0.000288963317871094,-0.000118255615234375,-1.22837042808533,-0.000274181365966797,-0.000113487243652344,-1.22846476174891,-0.000461101531982422,-8.48770141601563e-05,-1.2284637466073,-0.000462055206298828,-8.96453857421875e-05,-1.22846189141273,-0.000461578369140625,-8.48770141601563e-05,-1.22846383601427,-0.000462055206298828,-8.29696655273438e-05,-1.22846384346485,-0.000462055206298828,-8.48770141601563e-05,-1.2284542620182,-0.000446796417236328,-0.000132560729980469,-1.22846281528473,-0.000447273254394531,-0.000126838684082031,-1.22846283763647,-0.000447750091552734,-0.000123977661132813,-1.22844278812408,-0.000447750091552734,-9.1552734375e-05,-1.22844386100769,-0.000447273254394531,-0.000112533569335938,-1.22843897342682,-0.000447750091552734,-0.000123977661132813,-1.22844669222832,-0.000432491302490234,-0.000131607055664063,-1.22844660282135,-0.000447750091552734,-0.000125885009765625,-1.22843432426453,-0.000446796417236328,-9.1552734375e-05,-1.22843408584595,-0.000446796417236328,-0.000109672546386719,-1.22843420505524,-0.000432968139648438,-0.000123977661132813,-1.22843408584595,-0.000432491302490234,-0.000120162963867188,-1.22843146324158,-0.000432491302490234,-0.000130653381347656,-1.22841989994049,-0.000447273254394531,-8.96453857421875e-05,-1.22842180728912,-0.000432491302490234,-0.000110626220703125,-1.22842574119568,-0.000432968139648438,-0.000128746032714844,-1.22842574119568,-0.000432491302490234,-0.000123977661132813,-1.22841989994049,-0.000418663024902344,-0.000123977661132813,-1.22841417789459,-0.000432491302490234,-8.86917114257813e-05,-1.22841596603394,-0.000432491302490234,-0.000108718872070313,-1.22841703891754,-0.000418186187744141,-0.000127792358398438,-1.22841811180115,-0.000418663024902344,-0.000123023986816406,-1.22841703891754,-0.000418186187744141,-0.000121116638183594,-1.22840559482574, +-0.000418663024902344,-8.7738037109375e-05,-1.22840845584869,-0.000418186187744141,-0.000108718872070313,-1.22840666770935,-0.000403404235839844,-0.000119209289550781,-1.22841131687164,-0.000403881072998047,-0.000126838684082031,-1.22841143608093,-0.000403404235839844,-0.000121116638183594,-1.22840189933777,-0.000403881072998047,-8.67843627929688e-05,-1.2284038066864,-0.00040435791015625,-0.0001068115234375,-1.22840559482574,-0.000403404235839844,-0.000120162963867188,-1.22840547561646,-0.00040435791015625,-0.000115394592285156,-1.22840547561646,-0.000389575958251953,-0.000123977661132813,-1.22839987277985,-0.000389575958251953,-8.48770141601563e-05,-1.22840082645416,-0.00038909912109375,-0.000102996826171875,-1.2284027338028,-0.00038909912109375,-0.0001220703125,-1.22840285301208,-0.000389575958251953,-0.000117301940917969,-1.2283970117569,-0.000374317169189453,-0.000112533569335938,-1.22839331626892,-0.000375270843505859,-8.29696655273438e-05,-1.22839426994324,-0.000375270843505859,-0.000102043151855469,-1.22839426994324,-0.000360488891601563,-0.000121116638183594,-1.22839415073395,-0.000374317169189453,-0.000115394592285156,-1.22839415073395,-0.000374794006347656,-0.000110626220703125,-1.22839426994324,-0.000360488891601563,-8.0108642578125e-05,-1.22839331626892,-0.000360965728759766,-0.000100135803222656,-1.22838568687439,-0.000346660614013672,-0.000113487243652344,-1.22838926315308,-0.000360488891601563,-0.000121116638183594,-1.22839212417603,-0.000360965728759766,-0.000115394592285156,-1.22838473320007,-0.000332355499267578,-8.0108642578125e-05,-1.22838652133942,-0.000332355499267578,-9.918212890625e-05,-1.22838473320007,-0.000332355499267578,-0.000113487243652344,-1.22838664054871,-0.000332355499267578,-0.000110149383544922,-1.22838377952576,-0.000318050384521484,-0.000121116638183594,-1.22837996482849,-0.000317573547363281,-7.72476196289063e-05,-1.22837996482849,-0.000317096710205078,-9.48905944824219e-05,-1.22837901115417,-0.000318050384521484,-0.000119686126708984,-1.22837996482849,-0.000317573547363281, +-0.000113487243652344,-1.22837328910828,-0.000303268432617188,-0.000112056732177734,-1.22846091538668,-0.000461578369140625,-9.1552734375e-05,-1.2284609824419,-0.000447273254394531,-0.000110626220703125,-1.22836947441101,-0.000259876251220703,-6.58035278320313e-05,-1.22836565971375,-0.000245094299316406,-6.58035278320313e-05,-1.22836565971375,-0.000258922576904297,-6.19888305664063e-05,-1.22836756706238,-0.000245094299316406,-6.58035278320313e-05,-1.22843432426453,-0.000447750091552734,-8.20159912109375e-05,-1.22843432426453,-0.000446796417236328,-8.29696655273438e-05,-1.22841894626617,-0.000447750091552734,-8.10623168945313e-05,-1.22841906547546,-0.000446796417236328,-8.29696655273438e-05,-1.22844290733337,-0.000461578369140625,-8.10623168945313e-05,-1.22844278812408,-0.000461578369140625,-8.48770141601563e-05,-1.22841131687164,-0.000432491302490234,-7.91549682617188e-05,-1.22841227054596,-0.000432968139648438,-8.29696655273438e-05,-1.22840082645416,-0.000418186187744141,-7.72476196289063e-05,-1.2284038066864,-0.000418663024902344,-8.20159912109375e-05,-1.22839891910553,-0.000418186187744141,-7.91549682617188e-05,-1.22840070724487,-0.000418663024902344,-8.10623168945313e-05,-1.22839689254761,-0.00038909912109375,-7.43865966796875e-05,-1.22839999198914,-0.00038909912109375,-7.82012939453125e-05,-1.22839224338531,-0.000374317169189453,-7.53402709960938e-05,-1.22839319705963,-0.000375270843505859,-8.0108642578125e-05,-1.228391289711,-0.000360965728759766,-7.2479248046875e-05,-1.22839415073395,-0.000360488891601563,-7.53402709960938e-05,-1.22838282585144,-0.000331878662109375,-7.15255737304688e-05,-1.22838473320007,-0.000331878662109375,-7.43865966796875e-05,-1.22837615013123,-0.000317096710205078,-6.81877136230469e-05,-1.22837805747986,-0.000317096710205078,-7.15255737304688e-05,-1.22836852073669,-0.0002593994140625,-6.43730163574219e-05,-1.22837042808533,-0.000260353088378906,-6.53266906738281e-05,-1.22846476174891,-0.000461101531982422,-8.10623168945313e-05,-1.22846195101738,-0.000462055206298828,-8.0108642578125e-05, +-1.22846381366253,-0.000462055206298828,-8.10623168945313e-05,-1.22846382111311,-0.000461101531982422,-8.20159912109375e-05,-1.22844663262367,-0.000461101531982422,-8.0108642578125e-05,-1.22845140099525,-0.000461578369140625,-8.10623168945313e-05,-1.2284571826458,-0.000461578369140625,-8.10623168945313e-05,-1.22845238447189,-0.000461101531982422,-8.10623168945313e-05,-1.2284380197525,-0.000461101531982422,-7.82012939453125e-05,-1.22844004631042,-0.000461101531982422,-8.0108642578125e-05,-1.22844183444977,-0.000461578369140625,-7.82012939453125e-05,-1.22843527793884,-0.000447750091552734,-8.10623168945313e-05,-1.22843515872955,-0.000462055206298828,-7.82012939453125e-05,-1.22843623161316,-0.000447273254394531,-7.91549682617188e-05,-1.22843134403229,-0.000447273254394531,-8.20159912109375e-05,-1.22843325138092,-0.000447750091552734,-8.0108642578125e-05,-1.22843313217163,-0.000447750091552734,-8.0108642578125e-05,-1.22842180728912,-0.000447273254394531,-8.0108642578125e-05,-1.22842574119568,-0.000447750091552734,-7.72476196289063e-05,-1.22842669487,-0.000446796417236328,-7.91549682617188e-05,-1.2284140586853,-0.000447750091552734,-7.82012939453125e-05,-1.2284152507782,-0.000447750091552734,-7.72476196289063e-05,-1.22841691970825,-0.000447273254394531,-7.72476196289063e-05,-1.22841238975525,-0.000432968139648438,-7.91549682617188e-05,-1.22841119766235,-0.000446796417236328,-7.82012939453125e-05,-1.22841310501099,-0.000447750091552734,-7.91549682617188e-05,-1.22840654850006,-0.000432968139648438,-7.72476196289063e-05,-1.22840762138367,-0.000432491302490234,-7.91549682617188e-05,-1.22840940952301,-0.000432491302490234,-7.72476196289063e-05,-1.22839987277985,-0.000432968139648438,-7.72476196289063e-05,-1.22839999198914,-0.000432491302490234,-7.53402709960938e-05,-1.22840285301208,-0.000432491302490234,-7.62939453125e-05,-1.22839593887329,-0.000418663024902344,-7.62939453125e-05,-1.22839403152466,-0.000432491302490234,-7.62939453125e-05,-1.22839784622192,-0.000418186187744141,-7.62939453125e-05,-1.22839593887329,-0.000417232513427734, +-7.91549682617188e-05,-1.22839426994324,-0.000418663024902344,-7.72476196289063e-05,-1.22839605808258,-0.000418186187744141,-7.72476196289063e-05,-1.2283970117569,-0.000403881072998047,-7.72476196289063e-05,-1.22839426994324,-0.000418663024902344,-7.82012939453125e-05,-1.22839713096619,-0.000418186187744141,-7.82012939453125e-05,-1.22839593887329,-0.000403404235839844,-7.62939453125e-05,-1.22839319705963,-0.000403881072998047,-7.72476196289063e-05,-1.2283970117569,-0.00040435791015625,-7.62939453125e-05,-1.22839319705963,-0.000389575958251953,-7.34329223632813e-05,-1.2283923625946,-0.00038909912109375,-7.53402709960938e-05,-1.22839510440826,-0.00038909912109375,-7.62939453125e-05,-1.22839140892029,-0.000389575958251953,-7.72476196289063e-05,-1.22839021682739,-0.000389575958251953,-7.72476196289063e-05,-1.22839224338531,-0.000389575958251953,-7.62939453125e-05,-1.22839140892029,-0.000375747680664063,-7.43865966796875e-05,-1.22838950157166,-0.00038909912109375,-7.62939453125e-05,-1.22839033603668,-0.00038909912109375,-7.62939453125e-05,-1.22839045524597,-0.000360965728759766,-7.43865966796875e-05,-1.22838854789734,-0.000374317169189453,-7.43865966796875e-05,-1.228391289711,-0.000374317169189453,-7.34329223632813e-05,-1.22838568687439,-0.000345706939697266,-7.15255737304688e-05,-1.22838377952576,-0.000360965728759766,-7.2479248046875e-05,-1.22838747501373,-0.000360965728759766,-7.15255737304688e-05,-1.22838091850281,-0.000346660614013672,-7.2479248046875e-05,-1.22838091850281,-0.000346660614013672,-7.2479248046875e-05,-1.22838282585144,-0.000346660614013672,-7.2479248046875e-05,-1.22837996482849,-0.000331878662109375,-7.00950622558594e-05,-1.22837805747986,-0.000346660614013672,-7.05718994140625e-05,-1.22837996482849,-0.000346660614013672,-7.15255737304688e-05,-1.22837615013123,-0.000317573547363281,-6.96182250976563e-05,-1.22837424278259,-0.000331401824951172,-6.96182250976563e-05,-1.22837805747986,-0.000331878662109375,-6.866455078125e-05,-1.22837042808533,-0.000302791595458984,-6.72340393066406e-05,-1.22836947441101, +-0.000317573547363281,-6.81877136230469e-05,-1.22837328910828,-0.000318050384521484,-6.77108764648438e-05,-1.22836661338806,-0.000302791595458984,-6.96182250976563e-05,-1.22836470603943,-0.000303268432617188,-6.77108764648438e-05,-1.22836852073669,-0.000303745269775391,-6.77108764648438e-05,-1.22836565971375,-0.000288486480712891,-6.4849853515625e-05,-1.22836470603943,-0.000274181365966797,-6.38961791992188e-05,-1.22836089134216,-0.000288486480712891,-6.58035278320313e-05,-1.22836565971375,-0.000288486480712891,-6.43730163574219e-05,-1.22836375236511,-0.000259876251220703,-6.15119934082031e-05,-1.22835898399353,-0.0002593994140625,-6.34193420410156e-05,-1.22836375236511,-0.000259876251220703,-6.43730163574219e-05,-1.22836184501648,-0.000245094299316406,-6.05583190917969e-05,-1.22835898399353,-0.0002593994140625,-6.103515625e-05,-1.2283627986908,-0.000259876251220703,-6.103515625e-05,-1.22845616936684,-0.000476360321044922,-8.10623168945313e-05,-1.2284589856863,-0.000476360321044922,-8.20159912109375e-05,-1.22846192121506,-0.000461101531982422,-8.10623168945313e-05,-1.22846013307571,-0.000461578369140625,-7.91549682617188e-05,-1.22845903038979,-0.000475883483886719,-8.10623168945313e-05,-1.22844290733337,-0.000461578369140625,-7.91549682617188e-05,-1.22844952344894,-0.000461578369140625,-8.10623168945313e-05,-1.22843515872955,-0.000461101531982422,-8.0108642578125e-05,-1.22843813896179,-0.000461101531982422,-8.0108642578125e-05,-1.22843432426453,-0.000446796417236328,-7.91549682617188e-05,-1.22843432426453,-0.000461578369140625,-8.0108642578125e-05,-1.22842860221863,-0.000461578369140625,-7.91549682617188e-05,-1.2284322977066,-0.000447750091552734,-8.20159912109375e-05,-1.22841811180115,-0.000446796417236328,-7.82012939453125e-05,-1.22842276096344,-0.000447750091552734,-8.0108642578125e-05,-1.22841036319733,-0.000447750091552734,-7.91549682617188e-05,-1.22841310501099,-0.000446796417236328,-7.82012939453125e-05,-1.2284095287323,-0.000432491302490234,-7.82012939453125e-05,-1.22841048240662,-0.000447750091552734,-7.91549682617188e-05, +-1.22840082645416,-0.000446796417236328,-7.72476196289063e-05,-1.22840642929077,-0.000446796417236328,-8.0108642578125e-05,-1.22839319705963,-0.000432968139648438,-7.72476196289063e-05,-1.22839689254761,-0.000432491302490234,-7.72476196289063e-05,-1.22839033603668,-0.000418186187744141,-7.72476196289063e-05,-1.228391289711,-0.000432491302490234,-7.62939453125e-05,-1.22839319705963,-0.000418186187744141,-7.72476196289063e-05,-1.22839224338531,-0.000418663024902344,-7.72476196289063e-05,-1.22839045524597,-0.000417709350585938,-7.72476196289063e-05,-1.22839212417603,-0.000418186187744141,-7.62939453125e-05,-1.22838950157166,-0.00040435791015625,-7.43865966796875e-05,-1.22838950157166,-0.00040435791015625,-7.72476196289063e-05,-1.22838747501373,-0.000389575958251953,-7.53402709960938e-05,-1.22838830947876,-0.000403881072998047,-7.53402709960938e-05,-1.22838854789734,-0.000389575958251953,-7.62939453125e-05,-1.22838842868805,-0.000389575958251953,-7.62939453125e-05,-1.22838473320007,-0.000374317169189453,-7.43865966796875e-05,-1.22838735580444,-0.00038909912109375,-7.62939453125e-05,-1.22838187217712,-0.000375270843505859,-7.2479248046875e-05,-1.22838377952576,-0.000374794006347656,-7.34329223632813e-05,-1.22837710380554,-0.000346183776855469,-7.15255737304688e-05,-1.22837996482849,-0.000360965728759766,-7.2479248046875e-05,-1.22837710380554,-0.000346183776855469,-7.2479248046875e-05,-1.22837710380554,-0.000346660614013672,-7.2479248046875e-05,-1.22837233543396,-0.000331878662109375,-6.96182250976563e-05,-1.22837519645691,-0.000346660614013672,-7.15255737304688e-05,-1.22836852073669,-0.000332355499267578,-7.00950622558594e-05,-1.22837042808533,-0.000331878662109375,-7.00950622558594e-05,-1.2283627986908,-0.000302314758300781,-6.72340393066406e-05,-1.22836470603943,-0.000317573547363281,-6.81877136230469e-05,-1.22836089134216,-0.000303268432617188,-6.91413879394531e-05,-1.22836184501648,-0.000303268432617188,-6.866455078125e-05,-1.22835612297058,-0.000288486480712891,-6.4849853515625e-05,-1.22835612297058,-0.000273227691650391, +-6.43730163574219e-05,-1.22835516929626,-0.000288486480712891,-6.43730163574219e-05,-1.22835421562195,-0.000259876251220703,-6.103515625e-05,-1.22835397720337,-0.000259876251220703,-6.34193420410156e-05,-1.22835803031921,-0.000245571136474609,-6.103515625e-05,-1.22835612297058,-0.000259876251220703,-6.103515625e-05,-1.22845806181431,-0.000447750091552734,-0.000140190124511719,-1.22845806181431,-0.000446796417236328,-0.000132560729980469,-1.22845907509327,-0.000447750091552734,-0.00012969970703125,-1.22836947441101,-0.000230312347412109,-0.000109195709228516,-1.22837424278259,-0.000274181365966797,-0.000123023986816406,-1.22837233543396,-0.000273227691650391,-0.000121116638183594,-1.22837805747986,-0.000288486480712891,-0.000125408172607422,-1.22837519645691,-0.000302791595458984,-0.000121116638183594,-1.22838282585144,-0.000318050384521484,-0.000128746032714844,-1.22838282585144,-0.000331878662109375,-0.000125885009765625,-1.22838854789734,-0.000346183776855469,-0.00012969970703125,-1.22838664054871,-0.000346660614013672,-0.000124931335449219,-1.22839426994324,-0.000360488891601563,-0.000132560729980469,-1.22839498519897,-0.000361442565917969,-0.000128746032714844,-1.22840094566345,-0.000374317169189453,-0.000133514404296875,-1.22839891910553,-0.000375270843505859,-0.000125885009765625,-1.22840464115143,-0.00038909912109375,-0.000134468078613281,-1.22840547561646,-0.00038909912109375,-0.00012969970703125,-1.22841048240662,-0.000403404235839844,-0.000135421752929688,-1.22840857505798,-0.000403881072998047,-0.000130653381347656,-1.22841608524323,-0.000418663024902344,-0.000136375427246094,-1.22841608524323,-0.000418186187744141,-0.000132560729980469,-1.22842371463776,-0.000418186187744141,-0.000138282775878906,-1.22842180728912,-0.000417232513427734,-0.000133514404296875,-1.22843241691589,-0.000432968139648438,-0.000138282775878906,-1.22843241691589,-0.000432491302490234,-0.000133514404296875,-1.22844278812408,-0.000432491302490234,-0.000138282775878906,-1.22844088077545,-0.000432491302490234,-0.000134468078613281,-1.22845336794853, +-0.000447273254394531,-0.000139236450195313,-1.22845716774464,-0.000446796417236328,-0.000135421752929688,-1.2284542620182,-0.000447750091552734,-0.000136375427246094,-1.22845901548862,-0.000446796417236328,-0.00012969970703125,-1.22845900058746,-0.000447750091552734,-0.000124931335449219,-1.22846002876759,-0.000447750091552734,-0.000123977661132813,-1.22837996482849,-0.000259876251220703,-0.000128269195556641,-1.22837996482849,-0.000245094299316406,-0.000126361846923828,-1.22837710380554,-0.0002593994140625,-0.000125885009765625,-1.22838282585144,-0.000302791595458984,-0.000133991241455078,-1.22838473320007,-0.000331878662109375,-0.000134468078613281,-1.22838187217712,-0.000317573547363281,-0.000131130218505859,-1.22839319705963,-0.000360965728759766,-0.000135421752929688,-1.22839593887329,-0.000361442565917969,-0.000136375427246094,-1.22839403152466,-0.000361442565917969,-0.000134468078613281,-1.22840368747711,-0.00038909912109375,-0.000136375427246094,-1.22840762138367,-0.00038909912109375,-0.000138282775878906,-1.22840464115143,-0.000389575958251953,-0.0001373291015625,-1.22841513156891,-0.000403404235839844,-0.000139236450195313,-1.22841894626617,-0.000418663024902344,-0.000141143798828125,-1.22841608524323,-0.000418663024902344,-0.000138282775878906,-1.22843039035797,-0.000432491302490234,-0.000139236450195313,-1.22843527793884,-0.000432491302490234,-0.000139236450195313,-1.228431224823,-0.000432968139648438,-0.000141143798828125,-1.2284494638443,-0.000432968139648438,-0.000139236450195313,-1.22845621407032,-0.000446796417236328,-0.000142097473144531,-1.22845232486725,-0.000432491302490234,-0.000141143798828125,-1.22838664054871,-0.000245094299316406,-0.000128746032714844,-1.22838664054871,-0.000274181365966797,-0.000131130218505859,-1.22838473320007,-0.000288486480712891,-0.000133514404296875,-1.22838842868805,-0.000346660614013672,-0.000136375427246094,-1.22838664054871,-0.000332355499267578,-0.000135421752929688,-1.22839045524597,-0.000346660614013672,-0.000135421752929688,-1.22839987277985,-0.000374794006347656, +-0.0001373291015625,-1.22839796543121,-0.000375270843505859,-0.000138282775878906,-1.22840261459351,-0.000374794006347656,-0.000139236450195313,-1.22841119766235,-0.000403404235839844,-0.000139236450195313,-1.22840845584869,-0.00038909912109375,-0.0001373291015625,-1.22841310501099,-0.000403881072998047,-0.000140190124511719,-1.22842466831207,-0.000418186187744141,-0.000141143798828125,-1.22842085361481,-0.000417232513427734,-0.000139236450195313,-1.22842752933502,-0.000418663024902344,-0.000139236450195313,-1.2284437417984,-0.000432968139648438,-0.000140190124511719,-1.22843897342682,-0.000432491302490234,-0.000140190124511719,-1.22845137119293,-0.000432968139648438,-0.00014495849609375,-1.22844666242599,-0.000432968139648438,-0.000140190124511719,-1.22845903038979,-0.000432968139648438,-0.000144004821777344,-1.22845709323883,-0.000432491302490234,-0.000144004821777344,-1.22846476174891,-0.000432968139648438,-0.000149726867675781,-1.2284609824419,-0.000432968139648438,-0.000150680541992188,-1.22846191376448,-0.000432491302490234,-0.000149726867675781,-1.22846476361156,-0.000418663024902344,-0.000152587890625,-1.22845900058746,-0.000418663024902344,-0.000155448913574219,-1.22846002876759,-0.000418663024902344,-0.000151634216308594,-1.22846476361156,-0.000418663024902344,-0.000156402587890625,-1.22845822572708,-0.000418186187744141,-0.000157356262207031,-1.22845807671547,-0.000418663024902344,-0.000154495239257813,-1.22846476174891,-0.000403881072998047,-0.00016021728515625,-1.22845622897148,-0.000403881072998047,-0.00016021728515625,-1.2284571826458,-0.000403404235839844,-0.000157356262207031,-1.22846476361156,-0.000403404235839844,-0.00016021728515625,-1.22845521569252,-0.00038909912109375,-0.000162124633789063,-1.22845616936684,-0.000403881072998047,-0.000161170959472656,-1.22846476174891,-0.000389575958251953,-0.000164985656738281,-1.22845327854156,-0.000375747680664063,-0.000164031982421875,-1.22845432162285,-0.00038909912109375,-0.000163078308105469,-1.22846476174891,-0.000374794006347656,-0.000166893005371094, +-1.22845137119293,-0.000360965728759766,-0.000166893005371094,-1.22845235466957,-0.000374317169189453,-0.000165939331054688,-1.22845059633255,-0.000332355499267578,-0.000165939331054688,-1.22846476174891,-0.000317573547363281,-0.000164031982421875,-1.22845044732094,-0.000332355499267578,-0.000164031982421875,-1.2284791469574,-0.000447273254394531,-0.000126838684082031,-1.22848096489906,-0.000461578369140625,-0.000112533569335938,-1.22852289676666,-0.000418186187744141,-0.000123977661132813,-1.22852957248688,-0.000432491302490234,-0.000108718872070313,-1.22854781150818,-0.000374317169189453,-0.000117301940917969,-1.22855067253113,-0.000374794006347656,-0.000102043151855469,-1.22850298881531,-0.000461578369140625,-8.29696655273438e-05,-1.2285076379776,-0.000447273254394531,-9.1552734375e-05,-1.2285133600235,-0.000447273254394531,-8.392333984375e-05,-1.2285076379776,-0.000461101531982422,-8.10623168945313e-05,-1.22850859165192,-0.000461578369140625,-8.48770141601563e-05,-1.22851049900055,-0.000432491302490234,-0.000134468078613281,-1.22850859165192,-0.000432491302490234,-0.000140190124511719,-1.22848570346832,-0.000447273254394531,-0.000148773193359375,-1.22848474979401,-0.000446796417236328,-0.000142097473144531,-1.22854292392731,-0.000418186187744141,-8.0108642578125e-05,-1.22854387760162,-0.000403881072998047,-8.58306884765625e-05,-1.22854483127594,-0.00040435791015625,-7.91549682617188e-05,-1.22854292392731,-0.000403404235839844,-7.62939453125e-05,-1.22854387760162,-0.00040435791015625,-8.0108642578125e-05,-1.22853624820709,-0.000389575958251953,-0.000128746032714844,-1.22853624820709,-0.00038909912109375,-0.000138282775878906,-1.22852766513824,-0.000417709350585938,-0.000146865844726563,-1.22852575778961,-0.000418663024902344,-0.000139236450195313,-1.22856211662292,-0.000346660614013672,-7.43865966796875e-05,-1.22856593132019,-0.000332355499267578,-7.91549682617188e-05,-1.22856688499451,-0.000332355499267578,-7.20024108886719e-05,-1.22856307029724,-0.000331878662109375,-7.05718994140625e-05,-1.22856497764587,-0.000331878662109375, +-7.29560852050781e-05,-1.22856402397156,-0.000317096710205078,-0.000123023986816406,-1.22856402397156,-0.000317096710205078,-0.000129222869873047,-1.22855257987976,-0.000360488891601563,-0.000142097473144531,-1.22855067253113,-0.000360965728759766,-0.000132560729980469,-1.22858214378357,-0.000259876251220703,-7.20024108886719e-05,-1.22858214378357,-0.000259876251220703,-8.7738037109375e-05,-1.22857546806335,-0.000245571136474609,-0.000111103057861328,-1.22857451438904,-0.000245094299316406,-0.000105857849121094,-1.22857356071472,-0.000274658203125,-0.000125885009765625,-1.22857546806335,-0.000274658203125,-0.000134944915771484,-1.22847533226013,-0.000475883483886719,-8.48770141601563e-05,-1.22848188877106,-0.000461578369140625,-9.25064086914063e-05,-1.22848963737488,-0.000461578369140625,-8.67843627929688e-05,-1.22848188877106,-0.000462055206298828,-8.29696655273438e-05,-1.22848185896873,-0.000461101531982422,-8.48770141601563e-05,-1.22849631309509,-0.000461578369140625,-8.48770141601563e-05,-1.22849714756012,-0.000447750091552734,-8.96453857421875e-05,-1.2284961938858,-0.000447750091552734,-8.48770141601563e-05,-1.2284961938858,-0.000461578369140625,-8.20159912109375e-05,-1.22849631309509,-0.000462055206298828,-8.48770141601563e-05,-1.22849428653717,-0.000446796417236328,-0.000121116638183594,-1.2284961938858,-0.000447273254394531,-0.000111579895019531,-1.22853147983551,-0.000446796417236328,-8.29696655273438e-05,-1.22853434085846,-0.000432491302490234,-8.86917114257813e-05,-1.22853910923004,-0.000432491302490234,-8.29696655273438e-05,-1.22853529453278,-0.000432491302490234,-7.82012939453125e-05,-1.22853624820709,-0.000432968139648438,-8.20159912109375e-05,-1.22854101657867,-0.000418663024902344,-8.20159912109375e-05,-1.22853815555573,-0.000418186187744141,-8.7738037109375e-05,-1.22853815555573,-0.000418186187744141,-8.29696655273438e-05,-1.22853910923004,-0.000417709350585938,-7.91549682617188e-05,-1.22853910923004,-0.000418186187744141,-8.29696655273438e-05,-1.22853052616119,-0.000403881072998047,-0.000116348266601563, +-1.22853434085846,-0.000418663024902344,-0.000108718872070313,-1.2285487651825,-0.00038909912109375,-7.82012939453125e-05,-1.22855162620544,-0.000375747680664063,-8.20159912109375e-05,-1.22855353355408,-0.000375270843505859,-7.62939453125e-05,-1.22854971885681,-0.000375270843505859,-7.2479248046875e-05,-1.22855067253113,-0.000374794006347656,-7.72476196289063e-05,-1.22855734825134,-0.000346660614013672,-7.43865966796875e-05,-1.22855734825134,-0.000346660614013672,-8.10623168945313e-05,-1.22855639457703,-0.000346660614013672,-7.53402709960938e-05,-1.22855544090271,-0.000346660614013672,-7.2479248046875e-05,-1.22855639457703,-0.000346660614013672,-7.53402709960938e-05,-1.22855734825134,-0.000346660614013672,-0.000110626220703125,-1.22855925559998,-0.000346183776855469,-0.000100135803222656,-1.22857928276062,-0.000288486480712891,-6.91413879394531e-05,-1.22858119010925,-0.000288009643554688,-7.2479248046875e-05,-1.22858023643494,-0.000273704528808594,-6.72340393066406e-05,-1.2285783290863,-0.000288486480712891,-6.58035278320313e-05,-1.22858023643494,-0.000288009643554688,-6.77108764648438e-05,-1.22857642173767,-0.000274658203125,-0.000108242034912109,-1.22858119010925,-0.000274181365966797,-8.86917114257813e-05,-1.22852194309235,-0.000447273254394531,-8.29696655273438e-05,-1.22852194309235,-0.000432491302490234,-9.1552734375e-05,-1.22852194309235,-0.000433444976806641,-8.20159912109375e-05,-1.22852098941803,-0.000447750091552734,-8.0108642578125e-05,-1.22852194309235,-0.000447750091552734,-8.29696655273438e-05,-1.22851622104645,-0.000432491302490234,-0.000121116638183594,-1.2285190820694,-0.000432491302490234,-0.000110626220703125,-1.22850573062897,-0.000432491302490234,-0.000125885009765625,-1.22850668430328,-0.000447750091552734,-0.000111579895019531,-1.22851145267487,-0.000432014465332031,-0.000147819519042969,-1.22850108146667,-0.000432968139648438,-0.000149726867675781,-1.22849822044373,-0.000432491302490234,-0.000139236450195313,-1.22849810123444,-0.000432491302490234,-0.000128746032714844,-1.22847139835358,-0.000447750091552734, +-0.000140190124511719,-1.22847141325474,-0.000447273254394531,-0.000149726867675781,-1.22846764698625,-0.000446796417236328,-0.000130653381347656,-1.22846776247025,-0.000447750091552734,-0.000126838684082031,-1.22848570346832,-0.000446796417236328,-0.000134468078613281,-1.22854471206665,-0.000389575958251953,-7.91549682617188e-05,-1.22854387760162,-0.00038909912109375,-8.29696655273438e-05,-1.22854387760162,-0.00038909912109375,-7.91549682617188e-05,-1.22854292392731,-0.00038909912109375,-7.72476196289063e-05,-1.22854387760162,-0.00038909912109375,-8.0108642578125e-05,-1.22854006290436,-0.000374317169189453,-0.000110626220703125,-1.22854197025299,-0.00038909912109375,-0.000102996826171875,-1.22853434085846,-0.000403881072998047,-0.000123023986816406,-1.22854006290436,-0.000403404235839844,-0.000105857849121094,-1.22853720188141,-0.00038909912109375,-0.00014495849609375,-1.22853243350983,-0.00040435791015625,-0.00014495849609375,-1.22852957248688,-0.000403881072998047,-0.000136375427246094,-1.22852957248688,-0.000403404235839844,-0.000123977661132813,-1.22852098941803,-0.000418663024902344,-0.000148773193359375,-1.22851812839508,-0.000417232513427734,-0.000139236450195313,-1.22851717472076,-0.000418186187744141,-0.000127792358398438,-1.22852575778961,-0.000417709350585938,-0.000128746032714844,-1.22857260704041,-0.000303268432617188,-7.15255737304688e-05,-1.22857356071472,-0.000303268432617188,-7.62939453125e-05,-1.22857260704041,-0.000302791595458984,-7.20024108886719e-05,-1.22857165336609,-0.000302791595458984,-6.91413879394531e-05,-1.22857260704041,-0.000303268432617188,-7.15255737304688e-05,-1.22856879234314,-0.000302791595458984,-0.000104904174804688,-1.22857260704041,-0.000302314758300781,-9.34600830078125e-05,-1.22856211662292,-0.000331878662109375,-0.000115871429443359,-1.22856688499451,-0.000331878662109375,-9.67979431152344e-05,-1.22856688499451,-0.000317573547363281,-0.000138282775878906,-1.22856020927429,-0.000346183776855469,-0.000140190124511719,-1.22855734825134,-0.000346660614013672,-0.000130653381347656, +-1.22855734825134,-0.000345230102539063,-0.000119209289550781,-1.22854483127594,-0.000375747680664063,-0.000143051147460938,-1.22854292392731,-0.000375270843505859,-0.000133514404296875,-1.22854197025299,-0.000374794006347656,-0.000120162963867188,-1.22855162620544,-0.000360488891601563,-0.000123023986816406,-1.22857928276062,-0.000245094299316406,-7.10487365722656e-05,-1.2285783290863,-0.000244617462158203,-8.91685485839844e-05,-1.22857642173767,-0.000245094299316406,-0.000101566314697266,-1.22857737541199,-0.0002593994140625,-0.000105857849121094,-1.22857451438904,-0.0002593994140625,-0.000112056732177734,-1.22857451438904,-0.000245094299316406,-0.0001220703125,-1.22857737541199,-0.000245094299316406,-0.000130653381347656,-1.22857451438904,-0.000259876251220703,-0.000124454498291016,-1.22857642173767,-0.0002593994140625,-0.000131130218505859,-1.22857451438904,-0.000259876251220703,-0.000115871429443359,-1.22857356071472,-0.000274181365966797,-0.000117778778076172,-1.22857356071472,-0.000273227691650391,-0.000113487243652344,-1.22846662253141,-0.000461578369140625,-9.05990600585938e-05,-1.22846855223179,-0.000462055206298828,-8.48770141601563e-05,-1.22846662253141,-0.000461578369140625,-8.20159912109375e-05,-1.22846663743258,-0.000461578369140625,-8.67843627929688e-05,-1.22847804427147,-0.000447273254394531,-0.000142097473144531,-1.22847804427147,-0.000447273254394531,-0.000148773193359375,-1.22847804427147,-0.000447750091552734,-0.000135421752929688,-1.22847804427147,-0.000446796417236328,-0.000131607055664063,-1.22846664488316,-0.000446796417236328,-0.000121116638183594,-1.22846662998199,-0.000461578369140625,-0.000110626220703125,-1.22849249839783,-0.000447750091552734,-0.000139236450195313,-1.22849428653717,-0.000447273254394531,-0.000148773193359375,-1.22849428653717,-0.000461578369140625,-9.1552734375e-05,-1.22849249839783,-0.000447750091552734,-0.000111579895019531,-1.22849249839783,-0.000446796417236328,-0.000128746032714844,-1.22849333286285,-0.000446796417236328,-0.000124931335449219,-1.22848868370056,-0.000447750091552734, +-0.000126838684082031,-1.22848582267761,-0.000446796417236328,-0.000131607055664063,-1.22849905490875,-0.000446796417236328,-9.25064086914063e-05,-1.22849917411804,-0.000446796417236328,-0.000109672546386719,-1.22850394248962,-0.000432968139648438,-0.000141143798828125,-1.22850573062897,-0.000432968139648438,-0.000149726867675781,-1.22849905490875,-0.000447750091552734,-0.000119209289550781,-1.22849905490875,-0.000447273254394531,-0.000123977661132813,-1.22850489616394,-0.000432968139648438,-0.000134468078613281,-1.22850477695465,-0.000432491302490234,-0.000131607055664063,-1.2285133600235,-0.000432968139648438,-0.000139236450195313,-1.22851622104645,-0.000432014465332031,-0.000148773193359375,-1.22851812839508,-0.000446796417236328,-8.86917114257813e-05,-1.22851622104645,-0.000432491302490234,-0.000112533569335938,-1.2285133600235,-0.000432491302490234,-0.000125885009765625,-1.22851145267487,-0.000432968139648438,-0.000128746032714844,-1.22851431369781,-0.000432491302490234,-0.000128746032714844,-1.22851526737213,-0.000432968139648438,-0.000123977661132813,-1.2285248041153,-0.000432968139648438,-8.7738037109375e-05,-1.22852194309235,-0.000432491302490234,-0.000109672546386719,-1.22852194309235,-0.000417232513427734,-0.000139236450195313,-1.2285248041153,-0.000417709350585938,-0.00014495849609375,-1.22852098941803,-0.000418663024902344,-0.00012969970703125,-1.22852098941803,-0.000417232513427734,-0.000126838684082031,-1.22851812839508,-0.000432491302490234,-0.000121116638183594,-1.22851717472076,-0.000418186187744141,-0.000123977661132813,-1.22852861881256,-0.000403881072998047,-0.0001373291015625,-1.22852957248688,-0.000403404235839844,-0.000146865844726563,-1.22854006290436,-0.000432491302490234,-8.7738037109375e-05,-1.22853434085846,-0.000418186187744141,-0.000108718872070313,-1.22852861881256,-0.00040435791015625,-0.000123977661132813,-1.22852957248688,-0.000403881072998047,-0.000119209289550781,-1.22852861881256,-0.000418663024902344,-0.000123023986816406,-1.22852671146393,-0.000418663024902344,-0.000124931335449219, +-1.22854006290436,-0.000418663024902344,-8.67843627929688e-05,-1.22853529453278,-0.000403881072998047,-0.000105857849121094,-1.22853243350983,-0.00038909912109375,-0.000138282775878906,-1.22853434085846,-0.000390052795410156,-0.00014495849609375,-1.22853147983551,-0.00040435791015625,-0.000118255615234375,-1.22853052616119,-0.000403881072998047,-0.000120162963867188,-1.22853243350983,-0.000389575958251953,-0.00012969970703125,-1.22853243350983,-0.000389575958251953,-0.000126838684082031,-1.22853910923004,-0.000374317169189453,-0.000134468078613281,-1.22854197025299,-0.000374794006347656,-0.000144004821777344,-1.22854483127594,-0.000403404235839844,-8.48770141601563e-05,-1.22854197025299,-0.000389575958251953,-0.000103950500488281,-1.22853815555573,-0.00038909912109375,-0.000119209289550781,-1.22853624820709,-0.00038909912109375,-0.000123977661132813,-1.22853910923004,-0.000374317169189453,-0.000119209289550781,-1.22853910923004,-0.000375270843505859,-0.00011444091796875,-1.22854590415955,-0.00038909912109375,-8.29696655273438e-05,-1.22854387760162,-0.000375270843505859,-0.000103950500488281,-1.22854685783386,-0.000360965728759766,-0.000134468078613281,-1.2285487651825,-0.000361442565917969,-0.000143051147460938,-1.22854590415955,-0.000374317169189453,-0.000125885009765625,-1.22854590415955,-0.000375270843505859,-0.000123023986816406,-1.22854197025299,-0.000374794006347656,-0.000111579895019531,-1.22854101657867,-0.000374317169189453,-0.000115394592285156,-1.22855448722839,-0.000346183776855469,-0.000131607055664063,-1.22855639457703,-0.000346183776855469,-0.000141143798828125,-1.22855734825134,-0.000360965728759766,-8.20159912109375e-05,-1.22855734825134,-0.000360965728759766,-0.000101089477539063,-1.22855544090271,-0.000346660614013672,-0.000119209289550781,-1.22855639457703,-0.000346660614013672,-0.00011444091796875,-1.22855448722839,-0.000360965728759766,-0.000115394592285156,-1.22855257987976,-0.000360965728759766,-0.000121116638183594,-1.22856020927429,-0.000346660614013672,-8.0108642578125e-05,-1.22856116294861, +-0.000346660614013672,-9.918212890625e-05,-1.22856116294861,-0.000332355499267578,-0.000131130218505859,-1.22856307029724,-0.000331878662109375,-0.000138282775878906,-1.22855830192566,-0.000346660614013672,-0.000110626220703125,-1.22855734825134,-0.000345706939697266,-0.000113487243652344,-1.22856020927429,-0.000332355499267578,-0.000124931335449219,-1.22855925559998,-0.000331401824951172,-0.000122547149658203,-1.22856879234314,-0.000303745269775391,-0.000126838684082031,-1.22857165336609,-0.000302314758300781,-0.000135898590087891,-1.22857165336609,-0.000317096710205078,-7.77244567871094e-05,-1.22857165336609,-0.000317096710205078,-9.5367431640625e-05,-1.22856688499451,-0.000317573547363281,-0.000115394592285156,-1.22856402397156,-0.000317573547363281,-0.000120162963867188,-1.22856783866882,-0.000303268432617188,-0.00011444091796875,-1.22856688499451,-0.000302791595458984,-0.000109672546386719,-1.22847144305706,-0.000462055206298828,-9.05990600585938e-05,-1.22847047448158,-0.000461101531982422,-0.000112533569335938,-1.22858214378357,-0.000259876251220703,-6.53266906738281e-05,-1.22857451438904,-0.000245094299316406,-6.43730163574219e-05,-1.22857737541199,-0.0002593994140625,-6.24656677246094e-05,-1.2285783290863,-0.000244617462158203,-6.53266906738281e-05,-1.22849822044373,-0.000447273254394531,-8.20159912109375e-05,-1.22849905490875,-0.000447750091552734,-8.29696655273438e-05,-1.22851812839508,-0.000446796417236328,-8.0108642578125e-05,-1.2285190820694,-0.000446796417236328,-8.29696655273438e-05,-1.22849333286285,-0.000461578369140625,-8.29696655273438e-05,-1.22849428653717,-0.000461578369140625,-8.48770141601563e-05,-1.22852575778961,-0.000447273254394531,-8.10623168945313e-05,-1.22852575778961,-0.000447273254394531,-8.392333984375e-05,-1.22854101657867,-0.000432491302490234,-7.91549682617188e-05,-1.22854197025299,-0.000432491302490234,-8.29696655273438e-05,-1.22854006290436,-0.000418663024902344,-7.82012939453125e-05,-1.22854006290436,-0.000418186187744141,-8.10623168945313e-05,-1.22854387760162,-0.000403881072998047, +-7.43865966796875e-05,-1.22854471206665,-0.000403881072998047,-7.91549682617188e-05,-1.22854483127594,-0.000389575958251953,-7.72476196289063e-05,-1.22854566574097,-0.00038909912109375,-7.72476196289063e-05,-1.22855448722839,-0.000360488891601563,-7.34329223632813e-05,-1.22855639457703,-0.000360965728759766,-7.53402709960938e-05,-1.22855830192566,-0.000346183776855469,-7.34329223632813e-05,-1.22855925559998,-0.000345706939697266,-7.53402709960938e-05,-1.22856879234314,-0.000317573547363281,-6.91413879394531e-05,-1.22857069969177,-0.000317573547363281,-7.15255737304688e-05,-1.22857928276062,-0.000259876251220703,-6.38961791992188e-05,-1.22858119010925,-0.0002593994140625,-6.62803649902344e-05,-1.22847616672516,-0.000447750091552734,-0.000126838684082031,-1.22847616672516,-0.000446796417236328,-0.000111579895019531,-1.2285133600235,-0.000417232513427734,-0.0001220703125,-1.22851622104645,-0.000418663024902344,-0.000108718872070313,-1.22853434085846,-0.000360965728759766,-0.000116348266601563,-1.22853338718414,-0.000374317169189453,-0.000102996826171875,-1.22850298881531,-0.000447750091552734,-7.91549682617188e-05,-1.22850668430328,-0.000446796417236328,-8.48770141601563e-05,-1.22850203514099,-0.000446796417236328,-9.25064086914063e-05,-1.22849726676941,-0.000447273254394531,-8.392333984375e-05,-1.22850203514099,-0.000447750091552734,-8.48770141601563e-05,-1.22850000858307,-0.000432491302490234,-0.000134468078613281,-1.22850573062897,-0.000418186187744141,-0.000133514404296875,-1.22850203514099,-0.000432491302490234,-0.000138282775878906,-1.22850298881531,-0.000432968139648438,-0.000134468078613281,-1.22846671193838,-0.000432491302490234,-0.000145912170410156,-1.22846953570843,-0.000432491302490234,-0.000145912170410156,-1.22846761345863,-0.000432968139648438,-0.000146865844726563,-1.22846667841077,-0.000432491302490234,-0.000146865844726563,-1.22853052616119,-0.000403404235839844,-7.72476196289063e-05,-1.22852957248688,-0.000389575958251953,-7.82012939453125e-05,-1.22852671146393,-0.000403404235839844,-8.67843627929688e-05, +-1.22852861881256,-0.00040435791015625,-8.0108642578125e-05,-1.22852766513824,-0.000403404235839844,-8.0108642578125e-05,-1.22852575778961,-0.00038909912109375,-0.000131607055664063,-1.22852957248688,-0.000374794006347656,-0.000128746032714844,-1.22852671146393,-0.000389575958251953,-0.000134468078613281,-1.22852766513824,-0.000389575958251953,-0.000128746032714844,-1.22851049900055,-0.000403404235839844,-0.000143051147460938,-1.22850000858307,-0.000403881072998047,-0.000149726867675781,-1.22848296165466,-0.000403404235839844,-0.000156402587890625,-1.22849440574646,-0.000418663024902344,-0.000148773193359375,-1.22849714756012,-0.000403881072998047,-0.000148773193359375,-1.2285487651825,-0.000331401824951172,-7.00950622558594e-05,-1.2285487651825,-0.000318050384521484,-7.2479248046875e-05,-1.22854590415955,-0.000332355499267578,-7.82012939453125e-05,-1.22854578495026,-0.000332355499267578,-7.34329223632813e-05,-1.22854685783386,-0.000332355499267578,-7.20024108886719e-05,-1.22854971885681,-0.000317573547363281,-0.000125885009765625,-1.22855353355408,-0.000302791595458984,-0.000123500823974609,-1.22855067253113,-0.000317573547363281,-0.000127315521240234,-1.22855162620544,-0.000317096710205078,-0.000123977661132813,-1.22853147983551,-0.000345706939697266,-0.000144004821777344,-1.22851717472076,-0.000346660614013672,-0.000153541564941406,-1.22849524021149,-0.000346660614013672,-0.000163078308105469,-1.22851240634918,-0.000360965728759766,-0.000153541564941406,-1.22851431369781,-0.000346660614013672,-0.000154495239257813,-1.22855830192566,-0.0002593994140625,-8.72611999511719e-05,-1.22855830192566,-0.0002593994140625,-7.20024108886719e-05,-1.22856116294861,-0.000245571136474609,-0.000107765197753906,-1.22856211662292,-0.000245094299316406,-0.000105857849121094,-1.22847712039948,-0.000461101531982422,-8.20159912109375e-05,-1.22848284244537,-0.000461578369140625,-8.48770141601563e-05,-1.22847619652748,-0.000461578369140625,-9.25064086914063e-05,-1.22847144305706,-0.000461578369140625,-8.58306884765625e-05,-1.22847628593445, +-0.000461578369140625,-8.48770141601563e-05,-1.22849333286285,-0.000447273254394531,-8.10623168945313e-05,-1.22849524021149,-0.000446796417236328,-8.392333984375e-05,-1.22849428653717,-0.000447750091552734,-8.96453857421875e-05,-1.22849154472351,-0.000447273254394531,-8.29696655273438e-05,-1.22849333286285,-0.000447750091552734,-8.392333984375e-05,-1.22849154472351,-0.000447750091552734,-0.000119209289550781,-1.22849428653717,-0.000447273254394531,-0.000108718872070313,-1.22852385044098,-0.000432968139648438,-7.72476196289063e-05,-1.2285248041153,-0.000432968139648438,-8.10623168945313e-05,-1.2285190820694,-0.000432491302490234,-8.67843627929688e-05,-1.2285190820694,-0.000432491302490234,-8.29696655273438e-05,-1.22852098941803,-0.000432968139648438,-8.10623168945313e-05,-1.22853243350983,-0.000418663024902344,-7.91549682617188e-05,-1.22853147983551,-0.000418186187744141,-8.0108642578125e-05,-1.22852861881256,-0.000417709350585938,-8.7738037109375e-05,-1.22852861881256,-0.000418186187744141,-8.10623168945313e-05,-1.22853052616119,-0.000418186187744141,-8.0108642578125e-05,-1.2285248041153,-0.00040435791015625,-0.000118255615234375,-1.22852575778961,-0.00040435791015625,-0.000105857849121094,-1.22853529453278,-0.000374317169189453,-7.2479248046875e-05,-1.22853434085846,-0.000360965728759766,-7.53402709960938e-05,-1.22853338718414,-0.000374317169189453,-8.29696655273438e-05,-1.22853529453278,-0.000375747680664063,-7.72476196289063e-05,-1.22853434085846,-0.000375270843505859,-7.72476196289063e-05,-1.22854495048523,-0.000346183776855469,-7.34329223632813e-05,-1.22854590415955,-0.000346660614013672,-7.62939453125e-05,-1.22854197025299,-0.000346660614013672,-8.10623168945313e-05,-1.22853910923004,-0.000346183776855469,-7.53402709960938e-05,-1.22854292392731,-0.000346660614013672,-7.62939453125e-05,-1.22854292392731,-0.000346660614013672,-0.000110626220703125,-1.22854101657867,-0.000346183776855469,-0.000100135803222656,-1.22856020927429,-0.000288963317871094,-6.53266906738281e-05,-1.22855925559998,-0.000274181365966797,-6.72340393066406e-05, +-1.22855734825134,-0.000288486480712891,-7.34329223632813e-05,-1.22855734825134,-0.000288009643554688,-6.91413879394531e-05,-1.22855830192566,-0.000288009643554688,-6.77108764648438e-05,-1.22855734825134,-0.000274181365966797,-0.000107765197753906,-1.22855639457703,-0.000273227691650391,-8.91685485839844e-05,-1.22851622104645,-0.000432968139648438,-8.10623168945313e-05,-1.22851717472076,-0.000432491302490234,-8.29696655273438e-05,-1.22851526737213,-0.000432968139648438,-8.7738037109375e-05,-1.2285133600235,-0.000432491302490234,-8.20159912109375e-05,-1.22851526737213,-0.000432968139648438,-8.29696655273438e-05,-1.22851145267487,-0.000432491302490234,-0.000121116638183594,-1.2285133600235,-0.000432491302490234,-0.000109672546386719,-1.22849905490875,-0.000432491302490234,-0.000124931335449219,-1.22850000858307,-0.000432491302490234,-0.000110626220703125,-1.2284961938858,-0.000418663024902344,-0.000142097473144531,-1.22848963737488,-0.000417232513427734,-0.000146865844726563,-1.2284771502018,-0.000418186187744141,-0.000149726867675781,-1.22848379611969,-0.000432968139648438,-0.000146865844726563,-1.22848665714264,-0.000418186187744141,-0.000146865844726563,-1.22848677635193,-0.000432491302490234,-0.000143051147460938,-1.22847339510918,-0.000432491302490234,-0.000148773193359375,-1.22847613692284,-0.000432491302490234,-0.00014495849609375,-1.22847998142242,-0.000432491302490234,-0.00014495849609375,-1.22849237918854,-0.000432491302490234,-0.000132560729980469,-1.22849631309509,-0.000432491302490234,-0.000133514404296875,-1.22849333286285,-0.000432491302490234,-0.000139236450195313,-1.22849428653717,-0.000432491302490234,-0.000133514404296875,-1.2284666672349,-0.000447750091552734,-0.000139236450195313,-1.22846853733063,-0.000447273254394531,-0.000142097473144531,-1.2284666262567,-0.000447273254394531,-0.000141143798828125,-1.22846858948469,-0.000447273254394531,-0.000136375427246094,-1.22846665233374,-0.000447273254394531,-0.000134468078613281,-1.2284791469574,-0.000446796417236328,-0.000136375427246094,-1.22848582267761, +-0.000432968139648438,-0.000135421752929688,-1.22848200798035,-0.000432491302490234,-0.000138282775878906,-1.22848284244537,-0.000432491302490234,-0.000138282775878906,-1.22853720188141,-0.00038909912109375,-7.82012939453125e-05,-1.22853815555573,-0.00038909912109375,-7.91549682617188e-05,-1.22853529453278,-0.000389575958251953,-8.29696655273438e-05,-1.22853243350983,-0.00038909912109375,-7.91549682617188e-05,-1.22853624820709,-0.00038909912109375,-7.91549682617188e-05,-1.22853434085846,-0.000374794006347656,-0.000110626220703125,-1.22853529453278,-0.000375270843505859,-0.000102996826171875,-1.2285248041153,-0.00038909912109375,-0.000118255615234375,-1.22852575778961,-0.000403881072998047,-0.000103950500488281,-1.22852098941803,-0.000389575958251953,-0.000144004821777344,-1.2285076379776,-0.000375270843505859,-0.000152587890625,-1.22848856449127,-0.00038909912109375,-0.000162124633789063,-1.22850382328033,-0.00038909912109375,-0.000153541564941406,-1.22850573062897,-0.00038909912109375,-0.000151634216308594,-1.22851526737213,-0.00038909912109375,-0.000144004821777344,-1.22848570346832,-0.000403881072998047,-0.000158309936523438,-1.22850203514099,-0.000403404235839844,-0.000151634216308594,-1.22852289676666,-0.000403881072998047,-0.000128746032714844,-1.22852385044098,-0.00038909912109375,-0.000131607055664063,-1.22852289676666,-0.000403881072998047,-0.000135421752929688,-1.22852289676666,-0.000403404235839844,-0.00012969970703125,-1.22850298881531,-0.000418186187744141,-0.000144004821777344,-1.22848010063171,-0.000418663024902344,-0.000152587890625,-1.22849249839783,-0.000418186187744141,-0.000147819519042969,-1.22850954532623,-0.000417709350585938,-0.000133514404296875,-1.22851240634918,-0.000417709350585938,-0.000131607055664063,-1.22851049900055,-0.000417232513427734,-0.0001373291015625,-1.22851049900055,-0.000418663024902344,-0.000133514404296875,-1.22851526737213,-0.000417232513427734,-0.000133514404296875,-1.22852003574371,-0.000403881072998047,-0.00012969970703125,-1.22851622104645,-0.000403881072998047,-0.000135421752929688, +-1.22851717472076,-0.000403881072998047,-0.000133514404296875,-1.22855925559998,-0.000302791595458984,-6.866455078125e-05,-1.22855925559998,-0.000302314758300781,-7.05718994140625e-05,-1.22855639457703,-0.000303268432617188,-7.58171081542969e-05,-1.22855448722839,-0.000302791595458984,-7.00950622558594e-05,-1.22855734825134,-0.000302314758300781,-7.10487365722656e-05,-1.22855639457703,-0.000302791595458984,-0.000108242034912109,-1.22855639457703,-0.000303268432617188,-9.48905944824219e-05,-1.22854590415955,-0.000331878662109375,-0.000114917755126953,-1.22854495048523,-0.000331401824951172,-9.67979431152344e-05,-1.22853052616119,-0.000288963317871094,-0.000141143798828125,-1.22848677635193,-0.000317096710205078,-0.000160694122314453,-1.22851622104645,-0.000317096710205078,-0.000152587890625,-1.2285076379776,-0.000302791595458984,-0.000151157379150391,-1.22853529453278,-0.000331401824951172,-0.000143051147460938,-1.22849714756012,-0.000331401824951172,-0.000162124633789063,-1.22851812839508,-0.000331878662109375,-0.000152111053466797,-1.22854495048523,-0.000345706939697266,-0.0001220703125,-1.22854685783386,-0.000332355499267578,-0.000124454498291016,-1.22854483127594,-0.000331401824951172,-0.00012969970703125,-1.22854590415955,-0.000331878662109375,-0.000124454498291016,-1.22852575778961,-0.000374794006347656,-0.000144004821777344,-1.22849154472351,-0.000375270843505859,-0.000162124633789063,-1.22850954532623,-0.000374317169189453,-0.000154495239257813,-1.22853338718414,-0.000375270843505859,-0.000125885009765625,-1.22853434085846,-0.000374794006347656,-0.000127792358398438,-1.22853243350983,-0.000375270843505859,-0.000133514404296875,-1.22853434085846,-0.000375270843505859,-0.000125885009765625,-1.22853720188141,-0.000360488891601563,-0.000128746032714844,-1.22854101657867,-0.000345706939697266,-0.000125885009765625,-1.22853815555573,-0.000360965728759766,-0.000130653381347656,-1.22853910923004,-0.000361442565917969,-0.000128746032714844,-1.22856116294861,-0.000245094299316406,-8.91685485839844e-05,-1.22856116294861, +-0.000245571136474609,-7.10487365722656e-05,-1.22856211662292,-0.000245094299316406,-0.000101089477539063,-1.22855925559998,-0.000259876251220703,-0.000105857849121094,-1.22856116294861,-0.0002593994140625,-0.000112533569335938,-1.22855830192566,-0.000258922576904297,-0.000119209289550781,-1.22855830192566,-0.000245094299316406,-0.000116825103759766,-1.22855639457703,-0.000259876251220703,-0.000121116638183594,-1.22855830192566,-0.000259876251220703,-0.000118732452392578,-1.22855639457703,-0.000288963317871094,-0.000118255615234375,-1.22855734825134,-0.000273227691650391,-0.000119209289550781,-1.22855925559998,-0.000274181365966797,-0.000113487243652344,-1.22846661880612,-0.000462055206298828,-8.29696655273438e-05,-1.22846761345863,-0.000461578369140625,-8.48770141601563e-05,-1.22846671193838,-0.000462055206298828,-8.96453857421875e-05,-1.22846660390496,-0.000462055206298828,-8.48770141601563e-05,-1.22847619652748,-0.000446796417236328,-0.000132560729980469,-1.22846665233374,-0.000447750091552734,-0.000123977661132813,-1.22846665978432,-0.000447273254394531,-0.000126838684082031,-1.22848665714264,-0.000447273254394531,-0.000112533569335938,-1.22848773002625,-0.000447750091552734,-9.1552734375e-05,-1.22849142551422,-0.000447750091552734,-0.000123977661132813,-1.22848391532898,-0.000447750091552734,-0.000125885009765625,-1.22848379611969,-0.000432491302490234,-0.000131607055664063,-1.22849631309509,-0.000446796417236328,-0.000109672546386719,-1.22849631309509,-0.000446796417236328,-9.1552734375e-05,-1.2284961938858,-0.000432491302490234,-0.000120162963867188,-1.22849631309509,-0.000432968139648438,-0.000123977661132813,-1.22849810123444,-0.000432491302490234,-0.000130653381347656,-1.2285076379776,-0.000432491302490234,-0.000110626220703125,-1.22851049900055,-0.000447273254394531,-8.96453857421875e-05,-1.22850477695465,-0.000432491302490234,-0.000123977661132813,-1.22850394248962,-0.000432968139648438,-0.000128746032714844,-1.22851049900055,-0.000418663024902344,-0.000123977661132813,-1.22851431369781,-0.000432491302490234, +-0.000108718872070313,-1.22851622104645,-0.000432491302490234,-8.86917114257813e-05,-1.2285133600235,-0.000418186187744141,-0.000127792358398438,-1.22851240634918,-0.000418186187744141,-0.000121116638183594,-1.22851240634918,-0.000418663024902344,-0.000123023986816406,-1.22852194309235,-0.000418186187744141,-0.000108718872070313,-1.2285248041153,-0.000418663024902344,-8.7738037109375e-05,-1.22852385044098,-0.000403404235839844,-0.000119209289550781,-1.2285190820694,-0.000403404235839844,-0.000121116638183594,-1.2285190820694,-0.000403881072998047,-0.000126838684082031,-1.22852671146393,-0.00040435791015625,-0.0001068115234375,-1.22852861881256,-0.000403881072998047,-8.67843627929688e-05,-1.2285248041153,-0.00040435791015625,-0.000115394592285156,-1.2285248041153,-0.000403404235839844,-0.000120162963867188,-1.2285248041153,-0.000389575958251953,-0.000123977661132813,-1.22852957248688,-0.00038909912109375,-0.000102996826171875,-1.22852957248688,-0.000389575958251953,-8.48770141601563e-05,-1.22852766513824,-0.000389575958251953,-0.000117301940917969,-1.22852766513824,-0.00038909912109375,-0.0001220703125,-1.22853338718414,-0.000374317169189453,-0.000112533569335938,-1.22853624820709,-0.000375270843505859,-0.000102043151855469,-1.22853720188141,-0.000375270843505859,-8.29696655273438e-05,-1.22853624820709,-0.000360488891601563,-0.000121116638183594,-1.22853624820709,-0.000374794006347656,-0.000110626220703125,-1.22853624820709,-0.000374317169189453,-0.000115394592285156,-1.22853624820709,-0.000360965728759766,-0.000100135803222656,-1.22853529453278,-0.000360488891601563,-8.0108642578125e-05,-1.22854483127594,-0.000346660614013672,-0.000113487243652344,-1.22853815555573,-0.000360965728759766,-0.000115394592285156,-1.22854006290436,-0.000360488891601563,-0.000121116638183594,-1.22854292392731,-0.000332355499267578,-9.918212890625e-05,-1.22854483127594,-0.000332355499267578,-8.0108642578125e-05,-1.22854387760162,-0.000332355499267578,-0.000110149383544922,-1.22854590415955,-0.000332355499267578,-0.000113487243652344,-1.22854685783386, +-0.000318050384521484,-0.000121116638183594,-1.22854971885681,-0.000317096710205078,-9.48905944824219e-05,-1.22855067253113,-0.000317573547363281,-7.72476196289063e-05,-1.22855067253113,-0.000317573547363281,-0.000113487243652344,-1.22855162620544,-0.000318050384521484,-0.000119686126708984,-1.22855639457703,-0.000303268432617188,-0.000112056732177734,-1.22846955806017,-0.000447273254394531,-0.000110626220703125,-1.22846858203411,-0.000461578369140625,-9.1552734375e-05,-1.22856402397156,-0.000258922576904297,-6.19888305664063e-05,-1.22856497764587,-0.000245094299316406,-6.58035278320313e-05,-1.22856020927429,-0.000259876251220703,-6.58035278320313e-05,-1.22856307029724,-0.000245094299316406,-6.58035278320313e-05,-1.2284961938858,-0.000447750091552734,-8.20159912109375e-05,-1.22849631309509,-0.000446796417236328,-8.29696655273438e-05,-1.22851145267487,-0.000447750091552734,-8.10623168945313e-05,-1.22851049900055,-0.000446796417236328,-8.29696655273438e-05,-1.22848761081696,-0.000461578369140625,-8.10623168945313e-05,-1.22848761081696,-0.000461578369140625,-8.48770141601563e-05,-1.2285190820694,-0.000432491302490234,-7.91549682617188e-05,-1.22851717472076,-0.000432968139648438,-8.29696655273438e-05,-1.22852957248688,-0.000418186187744141,-7.72476196289063e-05,-1.22852671146393,-0.000418663024902344,-8.20159912109375e-05,-1.22853147983551,-0.000418186187744141,-7.91549682617188e-05,-1.22852957248688,-0.000418663024902344,-8.10623168945313e-05,-1.22853243350983,-0.00038909912109375,-7.43865966796875e-05,-1.22853052616119,-0.00038909912109375,-7.82012939453125e-05,-1.22853720188141,-0.000374317169189453,-7.53402709960938e-05,-1.22853720188141,-0.000375270843505859,-8.0108642578125e-05,-1.22853815555573,-0.000360965728759766,-7.2479248046875e-05,-1.22853624820709,-0.000360488891601563,-7.53402709960938e-05,-1.22854781150818,-0.000331878662109375,-7.15255737304688e-05,-1.22854590415955,-0.000331878662109375,-7.43865966796875e-05,-1.22855353355408,-0.000317096710205078,-6.81877136230469e-05,-1.22855162620544,-0.000317096710205078, +-7.15255737304688e-05,-1.22856211662292,-0.0002593994140625,-6.43730163574219e-05,-1.22856020927429,-0.000260353088378906,-6.53266906738281e-05,-1.22846662253141,-0.000462055206298828,-8.10623168945313e-05,-1.22846850752831,-0.000462055206298828,-8.0108642578125e-05,-1.22846663743258,-0.000461101531982422,-8.20159912109375e-05,-1.22847241163254,-0.000461578369140625,-8.10623168945313e-05,-1.22847905755043,-0.000461578369140625,-8.10623168945313e-05,-1.22848376631737,-0.000461101531982422,-8.0108642578125e-05,-1.22847804427147,-0.000461101531982422,-8.10623168945313e-05,-1.22848951816559,-0.000461101531982422,-8.0108642578125e-05,-1.22849237918854,-0.000461101531982422,-7.82012939453125e-05,-1.22848868370056,-0.000461578369140625,-7.82012939453125e-05,-1.22849440574646,-0.000462055206298828,-7.82012939453125e-05,-1.22849524021149,-0.000447750091552734,-8.10623168945313e-05,-1.22849428653717,-0.000447273254394531,-7.91549682617188e-05,-1.22849726676941,-0.000447750091552734,-8.0108642578125e-05,-1.22849917411804,-0.000447273254394531,-8.20159912109375e-05,-1.22849631309509,-0.000447750091552734,-8.0108642578125e-05,-1.22850489616394,-0.000447750091552734,-7.72476196289063e-05,-1.22850859165192,-0.000447273254394531,-8.0108642578125e-05,-1.22850394248962,-0.000446796417236328,-7.91549682617188e-05,-1.22851431369781,-0.000447750091552734,-7.72476196289063e-05,-1.22851526737213,-0.000447750091552734,-7.82012939453125e-05,-1.22851240634918,-0.000447273254394531,-7.72476196289063e-05,-1.22851812839508,-0.000446796417236328,-7.82012939453125e-05,-1.22851812839508,-0.000432968139648438,-7.91549682617188e-05,-1.22851717472076,-0.000447750091552734,-7.91549682617188e-05,-1.22852194309235,-0.000432491302490234,-7.91549682617188e-05,-1.22852385044098,-0.000432968139648438,-7.72476196289063e-05,-1.22852098941803,-0.000432491302490234,-7.72476196289063e-05,-1.22853052616119,-0.000432491302490234,-7.53402709960938e-05,-1.22853052616119,-0.000432968139648438,-7.72476196289063e-05,-1.22852671146393,-0.000432491302490234,-7.62939453125e-05, +-1.22853624820709,-0.000432491302490234,-7.62939453125e-05,-1.22853338718414,-0.000418663024902344,-7.62939453125e-05,-1.22853243350983,-0.000418186187744141,-7.62939453125e-05,-1.22853624820709,-0.000418663024902344,-7.72476196289063e-05,-1.22853434085846,-0.000417232513427734,-7.91549682617188e-05,-1.22853434085846,-0.000418186187744141,-7.72476196289063e-05,-1.22853624820709,-0.000418663024902344,-7.82012939453125e-05,-1.22853338718414,-0.000403881072998047,-7.72476196289063e-05,-1.22853338718414,-0.000418186187744141,-7.82012939453125e-05,-1.22853720188141,-0.000403881072998047,-7.72476196289063e-05,-1.22853338718414,-0.000403404235839844,-7.62939453125e-05,-1.22853338718414,-0.00040435791015625,-7.62939453125e-05,-1.22853815555573,-0.00038909912109375,-7.53402709960938e-05,-1.22853624820709,-0.000389575958251953,-7.34329223632813e-05,-1.22853529453278,-0.00038909912109375,-7.62939453125e-05,-1.22854006290436,-0.000389575958251953,-7.72476196289063e-05,-1.22853910923004,-0.000389575958251953,-7.72476196289063e-05,-1.22853815555573,-0.000389575958251953,-7.62939453125e-05,-1.22854101657867,-0.00038909912109375,-7.62939453125e-05,-1.22853910923004,-0.000375747680664063,-7.43865966796875e-05,-1.22853910923004,-0.00038909912109375,-7.62939453125e-05,-1.22854292392731,-0.000374317169189453,-7.43865966796875e-05,-1.22853910923004,-0.000360965728759766,-7.43865966796875e-05,-1.22853910923004,-0.000374317169189453,-7.34329223632813e-05,-1.22854685783386,-0.000360965728759766,-7.2479248046875e-05,-1.22854495048523,-0.000345706939697266,-7.15255737304688e-05,-1.22854197025299,-0.000360965728759766,-7.15255737304688e-05,-1.22854971885681,-0.000346660614013672,-7.2479248046875e-05,-1.22854971885681,-0.000346660614013672,-7.2479248046875e-05,-1.22854781150818,-0.000346660614013672,-7.2479248046875e-05,-1.22855257987976,-0.000346660614013672,-7.05718994140625e-05,-1.22855067253113,-0.000331878662109375,-7.00950622558594e-05,-1.22854971885681,-0.000346660614013672,-7.15255737304688e-05,-1.22855639457703,-0.000331401824951172, +-6.96182250976563e-05,-1.22855448722839,-0.000317573547363281,-6.96182250976563e-05,-1.22855162620544,-0.000331878662109375,-6.866455078125e-05,-1.22856116294861,-0.000317573547363281,-6.81877136230469e-05,-1.22855925559998,-0.000302791595458984,-6.72340393066406e-05,-1.22855734825134,-0.000318050384521484,-6.77108764648438e-05,-1.22856497764587,-0.000303268432617188,-6.77108764648438e-05,-1.22856402397156,-0.000302791595458984,-6.96182250976563e-05,-1.22856211662292,-0.000303745269775391,-6.77108764648438e-05,-1.22856402397156,-0.000288486480712891,-6.4849853515625e-05,-1.22856974601746,-0.000288486480712891,-6.58035278320313e-05,-1.22856593132019,-0.000274181365966797,-6.38961791992188e-05,-1.22856497764587,-0.000288486480712891,-6.43730163574219e-05,-1.22857069969177,-0.0002593994140625,-6.34193420410156e-05,-1.22856688499451,-0.000259876251220703,-6.15119934082031e-05,-1.22856593132019,-0.000259876251220703,-6.43730163574219e-05,-1.22857069969177,-0.0002593994140625,-6.103515625e-05,-1.22856783866882,-0.000245094299316406,-6.05583190917969e-05,-1.22856783866882,-0.000259876251220703,-6.103515625e-05,-1.22847425937653,-0.000476360321044922,-8.10623168945313e-05,-1.22847044467926,-0.000461578369140625,-7.91549682617188e-05,-1.22846853733063,-0.000461101531982422,-8.10623168945313e-05,-1.22847050428391,-0.000476360321044922,-8.20159912109375e-05,-1.22847047448158,-0.000475883483886719,-8.10623168945313e-05,-1.22848677635193,-0.000461578369140625,-7.91549682617188e-05,-1.22848010063171,-0.000461578369140625,-8.10623168945313e-05,-1.22849440574646,-0.000461101531982422,-8.0108642578125e-05,-1.22849142551422,-0.000461101531982422,-8.0108642578125e-05,-1.2284961938858,-0.000446796417236328,-7.91549682617188e-05,-1.22849535942078,-0.000461578369140625,-8.0108642578125e-05,-1.22850203514099,-0.000461578369140625,-7.91549682617188e-05,-1.22849810123444,-0.000447750091552734,-8.20159912109375e-05,-1.22851240634918,-0.000446796417236328,-7.82012939453125e-05,-1.22850668430328,-0.000447750091552734,-8.0108642578125e-05,-1.2285190820694, +-0.000447750091552734,-7.91549682617188e-05,-1.22851622104645,-0.000446796417236328,-7.82012939453125e-05,-1.22852098941803,-0.000432491302490234,-7.82012939453125e-05,-1.22852003574371,-0.000447750091552734,-7.91549682617188e-05,-1.22852861881256,-0.000446796417236328,-7.72476196289063e-05,-1.2285248041153,-0.000446796417236328,-8.0108642578125e-05,-1.22853720188141,-0.000432968139648438,-7.72476196289063e-05,-1.22853338718414,-0.000432491302490234,-7.72476196289063e-05,-1.22853910923004,-0.000418186187744141,-7.72476196289063e-05,-1.22853910923004,-0.000432491302490234,-7.62939453125e-05,-1.22853720188141,-0.000418186187744141,-7.72476196289063e-05,-1.22853815555573,-0.000418663024902344,-7.72476196289063e-05,-1.22854006290436,-0.000417709350585938,-7.72476196289063e-05,-1.22853815555573,-0.000418186187744141,-7.62939453125e-05,-1.22854101657867,-0.00040435791015625,-7.43865966796875e-05,-1.22854006290436,-0.00040435791015625,-7.72476196289063e-05,-1.22854197025299,-0.000389575958251953,-7.53402709960938e-05,-1.22854101657867,-0.000403881072998047,-7.53402709960938e-05,-1.22854197025299,-0.000389575958251953,-7.62939453125e-05,-1.22854197025299,-0.000389575958251953,-7.62939453125e-05,-1.22854483127594,-0.000374317169189453,-7.43865966796875e-05,-1.22854292392731,-0.00038909912109375,-7.62939453125e-05,-1.2285487651825,-0.000375270843505859,-7.2479248046875e-05,-1.22854685783386,-0.000374794006347656,-7.34329223632813e-05,-1.22855257987976,-0.000346183776855469,-7.15255737304688e-05,-1.22855067253113,-0.000360965728759766,-7.2479248046875e-05,-1.22855353355408,-0.000346183776855469,-7.2479248046875e-05,-1.22855353355408,-0.000346660614013672,-7.2479248046875e-05,-1.22855830192566,-0.000331878662109375,-6.96182250976563e-05,-1.22855544090271,-0.000346660614013672,-7.15255737304688e-05,-1.22856211662292,-0.000332355499267578,-7.00950622558594e-05,-1.22856020927429,-0.000331878662109375,-7.00950622558594e-05,-1.22856783866882,-0.000302314758300781,-6.72340393066406e-05,-1.22856497764587,-0.000317573547363281,-6.81877136230469e-05, +-1.22856974601746,-0.000303268432617188,-6.91413879394531e-05,-1.22856879234314,-0.000303268432617188,-6.866455078125e-05,-1.22857451438904,-0.000288486480712891,-6.4849853515625e-05,-1.22857451438904,-0.000273227691650391,-6.43730163574219e-05,-1.22857451438904,-0.000288486480712891,-6.43730163574219e-05,-1.22857642173767,-0.000259876251220703,-6.103515625e-05,-1.22857546806335,-0.000259876251220703,-6.34193420410156e-05,-1.22857260704041,-0.000245571136474609,-6.103515625e-05,-1.22857451438904,-0.000259876251220703,-6.103515625e-05,-1.22847139835358,-0.000446796417236328,-0.000132560729980469,-1.22847157716751,-0.000447750091552734,-0.00012969970703125,-1.22855830192566,-0.000230312347412109,-0.000117301940917969,-1.22855639457703,-0.000274181365966797,-0.000123023986816406,-1.22855734825134,-0.000273227691650391,-0.000121116638183594,-1.22855257987976,-0.000288486480712891,-0.000125408172607422,-1.22855544090271,-0.000302791595458984,-0.000121116638183594,-1.22854781150818,-0.000318050384521484,-0.000128746032714844,-1.22854781150818,-0.000331878662109375,-0.000125885009765625,-1.22854197025299,-0.000346183776855469,-0.00012969970703125,-1.22854292392731,-0.000346660614013672,-0.000124931335449219,-1.22853624820709,-0.000360488891601563,-0.000132560729980469,-1.22853529453278,-0.000361442565917969,-0.000128746032714844,-1.22852957248688,-0.000374317169189453,-0.000133514404296875,-1.22853147983551,-0.000375270843505859,-0.000125885009765625,-1.2285248041153,-0.00038909912109375,-0.000134468078613281,-1.2285248041153,-0.00038909912109375,-0.00012969970703125,-1.22852003574371,-0.000403404235839844,-0.000135421752929688,-1.22852098941803,-0.000403881072998047,-0.000130653381347656,-1.22851431369781,-0.000418663024902344,-0.000136375427246094,-1.2285133600235,-0.000418186187744141,-0.000132560729980469,-1.22850573062897,-0.000418186187744141,-0.000138282775878906,-1.2285076379776,-0.000417232513427734,-0.000133514404296875,-1.22849810123444,-0.000432968139648438,-0.000138282775878906,-1.22849810123444,-0.000432491302490234, +-0.000133514404296875,-1.22848677635193,-0.000432491302490234,-0.000138282775878906,-1.22848951816559,-0.000432491302490234,-0.000134468078613281,-1.22847329080105,-0.000446796417236328,-0.000135421752929688,-1.22847628593445,-0.000447273254394531,-0.000139236450195313,-1.22847619652748,-0.000447750091552734,-0.000136375427246094,-1.22847062349319,-0.000447750091552734,-0.000124931335449219,-1.22847138345242,-0.000446796417236328,-0.00012969970703125,-1.2284704297781,-0.000447750091552734,-0.000123977661132813,-1.22854971885681,-0.000245094299316406,-0.000126361846923828,-1.22854971885681,-0.000259876251220703,-0.000128269195556641,-1.22855353355408,-0.0002593994140625,-0.000125885009765625,-1.22854483127594,-0.000331878662109375,-0.000134468078613281,-1.22854685783386,-0.000302791595458984,-0.000133991241455078,-1.22854781150818,-0.000317573547363281,-0.000131130218505859,-1.22853338718414,-0.000361442565917969,-0.000136375427246094,-1.22853720188141,-0.000360965728759766,-0.000135421752929688,-1.22853624820709,-0.000361442565917969,-0.000134468078613281,-1.22852289676666,-0.00038909912109375,-0.000138282775878906,-1.22852671146393,-0.00038909912109375,-0.000136375427246094,-1.22852575778961,-0.000389575958251953,-0.0001373291015625,-1.22851145267487,-0.000418663024902344,-0.000141143798828125,-1.22851526737213,-0.000403404235839844,-0.000139236450195313,-1.22851431369781,-0.000418663024902344,-0.000138282775878906,-1.22849440574646,-0.000432491302490234,-0.000139236450195313,-1.22850000858307,-0.000432491302490234,-0.000139236450195313,-1.22849822044373,-0.000432968139648438,-0.000141143798828125,-1.22847433388233,-0.000446796417236328,-0.000142097473144531,-1.22848001122475,-0.000432968139648438,-0.000139236450195313,-1.22847807407379,-0.000432491302490234,-0.000141143798828125,-1.22854387760162,-0.000245094299316406,-0.000130176544189453,-1.22854387760162,-0.000274181365966797,-0.000131130218505859,-1.22854471206665,-0.000288486480712891,-0.000133514404296875,-1.22854197025299,-0.000346660614013672,-0.000136375427246094, +-1.22854387760162,-0.000332355499267578,-0.000135421752929688,-1.22853910923004,-0.000346660614013672,-0.000135421752929688,-1.22852957248688,-0.000374794006347656,-0.0001373291015625,-1.22853147983551,-0.000375270843505859,-0.000138282775878906,-1.22852766513824,-0.000374794006347656,-0.000139236450195313,-1.2285190820694,-0.000403404235839844,-0.000139236450195313,-1.22852098941803,-0.00038909912109375,-0.0001373291015625,-1.22851717472076,-0.000403881072998047,-0.000140190124511719,-1.22850584983826,-0.000418186187744141,-0.000141143798828125,-1.22850859165192,-0.000417232513427734,-0.000139236450195313,-1.22850203514099,-0.000418663024902344,-0.000139236450195313,-1.22848677635193,-0.000432968139648438,-0.000140190124511719,-1.22849059104919,-0.000432491302490234,-0.000140190124511719,-1.22847810387611,-0.000432968139648438,-0.00014495849609375,-1.22848296165466,-0.000432968139648438,-0.000140190124511719,-1.22847139835358,-0.000432968139648438,-0.000144004821777344,-1.22847335040569,-0.000432491302490234,-0.000144004821777344,-1.22846948355436,-0.000432968139648438,-0.000150680541992188,-1.22846852242947,-0.000432491302490234,-0.000149726867675781,-1.22847144305706,-0.000418663024902344,-0.000155448913574219,-1.22847053408623,-0.000418663024902344,-0.000151634216308594,-1.22847236692905,-0.000418186187744141,-0.000157356262207031,-1.22847236692905,-0.000418663024902344,-0.000154495239257813,-1.22847335040569,-0.000403881072998047,-0.00016021728515625,-1.22847338020802,-0.000403404235839844,-0.000157356262207031,-1.22847533226013,-0.00038909912109375,-0.000162124633789063,-1.22847428917885,-0.000403881072998047,-0.000161170959472656,-1.22847628593445,-0.000375747680664063,-0.000164031982421875,-1.22847613692284,-0.00038909912109375,-0.000163078308105469,-1.22847819328308,-0.000360965728759766,-0.000166893005371094,-1.22847723960876,-0.000374317169189453,-0.000165939331054688,-1.2284799516201,-0.000332355499267578,-0.000165939331054688,-1.22848001122475,-0.000332355499267578,-0.000164031982421875,-1.22846762090921, +-0.000447273254394531,-0.000149726867675781,-1.22846762090921,-0.000447750091552734,-0.000142097473144531,-1.22847148776054,-0.000475883483886719,-8.48770141601563e-05,-1.22846476361156,-0.000461101531982422,-8.20159912109375e-05,-1.22846664488316,-0.000461578369140625,-7.91549682617188e-05,-1.22846948355436,-0.000461578369140625,-8.20159912109375e-05,-1.22846966981888,-0.000461101531982422,-8.10623168945313e-05,-1.22846861183643,-0.000461578369140625,-8.48770141601563e-05,-1.22846660017967,-0.000447273254394531,-0.000110626220703125,-1.22847062349319,-0.000446796417236328,-0.000140190124511719,-1.22847145795822,-0.000447750091552734,-0.000136375427246094,-1.22847050428391,-0.000447750091552734,-0.000142097473144531,-1.22845904529095,-0.000447273254394531,-0.000149726867675781,-1.22845900058746,-0.000475883483886719,-8.48770141601563e-05,-1.22846380621195,-0.000461578369140625,-7.91549682617188e-05,-1.2284599840641,-0.000461578369140625,-8.20159912109375e-05,-1.22845993936062,-0.000461101531982422,-8.10623168945313e-05,-1.2284609824419,-0.000461578369140625,-8.48770141601563e-05,-1.22846385091543,-0.000447273254394531,-0.000110626220703125,-1.22845900058746,-0.000446796417236328,-0.000140190124511719,-1.22845901548862,-0.000447750091552734,-0.000136375427246094,-1.22845900058746,-0.000447750091552734,-0.000142097473144531,-1.22835516929626,-0.000245094299316406,-6.53266906738281e-05,-1.22836470603943,-0.000245094299316406,-6.4849853515625e-05,-1.22836184501648,-0.000245094299316406,-6.103515625e-05,-1.22835803031921,-0.000244617462158203,-6.24656677246094e-05,-1.22857451438904,-0.000245094299316406,-6.53266906738281e-05,-1.22856497764587,-0.000245094299316406,-6.4849853515625e-05,-1.22856879234314,-0.000245094299316406,-6.103515625e-05,-1.22857165336609,-0.000244617462158203,-6.24656677246094e-05,-1.22836375236511,-0.000230312347412109,-6.15119934082031e-05,-1.22836947441101,-0.000231266021728516,-0.000109672546386719,-1.22838652133942,-0.000230789184570313,-0.000129222869873047,-1.22854292392731,-0.000230312347412109, +-0.00012969970703125,-1.22855830192566,-0.000231266021728516,-0.000118255615234375,-1.22856688499451,-0.000230312347412109,-6.15119934082031e-05,-1.22856020927429,-0.000230312347412109,-0.000109195709228516,-1.22856020927429,-0.000231266021728516,-0.000109672546386719,-1.22837233543396,-0.000230312347412109,-0.000117301940917969,-1.22837233543396,-0.000231266021728516,-0.000118255615234375,-1.22843325138092,-0.000259876251220703,-0.000142574310302734,-1.22846476361156,-0.000347137451171875,-0.0001678466796875,-1.22845137119293,-0.000346183776855469,-0.000165939331054688,-1.22847905755043,-0.000346183776855469,-0.000165939331054688,0,8.82148742675781e-06,0,-0.083060845710861,-3.4332275390625e-05,-4.76837158203125e-06,-0.0703143030332285,-2.81333923339844e-05,0,-0.757855892108637,-0.000270366668701172,-6.38961791992188e-05,-0.660627305485832,-0.000274658203125,-4.29153442382813e-05,-0.0760002583047026,-4.14848327636719e-05,-4.76837158203125e-06,-0.730143427863368,-0.000274658203125,-5.53131103515625e-05,-0.0804990380856907,-2.288818359375e-05,-5.7220458984375e-06,-0.74125659463607,-0.000268936157226563,-4.86373901367188e-05,-0.0503747090697289,-2.288818359375e-05,0,-0.830882787728115,-0.000258922576904297,-7.82012939453125e-05,-0.0672357082403323,-4.14848327636719e-05,0,-0.763880133730709,-0.000267505645751953,-6.96182250976563e-05,-0.0234380979090929,-7.15255737304688e-06,0,-0.881245017051697,-0.000260353088378906,-9.72747802734375e-05,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,2.32458114624023e-06,0,0,4.64916229248047e-06,0,-1.33459436893463,-0.00038909912109375,-0.000383377075195313,-1.34670233726501,-0.0005035400390625,-0.000340461730957031,-1.3470778465271,-0.000487327575683594,-0.000371932983398438,-0.893698930740356,-0.000263214111328125,-0.000116348266601563,0,6.91413879394531e-06,0,0,9.05990600585938e-06,0,-0.0116154262796044,9.05990600585938e-06,0,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.17911529541016e-06,0,0,-4.64916229248047e-06, +0,0,-2.32458114624023e-06,0,0,6.79492950439453e-06,0,0,4.58955764770508e-06,0,-1.05825936794281,-0.000519752502441406,-0.000269889831542969,-1.28174698352814,-0.000525474548339844,-0.000304222106933594,0,9.05990600585938e-06,0,0,6.79492950439453e-06,0,0,6.88433647155762e-06,0,0,9.29832458496094e-06,0,0,9.05990600585938e-06,0,-1.02680432796478,-0.000166893005371094,-0.000330448150634766,-1.30457663536072,-0.000304222106933594,-0.000363349914550781,-0.999523639678955,-9.44137573242188e-05,-0.000414609909057617,-0.896050035953523,-7.05718994140625e-05,-0.000446677207946777,-0.0259927213191995,1.1444091796875e-05,-1.59740447998047e-05,-0.949190318584442,-0.000132560729980469,-0.000354528427124023,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.88433647155762e-06,0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,-0.102783769369125,-5.10215759277344e-05,-7.62939453125e-06,-0.0768118798732758,-3.67164611816406e-05,0,-0.603522539138794,-0.000203609466552734,-4.29153442382813e-05,-0.59784722328186,-0.000213146209716797,-3.91006469726563e-05,-0.523395538330078,-0.00018310546875,-3.4332275390625e-05,-0.495805025100708,-0.000178813934326172,-3.4332275390625e-05,-0.346720218658447,-0.000144481658935547,-1.71661376953125e-05,-0.365042448043823,-0.0001373291015625,-2.38418579101563e-05,-0.235363125801086,-0.000102996826171875,-9.5367431640625e-06,-0.258273720741272,-9.87052917480469e-05,-1.71661376953125e-05,-0.152953505516052,-5.48362731933594e-05,-5.7220458984375e-06,-0.186152815818787,-7.58171081542969e-05,-1.1444091796875e-05, +-0.0994709730148315,-5.29289245605469e-05,-4.76837158203125e-06,-0.135044395923615,-5.29289245605469e-05,-8.58306884765625e-06,-0.421386957168579,-0.00016021728515625,-3.0517578125e-05,-0.42155909538269,-0.000169277191162109,-2.38418579101563e-05,-0.600241661071777,-0.000215053558349609,-4.1961669921875e-05,-0.647118330001831,-0.0002288818359375,-4.57763671875e-05,-0.689834833145142,-0.000240325927734375,-4.86373901367188e-05,-0.703327417373657,-0.000254154205322266,-4.9591064453125e-05,-0.801267862319946,-0.000293254852294922,-6.103515625e-05,-0.817743539810181,-0.000295162200927734,-5.81741333007813e-05,-0.906530618667603,-0.0003204345703125,-7.05718994140625e-05,-0.863132238388062,-0.000299930572509766,-6.38961791992188e-05,-1.04450726509094,-0.000373363494873047,-7.43865966796875e-05,-1.08286929130554,-0.00038909912109375,-8.86917114257813e-05,-1.11463189125061,0.0074005126953125,-0.000342369079589844,-1.1205153465271,-0.000417232513427734,-9.918212890625e-05,-0.968299388885498,0.0387330055236816,-0.000105857849121094,-0.945576906204224,0.108390808105469,0.0274801254272461,-0.812356233596802,0.0389456748962402,-5.7220458984375e-05,-0.87901771068573,0.13715648651123,0.00929164886474609,-0.804297924041748,0.0389313697814941,-5.91278076171875e-05,-0.760844588279724,0.0673699378967285,0.0132846832275391,-0.78317129611969,-0.000259876251220703,-6.103515625e-05,-0.700903654098511,0.0126686096191406,-4.10079956054688e-05,-0.755266726016998,-0.000263214111328125,-6.19888305664063e-05,-0.662544190883636,-0.000276088714599609,-4.29153442382813e-05,-0.0891833007335663,-4.33921813964844e-05,-4.76837158203125e-06,-0.117341041564941,-5.48362731933594e-05,-5.7220458984375e-06,-0.171426773071289,-6.62803649902344e-05,-8.58306884765625e-06,-0.250630140304565,-9.1552734375e-05,-1.23977661132813e-05,-0.369702339172363,-0.000148773193359375,-2.288818359375e-05,-0.45042872428894,-0.00018310546875,-2.95639038085938e-05,-0.521634578704834,-0.000190258026123047,-3.52859497070313e-05,-0.599839925765991,-0.000208377838134766,-4.10079956054688e-05, +-0.608727216720581,-0.0002288818359375,-4.29153442382813e-05,-0.699256181716919,-0.000237941741943359,-5.14984130859375e-05,-0.807940721511841,-0.000279903411865234,-6.00814819335938e-05,-0.887659788131714,-0.000314235687255859,-6.77108764648438e-05,-1.05236196517944,-0.000393867492675781,-8.10623168945313e-05,-1.10382986068726,0.000133514404296875,-8.7738037109375e-05,-0.967616558074951,0.0387473106384277,-9.44137573242188e-05,-0.883519053459167,0.0566244125366211,-5.05447387695313e-05,-0.846054553985596,0.0389189720153809,-5.14984130859375e-05,-0.792774677276611,-0.000270366668701172,-5.24520874023438e-05,-0.739719569683075,-0.000277042388916016,-5.43594360351563e-05,-0.0982849597930908,-4.81605529785156e-05,-5.7220458984375e-06,-0.128795921802521,-5.48362731933594e-05,-8.58306884765625e-06,-0.180903673171997,-7.77244567871094e-05,-1.1444091796875e-05,-0.256482243537903,-9.87052917480469e-05,-1.52587890625e-05,-0.36866295337677,-0.000154018402099609,-2.47955322265625e-05,-0.434232950210571,-0.000165462493896484,-3.0517578125e-05,-0.506765365600586,-0.000194549560546875,-3.4332275390625e-05,-0.606605291366577,-0.000211238861083984,-4.29153442382813e-05,-0.649121284484863,-0.000217437744140625,-4.67300415039063e-05,-0.709467172622681,-0.000260829925537109,-5.05447387695313e-05,-0.815935373306274,-0.000288486480712891,-6.00814819335938e-05,-0.856096506118774,-0.000304698944091797,-6.38961791992188e-05,-1.04255843162537,-0.000386714935302734,-7.72476196289063e-05,-1.10813856124878,0.015902042388916,-8.10623168945313e-05,-0.968782424926758,0.105906963348389,0.0277814865112305,-0.8975750207901,0.124057292938232,0.00211620330810547,-0.8257896900177,0.0676846504211426,0.0130758285522461,-0.782246470451355,0.0126757621765137,-4.67300415039063e-05,-0.743937134742737,-0.000274658203125,-4.76837158203125e-05,-0.056196928024292,-1.85966491699219e-05,0,-0.0762843489646912,-2.81333923339844e-05,0,-0.112174153327942,-3.95774841308594e-05,0,-0.161687135696411,-7.58171081542969e-05,-2.86102294921875e-06,-0.218053340911865,-7.77244567871094e-05, +-4.76837158203125e-06,-0.275873899459839,-0.000100612640380859,-5.7220458984375e-06,-0.356773376464844,-0.000133037567138672,-1.23977661132813e-05,-0.450096130371094,-0.000148773193359375,-2.09808349609375e-05,-0.558565855026245,-0.000190258026123047,-3.4332275390625e-05,-0.668161630630493,-0.000234127044677734,-5.05447387695313e-05,-0.791267395019531,-0.000265598297119141,-6.77108764648438e-05,-0.928593158721924,-0.000316143035888672,-8.86917114257813e-05,-1.07481741905212,-0.000377655029296875,-0.00011444091796875,-1.0732753276825,-0.000375270843505859,-0.000124931335449219,-0.827426850795746,-0.000261783599853516,-7.72476196289063e-05,-0.851035714149475,-0.000253200531005859,-7.62939453125e-05,-0.872035980224609,-0.000244140625,-7.43865966796875e-05,-0.908223748207092,-0.000227451324462891,-7.15255737304688e-05,-0.958134412765503,-0.000425815582275391,-0.000139236450195313,-0.0744503140449524,-3.67164611816406e-05,0,-0.0984694361686707,-4.33921813964844e-05,0,-0.144196391105652,-5.48362731933594e-05,-4.76837158203125e-06,-0.210935950279236,-7.77244567871094e-05,-6.67572021484375e-06,-0.359158992767334,-0.000133037567138672,-1.71661376953125e-05,-0.45177960395813,-0.000185489654541016,-2.288818359375e-05,-0.541239261627197,-0.000196933746337891,-3.14712524414063e-05,-0.615561723709106,-0.000226497650146484,-4.00543212890625e-05,-0.603628635406494,-0.000199794769287109,-4.1961669921875e-05,-0.672902345657349,-0.000242710113525391,-4.86373901367188e-05,-0.783890962600708,-0.000265598297119141,-6.29425048828125e-05,-0.955244302749634,-0.000334262847900391,-8.0108642578125e-05,-1.11595940589905,-0.000409603118896484,-0.000100135803222656,-1.12821793556213,-0.000414371490478516,-0.000108718872070313,-0.983858823776245,-0.000437259674072266,-0.000115394592285156,-0.836764931678772,-0.000230312347412109,-6.29425048828125e-05,-0.823271870613098,-0.000249862670898438,-6.58035278320313e-05,-0.7955482006073,-0.000261783599853516,-6.67572021484375e-05,-0.766847789287567,-0.000267505645751953,-6.866455078125e-05,-0.0261158645153046, +-5.24520874023438e-06,0,-0.0414807200431824,-9.05990600585938e-06,0,-0.0674995183944702,-3.95774841308594e-05,0,-0.099573016166687,-4.14848327636719e-05,0,-0.127580404281616,-5.10215759277344e-05,0,-0.146834135055542,-3.95774841308594e-05,0,-0.254908323287964,-8.53538513183594e-05,0,-0.379257917404175,-0.000123500823974609,-1.04904174804688e-05,-1.04993438720703,-0.000350475311279297,-0.000130653381347656,-0.968214511871338,-0.000311374664306641,-0.000105857849121094,-0.817880630493164,-0.000270366668701172,-7.53402709960938e-05,-0.693174362182617,-0.000217437744140625,-5.14984130859375e-05,-0.534009695053101,-0.000167369842529297,-2.57492065429688e-05,-0.878486692905426,-0.000262260437011719,-9.63211059570313e-05,-0.869955480098724,-0.000253677368164063,-9.44137573242188e-05,-0.916084289550781,-0.000237464904785156,-9.25064086914063e-05,-0.944753170013428,-0.000222206115722656,-8.86917114257813e-05,-0.943821668624878,-0.000414848327636719,-0.0001678466796875,-1.07152104377747,-0.000377655029296875,-0.000145912170410156,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06,0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06, +0,0,-8.82148742675781e-06,0,-1.30364859104156,-0.000359535217285156,-0.000359058380126953,-1.33116126060486,-0.000479698181152344,-0.000323295593261719,-1.25105667114258,-0.000311851501464844,-0.000330448150634766,-1.30109548568726,-0.000428199768066406,-0.000287055969238281,-1.16082286834717,-0.000245094299316406,-0.000276088714599609,-1.24536180496216,-0.000338554382324219,-0.000240802764892578,-1.01164054870605,-0.000151634216308594,-0.000200271606445313,-1.14649629592896,-0.000262260437011719,-0.000174522399902344,-0.769798755645752,-6.866455078125e-05,-0.000120401382446289,-0.976996421813965,-0.000165462493896484,-0.000110626220703125,-0.173402309417725,0,-1.29938125610352e-05,-0.570027351379395,-3.95774841308594e-05,-2.26497650146484e-05,-0.444282531738281,-3.4332275390625e-05,-4.64916229248047e-06,-1.0953516960144,-0.000189781188964844,-0.000240325927734375,-1.20270538330078,-0.000313758850097656,-0.000205039978027344,-0.410068988800049,-7.15255737304688e-06,-4.66108322143555e-05,-0.715614795684814,-7.77244567871094e-05,-4.91142272949219e-05,-1.33008217811584,-0.000439643859863281,-0.000353813171386719,-1.29669070243835,-0.000372886657714844,-0.000320911407470703,-1.23407912254333,-0.000313758850097656,-0.000275611877441406,-1.18539524078369,-0.000263214111328125,-0.000240325927734375,-1.11946678161621,-0.000205039978027344,-0.000203132629394531,-0.914819717407227,-0.000105857849121094,-0.000129938125610352,-0.602851867675781,-5.10215759277344e-05,-5.79357147216797e-05,-0.426541805267334,-2.52723693847656e-05,-2.62260437011719e-05,-0.288614273071289,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,-0.0756523609161377,-2.55107879638672e-05,0,-0.157466411590576,-5.10215759277344e-05,2.86102294921875e-06,-0.306302547454834,-0.000102996826171875,0,-0.53180980682373,-0.000178813934326172,-2.19345092773438e-05,-0.761335372924805,-0.000236034393310547, +-5.7220458984375e-05,-0.905502796173096,-0.000299930572509766,-8.96453857421875e-05,-1.00241041183472,-0.000329494476318359,-0.0001220703125,-1.07822275161743,-0.00034332275390625,-0.000150680541992188,-1.14086651802063,-0.0004119873046875,-0.000174522399902344,-0.999799489974976,-0.000426292419433594,-0.000197410583496094,-0.970189809799194,-0.000233650207519531,-0.000105857849121094,-0.935951113700867,-0.00025177001953125,-0.000110626220703125,-0.88571560382843,-0.000253677368164063,-0.000112533569335938,-0.891763001680374,-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,-0.0213675498962402,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.0121296644210815,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,-0.0103033781051636,1.1444091796875e-05,0,-0.042611837387085,-1.1444091796875e-05,0,-0.0424216985702515,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06, +0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0,-0.125670433044434,-3.69548797607422e-05,5.7220458984375e-06,-0.0750255584716797,-3.88622283935547e-05,4.76837158203125e-06,-0.194766998291016,-6.866455078125e-05,7.62939453125e-06,-0.350126266479492,-0.000116825103759766,0,-0.219629764556885,-7.31945037841797e-05,1.04904174804688e-05,-0.0996079444885254,-2.07424163818359e-05,8.58306884765625e-06,-0.209350109100342,-7.31945037841797e-05,1.09672546386719e-05,-0.0960321426391602,-4.12464141845703e-05,8.10623168945313e-06,-0.167864799499512,-2.98023223876953e-05,1.23977661132813e-05,-0.0673270225524902,-1.60932540893555e-05,5.7220458984375e-06,-0.0954747200012207,-1.1444091796875e-05,1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,-0.360260963439941,-0.000105381011962891,3.814697265625e-06,-0.287003040313721,-5.98430633544922e-05,1.23977661132813e-05,-0.339015483856201,-7.31945037841797e-05,7.15255737304688e-06,-0.207709789276123,-3.88622283935547e-05,1.47819519042969e-05,-0.531097412109375,-0.000171661376953125,-1.71661376953125e-05,-0.415305614471436,-8.24928283691406e-05,6.19888305664063e-06,-0.47929048538208,-0.000119686126708984,-4.29153442382813e-06,-0.516849994659424,-0.000139713287353516,-1.38282775878906e-05,-0.622409820556641,-0.000119686126708984,-2.00271606445313e-05,-0.543870449066162,-9.67979431152344e-05, +-2.86102294921875e-06,-0.678859233856201,-0.000174045562744141,-3.4332275390625e-05,-0.720067501068115,-0.000196933746337891,-4.62532043457031e-05,-0.952444553375244,-0.000263214111328125,-8.7738037109375e-05,-0.891955375671387,-0.000231266021728516,-7.43865966796875e-05,-0.830295562744141,-0.000190258026123047,-5.62667846679688e-05,-0.753498077392578,-0.000142574310302734,-3.76701354980469e-05,-1.03460168838501,-0.000302791595458984,-0.000115394592285156,-1.1456995010376,-0.000296592712402344,-0.000161170959472656,-1.08530855178833,-0.000263214111328125,-0.000134468078613281,-1.105877161026,-0.000330924987792969,-0.000151634216308594,-1.19639110565186,-0.000365257263183594,-0.000195026397705078,-1.21170544624329,-0.000274658203125,-0.00030517578125,-1.27014398574829,-0.000334739685058594,-0.000300884246826172,-1.27728486061096,-0.000372886657714844,-0.000267982482910156,-1.163898229599,-0.0003662109375,-0.00018310546875,-1.23711037635803,-0.00038909912109375,-0.000225067138671875,-1.21080565452576,-0.000426292419433594,-0.000208854675292969,-1.26885962486267,-0.000414848327636719,-0.000247001647949219,-1.28108739852905,-0.00034332275390625,-0.000346660614013672,-1.31617259979248,-0.000418663024902344,-0.000339508056640625,-1.31859469413757,-0.000452995300292969,-0.000306129455566406,-1.29323649406433,-0.000456809997558594,-0.000268936157226563,-1.11349630355835,-0.000439643859863281,-0.000229835510253906,-1.12458574771881,-0.000475883483886719,-0.000246047973632813,-1.31135630607605,-0.000491142272949219,-0.000284194946289063,-1.31950092315674,-0.000388145446777344,-0.000369071960449219,-1.33936011791229,-0.000473976135253906,-0.000361442565917969,-1.33952820301056,-0.000487327575683594,-0.000330924987792969,-1.32908695936203,-0.000407218933105469,-0.000376701354980469,-1.344546854496,-0.000460624694824219,-0.0003662109375,-1.34426432847977,-0.000517845153808594,-0.000337600708007813,-1.04845947027206,-0.000537872314453125,-0.000264167785644531,-1.09559416770935,-0.000517845153808594,-0.000256538391113281,-1.32405984401703, +-0.000517845153808594,-0.000294685363769531,-1.33193349838257,-0.000540733337402344,-0.000300407409667969,-1.33347842097282,-0.000393867492675781,-0.000380516052246094,-1.34661826491356,-0.000457763671875,-0.000369071960449219,-1.34625777602196,-0.000506401062011719,-0.000338554382324219,-1.05594569444656,-0.000537872314453125,-0.000267982482910156,-1.20751142501831,-0.000531196594238281,-0.000304222106933594,-1.02031278610229,-0.000222682952880859,-0.000109195709228516,-0.941895008087158,-0.000194549560546875,-8.48770141601563e-05,-0.904573917388916,-9.1552734375e-05,-0.000161409378051758,-1.03095817565918,-0.000159263610839844,-0.000165939331054688,-1.07311391830444,-0.000211238861083984,-0.000142574310302734,-0.843857288360596,-0.000146389007568359,-6.05583190917969e-05,-0.6052565574646,-3.33786010742188e-05,-8.16583633422852e-05,-0.770381450653076,-8.24928283691406e-05,-9.27448272705078e-05,-0.856074810028076,-0.000100612640380859,-7.93933868408203e-05,-0.727127552032471,-8.72611999511719e-05,-3.48091125488281e-05,-0.65739631652832,-0.000116825103759766,-1.62124633789063e-05,-0.601527690887451,-7.39097595214844e-05,-1.07288360595703e-05,-0.54763126373291,-7.10487365722656e-05,2.14576721191406e-06,-0.446645259857178,-5.98430633544922e-05,1.1444091796875e-05,-0.327857494354248,-4.57763671875e-05,1.57356262207031e-05,-0.483014106750488,-5.96046447753906e-05,3.09944152832031e-06,-0.436212539672852,-3.88622283935547e-05,1.21593475341797e-05,-0.341536045074463,-3.21865081787109e-05,1.93119049072266e-05,-0.225949287414551,-2.288818359375e-05,1.74045562744141e-05,-0.10942554473877,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.91413879394531e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06, +0,0,-2.29477882385254e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58210706710815e-06,0,0,2.29477882385254e-06,0,0,-6.86943531036377e-06,0,0,-4.57838177680969e-06,0,0,9.16421413421631e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06,0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06, +0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06,0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,-0.0107383728027344,-9.17911529541016e-06,0,-0.008056640625,6.79492950439453e-06,0,-0.0271339416503906,-1.1444091796875e-05,2.38418579101563e-06,-0.0213508605957031,-9.29832458496094e-06,0,-0.0520849227905273,-2.62260437011719e-06,3.27825546264648e-06,-0.0435924530029297,2.14576721191406e-06,2.02655792236328e-06,-0.0859060287475586,6.91413879394531e-06,4.72180545330048e-06,-0.0751914978027344,8.82148742675781e-06,1.9073486328125e-06,-0.12612247467041,2.14576721191406e-06,6.19888305664063e-06,-0.1116943359375,-5.24520874023438e-06,1.65402889251709e-06,-0.169522762298584,2.14576721191406e-06,8.40425491333008e-06,-0.141809463500977,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06,0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,-0.0114612579345703,-4.64916229248047e-06,0,-0.0286951065063477,0,2.14576721191406e-06,-0.0551424026489258,4.52995300292969e-06,2.74181365966797e-06,-0.0906009674072266,-6.91413879394531e-06,3.15159559249878e-06,-0.131157875061035,4.52995300292969e-06,4.64916229248047e-06,-0.169876098632813,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0, +0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,-0.00185632705688477,-4.64916229248047e-06,0,-0.00609445571899414,6.91413879394531e-06,0,-0.0152349472045898,-9.29832458496094e-06,0,-0.031468391418457,0,0,-0.0578923225402832,2.14576721191406e-06,0,-0.111007213592529,9.05990600585938e-06,1.78813934326172e-06,-0.235284805297852,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06,0,-0.00349330902099609,1.1444091796875e-05,0,-0.010685920715332,2.14576721191406e-06,0,-0.0252857208251953,-1.1444091796875e-05,0,-0.0504999160766602,2.14576721191406e-06,1.78813934326172e-06,-0.089078426361084,-4.52995300292969e-06,1.98930501937866e-06,-0.145565986633301,1.1444091796875e-05,2.20537185668945e-06,-0.214066028594971,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,-0.0102910995483398,-4.64916229248047e-06,0,-0.0262126922607422,2.14576721191406e-06,1.78813934326172e-06,-0.0513277053833008,-9.29832458496094e-06,2.50339508056641e-06,-0.0854644775390625,0,2.29477882385254e-06,-0.124058723449707,-4.52995300292969e-06,2.47359275817871e-06,-0.159650802612305,8.82148742675781e-06,3.39746475219727e-06,-0.222687721252441,-6.91413879394531e-06,5.48362731933594e-06,-0.228129386901855,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06, +0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,-0.00561904907226563,2.26497650146484e-06,0,-0.0158615112304688,8.82148742675781e-06,0,-0.0346755981445313,-9.29832458496094e-06,1.66893005371094e-06,-0.0640392303466797,6.91413879394531e-06,1.84774398803711e-06,-0.1029052734375,-1.1444091796875e-05,1.83470547199249e-06,-0.146875858306885,9.05990600585938e-06,1.78813934326172e-06,-0.187060832977295,4.52995300292969e-06,4.35113906860352e-06,-0.197512149810791,-1.1444091796875e-05,6.67572021484375e-06,-0.142795085906982,4.52995300292969e-06,1.00135803222656e-05,-0.101827621459961,-9.29832458496094e-06,7.09295272827148e-06,-0.0678958892822266,-9.29832458496094e-06,4.88758087158203e-06,-0.0407266616821289,4.52995300292969e-06,3.33786010742188e-06,-0.0207939147949219,6.79492950439453e-06,1.96695327758789e-06,-0.00741672515869141,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,-0.0104646682739258,2.26497650146484e-06,0,-0.0221343040466309,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06,0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,-0.0374464988708496,0,3.42726707458496e-06,-0.0566768646240234,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,-0.0322175025939941,2.26497650146484e-06,3.814697265625e-06,-0.0803065299987793,-2.62260437011719e-06,6.9737434387207e-06,-0.0638866424560547,2.26497650146484e-06,6.79492950439453e-06,-0.0654029846191406,2.26497650146484e-06,6.79492950439453e-06,-0.0839853286743164,0,7.98702239990234e-06,-0.0773978233337402,-2.26497650146484e-06,7.74860382080078e-06,-0.0447006225585938, +-7.03334808349609e-06,5.36441802978516e-06,-0.0435891151428223,9.17911529541016e-06,5.12599945068359e-06,-0.102383136749268,2.14576721191406e-06,9.29832458496094e-06,-0.0784139633178711,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,-0.148007869720459,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,-0.332450866699219,-2.74181365966797e-05,1.50203704833984e-05,-0.238889694213867,-2.288818359375e-05,1.69277191162109e-05,-0.117278099060059,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,4.64916229248047e-06,0,-0.229700088500977,2.38418579101563e-06,0,-0.35819149017334,-1.66893005371094e-05,4.52995300292969e-06,-0.382926464080811,-9.29832458496094e-06,1.06096267700195e-05,-0.299910068511963,-2.55107879638672e-05,1.01327896118164e-05,-0.310403823852539,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,-0.00850439071655273,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,-0.0057826042175293,-9.29832458496094e-06,0,-0.00125932693481445,-4.52995300292969e-06,0,-0.00250673294067383,-4.52995300292969e-06,0,-0.000705718994140625,-2.62260437011719e-06,0,-0.000752449035644531,2.26497650146484e-06,0,-0.000228404998779297,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,-0.000125408172607422,8.82148742675781e-06,0,-5.57899475097656e-05,4.41074371337891e-06,0,-5.7220458984375e-06,6.91413879394531e-06, +0,-5.7220458984375e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,-2.43186950683594e-05,8.82148742675781e-06,0,-1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06,0,0,6.88433647155762e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,-0.197105407714844,8.58306884765625e-06,-4.21702861785889e-05,-0.372541904449463,-1.81198120117188e-05,-8.70823860168457e-05,-0.523701429367065,-2.95639038085938e-05,-0.000131726264953613,-0.653756618499756,-6.00814819335938e-05,-0.000175952911376953,-0.767434120178223,-5.24520874023438e-05,-0.000217676162719727,-0.71554160118103,-7.15255737304688e-05,-0.000213384628295898,-0.788416981697083,-0.000102996826171875,-0.000243186950683594,-0.852152585983276,-0.000119209289550781,-0.000268220901489258,-0.906155586242676,-0.000125885009765625,-0.000288486480712891,-0.950120627880096,-0.000151634216308594,-0.000303745269775391,-0.985551536083221,-0.000148773193359375,-0.000314712524414063,-1.01017466187477,-0.00016021728515625,-0.000323295593261719,-1.02304962277412,-0.000151634216308594,-0.00032806396484375,-0.208634853363037,8.58306884765625e-06,-3.090500831604e-05,-0.405336856842041,-2.19345092773438e-05,-6.79492950439453e-05,-0.578392505645752,-4.10079956054688e-05,-0.000106453895568848,-0.725183963775635,-6.77108764648438e-05, +-0.000148773193359375,-0.847414016723633,-0.000107765197753906,-0.000191926956176758,-0.949378728866577,-0.000136375427246094,-0.000230789184570313,-1.03449583053589,-0.000155448913574219,-0.00026702880859375,-1.1051914691925,-0.000201225280761719,-0.000295162200927734,-1.16301393508911,-0.000222206115722656,-0.000317096710205078,-1.20995509624481,-0.000256538391113281,-0.000332355499267578,-1.24727010726929,-0.000273704528808594,-0.000343799591064453,-1.27515876293182,-0.000277519226074219,-0.000354766845703125,-1.29311320185661,-0.000313758850097656,-0.000360488891601563,-1.30208450555801,-0.00029754638671875,-0.000363349914550781,-0.0611715316772461,0,-2.02804803848267e-05,-0.149009227752686,4.76837158203125e-06,-5.26309013366699e-05,-0.259407520294189,6.67572021484375e-06,-9.59634780883789e-05,-0.360788106918335,-1.1444091796875e-05,-0.000137686729431152,-0.462241172790527,-1.04904174804688e-05,-0.00018155574798584,-0.572112321853638,-4.10079956054688e-05,-0.000229954719543457,-0.681854248046875,-4.10079956054688e-05,-0.000277280807495117,-0.750614523887634,-6.38961791992188e-05,-0.000306844711303711,-0.824832916259766,-7.53402709960938e-05,-0.000339031219482422,-0.894739508628845,-9.1552734375e-05,-0.000368833541870117,-0.974225401878357,-9.82284545898438e-05,-0.000402450561523438,-1.0124476402998,-0.000105857849121094,-0.00041961669921875,-0.302764892578125,4.76837158203125e-06,-0.000131845474243164,-0.378828525543213,-5.7220458984375e-06,-0.000170886516571045,-0.444851160049438,-1.1444091796875e-05,-0.000207424163818359,-0.550727725028992,-1.33514404296875e-05,-0.000261425971984863,-0.683751583099365,-3.62396240234375e-05,-0.000330090522766113,-0.677222967147827,-4.38690185546875e-05,-0.000331878662109375,-0.72844010591507,-4.00543212890625e-05,-0.000360369682312012,-0.785560607910156,-5.53131103515625e-05,-0.000390529632568359,-0.843545824289322,-3.62396240234375e-05,-0.000419855117797852,-0.889081947505474,-4.38690185546875e-05,-0.000443339347839355,-0.0323583334684372,0,-1.96695327758789e-05,-0.174931526184082, +8.58306884765625e-06,-4.89950180053711e-05,-0.325066566467285,-6.67572021484375e-06,-9.72747802734375e-05,-0.4548499584198,-2.76565551757813e-05,-0.000144124031066895,-0.571193933486938,-2.95639038085938e-05,-0.000189423561096191,-0.678101778030396,-3.91006469726563e-05,-0.000232934951782227,-0.777098178863525,-7.34329223632813e-05,-0.000274896621704102,-0.707023859024048,-9.05990600585938e-05,-0.000255346298217773,-0.77485990524292,-8.67843627929688e-05,-0.000284671783447266,-0.836473643779755,-0.000113487243652344,-0.000311136245727539,-0.887889266014099,-0.00011444091796875,-0.000332117080688477,-0.923935800790787,-0.000140190124511719,-0.000345945358276367,-0.943427979946136,-0.000128746032714844,-0.000352382659912109,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.0934806391687744,-3.67164611816406e-05,0,-0.582627952102484,-0.00022125244140625,-6.38961791992188e-05,-0.101716846227646,-4.14848327636719e-05,0,-0.376917600631714,-0.000139713287353516,-1.23977661132813e-05,-0.414265871047974,-0.0001373291015625,-1.81198120117188e-05,-0.266844987869263,-8.72611999511719e-05,-5.7220458984375e-06,-0.325454235076904,-0.000121593475341797,-8.58306884765625e-06,-0.209126830101013,-7.39097595214844e-05,-2.86102294921875e-06,-0.16086357831955,-7.58171081542969e-05,0,-0.124552011489868,-4.33921813964844e-05,0,-0.441805601119995,-0.000144481658935547,-2.38418579101563e-05,-0.660455465316772,-0.000208377838134766,-4.67300415039063e-05,-0.666347742080688,-0.000231266021728516,-5.62667846679688e-05,-0.582760334014893,-0.000196933746337891,-5.7220458984375e-05,-0.695357799530029,-0.000249385833740234,-7.91549682617188e-05,-0.778550148010254,-0.000274658203125,-9.25064086914063e-05,-0.864722609519958,-0.000327587127685547,-0.000102996826171875,-0.794760942459106,-0.000188827514648438,-5.81741333007813e-05,-0.524876654148102,-0.000194549560546875,-6.00814819335938e-05,-0.556556105613708,-0.000218868255615234, +-6.103515625e-05,-0.576028764247894,-0.000221729278564453,-6.38961791992188e-05,-0.0881219804068678,-2.52723693847656e-05,-6.67572021484375e-06,-0.111989557743073,-5.7220458984375e-05,-6.67572021484375e-06,-0.148498117923737,-7.39097595214844e-05,-8.58306884765625e-06,-0.186934113502502,-8.72611999511719e-05,-1.1444091796875e-05,-0.277076721191406,-0.000102996826171875,-1.81198120117188e-05,-0.380840659141541,-0.000154018402099609,-2.76565551757813e-05,-0.438332080841064,-0.000151157379150391,-2.95639038085938e-05,-0.54163646697998,-0.000190258026123047,-3.814697265625e-05,-0.576151132583618,-0.000217437744140625,-4.00543212890625e-05,-0.659367799758911,-0.000234127044677734,-4.57763671875e-05,-0.68618631362915,-0.000242710113525391,-4.86373901367188e-05,-0.751011371612549,-0.000249385833740234,-5.43594360351563e-05,-0.825459957122803,-0.000286102294921875,-6.00814819335938e-05,-1.03803849220276,-0.000371456146240234,-7.15255737304688e-05,-0.995604515075684,-0.000149250030517578,-0.000426292419433594,-0.821818113327026,0.0685415267944336,-0.000296592712402344,-0.755250930786133,0.067359447479248,0.00917339324951172,-0.685015797615051,0.0539798736572266,-0.0290098190307617,-0.660148620605469,0.0126800537109375,-4.29153442382813e-05,-0.66369754076004,-0.000267505645751953,-4.29153442382813e-05,-0.659564793088066,-0.000261306762695313,-4.29153442382813e-05,-0.102166682459938,-4.33921813964844e-05,-6.67572021484375e-06,-0.114603728055954,-4.57763671875e-05,-6.67572021484375e-06,-0.144509971141815,-5.7220458984375e-05,-8.58306884765625e-06,-0.191790461540222,-8.53538513183594e-05,-1.1444091796875e-05,-0.281776428222656,-0.000108242034912109,-1.62124633789063e-05,-0.405032396316528,-0.000142574310302734,-2.38418579101563e-05,-0.487657070159912,-0.000167369842529297,-2.86102294921875e-05,-0.559357881546021,-0.00018310546875,-3.52859497070313e-05,-0.632909059524536,-0.000203609466552734,-4.00543212890625e-05,-0.694051265716553,-0.000234127044677734,-4.57763671875e-05,-0.678593158721924,-0.000234127044677734,-4.67300415039063e-05, +-0.721897602081299,-0.000249385833740234,-5.43594360351563e-05,-0.788846015930176,-0.000279903411865234,-6.29425048828125e-05,-0.993720054626465,-0.000352382659912109,-8.0108642578125e-05,-1.09543871879578,-0.000402927398681641,-8.58306884765625e-05,-0.912518739700317,-0.000423431396484375,-9.05990600585938e-05,-0.74718451499939,-0.000249862670898438,-4.86373901367188e-05,-0.675689458847046,-0.00026702880859375,-4.86373901367188e-05,-0.681665122509003,-0.000272750854492188,-4.76837158203125e-05,-0.677403390407562,-0.000268936157226563,-4.67300415039063e-05,-0.669478043892013,-0.000265598297119141,-4.67300415039063e-05,-0.0730367079377174,-2.55107879638672e-05,4.76837158203125e-06,-0.0786625444889069,-3.69548797607422e-05,4.76837158203125e-06,-0.270517587661743,-7.39097595214844e-05,0,-0.301451921463013,-8.72611999511719e-05,-5.24520874023438e-06,-0.193536996841431,-7.12871551513672e-05,8.58306884765625e-06,-0.233748435974121,-6.65187835693359e-05,4.76837158203125e-06,-0.15436327457428,-5.26905059814453e-05,6.67572021484375e-06,-0.120615720748901,-5.26905059814453e-05,7.62939453125e-06,-0.0948845148086548,-4.12464141845703e-05,5.7220458984375e-06,-0.329148769378662,-0.000100612640380859,-1.1444091796875e-05,-0.360581636428833,-9.87052917480469e-05,-2.288818359375e-05,-0.403295278549194,-0.000116825103759766,-3.38554382324219e-05,-0.490670204162598,-0.000123500823974609,-5.53131103515625e-05,-0.547965288162231,-0.000155448913574219,-7.48634338378906e-05,-0.648637294769287,-0.000201225280761719,-9.82284545898438e-05,-0.757248401641846,-0.00025177001953125,-0.000117301940917969,-0.431891679763794,-0.000140190124511719,-6.58035278320313e-05,-0.479304909706116,-0.000157356262207031,-6.96182250976563e-05,-0.516710877418518,-0.000180244445800781,-7.05718994140625e-05,-0.540690332651138,-0.000185966491699219,-7.2479248046875e-05,-0.548925220966339,-0.000185966491699219,-7.53402709960938e-05,-0.0234642699360847,-6.91413879394531e-06,0,-0.0251399576663971,2.14576721191406e-06,0,-0.0826292037963867,-9.05990600585938e-06,-2.86102294921875e-06, +-0.0945813655853271,-1.66893005371094e-05,-6.91413879394531e-06,-0.0589487552642822,-7.15255737304688e-06,0,-0.0708925724029541,4.29153442382813e-06,0,-0.0475705862045288,2.14576721191406e-06,0,-0.0376638770103455,2.14576721191406e-06,2.14576721191406e-06,-0.0300108790397644,-1.1444091796875e-05,1.9073486328125e-06,-0.110184907913208,-9.05990600585938e-06,-1.07288360595703e-05,-0.141480207443237,-2.19345092773438e-05,-1.88350677490234e-05,-0.176369428634644,-1.04904174804688e-05,-2.83718109130859e-05,-0.223005294799805,-2.288818359375e-05,-4.41074371337891e-05,-0.290587663650513,-4.57763671875e-05,-6.43730163574219e-05,-0.386821985244751,-6.00814819335938e-05,-9.01222229003906e-05,-0.498619675636292,-8.67843627929688e-05,-0.000113964080810547,-0.617428064346313,-0.000109672546386719,-0.000134944915771484,-0.733240902423859,-0.000148773193359375,-0.000149250030517578,-0.831940054893494,-0.000166893005371094,-0.00016021728515625,-0.898563206195831,-0.000166893005371094,-0.000170707702636719,-0.922046005725861,-0.000171661376953125,-0.000176906585693359,-0.164752259850502,0,-5.71012496948242e-05,-0.164752259850502,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.164752006530762,0,-5.71608543395996e-05,-0.16475236415863,0,-5.7220458984375e-05,-0.164752244949341,0,-5.69820404052734e-05,-0.16475236415863,-1.9073486328125e-06,-5.71012496948242e-05,-0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.164752244949341,0,-5.71012496948242e-05,-0.16475248336792,0,-5.71608543395996e-05,-0.164752244949341,0,-5.71012496948242e-05,-0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,-0.171115636825562,-1.9073486328125e-06,-5.93662261962891e-05,-0.175875425338745,0,-6.09159469604492e-05,-0.180305600166321,0,-6.25848770141602e-05,-0.184572279453278,0,-6.41345977783203e-05,-0.188270688056946,0,-6.53266906738281e-05,-0.190808907151222,0,-6.61611557006836e-05,-0.191712632775307, +0,-6.63995742797852e-05,0,9.05990600585938e-06,0,-0.0526125431060791,0,-1.05202198028564e-05,-0.0804030895233154,-1.04904174804688e-05,-1.79409980773926e-05,-0.110512256622314,0,-2.78949737548828e-05,-0.160651206970215,-6.67572021484375e-06,-4.32729721069336e-05,-0.269499063491821,-1.81198120117188e-05,-7.48634338378906e-05,-0.388572096824646,-2.288818359375e-05,-0.000105142593383789,-0.512922048568726,-5.62667846679688e-05,-0.000133752822875977,-0.63575679063797,-4.48226928710938e-05,-0.00015711784362793,-0.742452621459961,-7.34329223632813e-05,-0.000176191329956055,-0.815406739711761,-6.866455078125e-05,-0.000190973281860352,-0.841353297233582,-7.34329223632813e-05,-0.000198841094970703,-0.0481942296028137,-1.40666961669922e-05,3.33786010742188e-06,-0.051715224981308,-1.59740447998047e-05,4.29153442382813e-06,-0.061913013458252,-1.40666961669922e-05,5.24520874023438e-06,-0.078046441078186,-1.83582305908203e-05,6.19888305664063e-06,-0.0989785194396973,-1.1444091796875e-05,8.10623168945313e-06,-0.123127460479736,-3.69548797607422e-05,8.10623168945313e-06,-0.148130178451538,-2.98023223876953e-05,4.29153442382813e-06,-0.171972990036011,-3.4332275390625e-05,0,-0.194007396697998,-2.81333923339844e-05,-4.29153442382813e-06,-0.216992855072021,-5.48362731933594e-05,-1.00135803222656e-05,-0.247035503387451,-5.48362731933594e-05,-2.24113464355469e-05,-0.287095546722412,-5.48362731933594e-05,-3.4332275390625e-05,-0.34368371963501,-8.0108642578125e-05,-5.29289245605469e-05,-0.421437740325928,-8.48770141601563e-05,-7.67707824707031e-05,-0.519618988037109,-0.000136375427246094,-0.000102996826171875,-0.629860401153564,-0.000159263610839844,-0.000125408172607422,-0.371495723724365,-9.72747802734375e-05,-7.15255737304688e-05,-0.42442524433136,-0.000107765197753906,-7.58171081542969e-05,-0.468058049678802,-0.000123023986816406,-7.86781311035156e-05,-0.496828973293304,-0.000131607055664063,-8.24928283691406e-05,-0.506895244121552,-0.000140190124511719,-8.44001770019531e-05,0,-4.58955764770508e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06, +0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,7.03334808349609e-06,0,0,1.1444091796875e-05,0,0,-9.05990600585938e-06,0,0,-1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.55975532531738e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,-2.20537185668945e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,-6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,6.85453414916992e-06,0,0,-4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,-0.102785721421242,-5.10215759277344e-05,-7.62939453125e-06,-0.0768131911754608,-3.67164611816406e-05,0,-0.491778135299683,-0.000203609466552734,0.0274524688720703,-0.482111930847168,-0.000213146209716797,0.0524778366088867,-0.483032941818237,-0.00018310546875,-3.4332275390625e-05,-0.45543360710144,-0.000178813934326172,-3.4332275390625e-05,-0.346761226654053,-0.000144481658935547,-1.71661376953125e-05,-0.365082502365112,-0.0001373291015625,-2.38418579101563e-05,-0.235384941101074,-0.000102996826171875,-9.5367431640625e-06,-0.258294224739075,-9.87052917480469e-05,-1.71661376953125e-05,-0.152963757514954,-5.48362731933594e-05,-5.7220458984375e-06,-0.186163187026978,-7.58171081542969e-05,-1.1444091796875e-05,-0.099475085735321,-5.29289245605469e-05,-4.76837158203125e-06,-0.135049223899841,-5.29289245605469e-05,-8.58306884765625e-06,-0.421441316604614,-0.00016021728515625,-3.0517578125e-05,-0.42161750793457,-0.000169277191162109,-2.38418579101563e-05,-0.424224615097046,-0.0156350135803223,0.0274534225463867,-0.56116795539856,-0.0002288818359375,-4.57763671875e-05,-0.344980239868164,-0.000120162963867188,-2.47955322265625e-05,-0.351723670959473,-0.000127315521240234,-2.47955322265625e-05,-0.400705814361572,-0.000146865844726563,-3.0517578125e-05,-0.408940553665161,-0.000147342681884766,-2.95639038085938e-05,-0.45334267616272,-0.00016021728515625,-3.52859497070313e-05,-0.431637287139893,-0.000150203704833984,-3.14712524414063e-05,-0.522329807281494,-0.000186920166015625,-3.71932983398438e-05, +-0.541519165039063,-0.000194549560546875,-4.38690185546875e-05,-0.558987617492676,0.0330657958984375,7.53402709960938e-05,-0.560335636138916,-0.000208377838134766,-4.9591064453125e-05,-0.58084237575531,-0.000225543975830078,-5.340576171875e-05,-0.588360190391541,0.0575060844421387,0.000101089477539063,-0.671184420585632,-0.000238895416259766,-5.7220458984375e-05,-0.62735116481781,0.0865292549133301,-0.000226020812988281,-0.692663729190826,-0.000253200531005859,-5.91278076171875e-05,-0.648955821990967,0.0305986404418945,-1.52587890625e-05,-0.748779058456421,-0.000259876251220703,-6.103515625e-05,-0.658923029899597,-0.000277042388916016,-4.10079956054688e-05,-0.755280137062073,-0.000263214111328125,-6.19888305664063e-05,-0.662555932998657,-0.000276088714599609,-4.29153442382813e-05,-0.0891851484775543,-4.33921813964844e-05,-4.76837158203125e-06,-0.117345690727234,-5.48362731933594e-05,-5.7220458984375e-06,-0.171438574790955,-6.62803649902344e-05,-8.58306884765625e-06,-0.250651717185974,-9.1552734375e-05,-1.23977661132813e-05,-0.369745492935181,-0.000148773193359375,-2.288818359375e-05,-0.45048987865448,-0.00018310546875,-2.95639038085938e-05,-0.48127007484436,-0.000190258026123047,-3.52859497070313e-05,-0.484102964401245,-0.000208377838134766,0.0524759292602539,-0.412964582443237,-0.0146751403808594,0.0274524688720703,-0.349689245223999,-0.000118732452392578,-2.57492065429688e-05,-0.404040098190308,-0.000139713287353516,-3.0517578125e-05,-0.443905115127563,-0.000156879425048828,-3.33786010742188e-05,-0.526261568069458,-0.000196933746337891,-4.10079956054688e-05,-0.55199134349823,-0.000207424163818359,-4.38690185546875e-05,-0.592066049575806,-0.000227451324462891,-4.67300415039063e-05,-0.650171101093292,-0.00025177001953125,-5.05447387695313e-05,-0.671900629997253,-0.000265598297119141,-5.14984130859375e-05,-0.685556173324585,-0.000270366668701172,-5.24520874023438e-05,-0.690571784973145,-0.000277042388916016,-5.43594360351563e-05,-0.0982866436243057,-4.81605529785156e-05,-5.7220458984375e-06,-0.128800928592682,-5.48362731933594e-05, +-8.58306884765625e-06,-0.180914998054504,-7.77244567871094e-05,-1.1444091796875e-05,-0.256503582000732,-9.87052917480469e-05,-1.52587890625e-05,-0.368706345558167,-0.000154018402099609,-2.47955322265625e-05,-0.434292197227478,-0.000165462493896484,-3.0517578125e-05,-0.466396331787109,-0.000194549560546875,-3.4332275390625e-05,-0.490866661071777,-0.000211238861083984,0.0524740219116211,-0.440650463104248,-0.0188703536987305,0.0274486541748047,-0.35479474067688,-0.000130176544189453,-2.57492065429688e-05,-0.408038377761841,-0.000144481658935547,-3.0517578125e-05,-0.428120374679565,-0.000152587890625,-3.14712524414063e-05,-0.521356105804443,-0.000193119049072266,-3.814697265625e-05,-0.554143190383911,-0.000204086303710938,-4.10079956054688e-05,-0.581949949264526,-0.000225543975830078,-4.29153442382813e-05,-0.619668543338776,-0.000242710113525391,-4.38690185546875e-05,-0.644409537315369,-0.000270366668701172,-4.57763671875e-05,-0.663944959640503,-0.000270366668701172,-4.67300415039063e-05,-0.667629837989807,-0.000274658203125,-4.76837158203125e-05,-0.0561977922916412,-1.85966491699219e-05,0,-0.0762875080108643,-2.81333923339844e-05,0,-0.112181782722473,-3.95774841308594e-05,0,-0.161702036857605,-7.58171081542969e-05,-2.86102294921875e-06,-0.218079805374146,-7.77244567871094e-05,-4.76837158203125e-06,-0.275912761688232,-0.000100612640380859,-5.7220458984375e-06,-0.356832504272461,-0.000133037567138672,-1.23977661132813e-05,-0.45018458366394,-0.000148773193359375,-2.09808349609375e-05,-0.470242261886597,-0.000190258026123047,-3.4332275390625e-05,-0.385592937469482,-0.000116825103759766,-2.57492065429688e-05,-0.395714282989502,-0.000133037567138672,-3.33786010742188e-05,-0.464385509490967,-0.000158309936523438,-4.38690185546875e-05,-0.537501811981201,-0.000188827514648438,-5.7220458984375e-05,-0.536719799041748,-0.000187397003173828,-6.19888305664063e-05,-0.770329833030701,-0.000261783599853516,-7.72476196289063e-05,-0.730189502239227,-0.000253200531005859,-7.62939453125e-05,-0.694950342178345,-0.000244140625,-7.43865966796875e-05, +-0.604317188262939,-0.000227451324462891,-7.15255737304688e-05,-0.575654983520508,-0.000213146209716797,-6.96182250976563e-05,-0.0744514614343643,-3.67164611816406e-05,0,-0.0984735488891602,-4.33921813964844e-05,0,-0.144206404685974,-5.48362731933594e-05,-4.76837158203125e-06,-0.210955381393433,-7.77244567871094e-05,-6.67572021484375e-06,-0.359201788902283,-0.000133037567138672,-1.71661376953125e-05,-0.451842784881592,-0.000185489654541016,-2.288818359375e-05,-0.500880002975464,-0.000196933746337891,-3.14712524414063e-05,-0.499831199645996,-0.000226497650146484,0.0524768829345703,-0.431340217590332,-0.000391483306884766,0.0274534225463867,-0.336514472961426,-0.000121593475341797,-2.38418579101563e-05,-0.39201807975769,-0.000133037567138672,-3.14712524414063e-05,-0.477706670761108,-0.000167369842529297,-4.00543212890625e-05,-0.55807089805603,-0.000204563140869141,-4.9591064453125e-05,-0.564189791679382,-0.000207424163818359,-5.43594360351563e-05,-0.576846122741699,-0.000218868255615234,-5.81741333007813e-05,-0.662659049034119,-0.000230312347412109,-6.29425048828125e-05,-0.745554327964783,-0.000249862670898438,-6.58035278320313e-05,-0.761156320571899,-0.000261783599853516,-6.67572021484375e-05,-0.7668616771698,-0.000267505645751953,-6.866455078125e-05,-0.0261162221431732,-5.24520874023438e-06,0,-0.0414824485778809,-9.05990600585938e-06,0,-0.0675036907196045,-3.95774841308594e-05,0,-0.099582314491272,-4.14848327636719e-05,0,-0.127595543861389,-5.10215759277344e-05,0,-0.146854877471924,-3.95774841308594e-05,0,-0.254952669143677,-8.53538513183594e-05,0,-0.379336595535278,-0.000123500823974609,-1.04904174804688e-05,-0.684795379638672,-0.00017547607421875,-6.58035278320313e-05,-0.643939018249512,-0.000155925750732422,-5.340576171875e-05,-0.568763732910156,-0.000135421752929688,-3.71932983398438e-05,-0.55784273147583,-0.000108718872070313,-2.57492065429688e-05,-0.445690870285034,-0.000167369842529297,-2.57492065429688e-05,-0.800117492675781,-0.000262260437011719,-9.63211059570313e-05,-0.791603446006775,-0.000253677368164063, +-9.44137573242188e-05,-0.77684497833252,-0.000237464904785156,-9.25064086914063e-05,-0.755624175071716,-0.000222206115722656,-8.86917114257813e-05,-0.728229999542236,-0.000207901000976563,-8.392333984375e-05,-0.695577621459961,-0.000188827514648438,-7.2479248046875e-05,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,4.64916229248047e-06,0,0,-2.20537185668945e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,4.41074371337891e-06,0,0,6.85453414916992e-06,0,0,2.26497650146484e-06,0,0,6.86943531036377e-06,0,0,2.20537185668945e-06,0,0,9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,-4.41074371337891e-06,0,0,9.16421413421631e-06,0,0,9.15490090847015e-06,0,0,9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-1.1444091796875e-05,0,0,-6.85453414916992e-06,0,0,7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-8.82148742675781e-06,0,-1.30375850200653,-0.000359535217285156,-0.000359058380126953,-1.33131122589111,-0.000479698181152344,-0.000323295593261719,-1.25121927261353,-0.000311851501464844,-0.000330448150634766,-1.30131840705872,-0.000428199768066406,-0.000287055969238281,-1.16104674339294,-0.000245094299316406,-0.000276088714599609,-1.24565887451172,-0.000338554382324219,-0.000240802764892578,-1.01190710067749,-0.000151634216308594,-0.000200271606445313,-1.14684581756592,-0.000262260437011719,-0.000174522399902344,-0.77003812789917,-6.866455078125e-05,-0.000120401382446289,-0.977339267730713,-0.000165462493896484,-0.000110626220703125,-0.173465728759766,0,-1.29938125610352e-05,-0.570259094238281,-3.95774841308594e-05,-2.26497650146484e-05, +-0.444470882415771,-3.4332275390625e-05,-4.64916229248047e-06,-1.09560298919678,-0.000189781188964844,-0.000240325927734375,-1.20303726196289,-0.000313758850097656,-0.000205039978027344,-0.410212993621826,-7.15255737304688e-06,-4.66108322143555e-05,-0.715891361236572,-7.77244567871094e-05,-4.91142272949219e-05,-1.33021640777588,-0.000439643859863281,-0.000353813171386719,-1.29689526557922,-0.000372886657714844,-0.000320911407470703,-1.23435950279236,-0.000313758850097656,-0.000275611877441406,-1.18571376800537,-0.000263214111328125,-0.000240325927734375,-1.11981058120728,-0.000205039978027344,-0.000203132629394531,-0.915144920349121,-0.000105857849121094,-0.000129938125610352,-0.603090286254883,-5.10215759277344e-05,-5.79357147216797e-05,-0.426719188690186,-2.52723693847656e-05,-2.62260437011719e-05,-0.288735866546631,-2.52723693847656e-05,-6.55651092529297e-06,0,6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,-4.52995300292969e-06,0,-0.0756633281707764,-2.55107879638672e-05,0,-0.157494306564331,-5.10215759277344e-05,2.86102294921875e-06,-0.306370496749878,-0.000102996826171875,0,-0.443500995635986,-0.000178813934326172,-2.19345092773438e-05,-0.569231510162354,-0.000118255615234375,-2.86102294921875e-05,-0.69504714012146,-0.000150203704833984,-4.48226928710938e-05,-0.743502616882324,-0.000164508819580078,-6.103515625e-05,-0.781400203704834,-0.000171661376953125,-7.53402709960938e-05,-0.812712907791138,-0.00020599365234375,-8.67843627929688e-05,-0.838680744171143,-0.000213623046875,-9.918212890625e-05,-0.859451770782471,-0.000233650207519531,-0.000105857849121094,-0.875101208686829,-0.00025177001953125,-0.000110626220703125,-0.885751008987427,-0.000253677368164063,-0.000112533569335938,-0.891781449317932,-0.000260353088378906,-0.000115394592285156,0,-1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-6.67572021484375e-06,0,0,-6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06, +0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,8.82148742675781e-06,0,-0.0213689804077148,-2.07424163818359e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.0121298730373383,0,0,0,8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,-0.0103045701980591,1.1444091796875e-05,0,-0.0426156520843506,-1.1444091796875e-05,0,-0.0424262285232544,-2.07424163818359e-05,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-1.1444091796875e-05,0,0,-7.03334808349609e-06,0,0,-7.03334808349609e-06,0,0,-9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,6.91413879394531e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,8.82148742675781e-06,0,0,4.52995300292969e-06,0,0,-9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,9.11951065063477e-06,0,0,-4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,8.82148742675781e-06,0,0,-9.29832458496094e-06,0, +-0.125698328018188,-3.69548797607422e-05,5.7220458984375e-06,-0.0750446319580078,-3.88622283935547e-05,4.76837158203125e-06,-0.194816112518311,-6.866455078125e-05,7.62939453125e-06,-0.3502197265625,-0.000116825103759766,0,-0.219695568084717,-7.31945037841797e-05,1.04904174804688e-05,-0.099637508392334,-2.07424163818359e-05,8.58306884765625e-06,-0.209419727325439,-7.31945037841797e-05,1.09672546386719e-05,-0.0960636138916016,-4.12464141845703e-05,8.10623168945313e-06,-0.167927265167236,-2.98023223876953e-05,1.23977661132813e-05,-0.0673513412475586,-1.60932540893555e-05,5.7220458984375e-06,-0.0955123901367188,-1.1444091796875e-05,1.00135803222656e-05,0,-4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,-2.30967998504639e-06,0,-0.360369682312012,-0.000105381011962891,3.814697265625e-06,-0.287108898162842,-5.98430633544922e-05,1.23977661132813e-05,-0.339129447937012,-7.31945037841797e-05,7.15255737304688e-06,-0.20779275894165,-3.88622283935547e-05,1.47819519042969e-05,-0.531244277954102,-0.000171661376953125,-1.71661376953125e-05,-0.415458202362061,-8.24928283691406e-05,6.19888305664063e-06,-0.479450702667236,-0.000119686126708984,-4.29153442382813e-06,-0.517007350921631,-0.000139713287353516,-1.38282775878906e-05,-0.622618675231934,-0.000119686126708984,-2.00271606445313e-05,-0.544069766998291,-9.67979431152344e-05,-2.86102294921875e-06,-0.679069519042969,-0.000174045562744141,-3.4332275390625e-05,-0.720271110534668,-0.000196933746337891,-4.62532043457031e-05,-0.689748764038086,-0.000263214111328125,-8.7738037109375e-05,-0.892221927642822,-0.000231266021728516,-7.43865966796875e-05,-0.830560684204102,-0.000190258026123047,-5.62667846679688e-05,-0.753755569458008,-0.000142574310302734,-3.76701354980469e-05,-0.771912574768066,-0.000302791595458984,-0.000115394592285156,-1.08034944534302,-0.000296592712402344,-0.000161170959472656,-1.01996612548828,-0.000263214111328125,-0.000134468078613281,-0.843175411224365,-0.000330924987792969,-0.000151634216308594,-1.13101506233215,-0.000365257263183594,-0.000195026397705078,-1.21189785003662, +-0.000274658203125,-0.00030517578125,-1.2703857421875,-0.000334739685058594,-0.000300884246826172,-1.27754426002502,-0.000372886657714844,-0.000267982482910156,-0.901171684265137,-0.0003662109375,-0.00018310546875,-1.17170143127441,-0.00038909912109375,-0.000225067138671875,-0.948055267333984,-0.000426292419433594,-0.000208854675292969,-1.20341920852661,-0.000414848327636719,-0.000247001647949219,-1.28122329711914,-0.00034332275390625,-0.000346660614013672,-1.31634414196014,-0.000418663024902344,-0.000339508056640625,-1.31878316402435,-0.000452995300292969,-0.000306129455566406,-1.22776365280151,-0.000456809997558594,-0.000268936157226563,-0.985237121582031,-0.000439643859863281,-0.000229835510253906,-1.01392495632172,-0.000475883483886719,-0.000246047973632813,-1.22099769115448,-0.000491142272949219,-0.000284194946289063,-1.31958293914795,-0.000388145446777344,-0.000369071960449219,-1.33946204185486,-0.000473976135253906,-0.000361442565917969,-1.33963811397552,-0.000487327575683594,-0.000330924987792969,-1.32914090156555,-0.000407218933105469,-0.000376701354980469,-1.34461450576782,-0.000460624694824219,-0.0003662109375,-1.34433913230896,-0.000517845153808594,-0.000337600708007813,-1.04853415489197,-0.000537872314453125,-0.000264167785644531,-1.0348037481308,-0.000517845153808594,-0.000256538391113281,-1.26894295215607,-0.000517845153808594,-0.000294685363769531,-1.2767790555954,-0.000540733337402344,-0.000300407409667969,-1.33350530266762,-0.000393867492675781,-0.000380516052246094,-1.34665313363075,-0.000457763671875,-0.000369071960449219,-1.34629634022713,-0.000506401062011719,-0.000338554382324219,-1.05598545074463,-0.000537872314453125,-0.000267982482910156,-1.28065371513367,-0.000531196594238281,-0.000304222106933594,-1.02063226699829,-0.000222682952880859,-0.000109195709228516,-0.942208766937256,-0.000194549560546875,-8.48770141601563e-05,-0.904837131500244,-9.1552734375e-05,-0.000161409378051758,-1.03130483627319,-0.000159263610839844,-0.000165939331054688,-1.07346677780151,-0.000211238861083984,-0.000142574310302734, +-0.844156265258789,-0.000146389007568359,-6.05583190917969e-05,-0.60545539855957,-3.33786010742188e-05,-8.16583633422852e-05,-0.770670413970947,-8.24928283691406e-05,-9.27448272705078e-05,-0.856390476226807,-0.000100612640380859,-7.93933868408203e-05,-0.727402210235596,-8.72611999511719e-05,-3.48091125488281e-05,-0.657641410827637,-0.000116825103759766,-1.62124633789063e-05,-0.601768970489502,-7.39097595214844e-05,-1.07288360595703e-05,-0.547848701477051,-7.10487365722656e-05,2.14576721191406e-06,-0.446821689605713,-5.98430633544922e-05,1.1444091796875e-05,-0.327988147735596,-4.57763671875e-05,1.57356262207031e-05,-0.483216285705566,-5.96046447753906e-05,3.09944152832031e-06,-0.436394691467285,-3.88622283935547e-05,1.21593475341797e-05,-0.341680526733398,-3.21865081787109e-05,1.93119049072266e-05,-0.226046085357666,-2.288818359375e-05,1.74045562744141e-05,-0.109471321105957,-2.51531600952148e-05,1.19209289550781e-05,0,4.58955764770508e-06,0,0,-9.17911529541016e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,6.79492950439453e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,2.32458114624023e-06,0,0,2.30967998504639e-06,0,0,-6.87316060066223e-06,0,0,1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,2.29477882385254e-06,0,0,-2.32458114624023e-06,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,6.86943531036377e-06,0,0,4.58583235740662e-06,0,0,2.29477882385254e-06,0,0,-6.83963298797607e-06,0,0,-4.57838177680969e-06,0,0,9.17911529541016e-06,0,0,-2.27987766265869e-06,0,0,4.61935997009277e-06,0,0,4.58955764770508e-06,0,0,6.85453414916992e-06,0,0,-4.58955764770508e-06,0,0,-2.20537185668945e-06,0,0,4.52995300292969e-06,0,0,-1.1444091796875e-05,0,0,-6.79492950439453e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,2.26497650146484e-06,0,0,-9.05990600585938e-06,0,0,2.32458114624023e-06,0,0,-4.58955764770508e-06,0,0,-6.91413879394531e-06,0,0,9.17911529541016e-06,0,0, +-4.41074371337891e-06,0,0,4.64916229248047e-06,0,0,9.17911529541016e-06,0,0,7.03334808349609e-06,0,0,4.64916229248047e-06,0,0,-1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,2.32458114624023e-06,0,0,-9.17911529541016e-06,0,0,-9.13441181182861e-06,0,0,-9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,6.82473182678223e-06,0,0,4.52995300292969e-06,0,0,-9.17911529541016e-06,0,0,6.88433647155762e-06,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-4.52995300292969e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-4.57465648651123e-06,0,0,1.1444091796875e-05,0,0,2.14576721191406e-06,0,0,4.41074371337891e-06,0,0,-9.17911529541016e-06,0,0,-7.03334808349609e-06,0,0,9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,-2.32458114624023e-06,0,0,9.23871994018555e-06,0,0,-9.11951065063477e-06,0,0,-9.17911529541016e-06,0,0,-9.17911529541016e-06,0,0,-6.91413879394531e-06,0,0,4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,9.29832458496094e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-4.58955764770508e-06,0,0,4.58955764770508e-06,0,0,1.1444091796875e-05,0,0,-4.57465648651123e-06,0,0,-2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,2.20537185668945e-06,0,0,6.85453414916992e-06,0,0,9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,-6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,4.57465648651123e-06,0,0,7.03334808349609e-06,0,0,2.26497650146484e-06,0,0,-1.1444091796875e-05,0,0,-8.82148742675781e-06,0,0,-6.91413879394531e-06,0,0,7.15255737304688e-06,0,0,-4.52995300292969e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,-9.15303826332092e-06,0,0,-2.29477882385254e-06,0,0,1.1444091796875e-05,0,0,6.85453414916992e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,1.1444091796875e-05,0,0,-9.17911529541016e-06,0,0,-9.11951065063477e-06,0,0,4.57838177680969e-06,0,0,4.58024442195892e-06,0,0,9.11951065063477e-06,0,0,-2.32458114624023e-06,0,-0.0107431411743164,-9.17911529541016e-06, +0,-0.00806045532226563,6.79492950439453e-06,0,-0.0271463394165039,-1.1444091796875e-05,2.38418579101563e-06,-0.0213623046875,-9.29832458496094e-06,0,-0.0521087646484375,-2.62260437011719e-06,3.27825546264648e-06,-0.0436134338378906,2.14576721191406e-06,2.02655792236328e-06,-0.0859479904174805,6.91413879394531e-06,4.72180545330048e-06,-0.0752296447753906,8.82148742675781e-06,1.9073486328125e-06,-0.126181125640869,2.14576721191406e-06,6.19888305664063e-06,-0.111748695373535,-5.24520874023438e-06,1.65402889251709e-06,-0.169600009918213,2.14576721191406e-06,8.40425491333008e-06,-0.141875267028809,1.1444091796875e-05,1.9371509552002e-06,0,2.20537185668945e-06,0,0,4.57465648651123e-06,0,0,6.85453414916992e-06,0,0,-9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,9.17911529541016e-06,0,0,-6.85453414916992e-06,0,0,6.86571002006531e-06,0,0,9.11951065063477e-06,0,-0.0114669799804688,-4.64916229248047e-06,0,-0.0287084579467773,0,2.14576721191406e-06,-0.0551691055297852,4.52995300292969e-06,2.74181365966797e-06,-0.0906467437744141,-6.91413879394531e-06,3.15159559249878e-06,-0.131220817565918,4.52995300292969e-06,4.64916229248047e-06,-0.169955253601074,1.1444091796875e-05,6.19888305664063e-06,0,4.58955764770508e-06,0,0,4.57779970020056e-06,0,0,-4.41074371337891e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,2.26497650146484e-06,0,0,9.23871994018555e-06,0,0,9.15676355361938e-06,0,0,6.85453414916992e-06,0,-0.00185728073120117,-4.64916229248047e-06,0,-0.00609827041625977,6.91413879394531e-06,0,-0.0152416229248047,-9.29832458496094e-06,0,-0.0314812660217285,0,0,-0.0579161643981934,2.14576721191406e-06,0,-0.111053466796875,9.05990600585938e-06,1.78813934326172e-06,-0.235386371612549,-1.83582305908203e-05,1.16825103759766e-05,0,6.82473182678223e-06,0,0,-1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,6.85453414916992e-06,0,0,-1.1444091796875e-05,0,0,-9.23871994018555e-06,0,-0.00349617004394531,1.1444091796875e-05,0,-0.0106906890869141,2.14576721191406e-06, +0,-0.0252981185913086,-1.1444091796875e-05,0,-0.0505228042602539,2.14576721191406e-06,1.78813934326172e-06,-0.0891180038452148,-4.52995300292969e-06,1.98930501937866e-06,-0.145628929138184,1.1444091796875e-05,2.20537185668945e-06,-0.21415901184082,-6.91413879394531e-06,1.01327896118164e-05,0,9.17911529541016e-06,0,0,-6.79492950439453e-06,0,0,-6.79492950439453e-06,0,0,-4.41074371337891e-06,0,0,-2.26497650146484e-06,0,0,-6.79492950439453e-06,0,0,-1.1444091796875e-05,0,0,4.64916229248047e-06,0,0,4.57465648651123e-06,0,0,-9.11951065063477e-06,0,0,-2.26497650146484e-06,0,0,9.17911529541016e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.91413879394531e-06,0,0,-1.1444091796875e-05,0,0,2.26497650146484e-06,0,0,-9.11951065063477e-06,0,0,6.86571002006531e-06,0,0,-9.23871994018555e-06,0,-0.0102958679199219,-4.64916229248047e-06,0,-0.0262269973754883,2.14576721191406e-06,1.78813934326172e-06,-0.0513553619384766,-9.29832458496094e-06,2.50339508056641e-06,-0.0855073928833008,0,2.29477882385254e-06,-0.124117851257324,-4.52995300292969e-06,2.47359275817871e-06,-0.159722328186035,8.82148742675781e-06,3.39746475219727e-06,-0.222784042358398,-6.91413879394531e-06,5.48362731933594e-06,-0.228226661682129,6.91413879394531e-06,4.41074371337891e-06,0,9.11951065063477e-06,0,0,9.14931297302246e-06,0,0,-4.58955764770508e-06,0,0,2.26497650146484e-06,0,0,7.03334808349609e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-2.26497650146484e-06,0,0,2.32458114624023e-06,0,0,9.15490090847015e-06,0,0,-6.85453414916992e-06,0,-0.00562191009521484,2.26497650146484e-06,0,-0.0158681869506836,8.82148742675781e-06,0,-0.0346908569335938,-9.29832458496094e-06,1.66893005371094e-06,-0.0640678405761719,6.91413879394531e-06,1.84774398803711e-06,-0.10295295715332,-1.1444091796875e-05,1.83470547199249e-06,-0.146941661834717,9.05990600585938e-06,1.78813934326172e-06,-0.187146186828613,4.52995300292969e-06,4.35113906860352e-06,-0.197600841522217,-1.1444091796875e-05,6.67572021484375e-06,-0.142857551574707,4.52995300292969e-06,1.00135803222656e-05, +-0.101873874664307,-9.29832458496094e-06,7.09295272827148e-06,-0.067927360534668,-9.29832458496094e-06,4.88758087158203e-06,-0.040745735168457,4.52995300292969e-06,3.33786010742188e-06,-0.0208044052124023,6.79492950439453e-06,1.96695327758789e-06,-0.00742053985595703,2.26497650146484e-06,0,0,-9.23871994018555e-06,0,0,-4.57762507721782e-06,0,0,4.58955764770508e-06,0,0,9.14931297302246e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-4.58955764770508e-06,0,0,9.15536656975746e-06,0,0,-4.61935997009277e-06,0,0,-9.11951065063477e-06,0,0,4.57465648651123e-06,0,0,4.58955764770508e-06,0,0,-2.26497650146484e-06,0,-0.0104684829711914,2.26497650146484e-06,0,-0.0221433639526367,0,2.08616256713867e-06,0,-6.82473182678223e-06,0,0,9.15490090847015e-06,0,0,-9.23871994018555e-06,0,0,-2.26497650146484e-06,0,0,4.41074371337891e-06,0,-0.0374631881713867,0,3.42726707458496e-06,-0.0567011833190918,-9.29832458496094e-06,4.70876693725586e-06,0,1.1444091796875e-05,0,-0.0322318077087402,2.26497650146484e-06,3.814697265625e-06,-0.0803427696228027,-2.62260437011719e-06,6.9737434387207e-06,-0.0639152526855469,2.26497650146484e-06,6.79492950439453e-06,-0.0654335021972656,2.26497650146484e-06,6.79492950439453e-06,-0.0840225219726563,0,7.98702239990234e-06,-0.0774340629577637,-2.26497650146484e-06,7.74860382080078e-06,-0.0447211265563965,-7.03334808349609e-06,5.36441802978516e-06,-0.0436091423034668,9.17911529541016e-06,5.12599945068359e-06,-0.102429389953613,2.14576721191406e-06,9.29832458496094e-06,-0.0784506797790527,-9.29832458496094e-06,7.27176666259766e-06,0,-2.26497650146484e-06,0,-0.148072242736816,-2.288818359375e-05,1.22785568237305e-05,0,-9.23871994018555e-06,0,0,-9.15676355361938e-06,0,0,4.58955764770508e-06,0,0,7.03334808349609e-06,0,-0.332592964172363,-2.74181365966797e-05,1.50203704833984e-05,-0.238994121551514,-2.288818359375e-05,1.69277191162109e-05,-0.117329597473145,-1.60932540893555e-05,1.16825103759766e-05,0,-7.03334808349609e-06,0,0,-9.23871994018555e-06,0,0,-1.1444091796875e-05,0,0,4.61935997009277e-06,0,0,4.64916229248047e-06, +0,-0.229795932769775,2.38418579101563e-06,0,-0.358342170715332,-1.66893005371094e-05,4.52995300292969e-06,-0.383089542388916,-9.29832458496094e-06,1.06096267700195e-05,-0.300035953521729,-2.55107879638672e-05,1.01327896118164e-05,-0.310536861419678,-1.83582305908203e-05,7.51018524169922e-06,0,6.19888305664063e-06,0,-0.00850725173950195,-6.91413879394531e-06,0,0,9.05990600585938e-06,0,-0.00578451156616211,-9.29832458496094e-06,0,-0.00125932693481445,-4.52995300292969e-06,0,-0.00250673294067383,-4.52995300292969e-06,0,-0.000705718994140625,-2.62260437011719e-06,0,-0.000753402709960938,2.26497650146484e-06,0,-0.000226497650146484,4.41074371337891e-06,0,0,9.14931297302246e-06,0,0,9.14931297302246e-06,0,0,2.29477882385254e-06,0,0,4.58955764770508e-06,0,0,-6.79492950439453e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,-4.41074371337891e-06,0,0,-6.91413879394531e-06,0,0,-8.82148742675781e-06,0,0,-8.82148742675781e-06,0,0,6.91413879394531e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,0,1.1444091796875e-05,0,-0.000125408172607422,8.82148742675781e-06,0,-5.43594360351563e-05,4.41074371337891e-06,0,-6.19888305664063e-06,6.91413879394531e-06,0,-4.29153442382813e-06,9.17911529541016e-06,0,0,4.41074371337891e-06,0,-2.43186950683594e-05,8.82148742675781e-06,0,-1.52587890625e-05,2.26497650146484e-06,0,0,2.28732824325562e-06,0,0,-4.58210706710815e-06,0,0,-6.86943531036377e-06,0,0,-9.14931297302246e-06,0,0,4.55975532531738e-06,0,0,-6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-9.17911529541016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,-9.05990600585938e-06,0,0,-4.64916229248047e-06,0,0,-6.82473182678223e-06,0,0,9.05990600585938e-06,0,0,1.1444091796875e-05,0,0,4.41074371337891e-06,0,0,-4.55975532531738e-06,0,0,-7.03334808349609e-06,0,0,6.88433647155762e-06, +0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,4.41074371337891e-06,0,0,-1.1444091796875e-05,0,0,-6.91413879394531e-06,0,0,6.91413879394531e-06,0,0,-7.03334808349609e-06,0,0,9.14931297302246e-06,0,0,9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,9.05990600585938e-06,0,0,-1.1444091796875e-05,0,-0.197163581848145,8.58306884765625e-06,-4.21702861785889e-05,-0.372637271881104,-1.81198120117188e-05,-8.70823860168457e-05,-0.52381443977356,-2.95639038085938e-05,-0.000131726264953613,-0.653875827789307,-6.00814819335938e-05,-0.000175952911376953,-0.767556667327881,-5.24520874023438e-05,-0.000217676162719727,-0.715638160705566,-7.15255737304688e-05,-0.000213384628295898,-0.788506388664246,-0.000102996826171875,-0.000243186950683594,-0.852230608463287,-0.000119209289550781,-0.000268220901489258,-0.906218290328979,-0.000125885009765625,-0.000288486480712891,-0.950169861316681,-0.000151634216308594,-0.000303745269775391,-0.985588252544403,-0.000148773193359375,-0.000314712524414063,-1.01019749045372,-0.00016021728515625,-0.000323295593261719,-1.02306029200554,-0.000151634216308594,-0.00032806396484375,-0.208703517913818,8.58306884765625e-06,-3.090500831604e-05,-0.405456066131592,-2.19345092773438e-05,-6.79492950439453e-05,-0.578542470932007,-4.10079956054688e-05,-0.000106453895568848,-0.725355863571167,-6.77108764648438e-05,-0.000148773193359375,-0.847596168518066,-0.000107765197753906,-0.000191926956176758,-0.949557065963745,-0.000136375427246094,-0.000230789184570313,-1.03465247154236,-0.000155448913574219,-0.00026702880859375,-1.1053215265274,-0.000201225280761719,-0.000295162200927734,-1.16311705112457,-0.000222206115722656,-0.000317096710205078,-1.21003556251526,-0.000256538391113281,-0.000332355499267578,-1.24733281135559,-0.000273704528808594,-0.000343799591064453,-1.27520394325256,-0.000277519226074219,-0.000354766845703125,-1.29313948750496,-0.000313758850097656,-0.000360488891601563,-1.30209344625473,-0.00029754638671875,-0.000363349914550781,-0.0611886978149414,0,-2.02804803848267e-05,-0.149044990539551,4.76837158203125e-06, +-5.26309013366699e-05,-0.259457111358643,6.67572021484375e-06,-9.59634780883789e-05,-0.360846519470215,-1.1444091796875e-05,-0.000137686729431152,-0.462302327156067,-1.04904174804688e-05,-0.00018155574798584,-0.572170734405518,-4.10079956054688e-05,-0.000229954719543457,-0.681912302970886,-4.10079956054688e-05,-0.000277280807495117,-0.750664830207825,-6.38961791992188e-05,-0.000306844711303711,-0.824874997138977,-7.53402709960938e-05,-0.000339031219482422,-0.894773006439209,-9.1552734375e-05,-0.000368833541870117,-0.97424852848053,-9.82284545898438e-05,-0.000402450561523438,-1.0124564319849,-0.000105857849121094,-0.00041961669921875,-0.302828311920166,4.76837158203125e-06,-0.000131845474243164,-0.378895282745361,-5.7220458984375e-06,-0.000170886516571045,-0.444914102554321,-1.1444091796875e-05,-0.000207424163818359,-0.550791382789612,-1.33514404296875e-05,-0.000261425971984863,-0.683815240859985,-3.62396240234375e-05,-0.000330090522766113,-0.677270531654358,-4.38690185546875e-05,-0.000331878662109375,-0.728476703166962,-4.00543212890625e-05,-0.000360369682312012,-0.785586297512054,-5.53131103515625e-05,-0.000390529632568359,-0.843563437461853,-3.62396240234375e-05,-0.000419855117797852,-0.889088280498981,-4.38690185546875e-05,-0.000443339347839355,-0.0323586910963058,0,-1.96695327758789e-05,-0.174976348876953,8.58306884765625e-06,-4.89950180053711e-05,-0.325138092041016,-6.67572021484375e-06,-9.72747802734375e-05,-0.454932928085327,-2.76565551757813e-05,-0.000144124031066895,-0.571283102035522,-2.95639038085938e-05,-0.000189423561096191,-0.678191542625427,-3.91006469726563e-05,-0.000232934951782227,-0.777182102203369,-7.34329223632813e-05,-0.000274896621704102,-0.707085728645325,-9.05990600585938e-05,-0.000255346298217773,-0.774913609027863,-8.67843627929688e-05,-0.000284671783447266,-0.836520195007324,-0.000113487243652344,-0.000311136245727539,-0.887921333312988,-0.00011444091796875,-0.000332117080688477,-0.923958659172058,-0.000140190124511719,-0.000345945358276367,-0.943437516689301,-0.000128746032714844,-0.000352382659912109, +0,-1.1444091796875e-05,0,0,8.82148742675781e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,0,-9.29832458496094e-06,0,0,1.1444091796875e-05,0,0,-9.29832458496094e-06,0,-0.101718530058861,-4.14848327636719e-05,0,-0.376977920532227,-0.000139713287353516,-1.23977661132813e-05,-0.414340496063232,-0.0001373291015625,-1.81198120117188e-05,-0.266873717308044,-8.72611999511719e-05,-5.7220458984375e-06,-0.325498580932617,-0.000121593475341797,-8.58306884765625e-06,-0.209143280982971,-7.39097595214844e-05,-2.86102294921875e-06,-0.16087281703949,-7.58171081542969e-05,0,-0.124556422233582,-4.33921813964844e-05,0,-0.441892862319946,-0.000144481658935547,-2.38418579101563e-05,-0.330294370651245,-0.000104427337646484,-2.38418579101563e-05,-0.333240509033203,-0.000115871429443359,-2.76565551757813e-05,-0.291433811187744,-9.87052917480469e-05,-2.86102294921875e-05,-0.347733974456787,-0.000124454498291016,-3.91006469726563e-05,-0.389325141906738,-0.0001373291015625,-4.67300415039063e-05,-0.432406544685364,-0.000164031982421875,-5.14984130859375e-05,-0.482679605484009,-0.000188827514648438,-5.81741333007813e-05,-0.524906635284424,-0.000194549560546875,-6.00814819335938e-05,-0.556575894355774,-0.000218868255615234,-6.103515625e-05,-0.576038241386414,-0.000221729278564453,-6.38961791992188e-05,-0.111991465091705,-5.7220458984375e-05,-6.67572021484375e-06,-0.148504555225372,-7.39097595214844e-05,-8.58306884765625e-06,-0.186945855617523,-8.72611999511719e-05,-1.1444091796875e-05,-0.277098774909973,-0.000102996826171875,-1.81198120117188e-05,-0.380880951881409,-0.000154018402099609,-2.76565551757813e-05,-0.438390016555786,-0.000151157379150391,-2.95639038085938e-05,-0.541717290878296,-0.000190258026123047,-3.814697265625e-05,-0.576250314712524,-0.000217437744140625,-4.00543212890625e-05,-0.659482955932617,-0.000234127044677734,-4.57763671875e-05,-0.343156337738037,-0.000121593475341797,-2.47955322265625e-05,-0.375573396682739,-0.000124454498291016,-2.6702880859375e-05,-0.41280198097229,-0.000143051147460938,-3.0517578125e-05,-0.519097328186035, +-0.000185489654541016,-3.62396240234375e-05,-0.43753969669342,0.0332059860229492,-0.000349998474121094,-0.375927448272705,0.0573816299438477,-0.000606536865234375,-0.269500613212585,0.0855960845947266,-0.00174903869628906,-0.644164443016052,0.0306782722473145,5.81741333007813e-05,-0.660172760486603,-0.000265598297119141,-4.29153442382813e-05,-0.663708925247192,-0.000267505645751953,-4.29153442382813e-05,-0.114605695009232,-4.57763671875e-05,-6.67572021484375e-06,-0.144515067338943,-5.7220458984375e-05,-8.58306884765625e-06,-0.191801130771637,-8.53538513183594e-05,-1.1444091796875e-05,-0.281798481941223,-0.000108242034912109,-1.62124633789063e-05,-0.405076861381531,-0.000142574310302734,-2.38418579101563e-05,-0.487721800804138,-0.000167369842529297,-2.86102294921875e-05,-0.559443712234497,-0.00018310546875,-3.52859497070313e-05,-0.633019685745239,-0.000203609466552734,-4.00543212890625e-05,-0.694179773330688,-0.000234127044677734,-4.57763671875e-05,-0.339361906051636,-0.000116825103759766,-2.38418579101563e-05,-0.361016273498535,-0.000124454498291016,-2.6702880859375e-05,-0.394493103027344,-0.000139713287353516,-3.14712524414063e-05,-0.496936559677124,-0.000175952911376953,-4.00543212890625e-05,-0.547789692878723,-0.000201702117919922,-4.29153442382813e-05,-0.587801814079285,-0.000211715698242188,-4.48226928710938e-05,-0.650454640388489,-0.000249862670898438,-4.86373901367188e-05,-0.675729155540466,-0.00026702880859375,-4.86373901367188e-05,-0.681689977645874,-0.000272750854492188,-4.76837158203125e-05,-0.677414834499359,-0.000268936157226563,-4.67300415039063e-05,-0.0786640048027039,-3.69548797607422e-05,4.76837158203125e-06,-0.27056622505188,-7.39097595214844e-05,0,-0.301513910293579,-8.72611999511719e-05,-5.24520874023438e-06,-0.19356107711792,-7.12871551513672e-05,8.58306884765625e-06,-0.233784675598145,-6.65187835693359e-05,4.76837158203125e-06,-0.154376983642578,-5.26905059814453e-05,6.67572021484375e-06,-0.120623350143433,-5.26905059814453e-05,7.62939453125e-06,-0.0948883295059204,-4.12464141845703e-05,5.7220458984375e-06, +-0.329222202301025,-0.000100612640380859,-1.1444091796875e-05,-0.18033242225647,-4.9591064453125e-05,-1.1444091796875e-05,-0.201693296432495,-5.86509704589844e-05,-1.66893005371094e-05,-0.245386600494385,-6.15119934082031e-05,-2.76565551757813e-05,-0.2740318775177,-7.72476196289063e-05,-3.76701354980469e-05,-0.324366092681885,-0.000100135803222656,-4.86373901367188e-05,-0.378668904304504,-0.000125885009765625,-5.81741333007813e-05,-0.431930541992188,-0.000140190124511719,-6.58035278320313e-05,-0.479336202144623,-0.000157356262207031,-6.96182250976563e-05,-0.516731679439545,-0.000180244445800781,-7.05718994140625e-05,-0.540700495243073,-0.000185966491699219,-7.2479248046875e-05,-0.0251403748989105,2.14576721191406e-06,0,-0.0826427936553955,-9.05990600585938e-06,-2.86102294921875e-06,-0.0945982933044434,-1.66893005371094e-05,-6.91413879394531e-06,-0.0589549541473389,-7.15255737304688e-06,0,-0.0709023475646973,4.29153442382813e-06,0,-0.0475742816925049,2.14576721191406e-06,0,-0.0376660823822021,2.14576721191406e-06,2.14576721191406e-06,-0.0300120115280151,-1.1444091796875e-05,1.9073486328125e-06,-0.110206365585327,-9.05990600585938e-06,-1.07288360595703e-05,-0.141508340835571,-2.19345092773438e-05,-1.88350677490234e-05,-0.176405191421509,-1.04904174804688e-05,-2.83718109130859e-05,-0.22304630279541,-2.288818359375e-05,-4.41074371337891e-05,-0.290633678436279,-4.57763671875e-05,-6.43730163574219e-05,-0.386872172355652,-6.00814819335938e-05,-9.01222229003906e-05,-0.498671889305115,-8.67843627929688e-05,-0.000113964080810547,-0.61747682094574,-0.000109672546386719,-0.000134944915771484,-0.733282804489136,-0.000148773193359375,-0.000149250030517578,-0.831969380378723,-0.000166893005371094,-0.00016021728515625,-0.898578107357025,-0.000166893005371094,-0.000170707702636719,-0.164752274751663,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.16475248336792,0,-5.71608543395996e-05,-0.164752244949341,0,-5.7220458984375e-05,-0.164752244949341,0,-5.69820404052734e-05,-0.164752244949341,-1.9073486328125e-06, +-5.71012496948242e-05,-0.16475236415863,-1.9073486328125e-06,-5.7220458984375e-05,-0.164752244949341,-1.9073486328125e-06,-5.71012496948242e-05,-0.16475248336792,0,-5.71608543395996e-05,-0.164752244949341,0,-5.71012496948242e-05,-0.164752244949341,0,-5.71608543395996e-05,-0.164752006530762,0,-5.71012496948242e-05,-0.164752244949341,-1.9073486328125e-06,-5.7220458984375e-05,-0.171116590499878,-1.9073486328125e-06,-5.93662261962891e-05,-0.17587673664093,0,-6.09159469604492e-05,-0.180306673049927,0,-6.25848770141602e-05,-0.184573352336884,0,-6.41345977783203e-05,-0.188271641731262,0,-6.53266906738281e-05,-0.190809398889542,0,-6.61611557006836e-05,0,9.05990600585938e-06,0,-0.0526230335235596,0,-1.05202198028564e-05,-0.0804190635681152,-1.04904174804688e-05,-1.79409980773926e-05,-0.110532760620117,0,-2.78949737548828e-05,-0.1606764793396,-6.67572021484375e-06,-4.32729721069336e-05,-0.269533753395081,-1.81198120117188e-05,-7.48634338378906e-05,-0.388612866401672,-2.288818359375e-05,-0.000105142593383789,-0.512962639331818,-5.62667846679688e-05,-0.000133752822875977,-0.635793149471283,-4.48226928710938e-05,-0.00015711784362793,-0.742478907108307,-7.34329223632813e-05,-0.000176191329956055,-0.81542032957077,-6.866455078125e-05,-0.000190973281860352,-0.0517162084579468,-1.59740447998047e-05,4.29153442382813e-06,-0.0619155764579773,-1.40666961669922e-05,5.24520874023438e-06,-0.0780516862869263,-1.83582305908203e-05,6.19888305664063e-06,-0.0989878177642822,-1.1444091796875e-05,8.10623168945313e-06,-0.123143434524536,-3.69548797607422e-05,8.10623168945313e-06,-0.148154497146606,-2.98023223876953e-05,4.29153442382813e-06,-0.172005891799927,-3.4332275390625e-05,0,-0.194048881530762,-2.81333923339844e-05,-4.29153442382813e-06,-0.21704363822937,-5.48362731933594e-05,-1.00135803222656e-05,-0.123548030853271,-2.71797180175781e-05,-1.09672546386719e-05,-0.143582344055176,-2.71797180175781e-05,-1.71661376953125e-05,-0.171879768371582,-4.00543212890625e-05,-2.6702880859375e-05,-0.210759162902832,-4.29153442382813e-05,-3.86238098144531e-05, +-0.259849309921265,-6.77108764648438e-05,-5.14984130859375e-05,-0.314969658851624,-7.91549682617188e-05,-6.24656677246094e-05,-0.371531009674072,-9.72747802734375e-05,-7.15255737304688e-05,-0.4244544506073,-0.000107765197753906,-7.58171081542969e-05,-0.468077838420868,-0.000123023986816406,-7.86781311035156e-05,-0.496838957071304,-0.000131607055664063,-8.24928283691406e-05,0,4.58955764770508e-06,0,0,9.23871994018555e-06,0,0,-6.85453414916992e-06,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.91413879394531e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-2.29477882385254e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-1.1444091796875e-05,0,0,2.32458114624023e-06,0,0,-1.1444091796875e-05,0,0,4.52995300292969e-06,0,0,7.03334808349609e-06,0,0,-2.26497650146484e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,6.79492950439453e-06,0,0,4.64916229248047e-06,0,0,-9.11951065063477e-06,0,0,6.85453414916992e-06,0,0,-9.14931297302246e-06,0,0,-9.14931297302246e-06,0,0,2.30967998504639e-06,0,0,-4.58955764770508e-06,0,0,-6.82473182678223e-06,0,0,4.61935997009277e-06,0,0,-2.26497650146484e-06,0,0,1.1444091796875e-05,0,0,-9.11951065063477e-06,0,0,-9.11951065063477e-06,0,0,-4.58955764770508e-06,0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,6.88433647155762e-06,0,0,-4.52995300292969e-06,0,0,2.30967998504639e-06,0,0,-6.86943531036377e-06,0,0,-9.13441181182861e-06,0,0,-6.82473182678223e-06,0,0,2.29477882385254e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-2.20537185668945e-06,0,0,-4.58955764770508e-06,0,0,6.79492950439453e-06, +0,0,9.29832458496094e-06,0,0,-4.41074371337891e-06,0,0,2.26497650146484e-06,0,0,-2.26497650146484e-06,0,0,-9.17911529541016e-06,0,0,-2.26497650146484e-06,0,0,-2.14576721191406e-06,0,0,1.1444091796875e-05,0,0,-4.58955764770508e-06,0,0,2.30967998504639e-06,0,0,-4.57465648651123e-06,0,0,-9.13441181182861e-06,0,0,-9.13441181182861e-06,0,0,9.14931297302246e-06,0,0,-6.82473182678223e-06,0,0,-4.55975532531738e-06,0,0,9.23871994018555e-06,0,0,1.1444091796875e-05,0,0,-2.20537185668945e-06,0 + } + Normals: *15342 { + a: 1.21891498565674e-05,1.8775463104248e-05,7.57277011871338e-05,-0.614461136347792,0.749744987115264,0.814772307872772,-1.1659089922905,-0.240294992923737,-0.206866934895515,-0.913618475198746,0.00989806652069092,-0.584553942084312,-0.619066611398011,0.343794584274292,-1.09113436937332,-0.315515846014023,-0.17753541469574,-0.602287426590919,-0.0238627791404724,-0.151885896921158,-0.212665602564812,-0.694936757656178,0.40280245244503,0.628791451454163,-1.54714477062225,0.13265386223793,-0.185470208525658,-1.63190585374832,0.72163325548172,-0.84904745221138,-0.567864060867578,0.406947255134583,-1.76065731048584,0.241948664188385,0.61329460144043,-1.06640392541885,0.31585156917572,0.746842585504055,-0.0226556658744812,-0.503563012754945,0.18753707408905,0.553374871611595,-1.58790677785873,0.707292832434177,0.0987794995307922,-0.638962322380394,1.34007781744003,-0.946059376001358,0.196388602256775,0.613597124814987,-0.173841446638107,-0.563045488389956,-0.68754518032074,-0.784780889749527,-1.07353574037552,0.40075609087944,-0.467526704072952,-0.26256600709479,1.13182687759399,-1.03471966087818,0.6612728536129,0.267492088489234,-0.97180674597621,-0.577146829037144,-0.250796616077423,-0.855060696601868,-1.61035311222076,0.635241031646729,-0.683767260983586,-0.262565524900069,1.13493013381958,-0.964947264641523,0.697275176644325,0.67759682238102,-1.17042575776577,-0.149452672101575,-0.976381756365299,-1.28964248299599,-1.12977001070976,0.546766969375312,-1.14108601212502,-0.262560795850277,1.13325333595276,-1.01409043371677,0.512480318546295,0.790262192487717,-1.19417814910412,-0.119221362153539,-0.824054151773453,-1.02769929170609,-0.872991785407066,0.766147747635841,-1.21789884567261,-0.262565123334966,1.11789935827255,-1.13944007456303,0.659998372197151,0.594194069504738,-1.40319219231606,-0.119221083248988,-0.818420857191086,-1.09465086460114,-0.786892170337596,0.678768783807755,-1.39529186487198,1.32694438077507e-05,0.7943115234375,-1.7628465294838,0.427552551031113,-0.00211032852530479,-1.8049840927124, +-0.126888514117582,-0.560878559947014,-1.69106703996658,-0.576962461117764,0.184556595981121,-1.80296277999878,0.42637254048066,-0.785583468154073,-1.41663205623627,0.50694967556672,-0.713502200320363,-1.45706140995026,-0.42726277316,-0.638136446475983,-1.40347957611084,-0.402323141694069,-0.57051157951355,-1.43952146172523,0.132578484714031,-0.69389015249908,-1.72950607538223,-0.443712701443691,-0.487277030944824,-1.60197216272354,0.547586327167592,-0.404261499643326,-1.52141940593719,0.715979650616646,-0.551255092024803,-0.786042019724846,0.87618051469326,-0.355893462896347,-0.546769767999649,0.630455300211906,-0.695534586906433,-0.776312857866287,0.796453908085823,-0.415322169661522,-0.626322120428085,0.79154871404171,-0.106078460812569,-0.186290442943573,0.83967137336731,-0.535538300871849,-0.489223629236221,0.949246108531952,-0.366950324736536,-0.287919402122498,0.268664442002773,-0.197231603786349,-0.0111246705055237,0.126882766727467,-0.0203187763690948,0.00500345230102539,0.411970466375351,0.157772032544017,0.0330593585968018,0.389412045478821,-0.00873854756355286,0.0260105133056641,0.126984558999538,-0.00947423279285431,0.0197185277938843,0.496665790677071,0.298256000503898,0.276770651340485,0.516594409942627,0.236894205212593,0.317299246788025,0.348438590764999,0.464752689003944,0.485559791326523,-1.43051147460938e-06,3.69986519217491e-05,5.96046447753906e-08,5.96046447753906e-08,3.90559434890747e-05,5.60283660888672e-06,-0.173207759857178,0.00332364439964294,-0.227450758218765,0.0804458260536194,-0.135909020900726,-0.159753367304802,-9.47713851928711e-06,2.18749046325684e-05,6.62952661514282e-05,-0.118003249168396,0.0398842096328735,-0.121077477931976,-0.06354820728302,-0.166561096906662,-1.11222836375237,0.341134637594223,-0.396801263093948,-0.854643762111664,0.204598397016525,-0.0261932015419006,-0.917223811149597,0.634757091291249,-0.13372603058815,-1.52172893285751,0.215289920568466,-0.390380531549454,-1.32069933414459,1.16869953274727,-0.144410490989685,-0.762308478355408,1.38663828372955,-0.273424476385117, +-0.938454926013947,1.67391300201416,0.725759461522102,-0.681907117366791,1.26531803607941,0.342954963445663,-0.814840212464333,1.45451724529266,0.608566790819168,0.000728636980056763,1.46635872125626,0.536587588489056,0.284489274024963,1.45164972543716,0.562011867761612,0.322154030203819,1.01493847370148,0.536588340997696,0.631569474935532,1.0456528365612,0.563178718090057,1.16570922732353,0.491110616363585,0.140282332897186,1.19136774539948,0.430817177250192,0.330282986164093,1.55096191167831,0.514484398066998,0.326830983161926,1.55878800153732,0.459979166276753,0.140275299549103,1.19136202335358,0.458443142473698,0.389693677425385,1.40134996175766,0.372921578586102,0.0549470782279968,1.36212188005447,0.24601611495018,0.361852437257767,1.54352641105652,-0.340577244758606,0.571555659174919,1.23830431699753,-0.46065029501915,0.426350742578506,0.778145253658295,-0.820275923237205,0.466258570551872,1.2481797337532,-0.905324209481478,0.871447712182999,0.665400564670563,-0.364993631839752,0.325618535280228,0.125734686851501,0.102074027061462,1.61026322841644,0.59309009462595,0.0265230052173138,1.4026386141777,0.398832440376282,-0.707818979863077,0.160422801971436,0.255337834358215,-0.817902088165283,1.73616218566895,0.277192205190659,-0.0872373878955841,1.74318248033524,0.391125144436955,0.225010424852371,0.498883694410324,-0.242220044136047,-0.136084228754044,1.54238563776016,0.373032107949257,-0.0377450585365295,1.6654344201088,0.550656244158745,-0.000225543975830078,1.59156328439713,0.503279630094767,-0.0967017412185669,-0.0127497017383575,0.976373434066772,0.30072408914566,0.479072272777557,0.962761521339417,0.344738274812698,0.738461583852768,1.03020918369293,0.089098334312439,-0.0271860957145691,0.827658951282501,-0.0859225392341614,-0.101098924875259,1.26644772291183,-0.676518514752388,-0.35918778181076,0.551513533806428,-0.569949604832214,-0.296721935272217,0.821913480758667,-0.959419369697571,-1.16327103972435,0.760718196630478,-0.69278946518898,-1.21909742057323,0.526227922644466,-0.576848641037941,-0.506707698106766, +0.988256633281708,-0.684127878397703,-0.57380422949791,0.688363932073116,-0.867782421410084,-1.13127951323986,0.947957903146744,-1.7847473025322,-0.528813719749451,0.653028160333633,-1.59751516580582,0.545374557375908,1.06388247013092,-1.46186828613281,0.456286266446114,1.09793585538864,-1.14296972751617,1.36629784107208,0.874970436096191,-1.30513179302216,1.13226291537285,0.894683837890625,-0.944907158613205,1.31605017185211,0.472750622779131,-0.921604267576413,1.37235125899315,-0.125868882983923,-1.08429582417011,1.21031528711319,-0.0548491030931473,-0.701025143265724,1.1954707056284,-0.524187358096242,-0.722503870725632,1.26296666264534,-0.28198453783989,-0.637654513120651,1.17632818222046,-0.117699466645718,-0.542822957038879,0.840238995850086,-0.250453397631645,0.163792014122009,0.324566997587681,-0.36015397310257,0.0860353708267212,-0.115884944796562,-0.718852788209915,0.122333288192749,-0.0541490167379379,-0.396313145756721,-0.163210570812225,-0.606974966824055,-1.00093939900398,0.144031822681427,-0.387053728103638,-0.844490326941013,-0.745947763323784,-0.6701330691576,-1.14502862095833,-0.684339797216211,-0.712726086378098,-0.928995460271835,-0.996006190776825,-0.677097767591476,-0.673055663704872,-0.709601402282715,-0.704247996211052,-0.903550118207932,-0.478173568844795,-0.721485808491707,-0.988887965679169,-0.669079523533583,-0.666801407933235,-1.16919955611229,-0.592600211501122,-0.637111485004425,-0.999889463186264,-1.04061317443848,0.281390964984894,-1.00130023062229,-1.12001864612103,0.534276857972145,-0.665396749973297,-1.18505588173866,-0.0326533913612366,-0.836704738438129,-1.25743472576141,1.07246318459511,-0.60730791836977,-1.2146418094635,1.00047831237316,-0.494249165058136,-0.289910554885864,1.29823791980743,-0.961989985778928,-0.0707803653796191,1.31732055544853,-1.06310502439737,-0.225015893578529,1.21932575106621,-1.08550026267767,-0.120481885969639,1.22054097056389,-0.975003708153963,-0.0527753233909607,1.2883528470993,-1.05251803249121,0.204595290124416,1.60869932174683,-0.806260399520397, +0.225163906812668,1.27587613463402,-1.02902898937464,0.723317876458168,0.677013516426086,-1.12499786913395,0.75816011428833,0.279133260250092,-1.14873307943344,0.793804824352264,-0.016370952129364,-1.31238168478012,0.508437983691692,-0.123723804950714,-1.16269084811211,0.53354468551877,-0.0476036667823792,-1.23404297232628,-0.0839923524401636,-0.612509042024612,-1.24818953871727,-0.0929894077430049,-0.663561433553696,-1.40609323978424,-0.172898389399052,-0.56091234087944,-1.39660909771919,0.0839898160554915,-0.612509816884995,-1.24818789958954,0.102113215001664,-0.65721407532692,-1.42698836326599,-0.0486114605046892,-0.711022108793259,-1.31336465477943,-0.0463057362578363,-0.536067336797714,-1.42962083220482,-0.804810009896755,0.00144213438034058,-1.30233716964722,-0.806608721613884,0.588519886136055,-1.16164675354958,-0.864582171394631,-0.00517278909683228,-1.31111732125282,-0.344773713672133,1.59009754657745,-0.784125838428736,-0.4513751976192,1.51647299528122,-0.826742064207792,-0.0448378399014473,1.3156675696373,-1.00871928781271,0.0707739549373976,1.32354229688644,-0.898677289485931,-0.0897307209670544,1.62787771224976,-0.746525224298239,0.233062051236629,1.59335708618164,-0.855151303112507,0.290108866989613,1.2982420027256,-0.907707082107663,0.427925005555153,1.1822072416544,-1.03834746032953,0.293758630752563,1.19700039923191,-0.966156543698162,0.841727413237095,0.931847870349884,-1.13505992293358,1.08922423422337,-0.0217036306858063,-1.20990139245987,1.08393163979053,0.000446230173110962,-1.24968001246452,0.661730274558067,-0.214332580566406,-0.981947436928749,1.08583980798721,-0.466882944107056,-1.02210053801537,0.522029973566532,-0.755191460251808,-0.794758483767509,0.2285050745582,-0.787134155631065,-1.06714582443237,0.0998843982815742,-0.686414450407028,-1.04196407645941,0.714721865952015,-0.755192056298256,-0.79475911706686,0.731020279228687,-0.714951545000076,-0.819183386862278,0.77480211108923,-0.790003776550293,-0.585126288235188,0.759312704205513,-0.611968904733658,-0.571365416049957,-0.258308708667755, +-0.0502484142780304,-0.987126350402832,-0.152606129646301,0.846352085471153,-0.940489307045937,-0.127729713916779,-0.209277756512165,-0.944471061229706,0.544468522071838,1.1538890004158,-0.625224374234676,0.328638672828674,1.19601874053478,-0.766833499073982,0.389984130859375,1.29731220006943,-0.992359846830368,0.837134581821829,1.18807923793793,-0.690290734171867,0.647952556610107,1.06693261116743,-0.826881617307663,1.04698038101196,0.886314146220684,-0.666541948914528,1.07444582879543,1.20328679680824,-0.403248429298401,1.06298069655895,1.30360385775566,-0.721691101789474,1.05710577964783,1.15385103225708,-0.73360088467598,1.73909640312195,0.772482007741928,-0.498093411326408,1.62197363376617,-0.0592180788516998,-0.470108479261398,1.72107654809952,0.0587446391582489,-0.386970147490501,1.39415806531906,-0.630725294351578,-0.453460961580276,1.33088529109955,-0.504791229963303,0.29583540558815,0.606168791651726,-0.440514206886292,0.327914245426655,0.951014630314583,-0.7679263651371,-0.256122305989265,0.791722543537617,-1.06959480792284,-0.49897737801075,1.01488853245974,-1.34482181072235,0.0719750300049782,0.909936375916004,-0.667637497186661,0.434450875967741,0.750711813569069,-0.66064789891243,0.335591420531273,0.842630706727505,-1.34934967756271,0.0894461944699287,0.0518681406974792,-0.785460621118546,0.211866766214371,-0.137129068374634,0.965132832527161,0.337603241205215,-0.321407437324524,0.192963421344757,0.320147022604942,0.360509097576141,1.42194253206253,0.109611123800278,0.489457160234451,1.23811605572701,0.233809232711792,0.472425654530525,1.02153551578522,-0.151256382465363,0.407955118470454,-0.0117079615592957,-0.342037543654442,0.699225395917892,0.637722656130791,-0.0622779428958893,0.677316710352898,-0.267066299915314,-0.83336977660656,0.512101694941521,-0.0845235586166382,-0.460785139352083,0.703427374362946,-0.382542371749878,-0.695294097065926,0.772813647985458,-0.0453776717185974,-0.554932102560997,1.13464748859406,-0.601798564195633,-0.785200163722038,0.925994753837585,-1.40034955739975,-0.595726564526558, +0.967309832572937,-1.55423080921173,-0.4533979780972,0.296293342020363,-1.57731026411057,-0.444513112306595,0.337003855034709,-1.70815062522888,0.00911271572113037,0.690139889717102,-0.418023526668549,-0.0815308094024658,0.407967158990232,-1.80056363344193,-0.346112236380577,-0.0958046112209558,-1.77610123157501,0.00492572784423828,0.0271107233129442,-0.775395944714546,0.263215482234955,0.0828113588504493,-0.982445314526558,0.541710197925568,-0.0918744970113039,-1.54516845941544,-0.291745454072952,-0.477059122174978,-1.78452813625336,-0.319684728980064,-1.21681612730026,-0.216684013605118,-0.039117157459259,-0.722450854256749,-0.597852677106857,-0.188631504774094,-0.643091565463692,-1.56932526826859,-0.187400043010712,-0.75014665722847,-0.506005764007568,-0.775825688615441,-0.815786004066467,-0.137024700641632,-0.404699698090553,-0.433854254772427,-1.06840753555298,-0.855553820729256,-0.241924539208412,-1.10455398261547,-0.955979833379388,-0.361905112862587,-1.54678958654404,-0.883621826767921,-0.282006129622459,-1.0210025459528,-1.0072621293366,-0.982628099620342,-0.396797046065331,-0.579309940338135,-0.734690487384796,-1.50962775945663,-0.597722366452217,-0.896080493927002,-1.03759111464024,-0.95006026700139,-1.08367097377777,-1.53171616792679,0.419860582798719,-1.08210039138794,-1.16564193367958,0.578594848513603,-1.23884874582291,-1.11435210704803,0.336988925933838,-1.20173323154449,-1.34098309278488,-0.81265515089035,-1.36571007966995,-0.562139883637428,1.29199868440628,-1.12510120868683,-1.0999319255352,0.702554386109114,-1.31339865922928,-1.38613653182983,0.0609715282917023,-1.47894859313965,-0.882212817668915,0.828701347112656,-1.50122034549713,-0.777741245925426,-0.815138280391693,-1.47673219442368,-0.941686704754829,-0.649133339524269,-1.2786573767662,-0.666934594511986,-1.03918531537056,-1.30494368076324,-0.604939050972462,-1.10491979122162,-1.33306074142456,-1.03638942539692,-0.766406163573265,-1.38173776865005,-1.03450612723827,-0.742913752794266,-1.31385987997055,-0.689917296171188,-0.708672896027565, +-1.27684110403061,-0.739897057414055,-0.843826532363892,-1.10947728157043,-0.729139432311058,-1.09945392608643,-1.16613912582397,0.696229487657547,-1.25936925411224,-0.883802756667137,0.517744228243828,-1.2869921028614,-0.811212092638016,1.45139074325562,-0.921561628580093,-0.818036437034607,1.15453934669495,-1.27227091789246,-0.970841273665428,1.07048558443785,-0.716168381273746,-0.974647372961044,1.03943075239658,-0.876311033964157,-0.785056948661804,1.49995911121368,-0.669478207826614,-0.757135808467865,1.50638610124588,-0.631551556289196,-0.972421377897263,1.62340569496155,-0.237842835485935,-0.329245883971453,1.94907879829407,-0.144248507916927,-0.476024217903614,1.79611504077911,-0.287537679076195,-0.894153356552124,1.2513210773468,-0.576339647173882,-1.38654756546021,0.75284469127655,-1.15905648469925,-0.544864811003208,1.76900517940521,-0.3733428157866,-0.688544929027557,-0.0469381809234619,-1.29204720258713,-0.576969921588898,0.507161766290665,-0.988381057977676,0.69165825098753,0.086906373500824,-1.22139638662338,0.188148766756058,0.589339956641197,0.162439048290253,0.187553368508816,0.736048445105553,0.532366424798965,0.391488492488861,0.856711447238922,0.951824030373245,0.988034427165985,1.28782999515533,-0.550485536456108,0.762719742953777,0.578320205211639,-0.915151327848434,0.562068771570921,1.73156636953354,0.268702730536461,0.72830867767334,1.63896572589874,-0.0935292840003967,0.702015936374664,1.80767631530762,0.0716424942947924,0.596256361993776,1.76123237609863,0.274059353396297,0.344773926102201,1.88572579622269,-0.345780411735177,0.451372109353542,1.51646673679352,-0.826751582324505,0.36664542555809,1.87954121828079,-0.476456828415394,0.289740719162504,1.90432423353195,-0.338270695880055,0.346520926630525,1.52660465240479,-1.09691393375397,0.319237407124071,1.5642004609108,-1.01444259285927,0.41099131878523,1.38176834583282,-1.12157642841339,0.307928837835789,1.68537753820419,-0.891782283782959,0.404866654425859,0.457082390785217,-1.67734181880951,0.0579869414499203,-0.0389365553855896,-0.474326804280281, +0.0432001032855371,0.107020258903503,-0.428724469617009,-0.066577073186636,-0.00335341691970825,-0.0816140994429588,-0.00255384296178818,-0.0614949464797974,-0.461074367165565,-0.0253404155373573,-0.00860351324081421,-0.698123902082443,-0.0715515129268169,0.00242060422897339,-0.138284966349602,0.0839811824262142,0.0918930172920227,-0.479018729180098,0.0923748388886452,0.0320450067520142,-0.913028031587601,0.150744948536158,-0.39550518989563,-0.73113601654768,0.0642054490745068,-0.338068187236786,-1.0037958920002,0.043464720249176,0.328452885150909,0.43130499124527,0.0921502858400345,2.09808349609375e-05,4.46140766143799e-05,0.23088277131319,0.599731177091599,0.509171843528748,0.474539916962385,0.346398293972015,-0.675759237259626,1.12679666280746,-0.00705885887145996,-0.884495139122009,0.98780357837677,-0.147628366947174,-1.24374943971634,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156, +-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194, +1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715, +1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313, +0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217, +0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612, +0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981, +-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727, +-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284, +-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894, +-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186, +0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692, +-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943, +-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961, +-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232, +-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006, +-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167, +-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762, +0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532, +0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127, +0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114, +-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084, +-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146, +-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896, +0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445, +-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147, +-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068, +-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284, +-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004, +-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468, +-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305, +0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755, +-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633, +-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676, +-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546, +-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952, +-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239, +-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022, +0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618, +-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699, +-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399, +-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126, +0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522, +-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864, +-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498, +-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885, +-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959, +-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, +-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646, +-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465, +-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338, +0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533, +-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518, +-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037, +-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367, +-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105, +-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338, +-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593, +0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549, +0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146, +0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797, +-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809, +-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853, +-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836, +1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017, +0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293, +0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578, +-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408, +-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153, +-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908, +-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211, +-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163, +0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531, +-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041, +-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715, +0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714, +0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673, +-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024, +0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437, +-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443, +-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155, +-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036, +0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019, +-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159, +0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048, +-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721, +0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767, +-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871, +-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785, +0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454, +0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581, +0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148, +0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732, +0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323, +1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619, +-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641, +-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315, +-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213, +-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522, +-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043,0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664, +-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683, +-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989, +0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197, +-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522, +0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174, +0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189, +-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.936012446880341,0.940078016370535, +0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965, +0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257, +-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427, +0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759, +-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281, +-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435, +-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527, +-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817, +-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179, +-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062, +0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564, +0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438, +-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577, +-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337, +0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596, +-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578, +0.847917661070824,-1.04395531117916,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593, +-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596, +0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683, +0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305, +-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308, +-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374, +1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 + } + } + Geometry: 2807563817056, "Geometry::Jaw_Forward", "Shape" { + Version: 100 + Indexes: *4134 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, +3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, +3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, +4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, +4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, +5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, +5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, +5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5901,5902,5903,5904,5908,5917,5918,5939,5941,5943,5945,5947,5949,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6238,6269,6286,6288,6289,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6610,6611,6612,6613,6614,6615,6626,6627,6628,6629,6630,6631,6632,6643,6644,6645,6646,6647,6648,6649,6678,6679,6680,6681,6682,6683,6684,6685,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6727,6728,6735,6736,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6749,6754,6755,6756,6763,6764,6765,6766,6767,6770,6772,6773,6774,6775,6776,6777,6836,6837,6844, +6845,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7620,7651,7668,7670,7671,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738, +7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7992,7993,7994,7995,7996,7997,8008,8009,8010,8011,8012,8013,8014,8025,8026,8027,8028,8029,8030,8031,8060,8061,8062,8063,8064,8065,8066,8067,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8109,8110,8117,8118,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8131,8136,8137,8138,8145,8146,8147,8148,8149,8152,8154,8155,8156,8157,8158,8159,8218,8219,8226,8227,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 + } + Vertices: *12402 { + a: 0,-0.0001373291015625,1.24893546104431,0,-0.000103950500488281,1.24893879890442,0,-0.0001373291015625,1.24893546104431,0,-0.00016021728515625,1.24893760681152,0,-0.000192642211914063,1.24893188476563,0,-0.00016021728515625,1.24893760681152,0,-0.000136375427246094,1.24894094467163,0,-0.000104427337646484,1.24894642829895,0,-0.000136375427246094,1.24894094467163,0,-0.00016021728515625,1.248948097229,0,-0.000192165374755859,1.24894332885742,0,-0.00016021728515625,1.24894905090332,0,-0.000136375427246094,1.24895572662354,0,-0.000120639801025391,1.2489767074585,0,-0.000136375427246094,1.24895572662354,0,-0.000200748443603516,1.24894523620605,0,-0.000151634216308594,1.24896144866943,0,-0.000152587890625,1.24898338317871,0,-0.000151634216308594,1.24896144866943,0,-0.000200748443603516,1.24894571304321,0,-0.000184535980224609,1.24895858764648,0,-0.000184059143066406,1.24897575378418,0,-0.000184535980224609,1.24895858764648,0,-0.000224590301513672,1.24894618988037,0,-0.000217437744140625,1.24895143508911,0,-0.000216960906982422,1.24896335601807,0,-0.000217437744140625,1.24895143508911,0,-0.000256061553955078,1.24894618988037,0,-0.000257015228271484,1.24894905090332,0,-0.000257015228271484,1.24896049499512,0,-0.000257015228271484,1.24894905090332,0,-0.000273227691650391,1.24894905090332,0,-0.000272274017333984,1.2489538192749,0,-0.000273227691650391,1.24896049499512,0,-0.000272274017333984,1.2489538192749,0,-0.000288486480712891,1.24895191192627,0,-0.000280857086181641,1.24895477294922,0,-0.000289440155029297,1.24895668029785,0,-0.000280857086181641,1.24895477294922,0,-0.000168323516845703,1.24893426895142,0,-0.000168323516845703,1.24894237518311,0,-0.0001678466796875,1.24893522262573,0,-0.0001678466796875,1.24894237518311,0,-0.000193119049072266,1.24893856048584,0,-0.000184059143066406,1.2489333152771,0,-0.000152111053466797,1.248939037323,0,-0.000136852264404297,1.24893665313721,0,-0.000128746032714844,1.24894237518311,0,-0.000128746032714844,1.24893689155579,0,-0.000128269195556641,1.24893808364868,0, +-0.000112056732177734,1.24894571304321,0,-0.000111579895019531,1.24893808364868,0,-0.000112056732177734,1.24893927574158,0,-0.000104427337646484,1.24894618988037,0,-0.000103950500488281,1.24893951416016,0,-0.000104427337646484,1.24893832206726,0,-0.000103473663330078,1.24893951416016,0,-0.000104427337646484,1.24894618988037,0,-0.000104427337646484,1.24893832206726,0,-0.000103473663330078,1.24893951416016,0,-0.000104427337646484,1.24894618988037,0,-0.000104427337646484,1.24893760681152,0,-0.000104427337646484,1.24893951416016,0,-0.000128746032714844,1.24894237518311,0,-0.000136852264404297,1.24893665313721,0,-0.000128746032714844,1.24893689155579,0,-0.000128269195556641,1.24893808364868,0,-0.00014495849609375,1.24894046783447,0,-0.0001678466796875,1.24893951416016,0,-0.000184535980224609,1.24894094467163,0,-0.000192165374755859,1.24893617630005,0,-0.000183582305908203,1.24893760681152,0,-0.000168800354003906,1.24893856048584,0,-0.00016021728515625,1.24894285202026,0,-0.000152587890625,1.24894952774048,0,-0.000152111053466797,1.2489447593689,0,-0.000136375427246094,1.248948097229,0,-0.000128746032714844,1.24896240234375,0,-0.000128269195556641,1.24895238876343,0,-0.000120639801025391,1.24897384643555,0,-0.000112056732177734,1.24895906448364,0,-0.000120639801025391,1.2489767074585,0,-0.000112533569335938,1.24896216392517,0,-0.000112056732177734,1.24896121025085,0,-0.000120639801025391,1.2489767074585,0,-0.000112056732177734,1.24896121025085,0,-0.000120639801025391,1.24897575378418,0,-0.000112056732177734,1.24896121025085,0,-0.000128746032714844,1.24896240234375,0,-0.000136375427246094,1.248948097229,0,-0.000128269195556641,1.24895238876343,0,-0.000144481658935547,1.24895238876343,0,-0.00014495849609375,1.24894666671753,0,-0.000184535980224609,1.24894666671753,0,-0.000192642211914063,1.24894380569458,0,-0.000184535980224609,1.2489447593689,0,-0.000184535980224609,1.24894618988037,0,-0.000184535980224609,1.24894666671753,0,-0.000184535980224609,1.2489447593689,0,-0.000184535980224609,1.24894618988037,0,-0.00016021728515625, +1.24895095825195,0,-0.000152111053466797,1.24895191192627,0,-0.00014495849609375,1.24896001815796,0,-0.000151634216308594,1.2489709854126,0,-0.000136852264404297,1.24896931648254,0,-0.000152587890625,1.24898529052734,0,-0.000136375427246094,1.24898266792297,0,-0.000152587890625,1.24898481369019,0,-0.000136375427246094,1.24898290634155,0,-0.000136375427246094,1.24898362159729,0,-0.000152587890625,1.24898481369019,0,-0.000136375427246094,1.24898362159729,0,-0.000152587890625,1.24898672103882,0,-0.000136375427246094,1.24898505210876,0,-0.000151634216308594,1.2489709854126,0,-0.00014495849609375,1.24896001815796,0,-0.000136852264404297,1.24896931648254,0,-0.000152587890625,1.24895668029785,0,-0.00014495849609375,1.24895572662354,0,-0.000200748443603516,1.24894666671753,0,-0.000200748443603516,1.24894618988037,0,-0.000192165374755859,1.24894666671753,0,-0.000200748443603516,1.24894666671753,0,-0.000192165374755859,1.24894666671753,0,-0.000184535980224609,1.24894857406616,0,-0.0001678466796875,1.24895048141479,0,-0.000168800354003906,1.24896097183228,0,-0.000184535980224609,1.2489652633667,0,-0.0001678466796875,1.24897003173828,0,-0.000184535980224609,1.24897813796997,0,-0.0001678466796875,1.24898242950439,0,-0.000184535980224609,1.24897813796997,0,-0.000168323516845703,1.2489800453186,0,-0.0001678466796875,1.24898338317871,0,-0.000184535980224609,1.24897813796997,0,-0.0001678466796875,1.24898338317871,0,-0.000184059143066406,1.24898099899292,0,-0.000168323516845703,1.24898672103882,0,-0.000184535980224609,1.2489652633667,0,-0.000168800354003906,1.24896097183228,0,-0.0001678466796875,1.24897003173828,0,-0.000184535980224609,1.2489538192749,0,-0.0001678466796875,1.24895524978638,0,-0.000216960906982422,1.24894714355469,0,-0.000208377838134766,1.24894666671753,0,-0.000208854675292969,1.24894666671753,0,-0.000216960906982422,1.24894714355469,0,-0.000208854675292969,1.24894666671753,0,-0.000216960906982422,1.24895048141479,0,-0.000200748443603516,1.24894905090332,0,-0.000200748443603516,1.24895429611206,0,-0.000216960906982422, +1.24895715713501,0,-0.000200748443603516,1.24896097183228,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.2489709854126,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.24897003173828,0,-0.000200748443603516,1.2489709854126,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.2489709854126,0,-0.000225067138671875,1.24896574020386,0,-0.000200748443603516,1.24897384643555,0,-0.000216960906982422,1.24895668029785,0,-0.000200748443603516,1.24895429611206,0,-0.000200748443603516,1.24896097183228,0,-0.000217437744140625,1.24895048141479,0,-0.000200748443603516,1.24895191192627,0,-0.000256538391113281,1.24894905090332,0,-0.000240325927734375,1.24894571304321,0,-0.000240325927734375,1.24894762039185,0,-0.000256538391113281,1.24894905090332,0,-0.000240325927734375,1.248948097229,0,-0.000256061553955078,1.24895095825195,0,-0.000240325927734375,1.24895000457764,0,-0.000240325927734375,1.24895000457764,0,-0.000256061553955078,1.2489538192749,0,-0.000240325927734375,1.24895572662354,0,-0.000256061553955078,1.24896240234375,0,-0.000240325927734375,1.24896240234375,0,-0.000257015228271484,1.24896049499512,0,-0.000240325927734375,1.24896001815796,0,-0.000240325927734375,1.24896192550659,0,-0.000257015228271484,1.24896049499512,0,-0.000240325927734375,1.24896192550659,0,-0.000256538391113281,1.24896335601807,0,-0.000240325927734375,1.24896478652954,0,-0.000256061553955078,1.2489538192749,0,-0.000240325927734375,1.24895000457764,0,-0.000240325927734375,1.24895572662354,0,-0.000257015228271484,1.248948097229,0,-0.000240325927734375,1.24894857406616,0,-0.000272274017333984,1.24895095825195,0,-0.000263690948486328,1.248948097229,0,-0.000264644622802734,1.24894905090332,0,-0.000272274017333984,1.24895095825195,0,-0.000264644622802734,1.24894905090332,0,-0.000273227691650391,1.24895286560059,0,-0.000264644622802734,1.24895095825195,0,-0.000264644622802734,1.24895286560059,0,-0.000272750854492188,1.24895477294922,0,-0.000263690948486328,1.24895477294922,0,-0.000272750854492188,1.24896144866943, +0,-0.000264644622802734,1.24896240234375,0,-0.000272750854492188,1.24896144866943,0,-0.000264644622802734,1.24896049499512,0,-0.000264644622802734,1.24896049499512,0,-0.000272750854492188,1.24896144866943,0,-0.000264644622802734,1.24896049499512,0,-0.000272750854492188,1.24896240234375,0,-0.000264644622802734,1.24896240234375,0,-0.000272750854492188,1.24895477294922,0,-0.000264644622802734,1.24895286560059,0,-0.000263690948486328,1.24895477294922,0,-0.000272750854492188,1.24895286560059,0,-0.000264644622802734,1.24895000457764,0,-0.000288486480712891,1.24895191192627,0,-0.000280857086181641,1.24895000457764,0,-0.000280857086181641,1.24895286560059,0,-0.000288486480712891,1.24895191192627,0,-0.000280857086181641,1.24895286560059,0,-0.000280857086181641,1.24895191192627,0,-0.000280857086181641,1.24895095825195,0,-0.000272750854492188,1.24895572662354,0,-0.000280857086181641,1.24895668029785,0,-0.000273227691650391,1.24895763397217,0,-0.000280857086181641,1.2489595413208,0,-0.000272274017333984,1.2489595413208,0,-0.000288486480712891,1.24895668029785,0,-0.000280857086181641,1.24895763397217,0,-0.000280857086181641,1.24895763397217,0,-0.000288486480712891,1.24895668029785,0,-0.000280857086181641,1.24895763397217,0,-0.000280857086181641,1.2489595413208,0,-0.000280857086181641,1.2489595413208,0,-0.000280857086181641,1.24895668029785,0,-0.000272750854492188,1.24895572662354,0,-0.000273227691650391,1.24895763397217,0,-0.000280857086181641,1.24895477294922,0,-0.000272750854492188,1.2489538192749,0,-0.000288963317871094,1.2489538192749,0,-0.000288963317871094,1.2489538192749,0,-0.000280857086181641,1.2489595413208,0,-0.000288486480712891,1.24895572662354,0,-0.000288963317871094,1.2489538192749,0,-0.000280857086181641,1.2489595413208,0,-0.000280857086181641,1.24895668029785,0,-0.000111579895019531,1.24893808364868,0,-0.000112056732177734,1.24894571304321,0,-0.000112056732177734,1.24893927574158,0,-0.000152111053466797,1.24893856048584,0,-0.000120639801025391,1.24897384643555,0,-0.000112056732177734,1.24895906448364,0,-0.000152587890625, +1.24898529052734,0,-0.000136375427246094,1.24898266792297,0,-0.000184535980224609,1.24897813796997,0,-0.0001678466796875,1.24898242950439,0,-0.000216484069824219,1.24896430969238,0,-0.000200748443603516,1.2489709854126,0,-0.000256061553955078,1.24896240234375,0,-0.000240325927734375,1.24896240234375,0,-0.000272750854492188,1.24896144866943,0,-0.000264644622802734,1.24896240234375,0,-0.000272274017333984,1.2489595413208,0,-0.000280857086181641,1.24895191192627,0,-0.000288486480712891,1.24895572662354,0,-0.000273227691650391,1.24895286560059,0,-0.000280857086181641,1.24895095825195,0,-0.000256061553955078,1.24895095825195,0,-0.000264644622802734,1.24895095825195,0,-0.000216960906982422,1.24895048141479,0,-0.000240325927734375,1.24895048141479,0,-0.000184535980224609,1.24894857406616,0,-0.000200748443603516,1.24894905090332,0,-0.00016021728515625,1.24895095825195,0,-0.0001678466796875,1.24895048141479,0,-0.000152587890625,1.24894952774048,0,-0.000152111053466797,1.24895191192627,0,-0.00016021728515625,1.24894285202026,0,-0.000152111053466797,1.2489447593689,0,-0.00014495849609375,1.24894046783447,0,-0.000104427337646484,1.24893760681152,0,-0.000104427337646484,1.24894618988037,0,-0.000104427337646484,1.24893951416016,0,-0.000144481658935547,1.24895238876343,0,-0.00014495849609375,1.24894666671753,0,-0.000152587890625,1.24895668029785,0,-0.00014495849609375,1.24895572662354,0,-0.000184535980224609,1.2489538192749,0,-0.0001678466796875,1.24895524978638,0,-0.000217437744140625,1.24895048141479,0,-0.000200748443603516,1.24895191192627,0,-0.000257015228271484,1.248948097229,0,-0.000240325927734375,1.24894762039185,0,-0.000272750854492188,1.24895286560059,0,-0.000264644622802734,1.24895000457764,0,-0.000280857086181641,1.24895477294922,0,-0.000272750854492188,1.2489538192749,0,-0.000280857086181641,1.24895668029785,0,-0.000272750854492188,1.24896240234375,0,-0.000280857086181641,1.2489595413208,0,-0.000256538391113281,1.24896335601807,0,-0.000264644622802734,1.24896240234375,0,-0.000225067138671875,1.24896621704102,0,-0.000240325927734375, +1.2489652633667,0,-0.000184059143066406,1.24898099899292,0,-0.000200748443603516,1.24897384643555,0,-0.000152587890625,1.24898672103882,0,-0.000168323516845703,1.24898672103882,0,-0.000120639801025391,1.24897575378418,0,-0.000136375427246094,1.24898505210876,0,-0.000112056732177734,1.24896121025085,0,-0.000184535980224609,1.24893283843994,0,-0.000184059143066406,1.24893999099731,0,-0.000184535980224609,1.24893665313721,0,-0.000123500823974609,1.24391460418701,0,-0.000123500823974609,1.24391460418701,0,-0.000144481658935547,1.24391651153564,0,-0.000173568725585938,1.24391174316406,0,-0.000144481658935547,1.24391651153564,0,-0.000122547149658203,1.24392032623291,0,-0.000122547149658203,1.24392032623291,0,-0.000151634216308594,1.2439136505127,0,-0.000151157379150391,1.24391508102417,0,-0.000166416168212891,1.24391317367554,0,-0.0001373291015625,1.24391841888428,0,-0.000123500823974609,1.24391603469849,0,-0.000123500823974609,1.24391603469849,0,-0.000130176544189453,1.24391937255859,0,-0.0001373291015625,1.24391841888428,0,-0.000130176544189453,1.24391937255859,0,-0.000166893005371094,1.24391269683838,-3.30209732055664e-05,-0.000151157379150391,1.24391317367554,0,-0.000188350677490234,1.24390268325806,3.37362289428711e-05,-0.000151157379150391,1.2439136505127,0,-0.000273704528808594,1.24393939971924,2.84910202026367e-05,-0.000260829925537109,1.24393844604492,3.89814376831055e-05,-0.000231266021728516,1.24394130706787,5.36441802978516e-05,-0.000188827514648438,1.24394512176514,5.36441802978516e-05,-0.000166893005371094,1.24394941329956,0,-0.000267982482910156,1.24390602111816,2.70605087280273e-05,-0.000252723693847656,1.24390602111816,3.94582748413086e-05,-0.000230789184570313,1.24390888214111,5.45978546142578e-05,-0.000187873840332031,1.24391317367554,5.65052032470703e-05,-0.00016021728515625,1.24391746520996,1.56164169311523e-05,-0.000260829925537109,1.24392032623291,1.56164169311523e-05,-0.000267505645751953,1.24394035339355,2.5629997253418e-05,-0.000252723693847656,1.24391841888428,1.65104866027832e-05,-0.000260353088378906, +1.24390506744385,0,-0.00026702880859375,1.24391841888428,3.27825546264648e-05,-0.000245571136474609,1.24392127990723,3.65972518920898e-05,-0.000246047973632813,1.24393939971924,3.80277633666992e-05,-0.000230789184570313,1.24392414093018,3.3259391784668e-05,-0.000238418579101563,1.24390602111816,4.55379486083984e-05,-0.000209331512451172,1.24392318725586,4.55379486083984e-05,-0.000209331512451172,1.2439432144165,5.12599945068359e-05,-0.000188350677490234,1.24392795562744,4.64916229248047e-05,-0.000209808349609375,1.24390935897827,5.41210174560547e-05,-0.000173568725585938,1.24392366409302,5.65052032470703e-05,-0.000173568725585938,1.24394798278809,5.50746917724609e-05,-0.000158786773681641,1.24392986297607,5.50746917724609e-05,-0.000173568725585938,1.2439136505127,1.13248825073242e-05,-0.000267505645751953,1.24392414093018,0,-0.000266551971435547,1.24392414093018,1.22189521789551e-05,-0.000274658203125,1.24394035339355,1.60336494445801e-05,-0.000260829925537109,1.24392414093018,8.9108943939209e-06,-0.000260353088378906,1.2439136505127,3.42130661010742e-05,-0.000253200531005859,1.24392414093018,2.75373458862305e-05,-0.000252723693847656,1.24392414093018,3.75509262084961e-05,-0.000253200531005859,1.24394035339355,3.46899032592773e-05,-0.000245571136474609,1.24392700195313,2.9444694519043e-05,-0.000246047973632813,1.24391555786133,4.45842742919922e-05,-0.000224590301513672,1.24392890930176,3.89814376831055e-05,-0.000230789184570313,1.24392795562744,4.31537628173828e-05,-0.000223636627197266,1.2439432144165,4.69684600830078e-05,-0.000209808349609375,1.24393177032471,4.17232513427734e-05,-0.000224590301513672,1.24392032623291,5.69820404052734e-05,-0.000181198120117188,1.24393558502197,5.41210174560547e-05,-0.000188350677490234,1.24393367767334,5.69820404052734e-05,-0.000187873840332031,1.24394702911377,5.79357147216797e-05,-0.000173568725585938,1.24393653869629,5.36441802978516e-05,-0.000181674957275391,1.24392318725586,2.37226486206055e-05,-0.000260829925537109,1.24392318725586,2.41994857788086e-05,-0.00026702880859375, +1.24394035339355,2.1815299987793e-05,-0.000253200531005859,1.2439136505127,2.08616256713867e-05,-0.000253200531005859,1.24391078948975,2.5629997253418e-05,-0.000253200531005859,1.24391269683838,2.22921371459961e-05,-0.000252723693847656,1.24390697479248,1.51395797729492e-05,-0.000260353088378906,1.24390888214111,8.43405723571777e-06,-0.000260829925537109,1.24390888214111,8.43405723571777e-06,-0.000260353088378906,1.24390602111816,0,-0.00026702880859375,1.2439079284668,3.85046005249023e-05,-0.000237941741943359,1.24392604827881,3.94582748413086e-05,-0.000238418579101563,1.24394226074219,3.46899032592773e-05,-0.000238418579101563,1.24391651153564,3.51667404174805e-05,-0.000231266021728516,1.24391078948975,3.85046005249023e-05,-0.000230789184570313,1.2439136505127,3.56435775756836e-05,-0.000239372253417969,1.24390888214111,3.23057174682617e-05,-0.000238895416259766,1.24391174316406,2.99215316772461e-05,-0.000246047973632813,1.24391269683838,3.08752059936523e-05,-0.000246047973632813,1.2439079284668,5.17368316650391e-05,-0.000202655792236328,1.24393177032471,5.03063201904297e-05,-0.000202178955078125,1.24394512176514,4.83989715576172e-05,-0.000202655792236328,1.24391841888428,4.83989715576172e-05,-0.000202178955078125,1.2439136505127,5.31673431396484e-05,-0.000188827514648438,1.24391746520996,5.03063201904297e-05,-0.000202178955078125,1.24391078948975,4.55379486083984e-05,-0.000209808349609375,1.2439136505127,4.17232513427734e-05,-0.000224113464355469,1.2439136505127,4.26769256591797e-05,-0.000224113464355469,1.24391078948975,5.79357147216797e-05,-0.000166416168212891,1.24393606185913,5.74588775634766e-05,-0.000166416168212891,1.24394798278809,5.50746917724609e-05,-0.000159740447998047,1.24393463134766,5.45978546142578e-05,-0.000166893005371094,1.24392604827881,5.45978546142578e-05,-0.000165939331054688,1.24391746520996,5.50746917724609e-05,-0.000159263610839844,1.24392080307007,5.55515289306641e-05,-0.000164985656738281,1.24391412734985,5.45978546142578e-05,-0.000173568725585938,1.24391841888428,5.36441802978516e-05, +-0.000180721282958984,1.24391746520996,5.45978546142578e-05,-0.000181198120117188,1.2439136505127,5.0961971282959e-06,-0.00026702880859375,1.24392318725586,5.0961971282959e-06,-0.000274658203125,1.24393939971924,4.61935997009277e-06,-0.000260353088378906,1.2439079284668,5.0961971282959e-06,-0.00026702880859375,1.24390602111816,4.61935997009277e-06,-0.000267982482910156,1.2439136505127,1.18017196655273e-05,-0.000260353088378906,1.2439079284668,1.27553939819336e-05,-0.000260353088378906,1.24390602111816,1.56164169311523e-05,-0.00026702880859375,1.24392509460449,1.5556812286377e-05,-0.00026702880859375,1.24393939971924,1.26957893371582e-05,-0.000259876251220703,1.24391460418701,1.88946723937988e-05,-0.000260829925537109,1.24392604827881,1.88946723937988e-05,-0.000267505645751953,1.24393939971924,1.8000602722168e-05,-0.000260829925537109,1.24390888214111,1.94311141967773e-05,-0.000260353088378906,1.24390602111816,1.84178352355957e-05,-0.000259876251220703,1.24391651153564,2.32458114624023e-05,-0.000253200531005859,1.24391078948975,2.46763229370117e-05,-0.000252723693847656,1.2439079284668,2.70605087280273e-05,-0.000260829925537109,1.24392509460449,2.84910202026367e-05,-0.000260353088378906,1.24394035339355,2.46763229370117e-05,-0.000253200531005859,1.24391746520996,3.08752059936523e-05,-0.000252723693847656,1.24392414093018,3.3259391784668e-05,-0.000260353088378906,1.24394035339355,2.80141830444336e-05,-0.000245571136474609,1.24391078948975,2.89678573608398e-05,-0.000253677368164063,1.24390506744385,2.70605087280273e-05,-0.000253200531005859,1.24391746520996,3.13520431518555e-05,-0.000245571136474609,1.24390983581543,3.23057174682617e-05,-0.000246047973632813,1.2439079284668,3.51667404174805e-05,-0.000245571136474609,1.24392509460449,3.80277633666992e-05,-0.000253677368164063,1.24394035339355,3.18288803100586e-05,-0.000245571136474609,1.24391937255859,3.7074089050293e-05,-0.000246047973632813,1.24392700195313,3.94582748413086e-05,-0.000245571136474609,1.24394035339355,3.3259391784668e-05,-0.000238895416259766,1.24391078948975, +3.42130661010742e-05,-0.000239372253417969,1.2439079284668,3.3259391784668e-05,-0.000237941741943359,1.24391841888428,3.7074089050293e-05,-0.000231266021728516,1.24391269683838,3.75509262084961e-05,-0.000230789184570313,1.2439079284668,3.94582748413086e-05,-0.000230312347412109,1.24392890930176,3.98159027099609e-05,-0.000238895416259766,1.24394226074219,3.7074089050293e-05,-0.000230789184570313,1.24391937255859,4.17232513427734e-05,-0.000231266021728516,1.24392890930176,4.12464141845703e-05,-0.000231266021728516,1.24394416809082,4.02927398681641e-05,-0.000224113464355469,1.24391269683838,4.07695770263672e-05,-0.000223159790039063,1.2439079284668,3.93390655517578e-05,-0.000223159790039063,1.24392032623291,4.41074371337891e-05,-0.000216960906982422,1.2439136505127,4.45842742919922e-05,-0.000216484069824219,1.24390840530396,4.74452972412109e-05,-0.000216960906982422,1.24392986297607,4.55379486083984e-05,-0.000216484069824219,1.24394416809082,4.55379486083984e-05,-0.000216484069824219,1.24392127990723,4.93526458740234e-05,-0.000209331512451172,1.24393177032471,4.83989715576172e-05,-0.000209808349609375,1.24394416809082,4.74452972412109e-05,-0.000209808349609375,1.2439136505127,4.83989715576172e-05,-0.000209808349609375,1.24391031265259,4.64916229248047e-05,-0.000209331512451172,1.24392032623291,5.12599945068359e-05,-0.000195503234863281,1.24391555786133,5.22136688232422e-05,-0.000194549560546875,1.2439112663269,5.36441802978516e-05,-0.000194549560546875,1.24393177032471,5.26905059814453e-05,-0.000194549560546875,1.24394702911377,5.03063201904297e-05,-0.000194549560546875,1.24392223358154,5.0961971282959e-06,-0.000274658203125,1.24393463134766,0,-0.000274658203125,1.24393367767334,5.84125518798828e-05,-0.000166416168212891,1.24394512176514,5.50746917724609e-05,-0.000165939331054688,1.24394416809082,1.60336494445801e-05,-0.000267505645751953,1.24393463134766,1.9371509552002e-05,-0.000266551971435547,1.24393367767334,2.46763229370117e-05,-0.000267505645751953,1.24393463134766,2.84910202026367e-05,-0.000259876251220703,1.24393558502197, +1.60932540893555e-05,-0.000267505645751953,1.24393463134766,2.84910202026367e-05,-0.000260353088378906,1.24393653869629,1.22785568237305e-05,-0.000274181365966797,1.24393463134766,3.27825546264648e-05,-0.000260829925537109,1.24393653869629,3.7074089050293e-05,-0.000253200531005859,1.24393463134766,3.75509262084961e-05,-0.000252723693847656,1.24393558502197,3.65972518920898e-05,-0.000246047973632813,1.24393653869629,3.85046005249023e-05,-0.000245571136474609,1.24393653869629,3.93390655517578e-05,-0.000238895416259766,1.24393844604492,3.98159027099609e-05,-0.000238418579101563,1.24393749237061,3.89814376831055e-05,-0.000230312347412109,1.24393844604492,4.17232513427734e-05,-0.000230312347412109,1.24393939971924,4.45842742919922e-05,-0.000223159790039063,1.24393939971924,4.69684600830078e-05,-0.000216960906982422,1.24394035339355,4.60147857666016e-05,-0.000209331512451172,1.24393939971924,4.98294830322266e-05,-0.000209331512451172,1.24393939971924,5.17368316650391e-05,-0.000202655792236328,1.24394130706787,5.45978546142578e-05,-0.000195503234863281,1.24394130706787,5.36441802978516e-05,-0.000187873840332031,1.2439432144165,5.74588775634766e-05,-0.000188350677490234,1.24394416809082,5.79357147216797e-05,-0.000174045562744141,1.24394416809082,0,-0.000274658203125,1.24393939971924,2.61068344116211e-05,-0.000260353088378906,1.24393939971924,3.7074089050293e-05,-0.000230789184570313,1.24394035339355,4.83989715576172e-05,-0.000188350677490234,1.24394607543945,5.03063201904297e-05,-0.000165939331054688,1.24394941329956,0,-0.000252723693847656,1.24390316009521,0,-0.000230789184570313,1.24389743804932,1.50799751281738e-05,-0.000260829925537109,1.24392127990723,1.51395797729492e-05,-0.00026702880859375,1.24394035339355,2.41994857788086e-05,-0.000252723693847656,1.24391841888428,0,-0.000252723693847656,1.24390506744385,0,-0.000267505645751953,1.24391746520996,3.03983688354492e-05,-0.000245571136474609,1.24391937255859,3.42130661010742e-05,-0.000246047973632813,1.24394035339355,3.56435775756836e-05,-0.000230312347412109,1.24392509460449, +0,-0.000245571136474609,1.24389934539795,4.02927398681641e-05,-0.000209331512451172,1.24392414093018,4.12464141845703e-05,-0.000209808349609375,1.2439432144165,4.74452972412109e-05,-0.000188350677490234,1.24392509460449,4.79221343994141e-05,-0.000174045562744141,1.24392318725586,4.83989715576172e-05,-0.000173568725585938,1.24394798278809,4.88758087158203e-05,-0.000158786773681641,1.2439284324646,8.43405723571777e-06,-0.000267505645751953,1.24392414093018,0,-0.000267505645751953,1.24392604827881,8.9108943939209e-06,-0.000267505645751953,1.24393939971924,1.56164169311523e-05,-0.000260353088378906,1.24392509460449,7.48038291931152e-06,-0.000260353088378906,1.2439136505127,2.75373458862305e-05,-0.000245571136474609,1.24392700195313,2.51531600952148e-05,-0.000253200531005859,1.24392509460449,3.13520431518555e-05,-0.000252723693847656,1.24394226074219,3.13520431518555e-05,-0.000246524810791016,1.24392795562744,2.5629997253418e-05,-0.000246047973632813,1.24391651153564,3.46899032592773e-05,-0.000224113464355469,1.24393081665039,3.61204147338867e-05,-0.000231266021728516,1.24392700195313,3.56435775756836e-05,-0.000224113464355469,1.2439432144165,3.89814376831055e-05,-0.000209808349609375,1.24392890930176,3.65972518920898e-05,-0.000224113464355469,1.24391841888428,4.60147857666016e-05,-0.000181198120117188,1.24393653869629,4.64916229248047e-05,-0.000188350677490234,1.24393367767334,4.79221343994141e-05,-0.000181674957275391,1.24394702911377,4.60147857666016e-05,-0.000173568725585938,1.24393606185913,4.74452972412109e-05,-0.000181198120117188,1.24392318725586,1.99079513549805e-05,-0.000260353088378906,1.24392318725586,2.13384628295898e-05,-0.000260353088378906,1.24394130706787,1.8000602722168e-05,-0.000252723693847656,1.24391460418701,1.8000602722168e-05,-0.000253200531005859,1.24391269683838,2.1815299987793e-05,-0.000253200531005859,1.24390983581543,0,-0.000253677368164063,1.24390411376953,1.27553939819336e-05,-0.000260353088378906,1.24391174316406,7.48038291931152e-06,-0.000260829925537109,1.24391078948975,0,-0.000260829925537109, +1.24390697479248,0,-0.000260829925537109,1.24391174316406,3.13520431518555e-05,-0.000238895416259766,1.24392890930176,3.3259391784668e-05,-0.000238895416259766,1.2439432144165,3.08752059936523e-05,-0.000230789184570313,1.24391937255859,3.08752059936523e-05,-0.000231742858886719,1.2439136505127,3.37362289428711e-05,-0.000223636627197266,1.2439136505127,0,-0.000238418579101563,1.24389839172363,2.80141830444336e-05,-0.000238418579101563,1.24391269683838,2.5629997253418e-05,-0.000246047973632813,1.2439136505127,0,-0.000245571136474609,1.2439022064209,4.07695770263672e-05,-0.000202178955078125,1.24393367767334,4.26769256591797e-05,-0.000202178955078125,1.24394512176514,4.17232513427734e-05,-0.000195026397705078,1.24392032623291,4.22000885009766e-05,-0.000195026397705078,1.24391651153564,4.41074371337891e-05,-0.000181198120117188,1.24391841888428,3.93390655517578e-05,-0.000209808349609375,1.24391555786133,3.61204147338867e-05,-0.000224590301513672,1.24391555786133,0,-0.000216960906982422,1.24389743804932,4.74452972412109e-05,-0.000166416168212891,1.24393606185913,4.93526458740234e-05,-0.000166416168212891,1.24394845962524,4.93526458740234e-05,-0.000158786773681641,1.24393463134766,4.83989715576172e-05,-0.000166416168212891,1.24392509460449,4.50611114501953e-05,-0.000166416168212891,1.24391984939575,4.60147857666016e-05,-0.000173568725585938,1.24391937255859,4.50611114501953e-05,-0.000181198120117188,1.24391841888428,3.66568565368652e-06,-0.000267982482910156,1.24392509460449,3.66568565368652e-06,-0.00026702880859375,1.24393939971924,4.61935997009277e-06,-0.000260353088378906,1.24391078948975,4.14252281188965e-06,-0.000260353088378906,1.2439136505127,9.83476638793945e-06,-0.000260829925537109,1.24391078948975,1.31726264953613e-05,-0.000260829925537109,1.24392509460449,1.31726264953613e-05,-0.000267505645751953,1.24394035339355,1.13248825073242e-05,-0.000260353088378906,1.24391555786133,1.65700912475586e-05,-0.000260353088378906,1.24392509460449,1.70469284057617e-05,-0.000267505645751953,1.24393939971924,1.5556812286377e-05, +-0.000253677368164063,1.24391078948975,1.60932540893555e-05,-0.000259876251220703,1.24391555786133,1.94311141967773e-05,-0.000253200531005859,1.24391078948975,2.32458114624023e-05,-0.000252723693847656,1.24392414093018,2.46763229370117e-05,-0.000260353088378906,1.24394130706787,2.1815299987793e-05,-0.000253200531005859,1.24391746520996,2.51531600952148e-05,-0.000252723693847656,1.24392509460449,2.84910202026367e-05,-0.000259876251220703,1.24394130706787,2.37226486206055e-05,-0.000245571136474609,1.24391078948975,2.37226486206055e-05,-0.000252723693847656,1.24391651153564,2.70605087280273e-05,-0.000245571136474609,1.24391174316406,2.9444694519043e-05,-0.000246047973632813,1.24392604827881,3.3259391784668e-05,-0.000252723693847656,1.24394130706787,2.84910202026367e-05,-0.000245571136474609,1.24391937255859,2.99215316772461e-05,-0.000238418579101563,1.24392890930176,3.27825546264648e-05,-0.000246047973632813,1.24394035339355,2.9444694519043e-05,-0.000238895416259766,1.2439136505127,2.9444694519043e-05,-0.000238895416259766,1.24391841888428,3.18288803100586e-05,-0.000231266021728516,1.24391460418701,3.37362289428711e-05,-0.000230789184570313,1.24392890930176,3.46899032592773e-05,-0.000232219696044922,1.2439432144165,3.27825546264648e-05,-0.000231742858886719,1.24392127990723,3.51667404174805e-05,-0.000223636627197266,1.24392890930176,3.61204147338867e-05,-0.000230312347412109,1.2439432144165,3.46899032592773e-05,-0.000224113464355469,1.2439136505127,3.56435775756836e-05,-0.000224113464355469,1.24392032623291,3.75509262084961e-05,-0.000216960906982422,1.2439136505127,3.75509262084961e-05,-0.000216484069824219,1.24392890930176,3.85046005249023e-05,-0.000216960906982422,1.24394512176514,3.94582748413086e-05,-0.000216484069824219,1.24392127990723,3.94582748413086e-05,-0.000202178955078125,1.24393272399902,4.12464141845703e-05,-0.000209808349609375,1.24394416809082,4.07695770263672e-05,-0.000202655792236328,1.24391651153564,4.07695770263672e-05,-0.000201702117919922,1.24392032623291,4.31537628173828e-05,-0.000187873840332031, +1.24391651153564,4.45842742919922e-05,-0.000194549560546875,1.24393272399902,4.55379486083984e-05,-0.000195026397705078,1.24394607543945,4.45842742919922e-05,-0.000187397003173828,1.24392223358154,3.1888484954834e-06,-0.000267505645751953,1.24393367767334,0,-0.000266551971435547,1.24393463134766,4.69684600830078e-05,-0.000165939331054688,1.24394607543945,4.98294830322266e-05,-0.000159263610839844,1.24394464492798,1.51395797729492e-05,-0.000267505645751953,1.24393367767334,1.65700912475586e-05,-0.000260829925537109,1.24393558502197,2.08616256713867e-05,-0.000260829925537109,1.24393367767334,2.41994857788086e-05,-0.000260829925537109,1.24393558502197,1.36494636535645e-05,-0.000268459320068359,1.24393558502197,2.61068344116211e-05,-0.000259876251220703,1.24393653869629,8.9108943939209e-06,-0.000267505645751953,1.24393558502197,2.61068344116211e-05,-0.000252723693847656,1.24393653869629,2.89678573608398e-05,-0.000253200531005859,1.24393463134766,3.13520431518555e-05,-0.000246047973632813,1.24393558502197,3.27825546264648e-05,-0.000245571136474609,1.24393558502197,3.08752059936523e-05,-0.000245571136474609,1.24393653869629,3.18288803100586e-05,-0.000237941741943359,1.24393939971924,3.37362289428711e-05,-0.000230312347412109,1.24393749237061,3.7074089050293e-05,-0.000231266021728516,1.24393844604492,3.56435775756836e-05,-0.000231266021728516,1.24393939971924,3.46899032592773e-05,-0.000224113464355469,1.24394130706787,3.7074089050293e-05,-0.000216960906982422,1.24394035339355,4.02927398681641e-05,-0.000209331512451172,1.24394035339355,3.98159027099609e-05,-0.000209808349609375,1.24394035339355,4.07695770263672e-05,-0.000202655792236328,1.24394035339355,4.41074371337891e-05,-0.000195503234863281,1.24394226074219,4.64916229248047e-05,-0.000187873840332031,1.24394226074219,4.60147857666016e-05,-0.000181198120117188,1.2439432144165,4.64916229248047e-05,-0.000173568725585938,1.24394416809082,4.61935997009277e-06,-0.000274658203125,1.24393939971924,0,-0.000274181365966797,1.24393939971924,1.03116035461426e-05,-0.000274658203125, +1.24394130706787,1.41263008117676e-05,-0.00026702880859375,1.24394035339355,1.56164169311523e-05,-0.000266551971435547,1.24393939971924,1.8000602722168e-05,-0.00026702880859375,1.24394130706787,2.32458114624023e-05,-0.000268459320068359,1.24394035339355,2.65836715698242e-05,-0.000260353088378906,1.24394130706787,2.75373458862305e-05,-0.000260353088378906,1.24394130706787,3.08752059936523e-05,-0.000260353088378906,1.24394035339355,3.46899032592773e-05,-0.000253200531005859,1.24394130706787,3.65972518920898e-05,-0.000252723693847656,1.24394130706787,3.56435775756836e-05,-0.000246047973632813,1.24394130706787,3.61204147338867e-05,-0.000245571136474609,1.24394130706787,3.61204147338867e-05,-0.000238418579101563,1.2439432144165,3.75509262084961e-05,-0.000237464904785156,1.24394416809082,3.80277633666992e-05,-0.000230789184570313,1.24394226074219,3.89814376831055e-05,-0.000231266021728516,1.24394416809082,3.93390655517578e-05,-0.000224590301513672,1.24394226074219,4.17232513427734e-05,-0.000216484069824219,1.24394416809082,4.31537628173828e-05,-0.000209808349609375,1.24394416809082,4.50611114501953e-05,-0.000209331512451172,1.24394512176514,4.64916229248047e-05,-0.000202178955078125,1.24394512176514,4.93526458740234e-05,-0.000194549560546875,1.24394607543945,5.12599945068359e-05,-0.000188350677490234,1.24394607543945,5.17368316650391e-05,-0.000180721282958984,1.24394798278809,5.22136688232422e-05,-0.000173568725585938,1.24394702911377,5.31673431396484e-05,-0.000166416168212891,1.24394941329956,5.22136688232422e-05,-0.000166416168212891,1.24395036697388,5.0961971282959e-06,-0.000267982482910156,1.24391269683838,0,-0.000267982482910156,1.24391651153564,2.5629997253418e-05,-0.000253200531005859,1.24391651153564,2.46763229370117e-05,-0.000253677368164063,1.2439136505127,2.1815299987793e-05,-0.000253200531005859,1.24391269683838,1.84774398803711e-05,-0.000260829925537109,1.24391460418701,2.75373458862305e-05,-0.000253677368164063,1.24391651153564,1.50799751281738e-05,-0.000259876251220703,1.24391651153564,2.99215316772461e-05, +-0.000246047973632813,1.24391555786133,1.22785568237305e-05,-0.000260353088378906,1.24391460418701,3.18288803100586e-05,-0.000245571136474609,1.24391651153564,8.43405723571777e-06,-0.000260829925537109,1.24391174316406,3.27825546264648e-05,-0.000237941741943359,1.24392032623291,3.27825546264648e-05,-0.000238418579101563,1.24391651153564,3.46899032592773e-05,-0.000238418579101563,1.24391269683838,3.65972518920898e-05,-0.000230789184570313,1.24391841888428,3.80277633666992e-05,-0.000231266021728516,1.24392223358154,3.93390655517578e-05,-0.000223636627197266,1.24391841888428,4.22000885009766e-05,-0.000224590301513672,1.24391937255859,4.50611114501953e-05,-0.000217437744140625,1.24391937255859,4.55379486083984e-05,-0.000209331512451172,1.24392223358154,4.69684600830078e-05,-0.000209331512451172,1.24391937255859,4.88758087158203e-05,-0.000201702117919922,1.24391651153564,5.03063201904297e-05,-0.000194549560546875,1.24392127990723,5.22136688232422e-05,-0.000187873840332031,1.24392509460449,5.41210174560547e-05,-0.000181198120117188,1.24392127990723,5.45978546142578e-05,-0.000173568725585938,1.24392127990723,5.45978546142578e-05,-0.000166416168212891,1.24392414093018,5.50746917724609e-05,-0.000158786773681641,1.24392700195313,4.88758087158203e-05,-0.000159740447998047,1.24392700195313,4.79221343994141e-05,-0.000166416168212891,1.24392366409302,4.61935997009277e-06,-0.000267505645751953,1.24391746520996,0,-0.000267505645751953,1.24392032623291,4.14252281188965e-06,-0.000260353088378906,1.24391841888428,0,-0.00026702880859375,1.24391937255859,9.89437103271484e-06,-0.000260353088378906,1.24391651153564,1.37090682983398e-05,-0.000260353088378906,1.24391746520996,1.60336494445801e-05,-0.000260353088378906,1.24392127990723,1.88946723937988e-05,-0.000260829925537109,1.24391651153564,2.27689743041992e-05,-0.000253200531005859,1.24391651153564,2.5629997253418e-05,-0.000252723693847656,1.24391841888428,2.61068344116211e-05,-0.000253200531005859,1.24392032623291,2.80141830444336e-05,-0.000253200531005859,1.24391937255859,3.08752059936523e-05, +-0.000246047973632813,1.24391841888428,3.3259391784668e-05,-0.000246047973632813,1.24392127990723,3.37362289428711e-05,-0.000245571136474609,1.24392414093018,3.42130661010742e-05,-0.000238895416259766,1.24392127990723,3.56435775756836e-05,-0.000238895416259766,1.24391841888428,3.7074089050293e-05,-0.000230789184570313,1.24392127990723,3.80277633666992e-05,-0.000230312347412109,1.24392414093018,4.02927398681641e-05,-0.000223636627197266,1.24392414093018,4.26769256591797e-05,-0.000224590301513672,1.24392127990723,4.64916229248047e-05,-0.000216960906982422,1.24392414093018,4.60147857666016e-05,-0.000209808349609375,1.24392509460449,4.74452972412109e-05,-0.000209331512451172,1.24392223358154,4.93526458740234e-05,-0.000202655792236328,1.24392127990723,5.22136688232422e-05,-0.000195026397705078,1.24392509460449,5.22136688232422e-05,-0.000188350677490234,1.24392890930176,5.50746917724609e-05,-0.000181198120117188,1.24392700195313,5.65052032470703e-05,-0.000173568725585938,1.24392604827881,5.65052032470703e-05,-0.000166893005371094,1.24392795562744,5.50746917724609e-05,-0.000159740447998047,1.24393081665039,4.93526458740234e-05,-0.000159263610839844,1.24392986297607,4.79221343994141e-05,-0.000165462493896484,1.24392795562744,4.64916229248047e-05,-0.000173568725585938,1.24392652511597,4.60147857666016e-05,-0.000181198120117188,1.24392700195313,4.69684600830078e-05,-0.000188827514648438,1.24392700195313,4.41074371337891e-05,-0.000188350677490234,1.24392414093018,4.07695770263672e-05,-0.000195503234863281,1.24392318725586,3.93390655517578e-05,-0.000202178955078125,1.24392414093018,3.93390655517578e-05,-0.000209331512451172,1.24392604827881,3.85046005249023e-05,-0.000216960906982422,1.24392414093018,3.51667404174805e-05,-0.000224590301513672,1.24392318725586,3.56435775756836e-05,-0.000223159790039063,1.24392318725586,3.56435775756836e-05,-0.000230312347412109,1.24392604827881,3.27825546264648e-05,-0.000231266021728516,1.24392318725586,3.08752059936523e-05,-0.000231742858886719,1.24392127990723,2.99215316772461e-05,-0.000237464904785156, +1.24392127990723,3.08752059936523e-05,-0.000246047973632813,1.24392318725586,2.84910202026367e-05,-0.000245571136474609,1.24392032623291,2.5629997253418e-05,-0.000246047973632813,1.24391937255859,2.37226486206055e-05,-0.000253677368164063,1.24391937255859,2.41994857788086e-05,-0.000253200531005859,1.24392127990723,2.1815299987793e-05,-0.000253677368164063,1.24391841888428,1.84774398803711e-05,-0.000253200531005859,1.24391841888428,1.60932540893555e-05,-0.000259876251220703,1.24391841888428,1.50799751281738e-05,-0.000260829925537109,1.24392127990723,1.18017196655273e-05,-0.000260829925537109,1.24391841888428,7.48038291931152e-06,-0.000260829925537109,1.24391651153564,4.07695770263672e-05,-0.000166416168212891,1.24391746520996,3.23057174682617e-05,-0.000166416168212891,1.24391078948975,3.7074089050293e-05,-0.000195026397705078,1.24390935897827,3.46899032592773e-05,-0.000209808349609375,1.24390888214111,3.3259391784668e-05,-0.000216960906982422,1.24390888214111,2.9444694519043e-05,-0.000230789184570313,1.2439079284668,2.80141830444336e-05,-0.000231266021728516,1.2439079284668,2.41994857788086e-05,-0.000237941741943359,1.2439079284668,2.1815299987793e-05,-0.000245571136474609,1.2439079284668,1.79409980773926e-05,-0.000252723693847656,1.24390888214111,1.4185905456543e-05,-0.000253200531005859,1.24390983581543,8.9108943939209e-06,-0.000253677368164063,1.2439079284668,5.57303428649902e-06,-0.000260353088378906,1.2439079284668,-2.7775764465332e-05,-0.000260829925537109,1.24393844604492,-3.82661819458008e-05,-0.000231266021728516,1.24394130706787,-5.26905059814453e-05,-0.000188827514648438,1.24394512176514,-5.36441802978516e-05,-0.000166893005371094,1.24394941329956,-2.63452529907227e-05,-0.000252723693847656,1.24390602111816,-3.87430191040039e-05,-0.000230789184570313,1.24390888214111,-5.41210174560547e-05,-0.000187873840332031,1.24391317367554,-5.55515289306641e-05,-0.00016021728515625,1.24391746520996,-1.49011611938477e-05,-0.000260829925537109,1.24392032623291,-1.53779983520508e-05,-0.000267505645751953,1.24394035339355, +-2.53915786743164e-05,-0.000252723693847656,1.24391841888428,-1.59144401550293e-05,-0.000260353088378906,1.24390506744385,-3.20672988891602e-05,-0.000245571136474609,1.24392127990723,-3.63588333129883e-05,-0.000246047973632813,1.24393939971924,-3.73125076293945e-05,-0.000230789184570313,1.24392414093018,-3.25441360473633e-05,-0.000238418579101563,1.24390602111816,-4.55379486083984e-05,-0.000209331512451172,1.24392318725586,-4.45842742919922e-05,-0.000209331512451172,1.2439432144165,-5.17368316650391e-05,-0.000188350677490234,1.24392795562744,-4.64916229248047e-05,-0.000209808349609375,1.24390935897827,-5.45978546142578e-05,-0.000173568725585938,1.24392366409302,-5.65052032470703e-05,-0.000173568725585938,1.24394798278809,-5.41210174560547e-05,-0.000158786773681641,1.24392986297607,-5.55515289306641e-05,-0.000173568725585938,1.2439136505127,-1.10864639282227e-05,-0.000267505645751953,1.24392414093018,-1.16229057312012e-05,-0.000274658203125,1.24394035339355,-1.53779983520508e-05,-0.000260829925537109,1.24392414093018,-8.2552433013916e-06,-0.000260353088378906,1.2439136505127,-3.34978103637695e-05,-0.000253200531005859,1.24392414093018,-2.68220901489258e-05,-0.000252723693847656,1.24392414093018,-3.68356704711914e-05,-0.000253200531005859,1.24394035339355,-3.39746475219727e-05,-0.000245571136474609,1.24392700195313,-2.92062759399414e-05,-0.000246047973632813,1.24391555786133,-4.41074371337891e-05,-0.000224590301513672,1.24392890930176,-3.82661819458008e-05,-0.000230789184570313,1.24392795562744,-4.31537628173828e-05,-0.000223636627197266,1.2439432144165,-4.64916229248047e-05,-0.000209808349609375,1.24393177032471,-4.22000885009766e-05,-0.000224590301513672,1.24392032623291,-5.69820404052734e-05,-0.000181198120117188,1.24393558502197,-5.36441802978516e-05,-0.000188350677490234,1.24393367767334,-5.60283660888672e-05,-0.000187873840332031,1.24394702911377,-5.74588775634766e-05,-0.000173568725585938,1.24393653869629,-5.31673431396484e-05,-0.000181674957275391,1.24392318725586,-2.30073928833008e-05,-0.000260829925537109, +1.24392318725586,-2.34842300415039e-05,-0.00026702880859375,1.24394035339355,-2.11000442504883e-05,-0.000253200531005859,1.2439136505127,-2.0146369934082e-05,-0.000253200531005859,1.24391078948975,-2.49147415161133e-05,-0.000253200531005859,1.24391269683838,-2.15768814086914e-05,-0.000252723693847656,1.24390697479248,-1.4960765838623e-05,-0.000260353088378906,1.24390888214111,-7.77840614318848e-06,-0.000260829925537109,1.24390888214111,-8.2552433013916e-06,-0.000260353088378906,1.24390602111816,-3.73125076293945e-05,-0.000237941741943359,1.24392604827881,-3.87430191040039e-05,-0.000238418579101563,1.24394226074219,-3.44514846801758e-05,-0.000238418579101563,1.24391651153564,-3.39746475219727e-05,-0.000231266021728516,1.24391078948975,-3.77893447875977e-05,-0.000230789184570313,1.2439136505127,-3.49283218383789e-05,-0.000239372253417969,1.24390888214111,-3.1590461730957e-05,-0.000238895416259766,1.24391174316406,-2.87294387817383e-05,-0.000246047973632813,1.24391269683838,-3.06367874145508e-05,-0.000246047973632813,1.2439079284668,-5.12599945068359e-05,-0.000202655792236328,1.24393177032471,-4.98294830322266e-05,-0.000202178955078125,1.24394512176514,-4.79221343994141e-05,-0.000202655792236328,1.24391841888428,-4.88758087158203e-05,-0.000202178955078125,1.2439136505127,-5.22136688232422e-05,-0.000188827514648438,1.24391746520996,-4.93526458740234e-05,-0.000202178955078125,1.24391078948975,-4.50611114501953e-05,-0.000209808349609375,1.2439136505127,-4.12464141845703e-05,-0.000224113464355469,1.2439136505127,-4.22000885009766e-05,-0.000224113464355469,1.24391078948975,-5.79357147216797e-05,-0.000166416168212891,1.24393606185913,-5.74588775634766e-05,-0.000166416168212891,1.24394798278809,-5.55515289306641e-05,-0.000159740447998047,1.24393463134766,-5.45978546142578e-05,-0.000166893005371094,1.24392604827881,-5.50746917724609e-05,-0.000165939331054688,1.24391746520996,-5.45978546142578e-05,-0.000159263610839844,1.24392080307007,-5.55515289306641e-05,-0.000164985656738281,1.24391412734985,-5.45978546142578e-05,-0.000173568725585938, +1.24391841888428,-5.41210174560547e-05,-0.000180721282958984,1.24391746520996,-5.50746917724609e-05,-0.000181198120117188,1.2439136505127,-4.4405460357666e-06,-0.00026702880859375,1.24392318725586,-4.4405460357666e-06,-0.000274658203125,1.24393939971924,-4.4405460357666e-06,-0.000260353088378906,1.2439079284668,-4.4405460357666e-06,-0.00026702880859375,1.24390602111816,-4.4405460357666e-06,-0.000267982482910156,1.2439136505127,-1.15633010864258e-05,-0.000260353088378906,1.2439079284668,-1.20997428894043e-05,-0.000260353088378906,1.24390602111816,-1.49011611938477e-05,-0.00026702880859375,1.24392509460449,-1.4960765838623e-05,-0.00026702880859375,1.24393939971924,-1.20997428894043e-05,-0.000259876251220703,1.24391460418701,-1.8775463104248e-05,-0.000260829925537109,1.24392604827881,-1.87158584594727e-05,-0.000267505645751953,1.24393939971924,-1.78217887878418e-05,-0.000260829925537109,1.24390888214111,-1.87158584594727e-05,-0.000260353088378906,1.24390602111816,-1.77621841430664e-05,-0.000259876251220703,1.24391651153564,-2.25305557250977e-05,-0.000253200531005859,1.24391078948975,-2.3961067199707e-05,-0.000252723693847656,1.2439079284668,-2.68220901489258e-05,-0.000260829925537109,1.24392509460449,-2.72989273071289e-05,-0.000260353088378906,1.24394035339355,-2.3961067199707e-05,-0.000253200531005859,1.24391746520996,-2.96831130981445e-05,-0.000252723693847656,1.24392414093018,-3.25441360473633e-05,-0.000260353088378906,1.24394035339355,-2.72989273071289e-05,-0.000245571136474609,1.24391078948975,-2.82526016235352e-05,-0.000253677368164063,1.24390506744385,-2.63452529907227e-05,-0.000253200531005859,1.24391746520996,-3.06367874145508e-05,-0.000245571136474609,1.24390983581543,-3.1590461730957e-05,-0.000246047973632813,1.2439079284668,-3.44514846801758e-05,-0.000245571136474609,1.24392509460449,-3.73125076293945e-05,-0.000253677368164063,1.24394035339355,-3.1590461730957e-05,-0.000245571136474609,1.24391937255859,-3.63588333129883e-05,-0.000246047973632813,1.24392700195313,-3.82661819458008e-05,-0.000245571136474609, +1.24394035339355,-3.25441360473633e-05,-0.000238895416259766,1.24391078948975,-3.34978103637695e-05,-0.000239372253417969,1.2439079284668,-3.20672988891602e-05,-0.000237941741943359,1.24391841888428,-3.58819961547852e-05,-0.000231266021728516,1.24391269683838,-3.68356704711914e-05,-0.000230789184570313,1.2439079284668,-3.87430191040039e-05,-0.000230312347412109,1.24392890930176,-3.87430191040039e-05,-0.000238895416259766,1.24394226074219,-3.63588333129883e-05,-0.000230789184570313,1.24391937255859,-4.12464141845703e-05,-0.000231266021728516,1.24392890930176,-4.07695770263672e-05,-0.000231266021728516,1.24394416809082,-3.91006469726563e-05,-0.000224113464355469,1.24391269683838,-4.07695770263672e-05,-0.000223159790039063,1.2439079284668,-3.87430191040039e-05,-0.000223159790039063,1.24392032623291,-4.31537628173828e-05,-0.000216960906982422,1.2439136505127,-4.45842742919922e-05,-0.000216484069824219,1.24390840530396,-4.69684600830078e-05,-0.000216960906982422,1.24392986297607,-4.55379486083984e-05,-0.000216484069824219,1.24394416809082,-4.50611114501953e-05,-0.000216484069824219,1.24392127990723,-4.93526458740234e-05,-0.000209331512451172,1.24393177032471,-4.79221343994141e-05,-0.000209808349609375,1.24394416809082,-4.69684600830078e-05,-0.000209808349609375,1.2439136505127,-4.79221343994141e-05,-0.000209808349609375,1.24391031265259,-4.60147857666016e-05,-0.000209331512451172,1.24392032623291,-5.03063201904297e-05,-0.000195503234863281,1.24391555786133,-5.12599945068359e-05,-0.000194549560546875,1.2439112663269,-5.41210174560547e-05,-0.000194549560546875,1.24393177032471,-5.26905059814453e-05,-0.000194549560546875,1.24394702911377,-5.03063201904297e-05,-0.000194549560546875,1.24392223358154,-4.4405460357666e-06,-0.000274658203125,1.24393463134766,-5.79357147216797e-05,-0.000166416168212891,1.24394512176514,-5.45978546142578e-05,-0.000165939331054688,1.24394416809082,-1.53779983520508e-05,-0.000267505645751953,1.24393463134766,-1.87158584594727e-05,-0.000266551971435547,1.24393367767334,-2.3961067199707e-05,-0.000267505645751953, +1.24393463134766,-2.7775764465332e-05,-0.000259876251220703,1.24393558502197,-1.58548355102539e-05,-0.000267505645751953,1.24393463134766,-2.82526016235352e-05,-0.000260353088378906,1.24393653869629,-1.20401382446289e-05,-0.000274181365966797,1.24393463134766,-3.20672988891602e-05,-0.000260829925537109,1.24393653869629,-3.63588333129883e-05,-0.000253200531005859,1.24393463134766,-3.73125076293945e-05,-0.000252723693847656,1.24393558502197,-3.58819961547852e-05,-0.000246047973632813,1.24393653869629,-3.82661819458008e-05,-0.000245571136474609,1.24393653869629,-3.9219856262207e-05,-0.000238895416259766,1.24393844604492,-3.93390655517578e-05,-0.000238418579101563,1.24393749237061,-3.9219856262207e-05,-0.000230312347412109,1.24393844604492,-4.12464141845703e-05,-0.000230312347412109,1.24393939971924,-4.45842742919922e-05,-0.000223159790039063,1.24393939971924,-4.60147857666016e-05,-0.000216960906982422,1.24394035339355,-4.55379486083984e-05,-0.000209331512451172,1.24393939971924,-4.88758087158203e-05,-0.000209331512451172,1.24393939971924,-5.12599945068359e-05,-0.000202655792236328,1.24394130706787,-5.41210174560547e-05,-0.000195503234863281,1.24394130706787,-5.36441802978516e-05,-0.000187873840332031,1.2439432144165,-5.74588775634766e-05,-0.000188350677490234,1.24394416809082,-5.69820404052734e-05,-0.000174045562744141,1.24394416809082,-2.58684158325195e-05,-0.000260353088378906,1.24393939971924,-3.63588333129883e-05,-0.000230789184570313,1.24394035339355,-4.79221343994141e-05,-0.000188350677490234,1.24394607543945,-5.07831573486328e-05,-0.000165939331054688,1.24394941329956,-1.44839286804199e-05,-0.000260829925537109,1.24392127990723,-1.44243240356445e-05,-0.00026702880859375,1.24394035339355,-2.34842300415039e-05,-0.000252723693847656,1.24391841888428,-2.96831130981445e-05,-0.000245571136474609,1.24391937255859,-3.34978103637695e-05,-0.000246047973632813,1.24394035339355,-3.5405158996582e-05,-0.000230312347412109,1.24392509460449,-3.93390655517578e-05,-0.000209331512451172,1.24392414093018,-4.07695770263672e-05,-0.000209808349609375, +1.2439432144165,-4.64916229248047e-05,-0.000188350677490234,1.24392509460449,-4.79221343994141e-05,-0.000174045562744141,1.24392318725586,-4.83989715576172e-05,-0.000173568725585938,1.24394798278809,-4.88758087158203e-05,-0.000158786773681641,1.2439284324646,-7.77840614318848e-06,-0.000267505645751953,1.24392414093018,-8.73208045959473e-06,-0.000267505645751953,1.24393939971924,-1.4960765838623e-05,-0.000260353088378906,1.24392509460449,-7.30156898498535e-06,-0.000260353088378906,1.2439136505127,-2.68220901489258e-05,-0.000245571136474609,1.24392700195313,-2.44379043579102e-05,-0.000253200531005859,1.24392509460449,-3.11136245727539e-05,-0.000252723693847656,1.24394226074219,-3.06367874145508e-05,-0.000246524810791016,1.24392795562744,-2.49147415161133e-05,-0.000246047973632813,1.24391651153564,-3.39746475219727e-05,-0.000224113464355469,1.24393081665039,-3.5405158996582e-05,-0.000231266021728516,1.24392700195313,-3.5405158996582e-05,-0.000224113464355469,1.2439432144165,-3.87430191040039e-05,-0.000209808349609375,1.24392890930176,-3.58819961547852e-05,-0.000224113464355469,1.24391841888428,-4.55379486083984e-05,-0.000181198120117188,1.24393653869629,-4.64916229248047e-05,-0.000188350677490234,1.24393367767334,-4.69684600830078e-05,-0.000181674957275391,1.24394702911377,-4.60147857666016e-05,-0.000173568725585938,1.24393606185913,-4.69684600830078e-05,-0.000181198120117188,1.24392318725586,-1.92523002624512e-05,-0.000260353088378906,1.24392318725586,-2.06232070922852e-05,-0.000260353088378906,1.24394130706787,-1.77621841430664e-05,-0.000252723693847656,1.24391460418701,-1.73449516296387e-05,-0.000253200531005859,1.24391269683838,-2.11000442504883e-05,-0.000253200531005859,1.24390983581543,-1.20401382446289e-05,-0.000260353088378906,1.24391174316406,-6.82473182678223e-06,-0.000260829925537109,1.24391078948975,-3.11136245727539e-05,-0.000238895416259766,1.24392890930176,-3.25441360473633e-05,-0.000238895416259766,1.2439432144165,-3.01599502563477e-05,-0.000230789184570313,1.24391937255859,-3.01599502563477e-05,-0.000231742858886719, +1.2439136505127,-3.25441360473633e-05,-0.000223636627197266,1.2439136505127,-2.7775764465332e-05,-0.000238418579101563,1.24391269683838,-2.49147415161133e-05,-0.000246047973632813,1.2439136505127,-4.07695770263672e-05,-0.000202178955078125,1.24393367767334,-4.31537628173828e-05,-0.000202178955078125,1.24394512176514,-4.17232513427734e-05,-0.000195026397705078,1.24392032623291,-4.22000885009766e-05,-0.000195026397705078,1.24391651153564,-4.36305999755859e-05,-0.000181198120117188,1.24391841888428,-3.9219856262207e-05,-0.000209808349609375,1.24391555786133,-3.5405158996582e-05,-0.000224590301513672,1.24391555786133,-4.69684600830078e-05,-0.000166416168212891,1.24393606185913,-4.83989715576172e-05,-0.000166416168212891,1.24394845962524,-4.83989715576172e-05,-0.000158786773681641,1.24393463134766,-4.83989715576172e-05,-0.000166416168212891,1.24392509460449,-4.50611114501953e-05,-0.000166416168212891,1.24391984939575,-4.55379486083984e-05,-0.000173568725585938,1.24391937255859,-4.45842742919922e-05,-0.000181198120117188,1.24391841888428,-3.01003456115723e-06,-0.000267982482910156,1.24392509460449,-3.48687171936035e-06,-0.00026702880859375,1.24393939971924,-3.96370887756348e-06,-0.000260353088378906,1.24391078948975,-3.96370887756348e-06,-0.000260353088378906,1.2439136505127,-9.20891761779785e-06,-0.000260829925537109,1.24391078948975,-1.25765800476074e-05,-0.000260829925537109,1.24392509460449,-1.30534172058105e-05,-0.000267505645751953,1.24394035339355,-1.06096267700195e-05,-0.000260353088378906,1.24391555786133,-1.59144401550293e-05,-0.000260353088378906,1.24392509460449,-1.63912773132324e-05,-0.000267505645751953,1.24393939971924,-1.49011611938477e-05,-0.000253677368164063,1.24391078948975,-1.58548355102539e-05,-0.000259876251220703,1.24391555786133,-1.87158584594727e-05,-0.000253200531005859,1.24391078948975,-2.25305557250977e-05,-0.000252723693847656,1.24392414093018,-2.44379043579102e-05,-0.000260353088378906,1.24394130706787,-2.11000442504883e-05,-0.000253200531005859,1.24391746520996,-2.44379043579102e-05,-0.000252723693847656, +1.24392509460449,-2.72989273071289e-05,-0.000259876251220703,1.24394130706787,-2.30073928833008e-05,-0.000245571136474609,1.24391078948975,-2.30073928833008e-05,-0.000252723693847656,1.24391651153564,-2.63452529907227e-05,-0.000245571136474609,1.24391174316406,-2.92062759399414e-05,-0.000246047973632813,1.24392604827881,-3.25441360473633e-05,-0.000252723693847656,1.24394130706787,-2.7775764465332e-05,-0.000245571136474609,1.24391937255859,-2.96831130981445e-05,-0.000238418579101563,1.24392890930176,-3.20672988891602e-05,-0.000246047973632813,1.24394035339355,-2.92062759399414e-05,-0.000238895416259766,1.2439136505127,-2.92062759399414e-05,-0.000238895416259766,1.24391841888428,-3.11136245727539e-05,-0.000231266021728516,1.24391460418701,-3.30209732055664e-05,-0.000230789184570313,1.24392890930176,-3.44514846801758e-05,-0.000232219696044922,1.2439432144165,-3.20672988891602e-05,-0.000231742858886719,1.24392127990723,-3.44514846801758e-05,-0.000223636627197266,1.24392890930176,-3.5405158996582e-05,-0.000230312347412109,1.2439432144165,-3.44514846801758e-05,-0.000224113464355469,1.2439136505127,-3.49283218383789e-05,-0.000224113464355469,1.24392032623291,-3.68356704711914e-05,-0.000216960906982422,1.2439136505127,-3.68356704711914e-05,-0.000216484069824219,1.24392890930176,-3.77893447875977e-05,-0.000216960906982422,1.24394512176514,-3.87430191040039e-05,-0.000216484069824219,1.24392127990723,-3.87430191040039e-05,-0.000202178955078125,1.24393272399902,-4.07695770263672e-05,-0.000209808349609375,1.24394416809082,-4.07695770263672e-05,-0.000202655792236328,1.24391651153564,-4.02927398681641e-05,-0.000201702117919922,1.24392032623291,-4.26769256591797e-05,-0.000187873840332031,1.24391651153564,-4.36305999755859e-05,-0.000194549560546875,1.24393272399902,-4.50611114501953e-05,-0.000195026397705078,1.24394607543945,-4.41074371337891e-05,-0.000187397003173828,1.24392223358154,-3.01003456115723e-06,-0.000267505645751953,1.24393367767334,-4.69684600830078e-05,-0.000165939331054688,1.24394607543945,-4.93526458740234e-05,-0.000159263610839844, +1.24394464492798,-1.4960765838623e-05,-0.000267505645751953,1.24393367767334,-1.59144401550293e-05,-0.000260829925537109,1.24393558502197,-2.0146369934082e-05,-0.000260829925537109,1.24393367767334,-2.34842300415039e-05,-0.000260829925537109,1.24393558502197,-1.30534172058105e-05,-0.000268459320068359,1.24393558502197,-2.53915786743164e-05,-0.000259876251220703,1.24393653869629,-8.2552433013916e-06,-0.000267505645751953,1.24393558502197,-2.53915786743164e-05,-0.000252723693847656,1.24393653869629,-2.87294387817383e-05,-0.000253200531005859,1.24393463134766,-3.06367874145508e-05,-0.000246047973632813,1.24393558502197,-3.20672988891602e-05,-0.000245571136474609,1.24393558502197,-3.01599502563477e-05,-0.000245571136474609,1.24393653869629,-3.11136245727539e-05,-0.000237941741943359,1.24393939971924,-3.30209732055664e-05,-0.000230312347412109,1.24393749237061,-3.63588333129883e-05,-0.000231266021728516,1.24393844604492,-3.44514846801758e-05,-0.000231266021728516,1.24393939971924,-3.39746475219727e-05,-0.000224113464355469,1.24394130706787,-3.68356704711914e-05,-0.000216960906982422,1.24394035339355,-3.93390655517578e-05,-0.000209331512451172,1.24394035339355,-3.9219856262207e-05,-0.000209808349609375,1.24394035339355,-4.07695770263672e-05,-0.000202655792236328,1.24394035339355,-4.36305999755859e-05,-0.000195503234863281,1.24394226074219,-4.64916229248047e-05,-0.000187873840332031,1.24394226074219,-4.55379486083984e-05,-0.000181198120117188,1.2439432144165,-4.60147857666016e-05,-0.000173568725585938,1.24394416809082,-3.96370887756348e-06,-0.000274658203125,1.24393939971924,-9.68575477600098e-06,-0.000274658203125,1.24394130706787,-1.39474868774414e-05,-0.00026702880859375,1.24394035339355,-1.4960765838623e-05,-0.000266551971435547,1.24393939971924,-1.73449516296387e-05,-0.00026702880859375,1.24394130706787,-2.25305557250977e-05,-0.000268459320068359,1.24394035339355,-2.58684158325195e-05,-0.000260353088378906,1.24394130706787,-2.68220901489258e-05,-0.000260353088378906,1.24394130706787,-3.01599502563477e-05,-0.000260353088378906, +1.24394035339355,-3.44514846801758e-05,-0.000253200531005859,1.24394130706787,-3.5405158996582e-05,-0.000252723693847656,1.24394130706787,-3.49283218383789e-05,-0.000246047973632813,1.24394130706787,-3.5405158996582e-05,-0.000245571136474609,1.24394130706787,-3.58819961547852e-05,-0.000238418579101563,1.2439432144165,-3.68356704711914e-05,-0.000237464904785156,1.24394416809082,-3.73125076293945e-05,-0.000230789184570313,1.24394226074219,-3.82661819458008e-05,-0.000231266021728516,1.24394416809082,-3.9219856262207e-05,-0.000224590301513672,1.24394226074219,-4.17232513427734e-05,-0.000216484069824219,1.24394416809082,-4.26769256591797e-05,-0.000209808349609375,1.24394416809082,-4.41074371337891e-05,-0.000209331512451172,1.24394512176514,-4.64916229248047e-05,-0.000202178955078125,1.24394512176514,-4.93526458740234e-05,-0.000194549560546875,1.24394607543945,-5.03063201904297e-05,-0.000188350677490234,1.24394607543945,-5.17368316650391e-05,-0.000180721282958984,1.24394798278809,-5.22136688232422e-05,-0.000173568725585938,1.24394702911377,-5.31673431396484e-05,-0.000166416168212891,1.24394941329956,-5.22136688232422e-05,-0.000166416168212891,1.24395036697388,-4.4405460357666e-06,-0.000267982482910156,1.24391269683838,-2.49147415161133e-05,-0.000253200531005859,1.24391651153564,-2.34842300415039e-05,-0.000253677368164063,1.2439136505127,-2.11000442504883e-05,-0.000253200531005859,1.24391269683838,-1.77621841430664e-05,-0.000260829925537109,1.24391460418701,-2.63452529907227e-05,-0.000253677368164063,1.24391651153564,-1.4960765838623e-05,-0.000259876251220703,1.24391651153564,-2.87294387817383e-05,-0.000246047973632813,1.24391555786133,-1.20401382446289e-05,-0.000260353088378906,1.24391460418701,-3.11136245727539e-05,-0.000245571136474609,1.24391651153564,-7.77840614318848e-06,-0.000260829925537109,1.24391174316406,-3.20672988891602e-05,-0.000237941741943359,1.24392032623291,-3.25441360473633e-05,-0.000238418579101563,1.24391651153564,-3.39746475219727e-05,-0.000238418579101563,1.24391269683838,-3.63588333129883e-05,-0.000230789184570313, +1.24391841888428,-3.73125076293945e-05,-0.000231266021728516,1.24392223358154,-3.87430191040039e-05,-0.000223636627197266,1.24391841888428,-4.17232513427734e-05,-0.000224590301513672,1.24391937255859,-4.45842742919922e-05,-0.000217437744140625,1.24391937255859,-4.50611114501953e-05,-0.000209331512451172,1.24392223358154,-4.64916229248047e-05,-0.000209331512451172,1.24391937255859,-4.79221343994141e-05,-0.000201702117919922,1.24391651153564,-5.07831573486328e-05,-0.000194549560546875,1.24392127990723,-5.22136688232422e-05,-0.000187873840332031,1.24392509460449,-5.31673431396484e-05,-0.000181198120117188,1.24392127990723,-5.41210174560547e-05,-0.000173568725585938,1.24392127990723,-5.41210174560547e-05,-0.000166416168212891,1.24392414093018,-5.50746917724609e-05,-0.000158786773681641,1.24392700195313,-4.79221343994141e-05,-0.000159740447998047,1.24392700195313,-4.79221343994141e-05,-0.000166416168212891,1.24392366409302,-4.4405460357666e-06,-0.000267505645751953,1.24391746520996,-3.48687171936035e-06,-0.000260353088378906,1.24391841888428,-9.68575477600098e-06,-0.000260353088378906,1.24391651153564,-1.29938125610352e-05,-0.000260353088378906,1.24391746520996,-1.53779983520508e-05,-0.000260353088378906,1.24392127990723,-1.77621841430664e-05,-0.000260829925537109,1.24391651153564,-2.15768814086914e-05,-0.000253200531005859,1.24391651153564,-2.49147415161133e-05,-0.000252723693847656,1.24391841888428,-2.53915786743164e-05,-0.000253200531005859,1.24392032623291,-2.72989273071289e-05,-0.000253200531005859,1.24391937255859,-3.01599502563477e-05,-0.000246047973632813,1.24391841888428,-3.20672988891602e-05,-0.000246047973632813,1.24392127990723,-3.30209732055664e-05,-0.000245571136474609,1.24392414093018,-3.34978103637695e-05,-0.000238895416259766,1.24392127990723,-3.49283218383789e-05,-0.000238895416259766,1.24391841888428,-3.73125076293945e-05,-0.000230789184570313,1.24392127990723,-3.77893447875977e-05,-0.000230312347412109,1.24392414093018,-3.93390655517578e-05,-0.000223636627197266,1.24392414093018,-4.26769256591797e-05, +-0.000224590301513672,1.24392127990723,-4.60147857666016e-05,-0.000216960906982422,1.24392414093018,-4.60147857666016e-05,-0.000209808349609375,1.24392509460449,-4.74452972412109e-05,-0.000209331512451172,1.24392223358154,-4.88758087158203e-05,-0.000202655792236328,1.24392127990723,-5.17368316650391e-05,-0.000195026397705078,1.24392509460449,-5.17368316650391e-05,-0.000188350677490234,1.24392890930176,-5.45978546142578e-05,-0.000181198120117188,1.24392700195313,-5.55515289306641e-05,-0.000173568725585938,1.24392604827881,-5.55515289306641e-05,-0.000166893005371094,1.24392795562744,-5.45978546142578e-05,-0.000159740447998047,1.24393081665039,-4.83989715576172e-05,-0.000159263610839844,1.24392986297607,-4.74452972412109e-05,-0.000165462493896484,1.24392795562744,-4.64916229248047e-05,-0.000173568725585938,1.24392652511597,-4.60147857666016e-05,-0.000181198120117188,1.24392700195313,-4.64916229248047e-05,-0.000188827514648438,1.24392700195313,-4.41074371337891e-05,-0.000188350677490234,1.24392414093018,-4.12464141845703e-05,-0.000195503234863281,1.24392318725586,-3.93390655517578e-05,-0.000202178955078125,1.24392414093018,-3.9219856262207e-05,-0.000209331512451172,1.24392604827881,-3.77893447875977e-05,-0.000216960906982422,1.24392414093018,-3.49283218383789e-05,-0.000224590301513672,1.24392318725586,-3.49283218383789e-05,-0.000223159790039063,1.24392318725586,-3.5405158996582e-05,-0.000230312347412109,1.24392604827881,-3.25441360473633e-05,-0.000231266021728516,1.24392318725586,-3.01599502563477e-05,-0.000231742858886719,1.24392127990723,-2.92062759399414e-05,-0.000237464904785156,1.24392127990723,-2.96831130981445e-05,-0.000246047973632813,1.24392318725586,-2.82526016235352e-05,-0.000245571136474609,1.24392032623291,-2.49147415161133e-05,-0.000246047973632813,1.24391937255859,-2.30073928833008e-05,-0.000253677368164063,1.24391937255859,-2.34842300415039e-05,-0.000253200531005859,1.24392127990723,-2.15768814086914e-05,-0.000253677368164063,1.24391841888428,-1.77621841430664e-05,-0.000253200531005859,1.24391841888428, +-1.54376029968262e-05,-0.000259876251220703,1.24391841888428,-1.44243240356445e-05,-0.000260829925537109,1.24392127990723,-1.10864639282227e-05,-0.000260829925537109,1.24391841888428,-7.30156898498535e-06,-0.000260829925537109,1.24391651153564,-4.07695770263672e-05,-0.000166416168212891,1.24391746520996,-3.1590461730957e-05,-0.000166416168212891,1.24391078948975,-3.63588333129883e-05,-0.000195026397705078,1.24390935897827,-3.44514846801758e-05,-0.000209808349609375,1.24390888214111,-3.20672988891602e-05,-0.000216960906982422,1.24390888214111,-2.87294387817383e-05,-0.000230789184570313,1.2439079284668,-2.72989273071289e-05,-0.000231266021728516,1.2439079284668,-2.34842300415039e-05,-0.000237941741943359,1.2439079284668,-2.11000442504883e-05,-0.000245571136474609,1.2439079284668,-1.73449516296387e-05,-0.000252723693847656,1.24390888214111,-1.35302543640137e-05,-0.000253200531005859,1.24390983581543,-8.2552433013916e-06,-0.000253677368164063,1.2439079284668,-4.88758087158203e-06,-0.000260353088378906,1.2439079284668,-2.05636024475098e-06,-0.000267505645751953,1.24390888214111,-2.05636024475098e-06,-0.00026702880859375,1.24390602111816,-2.05636024475098e-06,-0.000267505645751953,1.24391460418701,-2.05636024475098e-06,-0.00026702880859375,1.24391651153564,0,-0.000267505645751953,1.24391841888428,0,-0.00026702880859375,1.24392509460449,0,-0.000274658203125,1.24393558502197,0,-0.000274181365966797,1.24393939971924,0,-0.000274658203125,1.24393939971924,0,-0.000267505645751953,1.24393939971924,0,-0.000267505645751953,1.24393367767334,0,-0.000267505645751953,1.24392509460449,0,-0.000260353088378906,1.24391937255859,-1.57952308654785e-06,-0.000260353088378906,1.24391555786133,-1.57952308654785e-06,-0.000260829925537109,1.24390983581543,0,-0.000260829925537109,1.2439079284668,-3.01003456115723e-06,-0.000253200531005859,1.24390506744385,-4.91738319396973e-06,-0.000252723693847656,1.24390602111816,-6.3478946685791e-06,-0.000253200531005859,1.24390316009521,-8.2552433013916e-06,-0.000246047973632813,1.24390316009521,-9.68575477600098e-06, +-0.000238895416259766,1.24390316009521,-1.06096267700195e-05,-0.000237941741943359,1.24390029907227,-1.2516975402832e-05,-0.000231266021728516,1.24389934539795,-1.40070915222168e-05,-0.000216960906982422,1.24389839172363,-1.53779983520508e-05,-0.000209808349609375,1.24389934539795,-1.68085098266602e-05,-0.000201702117919922,1.24390172958374,2.24262475967407e-06,-0.000267505645751953,1.24390888214111,2.23517417907715e-06,-0.00026702880859375,1.24390602111816,2.23517417907715e-06,-0.000267505645751953,1.24391460418701,2.23517417907715e-06,-0.00026702880859375,1.24391651153564,2.23517417907715e-06,-0.000267505645751953,1.24391841888428,2.23517417907715e-06,-0.00026702880859375,1.24392509460449,2.23517417907715e-06,-0.000274658203125,1.24393558502197,2.23517417907715e-06,-0.000274181365966797,1.24393939971924,2.23517417907715e-06,-0.000274658203125,1.24393939971924,1.75833702087402e-06,-0.000267505645751953,1.24393939971924,1.75833702087402e-06,-0.000267505645751953,1.24393367767334,1.75833702087402e-06,-0.000267505645751953,1.24392509460449,2.23517417907715e-06,-0.000260353088378906,1.24391937255859,2.23517417907715e-06,-0.000260353088378906,1.24391555786133,2.23517417907715e-06,-0.000260829925537109,1.24390983581543,2.23517417907715e-06,-0.000260829925537109,1.2439079284668,3.1888484954834e-06,-0.000253200531005859,1.24390506744385,5.0961971282959e-06,-0.000252723693847656,1.24390602111816,7.0035457611084e-06,-0.000253200531005859,1.24390316009521,8.43405723571777e-06,-0.000246047973632813,1.24390316009521,9.89437103271484e-06,-0.000238895416259766,1.24390316009521,1.13248825073242e-05,-0.000237941741943359,1.24390029907227,1.27553939819336e-05,-0.000231266021728516,1.24389934539795,1.46627426147461e-05,-0.000216960906982422,1.24389839172363,1.60336494445801e-05,-0.000209808349609375,1.24389934539795,1.74641609191895e-05,-0.000201702117919922,1.24390172958374,4.83989715576172e-05,-0.000158309936523438,1.24392747879028,4.88758087158203e-05,-0.000159263610839844,1.24392938613892,4.93526458740234e-05,-0.000158786773681641, +1.24393510818481,4.98294830322266e-05,-0.000158786773681641,1.24394464492798,4.93526458740234e-05,-0.000158786773681641,1.24393177032471,4.45842742919922e-05,-0.000151634216308594,1.24391937255859,-4.88758087158203e-05,-0.000159263610839844,1.24392938613892,-4.79221343994141e-05,-0.000158309936523438,1.24392747879028,-4.93526458740234e-05,-0.000158786773681641,1.24394464492798,-4.88758087158203e-05,-0.000158786773681641,1.24393510818481,-4.88758087158203e-05,-0.000158786773681641,1.24393177032471,-4.41074371337891e-05,-0.000152111053466797,1.24391889572144,5.50746917724609e-05,-0.000159740447998047,1.24394416809082,5.41210174560547e-05,-0.000158786773681641,1.2439489364624,5.26905059814453e-05,-0.000159263610839844,1.2439489364624,5.17368316650391e-05,-0.000159263610839844,1.24394989013672,4.98294830322266e-05,-0.000159740447998047,1.24394416809082,4.93526458740234e-05,-0.000159740447998047,1.24393463134766,4.93526458740234e-05,-0.000159263610839844,1.24392986297607,4.83989715576172e-05,-0.000158786773681641,1.24392986297607,4.79221343994141e-05,-0.000159740447998047,1.24392795562744,4.45842742919922e-05,-0.000158786773681641,1.24391937255859,-4.41074371337891e-05,-0.000158786773681641,1.24391889572144,-4.79221343994141e-05,-0.000159740447998047,1.24392795562744,-4.83989715576172e-05,-0.000158786773681641,1.24392986297607,-4.88758087158203e-05,-0.000159263610839844,1.24392986297607,-4.88758087158203e-05,-0.000159740447998047,1.24393463134766,-4.93526458740234e-05,-0.000159740447998047,1.24394416809082,-5.12599945068359e-05,-0.000159263610839844,1.24394989013672,-5.26905059814453e-05,-0.000159263610839844,1.2439489364624,-5.41210174560547e-05,-0.000158786773681641,1.2439489364624,-5.55515289306641e-05,-0.000159740447998047,1.24394416809082,-5.45978546142578e-05,-0.000159740447998047,1.24393463134766,5.50746917724609e-05,-0.000159740447998047,1.24393463134766,-4.69684600830078e-05,-0.000159740447998047,1.24392366409302,-4.69684600830078e-05,-0.000159263610839844,1.24392223358154,4.69684600830078e-05,-0.000159740447998047, +1.24392366409302,4.74452972412109e-05,-0.000159263610839844,1.24392223358154,0,-0.000210285186767578,1.24389743804932,-1.68085098266602e-05,-0.000181198120117188,1.24390554428101,-2.72989273071289e-05,-0.000158786773681641,1.2439112663269,0,-0.000181198120117188,1.24390840530396,-1.59144401550293e-05,-0.000173568725585938,1.24390888214111,3.03983688354492e-05,-0.00014495849609375,1.24391460418701,2.80141830444336e-05,-0.000159740447998047,1.24391269683838,3.56435775756836e-05,-0.0001373291015625,1.24391460418701,3.3259391784668e-05,-0.0001373291015625,1.24391460418701,-4.02927398681641e-05,-0.000130653381347656,1.24391555786133,-3.73125076293945e-05,-0.000130653381347656,1.24391651153564,-2.96831130981445e-05,-0.000144481658935547,1.2439136505127,-3.49283218383789e-05,-0.0001373291015625,1.2439136505127,-3.25441360473633e-05,-0.000137805938720703,1.24391508102417,4.07695770263672e-05,-0.000130653381347656,1.24391555786133,3.80277633666992e-05,-0.000130653381347656,1.24391651153564,7.95722007751465e-06,-0.000267505645751953,1.24392414093018,7.48038291931152e-06,-0.000267505645751953,1.24391651153564,3.23057174682617e-05,-0.000253200531005859,1.24392509460449,2.9444694519043e-05,-0.000253200531005859,1.24391841888428,4.31537628173828e-05,-0.000224113464355469,1.24392890930176,4.07695770263672e-05,-0.000223636627197266,1.24392318725586,2.1815299987793e-05,-0.000267505645751953,1.24394035339355,2.46763229370117e-05,-0.000267982482910156,1.24393939971924,2.1815299987793e-05,-0.00026702880859375,1.24393463134766,1.89542770385742e-05,-0.000266551971435547,1.24393939971924,2.1815299987793e-05,-0.000267505645751953,1.24393939971924,2.22921371459961e-05,-0.000253200531005859,1.24390888214111,2.32458114624023e-05,-0.000253200531005859,1.24391269683838,9.89437103271484e-06,-0.000259876251220703,1.24390983581543,1.0371208190918e-05,-0.000260353088378906,1.24390602111816,3.94582748413086e-05,-0.000245571136474609,1.2439432144165,3.98159027099609e-05,-0.000238895416259766,1.24393939971924,3.88622283935547e-05,-0.000245571136474609, +1.24393653869629,3.94582748413086e-05,-0.000246047973632813,1.24394035339355,3.98159027099609e-05,-0.000246047973632813,1.24394035339355,3.56435775756836e-05,-0.000230789184570313,1.24391269683838,3.61204147338867e-05,-0.000230789184570313,1.24391651153564,3.08752059936523e-05,-0.000245571136474609,1.24391078948975,3.13520431518555e-05,-0.000246047973632813,1.24390697479248,4.88758087158203e-05,-0.000209331512451172,1.24394416809082,5.12599945068359e-05,-0.000202655792236328,1.24394226074219,5.03063201904297e-05,-0.000209331512451172,1.24394130706787,4.88758087158203e-05,-0.000209808349609375,1.24394226074219,5.03063201904297e-05,-0.000209331512451172,1.2439432144165,5.03063201904297e-05,-0.000202655792236328,1.24391555786133,4.98294830322266e-05,-0.000195503234863281,1.24391841888428,4.31537628173828e-05,-0.000216960906982422,1.2439136505127,4.36305999755859e-05,-0.000217437744140625,1.24390935897827,5.84125518798828e-05,-0.000174045562744141,1.24393749237061,5.84125518798828e-05,-0.000173568725585938,1.24394416809082,5.50746917724609e-05,-0.000166893005371094,1.24392652511597,5.50746917724609e-05,-0.000159263610839844,1.24392414093018,5.55515289306641e-05,-0.000181198120117188,1.24391174316406,5.41210174560547e-05,-0.000181198120117188,1.24391651153564,8.43405723571777e-06,-0.000274658203125,1.24393844604492,1.26957893371582e-05,-0.000273704528808594,1.24393844604492,8.9108943939209e-06,-0.000274658203125,1.24393463134766,5.0961971282959e-06,-0.000274181365966797,1.24393653869629,8.9108943939209e-06,-0.000274181365966797,1.24393653869629,1.56164169311523e-05,-0.000267982482910156,1.24393939971924,1.60932540893555e-05,-0.000267505645751953,1.24393749237061,1.60336494445801e-05,-0.000267505645751953,1.24393653869629,1.60932540893555e-05,-0.000266551971435547,1.24393844604492,1.60932540893555e-05,-0.00026702880859375,1.24393844604492,1.60932540893555e-05,-0.000260829925537109,1.24392509460449,1.50799751281738e-05,-0.000260353088378906,1.24392032623291,3.56435775756836e-05,-0.000260353088378906,1.24393939971924,3.75509262084961e-05, +-0.000252723693847656,1.24393939971924,3.51667404174805e-05,-0.000260353088378906,1.24393463134766,3.3259391784668e-05,-0.000259876251220703,1.24393844604492,3.56435775756836e-05,-0.000260353088378906,1.24393939971924,3.7074089050293e-05,-0.000252723693847656,1.24394226074219,3.65972518920898e-05,-0.000246047973632813,1.24393939971924,3.7074089050293e-05,-0.000246047973632813,1.24393463134766,3.85046005249023e-05,-0.000253200531005859,1.24393939971924,3.75509262084961e-05,-0.000245571136474609,1.24393939971924,3.46899032592773e-05,-0.000246047973632813,1.24392604827881,3.3259391784668e-05,-0.000246047973632813,1.24392127990723,4.22000885009766e-05,-0.000231266021728516,1.24394416809082,4.45842742919922e-05,-0.000224113464355469,1.24394416809082,4.31537628173828e-05,-0.000231742858886719,1.24393939971924,4.22000885009766e-05,-0.000231742858886719,1.24394226074219,4.31537628173828e-05,-0.000230789184570313,1.24394130706787,4.55379486083984e-05,-0.000216484069824219,1.2439432144165,4.55379486083984e-05,-0.000209808349609375,1.24394416809082,4.60147857666016e-05,-0.000217437744140625,1.24393939971924,4.60147857666016e-05,-0.000216484069824219,1.24394416809082,4.60147857666016e-05,-0.000216960906982422,1.24394226074219,4.69684600830078e-05,-0.000209331512451172,1.24392890930176,4.64916229248047e-05,-0.000209808349609375,1.24392509460449,5.69820404052734e-05,-0.000181198120117188,1.24394798278809,5.79357147216797e-05,-0.000173568725585938,1.24394702911377,5.79357147216797e-05,-0.000180721282958984,1.24394512176514,5.74588775634766e-05,-0.000188350677490234,1.24394512176514,5.79357147216797e-05,-0.000180721282958984,1.24394702911377,5.79357147216797e-05,-0.000181198120117188,1.24393558502197,5.55515289306641e-05,-0.000181198120117188,1.24392604827881,2.84910202026367e-05,-0.000260353088378906,1.24394130706787,2.84910202026367e-05,-0.000260829925537109,1.24393939971924,2.84910202026367e-05,-0.000260353088378906,1.24393463134766,2.89678573608398e-05,-0.000260829925537109,1.24393844604492,2.84910202026367e-05,-0.000260829925537109, +1.24393939971924,2.70605087280273e-05,-0.000253200531005859,1.24392509460449,2.61068344116211e-05,-0.000253200531005859,1.24391937255859,2.13384628295898e-05,-0.000260353088378906,1.24392414093018,2.08616256713867e-05,-0.000259876251220703,1.24391746520996,2.32458114624023e-05,-0.000252723693847656,1.24390411376953,1.65104866027832e-05,-0.000260829925537109,1.24390983581543,1.79409980773926e-05,-0.000261306762695313,1.24390506744385,1.70469284057617e-05,-0.000260353088378906,1.24391651153564,1.2814998626709e-06,-0.000267982482910156,1.24390888214111,1.2814998626709e-06,-0.00026702880859375,1.24390411376953,1.2814998626709e-06,-0.000268459320068359,1.24391555786133,1.2814998626709e-06,-0.000267505645751953,1.2439136505127,1.0371208190918e-05,-0.000260353088378906,1.2439136505127,3.94582748413086e-05,-0.000230789184570313,1.24394226074219,3.94582748413086e-05,-0.000230789184570313,1.24394130706787,3.93390655517578e-05,-0.000231266021728516,1.24393939971924,3.98159027099609e-05,-0.000238895416259766,1.24394130706787,3.93390655517578e-05,-0.000230312347412109,1.24394035339355,3.89814376831055e-05,-0.000231266021728516,1.24392986297607,3.75509262084961e-05,-0.000230312347412109,1.24392604827881,3.80277633666992e-05,-0.000238895416259766,1.24392604827881,3.46899032592773e-05,-0.000237941741943359,1.24391841888428,3.65972518920898e-05,-0.000230789184570313,1.24390888214111,3.27825546264648e-05,-0.000238418579101563,1.24391269683838,3.37362289428711e-05,-0.000239372253417969,1.2439079284668,3.27825546264648e-05,-0.000238895416259766,1.24391937255859,2.65836715698242e-05,-0.000252723693847656,1.24391078948975,2.80141830444336e-05,-0.000252723693847656,1.24390697479248,2.61068344116211e-05,-0.000252723693847656,1.24391841888428,3.08752059936523e-05,-0.000245571136474609,1.24391651153564,5.26905059814453e-05,-0.000187873840332031,1.24394607543945,5.31673431396484e-05,-0.000187873840332031,1.24394416809082,5.45978546142578e-05,-0.000187397003173828,1.2439432144165,5.41210174560547e-05,-0.000195503234863281,1.24394512176514,5.36441802978516e-05, +-0.000188350677490234,1.24394512176514,5.36441802978516e-05,-0.000187873840332031,1.24393367767334,5.17368316650391e-05,-0.000188827514648438,1.24392795562744,5.12599945068359e-05,-0.000202655792236328,1.24393177032471,4.88758087158203e-05,-0.000202655792236328,1.24392318725586,5.07831573486328e-05,-0.000202178955078125,1.24391078948975,4.60147857666016e-05,-0.000209331512451172,1.24391555786133,4.74452972412109e-05,-0.000209808349609375,1.2439112663269,4.64916229248047e-05,-0.000209331512451172,1.24392032623291,3.94582748413086e-05,-0.000223636627197266,1.24391460418701,3.98159027099609e-05,-0.000223159790039063,1.2439079284668,3.89814376831055e-05,-0.000223636627197266,1.24392127990723,4.36305999755859e-05,-0.000216484069824219,1.24391841888428,5.69820404052734e-05,-0.000165462493896484,1.24393606185913,5.69820404052734e-05,-0.000165939331054688,1.24394559860229,5.60283660888672e-05,-0.000166893005371094,1.24392890930176,5.45978546142578e-05,-0.000166416168212891,1.24392509460449,5.60283660888672e-05,-0.000166893005371094,1.24392700195313,5.65052032470703e-05,-0.000159263610839844,1.2439136505127,5.50746917724609e-05,-0.000159740447998047,1.24391937255859,5.55515289306641e-05,-0.000165939331054688,1.2439136505127,5.45978546142578e-05,-0.000166893005371094,1.24391746520996,5.45978546142578e-05,-0.000165939331054688,1.24392127990723,5.45978546142578e-05,-0.000180721282958984,1.24392414093018,5.41210174560547e-05,-0.000180721282958984,1.24392223358154,0,-0.000274181365966797,1.24393844604492,1.2814998626709e-06,-0.000274658203125,1.24393939971924,2.23517417907715e-06,-0.000274658203125,1.24393939971924,1.2814998626709e-06,-0.000274181365966797,1.24393463134766,1.2814998626709e-06,-0.000273704528808594,1.24393653869629,6.52670860290527e-06,-0.000261306762695313,1.24390602111816,6.52670860290527e-06,-0.000260829925537109,1.2439079284668,6.52670860290527e-06,-0.000259876251220703,1.24391460418701,6.52670860290527e-06,-0.000260353088378906,1.2439136505127,0,-0.000267982482910156,1.24392604827881,1.2814998626709e-06,-0.00026702880859375, +1.24391841888428,1.46627426147461e-05,-0.000260353088378906,1.24390697479248,1.37090682983398e-05,-0.000260829925537109,1.24390983581543,1.41263008117676e-05,-0.000267505645751953,1.24392509460449,1.50799751281738e-05,-0.00026702880859375,1.24393367767334,1.4185905456543e-05,-0.000260353088378906,1.24391746520996,1.36494636535645e-05,-0.000259876251220703,1.24391746520996,1.08480453491211e-05,-0.000260353088378906,1.24391555786133,1.22785568237305e-05,-0.000260353088378906,1.24391651153564,1.75237655639648e-05,-0.000260353088378906,1.24392700195313,1.69873237609863e-05,-0.000267505645751953,1.24393367767334,2.08616256713867e-05,-0.0002593994140625,1.24390316009521,1.99079513549805e-05,-0.000253200531005859,1.24390983581543,1.70469284057617e-05,-0.000260353088378906,1.24391746520996,1.69873237609863e-05,-0.000260353088378906,1.24391937255859,1.99079513549805e-05,-0.000252723693847656,1.24391555786133,1.99079513549805e-05,-0.000253677368164063,1.24391269683838,2.61068344116211e-05,-0.000252723693847656,1.24390697479248,2.46763229370117e-05,-0.000253677368164063,1.24391078948975,2.5629997253418e-05,-0.000260353088378906,1.24392318725586,2.70605087280273e-05,-0.000260353088378906,1.24393463134766,2.32458114624023e-05,-0.000253200531005859,1.24391651153564,2.41994857788086e-05,-0.000252723693847656,1.24391651153564,2.5629997253418e-05,-0.000253200531005859,1.24391841888428,2.51531600952148e-05,-0.000253200531005859,1.24391460418701,2.84910202026367e-05,-0.000252723693847656,1.24392604827881,3.03983688354492e-05,-0.000260829925537109,1.24393558502197,3.03983688354492e-05,-0.000246047973632813,1.24390697479248,2.89678573608398e-05,-0.000245571136474609,1.24391078948975,2.84910202026367e-05,-0.000245571136474609,1.24391555786133,2.84910202026367e-05,-0.000246524810791016,1.2439136505127,2.65836715698242e-05,-0.000252723693847656,1.24391746520996,2.70605087280273e-05,-0.000253200531005859,1.24391841888428,3.27825546264648e-05,-0.000245094299316406,1.24390602111816,3.18288803100586e-05,-0.000245571136474609,1.24391078948975, +3.51667404174805e-05,-0.000245571136474609,1.24392509460449,3.75509262084961e-05,-0.000252723693847656,1.24393558502197,3.27825546264648e-05,-0.000245571136474609,1.24391937255859,3.23057174682617e-05,-0.000246047973632813,1.24391841888428,3.13520431518555e-05,-0.000246047973632813,1.24391746520996,3.23057174682617e-05,-0.000246524810791016,1.24391937255859,3.56435775756836e-05,-0.000245571136474609,1.24392700195313,3.75509262084961e-05,-0.000246047973632813,1.24393844604492,3.46899032592773e-05,-0.000239372253417969,1.2439079284668,3.42130661010742e-05,-0.000238895416259766,1.24391269683838,3.3259391784668e-05,-0.000237941741943359,1.24392032623291,3.37362289428711e-05,-0.000245571136474609,1.24392223358154,3.37362289428711e-05,-0.000238418579101563,1.24391651153564,3.37362289428711e-05,-0.000238895416259766,1.24391460418701,3.89814376831055e-05,-0.000230789184570313,1.24390888214111,3.7074089050293e-05,-0.000230312347412109,1.2439136505127,3.89814376831055e-05,-0.000238895416259766,1.24392795562744,3.98159027099609e-05,-0.000238418579101563,1.24393749237061,3.56435775756836e-05,-0.000230312347412109,1.24391746520996,3.7074089050293e-05,-0.000230312347412109,1.24391937255859,3.75509262084961e-05,-0.000231266021728516,1.24392223358154,3.75509262084961e-05,-0.000230312347412109,1.24391937255859,3.98159027099609e-05,-0.000231266021728516,1.24392986297607,4.02927398681641e-05,-0.000231742858886719,1.24393939971924,4.22000885009766e-05,-0.000224113464355469,1.2439079284668,4.07695770263672e-05,-0.000223636627197266,1.24391269683838,4.02927398681641e-05,-0.000223636627197266,1.24391937255859,4.07695770263672e-05,-0.000223159790039063,1.24391841888428,3.89814376831055e-05,-0.000230312347412109,1.24392223358154,3.94582748413086e-05,-0.000230789184570313,1.24392509460449,4.60147857666016e-05,-0.000216484069824219,1.2439112663269,4.50611114501953e-05,-0.000216960906982422,1.2439136505127,4.64916229248047e-05,-0.000216960906982422,1.24392890930176,4.60147857666016e-05,-0.000216484069824219,1.24393844604492,4.60147857666016e-05, +-0.000209331512451172,1.24392223358154,4.55379486083984e-05,-0.000209331512451172,1.24392032623291,4.36305999755859e-05,-0.000216960906982422,1.24391937255859,4.50611114501953e-05,-0.000216960906982422,1.24392318725586,4.79221343994141e-05,-0.000209808349609375,1.24393177032471,4.74452972412109e-05,-0.000209808349609375,1.24393939971924,4.83989715576172e-05,-0.000203132629394531,1.24391174316406,4.79221343994141e-05,-0.000202178955078125,1.24391555786133,4.60147857666016e-05,-0.000209331512451172,1.24392318725586,4.69684600830078e-05,-0.000209808349609375,1.24392414093018,4.79221343994141e-05,-0.000202178955078125,1.24391841888428,4.74452972412109e-05,-0.000202178955078125,1.24391841888428,5.36441802978516e-05,-0.000187873840332031,1.2439112663269,5.22136688232422e-05,-0.000187873840332031,1.24391746520996,5.36441802978516e-05,-0.000195503234863281,1.24393177032471,5.36441802978516e-05,-0.000195503234863281,1.24394130706787,4.98294830322266e-05,-0.000195503234863281,1.24392032623291,5.12599945068359e-05,-0.000195503234863281,1.24392223358154,5.07831573486328e-05,-0.000188827514648438,1.24392509460449,5.12599945068359e-05,-0.000188827514648438,1.24392223358154,3.1888484954834e-06,-0.000266551971435547,1.24392414093018,3.1888484954834e-06,-0.000274658203125,1.24393463134766,5.55515289306641e-05,-0.000166416168212891,1.24394845962524,5.50746917724609e-05,-0.000166893005371094,1.2439489364624,5.79357147216797e-05,-0.000166416168212891,1.24394750595093,5.69820404052734e-05,-0.000166416168212891,1.24394750595093,1.70469284057617e-05,-0.00026702880859375,1.24393939971924,1.69873237609863e-05,-0.000267505645751953,1.24393939971924,2.70605087280273e-05,-0.00026702880859375,1.24394130706787,2.70605087280273e-05,-0.000267505645751953,1.24393844604492,1.46031379699707e-05,-0.000274658203125,1.24393844604492,1.46627426147461e-05,-0.000267505645751953,1.24393844604492,3.03983688354492e-05,-0.000260829925537109,1.24393939971924,3.08752059936523e-05,-0.000260829925537109,1.24393749237061,3.85046005249023e-05,-0.000252723693847656, +1.24394226074219,3.85046005249023e-05,-0.000253200531005859,1.24393939971924,3.75509262084961e-05,-0.000246524810791016,1.24393939971924,3.80277633666992e-05,-0.000246047973632813,1.24393939971924,3.93390655517578e-05,-0.000238418579101563,1.2439432144165,3.98159027099609e-05,-0.000238418579101563,1.24394130706787,3.98159027099609e-05,-0.000230312347412109,1.24394035339355,4.02927398681641e-05,-0.000230312347412109,1.24394035339355,4.45842742919922e-05,-0.000216484069824219,1.24394416809082,4.55379486083984e-05,-0.000216960906982422,1.24394416809082,4.64916229248047e-05,-0.000209331512451172,1.2439432144165,4.74452972412109e-05,-0.000209331512451172,1.24394226074219,5.17368316650391e-05,-0.000194549560546875,1.24394512176514,5.26905059814453e-05,-0.000195503234863281,1.24394416809082,5.74588775634766e-05,-0.000173568725585938,1.24394845962524,5.79357147216797e-05,-0.000173568725585938,1.24394750595093,5.57303428649902e-06,-0.00026702880859375,1.24392414093018,5.57303428649902e-06,-0.000260353088378906,1.24391555786133,2.5629997253418e-05,-0.000253200531005859,1.24392414093018,2.46763229370117e-05,-0.000245571136474609,1.24391841888428,3.46899032592773e-05,-0.000223159790039063,1.24392890930176,3.51667404174805e-05,-0.000224113464355469,1.24392127990723,1.65700912475586e-05,-0.000260829925537109,1.24393939971924,1.84178352355957e-05,-0.000260353088378906,1.24393367767334,2.08616256713867e-05,-0.000259876251220703,1.24393844604492,1.89542770385742e-05,-0.000267982482910156,1.24393939971924,1.89542770385742e-05,-0.000260353088378906,1.24393749237061,1.84774398803711e-05,-0.000253200531005859,1.24391078948975,2.08616256713867e-05,-0.000252723693847656,1.2439136505127,1.79409980773926e-05,-0.000252723693847656,1.2439136505127,1.88946723937988e-05,-0.000253200531005859,1.24391174316406,0,-0.000260353088378906,1.24390697479248,1.75833702087402e-06,-0.000253677368164063,1.24390697479248,2.71201133728027e-06,-0.000259876251220703,1.24390888214111,0,-0.000260829925537109,1.24390602111816,1.2814998626709e-06,-0.000260353088378906, +1.24390697479248,3.18288803100586e-05,-0.000245571136474609,1.24393939971924,3.08752059936523e-05,-0.000238895416259766,1.24393844604492,3.23057174682617e-05,-0.000238895416259766,1.24394130706787,3.27825546264648e-05,-0.000238895416259766,1.24394226074219,3.18288803100586e-05,-0.000238895416259766,1.24394035339355,3.13520431518555e-05,-0.000230789184570313,1.2439136505127,3.23057174682617e-05,-0.000230789184570313,1.24391651153564,3.08752059936523e-05,-0.000231742858886719,1.24391460418701,3.13520431518555e-05,-0.000230789184570313,1.24391555786133,2.27689743041992e-05,-0.000246047973632813,1.2439079284668,1.51395797729492e-05,-0.000246047973632813,1.24390602111816,9.38773155212402e-06,-0.000245571136474609,1.24390029907227,1.75237655639648e-05,-0.000238418579101563,1.24390411376953,1.65104866027832e-05,-0.000245571136474609,1.24390697479248,4.02927398681641e-05,-0.000209331512451172,1.24394416809082,4.02927398681641e-05,-0.000202655792236328,1.24394035339355,4.17232513427734e-05,-0.000202655792236328,1.24394512176514,4.17232513427734e-05,-0.000202655792236328,1.24394512176514,4.12464141845703e-05,-0.000202655792236328,1.24394416809082,4.26769256591797e-05,-0.000195503234863281,1.24391651153564,4.45842742919922e-05,-0.000187873840332031,1.24391841888428,4.22000885009766e-05,-0.000194549560546875,1.24391746520996,4.26769256591797e-05,-0.000195503234863281,1.24391841888428,3.37362289428711e-05,-0.000216960906982422,1.24390888214111,2.37226486206055e-05,-0.000216960906982422,1.24390316009521,1.51395797729492e-05,-0.000216960906982422,1.24389743804932,2.61068344116211e-05,-0.000209808349609375,1.24390411376953,2.51531600952148e-05,-0.000216484069824219,1.24390316009521,4.64916229248047e-05,-0.000173568725585938,1.24394416809082,4.64916229248047e-05,-0.000173568725585938,1.24393606185913,4.88758087158203e-05,-0.000159263610839844,1.24392700195313,4.83989715576172e-05,-0.000159263610839844,1.24392652511597,3.66568565368652e-06,-0.000267982482910156,1.24393844604492,6.04987144470215e-06,-0.00026702880859375,1.24393367767334, +8.9108943939209e-06,-0.000267982482910156,1.24393653869629,6.52670860290527e-06,-0.000267505645751953,1.24393939971924,6.04987144470215e-06,-0.000267505645751953,1.24393749237061,1.31726264953613e-05,-0.000267982482910156,1.24393844604492,1.46031379699707e-05,-0.000268459320068359,1.24393558502197,1.56164169311523e-05,-0.00026702880859375,1.24393844604492,1.46031379699707e-05,-0.000267982482910156,1.24393939971924,1.46627426147461e-05,-0.000267982482910156,1.24393844604492,1.46031379699707e-05,-0.000260829925537109,1.24392509460449,1.37090682983398e-05,-0.000260829925537109,1.24392032623291,2.70605087280273e-05,-0.000253200531005859,1.24393939971924,2.75373458862305e-05,-0.000252723693847656,1.24393749237061,2.99215316772461e-05,-0.000253200531005859,1.24394035339355,2.99215316772461e-05,-0.000253200531005859,1.24394130706787,2.80141830444336e-05,-0.000253200531005859,1.24393939971924,3.23057174682617e-05,-0.000245571136474609,1.24393939971924,3.23057174682617e-05,-0.000245571136474609,1.24393653869629,3.37362289428711e-05,-0.000245571136474609,1.24393939971924,3.37362289428711e-05,-0.000246524810791016,1.24394130706787,3.3259391784668e-05,-0.000246047973632813,1.24393939971924,3.08752059936523e-05,-0.000245571136474609,1.24392700195313,3.03983688354492e-05,-0.000246524810791016,1.24392223358154,3.56435775756836e-05,-0.000231742858886719,1.24394035339355,3.46899032592773e-05,-0.000223159790039063,1.24393939971924,3.51667404174805e-05,-0.000224590301513672,1.24394130706787,3.51667404174805e-05,-0.000223636627197266,1.24394416809082,3.46899032592773e-05,-0.000223159790039063,1.24394226074219,3.80277633666992e-05,-0.000216484069824219,1.24394226074219,3.89814376831055e-05,-0.000209331512451172,1.24393939971924,4.07695770263672e-05,-0.000209808349609375,1.24394130706787,3.98159027099609e-05,-0.000209331512451172,1.24394416809082,3.94582748413086e-05,-0.000209808349609375,1.24394130706787,3.85046005249023e-05,-0.000209808349609375,1.24393081665039,3.94582748413086e-05,-0.000209808349609375,1.24392509460449,4.64916229248047e-05, +-0.000180721282958984,1.24394512176514,4.60147857666016e-05,-0.000181198120117188,1.24394416809082,4.69684600830078e-05,-0.000174045562744141,1.24394798278809,4.79221343994141e-05,-0.000181198120117188,1.24394702911377,4.64916229248047e-05,-0.000180721282958984,1.24394702911377,4.60147857666016e-05,-0.000180721282958984,1.24393463134766,4.64916229248047e-05,-0.000181198120117188,1.24392700195313,2.46763229370117e-05,-0.000260353088378906,1.24393939971924,2.51531600952148e-05,-0.000260829925537109,1.24393558502197,2.65836715698242e-05,-0.000260353088378906,1.24393939971924,2.61068344116211e-05,-0.000260353088378906,1.24393939971924,2.5629997253418e-05,-0.000260829925537109,1.24393939971924,2.41994857788086e-05,-0.000253200531005859,1.24392414093018,2.37226486206055e-05,-0.000253200531005859,1.24392032623291,1.8000602722168e-05,-0.000260353088378906,1.24392509460449,1.69873237609863e-05,-0.000252723693847656,1.24391746520996,1.5556812286377e-05,-0.000253200531005859,1.24390983581543,9.38773155212402e-06,-0.000253677368164063,1.24390697479248,6.04987144470215e-06,-0.000252723693847656,1.24390506744385,1.26957893371582e-05,-0.000252723693847656,1.24390697479248,1.13248825073242e-05,-0.000253200531005859,1.24390697479248,1.12652778625488e-05,-0.000252723693847656,1.24390888214111,6.04987144470215e-06,-0.000253200531005859,1.2439079284668,4.14252281188965e-06,-0.000253200531005859,1.24390697479248,7.95722007751465e-06,-0.000252723693847656,1.2439079284668,1.41263008117676e-05,-0.000252723693847656,1.24391078948975,1.60932540893555e-05,-0.000253200531005859,1.2439136505127,1.36494636535645e-05,-0.000259876251220703,1.24391460418701,1.50799751281738e-05,-0.000260353088378906,1.24391460418701,2.23517417907715e-06,-0.000260353088378906,1.24390888214111,1.2814998626709e-06,-0.000260829925537109,1.24391078948975,0,-0.000260353088378906,1.2439079284668,0,-0.000260353088378906,1.24390888214111,0,-0.000260353088378906,1.24391460418701,2.23517417907715e-06,-0.000260829925537109,1.24391269683838,1.2814998626709e-06,-0.000260829925537109, +1.24391269683838,8.43405723571777e-06,-0.000260829925537109,1.24391174316406,1.07884407043457e-05,-0.000260829925537109,1.2439136505127,7.48038291931152e-06,-0.000260353088378906,1.24391174316406,8.9108943939209e-06,-0.000260353088378906,1.24391269683838,3.42130661010742e-05,-0.000231266021728516,1.24394035339355,3.56435775756836e-05,-0.000230789184570313,1.24393844604492,3.7074089050293e-05,-0.000231266021728516,1.24394035339355,3.61204147338867e-05,-0.000230789184570313,1.24394035339355,3.56435775756836e-05,-0.000230789184570313,1.24394130706787,3.51667404174805e-05,-0.000231266021728516,1.24392890930176,3.46899032592773e-05,-0.000230789184570313,1.24392414093018,3.08752059936523e-05,-0.000238895416259766,1.24392795562744,2.99215316772461e-05,-0.000238418579101563,1.24392127990723,2.80141830444336e-05,-0.000231266021728516,1.2439079284668,1.94311141967773e-05,-0.000238895416259766,1.24390411376953,1.22189521789551e-05,-0.000231266021728516,1.24389934539795,2.1815299987793e-05,-0.000231266021728516,1.24390411376953,2.08616256713867e-05,-0.000231266021728516,1.24390506744385,2.5629997253418e-05,-0.000237941741943359,1.24390888214111,1.07884407043457e-05,-0.000238895416259766,1.24390029907227,1.84774398803711e-05,-0.000238418579101563,1.24390506744385,2.89678573608398e-05,-0.000238895416259766,1.2439136505127,2.9444694519043e-05,-0.000238418579101563,1.24391555786133,2.89678573608398e-05,-0.000238418579101563,1.24391651153564,2.9444694519043e-05,-0.000237941741943359,1.24391555786133,1.9371509552002e-05,-0.000246047973632813,1.2439079284668,7.95722007751465e-06,-0.000246047973632813,1.24390316009521,1.36494636535645e-05,-0.000245571136474609,1.24390602111816,2.27689743041992e-05,-0.000245571136474609,1.24391174316406,2.37226486206055e-05,-0.000245571136474609,1.2439136505127,2.22921371459961e-05,-0.000253200531005859,1.2439136505127,2.32458114624023e-05,-0.000253200531005859,1.24391269683838,2.61068344116211e-05,-0.000245571136474609,1.2439136505127,2.75373458862305e-05,-0.000245571136474609,1.24391460418701,2.5629997253418e-05, +-0.000245571136474609,1.24391460418701,2.65836715698242e-05,-0.000246047973632813,1.24391460418701,4.45842742919922e-05,-0.000195026397705078,1.24394512176514,4.60147857666016e-05,-0.000188350677490234,1.2439432144165,4.74452972412109e-05,-0.000187873840332031,1.24394416809082,4.69684600830078e-05,-0.000187873840332031,1.24394702911377,4.60147857666016e-05,-0.000187873840332031,1.24394607543945,4.60147857666016e-05,-0.000188827514648438,1.24393367767334,4.55379486083984e-05,-0.000187873840332031,1.24392604827881,3.98159027099609e-05,-0.000202178955078125,1.24393177032471,3.98159027099609e-05,-0.000201702117919922,1.24392414093018,1.74641609191895e-05,-0.000180721282958984,1.24390649795532,3.3259391784668e-05,-0.000181674957275391,1.24391031265259,2.5629997253418e-05,-0.000195503234863281,1.24390363693237,1.13248825073242e-05,-0.000195503234863281,1.24390077590942,2.1815299987793e-05,-0.000188827514648438,1.24390459060669,3.51667404174805e-05,-0.000202655792236328,1.24390935897827,1.65104866027832e-05,-0.000202178955078125,1.24389886856079,2.65836715698242e-05,-0.000202655792236328,1.24390459060669,3.98159027099609e-05,-0.000209808349609375,1.24391555786133,4.07695770263672e-05,-0.000202178955078125,1.24391841888428,3.98159027099609e-05,-0.000209331512451172,1.24391937255859,4.02927398681641e-05,-0.000209331512451172,1.24391841888428,3.03983688354492e-05,-0.000224113464355469,1.24390888214111,1.36494636535645e-05,-0.000223159790039063,1.24390029907227,2.27689743041992e-05,-0.000223159790039063,1.24390316009521,3.42130661010742e-05,-0.000224113464355469,1.2439136505127,3.51667404174805e-05,-0.000223636627197266,1.24391841888428,3.42130661010742e-05,-0.000231266021728516,1.24391841888428,3.46899032592773e-05,-0.000224113464355469,1.24391746520996,3.7074089050293e-05,-0.000216960906982422,1.24391460418701,3.85046005249023e-05,-0.000216484069824219,1.24391651153564,3.65972518920898e-05,-0.000223636627197266,1.24391651153564,3.7074089050293e-05,-0.000217437744140625,1.24391651153564,4.83989715576172e-05,-0.000166893005371094, +1.24394559860229,4.83989715576172e-05,-0.000166416168212891,1.24393606185913,4.88758087158203e-05,-0.000158786773681641,1.24393033981323,4.83989715576172e-05,-0.000166893005371094,1.24392414093018,4.69684600830078e-05,-0.000166416168212891,1.24392700195313,4.60147857666016e-05,-0.000166416168212891,1.24391937255859,4.69684600830078e-05,-0.000166416168212891,1.24392127990723,4.64916229248047e-05,-0.000174045562744141,1.24392032623291,4.69684600830078e-05,-0.000166893005371094,1.24392080307007,4.64916229248047e-05,-0.000180721282958984,1.24392032623291,4.60147857666016e-05,-0.000188827514648438,1.24392127990723,4.74452972412109e-05,-0.000173568725585938,1.24392318725586,0,-0.000267505645751953,1.24393939971924,0,-0.00026702880859375,1.24393463134766,1.75833702087402e-06,-0.000267505645751953,1.24393844604492,0,-0.00026702880859375,1.24393939971924,0,-0.00026702880859375,1.24393653869629,6.04987144470215e-06,-0.000260353088378906,1.24391460418701,1.2814998626709e-06,-0.000267982482910156,1.24391651153564,1.2814998626709e-06,-0.000267982482910156,1.24391841888428,1.18017196655273e-05,-0.000267505645751953,1.24393367767334,1.12652778625488e-05,-0.000260353088378906,1.24392414093018,1.31726264953613e-05,-0.000260829925537109,1.24391841888428,9.38773155212402e-06,-0.000260353088378906,1.2439136505127,9.89437103271484e-06,-0.000260829925537109,1.24391841888428,1.56164169311523e-05,-0.000259876251220703,1.24393367767334,1.56164169311523e-05,-0.000259876251220703,1.24392604827881,1.5556812286377e-05,-0.000260353088378906,1.24391746520996,1.56164169311523e-05,-0.000260353088378906,1.24392032623291,1.70469284057617e-05,-0.000252723693847656,1.24391651153564,2.27689743041992e-05,-0.000260829925537109,1.24393749237061,2.1815299987793e-05,-0.000253200531005859,1.24392509460449,1.99079513549805e-05,-0.000253200531005859,1.24391555786133,2.03847885131836e-05,-0.000252723693847656,1.24391841888428,2.27689743041992e-05,-0.000253677368164063,1.24391841888428,2.61068344116211e-05,-0.000253200531005859,1.24393463134766,2.51531600952148e-05, +-0.000252723693847656,1.24392509460449,2.41994857788086e-05,-0.000246047973632813,1.24391651153564,2.37226486206055e-05,-0.000253200531005859,1.24391937255859,2.41994857788086e-05,-0.000253200531005859,1.24391937255859,3.03983688354492e-05,-0.000246524810791016,1.24393653869629,2.84910202026367e-05,-0.000245571136474609,1.24392509460449,2.99215316772461e-05,-0.000246047973632813,1.24392032623291,2.70605087280273e-05,-0.000245571136474609,1.24391841888428,2.70605087280273e-05,-0.000245571136474609,1.24391937255859,3.23057174682617e-05,-0.000245571136474609,1.24393653869629,3.08752059936523e-05,-0.000246524810791016,1.24392604827881,3.03983688354492e-05,-0.000238895416259766,1.24392032623291,3.03983688354492e-05,-0.000238895416259766,1.24392318725586,2.99215316772461e-05,-0.000238418579101563,1.24391841888428,3.27825546264648e-05,-0.000231266021728516,1.24393653869629,3.23057174682617e-05,-0.000231266021728516,1.24392890930176,3.18288803100586e-05,-0.000231266021728516,1.24392032623291,3.18288803100586e-05,-0.000230789184570313,1.24392127990723,3.46899032592773e-05,-0.000230312347412109,1.24392318725586,3.61204147338867e-05,-0.000231266021728516,1.24393844604492,3.56435775756836e-05,-0.000231266021728516,1.24392986297607,3.56435775756836e-05,-0.000223636627197266,1.24391937255859,3.61204147338867e-05,-0.000223159790039063,1.24392318725586,3.56435775756836e-05,-0.000224113464355469,1.24392414093018,3.56435775756836e-05,-0.000216484069824219,1.24394035339355,3.61204147338867e-05,-0.000216960906982422,1.24393081665039,3.98159027099609e-05,-0.000209331512451172,1.24392318725586,3.80277633666992e-05,-0.000216484069824219,1.24391937255859,3.7074089050293e-05,-0.000216960906982422,1.24392414093018,4.02927398681641e-05,-0.000209808349609375,1.24394035339355,3.94582748413086e-05,-0.000209331512451172,1.24393081665039,4.02927398681641e-05,-0.000209331512451172,1.24392318725586,3.93390655517578e-05,-0.000209808349609375,1.24392509460449,4.12464141845703e-05,-0.000202655792236328,1.24391937255859,4.26769256591797e-05,-0.000194549560546875, +1.24394226074219,4.22000885009766e-05,-0.000195503234863281,1.24393367767334,4.31537628173828e-05,-0.000195503234863281,1.24392032623291,4.26769256591797e-05,-0.000195026397705078,1.24392318725586,4.60147857666016e-05,-0.000188827514648438,1.24392318725586,2.23517417907715e-06,-0.000266551971435547,1.24393558502197,2.23517417907715e-06,-0.000267982482910156,1.24392604827881,4.79221343994141e-05,-0.000165939331054688,1.24394798278809,4.98294830322266e-05,-0.000165939331054688,1.24394702911377,4.98294830322266e-05,-0.000166416168212891,1.2439489364624,4.83989715576172e-05,-0.000166893005371094,1.24394702911377,1.56164169311523e-05,-0.000267982482910156,1.24393939971924,1.5556812286377e-05,-0.000267505645751953,1.24393844604492,2.37226486206055e-05,-0.000260353088378906,1.24394035339355,2.32458114624023e-05,-0.000260353088378906,1.24393939971924,1.1742115020752e-05,-0.000266551971435547,1.24394035339355,1.13248825073242e-05,-0.00026702880859375,1.24393749237061,2.75373458862305e-05,-0.000260829925537109,1.24394035339355,2.65836715698242e-05,-0.000260829925537109,1.24393939971924,3.23057174682617e-05,-0.000253200531005859,1.24394226074219,3.08752059936523e-05,-0.000253677368164063,1.24394035339355,3.37362289428711e-05,-0.000245571136474609,1.24394035339355,3.27825546264648e-05,-0.000246047973632813,1.24393939971924,3.37362289428711e-05,-0.000238895416259766,1.24394416809082,3.3259391784668e-05,-0.000231742858886719,1.24394035339355,3.65972518920898e-05,-0.000230312347412109,1.24394226074219,3.65972518920898e-05,-0.000231266021728516,1.24394035339355,3.7074089050293e-05,-0.000216960906982422,1.24394416809082,3.61204147338867e-05,-0.000216484069824219,1.24394226074219,4.12464141845703e-05,-0.000209331512451172,1.24394416809082,4.02927398681641e-05,-0.000209331512451172,1.2439432144165,4.41074371337891e-05,-0.000194549560546875,1.24394512176514,4.31537628173828e-05,-0.000195503234863281,1.24394512176514,4.83989715576172e-05,-0.000174045562744141,1.24394798278809,4.79221343994141e-05,-0.000174045562744141,1.24394750595093, +0,-0.000273227691650391,1.24393939971924,1.75833702087402e-06,-0.000274658203125,1.24394035339355,1.2814998626709e-06,-0.000274658203125,1.24393844604492,1.2814998626709e-06,-0.000274181365966797,1.24394035339355,9.38773155212402e-06,-0.000267505645751953,1.24393939971924,7.0035457611084e-06,-0.000274658203125,1.24394035339355,4.14252281188965e-06,-0.000274181365966797,1.24393939971924,6.52670860290527e-06,-0.000273227691650391,1.24393939971924,1.37090682983398e-05,-0.000267505645751953,1.24394035339355,1.26957893371582e-05,-0.000267505645751953,1.24393844604492,1.18017196655273e-05,-0.000267505645751953,1.24394035339355,1.50799751281738e-05,-0.000267982482910156,1.24394035339355,1.51395797729492e-05,-0.00026702880859375,1.24394035339355,1.46031379699707e-05,-0.00026702880859375,1.24394035339355,1.74641609191895e-05,-0.000267505645751953,1.24393939971924,1.65700912475586e-05,-0.000267982482910156,1.24394035339355,1.60932540893555e-05,-0.000267982482910156,1.24393939971924,2.22921371459961e-05,-0.000267982482910156,1.24394130706787,2.03847885131836e-05,-0.000267982482910156,1.24394035339355,1.94311141967773e-05,-0.00026702880859375,1.24393939971924,2.5629997253418e-05,-0.000260353088378906,1.24394226074219,2.51531600952148e-05,-0.000260353088378906,1.24394226074219,2.41994857788086e-05,-0.000260829925537109,1.24394226074219,2.70605087280273e-05,-0.000260829925537109,1.24394130706787,2.70605087280273e-05,-0.000260353088378906,1.24394226074219,2.61068344116211e-05,-0.000260829925537109,1.24394035339355,2.9444694519043e-05,-0.000260353088378906,1.24394130706787,2.89678573608398e-05,-0.000259876251220703,1.24394035339355,2.80141830444336e-05,-0.000260353088378906,1.24394130706787,3.3259391784668e-05,-0.000253200531005859,1.24394130706787,3.27825546264648e-05,-0.000259876251220703,1.24394130706787,3.18288803100586e-05,-0.000253200531005859,1.24394416809082,3.46899032592773e-05,-0.000253200531005859,1.24394035339355,3.56435775756836e-05,-0.000253200531005859,1.24394035339355,3.37362289428711e-05,-0.000252723693847656,1.24394130706787, +3.46899032592773e-05,-0.000245571136474609,1.24394226074219,3.56435775756836e-05,-0.000246524810791016,1.24394226074219,3.46899032592773e-05,-0.000245571136474609,1.24394130706787,3.42130661010742e-05,-0.000246047973632813,1.24394416809082,3.56435775756836e-05,-0.000246047973632813,1.24394035339355,3.46899032592773e-05,-0.000245571136474609,1.24394035339355,3.46899032592773e-05,-0.000238418579101563,1.24394226074219,3.61204147338867e-05,-0.000245571136474609,1.24394130706787,3.42130661010742e-05,-0.000245571136474609,1.24394416809082,3.56435775756836e-05,-0.000231266021728516,1.2439432144165,3.65972518920898e-05,-0.000237941741943359,1.24394226074219,3.56435775756836e-05,-0.000237464904785156,1.2439432144165,3.7074089050293e-05,-0.000230789184570313,1.24394226074219,3.75509262084961e-05,-0.000231266021728516,1.24394035339355,3.65972518920898e-05,-0.000230312347412109,1.24394226074219,3.7074089050293e-05,-0.000231742858886719,1.24394226074219,3.85046005249023e-05,-0.000230312347412109,1.24394226074219,3.75509262084961e-05,-0.000231742858886719,1.24394416809082,3.75509262084961e-05,-0.000224113464355469,1.24394416809082,3.85046005249023e-05,-0.000223159790039063,1.24394130706787,3.7074089050293e-05,-0.000223159790039063,1.24394512176514,3.98159027099609e-05,-0.000216484069824219,1.24394416809082,4.07695770263672e-05,-0.000216960906982422,1.24394512176514,3.89814376831055e-05,-0.000216960906982422,1.24394416809082,4.22000885009766e-05,-0.000209808349609375,1.24394416809082,4.22000885009766e-05,-0.000209808349609375,1.2439432144165,4.12464141845703e-05,-0.000209808349609375,1.24394512176514,4.26769256591797e-05,-0.000209331512451172,1.24394512176514,4.41074371337891e-05,-0.000209331512451172,1.24394512176514,4.22000885009766e-05,-0.000209331512451172,1.24394416809082,4.45842742919922e-05,-0.000202655792236328,1.24394607543945,4.60147857666016e-05,-0.000202178955078125,1.24394607543945,4.41074371337891e-05,-0.000201702117919922,1.24394512176514,4.69684600830078e-05,-0.000194549560546875,1.24394702911377,4.83989715576172e-05, +-0.000194549560546875,1.24394607543945,4.60147857666016e-05,-0.000195026397705078,1.24394702911377,4.93526458740234e-05,-0.000188350677490234,1.24394512176514,5.03063201904297e-05,-0.000187397003173828,1.24394607543945,4.83989715576172e-05,-0.000188350677490234,1.24394702911377,4.93526458740234e-05,-0.000180721282958984,1.24394798278809,5.03063201904297e-05,-0.000173568725585938,1.2439489364624,5.22136688232422e-05,-0.000181198120117188,1.24394702911377,5.03063201904297e-05,-0.000180721282958984,1.24394798278809,5.12599945068359e-05,-0.000166416168212891,1.24394989013672,5.36441802978516e-05,-0.000173568725585938,1.24394798278809,5.03063201904297e-05,-0.000173568725585938,1.24394845962524,5.17368316650391e-05,-0.000166416168212891,1.24395084381104,5.31673431396484e-05,-0.000165462493896484,1.24394941329956,5.12599945068359e-05,-0.000166893005371094,1.24394989013672,5.0961971282959e-06,-0.000274181365966797,1.24394035339355,3.1888484954834e-06,-0.000274181365966797,1.24393939971924,2.23517417907715e-06,-0.000273227691650391,1.24394035339355,2.71201133728027e-06,-0.000274181365966797,1.24394130706787,3.1888484954834e-06,-0.000273704528808594,1.24393939971924,1.12652778625488e-05,-0.000274658203125,1.24394130706787,7.95722007751465e-06,-0.000274658203125,1.24394035339355,1.50799751281738e-05,-0.000267505645751953,1.24394035339355,1.36494636535645e-05,-0.000274181365966797,1.24393939971924,1.56164169311523e-05,-0.00026702880859375,1.24393939971924,1.5556812286377e-05,-0.00026702880859375,1.24393844604492,1.84178352355957e-05,-0.000267505645751953,1.24393939971924,1.65700912475586e-05,-0.000267505645751953,1.24393939971924,2.37226486206055e-05,-0.00026702880859375,1.24393939971924,2.13384628295898e-05,-0.000267505645751953,1.24393939971924,2.75373458862305e-05,-0.000260829925537109,1.24394130706787,2.61068344116211e-05,-0.000267505645751953,1.24394130706787,2.80141830444336e-05,-0.000260829925537109,1.24394035339355,2.75373458862305e-05,-0.000260829925537109,1.24394130706787,3.23057174682617e-05,-0.000259876251220703,1.24394130706787, +2.99215316772461e-05,-0.000260353088378906,1.24394226074219,3.65972518920898e-05,-0.000253200531005859,1.24394226074219,3.46899032592773e-05,-0.000260829925537109,1.24394226074219,3.75509262084961e-05,-0.000253200531005859,1.24394226074219,3.75509262084961e-05,-0.000252723693847656,1.24394226074219,3.61204147338867e-05,-0.000245571136474609,1.24394226074219,3.65972518920898e-05,-0.000253677368164063,1.24393939971924,3.75509262084961e-05,-0.000245571136474609,1.24394226074219,3.7074089050293e-05,-0.000245571136474609,1.24394035339355,3.80277633666992e-05,-0.000238895416259766,1.2439432144165,3.80277633666992e-05,-0.000246047973632813,1.24394130706787,3.85046005249023e-05,-0.000238895416259766,1.24394130706787,3.89814376831055e-05,-0.000237941741943359,1.24394130706787,3.85046005249023e-05,-0.000231266021728516,1.24394226074219,3.85046005249023e-05,-0.000230789184570313,1.24394226074219,3.98159027099609e-05,-0.000230312347412109,1.24394226074219,3.94582748413086e-05,-0.000231266021728516,1.24394416809082,4.12464141845703e-05,-0.000224113464355469,1.24394416809082,4.07695770263672e-05,-0.000230789184570313,1.2439432144165,4.41074371337891e-05,-0.000216484069824219,1.24394416809082,4.26769256591797e-05,-0.000216484069824219,1.24394416809082,4.41074371337891e-05,-0.000209331512451172,1.24394512176514,4.41074371337891e-05,-0.000216960906982422,1.24394416809082,4.64916229248047e-05,-0.000209331512451172,1.24394512176514,4.50611114501953e-05,-0.000209808349609375,1.24394416809082,4.83989715576172e-05,-0.000202655792236328,1.24394512176514,4.74452972412109e-05,-0.000201702117919922,1.24394607543945,5.12599945068359e-05,-0.000194549560546875,1.24394702911377,5.03063201904297e-05,-0.000194549560546875,1.24394607543945,5.22136688232422e-05,-0.000188350677490234,1.24394512176514,5.17368316650391e-05,-0.000188350677490234,1.24394702911377,5.45978546142578e-05,-0.000188350677490234,1.24394798278809,5.45978546142578e-05,-0.000173568725585938,1.24394798278809,5.45978546142578e-05,-0.000180721282958984,1.24394798278809,5.60283660888672e-05, +-0.000166416168212891,1.24394989013672,5.55515289306641e-05,-0.000173568725585938,1.24394941329956,5.36441802978516e-05,-0.000166893005371094,1.2439489364624,5.41210174560547e-05,-0.000165939331054688,1.24394989013672,3.66568565368652e-06,-0.000267982482910156,1.24390888214111,3.66568565368652e-06,-0.000267505645751953,1.24391269683838,3.1888484954834e-06,-0.000260829925537109,1.24391555786133,4.79221343994141e-05,-0.000158786773681641,1.24392652511597,4.50611114501953e-05,-0.000174045562744141,1.24391841888428,4.60147857666016e-05,-0.000173568725585938,1.24391841888428,4.36305999755859e-05,-0.000188827514648438,1.24391841888428,4.50611114501953e-05,-0.000188350677490234,1.24391937255859,4.12464141845703e-05,-0.000202655792236328,1.24391651153564,4.12464141845703e-05,-0.000202178955078125,1.24391651153564,3.85046005249023e-05,-0.000209808349609375,1.24391460418701,3.94582748413086e-05,-0.000209331512451172,1.24391746520996,3.56435775756836e-05,-0.000223636627197266,1.2439136505127,3.51667404174805e-05,-0.000224590301513672,1.24391651153564,3.27825546264648e-05,-0.000230312347412109,1.2439136505127,3.3259391784668e-05,-0.000231266021728516,1.24391746520996,3.03983688354492e-05,-0.000238895416259766,1.24391269683838,2.99215316772461e-05,-0.000238895416259766,1.24391460418701,2.75373458862305e-05,-0.000238418579101563,1.24391269683838,2.84910202026367e-05,-0.000238418579101563,1.24391555786133,2.46763229370117e-05,-0.000246047973632813,1.2439136505127,2.46763229370117e-05,-0.000246047973632813,1.24391269683838,2.08616256713867e-05,-0.000252723693847656,1.24391174316406,2.1815299987793e-05,-0.000252723693847656,1.24391460418701,1.70469284057617e-05,-0.000253677368164063,1.24391078948975,1.65104866027832e-05,-0.000253200531005859,1.2439136505127,1.12652778625488e-05,-0.000260353088378906,1.24391078948975,1.22785568237305e-05,-0.000260353088378906,1.24391269683838,6.04987144470215e-06,-0.000260829925537109,1.24391078948975,4.14252281188965e-06,-0.000260353088378906,1.24391269683838,6.04987144470215e-06,-0.000260353088378906, +1.24391174316406,3.66568565368652e-06,-0.00026702880859375,1.24391460418701,3.1888484954834e-06,-0.000267505645751953,1.24391937255859,2.71201133728027e-06,-0.000260353088378906,1.24391746520996,4.22000885009766e-05,-0.000173568725585938,1.24391555786133,4.22000885009766e-05,-0.000166893005371094,1.2439169883728,4.41074371337891e-05,-0.000166893005371094,1.24391794204712,4.07695770263672e-05,-0.000194549560546875,1.2439136505127,4.02927398681641e-05,-0.000202178955078125,1.24391174316406,4.12464141845703e-05,-0.000195026397705078,1.24391460418701,3.65972518920898e-05,-0.000216960906982422,1.2439136505127,3.46899032592773e-05,-0.000224590301513672,1.24391078948975,3.56435775756836e-05,-0.000224590301513672,1.24391269683838,3.08752059936523e-05,-0.000230312347412109,1.24391078948975,2.9444694519043e-05,-0.000237464904785156,1.24391269683838,3.03983688354492e-05,-0.000230789184570313,1.24391174316406,2.51531600952148e-05,-0.000245571136474609,1.24391078948975,2.32458114624023e-05,-0.000246047973632813,1.24391078948975,2.46763229370117e-05,-0.000246047973632813,1.24391078948975,1.74641609191895e-05,-0.000253200531005859,1.24391078948975,1.50799751281738e-05,-0.000252723693847656,1.24391078948975,1.70469284057617e-05,-0.000253677368164063,1.24391078948975,7.95722007751465e-06,-0.000260353088378906,1.24390983581543,4.61935997009277e-06,-0.000260353088378906,1.24390888214111,6.52670860290527e-06,-0.000260829925537109,1.24390983581543,3.93390655517578e-05,-0.000159263610839844,1.24391555786133,3.98159027099609e-05,-0.000173568725585938,1.2439136505127,3.98159027099609e-05,-0.000180721282958984,1.2439136505127,3.85046005249023e-05,-0.000209331512451172,1.24391174316406,3.93390655517578e-05,-0.000202178955078125,1.2439136505127,3.75509262084961e-05,-0.000216484069824219,1.24391174316406,3.23057174682617e-05,-0.000223636627197266,1.24391174316406,3.3259391784668e-05,-0.000223636627197266,1.24391269683838,3.18288803100586e-05,-0.000230789184570313,1.24391078948975,2.75373458862305e-05,-0.000238895416259766,1.24390888214111,2.80141830444336e-05, +-0.000237941741943359,1.24391078948975,2.61068344116211e-05,-0.000238895416259766,1.24391078948975,2.08616256713867e-05,-0.000253200531005859,1.24391078948975,2.1815299987793e-05,-0.000245571136474609,1.24391078948975,1.89542770385742e-05,-0.000253200531005859,1.24391078948975,1.12652778625488e-05,-0.000253200531005859,1.24391078948975,1.31726264953613e-05,-0.000253200531005859,1.24390888214111,7.0035457611084e-06,-0.000260353088378906,1.2439079284668,9.38773155212402e-06,-0.000260829925537109,1.24391078948975,3.66568565368652e-06,-0.000260353088378906,1.24390888214111,4.61935997009277e-06,-0.000259876251220703,1.2439079284668,0,-0.000253200531005859,1.24390411376953,2.24262475967407e-06,-0.000253677368164063,1.24390411376953,2.23517417907715e-06,-0.000253200531005859,1.24390506744385,0,-0.000253200531005859,1.24390411376953,3.1888484954834e-06,-0.000253200531005859,1.2439022064209,2.71201133728027e-06,-0.000253200531005859,1.24390506744385,0,-0.000246047973632813,1.24390125274658,4.14252281188965e-06,-0.000246047973632813,1.2439022064209,3.66568565368652e-06,-0.000246047973632813,1.24390316009521,0,-0.000245571136474609,1.24390029907227,4.61935997009277e-06,-0.000245571136474609,1.24390029907227,4.14252281188965e-06,-0.000246047973632813,1.24390125274658,0,-0.000238418579101563,1.24389934539795,5.0961971282959e-06,-0.000238895416259766,1.24389934539795,5.0961971282959e-06,-0.000238418579101563,1.24390125274658,0,-0.000231266021728516,1.24389839172363,6.04987144470215e-06,-0.000231742858886719,1.24389839172363,5.57303428649902e-06,-0.000230312347412109,1.24389743804932,0,-0.000222206115722656,1.24389743804932,7.0035457611084e-06,-0.000216960906982422,1.24389743804932,6.52670860290527e-06,-0.000224113464355469,1.243896484375,7.48038291931152e-06,-0.000209808349609375,1.24389743804932,0,-0.000202655792236328,1.24389982223511,7.95722007751465e-06,-0.000202655792236328,1.24389886856079,-6.82473182678223e-06,-0.000267505645751953,1.24391651153564,-7.77840614318848e-06,-0.000267505645751953,1.24392414093018,-2.87294387817383e-05, +-0.000253200531005859,1.24391841888428,-3.20672988891602e-05,-0.000253200531005859,1.24392509460449,-4.07695770263672e-05,-0.000223636627197266,1.24392318725586,-4.26769256591797e-05,-0.000224113464355469,1.24392890930176,-1.8775463104248e-05,-0.000266551971435547,1.24393939971924,-2.11000442504883e-05,-0.00026702880859375,1.24393463134766,-2.3961067199707e-05,-0.000267982482910156,1.24393939971924,-2.11000442504883e-05,-0.000267505645751953,1.24394035339355,-2.11000442504883e-05,-0.000267505645751953,1.24393939971924,-2.25305557250977e-05,-0.000253200531005859,1.24391269683838,-2.15768814086914e-05,-0.000253200531005859,1.24390888214111,-1.01327896118164e-05,-0.000260353088378906,1.24390602111816,-9.65595245361328e-06,-0.000259876251220703,1.24390983581543,-3.87430191040039e-05,-0.000246047973632813,1.24394035339355,-3.87430191040039e-05,-0.000245571136474609,1.24393653869629,-3.9219856262207e-05,-0.000238895416259766,1.24393939971924,-3.87430191040039e-05,-0.000245571136474609,1.2439432144165,-3.87430191040039e-05,-0.000246047973632813,1.24394035339355,-3.5405158996582e-05,-0.000230789184570313,1.24391651153564,-3.5405158996582e-05,-0.000230789184570313,1.24391269683838,-3.11136245727539e-05,-0.000246047973632813,1.24390697479248,-3.01599502563477e-05,-0.000245571136474609,1.24391078948975,-4.83989715576172e-05,-0.000209808349609375,1.24394226074219,-5.03063201904297e-05,-0.000209331512451172,1.24394130706787,-5.03063201904297e-05,-0.000202655792236328,1.24394226074219,-4.93526458740234e-05,-0.000209331512451172,1.24394416809082,-4.98294830322266e-05,-0.000209331512451172,1.2439432144165,-4.93526458740234e-05,-0.000195503234863281,1.24391841888428,-4.98294830322266e-05,-0.000202655792236328,1.24391555786133,-4.36305999755859e-05,-0.000217437744140625,1.24390935897827,-4.26769256591797e-05,-0.000216960906982422,1.2439136505127,-5.84125518798828e-05,-0.000173568725585938,1.24394416809082,-5.79357147216797e-05,-0.000174045562744141,1.24393749237061,-5.45978546142578e-05,-0.000159263610839844,1.24392414093018,-5.41210174560547e-05, +-0.000166893005371094,1.24392652511597,-5.41210174560547e-05,-0.000181198120117188,1.24391651153564,-5.45978546142578e-05,-0.000181198120117188,1.24391174316406,-4.94718551635742e-06,-0.000274181365966797,1.24393653869629,-8.2552433013916e-06,-0.000274658203125,1.24393463134766,-1.20997428894043e-05,-0.000273704528808594,1.24393844604492,-8.2552433013916e-06,-0.000274658203125,1.24393844604492,-8.2552433013916e-06,-0.000274181365966797,1.24393653869629,-1.54376029968262e-05,-0.000266551971435547,1.24393844604492,-1.53779983520508e-05,-0.000267505645751953,1.24393653869629,-1.53779983520508e-05,-0.000267505645751953,1.24393749237061,-1.49011611938477e-05,-0.000267982482910156,1.24393939971924,-1.54376029968262e-05,-0.00026702880859375,1.24393844604492,-1.44243240356445e-05,-0.000260353088378906,1.24392032623291,-1.53779983520508e-05,-0.000260829925537109,1.24392509460449,-3.25441360473633e-05,-0.000259876251220703,1.24393844604492,-3.44514846801758e-05,-0.000260353088378906,1.24393463134766,-3.68356704711914e-05,-0.000252723693847656,1.24393939971924,-3.49283218383789e-05,-0.000260353088378906,1.24393939971924,-3.49283218383789e-05,-0.000260353088378906,1.24393939971924,-3.77893447875977e-05,-0.000253200531005859,1.24393939971924,-3.63588333129883e-05,-0.000246047973632813,1.24393463134766,-3.58819961547852e-05,-0.000246047973632813,1.24393939971924,-3.68356704711914e-05,-0.000252723693847656,1.24394226074219,-3.68356704711914e-05,-0.000245571136474609,1.24393939971924,-3.25441360473633e-05,-0.000246047973632813,1.24392127990723,-3.44514846801758e-05,-0.000246047973632813,1.24392604827881,-4.17232513427734e-05,-0.000231742858886719,1.24394226074219,-4.31537628173828e-05,-0.000231742858886719,1.24393939971924,-4.41074371337891e-05,-0.000224113464355469,1.24394416809082,-4.22000885009766e-05,-0.000231266021728516,1.24394416809082,-4.26769256591797e-05,-0.000230789184570313,1.24394130706787,-4.60147857666016e-05,-0.000216484069824219,1.24394416809082,-4.60147857666016e-05,-0.000217437744140625,1.24393939971924,-4.55379486083984e-05, +-0.000209808349609375,1.24394416809082,-4.50611114501953e-05,-0.000216484069824219,1.2439432144165,-4.55379486083984e-05,-0.000216960906982422,1.24394226074219,-4.60147857666016e-05,-0.000209808349609375,1.24392509460449,-4.69684600830078e-05,-0.000209331512451172,1.24392890930176,-5.69820404052734e-05,-0.000188350677490234,1.24394512176514,-5.79357147216797e-05,-0.000180721282958984,1.24394512176514,-5.74588775634766e-05,-0.000173568725585938,1.24394702911377,-5.65052032470703e-05,-0.000181198120117188,1.24394798278809,-5.69820404052734e-05,-0.000180721282958984,1.24394702911377,-5.55515289306641e-05,-0.000181198120117188,1.24392604827881,-5.74588775634766e-05,-0.000181198120117188,1.24393558502197,-2.7775764465332e-05,-0.000260829925537109,1.24393844604492,-2.82526016235352e-05,-0.000260353088378906,1.24393463134766,-2.7775764465332e-05,-0.000260829925537109,1.24393939971924,-2.7775764465332e-05,-0.000260353088378906,1.24394130706787,-2.7775764465332e-05,-0.000260829925537109,1.24393939971924,-2.53915786743164e-05,-0.000253200531005859,1.24391937255859,-2.68220901489258e-05,-0.000253200531005859,1.24392509460449,-1.96695327758789e-05,-0.000259876251220703,1.24391746520996,-2.06232070922852e-05,-0.000260353088378906,1.24392414093018,-2.30073928833008e-05,-0.000252723693847656,1.24390411376953,-1.78217887878418e-05,-0.000261306762695313,1.24390506744385,-1.63912773132324e-05,-0.000260829925537109,1.24390983581543,-1.6331672668457e-05,-0.000260353088378906,1.24391651153564,-3.01003456115723e-06,-0.000267982482910156,1.24390888214111,-3.01003456115723e-06,-0.000267982482910156,1.24390506744385,0,-0.000267505645751953,1.2439136505127,0,-0.000268459320068359,1.24391555786133,-1.01327896118164e-05,-0.000260353088378906,1.2439136505127,-3.95774841308594e-05,-0.000238895416259766,1.24394130706787,-3.87430191040039e-05,-0.000231266021728516,1.24393939971924,-3.87430191040039e-05,-0.000230789184570313,1.24394130706787,-3.87430191040039e-05,-0.000230789184570313,1.24394226074219,-3.87430191040039e-05,-0.000230312347412109,1.24394035339355, +-3.73125076293945e-05,-0.000230312347412109,1.24392604827881,-3.87430191040039e-05,-0.000231266021728516,1.24392986297607,-3.44514846801758e-05,-0.000237941741943359,1.24391841888428,-3.73125076293945e-05,-0.000238895416259766,1.24392604827881,-3.58819961547852e-05,-0.000230789184570313,1.24390888214111,-3.30209732055664e-05,-0.000239372253417969,1.2439079284668,-3.20672988891602e-05,-0.000238418579101563,1.24391269683838,-3.20672988891602e-05,-0.000238895416259766,1.24391937255859,-2.72989273071289e-05,-0.000252723693847656,1.24390697479248,-2.58684158325195e-05,-0.000252723693847656,1.24391078948975,-2.53915786743164e-05,-0.000252723693847656,1.24391841888428,-3.01599502563477e-05,-0.000245571136474609,1.24391651153564,-5.31673431396484e-05,-0.000195503234863281,1.24394512176514,-5.36441802978516e-05,-0.000187397003173828,1.2439432144165,-5.36441802978516e-05,-0.000187873840332031,1.24394416809082,-5.26905059814453e-05,-0.000187873840332031,1.24394607543945,-5.36441802978516e-05,-0.000188350677490234,1.24394512176514,-5.22136688232422e-05,-0.000188827514648438,1.24392795562744,-5.36441802978516e-05,-0.000187873840332031,1.24393367767334,-4.83989715576172e-05,-0.000202655792236328,1.24392318725586,-5.07831573486328e-05,-0.000202655792236328,1.24393177032471,-5.12599945068359e-05,-0.000202178955078125,1.24391078948975,-4.74452972412109e-05,-0.000209808349609375,1.2439112663269,-4.64916229248047e-05,-0.000209331512451172,1.24391555786133,-4.55379486083984e-05,-0.000209331512451172,1.24392032623291,-3.91006469726563e-05,-0.000223159790039063,1.2439079284668,-3.87430191040039e-05,-0.000223636627197266,1.24391460418701,-3.87430191040039e-05,-0.000223636627197266,1.24392127990723,-4.31537628173828e-05,-0.000216484069824219,1.24391841888428,-5.69820404052734e-05,-0.000165939331054688,1.24394559860229,-5.69820404052734e-05,-0.000165462493896484,1.24393606185913,-5.55515289306641e-05,-0.000166893005371094,1.24392890930176,-5.60283660888672e-05,-0.000166893005371094,1.24392700195313,-5.41210174560547e-05,-0.000166416168212891, +1.24392509460449,-5.45978546142578e-05,-0.000159740447998047,1.24391937255859,-5.55515289306641e-05,-0.000159263610839844,1.2439136505127,-5.41210174560547e-05,-0.000166893005371094,1.24391746520996,-5.55515289306641e-05,-0.000165939331054688,1.2439136505127,-5.45978546142578e-05,-0.000165939331054688,1.24392127990723,-5.41210174560547e-05,-0.000180721282958984,1.24392223358154,-5.41210174560547e-05,-0.000180721282958984,1.24392414093018,0,-0.000274181365966797,1.24393463134766,0,-0.000274658203125,1.24393939971924,0,-0.000274658203125,1.24393939971924,0,-0.000273704528808594,1.24393653869629,-5.87105751037598e-06,-0.000260829925537109,1.2439079284668,-5.87105751037598e-06,-0.000261306762695313,1.24390602111816,-5.87105751037598e-06,-0.000260353088378906,1.2439136505127,-6.3478946685791e-06,-0.000259876251220703,1.24391460418701,0,-0.00026702880859375,1.24391841888428,0,-0.000267982482910156,1.24392604827881,-1.30534172058105e-05,-0.000260829925537109,1.24390983581543,-1.39474868774414e-05,-0.000260353088378906,1.24390697479248,-1.44243240356445e-05,-0.00026702880859375,1.24393367767334,-1.35302543640137e-05,-0.000267505645751953,1.24392509460449,-1.35302543640137e-05,-0.000259876251220703,1.24391746520996,-1.39474868774414e-05,-0.000260353088378906,1.24391746520996,-1.16229057312012e-05,-0.000260353088378906,1.24391651153564,-1.01923942565918e-05,-0.000260353088378906,1.24391555786133,-1.68085098266602e-05,-0.000267505645751953,1.24393367767334,-1.68681144714355e-05,-0.000260353088378906,1.24392700195313,-1.92523002624512e-05,-0.000253200531005859,1.24390983581543,-2.0146369934082e-05,-0.0002593994140625,1.24390316009521,-1.6331672668457e-05,-0.000260353088378906,1.24391937255859,-1.6331672668457e-05,-0.000260353088378906,1.24391746520996,-1.97291374206543e-05,-0.000253677368164063,1.24391269683838,-1.96695327758789e-05,-0.000252723693847656,1.24391555786133,-2.3961067199707e-05,-0.000253677368164063,1.24391078948975,-2.53915786743164e-05,-0.000252723693847656,1.24390697479248,-2.63452529907227e-05,-0.000260353088378906, +1.24393463134766,-2.49147415161133e-05,-0.000260353088378906,1.24392318725586,-2.34842300415039e-05,-0.000252723693847656,1.24391651153564,-2.30073928833008e-05,-0.000253200531005859,1.24391651153564,-2.44379043579102e-05,-0.000253200531005859,1.24391460418701,-2.49147415161133e-05,-0.000253200531005859,1.24391841888428,-2.96831130981445e-05,-0.000260829925537109,1.24393558502197,-2.7775764465332e-05,-0.000252723693847656,1.24392604827881,-2.7775764465332e-05,-0.000245571136474609,1.24391078948975,-2.92062759399414e-05,-0.000246047973632813,1.24390697479248,-2.7775764465332e-05,-0.000246524810791016,1.2439136505127,-2.7775764465332e-05,-0.000245571136474609,1.24391555786133,-2.63452529907227e-05,-0.000253200531005859,1.24391841888428,-2.53915786743164e-05,-0.000252723693847656,1.24391746520996,-3.11136245727539e-05,-0.000245571136474609,1.24391078948975,-3.20672988891602e-05,-0.000245094299316406,1.24390602111816,-3.73125076293945e-05,-0.000252723693847656,1.24393558502197,-3.44514846801758e-05,-0.000245571136474609,1.24392509460449,-3.1590461730957e-05,-0.000246047973632813,1.24391841888428,-3.20672988891602e-05,-0.000245571136474609,1.24391937255859,-3.1590461730957e-05,-0.000246524810791016,1.24391937255859,-3.06367874145508e-05,-0.000246047973632813,1.24391746520996,-3.68356704711914e-05,-0.000246047973632813,1.24393844604492,-3.49283218383789e-05,-0.000245571136474609,1.24392700195313,-3.34978103637695e-05,-0.000238895416259766,1.24391269683838,-3.44514846801758e-05,-0.000239372253417969,1.2439079284668,-3.30209732055664e-05,-0.000245571136474609,1.24392223358154,-3.20672988891602e-05,-0.000237941741943359,1.24392032623291,-3.30209732055664e-05,-0.000238895416259766,1.24391460418701,-3.30209732055664e-05,-0.000238418579101563,1.24391651153564,-3.68356704711914e-05,-0.000230312347412109,1.2439136505127,-3.77893447875977e-05,-0.000230789184570313,1.24390888214111,-3.98159027099609e-05,-0.000238418579101563,1.24393749237061,-3.87430191040039e-05,-0.000238895416259766,1.24392795562744,-3.63588333129883e-05,-0.000230312347412109, +1.24391937255859,-3.5405158996582e-05,-0.000230312347412109,1.24391746520996,-3.68356704711914e-05,-0.000230312347412109,1.24391937255859,-3.73125076293945e-05,-0.000231266021728516,1.24392223358154,-3.98159027099609e-05,-0.000231742858886719,1.24393939971924,-3.9219856262207e-05,-0.000231266021728516,1.24392986297607,-4.07695770263672e-05,-0.000223636627197266,1.24391269683838,-4.17232513427734e-05,-0.000224113464355469,1.2439079284668,-4.07695770263672e-05,-0.000223159790039063,1.24391841888428,-3.98159027099609e-05,-0.000223636627197266,1.24391937255859,-3.82661819458008e-05,-0.000230789184570313,1.24392509460449,-3.77893447875977e-05,-0.000230312347412109,1.24392223358154,-4.45842742919922e-05,-0.000216960906982422,1.2439136505127,-4.55379486083984e-05,-0.000216484069824219,1.2439112663269,-4.55379486083984e-05,-0.000216484069824219,1.24393844604492,-4.64916229248047e-05,-0.000216960906982422,1.24392890930176,-4.50611114501953e-05,-0.000209331512451172,1.24392032623291,-4.55379486083984e-05,-0.000209331512451172,1.24392223358154,-4.45842742919922e-05,-0.000216960906982422,1.24392318725586,-4.36305999755859e-05,-0.000216960906982422,1.24391937255859,-4.74452972412109e-05,-0.000209808349609375,1.24393939971924,-4.74452972412109e-05,-0.000209808349609375,1.24393177032471,-4.74452972412109e-05,-0.000202178955078125,1.24391555786133,-4.83989715576172e-05,-0.000203132629394531,1.24391174316406,-4.60147857666016e-05,-0.000209808349609375,1.24392414093018,-4.55379486083984e-05,-0.000209331512451172,1.24392318725586,-4.74452972412109e-05,-0.000202178955078125,1.24391841888428,-4.69684600830078e-05,-0.000202178955078125,1.24391841888428,-5.17368316650391e-05,-0.000187873840332031,1.24391746520996,-5.31673431396484e-05,-0.000187873840332031,1.2439112663269,-5.26905059814453e-05,-0.000195503234863281,1.24394130706787,-5.31673431396484e-05,-0.000195503234863281,1.24393177032471,-5.07831573486328e-05,-0.000195503234863281,1.24392223358154,-4.93526458740234e-05,-0.000195503234863281,1.24392032623291,-5.12599945068359e-05,-0.000188827514648438, +1.24392223358154,-5.07831573486328e-05,-0.000188827514648438,1.24392509460449,-2.5331974029541e-06,-0.000274658203125,1.24393463134766,-2.5331974029541e-06,-0.000266551971435547,1.24392414093018,-5.79357147216797e-05,-0.000166416168212891,1.24394750595093,-5.45978546142578e-05,-0.000166893005371094,1.2439489364624,-5.60283660888672e-05,-0.000166416168212891,1.24394845962524,-5.60283660888672e-05,-0.000166416168212891,1.24394750595093,-1.63912773132324e-05,-0.00026702880859375,1.24393939971924,-1.6331672668457e-05,-0.000267505645751953,1.24393939971924,-2.58684158325195e-05,-0.00026702880859375,1.24394130706787,-2.63452529907227e-05,-0.000267505645751953,1.24393844604492,-1.39474868774414e-05,-0.000274658203125,1.24393844604492,-1.44243240356445e-05,-0.000267505645751953,1.24393844604492,-2.96831130981445e-05,-0.000260829925537109,1.24393939971924,-3.01599502563477e-05,-0.000260829925537109,1.24393749237061,-3.77893447875977e-05,-0.000252723693847656,1.24394226074219,-3.77893447875977e-05,-0.000253200531005859,1.24393939971924,-3.68356704711914e-05,-0.000246524810791016,1.24393939971924,-3.73125076293945e-05,-0.000246047973632813,1.24393939971924,-3.87430191040039e-05,-0.000238418579101563,1.2439432144165,-3.91006469726563e-05,-0.000238418579101563,1.24394130706787,-3.91006469726563e-05,-0.000230312347412109,1.24394035339355,-3.95774841308594e-05,-0.000230312347412109,1.24394035339355,-4.45842742919922e-05,-0.000216484069824219,1.24394416809082,-4.55379486083984e-05,-0.000216960906982422,1.24394416809082,-4.60147857666016e-05,-0.000209331512451172,1.2439432144165,-4.69684600830078e-05,-0.000209331512451172,1.24394226074219,-5.17368316650391e-05,-0.000194549560546875,1.24394512176514,-5.22136688232422e-05,-0.000195503234863281,1.24394416809082,-5.69820404052734e-05,-0.000173568725585938,1.24394845962524,-5.79357147216797e-05,-0.000173568725585938,1.24394750595093,-4.88758087158203e-06,-0.000260353088378906,1.24391555786133,-4.88758087158203e-06,-0.00026702880859375,1.24392414093018,-2.3961067199707e-05,-0.000245571136474609, +1.24391841888428,-2.53915786743164e-05,-0.000253200531005859,1.24392414093018,-3.44514846801758e-05,-0.000224113464355469,1.24392127990723,-3.39746475219727e-05,-0.000223159790039063,1.24392890930176,-1.82986259460449e-05,-0.000267982482910156,1.24393939971924,-2.06232070922852e-05,-0.000259876251220703,1.24393844604492,-1.78217887878418e-05,-0.000260353088378906,1.24393367767334,-1.59144401550293e-05,-0.000260829925537109,1.24393939971924,-1.82986259460449e-05,-0.000260353088378906,1.24393749237061,-1.72853469848633e-05,-0.000252723693847656,1.2439136505127,-2.0146369934082e-05,-0.000252723693847656,1.2439136505127,-1.82986259460449e-05,-0.000253200531005859,1.24391078948975,-1.8775463104248e-05,-0.000253200531005859,1.24391174316406,0,-0.000260829925537109,1.24390602111816,-2.05636024475098e-06,-0.000259876251220703,1.24390888214111,0,-0.000253677368164063,1.24390697479248,0,-0.000260353088378906,1.24390697479248,-3.20672988891602e-05,-0.000238895416259766,1.24394226074219,-3.1590461730957e-05,-0.000238895416259766,1.24394130706787,-3.06367874145508e-05,-0.000238895416259766,1.24393844604492,-3.11136245727539e-05,-0.000245571136474609,1.24393939971924,-3.06367874145508e-05,-0.000238895416259766,1.24394035339355,-3.01599502563477e-05,-0.000231742858886719,1.24391460418701,-3.1590461730957e-05,-0.000230789184570313,1.24391651153564,-3.06367874145508e-05,-0.000230789184570313,1.2439136505127,-3.11136245727539e-05,-0.000230789184570313,1.24391555786133,-2.20537185668945e-05,-0.000246047973632813,1.2439079284668,-1.68085098266602e-05,-0.000238418579101563,1.24390411376953,-8.73208045959473e-06,-0.000245571136474609,1.24390029907227,-1.44839286804199e-05,-0.000246047973632813,1.24390602111816,-1.58548355102539e-05,-0.000245571136474609,1.24390697479248,-4.12464141845703e-05,-0.000202655792236328,1.24394512176514,-4.17232513427734e-05,-0.000202655792236328,1.24394512176514,-4.02927398681641e-05,-0.000202655792236328,1.24394035339355,-3.95774841308594e-05,-0.000209331512451172,1.24394416809082,-4.02927398681641e-05,-0.000202655792236328, +1.24394416809082,-4.17232513427734e-05,-0.000194549560546875,1.24391746520996,-4.41074371337891e-05,-0.000187873840332031,1.24391841888428,-4.26769256591797e-05,-0.000195503234863281,1.24391651153564,-4.26769256591797e-05,-0.000195503234863281,1.24391841888428,-3.30209732055664e-05,-0.000216960906982422,1.24390888214111,-2.53915786743164e-05,-0.000209808349609375,1.24390411376953,-1.44243240356445e-05,-0.000216960906982422,1.24389743804932,-2.34842300415039e-05,-0.000216960906982422,1.24390316009521,-2.44379043579102e-05,-0.000216484069824219,1.24390316009521,-4.64916229248047e-05,-0.000173568725585938,1.24393606185913,-4.60147857666016e-05,-0.000173568725585938,1.24394416809082,-4.79221343994141e-05,-0.000159263610839844,1.24392652511597,-4.83989715576172e-05,-0.000159263610839844,1.24392700195313,-5.87105751037598e-06,-0.000267505645751953,1.24393939971924,-8.2552433013916e-06,-0.000267982482910156,1.24393653869629,-5.39422035217285e-06,-0.00026702880859375,1.24393367767334,-3.01003456115723e-06,-0.000267982482910156,1.24393844604492,-5.39422035217285e-06,-0.000267505645751953,1.24393749237061,-1.39474868774414e-05,-0.000267982482910156,1.24393939971924,-1.44243240356445e-05,-0.00026702880859375,1.24393844604492,-1.39474868774414e-05,-0.000268459320068359,1.24393558502197,-1.30534172058105e-05,-0.000267982482910156,1.24393844604492,-1.39474868774414e-05,-0.000267982482910156,1.24393844604492,-1.30534172058105e-05,-0.000260829925537109,1.24392032623291,-1.39474868774414e-05,-0.000260829925537109,1.24392509460449,-2.87294387817383e-05,-0.000253200531005859,1.24394130706787,-2.92062759399414e-05,-0.000253200531005859,1.24394035339355,-2.68220901489258e-05,-0.000252723693847656,1.24393749237061,-2.63452529907227e-05,-0.000253200531005859,1.24393939971924,-2.7775764465332e-05,-0.000253200531005859,1.24393939971924,-3.30209732055664e-05,-0.000246524810791016,1.24394130706787,-3.30209732055664e-05,-0.000245571136474609,1.24393939971924,-3.1590461730957e-05,-0.000245571136474609,1.24393653869629,-3.11136245727539e-05,-0.000245571136474609, +1.24393939971924,-3.25441360473633e-05,-0.000246047973632813,1.24393939971924,-2.96831130981445e-05,-0.000246524810791016,1.24392223358154,-3.01599502563477e-05,-0.000245571136474609,1.24392700195313,-3.49283218383789e-05,-0.000223636627197266,1.24394416809082,-3.44514846801758e-05,-0.000224590301513672,1.24394130706787,-3.39746475219727e-05,-0.000223159790039063,1.24393939971924,-3.49283218383789e-05,-0.000231742858886719,1.24394035339355,-3.44514846801758e-05,-0.000223159790039063,1.24394226074219,-3.93390655517578e-05,-0.000209331512451172,1.24394416809082,-4.02927398681641e-05,-0.000209808349609375,1.24394130706787,-3.77893447875977e-05,-0.000209331512451172,1.24393939971924,-3.68356704711914e-05,-0.000216484069824219,1.24394226074219,-3.82661819458008e-05,-0.000209808349609375,1.24394130706787,-3.87430191040039e-05,-0.000209808349609375,1.24392509460449,-3.77893447875977e-05,-0.000209808349609375,1.24393081665039,-4.74452972412109e-05,-0.000181198120117188,1.24394702911377,-4.69684600830078e-05,-0.000174045562744141,1.24394798278809,-4.60147857666016e-05,-0.000181198120117188,1.24394416809082,-4.60147857666016e-05,-0.000180721282958984,1.24394512176514,-4.69684600830078e-05,-0.000180721282958984,1.24394702911377,-4.64916229248047e-05,-0.000181198120117188,1.24392700195313,-4.55379486083984e-05,-0.000180721282958984,1.24393463134766,-2.49147415161133e-05,-0.000260353088378906,1.24393939971924,-2.53915786743164e-05,-0.000260353088378906,1.24393939971924,-2.49147415161133e-05,-0.000260829925537109,1.24393558502197,-2.3961067199707e-05,-0.000260353088378906,1.24393939971924,-2.49147415161133e-05,-0.000260829925537109,1.24393939971924,-2.30073928833008e-05,-0.000253200531005859,1.24392032623291,-2.3961067199707e-05,-0.000253200531005859,1.24392414093018,-1.6331672668457e-05,-0.000252723693847656,1.24391746520996,-1.72853469848633e-05,-0.000260353088378906,1.24392509460449,-1.53779983520508e-05,-0.000253200531005859,1.24390983581543,-1.20997428894043e-05,-0.000252723693847656,1.24390697479248,-5.87105751037598e-06, +-0.000252723693847656,1.24390506744385,-8.73208045959473e-06,-0.000253677368164063,1.24390697479248,-1.06096267700195e-05,-0.000253200531005859,1.24390697479248,-1.06692314147949e-05,-0.000252723693847656,1.24390888214111,-3.96370887756348e-06,-0.000253200531005859,1.24390697479248,-5.39422035217285e-06,-0.000253200531005859,1.2439079284668,-7.30156898498535e-06,-0.000252723693847656,1.2439079284668,-1.34706497192383e-05,-0.000259876251220703,1.24391460418701,-1.54376029968262e-05,-0.000253200531005859,1.2439136505127,-1.34706497192383e-05,-0.000252723693847656,1.24391078948975,-1.39474868774414e-05,-0.000260353088378906,1.24391460418701,0,-0.000260829925537109,1.24391078948975,0,-0.000260353088378906,1.24390888214111,0,-0.000260353088378906,1.24390888214111,-1.57952308654785e-06,-0.000260829925537109,1.24391269683838,0,-0.000260829925537109,1.24391269683838,-6.82473182678223e-06,-0.000260353088378906,1.24391174316406,-1.01923942565918e-05,-0.000260829925537109,1.2439136505127,-7.77840614318848e-06,-0.000260829925537109,1.24391174316406,-8.73208045959473e-06,-0.000260353088378906,1.24391269683838,-3.5405158996582e-05,-0.000230789184570313,1.24394035339355,-3.63588333129883e-05,-0.000231266021728516,1.24394035339355,-3.49283218383789e-05,-0.000230789184570313,1.24393844604492,-3.34978103637695e-05,-0.000231266021728516,1.24394035339355,-3.5405158996582e-05,-0.000230789184570313,1.24394130706787,-3.39746475219727e-05,-0.000230789184570313,1.24392414093018,-3.44514846801758e-05,-0.000231266021728516,1.24392890930176,-2.92062759399414e-05,-0.000238418579101563,1.24392127990723,-2.96831130981445e-05,-0.000238895416259766,1.24392795562744,-2.7775764465332e-05,-0.000231266021728516,1.2439079284668,-2.11000442504883e-05,-0.000231266021728516,1.24390411376953,-1.15633010864258e-05,-0.000231266021728516,1.24389934539795,-1.91926956176758e-05,-0.000238895416259766,1.24390411376953,-1.96695327758789e-05,-0.000231266021728516,1.24390506744385,-2.49147415161133e-05,-0.000237941741943359,1.24390888214111,-1.01327896118164e-05,-0.000238895416259766, +1.24390029907227,-1.78217887878418e-05,-0.000238418579101563,1.24390506744385,-2.82526016235352e-05,-0.000238418579101563,1.24391651153564,-2.92062759399414e-05,-0.000238418579101563,1.24391555786133,-2.82526016235352e-05,-0.000238895416259766,1.2439136505127,-2.87294387817383e-05,-0.000237941741943359,1.24391555786133,-1.8775463104248e-05,-0.000246047973632813,1.2439079284668,-7.30156898498535e-06,-0.000246047973632813,1.24390316009521,-1.35302543640137e-05,-0.000245571136474609,1.24390602111816,-2.20537185668945e-05,-0.000253200531005859,1.2439136505127,-2.30073928833008e-05,-0.000245571136474609,1.2439136505127,-2.20537185668945e-05,-0.000245571136474609,1.24391174316406,-2.25305557250977e-05,-0.000253200531005859,1.24391269683838,-2.49147415161133e-05,-0.000245571136474609,1.24391460418701,-2.68220901489258e-05,-0.000245571136474609,1.24391460418701,-2.53915786743164e-05,-0.000245571136474609,1.2439136505127,-2.58684158325195e-05,-0.000246047973632813,1.24391460418701,-4.64916229248047e-05,-0.000187873840332031,1.24394702911377,-4.69684600830078e-05,-0.000187873840332031,1.24394416809082,-4.60147857666016e-05,-0.000188350677490234,1.2439432144165,-4.41074371337891e-05,-0.000195026397705078,1.24394512176514,-4.60147857666016e-05,-0.000187873840332031,1.24394607543945,-4.55379486083984e-05,-0.000187873840332031,1.24392604827881,-4.55379486083984e-05,-0.000188827514648438,1.24393367767334,-4.02927398681641e-05,-0.000201702117919922,1.24392414093018,-3.93390655517578e-05,-0.000202178955078125,1.24393177032471,-3.20672988891602e-05,-0.000181674957275391,1.24391031265259,-1.06692314147949e-05,-0.000195503234863281,1.24390077590942,-2.49147415161133e-05,-0.000195503234863281,1.24390363693237,-2.11000442504883e-05,-0.000188827514648438,1.24390459060669,-3.49283218383789e-05,-0.000202655792236328,1.24390935897827,-1.58548355102539e-05,-0.000202178955078125,1.24389886856079,-2.63452529907227e-05,-0.000202655792236328,1.24390459060669,-3.88622283935547e-05,-0.000209331512451172,1.24391937255859,-4.07695770263672e-05,-0.000202178955078125, +1.24391841888428,-3.95774841308594e-05,-0.000209808349609375,1.24391555786133,-4.02927398681641e-05,-0.000209331512451172,1.24391841888428,-2.96831130981445e-05,-0.000224113464355469,1.24390888214111,-1.30534172058105e-05,-0.000223159790039063,1.24390029907227,-2.20537185668945e-05,-0.000223159790039063,1.24390316009521,-3.34978103637695e-05,-0.000231266021728516,1.24391841888428,-3.44514846801758e-05,-0.000223636627197266,1.24391841888428,-3.34978103637695e-05,-0.000224113464355469,1.2439136505127,-3.44514846801758e-05,-0.000224113464355469,1.24391746520996,-3.5405158996582e-05,-0.000223636627197266,1.24391651153564,-3.73125076293945e-05,-0.000216484069824219,1.24391651153564,-3.63588333129883e-05,-0.000216960906982422,1.24391460418701,-3.63588333129883e-05,-0.000217437744140625,1.24391651153564,-4.79221343994141e-05,-0.000166416168212891,1.24393606185913,-4.79221343994141e-05,-0.000166893005371094,1.24394559860229,-4.88758087158203e-05,-0.000158786773681641,1.24393033981323,-4.69684600830078e-05,-0.000166416168212891,1.24392700195313,-4.79221343994141e-05,-0.000166893005371094,1.24392414093018,-4.64916229248047e-05,-0.000174045562744141,1.24392032623291,-4.64916229248047e-05,-0.000166416168212891,1.24392127990723,-4.50611114501953e-05,-0.000166416168212891,1.24391937255859,-4.64916229248047e-05,-0.000166893005371094,1.24392080307007,-4.55379486083984e-05,-0.000188827514648438,1.24392127990723,-4.55379486083984e-05,-0.000180721282958984,1.24392032623291,-4.69684600830078e-05,-0.000173568725585938,1.24392318725586,0,-0.00026702880859375,1.24393939971924,0,-0.000267505645751953,1.24393844604492,0,-0.00026702880859375,1.24393463134766,0,-0.00026702880859375,1.24393653869629,-5.39422035217285e-06,-0.000260353088378906,1.24391460418701,0,-0.000267982482910156,1.24391841888428,0,-0.000267982482910156,1.24391651153564,-1.06096267700195e-05,-0.000260353088378906,1.24392414093018,-1.1146068572998e-05,-0.000267505645751953,1.24393367767334,-1.29938125610352e-05,-0.000260829925537109,1.24391841888428,-9.20891761779785e-06,-0.000260829925537109, +1.24391841888428,-8.73208045959473e-06,-0.000260353088378906,1.2439136505127,-1.54376029968262e-05,-0.000259876251220703,1.24392604827881,-1.4960765838623e-05,-0.000259876251220703,1.24393367767334,-1.53779983520508e-05,-0.000260353088378906,1.24392032623291,-1.4960765838623e-05,-0.000260353088378906,1.24391746520996,-1.6331672668457e-05,-0.000252723693847656,1.24391651153564,-2.11000442504883e-05,-0.000253200531005859,1.24392509460449,-2.20537185668945e-05,-0.000260829925537109,1.24393749237061,-1.96695327758789e-05,-0.000252723693847656,1.24391841888428,-1.92523002624512e-05,-0.000253200531005859,1.24391555786133,-2.25305557250977e-05,-0.000253677368164063,1.24391841888428,-2.44379043579102e-05,-0.000252723693847656,1.24392509460449,-2.53915786743164e-05,-0.000253200531005859,1.24393463134766,-2.3961067199707e-05,-0.000246047973632813,1.24391651153564,-2.34842300415039e-05,-0.000253200531005859,1.24391937255859,-2.34842300415039e-05,-0.000253200531005859,1.24391937255859,-2.7775764465332e-05,-0.000245571136474609,1.24392509460449,-2.92062759399414e-05,-0.000246524810791016,1.24393653869629,-2.92062759399414e-05,-0.000246047973632813,1.24392032623291,-2.63452529907227e-05,-0.000245571136474609,1.24391937255859,-2.68220901489258e-05,-0.000245571136474609,1.24391841888428,-3.01599502563477e-05,-0.000246524810791016,1.24392604827881,-3.1590461730957e-05,-0.000245571136474609,1.24393653869629,-2.96831130981445e-05,-0.000238895416259766,1.24392318725586,-2.92062759399414e-05,-0.000238895416259766,1.24392032623291,-2.96831130981445e-05,-0.000238418579101563,1.24391841888428,-3.1590461730957e-05,-0.000231266021728516,1.24392890930176,-3.20672988891602e-05,-0.000231266021728516,1.24393653869629,-3.11136245727539e-05,-0.000230789184570313,1.24392127990723,-3.11136245727539e-05,-0.000231266021728516,1.24392032623291,-3.39746475219727e-05,-0.000230312347412109,1.24392318725586,-3.5405158996582e-05,-0.000231266021728516,1.24392986297607,-3.5405158996582e-05,-0.000231266021728516,1.24393844604492,-3.5405158996582e-05,-0.000223636627197266, +1.24391937255859,-3.5405158996582e-05,-0.000224113464355469,1.24392414093018,-3.5405158996582e-05,-0.000223159790039063,1.24392318725586,-3.5405158996582e-05,-0.000216960906982422,1.24393081665039,-3.49283218383789e-05,-0.000216484069824219,1.24394035339355,-3.9219856262207e-05,-0.000209331512451172,1.24392318725586,-3.63588333129883e-05,-0.000216960906982422,1.24392414093018,-3.68356704711914e-05,-0.000216484069824219,1.24391937255859,-3.87430191040039e-05,-0.000209331512451172,1.24393081665039,-3.93390655517578e-05,-0.000209808349609375,1.24394035339355,-3.9219856262207e-05,-0.000209808349609375,1.24392509460449,-3.98159027099609e-05,-0.000209331512451172,1.24392318725586,-4.02927398681641e-05,-0.000202655792236328,1.24391937255859,-4.22000885009766e-05,-0.000195503234863281,1.24393367767334,-4.22000885009766e-05,-0.000194549560546875,1.24394226074219,-4.22000885009766e-05,-0.000195026397705078,1.24392318725586,-4.26769256591797e-05,-0.000195503234863281,1.24392032623291,-4.55379486083984e-05,-0.000188827514648438,1.24392318725586,-2.05636024475098e-06,-0.000267982482910156,1.24392604827881,-1.57952308654785e-06,-0.000266551971435547,1.24393558502197,-4.93526458740234e-05,-0.000166416168212891,1.2439489364624,-4.93526458740234e-05,-0.000165939331054688,1.24394702911377,-4.74452972412109e-05,-0.000165939331054688,1.24394798278809,-4.83989715576172e-05,-0.000166893005371094,1.24394702911377,-1.53779983520508e-05,-0.000267982482910156,1.24393939971924,-1.4960765838623e-05,-0.000267505645751953,1.24393844604492,-2.25305557250977e-05,-0.000260353088378906,1.24394035339355,-2.25305557250977e-05,-0.000260353088378906,1.24393939971924,-1.10864639282227e-05,-0.000266551971435547,1.24394035339355,-1.10864639282227e-05,-0.00026702880859375,1.24393749237061,-2.63452529907227e-05,-0.000260829925537109,1.24394035339355,-2.58684158325195e-05,-0.000260829925537109,1.24393939971924,-3.1590461730957e-05,-0.000253200531005859,1.24394226074219,-3.01599502563477e-05,-0.000253677368164063,1.24394035339355,-3.25441360473633e-05,-0.000245571136474609, +1.24394035339355,-3.20672988891602e-05,-0.000246047973632813,1.24393939971924,-3.30209732055664e-05,-0.000238895416259766,1.24394416809082,-3.25441360473633e-05,-0.000231742858886719,1.24394035339355,-3.58819961547852e-05,-0.000230312347412109,1.24394226074219,-3.5405158996582e-05,-0.000231266021728516,1.24394035339355,-3.63588333129883e-05,-0.000216960906982422,1.24394416809082,-3.5405158996582e-05,-0.000216484069824219,1.24394226074219,-4.12464141845703e-05,-0.000209331512451172,1.24394416809082,-3.98159027099609e-05,-0.000209331512451172,1.2439432144165,-4.41074371337891e-05,-0.000194549560546875,1.24394512176514,-4.31537628173828e-05,-0.000195503234863281,1.24394512176514,-4.83989715576172e-05,-0.000174045562744141,1.24394798278809,-4.74452972412109e-05,-0.000174045562744141,1.24394750595093,0,-0.000274658203125,1.24393844604492,0,-0.000274658203125,1.24394035339355,0,-0.000274181365966797,1.24394035339355,-3.48687171936035e-06,-0.000274181365966797,1.24393939971924,-6.82473182678223e-06,-0.000274658203125,1.24394035339355,-9.20891761779785e-06,-0.000267505645751953,1.24393939971924,-5.87105751037598e-06,-0.000273227691650391,1.24393939971924,-1.20401382446289e-05,-0.000267505645751953,1.24393844604492,-1.29938125610352e-05,-0.000267505645751953,1.24394035339355,-1.16229057312012e-05,-0.000267505645751953,1.24394035339355,-1.44839286804199e-05,-0.00026702880859375,1.24394035339355,-1.44243240356445e-05,-0.000267982482910156,1.24394035339355,-1.39474868774414e-05,-0.00026702880859375,1.24394035339355,-1.59144401550293e-05,-0.000267982482910156,1.24394035339355,-1.68681144714355e-05,-0.000267505645751953,1.24393939971924,-1.54376029968262e-05,-0.000267982482910156,1.24393939971924,-1.96695327758789e-05,-0.000267982482910156,1.24394035339355,-2.15768814086914e-05,-0.000267982482910156,1.24394130706787,-1.92523002624512e-05,-0.00026702880859375,1.24393939971924,-2.44379043579102e-05,-0.000260353088378906,1.24394226074219,-2.49147415161133e-05,-0.000260353088378906,1.24394226074219,-2.34842300415039e-05,-0.000260829925537109, +1.24394226074219,-2.63452529907227e-05,-0.000260353088378906,1.24394226074219,-2.63452529907227e-05,-0.000260829925537109,1.24394130706787,-2.53915786743164e-05,-0.000260829925537109,1.24394035339355,-2.82526016235352e-05,-0.000259876251220703,1.24394035339355,-2.92062759399414e-05,-0.000260353088378906,1.24394130706787,-2.72989273071289e-05,-0.000260353088378906,1.24394130706787,-3.20672988891602e-05,-0.000259876251220703,1.24394130706787,-3.25441360473633e-05,-0.000253200531005859,1.24394130706787,-3.06367874145508e-05,-0.000253200531005859,1.24394416809082,-3.5405158996582e-05,-0.000253200531005859,1.24394035339355,-3.39746475219727e-05,-0.000253200531005859,1.24394035339355,-3.34978103637695e-05,-0.000252723693847656,1.24394130706787,-3.5405158996582e-05,-0.000246524810791016,1.24394226074219,-3.44514846801758e-05,-0.000245571136474609,1.24394226074219,-3.39746475219727e-05,-0.000245571136474609,1.24394130706787,-3.49283218383789e-05,-0.000246047973632813,1.24394035339355,-3.34978103637695e-05,-0.000246047973632813,1.24394416809082,-3.39746475219727e-05,-0.000245571136474609,1.24394035339355,-3.5405158996582e-05,-0.000245571136474609,1.24394130706787,-3.39746475219727e-05,-0.000238418579101563,1.24394226074219,-3.34978103637695e-05,-0.000245571136474609,1.24394416809082,-3.63588333129883e-05,-0.000237941741943359,1.24394226074219,-3.5405158996582e-05,-0.000231266021728516,1.2439432144165,-3.44514846801758e-05,-0.000237464904785156,1.2439432144165,-3.68356704711914e-05,-0.000231266021728516,1.24394035339355,-3.68356704711914e-05,-0.000230789184570313,1.24394226074219,-3.63588333129883e-05,-0.000230312347412109,1.24394226074219,-3.77893447875977e-05,-0.000230312347412109,1.24394226074219,-3.63588333129883e-05,-0.000231742858886719,1.24394226074219,-3.68356704711914e-05,-0.000231742858886719,1.24394416809082,-3.87430191040039e-05,-0.000223159790039063,1.24394130706787,-3.73125076293945e-05,-0.000224113464355469,1.24394416809082,-3.63588333129883e-05,-0.000223159790039063,1.24394512176514,-4.02927398681641e-05,-0.000216960906982422, +1.24394512176514,-3.93390655517578e-05,-0.000216484069824219,1.24394416809082,-3.82661819458008e-05,-0.000216960906982422,1.24394416809082,-4.22000885009766e-05,-0.000209808349609375,1.2439432144165,-4.17232513427734e-05,-0.000209808349609375,1.24394416809082,-4.07695770263672e-05,-0.000209808349609375,1.24394512176514,-4.36305999755859e-05,-0.000209331512451172,1.24394512176514,-4.22000885009766e-05,-0.000209331512451172,1.24394512176514,-4.22000885009766e-05,-0.000209331512451172,1.24394416809082,-4.50611114501953e-05,-0.000202178955078125,1.24394607543945,-4.45842742919922e-05,-0.000202655792236328,1.24394607543945,-4.31537628173828e-05,-0.000201702117919922,1.24394512176514,-4.79221343994141e-05,-0.000194549560546875,1.24394607543945,-4.69684600830078e-05,-0.000194549560546875,1.24394702911377,-4.55379486083984e-05,-0.000195026397705078,1.24394702911377,-4.98294830322266e-05,-0.000187397003173828,1.24394607543945,-4.93526458740234e-05,-0.000188350677490234,1.24394512176514,-4.79221343994141e-05,-0.000188350677490234,1.24394702911377,-4.93526458740234e-05,-0.000180721282958984,1.24394798278809,-5.22136688232422e-05,-0.000181198120117188,1.24394702911377,-4.98294830322266e-05,-0.000173568725585938,1.2439489364624,-4.98294830322266e-05,-0.000180721282958984,1.24394798278809,-5.31673431396484e-05,-0.000173568725585938,1.24394798278809,-5.03063201904297e-05,-0.000166416168212891,1.24394989013672,-5.03063201904297e-05,-0.000173568725585938,1.24394845962524,-5.26905059814453e-05,-0.000165462493896484,1.24394941329956,-5.12599945068359e-05,-0.000166416168212891,1.24395084381104,-5.12599945068359e-05,-0.000166893005371094,1.24394989013672,-4.4405460357666e-06,-0.000274181365966797,1.24394035339355,-2.5331974029541e-06,-0.000274181365966797,1.24394130706787,0,-0.000273227691650391,1.24394035339355,-2.5331974029541e-06,-0.000274181365966797,1.24393939971924,-2.5331974029541e-06,-0.000273704528808594,1.24393939971924,-1.06692314147949e-05,-0.000274658203125,1.24394130706787,-7.30156898498535e-06,-0.000274658203125,1.24394035339355, +-1.44839286804199e-05,-0.000267505645751953,1.24394035339355,-1.29938125610352e-05,-0.000274181365966797,1.24393939971924,-1.49011611938477e-05,-0.00026702880859375,1.24393939971924,-1.4960765838623e-05,-0.00026702880859375,1.24393844604492,-1.78217887878418e-05,-0.000267505645751953,1.24393939971924,-1.58548355102539e-05,-0.000267505645751953,1.24393939971924,-2.30073928833008e-05,-0.00026702880859375,1.24393939971924,-2.06232070922852e-05,-0.000267505645751953,1.24393939971924,-2.68220901489258e-05,-0.000260829925537109,1.24394130706787,-2.53915786743164e-05,-0.000267505645751953,1.24394130706787,-2.72989273071289e-05,-0.000260829925537109,1.24394035339355,-2.68220901489258e-05,-0.000260829925537109,1.24394130706787,-3.1590461730957e-05,-0.000259876251220703,1.24394130706787,-2.92062759399414e-05,-0.000260353088378906,1.24394226074219,-3.5405158996582e-05,-0.000253200531005859,1.24394226074219,-3.34978103637695e-05,-0.000260829925537109,1.24394226074219,-3.68356704711914e-05,-0.000253200531005859,1.24394226074219,-3.68356704711914e-05,-0.000252723693847656,1.24394226074219,-3.58819961547852e-05,-0.000245571136474609,1.24394226074219,-3.63588333129883e-05,-0.000253677368164063,1.24393939971924,-3.73125076293945e-05,-0.000245571136474609,1.24394226074219,-3.63588333129883e-05,-0.000245571136474609,1.24394035339355,-3.73125076293945e-05,-0.000238895416259766,1.2439432144165,-3.68356704711914e-05,-0.000246047973632813,1.24394130706787,-3.82661819458008e-05,-0.000238895416259766,1.24394130706787,-3.77893447875977e-05,-0.000237941741943359,1.24394130706787,-3.82661819458008e-05,-0.000231266021728516,1.24394226074219,-3.82661819458008e-05,-0.000230789184570313,1.24394226074219,-3.95774841308594e-05,-0.000230312347412109,1.24394226074219,-3.87430191040039e-05,-0.000231266021728516,1.24394416809082,-4.17232513427734e-05,-0.000224113464355469,1.24394416809082,-4.02927398681641e-05,-0.000230789184570313,1.2439432144165,-4.31537628173828e-05,-0.000216484069824219,1.24394416809082,-4.26769256591797e-05,-0.000216484069824219, +1.24394416809082,-4.36305999755859e-05,-0.000209331512451172,1.24394512176514,-4.36305999755859e-05,-0.000216960906982422,1.24394416809082,-4.64916229248047e-05,-0.000209331512451172,1.24394512176514,-4.45842742919922e-05,-0.000209808349609375,1.24394416809082,-4.79221343994141e-05,-0.000202655792236328,1.24394512176514,-4.74452972412109e-05,-0.000201702117919922,1.24394607543945,-5.12599945068359e-05,-0.000194549560546875,1.24394702911377,-4.93526458740234e-05,-0.000194549560546875,1.24394607543945,-5.17368316650391e-05,-0.000188350677490234,1.24394512176514,-5.12599945068359e-05,-0.000188350677490234,1.24394702911377,-5.36441802978516e-05,-0.000188350677490234,1.24394798278809,-5.41210174560547e-05,-0.000173568725585938,1.24394798278809,-5.41210174560547e-05,-0.000180721282958984,1.24394798278809,-5.55515289306641e-05,-0.000166416168212891,1.24394989013672,-5.50746917724609e-05,-0.000173568725585938,1.24394941329956,-5.31673431396484e-05,-0.000166893005371094,1.2439489364624,-5.45978546142578e-05,-0.000165939331054688,1.24394989013672,-3.01003456115723e-06,-0.000267505645751953,1.24391269683838,-2.5331974029541e-06,-0.000260829925537109,1.24391555786133,-4.64916229248047e-05,-0.000158786773681641,1.24392175674438,-4.55379486083984e-05,-0.000174045562744141,1.24391841888428,-4.55379486083984e-05,-0.000173568725585938,1.24391841888428,-4.36305999755859e-05,-0.000188827514648438,1.24391841888428,-4.45842742919922e-05,-0.000188350677490234,1.24391937255859,-4.12464141845703e-05,-0.000202655792236328,1.24391651153564,-4.12464141845703e-05,-0.000202178955078125,1.24391651153564,-3.82661819458008e-05,-0.000209808349609375,1.24391460418701,-3.87430191040039e-05,-0.000209331512451172,1.24391746520996,-3.49283218383789e-05,-0.000223636627197266,1.2439136505127,-3.49283218383789e-05,-0.000224590301513672,1.24391651153564,-3.20672988891602e-05,-0.000230312347412109,1.2439136505127,-3.25441360473633e-05,-0.000231266021728516,1.24391746520996,-2.96831130981445e-05,-0.000238895416259766,1.24391269683838,-2.92062759399414e-05,-0.000238895416259766, +1.24391460418701,-2.68220901489258e-05,-0.000238418579101563,1.24391269683838,-2.7775764465332e-05,-0.000238418579101563,1.24391555786133,-2.3961067199707e-05,-0.000246047973632813,1.2439136505127,-2.3961067199707e-05,-0.000246047973632813,1.24391269683838,-2.0146369934082e-05,-0.000252723693847656,1.24391174316406,-2.11000442504883e-05,-0.000252723693847656,1.24391460418701,-1.6331672668457e-05,-0.000253677368164063,1.24391078948975,-1.6331672668457e-05,-0.000253200531005859,1.2439136505127,-1.06692314147949e-05,-0.000260353088378906,1.24391078948975,-1.15633010864258e-05,-0.000260353088378906,1.24391269683838,-3.96370887756348e-06,-0.000260353088378906,1.24391269683838,-5.39422035217285e-06,-0.000260829925537109,1.24391078948975,-5.39422035217285e-06,-0.000260353088378906,1.24391174316406,-2.5331974029541e-06,-0.000267505645751953,1.24391937255859,-3.01003456115723e-06,-0.00026702880859375,1.24391460418701,-2.5331974029541e-06,-0.000260353088378906,1.24391746520996,-4.22000885009766e-05,-0.000166893005371094,1.2439169883728,-4.22000885009766e-05,-0.000173568725585938,1.24391555786133,-4.41074371337891e-05,-0.000166893005371094,1.24391794204712,-3.91006469726563e-05,-0.000202178955078125,1.24391174316406,-4.07695770263672e-05,-0.000194549560546875,1.2439136505127,-4.12464141845703e-05,-0.000195026397705078,1.24391460418701,-3.39746475219727e-05,-0.000224590301513672,1.24391078948975,-3.5405158996582e-05,-0.000216960906982422,1.2439136505127,-3.49283218383789e-05,-0.000224590301513672,1.24391269683838,-2.87294387817383e-05,-0.000237464904785156,1.24391269683838,-3.01599502563477e-05,-0.000230312347412109,1.24391078948975,-2.96831130981445e-05,-0.000230789184570313,1.24391174316406,-2.25305557250977e-05,-0.000246047973632813,1.24391078948975,-2.44379043579102e-05,-0.000245571136474609,1.24391078948975,-2.3961067199707e-05,-0.000246047973632813,1.24391078948975,-1.44839286804199e-05,-0.000252723693847656,1.24391078948975,-1.68085098266602e-05,-0.000253200531005859,1.24391078948975,-1.63912773132324e-05,-0.000253677368164063, +1.24391078948975,-3.96370887756348e-06,-0.000260353088378906,1.24390888214111,-7.30156898498535e-06,-0.000260353088378906,1.24390983581543,-6.3478946685791e-06,-0.000260829925537109,1.24390983581543,-3.87430191040039e-05,-0.000158786773681641,1.24391460418701,-3.87430191040039e-05,-0.000173568725585938,1.2439136505127,-3.91006469726563e-05,-0.000180721282958984,1.2439136505127,-3.82661819458008e-05,-0.000209331512451172,1.24391174316406,-3.87430191040039e-05,-0.000202178955078125,1.2439136505127,-3.68356704711914e-05,-0.000216484069824219,1.24391174316406,-3.1590461730957e-05,-0.000223636627197266,1.24391174316406,-3.30209732055664e-05,-0.000223636627197266,1.24391269683838,-3.11136245727539e-05,-0.000230789184570313,1.24391078948975,-2.68220901489258e-05,-0.000238895416259766,1.24390888214111,-2.7775764465332e-05,-0.000237941741943359,1.24391078948975,-2.53915786743164e-05,-0.000238895416259766,1.24391078948975,-2.02655792236328e-05,-0.000253200531005859,1.24391078948975,-2.15768814086914e-05,-0.000245571136474609,1.24391078948975,-1.82986259460449e-05,-0.000253200531005859,1.24391078948975,-1.06692314147949e-05,-0.000253200531005859,1.24391078948975,-1.25765800476074e-05,-0.000253200531005859,1.24390888214111,-6.3478946685791e-06,-0.000260353088378906,1.2439079284668,-8.73208045959473e-06,-0.000260829925537109,1.24391078948975,-3.01003456115723e-06,-0.000260353088378906,1.24390888214111,-3.96370887756348e-06,-0.000259876251220703,1.2439079284668,-2.05636024475098e-06,-0.000253677368164063,1.24390411376953,0,-0.000253200531005859,1.24390506744385,-2.5331974029541e-06,-0.000253200531005859,1.2439022064209,-2.5331974029541e-06,-0.000253200531005859,1.24390506744385,-3.48687171936035e-06,-0.000246047973632813,1.2439022064209,-3.01003456115723e-06,-0.000246047973632813,1.24390316009521,-3.96370887756348e-06,-0.000245571136474609,1.24390029907227,-3.96370887756348e-06,-0.000246047973632813,1.24390125274658,-4.94718551635742e-06,-0.000238895416259766,1.24389934539795,-4.4405460357666e-06,-0.000238418579101563,1.24390125274658, +-5.39422035217285e-06,-0.000231742858886719,1.24389839172363,-4.91738319396973e-06,-0.000230312347412109,1.24389743804932,-6.3478946685791e-06,-0.000216960906982422,1.24389743804932,-5.87105751037598e-06,-0.000224113464355469,1.243896484375,-6.82473182678223e-06,-0.000209808349609375,1.24389743804932,-7.30156898498535e-06,-0.000202655792236328,1.24389886856079,0,-0.00026702880859375,1.24390411376953,0,-0.000267982482910156,1.24390888214111,-2.5331974029541e-06,-0.000274658203125,1.24393844604492,0,-0.000274181365966797,1.24393939971924,0,-0.000274181365966797,1.24393939971924,-2.05636024475098e-06,-0.00026702880859375,1.24393939971924,-2.05636024475098e-06,-0.000274181365966797,1.24393939971924,-2.04890966415405e-06,-0.000266551971435547,1.24393844604492,0,-0.000267505645751953,1.24392604827881,-2.5331974029541e-06,-0.000259876251220703,1.24390888214111,-2.5331974029541e-06,-0.000260829925537109,1.2439136505127,-2.5331974029541e-06,-0.000260829925537109,1.24390983581543,3.66568565368652e-06,-0.000267982482910156,1.24390506744385,3.1888484954834e-06,-0.000274658203125,1.24393844604492,1.2814998626709e-06,-0.000274181365966797,1.24393939971924,2.71201133728027e-06,-0.00026702880859375,1.24393939971924,2.71201133728027e-06,-0.000274181365966797,1.24393939971924,2.23517417907715e-06,-0.000266551971435547,1.24393844604492,0,-0.000267505645751953,1.24392604827881,3.1888484954834e-06,-0.000259876251220703,1.24390888214111,3.1888484954834e-06,-0.000260829925537109,1.2439136505127,3.1888484954834e-06,-0.000260829925537109,1.24390983581543,5.50746917724609e-05,-0.000159740447998047,1.24394750595093,5.03063201904297e-05,-0.000159263610839844,1.24394750595093,5.22136688232422e-05,-0.000158786773681641,1.24394989013672,5.31673431396484e-05,-0.000159740447998047,1.2439489364624,-5.45978546142578e-05,-0.000159740447998047,1.24394750595093,-4.98294830322266e-05,-0.000159263610839844,1.24394750595093,-5.12599945068359e-05,-0.000158786773681641,1.24394989013672,-5.31673431396484e-05,-0.000159740447998047,1.2439489364624,5.07831573486328e-05, +-0.000158786773681641,1.24394989013672,4.79221343994141e-05,-0.000159263610839844,1.24392509460449,3.94582748413086e-05,-0.000152111053466797,1.24391651153564,-3.87430191040039e-05,-0.000151157379150391,1.24391555786133,-4.60147857666016e-05,-0.000152111053466797,1.24392032623291,-5.03063201904297e-05,-0.000158786773681641,1.24394989013672,-4.74452972412109e-05,-0.000158786773681641,1.24392652511597,-4.79221343994141e-05,-0.000159263610839844,1.24392509460449,4.64916229248047e-05,-0.000158786773681641,1.24392175674438,4.64916229248047e-05,-0.000152111053466797,1.24392032623291,1.60336494445801e-05,-0.000173568725585938,1.24390840530396,0,-0.000216484069824219,1.24389743804932,7.0035457611084e-06,-0.000217914581298828,1.24389743804932,-6.82473182678223e-06,-0.000217914581298828,1.24389743804932,0,-1.57356262207031e-05,0.0760030746459961,0,-1.66893005371094e-05,0.0643405914306641,0,-0.000312328338623047,1.17879199981689,0,-0.00031280517578125,1.20896816253662,0,-1.62124633789063e-05,0.0695409774780273,0,-0.00031280517578125,1.19871711730957,0,-1.57356262207031e-05,0.0736579895019531,0,-0.0003204345703125,1.21775341033936,0,-7.62939453125e-06,0.0460968017578125,0,-0.000296115875244141,1.16701126098633,0,-1.62124633789063e-05,0.0615234375,0,-0.000304698944091797,1.16678333282471,0,-8.58306884765625e-06,0.0214462280273438,0,-0.000296592712402344,1.17689323425293,0,-0.000249862670898438,1.22102737426758,0,-0.00030517578125,1.23212814331055,0,-0.000280380249023438,1.23245620727539,0,-0.00030517578125,1.19221687316895,0,0,0.0106287002563477,0,-0.000311851501464844,1.20884037017822,0,-0.000313758850097656,1.22324657440186,0,-0.000113487243652344,0.939410209655762,0,-0.000200271606445313,1.19356870651245,0,-8.10623168945313e-05,0.914405584335327,0,-5.7220458984375e-05,0.819705963134766,0,0,0.0237765312194824,0,-9.63211059570313e-05,0.868377923965454,0,-2.43186950683594e-05,0.094050407409668,0,-1.57356262207031e-05,0.0702848434448242,2.52723693847656e-05,-0.000128269195556641,0.552277565002441,2.69412994384766e-05,-0.000128746032714844, +0.547085762023926,2.00271606445313e-05,-0.000113010406494141,0.478952407836914,1.85966491699219e-05,-0.000104904174804688,0.453701019287109,1.07288360595703e-05,-8.0108642578125e-05,0.317276000976563,1.04904174804688e-05,-8.0108642578125e-05,0.334036827087402,5.7220458984375e-06,-5.57899475097656e-05,0.215373992919922,4.52995300292969e-06,-6.43730163574219e-05,0.236334800720215,2.74181365966797e-06,-4.00543212890625e-05,0.139963150024414,2.50339508056641e-06,-4.00543212890625e-05,0.170336723327637,0,-2.43186950683594e-05,0.0910215377807617,0,-3.24249267578125e-05,0.123570442199707,1.40666961669922e-05,-9.63211059570313e-05,0.385599136352539,1.40666961669922e-05,-9.67979431152344e-05,0.385762214660645,2.62260437011719e-05,-0.000128269195556641,0.54927921295166,2.74181365966797e-05,-0.000135898590087891,0.592172622680664,3.24249267578125e-05,-0.000144481658935547,0.631264686584473,3.00407409667969e-05,-0.000143527984619141,0.643608093261719,3.64780426025391e-05,-0.000169277191162109,0.733232498168945,3.38554382324219e-05,-0.000168800354003906,0.748307228088379,3.86238098144531e-05,-0.000193119049072266,0.829555511474609,3.50475311279297e-05,-0.000184059143066406,0.789841651916504,3.76701354980469e-05,-0.000225067138671875,0.955807685852051,4.12464141845703e-05,-0.000225067138671875,0.990911483764648,3.57627868652344e-05,-0.000248908996582031,1.02203464508057,3.93390655517578e-05,-0.000241279602050781,1.02534770965576,3.4332275390625e-05,-0.000257015228271484,1.06288146972656,3.19480895996094e-05,-0.000264644622802734,1.07442855834961,2.95639038085938e-05,-0.000280380249023438,1.11305522918701,2.70605087280273e-05,-0.000288963317871094,1.14713191986084,2.24113464355469e-05,-0.000296115875244141,1.15237712860107,1.94311141967773e-05,-0.000304698944091797,1.18679618835449,1.47819519042969e-05,-0.000304698944091797,1.16215515136719,1.22785568237305e-05,-0.000312328338623047,1.20582866668701,6.88433647155762e-06,-0.00031280517578125,1.1740665435791,5.81145286560059e-06,-0.000312328338623047,1.21248912811279,0,-2.43186950683594e-05, +0.0816049575805664,0,-3.19480895996094e-05,0.107373237609863,2.98023223876953e-06,-4.00543212890625e-05,0.156864166259766,5.7220458984375e-06,-5.57899475097656e-05,0.229340553283691,1.10864639282227e-05,-8.7738037109375e-05,0.33830451965332,1.57356262207031e-05,-0.000104427337646484,0.412177085876465,2.00271606445313e-05,-0.000113010406494141,0.477339744567871,2.55107879638672e-05,-0.000128269195556641,0.548909187316895,2.62260437011719e-05,-0.000127792358398438,0.557039260864258,3.07559967041016e-05,-0.000144481658935547,0.639883995056152,3.50475311279297e-05,-0.000169277191162109,0.739337921142578,3.71932983398438e-05,-0.000185012817382813,0.812287330627441,4.14848327636719e-05,-0.000225067138671875,0.962992668151855,3.69548797607422e-05,-0.000240802764892578,1.01008701324463,3.40938568115234e-05,-0.000264644622802734,1.08342838287354,2.84910202026367e-05,-0.000288009643554688,1.14228343963623,2.11000442504883e-05,-0.000304698944091797,1.18206310272217,1.34110450744629e-05,-0.000312328338623047,1.20706653594971,6.43730163574219e-06,-0.000320911407470703,1.2162561416626,0,-2.33650207519531e-05,0.089935302734375,0,-3.19480895996094e-05,0.117851257324219,2.86102294921875e-06,-4.00543212890625e-05,0.165535926818848,5.00679016113281e-06,-5.62667846679688e-05,0.234695434570313,1.10864639282227e-05,-8.05854797363281e-05,0.337352752685547,1.35898590087891e-05,-9.72747802734375e-05,0.397357940673828,1.95503234863281e-05,-0.000113010406494141,0.46373176574707,2.52723693847656e-05,-0.000128746032714844,0.555098533630371,2.78949737548828e-05,-0.000135898590087891,0.594005584716797,3.00407409667969e-05,-0.000152111053466797,0.649228096008301,3.57627868652344e-05,-0.000168800354003906,0.746655464172363,3.60012054443359e-05,-0.000176906585693359,0.783404350280762,3.76701354980469e-05,-0.000225067138671875,0.954025268554688,3.71932983398438e-05,-0.000240802764892578,1.0140266418457,3.26633453369141e-05,-0.000264644622802734,1.06492137908936,2.72989273071289e-05,-0.000288963317871094,1.13485908508301,2.00271606445313e-05,-0.000303745269775391, +1.18015003204346,1.34110450744629e-05,-0.000312328338623047,1.21591281890869,6.25848770141602e-06,-0.0003204345703125,1.22266960144043,0,-1.62124633789063e-05,0.0514230728149414,0,-1.66893005371094e-05,0.0698041915893555,1.78813934326172e-06,-2.43186950683594e-05,0.10264778137207,3.69548797607422e-06,-4.00543212890625e-05,0.147957801818848,6.67572021484375e-06,-4.81605529785156e-05,0.199539184570313,9.77516174316406e-06,-6.4849853515625e-05,0.252453804016113,1.43051147460938e-05,-8.0108642578125e-05,0.326485633850098,2.16960906982422e-05,-9.58442687988281e-05,0.411888122558594,2.88486480712891e-05,-0.000112533569335938,0.511150360107422,3.45706939697266e-05,-0.000136852264404297,0.611437797546387,4.00543212890625e-05,-0.00016021728515625,0.724087715148926,4.43458557128906e-05,-0.000192642211914063,0.849743843078613,4.69684600830078e-05,-0.000216484069824219,0.983536720275879,4.12464141845703e-05,-0.000225067138671875,0.982113838195801,6.9737434387207e-06,-0.000297069549560547,1.16069984436035,1.46627426147461e-05,-0.000288486480712891,1.1409273147583,2.21729278564453e-05,-0.000288963317871094,1.13091659545898,2.99215316772461e-05,-0.000272274017333984,1.10583209991455,3.67164611816406e-05,-0.000248908996582031,1.05336761474609,0,-1.57356262207031e-05,0.0681266784667969,0,-2.43186950683594e-05,0.0901050567626953,2.74181365966797e-06,-3.19480895996094e-05,0.131949424743652,4.76837158203125e-06,-4.81605529785156e-05,0.193022727966309,1.07288360595703e-05,-8.0108642578125e-05,0.328660011291504,1.57356262207031e-05,-0.000103473663330078,0.413417816162109,2.09808349609375e-05,-0.000120639801025391,0.495283126831055,2.74181365966797e-05,-0.000128269195556641,0.563299179077148,2.83718109130859e-05,-0.000128746032714844,0.552380561828613,3.21865081787109e-05,-0.000135898590087891,0.615772247314453,3.64780426025391e-05,-0.00016021728515625,0.717334747314453,4.22000885009766e-05,-0.000200748443603516,0.87413215637207,4.55379486083984e-05,-0.000232696533203125,1.02119064331055,4.02927398681641e-05,-0.000240802764892578,1.03239250183105, +3.50475311279297e-05,-0.000256538391113281,1.05556201934814,2.93254852294922e-05,-0.000272274017333984,1.09744834899902,2.22921371459961e-05,-0.000288963317871094,1.13320827484131,1.48415565490723e-05,-0.000304698944091797,1.16177368164063,7.03334808349609e-06,-0.000304698944091797,1.17222881317139,0,-8.58306884765625e-06,0.0238962173461914,0,-8.10623168945313e-06,0.0379571914672852,0,-1.66893005371094e-05,0.0617685317993164,2.26497650146484e-06,-2.43186950683594e-05,0.0911188125610352,4.05311584472656e-06,-3.24249267578125e-05,0.116751670837402,5.00679016113281e-06,-3.19480895996094e-05,0.134370803833008,1.1444091796875e-05,-5.67436218261719e-05,0.233271598815918,2.00271606445313e-05,-8.0108642578125e-05,0.347070693969727,4.93526458740234e-05,-0.000208854675292969,0.960766792297363,5.10215759277344e-05,-0.000192165374755859,0.886004447937012,4.67300415039063e-05,-0.00016021728515625,0.748448371887207,4.14848327636719e-05,-0.000135898590087891,0.634337425231934,3.00407409667969e-05,-0.000104427337646484,0.488685607910156,8.2850456237793e-06,-0.00029754638671875,1.17185878753662,1.68085098266602e-05,-0.000288963317871094,1.15626525878906,2.33650207519531e-05,-0.000280380249023438,1.12924480438232,3.07559967041016e-05,-0.000264167785644531,1.09039974212646,3.71932983398438e-05,-0.000240325927734375,1.04025840759277,4.36305999755859e-05,-0.000225067138671875,0.980501174926758,2.72989273071289e-05,-0.000225067138671875,1.19277191162109,3.76701354980469e-05,-0.000281333923339844,1.21798324584961,4.05311584472656e-05,-0.000192642211914063,1.14468717575073,5.62667846679688e-05,-0.000247955322265625,1.19052314758301,5.57899475097656e-05,-0.000151634216308594,1.06217384338379,7.43865966796875e-05,-0.000208854675292969,1.13958263397217,6.67572021484375e-05,-0.000104904174804688,0.925721645355225,8.72611999511719e-05,-0.000161170959472656,1.04917287826538,5.96046447753906e-05,-5.62667846679688e-05,0.704452276229858,8.58306884765625e-05,-0.000112056732177734,0.894100189208984,1.57356262207031e-05,-7.62939453125e-06,0.158694058656693, +5.81741333007813e-05,-4.05311584472656e-05,0.521697521209717,4.62532043457031e-05,-3.24249267578125e-05,0.406623601913452,6.29425048828125e-05,-0.000128746032714844,1.00229501724243,8.29696655273438e-05,-0.000184059143066406,1.10058259963989,3.67164611816406e-05,-2.47955322265625e-05,0.375275492668152,7.00950622558594e-05,-6.43730163574219e-05,0.654924392700195,3.36170196533203e-05,-0.000264167785644531,1.21697521209717,5.12599945068359e-05,-0.000234603881835938,1.18646669387817,6.98566436767578e-05,-0.000191688537597656,1.12923288345337,7.91549682617188e-05,-0.000168800354003906,1.08471918106079,8.53538513183594e-05,-0.0001373291015625,1.02442216873169,8.10623168945313e-05,-8.86917114257813e-05,0.837188005447388,5.91278076171875e-05,-4.05311584472656e-05,0.551718473434448,4.33921813964844e-05,-2.33650207519531e-05,0.390375137329102,3.00407409667969e-05,-1.57356262207031e-05,0.264148354530334,2.62260437011719e-06,-1.59740447998047e-05,0.0692319869995117,7.15255737304688e-06,-3.19480895996094e-05,0.144103050231934,1.71661376953125e-05,-6.43730163574219e-05,0.280312538146973,3.29017639160156e-05,-0.000104427337646484,0.486681938171387,4.86373901367188e-05,-0.000144481658935547,0.696719169616699,5.48362731933594e-05,-0.000168323516845703,0.828635215759277,5.62667846679688e-05,-0.000192165374755859,0.91729736328125,5.19752502441406e-05,-0.000215530395507813,0.98664665222168,4.74452972412109e-05,-0.000231742858886719,1.04394721984863,4.12464141845703e-05,-0.000257492065429688,1.09147167205811,3.29017639160156e-05,-0.000273704528808594,1.12949180603027,2.53915786743164e-05,-0.000288963317871094,1.15814208984375,1.77621841430664e-05,-0.00029754638671875,1.17764282226563,9.14931297302246e-06,-0.000304222106933594,1.18869209289551,0,-8.10623168945313e-06,0.0195541381835938,0,0,0.0111007690429688,0,0,0.00942897796630859,0,-7.86781311035156e-06,0.0389957427978516,0,-8.10623168945313e-06,0.0388212203979492,6.67572021484375e-06,-2.43186950683594e-05,0.115010261535645,4.29153442382813e-06,-1.59740447998047e-05,0.0686635971069336, +1.19209289550781e-05,-4.00543212890625e-05,0.178247451782227,2.38418579101563e-05,-6.34193420410156e-05,0.32042407989502,1.66893005371094e-05,-4.00543212890625e-05,0.201006889343262,7.15255737304688e-06,-1.62124633789063e-05,0.0911636352539063,1.76429748535156e-05,-3.21865081787109e-05,0.191603183746338,7.62939453125e-06,-1.59740447998047e-05,0.0878920555114746,1.47819519042969e-05,-2.40802764892578e-05,0.153638362884521,5.7220458984375e-06,-8.22544097900391e-06,0.061622142791748,1.00135803222656e-05,-1.60932540893555e-05,0.0873861312866211,2.71797180175781e-05,-6.34193420410156e-05,0.329707622528076,2.62260437011719e-05,-4.02927398681641e-05,0.262675285339355,2.95639038085938e-05,-5.60283660888672e-05,0.310272216796875,2.05039978027344e-05,-2.40802764892578e-05,0.190109729766846,3.62396240234375e-05,-9.58442687988281e-05,0.486039161682129,3.76701354980469e-05,-5.57899475097656e-05,0.38009786605835,4.00543212890625e-05,-7.20024108886719e-05,0.438644886016846,3.95774841308594e-05,-8.82148742675781e-05,0.473007678985596,5.19752502441406e-05,-8.86917114257813e-05,0.569621086120605,5.00679016113281e-05,-6.43730163574219e-05,0.497757911682129,5.24520874023438e-05,-0.000103950500488281,0.621268272399902,5.10215759277344e-05,-0.000128269195556641,0.6589674949646,6.4849853515625e-05,-0.0001678466796875,0.871609687805176,6.62803649902344e-05,-0.000144004821777344,0.816267013549805,6.58035278320313e-05,-0.000120162963867188,0.759854316711426,6.43730163574219e-05,-9.67979431152344e-05,0.689586639404297,6.72340393066406e-05,-0.000184535980224609,0.946774482727051,7.72476196289063e-05,-0.000193595886230469,1.04843187332153,7.96318054199219e-05,-0.000168323516845703,0.99318790435791,6.41345977783203e-05,-0.000209808349609375,1.01197242736816,7.05718994140625e-05,-0.000218391418457031,1.0947904586792,4.79221343994141e-05,-0.00017547607421875,1.10870504379272,6.07967376708984e-05,-0.000208854675292969,1.16220235824585,6.50882720947266e-05,-0.000234603881835938,1.16876316070557,5.79357147216797e-05,-0.000226020812988281,1.06503677368164, +6.27040863037109e-05,-0.000232696533203125,1.13201808929443,5.14984130859375e-05,-0.000240325927734375,1.10793495178223,5.45978546142578e-05,-0.000248908996582031,1.16104412078857,3.38554382324219e-05,-0.000215530395507813,1.17214632034302,4.29153442382813e-05,-0.000249862670898438,1.204270362854,4.72068786621094e-05,-0.000264167785644531,1.20651054382324,4.69684600830078e-05,-0.000273704528808594,1.18332481384277,4.43458557128906e-05,-0.000264167785644531,1.14196109771729,3.57627868652344e-05,-0.000280380249023438,1.1682186126709,3.814697265625e-05,-0.000288963317871094,1.1998815536499,2.03847885131836e-05,-0.000242233276367188,1.20726013183594,2.5629997253418e-05,-0.000271797180175781,1.22544574737549,2.75373458862305e-05,-0.000288963317871094,1.22561740875244,1.35302543640137e-05,-0.000241279602050781,1.21601581573486,1.68681144714355e-05,-0.000280380249023438,1.23017311096191,1.8775463104248e-05,-0.00029754638671875,1.22993278503418,1.8775463104248e-05,-0.00030517578125,1.19991397857666,2.75373458862305e-05,-0.00029754638671875,1.18733692169189,2.80141830444336e-05,-0.00029754638671875,1.21148109436035,1.8775463104248e-05,-0.00030517578125,1.21866798400879,6.64591789245605e-06,-0.000247955322265625,1.22001838684082,8.73208045959473e-06,-0.000280380249023438,1.23205184936523,9.62615013122559e-06,-0.00029754638671875,1.23173999786377,9.95397567749023e-06,-0.00030517578125,1.20674514770508,1.0371208190918e-05,-0.000304222106933594,1.2222261428833,8.0108642578125e-05,-0.000144481658935547,0.93372631072998,7.77244567871094e-05,-0.000120162963867188,0.861980438232422,6.58035278320313e-05,-8.0108642578125e-05,0.827769041061401,8.63075256347656e-05,-0.000113487243652344,0.943451404571533,8.82148742675781e-05,-0.000136852264404297,0.982040882110596,7.43865966796875e-05,-9.67979431152344e-05,0.772276401519775,5.00679016113281e-05,-4.10079956054688e-05,0.553889036178589,7.20024108886719e-05,-6.34193420410156e-05,0.705022096633911,7.96318054199219e-05,-8.86917114257813e-05,0.783454418182373,6.96182250976563e-05,-7.29560852050781e-05, +0.665465354919434,6.15119934082031e-05,-7.20024108886719e-05,0.601653099060059,6.00814819335938e-05,-5.67436218261719e-05,0.550532102584839,5.53131103515625e-05,-5.57899475097656e-05,0.501209259033203,4.33921813964844e-05,-4.83989715576172e-05,0.408789157867432,3.19480895996094e-05,-4.00543212890625e-05,0.300074100494385,5.05447387695313e-05,-3.19480895996094e-05,0.442075490951538,4.48226928710938e-05,-3.21865081787109e-05,0.399245738983154,3.57627868652344e-05,-3.21865081787109e-05,0.312597513198853,2.43186950683594e-05,-2.40802764892578e-05,0.206807374954224,1.04904174804688e-05,-7.98702239990234e-06,0.100156307220459,0,0,0.00982844829559326,0,0,0.00737476348876953,0,0,0.0248358249664307,2.86102294921875e-06,0,0.019542932510376,5.7220458984375e-06,0,0.0476725101470947,5.7220458984375e-06,0,0.0398997068405151,1.04904174804688e-05,0,0.0786301046609879,8.58306884765625e-06,0,0.06882244348526,1.43051147460938e-05,-8.10623168945313e-06,0.115438342094421,1.43051147460938e-05,0,0.102231532335281,1.85966491699219e-05,-8.10623168945313e-06,0.155161201953888,1.52587890625e-05,-7.62939453125e-06,0.129793703556061,0,0,0.0104916095733643,4.76837158203125e-06,0,0.0262645483016968,6.67572021484375e-06,0,0.0504716634750366,1.1444091796875e-05,0,0.0829273536801338,1.62124633789063e-05,-7.86781311035156e-06,0.120046675205231,2.00271606445313e-05,-7.86781311035156e-06,0.155484199523926,0,0,0.00169968605041504,0,0,0.00557887554168701,0,0,0.0139440298080444,3.814697265625e-06,0,0.0288017988204956,5.7220458984375e-06,0,0.0529857762157917,1.09672546386719e-05,-8.10623168945313e-06,0.101599097251892,2.47955322265625e-05,-1.59740447998047e-05,0.215349555015564,0,0,0.00319814682006836,2.86102294921875e-06,0,0.00978028774261475,2.86102294921875e-06,0,0.0231438875198364,5.7220458984375e-06,0,0.0462209582328796,1.00135803222656e-05,0,0.0815303027629852,1.57356262207031e-05,-7.62939453125e-06,0.133229672908783,2.38418579101563e-05,-7.86781311035156e-06,0.195928454399109,0,0,0.00941896438598633,4.76837158203125e-06,0,0.0239932537078857,6.67572021484375e-06, +0,0.0469813346862793,1.1444091796875e-05,0,0.0782249420881271,1.43051147460938e-05,-8.34465026855469e-06,0.113548308610916,1.71661376953125e-05,-8.58306884765625e-06,0.146122634410858,2.43186950683594e-05,-7.86781311035156e-06,0.203816890716553,2.43186950683594e-05,-8.34465026855469e-06,0.20879590511322,0,0,0.0051429271697998,0,0,0.0145182609558105,2.86102294921875e-06,0,0.0317376852035522,7.62939453125e-06,0,0.0586134195327759,1.1444091796875e-05,0,0.0941865351051092,1.71661376953125e-05,-8.10623168945313e-06,0.134428977966309,2.14576721191406e-05,-7.86781311035156e-06,0.171210765838623,2.24113464355469e-05,-7.86781311035156e-06,0.180776953697205,1.57356262207031e-05,-7.86781311035156e-06,0.13069760799408,1.04904174804688e-05,0,0.0932018160820007,7.62939453125e-06,0,0.062144935131073,4.76837158203125e-06,0,0.0372773408889771,2.86102294921875e-06,0,0.0190333127975464,0,0,0.00678861141204834,0,0,0.0095781683921814,2.86102294921875e-06,0,0.0202594399452209,4.29153442382813e-06,0,0.03427454829216,6.67572021484375e-06,0,0.0518760085105896,3.33786010742188e-06,0,0.0294885635375977,9.05990600585938e-06,0,0.0735046863555908,7.15255737304688e-06,0,0.0584758520126343,7.15255737304688e-06,0,0.0598641633987427,8.58306884765625e-06,-8.10623168945313e-06,0.0768715143203735,9.05990600585938e-06,0,0.0708431005477905,5.24520874023438e-06,0,0.0409157276153564,4.76837158203125e-06,0,0.0398976802825928,1.04904174804688e-05,-8.10623168945313e-06,0.0937117338180542,9.5367431640625e-06,0,0.0717731714248657,1.62124633789063e-05,-7.86781311035156e-06,0.135470271110535,3.57627868652344e-05,-2.43186950683594e-05,0.30428147315979,2.57492065429688e-05,-1.62124633789063e-05,0.218652009963989,1.28746032714844e-05,-8.10623168945313e-06,0.10734486579895,2.38418579101563e-05,-8.10623168945313e-06,0.210231184959412,3.71932983398438e-05,-2.43186950683594e-05,0.327833890914917,4.14848327636719e-05,-2.45571136474609e-05,0.350476026535034,3.14712524414063e-05,-1.59740447998047e-05,0.274495005607605,3.29017639160156e-05,-1.59740447998047e-05,0.284099221229553, +0,0,0.00778353214263916,0,0,0.00529289245605469,0,0,0.00115227699279785,0,0,0.00229358673095703,0,0,0.000645637512207031,0,0,0.000688791275024414,0,0,0.000208377838134766,0,0,0.000113964080810547,0,0,4.91142272949219e-05,0,0,2.14576721191406e-05,0,0,1.43051147460938e-05,1.43051147460938e-05,-8.58306884765625e-06,0.180366337299347,2.33650207519531e-05,-1.62124633789063e-05,0.340893745422363,2.86102294921875e-05,-3.33786010742188e-05,0.47919750213623,2.93254852294922e-05,-4.00543212890625e-05,0.598185539245605,3.07559967041016e-05,-5.7220458984375e-05,0.702186346054077,2.43186950683594e-05,-6.4849853515625e-05,0.654692888259888,2.22921371459961e-05,-7.15255737304688e-05,0.721359729766846,1.95503234863281e-05,-8.67843627929688e-05,0.779663324356079,1.57356262207031e-05,-9.5367431640625e-05,0.829061031341553,1.22189521789551e-05,-0.000104904174804688,0.869276523590088,9.23871994018555e-06,-0.000111579895019531,0.901687145233154,5.6922435760498e-06,-0.000111579895019531,0.92420768737793,2.65240669250488e-06,-0.000112533569335938,0.935980796813965,1.66893005371094e-05,-8.58306884765625e-06,0.190927177667618,2.90870666503906e-05,-1.71661376953125e-05,0.370923638343811,3.76701354980469e-05,-3.33786010742188e-05,0.529272317886353,4.24385070800781e-05,-5.81741333007813e-05,0.663582801818848,4.52995300292969e-05,-7.15255737304688e-05,0.775412797927856,4.43458557128906e-05,-9.72747802734375e-05,0.868693113327026,3.93390655517578e-05,-0.000120162963867188,0.946552276611328,3.26633453369141e-05,-0.000136375427246094,1.01121473312378,2.57492065429688e-05,-0.000151634216308594,1.06410312652588,2.00271606445313e-05,-0.00016021728515625,1.1070384979248,1.5556812286377e-05,-0.000177383422851563,1.14117002487183,1.12652778625488e-05,-0.000185012817382813,1.16667509078979,6.61611557006836e-06,-0.000191688537597656,1.18309259414673,2.23517417907715e-06,-0.000200271606445313,1.19129276275635,4.29153442382813e-06,0,0.0559725910425186,9.05990600585938e-06,-8.58306884765625e-06,0.136340796947479,1.21593475341797e-05,-6.67572021484375e-06,0.237345337867737, +1.45435333251953e-05,-1.52587890625e-05,0.330096364021301,1.52587890625e-05,-2.38418579101563e-05,0.422910332679749,1.45435333251953e-05,-4.00543212890625e-05,0.523422360420227,1.43051147460938e-05,-4.86373901367188e-05,0.623817682266235,1.2516975402832e-05,-5.7220458984375e-05,0.686717987060547,1.04904174804688e-05,-6.4849853515625e-05,0.754611968994141,8.40425491333008e-06,-7.2479248046875e-05,0.818560838699341,5.7220458984375e-06,-8.10623168945313e-05,0.891273021697998,2.2202730178833e-06,-8.10623168945313e-05,0.926232814788818,1.57356262207031e-05,-8.58306884765625e-06,0.277007460594177,1.64508819580078e-05,-1.71661376953125e-05,0.346591472625732,1.57356262207031e-05,-2.288818359375e-05,0.406985521316528,1.60932540893555e-05,-2.47955322265625e-05,0.503840923309326,1.60932540893555e-05,-4.00543212890625e-05,0.625529646873474,1.18017196655273e-05,-4.38690185546875e-05,0.619547486305237,9.00030136108398e-06,-4.00543212890625e-05,0.666394591331482,6.43730163574219e-06,-4.76837158203125e-05,0.718641996383667,4.38094139099121e-06,-5.7220458984375e-05,0.77168345451355,1.54972076416016e-06,-5.53131103515625e-05,0.813334345817566,0,0,0.0295997858047485,1.1444091796875e-05,-8.58306884765625e-06,0.160066962242126,1.78813934326172e-05,-1.62124633789063e-05,0.297435522079468,2.02655792236328e-05,-2.38418579101563e-05,0.416175484657288,2.21729278564453e-05,-3.33786010742188e-05,0.522616028785706,2.24113464355469e-05,-4.67300415039063e-05,0.620421171188354,2.07424163818359e-05,-5.7220458984375e-05,0.710983514785767,1.54972076416016e-05,-5.7220458984375e-05,0.646861791610718,1.33514404296875e-05,-7.34329223632813e-05,0.708917140960693,1.15036964416504e-05,-8.10623168945313e-05,0.765279769897461,7.98702239990234e-06,-8.86917114257813e-05,0.812310457229614,5.6922435760498e-06,-8.86917114257813e-05,0.84528374671936,2.36928462982178e-06,-9.72747802734375e-05,0.863110542297363,0,-2.33650207519531e-05,0.0855388641357422,0,-0.000264644622802734,1.06620121002197,0,-2.43186950683594e-05,0.0930757522583008,1.52587890625e-05,-7.20024108886719e-05, +0.344918251037598,1.85966491699219e-05,-8.0108642578125e-05,0.379097938537598,7.15255737304688e-06,-5.62667846679688e-05,0.244186401367188,1.09672546386719e-05,-6.43730163574219e-05,0.297821998596191,4.05311584472656e-06,-4.91142272949219e-05,0.191368103027344,2.20537185668945e-06,-3.24249267578125e-05,0.147202491760254,0,-2.43186950683594e-05,0.113972663879395,2.14576721191406e-05,-8.86917114257813e-05,0.404301643371582,3.31401824951172e-05,-0.000128269195556641,0.604386329650879,3.31401824951172e-05,-0.000128269195556641,0.609774589538574,2.71797180175781e-05,-0.000112056732177734,0.53327465057373,2.71797180175781e-05,-0.000136852264404297,0.636298179626465,2.50339508056641e-05,-0.00016021728515625,0.712410926818848,2.25305557250977e-05,-0.000185012817382813,0.791253089904785,1.9073486328125e-05,-0.000208377838134766,0.883259773254395,1.50203704833984e-05,-0.000232696533203125,0.960542678833008,9.83476638793945e-06,-0.000248432159423828,1.01850891113281,4.76837158203125e-06,-0.000257015228271484,1.05413341522217,0,-2.33650207519531e-05,0.0806341171264648,0,-2.43186950683594e-05,0.102475166320801,0,-3.19480895996094e-05,0.135881423950195,3.45706939697266e-06,-4.00543212890625e-05,0.171053886413574,4.76837158203125e-06,-6.43730163574219e-05,0.253539085388184,9.17911529541016e-06,-8.91685485839844e-05,0.348494529724121,1.52587890625e-05,-9.63211059570313e-05,0.401104927062988,1.93119049072266e-05,-0.000112533569335938,0.495641708374023,2.43186950683594e-05,-0.000120162963867188,0.52723217010498,2.88486480712891e-05,-0.000136852264404297,0.603384017944336,3.12328338623047e-05,-0.000135898590087891,0.627925872802734,3.36170196533203e-05,-0.000152111053466797,0.687246322631836,3.62396240234375e-05,-0.0001678466796875,0.75537109375,3.86238098144531e-05,-0.000217437744140625,0.949891090393066,3.50475311279297e-05,-0.000240802764892578,1.01018619537354,3.18288803100586e-05,-0.000256538391113281,1.07040691375732,2.53915786743164e-05,-0.000288963317871094,1.16014575958252,1.93119049072266e-05,-0.000296115875244141,1.18046092987061, +1.21593475341797e-05,-0.000304698944091797,1.20811557769775,5.63263893127441e-06,-0.000312328338623047,1.21459674835205,0,-0.00031280517578125,1.20702457427979,0,-2.43186950683594e-05,0.0934820175170898,0,-2.43186950683594e-05,0.104866981506348,0,-3.24249267578125e-05,0.132231712341309,3.21865081787109e-06,-4.05311584472656e-05,0.175497055053711,5.60283660888672e-06,-6.43730163574219e-05,0.257842063903809,1.18017196655273e-05,-8.91685485839844e-05,0.370631217956543,1.64508819580078e-05,-0.000104427337646484,0.446245193481445,2.09808349609375e-05,-0.000112533569335938,0.511860847473145,2.93254852294922e-05,-0.000128269195556641,0.579171180725098,3.21865081787109e-05,-0.000136852264404297,0.635127067565918,3.29017639160156e-05,-0.000136852264404297,0.620980262756348,3.36170196533203e-05,-0.000144481658935547,0.66060733795166,3.57627868652344e-05,-0.000160694122314453,0.721864700317383,3.79085540771484e-05,-0.000208854675292969,0.909333229064941,3.4332275390625e-05,-0.000232696533203125,1.00240230560303,3.18288803100586e-05,-0.000256538391113281,1.0756311416626,2.61068344116211e-05,-0.000288963317871094,1.19029998779297,2.00271606445313e-05,-0.000304698944091797,1.23656558990479,1.22189521789551e-05,-0.00031280517578125,1.24748802185059,6.02006912231445e-06,-0.00031280517578125,1.2396764755249,0,-0.000304698944091797,1.22516345977783,0,-1.59740447998047e-05,0.0668344497680664,0,-1.59740447998047e-05,0.0719833374023438,1.19209289550781e-05,-4.86373901367188e-05,0.247559547424316,1.54972076416016e-05,-5.62667846679688e-05,0.275868892669678,5.96046447753906e-06,-4.02927398681641e-05,0.177111625671387,9.29832458496094e-06,-4.00543212890625e-05,0.213910102844238,3.33786010742188e-06,-3.17096710205078e-05,0.141260147094727,1.78813934326172e-06,-2.40802764892578e-05,0.110376358032227,0,-1.59740447998047e-05,0.086827278137207,1.85966491699219e-05,-5.67436218261719e-05,0.301215648651123,2.12192535400391e-05,-6.43730163574219e-05,0.329977035522461,2.288818359375e-05,-7.20024108886719e-05,0.369060039520264,2.52723693847656e-05, +-8.0108642578125e-05,0.449007034301758,2.45571136474609e-05,-9.63211059570313e-05,0.501422882080078,2.36034393310547e-05,-0.000120162963867188,0.59352970123291,2.21729278564453e-05,-0.000145912170410156,0.692900657653809,1.93119049072266e-05,-0.000166893005371094,0.790373802185059,1.57356262207031e-05,-0.000191688537597656,0.877133369445801,1.0371208190918e-05,-0.000206947326660156,0.945579528808594,5.03659248352051e-06,-0.000216484069824219,0.989453315734863,0,-0.000216484069824219,1.0045108795166,0,0,0.0214712619781494,0,0,0.0230050086975098,3.33786010742188e-06,-8.10623168945313e-06,0.0756139755249023,4.52995300292969e-06,-8.58306884765625e-06,0.0865509510040283,1.78813934326172e-06,-8.58306884765625e-06,0.0539443492889404,2.38418579101563e-06,-8.58306884765625e-06,0.0648741722106934,0,0,0.0435318946838379,0,0,0.034466028213501,0,0,0.0274629592895508,5.48362731933594e-06,-8.10623168945313e-06,0.100828886032104,7.39097595214844e-06,-8.58306884765625e-06,0.129464387893677,8.82148742675781e-06,-1.71661376953125e-05,0.161389112472534,1.00135803222656e-05,-2.47955322265625e-05,0.204057455062866,1.1444091796875e-05,-3.14712524414063e-05,0.265890598297119,1.26361846923828e-05,-4.00543212890625e-05,0.353939533233643,1.29938125610352e-05,-5.62667846679688e-05,0.456228733062744,1.21593475341797e-05,-8.0108642578125e-05,0.564931392669678,1.04308128356934e-05,-9.5367431640625e-05,0.670895099639893,7.33137130737305e-06,-0.000103950500488281,0.761198997497559,3.75509262084961e-06,-0.000113487243652344,0.822150707244873,0,-0.000120162963867188,0.843627452850342,0,-5.7220458984375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072762966156,0,-5.7220458984375e-06,0.150727689266205,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085, +0,-5.7220458984375e-06,0.150727808475494,0,-6.67572021484375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15654993057251,0,-6.67572021484375e-06,0.1609046459198,0,-6.67572021484375e-06,0.164957523345947,0,-6.67572021484375e-06,0.168860912322998,0,-6.67572021484375e-06,0.172244548797607,0,-6.67572021484375e-06,0.174566507339478,0,-7.62939453125e-06,0.175393104553223,2.62260437011719e-06,0,0.0481425821781158,4.05311584472656e-06,0,0.0735712051391602,5.00679016113281e-06,-8.58306884765625e-06,0.101119637489319,6.43730163574219e-06,-8.58306884765625e-06,0.146993637084961,8.58306884765625e-06,-1.62124633789063e-05,0.246582984924316,1.00135803222656e-05,-3.14712524414063e-05,0.355527877807617,1.02519989013672e-05,-4.1961669921875e-05,0.469300031661987,9.00030136108398e-06,-4.9591064453125e-05,0.58168625831604,6.61611557006836e-06,-5.7220458984375e-05,0.679303884506226,3.33786010742188e-06,-5.62667846679688e-05,0.746046781539917,0,-6.4849853515625e-05,0.769779682159424,0,-8.34465026855469e-06,0.0441021919250488,0,-8.34465026855469e-06,0.0473241806030273,0,-8.34465026855469e-06,0.0566582679748535,0,-8.10623168945313e-06,0.0714221000671387,2.38418579101563e-06,-1.62124633789063e-05,0.0905776023864746,4.29153442382813e-06,-1.59740447998047e-05,0.112679004669189,6.19888305664063e-06,-2.40802764892578e-05,0.135559558868408,8.34465026855469e-06,-2.43186950683594e-05,0.157378196716309,1.04904174804688e-05,-2.43186950683594e-05,0.177542686462402,1.28746032714844e-05,-3.19480895996094e-05,0.198576927185059,1.47819519042969e-05,-3.19480895996094e-05,0.226066589355469,1.76429748535156e-05,-4.00543212890625e-05,0.262721538543701,1.93119049072266e-05,-4.86373901367188e-05,0.314496040344238,2.00271606445313e-05,-6.38961791992188e-05,0.385634422302246,1.97887420654297e-05,-8.10623168945313e-05,0.475461959838867,2.00271606445313e-05,-0.000103950500488281,0.576324939727783,1.75237655639648e-05,-0.000120162963867188,0.679831504821777,1.44243240356445e-05,-0.000144004821777344,0.776687622070313,9.83476638793945e-06,-0.00016021728515625, +0.856529235839844,4.91738319396973e-06,-0.000168800354003906,0.909172058105469,0,-0.000176429748535156,0.927581787109375,0,-2.43186950683594e-05,0.094050407409668,0,-1.57356262207031e-05,0.0702848434448242,-2.47955322265625e-05,-0.000128269195556641,0.552277565002441,-2.57492065429688e-05,-0.000128746032714844,0.547085762023926,-2.14576721191406e-05,-0.000113010406494141,0.478952407836914,-1.78813934326172e-05,-0.000104904174804688,0.453701019287109,-9.77516174316406e-06,-8.0108642578125e-05,0.317276000976563,-9.65595245361328e-06,-8.0108642578125e-05,0.334036827087402,-5.12599945068359e-06,-5.57899475097656e-05,0.215373992919922,-5.24520874023438e-06,-6.43730163574219e-05,0.236334800720215,-2.74181365966797e-06,-4.00543212890625e-05,0.139963150024414,-2.50339508056641e-06,-4.00543212890625e-05,0.170336723327637,0,-2.43186950683594e-05,0.0910215377807617,0,-3.24249267578125e-05,0.123570442199707,-1.31130218505859e-05,-9.63211059570313e-05,0.385599136352539,-1.40666961669922e-05,-9.67979431152344e-05,0.385762214660645,-2.62260437011719e-05,-0.000128269195556641,0.54927921295166,-2.83718109130859e-05,-0.000135898590087891,0.592172622680664,-3.0517578125e-05,-0.000144481658935547,0.631264686584473,-3.00407409667969e-05,-0.000143527984619141,0.643608093261719,-3.4332275390625e-05,-0.000169277191162109,0.733232498168945,-3.4332275390625e-05,-0.000168800354003906,0.748307228088379,-3.88622283935547e-05,-0.000193119049072266,0.829555511474609,-3.62396240234375e-05,-0.000184059143066406,0.789841651916504,-3.814697265625e-05,-0.000225067138671875,0.955807685852051,-4.22000885009766e-05,-0.000225067138671875,0.990911483764648,-3.60012054443359e-05,-0.000248908996582031,1.02203464508057,-3.86238098144531e-05,-0.000241279602050781,1.02534770965576,-3.45706939697266e-05,-0.000257015228271484,1.06288146972656,-3.25441360473633e-05,-0.000264644622802734,1.07442855834961,-2.90870666503906e-05,-0.000280380249023438,1.11305522918701,-2.61068344116211e-05,-0.000288963317871094,1.14713191986084,-2.26497650146484e-05,-0.000296115875244141, +1.15237712860107,-1.96695327758789e-05,-0.000304698944091797,1.18679618835449,-1.47819519042969e-05,-0.000304698944091797,1.16215515136719,-1.22785568237305e-05,-0.000312328338623047,1.20582389831543,-6.61611557006836e-06,-0.00031280517578125,1.1740665435791,-6.10947608947754e-06,-0.000312328338623047,1.21248912811279,0,-2.43186950683594e-05,0.0816049575805664,0,-3.19480895996094e-05,0.107373237609863,-3.21865081787109e-06,-4.00543212890625e-05,0.156864166259766,-5.00679016113281e-06,-5.57899475097656e-05,0.229340553283691,-1.08480453491211e-05,-8.7738037109375e-05,0.33830451965332,-1.52587890625e-05,-0.000104427337646484,0.412177085876465,-1.97887420654297e-05,-0.000113010406494141,0.477339744567871,-2.57492065429688e-05,-0.000128269195556641,0.548909187316895,-2.57492065429688e-05,-0.000127792358398438,0.557039260864258,-3.07559967041016e-05,-0.000144481658935547,0.639883995056152,-3.50475311279297e-05,-0.000169277191162109,0.739337921142578,-3.83853912353516e-05,-0.000185012817382813,0.812287330627441,-4.00543212890625e-05,-0.000225067138671875,0.962992668151855,-3.86238098144531e-05,-0.000240802764892578,1.01008701324463,-3.45706939697266e-05,-0.000264644622802734,1.08342838287354,-2.82526016235352e-05,-0.000288009643554688,1.14228343963623,-2.21729278564453e-05,-0.000304698944091797,1.18206310272217,-1.39474868774414e-05,-0.000312328338623047,1.20706653594971,-6.82473182678223e-06,-0.000320911407470703,1.2162561416626,0,-2.33650207519531e-05,0.089935302734375,0,-3.19480895996094e-05,0.117851257324219,-2.86102294921875e-06,-4.00543212890625e-05,0.165535926818848,-5.12599945068359e-06,-5.62667846679688e-05,0.234695434570313,-1.16825103759766e-05,-8.05854797363281e-05,0.337352752685547,-1.50203704833984e-05,-9.72747802734375e-05,0.397357940673828,-1.81198120117188e-05,-0.000113010406494141,0.46373176574707,-2.57492065429688e-05,-0.000128746032714844,0.555098533630371,-2.78949737548828e-05,-0.000135898590087891,0.594005584716797,-3.0517578125e-05,-0.000152111053466797,0.649228096008301,-3.50475311279297e-05,-0.000168800354003906, +0.746655464172363,-3.69548797607422e-05,-0.000176906585693359,0.783404350280762,-3.86238098144531e-05,-0.000225067138671875,0.954025268554688,-3.67164611816406e-05,-0.000240802764892578,1.0140266418457,-3.19480895996094e-05,-0.000264644622802734,1.06492137908936,-2.68220901489258e-05,-0.000288963317871094,1.13485908508301,-2.03847885131836e-05,-0.000303745269775391,1.18015003204346,-1.35898590087891e-05,-0.000312328338623047,1.21591281890869,-6.43730163574219e-06,-0.0003204345703125,1.22266960144043,0,-1.62124633789063e-05,0.0514230728149414,0,-1.66893005371094e-05,0.0698041915893555,-1.78813934326172e-06,-2.43186950683594e-05,0.10264778137207,-3.69548797607422e-06,-4.00543212890625e-05,0.147957801818848,-6.67572021484375e-06,-4.81605529785156e-05,0.199539184570313,-9.77516174316406e-06,-6.4849853515625e-05,0.252453804016113,-1.43051147460938e-05,-8.0108642578125e-05,0.326485633850098,-2.16960906982422e-05,-9.58442687988281e-05,0.411888122558594,-2.88486480712891e-05,-0.000112533569335938,0.511150360107422,-3.45706939697266e-05,-0.000136852264404297,0.611437797546387,-4.00543212890625e-05,-0.00016021728515625,0.724087715148926,-4.43458557128906e-05,-0.000192642211914063,0.849743843078613,-4.69684600830078e-05,-0.000216484069824219,0.983536720275879,-4.12464141845703e-05,-0.000225067138671875,0.982113838195801,-6.9737434387207e-06,-0.000297069549560547,1.16069984436035,-1.46627426147461e-05,-0.000288486480712891,1.1409273147583,-2.21729278564453e-05,-0.000288963317871094,1.13091659545898,-2.99215316772461e-05,-0.000272274017333984,1.10583209991455,-3.67164611816406e-05,-0.000248908996582031,1.05336761474609,0,-1.57356262207031e-05,0.0681266784667969,0,-2.43186950683594e-05,0.0901050567626953,-2.74181365966797e-06,-3.19480895996094e-05,0.131949424743652,-5.00679016113281e-06,-4.81605529785156e-05,0.193022727966309,-1.09672546386719e-05,-8.0108642578125e-05,0.328660011291504,-1.59740447998047e-05,-0.000103473663330078,0.413417816162109,-2.09808349609375e-05,-0.000120639801025391,0.495283126831055,-2.74181365966797e-05, +-0.000128269195556641,0.563299179077148,-2.83718109130859e-05,-0.000128746032714844,0.552380561828613,-3.17096710205078e-05,-0.000135898590087891,0.615772247314453,-3.64780426025391e-05,-0.00016021728515625,0.717334747314453,-4.24385070800781e-05,-0.000200748443603516,0.87413215637207,-4.55379486083984e-05,-0.000232696533203125,1.02119064331055,-4.00543212890625e-05,-0.000240802764892578,1.03239250183105,-3.50475311279297e-05,-0.000256538391113281,1.05556201934814,-2.93254852294922e-05,-0.000272274017333984,1.09744834899902,-2.21729278564453e-05,-0.000288963317871094,1.13320827484131,-1.4960765838623e-05,-0.000304698944091797,1.16177368164063,-7.03334808349609e-06,-0.000304698944091797,1.17222881317139,0,-8.58306884765625e-06,0.0238962173461914,0,-8.10623168945313e-06,0.0379571914672852,0,-1.66893005371094e-05,0.0617685317993164,-2.26497650146484e-06,-2.43186950683594e-05,0.0911188125610352,-4.05311584472656e-06,-3.24249267578125e-05,0.116751670837402,-5.00679016113281e-06,-3.19480895996094e-05,0.134370803833008,-1.1444091796875e-05,-5.67436218261719e-05,0.233271598815918,-2.00271606445313e-05,-8.0108642578125e-05,0.347070693969727,-4.93526458740234e-05,-0.000208854675292969,0.960766792297363,-5.10215759277344e-05,-0.000192165374755859,0.886004447937012,-4.67300415039063e-05,-0.00016021728515625,0.748448371887207,-4.14848327636719e-05,-0.000135898590087891,0.634337425231934,-3.00407409667969e-05,-0.000104427337646484,0.488685607910156,-8.2850456237793e-06,-0.00029754638671875,1.17185878753662,-1.68085098266602e-05,-0.000288963317871094,1.15626525878906,-2.33650207519531e-05,-0.000280380249023438,1.12924480438232,-3.07559967041016e-05,-0.000264167785644531,1.09039974212646,-3.71932983398438e-05,-0.000240325927734375,1.04025840759277,-4.36305999755859e-05,-0.000225067138671875,0.980501174926758,-2.72989273071289e-05,-0.000225067138671875,1.19277191162109,-3.76701354980469e-05,-0.000281333923339844,1.21798324584961,-4.05311584472656e-05,-0.000192642211914063,1.14468717575073,-5.62667846679688e-05,-0.000247955322265625, +1.19052314758301,-5.57899475097656e-05,-0.000151634216308594,1.06217384338379,-7.43865966796875e-05,-0.000208854675292969,1.13958263397217,-6.67572021484375e-05,-0.000104904174804688,0.925721645355225,-8.72611999511719e-05,-0.000161170959472656,1.04917287826538,-5.96046447753906e-05,-5.62667846679688e-05,0.704452276229858,-8.58306884765625e-05,-0.000112056732177734,0.894100189208984,-1.57356262207031e-05,-7.62939453125e-06,0.158694058656693,-5.81741333007813e-05,-4.05311584472656e-05,0.521697521209717,-4.62532043457031e-05,-3.24249267578125e-05,0.406623601913452,-6.29425048828125e-05,-0.000128746032714844,1.00229501724243,-8.29696655273438e-05,-0.000184059143066406,1.10058259963989,-3.67164611816406e-05,-2.47955322265625e-05,0.375275492668152,-7.00950622558594e-05,-6.43730163574219e-05,0.654924392700195,-3.36170196533203e-05,-0.000264167785644531,1.21697521209717,-5.12599945068359e-05,-0.000234603881835938,1.18646669387817,-6.98566436767578e-05,-0.000191688537597656,1.12923288345337,-7.91549682617188e-05,-0.000168800354003906,1.08471918106079,-8.53538513183594e-05,-0.0001373291015625,1.02442216873169,-8.10623168945313e-05,-8.86917114257813e-05,0.837188005447388,-5.91278076171875e-05,-4.05311584472656e-05,0.551718473434448,-4.33921813964844e-05,-2.33650207519531e-05,0.390375137329102,-3.00407409667969e-05,-1.57356262207031e-05,0.264148354530334,-2.62260437011719e-06,-1.59740447998047e-05,0.0692319869995117,-7.15255737304688e-06,-3.19480895996094e-05,0.144103050231934,-1.71661376953125e-05,-6.43730163574219e-05,0.280312538146973,-3.29017639160156e-05,-0.000104427337646484,0.486681938171387,-4.86373901367188e-05,-0.000144481658935547,0.696719169616699,-5.48362731933594e-05,-0.000168323516845703,0.828635215759277,-5.62667846679688e-05,-0.000192165374755859,0.91729736328125,-5.19752502441406e-05,-0.000215530395507813,0.98664665222168,-4.74452972412109e-05,-0.000231742858886719,1.04394721984863,-4.12464141845703e-05,-0.000257492065429688,1.09147167205811,-3.29017639160156e-05,-0.000273704528808594,1.12949180603027,-2.53915786743164e-05, +-0.000288963317871094,1.15814208984375,-1.77621841430664e-05,-0.00029754638671875,1.17764282226563,-9.14931297302246e-06,-0.000304222106933594,1.18869209289551,0,-8.10623168945313e-06,0.0195541381835938,0,0,0.0111007690429688,0,0,0.00942897796630859,0,-7.86781311035156e-06,0.0389957427978516,0,-8.10623168945313e-06,0.0388212203979492,-6.67572021484375e-06,-2.43186950683594e-05,0.115010261535645,-4.29153442382813e-06,-1.59740447998047e-05,0.0686635971069336,-1.19209289550781e-05,-4.00543212890625e-05,0.178247451782227,-2.38418579101563e-05,-6.34193420410156e-05,0.32042407989502,-1.66893005371094e-05,-4.00543212890625e-05,0.201006889343262,-7.15255737304688e-06,-1.62124633789063e-05,0.0911636352539063,-1.76429748535156e-05,-3.21865081787109e-05,0.191603183746338,-7.62939453125e-06,-1.59740447998047e-05,0.0878920555114746,-1.47819519042969e-05,-2.40802764892578e-05,0.153638362884521,-5.7220458984375e-06,-8.22544097900391e-06,0.061622142791748,-1.00135803222656e-05,-1.60932540893555e-05,0.0873861312866211,-2.71797180175781e-05,-6.34193420410156e-05,0.329707622528076,-2.62260437011719e-05,-4.02927398681641e-05,0.262675285339355,-2.95639038085938e-05,-5.60283660888672e-05,0.310272216796875,-2.05039978027344e-05,-2.40802764892578e-05,0.190109729766846,-3.62396240234375e-05,-9.58442687988281e-05,0.486039161682129,-3.76701354980469e-05,-5.57899475097656e-05,0.38009786605835,-4.00543212890625e-05,-7.20024108886719e-05,0.438644886016846,-3.95774841308594e-05,-8.82148742675781e-05,0.473007678985596,-5.19752502441406e-05,-8.86917114257813e-05,0.569621086120605,-5.00679016113281e-05,-6.43730163574219e-05,0.497757911682129,-5.24520874023438e-05,-0.000103950500488281,0.621268272399902,-5.10215759277344e-05,-0.000128269195556641,0.6589674949646,-6.4849853515625e-05,-0.0001678466796875,0.871609687805176,-6.62803649902344e-05,-0.000144004821777344,0.816267013549805,-6.58035278320313e-05,-0.000120162963867188,0.759854316711426,-6.43730163574219e-05,-9.67979431152344e-05,0.689586639404297,-6.72340393066406e-05,-0.000184535980224609,0.946774482727051, +-7.72476196289063e-05,-0.000193595886230469,1.04843187332153,-7.96318054199219e-05,-0.000168323516845703,0.99318790435791,-6.41345977783203e-05,-0.000209808349609375,1.01197242736816,-7.05718994140625e-05,-0.000218391418457031,1.0947904586792,-4.79221343994141e-05,-0.00017547607421875,1.10870504379272,-6.07967376708984e-05,-0.000208854675292969,1.16220235824585,-6.50882720947266e-05,-0.000234603881835938,1.16876316070557,-5.79357147216797e-05,-0.000226020812988281,1.06503677368164,-6.27040863037109e-05,-0.000232696533203125,1.13201808929443,-5.14984130859375e-05,-0.000240325927734375,1.10793495178223,-5.45978546142578e-05,-0.000248908996582031,1.16104412078857,-3.38554382324219e-05,-0.000215530395507813,1.17214632034302,-4.29153442382813e-05,-0.000249862670898438,1.204270362854,-4.72068786621094e-05,-0.000264167785644531,1.20651054382324,-4.69684600830078e-05,-0.000273704528808594,1.18332481384277,-4.43458557128906e-05,-0.000264167785644531,1.14196109771729,-3.57627868652344e-05,-0.000280380249023438,1.1682186126709,-3.814697265625e-05,-0.000288963317871094,1.1998815536499,-2.03847885131836e-05,-0.000242233276367188,1.20726013183594,-2.5629997253418e-05,-0.000271797180175781,1.22544574737549,-2.75373458862305e-05,-0.000288963317871094,1.22561740875244,-1.35302543640137e-05,-0.000241279602050781,1.21601581573486,-1.68681144714355e-05,-0.000280380249023438,1.23017311096191,-1.8775463104248e-05,-0.00029754638671875,1.22993278503418,-1.8775463104248e-05,-0.00030517578125,1.19991397857666,-2.75373458862305e-05,-0.00029754638671875,1.18733692169189,-2.80141830444336e-05,-0.00029754638671875,1.21148109436035,-1.8775463104248e-05,-0.00030517578125,1.21866798400879,-6.64591789245605e-06,-0.000247955322265625,1.22001838684082,-8.73208045959473e-06,-0.000280380249023438,1.23205184936523,-9.62615013122559e-06,-0.00029754638671875,1.23173999786377,-9.95397567749023e-06,-0.00030517578125,1.20674514770508,-1.0371208190918e-05,-0.000304222106933594,1.2222261428833,-8.0108642578125e-05,-0.000144481658935547,0.93372631072998,-7.77244567871094e-05, +-0.000120162963867188,0.861980438232422,-6.58035278320313e-05,-8.0108642578125e-05,0.827769041061401,-8.63075256347656e-05,-0.000113487243652344,0.943451404571533,-8.82148742675781e-05,-0.000136852264404297,0.982040882110596,-7.43865966796875e-05,-9.67979431152344e-05,0.772276401519775,-5.00679016113281e-05,-4.10079956054688e-05,0.553889036178589,-7.20024108886719e-05,-6.34193420410156e-05,0.705022096633911,-7.96318054199219e-05,-8.86917114257813e-05,0.783454418182373,-6.96182250976563e-05,-7.29560852050781e-05,0.665465354919434,-6.15119934082031e-05,-7.20024108886719e-05,0.601653099060059,-6.00814819335938e-05,-5.67436218261719e-05,0.550532102584839,-5.53131103515625e-05,-5.57899475097656e-05,0.501209259033203,-4.33921813964844e-05,-4.83989715576172e-05,0.408789157867432,-3.19480895996094e-05,-4.00543212890625e-05,0.300074100494385,-5.05447387695313e-05,-3.19480895996094e-05,0.442075490951538,-4.48226928710938e-05,-3.21865081787109e-05,0.399245738983154,-3.57627868652344e-05,-3.21865081787109e-05,0.312597513198853,-2.43186950683594e-05,-2.40802764892578e-05,0.206807374954224,-1.04904174804688e-05,-7.98702239990234e-06,0.100156307220459,0,0,0.00982844829559326,0,0,0.00737476348876953,0,0,0.0248358249664307,-2.86102294921875e-06,0,0.019542932510376,-5.7220458984375e-06,0,0.0476725101470947,-5.7220458984375e-06,0,0.0398997068405151,-1.04904174804688e-05,0,0.0786301046609879,-8.58306884765625e-06,0,0.06882244348526,-1.43051147460938e-05,-8.10623168945313e-06,0.115438342094421,-1.43051147460938e-05,0,0.102231532335281,-1.85966491699219e-05,-8.10623168945313e-06,0.155161201953888,-1.52587890625e-05,-7.62939453125e-06,0.129793703556061,0,0,0.0104916095733643,-4.76837158203125e-06,0,0.0262645483016968,-6.67572021484375e-06,0,0.0504716634750366,-1.1444091796875e-05,0,0.0829273536801338,-1.62124633789063e-05,-7.86781311035156e-06,0.120046675205231,-2.00271606445313e-05,-7.86781311035156e-06,0.155484199523926,0,0,0.00169968605041504,0,0,0.00557887554168701,0,0,0.0139440298080444,-3.814697265625e-06,0,0.0288017988204956,-5.7220458984375e-06, +0,0.0529857762157917,-1.09672546386719e-05,-8.10623168945313e-06,0.101599097251892,-2.47955322265625e-05,-1.59740447998047e-05,0.215349555015564,0,0,0.00319814682006836,-2.86102294921875e-06,0,0.00978028774261475,-2.86102294921875e-06,0,0.0231438875198364,-5.7220458984375e-06,0,0.0462209582328796,-1.00135803222656e-05,0,0.0815303027629852,-1.57356262207031e-05,-7.62939453125e-06,0.133229672908783,-2.38418579101563e-05,-7.86781311035156e-06,0.195928454399109,0,0,0.00941896438598633,-4.76837158203125e-06,0,0.0239932537078857,-6.67572021484375e-06,0,0.0469813346862793,-1.1444091796875e-05,0,0.0782249420881271,-1.43051147460938e-05,-8.34465026855469e-06,0.113548308610916,-1.71661376953125e-05,-8.58306884765625e-06,0.146122634410858,-2.43186950683594e-05,-7.86781311035156e-06,0.203816890716553,-2.43186950683594e-05,-8.34465026855469e-06,0.20879590511322,0,0,0.0051429271697998,0,0,0.0145182609558105,-2.86102294921875e-06,0,0.0317376852035522,-7.62939453125e-06,0,0.0586134195327759,-1.1444091796875e-05,0,0.0941865351051092,-1.71661376953125e-05,-8.10623168945313e-06,0.134428977966309,-2.14576721191406e-05,-7.86781311035156e-06,0.171210765838623,-2.24113464355469e-05,-7.86781311035156e-06,0.180776953697205,-1.57356262207031e-05,-7.86781311035156e-06,0.13069760799408,-1.04904174804688e-05,0,0.0932018160820007,-7.62939453125e-06,0,0.062144935131073,-4.76837158203125e-06,0,0.0372773408889771,-2.86102294921875e-06,0,0.0190333127975464,0,0,0.00678861141204834,0,0,0.0095781683921814,-2.86102294921875e-06,0,0.0202594399452209,-4.29153442382813e-06,0,0.03427454829216,-6.67572021484375e-06,0,0.0518760085105896,-3.33786010742188e-06,0,0.0294885635375977,-9.05990600585938e-06,0,0.0735046863555908,-7.15255737304688e-06,0,0.0584758520126343,-7.15255737304688e-06,0,0.0598641633987427,-8.58306884765625e-06,-8.10623168945313e-06,0.0768715143203735,-9.05990600585938e-06,0,0.0708431005477905,-5.24520874023438e-06,0,0.0409157276153564,-4.76837158203125e-06,0,0.0398976802825928,-1.04904174804688e-05,-8.10623168945313e-06,0.0937117338180542,-9.5367431640625e-06, +0,0.0717731714248657,-1.62124633789063e-05,-7.86781311035156e-06,0.135470271110535,-3.57627868652344e-05,-2.43186950683594e-05,0.30428147315979,-2.57492065429688e-05,-1.62124633789063e-05,0.218652009963989,-1.28746032714844e-05,-8.10623168945313e-06,0.10734486579895,-2.38418579101563e-05,-8.10623168945313e-06,0.210231184959412,-3.71932983398438e-05,-2.43186950683594e-05,0.327833890914917,-4.14848327636719e-05,-2.45571136474609e-05,0.350476026535034,-3.14712524414063e-05,-1.59740447998047e-05,0.274495005607605,-3.29017639160156e-05,-1.59740447998047e-05,0.284099221229553,0,0,0.00778353214263916,0,0,0.00529289245605469,0,0,0.00115227699279785,0,0,0.00229358673095703,0,0,0.000645637512207031,0,0,0.000688791275024414,0,0,0.000208377838134766,0,0,0.000113964080810547,0,0,4.91142272949219e-05,0,0,2.14576721191406e-05,0,0,1.43051147460938e-05,-1.43051147460938e-05,-8.58306884765625e-06,0.180366337299347,-2.33650207519531e-05,-1.62124633789063e-05,0.340893745422363,-2.86102294921875e-05,-3.33786010742188e-05,0.47919750213623,-2.93254852294922e-05,-4.00543212890625e-05,0.598185539245605,-3.07559967041016e-05,-5.7220458984375e-05,0.702186346054077,-2.43186950683594e-05,-6.4849853515625e-05,0.654692888259888,-2.22921371459961e-05,-7.15255737304688e-05,0.721359729766846,-1.95503234863281e-05,-8.67843627929688e-05,0.779663324356079,-1.57356262207031e-05,-9.5367431640625e-05,0.829061031341553,-1.22189521789551e-05,-0.000104904174804688,0.869276523590088,-9.23871994018555e-06,-0.000111579895019531,0.901687145233154,-5.6922435760498e-06,-0.000111579895019531,0.92420768737793,-2.65240669250488e-06,-0.000112533569335938,0.935980796813965,-1.66893005371094e-05,-8.58306884765625e-06,0.190927177667618,-2.90870666503906e-05,-1.71661376953125e-05,0.370923638343811,-3.76701354980469e-05,-3.33786010742188e-05,0.529272317886353,-4.24385070800781e-05,-5.81741333007813e-05,0.663582801818848,-4.52995300292969e-05,-7.15255737304688e-05,0.775412797927856,-4.43458557128906e-05,-9.72747802734375e-05,0.868693113327026,-3.93390655517578e-05,-0.000120162963867188, +0.946552276611328,-3.26633453369141e-05,-0.000136375427246094,1.01121473312378,-2.57492065429688e-05,-0.000151634216308594,1.06410312652588,-2.00271606445313e-05,-0.00016021728515625,1.1070384979248,-1.5556812286377e-05,-0.000177383422851563,1.14117002487183,-1.12652778625488e-05,-0.000185012817382813,1.16667509078979,-6.61611557006836e-06,-0.000191688537597656,1.18309259414673,-2.23517417907715e-06,-0.000200271606445313,1.19129276275635,-4.29153442382813e-06,0,0.0559725910425186,-9.05990600585938e-06,-8.58306884765625e-06,0.136340796947479,-1.21593475341797e-05,-6.67572021484375e-06,0.237345337867737,-1.45435333251953e-05,-1.52587890625e-05,0.330096364021301,-1.52587890625e-05,-2.38418579101563e-05,0.422910332679749,-1.45435333251953e-05,-4.00543212890625e-05,0.523422360420227,-1.43051147460938e-05,-4.86373901367188e-05,0.623817682266235,-1.2516975402832e-05,-5.7220458984375e-05,0.686717987060547,-1.04904174804688e-05,-6.4849853515625e-05,0.754611968994141,-8.40425491333008e-06,-7.2479248046875e-05,0.818560838699341,-5.7220458984375e-06,-8.10623168945313e-05,0.891273021697998,-2.2202730178833e-06,-8.10623168945313e-05,0.926232814788818,-1.57356262207031e-05,-8.58306884765625e-06,0.277007460594177,-1.64508819580078e-05,-1.71661376953125e-05,0.346591472625732,-1.57356262207031e-05,-2.288818359375e-05,0.406985521316528,-1.60932540893555e-05,-2.47955322265625e-05,0.503840923309326,-1.60932540893555e-05,-4.00543212890625e-05,0.625529646873474,-1.18017196655273e-05,-4.38690185546875e-05,0.619547486305237,-9.00030136108398e-06,-4.00543212890625e-05,0.666394591331482,-6.43730163574219e-06,-4.76837158203125e-05,0.718641996383667,-4.38094139099121e-06,-5.7220458984375e-05,0.77168345451355,-1.54972076416016e-06,-5.53131103515625e-05,0.813334345817566,0,0,0.0295997858047485,-1.1444091796875e-05,-8.58306884765625e-06,0.160066962242126,-1.78813934326172e-05,-1.62124633789063e-05,0.297435522079468,-2.02655792236328e-05,-2.38418579101563e-05,0.416175484657288,-2.21729278564453e-05,-3.33786010742188e-05,0.522616028785706,-2.24113464355469e-05, +-4.67300415039063e-05,0.620421171188354,-2.07424163818359e-05,-5.7220458984375e-05,0.710983514785767,-1.54972076416016e-05,-5.7220458984375e-05,0.646861791610718,-1.33514404296875e-05,-7.34329223632813e-05,0.708917140960693,-1.15036964416504e-05,-8.10623168945313e-05,0.765279769897461,-7.98702239990234e-06,-8.86917114257813e-05,0.812310457229614,-5.6922435760498e-06,-8.86917114257813e-05,0.84528374671936,-2.36928462982178e-06,-9.72747802734375e-05,0.863110542297363,0,-2.43186950683594e-05,0.0930757522583008,-1.52587890625e-05,-7.20024108886719e-05,0.344918251037598,-1.85966491699219e-05,-8.0108642578125e-05,0.379097938537598,-7.15255737304688e-06,-5.62667846679688e-05,0.244186401367188,-1.09672546386719e-05,-6.43730163574219e-05,0.297821998596191,-4.05311584472656e-06,-4.91142272949219e-05,0.191368103027344,-2.20537185668945e-06,-3.24249267578125e-05,0.147202491760254,0,-2.43186950683594e-05,0.113972663879395,-2.14576721191406e-05,-8.86917114257813e-05,0.404301643371582,-3.31401824951172e-05,-0.000128269195556641,0.604386329650879,-3.31401824951172e-05,-0.000128269195556641,0.609774589538574,-2.71797180175781e-05,-0.000112056732177734,0.53327465057373,-2.71797180175781e-05,-0.000136852264404297,0.636298179626465,-2.50339508056641e-05,-0.00016021728515625,0.712410926818848,-2.25305557250977e-05,-0.000185012817382813,0.791253089904785,-1.9073486328125e-05,-0.000208377838134766,0.883259773254395,-1.50203704833984e-05,-0.000232696533203125,0.960542678833008,-9.83476638793945e-06,-0.000248432159423828,1.01850891113281,-4.76837158203125e-06,-0.000257015228271484,1.05413341522217,0,-2.43186950683594e-05,0.102475166320801,0,-3.19480895996094e-05,0.135881423950195,-2.98023223876953e-06,-4.00543212890625e-05,0.171053886413574,-5.96046447753906e-06,-6.43730163574219e-05,0.253539085388184,-9.89437103271484e-06,-8.91685485839844e-05,0.348494529724121,-1.43051147460938e-05,-9.63211059570313e-05,0.401104927062988,-2.07424163818359e-05,-0.000112533569335938,0.495641708374023,-2.43186950683594e-05,-0.000120162963867188,0.52723217010498, +-2.78949737548828e-05,-0.000136852264404297,0.603384017944336,-3.07559967041016e-05,-0.000135898590087891,0.627925872802734,-3.40938568115234e-05,-0.000152111053466797,0.687246322631836,-3.62396240234375e-05,-0.0001678466796875,0.75537109375,-3.93390655517578e-05,-0.000217437744140625,0.949891090393066,-3.50475311279297e-05,-0.000240802764892578,1.01018619537354,-3.14712524414063e-05,-0.000256538391113281,1.07040691375732,-2.57492065429688e-05,-0.000288963317871094,1.16014575958252,-1.93119049072266e-05,-0.000296115875244141,1.18046092987061,-1.20997428894043e-05,-0.000304698944091797,1.20811557769775,-5.7220458984375e-06,-0.000312328338623047,1.21459674835205,0,-2.43186950683594e-05,0.104866981506348,0,-3.24249267578125e-05,0.132231712341309,-2.50339508056641e-06,-4.05311584472656e-05,0.175497055053711,-5.36441802978516e-06,-6.43730163574219e-05,0.257842063903809,-1.06096267700195e-05,-8.91685485839844e-05,0.370631217956543,-1.57356262207031e-05,-0.000104427337646484,0.446245193481445,-2.09808349609375e-05,-0.000112533569335938,0.511860847473145,-2.71797180175781e-05,-0.000128269195556641,0.579171180725098,-3.19480895996094e-05,-0.000136852264404297,0.635127067565918,-3.17096710205078e-05,-0.000136852264404297,0.620980262756348,-3.4332275390625e-05,-0.000144481658935547,0.66060733795166,-3.4332275390625e-05,-0.000160694122314453,0.721864700317383,-3.86238098144531e-05,-0.000208854675292969,0.909333229064941,-3.52859497070313e-05,-0.000232696533203125,1.00240230560303,-3.23057174682617e-05,-0.000256538391113281,1.0756311416626,-2.61068344116211e-05,-0.000288963317871094,1.19029998779297,-2.00271606445313e-05,-0.000304698944091797,1.23656558990479,-1.26957893371582e-05,-0.00031280517578125,1.24748802185059,-5.63263893127441e-06,-0.00031280517578125,1.2396764755249,0,-1.59740447998047e-05,0.0719833374023438,-1.19209289550781e-05,-4.86373901367188e-05,0.247559547424316,-1.54972076416016e-05,-5.62667846679688e-05,0.275868892669678,-5.96046447753906e-06,-4.02927398681641e-05,0.177111625671387,-9.29832458496094e-06,-4.00543212890625e-05, +0.213910102844238,-3.33786010742188e-06,-3.17096710205078e-05,0.141260147094727,-1.78813934326172e-06,-2.40802764892578e-05,0.110376358032227,0,-1.59740447998047e-05,0.086827278137207,-1.85966491699219e-05,-5.67436218261719e-05,0.301215648651123,-2.12192535400391e-05,-6.43730163574219e-05,0.329977035522461,-2.288818359375e-05,-7.20024108886719e-05,0.369060039520264,-2.52723693847656e-05,-8.0108642578125e-05,0.449007034301758,-2.45571136474609e-05,-9.63211059570313e-05,0.501422882080078,-2.36034393310547e-05,-0.000120162963867188,0.59352970123291,-2.21729278564453e-05,-0.000145912170410156,0.692900657653809,-1.93119049072266e-05,-0.000166893005371094,0.790373802185059,-1.57356262207031e-05,-0.000191688537597656,0.877133369445801,-1.0371208190918e-05,-0.000206947326660156,0.945579528808594,-5.03659248352051e-06,-0.000216484069824219,0.989453315734863,0,0,0.0230050086975098,-3.33786010742188e-06,-8.10623168945313e-06,0.0756139755249023,-4.52995300292969e-06,-8.58306884765625e-06,0.0865509510040283,-1.78813934326172e-06,-8.58306884765625e-06,0.0539443492889404,-2.38418579101563e-06,-8.58306884765625e-06,0.0648741722106934,0,0,0.0435318946838379,0,0,0.034466028213501,0,0,0.0274629592895508,-5.48362731933594e-06,-8.10623168945313e-06,0.100828886032104,-7.39097595214844e-06,-8.58306884765625e-06,0.129464387893677,-8.82148742675781e-06,-1.71661376953125e-05,0.161389112472534,-1.00135803222656e-05,-2.47955322265625e-05,0.204057455062866,-1.1444091796875e-05,-3.14712524414063e-05,0.265890598297119,-1.26361846923828e-05,-4.00543212890625e-05,0.353939533233643,-1.29938125610352e-05,-5.62667846679688e-05,0.456228733062744,-1.21593475341797e-05,-8.0108642578125e-05,0.564931392669678,-1.04308128356934e-05,-9.5367431640625e-05,0.670895099639893,-7.33137130737305e-06,-0.000103950500488281,0.761198997497559,-3.75509262084961e-06,-0.000113487243652344,0.822150707244873,0,-6.67572021484375e-06,0.15072762966156,0,-5.7220458984375e-06,0.150727689266205,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06, +0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15072774887085,0,-5.7220458984375e-06,0.15072774887085,0,-5.7220458984375e-06,0.150727808475494,0,-6.67572021484375e-06,0.150727689266205,0,-6.67572021484375e-06,0.15654993057251,0,-6.67572021484375e-06,0.1609046459198,0,-6.67572021484375e-06,0.164957523345947,0,-6.67572021484375e-06,0.168860912322998,0,-6.67572021484375e-06,0.172244548797607,0,-6.67572021484375e-06,0.174566507339478,-2.62260437011719e-06,0,0.0481425821781158,-4.05311584472656e-06,0,0.0735712051391602,-5.00679016113281e-06,-8.58306884765625e-06,0.101119637489319,-6.43730163574219e-06,-8.58306884765625e-06,0.146993637084961,-8.58306884765625e-06,-1.62124633789063e-05,0.246582984924316,-1.00135803222656e-05,-3.14712524414063e-05,0.355527877807617,-1.02519989013672e-05,-4.1961669921875e-05,0.469300031661987,-9.00030136108398e-06,-4.9591064453125e-05,0.58168625831604,-6.61611557006836e-06,-5.7220458984375e-05,0.679303884506226,-3.33786010742188e-06,-5.62667846679688e-05,0.746046781539917,0,-8.34465026855469e-06,0.0473241806030273,0,-8.34465026855469e-06,0.0566582679748535,0,-8.10623168945313e-06,0.0714221000671387,-2.38418579101563e-06,-1.62124633789063e-05,0.0905776023864746,-4.29153442382813e-06,-1.59740447998047e-05,0.112679004669189,-6.19888305664063e-06,-2.40802764892578e-05,0.135559558868408,-8.34465026855469e-06,-2.43186950683594e-05,0.157378196716309,-1.04904174804688e-05,-2.43186950683594e-05,0.177542686462402,-1.28746032714844e-05,-3.19480895996094e-05,0.198576927185059,-1.47819519042969e-05,-3.19480895996094e-05,0.226066589355469,-1.76429748535156e-05,-4.00543212890625e-05,0.262721538543701,-1.93119049072266e-05,-4.86373901367188e-05,0.314496040344238,-2.00271606445313e-05,-6.38961791992188e-05,0.385634422302246,-1.97887420654297e-05,-8.10623168945313e-05,0.475461959838867,-2.00271606445313e-05,-0.000103950500488281,0.576324939727783,-1.75237655639648e-05, +-0.000120162963867188,0.679831504821777,-1.44243240356445e-05,-0.000144004821777344,0.776687622070313,-9.83476638793945e-06,-0.00016021728515625,0.856529235839844,-4.91738319396973e-06,-0.000168800354003906,0.909172058105469 + } + Normals: *12402 { + a: 2.08616256713867e-07,3.1590461730957e-06,1.87456607818604e-05,-0.614458275324843,0.749738609418273,0.814735919237137,-1.16590493917465,-0.240297138690948,-0.206878855824471,-0.913626223802567,0.0098833441734314,-0.584595263004303,-0.619063750375062,0.343788206577301,-1.09117075800896,-0.315505236387253,-0.177529871463776,-0.602306082844734,-0.023861825466156,-0.151891112327576,-0.212673202157021,-0.694932704540334,0.402800306677818,0.628779530525208,-1.54714071750641,0.132651716470718,-0.185482129454613,-1.63190490007401,0.721628040075302,-0.849055051803589,-0.567862570751458,0.406930804252625,-1.76066499948502,0.241947174072266,0.613282561302185,-1.06640934944153,0.31584620475769,0.746835194528103,-0.0226595103740692,-0.503570761358766,0.187522351741791,0.553333550691605,-1.58790272474289,0.707290686666965,0.0987675786018372,-0.638963812496513,1.34006577730179,-0.946064800024033,0.196387112140656,0.613585084676743,-0.173846870660782,-0.563043998273836,-0.687561631202698,-0.784788578748703,-1.07353699207306,0.400737449526787,-0.467529565095901,-0.26256600709479,1.13180829584599,-1.03472228348255,0.661270558834076,0.267480224370956,-0.971806269139051,-0.577152193455174,-0.250804007053375,-0.855064541101456,-1.61035460233688,0.635228991508484,-0.683772685006261,-0.262565524900069,1.13491155207157,-0.964949887245893,0.697275161743164,0.677578002214432,-1.17042849957943,-0.149451375700551,-0.976398641243577,-1.28964230418205,-1.12977230548859,0.546755105257034,-1.14108553528786,-0.262560795850277,1.13323475420475,-1.01409305632114,0.512479066848755,0.790243551135063,-1.19418101012707,-0.119221362153539,-0.824072629213333,-1.02770256996155,-0.872991800308228,0.766128927469254,-1.21790158748627,-0.262565123334966,1.11788077652454,-1.1394426971674,0.65999835729599,0.59417524933815,-1.40319493412971,-0.119221083248988,-0.818439334630966,-1.0946541428566,-0.786892170337596,0.678751960396767,-1.39529579877853,1.32694438077507e-05,0.794291660189629,-1.76284980773926,0.427553847432137,-0.00212721340358257, +-1.80498391389847,-0.126888529018743,-0.560897380113602,-1.69106978178024,-0.576962461117764,0.18453673273325,-1.80296605825424,0.426372540480646,-0.7856066506356,-1.41663235425949,0.506949675566705,-0.71352538280189,-1.45706170797348,-0.42726277316,-0.638156309723854,-1.4034828543663,-0.402323126792908,-0.570530608296394,-1.43952426314354,0.132576964795589,-0.693907247856259,-1.7295058965683,-0.443712701443691,-0.487296894192696,-1.601975440979,0.547586327167592,-0.404278323054314,-1.52142333984375,0.715978629887104,-0.55127315223217,-0.786046132445335,0.876180529594421,-0.355912491679192,-0.546772569417953,0.630455315113068,-0.695553615689278,-0.776315659284592,0.796452887356281,-0.415340229868889,-0.626326233148575,0.791547581553459,-0.106097429990768,-0.186294734477997,0.83967137336731,-0.535557061433792,-0.489226311445236,0.949246436357498,-0.36696342099458,-0.287919461727142,0.268662922084332,-0.197248699143529,-0.0111244916915894,0.126882781628628,-0.0203378051519394,0.00500065088272095,0.411970466375351,0.157753271982074,0.0330566763877869,0.389412045478821,-0.00875730812549591,0.0260078310966492,0.126983426511288,-0.00949320197105408,0.0197142362594604,0.496666982769966,0.298241337761283,0.276766002178192,0.516596794128418,0.23688231408596,0.317294597625732,0.348444014787674,0.464743211865425,0.485552757978439,-1.10268592834473e-06,2.39023938775063e-05,0,5.96046447753906e-08,2.02953815460205e-05,2.92062759399414e-06,-0.173205375671387,0.00331175327301025,-0.227455407381058,0.0804422497749329,-0.13591206073761,-0.159766092896461,-1.07288360595703e-06,5.60283660888672e-06,2.04145908355713e-05,-0.117997825145721,0.0398747324943542,-0.12108451128006,-0.063545823097229,-0.166572988033295,-1.11223301291466,0.341135770082474,-0.396808564662933,-0.854647725820541,0.204594820737839,-0.0261962413787842,-0.917236536741257,0.63475947547704,-0.133737921714783,-1.52173358201981,0.215291112661362,-0.390395194292068,-1.32070398330688,1.16869595646858,-0.144413530826569,-0.762321203947067,1.3866394162178,-0.273431777954102, +-0.938458889722824,1.67391014099121,0.725759848952293,-0.681921139359474,1.26531571149826,0.342947512865067,-0.814878880977631,1.45452564954758,0.608550518751144,0.000682756304740906,1.46635514497757,0.536584548652172,0.284476548433304,1.45164740085602,0.562004417181015,0.322115361690521,1.01495039463043,0.536572009325027,0.631507575511932,1.04565998911858,0.563188433647156,1.16568320989609,0.491116964258254,0.140292704105377,1.19134098291397,0.430817087843224,0.330297708511353,1.55094581842422,0.514487318694592,0.326840877532959,1.55877548456192,0.459985514171422,0.140285670757294,1.19133526086807,0.458434022963047,0.389716863632202,1.40132430195808,0.372906737029552,0.0549792051315308,1.36209779977798,0.246016025543213,0.361867159605026,1.54351031780243,-0.340577334165573,0.571570381522179,1.23828822374344,-0.460665136575699,0.42638286948204,0.778121173381805,-0.820278443396091,0.466300055384636,1.248142182827,-0.9053242104128,0.871465057134628,0.665390074253082,-0.364990711212158,0.32562842965126,0.125722169876099,0.102073937654495,1.6102779507637,0.593074001371861,0.0265230042859912,1.40265595912933,0.398821949958801,-0.707817896269262,0.160437524318695,0.255330979824066,-0.817904233932495,1.73617589473724,0.277160078287125,-0.087244838476181,1.74319171905518,0.391099395230412,0.225002735853195,0.498893052339554,-0.242246180772781,-0.136089116334915,1.54239881038666,0.373009517788887,-0.0377527475357056,1.66544377803802,0.550630107522011,-0.000215113162994385,1.59158593416214,0.503254983574152,-0.0967063307762146,-0.0127520710229874,0.976361691951752,0.300719201564789,0.479085445404053,0.962738931179047,0.344736129045486,0.738475292921066,1.0301770567894,0.0890934467315674,-0.0271729230880737,0.827636361122131,-0.0859195590019226,-0.101080268621445,1.26643812656403,-0.676508143544197,-0.359164118766785,0.551496546482667,-0.569954492413085,-0.296708762645721,0.821890890598297,-0.959423959255219,-1.16327340900898,0.760706454515457,-0.692784577608109,-1.21907049417496,0.526247294154018,-0.576845660805702,-0.506689041852951, +0.988247036933899,-0.684124898165464,-0.573785573244095,0.688354335725307,-0.867777533829212,-1.13125258684158,0.947977274656296,-1.784747838974,-0.528800040483475,0.653051152825356,-1.59751683473587,0.545386984944344,1.06387144327164,-1.46186906099319,0.456303253769875,1.0979138314724,-1.14295935630798,1.36632150411606,0.87495344877243,-1.30512881278992,1.13228157162666,0.894674241542816,-0.944908827543259,1.31606259942055,0.472739595919847,-0.921598843553738,1.37235879898071,-0.125888083130121,-1.08429600298405,1.21030955016613,-0.0548547357320786,-0.701026394963264,1.19545891880989,-0.524190099909902,-0.722502082586288,1.26296100020409,-0.281991690397263,-0.637654691934586,1.1763224452734,-0.117705099284649,-0.542821705341339,0.840230196714401,-0.250454410910606,0.16379189491272,0.324554346501827,-0.360155701637268,0.0860341191291809,-0.115896731615067,-0.718855530023575,0.122332036495209,-0.0541608035564423,-0.396315887570381,-0.163210690021515,-0.606987617909908,-1.00094112753868,0.144031763076782,-0.387066811323166,-0.844495989382267,-0.745948120951653,-0.670149758458138,-1.14503374695778,-0.684338247495447,-0.712742537260056,-0.929003208875656,-0.996004402637482,-0.67710343003273,-0.673062816262245,-0.709602653980255,-0.704259783029556,-0.903552860021591,-0.478173926472664,-0.721502497792244,-0.988893091678619,-0.669079881161451,-0.666818097233772,-1.16920468211174,-0.592600271105766,-0.637124568223953,-0.999895125627518,-1.0406131669879,0.281377613544464,-1.00131042301655,-1.12001609802246,0.534258082509041,-0.665403366088867,-1.18505741655827,-0.0326717495918274,-0.836708731949329,-1.25743317604065,1.07244673371315,-0.607315666973591,-1.21464216709137,1.00046162307262,-0.494254291057587,-0.2899080067873,1.29821914434433,-0.961996601894498,-0.0707778619845385,1.31729951500893,-1.06311253458261,-0.225015997886658,1.21930754184723,-1.08550467342138,-0.120483420789242,1.2205226123333,-0.975007701665163,-0.0527727752923965,1.2883340716362,-1.05252464860678,0.204596495255828,1.60868448019028,-0.806272737681866, +0.225166410207748,1.27585509419441,-1.02903649955988,0.723320424556732,0.676994740962982,-1.12500448524952,0.758160121738911,0.279119908809662,-1.1487432718277,0.793807327747345,-0.0163919925689697,-1.31238919496536,0.508439188823104,-0.123738646507263,-1.16270318627357,0.53354468551877,-0.0476204752922058,-1.23405739665031,-0.0839923524401636,-0.612529098987579,-1.24819669127464,-0.0929895120511333,-0.663579642772675,-1.40609765052795,-0.172895886003971,-0.560933381319046,-1.39661660790443,0.0839898160554915,-0.612529873847961,-1.24819505214691,0.102113215001664,-0.657230898737907,-1.42699229717255,-0.0486114605046892,-0.711038932204247,-1.31336858868599,-0.0463057362578363,-0.536087393760681,-1.42962798476219,-0.804812356829643,0.00142121315002441,-1.30234456062317,-0.806609742343426,0.588501825928688,-1.16165086627007,-0.864582171394631,-0.00519284605979919,-1.3111244738102,-0.344773713672133,1.59008073806763,-0.784140262752771,-0.451376250013709,1.51645815372467,-0.826754223555326,-0.0448401868343353,1.31564664840698,-1.00872667878866,0.0707716080045095,1.32352137565613,-0.898684680461884,-0.0897317733615637,1.62786287069321,-0.746537383645773,0.233062051236629,1.59334379434586,-0.855161495506763,0.290106438100338,1.29822331666946,-0.907713638618588,0.427923873066902,1.1821882724762,-1.03835175186396,0.293757610023022,1.19698233902454,-0.966160656418651,0.841725066304207,0.931826949119568,-1.13506731390953,1.08922180533409,-0.0217223167419434,-1.20990794897079,1.08392921090126,0.000427544116973877,-1.24968656897545,0.661730274558067,-0.214345872402191,-0.981957629323006,1.08583980798721,-0.466896206140518,-1.02210631966591,0.522030211985111,-0.755207970738411,-0.79476360976696,0.228503942069949,-0.787153124809265,-1.0671501159668,0.0998819693922997,-0.686433136463165,-1.04197063297033,0.714722104370594,-0.755208566784859,-0.794764243066311,0.731021471321583,-0.714966207742691,-0.81918803602457,0.774803005158901,-0.7900151014328,-0.585129387676716,0.759313836693764,-0.611976206302643,-0.571369379758835,-0.25830751657486, +-0.0502630770206451,-0.987130999565125,-0.152605891227722,0.84633557498455,-0.940494433045387,-0.127729594707489,-0.209290452301502,-0.944472849369049,0.54446941614151,1.15387767553329,-0.625227473676205,0.328638911247253,1.19600223004818,-0.766838625073433,0.389984130859375,1.29729893803596,-0.992365628480911,0.8371354758915,1.18806791305542,-0.690293833613396,0.647952675819397,1.06691991537809,-0.826883405447006,1.04697871208191,0.88630498200655,-0.666543737053871,1.07444612681866,1.20328053832054,-0.403253555297852,1.0629818290472,1.30359655618668,-0.721695065498352,1.0571066737175,1.15383970737457,-0.733603984117508,1.73909670114517,0.772475749254227,-0.498098537325859,1.62197077274323,-0.0592176914215088,-0.470122501254082,1.72107368707657,0.0587450265884399,-0.386984169483185,1.39415836334229,-0.630731552839279,-0.453466087579727,1.33088731765747,-0.504778653383255,0.295823633670807,0.606169208884239,-0.44049596786499,0.327891357243061,0.951014928337807,-0.767932623624802,-0.256127431988716,0.791720874607563,-1.06960397213697,-0.498979166150093,1.01488912850618,-1.34480831027031,0.0719972178339958,0.909938402473927,-0.667624920606613,0.434439104050398,0.750713840126991,-0.660635322332382,0.33557964861393,0.842631302773952,-1.34933617711067,0.0894683822989464,0.0518632531166077,-0.785433888435364,0.211886078119278,-0.137132465839386,0.965151816606522,0.33759394288063,-0.321418046951294,0.192987501621246,0.320129796862602,0.360509514808655,1.42196077108383,0.109588235616684,0.489459186792374,1.23812863230705,0.233797460794449,0.472422257065773,1.02155449986458,-0.151265680789948,0.407967844062114,-0.0116984844207764,-0.342004418373108,0.699230760335922,0.637720465660095,-0.0622905194759369,0.677333012223244,-0.26705926656723,-0.833328571170568,0.512104883790016,-0.0845221281051636,-0.460764344781637,0.703440099954605,-0.382532894611359,-0.695260971784592,0.772829949855804,-0.0453706383705139,-0.554890897125006,1.1346520781517,-0.601799994707108,-0.785175666213036,0.926007479429245,-1.40034008026123,-0.595693439245224, +0.967313021421432,-1.55422937870026,-0.453377183526754,0.296293342020363,-1.57730251550674,-0.444486767053604,0.337003855034709,-1.70813715457916,0.0091387927532196,0.690127372741699,-0.417982846498489,-0.0815335512161255,0.407979884581891,-1.80055415630341,-0.346079111099243,-0.0958046112209558,-1.77608776092529,0.00495180487632751,0.02710962574929,-0.775371588766575,0.263217687606812,0.0828102612867951,-0.982420958578587,0.541712403297424,-0.0918744970113039,-1.54515498876572,-0.291719377040863,-0.477070059627295,-1.78451842069626,-0.319655328989029,-1.21680390834808,-0.216641575098038,-0.0391220450401306,-0.722450854256749,-0.597839206457138,-0.188605427742004,-0.643091565463692,-1.56931751966476,-0.187373697757721,-0.750149875879288,-0.50600403547287,-0.775806346908212,-0.815796941518784,-0.137014985084534,-0.404670298099518,-0.433865192224744,-1.06839781999588,-0.85552442073822,-0.24192775785923,-1.10455225408077,-0.955960491672158,-0.361909613013268,-1.54679101705551,-0.883597552776337,-0.282021388411522,-1.02099557220936,-1.00722251832485,-0.98263268917799,-0.39679941534996,-0.579321682453156,-0.734701424837112,-1.50961804389954,-0.597692966461182,-0.896095752716064,-1.0375841408968,-0.950020655989647,-1.08368623256683,-1.53170919418335,0.419900193810463,-1.08210489153862,-1.16564336419106,0.578619122505188,-1.23884606361389,-1.11436384916306,0.337010443210602,-1.20173859596252,-1.34098899364471,-0.812626212835312,-1.36570519208908,-0.562112957239151,1.29201805591583,-1.12511646747589,-1.09992495179176,0.702593997120857,-1.31340402364731,-1.38614243268967,0.0610004663467407,-1.47894912958145,-0.882199138402939,0.828724339604378,-1.50121909379959,-0.777750045061111,-0.815139293670654,-1.47673380374908,-0.94170206785202,-0.649125412106514,-1.27865755558014,-0.666945941746235,-1.03918668627739,-1.30494379997253,-0.604951702058315,-1.10492151975632,-1.33306235074997,-1.03640478849411,-0.76639823615551,-1.38173818588257,-1.03451472520828,-0.742909014225006,-1.31385880708694,-0.689928457140923,-0.708679035305977, +-1.27684128284454,-0.739908404648304,-0.843827903270721,-1.10947746038437,-0.729150779545307,-1.09945529699326,-1.16613805294037,0.696218326687813,-1.25937539339066,-0.883799955248833,0.517736002802849,-1.28701490163803,-0.811210721731186,1.45137995481491,-0.921571582555771,-0.818036496639252,1.15452626347542,-1.27227658033371,-0.970841392874718,1.07047293335199,-0.716170109808445,-0.974647551774979,1.03941940516233,-0.876312404870987,-0.785055577754974,1.49994832277298,-0.669488161802292,-0.757134437561035,1.50637531280518,-0.631561510264874,-0.972418576478958,1.62339746952057,-0.237865634262562,-0.329245880246162,1.94907665252686,-0.14428536221385,-0.476024217903614,1.7961078286171,-0.287553057074547,-0.894153416156769,1.25130799412727,-0.576345309615135,-1.38654619455338,0.752833902835846,-1.15906643867493,-0.544864811003208,1.76899796724319,-0.373358193784952,-0.688544921576977,-0.0469515323638916,-1.29205739498138,-0.576969921588898,0.507156401872635,-0.988394886255264,0.691659456118941,0.0868915319442749,-1.22140872478485,0.188148774206638,0.589326605200768,0.162428855895996,0.187553368508816,0.736041232943535,0.532351046800613,0.391488447785378,0.856711208820343,0.951787485042587,0.988034427165985,1.2878246307373,-0.550499364733696,0.762719742953777,0.578312993049622,-0.915166705846786,0.562068775296211,1.73156422376633,0.268665876239538,0.72830867767334,1.63896036148071,-0.0935431122779846,0.702015891671181,1.80767607688904,0.0716059489641339,0.596256361993782,1.76123309135437,0.274022281169891,0.344773926102205,1.88572114706039,-0.345794091001153,0.451373314484954,1.51645189523697,-0.826763920485973,0.36664542555809,1.87953585386276,-0.476470656692982,0.289740719162507,1.90431958436966,-0.338284375146031,0.346520926630525,1.52658784389496,-1.096928358078,0.319237407124071,1.56418365240097,-1.0144570171833,0.410991318785234,1.38176369667053,-1.12159010767937,0.307928845286369,1.68537229299545,-0.891795665025711,0.40486560203135,0.457067549228668,-1.67735397815704,0.0579869414499239,-0.0389412045478821,-0.474340483546257, +0.0432001032855434,0.107020974159241,-0.428761541843414,-0.0665770582854748,-0.0033535361289978,-0.0816507663112134,-0.00255383551120758,-0.0615001916885376,-0.461087748408318,-0.0253404080867767,-0.00860875844955444,-0.698137283325195,-0.0715514980256557,0.00242048501968384,-0.138321633217856,0.0839811824262142,0.0918909311294556,-0.479055915027857,0.0923748388886452,0.0320377945899963,-0.913043469190598,0.150744948536158,-0.395518481731415,-0.731146208941936,0.0642043966799974,-0.338083028793335,-1.00380805134773,0.0434647276997566,0.328447639942169,0.431291610002518,0.0921502858400345,1.37686729431152e-05,2.91764736175537e-05,0.23088277131319,0.599723964929581,0.509156405925751,0.474539916962385,0.346396207809448,-0.675796423107386,1.12679380178452,-0.00706720352172852,-0.884518146514893,0.987802386283875,-0.147639155387878,-1.24375939369202,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156, +-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194, +1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715, +1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313, +0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217, +0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612, +0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981, +-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727, +-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284, +-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894, +-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186, +0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692, +-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943, +-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961, +-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232, +-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006, +-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167, +-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762, +0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532, +0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127, +0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114, +-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084, +-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146, +-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896, +0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445, +-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147, +-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068, +-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284, +-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004, +-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468, +-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305, +0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755, +-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633, +-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676, +-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546, +-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952, +-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239, +-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022, +0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618, +-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699, +-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399, +-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126, +0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522, +-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864, +-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498, +-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885, +-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959, +-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, +-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646, +-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465, +-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338, +0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533, +-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518, +-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037, +-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367, +-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105, +-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338, +-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593, +0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549, +0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146, +0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797, +-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809, +-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853, +-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836, +1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017, +0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293, +0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578, +-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408, +-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153, +-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908, +-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211, +-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163, +0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673, +0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048, +0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089, +-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383, +-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346, +0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122, +-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249, +0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164, +-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817, +0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.18662029504776,0.456162691116333,0.416125580668449,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0971634984016418,0.815875202417374,0.314854916185141,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571, +0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071, +0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962, +0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095, +-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722, +-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109, +-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816, +0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283, +-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909, +-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466, +-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346, +0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.946850955486298,0.981021970510483,0.315166890621185,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665, +-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975, +-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738, +-0.0575135350227356,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927, +0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547, +0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704, +-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928, +0.551028246991336,-1.32268404960632,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593, +-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596, +0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683, +0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 + } + } + Geometry: 2807563817344, "Geometry::Jaw_Open", "Shape" { + Version: 100 + Indexes: *5457 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, +3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, +3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, +4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, +4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, +5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, +5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, +5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6144,6145,6146,6148,6151,6152,6154,6156,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301, +6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836, +6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246, +7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7519,7521,7523,7525,7526,7527,7528,7530,7533,7534,7536,7538,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706, +7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241, +8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651, +8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 + } + Vertices: *16371 { + a: -4.38690185546875e-05,-1.42577219009399,-1.04370093345642,-4.35709953308105e-05,-0.938594818115234,-0.910693407058716,-4.33921813964844e-05,-1.42577219009399,-1.04370093345642,-4.37498092651367e-05,-1.75663185119629,-1.06213521957397,-4.35672700405121e-05,-2.31358194351196,-1.24634075164795,-4.36305999755859e-05,-1.75663185119629,-1.06213521957397,-4.36305999755859e-05,-1.4133243560791,-0.957003593444824,-4.35709953308105e-05,-0.98592472076416,-0.795111775398254,-4.37498092651367e-05,-1.4133243560791,-0.957003593444824,-4.35113906860352e-05,-1.81311321258545,-0.909636735916138,-4.35709953308105e-05,-2.30554533004761,-1.08016347885132,-4.36305999755859e-05,-1.8131799697876,-0.909648180007935,-4.37498092651367e-05,-1.46926116943359,-0.732567310333252,-4.35709953308105e-05,-1.27523183822632,-0.374971628189087,-4.36305999755859e-05,-1.46926116943359,-0.732567310333252,-4.35709953308105e-05,-2.35437965393066,-1.04728603363037,-4.38690185546875e-05,-1.71963167190552,-0.678465604782104,-4.35709953308105e-05,-1.75832509994507,-0.355278491973877,-4.38690185546875e-05,-1.71963167190552,-0.678465604782104,-4.35709953308105e-05,-2.47094106674194,-1.05617761611938,-4.33921813964844e-05,-2.21823453903198,-0.817588806152344,-4.35709953308105e-05,-2.28664302825928,-0.553357124328613,-4.38690185546875e-05,-2.21823453903198,-0.817588806152344,-4.35635447502136e-05,-2.72228384017944,-1.07816457748413,-4.38690185546875e-05,-2.70655202865601,-1.00076770782471,-4.35635447502136e-05,-2.75443887710571,-0.818918228149414,-4.38690185546875e-05,-2.70655202865601,-1.00076770782471,-4.35709953308105e-05,-3.20613241195679,-1.15370988845825,-4.37498092651367e-05,-3.21450138092041,-1.12399196624756,-4.35784459114075e-05,-3.25933218002319,-0.953250885009766,-4.36305999755859e-05,-3.21450138092041,-1.12399196624756,-4.35709953308105e-05,-3.48893737792969,-1.15108585357666,-4.36305999755859e-05,-3.47892284393311,-1.10604572296143,-4.35858964920044e-05,-3.51890516281128,-1.01237678527832,-4.36305999755859e-05,-3.47892284393311,-1.10604572296143, +-4.35821712017059e-05,-3.72594833374023,-1.17064094543457,-4.36305999755859e-05,-3.59395742416382,-1.09809494018555,-4.35672700405121e-05,-3.71309757232666,-1.08991718292236,-4.35113906860352e-05,-3.59395742416382,-1.09809494018555,-4.36305999755859e-05,-1.92995262145996,-1.1351432800293,-4.35113906860352e-05,-1.96182727813721,-1.02506589889526,-4.37498092651367e-05,-1.92503881454468,-1.13387823104858,-4.35113906860352e-05,-1.96034622192383,-1.02465391159058,-4.35672700405121e-05,-2.30711936950684,-1.13946199417114,-4.35113906860352e-05,-2.16234874725342,-1.20406150817871,-4.36305999755859e-05,-1.67563629150391,-1.03116345405579,-4.38690185546875e-05,-1.41877889633179,-1.02282667160034,-4.37498092651367e-05,-1.26987934112549,-0.904333114624023,-4.38690185546875e-05,-1.27418279647827,-1.00408220291138,-4.36305999755859e-05,-1.26704216003418,-0.982861995697021,-4.35113906860352e-05,-1.07571840286255,-0.827673673629761,-4.36305999755859e-05,-1.06822443008423,-0.946598410606384,-4.36305999755859e-05,-1.06046533584595,-0.924797177314758,-4.35709953308105e-05,-0.990612030029297,-0.796777129173279,-4.35709953308105e-05,-0.942557811737061,-0.89209520816803,-4.35709953308105e-05,-0.946561336517334,-0.912911057472229,-4.35709953308105e-05,-0.949477195739746,-0.894056797027588,-4.35411930084229e-05,-0.990612030029297,-0.796777129173279,-4.35709953308105e-05,-0.946561336517334,-0.912911057472229,-4.36305999755859e-05,-0.949477195739746,-0.894056797027588,-4.35113906860352e-05,-1.02395677566528,-0.808120608329773,-4.35113906860352e-05,-0.999317169189453,-0.927378535270691,-4.36305999755859e-05,-0.99631404876709,-0.906778573989868,-4.36305999755859e-05,-1.26987934112549,-0.904333114624023,-4.33921813964844e-05,-1.41877889633179,-1.02282667160034,-4.36305999755859e-05,-1.27418279647827,-1.00408220291138,-4.36305999755859e-05,-1.26704216003418,-0.982861995697021,-4.36305999755859e-05,-1.51055765151978,-0.984602689743042,-4.36305999755859e-05,-1.90345525741577,-1.05610656738281,-4.36305999755859e-05,-2.14643621444702,-1.07969617843628, +-4.35672700405121e-05,-2.30547714233398,-1.18515491485596,-4.36305999755859e-05,-2.14820384979248,-1.13661527633667,-4.36305999755859e-05,-1.9067907333374,-1.05698299407959,-4.35113906860352e-05,-1.74521064758301,-0.975810527801514,-4.35113906860352e-05,-1.68386793136597,-0.86322546005249,-4.35113906860352e-05,-1.66844987869263,-0.942258834838867,-4.37498092651367e-05,-1.42481470108032,-0.842870473861694,-4.36305999755859e-05,-1.39153909683228,-0.604957818984985,-4.36305999755859e-05,-1.30721712112427,-0.753713130950928,-4.36305999755859e-05,-1.29594659805298,-0.419441699981689,-4.36305999755859e-05,-1.15243673324585,-0.623495817184448,-4.35709953308105e-05,-1.27619743347168,-0.373807668685913,-4.35709953308105e-05,-1.10014629364014,-0.578470468521118,-4.35411930084229e-05,-1.10222578048706,-0.58037543296814,-4.35709953308105e-05,-1.27619743347168,-0.373807668685913,-4.35709953308105e-05,-1.10222578048706,-0.58037543296814,-4.35113906860352e-05,-1.28057432174683,-0.382550239562988,-4.35113906860352e-05,-1.1188759803772,-0.594574928283691,-4.36305999755859e-05,-1.39153909683228,-0.604957818984985,-4.36305999755859e-05,-1.42481470108032,-0.842870473861694,-4.36305999755859e-05,-1.30721712112427,-0.753713130950928,-4.36305999755859e-05,-1.53701782226563,-0.795966148376465,-4.36305999755859e-05,-1.51032590866089,-0.886891841888428,-4.36305999755859e-05,-2.19449472427368,-0.999518394470215,-4.35709953308105e-05,-2.32233572006226,-1.05922555923462,-4.36305999755859e-05,-2.12961053848267,-1.01412773132324,-4.36305999755859e-05,-2.14833641052246,-1.00008106231689,-4.36305999755859e-05,-2.19449472427368,-0.999518394470215,-4.36305999755859e-05,-2.12961006164551,-1.01412773132324,-4.36305999755859e-05,-2.14833688735962,-1.00008106231689,-4.37498092651367e-05,-1.82147264480591,-0.860582113265991,-4.36305999755859e-05,-1.72775173187256,-0.840812206268311,-4.36305999755859e-05,-1.56271028518677,-0.678121328353882,-4.38690185546875e-05,-1.73449420928955,-0.531019687652588,-4.36305999755859e-05,-1.53549957275391,-0.531965255737305, +-4.38690185546875e-05,-1.7687029838562,-0.320532321929932,-4.36305999755859e-05,-1.51141977310181,-0.322618961334229,-4.36305999755859e-05,-1.76427507400513,-0.3328857421875,-4.35709953308105e-05,-1.50125980377197,-0.317518472671509,-4.36305999755859e-05,-1.5042896270752,-0.306129693984985,-4.36305999755859e-05,-1.76427507400513,-0.3328857421875,-4.35709953308105e-05,-1.5042896270752,-0.306129693984985,-4.35113906860352e-05,-1.77429485321045,-0.288347244262695,-4.35113906860352e-05,-1.50864601135254,-0.288437128067017,-4.38690185546875e-05,-1.73449420928955,-0.531019687652588,-4.36305999755859e-05,-1.56271028518677,-0.678121328353882,-4.37498092651367e-05,-1.53549957275391,-0.531965255737305,-4.38690185546875e-05,-1.73605728149414,-0.763428926467896,-4.37498092651367e-05,-1.60509443283081,-0.756015539169312,-4.36305999755859e-05,-2.38154602050781,-1.03164720535278,-4.35709953308105e-05,-2.40181684494019,-1.04881715774536,-4.36305999755859e-05,-2.2717809677124,-1.01433277130127,-4.36305999755859e-05,-2.38154602050781,-1.03164720535278,-4.35113906860352e-05,-2.2717809677124,-1.01433277130127,-4.36305999755859e-05,-2.20044803619385,-0.960305690765381,-4.36305999755859e-05,-1.98664999008179,-0.908040523529053,-4.33921813964844e-05,-1.9544939994812,-0.732621192932129,-4.33921813964844e-05,-2.24657487869263,-0.70447826385498,-4.33921813964844e-05,-1.98389959335327,-0.598296642303467,-4.33921813964844e-05,-2.29780340194702,-0.530198097229004,-4.38690185546875e-05,-2.03763675689697,-0.400607585906982,-4.36305999755859e-05,-2.293860912323,-0.52625036239624,-4.35709953308105e-05,-2.02651357650757,-0.437598705291748,-4.36305999755859e-05,-2.03395938873291,-0.409605503082275,-4.36305999755859e-05,-2.293860912323,-0.52625036239624,-4.36305999755859e-05,-2.03395938873291,-0.409605503082275,-4.37498092651367e-05,-2.31081247329712,-0.481113910675049,-4.36305999755859e-05,-2.04880714416504,-0.358504772186279,-4.38690185546875e-05,-2.24657487869263,-0.70447826385498,-4.38690185546875e-05,-1.95449352264404,-0.732621192932129,-4.38690185546875e-05, +-1.98389959335327,-0.598296642303467,-4.38690185546875e-05,-2.20454692840576,-0.888426780700684,-4.33921813964844e-05,-1.95145034790039,-0.814723491668701,-4.36305999755859e-05,-2.71664237976074,-1.05347394943237,-4.35672700405121e-05,-2.56792402267456,-1.06171321868896,-4.35113906860352e-05,-2.52516937255859,-1.03866529464722,-4.36305999755859e-05,-2.71664237976074,-1.05347394943237,-4.36305999755859e-05,-2.52516984939575,-1.03866529464722,-4.36305999755859e-05,-2.70043849945068,-1.02793455123901,-4.36305999755859e-05,-2.44016599655151,-0.994521617889404,-4.38690185546875e-05,-2.46165370941162,-0.910579204559326,-4.38690185546875e-05,-2.7257342338562,-0.927053451538086,-4.38690185546875e-05,-2.48538303375244,-0.820239067077637,-4.36305999755859e-05,-2.76147937774658,-0.806722164154053,-4.38690185546875e-05,-2.52886915206909,-0.676417827606201,-4.36305999755859e-05,-2.75739669799805,-0.807723522186279,-4.35709953308105e-05,-2.51948213577271,-0.69158411026001,-4.36305999755859e-05,-2.52452707290649,-0.672729015350342,-4.36305999755859e-05,-2.75739574432373,-0.807723522186279,-4.35113906860352e-05,-2.52452707290649,-0.672729015350342,-4.36305999755859e-05,-2.76793813705444,-0.782290935516357,-4.36305999755859e-05,-2.53895330429077,-0.638420581817627,-4.33921813964844e-05,-2.7257342338562,-0.927053451538086,-4.38690185546875e-05,-2.46165370941162,-0.910579204559326,-4.38690185546875e-05,-2.48538208007813,-0.820239067077637,-4.36305999755859e-05,-2.69835472106934,-1.03591632843018,-4.38690185546875e-05,-2.44852924346924,-0.963002681732178,-4.35709953308105e-05,-3.21158266067505,-1.13307809829712,-4.35784459114075e-05,-2.96336889266968,-1.11834096908569,-4.36007976531982e-05,-2.9697527885437,-1.09422636032104,-4.35709953308105e-05,-3.21158266067505,-1.13307809829712,-4.36305999755859e-05,-2.9697527885437,-1.09422636032104,-4.36305999755859e-05,-3.21702814102173,-1.12045049667358,-4.36305999755859e-05,-2.97597646713257,-1.07791948318481,-4.36305999755859e-05,-2.97469234466553,-1.07746410369873,-4.37498092651367e-05,-3.23259592056274, +-1.05390501022339,-4.36305999755859e-05,-2.99307203292847,-1.00629472732544,-4.37498092651367e-05,-3.26384830474854,-0.937985420227051,-4.36305999755859e-05,-3.02629137039185,-0.88843297958374,-4.36305999755859e-05,-3.26335668563843,-0.938061714172363,-4.35784459114075e-05,-3.02079820632935,-0.901928901672363,-4.35709953308105e-05,-3.02401685714722,-0.889811515808105,-4.35709953308105e-05,-3.26335668563843,-0.938061714172363,-4.36305999755859e-05,-3.02401685714722,-0.889811515808105,-4.36305999755859e-05,-3.2709002494812,-0.91145133972168,-4.37498092651367e-05,-3.03262853622437,-0.864700317382813,-4.36305999755859e-05,-3.23259592056274,-1.05390501022339,-4.36305999755859e-05,-2.97469234466553,-1.07746410369873,-4.38690185546875e-05,-2.99307203292847,-1.00629472732544,-4.36305999755859e-05,-3.20968055725098,-1.1480565071106,-4.36305999755859e-05,-2.96890163421631,-1.10464906692505,-4.35709953308105e-05,-3.48982238769531,-1.14390754699707,-4.35635447502136e-05,-3.36550855636597,-1.15591192245483,-4.35709953308105e-05,-3.36912631988525,-1.14217472076416,-4.36305999755859e-05,-3.48982238769531,-1.14390754699707,-4.35709953308105e-05,-3.36912631988525,-1.14217472076416,-4.35113906860352e-05,-3.48796081542969,-1.13206624984741,-4.35113906860352e-05,-3.37384033203125,-1.13147306442261,-4.36305999755859e-05,-3.37451887130737,-1.1236138343811,-4.36305999755859e-05,-3.48853969573975,-1.06275844573975,-4.36305999755859e-05,-3.38944339752197,-1.06572294235229,-4.36305999755859e-05,-3.51230335235596,-0.997057914733887,-4.36305999755859e-05,-3.41453170776367,-0.971809387207031,-4.35709953308105e-05,-3.52136850357056,-1.00130081176758,-4.35598194599152e-05,-3.4107232093811,-0.985467433929443,-4.36305999755859e-05,-3.41449928283691,-0.971323013305664,-4.35709953308105e-05,-3.52136850357056,-1.00130081176758,-4.35709953308105e-05,-3.41449928283691,-0.971323013305664,-4.35113906860352e-05,-3.52392292022705,-0.982704162597656,-4.35113906860352e-05,-3.42070627212524,-0.948532104492188,-4.37498092651367e-05,-3.48853969573975,-1.06275844573975, +-4.37498092651367e-05,-3.37451887130737,-1.1236138343811,-4.36305999755859e-05,-3.38944339752197,-1.06572294235229,-4.36305999755859e-05,-3.47917938232422,-1.12614679336548,-4.36305999755859e-05,-3.37026023864746,-1.1450514793396,-4.35709953308105e-05,-3.72054433822632,-1.16573619842529,-4.3574720621109e-05,-3.62389945983887,-1.1654577255249,-4.35709953308105e-05,-3.62106895446777,-1.16050624847412,-4.35709953308105e-05,-3.72054433822632,-1.16573619842529,-4.35709953308105e-05,-3.62106895446777,-1.16050624847412,-4.35709953308105e-05,-3.68569946289063,-1.14287948608398,-4.35113906860352e-05,-3.60085773468018,-1.14302062988281,-4.37498092651367e-05,-3.55193662643433,-1.1010799407959,-4.36305999755859e-05,-3.60377597808838,-1.07383251190186,-4.37498092651367e-05,-3.55498170852661,-1.06602954864502,-4.35113906860352e-05,-3.64059972763062,-1.04835414886475,-4.35113906860352e-05,-3.59117460250854,-1.02086639404297,-4.35709953308105e-05,-3.71069574356079,-1.08418846130371,-4.3574720621109e-05,-3.6277551651001,-1.04756546020508,-4.35709953308105e-05,-3.62796926498413,-1.03955364227295,-4.35411930084229e-05,-3.71069574356079,-1.08418846130371,-4.35709953308105e-05,-3.62796926498413,-1.03955364227295,-4.36305999755859e-05,-3.69362640380859,-1.06295299530029,-4.35113906860352e-05,-3.62227249145508,-1.02070808410645,-4.35113906860352e-05,-3.60377550125122,-1.07383251190186,-4.36305999755859e-05,-3.55193662643433,-1.1010799407959,-4.36305999755859e-05,-3.55498170852661,-1.06602954864502,-4.36305999755859e-05,-3.62345457077026,-1.1140022277832,-4.35113906860352e-05,-3.56502866744995,-1.12184906005859,-4.35598194599152e-05,-3.75076007843018,-1.1381893157959,-4.35709953308105e-05,-3.74600839614868,-1.13327217102051,-4.35113906860352e-05,-3.69362640380859,-1.06295299530029,-4.35113906860352e-05,-3.71568059921265,-1.10993576049805,-4.35709953308105e-05,-3.74600791931152,-1.13327217102051,-4.35113906860352e-05,-3.64059972763062,-1.04835414886475,-4.35113906860352e-05,-3.64998626708984,-1.08444881439209,-4.36305999755859e-05,-1.06822443008423, +-0.946598410606384,-4.36305999755859e-05,-1.07571840286255,-0.827673673629761,-4.36305999755859e-05,-1.06046533584595,-0.924797177314758,-4.37498092651367e-05,-1.67621660232544,-1.03129935264587,-4.35113906860352e-05,-1.29594659805298,-0.419441699981689,-4.35113906860352e-05,-1.15243673324585,-0.623495817184448,-4.36305999755859e-05,-1.7687029838562,-0.320532321929932,-4.37498092651367e-05,-1.51141977310181,-0.322618961334229,-4.33921813964844e-05,-2.29780340194702,-0.530198097229004,-4.33921813964844e-05,-2.03763675689697,-0.400607585906982,-4.36305999755859e-05,-2.76147937774658,-0.806722164154053,-4.38690185546875e-05,-2.52886915206909,-0.676417827606201,-4.36305999755859e-05,-3.26384830474854,-0.937985420227051,-4.36305999755859e-05,-3.02629137039185,-0.88843297958374,-4.36305999755859e-05,-3.51230335235596,-0.997057914733887,-4.35113906860352e-05,-3.41453170776367,-0.971809387207031,-4.35113906860352e-05,-3.59117460250854,-1.02086639404297,-4.35113906860352e-05,-3.68569946289063,-1.14287948608398,-4.35113906860352e-05,-3.71568012237549,-1.10993576049805,-4.35113906860352e-05,-3.48796081542969,-1.13206624984741,-4.35113906860352e-05,-3.60085773468018,-1.14302062988281,-4.36305999755859e-05,-3.21702814102173,-1.12045049667358,-4.35113906860352e-05,-3.37384033203125,-1.13147306442261,-4.36305999755859e-05,-2.70043849945068,-1.02793455123901,-4.35113906860352e-05,-2.97597646713257,-1.07791948318481,-4.37498092651367e-05,-2.20044803619385,-0.960305690765381,-4.37498092651367e-05,-2.44016551971436,-0.994521617889404,-4.36305999755859e-05,-1.82147264480591,-0.860582113265991,-4.37498092651367e-05,-1.98664999008179,-0.908040523529053,-4.36305999755859e-05,-1.68386793136597,-0.86322546005249,-4.35113906860352e-05,-1.72775173187256,-0.840812206268311,-4.36305999755859e-05,-1.74462938308716,-0.975666761398315,-4.35113906860352e-05,-1.66844987869263,-0.942258834838867,-4.36305999755859e-05,-1.51055765151978,-0.984602689743042,-4.36305999755859e-05,-0.999317169189453,-0.927378535270691,-4.35113906860352e-05,-1.02395677566528, +-0.808120608329773,-4.35113906860352e-05,-0.99631404876709,-0.906778573989868,-4.37498092651367e-05,-1.53701782226563,-0.795966148376465,-4.36305999755859e-05,-1.51032590866089,-0.886891841888428,-4.38690185546875e-05,-1.73605728149414,-0.763428926467896,-4.37498092651367e-05,-1.60509443283081,-0.756015539169312,-4.38690185546875e-05,-2.20454692840576,-0.888426780700684,-4.38690185546875e-05,-1.95145034790039,-0.814723491668701,-4.37498092651367e-05,-2.69835424423218,-1.03591632843018,-4.38690185546875e-05,-2.44852924346924,-0.963002681732178,-4.37498092651367e-05,-3.20968055725098,-1.1480565071106,-4.36305999755859e-05,-2.96890163421631,-1.10464906692505,-4.36305999755859e-05,-3.4791784286499,-1.12614679336548,-4.36305999755859e-05,-3.37026023864746,-1.1450514793396,-4.35113906860352e-05,-3.62345457077026,-1.1140022277832,-4.36305999755859e-05,-3.56502866744995,-1.12184906005859,-4.36305999755859e-05,-3.64998626708984,-1.08444881439209,-4.34517860412598e-05,-3.52392292022705,-0.982704162597656,-4.35113906860352e-05,-3.62227249145508,-1.02070808410645,-4.35113906860352e-05,-3.2709002494812,-0.91145133972168,-4.35113906860352e-05,-3.42070627212524,-0.948532104492188,-4.35113906860352e-05,-2.76793813705444,-0.782290935516357,-4.35113906860352e-05,-3.03262853622437,-0.864700317382813,-4.36305999755859e-05,-2.31081247329712,-0.481113910675049,-4.36305999755859e-05,-2.53895378112793,-0.638420581817627,-4.36305999755859e-05,-1.77429485321045,-0.288347244262695,-4.36305999755859e-05,-2.04880714416504,-0.358504772186279,-4.35113906860352e-05,-1.28057432174683,-0.382550239562988,-4.36305999755859e-05,-1.50864601135254,-0.288437128067017,-4.35113906860352e-05,-1.1188759803772,-0.594574928283691,-4.35113906860352e-05,-2.16572999954224,-1.2049446105957,-4.36305999755859e-05,-2.14701461791992,-1.07987403869629,-4.35113906860352e-05,-2.15042495727539,-1.1372275352478,-0.0852267742156982,-1.07957649230957,-0.96281886100769,0.0994962453842163,-1.07962608337402,-0.962734699249268,0.205045104026794,-1.47489738464355,-1.00385522842407, +0.00137218832969666,-2.14020919799805,-1.28389883041382,-0.19362461566925,-1.47467422485352,-1.00362157821655,-0.0833708047866821,-1.07463884353638,-0.856475830078125,0.0966724157333374,-1.07476091384888,-0.856505393981934,-0.234728455543518,-1.67613363265991,-1.10377645492554,0.245242476463318,-1.67046642303467,-1.10211420059204,0.20544558763504,-1.95483160018921,-1.21162271499634,-0.171679615974426,-1.38029813766479,-0.961022853851318,-0.0848685503005981,-1.07363700866699,-0.936801433563232,0.0987800359725952,-1.07371711730957,-0.936758995056152,0.130526423454285,-1.18744230270386,-0.895362377166748,0.183879256248474,-1.38118886947632,-0.961395740509033,-0.1172696352005,-1.18731069564819,-0.895327568054199,-0.198167443275452,-1.95855617523193,-1.21263074874878,-0.21631920337677,-1.58083963394165,-1.08856725692749,0.00308069586753845,-2.32877016067505,-1.56264925003052,0.229253649711609,-1.57650995254517,-1.08693933486938,0.00529798865318298,-4.1873664855957,-1.24729156494141,0.333454489707947,-3.93204402923584,-1.16000652313232,0.157410025596619,-3.48137092590332,-0.943978309631348,0.382867097854614,-2.57307004928589,-0.664918422698975,0.426358938217163,-2.07737159729004,-0.456382751464844,0.00652727484703064,-3.87159061431885,-1.87838840484619,0.345016837120056,-3.62405776977539,-1.7886848449707,0.453587412834167,-3.16414642333984,-1.62081909179688,0.451480150222778,-2.35206604003906,-1.31255531311035,0.467020750045776,-1.79485130310059,-1.08106279373169,0.180662512779236,-3.85393142700195,-1.56869888305664,0.170158267021179,-4.06502962112427,-1.2133960723877,0.313529849052429,-3.68521976470947,-1.53755760192871,0.212401688098907,-3.75791835784912,-1.83704280853271,0.00572618842124939,-3.92873859405518,-1.63571643829346,0.381378054618835,-3.50168561935425,-1.44287395477295,0.374296545982361,-3.73156785964966,-1.07326698303223,0.343975901603699,-3.27047300338745,-1.29854774475098,0.411616683006287,-3.41179466247559,-1.71200561523438,0.398595571517944,-2.88936138153076,-1.19745016098022,0.107131242752075,-3.08841705322266, +-0.798456192016602,0.360988855361938,-2.42898225784302,-1.00407648086548,0.468933820724487,-2.84316444396973,-1.49914789199829,0.392919301986694,-2.12988376617432,-1.02716016769409,0.463750123977661,-2.32225894927979,-0.552558422088623,0.40876317024231,-1.91636753082275,-0.834336280822754,0.443495035171509,-2.06624031066895,-1.20941972732544,0.126951098442078,-4.01832962036133,-1.52248573303223,0.0053609311580658,-4.01423454284668,-1.50537872314453,0.13059788942337,-4.18679237365723,-1.2437162399292,0.180856049060822,-3.92538118362427,-1.46859455108643,0.104508727788925,-3.85713052749634,-1.69682025909424,0.409212470054626,-3.70592832565308,-1.40801429748535,0.327250838279724,-3.77809953689575,-1.42381381988525,0.4477618932724,-3.87838888168335,-1.11972808837891,0.381605505943298,-3.58299589157104,-1.33490467071533,0.362444758415222,-3.56489229202271,-1.55712938308716,0.327876806259155,-3.20239734649658,-1.15057134628296,0.281509280204773,-3.33497476577759,-1.20587015151978,0.132551431655884,-3.36041212081909,-0.856351852416992,0.328027009963989,-2.96996688842773,-1.07690763473511,0.420888185501099,-3.06896352767944,-1.36396265029907,0.437875509262085,-2.39504861831665,-0.831912517547607,0.38995099067688,-2.48353958129883,-0.880455493927002,0.451108694076538,-2.48133230209351,-0.607102870941162,0.450640439987183,-2.22990417480469,-0.773721694946289,0.381571054458618,-2.3072361946106,-1.04489231109619,0.277856230735779,-3.88044929504395,-1.48364067077637,0.279405951499939,-4.0643310546875,-1.19491291046143,0.269439578056335,-3.7065691947937,-1.64188575744629,0.263981699943542,-3.69706010818481,-1.73068141937256,0.321750998497009,-3.62587881088257,-1.69514989852905,0.283285021781921,-3.69318675994873,-1.81344699859619,0.191613078117371,-3.77171850204468,-1.74496936798096,0.105406612157822,-3.82909774780273,-1.77922058105469,0.110472530126572,-3.82746410369873,-1.8622579574585,0.00629600882530212,-3.88283681869507,-1.79020977020264,0.368688464164734,-3.48028659820557,-1.2811713218689,0.314970374107361,-3.63446474075317, +-0.997391700744629,0.401122450828552,-3.32455205917358,-1.51066303253174,0.411077857017517,-3.29300880432129,-1.60265207290649,0.427766680717468,-3.17612600326538,-1.52231359481812,0.42905604839325,-3.2888650894165,-1.67275667190552,0.39217746257782,-3.42367792129517,-1.61903095245361,0.370084166526794,-3.52800130844116,-1.66679859161377,0.390518546104431,-3.52064323425293,-1.75164890289307,0.367326974868774,-2.73322772979736,-0.986733913421631,0.239495992660522,-2.85720109939575,-0.722382545471191,0.3950355052948,-2.62972545623779,-1.25077295303345,0.423084497451782,-2.66668128967285,-1.34439516067505,0.404047727584839,-2.36968183517456,-1.21376132965088,0.454124927520752,-2.65241241455078,-1.42541885375977,0.440816640853882,-2.86687898635864,-1.40729284286499,0.441847562789917,-3.03322076797485,-1.48145198822021,0.465764284133911,-3.00866031646729,-1.56245136260986,0.449249505996704,-2.05379295349121,-0.715490818023682,0.46956205368042,-2.16644430160522,-0.485331058502197,0.412766695022583,-1.95828008651733,-0.726195812225342,0.40359091758728,-1.96987056732178,-0.932365894317627,0.424638032913208,-1.9215235710144,-1.06558322906494,0.43608546257019,-1.83126783370972,-0.99887752532959,0.456183195114136,-1.89158535003662,-1.14878416061401,0.410672426223755,-2.09351348876953,-1.12955760955811,0.408244848251343,-2.25921487808228,-1.18468999862671,0.446127653121948,-2.23484325408936,-1.26998567581177,0.0546453893184662,-4.05081796646118,-1.52632141113281,0.0564096868038177,-4.22141265869141,-1.25774097442627,0.0615976750850677,-3.85877799987793,-1.78779602050781,0.0640333592891693,-3.85127258300781,-1.87096691131592,0.0582230985164642,-3.90459156036377,-1.69157791137695,0.149999022483826,-3.79926061630249,-1.76470470428467,0.162150263786316,-3.79314136505127,-1.84986209869385,0.174400687217712,-3.9646635055542,-1.49830913543701,0.168392479419708,-4.12844467163086,-1.22340297698975,0.150635540485382,-3.84046983718872,-1.65621662139893,0.216122925281525,-3.9194278717041,-1.48137378692627,0.209148228168488,-4.0815110206604, +-1.20553302764893,0.228552222251892,-3.73601245880127,-1.73963260650635,0.249818205833435,-3.72544002532959,-1.8251895904541,0.223100483417511,-3.79015874862671,-1.62258148193359,0.294931292533875,-3.66200256347656,-1.71273803710938,0.315041899681091,-3.65992641448975,-1.80149793624878,0.324121356010437,-3.81561517715454,-1.45305252075195,0.330510020256042,-3.99190664291382,-1.16883373260498,0.303746104240417,-3.68960857391357,-1.58574867248535,0.368747115135193,-3.7851767539978,-1.43504333496094,0.398083567619324,-3.94403219223022,-1.14898490905762,0.347178339958191,-3.58016586303711,-1.68290662765503,0.370330214500427,-3.57388687133789,-1.7707781791687,0.33257520198822,-3.64575338363647,-1.56188297271729,0.384245276451111,-3.47467660903931,-1.64197254180908,0.402065634727478,-3.46577835083008,-1.73172569274902,0.405038237571716,-3.61891651153564,-1.36538696289063,0.431280016899109,-3.79199028015137,-1.08492660522461,0.383504748344421,-3.51918792724609,-1.48940944671631,0.400733828544617,-3.57817792892456,-1.32102394104004,0.394694209098816,-3.72113513946533,-1.05183887481689,0.398664832115173,-3.36360836029053,-1.60604000091553,0.41776978969574,-3.35158824920654,-1.69098663330078,0.386687636375427,-3.43973779678345,-1.48051643371582,0.419711470603943,-3.23550271987915,-1.5559253692627,0.44151771068573,-3.22825908660889,-1.64564418792725,0.319726824760437,-3.39219093322754,-1.22822713851929,0.237558603286743,-3.54918622970581,-0.954226493835449,0.386333823204041,-3.27986288070679,-1.39231824874878,0.308698415756226,-3.31457757949829,-1.19193649291992,0.172528028488159,-3.46593713760376,-0.906915187835693,0.435646772384644,-3.10626220703125,-1.50638389587402,0.460630416870117,-3.08724689483643,-1.59210872650146,0.399458646774292,-3.17376708984375,-1.37398433685303,0.444163084030151,-2.9522385597229,-1.4467396736145,0.46979832649231,-2.93178176879883,-1.53312301635742,0.34185528755188,-3.03343152999878,-1.09104442596436,0.1128990650177,-3.18237018585205,-0.800022125244141,0.426816701889038,-2.94041728973389,-1.27976179122925, +0.352204561233521,-2.91350030899048,-1.04245901107788,0.172983407974243,-3.02369546890259,-0.761297225952148,0.434463739395142,-2.77554273605347,-1.3797926902771,0.462432384490967,-2.75201034545898,-1.46393585205078,0.414896726608276,-2.8017749786377,-1.25081253051758,0.403648614883423,-2.5114688873291,-1.27734231948853,0.443376302719116,-2.5025463104248,-1.36841535568237,0.394281148910522,-2.56330490112305,-0.922189235687256,0.348917245864868,-2.67831563949585,-0.670343399047852,0.368622064590454,-2.48470401763916,-1.1254620552063,0.0557464063167572,-4.17627048492432,-1.34713077545166,0.00528368353843689,-4.13543081283569,-1.33329582214355,0.471209526062012,-2.12320995330811,-0.563194274902344,0.425491571426392,-2.03232288360596,-0.539206504821777,0.174902737140656,-4.02766990661621,-1.29305744171143,0.211464703083038,-4.03967714309692,-1.29601097106934,0.282214522361755,-4.01845550537109,-1.28794765472412,0.334830164909363,-3.94342994689941,-1.25937938690186,0.175828337669373,-4.08341026306152,-1.31226825714111,0.335023283958435,-3.89180088043213,-1.24028873443604,0.133714556694031,-4.14372396469116,-1.33464050292969,0.393121600151062,-3.9057674407959,-1.24305057525635,0.440989375114441,-3.83463716506958,-1.21324443817139,0.420985579490662,-3.7450475692749,-1.17304611206055,0.372686266899109,-3.6971492767334,-1.14931869506836,0.398272395133972,-3.69021606445313,-1.13986682891846,0.325697183609009,-3.60047292709351,-1.0875072479248,0.247892141342163,-3.51080942153931,-1.03835201263428,0.175201773643494,-3.45363569259644,-1.01140022277832,0.202614545822144,-3.43563938140869,-0.996315956115723,0.185114145278931,-3.32605934143066,-0.948760509490967,0.169378519058228,-3.14395093917847,-0.888580799102783,0.150058031082153,-3.07004165649414,-0.871615409851074,0.21941351890564,-3.00344085693359,-0.851691246032715,0.277370691299438,-2.82525634765625,-0.803231239318848,0.369901418685913,-2.64136171340942,-0.750749111175537,0.390376329421997,-2.55037069320679,-0.726226329803467,0.456363677978516,-2.45625782012939,-0.68468713760376, +0.470907688140869,-2.29300212860107,-0.624828338623047,0.00527366995811462,-4.15812301635742,-1.23769474029541,0.304426074028015,-3.91399192810059,-1.15168952941895,0.11770236492157,-3.47465896606445,-0.939228534698486,0.323231935501099,-2.55106210708618,-0.659409523010254,0.378279447555542,-2.06856203079224,-0.451966762542725,0.00655636191368103,-3.55120515823364,-1.83831691741943,0.00628170371055603,-3.12389278411865,-1.84299087524414,0.173018276691437,-3.83674621582031,-1.56216144561768,0.163376688957214,-4.04478549957275,-1.20589065551758,0.290137648582458,-3.67472791671753,-1.54581356048584,0.00648865103721619,-3.69783163070679,-1.80979633331299,0.00572285056114197,-3.91315698623657,-1.62974739074707,0.350739359855652,-3.49533796310425,-1.44102954864502,0.335630774497986,-3.71957397460938,-1.06840419769287,0.3183354139328,-3.26527690887451,-1.2968602180481,0.00658687949180603,-3.3974027633667,-1.86146116256714,0.32457709312439,-2.84345102310181,-1.18280506134033,0.0554029941558838,-3.05112838745117,-0.785058498382568,0.298027276992798,-2.38791370391846,-1.02713537216187,0.297346830368042,-2.10727453231812,-1.01747369766235,0.362050294876099,-2.31754064559937,-0.553362369537354,0.326768159866333,-1.90125131607056,-0.840911388397217,0.0906780660152435,-3.95154094696045,-1.49977207183838,0.00534233450889587,-3.98374652862549,-1.49447441101074,0.09694704413414,-4.12890481948853,-1.23354530334473,0.171754240989685,-3.90122890472412,-1.45978355407715,0.0914219319820404,-3.81469488143921,-1.68038272857666,0.317974925041199,-3.63772678375244,-1.38316631317139,0.294657111167908,-3.75597190856934,-1.41698932647705,0.355110049247742,-3.82316541671753,-1.09994792938232,0.338825583457947,-3.56631803512573,-1.32971096038818,0.310948729515076,-3.53821897506714,-1.54703807830811,0.179722189903259,-3.16882848739624,-1.1331992149353,0.246017336845398,-3.32520914077759,-1.20214939117432,-0.0105501413345337,-3.32914352416992,-0.836555957794189,0.231165766716003,-2.91890668869019,-1.05774450302124,0.348511099815369,-3.05472183227539, +-1.35869741439819,0.296024560928345,-2.38114070892334,-0.834756851196289,0.306761503219604,-2.44724035263062,-0.900220394134521,0.338293313980103,-2.47085666656494,-0.606566905975342,0.297593355178833,-2.23017501831055,-0.775519847869873,0.290258169174194,-2.27289056777954,-1.03816843032837,0.229354739189148,-3.81873369216919,-1.46086883544922,0.239317297935486,-4.0081958770752,-1.18381214141846,0.221156001091003,-3.69587516784668,-1.6206521987915,0.22181499004364,-3.67261648178101,-1.68703269958496,0.271373152732849,-3.60080718994141,-1.66581392288208,0.00654396414756775,-3.62787055969238,-1.82441902160645,0.158921122550964,-3.73862218856812,-1.71100997924805,0.0917585790157318,-3.79218482971191,-1.73416996002197,0.00641092658042908,-3.75993394851685,-1.7929573059082,0.0062311589717865,-3.83690166473389,-1.75345134735107,0.262649416923523,-3.41952753067017,-1.24822950363159,0.196711421012878,-3.58600616455078,-0.965883255004883,0.342849135398865,-3.32468557357788,-1.45337295532227,0.354918837547302,-3.29064178466797,-1.54326820373535,0.36541211605072,-3.16577243804932,-1.50291347503662,0.00649866461753845,-3.27372646331787,-1.85873746871948,0.340731024742126,-3.40843725204468,-1.5946683883667,0.313783049583435,-3.50962829589844,-1.6261191368103,0.00659212470054626,-3.48366975784302,-1.84973239898682,0.249150037765503,-2.69572687149048,-0.970438003540039,0.151932954788208,-2.83111667633057,-0.711823463439941,0.304800748825073,-2.6032280921936,-1.22247838973999,0.311562776565552,-2.58921051025391,-1.28375577926636,0.268264532089233,-2.27625560760498,-1.17769765853882,0.345199346542358,-2.80124425888062,-1.3705735206604,0.365422606468201,-3.0307731628418,-1.44738531112671,0.00588688254356384,-2.92858171463013,-1.81489181518555,0.30080246925354,-2.06055068969727,-0.717570781707764,0.362116575241089,-2.17266130447388,-0.489457607269287,0.323554277420044,-1.94897508621216,-0.723076343536377,0.315618753433228,-1.95808124542236,-0.926336288452148,0.289436101913452,-1.91559839248657,-1.04963302612305,0.285164594650269,-2.06153202056885, +-1.08432722091675,0.274888277053833,-2.17532825469971,-1.13835144042969,0.0388983190059662,-3.96284675598145,-1.49542808532715,0.041923850774765,-4.14422273635864,-1.23782539367676,0.0565751492977142,-3.81311416625977,-1.7479829788208,0.0528958737850189,-3.85979652404785,-1.67476081848145,0.122134029865265,-3.76482915878296,-1.72872638702393,0.145830452442169,-3.90027332305908,-1.47432804107666,0.143963634967804,-4.07875967025757,-1.2011833190918,0.134878993034363,-3.80383253097534,-1.64234161376953,0.183855414390564,-3.86006593704224,-1.46082973480225,0.182287096977234,-4.0298228263855,-1.19364929199219,0.193031132221222,-3.70164251327515,-1.70417499542236,0.19431483745575,-3.76154470443726,-1.60918521881104,0.243942618370056,-3.63848686218262,-1.68138217926025,0.271314978599548,-3.76271104812622,-1.433349609375,0.284624934196472,-3.9524040222168,-1.14970302581787,0.263197302818298,-3.66596031188965,-1.576247215271,0.293232798576355,-3.71357107162476,-1.40859508514404,0.328623652458191,-3.8871545791626,-1.12266826629639,0.294262766838074,-3.55175304412842,-1.65155696868896,0.288931727409363,-3.61991500854492,-1.55439853668213,0.326622366905212,-3.46234130859375,-1.6165132522583,0.3299640417099,-3.57264757156372,-1.34868335723877,0.347307085990906,-3.75387811660767,-1.07174110412598,0.33835780620575,-3.49878120422363,-1.482102394104,0.305388808250427,-3.51835584640503,-1.29644060134888,0.280787825584412,-3.67325925827026,-1.02648830413818,0.348638892173767,-3.34369802474976,-1.57591724395752,0.341657519340515,-3.42416572570801,-1.46554756164551,0.359617114067078,-3.23176956176758,-1.53218460083008,0.23132312297821,-3.34297513961792,-1.20820713043213,0.131917834281921,-3.51435279846191,-0.931910514831543,0.335026621818542,-3.2680492401123,-1.37881374359131,0.209335684776306,-3.28256368637085,-1.17676210403442,0.0606268644332886,-3.43937349319458,-0.889081001281738,0.366746306419373,-3.08923149108887,-1.48421001434326,0.349228262901306,-3.14808416366577,-1.36447525024414,0.361044764518738,-2.94622039794922,-1.42906427383423, +0.203996539115906,-3.01061153411865,-1.07789850234985,0.00571095943450928,-3.16177940368652,-0.78679895401001,0.344926714897156,-2.92657470703125,-1.27442646026611,0.224068999290466,-2.83522129058838,-1.0141282081604,0.07889723777771,-2.96382427215576,-0.739315032958984,0.328267335891724,-2.69173288345337,-1.33721685409546,0.32445502281189,-2.73125171661377,-1.2328462600708,0.28987193107605,-2.45006990432739,-1.24537134170532,0.28028130531311,-2.54500246047974,-0.922389030456543,0.26038670539856,-2.66818571090698,-0.668148994445801,0.291522741317749,-2.46895980834961,-1.13373899459839,0.037093959748745,-4.07595825195313,-1.31935691833496,0.00525555014610291,-4.10282611846924,-1.32252979278564,0.326884508132935,-2.13310861587524,-0.56869649887085,0.346553564071655,-2.02370738983154,-0.536531925201416,0.165871024131775,-4.00124502182007,-1.28372478485107,0.178007006645203,-3.96813344955444,-1.27848815917969,0.232675433158875,-3.94027185440063,-1.27058219909668,0.276879191398621,-3.88540935516357,-1.23445510864258,0.144511997699738,-4.01394128799438,-1.28409385681152,0.298758387565613,-3.86787509918213,-1.22985076904297,0.0928252637386322,-4.06340408325195,-1.3187141418457,0.300001978874207,-3.82838249206543,-1.20870685577393,0.321783423423767,-3.75808572769165,-1.18619346618652,0.31283175945282,-3.68950462341309,-1.15267181396484,0.318331599235535,-3.67640781402588,-1.14172458648682,0.259092211723328,-3.62265825271606,-1.10686111450195,0.177893996238708,-3.53071784973145,-1.04931735992432,0.116725325584412,-3.45504426956177,-1.01690149307251,0.127768874168396,-3.44410800933838,-1.00680923461914,0.0723437070846558,-3.40694141387939,-0.976841449737549,0.0053027868270874,-3.29364776611328,-0.926627635955811,0.0243123769760132,-3.12202787399292,-0.872929573059082,0.0633256435394287,-3.02457094192505,-0.853794097900391,0.0844924449920654,-2.93160104751587,-0.823890686035156,0.153047800064087,-2.79141235351563,-0.789791107177734,0.256215810775757,-2.62695789337158,-0.748622417449951,0.309790372848511,-2.52503442764282,-0.724611759185791, +0.309253931045532,-2.44639158248901,-0.68597936630249,0.326277017593384,-2.29300451278687,-0.628254890441895,0.0483268201351166,-4.20429944992065,-1.23616600036621,0.00529035925865173,-4.18009662628174,-1.23202610015869,0.108660042285919,-4.18317890167236,-1.22793674468994,0.15482360124588,-4.11578512191772,-1.19827365875244,0.166365027427673,-4.06039190292358,-1.19916439056396,0.196489691734314,-4.06672143936157,-1.18192100524902,0.260404944419861,-4.0486273765564,-1.17044639587402,0.308927416801453,-3.98392820358276,-1.14200305938721,0.319438815116882,-3.92907333374023,-1.14481544494629,0.367684721946716,-3.92752981185913,-1.1159553527832,0.40805184841156,-3.86461496353149,-1.08855438232422,0.39698588848114,-3.78577852249146,-1.05928516387939,0.356469511985779,-3.72977209091187,-1.062668800354,0.333277583122253,-3.69868850708008,-1.03626251220703,0.250252604484558,-3.61251449584961,-0.979511260986328,0.181886076927185,-3.53491735458374,-0.940640449523926,0.13559901714325,-3.47942781448364,-0.937496185302734,0.107657313346863,-3.45277214050293,-0.89788293838501,0.043287992477417,-3.34420919418335,-0.85513973236084,0.0451357364654541,-3.1753625869751,-0.793411731719971,0.0768945217132568,-3.07173919677734,-0.78594970703125,0.11379599571228,-2.99798727035522,-0.74122428894043,0.18815016746521,-2.84429216384888,-0.720340251922607,0.299391984939575,-2.67802619934082,-0.662016868591309,0.352653741836548,-2.56469058990479,-0.655976295471191,0.395386457443237,-2.47845411300659,-0.59985876083374,0.413788557052612,-2.31839609146118,-0.557309627532959,0.417339086532593,-2.17424488067627,-0.479892730712891,0.40402626991272,-2.0788688659668,-0.4443678855896,0.0597494542598724,-3.89169216156006,-1.71987247467041,0.00590071082115173,-3.91239309310913,-1.68124485015869,0.313897490501404,-3.66378355026245,-1.5811128616333,0.300633311271667,-3.67993783950806,-1.62190723419189,0.269969344139099,-3.70125532150269,-1.66896057128906,0.225114226341248,-3.77335739135742,-1.65639400482178,0.336228251457214,-3.62479257583618,-1.59568023681641, +0.183141052722931,-3.82766914367676,-1.61825847625732,0.364026427268982,-3.55346822738647,-1.58820390701294,0.149615168571472,-3.82813835144043,-1.68737602233887,0.382390379905701,-3.50284671783447,-1.53214740753174,0.103523582220078,-3.84842967987061,-1.7205753326416,0.384578585624695,-3.47424650192261,-1.49230289459229,0.390143275260925,-3.41438150405884,-1.51692676544189,0.404852747917175,-3.3130931854248,-1.5417423248291,0.401370406150818,-3.26355886459351,-1.44040489196777,0.383225321769714,-3.23705720901489,-1.36379289627075,0.414899587631226,-3.15196228027344,-1.41267347335815,0.429285764694214,-3.05832481384277,-1.39874410629272,0.435003995895386,-2.94436502456665,-1.32948446273804,0.418823957443237,-2.88106155395508,-1.25851774215698,0.421327829360962,-2.79355621337891,-1.28836297988892,0.402691602706909,-2.63858222961426,-1.28017616271973,0.376381635665894,-2.48318719863892,-1.16391611099243,0.368597269058228,-2.41241407394409,-1.05724382400513,0.387247323989868,-2.29357767105103,-1.08435869216919,0.397362947463989,-2.11926555633545,-1.05738592147827,0.408851861953735,-1.95585060119629,-0.971475601196289,0.415173292160034,-1.89128971099854,-0.877898693084717,0.321002244949341,-1.88842153549194,-0.87572717666626,0.309935331344604,-1.93314361572266,-0.956480503082275,0.05703005194664,-3.934730052948,-1.6492919921875,0.00560459494590759,-3.95126390457153,-1.60363483428955,0.0476654469966888,-3.86979866027832,-1.6227560043335,0.00559839606285095,-3.92464685440063,-1.59385108947754,0.119052290916443,-3.89273500442505,-1.65479564666748,0.160590529441833,-3.86867809295654,-1.61806297302246,0.181717693805695,-3.87217330932617,-1.54515743255615,0.22193843126297,-3.82337713241577,-1.58909320831299,0.27348268032074,-3.74646234512329,-1.60446834564209,0.311483263969421,-3.72032070159912,-1.55479431152344,0.31805694103241,-3.70937156677246,-1.51098155975342,0.342413306236267,-3.68373918533325,-1.53431987762451,0.37651002407074,-3.59941434860229,-1.52389240264893,0.391529440879822,-3.54282855987549,-1.46099328994751,0.38353431224823, +-3.52244997024536,-1.41776943206787,0.394515872001648,-3.4772515296936,-1.44405078887939,0.405465006828308,-3.35774803161621,-1.46104764938354,0.377929091453552,-3.30428886413574,-1.35361099243164,0.331920504570007,-3.28560066223145,-1.27763986587524,0.388695478439331,-3.2096266746521,-1.33193254470825,0.417644262313843,-3.10006999969482,-1.31538057327271,0.42258095741272,-2.95758628845215,-1.23381996154785,0.390920877456665,-2.90754652023315,-1.16968297958374,0.419740915298462,-2.82989978790283,-1.2026309967041,0.407541036605835,-2.65109395980835,-1.19031476974487,0.382568597793579,-2.50096654891968,-1.0757942199707,0.371814012527466,-2.44229888916016,-0.974840641021729,0.399789571762085,-2.332688331604,-0.992407321929932,0.412462949752808,-2.15505981445313,-0.964342594146729,0.419050455093384,-1.9890923500061,-0.876748561859131,0.410876512527466,-1.93599700927734,-0.819528102874756,0.324564695358276,-1.91069555282593,-0.811196804046631,0.301408052444458,-1.98174953460693,-0.869738101959229,0.280504465103149,-2.13794755935669,-0.952174186706543,0.280944585800171,-2.30264759063721,-0.983657836914063,0.297210931777954,-2.40171670913696,-0.995203018188477,0.284398317337036,-2.48331689834595,-1.07632207870483,0.295777082443237,-2.62034368515015,-1.15556478500366,0.313311338424683,-2.75325393676758,-1.17706680297852,0.308035135269165,-2.85904264450073,-1.15337705612183,0.319962859153748,-2.93836307525635,-1.2259840965271,0.319111227989197,-3.07466745376587,-1.30417490005493,0.324500918388367,-3.17843437194824,-1.31944274902344,0.303188681602478,-3.27827167510986,-1.27496337890625,0.315488219261169,-3.28043079376221,-1.335608959198,0.329228758811951,-3.34054899215698,-1.40145015716553,0.334266543388367,-3.44649076461792,-1.42354488372803,0.348718047142029,-3.51238775253296,-1.4143214225769,0.336528658866882,-3.51299858093262,-1.44887018203735,0.309177279472351,-3.55597829818726,-1.50443458557129,0.287685751914978,-3.64186668395996,-1.5184907913208,0.291172385215759,-3.69438076019287,-1.51414966583252,0.264397025108337, +-3.68583536148071,-1.53988647460938,0.220377802848816,-3.7199969291687,-1.57801628112793,0.189786314964294,-3.7834210395813,-1.570969581604,0.172632992267609,-3.85156202316284,-1.53675746917725,0.136876463890076,-3.82095956802368,-1.59749794006348,0.0890778005123138,-3.84079217910767,-1.63011360168457,0.242300271987915,-1.94899845123291,-1.13609075546265,0.175100207328796,-1.86360597610474,-1.21303653717041,0.269102931022644,-2.52431774139404,-1.42280054092407,0.312657713890076,-2.76105308532715,-1.51136302947998,0.343393683433533,-2.98963356018066,-1.56768560409546,0.3309406042099,-3.1396689414978,-1.62235069274902,0.329510569572449,-3.27203893661499,-1.6447319984436,0.297435164451599,-3.39154767990112,-1.68567085266113,0.272798418998718,-3.49431753158569,-1.70145797729492,0.223253071308136,-3.57939100265503,-1.72663021087646,0.177430033683777,-3.6520037651062,-1.73920440673828,0.112841933965683,-3.70753192901611,-1.76063537597656,0.069107860326767,-3.75988149642944,-1.76580238342285,-0.319179177284241,-3.93197345733643,-1.16030883789063,-0.141765236854553,-3.48216342926025,-0.943698406219482,-0.368948698043823,-2.57360029220581,-0.665394306182861,-0.417518377304077,-2.0772442817688,-0.458465099334717,-0.331629395484924,-3.62404918670654,-1.78874158859253,-0.440789818763733,-3.16418647766113,-1.62090396881104,-0.43600058555603,-2.35209846496582,-1.31231927871704,-0.453196287155151,-1.79476356506348,-1.08146667480469,-0.167841553688049,-3.85388565063477,-1.56889152526855,-0.157883763313293,-4.06495237350464,-1.21372127532959,-0.3000408411026,-3.68518447875977,-1.53772258758545,-0.198979556560516,-3.75790786743164,-1.83708953857422,-0.369235634803772,-3.50140047073364,-1.4431037902832,-0.361463189125061,-3.73125982284546,-1.07352924346924,-0.33154833316803,-3.27040433883667,-1.29868650436401,-0.398639321327209,-3.41180038452148,-1.71207332611084,-0.385603666305542,-2.88960933685303,-1.1973090171814,-0.088512659072876,-3.09041118621826,-0.797428607940674,-0.347772359848022,-2.42892694473267,-1.00410509109497,-0.455528020858765, +-2.84322929382324,-1.49916315078735,-0.378865957260132,-2.12985897064209,-1.02745819091797,-0.451973676681519,-2.32267475128174,-0.55352783203125,-0.403127431869507,-1.91574668884277,-0.837765693664551,-0.427830457687378,-2.06627464294434,-1.20916557312012,-0.115065693855286,-4.01827621459961,-1.52271366119385,-0.118908584117889,-4.18672275543213,-1.24400901794434,-0.16822350025177,-3.92531824111938,-1.46886157989502,-0.0920707285404205,-3.85711145401001,-1.69689750671387,-0.39567244052887,-3.70578718185425,-1.40824317932129,-0.313305497169495,-3.77804040908813,-1.4240608215332,-0.433480858802795,-3.87831163406372,-1.11997032165527,-0.369627594947815,-3.58253908157349,-1.33521556854248,-0.349312424659729,-3.56487417221069,-1.55724668502808,-0.30655837059021,-3.20520114898682,-1.14948558807373,-0.267797112464905,-3.33525991439819,-1.20583009719849,-0.108786344528198,-3.36376523971558,-0.855042934417725,-0.310715436935425,-2.97157764434814,-1.07614803314209,-0.407420873641968,-3.06922197341919,-1.36398029327393,-0.424333333969116,-2.39539575576782,-0.83247184753418,-0.376989126205444,-2.48370361328125,-0.880806446075439,-0.437248945236206,-2.48181009292603,-0.607905864715576,-0.439104795455933,-2.23016548156738,-0.774919033050537,-0.366583585739136,-2.30732107162476,-1.04480314254761,-0.263971924781799,-3.88038730621338,-1.48391056060791,-0.265459656715393,-4.06425380706787,-1.19524478912354,-0.256030678749084,-3.70654153823853,-1.64200592041016,-0.250580430030823,-3.69704294204712,-1.73076152801514,-0.308424592018127,-3.62586355209351,-1.69523572921753,-0.269834160804749,-3.69317531585693,-1.81350421905518,-0.178389251232147,-3.77169847488403,-1.7450475692749,-0.092562347650528,-3.82908535003662,-1.77926731109619,-0.0973116457462311,-3.8274564743042,-1.86228656768799,-0.355334877967834,-3.48038387298584,-1.28121280670166,-0.299809098243713,-3.63507509231567,-0.997212409973145,-0.388680100440979,-3.32450437545776,-1.51079511642456,-0.398398995399475,-3.29302978515625,-1.60274839401245,-0.4151531457901,-3.17616319656372, +-1.52241849899292,-0.416211724281311,-3.28888607025146,-1.67283821105957,-0.379329323768616,-3.4236798286438,-1.61911916732788,-0.356982827186584,-3.52799654006958,-1.66688060760498,-0.377344727516174,-3.5206413269043,-1.75170803070068,-0.351773023605347,-2.73375797271729,-0.986345767974854,-0.221312284469604,-2.85862302780151,-0.721744060516357,-0.382115125656128,-2.62963485717773,-1.25070905685425,-0.409621953964233,-2.66666793823242,-1.34433460235596,-0.388817548751831,-2.36971521377563,-1.21355772018433,-0.439990758895874,-2.65245628356934,-1.42534160614014,-0.427752256393433,-2.86692094802856,-1.40732908248901,-0.42907977104187,-3.03327989578247,-1.48154449462891,-0.452841520309448,-3.00872230529785,-1.56252288818359,-0.441521406173706,-2.05348873138428,-0.718268871307373,-0.458702802658081,-2.16665029525757,-0.486698627471924,-0.408294439315796,-1.95764970779419,-0.730062484741211,-0.394414663314819,-1.96948909759521,-0.934492111206055,-0.411541700363159,-1.92139863967896,-1.06622552871704,-0.425120115280151,-1.83099603652954,-1.00031423568726,-0.441295385360718,-1.89157009124756,-1.14879179000854,-0.395491361618042,-2.09352207183838,-1.12945318222046,-0.39275336265564,-2.25924730300903,-1.18445634841919,-0.430489301681519,-2.23487758636475,-1.2697286605835,-0.0436255037784576,-4.05079030990601,-1.52644062042236,-0.0455853044986725,-4.22137641906738,-1.25789642333984,-0.0489145815372467,-3.85877132415771,-1.78782367706299,-0.0509397089481354,-3.85126876831055,-1.8709831237793,-0.0461846888065338,-3.90458011627197,-1.69162845611572,-0.13694441318512,-3.79924440383911,-1.76476860046387,-0.148842990398407,-3.79313278198242,-1.84990310668945,-0.161808133125305,-3.96460056304932,-1.49857616424561,-0.156114757061005,-4.12836933135986,-1.22372817993164,-0.137915790081024,-3.84044313430786,-1.65633869171143,-0.202953517436981,-3.91936111450195,-1.48164844512939,-0.196199059486389,-4.08143281936646,-1.20586681365967,-0.215213000774384,-3.73599338531494,-1.73971366882324,-0.236374497413635,-3.72542858123779,-1.82524108886719, +-0.209800362586975,-3.79012441635132,-1.62273406982422,-0.281548142433167,-3.66198348999023,-1.71282196044922,-0.30160391330719,-3.65991401672363,-1.80155372619629,-0.310045838356018,-3.81555604934692,-1.45330715179443,-0.316133141517639,-3.99183225631714,-1.16914844512939,-0.290249466896057,-3.68957614898682,-1.58589363098145,-0.354628205299377,-3.78511953353882,-1.43528652191162,-0.383575081825256,-3.94393873214722,-1.14928817749023,-0.333950638771057,-3.58015537261963,-1.68298816680908,-0.35702383518219,-3.57388114929199,-1.77083587646484,-0.31919538974762,-3.64572286605835,-1.56202411651611,-0.371278405189514,-3.47467374801636,-1.64205694198608,-0.388995766639709,-3.46578121185303,-1.73178768157959,-0.39231550693512,-3.61865520477295,-1.36562633514404,-0.417132973670959,-3.79203414916992,-1.08506011962891,-0.370885491371155,-3.51904296875,-1.48958206176758,-0.387922883033752,-3.57800722122192,-1.32119846343994,-0.380056023597717,-3.72149085998535,-1.05179595947266,-0.385902047157288,-3.36361980438232,-1.60613250732422,-0.404870629310608,-3.35160255432129,-1.69106149673462,-0.374428391456604,-3.43956136703491,-1.48069620132446,-0.407094597816467,-3.23553228378296,-1.55602931976318,-0.428727746009827,-3.22828769683838,-1.64572858810425,-0.305176377296448,-3.39273166656494,-1.2280797958374,-0.221179604530334,-3.55020952224731,-0.953861236572266,-0.374269127845764,-3.2797064781189,-1.39249992370605,-0.290953397750854,-3.31617212295532,-1.19135808944702,-0.152947187423706,-3.4679799079895,-0.906136989593506,-0.422971248626709,-3.1063117980957,-1.5064868927002,-0.447803258895874,-3.0872974395752,-1.59219074249268,-0.386558175086975,-3.17389011383057,-1.37406158447266,-0.431198835372925,-2.95229768753052,-1.44680738449097,-0.456682920455933,-2.93184661865234,-1.53317308425903,-0.321970701217651,-3.03581285476685,-1.09001493453979,-0.0904710292816162,-3.18547821044922,-0.798651218414307,-0.413310766220093,-2.94068813323975,-1.27968835830688,-0.333694219589233,-2.91518545150757,-1.04164505004883,-0.1511070728302,-3.02644109725952, +-0.76002311706543,-0.421268224716187,-2.7755560874939,-1.3797869682312,-0.448697805404663,-2.75206756591797,-1.46390962600708,-0.402375936508179,-2.8017692565918,-1.25078010559082,-0.389415502548218,-2.51146030426025,-1.2772068977356,-0.428589582443237,-2.50258827209473,-1.3682656288147,-0.380489110946655,-2.56343269348145,-0.92225980758667,-0.333387136459351,-2.67914056777954,-0.670529365539551,-0.355195760726929,-2.48458099365234,-1.12534666061401,-0.04495969414711,-4.17623805999756,-1.34728908538818,-0.461566686630249,-2.12325477600098,-0.565139770507813,-0.419268369674683,-2.0319709777832,-0.542338848114014,-0.162564396858215,-4.0275936126709,-1.29338550567627,-0.198526501655579,-4.03959989547729,-1.29634952545166,-0.268245339393616,-4.01837730407715,-1.28828620910645,-0.320456147193909,-3.94335556030273,-1.25969696044922,-0.163458943367004,-4.08333301544189,-1.31260108947754,-0.32078230381012,-3.89171981811523,-1.24059963226318,-0.122011303901672,-4.14365243911743,-1.33494091033936,-0.378596901893616,-3.90567493438721,-1.24336051940918,-0.426783204078674,-3.83454084396362,-1.21349811553955,-0.407089829444885,-3.74503612518311,-1.17320346832275,-0.359994530677795,-3.69680690765381,-1.1495943069458,-0.383746743202209,-3.69053173065186,-1.13984203338623,-0.310249924659729,-3.60119295120239,-1.08728313446045,-0.231197118759155,-3.51195764541626,-1.03793430328369,-0.159254670143127,-3.45453310012817,-1.01108264923096,-0.182255983352661,-3.43796443939209,-0.995426177978516,-0.159380674362183,-3.33014965057373,-0.947161197662354,-0.145025014877319,-3.14765882492065,-0.887007236480713,-0.129534482955933,-3.07260036468506,-0.870408535003662,-0.1958167552948,-3.00665187835693,-0.850277423858643,-0.257924795150757,-2.82682609558105,-0.802570819854736,-0.354449033737183,-2.64212560653687,-0.750943183898926,-0.376561880111694,-2.55088567733765,-0.726742267608643,-0.442669630050659,-2.45675277709961,-0.685532569885254,-0.459555387496948,-2.29345321655273,-0.626008033752441,-0.290435433387756,-3.91392040252686,-1.15199089050293, +-0.105852723121643,-3.47425174713135,-0.93942403793335,-0.311313390731812,-2.55098009109497,-0.659544467926025,-0.370639562606812,-2.06830644607544,-0.454324722290039,-0.160279452800751,-3.83670234680176,-1.56234264373779,-0.151241898536682,-4.04470920562744,-1.20620822906494,-0.276745438575745,-3.67469358444214,-1.5459680557251,-0.338974595069885,-3.4949688911438,-1.44130611419678,-0.324903130531311,-3.71855068206787,-1.0689811706543,-0.307917237281799,-3.26459980010986,-1.29726314544678,-0.313265562057495,-2.84323072433472,-1.18311977386475,-0.0446822643280029,-3.05092525482178,-0.784852027893066,-0.284826040267944,-2.38788890838623,-1.02712345123291,-0.285592794418335,-2.10717439651489,-1.0182318687439,-0.349934339523315,-2.31755304336548,-0.55392599105835,-0.323809385299683,-1.90055894851685,-0.844905376434326,-0.0793239176273346,-3.95150089263916,-1.49995136260986,-0.0858432352542877,-4.12884187698364,-1.23380470275879,-0.159265220165253,-3.9011697769165,-1.46004104614258,-0.0790568888187408,-3.81467866897583,-1.68044757843018,-0.305735230445862,-3.63732624053955,-1.38350772857666,-0.280970215797424,-3.75591373443604,-1.41722869873047,-0.342575669288635,-3.82258176803589,-1.10042476654053,-0.328266739845276,-3.56543111801147,-1.33021640777588,-0.298036217689514,-3.53820085525513,-1.54715967178345,-0.174520611763,-3.16649866104126,-1.13428354263306,-0.236302971839905,-3.32422780990601,-1.20263719558716,0.0168341398239136,-3.32725429534912,-0.837212085723877,-0.224739670753479,-2.9176459312439,-1.05823469161987,-0.336794495582581,-3.05460739135742,-1.35897541046143,-0.283452749252319,-2.3810510635376,-0.834781169891357,-0.294636487960815,-2.44710874557495,-0.900222778320313,-0.325626134872437,-2.47083377838135,-0.60663366317749,-0.287597417831421,-2.22995376586914,-0.776808261871338,-0.276643514633179,-2.27292108535767,-1.03822183609009,-0.216084659099579,-3.81867647171021,-1.4611120223999,-0.225941300392151,-4.00812244415283,-1.1841344833374,-0.208006501197815,-3.69584655761719,-1.62076663970947,-0.20860880613327, +-3.67259645462036,-1.68711280822754,-0.258226990699768,-3.60078907012939,-1.66590213775635,-0.145960927009583,-3.73860597610474,-1.71108150482178,-0.0790950357913971,-3.79217338562012,-1.73421478271484,-0.256803154945374,-3.41727781295776,-1.24927139282227,-0.189776539802551,-3.58396148681641,-0.966808319091797,-0.331421494483948,-3.32439851760864,-1.45363330841064,-0.342564225196838,-3.2906608581543,-1.54339790344238,-0.353297829627991,-3.16580009460449,-1.50307559967041,-0.328090310096741,-3.40843915939331,-1.5947732925415,-0.300840973854065,-3.50961971282959,-1.6262149810791,-0.24182391166687,-2.69482088088989,-0.970602989196777,-0.142620801925659,-2.8305139541626,-0.711757659912109,-0.292217016220093,-2.60331392288208,-1.22263860702515,-0.298828840255737,-2.58931064605713,-1.2838921546936,-0.255203008651733,-2.27629947662354,-1.17776775360107,-0.332624077796936,-2.80140352249146,-1.37076473236084,-0.353415131568909,-3.03084087371826,-1.44756412506104,-0.297484159469604,-2.05990028381348,-0.721341133117676,-0.352991819381714,-2.17253160476685,-0.491141796112061,-0.321848630905151,-1.94821310043335,-0.727536678314209,-0.309554815292358,-1.95759582519531,-0.929187774658203,-0.279377698898315,-1.91543626785278,-1.05084037780762,-0.27289080619812,-2.06148433685303,-1.08479881286621,-0.261652708053589,-2.1753625869751,-1.13841581344604,-0.0281125605106354,-3.9628267288208,-1.49551200866699,-0.0313250124454498,-4.14419507980347,-1.23794841766357,-0.0440141260623932,-3.81310749053955,-1.74801158905029,-0.040908008813858,-3.85978698730469,-1.67480278015137,-0.109332233667374,-3.76481485366821,-1.72878265380859,-0.133691966533661,-3.90021800994873,-1.4745626449585,-0.132147967815399,-4.07868719100952,-1.201491355896,-0.122336983680725,-3.80380964279175,-1.64244651794434,-0.1711465716362,-3.86000871658325,-1.46107578277588,-0.169819056987762,-4.02974843978882,-1.19396877288818,-0.179897904396057,-3.70162534713745,-1.70425224304199,-0.181291699409485,-3.76151323318481,-1.60932064056396,-0.230744957923889,-3.63846778869629, +-1.68146133422852,-0.257775902748108,-3.76265382766724,-1.43358707427979,-0.270771622657776,-3.95233249664307,-1.15001010894775,-0.249940514564514,-3.66593265533447,-1.57638263702393,-0.279718041419983,-3.7135214805603,-1.40881633758545,-0.315021157264709,-3.88691234588623,-1.12302875518799,-0.281225800514221,-3.55174160003662,-1.65164661407471,-0.275773644447327,-3.6198902130127,-1.55453205108643,-0.313809037208557,-3.4623384475708,-1.61661052703857,-0.319186806678772,-3.57184076309204,-1.34916687011719,-0.336161255836487,-3.75292825698853,-1.07231330871582,-0.326034188270569,-3.49860191345215,-1.48230075836182,-0.296834588050842,-3.51689291000366,-1.29718160629272,-0.27261221408844,-3.67148351669312,-1.02734661102295,-0.336159348487854,-3.34371137619019,-1.57603216171265,-0.329921364784241,-3.42388153076172,-1.46579170227051,-0.347387909889221,-3.23179626464844,-1.53232526779175,-0.225148797035217,-3.34087705612183,-1.20916652679443,-0.123576283454895,-3.51284408569336,-0.932565689086914,-0.324829697608948,-3.26739501953125,-1.37923192977905,-0.202030777931213,-3.28082704544067,-1.17756843566895,-0.0512830018997192,-3.43822431564331,-0.889553070068359,-0.354679703712463,-3.08928871154785,-1.48437786102295,-0.338023781776428,-3.1477837562561,-1.36477899551392,-0.348833680152893,-2.94633293151855,-1.42925214767456,-0.197958111763,-3.00893115997314,-1.07864856719971,0.000778555870056152,-3.16037940979004,-0.787085056304932,-0.332654595375061,-2.92654800415039,-1.27469778060913,-0.219085335731506,-2.8338098526001,-1.01460886001587,-0.0700113773345947,-2.96315860748291,-0.739273071289063,-0.315665006637573,-2.69187593460083,-1.3373908996582,-0.312012434005737,-2.73131656646729,-1.23308897018433,-0.276990652084351,-2.45012903213501,-1.24546241760254,-0.269485235214233,-2.54458093643188,-0.922292232513428,-0.250465154647827,-2.66767454147339,-0.668212413787842,-0.278658628463745,-2.46895980834961,-1.13377380371094,-0.0265714228153229,-4.07593154907227,-1.31946754455566,-0.320395231246948,-2.13269662857056,-0.571313381195068, +-0.34255576133728,-2.02315425872803,-0.540165424346924,-0.153711020946503,-4.00117158889771,-1.2840461730957,-0.165606200695038,-3.9680609703064,-1.27880668640137,-0.219397664070129,-3.94019746780396,-1.27090549468994,-0.263160347938538,-3.88533878326416,-1.23476028442383,-0.132724463939667,-4.01386976242065,-1.28440380096436,-0.284932732582092,-3.86777973175049,-1.2301607131958,-0.0818196833133698,-4.06334495544434,-1.31896781921387,-0.286849617958069,-3.82808303833008,-1.2090892791748,-0.310216546058655,-3.75725793838501,-1.18676662445068,-0.303426384925842,-3.68804359436035,-1.15345668792725,-0.308696389198303,-3.67504692077637,-1.14244365692139,-0.252889275550842,-3.62025880813599,-1.10798835754395,-0.173225045204163,-3.52797508239746,-1.05053234100342,-0.110901951789856,-3.45276689529419,-1.01787233352661,-0.116570115089417,-3.44351005554199,-1.00708770751953,-0.0643635988235474,-3.40535354614258,-0.977505207061768,-0.00197994709014893,-3.29080963134766,-0.927711486816406,-0.021466851234436,-3.11960172653198,-0.873664379119873,-0.0560599565505981,-3.02348375320435,-0.853943347930908,-0.0790787935256958,-2.93013143539429,-0.82415246963501,-0.14649510383606,-2.79014873504639,-0.789896965026855,-0.247079610824585,-2.62616920471191,-0.748605728149414,-0.298436880111694,-2.52482175827026,-0.724672794342041,-0.297147512435913,-2.44628381729126,-0.685948848724365,-0.31492018699646,-2.29290914535522,-0.628995895385742,-0.0375734865665436,-4.2042670249939,-1.23630428314209,-0.0973087847232819,-4.18311786651611,-1.22820377349854,-0.142793774604797,-4.11571359634399,-1.19858646392822,-0.154169261455536,-4.06031847000122,-1.19948387145996,-0.183741748332977,-4.06664514541626,-1.1822452545166,-0.246689438819885,-4.04855680465698,-1.1707706451416,-0.294769883155823,-3.98385667800903,-1.14231014251709,-0.305316567420959,-3.92900371551514,-1.14511489868164,-0.353508591651917,-3.9273886680603,-1.11627674102783,-0.394344925880432,-3.86436891555786,-1.0888786315918,-0.383920311927795,-3.78546571731567,-1.05957889556885,-0.344593644142151, +-3.72913885116577,-1.06307220458984,-0.321566224098206,-3.69806671142578,-1.03663158416748,-0.238842606544495,-3.61190319061279,-0.979840278625488,-0.169115662574768,-3.53479433059692,-0.940740585327148,-0.121835827827454,-3.47961950302124,-0.937454700469971,-0.0930148363113403,-3.4532470703125,-0.89771556854248,-0.0278440713882446,-3.34501123428345,-0.854775905609131,-0.0304172039031982,-3.17630386352539,-0.792793750762939,-0.0621235370635986,-3.07265377044678,-0.785319328308105,-0.0980284214019775,-2.99910402297974,-0.740518569946289,-0.174138784408569,-2.84485101699829,-0.719948291778564,-0.286851644515991,-2.67827129364014,-0.662172794342041,-0.339787244796753,-2.56491470336914,-0.656284332275391,-0.381808996200562,-2.47867059707642,-0.600269794464111,-0.401890516281128,-2.31856966018677,-0.558127880096436,-0.407903432846069,-2.17433834075928,-0.481568336486816,-0.395465612411499,-2.07870960235596,-0.446468830108643,-0.0475212633609772,-3.89168167114258,-1.71991634368896,-0.300469994544983,-3.66375875473022,-1.58125114440918,-0.287203431129456,-3.67990827560425,-1.62203311920166,-0.256538987159729,-3.70123243331909,-1.66906833648682,-0.211817383766174,-3.77332878112793,-1.65652370452881,-0.322916626930237,-3.6247706413269,-1.59580326080322,-0.170184314250946,-3.82763290405273,-1.61841297149658,-0.350890755653381,-3.55345392227173,-1.58831024169922,-0.136827111244202,-3.8281135559082,-1.68747997283936,-0.369531273841858,-3.50279998779297,-1.53227186203003,-0.0909487307071686,-3.84841346740723,-1.72064208984375,-0.372125267982483,-3.47409772872925,-1.49247455596924,-0.377668976783752,-3.41429662704468,-1.51706790924072,-0.392298340797424,-3.31308650970459,-1.5418553352356,-0.389070153236389,-3.26349592208862,-1.44055271148682,-0.370792031288147,-3.23702383041382,-1.3639235496521,-0.402112603187561,-3.15205764770508,-1.41275930404663,-0.416141271591187,-3.05849075317383,-1.39880084991455,-0.42171835899353,-2.94452619552612,-1.32948350906372,-0.405847311019897,-2.88120937347412,-1.25846338272095,-0.408674955368042, +-2.79352283477783,-1.28835725784302,-0.389598608016968,-2.63851833343506,-1.28011465072632,-0.36258864402771,-2.48309373855591,-1.16377687454224,-0.354657888412476,-2.4123797416687,-1.05717325210571,-0.37206244468689,-2.29363679885864,-1.08419561386108,-0.382863759994507,-2.11924457550049,-1.05753183364868,-0.398412466049194,-1.95553684234619,-0.973124504089355,-0.408447027206421,-1.89072322845459,-0.880917072296143,-0.317331075668335,-1.88778448104858,-0.8794264793396,-0.303106069564819,-1.93271827697754,-0.959005832672119,-0.0453177988529205,-3.93471479415894,-1.6493558883667,-0.0360318720340729,-3.86978721618652,-1.62280654907227,-0.106721073389053,-3.89270639419556,-1.6549129486084,-0.147884964942932,-3.8686408996582,-1.61822319030762,-0.168926358222961,-3.87212562561035,-1.54537010192871,-0.208656430244446,-3.82333421707153,-1.58928108215332,-0.259959816932678,-3.74642610549927,-1.60462284088135,-0.297862648963928,-3.72027969360352,-1.55496501922607,-0.304445862770081,-3.70933055877686,-1.51116752624512,-0.328826546669006,-3.68370485305786,-1.53448486328125,-0.363235116004944,-3.59938955307007,-1.52402400970459,-0.37894594669342,-3.54262924194336,-1.46118831634521,-0.3714519739151,-3.52211141586304,-1.41802549362183,-0.382271409034729,-3.47702169418335,-1.44425106048584,-0.39308226108551,-3.3576545715332,-1.4611930847168,-0.365588784217834,-3.30418872833252,-1.35375642776489,-0.319257378578186,-3.28559589385986,-1.27774095535278,-0.375074028968811,-3.20994424819946,-1.33191394805908,-0.40306544303894,-3.10066699981689,-1.31523752212524,-0.40825629234314,-2.95815467834473,-1.23357582092285,-0.377248525619507,-2.90802526473999,-1.16941547393799,-0.407000303268433,-2.83002090454102,-1.20247077941895,-0.395018339157104,-2.65091466903687,-1.19018793106079,-0.369255781173706,-2.50082921981812,-1.07568073272705,-0.358728170394897,-2.44227313995361,-0.974930763244629,-0.384994268417358,-2.33280181884766,-0.992412567138672,-0.39878249168396,-2.15505218505859,-0.964839458465576,-0.410593748092651,-1.98867082595825,-0.879215717315674, +-0.405218839645386,-1.93538856506348,-0.822975635528564,-0.3221595287323,-1.90996789932251,-0.815390110015869,-0.2970130443573,-1.98116302490234,-0.873161315917969,-0.269814252853394,-2.13778066635132,-0.953277587890625,-0.267652273178101,-2.30265426635742,-0.983740329742432,-0.284253835678101,-2.40166616439819,-0.995192527770996,-0.271836996078491,-2.48326444625854,-1.07634210586548,-0.283605337142944,-2.62035894393921,-1.15576791763306,-0.301519155502319,-2.75316905975342,-1.17738056182861,-0.297603249549866,-2.8586220741272,-1.15374708175659,-0.308382630348206,-2.93810749053955,-1.22636270523071,-0.308408379554749,-3.07420778274536,-1.30460405349731,-0.314123749732971,-3.17782974243164,-1.31986379623413,-0.293009400367737,-3.27749443054199,-1.27539873123169,-0.306397080421448,-3.27940464019775,-1.33617401123047,-0.318784356117249,-3.3399395942688,-1.40184640884399,-0.323138833045959,-3.44598913192749,-1.42388200759888,-0.337230324745178,-3.51189947128296,-1.41464996337891,-0.324585556983948,-3.51268196105957,-1.44912958145142,-0.296222329139709,-3.55595636367798,-1.50457096099854,-0.274441361427307,-3.64183330535889,-1.51864433288574,-0.277708649635315,-3.69433879852295,-1.51432704925537,-0.251119256019592,-3.68580102920532,-1.54004383087158,-0.207266926765442,-3.71996355056763,-1.57816028594971,-0.176850497722626,-3.78338384628296,-1.57113075256348,-0.159971833229065,-3.85151338577271,-1.53695964813232,-0.124458432197571,-3.82092809677124,-1.59763050079346,-0.0770536959171295,-3.84077119827271,-1.63019847869873,-0.230633497238159,-1.9490442276001,-1.13646554946899,-0.165060639381409,-1.86381196975708,-1.21335983276367,-0.257812142372131,-2.52446365356445,-1.42306661605835,-0.301293015480042,-2.76120090484619,-1.5116171836853,-0.331596970558167,-2.98972606658936,-1.56787824630737,-0.318840622901917,-3.13971948623657,-1.62250518798828,-0.317114472389221,-3.2720627784729,-1.64484977722168,-0.284750580787659,-3.39155340194702,-1.68575859069824,-0.259860634803772,-3.49431180953979,-1.70153093338013,-0.210149466991425, +-3.57938051223755,-1.72668695449829,-0.164310157299042,-3.6519923210144,-1.73925590515137,-0.0998899042606354,-3.70752429962158,-1.76067161560059,-0.0563284307718277,-3.75987768173218,-1.76582908630371,-0.0196510851383209,-3.87245607376099,-1.78933429718018,-0.0204111635684967,-3.86157894134521,-1.87545013427734,-0.0190621912479401,-3.90897846221924,-1.69933986663818,-0.0179573595523834,-3.92577457427979,-1.66267108917236,-0.0142375528812408,-3.95713806152344,-1.62794876098633,-0.0126434862613678,-4.04008817672729,-1.51760578155518,-0.0127507746219635,-4.16279745101929,-1.3430233001709,-0.0129095613956451,-4.21237897872925,-1.25613498687744,-0.0125800669193268,-4.19565439224243,-1.23591899871826,-0.0103069841861725,-4.15183782577515,-1.23788642883301,-0.00804486870765686,-4.09012269973755,-1.32050323486328,-0.009287029504776,-3.97388744354248,-1.49412059783936,-0.0139338076114655,-3.9001407623291,-1.60604858398438,-0.0163189470767975,-3.89268732070923,-1.65049076080322,-0.0169259607791901,-3.82808399200439,-1.75311088562012,-0.0154682695865631,-3.75901794433594,-1.78913688659668,-0.0328413546085358,-3.69908857345581,-1.80159664154053,-0.0564633905887604,-3.63328886032104,-1.80929231643677,-0.0787025988101959,-3.55833053588867,-1.81638526916504,-0.0977350771427155,-3.48555326461792,-1.82229232788086,-0.116146713495255,-3.3941125869751,-1.82842636108398,-0.130842804908752,-3.2700662612915,-1.8226375579834,-0.143437027931213,-3.12495708465576,-1.80499839782715,-0.151634871959686,-2.94061088562012,-1.77521276473999,-0.145719170570374,-2.71634578704834,-1.71030521392822,-0.130078434944153,-2.52200508117676,-1.61980295181274,0.032254546880722,-3.87245988845825,-1.78932094573975,0.0334757268428802,-3.86158084869385,-1.87544059753418,0.0310128629207611,-3.90898609161377,-1.69931602478027,0.0296381413936615,-3.92578315734863,-1.66264343261719,0.0256012380123138,-3.95714473724365,-1.6279182434082,0.0234430730342865,-4.04010057449341,-1.51755809783936,0.0233696401119232,-4.16281080245972,-1.3429594039917,0.0235541760921478,-4.21238851547241, +-1.25607681274414,0.0231913030147552,-4.19566965103149,-1.23585796356201,0.0208428800106049,-4.15184926986694,-1.23783111572266,0.0185488164424896,-4.09013509750366,-1.32045459747314,0.0199945867061615,-3.97389698028564,-1.49408435821533,0.0252898633480072,-3.90014553070068,-1.60601902008057,0.0279687345027924,-3.89269304275513,-1.650465965271,0.0294035375118256,-3.82808685302734,-1.753098487854,0.028284877538681,-3.75901889801025,-1.78912925720215,0.0457857474684715,-3.69909238815308,-1.80158615112305,0.0695146024227142,-3.63329172134399,-1.8092794418335,0.0918196141719818,-3.55833435058594,-1.81637096405029,0.110860675573349,-3.48555517196655,-1.82227563858032,0.129166960716248,-3.3941068649292,-1.82839727401733,0.143654227256775,-3.27005195617676,-1.82258462905884,0.155855059623718,-3.12491893768311,-1.80491065979004,0.163291335105896,-2.94053363800049,-1.77507305145264,0.155987083911896,-2.7161750793457,-1.71007823944092,0.138783276081085,-2.5217227935791,-1.61947202682495,0.333704710006714,-1.80767726898193,-0.849847793579102,0.340020418167114,-1.82741689682007,-0.806323528289795,0.338000535964966,-1.8668966293335,-0.702890396118164,0.360027074813843,-1.9402003288269,-0.502965450286865,0.339438199996948,-1.83468723297119,-0.780880928039551,0.316521406173706,-1.70348215103149,-1.02222681045532,-0.337703466415405,-1.82668352127075,-0.810542106628418,-0.330642461776733,-1.80701541900635,-0.853726863861084,-0.356108427047729,-1.93958473205566,-0.50667142868042,-0.336585760116577,-1.86610221862793,-0.707460880279541,-0.337486028671265,-1.83392715454102,-0.785238265991211,-0.305949926376343,-1.70436859130859,-1.02370023727417,0.430083990097046,-1.99835109710693,-0.526958465576172,0.430073976516724,-2.02328729629517,-0.453513622283936,0.407061815261841,-2.02149486541748,-0.436296463012695,0.385473966598511,-2.01113080978394,-0.441182613372803,0.352598905563354,-1.97251319885254,-0.520678997039795,0.331978559494019,-1.89837408065796,-0.713345050811768,0.333310842514038,-1.86629581451416,-0.79136323928833,0.333868741989136, +-1.85906744003296,-0.816640377044678,0.326506853103638,-1.84204530715942,-0.859387874603271,0.300429582595825,-1.78022432327271,-1.03118562698364,-0.290840864181519,-1.78024530410767,-1.03256845474243,-0.323382139205933,-1.84138154983521,-0.86325216293335,-0.331458806991577,-1.85833501815796,-0.8208327293396,-0.331304311752319,-1.86554145812988,-0.795700073242188,-0.330515623092651,-1.89758443832397,-0.717901706695557,-0.348888158798218,-1.97190284729004,-0.524450778961182,-0.378297567367554,-2.01077318191528,-0.443765163421631,-0.398977994918823,-2.02120542526245,-0.438636302947998,-0.421678304672241,-2.02301788330078,-0.455841541290283,-0.423811674118042,-1.99791812896729,-0.530117988586426,-0.408761739730835,-1.92699861526489,-0.721371173858643,0.412901639938354,-1.92768335342407,-0.717380523681641,-0.315786123275757,-1.81300640106201,-0.936659812927246,-0.32599139213562,-1.76201772689819,-0.930216312408447,0.321296453475952,-1.81348705291748,-0.933732509613037,0.331815481185913,-1.76246976852417,-0.92741060256958,0.00507912039756775,-2.68771362304688,-1.74389553070068,-0.0706092119216919,-2.12028789520264,-1.39920234680176,-0.139257073402405,-1.74707937240601,-1.17993497848511,0.00156721472740173,-2.17140245437622,-1.38739967346191,-0.0516373515129089,-2.00843334197998,-1.30702495574951,0.211162447929382,-1.5116491317749,-1.06612014770508,0.146933436393738,-1.75013208389282,-1.1807279586792,0.289554953575134,-1.42198085784912,-1.04814291000366,0.265949606895447,-1.40480852127075,-1.02714204788208,-0.397948980331421,-1.20569753646851,-0.995949268341064,-0.367323517799377,-1.19719314575195,-0.970284461975098,-0.199333786964417,-1.51521730422974,-1.06753635406494,-0.275752663612366,-1.42616081237793,-1.04965162277222,-0.253406167030334,-1.40770244598389,-1.02829599380493,0.410620450973511,-1.20551061630249,-0.995850086212158,0.379599928855896,-1.1969747543335,-0.970146179199219,0.0888760983943939,-4.03904581069946,-1.52658939361572,0.0869110524654388,-3.91387510299683,-1.65541934967041,0.392839312553406,-3.75342321395874, +-1.42606925964355,0.359992861747742,-3.6442494392395,-1.5362606048584,0.31937050819397,-3.27110767364502,-1.17518091201782,0.406797647476196,-3.16045188903809,-1.33500528335571,0.242990374565125,-4.08040142059326,-1.20174884796143,0.282889723777771,-4.05225610733032,-1.22842025756836,0.245225787162781,-4.03640460968018,-1.29463672637939,0.211209177970886,-4.07044124603271,-1.23836898803711,0.245602488517761,-4.06896638870239,-1.235520362854,0.280077815055847,-3.6791934967041,-1.72236347198486,0.287683367729187,-3.68617868423462,-1.64951515197754,0.127983927726746,-3.81371021270752,-1.77284812927246,0.136054873466492,-3.8109712600708,-1.85630989074707,0.363788485527039,-3.68368101119995,-1.02664089202881,0.325000524520874,-3.62662935256958,-1.02999782562256,0.371587991714478,-3.65178346633911,-1.11713695526123,0.402600169181824,-3.71493911743164,-1.0833215713501,0.373656511306763,-3.67700862884521,-1.05949687957764,0.415850043296814,-3.26316928863525,-1.58185195922852,0.406692862510681,-3.28154706954956,-1.50013780593872,0.378219485282898,-3.50111198425293,-1.65493583679199,0.396960139274597,-3.4931640625,-1.74171257019043,0.203312635421753,-2.94975662231445,-0.743089199066162,0.257934808731079,-2.84839963912964,-0.749953746795654,0.246361017227173,-2.92404317855835,-0.830122947692871,0.193910360336304,-3.02098369598389,-0.794165134429932,0.223716020584106,-2.94429016113281,-0.774148941040039,0.412568807601929,-2.5917592048645,-1.31328535079956,0.388577699661255,-2.55341053009033,-1.23032379150391,0.443578004837036,-2.99355363845825,-1.46514749526978,0.468125581741333,-2.97089958190918,-1.5481071472168,0.452139616012573,-2.13657903671265,-0.739059925079346,0.47374153137207,-2.20260095596313,-0.591085910797119,0.407069444656372,-1.93168115615845,-0.883055686950684,0.413128614425659,-1.91313791275024,-0.929335117340088,0.443049669265747,-2.15621185302734,-1.24152898788452,0.408453702926636,-2.18228197097778,-1.16037130355835,0.0924161374568939,-4.20842742919922,-1.25240898132324,0.134541809558868,-4.17390441894531,-1.27613925933838, +0.0931480824947357,-4.16496658325195,-1.34280204772949,0.0568550527095795,-4.2087140083313,-1.29042720794678,0.0944846570491791,-4.19584941864014,-1.28498458862305,0.169021964073181,-4.09076738357544,-1.2174654006958,0.17257821559906,-4.05465316772461,-1.24036693572998,0.175631821155548,-4.04967403411865,-1.30066204071045,0.173306822776794,-4.11543655395508,-1.25552272796631,0.172776103019714,-4.07906818389893,-1.24651432037354,0.178495764732361,-3.94096803665161,-1.48047065734863,0.171093285083771,-3.87200307846069,-1.5750036239624,0.429253935813904,-3.91940069198608,-1.1363525390625,0.450181841850281,-3.86659812927246,-1.15416622161865,0.423270583152771,-3.87894487380981,-1.23169612884521,0.399839758872986,-3.93477535247803,-1.18369770050049,0.431483626365662,-3.90931034088135,-1.17179298400879,0.3979572057724,-3.75519609451294,-1.07768154144287,0.376195788383484,-3.72270536422729,-1.09774589538574,0.391135573387146,-3.71406269073486,-1.15833950042725,0.431390166282654,-3.77794122695923,-1.1163387298584,0.398153185844421,-3.7433819770813,-1.10471820831299,0.390330672264099,-3.59390687942505,-1.34764671325684,0.387461543083191,-3.53127241134644,-1.43244552612305,0.157575368881226,-3.4262490272522,-0.883467197418213,0.159327745437622,-3.3520770072937,-0.887788772583008,0.198387861251831,-3.39442920684814,-0.976521968841553,0.188669919967651,-3.45926952362061,-0.937822818756104,0.179439783096313,-3.41917324066162,-0.915805339813232,0.106021165847778,-3.12462091445923,-0.797933101654053,0.122320890426636,-3.08646726608276,-0.820323467254639,0.155099153518677,-3.09596347808838,-0.876894474029541,0.13745379447937,-3.17068958282471,-0.829756259918213,0.12504506111145,-3.1174898147583,-0.822587966918945,0.333656549453735,-2.99140691757202,-1.08173751831055,0.404601812362671,-2.92608451843262,-1.19231700897217,0.463083982467651,-2.40726518630981,-0.580248355865479,0.472013235092163,-2.31235074996948,-0.577933788299561,0.469852209091187,-2.38081121444702,-0.656552791595459,0.458754062652588,-2.47330904006958,-0.635987281799316, +0.47144079208374,-2.39858627319336,-0.608110904693604,0.449416399002075,-2.31938934326172,-0.804383277893066,0.408435583114624,-2.24842977523804,-0.987789630889893,0.330689311027527,-3.95427560806274,-1.16295146942139,0.33619487285614,-3.92084074020386,-1.18689727783203,0.334315180778503,-3.90947961807251,-1.24693584442139,0.335388541221619,-3.97764587402344,-1.20116519927979,0.334687113761902,-3.9411449432373,-1.19176197052002,0.325871825218201,-3.7902660369873,-1.43452835083008,0.31574285030365,-3.71473550796509,-1.52655124664307,0.245866179466248,-3.90484428405762,-1.48611354827881,0.247810244560242,-3.78276920318604,-1.60504627227783,0.299360156059265,-3.67665767669678,-1.80747222900391,0.210456192493439,-3.75480270385742,-1.74135875701904,0.23229056596756,-3.74145317077637,-1.83103179931641,0.202915549278259,-3.80654907226563,-1.63018035888672,0.0191720426082611,-3.87922382354736,-1.7898530960083,0.019911140203476,-3.86792945861816,-1.87741279602051,0.0174530446529388,-3.92845010757446,-1.64492607116699,0.0182980000972748,-3.91170787811279,-1.68729972839355,0.12756335735321,-3.83423757553101,-1.71023654937744,0.189637064933777,-3.50966739654541,-0.948617935180664,0.164871573448181,-3.47536134719849,-0.963220119476318,0.203016519546509,-3.47636604309082,-1.02207612991333,0.245059728622437,-3.53876543045044,-0.983137130737305,0.196454286575317,-3.50123739242554,-0.971410751342773,0.294611811637878,-3.35800266265869,-1.21376657485962,0.347123503684998,-3.29752969741821,-1.30139970779419,0.391242384910583,-3.53564167022705,-1.30460643768311,0.401581168174744,-3.41867876052856,-1.46303939819336,0.435259222984314,-3.25849533081055,-1.65967845916748,0.3949955701828,-3.39526700973511,-1.61059474945068,0.414567828178406,-3.38234043121338,-1.70128631591797,0.38603675365448,-3.45046281814575,-1.49862432479858,0.334618449211121,-3.60416793823242,-1.68885326385498,0.358275294303894,-3.60016536712646,-1.78018760681152,0.323686480522156,-3.64848947525024,-1.58555793762207,0.375036597251892,-3.52442264556885,-1.56290435791016, +0.368323087692261,-2.61895275115967,-0.667759418487549,0.389025926589966,-2.56727075576782,-0.684284687042236,0.381123304367065,-2.58900499343872,-0.737305641174316,0.361819505691528,-2.66544342041016,-0.698588848114014,0.377055406570435,-2.60955238342285,-0.690858840942383,0.390444993972778,-2.51701784133911,-0.899890899658203,0.373193025588989,-2.46828651428223,-1.01395463943481,0.358432054519653,-2.83309888839722,-1.01667928695679,0.420114755630493,-2.74607992172241,-1.20842218399048,0.447302579879761,-2.58163833618164,-1.39838457107544,0.438037157058716,-2.82226419448853,-1.39282274246216,0.466050386428833,-2.79761028289795,-1.48155784606934,0.420686960220337,-2.84426403045654,-1.26767063140869,0.431783556938171,-3.14204216003418,-1.51387214660645,0.457636117935181,-3.1267261505127,-1.60687255859375,0.398087382316589,-3.19859600067139,-1.38377285003662,0.434538125991821,-2.99895095825195,-1.36859655380249,0.43124794960022,-1.99550533294678,-0.71722936630249,0.448696851730347,-2.06793832778931,-0.547582149505615,0.415260076522827,-1.9492244720459,-0.842105865478516,0.397989511489868,-2.04093933105469,-0.984482765197754,0.416561841964722,-2.063157081604,-0.922353744506836,0.463464021682739,-1.84080600738525,-1.13156175613403,0.431663751602173,-1.87192296981812,-1.0449857711792,0.448293447494507,-1.97239685058594,-1.17653226852417,0.416439294815063,-2.0009880065918,-1.0958456993103,0.402701139450073,-2.02953100204468,-1.01746654510498,0.388578176498413,-2.22155427932739,-1.04798460006714,0.393171072006226,-2.21003723144531,-1.08084154129028,0.00529226660728455,-4.17132949829102,-1.27807331085205,0.0138042867183685,-4.19675970077515,-1.25069332122803,0.0234950482845306,-4.19787693023682,-1.28763771057129,0.013786643743515,-4.14550590515137,-1.33693504333496,0.0137723386287689,-4.18125438690186,-1.28170299530029,0.085742324590683,-3.84113883972168,-1.86716651916504,0.0823920667171478,-3.84514665603638,-1.78431797027588,0.0798395574092865,-3.88082408905029,-1.69828796386719,0.0801828801631927,-3.87049388885498,-1.72341346740723, +0.01387819647789,-4.02387666702271,-1.50979518890381,0.0150655210018158,-3.95483207702637,-1.61229515075684,0.188282370567322,-3.77529716491699,-1.84338665008545,0.171323657035828,-3.78593635559082,-1.75407123565674,0.156374752521515,-3.99196481704712,-1.51268672943115,0.161670982837677,-4.1156268119812,-1.32401371002197,0.16600501537323,-3.85067129135132,-1.60474586486816,0.166821777820587,-3.83039951324463,-1.64705276489258,0.129094958305359,-3.8431510925293,-1.68484115600586,0.143491625785828,-3.87660121917725,-1.64347743988037,0.193925738334656,-3.92222118377686,-1.47222709655762,0.18746691942215,-4.03055047988892,-1.29355144500732,0.266795992851257,-3.70937919616699,-1.81933403015137,0.246605277061462,-3.71635007858276,-1.73626518249512,0.200234770774841,-3.83027696609497,-1.58634567260742,0.199158012866974,-3.85455465316772,-1.55949687957764,0.246856570243835,-3.74416494369507,-1.64208316802979,0.248335719108582,-3.73426628112793,-1.67025947570801,0.330424189567566,-3.643141746521,-1.79550933837891,0.308677077293396,-3.64473009109497,-1.7033805847168,0.306079745292664,-3.84815359115601,-1.47103023529053,0.314807772636414,-3.9835991859436,-1.27462959289551,0.289322257041931,-3.69186449050903,-1.61897373199463,0.296022772789001,-3.72827434539795,-1.58425807952881,0.309754252433777,-3.6893253326416,-1.55472850799561,0.307781577110291,-3.67336511611938,-1.5961742401123,0.344059348106384,-3.78487873077393,-1.42912769317627,0.358771681785583,-3.90038871765137,-1.24239826202393,0.38136088848114,-3.54743003845215,-1.76130771636963,0.359369158744812,-3.55456924438477,-1.67584800720215,0.347258448600769,-3.60581350326538,-1.56715106964111,0.35042417049408,-3.59002876281738,-1.59785461425781,0.32119882106781,-3.67144584655762,-1.54599761962891,0.327596068382263,-3.70227766036987,-1.51975154876709,0.407190680503845,-3.43910694122314,-1.72200536727905,0.388734698295593,-3.44951868057251,-1.62977075576782,0.412701010704041,-3.65851831436157,-1.38669395446777,0.439764857292175,-3.78738975524902,-1.19264888763428,0.383504271507263, +-3.51134920120239,-1.45794296264648,0.38450038433075,-3.48890066146851,-1.50610065460205,0.375903487205505,-3.53636407852173,-1.5268726348877,0.387938857078552,-3.56539344787598,-1.49522924423218,0.390657782554626,-3.58600425720215,-1.32851886749268,0.385720610618591,-3.69760894775391,-1.14673805236816,0.422893881797791,-3.32012939453125,-1.68236541748047,0.404651999473572,-3.32797288894653,-1.60705137252808,0.382348895072937,-3.47885465621948,-1.45463848114014,0.387213110923767,-3.50810098648071,-1.42532348632813,0.394484877586365,-3.38106870651245,-1.5078272819519,0.397779822349548,-3.36302089691162,-1.53926467895508,0.447914004325867,-3.19739818572998,-1.63320159912109,0.423706412315369,-3.20686340332031,-1.53620529174805,0.344574332237244,-3.43269777297974,-1.25322008132935,0.286601305007935,-3.55280780792236,-1.06069374084473,0.400518774986267,-3.29237222671509,-1.46274662017822,0.399691939353943,-3.32121515274048,-1.41597700119019,0.35878598690033,-3.28002548217773,-1.3284273147583,0.389220118522644,-3.25360774993896,-1.3888726234436,0.291000604629517,-3.32815313339233,-1.20037221908569,0.184874773025513,-3.44763851165771,-1.00537919998169,0.463321208953857,-3.04765605926514,-1.57717943191528,0.439109563827515,-3.07037687301636,-1.49542093276978,0.412922620773315,-3.12414073944092,-1.38216352462769,0.423495054244995,-3.10739231109619,-1.41549348831177,0.370115160942078,-3.22767639160156,-1.33035373687744,0.356350302696228,-3.25321102142334,-1.30054616928101,0.47014856338501,-2.8885383605957,-1.51658868789673,0.443023443222046,-2.91008186340332,-1.42636060714722,0.337794542312622,-3.11365175247192,-1.11821269989014,0.175368547439575,-3.23229503631592,-0.915863037109375,0.411868333816528,-2.91033744812012,-1.22741079330444,0.426638841629028,-2.90968322753906,-1.28598165512085,0.427597284317017,-3.00057649612427,-1.3276047706604,0.424714326858521,-3.02413606643677,-1.27830028533936,0.337899446487427,-2.95163679122925,-1.06317377090454,0.178439378738403,-3.04597282409668,-0.864305973052979,0.458914518356323,-2.70641994476318, +-1.44625663757324,0.430022001266479,-2.72581386566162,-1.36514329910278,0.407040357589722,-2.85519504547119,-1.21686506271362,0.403367757797241,-2.87947702407837,-1.18145370483398,0.408218145370483,-2.72071266174316,-1.26514196395874,0.414194345474243,-2.72190523147583,-1.29599475860596,0.446608781814575,-2.42372417449951,-1.33893489837646,0.401390314102173,-2.43613195419312,-1.24206781387329,0.382567644119263,-2.63917398452759,-0.953182220458984,0.328923463821411,-2.72481489181519,-0.774936676025391,0.380740404129028,-2.54701709747314,-1.19825077056885,0.393670797348022,-2.56562566757202,-1.14025592803955,0.361109018325806,-2.45477676391602,-1.05044317245483,0.369177103042603,-2.44443273544312,-1.09817981719971,0.0350240096449852,-4.05013704299927,-1.5231466293335,0.0350235402584076,-4.17433071136475,-1.34679126739502,0.449263334274292,-2.11486959457397,-0.465010166168213,0.429135084152222,-2.06059455871582,-0.484161376953125,0.475851058959961,-2.14922094345093,-0.513942241668701,0.453355550765991,-2.09646797180176,-0.49434232711792,0.184208273887634,-4.06915187835693,-1.20938587188721,0.186160862445831,-4.05870962142944,-1.23879528045654,0.311019778251648,-4.03171682357788,-1.18174076080322,0.315506339073181,-4.01825761795044,-1.21520709991455,0.15586119890213,-4.16025686264038,-1.23310375213623,0.160838961601257,-4.14706802368164,-1.26583766937256,0.360642790794373,-3.9385027885437,-1.15613651275635,0.362598776817322,-3.92871999740601,-1.1864595413208,0.4487065076828,-3.83429193496704,-1.10085678100586,0.45014750957489,-3.82068014144897,-1.13434219360352,0.384425520896912,-3.72903347015381,-1.06583213806152,0.389239192008972,-3.72206401824951,-1.09313869476318,0.276136636734009,-3.59014940261841,-0.971931457519531,0.284997224807739,-3.58051347732544,-1.00359725952148,0.161712408065796,-3.47553634643555,-0.928540229797363,0.172841787338257,-3.46969270706177,-0.952829360961914,0.115954160690308,-3.27111196517944,-0.823740482330322,0.144013166427612,-3.2600359916687,-0.855071067810059,0.133958101272583,-3.06275701522827, +-0.782881259918213,0.151503324508667,-3.06168651580811,-0.810057640075684,0.297677278518677,-2.761634349823,-0.693509101867676,0.314324617385864,-2.74960947036743,-0.721696853637695,0.469175100326538,-2.23874711990356,-0.517468929290771,0.476582527160645,-2.22513580322266,-0.543869495391846,0.0618041455745697,-3.96091842651367,-1.49972152709961,0.0663693845272064,-3.85536479949951,-1.62947177886963,0.30463445186615,-3.6775016784668,-1.3980884552002,0.295590758323669,-3.59815168380737,-1.51634788513184,0.189409613609314,-3.23451948165894,-1.15734004974365,0.323272585868835,-3.12873458862305,-1.32185316085815,0.178966403007507,-4.00431251525879,-1.22312355041504,0.202447712421417,-3.95594501495361,-1.27707767486572,0.234979510307312,-3.98008298873901,-1.21377563476563,0.208369612693787,-4.02237510681152,-1.19054508209229,0.204258322715759,-3.99453020095825,-1.22079944610596,0.23156726360321,-3.65718936920166,-1.68809127807617,0.254836916923523,-3.64412069320679,-1.6439094543457,0.222359955310822,-3.67812824249268,-1.66997051239014,0.238745510578156,-3.65919351577759,-1.65825271606445,0.00643429160118103,-3.72802305221558,-1.80251312255859,0.0234802663326263,-3.69801139831543,-1.8089017868042,0.0351661145687103,-3.72843837738037,-1.796950340271,0.0159762799739838,-3.75950956344604,-1.79269790649414,0.018789142370224,-3.72799110412598,-1.80205821990967,0.264751315116882,-3.65341711044312,-1.0516881942749,0.21928346157074,-3.57842826843262,-1.07791137695313,0.180513262748718,-3.56380176544189,-0.992094039916992,0.239720702171326,-3.63170623779297,-0.995731353759766,0.223414301872253,-3.61031532287598,-1.02138519287109,0.357445597648621,-3.26402902603149,-1.54335737228394,0.355657458305359,-3.23618268966675,-1.47509670257568,0.352420687675476,-3.29862499237061,-1.51935815811157,0.353940844535828,-3.26451110839844,-1.49995946884155,0.282719969749451,-3.44141292572021,-1.69698715209961,0.191705107688904,-3.48881387710571,-1.76841449737549,0.120282500982285,-3.4433856010437,-1.82605600357056,0.21975839138031,-3.39176797866821, +-1.76047658920288,0.20636922121048,-3.44321346282959,-1.76519155502319,0.0741827487945557,-2.95112085342407,-0.76788854598999,0.111700296401978,-2.86738681793213,-0.807780742645264,0.145971536636353,-2.81688499450684,-0.737108707427979,0.108864068984985,-2.9036340713501,-0.725391387939453,0.103257417678833,-2.88991832733154,-0.752909183502197,0.303502321243286,-2.53373050689697,-1.27172422409058,0.291682958602905,-2.45126533508301,-1.19878196716309,0.310143232345581,-2.59513235092163,-1.26862478256226,0.299500703811646,-2.52190589904785,-1.23698759078979,0.326497435569763,-2.87009429931641,-1.54509925842285,0.258766055107117,-2.96014308929443,-1.6832914352417,0.162043452262878,-2.82992744445801,-1.74555778503418,0.243277907371521,-2.73798513412476,-1.6182165145874,0.254244208335876,-2.85086250305176,-1.65253067016602,0.32751727104187,-2.20966339111328,-0.596746444702148,0.298160791397095,-2.14213180541992,-0.741865634918213,0.322296857833862,-1.92214345932007,-0.878151416778564,0.317234754562378,-1.90145492553711,-0.904677391052246,0.0390723645687103,-4.11363077163696,-1.26543617248535,0.0621698796749115,-4.07281732559204,-1.32199192047119,0.0944593846797943,-4.09966135025024,-1.26286506652832,0.0671866834163666,-4.13983249664307,-1.23856258392334,0.064255565404892,-4.10953521728516,-1.26718902587891,0.143504917621613,-4.05207777023315,-1.22840404510498,0.158581554889679,-4.0060396194458,-1.28137111663818,0.164210200309753,-4.02968072891235,-1.23136901855469,0.156103432178497,-4.05878114700317,-1.20182609558105,0.156789660453796,-4.03894424438477,-1.22763538360596,0.162421524524689,-3.8995795249939,-1.46480369567871,0.157160639762878,-3.83992671966553,-1.56153011322021,0.312438368797302,-3.86341571807861,-1.15097522735596,0.311755537986755,-3.79572010040283,-1.19839096069336,0.335621237754822,-3.79628467559814,-1.12919998168945,0.344335436820984,-3.85881280899048,-1.11115741729736,0.325621485710144,-3.83270740509033,-1.14040946960449,0.326544642448425,-3.72783041000366,-1.0982723236084,0.317771792411804,-3.68167114257813, +-1.14675140380859,0.325749754905701,-3.7052903175354,-1.09090423583984,0.343502402305603,-3.73473596572876,-1.07063293457031,0.328506350517273,-3.71512222290039,-1.09465408325195,0.337058424949646,-3.56780242919922,-1.33881092071533,0.345576167106628,-3.51444005966187,-1.42602872848511,0.0583037137985229,-3.4297571182251,-0.917716503143311,0.0337027311325073,-3.36031436920166,-0.953746795654297,-0.0133410692214966,-3.31793165206909,-0.865266799926758,0.0214966535568237,-3.39410972595215,-0.862802982330322,0.0180519819259644,-3.3836784362793,-0.892363548278809,0.00434577465057373,-3.14777183532715,-0.814369678497314,0.04539954662323,-3.06612014770508,-0.861688613891602,0.051408052444458,-3.04277181625366,-0.803953647613525,0.0324695110321045,-3.09920263290405,-0.786033153533936,0.0295332670211792,-3.08819150924683,-0.808279037475586,0.221364378929138,-2.95786094665527,-1.06704568862915,0.313580393791199,-2.8958306312561,-1.18100023269653,0.320351839065552,-2.46250200271606,-0.636037826538086,0.316766500473022,-2.37626171112061,-0.658759593963623,0.342332601547241,-2.30933046340942,-0.579951286315918,0.351174592971802,-2.39962434768677,-0.58038854598999,0.33123517036438,-2.39177513122559,-0.609236717224121,0.29469895362854,-2.31430339813232,-0.804895401000977,0.27795672416687,-2.22515916824341,-0.974117279052734,0.279807448387146,-3.92582845687866,-1.17733287811279,0.291093707084656,-3.87475728988647,-1.2307014465332,0.301236987113953,-3.8984694480896,-1.17671203613281,0.295921683311462,-3.93022298812866,-1.15009593963623,0.29297149181366,-3.90997123718262,-1.17596435546875,0.286394476890564,-3.75767707824707,-1.4232006072998,0.281655669212341,-3.69122838973999,-1.52328872680664,0.204010367393494,-3.84049129486084,-1.46320724487305,0.202782928943634,-3.74852561950684,-1.58113288879395,0.199919998645782,-3.61440849304199,-1.73435544967651,0.121072143316269,-3.64097785949707,-1.77863264083862,0.0810540616512299,-3.59608030319214,-1.8129506111145,0.160180389881134,-3.56826257705688,-1.77355337142944,0.141443133354187,-3.60577726364136, +-1.77607250213623,0.13989669084549,-3.68191146850586,-1.75362205505371,0.0785268247127533,-3.70158386230469,-1.78319072723389,0.057513564825058,-3.66753911972046,-1.80563163757324,0.0995820462703705,-3.67244005203247,-1.78135013580322,0.176235973834991,-3.72071170806885,-1.70712280273438,0.194237112998962,-3.7231388092041,-1.67183494567871,0.166929543018341,-3.76982450485229,-1.65829277038574,0.181176960468292,-3.74959897994995,-1.66168212890625,0.0277422368526459,-3.79427003860474,-1.7757043838501,0.0176628530025482,-3.83401727676392,-1.75352382659912,0.00634178519248962,-3.79856824874878,-1.77873992919922,0.0163663327693939,-3.79714393615723,-1.77831172943115,0.00605711340904236,-3.86796140670776,-1.71067237854004,0.0292600095272064,-3.85428380966187,-1.71777153015137,0.017634242773056,-3.86346197128296,-1.71313190460205,0.105061382055283,-3.77928924560547,-1.73500919342041,0.131310760974884,-3.77585124969482,-1.69878196716309,0.0924833714962006,-3.79747867584229,-1.72097682952881,0.11210235953331,-3.78392696380615,-1.7131872177124,0.115266680717468,-3.49092769622803,-0.959530830383301,0.120312094688416,-3.44659996032715,-1.01163959503174,0.117625117301941,-3.46676778793335,-0.9581618309021,0.123048663139343,-3.4916410446167,-0.936989784240723,0.114726901054382,-3.47599220275879,-0.959527015686035,0.238251566886902,-3.33140134811401,-1.20391941070557,0.306375861167908,-3.28279685974121,-1.29615163803101,0.284962058067322,-3.47099018096924,-1.27317714691162,0.330951571464539,-3.39333963394165,-1.41824388504028,0.326782584190369,-3.20333623886108,-1.63832950592041,0.240176558494568,-3.2694845199585,-1.74360942840576,0.150070488452911,-3.20098733901978,-1.81493377685547,0.253130316734314,-3.13075685501099,-1.71870708465576,0.247428774833679,-3.20269346237183,-1.73203897476196,0.309468626976013,-3.33699131011963,-1.67288875579834,0.136812508106232,-3.3353705406189,-1.82718706130981,0.23100745677948,-3.33317232131958,-1.75319910049438,0.345084071159363,-3.37665557861328,-1.58576154708862,0.346789240837097,-3.37299203872681, +-1.53654003143311,0.345944285392761,-3.43394041061401,-1.53815746307373,0.346773028373718,-3.40670776367188,-1.53637742996216,0.243447124958038,-3.54107093811035,-1.71918630599976,0.101555675268173,-3.52264547348022,-1.81926870346069,0.176619350910187,-3.5298957824707,-1.77112245559692,0.283123850822449,-3.57714080810547,-1.6590313911438,0.292824625968933,-3.57662534713745,-1.61764526367188,0.279293894767761,-3.62315845489502,-1.62258911132813,0.286226153373718,-3.60304403305054,-1.61925411224365,0.319994807243347,-3.48831415176392,-1.62613773345947,0.332365393638611,-3.4677791595459,-1.56661033630371,0.313186049461365,-3.51635313034058,-1.60523128509521,0.323254942893982,-3.48967695236206,-1.5873498916626,0.253778696060181,-2.65279769897461,-0.695980072021484,0.289315462112427,-2.56918907165527,-0.736124038696289,0.314311742782593,-2.5429539680481,-0.678362846374512,0.298686265945435,-2.6027364730835,-0.664216041564941,0.290871858596802,-2.59103631973267,-0.686964511871338,0.296350717544556,-2.48921632766724,-0.912806510925293,0.291219472885132,-2.43889570236206,-1.0299973487854,0.232469797134399,-2.77109861373901,-0.992691993713379,0.306425809860229,-2.68938302993774,-1.17491674423218,0.0766590237617493,-2.12053251266479,-1.39906120300293,0.186260104179382,-2.23997974395752,-1.34601163864136,0.191465735435486,-2.50604820251465,-1.54586315155029,0.0834177732467651,-2.43763256072998,-1.61372756958008,0.125419497489929,-2.30972003936768,-1.48038959503174,0.295498728752136,-2.66373348236084,-1.48227405548096,0.145848572254181,-2.60895776748657,-1.67438411712646,0.228337168693542,-2.63599014282227,-1.58735799789429,0.336659669876099,-2.74348783493042,-1.35330581665039,0.330179929733276,-2.71437358856201,-1.30003118515015,0.343846082687378,-2.81543588638306,-1.30015230178833,0.337749242782593,-2.76427173614502,-1.29673433303833,0.33389413356781,-3.07204580307007,-1.60525226593018,0.160651028156281,-3.03847503662109,-1.793212890625,0.257509112358093,-3.05172061920166,-1.7039155960083,0.366494536399841,-3.12744235992432, +-1.49376106262207,0.364821791648865,-3.11271810531616,-1.44071960449219,0.362467646598816,-3.19329595565796,-1.42827415466309,0.364569067955017,-3.15528726577759,-1.43198490142822,0.365087389945984,-2.99858427047729,-1.44600439071655,0.357297778129578,-2.93427848815918,-1.36982870101929,0.362237811088562,-3.03676748275757,-1.42356109619141,0.360496401786804,-2.98903942108154,-1.40099096298218,0.335138082504272,-2.07050609588623,-0.549173831939697,0.311234712600708,-1.99600744247437,-0.716567039489746,0.314375638961792,-1.93832015991211,-0.835440158843994,0.305972337722778,-2.02437782287598,-0.976710796356201,0.288835287094116,-2.05258321762085,-0.913002014160156,0.286342859268188,-1.99529886245728,-1.07006597518921,0.302609205245972,-1.92484331130981,-1.00423192977905,0.288848161697388,-2.07486963272095,-1.06721830368042,0.294854879379272,-1.99802446365356,-1.03440284729004,0.284194231033325,-2.23270082473755,-1.10992860794067,0.285935640335083,-2.34598350524902,-1.12570381164551,0.29167914390564,-2.1930685043335,-1.03669404983521,0.00526413321495056,-4.13815307617188,-1.2672061920166,0.011981338262558,-4.09851980209351,-1.32179737091064,0.0194614827632904,-4.12647199630737,-1.26602649688721,0.0130861699581146,-4.1559853553772,-1.23777484893799,0.01241335272789,-4.13414907455444,-1.26682186126709,0.0707572400569916,-3.83632802963257,-1.68125438690186,0.016737312078476,-3.90650177001953,-1.63671016693115,0.0154241025447845,-3.91636228561401,-1.59786319732666,0.121348738670349,-4.03838729858398,-1.30133628845215,0.120166122913361,-3.9244499206543,-1.48868560791016,0.155674278736115,-3.825523853302,-1.59524917602539,0.113112300634384,-3.80203008651733,-1.66905403137207,0.113358378410339,-3.82528781890869,-1.61989212036133,0.169153094291687,-3.98588228225708,-1.28175926208496,0.176023840904236,-3.88417339324951,-1.45907783508301,0.184581100940704,-3.80717754364014,-1.57780075073242,0.181578516960144,-3.82525157928467,-1.54803657531738,0.205900073051453,-3.72454357147217,-1.62337589263916,0.25746476650238,-3.91198587417603, +-1.25205898284912,0.252096056938171,-3.78788614273071,-1.44839382171631,0.241879820823669,-3.67508459091187,-1.6012601852417,0.242465853691101,-3.69721794128418,-1.56120586395264,0.280243754386902,-3.67209339141846,-1.55650997161865,0.298458933830261,-3.85247802734375,-1.2208194732666,0.293205142021179,-3.74050712585449,-1.41349411010742,0.29745614528656,-3.57770872116089,-1.5566577911377,0.289720892906189,-3.65478324890137,-1.54795551300049,0.289623141288757,-3.67593908309937,-1.51519870758057,0.319167017936707,-3.71854782104492,-1.1685037612915,0.325477957725525,-3.59924602508545,-1.3651704788208,0.347229838371277,-3.49955463409424,-1.45396327972412,0.32571017742157,-3.51168918609619,-1.51770877838135,0.32415759563446,-3.52706527709961,-1.47858428955078,0.294564604759216,-3.65623235702515,-1.12819671630859,0.325142741203308,-3.55013418197632,-1.31536865234375,0.346769213676453,-3.4674916267395,-1.45089626312256,0.342403292655945,-3.48796987533569,-1.41783142089844,0.341603636741638,-3.37341928482056,-1.46702671051025,0.140613913536072,-3.48625612258911,-1.02925682067871,0.242123484611511,-3.37463235855103,-1.22476863861084,0.340808749198914,-3.28769540786743,-1.42260265350342,0.323846697807312,-3.30125761032104,-1.37232685089111,0.324334502220154,-3.27163982391357,-1.32611989974976,0.108187079429626,-3.43264722824097,-0.994922637939453,0.23269784450531,-3.31073188781738,-1.19242238998413,0.350332140922546,-3.10178565979004,-1.37394857406616,0.335508704185486,-3.21230697631836,-1.32461309432983,0.314669013023376,-3.23541641235352,-1.29342603683472,0.00361287593841553,-3.20713901519775,-0.896759510040283,0.186390280723572,-3.08801651000977,-1.10322284698486,0.333712816238403,-2.88333463668823,-1.21724414825439,0.347807765007019,-2.9901556968689,-1.32357358932495,0.318974375724792,-3.004807472229,-1.26962184906006,0.0722510814666748,-2.98206901550293,-0.840194702148438,0.2275470495224,-2.88142013549805,-1.03790903091431,0.327609300613403,-2.79008817672729,-1.20132493972778,0.312586069107056,-2.81015110015869,-1.16112565994263, +0.314786195755005,-2.66959238052368,-1.2390284538269,0.207318544387817,-2.70552015304565,-0.76821756362915,0.266234636306763,-2.61647987365723,-0.944240570068359,0.296020269393921,-2.53217029571533,-1.18565988540649,0.286588430404663,-2.54763889312744,-1.12028360366821,0.294217824935913,-2.426185131073,-1.07183313369751,0.0247734487056732,-4.08217144012451,-1.319260597229,0.0268743932247162,-3.96757888793945,-1.49399375915527,0.342536211013794,-2.15775585174561,-0.519078254699707,0.362976789474487,-2.05113744735718,-0.480205059051514,0.368788480758667,-2.11440563201904,-0.465596675872803,0.351139783859253,-2.09747409820557,-0.495531558990479,0.16978394985199,-4.03622007369995,-1.20096874237061,0.168717205524445,-4.01710510253906,-1.22823429107666,0.26527202129364,-3.98161506652832,-1.16556453704834,0.260379672050476,-3.95317363739014,-1.19462966918945,0.123331367969513,-4.10531139373779,-1.2164192199707,0.121725916862488,-4.07637929916382,-1.24507617950439,0.315110564231873,-3.90262889862061,-1.13933086395264,0.305799841880798,-3.88422203063965,-1.16569519042969,0.354479193687439,-3.78553771972656,-1.08423042297363,0.333404898643494,-3.7578296661377,-1.11257648468018,0.31332004070282,-3.7009105682373,-1.05217361450195,0.301003813743591,-3.6851019859314,-1.07563877105713,0.159438967704773,-3.54619169235229,-0.943164825439453,0.141667723655701,-3.52197122573853,-0.97089958190918,0.0948513746261597,-3.46163129806519,-0.91890287399292,0.0954216718673706,-3.45427894592285,-0.941962242126465,-0.0162168741226196,-3.24625730514526,-0.807114601135254,-0.0176888704299927,-3.23298072814941,-0.835958480834961,0.0652506351470947,-3.00974035263062,-0.764261245727539,0.0611608028411865,-2.99977684020996,-0.787660121917725,0.206889390945435,-2.74806356430054,-0.688263893127441,0.201355695724487,-2.73246097564697,-0.715342998504639,0.363101720809937,-2.24119663238525,-0.520928382873535,0.343354463577271,-2.22998046875,-0.548673629760742,0.00528272986412048,-4.1711483001709,-1.22943687438965,0.0221961438655853,-4.17564344406128,-1.23122692108154, +0.0141366422176361,-4.18580532073975,-1.23356533050537,0.0137294232845306,-4.17279529571533,-1.23017597198486,0.101307243108749,-4.1595983505249,-1.22538185119629,0.0764201581478119,-4.19912528991699,-1.23461723327637,0.0448430478572845,-4.1767897605896,-1.23136425018311,0.0708630979061127,-4.17268085479736,-1.23116970062256,0.148304343223572,-4.09985113143921,-1.19385051727295,0.135880768299103,-4.15248107910156,-1.21208572387695,0.128154635429382,-4.13213491439819,-1.20855236053467,0.164454758167267,-4.05424642562866,-1.19780826568604,0.162011504173279,-4.08196640014648,-1.19766712188721,0.158369839191437,-4.07234573364258,-1.19451522827148,0.188725769519806,-4.05052471160889,-1.18178749084473,0.177178263664246,-4.06045246124268,-1.1915979385376,0.173026919364929,-4.05023622512817,-1.1910285949707,0.248772978782654,-4.03094863891602,-1.17105388641357,0.226630568504333,-4.06360244750977,-1.17716312408447,0.21661365032196,-4.04539823532104,-1.17771339416504,0.295551180839539,-3.97116041183472,-1.13986778259277,0.289459586143494,-4.0193247795105,-1.15493106842041,0.276167273521423,-4.00334596633911,-1.15408229827881,0.311151385307312,-3.92340755462646,-1.14354419708252,0.313981890678406,-3.95058917999268,-1.14325046539307,0.303894877433777,-3.94292974472046,-1.14148616790771,0.347853541374207,-3.90913200378418,-1.11272430419922,0.340000033378601,-3.9289174079895,-1.13291549682617,0.327094912528992,-3.91746616363525,-1.13055419921875,0.380845904350281,-3.84636402130127,-1.08772850036621,0.392487406730652,-3.90251111984253,-1.10227680206299,0.367886900901794,-3.88276290893555,-1.09994697570801,0.372060179710388,-3.77288913726807,-1.05984687805176,0.409333109855652,-3.82401847839355,-1.07159805297852,0.381386637687683,-3.80769395828247,-1.07168579101563,0.346086382865906,-3.72654294967651,-1.06157302856445,0.375681281089783,-3.75367546081543,-1.06028366088867,0.359837889671326,-3.74678373336792,-1.06076526641846,0.30397641658783,-3.68687009811401,-1.02651119232178,0.347591280937195,-3.71679830551147,-1.05439376831055, +0.329158663749695,-3.71005439758301,-1.0490608215332,0.220188975334167,-3.60056686401367,-0.967424392700195,0.295420527458191,-3.65960073471069,-1.00887298583984,0.263960242271423,-3.64664745330811,-0.997110366821289,0.15465247631073,-3.5267539024353,-0.931112289428711,0.213445067405701,-3.57102537155151,-0.95543384552002,0.183680891990662,-3.56048440933228,-0.943894386291504,0.124825835227966,-3.47797679901123,-0.935132503509521,0.15470016002655,-3.50300884246826,-0.939348220825195,0.137219786643982,-3.49898386001587,-0.934150695800781,0.0785912275314331,-3.44621706008911,-0.888515472412109,0.124136328697205,-3.46915483474731,-0.920716762542725,0.106110453605652,-3.46582078933716,-0.915865421295166,0.00840079784393311,-3.3370304107666,-0.841378688812256,0.0758355855941772,-3.40945863723755,-0.87848949432373,0.0415953397750854,-3.40183925628662,-0.865811824798584,0.0196988582611084,-3.16989898681641,-0.785513877868652,0.0303046703338623,-3.26068592071533,-0.820714950561523,-0.00049889087677002,-3.25449895858765,-0.809296607971191,0.0644004344940186,-3.06103420257568,-0.781802654266357,0.0622541904449463,-3.11429262161255,-0.788839340209961,0.044201135635376,-3.10731410980225,-0.783483982086182,0.0917503833770752,-2.98038005828857,-0.734557151794434,0.0920875072479248,-3.03954982757568,-0.764595508575439,0.0758168697357178,-3.02391958236694,-0.759601593017578,0.166395425796509,-2.83868646621704,-0.712233066558838,0.14546275138855,-2.92856359481812,-0.732059955596924,0.122771501541138,-2.91622400283813,-0.72380256652832,0.27661919593811,-2.67524480819702,-0.660465717315674,0.244850397109985,-2.75734519958496,-0.689769744873047,0.222194910049438,-2.75456237792969,-0.684818744659424,0.336684465408325,-2.55817842483521,-0.654256343841553,0.33143162727356,-2.61487722396851,-0.658504009246826,0.313067674636841,-2.61000967025757,-0.657413959503174,0.364476442337036,-2.4755072593689,-0.598500728607178,0.386494398117065,-2.31875419616699,-0.551861763000488,0.407983541488647,-2.40336561203003,-0.579893112182617,0.377637147903442, +-2.40219926834106,-0.575980663299561,0.388116121292114,-2.17616033554077,-0.480124950408936,0.417577505111694,-2.24123954772949,-0.518940925598145,0.388821840286255,-2.24299621582031,-0.516145706176758,0.391576528549194,-2.07618093490601,-0.443187713623047,0.410908460617065,-2.12055683135986,-0.455437183380127,0.389112710952759,-2.12028121948242,-0.455532073974609,0.05287966132164,-4.21954250335693,-1.24229717254639,0.0356896817684174,-4.22167682647705,-1.25868701934814,0.023554652929306,-4.20975112915039,-1.24148178100586,0.0326302871108055,-4.20251178741455,-1.23661994934082,0.0345266759395599,-4.2184886932373,-1.24312973022461,0.120173752307892,-4.19106149673462,-1.23085594177246,0.0849884450435638,-4.21028757095337,-1.23864650726318,0.161877453327179,-4.12691116333008,-1.2061824798584,0.146321594715118,-4.16197299957275,-1.21769618988037,0.168174624443054,-4.06546401977539,-1.20203495025635,0.16551285982132,-4.08987092971802,-1.2032642364502,0.203770935535431,-4.07862091064453,-1.18821430206299,0.181082129478455,-4.06825017929077,-1.19567012786865,0.271273016929626,-4.06138372421265,-1.17699813842773,0.236064791679382,-4.07689523696899,-1.1837272644043,0.321148276329041,-3.99241495132446,-1.15039920806885,0.301746249198914,-4.03040790557861,-1.16288471221924,0.327390551567078,-3.93337917327881,-1.14818572998047,0.32335364818573,-3.95588684082031,-1.14859104156494,0.38593327999115,-3.94036436080933,-1.12724590301514,0.352162718772888,-3.93726587295532,-1.13983058929443,0.432095408439636,-3.87647247314453,-1.09853744506836,0.414631724357605,-3.91593503952026,-1.11380290985107,0.41838538646698,-3.79333734512329,-1.06682395935059,0.433545470237732,-3.83412551879883,-1.08061218261719,0.366886496543884,-3.73263549804688,-1.06409168243408,0.389543414115906,-3.75751876831055,-1.06439590454102,0.367565989494324,-3.71291255950928,-1.04044723510742,0.368314623832703,-3.72518014907837,-1.05646514892578,0.285851836204529,-3.6268048286438,-0.985018730163574,0.333046793937683,-3.67494297027588,-1.01419067382813,0.213086009025574, +-3.5451192855835,-0.944216728210449,0.248308062553406,-3.58395385742188,-0.960332870483398,0.14714515209198,-3.48163604736328,-0.93795108795166,0.174001097679138,-3.50838804244995,-0.941057205200195,0.14200758934021,-3.46158123016357,-0.898743152618408,0.144090056419373,-3.47388076782227,-0.921369552612305,0.0883901119232178,-3.35515451431274,-0.852730274200439,0.118266820907593,-3.4204888343811,-0.877690315246582,0.0786001682281494,-3.18184947967529,-0.793053150177002,0.0725948810577393,-3.26900815963745,-0.818835258483887,0.0915544033050537,-3.08218288421631,-0.789261341094971,0.0838816165924072,-3.12184047698975,-0.790178775787354,0.143316984176636,-3.01431655883789,-0.746900081634521,0.112746477127075,-3.05395698547363,-0.770012378692627,0.214070081710815,-2.85320520401001,-0.718152523040771,0.174503564834595,-2.94216060638428,-0.73376989364624,0.32547402381897,-2.68079042434692,-0.661679744720459,0.271830320358276,-2.76198291778564,-0.687770366668701,0.369338274002075,-2.57097578048706,-0.657501697540283,0.351331472396851,-2.61931371688843,-0.659463882446289,0.427173852920532,-2.48173379898071,-0.598940849304199,0.442014932632446,-2.32192993164063,-0.551641941070557,0.439355134963989,-2.40698194503784,-0.576112270355225,0.447049856185913,-2.1728515625,-0.477795124053955,0.446831464767456,-2.24200630187988,-0.514277935028076,0.416820287704468,-2.08133029937744,-0.445928573608398,0.432993173599243,-2.12080717086792,-0.455287933349609,0.0456593930721283,-3.86674880981445,-1.78904914855957,0.0440934598445892,-3.90344142913818,-1.71098613739014,0.0393427312374115,-3.87785387039185,-1.66380977630615,0.323403596878052,-1.82934284210205,-0.893522262573242,0.280132055282593,-2.11186742782593,-1.1117730140686,0.285144090652466,-2.15641021728516,-1.09310340881348,0.275553941726685,-2.3581395149231,-1.21050786972046,0.287684202194214,-2.39551687240601,-1.15755367279053,0.31978440284729,-2.6363353729248,-1.31137466430664,0.320806741714478,-2.65865421295166,-1.2901759147644,0.353881239891052,-2.87467050552368,-1.39992952346802, +0.350653529167175,-2.87432956695557,-1.33036184310913,0.367001891136169,-3.05539178848267,-1.4686279296875,0.363848567008972,-3.07561731338501,-1.43735027313232,0.362708449363708,-3.19976711273193,-1.51722717285156,0.359417319297791,-3.21620035171509,-1.44699478149414,0.352873206138611,-3.31216669082642,-1.56239223480225,0.349341750144958,-3.33587312698364,-1.53121757507324,0.334044337272644,-3.43634986877441,-1.6054949760437,0.340518832206726,-3.45172262191772,-1.5492205619812,0.306057810783386,-3.52684831619263,-1.6416597366333,0.302441954612732,-3.54649782180786,-1.61415767669678,0.257757544517517,-3.62046098709106,-1.67363452911377,0.268568873405457,-3.63446474075317,-1.63143062591553,0.209922194480896,-3.68428754806519,-1.69837284088135,0.207742512226105,-3.69942903518677,-1.67454719543457,0.140490829944611,-3.75227689743042,-1.71947860717773,0.149991393089294,-3.77489757537842,-1.67558670043945,0.0761540830135345,-3.80125188827515,-1.74304008483887,0.0545442998409271,-3.83208322525024,-1.72439289093018,0.0725143849849701,-3.81498289108276,-1.72440910339355,0.0423739850521088,-3.91865158081055,-1.6789608001709,0.0381658971309662,-3.94975090026855,-1.64017772674561,0.035022109746933,-3.88467836380005,-1.6146068572998,0.252860307693481,-2.04732894897461,-1.1445460319519,0.262359857559204,-1.9165301322937,-1.10043334960938,0.271055459976196,-2.0186915397644,-1.10847520828247,0.279950857162476,-2.46331071853638,-1.31459331512451,0.314931154251099,-2.63781356811523,-1.37750768661499,0.307535409927368,-2.57647371292114,-1.32499217987061,0.361212611198425,-2.9619779586792,-1.48854970932007,0.364084124565125,-3.05290460586548,-1.52132701873779,0.365761637687683,-3.01970529556274,-1.48750400543213,0.355067133903503,-3.24390268325806,-1.58228921890259,0.347229838371277,-3.31241369247437,-1.60609006881714,0.354059100151062,-3.28151416778564,-1.57896995544434,0.310646414756775,-3.47198295593262,-1.65646505355835,0.290282130241394,-3.5264368057251,-1.67477130889893,0.307373404502869,-3.50211906433105,-1.65486240386963,0.220301449298859, +-3.64197015762329,-1.70950603485107,0.188183605670929,-3.67940139770508,-1.72301197052002,0.212712645530701,-3.66482496261597,-1.70879459381104,0.0978988111019135,-3.7606258392334,-1.74998378753662,0.0600307881832123,-3.78773546218872,-1.76094913482666,0.0844095647335052,-3.78212308883667,-1.75017166137695,0.248155355453491,-1.7822003364563,-1.10455560684204,0.224035501480103,-2.11821794509888,-1.20796537399292,0.24094557762146,-2.2813835144043,-1.26465797424316,0.340466856956482,-2.78292989730835,-1.43495225906372,0.32693886756897,-2.70506954193115,-1.40973949432373,0.352570414543152,-2.87585783004761,-1.46618175506592,0.36047637462616,-3.14997625350952,-1.55885887145996,0.362494349479675,-3.09876775741577,-1.54325008392334,0.357656836509705,-3.19916963577271,-1.57374286651611,0.33094584941864,-3.39569807052612,-1.63713502883911,0.339807391166687,-3.35250425338745,-1.62414073944092,0.319910883903503,-3.43600606918335,-1.64923000335693,0.256422877311707,-3.58820390701294,-1.69558668136597,0.27379834651947,-3.55668640136719,-1.68707466125488,0.236740469932556,-3.61654186248779,-1.7040696144104,0.14016181230545,-3.71883201599121,-1.74088764190674,0.163891136646271,-3.6981029510498,-1.73334407806396,0.0879367291927338,-3.73327398300171,-1.76520252227783,0.117335170507431,-3.73957395553589,-1.74665641784668,0.0459564626216888,-3.75926351547241,-1.77951240539551,0.05941042304039,-3.72988271713257,-1.78328990936279,0.00651869177818298,-3.66429710388184,-1.81711006164551,0.0339692533016205,-3.62907457351685,-1.82230663299561,0.0286458432674408,-3.66497564315796,-1.81565093994141,0.00654253363609314,-3.58901643753052,-1.83165168762207,0.0439723432064056,-3.55280685424805,-1.83500099182129,0.0391000211238861,-3.59064483642578,-1.82889842987061,0.00656494498252869,-3.51764249801636,-1.84400510787964,0.0527919232845306,-3.48400402069092,-1.84563541412354,0.0484226644039154,-3.51877164840698,-1.84026956558228,0.00659546256065369,-3.4445161819458,-1.85643863677979,0.0616610944271088,-3.39634466171265,-1.857008934021,0.0573142468929291, +-3.44406843185425,-1.85208892822266,0.00653538107872009,-3.33946990966797,-1.86208152770996,0.068990558385849,-3.27220630645752,-1.85451745986938,0.0654791295528412,-3.33800649642944,-1.85765886306763,0.00640520453453064,-3.20315265655518,-1.85209989547729,0.075859397649765,-3.12347602844238,-1.83892965316772,0.0725286900997162,-3.20200395584106,-1.84798431396484,0.00611719489097595,-3.03199005126953,-1.83220481872559,0.0803650319576263,-2.93092727661133,-1.81083869934082,0.0786918103694916,-3.03290510177612,-1.8281888961792,0.0767095983028412,-2.69675922393799,-1.7424144744873,0.00440630316734314,-2.54413938522339,-1.68607187271118,0.0698178708553314,-2.56807518005371,-1.69339609146118,-0.0749141275882721,-3.91385507583618,-1.6555118560791,-0.0775071680545807,-4.03900671005249,-1.52676868438721,-0.34656298160553,-3.64422082901001,-1.53640556335449,-0.378896355628967,-3.75334310531616,-1.42630100250244,-0.392694234848022,-3.16090488433838,-1.33493137359619,-0.29943060874939,-3.27343559265137,-1.17430210113525,-0.198267638683319,-4.07036304473877,-1.23870658874512,-0.231750130653381,-4.03632640838623,-1.29497718811035,-0.268903374671936,-4.05217695236206,-1.22875785827637,-0.229529976844788,-4.08032321929932,-1.20208358764648,-0.232137322425842,-4.06888628005981,-1.23585987091064,-0.274267792701721,-3.68615007400513,-1.64962959289551,-0.266656517982483,-3.67917728424072,-1.72244644165039,-0.122835755348206,-3.81096363067627,-1.85634708404541,-0.11504328250885,-3.81369781494141,-1.77290439605713,-0.387703537940979,-3.71537590026855,-1.08324527740479,-0.356471657752991,-3.65235662460327,-1.11698818206787,-0.309341073036194,-3.62741231918335,-1.02974414825439,-0.348738312721252,-3.6842246055603,-1.0265007019043,-0.358194947242737,-3.67769241333008,-1.05930042266846,-0.394253373146057,-3.28152322769165,-1.50026607513428,-0.403205513954163,-3.26319599151611,-1.58195209503174,-0.383838295936584,-3.4931640625,-1.74177265167236,-0.365163445472717,-3.5011100769043,-1.6550178527832,-0.170667886734009,-3.02410125732422,-0.792769908905029, +-0.224611043930054,-2.92640829086304,-0.82904577255249,-0.238720655441284,-2.84998369216919,-0.749272346496582,-0.183007478713989,-2.95185947418213,-0.742076873779297,-0.202250719070435,-2.94664287567139,-0.773061275482178,-0.375178098678589,-2.55332469940186,-1.23021697998047,-0.398803472518921,-2.59173917770386,-1.31318950653076,-0.455096006393433,-2.97096061706543,-1.54816913604736,-0.430712461471558,-2.9936146736145,-1.46522808074951,-0.463413953781128,-2.20290422439575,-0.59263277053833,-0.442476987838745,-2.1365761756897,-0.741021156311035,-0.404612302780151,-1.91269159317017,-0.931690692901611,-0.400029897689819,-1.93115472793579,-0.885959148406982,-0.39292311668396,-2.18231248855591,-1.16013526916504,-0.427363157272339,-2.15624713897705,-1.24126768112183,-0.0460411757230759,-4.20867776870728,-1.29058837890625,-0.0820075571537018,-4.1649112701416,-1.34304428100586,-0.12281197309494,-4.17383289337158,-1.27643871307373,-0.0812470018863678,-4.20837306976318,-1.25264644622803,-0.0832912027835846,-4.19579219818115,-1.28522872924805,-0.160989940166473,-4.11535739898682,-1.25585174560547,-0.163298726081848,-4.04959774017334,-1.30099296569824,-0.160297036170959,-4.0545768737793,-1.24069499969482,-0.156777501106262,-4.09069204330444,-1.21779155731201,-0.160464942455292,-4.07899379730225,-1.24684524536133,-0.158381581306458,-3.87195920944214,-1.5751953125,-0.165886044502258,-3.94090414047241,-1.48073768615723,-0.385294556617737,-3.93468570709229,-1.184006690979,-0.408868432044983,-3.87882375717163,-1.23199558258057,-0.435855507850647,-3.86652946472168,-1.15440654754639,-0.414847016334534,-3.91929197311401,-1.13664245605469,-0.417033791542053,-3.90920829772949,-1.17208576202393,-0.417200684547424,-3.77801179885864,-1.1164608001709,-0.377878785133362,-3.71387672424316,-1.15855693817139,-0.36322557926178,-3.72243738174438,-1.09798908233643,-0.384479165077209,-3.75507211685181,-1.0778751373291,-0.384606957435608,-3.74328851699829,-1.10489749908447,-0.375201821327209,-3.53099012374878,-1.43267726898193,-0.378068566322327, +-3.59352922439575,-1.34792900085449,-0.168299913406372,-3.46157360076904,-0.936940670013428,-0.17525839805603,-3.39765739440918,-0.975269317626953,-0.13398814201355,-3.35596990585327,-0.886270999908447,-0.135901212692261,-3.42894792556763,-0.882421016693115,-0.156545877456665,-3.42228412628174,-0.914599895477295,-0.113479852676392,-3.17424964904785,-0.828229427337646,-0.133370637893677,-3.0988941192627,-0.875561237335205,-0.102572679519653,-3.08879327774048,-0.81918478012085,-0.0863106250762939,-3.12695550918579,-0.796791553497314,-0.103977918624878,-3.12020874023438,-0.821314811706543,-0.390618085861206,-2.92662811279297,-1.19204521179199,-0.315405607223511,-2.99329423904419,-1.08087778091431,-0.444884061813354,-2.47382020950317,-0.636841773986816,-0.456940412521362,-2.38133382797241,-0.657463550567627,-0.460387945175171,-2.31280565261841,-0.578988552093506,-0.449926137924194,-2.40772581100464,-0.581051349639893,-0.458378553390503,-2.399094581604,-0.608981609344482,-0.393713712692261,-2.24852323532104,-0.98786449432373,-0.436416387557983,-2.31976509094238,-0.805122852325439,-0.320970177650452,-3.97757053375244,-1.2014856338501,-0.320026993751526,-3.9094090461731,-1.24724674224854,-0.321902871131897,-3.92076826095581,-1.18720626831055,-0.31638491153717,-3.95420408248901,-1.16325855255127,-0.320376038551331,-3.94107341766357,-1.19207191467285,-0.302122712135315,-3.7146954536438,-1.5267333984375,-0.311891198158264,-3.790207862854,-1.43478012084961,-0.234363198280334,-3.7827320098877,-1.60521030426025,-0.232316613197327,-3.90478134155273,-1.48638916015625,-0.285890221595764,-3.67664623260498,-1.80752944946289,-0.218859374523163,-3.7414436340332,-1.83108329772949,-0.197179019451141,-3.75478553771973,-1.74143886566162,-0.189783692359924,-3.80651378631592,-1.63033103942871,-0.033001571893692,-3.86674499511719,-1.78906917572021,-0.0343262255191803,-3.85707664489746,-1.87351036071777,-0.00646081566810608,-3.91170501708984,-1.6873140335083,-0.00594726204872131,-3.92844820022583,-1.64494037628174,-0.114872127771378,-3.83421850204468, +-1.71031761169434,-0.228202342987061,-3.53995847702026,-0.982702255249023,-0.186814904212952,-3.47736072540283,-1.02172136306763,-0.14885151386261,-3.47627592086792,-0.962893009185791,-0.173709988594055,-3.51055431365967,-0.948304176330566,-0.180104374885559,-3.50226163864136,-0.971042633056641,-0.334690690040588,-3.29745817184448,-1.30152750015259,-0.280639290809631,-3.35837078094482,-1.21368932723999,-0.389220833778381,-3.41852617263794,-1.46320486068726,-0.378242135047913,-3.53558349609375,-1.30471897125244,-0.422458291053772,-3.25852203369141,-1.65976190567017,-0.401642441749573,-3.38234996795654,-1.70135641098022,-0.382204651832581,-3.39527368545532,-1.61068630218506,-0.373606324195862,-3.45032739639282,-1.49878740310669,-0.344913125038147,-3.60015773773193,-1.78024339675903,-0.321337342262268,-3.60415458679199,-1.68893766403198,-0.310316681861877,-3.64846181869507,-1.58569049835205,-0.362016320228577,-3.52441120147705,-1.56301116943359,-0.345951795578003,-2.66631126403809,-0.698780536651611,-0.366881132125854,-2.58962106704712,-0.737715244293213,-0.374983549118042,-2.56783628463745,-0.684791088104248,-0.353967428207397,-2.61960697174072,-0.668139934539795,-0.362472295761108,-2.61024475097656,-0.691262245178223,-0.359998464584351,-2.46820163726807,-1.01394462585449,-0.377216100692749,-2.51715135574341,-0.900125980377197,-0.407869100570679,-2.74595403671265,-1.20831394195557,-0.340952634811401,-2.83426332473755,-1.01604557037354,-0.432864904403687,-2.58168411254883,-1.39827489852905,-0.452464818954468,-2.79767322540283,-1.48155450820923,-0.424933195114136,-2.82229089736938,-1.3928394317627,-0.407888174057007,-2.84432983398438,-1.26763820648193,-0.444807648658752,-3.12677383422852,-1.60695695877075,-0.41915762424469,-3.14208602905273,-1.51397800445557,-0.38541853427887,-3.19864845275879,-1.38387441635132,-0.421262502670288,-2.9991283416748,-1.36862897872925,-0.440890073776245,-2.06774854660034,-0.550200939178467,-0.425489187240601,-1.9949893951416,-0.720698833465576,-0.408687353134155,-1.94867038726807,-0.845235824584961, +-0.405259847640991,-2.06295394897461,-0.923774719238281,-0.386028051376343,-2.04075813293457,-0.985570907592773,-0.419280767440796,-1.87174940109253,-1.04588747024536,-0.448836088180542,-1.84077548980713,-1.13166236877441,-0.402225255966187,-2.00093555450439,-1.09608221054077,-0.432968854904175,-1.972412109375,-1.17638683319092,-0.389918088912964,-2.02938508987427,-1.01825332641602,-0.377987623214722,-2.2100772857666,-1.08071374893188,-0.373689413070679,-2.22160482406616,-1.04794549942017,-0.0032135546207428,-4.14550113677979,-1.33696556091309,-0.0128609240055084,-4.19786262512207,-1.28769969940186,-0.00320449471473694,-4.19675397872925,-1.25072288513184,-0.00318256020545959,-4.18124485015869,-1.28173160552979,-0.0696388781070709,-3.84513807296753,-1.78435611724854,-0.0726334154605865,-3.84113311767578,-1.86719131469727,-0.0677920877933502,-3.87048053741455,-1.72346782684326,-0.067608505487442,-3.88080978393555,-1.69834899902344,-0.00382056832313538,-3.9548282623291,-1.6123104095459,-0.00315013527870178,-4.02387285232544,-1.5098180770874,-0.158206641674042,-3.78591823577881,-1.7541446685791,-0.174935460090637,-3.77528762817383,-1.84343338012695,-0.149538636207581,-4.11555433273315,-1.32433795928955,-0.14406031370163,-3.9919056892395,-1.51294040679932,-0.153989970684052,-3.8303689956665,-1.64718532562256,-0.15328323841095,-3.85063409805298,-1.60490798950195,-0.130930125713348,-3.87656879425049,-1.64361572265625,-0.116495311260223,-3.84312725067139,-1.68493843078613,-0.174934506416321,-4.03047609329224,-1.29388332366943,-0.181089103221893,-3.92215824127197,-1.47249889373779,-0.233225524425507,-3.7163348197937,-1.7363452911377,-0.253346085548401,-3.70936679840088,-1.81938934326172,-0.18613064289093,-3.85450601577759,-1.55970287322998,-0.187147259712219,-3.83023500442505,-1.58652782440186,-0.234955489635468,-3.7342414855957,-1.67037105560303,-0.23347532749176,-3.74413537979126,-1.64221286773682,-0.295294404029846,-3.64471292495728,-1.70346736907959,-0.317004799842834,-3.6431303024292,-1.79556369781494,-0.300526261329651, +-3.98352384567261,-1.27495861053467,-0.292056679725647,-3.84809350967407,-1.47129249572754,-0.282440781593323,-3.72823619842529,-1.58441925048828,-0.275887131690979,-3.69183301925659,-1.61910343170166,-0.294334053993225,-3.67333555221558,-1.59631252288818,-0.296260476112366,-3.68929004669189,-1.55488872528076,-0.344372391700745,-3.90030288696289,-1.24270915985107,-0.329991936683655,-3.78481960296631,-1.42937469482422,-0.346199631690979,-3.55456161499023,-1.67593050003052,-0.368133187294006,-3.5474271774292,-1.76136493682861,-0.337210297584534,-3.59000873565674,-1.59796476364136,-0.334004998207092,-3.60578870773315,-1.56727600097656,-0.313987374305725,-3.70223665237427,-1.51993083953857,-0.307742714881897,-3.67141151428223,-1.54615306854248,-0.375830292701721,-3.44951963424683,-1.62985754013062,-0.394165635108948,-3.43911266326904,-1.72207117080688,-0.425674080848694,-3.78735637664795,-1.19284057617188,-0.399583458900452,-3.65832471847534,-1.38691902160645,-0.371885895729065,-3.48878526687622,-1.50625514984131,-0.371196389198303,-3.51111841201782,-1.45815324783325,-0.37502920627594,-3.56528759002686,-1.49539089202881,-0.362948060035706,-3.53632116317749,-1.52700042724609,-0.372230172157288,-3.69754028320313,-1.14689254760742,-0.378334641456604,-3.58565807342529,-1.32877826690674,-0.39194929599762,-3.32799100875854,-1.60714530944824,-0.410028100013733,-3.32014656066895,-1.68244314193726,-0.375095963478088,-3.50780153274536,-1.42556190490723,-0.370211243629456,-3.47860288619995,-1.45485591888428,-0.385199189186096,-3.36299133300781,-1.53938293457031,-0.382088303565979,-3.38097906112671,-1.507972240448,-0.41110098361969,-3.20689582824707,-1.53631162643433,-0.43510115146637,-3.19743251800537,-1.63328552246094,-0.270474076271057,-3.55377101898193,-1.0603609085083,-0.330505967140198,-3.43305730819702,-1.2531476020813,-0.387406945228577,-3.32110834121704,-1.41613149642944,-0.388206124305725,-3.29230737686157,-1.46289205551147,-0.376994729042053,-3.25351333618164,-1.38902807235718,-0.346733689308167,-3.27985382080078,-1.32860660552979, +-0.167214155197144,-3.4490852355957,-1.00484037399292,-0.275691628456116,-3.3289532661438,-1.20012140274048,-0.426410436630249,-3.07043123245239,-1.49551916122437,-0.450434446334839,-3.04771137237549,-1.57725715637207,-0.410594701766968,-3.10751914978027,-1.41556739807129,-0.39976954460144,-3.12433242797852,-1.38221597671509,-0.343171715736389,-3.25338554382324,-1.30058145523071,-0.357370972633362,-3.22773456573486,-1.33045148849487,-0.42999529838562,-2.91013622283936,-1.42641305923462,-0.456897497177124,-2.88860034942627,-1.5166220664978,-0.148727178573608,-3.23669242858887,-0.914106845855713,-0.316611051559448,-3.11643934249878,-1.11708402633667,-0.413465261459351,-2.9098539352417,-1.28594350814819,-0.398566961288452,-2.91063022613525,-1.22728109359741,-0.410048246383667,-3.02477121353149,-1.27809762954712,-0.413955450057983,-3.00087690353394,-1.32757663726807,-0.15621018409729,-3.04895877838135,-0.862953186035156,-0.319836378097534,-2.95337724685669,-1.06234788894653,-0.416714429855347,-2.72581100463867,-1.36511182785034,-0.445029020309448,-2.70647144317627,-1.44620847702026,-0.390171766281128,-2.8797869682312,-1.18124198913574,-0.394343137741089,-2.85532283782959,-1.21677827835083,-0.401397466659546,-2.72184801101685,-1.29597043991089,-0.395688772201538,-2.72062301635742,-1.26512098312378,-0.386587858200073,-2.43614625930786,-1.24189567565918,-0.431441068649292,-2.42376232147217,-1.33873844146729,-0.311560392379761,-2.72588300704956,-0.774714469909668,-0.368592023849487,-2.63929319381714,-0.953042030334473,-0.380652189254761,-2.56544733047485,-1.14009523391724,-0.367528676986694,-2.54690551757813,-1.19814348220825,-0.355376958847046,-2.44435262680054,-1.09807157516479,-0.347857236862183,-2.45468044281006,-1.05039310455322,-0.0243512690067291,-4.17430782318115,-1.34688949584961,-0.0241695940494537,-4.05011892318726,-1.52322387695313,-0.465198278427124,-2.14937448501587,-0.515460014343262,-0.421167135238647,-2.06039333343506,-0.486607074737549,-0.439298391342163,-2.11489629745483,-0.466716289520264,-0.44403338432312, +-2.09642505645752,-0.496343612670898,-0.171709716320038,-4.06907558441162,-1.20971298217773,-0.173644185066223,-4.0586314201355,-1.23912715911865,-0.296767830848694,-4.0316424369812,-1.1820650100708,-0.301207184791565,-4.01818513870239,-1.21553421020508,-0.143787026405334,-4.16018342971802,-1.23342037200928,-0.148685097694397,-4.14699172973633,-1.2661600112915,-0.346243500709534,-3.93842172622681,-1.15644359588623,-0.348177552223206,-3.92863798141479,-1.18677139282227,-0.434470772743225,-3.83429384231567,-1.10103034973145,-0.435831665992737,-3.82069826126099,-1.1345100402832,-0.370829224586487,-3.7289981842041,-1.06596946716309,-0.375477433204651,-3.72208881378174,-1.0932502746582,-0.260380387306213,-3.59097814559937,-0.971652030944824,-0.268711566925049,-3.58151865005493,-1.00324726104736,-0.144497990608215,-3.47681427001953,-0.928065299987793,-0.155138492584229,-3.47114133834839,-0.95228910446167,-0.0911471843719482,-3.27485036849976,-0.8222336769104,-0.117540597915649,-3.26431226730347,-0.853368759155273,-0.113670110702515,-3.06517553329468,-0.781705379486084,-0.129921197891235,-3.06447696685791,-0.808757781982422,-0.280555486679077,-2.76274156570435,-0.693276405334473,-0.296615362167358,-2.75079107284546,-0.721454620361328,-0.458226919174194,-2.23911905288696,-0.518699645996094,-0.465728521347046,-2.22549724578857,-0.545179843902588,-0.0545622259378433,-3.85535049438477,-1.62954044342041,-0.0508138090372086,-3.96088981628418,-1.49985313415527,-0.282521843910217,-3.59812688827515,-1.5164909362793,-0.291644692420959,-3.6773099899292,-1.39835548400879,-0.312788605690002,-3.12820053100586,-1.32227516174316,-0.183584332466125,-3.23233938217163,-1.15834617614746,-0.195466220378876,-4.02230072021484,-1.19086837768555,-0.221703171730042,-3.9800066947937,-1.21409702301025,-0.189654529094696,-3.95587158203125,-1.2773962020874,-0.166572272777557,-4.00423812866211,-1.22344303131104,-0.191414058208466,-3.99445486068726,-1.22112464904785,-0.209188580513,-3.67811012268066,-1.67005825042725,-0.241613030433655,-3.64409780502319, +-1.64400863647461,-0.21836918592453,-3.65717029571533,-1.68817138671875,-0.225555121898651,-3.65917253494263,-1.65834426879883,-0.00317254662513733,-3.75950765609741,-1.79270172119141,-0.022285133600235,-3.72843647003174,-1.79695987701416,-0.0105225183069706,-3.69801139831543,-1.80890560150146,-0.00591960549354553,-3.72799015045166,-1.80206203460693,-0.232526421546936,-3.62968444824219,-0.996671676635742,-0.175013184547424,-3.56130981445313,-0.993202209472656,-0.214346528053284,-3.57569694519043,-1.07914733886719,-0.257815003395081,-3.65123796463013,-1.05271816253662,-0.217640042304993,-3.60784530639648,-1.02250957489014,-0.340283036231995,-3.29858207702637,-1.5195140838623,-0.343860268592834,-3.23608064651489,-1.47529602050781,-0.34514582157135,-3.26405191421509,-1.5434889793396,-0.341960549354553,-3.26444149017334,-1.50013780593872,-0.269907593727112,-3.44141387939453,-1.69706583023071,-0.20694363117218,-3.39177274703979,-1.76053857803345,-0.107195526361465,-3.44338846206665,-1.82607889175415,-0.17869633436203,-3.48880815505981,-1.76845645904541,-0.19342052936554,-3.44321441650391,-1.76524353027344,-0.0998961925506592,-2.90297603607178,-0.725341320037842,-0.138238668441772,-2.81588649749756,-0.737145900726318,-0.106083154678345,-2.8659725189209,-0.807986259460449,-0.0672680139541626,-2.94997549057007,-0.768023490905762,-0.0961868762969971,-2.88880443572998,-0.753011703491211,-0.297402143478394,-2.5952410697937,-1.2687668800354,-0.278679609298706,-2.45131206512451,-1.19884395599365,-0.290749311447144,-2.53381061553955,-1.2718391418457,-0.286692380905151,-2.52197647094727,-1.23709154129028,-0.315002083778381,-2.8702220916748,-1.54532909393311,-0.23275625705719,-2.73819208145142,-1.61852216720581,-0.151012063026428,-2.83004379272461,-1.74573564529419,-0.247249245643616,-2.96025657653809,-1.68349695205688,-0.243207573890686,-2.85101985931396,-1.6527853012085,-0.29187273979187,-2.14166831970215,-0.744536399841309,-0.318510770797729,-2.20940685272217,-0.59839916229248,-0.312638998031616,-1.90088081359863,-0.908021926879883, +-0.318257093429565,-1.9215235710144,-0.881747245788574,-0.0563947260379791,-4.13978481292725,-1.23875904083252,-0.0834256708621979,-4.09960222244263,-1.26312351226807,-0.0514890253543854,-4.07277345657349,-1.32217693328857,-0.028505951166153,-4.11360216140747,-1.26555347442627,-0.0535465776920319,-4.10948944091797,-1.26738166809082,-0.144088387489319,-4.05870580673218,-1.20214080810547,-0.152077317237854,-4.02960443496704,-1.231689453125,-0.146549344062805,-4.00596618652344,-1.28168773651123,-0.131724536418915,-4.05200529098511,-1.22871589660645,-0.144783139228821,-4.03887176513672,-1.22795295715332,-0.144640624523163,-3.83988475799561,-1.56170272827148,-0.150065541267395,-3.89952230453491,-1.46505260467529,-0.331190705299377,-3.8584132194519,-1.11157321929932,-0.323646187782288,-3.79554843902588,-1.12973785400391,-0.299251198768616,-3.79519462585449,-1.19885635375977,-0.29911196231842,-3.86313438415527,-1.1513500213623,-0.312848687171936,-3.8322229385376,-1.1408576965332,-0.33247435092926,-3.7337794303894,-1.07119083404541,-0.315580010414124,-3.7040810585022,-1.0915584564209,-0.308205246925354,-3.68027973175049,-1.14749336242676,-0.316406846046448,-3.72657823562622,-1.09897708892822,-0.318282723426819,-3.71391677856445,-1.09531879425049,-0.333929657936096,-3.51401090621948,-1.42633533477783,-0.326396584510803,-3.56695461273193,-1.33930492401123,-0.0137687921524048,-3.3925199508667,-0.863409996032715,0.0174440145492554,-3.31537580490112,-0.866202354431152,-0.0281721353530884,-3.3580265045166,-0.954665184020996,-0.0499435663223267,-3.42830276489258,-0.918313026428223,-0.0119110345840454,-3.38160133361816,-0.893173694610596,-0.0235540866851807,-3.09852361679077,-0.786013126373291,-0.0423948764801025,-3.0421290397644,-0.803923606872559,-0.0401569604873657,-3.0644702911377,-0.862070560455322,-0.000268101692199707,-3.1456937789917,-0.814938545227051,-0.0226594209671021,-3.08695363998413,-0.808480262756348,-0.302575707435608,-2.8954873085022,-1.18137121200562,-0.215017437934875,-2.95646667480469,-1.06762409210205,-0.338285207748413, +-2.39964532852173,-0.580564975738525,-0.330462217330933,-2.30929040908813,-0.580533981323242,-0.304466009140015,-2.37621593475342,-0.658923149108887,-0.30804705619812,-2.46242666244507,-0.63603401184082,-0.318625211715698,-2.39175510406494,-0.609367370605469,-0.26535964012146,-2.22512102127075,-0.974504470825195,-0.282537221908569,-2.31422519683838,-0.805273056030273,-0.281994462013245,-3.93015146255493,-1.15039920806885,-0.287328362464905,-3.89838838577271,-1.17701721191406,-0.277232766151428,-3.87468576431274,-1.2310037612915,-0.266027092933655,-3.92575693130493,-1.17763996124268,-0.279091477394104,-3.90990161895752,-1.17626667022705,-0.268272042274475,-3.69119119644165,-1.52345943450928,-0.272780060768127,-3.75761699676514,-1.42343807220459,-0.189761281013489,-3.74849128723145,-1.58127784729004,-0.191046357154846,-3.84043598175049,-1.46344947814941,-0.186792016029358,-3.61439609527588,-1.73440790176392,-0.147076785564423,-3.5682578086853,-1.77358531951904,-0.0679642260074615,-3.59607648849487,-1.81296348571777,-0.108029991388321,-3.64097023010254,-1.77866077423096,-0.128381848335266,-3.60577154159546,-1.77610206604004,-0.126887023448944,-3.6819019317627,-1.75366592407227,-0.0444881021976471,-3.66753816604614,-1.80564308166504,-0.0655795633792877,-3.70158004760742,-1.78321075439453,-0.0865937769412994,-3.67243528366089,-1.78137588500977,-0.154056191444397,-3.76979970932007,-1.65839672088623,-0.181160628795624,-3.72311878204346,-1.67193031311035,-0.163195252418518,-3.7206974029541,-1.70719623565674,-0.168170571327209,-3.74957609176636,-1.66178417205811,-0.00520816445350647,-3.83401536941528,-1.75353050231934,-0.0150529444217682,-3.79426717758179,-1.77571296691895,-0.00370040535926819,-3.79714298248291,-1.77831840515137,-0.0170604288578033,-3.85427808761597,-1.71778869628906,-0.00550666451454163,-3.86346006393433,-1.71314144134521,-0.0799061357975006,-3.79746532440186,-1.72102642059326,-0.118573844432831,-3.77583408355713,-1.69885635375977,-0.0923339426517487,-3.7792797088623,-1.73505878448486,-0.0994340479373932, +-3.78391265869141,-1.71324825286865,-0.11259663105011,-3.49080562591553,-0.937362670898438,-0.106125950813293,-3.4662652015686,-0.958399772644043,-0.111322522163391,-3.44531536102295,-1.01219987869263,-0.10845673084259,-3.48895740509033,-0.960371971130371,-0.105083584785461,-3.4749002456665,-0.96000337600708,-0.297093987464905,-3.28177452087402,-1.29669427871704,-0.230076432228088,-3.32993459701538,-1.20460844039917,-0.32010805606842,-3.39281129837036,-1.41859865188599,-0.278043389320374,-3.46904945373535,-1.27410221099854,-0.314550995826721,-3.20337343215942,-1.63846492767334,-0.241015076637268,-3.13080739974976,-1.7188458442688,-0.137446045875549,-3.20101308822632,-1.81500339508057,-0.227659821510315,-3.26950550079346,-1.74370384216309,-0.23507559299469,-3.20272493362427,-1.73215246200562,-0.296893715858459,-3.33700466156006,-1.67298793792725,-0.123892426490784,-3.33538007736206,-1.8272271156311,-0.218331038951874,-3.33318471908569,-1.75327491760254,-0.333313584327698,-3.43392705917358,-1.5382776260376,-0.334358811378479,-3.37297296524048,-1.53667163848877,-0.332522988319397,-3.37666416168213,-1.58587074279785,-0.334274888038635,-3.40668487548828,-1.5365047454834,-0.230408370494843,-3.54106521606445,-1.71924829483032,-0.0884267389774323,-3.52264261245728,-1.81928396224976,-0.163548171520233,-3.52989101409912,-1.77115964889526,-0.266102433204651,-3.62313747406006,-1.62269592285156,-0.27975332736969,-3.57660913467407,-1.61774778366089,-0.27004873752594,-3.57712841033936,-1.65912055969238,-0.273108124732971,-3.60302495956421,-1.61936044692993,-0.300275444984436,-3.51634168624878,-1.60533285140991,-0.319615960121155,-3.46777248382568,-1.56671905517578,-0.307126641273499,-3.48830842971802,-1.6262321472168,-0.310405373573303,-3.4896674156189,-1.58745670318604,-0.287638425827026,-2.60249423980713,-0.664326190948486,-0.30271315574646,-2.54279184341431,-0.678452968597412,-0.278882741928101,-2.56876754760742,-0.736149787902832,-0.244458913803101,-2.65208530426025,-0.696005344390869,-0.280213117599487,-2.59067487716675,-0.687026977539063, +-0.278470754623413,-2.43882513046265,-1.02997779846191,-0.284728765487671,-2.48897218704224,-0.912746429443359,-0.294349431991577,-2.68938779830933,-1.17518138885498,-0.226827383041382,-2.76989698410034,-0.9930419921875,-0.1761394739151,-2.2401647567749,-1.34635639190674,-0.0756670832633972,-2.43788051605225,-1.61398887634277,-0.182210087776184,-2.50632953643799,-1.54624938964844,-0.117735028266907,-2.31006240844727,-1.48081874847412,-0.284251809120178,-2.66389179229736,-1.48253726959229,-0.136347889900208,-2.60918474197388,-1.67465782165527,-0.218289971351624,-2.63623237609863,-1.58769941329956,-0.331196546554565,-2.81555604934692,-1.300377368927,-0.31748366355896,-2.71451759338379,-1.30022001266479,-0.324070572853088,-2.74364233016968,-1.35349082946777,-0.325081586837769,-2.76440620422363,-1.29694128036499,-0.321971535682678,-3.07211446762085,-1.60542583465576,-0.148555934429169,-3.03852653503418,-1.79332399368286,-0.245628952980042,-3.05179500579834,-1.70408344268799,-0.350948929786682,-3.19311285018921,-1.4285135269165,-0.353013634681702,-3.11268377304077,-1.44091987609863,-0.354419350624084,-3.12748527526855,-1.49392509460449,-0.352912545204163,-3.15517377853394,-1.43220710754395,-0.350280404090881,-3.03680086135864,-1.42376279830933,-0.344903588294983,-2.93437671661377,-1.37004280090332,-0.353042244911194,-2.99866628646851,-1.44618606567383,-0.348312020301819,-2.98911285400391,-1.40119695663452,-0.309201955795288,-1.99527788162231,-0.720851898193359,-0.330414533615112,-2.07000350952148,-0.552480697631836,-0.311386823654175,-1.93763828277588,-0.839396953582764,-0.281474828720093,-2.05219602584839,-0.915327548980713,-0.296857595443726,-2.02409839630127,-0.978442192077637,-0.276678800582886,-2.07480955123901,-1.06775331497192,-0.294018507003784,-1.92455148696899,-1.00606107711792,-0.275031805038452,-1.99519968032837,-1.07085847854614,-0.284393072128296,-1.99784994125366,-1.03555536270142,-0.272461652755737,-2.34601211547852,-1.12570762634277,-0.27062201499939,-2.23273229598999,-1.10994577407837,-0.278588056564331, +-2.19305896759033,-1.036949634552,-0.00253692269325256,-4.15598058700562,-1.23780155181885,-0.00893750786781311,-4.12646245956421,-1.26607608795166,-0.0014897882938385,-4.09851598739624,-1.32182121276855,-0.00190511345863342,-4.13414144515991,-1.26684856414795,-0.0585605204105377,-3.83631753921509,-1.68130683898926,-0.00419726967811584,-3.91636037826538,-1.59787845611572,-0.00523820519447327,-3.90649509429932,-1.6367244720459,-0.108424782752991,-3.92440223693848,-1.48889827728271,-0.109939277172089,-4.03831958770752,-1.30162906646729,-0.143079876899719,-3.82548952102661,-1.59539794921875,-0.101109176874161,-3.82526206970215,-1.61999893188477,-0.100625187158585,-3.80201101303101,-1.66913318634033,-0.16346138715744,-3.88411426544189,-1.45932960510254,-0.156932532787323,-3.98580503463745,-1.28207492828369,-0.168780922889709,-3.82520771026611,-1.54822540283203,-0.171702563762665,-3.80713844299316,-1.57796859741211,-0.192823529243469,-3.72451686859131,-1.62349510192871,-0.238655686378479,-3.78782987594604,-1.44863319396973,-0.243914246559143,-3.91191053390503,-1.2523717880249,-0.229245781898499,-3.69718265533447,-1.561354637146,-0.228703200817108,-3.67505502700806,-1.60138320922852,-0.26692259311676,-3.67206001281738,-1.55665588378906,-0.279608368873596,-3.74045276641846,-1.41372680664063,-0.28485643863678,-3.85231113433838,-1.22115325927734,-0.28442919254303,-3.57768583297729,-1.55678176879883,-0.276260018348694,-3.67590284347534,-1.51536846160889,-0.27640688419342,-3.65475177764893,-1.5481014251709,-0.314070343971252,-3.59861660003662,-1.36559200286865,-0.308859467506409,-3.71734619140625,-1.16920757293701,-0.33528196811676,-3.49924850463867,-1.45421504974365,-0.311687111854553,-3.5269193649292,-1.47877359390259,-0.312893509864807,-3.51167011260986,-1.5178370475769,-0.315278649330139,-3.54904890060425,-1.31595802307129,-0.286292672157288,-3.65445184707642,-1.12907886505127,-0.331081032752991,-3.4874701499939,-1.41816806793213,-0.335047364234924,-3.46715211868286,-1.4511604309082,-0.329979538917542,-3.37315225601196,-1.4672703742981, +-0.236590981483459,-3.37231397628784,-1.22582817077637,-0.136001229286194,-3.48355531692505,-1.03042554855347,-0.314155220985413,-3.30043649673462,-1.37281465530396,-0.329823136329651,-3.28730630874634,-1.4229154586792,-0.314535737037659,-3.27080821990967,-1.32659292221069,-0.223647713661194,-3.30954551696777,-1.19299793243408,-0.0978327989578247,-3.43178606033325,-0.995302200317383,-0.33888304233551,-3.10159873962402,-1.3742299079895,-0.304391503334045,-3.23472309112549,-1.29384660720825,-0.324667572975159,-3.21181488037109,-1.32496309280396,-0.180558323860168,-3.08599090576172,-1.10418272018433,-0.00135290622711182,-3.20425701141357,-0.897765636444092,-0.321875214576721,-2.8831992149353,-1.21754503250122,-0.307663559913635,-3.00450325012207,-1.27001857757568,-0.335754036903381,-2.99011182785034,-1.32384443283081,-0.221914887428284,-2.88006114959717,-1.038405418396,-0.065590500831604,-2.98086547851563,-0.840379238128662,-0.301592469215393,-2.8098783493042,-1.16147756576538,-0.3156898021698,-2.79001665115356,-1.20161008834839,-0.302226781845093,-2.66968870162964,-1.23923206329346,-0.256918668746948,-2.61584568023682,-0.944233894348145,-0.199655294418335,-2.70441007614136,-0.768239498138428,-0.274304151535034,-2.54762172698975,-1.1203932762146,-0.283353567123413,-2.53222179412842,-1.18576288223267,-0.281206846237183,-2.42615270614624,-1.07182168960571,-0.0161587297916412,-3.96756935119629,-1.49404907226563,-0.0142857134342194,-4.08215427398682,-1.3193302154541,-0.360697507858276,-2.11421489715576,-0.467710018157959,-0.356782674789429,-2.05075883865356,-0.483059406280518,-0.334349393844604,-2.15749549865723,-0.521078109741211,-0.344371557235718,-2.09714889526367,-0.498098373413086,-0.157536625862122,-4.03614664077759,-1.20128631591797,-0.156483829021454,-4.01702880859375,-1.22855663299561,-0.251579880714417,-3.98154163360596,-1.16587829589844,-0.246747612953186,-3.95310115814209,-1.19494533538818,-0.111849427223206,-4.10524463653564,-1.21671104431152,-0.110304474830627,-4.0763087272644,-1.24537086486816,-0.301262497901917, +-3.90248966217041,-1.13965511322021,-0.292110085487366,-3.88406372070313,-1.16602230072021,-0.342726349830627,-3.78474617004395,-1.08476543426514,-0.322487473487854,-3.75679016113281,-1.11321926116943,-0.303674340248108,-3.69956493377686,-1.05287265777588,-0.292172074317932,-3.6834921836853,-1.07644939422607,-0.152204155921936,-3.5442852973938,-0.94400691986084,-0.136075139045715,-3.51956033706665,-0.971946716308594,-0.0837780237197876,-3.46100091934204,-0.91918420791626,-0.084816575050354,-3.4534969329834,-0.94230318069458,0.0219086408615112,-3.24442625045776,-0.807643890380859,0.0209020376205444,-3.23040962219238,-0.836800098419189,-0.0551660060882568,-3.0093731880188,-0.764116764068604,-0.0528409481048584,-2.99896335601807,-0.787689685821533,-0.197617292404175,-2.74741315841675,-0.688259124755859,-0.193127870559692,-2.73149967193604,-0.715364933013916,-0.352516889572144,-2.24113750457764,-0.522050380706787,-0.33324122428894,-2.22983074188232,-0.549939155578613,-0.00355878472328186,-4.18579769134521,-1.2335958480835,-0.0116025507450104,-4.1756329536438,-1.23128414154053,-0.00317254662513733,-4.17278957366943,-1.23020553588867,-0.0341760218143463,-4.17676115036011,-1.23149490356445,-0.0654551088809967,-4.19907569885254,-1.23482608795166,-0.0900985300540924,-4.15953922271729,-1.22564220428467,-0.0600010454654694,-4.17263507843018,-1.231369972229,-0.124140381813049,-4.15241146087646,-1.2123851776123,-0.136396050453186,-4.09977960586548,-1.19416046142578,-0.116562068462372,-4.13206624984741,-1.20884799957275,-0.149881541728973,-4.08189296722412,-1.19798469543457,-0.152273774147034,-4.05417490005493,-1.1981258392334,-0.146303772926331,-4.07227516174316,-1.19482898712158,-0.164789378643036,-4.06037712097168,-1.19191932678223,-0.176135241985321,-4.05045223236084,-1.18210887908936,-0.160714328289032,-4.05016374588013,-1.19134712219238,-0.213415801525116,-4.06352996826172,-1.17748928070068,-0.235247254371643,-4.03087520599365,-1.17137622833252,-0.203562438488007,-4.04532289505005,-1.17803764343262,-0.275452256202698,-4.01925039291382, +-1.15524768829346,-0.281565308570862,-3.97109079360962,-1.14017391204834,-0.262303948402405,-4.00327348709106,-1.15439891815186,-0.299838662147522,-3.95052146911621,-1.14355564117432,-0.2971111536026,-3.92333602905273,-1.14384365081787,-0.289881348609924,-3.94286298751831,-1.1417875289917,-0.325829148292542,-3.92881536483765,-1.133225440979,-0.333957314491272,-3.90894508361816,-1.11306190490723,-0.313097596168518,-3.91734886169434,-1.13087177276611,-0.378507256507874,-3.90230989456177,-1.10260963439941,-0.367680191993713,-3.84596347808838,-1.08812427520752,-0.354270577430725,-3.88246917724609,-1.10032081604004,-0.395921349525452,-3.82374954223633,-1.07189750671387,-0.359899163246155,-3.7722806930542,-1.06027221679688,-0.368737816810608,-3.80717992782593,-1.07209777832031,-0.363176941871643,-3.7532205581665,-1.06062316894531,-0.334791779518127,-3.72571611404419,-1.06206226348877,-0.348050713539124,-3.74608755111694,-1.06121253967285,-0.335847496986389,-3.71614980697632,-1.05479431152344,-0.294117569923401,-3.68563890457153,-1.02714252471924,-0.318489670753479,-3.70903778076172,-1.04962158203125,-0.283999085426331,-3.65894269943237,-1.00923728942871,-0.211113095283508,-3.59919929504395,-0.96806526184082,-0.254740357398987,-3.64526748657227,-0.997779846191406,-0.201429963111877,-3.57063341140747,-0.955658912658691,-0.144174218177795,-3.5259108543396,-0.931501388549805,-0.174105286598206,-3.55930471420288,-0.944440841674805,-0.141363263130188,-3.50306987762451,-0.939364433288574,-0.11216127872467,-3.47783279418945,-0.935225009918213,-0.125439763069153,-3.4985613822937,-0.934356689453125,-0.109971165657043,-3.46948099136353,-0.920617580413818,-0.0668622255325317,-3.44579362869263,-0.888699054718018,-0.0936847925186157,-3.46560335159302,-0.915980339050293,-0.0607963800430298,-3.41006422042847,-0.878248691558838,0.00212657451629639,-3.33638763427734,-0.841555595397949,-0.0304909944534302,-3.40125942230225,-0.86602783203125,-0.0148541927337646,-3.26169681549072,-0.82016134262085,-0.00935721397399902,-3.16958808898926,-0.78537130355835, +0.0106061697006226,-3.25396776199341,-0.809316635131836,-0.0477354526519775,-3.11516809463501,-0.788225173950195,-0.0517294406890869,-3.06136703491211,-0.781394481658936,-0.032602071762085,-3.10737037658691,-0.78317928314209,-0.0767648220062256,-3.04059219360352,-0.763917446136475,-0.0796115398406982,-2.98054027557373,-0.734209537506104,-0.0632269382476807,-3.02420663833618,-0.75920581817627,-0.130268812179565,-2.92945623397827,-0.731468677520752,-0.154803991317749,-2.83865213394165,-0.712012767791748,-0.1108238697052,-2.91630220413208,-0.723499298095703,-0.23179030418396,-2.75769901275635,-0.68964147567749,-0.265580892562866,-2.67508554458618,-0.660576343536377,-0.211219549179077,-2.75439548492432,-0.684760093688965,-0.318844556808472,-2.61511468887329,-0.658766746520996,-0.324338674545288,-2.55823087692261,-0.654467582702637,-0.301357984542847,-2.60998106002808,-0.657595157623291,-0.351347684860229,-2.47558259963989,-0.598709106445313,-0.394676923751831,-2.40356492996216,-0.58036994934082,-0.374441862106323,-2.31883525848389,-0.552534580230713,-0.364506483078003,-2.40228700637817,-0.57628345489502,-0.407301664352417,-2.24139881134033,-0.520267486572266,-0.37883734703064,-2.17614030838013,-0.481791973114014,-0.378363370895386,-2.24303245544434,-0.517353534698486,-0.40189528465271,-2.12052154541016,-0.45733118057251,-0.383313894271851,-2.07598876953125,-0.445346832275391,-0.380467176437378,-2.12018060684204,-0.457492828369141,-0.0420867502689362,-4.21951103210449,-1.24244499206543,-0.0219766274094582,-4.20249080657959,-1.23671054840088,-0.0129167139530182,-4.20973682403564,-1.24154281616211,-0.0249873697757721,-4.22165489196777,-1.25878429412842,-0.0238186419010162,-4.21846771240234,-1.24322319030762,-0.108637034893036,-4.19099283218384,-1.23113441467285,-0.0739070475101471,-4.21023797988892,-1.23886871337891,-0.14972323179245,-4.12683582305908,-1.20650005340576,-0.134418606758118,-4.16189861297607,-1.21800136566162,-0.155947327613831,-4.06539249420166,-1.20235538482666,-0.153322398662567,-4.08979463577271,-1.20358562469482, +-0.190923869609833,-4.0785436630249,-1.18854141235352,-0.168605923652649,-4.06817388534546,-1.19599533081055,-0.257430672645569,-4.06130933761597,-1.17732429504395,-0.222702622413635,-4.07681798934937,-1.18405818939209,-0.306888222694397,-3.99234342575073,-1.15071201324463,-0.287596344947815,-4.03033351898193,-1.16320323944092,-0.313195824623108,-3.93330860137939,-1.14848709106445,-0.309142708778381,-3.9558162689209,-1.14889621734619,-0.371549248695374,-3.94025754928589,-1.12755489349365,-0.337873101234436,-3.93717813491821,-1.14013767242432,-0.418014168739319,-3.87633895874023,-1.09880638122559,-0.400375962257385,-3.91579580307007,-1.11410713195801,-0.404647469520569,-3.79325246810913,-1.06701564788818,-0.419574379920959,-3.83403491973877,-1.08083248138428,-0.354450821876526,-3.73219299316406,-1.06441116333008,-0.376441597938538,-3.75726890563965,-1.06464576721191,-0.354077935218811,-3.7128849029541,-1.04056835174561,-0.355491280555725,-3.72489213943481,-1.0567102432251,-0.272274613380432,-3.62689924240112,-0.985051155090332,-0.319509148597717,-3.6749906539917,-1.01425743103027,-0.198211789131165,-3.5456657409668,-0.944045066833496,-0.234097123146057,-3.58427333831787,-0.960263252258301,-0.132335782051086,-3.48216342926025,-0.937777042388916,-0.159192204475403,-3.50892019271851,-0.940884590148926,-0.124549984931946,-3.46294021606445,-0.898231029510498,-0.128215909004211,-3.4747428894043,-0.921058177947998,-0.0682451725006104,-3.35737466812134,-0.851843357086182,-0.0994765758514404,-3.42226266860962,-0.877003192901611,-0.0595715045928955,-3.18400859832764,-0.792001724243164,-0.0518372058868408,-3.27156400680542,-0.817738056182861,-0.0747592449188232,-3.08367538452148,-0.788419246673584,-0.0664918422698975,-3.12351894378662,-0.789267063140869,-0.124153852462769,-3.01634407043457,-0.745867252349854,-0.0946695804595947,-3.05575275421143,-0.769054889678955,-0.197784662246704,-2.85426378250122,-0.717609882354736,-0.156460523605347,-2.94375324249268,-0.732926845550537,-0.311282873153687,-2.68138456344604,-0.661862373352051, +-0.256558179855347,-2.76278972625732,-0.68757963180542,-0.355889081954956,-2.57137727737427,-0.657906055450439,-0.33775782585144,-2.61980390548706,-0.659798622131348,-0.413384199142456,-2.48210573196411,-0.599581241607666,-0.430185079574585,-2.32224082946777,-0.552547454833984,-0.426037549972534,-2.4073281288147,-0.576775074005127,-0.436898946762085,-2.1730375289917,-0.479305267333984,-0.436300039291382,-2.24230289459229,-0.51557445526123,-0.407939672470093,-2.08120632171631,-0.447950839996338,-0.423351049423218,-2.12082481384277,-0.457032680511475,-0.0320102274417877,-3.90343189239502,-1.71101951599121,-0.0275289267301559,-3.877845287323,-1.66384506225586,-0.312596082687378,-1.79359149932861,-0.979245662689209,-0.267217397689819,-2.11187124252319,-1.1119818687439,-0.271956205368042,-2.15641689300537,-1.09326696395874,-0.262600660324097,-2.35819101333618,-1.21058797836304,-0.274429082870483,-2.39554643630981,-1.15757656097412,-0.307127714157104,-2.63645935058594,-1.3115291595459,-0.308124303817749,-2.65878391265869,-1.29034376144409,-0.34148371219635,-2.87481641769409,-1.40012216567993,-0.338110566139221,-2.87444019317627,-1.33058452606201,-0.354984879493713,-3.05545568466187,-1.46880006790161,-0.352003693580627,-3.07562112808228,-1.4375467300415,-0.350563645362854,-3.19978809356689,-1.51738119125366,-0.347755074501038,-3.2160496711731,-1.44721746444702,-0.340467095375061,-3.31218290328979,-1.56251430511475,-0.337056756019592,-3.33584451675415,-1.53135824203491,-0.321326851844788,-3.43635082244873,-1.60559606552124,-0.327821373939514,-3.45171880722046,-1.54933452606201,-0.293080925941467,-3.52683687210083,-1.64175081253052,-0.289450287818909,-3.54648542404175,-1.61425828933716,-0.244579911231995,-3.62044477462769,-1.67371988296509,-0.255364060401917,-3.63444471359253,-1.6315336227417,-0.196755528450012,-3.68427038192749,-1.69845104217529,-0.194605469703674,-3.69940900802612,-1.674635887146,-0.127612292766571,-3.75226163864136,-1.71954345703125,-0.137178063392639,-3.77487754821777,-1.67567729949951,-0.0421830713748932, +-3.83207559585571,-1.72442436218262,-0.0635506212711334,-3.80124235153198,-1.74307727813721,-0.0600258409976959,-3.81497621536255,-1.72444915771484,-0.0266429483890533,-3.94974040985107,-1.64022254943848,-0.0305425226688385,-3.9186429977417,-1.67899894714355,-0.0235392153263092,-3.88466787338257,-1.61464500427246,-0.251174688339233,-1.91650438308716,-1.10107183456421,-0.240556478500366,-2.0473690032959,-1.1447868347168,-0.259023427963257,-2.01867246627808,-1.10891485214233,-0.302673935890198,-2.63793849945068,-1.37769079208374,-0.267657041549683,-2.4633994102478,-1.31475400924683,-0.295008420944214,-2.57657670974731,-1.32514190673828,-0.352076172828674,-3.05297613143921,-1.52149963378906,-0.34928572177887,-2.96206855773926,-1.48873567581177,-0.353750824928284,-3.01978063583374,-1.4876823425293,-0.334771752357483,-3.31243181228638,-1.60620403289795,-0.342754006385803,-3.24393320083618,-1.58241939544678,-0.341686844825745,-3.28153705596924,-1.57909297943115,-0.277286171913147,-3.52643013000488,-1.67485332489014,-0.297793984413147,-3.4719820022583,-1.65655374526978,-0.294444680213928,-3.50211143493652,-1.65494918823242,-0.175070464611053,-3.67938804626465,-1.72307395935059,-0.207129120826721,-3.64195489883423,-1.70957279205322,-0.199540317058563,-3.6648097038269,-1.70886325836182,-0.0473677217960358,-3.78772974014282,-1.76097393035889,-0.085116058588028,-3.76061725616455,-1.75002288818359,-0.0716878473758698,-3.78211259841919,-1.75020980834961,-0.236755967140198,-1.78296422958374,-1.10526704788208,-0.212156414985657,-2.11831331253052,-1.20816278457642,-0.228933811187744,-2.28147125244141,-1.26484537124634,-0.328388810157776,-2.78306245803833,-1.43514919281006,-0.314794182777405,-2.70520496368408,-1.40993452072144,-0.340625405311584,-2.87596845626831,-1.46637582778931,-0.348327279090881,-3.15002584457397,-1.55901050567627,-0.350427269935608,-3.09882688522339,-1.54341268539429,-0.345421433448792,-3.19920492172241,-1.57388305664063,-0.318287491798401,-3.39570379257202,-1.63723278045654,-0.327251076698303,-3.35251569747925, +-1.62424516677856,-0.307129502296448,-3.43600702285767,-1.64932107925415,-0.243296325206757,-3.58819055557251,-1.69566011428833,-0.260755181312561,-3.55667686462402,-1.68715286254883,-0.223578155040741,-3.61652946472168,-1.70413970947266,-0.127203166484833,-3.71882152557373,-1.74094104766846,-0.150847613811493,-3.69809055328369,-1.73340129852295,-0.0750929415225983,-3.73326921463013,-1.76523208618164,-0.104442745447159,-3.73956346511841,-1.74670028686523,-0.0331627428531647,-3.75926065444946,-1.77952671051025,-0.0465566217899323,-3.72987699508667,-1.78330707550049,-0.0209018290042877,-3.62907457351685,-1.82231187820435,-0.0156303942203522,-3.66497468948364,-1.81565570831299,-0.0308395996689796,-3.55280494689941,-1.83500719070435,-0.0260159224271774,-3.59064483642578,-1.8289041519165,-0.0396329462528229,-3.48400402069092,-1.84564208984375,-0.035295158624649,-3.51876974105835,-1.84027481079102,-0.0485283434391022,-3.39634561538696,-1.85701942443848,-0.0441567003726959,-3.44406747817993,-1.85209703445435,-0.0560523718595505,-3.27221584320068,-1.85454225540161,-0.0523988306522369,-3.33801317214966,-1.85767364501953,-0.0633298456668854,-3.12349224090576,-1.83897113800049,-0.059758335351944,-3.20201349258423,-1.84801721572876,-0.0686093866825104,-2.93096542358398,-1.81090545654297,-0.066484123468399,-3.03293085098267,-1.82824230194092,-0.066484123468399,-2.69685077667236,-1.74253129959106,-0.0607177317142487,-2.56820869445801,-1.69354677200317,-0.00685277581214905,-3.86792945861816,-1.87741756439209,-0.00659146904945374,-3.87922191619873,-1.78985977172852,-0.0249296873807907,-4.20823287963867,-1.2909688949585,0.00527939200401306,-4.18789386749268,-1.23491382598877,-0.00343719124794006,-4.19604110717773,-1.23753833770752,-0.0179497301578522,-4.14805603027344,-1.23779392242432,-0.0200297012925148,-4.1773476600647,-1.23157119750977,-0.0157629549503326,-4.11946964263916,-1.26535606384277,-0.00206151604652405,-3.98040962219238,-1.49433135986328,-0.0291711390018463,-3.82159852981567,-1.75131416320801,-0.0285812839865685,-3.84448575973511, +-1.72189331054688,-0.0290590822696686,-3.79147815704346,-1.76970100402832,0.0474008023738861,-3.85707664489746,-1.87349796295166,0.0356205403804779,-4.20825672149658,-1.29086971282959,0.014051765203476,-4.19604969024658,-1.23750686645508,0.0284994542598724,-4.14807510375977,-1.23771286010742,0.0306318700313568,-4.17736864089966,-1.23148632049561,0.0262740552425385,-4.11948776245117,-1.26528167724609,0.0127528607845306,-3.98041343688965,-1.49431228637695,0.041672557592392,-3.82160234451294,-1.75129508972168,0.04085573554039,-3.84449338912964,-1.72186946868896,0.0417207181453705,-3.79148387908936,-1.76968574523926,0.433887720108032,-2.01669692993164,-0.476902484893799,0.36994194984436,-1.99690294265747,-0.466138362884521,0.396776914596558,-2.01830196380615,-0.433709621429443,0.419616460800171,-2.02403831481934,-0.441441535949707,-0.426081418991089,-2.01638317108154,-0.479471683502197,-0.364130735397339,-1.99644804000854,-0.469175815582275,-0.388964414596558,-2.01799297332764,-0.436097621917725,-0.411274671554565,-2.02376794815063,-0.443727970123291,0.387322187423706,-1.96120023727417,-0.426704883575439,0.331974744796753,-1.78745794296265,-0.885258674621582,0.267459750175476,-1.66519784927368,-1.07267761230469,-0.254109025001526,-1.66934299468994,-1.07439708709717,-0.324987173080444,-1.73489141464233,-0.975513935089111,-0.380236387252808,-1.96079063415527,-0.429317951202393,-0.319348096847534,-1.82875442504883,-0.897011280059814,-0.327858686447144,-1.78688097000122,-0.888716220855713,0.319962739944458,-1.7939338684082,-0.977025508880615,0.332959413528442,-1.73518896102905,-0.973516464233398,0.0565236210823059,-2.01071119308472,-1.30756759643555,0.00553783774375916,-2.81485176086426,-1.78612232208252,0.0800441205501556,-2.8183069229126,-1.78192615509033,-0.0689169466495514,-2.81836795806885,-1.78201484680176,0,-0.179837703704834,0.0642805099487305,0,-0.158390045166016,0.0800867080688477,0,0.032623291015625,0.159745216369629,0,0.196304321289063,0.228069305419922,-2.34636672757915e-06,-4.61847734451294,-1.0930871963501, +0,-4.58166313171387,-0.651363372802734,0,0.288813591003418,0.495390892028809,3.61299971700646e-05,-4.60139560699463,-0.768777847290039,0,0.117302417755127,0.464653015136719,0,-4.59978294372559,-0.507443428039551,1.46531431255426e-06,0.117983341217041,0.306510925292969,0,-3.91120767593384,-1.3721342086792,0,0.120711326599121,0.216795921325684,0,-4.21184778213501,-1.25302410125732,0,-0.248740673065186,0.142685890197754,0,-3.51362895965576,-1.44269561767578,0,5.76972961425781e-05,0,0,4.56571578979492e-05,0,0,5.7518482208252e-05,0,0,4.16338443756104e-05,0,0,5.16176223754883e-05,0,0,4.98294830322266e-05,0,-2.96350281132618e-05,-2.13399696350098,-3.47397804260254,-0.000328255264321342,-2.79740142822266,-3.53909111022949,-0.000149406434502453,-2.37059116363525,-3.62964677810669,-0.000242622292716987,-3.18874740600586,-1.94022655487061,0,-0.149901628494263,-0.0294198989868164,0,-0.183150291442871,0.0562047958374023,0,-0.202298164367676,0.112579345703125,0,-0.227970600128174,0.13395881652832,0,-0.223144292831421,-0.0593681335449219,0,-0.228195667266846,-0.0207643508911133,0,-0.0747259855270386,0.023066520690918,0,-0.00766170024871826,0.00201702117919922,0,4.75645065307617e-05,0,0,-0.123210191726685,0.0586824417114258,0,-0.135998487472534,0.0726890563964844,0,5.35249710083008e-05,0,-0.000642280851025134,-3.22275733947754,-2.51211071014404,-0.000817297492176294,-3.28033542633057,-2.97145175933838,0,4.9591064453125e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.16176223754883e-05,0,0,5.17368316650391e-05,0,0,5.38825988769531e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0.000744444841984659, +-1.80842304229736,-1.62559294700623,0,4.57763671875e-05,0,0.000254960497841239,-2.47395992279053,-2.8622305393219,0,4.57763671875e-05,1.9073486328125e-06,-0.00243319361470607,-1.42194557189941,-1.5532374382019,0,4.57763671875e-05,1.9073486328125e-06,0,-0.411371231079102,-1.3379807472229,0,4.57763671875e-05,1.9073486328125e-06,0,-0.0011138916015625,-0.102164387702942,0,4.57763671875e-05,0,3.43973169985149e-06,-1.0031623840332,-2.13414525985718,0.0341624617576599,-0.164462327957153,0.0305938720703125,0.0299443006515503,-0.188687086105347,0.0663557052612305,0.014881432056427,-0.00939559936523438,0.193273544311523,0.0147132873535156,0.119348049163818,0.232152938842773,0.97055196762085,-1.53271722793579,-0.323966026306152,0.738755226135254,-1.489905834198,-0.373745918273926,0.560335636138916,-1.09597826004028,-0.255802154541016,0.666013836860657,-1.15102243423462,-0.350065231323242,0.24839448928833,-0.504720687866211,-0.0989465713500977,0.341620087623596,-0.584126949310303,-0.072880744934082,0.0319832563400269,-0.315948009490967,0.0150833129882813,0.091677188873291,-0.420050144195557,-0.0907535552978516,0.0890210866928101,-0.115270137786865,0.19693660736084,0.0616758465766907,-0.184476375579834,0.194431304931641,0.0506476759910583,0.0412402153015137,0.295025825500488,0.0299834012985229,-0.0835504531860352,0.204158782958984,0.51857328414917,-0.831765651702881,-0.249226570129395,0.402601957321167,-0.811460494995117,-0.240383148193359,0.75858736038208,-1.68888998031616,-0.496654510498047,0.97016429901123,-1.69086170196533,-0.43761157989502,0.80951189994812,-1.88953113555908,-0.525271415710449,1.01710689067841,-1.81696939468384,-0.431326866149902,0.744682788848877,-2.20924758911133,-0.570435523986816,1.02588474750519,-2.01704168319702,-0.404336929321289,0.679020166397095,-2.64519596099854,-0.594668388366699,1.03945696353912,-2.20559549331665,-0.355009078979492,0.764050245285034,-2.72317886352539,-0.516886711120605,0.541955232620239,-3.01866626739502,-0.661717414855957,0.648121476173401,-3.22184896469116,-0.673805236816406, +0.451161861419678,-3.34382295608521,-0.805198669433594,0.432951688766479,-3.79657602310181,-0.93474292755127,0.479577660560608,-3.7563648223877,-0.715642929077148,0.304908633232117,-4.18932771682739,-1.04739284515381,0.351720929145813,-4.20386791229248,-0.734653472900391,0.27674674987793,-4.50978231430054,-1.08261775970459,0.302019000053406,-4.46344470977783,-0.684281349182129,0.16903829574585,-4.59455823898315,-1.13482475280762,0.194491267204285,-4.55690336227417,-0.662863731384277,0.0864051580429077,-4.63854789733887,-1.10697269439697,0.0761822909116745,-4.58103322982788,-0.637166976928711,-0.000179916620254517,0.259284019470215,0.435553550720215,0.0410290956497192,0.156027793884277,0.473174095153809,0.065821647644043,-0.0277323722839355,0.417856216430664,-0.0218526124954224,-0.219333171844482,0.146878242492676,0.175309300422668,-0.544921875,0.00840377807617188,0.345679044723511,-0.858529090881348,-0.189642906188965,0.582809686660767,-1.08678197860718,-0.240077972412109,0.762973308563232,-1.50393152236938,-0.321113586425781,0.770374298095703,-1.70810222625732,-0.421935081481934,0.8256995677948,-1.87716817855835,-0.425333976745605,0.798607349395752,-2.16573190689087,-0.437471389770508,0.75388765335083,-2.53409051895142,-0.440154075622559,0.482165575027466,-2.96111726760864,-0.609026908874512,0.348963975906372,-3.41608476638794,-0.725098609924316,0.383013129234314,-3.87993955612183,-0.832172393798828,0.257234215736389,-4.27092552185059,-0.712564468383789,0.236863493919373,-4.51978349685669,-0.71330451965332,0.160877346992493,-4.62273454666138,-0.728146553039551,0.0839935839176178,-4.63431406021118,-0.745100975036621,0.0153194665908813,0.0758862495422363,0.443340301513672,0.0384224057197571,-0.0197787284851074,0.451127052307129,0.0724353194236755,-0.132637500762939,0.358020782470703,0.104572534561157,-0.261021137237549,0.0670013427734375,0.31252133846283,-0.574151039123535,-0.00115203857421875,0.433611273765564,-0.833952903747559,-0.156108856201172,0.591951847076416,-1.12962818145752,-0.255679130554199,0.820226669311523, +-1.53470706939697,-0.282702445983887,0.819542169570923,-1.70455455780029,-0.363760948181152,0.897655010223389,-1.85456991195679,-0.368989944458008,0.893351793289185,-2.07894945144653,-0.359322547912598,0.930545330047607,-2.35050392150879,-0.302798271179199,0.677173733711243,-2.80582571029663,-0.53980827331543,0.486181378364563,-3.28075218200684,-0.672480583190918,0.362300515174866,-3.83361959457397,-0.588920593261719,0.266937136650085,-4.21363592147827,-0.572528839111328,0.271601438522339,-4.43914175033569,-0.51187801361084,0.158854365348816,-4.57200384140015,-0.464360237121582,0.0578903257846832,-4.61496829986572,-0.460443496704102,0.0238495767116547,-0.0511245727539063,0.379849433898926,0.0166667699813843,-0.202141284942627,0.401088714599609,0.130001902580261,-0.422233104705811,0.415726661682129,0.0877734422683716,-0.518206596374512,0.374316215515137,0.203338503837585,-0.502190589904785,0.351592063903809,0.122506380081177,-0.749581813812256,-0.00570201873779297,0.3481764793396,-1.08540201187134,-0.105393409729004,0.645656108856201,-1.28688907623291,-0.0739173889160156,0.695549726486206,-1.45427465438843,-0.314207077026367,0.732788562774658,-1.79002332687378,-0.561708450317383,0.824611663818359,-2.24240446090698,-0.657711029052734,0.796054363250732,-2.60601329803467,-0.688046455383301,0.790610313415527,-2.93017768859863,-0.800568580627441,0.657068252563477,-2.98134851455688,-0.866257667541504,0.0826631784439087,-3.88569688796997,-1.36643218994141,0.173183679580688,-3.81941938400269,-1.33504390716553,0.268603980541229,-3.71275615692139,-1.28314304351807,0.391762137413025,-3.52135038375854,-1.18393421173096,0.52185845375061,-3.25527811050415,-1.03732585906982,0.00130021572113037,0.0618605613708496,0.238150596618652,0.0272040367126465,-0.0279569625854492,0.291244506835938,0.105779647827148,-0.164923667907715,0.233454704284668,0.0429710149765015,-0.322192668914795,0.0164394378662109,0.243497252464294,-0.558647632598877,-0.114914894104004,0.41335391998291,-0.859087944030762,-0.240652084350586,0.551235437393188,-1.15540742874146, +-0.283275604248047,0.713372468948364,-1.47971773147583,-0.412161827087402,0.753958940505981,-1.62605905532837,-0.510841369628906,0.752513408660889,-1.86960077285767,-0.625700950622559,0.714761257171631,-2.22796869277954,-0.69214916229248,0.655751943588257,-2.72221899032593,-0.718532562255859,0.627507448196411,-3.08772134780884,-0.757235527038574,0.530466675758362,-3.28152704238892,-0.824349403381348,0.460803747177124,-3.55179643630981,-0.996548652648926,0.371232509613037,-3.86454820632935,-1.12374305725098,0.295677900314331,-4.11575698852539,-1.18947124481201,0.212086856365204,-4.25130224227905,-1.23696231842041,0.113589078187943,-4.24770307540894,-1.2570333480835,0.0748213529586792,-0.325133800506592,0.199088096618652,0.0787590742111206,-0.45670223236084,0.406325340270996,0.20231705904007,-0.424146175384521,0.52549934387207,0.265589714050293,-0.442548751831055,0.547805786132813,0.361996054649353,-0.371156692504883,0.523711204528809,0.364618301391602,-0.514509201049805,0.389647483825684,0.404423713684082,-0.82459545135498,0.280917167663574,0.373285531997681,-1.11961269378662,0.0285482406616211,0.947880506515503,-2.78793048858643,-0.886056900024414,1.0333137512207,-2.62362432479858,-0.695533752441406,1.13152885437012,-2.27257442474365,-0.479570388793945,0.894246816635132,-1.75865936279297,-0.268038749694824,0.494160175323486,-1.3349289894104,-0.252994537353516,0.130112111568451,-3.50814247131348,-1.43553352355957,0.269493043422699,-3.47156238555908,-1.38404369354248,0.394014954566956,-3.39492702484131,-1.31021499633789,0.541955947875977,-3.16563606262207,-1.32384872436523,0.681759357452393,-2.97904682159424,-1.18587589263916,0.81246030330658,-2.84486961364746,-1.00640487670898,0,4.9591064453125e-05,0,0,5.56707382202148e-05,0,0,4.36305999755859e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.37633895874023e-05,0,0,5.56707382202148e-05,0,0,3.58819961547852e-05,0,0.00176429748535156,-0.000753521919250488, +0.00410366058349609,0.0396416187286377,-0.0199744701385498,0.0907726287841797,-0.00631392002105713,-0.0104916095733643,-0.000285148620605469,-0.000500917434692383,-0.000766754150390625,-4.9591064453125e-05,0,5.15580177307129e-05,0,0,5.75482845306396e-05,0,0,5.35547733306885e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,5.37112355232239e-05,0,2.19345092773438e-05,1.57356262207031e-05,3.24249267578125e-05,0.0226650238037109,-0.00922083854675293,0.0528936386108398,0.0181710720062256,-0.00694751739501953,0.0411758422851563,0,3.96966934204102e-05,0,0,5.18560409545898e-05,0,0,4.9591064453125e-05,0,0.429106831550598,-2.21341514587402,-3.05181169509888,0.587434053421021,-2.788893699646,-2.98111915588379,0.528124809265137,-2.04020214080811,-2.42399597167969,0.757014513015747,-2.78049945831299,-2.22387075424194,0.736103057861328,-1.66329193115234,-1.92151546478271,0.973914861679077,-2.40817356109619,-1.77413988113403,0.871625900268555,-1.08912467956543,-1.3632800579071,1.14715719223022,-1.84020805358887,-1.27145862579346,0.782413959503174,-0.582550048828125,-0.794174790382385,1.12213182449341,-1.25661611557007,-0.798224687576294,0.209013938903809,-0.0506958961486816,-0.0750973224639893,0.762495040893555,-0.484314441680908,-0.153892278671265,0,4.57763671875e-05,0,0.613912105560303,-0.322206974029541,-0.0294524431228638,0.824275016784668,-1.38063526153564,-1.65113854408264,1.087557554245,-2.13010406494141,-1.51366519927979,0.470392227172852,-0.182872295379639,-0.291211605072021,0.908078670501709,-0.711316585540771,-0.345558166503906,0.500911235809326,-2.42184543609619,-3.0910472869873,0.716077566146851,-2.39155864715576,-2.48079633712769,0.918516159057617,-2.11125755310059,-1.96627521514893,1.04473733901978,-1.81003761291504,-1.70116424560547,1.12514686584473,-1.49405288696289,-1.42338633537292,1.06615352630615,-0.923827171325684,-0.882607698440552,0.778719902038574,-0.442072868347168,-0.380303025245667,0.578576564788818,-0.256718635559082,-0.164093852043152,0.398116588592529,-0.148332595825195,-0.03399658203125,0.269158244132996, +-0.148257255554199,0.204230308532715,0.238911151885986,-0.327825784683228,0.0930271148681641,0.262909054756165,-0.318382978439331,0.0852575302124023,0.356604337692261,-0.218940734863281,0.214080810546875,0.17146372795105,-0.28376030921936,0.0394039154052734,0.184884071350098,-0.33283257484436,0.0746049880981445,0.0383208990097046,-0.183905363082886,0.0515031814575195,0.0490539073944092,-0.150354146957397,0.0307683944702148,0.017705500125885,-0.190767526626587,0.0601949691772461,0.0208699703216553,-0.142558574676514,0.0357818603515625,0.372548222541809,-0.198884248733521,0.242533683776855,0.245938539505005,-0.10346531867981,0.216276168823242,0.426676273345947,-0.369240045547485,0.468070030212402,0.401038408279419,-0.761683464050293,0.528700828552246,0.277950286865234,-1.1540355682373,0.413956642150879,0.460744619369507,-1.31974411010742,-0.182164192199707,0.950896024703979,-1.93229007720947,-0.359271049499512,1.22333526611328,-2.41949796676636,-0.529160976409912,1.16051459312439,-2.60768365859985,-0.782022476196289,1.0014979839325,-2.75258922576904,-1.04473972320557,0.866901397705078,-2.8786678314209,-1.24020671844482,0.728325247764587,-3.01641273498535,-1.4200496673584,0.575367331504822,-3.12852191925049,-1.61562252044678,0.433019280433655,-3.17147541046143,-1.70876502990723,0.305598735809326,-3.23399353027344,-1.81988525390625,0.169963151216507,-3.22827339172363,-1.91837024688721,0.00238654017448425,-0.24395489692688,0.0467414855957031,0.0520484149456024,-0.272543430328369,0.127676010131836,0.0741000473499298,-0.318161249160767,0.185541152954102,0.0423099994659424,-0.317617654800415,0.124032020568848,-0.0267570614814758,-0.169309854507446,0.0102529525756836,-0.00851204991340637,-0.19238805770874,0.0424127578735352,-0.0254006683826447,-0.117189645767212,-0.0142650604248047,-0.0242868363857269,-0.131001472473145,-0.0201587677001953,-0.00653713941574097,-0.102834463119507,-0.0259170532226563,-0.000388234853744507,-0.153913974761963,-0.0443181991577148,0.0026891827583313,-0.0940866470336914,-0.0200414657592773,0.0124976634979248, +-0.122319221496582,-0.0283288955688477,0.00645685195922852,-0.0829179286956787,0.000410079956054688,0.0126925110816956,-0.0840368270874023,0.00420379638671875,0.0182572603225708,-0.125449895858765,-0.00655460357666016,0.0311559438705444,-0.114424467086792,0.00174999237060547,0.125742197036743,-0.267599821090698,0.0222892761230469,0.126036286354065,-0.236191034317017,0.0176172256469727,0.258617877960205,-0.435931921005249,0.147397994995117,0.337897062301636,-0.364614486694336,0.226723670959473,0.134936153888702,-0.353718280792236,0.0946073532104492,0.262847423553467,-0.401793479919434,0.420165061950684,0.0787613987922668,-0.336824417114258,0.31291675567627,0.0517316460609436,-0.318754911422729,0.142420768737793,0.225206673145294,-0.420160293579102,0.126312255859375,0.332098782062531,-0.413535594940186,0.30824089050293,0.0119953751564026,-0.260523080825806,0.0746068954467773,-0.0296319127082825,-0.181451320648193,0.0239934921264648,-0.0323618054389954,-0.119811058044434,-0.0133142471313477,-0.00621944665908813,-0.111472129821777,-0.0305757522583008,0.00474882125854492,-0.098182201385498,-0.0221529006958008,0.0067901611328125,-0.0773968696594238,0.000184059143066406,0.0196136236190796,-0.11441445350647,-0.00568389892578125,0.120545625686646,-0.249274969100952,0.0198249816894531,0.285335063934326,-0.430282354354858,0.18377685546875,0.270615518093109,-0.437467336654663,0.196501731872559,0.169114112854004,-0.365732908248901,0.176479339599609,0.0656782388687134,-0.329670667648315,0.204427719116211,0.0516946613788605,-0.324702262878418,0.158588409423828,0.0614326000213623,-0.327144622802734,0.181567192077637,0.0738862752914429,-0.335296869277954,0.253080368041992,0.194508194923401,-0.363091945648193,0.259476661682129,0.301060557365417,-0.435783624649048,0.251914978027344,0.308319330215454,-0.407520532608032,0.205934524536133,0.123772978782654,-0.242557048797607,0.0203828811645508,0.0243688821792603,-0.110809087753296,-0.00254154205322266,0.00876206159591675,-0.0775513648986816,0.00127506256103516,0.00775140523910522,-0.104838609695435, +-0.0238285064697266,-0.00667363405227661,-0.119016408920288,-0.0333271026611328,-0.0323114395141602,-0.120457410812378,-0.0155296325683594,-0.0259383320808411,-0.188210725784302,0.0309648513793945,0.0296934545040131,-0.274239063262939,0.100456237792969,0.0602253675460815,-0.290012359619141,0.158845901489258,0.0187960267066956,-0.155028820037842,-0.0329389572143555,0.0166424512863159,-0.0969312191009521,0.00914192199707031,0.0198119878768921,-0.11871075630188,0.0205774307250977,0.0273685455322266,-0.170188188552856,-0.0137510299682617,0.0436649322509766,-0.130039215087891,0.0198211669921875,0.0370056629180908,-0.118021249771118,0.00976085662841797,0.134563326835632,-0.239751815795898,0.0168581008911133,0.153985977172852,-0.2586989402771,0.0240907669067383,0.171854853630066,-0.330002546310425,0.0652370452880859,0.192242741584778,-0.343642473220825,0.0924558639526367,0.207261204719543,-0.336710929870605,0.110576629638672,0.216497898101807,-0.32023024559021,0.115226745605469,0.229510068893433,-0.308330535888672,0.109374046325684,0.25173819065094,-0.308853149414063,0.0958013534545898,0.362590670585632,-0.303468704223633,0.240632057189941,0.368668794631958,-0.259826898574829,0.225103378295898,0.4159836769104,-0.335164546966553,0.304923057556152,0.403430581092834,-0.242408275604248,0.26060962677002,0.427177309989929,-0.3762526512146,0.40736198425293,0.478732109069824,-0.334254264831543,0.302339553833008,0.389907479286194,-0.165140390396118,0.281497001647949,0.277630567550659,-0.0893516540527344,0.252745628356934,0.266648650169373,-0.23530101776123,0.127963066101074,0.322120428085327,-0.281650304794312,0.154811859130859,0.315815448760986,-0.291312217712402,0.173887252807617,0.298902273178101,-0.313239574432373,0.19145679473877,0.291505575180054,-0.347707986831665,0.187405586242676,0.271366357803345,-0.382626533508301,0.169201850891113,0.243457078933716,-0.399445056915283,0.139802932739258,0.217123627662659,-0.394793748855591,0.103262901306152,0.00236183404922485,-0.113918542861938,0.0311832427978516,0.007423996925354,-0.139986991882324, +0.0403213500976563,0.0116089582443237,-0.106905937194824,0.0290899276733398,0.00126710534095764,-0.0164955854415894,0.00429344177246094,0.0120775103569031,-0.0430146455764771,0.0109357833862305,0.00591063499450684,-0.0692640542984009,0.0129299163818359,9.45031642913818e-05,-0.0002288818359375,6.866455078125e-05,0.00516963005065918,-0.0148504972457886,0.00375938415527344,-0.00464379787445068,-0.0444010496139526,0.00467491149902344,0.00833868980407715,-0.168479323387146,0.0551204681396484,0.00499141216278076,-0.189085245132446,0.0592374801635742,0.0185831785202026,-0.155862331390381,0.0471334457397461,0.0877865552902222,-0.0766000747680664,0.130114555358887,0.109389662742615,-0.115646600723267,0.130031585693359,-0.00446116924285889,-0.104441404342651,0.117117881774902,0.0207839012145996,-0.129409551620483,0.112070083618164,-0.0180604457855225,-0.0999941825866699,0.0285024642944336,0.0078204870223999,-0.135672807693481,0.0599184036254883,0.0058976411819458,-0.140500783920288,0.0274181365966797,0.0437668561935425,-0.199825286865234,0.0481357574462891,0.0282301902770996,-0.162311553955078,0.0390195846557617,0.0775235891342163,-0.231406450271606,0.0592689514160156,0.0731091499328613,-0.18602442741394,0.0699367523193359,0.0438846349716187,-0.174876689910889,0.0567512512207031,0.132345676422119,-0.190959692001343,0.0960407257080078,0.185684323310852,-0.307529926300049,0.0920639038085938,0.132864236831665,-0.279785394668579,0.0803546905517578,0.0839213132858276,-0.243286848068237,0.0644054412841797,0.113455414772034,-0.283197164535522,0.0722208023071289,0.196384191513062,-0.344196319580078,0.0878963470458984,0.0198405981063843,-0.194700717926025,0.0700664520263672,0.0104068517684937,-0.206382751464844,0.0668725967407227,0.0265704393386841,-0.178588628768921,0.0539522171020508,0.130278825759888,-0.288167238235474,0.0695352554321289,0.159915328025818,-0.323907852172852,0.0822181701660156,0.0919113159179688,-0.0626115798950195,0.163683891296387,-0.00748240947723389,-0.0950970649719238,0.131369590759277,-0.0280033349990845,-0.0737564563751221, +0.0108137130737305,-0.00469553470611572,-0.0164120197296143,0.000759124755859375,0,5.7518482208252e-05,0,0.000586748123168945,-0.00164663791656494,0.000426292419433594,0.0238626003265381,-0.0313584804534912,0.134324073791504,0.31694507598877,-0.0646283626556396,0.338438034057617,0.0721561908721924,-0.105719566345215,0.255721092224121,0.219521284103394,-0.258825778961182,0.460185050964355,0.110914468765259,-0.130447864532471,0.238649368286133,0.288280248641968,-0.698148488998413,0.383760452270508,0.146158695220947,-0.283085346221924,0.190971374511719,0.323277950286865,-0.771990299224854,0.302621841430664,0.43108606338501,-1.12292146682739,0.244349479675293,0.288876533508301,-0.64175009727478,0.145748138427734,0.108730316162109,-0.251811027526855,0.047276496887207,0.264036655426025,-0.505629301071167,0.085418701171875,0.10887336730957,-0.219688177108765,0.0372738838195801,0.208536624908447,-0.327487945556641,0.0602598190307617,0.0815682411193848,-0.137511014938354,0.0316047668457031,0.125462532043457,-0.161531805992126,0.0522637367248535,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,4.37796115875244e-05,0,0.476684093475342,-1.04980182647705,0.20443868637085,0.37031888961792,-0.54822301864624,0.082007884979248,0.454029083251953,-0.832942724227905,0.127573490142822,0.272909164428711,-0.311816692352295,0.0775871276855469,0.555814266204834,-1.3904447555542,-0.014129638671875,0.531250953674316,-0.726297378540039,0.0545930862426758,0.60930061340332,-1.04995536804199,0.0490546226501465,0.639635562896729,-1.3691611289978,0.0978603363037109,0.728708267211914,-1.26158809661865,-0.103704929351807,0.677427768707275,-0.848897457122803,-0.0307397842407227,0.755303382873535,-1.69983911514282,-0.12054443359375,0.834315299987793,-1.8202748298645,-0.244072914123535,1.11957287788391,-2.41077423095703,-0.580368518829346,0.913271427154541,-2.09515905380249,-0.545641899108887,0.867144584655762,-1.78091049194336,-0.398988246917725,0.842697143554688,-1.32951879501343,-0.293518543243408,1.20298314094543,-2.49899435043335,-0.76753044128418, +1.06164050102234,-2.25916290283203,-1.21112823486328,1.04717111587524,-2.08233642578125,-1.02846384048462,1.20706748962402,-2.63443946838379,-1.01777172088623,1.03015422821045,-2.50808906555176,-1.42516994476318,0.630928754806519,-1.91210651397705,-2.14251327514648,0.791608810424805,-2.36323833465576,-2.16638946533203,0.849676609039307,-2.63057136535645,-1.97548341751099,0.997229814529419,-2.76175212860107,-1.30791854858398,0.876262426376343,-2.70338916778564,-1.66796207427979,0.842763185501099,-2.88790512084961,-1.50988626480103,0.746124744415283,-2.89934730529785,-1.86037826538086,0.460432171821594,-2.14694976806641,-2.75484180450439,0.64713454246521,-2.41752529144287,-2.79953670501709,0.71799898147583,-2.77308177947998,-2.66032838821411,0.682955622673035,-3.00131225585938,-2.20609378814697,0.719138622283936,-3.0711727142334,-1.7230110168457,0.569695353507996,-3.16319942474365,-2.04273319244385,0.574126005172729,-3.07819938659668,-2.52708721160889,0.325594186782837,-2.20742988586426,-3.33380937576294,0.418760597705841,-2.39176368713379,-3.37789535522461,0.414612770080566,-2.82071495056152,-3.24286127090454,0.208588302135468,-2.18624210357666,-3.42351150512695,0.285749971866608,-2.38451194763184,-3.56105709075928,0.309281647205353,-2.85214233398438,-3.34271717071533,0.311272978782654,-3.20470523834229,-2.386155128479,0.435821890830994,-3.22135925292969,-2.23904228210449,0.406051516532898,-3.13102245330811,-2.76989269256592,0.273038268089294,-3.18094825744629,-2.88313007354736,0.107079192996025,-2.15226936340332,-3.47710704803467,0.164821058511734,-2.37435340881348,-3.6203179359436,0.178544759750366,-2.83029270172119,-3.47219610214233,0.201285064220428,-3.20364284515381,-2.48311328887939,0.202762186527252,-3.27687740325928,-2.9235692024231,1.05043172836304,-1.82505750656128,-0.823495864868164,1.01930856704712,-1.52486133575439,-0.641207695007324,0.861293792724609,-0.817948341369629,-1.07685661315918,1.13562488555908,-1.2004337310791,-1.14543747901917,1.15831422805786,-1.54989767074585,-1.03379726409912,0.976222991943359, +-1.18040895462036,-0.461460113525391,0.653532981872559,-0.364497184753418,-0.526381611824036,0.944443702697754,-0.670258045196533,-0.621182680130005,1.03385782241821,-0.971292495727539,-0.564517259597778,0.89810037612915,-0.8672194480896,-0.267529726028442,0.80557918548584,-0.899808406829834,-0.148506164550781,0.789274215698242,-0.615780353546143,-0.0933570861816406,0.711305618286133,-0.637082099914551,-0.0169541835784912,0.580154895782471,-0.573229551315308,0.0449614524841309,0.427742958068848,-0.456669569015503,0.0764865875244141,0.661228179931641,-0.417998790740967,0.0147385597229004,0.596925258636475,-0.421829462051392,0.0684480667114258,0.472282409667969,-0.367094755172729,0.10968542098999,0.313942909240723,-0.269809246063232,0.103384733200073,0.152200698852539,-0.147440075874329,0.0678210258483887,0,4.17232513427734e-05,0,0,4.36305999755859e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.19752502441406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,5.36441802978516e-05,0,0,4.57763671875e-05,0,0,3.78452241420746e-05,0,0,4.38094139099121e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,5.17368316650391e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.7848949432373e-05,0,0,4.57763671875e-05,0,0,4.97438013553619e-05,0,0,4.97456640005112e-05,0,0,5.3703784942627e-05,0,0,4.37498092651367e-05,0,0.0189361572265625,0.00106942653656006,0.00930428504943848,0.0140495300292969,0.00199568271636963,0.00662922859191895,0.0464878082275391,0.000829219818115234,0.0182715654373169,0.0363445281982422,0.00394558906555176,0.0123708248138428,0.086482048034668,-0.0064232349395752,0.0265654921531677,0.0718479156494141,0.000900506973266602,0.0172575712203979,0.137413024902344,-0.025160551071167,0.0363833978772163,0.120084762573242,-0.0124435424804688,0.0186935067176819, +0.194985866546631,-0.0532529354095459,0.0465967655181885,0.175286293029785,-0.0327281951904297,0.0177144408226013,0.249937057495117,-0.0896327495574951,0.0600255131721497,0.219147682189941,-0.054018497467041,0.0199210047721863,0,4.77433204650879e-05,0,0,4.97549772262573e-05,0,0,5.17368316650391e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.99351119995117e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05,0,0,5.17293810844421e-05,0,0,5.3703784942627e-05,0,0.0208978652954102,0.00206506252288818,0.00951457023620605,0.05108642578125,0.00337839126586914,0.0173348188400269,0.093501091003418,-0.00302481651306152,0.0231925845146179,0.147327423095703,-0.0238828659057617,0.0267156511545181,0.206583976745605,-0.0519812107086182,0.0369440913200378,0.257768154144287,-0.0821266174316406,0.0466225743293762,0,4.97102737426758e-05,0,0,4.97438013553619e-05,0,0,4.18424606323242e-05,0,0,4.57763671875e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,4.78029251098633e-05,0,0,5.37633895874023e-05,0,0,5.37112355232239e-05,0,0,5.17368316650391e-05,0,0.00282907485961914,0.000438451766967773,0.00164675712585449,0.00908994674682617,0.00106334686279297,0.00401496887207031,0.0224089622497559,0.00128746032714844,0.0065535306930542,0.045560359954834,-0.00183868408203125,0.0101884603500366,0.0799837112426758,-0.0145916938781738,0.0135994330048561,0.153715133666992,-0.0435667037963867,0.0168042182922363,0.331444263458252,-0.151659250259399,0.079936146736145,0,5.17070293426514e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.18424606323242e-05,0,0,3.58819961547852e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,5.17368316650391e-05,0,0,3.58577817678452e-05,0,0,3.77893447875977e-05,0,0.00563144683837891,0.000730156898498535,0.00297188758850098,0.0167989730834961,0.00183296203613281,0.00669562816619873,0.0388422012329102,0.00128555297851563,0.0105953216552734,0.0755681991577148,-0.0076291561126709,0.0154536962509155,0.130057334899902,-0.0253686904907227,0.0186856389045715,0.210300922393799,-0.0603265762329102, +0.0219989418983459,0.30624532699585,-0.119712591171265,0.071764349937439,0,5.36441802978516e-05,0,0,3.99351119995117e-05,0,0,3.99351119995117e-05,0,0,4.18424606323242e-05,0,0,4.37498092651367e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.98294830322266e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97549772262573e-05,0,0,3.7848949432373e-05,0,0,4.37498092651367e-05,0,0,5.36441802978516e-05,0,0,4.98294830322266e-05,0,0,4.17232513427734e-05,0,0,3.98159027099609e-05,0,0,3.58819961547852e-05,0,0,4.78029251098633e-05,0,0,3.7848949432373e-05,0,0,5.17293810844421e-05,0,0,3.77893447875977e-05,0,0.0184564590454102,0.00240230560302734,0.00845456123352051,0.0460319519042969,0.00411415100097656,0.0151622295379639,0.0862789154052734,-0.000557422637939453,0.0203412771224976,0.139169692993164,-0.01800537109375,0.0212322324514389,0.196418762207031,-0.043895959854126,0.0229739844799042,0.245133399963379,-0.0695126056671143,0.0290473699569702,0.314326286315918,-0.115705728530884,0.0437030792236328,0.318233966827393,-0.12015700340271,0.0360661745071411,0,5.3703784942627e-05,0,0,5.37335872650146e-05,0,0,4.18424606323242e-05,0,0,4.78029251098633e-05,0,0,5.18560409545898e-05,0,0,4.57763671875e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.98294830322266e-05,0,0,4.37498092651367e-05,0,0,4.78029251098633e-05,0,0,5.37112355232239e-05,0,0,3.98159027099609e-05,0,0.00941944122314453,0.0012974739074707,0.00466704368591309,0.0259647369384766,0.00314807891845703,0.00937700271606445,0.0554275512695313,0.00138664245605469,0.0139721632003784,0.0993680953979492,-0.00939059257507324,0.0173332095146179,0.156794548034668,-0.0278143882751465,0.0187293495982885,0.219293117523193,-0.0592374801635742,0.019048810005188,0.277862548828125,-0.0917134284973145,0.0356582403182983,0.292053699493408,-0.102002620697021,0.0498198270797729,0.206906318664551,-0.0844137668609619,0.0694050788879395,0.15177583694458, +-0.046736478805542,0.0504494309425354,0.103132724761963,-0.0250554084777832,0.0357028841972351,0.0643939971923828,-0.00867819786071777,0.0253354609012604,0.0341968536376953,-0.00252711772918701,0.0148937106132507,0.0126924514770508,-7.12871551513672e-05,0.00647199153900146,0,3.77893447875977e-05,0,0,4.18090494349599e-05,0,0,4.97102737426758e-05,0,0,5.37335872650146e-05,0,0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,4.18424606323242e-05,0,0,5.37107698619366e-05,0,0,4.17828559875488e-05,0,0,3.7848949432373e-05,0,0,4.97549772262573e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.37498092651367e-05,0,0.0163040161132813,-0.00183665752410889,0.00845646858215332,0.0326347351074219,-0.00532984733581543,0.0155807435512543,0,3.98457050323486e-05,0,0,5.37112355232239e-05,0,0,4.57763671875e-05,0,0,3.77893447875977e-05,0,0,4.37498092651367e-05,0,0,4.97102737426758e-05,0,0.0533862113952637,-0.0157837867736816,0.0244034230709076,0.0824484825134277,-0.0264041423797607,0.0335690379142761,0,5.56707382202148e-05,0,0.0482001304626465,-0.0192729234695435,0.0262603759765625,0.117433547973633,-0.0439536571502686,0.0473907589912415,0.0970292091369629,-0.0397639274597168,0.0455466508865356,0.0991463661193848,-0.0437114238739014,0.0453718900680542,0.12677526473999,-0.0555160045623779,0.0545240640640259,0.116855621337891,-0.0476628541946411,0.0508837699890137,0.0673232078552246,-0.028167724609375,0.0355974435806274,0.0657000541687012,-0.0300977230072021,0.0341497659683228,0.151882648468018,-0.0690228939056396,0.0615732669830322,0.116605281829834,-0.0478076934814453,0.0490062236785889,0,4.37498092651367e-05,0,0.214418888092041,-0.109530687332153,0.0810577869415283,0,3.77893447875977e-05,0,0,3.78414988517761e-05,0,0,4.97102737426758e-05,0,0,5.18560409545898e-05,0,0.466182231903076,-0.273423433303833,0.0940988063812256,0.339097023010254,-0.217559814453125,0.105170488357544,0.168030261993408,-0.118490934371948,0.0715177059173584,0,3.96966934204102e-05,0,0,3.77893447875977e-05,0,0,3.58521938323975e-05,0,0,4.97698783874512e-05,0,0, +4.98294830322266e-05,0,0,4.57763671875e-05,0,0.318991661071777,-0.118237018585205,0.0130380392074585,0.498489856719971,-0.235228538513184,0.0339194536209106,0.533641815185547,-0.282056331634521,0.0700638294219971,0.41918420791626,-0.185030221939087,0.0722665786743164,0.433053970336914,-0.182643175125122,0.0566948652267456,0,5.14984130859375e-05,0,0,4.57763671875e-05,0,0.0117964744567871,0.000555753707885742,0.00211858749389648,0,5.38825988769531e-05,0,0.00810527801513672,0.00144600868225098,0.00230526924133301,0.00167560577392578,0.000716209411621094,0.000385046005249023,0.00353097915649414,0.000993967056274414,0.00161957740783691,0.00093841552734375,0.000599145889282227,0.000420093536376953,0.00108480453491211,0.000385046005249023,0.000692129135131836,0.000310420989990234,0.000248074531555176,0.000217914581298828,0,5.37335872650146e-05,0,0,5.37335872650146e-05,0,0,4.77433204650879e-05,0,0,4.97102737426758e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,3.98159027099609e-05,0,0,3.79085540771484e-05,0,0,3.79085540771484e-05,0,0,5.17368316650391e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0.000154495239257813,0.000192403793334961,6.72340393066406e-05,6.81877136230469e-05,0.000109195709228516,5.14984130859375e-05,6.19888305664063e-06,5.17368316650391e-05,3.814697265625e-06,4.29153442382813e-06,5.36441802978516e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,2.86102294921875e-06,2.81333923339844e-05,7.34329223632813e-05,1.28746032714844e-05,1.71661376953125e-05,6.7591667175293e-05,1.52587890625e-05,0,4.77656722068787e-05,0,0,4.18052077293396e-05,0,0,3.98308038711548e-05,0,0,3.78191471099854e-05,0,0,4.97400760650635e-05,0,0,3.98159027099609e-05,0,0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,3.76701354980469e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06, +0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,3.98457050323486e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.57899475097656e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.18126583099365e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.96966934204102e-05,0,0,5.17368316650391e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,3.76701354980469e-05,0,0,4.97102737426758e-05,0,0,3.58521938323975e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.17368316650391e-05,0,0,3.96966934204102e-05,0,0,5.37335872650146e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05, +0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.57627868652344e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0.191609859466553,-0.0375165939331055,-0.262696385383606,0.311736106872559,-0.11002254486084,-0.550766944885254,0.37101149559021,-0.215781211853027,-0.842490315437317,0.39016318321228,-0.357339859008789,-1.13924884796143,0.400905847549438,-0.518028259277344,-1.4237585067749,0.316760063171387,-0.564519882202148,-1.40882658958435,0.291321277618408,-0.68581485748291,-1.61336231231689, +0.180816054344177,-0.842272758483887,-1.76015543937683,-0.0576163530349731,-1.20242023468018,-1.74711966514587,-0.121275365352631,-1.48361492156982,-1.69356346130371,-0.128692507743835,-1.67802715301514,-1.67078018188477,-0.13434824347496,-1.74843788146973,-1.67732620239258,-0.0645041465759277,-1.85645198822021,-1.60848498344421,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0.225814819335938,-0.0454912185668945,-0.188488304615021,0.39359188079834,-0.150570869445801,-0.425641238689423,0.49201226234436,-0.298091888427734,-0.682044148445129,0.560256242752075,-0.486024856567383,-0.971586585044861,0.595525979995728,-0.703287124633789,-1.27321183681488,0.585730314254761,-0.95987606048584,-1.54954767227173,0.513588666915894,-1.18771553039551,-1.80832123756409,0.234317183494568,-1.50303554534912,-1.96172881126404,0.00646138191223145,-1.84406757354736,-2.09678626060486,-0.02663254737854,-2.03256320953369,-2.28856253623962,0.00296741724014282,-2.16547298431396,-2.50919580459595,-0.0439199209213257,-2.31338882446289,-2.70964622497559,-0.0817958414554596,-2.39454174041748,-2.88429856300354,-0.103661671280861,-2.43376445770264,-2.87273764610291,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06, +0.0543923377990723,-0.000706672668457031,-0.127423524856567,0.114013671875,-0.0153236389160156,-0.333367437124252,0.163974761962891,-0.0471982955932617,-0.613050878047943,0.191437959671021,-0.0844669342041016,-0.882405757904053,0.200227975845337,-0.13485050201416,-1.16628456115723,0.191509485244751,-0.216670989990234,-1.4840897321701,0.169329643249512,-0.30129337310791,-1.7927713394165,-0.02443528175354,-0.470231056213379,-1.92893028259277,-0.178231835365295,-0.79938793182373,-1.89968132972717,-0.109901249408722,-1.16049385070801,-1.76840043067932,-0.0684528350830078,-1.32113552093506,-1.71830189228058,-0.058076947927475,-1.35616302490234,-1.65880823135376,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0.0472736358642578,-0.0144309997558594,-0.194230914115906,0.0754680633544922,-0.0361995697021484,-0.380075544118881,0.0850019454956055,-0.0617351531982422,-0.556862115859985,0.0896539688110352,-0.0887737274169922,-0.731592774391174,0.0894256830215454,-0.122884750366211,-0.917616128921509,0.0910214185714722,-0.184228897094727,-1.098792552948,0.0910665392875671,-0.26298713684082,-1.2519246339798,0.0759073495864868,-0.340156555175781,-1.24973583221436,0.0532045364379883,-0.387178421020508,-1.28161692619324,0.0186421796679497,-0.408487319946289,-1.32726788520813,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0.0012572705745697,-0.00130271911621094,-0.126984238624573,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0.1500563621521,-0.0279359817504883,-0.308829426765442,0.234278202056885,-0.078948974609375,-0.618171513080597,0.270505428314209,-0.15317440032959,-0.924089193344116,0.292381525039673,-0.236490249633789,-1.21874475479126,0.293023705482483,-0.336909294128418,-1.50917279720306,0.235146522521973,-0.454517364501953,-1.7991726398468,0.0926376581192017,-0.544807434082031,-1.79607212543488,-0.0401544570922852,-0.664324760437012,-1.94618439674377,-0.0897541642189026,-0.827315330505371,-1.98827278614044,-0.225768566131592,-0.92943286895752,-2.0558762550354,-0.166959255933762,-0.949145317077637, +-2.11386823654175,-0.0619232654571533,-0.988253593444824,-2.13243770599365,0.00490015745162964,-0.0835244655609131,-0.00347805023193359,0.00861334800720215,-0.107266187667847,-0.00454521179199219,0.0237608551979065,-0.16224193572998,-0.0110483169555664,0.0582699775695801,-0.234804391860962,-0.0125360488891602,0.099262535572052,-0.288040161132813,-8.96453857421875e-05,0.150919556617737,-0.342542171478271,0.024688720703125,0.00367277860641479,-0.0815327167510986,-0.00444698333740234,0.00187522172927856,-0.0929820537567139,-0.00470161437988281,0.000677943229675293,-0.12275505065918,-0.00265979766845703,0.00369015336036682,-0.152252674102783,8.86917114257813e-05,0.0123928189277649,-0.190858125686646,0.00412178039550781,0.0292676687240601,-0.230592966079712,0.00697994232177734,0.0651815533638,-0.280663728713989,0.00981616973876953,0.115176796913147,-0.329297065734863,0.0218000411987305,0.174211084842682,-0.374963998794556,0.0460529327392578,0.00971692800521851,-0.135277986526489,-0.00774002075195313,0.0216168761253357,-0.183376550674438,-0.0115089416503906,0.0475989580154419,-0.238319873809814,-0.010955810546875,0.0938278436660767,-0.296490669250488,0.00225830078125,0.00516271591186523,-0.106550455093384,-0.00505256652832031,0,-0.254076480865479,-0.49787712097168,0,-3.4183349609375,-1.92842578887939,0.00401517748832703,-0.278673648834229,-0.499433517456055,0.0246355533599854,-0.524666309356689,-0.765868186950684,0.0840895175933838,-0.631637096405029,-0.948444366455078,0.0130363702774048,-0.26643180847168,-0.497326850891113,0.0116651058197021,-0.356208801269531,-0.62484073638916,-0.0867290496826172,-0.265513896942139,-0.60698413848877,0.0294991135597229,-0.308606147766113,-0.51287841796875,0.0121217370033264,-0.30318546295166,-0.506739616394043,0.226760387420654,-1.07609272003174,-1.06122875213623,0.366555452346802,-1.1963906288147,-1.27931261062622,0.499041080474854,-1.68993711471558,-1.28746366500854,0.453936815261841,-1.96833372116089,-1.12334251403809,0.264442920684814,-2.16825342178345,-1.32987833023071,0.229983806610107, +-2.37471580505371,-1.4005708694458,0.335774779319763,-2.71537113189697,-1.52964782714844,0.246284127235413,-2.82632637023926,-1.7322416305542,0.168368458747864,-3.08938694000244,-1.82515430450439,0.105441391468048,-3.27779531478882,-1.87223243713379,0.0520892888307571,-3.38411474227905,-1.90713882446289,0,0.0353870391845703,-0.0921754837036133,-0.0383689701557159,0.0256609916687012,-0.09625244140625,-0.0754445791244507,-0.059453010559082,-0.100130081176758,0.0319936871528625,-0.191771984100342,-0.023834228515625,0.128327012062073,-0.401576519012451,0.000430107116699219,0.454448938369751,-0.519468784332275,0.0609769821166992,0.706499576568604,-0.750308036804199,-0.132766723632813,0.810858845710754,-1.07325077056885,-0.16667366027832,1.13847720623016,-1.42073822021484,-0.198163986206055,1.2400016784668,-1.71123552322388,-0.260472297668457,1.34237933158875,-1.8002610206604,-0.230586051940918,1.3136397600174,-1.91328954696655,-0.232178688049316,1.19504642486572,-2.0856466293335,-0.22779655456543,0.846326112747192,-2.63033533096313,-0.520725250244141,0.666549921035767,-3.11775875091553,-0.658871650695801,0.51081645488739,-3.6503529548645,-0.754264831542969,0.415620088577271,-4.08840560913086,-0.857828140258789,0.292986631393433,-4.25933933258057,-0.953261375427246,0.192013442516327,-4.38314008712769,-0.989297866821289,0.086982399225235,-4.40688371658325,-0.974821090698242,0,-4.42121982574463,-0.983595848083496,0,0.303285121917725,-0.0826864242553711,-0.0172763168811798,0.342130184173584,-0.0836219787597656,-0.0374497175216675,0.279255390167236,-0.0984201431274414,-0.0486210584640503,0.199287414550781,-0.130045890808105,-0.0713568925857544,0.0419816970825195,-0.190293312072754,0.287804245948792,-0.226634979248047,-0.261513710021973,0.412306427955627,-0.479999542236328,-0.365819931030273,0.551215648651123,-0.745636940002441,-0.434123992919922,0.828890562057495,-1.07253646850586,-0.526510238647461,0.884722232818604,-1.4225902557373,-0.645419120788574,0.933720827102661,-1.68726110458374,-0.848372459411621,0.917501926422119, +-1.96796655654907,-0.952398300170898,0.809031009674072,-2.24691343307495,-0.931211471557617,0.632665157318115,-2.60827684402466,-1.10490989685059,0.537332534790039,-3.13972616195679,-1.09228992462158,0.523427367210388,-3.64660358428955,-1.09530830383301,0.423943161964417,-3.94878005981445,-1.2869987487793,0.294801294803619,-4.12841510772705,-1.45783805847168,0.175571113824844,-4.24385738372803,-1.47663307189941,0.0811211466789246,-4.27949523925781,-1.48287487030029,0,-4.29813146591187,-1.49493026733398,0,-0.363638401031494,-0.387752532958984,0.00499048829078674,-0.468956470489502,-0.38511848449707,0.161550283432007,-0.776218414306641,-0.580183029174805,0.202615261077881,-0.685181617736816,-0.633983135223389,0.0780410766601563,-0.623445749282837,-0.487706184387207,0.118839979171753,-0.627437591552734,-0.560897350311279,-0.0803967714309692,-0.68785548210144,-0.544532775878906,0.0257805585861206,-0.551231145858765,-0.389892578125,0.0124532580375671,-0.569880723953247,-0.382098197937012,0.240933895111084,-0.927172183990479,-0.696023464202881,0.274862766265869,-0.942043781280518,-0.842617988586426,0.346380949020386,-1.3851523399353,-0.838510513305664,0.570999622344971,-1.48397874832153,-0.743602752685547,0.501731395721436,-1.41921615600586,-0.906167507171631,0.419500827789307,-1.51961708068848,-1.10266351699829,0.47130274772644,-1.73494338989258,-1.33297252655029,0.332024216651917,-1.98989486694336,-1.54639863967896,0.214580178260803,-2.24880409240723,-1.62161540985107,0.136758208274841,-2.44698238372803,-1.66559028625488,0.0670570731163025,-2.57139492034912,-1.70961046218872,0,-2.61386489868164,-1.74186611175537,0,-0.0251920223236084,0.00628113746643066,0.00140044093132019,-0.0269298553466797,0.00767683982849121,0.043327808380127,-0.0700244903564453,-0.0223839282989502,0.0558180809020996,-0.0792350769042969,-0.0448708534240723,0.0208711624145508,-0.055938720703125,0.00378608703613281,0.0316469669342041,-0.0636849403381348,-0.00759077072143555,0.0123330354690552,-0.0482540130615234,0.00989389419555664,0.00706857442855835, +-0.0393276214599609,0.0106632709503174,0.00345849990844727,-0.0317223072052002,0.00932073593139648,0.0708177089691162,-0.0910115242004395,-0.0697672367095947,0.0942816734313965,-0.12357234954834,-0.127623796463013,0.115296125411987,-0.16024112701416,-0.191322565078735,0.13436484336853,-0.213353157043457,-1.39744281768799,0.150897026062012,-0.312516212463379,-1.53858542442322,0.162793636322021,-0.454934120178223,-1.71751761436462,0.169199347496033,-0.627337455749512,-1.88699698448181,0.153376817703247,-0.834687232971191,-2.05755496025085,0.137174844741821,-1.00140571594238,-2.14790439605713,0.0961930155754089,-1.13878917694092,-2.22620296478271,0.0489254593849182,-1.23531246185303,-2.30035400390625,0,-1.27465152740479,-2.55684852600098,0,-0.0133914947509766,-0.819142401218414,0,-0.013392448425293,-0.819142520427704,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.819142401218414,0,-0.013392448425293,-0.819142401218414,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142401218414,0,-0.0133914947509766,-0.81914234161377,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.856617331504822,0,-0.013392448425293,-0.856617450714111,0.00267815589904785,-0.0138559341430664,-0.870973229408264,0.00380265712738037,-0.014470100402832,-0.881494700908661,0.00402677059173584,-0.0151700973510742,-0.891004264354706,0.00370794534683228,-0.0152177810668945,-0.900032222270966,0.00271934270858765,-0.0150117874145508,-0.907833993434906,0.00141873955726624,-0.0150957107543945,-0.913255035877228,0,-0.0153589248657227,-0.922449350357056,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0.0350606441497803,-0.00850296020507813, +-0.0650041997432709,0.0525610446929932,-0.0183906555175781,-0.112081825733185,0.0665860176086426,-0.0351028442382813,-1.27941882610321,0.083423376083374,-0.0724430084228516,-1.38187122344971,0.113418102264404,-0.148446083068848,-1.58766031265259,0.132838606834412,-0.23725700378418,-1.7892963886261,0.132796764373779,-0.34352970123291,-1.97831428050995,0.118937492370605,-0.42498779296875,-2.12978744506836,0.0858460068702698,-0.486367225646973,-2.25141453742981,0.0443977117538452,-0.535001754760742,-2.35039877891541,0,-0.559701919555664,-2.6117992401123,0,-0.0944671630859375,0.0178260803222656,0.00345370173454285,-0.101590156555176,0.0210318565368652,0.00855386257171631,-0.120849609375,0.0257501602172852,0.0175602436065674,-0.151004552841187,0.0307111740112305,0.0307639837265015,-0.187418460845947,0.032691478729248,0.0522639751434326,-0.222511291503906,0.0260610580444336,0.079277515411377,-0.256227016448975,0.00923633575439453,0.108109474182129,-0.28433895111084,-0.0137114524841309,0.137265920639038,-0.31202507019043,-0.0527191162109375,0.16720175743103,-0.340553760528564,-0.0912232398986816,0.197365045547485,-0.386851787567139,-0.170851230621338,0.225005865097046,-0.449694156646729,-0.251715183258057,0.2482590675354,-0.539316177368164,-1.4867787361145,0.26236891746521,-0.694639205932617,-1.66016960144043,0.262171030044556,-0.896916389465332,-1.84969663619995,0.258149027824402,-1.13594532012939,-2.0110182762146,0.230617523193359,-1.40600967407227,-2.15848350524902,0.190383791923523,-1.63962173461914,-2.23645067214966,0.129763185977936,-1.82327556610107,-2.2866153717041,0.0648622512817383,-1.94391441345215,-2.3443455696106,0,-1.98796463012695,-2.59763622283936,-0.0341622233390808,-0.164461374282837,0.0305929183959961,-0.0299443006515503,-0.188686609268188,0.0663557052612305,-0.0148810744285583,-0.00939702987670898,0.193273544311523,-0.014712393283844,0.11934757232666,0.232155799865723,-0.970548868179321,-1.53271913528442,-0.323962211608887,-0.738755226135254,-1.489905834198,-0.373745918273926,-0.560338973999023,-1.0959792137146, +-0.255801200866699,-0.666013836860657,-1.15102481842041,-0.350061416625977,-0.24839448928833,-0.504721164703369,-0.0989503860473633,-0.341622114181519,-0.584127426147461,-0.072911262512207,-0.0319825410842896,-0.315948963165283,0.0150775909423828,-0.0916788578033447,-0.420048713684082,-0.0907573699951172,-0.0890190601348877,-0.115272521972656,0.196934700012207,-0.0616759657859802,-0.184471130371094,0.194435119628906,-0.05064857006073,0.0412383079528809,0.295024871826172,-0.0299847722053528,-0.0835518836975098,0.204167366027832,-0.518550992012024,-0.831790924072266,-0.249368667602539,-0.402602910995483,-0.811461925506592,-0.240383148193359,-0.758589029312134,-1.68888998031616,-0.496657371520996,-0.970162391662598,-1.69086170196533,-0.437607765197754,-0.809884071350098,-1.88933658599854,-0.524957656860352,-1.01710438728333,-1.81697130203247,-0.431324005126953,-0.745644092559814,-2.20989990234375,-0.570435523986816,-1.02589929103851,-2.01717329025269,-0.404356002807617,-0.678882360458374,-2.64510250091553,-0.594882965087891,-1.03945779800415,-2.20559549331665,-0.355009078979492,-0.764589071273804,-2.72341728210449,-0.516990661621094,-0.542093992233276,-3.01856327056885,-0.661247253417969,-0.64812171459198,-3.22184896469116,-0.673805236816406,-0.451160192489624,-3.34381914138794,-0.805196762084961,-0.432952523231506,-3.79657506942749,-0.93474292755127,-0.479578137397766,-3.7563648223877,-0.715642929077148,-0.304909348487854,-4.18932676315308,-1.04739284515381,-0.351805090904236,-4.20384693145752,-0.734683990478516,-0.276746988296509,-4.50978231430054,-1.08261775970459,-0.302019119262695,-4.46344661712646,-0.684304237365723,-0.169037222862244,-4.59455633163452,-1.13482475280762,-0.194491267204285,-4.55690336227417,-0.662863731384277,-0.0864053666591644,-4.63854598999023,-1.10697555541992,-0.076183408498764,-4.58103322982788,-0.63715934753418,0.000178039073944092,0.259281158447266,0.435553550720215,-0.0410286784172058,0.15602970123291,0.473174095153809,-0.0658186674118042,-0.0277299880981445,0.417851448059082,0.0218551158905029, +-0.21933126449585,0.146876335144043,-0.175308585166931,-0.544919490814209,0.00840187072753906,-0.345679759979248,-0.85853099822998,-0.189642906188965,-0.582812070846558,-1.08678340911865,-0.240077018737793,-0.762976169586182,-1.50393533706665,-0.321114540100098,-0.770382404327393,-1.70810985565186,-0.421938896179199,-0.82622241973877,-1.87789106369019,-0.425107002258301,-0.798607349395752,-2.16573190689087,-0.437471389770508,-0.754019021987915,-2.53351831436157,-0.440208435058594,-0.48216438293457,-2.96111726760864,-0.609026908874512,-0.349138975143433,-3.41663026809692,-0.725390434265137,-0.383064150810242,-3.87995672225952,-0.832250595092773,-0.257233142852783,-4.27091884613037,-0.712564468383789,-0.236864984035492,-4.51978349685669,-0.713308334350586,-0.160877227783203,-4.62273454666138,-0.728154182434082,-0.0840188264846802,-4.63428735733032,-0.744982719421387,-0.0153195858001709,0.0758843421936035,0.443341255187988,-0.0384217500686646,-0.0197749137878418,0.451126098632813,-0.0724345445632935,-0.13263463973999,0.358026504516602,-0.104572415351868,-0.261021614074707,0.0670022964477539,-0.312522411346436,-0.574151039123535,-0.00115585327148438,-0.433698177337646,-0.834066390991211,-0.156612396240234,-0.591951847076416,-1.12963056564331,-0.255678176879883,-0.820226669311523,-1.53470897674561,-0.28270149230957,-0.819543838500977,-1.70456409454346,-0.363771438598633,-0.897676944732666,-1.85460996627808,-0.368985176086426,-0.893760919570923,-2.07926225662231,-0.359246253967285,-0.931330680847168,-2.35119247436523,-0.302441596984863,-0.677174687385559,-2.80582571029663,-0.53980827331543,-0.486181020736694,-3.28075218200684,-0.672480583190918,-0.362299919128418,-3.83361959457397,-0.588920593261719,-0.266243457794189,-4.21425008773804,-0.571331024169922,-0.271652162075043,-4.43896627426147,-0.51195240020752,-0.159096240997314,-4.57102727890015,-0.464558601379395,-0.0576406121253967,-4.61490154266357,-0.459460258483887,-0.0238500535488129,-0.0511302947998047,0.379848480224609,-0.0166676640510559,-0.202142715454102,0.401088714599609, +-0.130002021789551,-0.42223072052002,0.415726661682129,-0.0877763032913208,-0.518206596374512,0.374316215515137,-0.203339219093323,-0.502190113067627,0.351589202880859,-0.122507333755493,-0.749584674835205,-0.00570487976074219,-0.348177671432495,-1.08540391921997,-0.105393409729004,-0.645654916763306,-1.28688812255859,-0.0739154815673828,-0.695544958114624,-1.45427417755127,-0.314205169677734,-0.733131647109985,-1.79014730453491,-0.561808586120605,-0.824611663818359,-2.24240446090698,-0.657711029052734,-0.797049999237061,-2.60633563995361,-0.688344955444336,-0.790611982345581,-2.93017768859863,-0.800568580627441,-0.657069802284241,-2.98134851455688,-0.866256713867188,-0.0826631188392639,-3.88569498062134,-1.36643218994141,-0.173183858394623,-3.819420337677,-1.33504390716553,-0.268604278564453,-3.71275615692139,-1.28314304351807,-0.391762495040894,-3.52134847640991,-1.18393421173096,-0.521859169006348,-3.25527811050415,-1.03732490539551,-0.00129973888397217,0.0618600845336914,0.238152503967285,-0.0272052884101868,-0.0279569625854492,0.291245460510254,-0.105778217315674,-0.164924621582031,0.233453750610352,-0.0429707765579224,-0.322196483612061,0.0164413452148438,-0.243497610092163,-0.558650970458984,-0.114914894104004,-0.413354516029358,-0.859090328216553,-0.240654945373535,-0.551237344741821,-1.15541124343872,-0.283275604248047,-0.713369607925415,-1.47972059249878,-0.412162780761719,-0.753955602645874,-1.62606000900269,-0.510837554931641,-0.75251317024231,-1.86960077285767,-0.625700950622559,-0.715405941009521,-2.22862386703491,-0.692744255065918,-0.656044960021973,-2.72219228744507,-0.718756675720215,-0.627431392669678,-3.08766603469849,-0.757404327392578,-0.53047776222229,-3.28153085708618,-0.82426643371582,-0.460805773735046,-3.55179834365845,-0.996541023254395,-0.371232628822327,-3.86454629898071,-1.12374305725098,-0.295677900314331,-4.11575794219971,-1.18947315216064,-0.212087035179138,-4.25130414962769,-1.23696231842041,-0.113589018583298,-4.24770498275757,-1.25703525543213,-0.074822261929512,-0.325136184692383, +0.199091911315918,-0.0787567496299744,-0.456704139709473,0.406329154968262,-0.202319860458374,-0.424146175384521,0.52549934387207,-0.265586614608765,-0.44255256652832,0.54780387878418,-0.361997842788696,-0.371156215667725,0.523711204528809,-0.364619970321655,-0.514510154724121,0.389647483825684,-0.404422998428345,-0.824597358703613,0.28092098236084,-0.373283386230469,-1.11961269378662,0.0285491943359375,-0.947881698608398,-2.78792858123779,-0.886055946350098,-1.0333137512207,-2.62362432479858,-0.695533752441406,-1.13152885437012,-2.27257442474365,-0.479570388793945,-0.894345998764038,-1.75871086120605,-0.267969131469727,-0.494157314300537,-1.33492851257324,-0.252994537353516,-0.130112618207932,-3.50814342498779,-1.4355297088623,-0.269493818283081,-3.47156238555908,-1.3840446472168,-0.394015729427338,-3.39492797851563,-1.31021499633789,-0.541956424713135,-3.16563606262207,-1.32384967803955,-0.681759476661682,-2.97904682159424,-1.18587493896484,-0.812460899353027,-2.84486961364746,-1.00640392303467,0,4.9591064453125e-05,0,0,5.56707382202148e-05,0,0,4.36305999755859e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.37633895874023e-05,0,0,5.56707382202148e-05,0,0,3.58819961547852e-05,0,-0.00176429748535156,-0.000753521919250488,0.00410366058349609,-0.0396416187286377,-0.0199744701385498,0.0907726287841797,0.00631368160247803,-0.0104912519454956,-0.000285148620605469,0.000500917434692383,-0.000766754150390625,-4.9591064453125e-05,0,5.15580177307129e-05,0,0,5.75482845306396e-05,0,0,5.35547733306885e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,5.37112355232239e-05,0,-2.19345092773438e-05,1.57356262207031e-05,3.24249267578125e-05,-0.0226650238037109,-0.00922083854675293,0.0528926849365234,-0.0181713104248047,-0.00694751739501953,0.0411767959594727,0,3.96966934204102e-05,0,0,5.18560409545898e-05,0,0,4.9591064453125e-05,0,-0.429106831550598,-2.21341514587402,-3.05181169509888,-0.587434053421021, +-2.788893699646,-2.98111915588379,-0.528124809265137,-2.04020214080811,-2.42399597167969,-0.756921768188477,-2.78125286102295,-2.2230749130249,-0.736103057861328,-1.66329193115234,-1.92151546478271,-0.973914861679077,-2.40817356109619,-1.77413988113403,-0.871625900268555,-1.08912467956543,-1.3632800579071,-1.14715719223022,-1.84020805358887,-1.27145862579346,-0.782413959503174,-0.582550048828125,-0.794174790382385,-1.12213182449341,-1.25661611557007,-0.798224687576294,-0.209013938903809,-0.0506958961486816,-0.0750973224639893,-0.762495040893555,-0.484314441680908,-0.153892278671265,0,4.57763671875e-05,0,-0.613912105560303,-0.322206974029541,-0.0294524431228638,-0.824275016784668,-1.38063526153564,-1.65113854408264,-1.087557554245,-2.13010406494141,-1.51366519927979,-0.470392227172852,-0.182872295379639,-0.291211605072021,-0.908078670501709,-0.711316585540771,-0.345558166503906,-0.500911235809326,-2.42184543609619,-3.0910472869873,-0.716077566146851,-2.39155864715576,-2.48079633712769,-0.918516159057617,-2.11125755310059,-1.96627521514893,-1.04473733901978,-1.81003761291504,-1.70116424560547,-1.12514686584473,-1.49405288696289,-1.42338633537292,-1.06615352630615,-0.923827171325684,-0.882607698440552,-0.778719902038574,-0.442072868347168,-0.380303025245667,-0.578576564788818,-0.256718635559082,-0.164093852043152,-0.398116588592529,-0.148332595825195,-0.03399658203125,-0.26915967464447,-0.148256301879883,0.204230308532715,-0.238911032676697,-0.327825546264648,0.0930280685424805,-0.262909531593323,-0.318381786346436,0.0852565765380859,-0.356605291366577,-0.21893835067749,0.214081764221191,-0.171464085578918,-0.283759355545044,0.0394039154052734,-0.184884786605835,-0.332833290100098,0.0746040344238281,-0.0383219718933105,-0.183906555175781,0.0515012741088867,-0.0490548610687256,-0.150355577468872,0.030766487121582,-0.0177052021026611,-0.190766096115112,0.0601959228515625,-0.0208699703216553,-0.142557382583618,0.0357809066772461,-0.372549772262573,-0.198882818222046,0.242534637451172,-0.245940566062927,-0.103464365005493, +0.216277122497559,-0.426675081253052,-0.369240999221802,0.468073844909668,-0.401036024093628,-0.761683464050293,0.528700828552246,-0.277949810028076,-1.15403747558594,0.41395378112793,-0.460745096206665,-1.3197455406189,-0.182164192199707,-0.950897932052612,-1.93229198455811,-0.359278678894043,-1.22227835655212,-2.41969060897827,-0.528048515319824,-1.16042566299438,-2.60772943496704,-0.782027721405029,-1.00149893760681,-2.75258922576904,-1.04474115371704,-0.866901993751526,-2.87866878509521,-1.24020767211914,-0.728325247764587,-3.01641273498535,-1.4200496673584,-0.575405955314636,-3.12879371643066,-1.61523532867432,-0.433019280433655,-3.17147541046143,-1.70876502990723,-0.305598735809326,-3.23399353027344,-1.81988525390625,-0.170303583145142,-3.22848415374756,-1.91799259185791,-0.00238531827926636,-0.243952989578247,0.0467414855957031,-0.0520474016666412,-0.272547721862793,0.127676963806152,-0.0740983784198761,-0.31816554069519,0.185544967651367,-0.042309433221817,-0.317618608474731,0.124037742614746,0.026758223772049,-0.169308662414551,0.0102529525756836,0.00851312279701233,-0.19238805770874,0.0424108505249023,0.0254010856151581,-0.117187738418579,-0.0142650604248047,0.024287611246109,-0.131000518798828,-0.0201587677001953,0.00653719902038574,-0.102832555770874,-0.0259151458740234,0.000388354063034058,-0.153913021087646,-0.0443181991577148,-0.00268900394439697,-0.094085693359375,-0.0200414657592773,-0.0124976634979248,-0.12231707572937,-0.0283288955688477,-0.00645709037780762,-0.0829179286956787,0.000410079956054688,-0.0126924514770508,-0.084036111831665,0.00420379638671875,-0.0182580947875977,-0.125450134277344,-0.00655460357666016,-0.0311571359634399,-0.114425897598267,0.00174999237060547,-0.125742793083191,-0.267600536346436,0.0222883224487305,-0.126038074493408,-0.236190795898438,0.0176181793212891,-0.258617520332336,-0.435931444168091,0.147398948669434,-0.337897062301636,-0.364611625671387,0.226723670959473,-0.134939610958099,-0.353721380233765,0.094609260559082,-0.262851715087891,-0.40179443359375,0.420161247253418, +-0.078761875629425,-0.336824417114258,0.312920570373535,-0.0517332553863525,-0.318755149841309,0.142422676086426,-0.225209534168243,-0.420161008834839,0.126312255859375,-0.332099914550781,-0.413535594940186,0.308238983154297,-0.0119942128658295,-0.260522603988647,0.0746049880981445,0.0296330153942108,-0.181449890136719,0.0239906311035156,0.0323625206947327,-0.119809627532959,-0.0133142471313477,0.00621932744979858,-0.111470222473145,-0.0305767059326172,-0.0047488808631897,-0.0981812477111816,-0.0221529006958008,-0.00679004192352295,-0.0773963928222656,0.000184059143066406,-0.0196143388748169,-0.11441445350647,-0.00568389892578125,-0.120547652244568,-0.249275684356689,0.0198249816894531,-0.285335779190063,-0.430281400680542,0.183775901794434,-0.270619034767151,-0.437468767166138,0.196504592895508,-0.169116973876953,-0.365735054016113,0.176484107971191,-0.0656802654266357,-0.329673528671265,0.204431533813477,-0.0516932308673859,-0.324705123901367,0.158590316772461,-0.061431348323822,-0.327149391174316,0.181572914123535,-0.0738876461982727,-0.335295915603638,0.253083229064941,-0.194512128829956,-0.363094806671143,0.259482383728027,-0.301064074039459,-0.435783624649048,0.251912117004395,-0.308318614959717,-0.407517671585083,0.205935478210449,-0.123773455619812,-0.242556810379028,0.0203819274902344,-0.0243697166442871,-0.110809803009033,-0.00254344940185547,-0.00876212120056152,-0.0775511264801025,0.00127506256103516,-0.00775134563446045,-0.104836463928223,-0.0238265991210938,0.00667387247085571,-0.119014501571655,-0.0333271026611328,0.0323119759559631,-0.120455980300903,-0.015528678894043,0.0259402394294739,-0.188208818435669,0.0309648513793945,-0.0296912491321564,-0.274238586425781,0.100457191467285,-0.0602259784936905,-0.29001522064209,0.158845901489258,-0.0187958478927612,-0.155027151107788,-0.0329389572143555,-0.0166420936584473,-0.096930980682373,0.00914192199707031,-0.0198121070861816,-0.118710517883301,0.0205783843994141,-0.0273685455322266,-0.170186281204224,-0.0137491226196289,-0.0436654090881348,-0.130040168762207, +0.0198211669921875,-0.0370063781738281,-0.118021488189697,0.00976085662841797,-0.134564638137817,-0.239751100540161,0.0168590545654297,-0.153987288475037,-0.2586989402771,0.0240907669067383,-0.171854615211487,-0.330002307891846,0.0652379989624023,-0.1922447681427,-0.34364128112793,0.0924587249755859,-0.20726215839386,-0.336709022521973,0.110577583312988,-0.216498374938965,-0.32022762298584,0.115230560302734,-0.229511499404907,-0.308328866958618,0.109373092651367,-0.251739382743835,-0.308850288391113,0.0957984924316406,-0.36259138584137,-0.303467273712158,0.240629196166992,-0.368668913841248,-0.259825468063354,0.225102424621582,-0.415983915328979,-0.335161685943604,0.30492115020752,-0.403429985046387,-0.242407083511353,0.26060676574707,-0.427178382873535,-0.3762526512146,0.407358169555664,-0.478730440139771,-0.334251403808594,0.302340507507324,-0.389908790588379,-0.165139198303223,0.281498908996582,-0.277632594108582,-0.089350700378418,0.252748489379883,-0.26664924621582,-0.235299110412598,0.127964973449707,-0.32212221622467,-0.281648635864258,0.154811859130859,-0.315816044807434,-0.291310548782349,0.173887252807617,-0.298900961875916,-0.313236474990845,0.191458702087402,-0.291504979133606,-0.347704887390137,0.187405586242676,-0.271365880966187,-0.382623910903931,0.16920280456543,-0.243458032608032,-0.399444103240967,0.139802932739258,-0.21712601184845,-0.394793272018433,0.103262901306152,-0.0023619532585144,-0.113919377326965,0.0311832427978516,-0.00742411613464355,-0.139986515045166,0.0403213500976563,-0.0116089582443237,-0.106906652450562,0.0290918350219727,-0.00126713514328003,-0.0164958238601685,0.00429344177246094,-0.0120775699615479,-0.0430151224136353,0.0109357833862305,-0.00591051578521729,-0.0692647695541382,0.0129299163818359,-9.45031642913818e-05,-0.000229001045227051,6.866455078125e-05,-0.00516968965530396,-0.0148506164550781,0.00375938415527344,0.00464403629302979,-0.0444014072418213,0.00467491149902344,-0.0083385705947876,-0.168479800224304,0.0551204681396484,-0.00499147176742554,-0.18908429145813,0.0592374801635742, +-0.0185838937759399,-0.155862808227539,0.0471334457397461,-0.0877878665924072,-0.0766003131866455,0.13011646270752,-0.1093909740448,-0.115646362304688,0.130034446716309,0.00446057319641113,-0.10444188117981,0.117120742797852,-0.0207843780517578,-0.129409790039063,0.112071990966797,0.0180599689483643,-0.0999948978424072,0.02850341796875,-0.00782108306884766,-0.135673522949219,0.0599193572998047,-0.005898118019104,-0.140502452850342,0.0274190902709961,-0.0437675714492798,-0.199826240539551,0.0481367111206055,-0.028231143951416,-0.162313222885132,0.0390195846557617,-0.0775251388549805,-0.231407642364502,0.0592689514160156,-0.0731097459793091,-0.186023473739624,0.0699367523193359,-0.043885350227356,-0.174876928329468,0.0567522048950195,-0.132346510887146,-0.190958738327026,0.096043586730957,-0.185684442520142,-0.307528257369995,0.0920639038085938,-0.132864236831665,-0.279783725738525,0.0803546905517578,-0.0839216709136963,-0.243287324905396,0.0644054412841797,-0.113456249237061,-0.283196926116943,0.0722208023071289,-0.196384191513062,-0.34419584274292,0.0878982543945313,-0.0198405385017395,-0.194700717926025,0.0700664520263672,-0.0104066729545593,-0.206382274627686,0.0668725967407227,-0.0265711545944214,-0.178589105606079,0.0539522171020508,-0.130279660224915,-0.288167715072632,0.0695352554321289,-0.159915685653687,-0.323906421661377,0.0822181701660156,-0.0919134616851807,-0.0626118183135986,0.163687705993652,0.00748205184936523,-0.0950965881347656,0.131367683410645,0.0280030965805054,-0.0737566947937012,0.0108146667480469,0.00469565391540527,-0.0164121389389038,0.000759124755859375,0,5.7518482208252e-05,0,-0.000586748123168945,-0.00164663791656494,0.000426292419433594,-0.0238628387451172,-0.0313584804534912,0.13432502746582,-0.316945791244507,-0.0646293163299561,0.338436126708984,-0.0721569061279297,-0.105720281600952,0.25572395324707,-0.219518661499023,-0.258826732635498,0.460185050964355,-0.11091423034668,-0.130447149276733,0.238649368286133,-0.288280725479126,-0.698148488998413,0.383760452270508,-0.146158695220947, +-0.283084154129028,0.19096851348877,-0.323276519775391,-0.771988391876221,0.302620887756348,-0.43108606338501,-1.12292051315308,0.244349479675293,-0.288876056671143,-0.641749143600464,0.145745277404785,-0.108730316162109,-0.251810550689697,0.047276496887207,-0.264036655426025,-0.505629301071167,0.085418701171875,-0.10887336730957,-0.219688177108765,0.0372738838195801,-0.208536148071289,-0.327487707138062,0.0602598190307617,-0.0815682411193848,-0.137511014938354,0.0316047668457031,-0.125462532043457,-0.161531805992126,0.0522637367248535,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,4.37796115875244e-05,0,-0.476685047149658,-1.04980134963989,0.204437732696533,-0.37031888961792,-0.548222541809082,0.0820074081420898,-0.454029083251953,-0.832942724227905,0.127573490142822,-0.272909164428711,-0.311816692352295,0.0775871276855469,-0.555814743041992,-1.39044618606567,-0.0141277313232422,-0.531250953674316,-0.726295948028564,0.0545921325683594,-0.60930061340332,-1.04995536804199,0.0490546226501465,-0.639636039733887,-1.36916065216064,0.0978598594665527,-0.728707790374756,-1.26158618927002,-0.103705883026123,-0.677427768707275,-0.848896980285645,-0.0307397842407227,-0.755304336547852,-1.69983816146851,-0.120543479919434,-0.83431339263916,-1.82027673721313,-0.244073867797852,-1.1195707321167,-2.41077041625977,-0.580371379852295,-0.913271427154541,-2.09515714645386,-0.545641899108887,-0.867143630981445,-1.78090858459473,-0.398987770080566,-0.842697143554688,-1.32951736450195,-0.293518543243408,-1.20298194885254,-2.49899435043335,-0.76753044128418,-1.06164002418518,-2.25916290283203,-1.21112871170044,-1.04717111587524,-2.08233642578125,-1.02846384048462,-1.20706796646118,-2.63443851470947,-1.01777315139771,-1.03015422821045,-2.50808906555176,-1.42516994476318,-0.630928754806519,-1.91210651397705,-2.14251327514648,-0.791608810424805,-2.36323833465576,-2.16638946533203,-0.849676609039307,-2.63057327270508,-1.97548341751099,-0.997229814529419,-2.76175117492676,-1.30791902542114,-0.876262664794922,-2.70338916778564,-1.66796207427979, +-0.842763662338257,-2.88790512084961,-1.50988626480103,-0.746125221252441,-2.89934730529785,-1.86037921905518,-0.460432171821594,-2.14694976806641,-2.75484180450439,-0.64713454246521,-2.41752529144287,-2.79953670501709,-0.71799898147583,-2.77308177947998,-2.66032838821411,-0.682955622673035,-3.00131225585938,-2.20609378814697,-0.719132900238037,-3.07123374938965,-1.7229266166687,-0.569578051567078,-3.16381454467773,-2.04188537597656,-0.574126005172729,-3.07819938659668,-2.52708721160889,-0.325594186782837,-2.20742988586426,-3.33380937576294,-0.418760597705841,-2.39176368713379,-3.37789535522461,-0.414612770080566,-2.82071495056152,-3.24286127090454,-0.208588302135468,-2.18624210357666,-3.42351150512695,-0.285749971866608,-2.38451194763184,-3.56105709075928,-0.309628784656525,-2.85180473327637,-3.34275245666504,-0.311776876449585,-3.20405292510986,-2.38694190979004,-0.435907125473022,-3.22142887115479,-2.23891448974609,-0.406427025794983,-3.13044738769531,-2.77062892913818,-0.273640990257263,-3.18009948730469,-2.88390254974365,-0.107336521148682,-2.15248775482178,-3.47589683532715,-0.164821058511734,-2.37435340881348,-3.6203179359436,-0.178544759750366,-2.83029270172119,-3.47219610214233,-0.20203709602356,-3.20409774780273,-2.48225593566895,-0.203709483146667,-3.27710151672363,-2.92272996902466,-1.05043172836304,-1.82505559921265,-0.823495864868164,-1.01930856704712,-1.52486133575439,-0.641208171844482,-0.861293792724609,-0.817948341369629,-1.07685661315918,-1.13562488555908,-1.2004337310791,-1.14543747901917,-1.15831422805786,-1.54989767074585,-1.03379726409912,-0.976222991943359,-1.1804084777832,-0.461460113525391,-0.653532981872559,-0.364497184753418,-0.526381611824036,-0.944443702697754,-0.670258045196533,-0.621182680130005,-1.03385782241821,-0.971292495727539,-0.564517259597778,-0.89810037612915,-0.8672194480896,-0.267529726028442,-0.80557918548584,-0.899808406829834,-0.148507118225098,-0.789274215698242,-0.615780353546143,-0.0933570861816406,-0.711305618286133,-0.637082099914551,-0.0169541835784912,-0.580154895782471, +-0.573229551315308,0.0449614524841309,-0.427742958068848,-0.456669569015503,0.0764865875244141,-0.661228179931641,-0.417998790740967,0.0147385597229004,-0.596925258636475,-0.421829462051392,0.0684480667114258,-0.472282409667969,-0.367094755172729,0.10968542098999,-0.313942909240723,-0.269809246063232,0.103384733200073,-0.152200698852539,-0.147440075874329,0.0678210258483887,0,4.17232513427734e-05,0,0,4.36305999755859e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.19752502441406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.18424606323242e-05,0,0,5.36441802978516e-05,0,0,4.57763671875e-05,0,0,3.78452241420746e-05,0,0,4.38094139099121e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,5.17368316650391e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,5.56707382202148e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.7848949432373e-05,0,0,4.57763671875e-05,0,0,4.97438013553619e-05,0,0,4.97456640005112e-05,0,0,5.3703784942627e-05,0,0,4.37498092651367e-05,0,-0.0189361572265625,0.00106942653656006,0.00930428504943848,-0.0140495300292969,0.00199568271636963,0.00662922859191895,-0.0464878082275391,0.000829219818115234,0.0182715654373169,-0.0363445281982422,0.00394558906555176,0.0123708248138428,-0.086482048034668,-0.0064232349395752,0.0265654921531677,-0.0718479156494141,0.000900506973266602,0.0172575712203979,-0.137413024902344,-0.025160551071167,0.0363833978772163,-0.120084762573242,-0.0124435424804688,0.0186935067176819,-0.194985866546631,-0.0532529354095459,0.0465967655181885,-0.175286293029785,-0.0327281951904297,0.0177144408226013,-0.249937057495117,-0.0896327495574951,0.0600255131721497,-0.219147682189941,-0.054018497467041,0.0199210047721863,0,4.77433204650879e-05,0,0,4.97549772262573e-05,0,0,5.17368316650391e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,3.99351119995117e-05,0,0,5.36441802978516e-05,0,0,3.98159027099609e-05, +0,0,5.17293810844421e-05,0,0,5.3703784942627e-05,0,-0.0208978652954102,0.00206506252288818,0.00951457023620605,-0.05108642578125,0.00337839126586914,0.0173348188400269,-0.093501091003418,-0.00302481651306152,0.0231925845146179,-0.147327423095703,-0.0238828659057617,0.0267156511545181,-0.206583976745605,-0.0519812107086182,0.0369440913200378,-0.257768154144287,-0.0821266174316406,0.0466225743293762,0,4.97102737426758e-05,0,0,4.97438013553619e-05,0,0,4.18424606323242e-05,0,0,4.57763671875e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,4.78029251098633e-05,0,0,5.37633895874023e-05,0,0,5.37112355232239e-05,0,0,5.17368316650391e-05,0,-0.00282907485961914,0.000438451766967773,0.00164675712585449,-0.00908994674682617,0.00106334686279297,0.00401496887207031,-0.0224089622497559,0.00128746032714844,0.0065535306930542,-0.045560359954834,-0.00183868408203125,0.0101884603500366,-0.0799837112426758,-0.0145916938781738,0.0135994330048561,-0.153715133666992,-0.0435667037963867,0.0168042182922363,-0.331444263458252,-0.151659250259399,0.079936146736145,0,5.17070293426514e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.18424606323242e-05,0,0,3.58819961547852e-05,0,0,5.36441802978516e-05,0,0,5.36441802978516e-05,0,0,5.17368316650391e-05,0,0,3.58577817678452e-05,0,0,3.77893447875977e-05,0,-0.00563144683837891,0.000730156898498535,0.00297188758850098,-0.0167989730834961,0.00183296203613281,0.00669562816619873,-0.0388422012329102,0.00128555297851563,0.0105953216552734,-0.0755681991577148,-0.0076291561126709,0.0154536962509155,-0.130057334899902,-0.0253686904907227,0.0186856389045715,-0.210300922393799,-0.0603265762329102,0.0219989418983459,-0.30624532699585,-0.119712591171265,0.071764349937439,0,5.36441802978516e-05,0,0,3.99351119995117e-05,0,0,3.99351119995117e-05,0,0,4.18424606323242e-05,0,0,4.37498092651367e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.58819961547852e-05,0,0,4.98294830322266e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97549772262573e-05,0,0,3.7848949432373e-05,0,0,4.37498092651367e-05,0,0,5.36441802978516e-05,0,0,4.98294830322266e-05,0,0,4.17232513427734e-05,0,0,3.98159027099609e-05,0,0,3.58819961547852e-05,0,0,4.78029251098633e-05,0,0,3.7848949432373e-05,0,0,5.17293810844421e-05,0,0,3.77893447875977e-05,0,-0.0184564590454102,0.00240230560302734,0.00845456123352051,-0.0460319519042969,0.00411415100097656,0.0151622295379639,-0.0862789154052734,-0.000557422637939453,0.0203412771224976,-0.139169692993164,-0.01800537109375,0.0212322324514389,-0.196418762207031,-0.043895959854126,0.0229739844799042,-0.245133399963379,-0.0695126056671143,0.0290473699569702,-0.314326286315918,-0.115705728530884,0.0437030792236328,-0.318233966827393,-0.12015700340271,0.0360661745071411,0,5.3703784942627e-05,0,0,5.37335872650146e-05,0,0,4.18424606323242e-05,0,0,4.78029251098633e-05,0,0,5.18560409545898e-05,0,0,4.57763671875e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.98294830322266e-05,0,0,4.37498092651367e-05,0,0,4.78029251098633e-05,0,0,5.37112355232239e-05,0,0,3.98159027099609e-05,0,-0.00941944122314453,0.0012974739074707,0.00466704368591309,-0.0259647369384766,0.00314807891845703,0.00937700271606445,-0.0554275512695313,0.00138664245605469,0.0139721632003784,-0.0993680953979492,-0.00939059257507324,0.0173332095146179,-0.156794548034668,-0.0278143882751465,0.0187293495982885,-0.219293117523193,-0.0592374801635742,0.019048810005188,-0.277862548828125,-0.0917134284973145,0.0356582403182983,-0.292053699493408,-0.102002620697021,0.0498198270797729,-0.206906318664551,-0.0844137668609619,0.0694050788879395,-0.15177583694458,-0.046736478805542,0.0504494309425354,-0.103132724761963,-0.0250554084777832,0.0357028841972351,-0.0643939971923828,-0.00867819786071777,0.0253354609012604,-0.0341968536376953,-0.00252711772918701,0.0148937106132507,-0.0126924514770508,-7.12871551513672e-05,0.00647199153900146,0,3.77893447875977e-05,0,0,4.18090494349599e-05,0,0,4.97102737426758e-05,0,0,5.37335872650146e-05,0, +0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,4.18424606323242e-05,0,0,5.37107698619366e-05,0,0,4.17828559875488e-05,0,0,3.7848949432373e-05,0,0,4.97549772262573e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.37498092651367e-05,0,-0.0163040161132813,-0.00183665752410889,0.00845646858215332,-0.0326347351074219,-0.00532984733581543,0.0155807435512543,0,3.98457050323486e-05,0,0,5.37112355232239e-05,0,0,4.57763671875e-05,0,0,3.77893447875977e-05,0,0,4.37498092651367e-05,0,0,4.97102737426758e-05,0,-0.0533862113952637,-0.0157837867736816,0.0244034230709076,-0.0824484825134277,-0.0264041423797607,0.0335690379142761,0,5.56707382202148e-05,0,-0.0482001304626465,-0.0192729234695435,0.0262603759765625,-0.117433547973633,-0.0439536571502686,0.0473907589912415,-0.0970292091369629,-0.0397639274597168,0.0455466508865356,-0.0991463661193848,-0.0437114238739014,0.0453718900680542,-0.12677526473999,-0.0555160045623779,0.0545240640640259,-0.116855621337891,-0.0476628541946411,0.0508837699890137,-0.0673232078552246,-0.028167724609375,0.0355974435806274,-0.0657000541687012,-0.0300977230072021,0.0341497659683228,-0.151882648468018,-0.0690228939056396,0.0615732669830322,-0.116605281829834,-0.0478076934814453,0.0490062236785889,0,4.37498092651367e-05,0,-0.214418888092041,-0.109530687332153,0.0810577869415283,0,3.77893447875977e-05,0,0,3.78414988517761e-05,0,0,4.97102737426758e-05,0,0,5.18560409545898e-05,0,-0.466182231903076,-0.273423433303833,0.0940988063812256,-0.339097023010254,-0.217559814453125,0.105170488357544,-0.168030261993408,-0.118490934371948,0.0715177059173584,0,3.96966934204102e-05,0,0,3.77893447875977e-05,0,0,3.58521938323975e-05,0,0,4.97698783874512e-05,0,0,4.98294830322266e-05,0,0,4.57763671875e-05,0,-0.318991661071777,-0.118237018585205,0.0130380392074585,-0.498489856719971,-0.235228538513184,0.0339194536209106,-0.533641815185547,-0.282056331634521,0.0700638294219971,-0.41918420791626,-0.185030221939087,0.0722665786743164,-0.433053970336914,-0.182643175125122,0.0566948652267456,0,5.14984130859375e-05,0,0, +4.57763671875e-05,0,-0.0117964744567871,0.000555753707885742,0.00211858749389648,0,5.38825988769531e-05,0,-0.00810527801513672,0.00144600868225098,0.00230526924133301,-0.00167560577392578,0.000716209411621094,0.000385046005249023,-0.00353097915649414,0.000993967056274414,0.00161957740783691,-0.00093841552734375,0.000599145889282227,0.000420093536376953,-0.00108480453491211,0.000385046005249023,0.000692129135131836,-0.000310420989990234,0.000248074531555176,0.000217914581298828,0,5.37335872650146e-05,0,0,5.37335872650146e-05,0,0,4.77433204650879e-05,0,0,4.97102737426758e-05,0,0,3.99351119995117e-05,0,0,4.57763671875e-05,0,0,3.79085540771484e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.18424606323242e-05,0,0,3.98159027099609e-05,0,0,3.79085540771484e-05,0,0,3.79085540771484e-05,0,0,5.17368316650391e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06, +0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,-0.000154495239257813,0.000192403793334961,6.72340393066406e-05,-6.81877136230469e-05,0.000109195709228516,5.14984130859375e-05,-6.19888305664063e-06,5.17368316650391e-05,3.814697265625e-06,-4.29153442382813e-06,5.36441802978516e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.97102737426758e-05,2.86102294921875e-06,-2.81333923339844e-05,7.34329223632813e-05,1.28746032714844e-05,-1.71661376953125e-05,6.7591667175293e-05,1.52587890625e-05,0,4.77656722068787e-05,0,0,4.18052077293396e-05,0,0,3.98308038711548e-05,0,0,3.78191471099854e-05,0,0,4.97400760650635e-05,0,0,3.98159027099609e-05,0,0,4.98294830322266e-05,0,0,4.98294830322266e-05,0,0,3.79085540771484e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,4.17232513427734e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,5.17368316650391e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,3.76701354980469e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.17232513427734e-05,0,0,3.98457050323486e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0, +0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,5.57899475097656e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.97102737426758e-05,0,0,4.18126583099365e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.96966934204102e-05,0,0,5.17368316650391e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,3.76701354980469e-05,0,0,4.97102737426758e-05,0,0,3.58521938323975e-05,0,0,3.98159027099609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.17368316650391e-05,0,0,3.96966934204102e-05,0,0,5.37335872650146e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.57899475097656e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.57627868652344e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0, +4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,-0.191609859466553,-0.0375165939331055,-0.262696385383606,-0.311736106872559,-0.11002254486084,-0.550766944885254,-0.37101149559021,-0.215781211853027,-0.842490315437317,-0.39016318321228,-0.357339859008789,-1.13924884796143,-0.400905847549438,-0.518028259277344,-1.4237585067749,-0.316760063171387,-0.564519882202148,-1.40882658958435,-0.291321516036987,-0.68581485748291,-1.61336231231689,-0.180817365646362,-0.842272758483887,-1.76015615463257,0.0577131509780884,-1.20243358612061,-1.74704337120056,0.121770799160004,-1.4836311340332,-1.693354845047,0.130922734737396,-1.67521095275879,-1.67214584350586,0.134868830442429,-1.7414722442627,-1.68147778511047,0.0642201751470566, +-1.86578369140625,-1.60271978378296,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,-0.225814819335938,-0.0454912185668945,-0.188488304615021,-0.39359188079834,-0.150570869445801,-0.425641238689423,-0.49201226234436,-0.298091888427734,-0.682044148445129,-0.560256242752075,-0.486024856567383,-0.971586585044861,-0.595525979995728,-0.703287124633789,-1.27321183681488,-0.585730314254761,-0.95987606048584,-1.54954767227173,-0.513588666915894,-1.18771553039551,-1.80832123756409,-0.234317183494568,-1.50303554534912,-1.96172881126404,-0.00646138191223145,-1.84406757354736,-2.09678626060486,0.02663254737854,-2.03256320953369,-2.28856253623962,-0.00296741724014282,-2.16547298431396,-2.50919580459595,0.0439199209213257,-2.31338882446289,-2.70964622497559,0.0817958414554596,-2.39454174041748,-2.88429856300354,0.103700652718544,-2.43402290344238,-2.87238311767578,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,-0.0543923377990723,-0.000706672668457031,-0.127423524856567,-0.114013671875,-0.0153236389160156,-0.333367437124252,-0.163974761962891,-0.0471982955932617,-0.613050878047943,-0.191437959671021,-0.0844669342041016,-0.882405757904053,-0.200227975845337,-0.13485050201416,-1.16628456115723, +-0.19150972366333,-0.216670989990234,-1.4840897321701,-0.169330835342407,-0.30129337310791,-1.79277145862579,0.0244215726852417,-0.470342636108398,-1.92883276939392,0.177072763442993,-0.801993370056152,-1.89718890190125,0.108518242835999,-1.16217803955078,-1.76676797866821,0.0698229074478149,-1.30698490142822,-1.73686182498932,0.0552539229393005,-1.34169960021973,-1.67717719078064,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,-0.0472736358642578,-0.0144309997558594,-0.194230914115906,-0.0754680633544922,-0.0361995697021484,-0.380075544118881,-0.0850019454956055,-0.0617351531982422,-0.556862115859985,-0.0896539688110352,-0.0887737274169922,-0.731592774391174,-0.0894256830215454,-0.122884750366211,-0.917616307735443,-0.0910212993621826,-0.184228897094727,-1.09879302978516,-0.0910662412643433,-0.262985229492188,-1.25192701816559,-0.0759072601795197,-0.340154647827148,-1.24973940849304,-0.053204745054245,-0.387180328369141,-1.28161907196045,-0.0186425000429153,-0.408485412597656,-1.32726860046387,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0, +4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,-0.0012572705745697,-0.00130271911621094,-0.126984238624573,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,-0.1500563621521,-0.0279359817504883,-0.308829426765442,-0.234278202056885,-0.078948974609375,-0.618171513080597,-0.270505428314209,-0.15317440032959,-0.924089193344116,-0.292381525039673,-0.236490249633789,-1.21874475479126,-0.293023705482483,-0.336909294128418,-1.50917279720306,-0.235147953033447,-0.454517364501953,-1.79917240142822,-0.0925401449203491,-0.545164108276367,-1.79555976390839,0.041150689125061,-0.664514541625977,-1.9452258348465,0.0923169255256653,-0.827494621276855,-1.98712253570557,0.236709475517273,-0.92402172088623,-2.05761909484863,0.167378574609756,-0.948236465454102,-2.11468315124512,0.0619301348924637,-0.988253593444824,-2.13243913650513,-0.00490003824234009,-0.0835258960723877,-0.00347805023193359,-0.00861364603042603,-0.107267141342163,-0.00454425811767578,-0.0237616896629333,-0.162244081497192,-0.0110492706298828, +-0.0582708716392517,-0.234804630279541,-0.0125341415405273,-0.0992648601531982,-0.288041591644287,-8.96453857421875e-05,-0.150922060012817,-0.342544317245483,0.024688720703125,-0.00367289781570435,-0.0815329551696777,-0.00444698333740234,-0.00187534093856812,-0.0929834842681885,-0.00470161437988281,-0.000678062438964844,-0.122755289077759,-0.00266075134277344,-0.00369030237197876,-0.152254104614258,8.86917114257813e-05,-0.0123929381370544,-0.190859317779541,0.00412464141845703,-0.0292680859565735,-0.230595111846924,0.00697994232177734,-0.0651837587356567,-0.280665636062622,0.00981712341308594,-0.115180432796478,-0.329299449920654,0.0218029022216797,-0.174213945865631,-0.3749680519104,0.046055793762207,-0.00971722602844238,-0.13528037071228,-0.00773906707763672,-0.0216175317764282,-0.183379173278809,-0.0115108489990234,-0.0475999116897583,-0.238321781158447,-0.010955810546875,-0.0938302278518677,-0.2964928150177,0.00226020812988281,-0.00516283512115479,-0.106551647186279,-0.00505256652832031,-0.00401517748832703,-0.278673648834229,-0.499433517456055,-0.0246355533599854,-0.524666309356689,-0.765868186950684,-0.0840895175933838,-0.631637096405029,-0.948444366455078,-0.0130363702774048,-0.26643180847168,-0.497326850891113,-0.0116651058197021,-0.356209754943848,-0.62484073638916,0.0867289304733276,-0.265513896942139,-0.60698413848877,-0.0294991135597229,-0.308606147766113,-0.51287841796875,-0.012121856212616,-0.30318546295166,-0.506739616394043,-0.226760387420654,-1.07609272003174,-1.06122875213623,-0.366555690765381,-1.1963906288147,-1.27931261062622,-0.499042272567749,-1.68993902206421,-1.28746366500854,-0.453938722610474,-1.96833562850952,-1.12334203720093,-0.264444351196289,-2.16825342178345,-1.32987546920776,-0.229984402656555,-2.37471771240234,-1.40056991577148,-0.335775971412659,-2.71537113189697,-1.52964782714844,-0.24628472328186,-2.82632446289063,-1.73224067687988,-0.168368458747864,-3.08938789367676,-1.82515335083008,-0.105441093444824,-3.27779531478882,-1.87223243713379,-0.0520889312028885,-3.38411474227905, +-1.90713882446289,0.0383701622486115,0.0256614685058594,-0.09625244140625,0.0754450559616089,-0.059453010559082,-0.100130081176758,-0.0319951772689819,-0.191770076751709,-0.0238323211669922,-0.128329396247864,-0.401574611663818,0.000431060791015625,-0.454450488090515,-0.519468784332275,0.0609798431396484,-0.706497550010681,-0.750308036804199,-0.13276195526123,-0.810858130455017,-1.07325077056885,-0.166669845581055,-1.13847696781158,-1.42074060440063,-0.198162078857422,-1.23999917507172,-1.71123743057251,-0.260473251342773,-1.34237957000732,-1.80026483535767,-0.230582237243652,-1.31364154815674,-1.91328573226929,-0.232166290283203,-1.19504761695862,-2.08565807342529,-0.227780342102051,-0.846320390701294,-2.63030862808228,-0.520671844482422,-0.666460514068604,-3.11805057525635,-0.659317016601563,-0.510942578315735,-3.65047693252563,-0.754024505615234,-0.415621995925903,-4.08841514587402,-0.85782527923584,-0.292988061904907,-4.25934028625488,-0.95326042175293,-0.192014098167419,-4.38314008712769,-0.989301681518555,-0.0869830995798111,-4.40688562393188,-0.974821090698242,0.0172770917415619,0.342130661010742,-0.0836210250854492,0.0374497771263123,0.279254913330078,-0.0984201431274414,0.0486223697662354,0.199287414550781,-0.130045890808105,0.0713557004928589,0.0419816970825195,-0.190293312072754,-0.287804126739502,-0.226636409759521,-0.261513710021973,-0.412306666374207,-0.480001926422119,-0.36582088470459,-0.551216840744019,-0.745639801025391,-0.434123039245605,-0.828887939453125,-1.07253885269165,-0.526511192321777,-0.884719133377075,-1.42259216308594,-0.645419120788574,-0.933716058731079,-1.68726301193237,-0.848366737365723,-0.917501449584961,-1.96796846389771,-0.952391624450684,-0.809029579162598,-2.24691724777222,-0.931208610534668,-0.632667064666748,-2.60827875137329,-1.1049108505249,-0.537333965301514,-3.13972425460815,-1.09229183197021,-0.523428320884705,-3.64660358428955,-1.09530830383301,-0.423944711685181,-3.94878101348877,-1.28699684143066,-0.294803559780121,-4.12841510772705,-1.45783805847168,-0.175571978092194, +-4.24385547637939,-1.47663307189941,-0.081120565533638,-4.27949142456055,-1.48287487030029,-0.00499048829078674,-0.468956470489502,-0.38511848449707,-0.161550283432007,-0.776218414306641,-0.580183029174805,-0.202615261077881,-0.685181617736816,-0.633983135223389,-0.0780410766601563,-0.623445749282837,-0.487706184387207,-0.118839979171753,-0.627437591552734,-0.560897350311279,0.0803967714309692,-0.68785548210144,-0.544532775878906,-0.0257805585861206,-0.551231145858765,-0.389892578125,-0.0124532580375671,-0.569880723953247,-0.382098197937012,-0.240933895111084,-0.927172183990479,-0.696023464202881,-0.274862766265869,-0.942043781280518,-0.842617988586426,-0.346380949020386,-1.3851523399353,-0.838510513305664,-0.570999622344971,-1.48397874832153,-0.743602752685547,-0.501732110977173,-1.41921710968018,-0.906166076660156,-0.419501066207886,-1.51961708068848,-1.10266351699829,-0.471303105354309,-1.73494434356689,-1.33297204971313,-0.332024693489075,-1.98989677429199,-1.54639863967896,-0.214580535888672,-2.24880504608154,-1.62161540985107,-0.136758267879486,-2.44698238372803,-1.66559028625488,-0.0670570731163025,-2.57139492034912,-1.70961046218872,-0.00140044093132019,-0.0269298553466797,0.00767683982849121,-0.043327808380127,-0.0700244903564453,-0.0223839282989502,-0.0558180809020996,-0.0792350769042969,-0.0448708534240723,-0.0208711624145508,-0.055938720703125,0.00378608703613281,-0.0316469669342041,-0.0636849403381348,-0.00759077072143555,-0.0123330354690552,-0.0482540130615234,0.00989389419555664,-0.00706857442855835,-0.0393276214599609,0.0106632709503174,-0.00345849990844727,-0.0317223072052002,0.00932073593139648,-0.0708177089691162,-0.0910115242004395,-0.0697672367095947,-0.0942816734313965,-0.12357234954834,-0.127623796463013,-0.115296125411987,-0.16024112701416,-0.191322565078735,-0.13436484336853,-0.213353157043457,-1.39744281768799,-0.150897026062012,-0.312516212463379,-1.53858542442322,-0.162793636322021,-0.454934120178223,-1.71751761436462,-0.169219493865967,-0.627317428588867,-1.88695049285889,-0.153356313705444, +-0.834687232971191,-2.05757784843445,-0.137174844741821,-1.00140571594238,-2.14790439605713,-0.0961930155754089,-1.13878917694092,-2.22620296478271,-0.0489254593849182,-1.23531246185303,-2.30035400390625,0,-0.013392448425293,-0.819142520427704,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142460823059,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.819142401218414,0,-0.013392448425293,-0.819142401218414,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142520427704,0,-0.013392448425293,-0.819142401218414,0,-0.0133914947509766,-0.81914234161377,0,-0.0133914947509766,-0.819142520427704,0,-0.0133914947509766,-0.856617331504822,0,-0.013392448425293,-0.856617450714111,-0.00267815589904785,-0.0138559341430664,-0.870973229408264,-0.00380265712738037,-0.014470100402832,-0.881494700908661,-0.00402677059173584,-0.0151700973510742,-0.891004264354706,-0.00370794534683228,-0.0152177810668945,-0.900032222270966,-0.00271934270858765,-0.0150117874145508,-0.907833993434906,-0.00141873955726624,-0.0150957107543945,-0.913255035877228,0,5.38825988769531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,-0.0350606441497803,-0.00850296020507813,-0.0650041997432709,-0.0525610446929932,-0.0183906555175781,-0.112081825733185,-0.0665860176086426,-0.0351028442382813,-1.27941882610321,-0.083423376083374,-0.0724430084228516,-1.38187122344971,-0.113418102264404,-0.148446083068848,-1.58766031265259,-0.132838606834412,-0.23725700378418,-1.7892963886261,-0.132796764373779,-0.34352970123291,-1.97831428050995,-0.118937492370605,-0.42498779296875,-2.12978744506836,-0.0858460068702698,-0.486367225646973,-2.25141453742981,-0.0443977117538452,-0.535001754760742,-2.35039877891541,-0.00345370173454285,-0.101590156555176,0.0210318565368652,-0.00855386257171631,-0.120849609375, +0.0257501602172852,-0.0175602436065674,-0.151004552841187,0.0307111740112305,-0.0307639837265015,-0.187418460845947,0.032691478729248,-0.0522639751434326,-0.222511291503906,0.0260610580444336,-0.079277515411377,-0.256227016448975,0.00923633575439453,-0.108109474182129,-0.28433895111084,-0.0137114524841309,-0.137265920639038,-0.31202507019043,-0.0527191162109375,-0.16720175743103,-0.340553760528564,-0.0912232398986816,-0.197365045547485,-0.386851787567139,-0.170851230621338,-0.225005865097046,-0.449694156646729,-0.251715183258057,-0.2482590675354,-0.539316177368164,-1.4867787361145,-0.26236891746521,-0.694639205932617,-1.66016960144043,-0.262171030044556,-0.896916389465332,-1.84969663619995,-0.258149027824402,-1.13594532012939,-2.0110182762146,-0.230617523193359,-1.40600967407227,-2.15848350524902,-0.190383791923523,-1.63962173461914,-2.23645067214966,-0.129763185977936,-1.82327556610107,-2.2866153717041,-0.0648622512817383,-1.94391441345215,-2.3443455696106 + } + Normals: *16371 { + a: -0.0023806095123291,-0.0157802700996399,0.348010465502739,-0.615583372599623,0.76050535403192,1.12734140455723,-1.17732834815979,-0.167624950408936,0.0610729455947876,-0.917370349168777,0.0213108062744141,-0.241720706224442,-0.620188847649843,0.354554951190948,-0.778565272688866,-0.322833329439163,-0.150017738342285,-0.335787549614906,-0.0383859872817993,-0.0462505221366882,-0.00214995443820953,-0.706356113525472,0.475472494959831,0.896731331944466,-1.55856412649155,0.205323904752731,0.0824696719646454,-1.64642906188965,0.82726863026619,-0.638531804084778,-0.575641155708581,0.626918375492096,-1.62070709466934,0.221628904342651,0.800714194774628,-0.888761520385742,0.300302386283875,0.861402951180935,0.263546764850616,-0.507314886724977,0.198949813842773,0.896208107471466,-1.59932613372803,0.779962874948978,0.366719380021095,-0.659282082226127,1.52749741077423,-0.768416970968246,0.176068842411041,0.801016718149185,0.00380095839500427,-0.570822583230959,-0.467574059963226,-0.644830673933029,-1.07744087278843,0.688084185123444,-0.367935687303543,-0.269019968228747,1.41890433430672,-0.945029154419899,0.657506316900253,0.557043969631195,-0.921289425343275,-0.592696011928989,-0.136236250400543,-0.56885826587677,-1.6306728720665,0.822660624980927,-0.506124855950475,-0.269019486034026,1.4220075905323,-0.875256758183241,0.694274947047234,0.973081856966019,-1.07792691886425,-0.150935963489133,-0.674664467573166,-1.24951615929604,-1.13353654742241,0.836318850517273,-1.09056869149208,-0.269014756984234,1.42033079266548,-0.924399927258492,0.508575186133385,1.07759028673172,-1.09458713233471,-0.121734144965657,-0.530325144529343,-0.925403833389282,-0.875992015004158,1.06163278222084,-1.12540000677109,-0.269019084468923,1.40497681498528,-1.04974956810474,0.65699814260006,0.889679104089737,-1.31069335341454,-0.121733866061106,-0.524691849946976,-0.992355406284332,-0.786892170337596,0.971013844013214,-1.27556014060974,1.32694438077507e-05,1.09109568595886,-1.66387438774109,0.426069259643555,0.299606960266829,-1.76485776901245, +-0.129888743714673,-0.265393525362015,-1.59856820106506,-0.576962461117764,0.481340758502483,-1.70399063825607,0.426372540480632,-0.481594771146774,-1.3637872338295,0.506949675566691,-0.409513503313065,-1.40421658754349,-0.42726277316,-0.34135228395462,-1.30450743436813,-0.399322524666786,-0.275026202201843,-1.34702232480049,0.134061552584171,-0.392184108495712,-1.68931633234024,-0.443712701443691,-0.190492868423462,-1.50300002098083,0.547586327167592,-0.112016439437866,-1.40168768167496,0.718781091272831,-0.259743809700012,-0.670371577143669,0.879181131720543,-0.0604080855846405,-0.454270631074905,0.633455917239189,-0.400049209594727,-0.683813720941544,0.799255348742008,-0.123810887336731,-0.510651677846909,0.797981113195419,0.178824812173843,-0.0736744999885559,0.846123605966568,-0.248456180095673,-0.399547725915909,0.953029692173004,-0.0774477124214172,-0.237162411212921,0.270147509872913,0.104474440217018,0.0290650725364685,0.129883383754749,0.275166600942612,0.097502589225769,0.418422698974609,0.444854153320193,0.122735261917114,0.395864278078079,0.278343573212624,0.115686416625977,0.133416958153248,0.275429040193558,0.132334470748901,0.513252630829811,0.501636138185859,0.412847876548767,0.536915063858032,0.424341186881065,0.494905143976212,0.363979071378708,0.579198077321053,0.771891474723816,0.00378215312957764,0.28953961096704,0.0507570505142212,0.0064522922039032,0.287121176719666,0.0896815061569214,-0.152887105941772,0.190770626068115,-0.0498448610305786,0.091863751411438,-0.0632437467575073,0.108185037970543,0.00374108552932739,0.0113824605941772,0.342915132641792,-0.102462768554688,0.154329597949982,0.165254205465317,-0.0432275533676147,0.0208858847618103,-0.934622466564178,0.354188352823257,-0.284343689680099,-0.685739398002625,0.216016322374344,0.0464720726013184,-0.649285405874252,0.655077745206654,0.0537209510803223,-1.34412303566933,0.231876760721207,-0.187000393867493,-1.18462210893631,1.18011745810509,-0.0717452168464661,-0.494370073080063,1.39969199895859,-0.160966902971268,-0.769550561904907,1.676813185215, +0.743380591273308,-0.471984505653381,1.26643592119217,0.353687793016434,-0.502281352877617,1.45826780796051,0.619927376508713,0.343577474355698,1.47777664661407,0.609252862632275,0.552427679300308,1.45276761054993,0.572744697332382,0.634712889790535,1.01732793450356,0.520737081766129,0.979505196213722,1.06515198945999,0.334491789340973,1.43530184030533,0.504610204137862,-0.0878519415855408,1.45368450880051,0.441000690414712,0.0436953902244568,1.75534737110138,0.509558640420437,0.0442552268505096,1.76268619298935,0.47347875405103,-0.0878589749336243,1.45367878675461,0.485230602324009,0.13617616891861,1.63507807254791,0.43271055072546,-0.317253440618515,1.57460993528366,0.2561996281147,0.0752648413181305,1.74791187047958,-0.330393731594086,0.284968063235283,1.44268977642059,-0.400861322879791,0.0541502237319946,0.990633308887482,-0.816752644255757,-0.1031129732728,1.5017169713974,-0.904319207184017,0.494568809866905,0.798279404640198,-0.369919389486313,0.043042778968811,0.329632878303528,0.112257540225983,1.32367563247681,0.797475554049015,0.0275280075147748,1.02575971186161,0.531711280345917,-0.70800742181018,-0.149923473596573,0.342880964279175,-0.862494349479675,1.51250350475311,0.550229221582413,-0.106852769851685,1.51424986124039,0.661172421649098,0.210867524147034,0.270405918359756,0.0205724239349365,-0.149670094251633,1.31165584921837,0.566320791840553,-0.0518879592418671,1.43695664405823,0.813448712229729,-0.0364850759506226,1.33112466335297,0.741564694792032,-0.0963050723075867,-0.164766132831573,0.836212128400803,0.287138223648071,0.248342484235764,1.15605020523071,0.300146013498306,0.514802902936935,1.30324620008469,0.0755124688148499,-0.257915884256363,1.0209476351738,-0.101438939571381,-0.337705329060555,1.35832947492599,-0.701419308781624,-0.610818356275558,0.729766111588106,-0.583535470329803,-0.527451723814011,1.01520216464996,-0.959022700786591,-1.31528747081757,0.620556890964508,-0.715229123830795,-1.38387796282768,0.369147629942745,-0.59236504137516,-0.743314102292061,1.08013838529587,-0.699644278734922, +-0.810410633683205,0.780245684087276,-0.890222080051899,-1.29606005549431,0.790877610445023,-1.78905630111694,-0.565645277500153,0.497511103749275,-1.60070586204529,0.368760600686073,1.13845610618591,-1.45888435840607,0.259818032383919,1.26732450723648,-1.16787052154541,1.11466726660728,1.05322301387787,-1.32064819335938,0.895656511187553,0.986565589904785,-0.948097854852676,1.13943621516228,0.547324258834124,-0.907537273386197,1.39066016674042,0.137005511671305,-1.08855850994587,1.25641888380051,0.0470468699932098,-0.71051587164402,1.33768364787102,-0.420409651473165,-0.755806058645248,1.37699741125107,-0.076264500617981,-0.641917198896408,1.22243177890778,-0.0158034935593605,-0.540498673915863,0.980527140200138,-0.257034227252007,0.157436788082123,0.511079624295235,-0.29313462972641,0.0765446424484253,0.0263279974460602,-0.615075081586838,0.112842559814453,0.0880639255046844,-0.292535439133644,-0.169565796852112,-0.420462340116501,-0.933920055627823,0.131464838981628,-0.159940779209137,-0.687072016298771,-0.758193776011467,-0.452461928129196,-1.02385780215263,-0.6919641849573,-0.492860049009323,-0.788925498723984,-1.02930837869644,-0.563067018985748,-0.467335626482964,-0.719092130661011,-0.56203505396843,-0.799772411584854,-0.490419581532478,-0.503814667463303,-0.867717146873474,-0.681325536221266,-0.449130266904831,-1.04802873730659,-0.60516719520092,-0.409998536109924,-0.842471152544022,-1.04522904008627,0.515434563159943,-0.74622018635273,-1.12598320841789,0.81380321085453,-0.520126104354858,-1.18497577309608,0.245751947164536,-0.722389109432697,-1.2650591135025,1.29232922196388,-0.467237956821918,-1.22688782215118,1.21814945340157,-0.373078346252441,-0.295875117182732,1.57776427268982,-0.816719340160489,-0.0732249083240504,1.6001051068306,-0.910960234701633,-0.225791402161121,1.50343376398087,-0.967466197907925,-0.120401777327061,1.49894630908966,-0.860688079148531,-0.0587398856878281,1.56787919998169,-0.907247386872768,0.203834062442183,1.83684557676315,-0.539664141833782,0.222719363868237,1.55866068601608, +-0.876884199678898,0.717353314161301,0.956539869308472,-0.979727223515511,0.753544248640537,0.51317685842514,-0.893653035163879,0.791360281407833,0.266413599252701,-1.16023689508438,0.507676756009459,0.104422450065613,-0.896094590425491,0.533544685518766,0.175532519817352,-0.959924876689911,-0.0839923524401636,-0.330105364322662,-1.09230217337608,-0.0937649163255969,-0.379453420639038,-1.2880591750145,-0.175342932343483,-0.278127789497375,-1.24446430802345,0.0839898160554915,-0.330106139183044,-1.09230053424835,0.102113215001664,-0.36496901512146,-1.30725663900375,-0.0486114605046897,-0.418777048587799,-1.1936329305172,-0.0463057362578363,-0.253663659095764,-1.27373346686363,-0.802365683019161,0.284226417541504,-1.15019172430038,-0.803807280957699,0.880031168460846,-1.0459763109684,-0.864582171394631,0.277230888605118,-1.15522995591164,-0.344773713672136,1.81323373317719,-0.510007742792368,-0.450613979250193,1.74461734294891,-0.560142945498228,-0.0423935130238533,1.59845185279846,-0.856573842465878,0.0732182818149916,1.60632658004761,-0.746531844139099,-0.0889695025980473,1.85602205991745,-0.479926105588675,0.237678296864033,1.82740050554276,-0.600071854889393,0.296072952449322,1.57776749134064,-0.762434111908078,0.434357404708862,1.46711051464081,-0.925731517374516,0.296560071408749,1.4885116815567,-0.850486101116985,0.844171740114689,1.21463215351105,-0.982914477586746,1.09518831968307,0.25782185792923,-1.06462842226028,1.08989572525024,0.279971718788147,-1.10440704226494,0.666346520185471,0.0197108387947083,-0.726867988705635,1.09840649366379,-0.23977118730545,-0.86469492316246,0.534277237951756,-0.537521004676819,-0.673571810126305,0.234937473711909,-0.502230882644653,-0.954529881477356,0.105848483741283,-0.406888961791992,-0.896691106259823,0.726969130337238,-0.537521600723267,-0.673572443425655,0.747607119381428,-0.511571407318115,-0.683106161653996,0.784294687211514,-0.647800832986832,-0.481321163475513,0.772366419434547,-0.499511331319809,-0.402461051940918,-0.241721868515015,0.153131723403931,-0.85104912519455, +-0.140358865261078,1.06402254104614,-0.819302633404732,-0.121373534202576,-0.0227613151073456,-0.877445697784424,0.553961098194122,1.29609194397926,-0.521419249475002,0.340885937213898,1.41368919610977,-0.645646825432777,0.40255081653595,1.52442395687103,-0.834954231977463,0.846627157944113,1.33028218150139,-0.586485609412193,0.65430873632431,1.25344905257225,-0.759856253862381,1.04465728998184,1.02661861479282,-0.67310057580471,1.07870928943157,1.24938970804214,-0.301343150436878,1.07603441178799,1.41606143116951,-0.552786737680435,1.06659835577011,1.29605397582054,-0.629795759916306,1.74335986375809,0.81858491897583,-0.396188132464886,1.62487381696701,-0.0415969491004944,-0.260185867547989,1.72397673130035,0.0763657689094543,-0.177047535777092,1.3984215259552,-0.584622383117676,-0.351555682718754,1.33408665657043,-0.68147674202919,0.370463788509369,0.603210970759392,-0.637067556381226,0.49739084392786,0.955278090950722,-0.721823453903198,-0.154217027127743,0.789399452507496,-0.9292903393507,-0.505536004900932,1.01920104771852,-1.38167023658752,-0.0835541114211082,0.91313774138689,-0.844323009252548,0.50907925888896,0.753913179039955,-0.837333410978317,0.410219803452492,0.846943221986294,-1.38619810342789,-0.0660829469561577,0.0743201971054077,-0.950145900249481,0.054653137922287,-0.121611833572388,0.72860760986805,0.429282277822495,-0.296455800533295,-0.0587077736854553,0.498456999659538,0.357551276683807,1.2253891825676,0.279087722301483,0.492658525705338,1.06143054366112,0.308437615633011,0.487942889332771,0.785010293126106,-0.0595773458480835,0.401613303475642,0.0154408812522888,-0.698723256587982,0.700290888547897,0.484472334384918,-0.19684624671936,0.660003438591957,-0.189383327960968,-1.16607603430748,0.495144888758659,-0.0192223191261292,-0.837437868118286,0.697085559368134,-0.355393528938293,-1.05197980999947,0.755500376224518,0.0323053002357483,-0.887638360261917,1.11364126205444,-0.486577779054642,-1.1258297264576,0.919652938842773,-1.37320071458817,-0.952412277460098,0.950353026390076,-1.48892956972122, +-0.830050706863403,0.296697731595486,-1.61265796422958,-0.828476719558239,0.340427079237998,-1.81485092639923,-0.351866476237774,0.730292856693268,-0.778546929359436,-0.0811010003089905,0.40162534399542,-1.77341479063034,-0.702797949314117,-0.0923813870176673,-1.88280153274536,-0.356053464114666,0.0364112434908748,-1.29897433519363,0.0535184741020203,0.0921118790283799,-1.50602370500565,0.332013189792633,-0.0884512728080153,-1.65186876058578,-0.652724646031857,-0.471184220165014,-1.76891124248505,-0.670301496982574,-1.26236891746521,-0.590053826570511,-0.0381437540054321,-0.719027630053461,-0.704552978277206,-0.549610696732998,-0.642687175888568,-1.6046729683876,-0.571363650262356,-0.73374354839325,-0.44449383020401,-1.15279269218445,-0.809911102056503,-0.121407806873322,-0.755316466093063,-0.427979352762463,-1.05279064178467,-1.20617058873177,-0.225521430373192,-1.04304204881191,-1.33294683694839,-0.340745434165001,-1.43343335390091,-1.22445583343506,-0.264912441372871,-0.945786967873573,-1.33933165669441,-0.982231430709362,-0.548813477158546,-0.719471246004105,-0.728815585374832,-1.49401086568832,-0.948339134454727,-0.878986805677414,-0.962375536561012,-1.28212979435921,-1.06657728552818,-1.45650058984756,0.0877910554409027,-1.06094071269035,-1.05228570103645,0.237760841846466,-1.21987575292587,-0.954117834568024,0.0821335911750793,-1.18530839681625,-1.20639771223068,-1.06151884794235,-1.38814973831177,-0.726920425891876,1.13491839170456,-1.10800752043724,-1.02471634745598,0.370484858751297,-1.29697382450104,-1.25155115127563,-0.1878921687603,-1.4832575917244,-0.919044375419617,0.673184290528297,-1.49889606237411,-0.637453101575375,-0.821719110012054,-1.4710009098053,-0.750434191897511,-0.69642074406147,-1.2858738899231,-0.472789973020554,-0.971137374639511,-1.31129890680313,-0.418426424264908,-1.03790044784546,-1.32732945680618,-0.845136912539601,-0.813693568110466,-1.37691521644592,-0.868316724896431,-0.79875722527504,-1.32280290126801,-0.558988451957703,-0.614797696471214,-1.2840576171875,-0.545752435922623,-0.775778591632843, +-1.11669379472733,-0.534994810819626,-1.03140598535538,-1.17508214712143,0.827158331871033,-1.16549405455589,-0.894914552569389,0.580514177680016,-1.00965728238225,-0.829861670732498,1.62634873390198,-0.696655362844467,-0.830603420734406,1.38165229558945,-1.11485260725021,-0.977196499705315,1.2569982111454,-0.649149037897587,-0.981863886117935,1.23357537388802,-0.808263093233109,-0.803706526756287,1.67491710186005,-0.444571942090988,-0.775785386562347,1.68134409189224,-0.40664529055357,-0.983533173799515,1.68617564439774,0.0394919849932194,-0.327098963782191,1.89419323205948,0.245954208076,-0.478877238929272,1.88951122760773,0.0820159427821636,-0.906720340251923,1.4784340262413,-0.418921336531639,-1.40519714355469,0.927802681922913,-0.934150218963623,-0.547717832028866,1.86240136623383,-0.00378919392824173,-0.69316079467535,0.187105417251587,-1.03696715831757,-0.575827546417713,0.573448032140732,-0.608200611546636,0.690897023305297,0.315052628517151,-0.954800128936768,0.183532901108265,0.823383554816246,0.417519092559814,0.184700347483158,0.829444631934166,0.901920046657324,0.39201708137989,0.779818773269653,1.33813965320587,0.98917680233717,1.3541162610054,-0.170305090025067,0.75986672192812,0.671716392040253,-0.545597705990076,0.564215691760182,1.67668080329895,0.658905446529388,0.729451052844524,1.70525199174881,0.286651162430644,0.702544525265694,1.73078364133835,0.457958117127419,0.596256361993776,1.67401570081711,0.663255840539932,0.344773926102201,1.93609684705734,0.0411454793065786,0.450610881671309,1.74461299180984,-0.56015532463789,0.367787800729275,1.94582748413086,-0.0962763819843531,0.289740719162504,1.95469528436661,0.0486551951617002,0.346520926630522,1.74974083900452,-0.822795838117599,0.319237407124067,1.78733664751053,-0.7403244972229,0.41099131878523,1.43213939666748,-0.734650537371635,0.306786447763443,1.75166493654251,-0.511601652950048,0.405627872794867,0.685226738452911,-1.41074270009995,0.0579869414499203,0.0114344954490662,-0.0874009132385254,0.0432001032855371,0.0198035836219788,-0.0395279824733734, +-0.0671056024730206,-0.0802446603775024,0.30470234900713,-0.00369623303413391,0.00479245185852051,-0.080893736332655,-0.0264828056097031,0.0576838850975037,-0.317943271249533,-0.0720800422132015,-0.0744706392288208,0.248031482100487,0.0818341225385666,0.0370075106620789,-0.0888159573078156,0.0952276214957237,0.125438570976257,-0.543472781777382,0.155361194163561,-0.161461770534515,-0.476056568324566,0.0649666674435139,-0.109923839569092,-0.737196773290634,0.0423223301768303,0.394740283489227,0.81148562207818,0.095003068447113,0.0934145450592041,0.369599863886833,0.233735553920269,0.693124741315842,0.878727093338966,0.472392857074738,0.291512787342072,-0.285556465387344,1.13790571689606,0.0557072758674622,-0.60716687142849,1.00645393133163,0.0273334980010986,-1.01884686946869,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619, +1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511, +-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091, +0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109, +0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418, +-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052, +-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262, +-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759, +-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896, +-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369, +-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663, +-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374, +-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843, +-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012, +0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204, +-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292, +-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954, +0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048, +-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822, +-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742, +-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147, +-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429, +-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914, +-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966, +0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852, +-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875, +-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907, +-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505,-1.61309748888016, +-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671, +-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264, +0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951, +0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422, +0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678, +-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859, +-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851, +-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171, +-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681, +-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991, +0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851, +-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702, +-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797, +-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491, +-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838, +-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718, +-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962, +-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835, +-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509, +-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273, +-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524, +0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249, +-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368, +-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548, +-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744, +0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844, +-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636, +-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923, +-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422, +-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201, +-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337, +0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738, +0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305, +0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382, +0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657, +1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039, +1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183, +-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169, +0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471, +-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435, +1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319, +-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819,-0.910115396138281, +-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928, +-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443, +-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663, +-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508, +-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357, +-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867, +-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212, +-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553, +-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281, +0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841, +-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372, +-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522, +0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574, +-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107, +0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556, +-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212, +-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205, +0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789, +-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519, +-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455, +0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823, +0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785, +0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976, +-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349, +-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877, +1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827, +-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452, +-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125, +-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704, +-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802, +0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101, +0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797, +-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693, +-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689, +-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417, +-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336, +0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295, +-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052, +-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597, +-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458, +0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978, +1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697, +0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422, +0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569, +0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992, +-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653, +0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112, +0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114, +-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076, +-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955, +1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078, +-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193, +-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696, +0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956, +-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905, +0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852, +0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687, +0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846, +0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997, +-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446, +-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964, +0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107, +-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279, +-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877, +-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538, +-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596, +0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538, +-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899, +-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 + } + } + Geometry: 2807563817920, "Geometry::Mouth_Ape_Shape", "Shape" { + Version: 100 + Indexes: *5245 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,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,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381, +3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791, +3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201, +4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611, +4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021, +5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431, +5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841, +5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283, +6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742, +6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407, +7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834, +7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530, +8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *15735 { + a: -0.00131678581237793,-1.16456651687622,-0.784509181976318,-0.00131679326295853,-0.841342926025391,-0.708266139030457,-0.00131654739379883,-1.16456651687622,-0.784509181976318,-0.00131702423095703,-1.3824291229248,-0.789038896560669,-0.00131679326295853,-1.75268125534058,-0.897329330444336,-0.00131690502166748,-1.3824291229248,-0.789038896560669,-0.00131690502166748,-1.15439796447754,-0.727817058563232,-0.00131679326295853,-0.869798183441162,-0.631220579147339,-0.00131702423095703,-1.15439796447754,-0.727817058563232,-0.00131672620773315,-1.41605377197266,-0.687521457672119,-0.00131679326295853,-1.74359083175659,-0.788301944732666,-0.00131678581237793,-1.41609668731689,-0.687527656555176,-0.00131702423095703,-1.18601369857788,-0.579035043716431,-0.00131679326295853,-1.0502986907959,-0.348471641540527,-0.00131690502166748,-1.18601369857788,-0.579035043716431,-0.00131679326295853,-1.77493000030518,-0.765574932098389,-0.00131678581237793,-1.34931707382202,-0.537739038467407,-0.00131679326295853,-1.36733675003052,-0.324453353881836,-0.00131678581237793,-1.34931707382202,-0.537739038467407,-0.00131679326295853,-1.85173749923706,-0.768746376037598,-0.00131654739379883,-1.68018770217896,-0.617739200592041,-0.00131679326295853,-1.71908855438232,-0.442517757415771,-0.00131678581237793,-1.68018770217896,-0.617739200592041,-0.00131678581237793,-2.01742315292358,-0.777433395385742,-0.00131678581237793,-2.00531148910522,-0.7269287109375,-0.00131678581237793,-2.03261232376099,-0.606319427490234,-0.00131678581237793,-2.00531148910522,-0.7269287109375,-0.00131679326295853,-2.33714246749878,-0.815988540649414,-0.00131702423095703,-2.34195995330811,-0.796266078948975,-0.00131680071353912,-2.36750936508179,-0.683027267456055,-0.00131690502166748,-2.34195995330811,-0.796266078948975,-0.00131679326295853,-2.52294158935547,-0.807780265808105,-0.00131690502166748,-2.51532554626465,-0.778409957885742,-0.00131680816411972,-2.5394549369812,-0.715933799743652,-0.00131690502166748,-2.51532554626465,-0.778409957885742,-0.00131680443882942, +-2.67915344238281,-0.815197944641113,-0.00131690502166748,-2.59074544906616,-0.770546913146973,-0.00131678953766823,-2.66885757446289,-0.76244068145752,-0.00131678581237793,-2.59074544906616,-0.770546913146973,-0.00131690502166748,-1.49801063537598,-0.833045482635498,-0.00131672620773315,-1.51643466949463,-0.759972095489502,-0.00131702423095703,-1.49475240707397,-0.832326889038086,-0.00131672620773315,-1.51545238494873,-0.759735107421875,-0.00131679326295853,-1.74598407745361,-0.827236652374268,-0.00131672620773315,-1.65232086181641,-0.873010635375977,-0.00131690502166748,-1.32848930358887,-0.770540952682495,-0.00131678581237793,-1.15949296951294,-0.770950794219971,-0.00131702423095703,-1.05891799926758,-0.69649076461792,-0.00131702423095703,-1.06403493881226,-0.761947154998779,-0.00131690502166748,-1.05885314941406,-0.748164892196655,-0.00131678581237793,-0.929559230804443,-0.650561332702637,-0.00131690502166748,-0.927359104156494,-0.728891134262085,-0.00131690502166748,-0.921761035919189,-0.714740991592407,-0.00131681561470032,-0.872917175292969,-0.632207632064819,-0.00131679326295853,-0.843522548675537,-0.695952177047729,-0.00131681561470032,-0.846630573272705,-0.709540843963623,-0.00131681561470032,-0.848115921020508,-0.697082877159119,-0.00131678581237793,-0.872917175292969,-0.632207632064819,-0.00131681561470032,-0.846630573272705,-0.709540843963623,-0.00131684541702271,-0.848115921020508,-0.697082877159119,-0.00131672620773315,-0.895091533660889,-0.638898134231567,-0.00131678581237793,-0.881632804870605,-0.717839479446411,-0.00131690502166748,-0.879186630249023,-0.704369783401489,-0.00131690502166748,-1.05891799926758,-0.69649076461792,-0.00131654739379883,-1.15949296951294,-0.770950794219971,-0.00131690502166748,-1.06403493881226,-0.761947154998779,-0.00131690502166748,-1.05885314941406,-0.748164892196655,-0.00131690502166748,-1.21893358230591,-0.743726015090942,-0.00131690502166748,-1.47878408432007,-0.781710624694824,-0.00131678581237793,-1.63901281356812,-0.791642665863037,-0.00131679326295853,-1.74595069885254, +-0.857303619384766,-0.00131678581237793,-1.64147853851318,-0.829009056091309,-0.00131690502166748,-1.48099613189697,-0.782209873199463,-0.00131678581237793,-1.37294483184814,-0.73256778717041,-0.00131678581237793,-1.33004903793335,-0.659983396530151,-0.00131678581237793,-1.32172822952271,-0.71227765083313,-0.00131702423095703,-1.15933275222778,-0.652544975280762,-0.00131690502166748,-1.13200950622559,-0.496951818466187,-0.00131690502166748,-1.08000326156616,-0.596647024154663,-0.00131690502166748,-1.06493234634399,-0.377222537994385,-0.00131690502166748,-0.975296020507813,-0.514616966247559,-0.00131681561470032,-1.05090808868408,-0.347684621810913,-0.00131679326295853,-0.93989896774292,-0.486225128173828,-0.00131678581237793,-0.941308498382568,-0.487429618835449,-0.00131681561470032,-1.05090808868408,-0.347684621810913,-0.00131681561470032,-0.941308498382568,-0.487429618835449,-0.00131672620773315,-1.05398368835449,-0.35332989692688,-0.00131672620773315,-0.952577114105225,-0.496379613876343,-0.00131690502166748,-1.13200950622559,-0.496951818466187,-0.00131690502166748,-1.15933275222778,-0.652544975280762,-0.00131690502166748,-1.08000326156616,-0.596647024154663,-0.00131690502166748,-1.23199605941772,-0.619147062301636,-0.00131690502166748,-1.21654081344604,-0.679515361785889,-0.00131678581237793,-1.66875886917114,-0.737847805023193,-0.00131679326295853,-1.75414419174194,-0.77415657043457,-0.00131684541702271,-1.62645101547241,-0.748936653137207,-0.00131678581237793,-1.63843536376953,-0.739275932312012,-0.00131678581237793,-1.66875886917114,-0.737847805023193,-0.00131684541702271,-1.62645149230957,-0.748936653137207,-0.00131678581237793,-1.63843488693237,-0.739275932312012,-0.00131702423095703,-1.42042207717896,-0.655091285705566,-0.00131690502166748,-1.35837650299072,-0.644246816635132,-0.00131690502166748,-1.24618101119995,-0.541110515594482,-0.00131678581237793,-1.35570478439331,-0.440496683120728,-0.00131690502166748,-1.22494649887085,-0.445680618286133,-0.00131678581237793,-1.3733606338501,-0.301380157470703,-0.00131690502166748, +-1.20432138442993,-0.308650493621826,-0.00131678581237793,-1.3707332611084,-0.309600353240967,-0.00131679326295853,-1.19752788543701,-0.30553126335144,-0.00131684541702271,-1.19925832748413,-0.297976970672607,-0.00131678581237793,-1.3707332611084,-0.309600353240967,-0.00131681561470032,-1.19925832748413,-0.297976970672607,-0.00131678581237793,-1.37629795074463,-0.280099868774414,-0.00131678581237793,-1.20171499252319,-0.286249399185181,-0.00131678581237793,-1.35570478439331,-0.440496683120728,-0.00131690502166748,-1.24618101119995,-0.541110515594482,-0.00131702423095703,-1.22494649887085,-0.445680618286133,-0.00131678581237793,-1.36206007003784,-0.593200206756592,-0.00131702423095703,-1.2758207321167,-0.591330766677856,-0.00131678581237793,-1.79242515563965,-0.754674434661865,-0.00131679326295853,-1.80614042282104,-0.765493392944336,-0.00131678581237793,-1.71988964080811,-0.745811939239502,-0.00131678581237793,-1.79242515563965,-0.754674434661865,-0.00131672620773315,-1.71988964080811,-0.745811939239502,-0.00131690502166748,-1.67177104949951,-0.711940765380859,-0.00131690502166748,-1.53006505966187,-0.682493686676025,-0.00131654739379883,-1.50491046905518,-0.56794548034668,-0.00131654739379883,-1.69622039794922,-0.542753219604492,-0.00131654739379883,-1.52115631103516,-0.478992938995361,-0.00131654739379883,-1.72589302062988,-0.427042007446289,-0.00131678581237793,-1.55193948745728,-0.34783935546875,-0.00131678581237793,-1.72321176528931,-0.424537658691406,-0.00131679326295853,-1.54547691345215,-0.372405052185059,-0.00131678581237793,-1.54972839355469,-0.353837490081787,-0.00131678581237793,-1.72321176528931,-0.424537658691406,-0.00131678581237793,-1.54972839355469,-0.353837490081787,-0.00131702423095703,-1.73331594467163,-0.394484996795654,-0.00131690502166748,-1.55831575393677,-0.319913387298584,-0.00131678581237793,-1.69622039794922,-0.542753219604492,-0.00131678581237793,-1.50491046905518,-0.56794548034668,-0.00131678581237793,-1.52115631103516,-0.478992938995361,-0.00131678581237793,-1.67281818389893,-0.664607524871826, +-0.00131654739379883,-1.50479221343994,-0.621973037719727,-0.00131684541702271,-2.01315116882324,-0.761335849761963,-0.00131678953766823,-1.91560125350952,-0.770160675048828,-0.00131672620773315,-1.8869743347168,-0.755993843078613,-0.00131678581237793,-2.01315116882324,-0.761335849761963,-0.00131678581237793,-1.88697481155396,-0.755993843078613,-0.00131690502166748,-2.00191497802734,-0.744923114776611,-0.00131690502166748,-1.8300986289978,-0.728931427001953,-0.00131678581237793,-1.84229564666748,-0.673271656036377,-0.00131678581237793,-2.01622724533081,-0.678043842315674,-0.00131678581237793,-1.85581874847412,-0.613356113433838,-0.00131690502166748,-2.03695964813232,-0.598142623901367,-0.00131678581237793,-1.88110065460205,-0.517839908599854,-0.00131684541702271,-2.03429985046387,-0.598894119262695,-0.00131679326295853,-1.87527942657471,-0.528022289276123,-0.00131678581237793,-1.87816333770752,-0.515514850616455,-0.00131684541702271,-2.03430080413818,-0.598894119262695,-0.00131672620773315,-1.87816333770752,-0.515514850616455,-0.00131690502166748,-2.04064464569092,-0.58193826675415,-0.00131690502166748,-1.88685750961304,-0.492636680603027,-0.00131654739379883,-2.01622724533081,-0.678043842315674,-0.00131678581237793,-1.84229564666748,-0.673271656036377,-0.00131678581237793,-1.8558177947998,-0.613356113433838,-0.00131690502166748,-2.00072860717773,-0.750216484069824,-0.00131678581237793,-1.83487224578857,-0.708025455474854,-0.00131681561470032,-2.34025049209595,-0.802304267883301,-0.00131680071353912,-2.17678594589233,-0.798309803009033,-0.00131684541702271,-2.18042802810669,-0.782315254211426,-0.00131681561470032,-2.34025049209595,-0.802304267883301,-0.00131684541702271,-2.18042802810669,-0.782315254211426,-0.00131690502166748,-2.34354066848755,-0.793880939483643,-0.00131690502166748,-2.18414545059204,-0.771455764770508,-0.00131690502166748,-2.1832914352417,-0.771186351776123,-0.00131702423095703,-2.35224580764771,-0.749790191650391,-0.00131690502166748,-2.19373655319214,-0.723992347717285,-0.00131702423095703,-2.37012577056885, +-0.672891139984131,-0.00131690502166748,-2.21286725997925,-0.645771980285645,-0.00131684541702271,-2.36980581283569,-0.672952175140381,-0.00131680071353912,-2.20956659317017,-0.654767036437988,-0.00131681561470032,-2.21140336990356,-0.646729946136475,-0.00131681561470032,-2.36980581283569,-0.672952175140381,-0.00131684541702271,-2.21140336990356,-0.646729946136475,-0.00131690502166748,-2.37415266036987,-0.655291080474854,-0.00131702423095703,-2.21648740768433,-0.630029201507568,-0.00131690502166748,-2.35224580764771,-0.749790191650391,-0.00131690502166748,-2.1832914352417,-0.771186351776123,-0.00131714344024658,-2.19373655319214,-0.723992347717285,-0.00131690502166748,-2.33934307098389,-0.812191963195801,-0.00131690502166748,-2.18010807037354,-0.789185047149658,-0.00131681561470032,-2.52335739135742,-0.803042411804199,-0.00131678581237793,-2.44193410873413,-0.813781261444092,-0.00131681561470032,-2.44399738311768,-0.804670333862305,-0.00131684541702271,-2.52335739135742,-0.803042411804199,-0.00131681561470032,-2.44399738311768,-0.804670333862305,-0.00131666660308838,-2.5218620300293,-0.795303344726563,-0.00131678581237793,-2.44684886932373,-0.797529697418213,-0.00131690502166748,-2.44711637496948,-0.792348861694336,-0.00131690502166748,-2.52065563201904,-0.749740600585938,-0.00131690502166748,-2.45559597015381,-0.753960609436035,-0.00131690502166748,-2.53476524353027,-0.70601749420166,-0.00131690502166748,-2.46993064880371,-0.691664695739746,-0.00131681561470032,-2.54082155227661,-0.708598136901855,-0.00131678208708763,-2.46774053573608,-0.700729370117188,-0.00131684541702271,-2.46989822387695,-0.691346168518066,-0.00131681561470032,-2.54082155227661,-0.708598136901855,-0.00131681561470032,-2.46989822387695,-0.691346168518066,-0.00131672620773315,-2.54207134246826,-0.696316719055176,-0.00131672620773315,-2.47345495223999,-0.676225662231445,-0.00131702423095703,-2.52065563201904,-0.749740600585938,-0.00131702423095703,-2.44711637496948,-0.792348861694336,-0.00131690502166748,-2.45559597015381,-0.753960609436035,-0.00131690502166748, +-2.51595497131348,-0.791614532470703,-0.00131690502166748,-2.44480895996094,-0.806534767150879,-0.00131681561470032,-2.67549085617065,-0.812098503112793,-0.00131680071353912,-2.61196804046631,-0.814131736755371,-0.00131681561470032,-2.60999298095703,-0.810941696166992,-0.00131681561470032,-2.67549085617065,-0.812098503112793,-0.00131681561470032,-2.60999298095703,-0.810941696166992,-0.00131678581237793,-2.65206527709961,-0.79787540435791,-0.00131672620773315,-2.59630966186523,-0.79991340637207,-0.00131702423095703,-2.56319761276245,-0.773471832275391,-0.00131690502166748,-2.59664058685303,-0.754376411437988,-0.00131702423095703,-2.56439447402954,-0.750367164611816,-0.00131678581237793,-2.62025785446167,-0.736787796020508,-0.00131678581237793,-2.58714437484741,-0.719856262207031,-0.00131681561470032,-2.66714811325073,-0.758730888366699,-0.00131679698824883,-2.61179733276367,-0.736563682556152,-0.00131681561470032,-2.61175489425659,-0.731293678283691,-0.00131678581237793,-2.66714811325073,-0.758730888366699,-0.00131681561470032,-2.61175489425659,-0.731293678283691,-0.00131678581237793,-2.65544128417969,-0.745166778564453,-0.00131672620773315,-2.60757827758789,-0.719038963317871,-0.00131678581237793,-2.59664011001587,-0.754376411437988,-0.00131690502166748,-2.56319761276245,-0.773471832275391,-0.00131690502166748,-2.56439447402954,-0.750367164611816,-0.00131690502166748,-2.6104941368103,-0.780324935913086,-0.00131678581237793,-2.57227659225464,-0.786821365356445,-0.00131678208708763,-2.69471645355225,-0.793301582336426,-0.00131681561470032,-2.69147920608521,-0.790179252624512,-0.00131672620773315,-2.65544128417969,-0.745166778564453,-0.00131672620773315,-2.67101430892944,-0.775537490844727,-0.00131678581237793,-2.69147968292236,-0.790179252624512,-0.00131678581237793,-2.62025785446167,-0.736787796020508,-0.00131678581237793,-2.62725257873535,-0.760293960571289,-0.00131690502166748,-0.927359104156494,-0.728891134262085,-0.00131690502166748,-0.929559230804443,-0.650561332702637,-0.00131690502166748,-0.921761035919189,-0.714740991592407, +-0.00131702423095703,-1.32887411117554,-0.770617008209229,-0.00131678581237793,-1.06493234634399,-0.377222537994385,-0.00131678581237793,-0.975296020507813,-0.514616966247559,-0.00131678581237793,-1.3733606338501,-0.301380157470703,-0.00131702423095703,-1.20432138442993,-0.308650493621826,-0.00131654739379883,-1.72589302062988,-0.427042007446289,-0.00131654739379883,-1.55193948745728,-0.34783935546875,-0.00131690502166748,-2.03695964813232,-0.598142623901367,-0.00131678581237793,-1.88110065460205,-0.517839908599854,-0.00131690502166748,-2.37012577056885,-0.672891139984131,-0.00131690502166748,-2.21286725997925,-0.645771980285645,-0.00131690502166748,-2.53476524353027,-0.70601749420166,-0.00131678581237793,-2.46993064880371,-0.691664695739746,-0.00131678581237793,-2.58714437484741,-0.719856262207031,-0.00131672620773315,-2.65206527709961,-0.79787540435791,-0.00131672620773315,-2.67101383209229,-0.775537490844727,-0.00131672620773315,-2.5218620300293,-0.795303344726563,-0.00131672620773315,-2.59630966186523,-0.79991340637207,-0.00131690502166748,-2.34354066848755,-0.793880939483643,-0.00131678581237793,-2.44684886932373,-0.797529697418213,-0.00131690502166748,-2.00191497802734,-0.744923114776611,-0.00131678581237793,-2.18414545059204,-0.771455764770508,-0.00131702423095703,-1.67177104949951,-0.711940765380859,-0.00131702423095703,-1.83009815216064,-0.728931427001953,-0.00131690502166748,-1.42042207717896,-0.655091285705566,-0.00131702423095703,-1.53006505966187,-0.682493686676025,-0.00131690502166748,-1.33004903793335,-0.659983396530151,-0.00131678581237793,-1.35837650299072,-0.644246816635132,-0.00131690502166748,-1.37255907058716,-0.732486724853516,-0.00131678581237793,-1.32172822952271,-0.71227765083313,-0.00131690502166748,-1.21893358230591,-0.743726015090942,-0.00131690502166748,-0.881632804870605,-0.717839479446411,-0.00131672620773315,-0.895091533660889,-0.638898134231567,-0.00131678581237793,-0.879186630249023,-0.704369783401489,-0.00131702423095703,-1.23199605941772,-0.619147062301636,-0.00131690502166748,-1.21654081344604, +-0.679515361785889,-0.00131678581237793,-1.36206007003784,-0.593200206756592,-0.00131702423095703,-1.2758207321167,-0.591330766677856,-0.00131678581237793,-1.67281818389893,-0.664607524871826,-0.00131678581237793,-1.50479221343994,-0.621973037719727,-0.00131702423095703,-2.00072908401489,-0.750216484069824,-0.00131678581237793,-1.83487224578857,-0.708025455474854,-0.00131702423095703,-2.33934307098389,-0.812191963195801,-0.00131690502166748,-2.18010807037354,-0.789185047149658,-0.00131690502166748,-2.51595592498779,-0.791614532470703,-0.00131690502166748,-2.44480895996094,-0.806534767150879,-0.00131678581237793,-2.6104941368103,-0.780324935913086,-0.00131690502166748,-2.57227659225464,-0.786821365356445,-0.00131690502166748,-2.62725257873535,-0.760293960571289,-0.00131666660308838,-2.54207134246826,-0.696316719055176,-0.00131672620773315,-2.60757827758789,-0.719038963317871,-0.00131678581237793,-2.37415266036987,-0.655291080474854,-0.00131672620773315,-2.47345495223999,-0.676225662231445,-0.00131678581237793,-2.04064464569092,-0.58193826675415,-0.00131678581237793,-2.21648740768433,-0.630029201507568,-0.00131690502166748,-1.73331594467163,-0.394484996795654,-0.00131690502166748,-1.88685750961304,-0.492636680603027,-0.00131690502166748,-1.37629795074463,-0.280099868774414,-0.00131690502166748,-1.55831575393677,-0.319913387298584,-0.00131672620773315,-1.05398368835449,-0.35332989692688,-0.00131690502166748,-1.20171499252319,-0.286249399185181,-0.00131672620773315,-0.952577114105225,-0.496379613876343,-0.00131672620773315,-1.65456438064575,-0.873513221740723,-0.00131678581237793,-1.63939666748047,-0.791746139526367,-0.00131672620773315,-1.64295387268066,-0.829360961914063,0.00525832176208496,-1.04811000823975,-0.706058979034424,0.00525891780853271,-1.04811000823975,-0.706058979034424,0.00525891780853271,-1.2441873550415,-0.710135459899902,0.00525888800621033,-1.57741260528564,-0.807596683502197,0.00525891780853271,-1.2441873550415,-0.710135459899902,0.00525891780853271,-1.03895807266235,-0.655035972595215,0.00525891780853271, +-1.03895807266235,-0.655035972595215,0.00525891780853271,-1.34820890426636,-0.749741077423096,0.00525844097137451,-1.34527778625488,-0.749094009399414,0.00525885820388794,-1.48708868026733,-0.785709857940674,0.00525891780853271,-1.195641040802,-0.69348669052124,0.00525844097137451,-1.04354381561279,-0.693856239318848,0.00525891780853271,-1.04354381561279,-0.693856239318848,0.00525891780853271,-1.09703969955444,-0.66935396194458,0.00525891780853271,-1.19598627090454,-0.69355583190918,0.00525844097137451,-1.09703969955444,-0.66935396194458,0.00525891780853271,-1.48910808563232,-0.786162853240967,-0.330536484718323,-1.30071115493774,-0.746082782745361,0.00524124503135681,-1.68372392654419,-0.927432060241699,0.342309355735779,-1.29865312576294,-0.745621204376221,0.00525888800621033,-2.56311416625977,-0.65964412689209,0.288524031639099,-2.43446636199951,-0.636101722717285,0.189611315727234,-2.19819736480713,-0.548885345458984,0.502116441726685,-1.74963808059692,-0.483948230743408,0.551810503005981,-1.49864387512207,-0.418755054473877,0.00525888800621033,-2.44503784179688,-0.987720489501953,0.274970889091492,-2.32023048400879,-0.959100723266602,0.398973345756531,-2.08941268920898,-0.906384944915771,0.554855346679688,-1.68613624572754,-0.814339637756348,0.57016658782959,-1.4049072265625,-0.73402738571167,0.160012602806091,-2.4193811416626,-0.837478637695313,0.16149890422821,-2.50185060501099,-0.651933670043945,0.262487769126892,-2.33581447601318,-0.833929061889648,0.16957551240921,-2.38771533966064,-0.974470138549805,0.00525888800621033,-2.45940017700195,-0.864814758300781,0.326244235038757,-2.24190092086792,-0.799354553222656,0.308335661888123,-2.33547830581665,-0.600118637084961,0.344616770744324,-2.11952924728394,-0.744284629821777,0.337957262992859,-2.21344947814941,-0.934741020202637,0.437043905258179,-1.93501377105713,-0.724577903747559,0.206494092941284,-1.99744892120361,-0.510994911193848,0.520439624786377,-1.70371866226196,-0.663863658905029,0.474496603012085,-1.93008613586426,-0.869965076446533,0.553906440734863, +-1.56214714050293,-0.692883968353271,0.573881387710571,-1.62022018432617,-0.449306011199951,0.558328628540039,-1.44755935668945,-0.611403942108154,0.564113855361938,-1.54318046569824,-0.781774997711182,0.119071841239929,-2.49651527404785,-0.804083824157715,0.00525888800621033,-2.49367904663086,-0.795154571533203,0.124963581562042,-2.56251907348633,-0.658999443054199,0.166423141956329,-2.4484601020813,-0.784084320068359,0.0900419652462006,-2.42803239822388,-0.899682998657227,0.340300440788269,-2.338951587677,-0.770124435424805,0.279583811759949,-2.37444448471069,-0.773154258728027,0.367550253868103,-2.40711164474487,-0.619698524475098,0.32501494884491,-2.27587842941284,-0.740165710449219,0.301494479179382,-2.27867364883423,-0.851045608520508,0.356318235397339,-2.07528209686279,-0.677525043487549,0.29842221736908,-2.14370965957642,-0.692342758178711,0.202696084976196,-2.12940263748169,-0.517802238464355,0.379169702529907,-1.96305847167969,-0.659507751464844,0.420982599258423,-2.02891683578491,-0.791150569915771,0.577894687652588,-1.67505502700806,-0.581598281860352,0.531595706939697,-1.72157382965088,-0.598414897918701,0.562385320663452,-1.70056676864624,-0.464378356933594,0.591819763183594,-1.59229326248169,-0.564204692840576,0.544995069503784,-1.6478590965271,-0.691437721252441,0.241104483604431,-2.42741680145264,-0.795224189758301,0.248125433921814,-2.50032138824463,-0.644448280334473,0.222605109214783,-2.35200357437134,-0.88291072845459,0.213829398155212,-2.35233926773071,-0.926547050476074,0.260697245597839,-2.31589555740356,-0.913755416870117,0.225542426109314,-2.35506916046143,-0.966940879821777,0.157146811485291,-2.38929224014282,-0.928794860839844,0.0871575772762299,-2.41898727416992,-0.941831588745117,0.0887702405452728,-2.42278385162354,-0.982504844665527,0.00525888800621033,-2.44562387466431,-0.943852424621582,0.333860754966736,-2.22178936004639,-0.719331741333008,0.283727049827576,-2.28129529953003,-0.566926956176758,0.352396368980408,-2.16002988815308,-0.843708992004395,0.354111552238464,-2.15014743804932, +-0.88960075378418,0.388711810112,-2.08959436416626,-0.858804702758789,0.36263644695282,-2.15208911895752,-0.923360824584961,0.32798182964325,-2.2139687538147,-0.889419555664063,0.302424788475037,-2.2669939994812,-0.906044006347656,0.31451404094696,-2.26818656921387,-0.947345733642578,0.467784881591797,-1.84838581085205,-0.633304119110107,0.361590623855591,-1.88879585266113,-0.491543769836426,0.4919273853302,-1.81514835357666,-0.768573760986328,0.49591588973999,-1.83783912658691,-0.809678554534912,0.538844347000122,-1.68846273422241,-0.767468452453613,0.507181644439697,-1.83560848236084,-0.848238468170166,0.463948249816895,-1.93623876571655,-0.825409412384033,0.425999402999878,-2.01915121078491,-0.848917484283447,0.435758352279663,-2.01204681396484,-0.888746738433838,0.590887784957886,-1.5051417350769,-0.546532154083252,0.58401083946228,-1.54276704788208,-0.42743968963623,0.562609195709229,-1.46041297912598,-0.557098865509033,0.55729079246521,-1.47953319549561,-0.655812740325928,0.557487010955811,-1.46480512619019,-0.721237182617188,0.560478925704956,-1.41725015640259,-0.693661212921143,0.56697940826416,-1.45563411712646,-0.761692523956299,0.55406665802002,-1.55126571655273,-0.743087768554688,0.54885458946228,-1.63394689559937,-0.760148525238037,0.560997724533081,-1.62758350372314,-0.801164150238037,0.0527718961238861,-2.51252126693726,-0.803409576416016,0.0552977025508881,-2.58012962341309,-0.663087844848633,0.0511969029903412,-2.43383884429932,-0.944164276123047,0.0515550076961517,-2.43479156494141,-0.985312461853027,0.0512326657772064,-2.45074844360352,-0.893998146057129,0.123442530632019,-2.40373086929321,-0.936640739440918,0.129888892173767,-2.40548038482666,-0.978553771972656,0.160244822502136,-2.46913814544678,-0.796047210693359,0.158973515033722,-2.53310298919678,-0.653005599975586,0.130139648914337,-2.41770887374878,-0.880992889404297,0.194254696369171,-2.44624042510986,-0.791056632995605,0.193466007709503,-2.50933027267456,-0.64768123626709,0.186052680015564,-2.37170028686523,-0.928461074829102,0.1990727186203, +-2.37133502960205,-0.970684051513672,0.189096748828888,-2.39143514633179,-0.868106842041016,0.238704562187195,-2.33436298370361,-0.920031547546387,0.25081193447113,-2.33830451965332,-0.963153839111328,0.276277899742126,-2.39426279067993,-0.784895896911621,0.286701083183289,-2.46373510360718,-0.636845588684082,0.252226710319519,-2.3406400680542,-0.856915473937988,0.310001254081726,-2.37847280502319,-0.778481483459473,0.334436297416687,-2.43972730636597,-0.630553245544434,0.2819904088974,-2.29310321807861,-0.910636901855469,0.296335577964783,-2.29497718811035,-0.95341968536377,0.276045680046082,-2.31806039810181,-0.848236083984375,0.317362189292908,-2.23985624313354,-0.897336006164551,0.326674342155457,-2.24058723449707,-0.941001892089844,0.340358138084412,-2.29481601715088,-0.75369930267334,0.351624369621277,-2.36469554901123,-0.605121612548828,0.323991656303406,-2.25289726257324,-0.821122169494629,0.341576457023621,-2.27273607254028,-0.733445167541504,0.326793074607849,-2.32888984680176,-0.590246200561523,0.338136553764343,-2.18429279327393,-0.886860847473145,0.347753882408142,-2.183274269104,-0.928267478942871,0.332857012748718,-2.21393823623657,-0.821736335754395,0.371411204338074,-2.11992406845093,-0.870956420898438,0.380276083946228,-2.12149047851563,-0.91417121887207,0.316292643547058,-2.17396068572998,-0.699018478393555,0.240886449813843,-2.23419046401978,-0.550418853759766,0.361952185630798,-2.13100099563599,-0.78962230682373,0.325198888778687,-2.13249731063843,-0.687713623046875,0.206500291824341,-2.18773126602173,-0.532547950744629,0.406406164169312,-2.05533409118652,-0.855828285217285,0.416990995407104,-2.05109405517578,-0.897664546966553,0.389714002609253,-2.07887840270996,-0.788496017456055,0.446451425552368,-1.97877550125122,-0.838061332702637,0.455083608627319,-1.9739408493042,-0.880004405975342,0.385709524154663,-1.99266958236694,-0.662038803100586,0.21422553062439,-2.03904914855957,-0.506222248077393,0.450398206710815,-1.96375179290771,-0.760270595550537,0.416446924209595,-1.93474531173706,-0.647188663482666, +0.276292562484741,-1.96662473678589,-0.498110771179199,0.479386329650879,-1.89149904251099,-0.818816661834717,0.490829944610596,-1.88497161865234,-0.859594821929932,0.467661619186401,-1.89707088470459,-0.756648540496826,0.516404628753662,-1.75995445251465,-0.788554668426514,0.528582334518433,-1.76113605499268,-0.831336975097656,0.526720523834229,-1.76311874389648,-0.613882064819336,0.471326589584351,-1.80082988739014,-0.479732990264893,0.512808322906494,-1.73832702636719,-0.719019889831543,0.0547774732112885,-2.563307762146,-0.708688735961914,0.00525888800621033,-2.54281187057495,-0.704010009765625,0.594470024108887,-1.52767467498779,-0.46815299987793,0.560263872146606,-1.48291635513306,-0.461886882781982,0.16572505235672,-2.48822975158691,-0.692581176757813,0.19572240114212,-2.49414968490601,-0.693759918212891,0.25072181224823,-2.48332691192627,-0.692026138305664,0.29028308391571,-2.44533538818359,-0.683441162109375,0.165672183036804,-2.51628017425537,-0.69853401184082,0.289732336997986,-2.41950511932373,-0.677214622497559,0.128044009208679,-2.54677152633667,-0.70530891418457,0.331405520439148,-2.42642688751221,-0.678193092346191,0.363402247428894,-2.39108610153198,-0.667400360107422,0.345931887626648,-2.34665393829346,-0.650425910949707,0.310008883476257,-2.32258415222168,-0.639471054077148,0.331999182701111,-2.31838703155518,-0.635407447814941,0.294435739517212,-2.26965284347534,-0.613275527954102,0.252158403396606,-2.22026109695435,-0.5941162109375,0.20587146282196,-2.1888108253479,-0.584050178527832,0.232181310653687,-2.17856502532959,-0.578739166259766,0.243914842605591,-2.11896228790283,-0.566247940063477,0.257657766342163,-2.02714395523071,-0.552835464477539,0.240994215011597,-1.99333667755127,-0.548832416534424,0.31352686882019,-1.96250820159912,-0.5447096824646,0.395435094833374,-1.87893867492676,-0.534136772155762,0.496066331863403,-1.78857564926147,-0.522333145141602,0.515207052230835,-1.74293804168701,-0.516073703765869,0.576037406921387,-1.69395065307617,-0.504491806030273,0.589477062225342,-1.61154317855835, +-0.486894130706787,0.00525888800621033,-2.54843521118164,-0.65662956237793,0.267039656639099,-2.42530727386475,-0.632914543151855,0.158532977104187,-2.19447040557861,-0.546587944030762,0.441711187362671,-1.7391996383667,-0.480649471282959,0.515346765518188,-1.49387550354004,-0.416996002197266,0.00524124503135681,-2.28778600692749,-0.986920356750488,0.00525888800621033,-2.08150959014893,-1.01337909698486,0.15369063615799,-2.41069984436035,-0.835323333740234,0.155947089195251,-2.49164199829102,-0.649455070495605,0.243718981742859,-2.33120965957642,-0.838438034057617,0.00525888800621033,-2.3571457862854,-0.964550971984863,0.00525888800621033,-2.45152616500854,-0.862857818603516,0.301656126976013,-2.2387318611145,-0.798836708068848,0.278573393821716,-2.32956123352051,-0.597905158996582,0.323930144309998,-2.11699771881104,-0.74368953704834,0.00525888800621033,-2.21468925476074,-1.00681304931641,0.377373456954956,-1.91328096389771,-0.720399379730225,0.153334379196167,-1.98153972625732,-0.50562047958374,0.476372957229614,-1.68543434143066,-0.677840232849121,0.485600471496582,-1.55059194564819,-0.689852714538574,0.490172863006592,-1.61692094802856,-0.448363304138184,0.499229907989502,-1.44069623947144,-0.61570930480957,0.0869968831539154,-2.46295738220215,-0.796765327453613,0.00525888800621033,-2.4783182144165,-0.791691780090332,0.0950921475887299,-2.53399705886841,-0.656942367553711,0.158901572227478,-2.43628120422363,-0.781231880187988,0.0789378583431244,-2.40657663345337,-0.894242286682129,0.271820902824402,-2.30466842651367,-0.761660575866699,0.254972815513611,-2.36336898803711,-0.770991325378418,0.296679377555847,-2.3800892829895,-0.611579895019531,0.29197108745575,-2.26754713058472,-0.738607406616211,0.261413931846619,-2.2652153968811,-0.847596168518066,0.239363551139832,-2.05802774429321,-0.67044734954834,0.270920157432556,-2.13877820968628,-0.69100284576416,0.0884183645248413,-2.11292743682861,-0.50874137878418,0.284152865409851,-1.94046545028687,-0.652359485626221,0.364000201225281,-2.02161121368408,-0.789306640625, +0.456996202468872,-1.66801357269287,-0.581506729125977,0.460724115371704,-1.70579767227173,-0.609631061553955,0.463152647018433,-1.69550323486328,-0.461818695068359,0.469185352325439,-1.59080219268799,-0.563355922698975,0.479724884033203,-1.63084173202515,-0.690422534942627,0.203657031059265,-2.39630937576294,-0.787616729736328,0.218162417411804,-2.47257995605469,-0.642019271850586,0.185478568077087,-2.34566783905029,-0.873042106628418,0.182344794273376,-2.33809232711792,-0.906703948974609,0.222335696220398,-2.30213928222656,-0.900912284851074,0.00525888800621033,-2.32410526275635,-0.975761413574219,0.13198459148407,-2.37140130996704,-0.914156913757324,0.0769852101802826,-2.39863586425781,-0.922009468078613,0.00525888800621033,-2.38627290725708,-0.952635765075684,0.00525888800621033,-2.42136192321777,-0.928607940673828,0.257248282432556,-2.19008684158325,-0.706784248352051,0.197605490684509,-2.25489521026611,-0.553607940673828,0.309368014335632,-2.15673685073853,-0.81589412689209,0.313027262687683,-2.14560031890869,-0.861202239990234,0.339927077293396,-2.08340358734131,-0.849995613098145,0.00525888800621033,-2.15474224090576,-1.01245594024658,0.288295149803162,-2.2052206993103,-0.878484725952148,0.25990903377533,-2.25583362579346,-0.887387275695801,0.00525888800621033,-2.25575685501099,-0.996286392211914,0.342995405197144,-1.83352041244507,-0.62583589553833,0.265158414840698,-1.87853956222534,-0.485839366912842,0.425525903701782,-1.80104494094849,-0.756980419158936,0.429795026779175,-1.7974739074707,-0.786581993103027,0.447543382644653,-1.64154148101807,-0.756387710571289,0.402627229690552,-1.9029393196106,-0.812516212463379,0.367739081382751,-2.01583480834961,-0.83270788192749,0.00525888800621033,-1.98578405380249,-1.0111722946167,0.480676412582397,-1.5074782371521,-0.546815872192383,0.497796773910522,-1.54453611373901,-0.427838802337646,0.498298645019531,-1.45555734634399,-0.556342124938965,0.494572401046753,-1.47342872619629,-0.653948783874512,0.460724353790283,-1.46086454391479,-0.714517593383789,0.46760106086731, +-1.53303909301758,-0.723948001861572,0.458128452301025,-1.59088039398193,-0.74349308013916,0.0380872189998627,-2.46823501586914,-0.793573379516602,0.0417397916316986,-2.54170560836792,-0.657605171203613,0.0475428998470306,-2.40953731536865,-0.927428245544434,0.0465935170650482,-2.42812824249268,-0.888524055480957,0.10178929567337,-2.38508176803589,-0.921097755432129,0.136390030384064,-2.43665599822998,-0.788115501403809,0.138593018054962,-2.50784921646118,-0.644917488098145,0.116958975791931,-2.39920282363892,-0.876439094543457,0.168107867240906,-2.41638135910034,-0.784503936767578,0.172065615653992,-2.48368215560913,-0.64472770690918,0.159063637256622,-2.35310888290405,-0.913186073303223,0.166226744651794,-2.37685346603394,-0.863212585449219,0.19984233379364,-2.32125091552734,-0.906092643737793,0.236395239830017,-2.36757612228394,-0.778266906738281,0.252972006797791,-2.44358730316162,-0.629594802856445,0.220741629600525,-2.32868194580078,-0.853569030761719,0.253291964530945,-2.34243631362915,-0.769564628601074,0.282508254051208,-2.41116333007813,-0.620281219482422,0.241838335990906,-2.27761650085449,-0.897045135498047,0.242124915122986,-2.30515670776367,-0.84599494934082,0.272588133811951,-2.23245429992676,-0.885658264160156,0.283846259117126,-2.27153825759888,-0.748038291931152,0.286048769950867,-2.34628057479858,-0.598930358886719,0.288822054862976,-2.24260520935059,-0.818741798400879,0.271049857139587,-2.2423529624939,-0.724672317504883,0.242808699607849,-2.30406332015991,-0.578859329223633,0.300508379936218,-2.17296838760376,-0.87348461151123,0.297710299491882,-2.20557308197021,-0.815350532531738,0.323880076408386,-2.11669445037842,-0.859637260437012,0.252776980400085,-2.14854192733765,-0.69249153137207,0.162405371665955,-2.21477508544922,-0.540843963623047,0.321167826652527,-2.1245641708374,-0.78366756439209,0.25034511089325,-2.11582136154175,-0.681982040405273,0.120736956596375,-2.17297124862671,-0.524407386779785,0.35391366481781,-2.04577827453613,-0.846153736114502,0.35234010219574,-2.0659966468811,-0.785497665405273, +0.381296515464783,-1.9746618270874,-0.829856395721436,0.256279826164246,-1.98250198364258,-0.655606746673584,0.1065753698349,-2.03071880340576,-0.499078273773193,0.384353995323181,-1.95681858062744,-0.758330821990967,0.289914488792419,-1.90055656433105,-0.636630058288574,0.182622194290161,-1.94103097915649,-0.489108562469482,0.415271043777466,-1.84922170639038,-0.804525375366211,0.406947374343872,-1.86286544799805,-0.752859592437744,0.441991567611694,-1.7286639213562,-0.777665615081787,0.411176919937134,-1.756751537323,-0.613258838653564,0.369892835617065,-1.79780101776123,-0.475958824157715,0.453333139419556,-1.73143482208252,-0.724073886871338,0.0371554791927338,-2.51325225830078,-0.700800895690918,0.00525888800621033,-2.52644062042236,-0.700655937194824,0.480693578720093,-1.53101062774658,-0.46890115737915,0.501307487487793,-1.47820615768433,-0.460956573486328,0.158328413963318,-2.47492551803589,-0.689578056335449,0.168805956840515,-2.45858335494995,-0.689263343811035,0.213255763053894,-2.44456720352173,-0.687869071960449,0.247363924980164,-2.41595077514648,-0.674399375915527,0.139666855335236,-2.48112630844116,-0.688694953918457,0.262823462486267,-2.40740013122559,-0.673293113708496,0.0915983617305756,-2.507080078125,-0.701755523681641,0.261827826499939,-2.38748931884766,-0.665116310119629,0.272995829582214,-2.35327768325806,-0.656915664672852,0.263229727745056,-2.31923007965088,-0.641825675964355,0.268642783164978,-2.31226444244385,-0.636364936828613,0.229788661003113,-2.28354597091675,-0.62147045135498,0.187468409538269,-2.2323522567749,-0.597949028015137,0.156509757041931,-2.19048261642456,-0.586428642272949,0.168963313102722,-2.18369388580322,-0.581966400146484,0.13139808177948,-2.16271018981934,-0.56973934173584,0.0977824926376343,-2.10203647613525,-0.555574417114258,0.111603140830994,-2.01860761642456,-0.544006824493408,0.152160882949829,-1.97417974472046,-0.541194438934326,0.179863691329956,-1.93209218978882,-0.532745838165283,0.259455442428589,-1.86615753173828,-0.526671409606934,0.363407373428345,-1.78451013565063, +-0.518111705780029,0.433339834213257,-1.73145437240601,-0.514338970184326,0.445214509963989,-1.68937110900879,-0.502080917358398,0.470613479614258,-1.61017513275146,-0.486337661743164,0.0476144254207611,-2.57065153121948,-0.653564453125,0.00525888800621033,-2.55873966217041,-0.652704238891602,0.105173885822296,-2.55991268157959,-0.651347160339355,0.147475063800812,-2.52558565139771,-0.641495704650879,0.158275008201599,-2.49881219863892,-0.645330429077148,0.183241248130798,-2.50086069107056,-0.637064933776855,0.233779311180115,-2.49137353897095,-0.63340950012207,0.270673155784607,-2.45838975906372,-0.624215126037598,0.278108477592468,-2.4321870803833,-0.628847122192383,0.311586260795593,-2.43009614944458,-0.615190505981445,0.336859583854675,-2.39909887313843,-0.604658126831055,0.324095606803894,-2.36068201065063,-0.592174530029297,0.294246554374695,-2.33414888381958,-0.594773292541504,0.281297087669373,-2.31710243225098,-0.582619667053223,0.236943125724792,-2.26895904541016,-0.558809280395508,0.199357390403748,-2.22579526901245,-0.544086456298828,0.172438979148865,-2.19675207138062,-0.545587539672852,0.156616568565369,-2.18022727966309,-0.528041839599609,0.132872343063354,-2.12095308303833,-0.516820907592773,0.150130033493042,-2.0359525680542,-0.502076625823975,0.176495790481567,-1.98997402191162,-0.505211353302002,0.21929669380188,-1.95514488220215,-0.488454341888428,0.307163000106812,-1.88389587402344,-0.489943027496338,0.416461229324341,-1.80094385147095,-0.473657131195068,0.470607280731201,-1.74521493911743,-0.478856563568115,0.512139320373535,-1.69853639602661,-0.459050178527832,0.532275915145874,-1.61794805526733,-0.450757503509521,0.541459321975708,-1.5452766418457,-0.423645973205566,0.533740043640137,-1.49839401245117,-0.412733554840088,0.0516265332698822,-2.44604778289795,-0.908753395080566,0.00525888800621033,-2.45396852493286,-0.888339042663574,0.260303378105164,-2.32787370681763,-0.856318473815918,0.247767329216003,-2.33797788619995,-0.874999046325684,0.221529841423035,-2.35093545913696,-0.896373748779297, +0.188327193260193,-2.38516807556152,-0.885647773742676,0.277245879173279,-2.30981111526489,-0.865849494934082,0.158490002155304,-2.40939331054688,-0.863394737243652,0.301279902458191,-2.27489614486694,-0.866693496704102,0.12734591960907,-2.41345024108887,-0.897031784057617,0.321486830711365,-2.24732208251953,-0.842868804931641,0.0880707204341888,-2.42511940002441,-0.911890983581543,0.327566027641296,-2.2313027381897,-0.825310707092285,0.334737658500671,-2.20372915267944,-0.841002464294434,0.353187441825867,-2.15634155273438,-0.859302520751953,0.368633151054382,-2.12637662887573,-0.814031600952148,0.369994044303894,-2.10835123062134,-0.778910636901855,0.398621320724487,-2.07120513916016,-0.808529853820801,0.424441576004028,-2.02618026733398,-0.808289051055908,0.453287839889526,-1.96856832504272,-0.783522605895996,0.45464301109314,-1.93474292755127,-0.754514694213867,0.473581552505493,-1.89518737792969,-0.7749342918396,0.493287086486816,-1.82096290588379,-0.781700134277344,0.51552152633667,-1.73981046676636,-0.737330913543701,0.527774095535278,-1.69913816452026,-0.690906047821045,0.546294450759888,-1.64397382736206,-0.711038112640381,0.554084300994873,-1.55903244018555,-0.707774639129639,0.55750584602356,-1.47532272338867,-0.675086975097656,0.559277296066284,-1.4383602142334,-0.633416652679443,0.492925882339478,-1.43681287765503,-0.63302755355835,0.486298561096191,-1.4634313583374,-0.669539451599121,0.051679939031601,-2.46303415298462,-0.871235847473145,0.00525888800621033,-2.46856164932251,-0.847536087036133,0.0433524549007416,-2.43012809753418,-0.862259864807129,0.00525888800621033,-2.45513200759888,-0.844400405883789,0.104941725730896,-2.44296216964722,-0.876846313476563,0.141136050224304,-2.4292631149292,-0.860566139221191,0.162591278553009,-2.42691707611084,-0.824819564819336,0.191013157367706,-2.40567350387573,-0.849678993225098,0.228461146354675,-2.36923933029175,-0.862305641174316,0.26019561290741,-2.35378170013428,-0.840066909790039,0.267592310905457,-2.34602355957031,-0.819592475891113,0.285035014152527,-2.33490133285522, +-0.832630157470703,0.313477396965027,-2.29351854324341,-0.832978248596191,0.330623030662537,-2.26282119750977,-0.80577278137207,0.327910304069519,-2.25063753128052,-0.785614013671875,0.338987231254578,-2.23008584976196,-0.801494598388672,0.358317732810974,-2.17310333251953,-0.817638397216797,0.358388781547546,-2.140061378479,-0.768912315368652,0.336198687553406,-2.12521362304688,-0.732681274414063,0.383245706558228,-2.09290552139282,-0.765586376190186,0.420881509780884,-2.04018688201904,-0.76587963104248,0.447079420089722,-1.9687671661377,-0.73716402053833,0.429284334182739,-1.94158792495728,-0.709774494171143,0.467835664749146,-1.90746974945068,-0.73168420791626,0.501957654953003,-1.82200002670288,-0.738627433776855,0.523926973342896,-1.74313306808472,-0.6940598487854,0.526621103286743,-1.70818614959717,-0.648533344268799,0.55888843536377,-1.65647888183594,-0.66453218460083,0.570955038070679,-1.57002067565918,-0.661360263824463,0.57081151008606,-1.48510885238647,-0.628111839294434,0.561606645584106,-1.45598125457764,-0.603316307067871,0.498620986938477,-1.44325304031372,-0.600959300994873,0.487266302108765,-1.48095512390137,-0.625609397888184,0.475643157958984,-1.56067705154419,-0.656738758087158,0.471559524536133,-1.64116859436035,-0.662044048309326,0.47227931022644,-1.6900315284729,-0.661139011383057,0.445230722427368,-1.73523950576782,-0.695443630218506,0.413316965103149,-1.80608320236206,-0.723993301391602,0.388506650924683,-1.87069797515869,-0.724471569061279,0.358452558517456,-1.91896486282349,-0.704753398895264,0.362484812736511,-1.95928478240967,-0.734254837036133,0.344766020774841,-2.02719736099243,-0.761851787567139,0.335495829582214,-2.07717227935791,-0.761494159698486,0.313445448875427,-2.1215877532959,-0.731740951538086,0.310636878013611,-2.12752246856689,-0.761571884155273,0.302451014518738,-2.16130113601685,-0.789534568786621,0.293026328086853,-2.21406507492065,-0.793323516845703,0.300372958183289,-2.24558591842651,-0.784548759460449,0.28842294216156,-2.24770641326904,-0.80161190032959,0.26199996471405, +-2.27141523361206,-0.825981140136719,0.243128657341003,-2.31377220153809,-0.827277183532715,0.246477007865906,-2.33895778656006,-0.821890830993652,0.223965525627136,-2.33627653121948,-0.834720611572266,0.187699198722839,-2.35498285293579,-0.850807189941406,0.165330767631531,-2.38534021377563,-0.843155860900879,0.155105412006378,-2.4164776802063,-0.821959495544434,0.121346831321716,-2.40502882003784,-0.853389739990234,0.0793679654598236,-2.41645860671997,-0.867884635925293,0.415361166000366,-1.48214721679688,-0.753559589385986,0.32798182964325,-1.4450888633728,-0.792745113372803,0.374132990837097,-1.77406692504883,-0.854918479919434,0.354040026664734,-1.8912296295166,-0.880527973175049,0.334214568138123,-2.00285720825195,-0.891903400421143,0.298055529594421,-2.07749223709106,-0.908115386962891,0.283674597740173,-2.14230298995972,-0.910639762878418,0.247246623039246,-2.20214414596558,-0.9229736328125,0.223088145256042,-2.2526421546936,-0.924432754516602,0.1812704205513,-2.29517889022827,-0.931449890136719,0.144575476646423,-2.33102750778198,-0.933149337768555,0.0924414098262787,-2.35910701751709,-0.94012451171875,0.0571053922176361,-2.38474416732788,-0.939418792724609,-0.278329491615295,-2.43439865112305,-0.636171340942383,-0.176714539527893,-2.19859218597412,-0.54848575592041,-0.487913846969604,-1.75004816055298,-0.483555316925049,-0.541308641433716,-1.49864387512207,-0.418755054473877,-0.264468789100647,-2.32023048400879,-0.959100723266602,-0.388472199440002,-2.08941268920898,-0.906384944915771,-0.544353723526001,-1.68613624572754,-0.814339637756348,-0.559666395187378,-1.4049072265625,-0.73402738571167,-0.149510502815247,-2.4193811416626,-0.837478637695313,-0.15097963809967,-2.50185060501099,-0.651933670043945,-0.251988053321838,-2.33581447601318,-0.833929061889648,-0.159055888652802,-2.38771533966064,-0.974470138549805,-0.316298127174377,-2.24178075790405,-0.799476623535156,-0.298022866249084,-2.33543920516968,-0.600157737731934,-0.334194779396057,-2.11954736709595,-0.744261741638184,-0.327456116676331,-2.21344947814941, +-0.934741020202637,-0.424779653549194,-1.93522262573242,-0.724373817443848,-0.18795371055603,-1.99848175048828,-0.509981632232666,-0.509517431259155,-1.7037672996521,-0.663816452026367,-0.463995695114136,-1.93008613586426,-0.869965076446533,-0.543404817581177,-1.56214714050293,-0.692883968353271,-0.563149690628052,-1.62025165557861,-0.449275493621826,-0.547809839248657,-1.44755935668945,-0.611403942108154,-0.553595304489136,-1.54318046569824,-0.781774997711182,-0.108570694923401,-2.49651527404785,-0.804083824157715,-0.114462554454803,-2.56251907348633,-0.658999443054199,-0.155922055244446,-2.4484601020813,-0.784084320068359,-0.0795394480228424,-2.42803239822388,-0.899682998657227,-0.330068230628967,-2.33889245986938,-0.770186424255371,-0.269108414649963,-2.37443971633911,-0.773159980773926,-0.356989502906799,-2.40712404251099,-0.619684219360352,-0.315366387367249,-2.27570199966431,-0.740348815917969,-0.290993332862854,-2.27867364883423,-0.851045608520508,-0.339233160018921,-2.07633972167969,-0.676455974578857,-0.287009835243225,-2.14391565322876,-0.69212818145752,-0.18278431892395,-2.13094282150269,-0.516243934631348,-0.362121343612671,-1.96385288238525,-0.658733367919922,-0.410122632980347,-2.02897119522095,-0.791094779968262,-0.566717386245728,-1.6751446723938,-0.581509113311768,-0.519177675247192,-1.72179508209229,-0.598201274871826,-0.550085783004761,-1.70078802108765,-0.464162349700928,-0.581292390823364,-1.59229421615601,-0.56420373916626,-0.534458875656128,-1.64786100387573,-0.691435813903809,-0.230585694313049,-2.42741680145264,-0.795224189758301,-0.237623810768127,-2.50032138824463,-0.644448280334473,-0.21210253238678,-2.35200357437134,-0.88291072845459,-0.203326821327209,-2.35233926773071,-0.926547050476074,-0.250196099281311,-2.31589555740356,-0.913755416870117,-0.215040326118469,-2.35506916046143,-0.966940879821777,-0.146627604961395,-2.38929224014282,-0.928794860839844,-0.0766569674015045,-2.41898727416992,-0.941831588745117,-0.0782682001590729,-2.42278385162354,-0.982504844665527,-0.322687745094299,-2.22193336486816, +-0.719181060791016,-0.271417260169983,-2.28164529800415,-0.56656551361084,-0.341959595680237,-2.16001272201538,-0.843727111816406,-0.343610405921936,-2.15014743804932,-0.88960075378418,-0.378210663795471,-2.08959436416626,-0.858804702758789,-0.352116227149963,-2.15208911895752,-0.923360824584961,-0.317481637001038,-2.2139687538147,-0.889419555664063,-0.291925072669983,-2.2669939994812,-0.906044006347656,-0.304013848304749,-2.26818656921387,-0.947345733642578,-0.451583623886108,-1.84900379180908,-0.632712841033936,-0.342688322067261,-1.88975048065186,-0.490625858306885,-0.481317281723022,-1.81515789031982,-0.76856517791748,-0.48541522026062,-1.83783912658691,-0.809678554534912,-0.528342962265015,-1.68846273422241,-0.767468452453613,-0.496662855148315,-1.83560848236084,-0.848238468170166,-0.45344614982605,-1.93623876571655,-0.825409412384033,-0.415497541427612,-2.01915121078491,-0.848917484283447,-0.425257444381714,-2.01204681396484,-0.888746738433838,-0.580387830734253,-1.5051417350769,-0.546532154083252,-0.573509931564331,-1.54276704788208,-0.42743968963623,-0.552109003067017,-1.46041297912598,-0.557098865509033,-0.546771764755249,-1.47953319549561,-0.655812740325928,-0.546986818313599,-1.46480512619019,-0.721237182617188,-0.549959897994995,-1.41725015640259,-0.693661212921143,-0.556478261947632,-1.45563411712646,-0.761692523956299,-0.543548345565796,-1.55126571655273,-0.743087768554688,-0.538336038589478,-1.63394689559937,-0.760148525238037,-0.550496816635132,-1.62758350372314,-0.801164150238037,-0.042253166437149,-2.51252126693726,-0.803409576416016,-0.0447966158390045,-2.58012962341309,-0.663087844848633,-0.0406953394412994,-2.43383884429932,-0.944164276123047,-0.0410362780094147,-2.43479156494141,-0.985312461853027,-0.0407139360904694,-2.45074844360352,-0.893998146057129,-0.112922787666321,-2.40373086929321,-0.936640739440918,-0.119369685649872,-2.40548038482666,-0.978553771972656,-0.149725556373596,-2.46913814544678,-0.796047210693359,-0.148453891277313,-2.53310298919678,-0.653005599975586,-0.119620501995087, +-2.41770887374878,-0.880992889404297,-0.183752238750458,-2.44624042510986,-0.791056632995605,-0.182946801185608,-2.50933027267456,-0.64768123626709,-0.175549685955048,-2.37170028686523,-0.928461074829102,-0.188570141792297,-2.37133502960205,-0.970684051513672,-0.178577542304993,-2.39143514633179,-0.868106842041016,-0.228204369544983,-2.33436298370361,-0.920031547546387,-0.240310311317444,-2.33830451965332,-0.963153839111328,-0.265759110450745,-2.39426279067993,-0.784895896911621,-0.276182770729065,-2.46373510360718,-0.636845588684082,-0.241707444190979,-2.3406400680542,-0.856915473937988,-0.299548745155334,-2.37846326828003,-0.778491973876953,-0.324155449867249,-2.4396824836731,-0.63060188293457,-0.271490693092346,-2.29310321807861,-0.910636901855469,-0.285816788673401,-2.29497718811035,-0.95341968536377,-0.265544533729553,-2.31806039810181,-0.848236083984375,-0.306860566139221,-2.23985624313354,-0.897336006164551,-0.316174149513245,-2.24058723449707,-0.941001892089844,-0.330317139625549,-2.29472064971924,-0.75379753112793,-0.340484261512756,-2.36482524871826,-0.604988098144531,-0.313784241676331,-2.25283336639404,-0.821188926696777,-0.331142067909241,-2.27272272109985,-0.73345947265625,-0.314825654029846,-2.32919502258301,-0.589931488037109,-0.32761824131012,-2.18429279327393,-0.886860847473145,-0.33723509311676,-2.183274269104,-0.928267478942871,-0.32268488407135,-2.21386957168579,-0.821806907653809,-0.360911965370178,-2.11992406845093,-0.870956420898438,-0.369775414466858,-2.12149047851563,-0.91417121887207,-0.304231286048889,-2.17428302764893,-0.698685646057129,-0.227584481239319,-2.23466444015503,-0.549938201904297,-0.35166609287262,-2.13097047805786,-0.789652824401855,-0.310909032821655,-2.1331992149353,-0.686993598937988,-0.190223455429077,-2.18866777420044,-0.531600952148438,-0.395886898040771,-2.05533409118652,-0.855828285217285,-0.406489133834839,-2.05109405517578,-0.897664546966553,-0.379060387611389,-2.07891845703125,-0.788452625274658,-0.435949087142944,-1.97877550125122,-0.838061332702637,-0.444581747055054, +-1.9739408493042,-0.880004405975342,-0.367379903793335,-1.99367380142212,-0.661054134368896,-0.193865537643433,-2.04040050506592,-0.504883766174316,-0.438910245895386,-1.96387100219727,-0.760154724121094,-0.397889852523804,-1.93567419052124,-0.646293163299561,-0.254450559616089,-1.96799230575562,-0.496779441833496,-0.468867063522339,-1.89149904251099,-0.818816661834717,-0.480310201644897,-1.88497161865234,-0.859594821929932,-0.456557035446167,-1.89713668823242,-0.756584167480469,-0.505903005599976,-1.75995445251465,-0.788554668426514,-0.518081903457642,-1.76113605499268,-0.831336975097656,-0.513108491897583,-1.76346206665039,-0.613552570343018,-0.454962491989136,-1.80144357681274,-0.479150772094727,-0.502125024795532,-1.73834705352783,-0.719000816345215,-0.0442773401737213,-2.563307762146,-0.708688735961914,-0.5839684009552,-1.52767467498779,-0.46815299987793,-0.549762010574341,-1.48291635513306,-0.461886882781982,-0.155205368995667,-2.48822975158691,-0.692581176757813,-0.185221314430237,-2.49414968490601,-0.693759918212891,-0.240221619606018,-2.48332691192627,-0.692026138305664,-0.279781937599182,-2.44533538818359,-0.683441162109375,-0.155152440071106,-2.51628017425537,-0.69853401184082,-0.279563546180725,-2.41943359375,-0.677289962768555,-0.117543339729309,-2.54677152633667,-0.70530891418457,-0.321105599403381,-2.42638111114502,-0.678239822387695,-0.352912545204163,-2.39108324050903,-0.667403221130371,-0.334995865821838,-2.34674453735352,-0.650332450866699,-0.299798607826233,-2.32252407073975,-0.639533042907715,-0.320136666297913,-2.31867027282715,-0.635114669799805,-0.281862854957581,-2.2700629234314,-0.612853050231934,-0.238520383834839,-2.22080755233765,-0.593558311462402,-0.192724823951721,-2.18925714492798,-0.583597183227539,-0.21525502204895,-2.17963027954102,-0.577659606933594,-0.222484350204468,-2.12076282501221,-0.564424514770508,-0.235626935958862,-2.02868604660034,-0.551314353942871,-0.220869779586792,-1.99456024169922,-0.547634124755859,-0.29021143913269,-1.9640417098999,-0.543220996856689,-0.375655889511108, +-1.87997436523438,-0.53314208984375,-0.47973895072937,-1.78919649124146,-0.52174186706543,-0.501026391983032,-1.74334907531738,-0.515679359436035,-0.563884019851685,-1.69415616989136,-0.504292011260986,-0.578777074813843,-1.61156749725342,-0.486869812011719,-0.256938576698303,-2.42521953582764,-0.633004188537598,-0.148802876472473,-2.19437313079834,-0.546683311462402,-0.429795980453491,-1.73934602737427,-0.480510234832764,-0.50482964515686,-1.49387550354004,-0.416996002197266,-0.143171489238739,-2.41069984436035,-0.835323333740234,-0.145444989204407,-2.49164199829102,-0.649455070495605,-0.233199715614319,-2.33120965957642,-0.838438034057617,-0.291959404945374,-2.23856401443481,-0.799009323120117,-0.270034432411194,-2.32915115356445,-0.598329544067383,-0.314770340919495,-2.11679553985596,-0.743891716003418,-0.368023633956909,-1.91315889358521,-0.720514297485352,-0.141328573226929,-1.98175525665283,-0.505403518676758,-0.465879201889038,-1.68543338775635,-0.677841186523438,-0.475099325180054,-1.55059194564819,-0.689852714538574,-0.479622602462769,-1.61692714691162,-0.448356628417969,-0.488728284835815,-1.44069623947144,-0.61570930480957,-0.0764776766300201,-2.46295738220215,-0.796765327453613,-0.0845901072025299,-2.53399705886841,-0.656942367553711,-0.148400962352753,-2.43628120422363,-0.781231880187988,-0.0684191286563873,-2.40657663345337,-0.894242286682129,-0.262406945228577,-2.304443359375,-0.761894226074219,-0.244466423988342,-2.36336612701416,-0.770994186401367,-0.28787100315094,-2.37973737716675,-0.611944198608398,-0.283472657203674,-2.26713037490845,-0.73903751373291,-0.250912308692932,-2.2652153968811,-0.847596168518066,-0.23511278629303,-2.05720090866089,-0.671261310577393,-0.262433648109436,-2.13848161697388,-0.691298484802246,-0.0820389986038208,-2.11238384246826,-0.509278297424316,-0.277257561683655,-1.94007539749146,-0.652733325958252,-0.353987336158752,-2.0215482711792,-0.789368629455566,-0.446569204330444,-1.66799926757813,-0.581521511077881,-0.449987173080444,-1.70581674575806,-0.609613418579102,-0.452208280563354, +-1.69554901123047,-0.461775302886963,-0.45868182182312,-1.5907998085022,-0.563358306884766,-0.469223737716675,-1.63084173202515,-0.690422534942627,-0.193137347698212,-2.39630937576294,-0.787616729736328,-0.207661747932434,-2.47257995605469,-0.642019271850586,-0.174959301948547,-2.34566783905029,-0.873042106628418,-0.171825587749481,-2.33809232711792,-0.906703948974609,-0.21183454990387,-2.30213928222656,-0.900912284851074,-0.121482491493225,-2.37140130996704,-0.914156913757324,-0.0664664804935455,-2.39863586425781,-0.922009468078613,-0.251379609107971,-2.18922758102417,-0.70766544342041,-0.191045880317688,-2.25422096252441,-0.554293632507324,-0.299372315406799,-2.15662717819214,-0.816006660461426,-0.302508950233459,-2.14560031890869,-0.861202239990234,-0.329408288002014,-2.08340358734131,-0.849995613098145,-0.277793526649475,-2.2052206993103,-0.878484725952148,-0.249390244483948,-2.25583362579346,-0.887387275695801,-0.334927320480347,-1.83325242996216,-0.626092910766602,-0.253610372543335,-1.87867641448975,-0.485705852508545,-0.415169477462769,-1.80102777481079,-0.756996154785156,-0.419275999069214,-1.7974739074707,-0.786581993103027,-0.437023878097534,-1.64154148101807,-0.756387710571289,-0.392107605934143,-1.9029393196106,-0.812516212463379,-0.357221245765686,-2.01583480834961,-0.83270788192749,-0.470174551010132,-1.5074782371521,-0.546815872192383,-0.487276792526245,-1.54453611373901,-0.427838802337646,-0.487779378890991,-1.45555734634399,-0.556342124938965,-0.484071493148804,-1.47342872619629,-0.653948783874512,-0.450205564498901,-1.46086454391479,-0.714517593383789,-0.45708155632019,-1.53303909301758,-0.723948001861572,-0.447625875473022,-1.59088039398193,-0.74349308013916,-0.0275856554508209,-2.46823501586914,-0.793573379516602,-0.0312396585941315,-2.54170560836792,-0.657605171203613,-0.0370236933231354,-2.40953731536865,-0.927428245544434,-0.0360924303531647,-2.42812824249268,-0.888524055480957,-0.0912887156009674,-2.38508176803589,-0.921097755432129,-0.125870406627655,-2.43665599822998,-0.788115501403809,-0.128091037273407, +-2.50784921646118,-0.644917488098145,-0.106456398963928,-2.39920282363892,-0.876439094543457,-0.157588183879852,-2.41638135910034,-0.784503936767578,-0.161563098430634,-2.48368215560913,-0.64472770690918,-0.148543953895569,-2.35310888290405,-0.913186073303223,-0.155707478523254,-2.37685346603394,-0.863212585449219,-0.189340233802795,-2.32125091552734,-0.906092643737793,-0.225876450538635,-2.36757612228394,-0.778266906738281,-0.242478013038635,-2.44358730316162,-0.629595756530762,-0.210221886634827,-2.32868194580078,-0.853569030761719,-0.243028283119202,-2.34238290786743,-0.769619941711426,-0.272872567176819,-2.41098022460938,-0.620471000671387,-0.231338143348694,-2.27761650085449,-0.897045135498047,-0.231624245643616,-2.30515670776367,-0.84599494934082,-0.262069344520569,-2.23245429992676,-0.885658264160156,-0.275263428688049,-2.27114057540894,-0.748451232910156,-0.277775406837463,-2.34581422805786,-0.59941291809082,-0.278730988502502,-2.24251747131348,-0.818833351135254,-0.2636638879776,-2.24171018600464,-0.725337982177734,-0.235625863075256,-2.30340814590454,-0.579534530639648,-0.290008187294006,-2.17296838760376,-0.87348461151123,-0.287784218788147,-2.2054500579834,-0.81547737121582,-0.313380837440491,-2.11669445037842,-0.859637260437012,-0.246735215187073,-2.14779806137085,-0.693243980407715,-0.155202507972717,-2.21427917480469,-0.541341781616211,-0.311842560768127,-2.12435340881348,-0.783883094787598,-0.243897080421448,-2.11522245407104,-0.682580947875977,-0.1129070520401,-2.17259550094604,-0.524781227111816,-0.343394875526428,-2.04577827453613,-0.846153736114502,-0.342526078224182,-2.0658974647522,-0.785597324371338,-0.370777726173401,-1.9746618270874,-0.829856395721436,-0.251083970069885,-1.98190307617188,-0.656182289123535,-0.0981336832046509,-2.03052139282227,-0.499261856079102,-0.374460816383362,-1.95675086975098,-0.758395195007324,-0.283490777015686,-1.90011024475098,-0.637058258056641,-0.171807050704956,-1.94107913970947,-0.489060401916504,-0.404770612716675,-1.84922170639038,-0.804525375366211,-0.396873235702515, +-1.86282062530518,-0.752902984619141,-0.431472539901733,-1.7286639213562,-0.777665615081787,-0.401243925094604,-1.75667428970337,-0.613334178924561,-0.358247518539429,-1.79791688919067,-0.475849151611328,-0.442889928817749,-1.73142623901367,-0.724081993103027,-0.026653915643692,-2.51325225830078,-0.700800895690918,-0.470174551010132,-1.53101062774658,-0.46890115737915,-0.490788221359253,-1.47820615768433,-0.460956573486328,-0.147827327251434,-2.47492551803589,-0.689578056335449,-0.158286273479462,-2.45858335494995,-0.689263343811035,-0.202736020088196,-2.44456720352173,-0.687869071960449,-0.237037301063538,-2.41591453552246,-0.674436569213867,-0.129165828227997,-2.48112630844116,-0.688694953918457,-0.252806305885315,-2.40729904174805,-0.673398017883301,-0.0810977518558502,-2.507080078125,-0.701755523681641,-0.252388596534729,-2.38726902008057,-0.665345191955566,-0.264904618263245,-2.35277700424194,-0.65743350982666,-0.256251931190491,-2.31849956512451,-0.642582893371582,-0.26094114780426,-2.31168460845947,-0.636963844299316,-0.22409975528717,-2.28259038925171,-0.622454643249512,-0.182665467262268,-2.23137092590332,-0.598946571350098,-0.151403069496155,-2.18965101242065,-0.587262153625488,-0.159755349159241,-2.18351936340332,-0.582138061523438,-0.124870419502258,-2.16213035583496,-0.570317268371582,-0.0944610834121704,-2.10104846954346,-0.556553840637207,-0.106536984443665,-2.01798105239868,-0.544612407684326,-0.142837643623352,-1.97407007217407,-0.541295051574707,-0.171624302864075,-1.93183660507202,-0.532991886138916,-0.250191450119019,-1.86603164672852,-0.526788711547852,-0.353122472763062,-1.78448009490967,-0.518141746520996,-0.422052145004272,-1.73153066635132,-0.514266967773438,-0.434778928756714,-1.68935537338257,-0.502097129821777,-0.460123777389526,-1.61017084121704,-0.486341953277588,-0.037095695734024,-2.57065153121948,-0.653564453125,-0.0946733057498932,-2.55991268157959,-0.651347160339355,-0.136974453926086,-2.52558565139771,-0.641495704650879,-0.147772967815399,-2.49881219863892,-0.645330429077148,-0.172721564769745, +-2.50086069107056,-0.637064933776855,-0.223260521888733,-2.49137353897095,-0.63340950012207,-0.260154366493225,-2.45838975906372,-0.624215126037598,-0.267964005470276,-2.43211269378662,-0.628923416137695,-0.301547646522522,-2.42999982833862,-0.615288734436035,-0.326902031898499,-2.39898633956909,-0.604775428771973,-0.314036965370178,-2.36059045791626,-0.592269897460938,-0.284749627113342,-2.3339409828186,-0.594988822937012,-0.27158510684967,-2.31694889068604,-0.582777976989746,-0.22726309299469,-2.26882457733154,-0.558945655822754,-0.188783288002014,-2.22582101821899,-0.544057846069336,-0.161108613014221,-2.19689893722534,-0.545435905456543,-0.144394516944885,-2.18052101135254,-0.527743339538574,-0.11914074420929,-2.12150716781616,-0.516256332397461,-0.135276079177856,-2.03659725189209,-0.5014328956604,-0.161143064498901,-1.99061012268066,-0.504584789276123,-0.202828168869019,-1.95587539672852,-0.487742900848389,-0.29161524772644,-1.88448047637939,-0.489377498626709,-0.401939153671265,-1.80135917663574,-0.473263740539551,-0.457396268844604,-1.74550867080688,-0.478576183319092,-0.500130891799927,-1.69871234893799,-0.458879947662354,-0.521582365036011,-1.61797380447388,-0.450732231140137,-0.530940294265747,-1.5452766418457,-0.423645973205566,-0.523220777511597,-1.49839401245117,-0.412733554840088,-0.0411249697208405,-2.44604778289795,-0.908753395080566,-0.249784111976624,-2.32787370681763,-0.856318473815918,-0.237265229225159,-2.33797788619995,-0.874999046325684,-0.211010575294495,-2.35093545913696,-0.896373748779297,-0.177825093269348,-2.38516807556152,-0.885647773742676,-0.266744256019592,-2.30981111526489,-0.865849494934082,-0.147970855236053,-2.40939331054688,-0.863394737243652,-0.290760636329651,-2.27489614486694,-0.866693496704102,-0.1168452501297,-2.41345024108887,-0.897031784057617,-0.311076760292053,-2.24729919433594,-0.842891693115234,-0.0775515139102936,-2.42511940002441,-0.911890983581543,-0.317349076271057,-2.23124074935913,-0.825375556945801,-0.324396729469299,-2.20369577407837,-0.841036796569824,-0.342706322669983, +-2.15633773803711,-0.859306335449219,-0.35819399356842,-2.12636804580688,-0.814042091369629,-0.359531998634338,-2.10836172103882,-0.778898239135742,-0.388009667396545,-2.07122802734375,-0.808504581451416,-0.413823843002319,-2.02619647979736,-0.808272838592529,-0.442305326461792,-1.96862554550171,-0.783465385437012,-0.443230390548706,-1.93485164642334,-0.75440788269043,-0.462827444076538,-1.89521312713623,-0.774909496307373,-0.482751607894897,-1.82096481323242,-0.781698226928711,-0.504941701889038,-1.73981904983521,-0.737322330474854,-0.517122030258179,-1.69915723800659,-0.6908860206604,-0.53579306602478,-1.64397382736206,-0.711038112640381,-0.543584108352661,-1.55903244018555,-0.707774639129639,-0.547004461288452,-1.47532272338867,-0.675086975097656,-0.54877781867981,-1.4383602142334,-0.633416652679443,-0.482405424118042,-1.43681287765503,-0.63302755355835,-0.475779294967651,-1.4634313583374,-0.669539451599121,-0.0411607325077057,-2.46303415298462,-0.871235847473145,-0.0328337252140045,-2.43012809753418,-0.862259864807129,-0.0944396555423737,-2.44296216964722,-0.876846313476563,-0.130616784095764,-2.4292631149292,-0.860566139221191,-0.152089238166809,-2.42691707611084,-0.824819564819336,-0.180511116981506,-2.40567350387573,-0.849678993225098,-0.217958569526672,-2.36923933029175,-0.862305641174316,-0.249695420265198,-2.35378170013428,-0.840066909790039,-0.257091164588928,-2.34602355957031,-0.819592475891113,-0.274516701698303,-2.33490133285522,-0.832630157470703,-0.303036332130432,-2.29350614547729,-0.832991600036621,-0.320505738258362,-2.26273822784424,-0.805858612060547,-0.31805956363678,-2.25049924850464,-0.785758018493652,-0.32889997959137,-2.23000001907349,-0.801583290100098,-0.347944855690002,-2.17307662963867,-0.817666053771973,-0.347961068153381,-2.1400671005249,-0.768905639648438,-0.325606942176819,-2.12527084350586,-0.732620239257813,-0.372166275978088,-2.09303045272827,-0.765458106994629,-0.409291982650757,-2.04036521911621,-0.765698909759521,-0.434605360031128,-1.96900367736816,-0.736933708190918,-0.416110754013062, +-1.94190263748169,-0.709469318389893,-0.455726385116577,-1.90765476226807,-0.731505870819092,-0.490929841995239,-1.82205247879028,-0.738577842712402,-0.512868642807007,-1.7431960105896,-0.69399881362915,-0.515430212020874,-1.70826816558838,-0.648454666137695,-0.548269033432007,-1.65649509429932,-0.664516925811768,-0.560455083847046,-1.57002067565918,-0.661360263824463,-0.560311555862427,-1.48510885238647,-0.628111839294434,-0.551088571548462,-1.45598125457764,-0.603316307067871,-0.488118886947632,-1.44325304031372,-0.600959300994873,-0.476746320724487,-1.48095512390137,-0.625609397888184,-0.465123891830444,-1.56067705154419,-0.656738758087158,-0.461070775985718,-1.64116668701172,-0.662045955657959,-0.461736440658569,-1.69003248214722,-0.66113805770874,-0.434868574142456,-1.73521757125854,-0.695465087890625,-0.403342962265015,-1.80602216720581,-0.724052429199219,-0.379082441329956,-1.87058067321777,-0.724583625793457,-0.349701523780823,-1.91877508163452,-0.704934120178223,-0.353397965431213,-1.95912742614746,-0.734405517578125,-0.335566163063049,-2.02702474594116,-0.762022018432617,-0.326341271400452,-2.07697677612305,-0.761688709259033,-0.30448305606842,-2.12135696411133,-0.731971740722656,-0.302117943763733,-2.12718200683594,-0.761918067932129,-0.293006539344788,-2.16108179092407,-0.789761543273926,-0.283582329750061,-2.21384572982788,-0.793551445007324,-0.290940880775452,-2.24536371231079,-0.784778594970703,-0.278661370277405,-2.2475528717041,-0.80177116394043,-0.251521706581116,-2.27140665054321,-0.825989723205566,-0.232609391212463,-2.31377220153809,-0.827277183532715,-0.235957741737366,-2.33895778656006,-0.821890830993652,-0.213464856147766,-2.33627653121948,-0.834720611572266,-0.177198529243469,-2.35498285293579,-0.850807189941406,-0.154811084270477,-2.38534021377563,-0.843155860900879,-0.144603371620178,-2.4164776802063,-0.821959495544434,-0.110827088356018,-2.40502882003784,-0.853389739990234,-0.0688664019107819,-2.41645860671997,-0.867884635925293,-0.404842138290405,-1.48214721679688,-0.753559589385986,-0.317481637001038, +-1.4450888633728,-0.792745113372803,-0.363614678382874,-1.77406692504883,-0.854918479919434,-0.34352171421051,-1.8912296295166,-0.880527973175049,-0.323712944984436,-2.00285720825195,-0.891903400421143,-0.287537217140198,-2.07749223709106,-0.908115386962891,-0.273172974586487,-2.14230298995972,-0.910639762878418,-0.236746430397034,-2.20214414596558,-0.9229736328125,-0.212586998939514,-2.2526421546936,-0.924432754516602,-0.170769393444061,-2.29517889022827,-0.931449890136719,-0.13405579328537,-2.33102750778198,-0.933149337768555,-0.0819222033023834,-2.35910701751709,-0.94012451171875,-0.0465866476297379,-2.38474416732788,-0.939418792724609,-0.016392856836319,-2.44054937362671,-0.944055557250977,-0.0164457857608795,-2.44002914428711,-0.986874580383301,-0.016787201166153,-2.4533052444458,-0.897493362426758,-0.0162135660648346,-2.45943737030029,-0.878328323364258,-0.0131875574588776,-2.47273254394531,-0.859189987182617,-0.0123445093631744,-2.50686883926392,-0.799599647521973,-0.0126315653324127,-2.55658769607544,-0.707212448120117,-0.0127574503421783,-2.5756983757019,-0.662572860717773,-0.0124708712100983,-2.56647920608521,-0.653743743896484,-0.0102860033512115,-2.54540777206421,-0.657076835632324,-0.00806441903114319,-2.52018213272095,-0.70041561126709,-0.00913920998573303,-2.4735221862793,-0.792144775390625,-0.0129367411136627,-2.443922996521,-0.85200309753418,-0.0147444307804108,-2.44274091720581,-0.874410629272461,-0.014261394739151,-2.41707324981689,-0.928986549377441,-0.0127030909061432,-2.3856201171875,-0.950827598571777,-0.0266725122928619,-2.35730028152466,-0.960492134094238,-0.0455133020877838,-2.3258843421936,-0.968120574951172,-0.0631348192691803,-2.29000759124756,-0.975919723510742,-0.0782682001590729,-2.25513219833374,-0.982951164245605,-0.0933658182621002,-2.21126651763916,-0.99111270904541,-0.107084393501282,-2.15102291107178,-0.995391845703125,-0.121626019477844,-2.08003902435303,-0.995287895202637,-0.137511909008026,-1.98969650268555,-0.991882801055908,-0.152089238166809,-1.8786563873291,-0.974576473236084, +-0.167813420295715,-1.78104496002197,-0.943948745727539,0.0268934667110443,-2.44054937362671,-0.944055557250977,0.0269649922847748,-2.44002914428711,-0.986874580383301,0.0272873342037201,-2.4533052444458,-0.897493362426758,0.0267327725887299,-2.45943737030029,-0.878328323364258,0.0236881673336029,-2.47273254394531,-0.859189987182617,0.0228637158870697,-2.50686883926392,-0.799599647521973,0.0231331288814545,-2.55658769607544,-0.707212448120117,0.0232580602169037,-2.5756983757019,-0.662572860717773,0.0229710042476654,-2.56647920608521,-0.653743743896484,0.0207866132259369,-2.54540777206421,-0.657076835632324,0.0185831487178802,-2.52018213272095,-0.70041561126709,0.0196584165096283,-2.4735221862793,-0.792144775390625,0.0234554708003998,-2.443922996521,-0.85200309753418,0.0252459943294525,-2.44274091720581,-0.874410629272461,0.0247629582881927,-2.41707324981689,-0.928986549377441,0.0232222974300385,-2.3856201171875,-0.950827598571777,0.0371731221675873,-2.35730028152466,-0.960492134094238,0.056013435125351,-2.3258843421936,-0.968120574951172,0.0736368596553802,-2.29000759124756,-0.975919723510742,0.0887702405452728,-2.25513219833374,-0.982951164245605,0.103866457939148,-2.21126651763916,-0.99111270904541,0.117603659629822,-2.15102291107178,-0.995391845703125,0.132145285606384,-2.08003902435303,-0.995287895202637,0.14801299571991,-1.98969650268555,-0.991882801055908,0.162591278553009,-1.8786563873291,-0.974576473236084,0.178333103656769,-1.78104496002197,-0.943948745727539,0.49179744720459,-1.39636039733887,-0.624161720275879,0.499766111373901,-1.40305185317993,-0.602407455444336,0.500913143157959,-1.41518306732178,-0.55069637298584,0.506266832351685,-1.4367356300354,-0.449511051177979,0.50021505355835,-1.40488767623901,-0.589849472045898,0.452110528945923,-1.35704374313354,-0.71063232421875,-0.48924708366394,-1.40305185317993,-0.602407455444336,-0.481295347213745,-1.39636039733887,-0.624161720275879,-0.495766878128052,-1.4367356300354,-0.449511051177979,-0.490393877029419,-1.41518306732178,-0.55069637298584,-0.489695310592651, +-1.40488767623901,-0.589849472045898,-0.441303968429565,-1.35754299163818,-0.71074390411377,0.561678409576416,-1.46609401702881,-0.457876682281494,0.554119825363159,-1.4730052947998,-0.420588493347168,0.535423278808594,-1.47091960906982,-0.41229772567749,0.520057439804077,-1.46625757217407,-0.415293216705322,0.504172563552856,-1.45316457748413,-0.456364154815674,0.500268220901489,-1.43089056015015,-0.554247379302979,0.499964237213135,-1.420729637146,-0.593490123748779,0.499569892883301,-1.4189133644104,-0.605982303619385,0.491331577301025,-1.41350126266479,-0.627267360687256,0.451948881149292,-1.39460134506226,-0.711709976196289,-0.441376447677612,-1.39468812942505,-0.711721897125244,-0.480830907821655,-1.41350126266479,-0.627267360687256,-0.489050626754761,-1.4189133644104,-0.605982303619385,-0.489461660385132,-1.420729637146,-0.593490123748779,-0.48974871635437,-1.43089056015015,-0.554247379302979,-0.493654012680054,-1.45316457748413,-0.456364154815674,-0.509557485580444,-1.46625757217407,-0.415293216705322,-0.524904012680054,-1.47091960906982,-0.41229772567749,-0.543601274490356,-1.4730052947998,-0.420588493347168,-0.551177263259888,-1.46609401702881,-0.457876682281494,-0.549566030502319,-1.44525241851807,-0.554394721984863,0.560084342956543,-1.44525241851807,-0.554394721984863,-0.469923734664917,-1.40451240539551,-0.664018630981445,-0.470102071762085,-1.37955808639526,-0.66314172744751,0.480425357818604,-1.40451240539551,-0.664018630981445,0.480604648590088,-1.37955808639526,-0.66314172744751,0.00525888800621033,-1.86600589752197,-0.991518020629883,-0.168745160102844,-1.57679748535156,-0.864360809326172,-0.273172974586487,-1.38608407974243,-0.781580448150635,0.00504526495933533,-1.59836912155151,-0.854374408721924,-0.156352698802948,-1.51754283905029,-0.826969623565674,0.309481024742126,-1.26531600952148,-0.737883567810059,0.282671332359314,-1.38775682449341,-0.781966686248779,0.3624027967453,-1.22106742858887,-0.733378887176514,0.3370441198349,-1.21104097366333,-0.72376012802124,-0.402799367904663,-1.11181497573853, +-0.716991424560547,-0.374878525733948,-1.10577869415283,-0.704833984375,-0.297996163368225,-1.26696920394897,-0.738265991210938,-0.350702881813049,-1.22305679321289,-0.733831405639648,-0.325737595558167,-1.21236705780029,-0.724078178405762,0.413318395614624,-1.11181497573853,-0.716991424560547,0.385380625724792,-1.10577869415283,-0.704833984375,0.0847767293453217,-2.50681066513062,-0.804494857788086,0.0776303708553314,-2.45325708389282,-0.875676155090332,0.327709555625916,-2.36272096633911,-0.776165008544922,0.298932909965515,-2.31588697433472,-0.836111068725586,0.340796709060669,-2.11001586914063,-0.683520317077637,0.403010606765747,-2.0698709487915,-0.770824909210205,0.220186591148376,-2.50853157043457,-0.64634895324707,0.251079916954041,-2.4963526725769,-0.661324501037598,0.222390055656433,-2.49244022369385,-0.693721771240234,0.19540011882782,-2.50581073760986,-0.66414737701416,0.222533106803894,-2.50488901138306,-0.663297653198242,0.226687788963318,-2.34322547912598,-0.923625946044922,0.236233115196228,-2.3425440788269,-0.887932777404785,0.105550646781921,-2.41118144989014,-0.939693450927734,0.10916793346405,-2.41446781158447,-0.980607986450195,0.310074687004089,-2.30851125717163,-0.579092025756836,0.291911363601685,-2.27931356430054,-0.583432197570801,0.318413496017456,-2.29776620864868,-0.625552177429199,0.333422064781189,-2.32750988006592,-0.606213569641113,0.318021059036255,-2.30705070495605,-0.595730781555176,0.362742781639099,-2.13465118408203,-0.881549835205078,0.362639307975769,-2.13872098922729,-0.841455459594727,0.310591578483582,-2.25334358215332,-0.901966094970703,0.321033358573914,-2.25436210632324,-0.944185256958008,0.315024614334106,-1.93252038955688,-0.494592666625977,0.378920316696167,-1.88625192642212,-0.506044387817383,0.351052522659302,-1.92573499679565,-0.539878368377686,0.293904066085815,-1.96706295013428,-0.514840602874756,0.332898378372192,-1.93163394927979,-0.510601997375488,0.505604982376099,-1.800377368927,-0.800145626068115,0.505015850067139,-1.77737522125244,-0.764013290405273,0.436367750167847, +-1.99938631057739,-0.843911170959473,0.445358991622925,-1.99332046508789,-0.884467601776123,0.594076156616211,-1.54588174819946,-0.55311918258667,0.595025062561035,-1.566819190979,-0.476658344268799,0.557898759841919,-1.45805788040161,-0.634053230285645,0.558418989181519,-1.45214509963989,-0.656993865966797,0.562537431716919,-1.58823680877686,-0.792141914367676,0.551774740219116,-1.59566831588745,-0.752939701080322,0.089719146490097,-2.57351589202881,-0.661554336547852,0.128653347492218,-2.55809688568115,-0.675373077392578,0.0906136929988861,-2.55755805969238,-0.707575798034668,0.055781215429306,-2.57582330703735,-0.67951774597168,0.0917604863643646,-2.56925678253174,-0.677947998046875,0.16015613079071,-2.51454019546509,-0.652350425720215,0.163719534873962,-2.49834251403809,-0.665546417236328,0.166047394275665,-2.49930286407471,-0.69493293762207,0.163378596305847,-2.52860355377197,-0.669269561767578,0.163540720939636,-2.51050186157227,-0.667054176330566,0.164166808128357,-2.45666933059692,-0.78886604309082,0.152275860309601,-2.4284930229187,-0.839338302612305,0.355722784996033,-2.42739343643188,-0.62586498260498,0.369767546653748,-2.40328407287598,-0.637063026428223,0.35205066204071,-2.41308641433716,-0.674263000488281,0.336092352867126,-2.43716144561768,-0.647872924804688,0.357758402824402,-2.42445278167725,-0.643607139587402,0.325607657432556,-2.34702920913696,-0.601953506469727,0.310623526573181,-2.33241510391235,-0.612625122070313,0.323302149772644,-2.33119678497314,-0.643635749816895,0.352397799491882,-2.35957670211792,-0.621108055114746,0.326637625694275,-2.34269666671753,-0.615764617919922,0.330747961997986,-2.28181600570679,-0.746065139770508,0.32960307598114,-2.25570249557495,-0.792372703552246,0.204242467880249,-2.1655535697937,-0.5245361328125,0.223368406295776,-2.12752485275269,-0.534116744995117,0.237951517105103,-2.1560115814209,-0.572882652282715,0.219402551651001,-2.18648719787598,-0.548247337341309,0.221442461013794,-2.16425704956055,-0.541080474853516,0.206536054611206,-2.01321744918823,-0.508626937866211, +0.219524145126343,-1.99767065048218,-0.522127151489258,0.24556040763855,-2.00499725341797,-0.549942493438721,0.234331846237183,-2.03549861907959,-0.521885395050049,0.222700357437134,-2.01134586334229,-0.521472454071045,0.382323503494263,-1.97300577163696,-0.66042947769165,0.437723398208618,-1.9515495300293,-0.719440460205078,0.571239233016968,-1.66284036636353,-0.456752777099609,0.584195137023926,-1.61743354797363,-0.46259880065918,0.586380243301392,-1.65565872192383,-0.496241092681885,0.572424173355103,-1.69876432418823,-0.479397296905518,0.581680059432983,-1.66075658798218,-0.471248149871826,0.588556051254272,-1.63693714141846,-0.573339462280273,0.567264795303345,-1.61603784561157,-0.667347431182861,0.28701913356781,-2.44524240493774,-0.636272430419922,0.290665507316589,-2.43056440353394,-0.64973258972168,0.289761900901794,-2.42830038070679,-0.679451942443848,0.290605902671814,-2.45864009857178,-0.653314590454102,0.290124297142029,-2.44051456451416,-0.650955200195313,0.278194785118103,-2.38093852996826,-0.777554512023926,0.264994978904724,-2.34949445724487,-0.82677173614502,0.2170170545578,-2.43940544128418,-0.794582366943359,0.209280848503113,-2.38686943054199,-0.860172271728516,0.238310217857361,-2.34673404693604,-0.965042114257813,0.171974956989288,-2.38090038299561,-0.928115844726563,0.185246288776398,-2.37940979003906,-0.972551345825195,0.173086047172546,-2.39980888366699,-0.870671272277832,0.0160044133663177,-2.44385528564453,-0.943899154663086,0.016040176153183,-2.44321060180664,-0.987460136413574,0.0159328877925873,-2.45976495742798,-0.869391441345215,0.0162380635738373,-2.4539680480957,-0.891378402709961,0.108218550682068,-2.41766881942749,-0.907773971557617,0.210286021232605,-2.21318817138672,-0.549663543701172,0.19590699672699,-2.19646596908569,-0.558761596679688,0.223663568496704,-2.20129299163818,-0.58798885345459,0.247616052627563,-2.23077344894409,-0.565226554870605,0.216336965560913,-2.21043539047241,-0.561392784118652,0.303867697715759,-2.15580463409424,-0.694391250610352,0.342938780784607,-2.13287305831909, +-0.743549346923828,0.340723395347595,-2.25082302093506,-0.727642059326172,0.348650813102722,-2.20272493362427,-0.814597129821777,0.371231913566589,-2.13677597045898,-0.918985366821289,0.332637667655945,-2.19979906082153,-0.887105941772461,0.342613101005554,-2.198655128479,-0.931358337402344,0.330037951469421,-2.22014474868774,-0.82987117767334,0.271371245384216,-2.3050422668457,-0.912044525146484,0.286002993583679,-2.30820465087891,-0.956408500671387,0.267753005027771,-2.32071256637573,-0.859456062316895,0.312723517417908,-2.25943756103516,-0.856340408325195,0.488466739654541,-1.77213573455811,-0.482227802276611,0.510054588317871,-1.74814987182617,-0.494137287139893,0.506460428237915,-1.76250457763672,-0.518965244293213,0.485796689987183,-1.79648113250732,-0.494851589202881,0.499096393585205,-1.76913928985596,-0.494542121887207,0.528946161270142,-1.73926115036011,-0.605851173400879,0.523921012878418,-1.7234411239624,-0.666079044342041,0.43913197517395,-1.89626932144165,-0.640592098236084,0.487460851669312,-1.86827993392944,-0.740581512451172,0.516905307769775,-1.80047416687012,-0.840263843536377,0.471738338470459,-1.91434049606323,-0.821704387664795,0.482932806015015,-1.90754413604736,-0.864780902862549,0.463125228881836,-1.91799449920654,-0.761555671691895,0.397398352622986,-2.072829246521,-0.857022762298584,0.407999753952026,-2.07075309753418,-0.902136325836182,0.383761286735535,-2.091383934021,-0.791407108306885,0.440531969070435,-1.99651050567627,-0.798112869262695,0.576846599578857,-1.47755241394043,-0.550680637359619,0.577706813812256,-1.50041246414185,-0.463860034942627,0.56561803817749,-1.46378707885742,-0.613492488861084,0.556000947952271,-1.51688957214355,-0.677169322967529,0.572369575500488,-1.52344512939453,-0.646178245544434,0.568340063095093,-1.43015956878662,-0.755860328674316,0.558812856674194,-1.43969678878784,-0.713733673095703,0.565582275390625,-1.49615287780762,-0.770961284637451,0.555928707122803,-1.5048246383667,-0.731787204742432,0.556126594543457,-1.51355314254761,-0.693394660949707,0.550879001617432, +-1.60724115371704,-0.697805404663086,0.551254272460938,-1.60389709472656,-0.714036464691162,0.00525888800621033,-2.55708694458008,-0.675333023071289,0.0136764943599701,-2.56784391403198,-0.660787582397461,0.0232222974300385,-2.57044982910156,-0.67855167388916,0.0136946141719818,-2.54788780212402,-0.705222129821777,0.0136588513851166,-2.56208610534668,-0.676555633544922,0.0689805448055267,-2.4296760559082,-0.984070777893066,0.0683172643184662,-2.42704248428345,-0.943315505981445,0.0694092214107513,-2.43959617614746,-0.898846626281738,0.0686753690242767,-2.43597221374512,-0.911855697631836,0.0135873258113861,-2.49859189987183,-0.796743392944336,0.0140703618526459,-2.47076225280762,-0.851597785949707,0.150555968284607,-2.39648342132568,-0.976492881774902,0.140795111656189,-2.39668464660645,-0.932313919067383,0.14471846818924,-2.48317193984985,-0.801197052001953,0.153026878833771,-2.53254461288452,-0.702142715454102,0.145918250083923,-2.41980409622192,-0.855216026306152,0.143660366535187,-2.41231441497803,-0.877220153808594,0.110887885093689,-2.42059135437012,-0.894767761230469,0.125734686851501,-2.4345121383667,-0.872429847717285,0.176917910575867,-2.44711494445801,-0.786191940307617,0.176219761371613,-2.48963212966919,-0.692811012268066,0.212486147880554,-2.36323070526123,-0.968817710876465,0.200146555900574,-2.36199140548706,-0.928055763244629,0.17415988445282,-2.40888357162476,-0.847746849060059,0.175467312335968,-2.41915941238403,-0.833086967468262,0.205573439598083,-2.37022924423218,-0.880589485168457,0.205017447471619,-2.36699962615967,-0.894906044006348,0.263132929801941,-2.32984447479248,-0.961262702941895,0.249933123588562,-2.32548093795776,-0.916573524475098,0.262380480766296,-2.41104650497437,-0.791394233703613,0.275221705436707,-2.46566724777222,-0.688097953796387,0.239187598228455,-2.34359216690063,-0.872794151306152,0.246727824211121,-2.35929012298584,-0.853756904602051,0.258620142936707,-2.33876609802246,-0.841955184936523,0.254715323448181,-2.3333535194397,-0.862983703613281,0.291958212852478,-2.37801265716553, +-0.77543830871582,0.306888461112976,-2.42377758026123,-0.677916526794434,0.306060671806335,-2.28166389465332,-0.95041561126709,0.292611479759216,-2.28033638000488,-0.908790588378906,0.287828803062439,-2.29902410507202,-0.853301048278809,0.288921236991882,-2.29311275482178,-0.869071006774902,0.267950892448425,-2.32961368560791,-0.838911056518555,0.274415850639343,-2.34307241439819,-0.8243408203125,0.33247697353363,-2.22717571258545,-0.937914848327637,0.323020339012146,-2.22703218460083,-0.893002510070801,0.344230055809021,-2.31502485275269,-0.762221336364746,0.360972285270691,-2.36766242980957,-0.659042358398438,0.326330065727234,-2.24740552902222,-0.806187629699707,0.32560670375824,-2.23915147781372,-0.831114768981934,0.314972281455994,-2.26322317123413,-0.838253021240234,0.324934840202332,-2.27556133270264,-0.821155548095703,0.332285284996033,-2.27699756622314,-0.736760139465332,0.320566058158875,-2.32256603240967,-0.638310432434082,0.354611754417419,-2.16765213012695,-0.926045417785645,0.345603823661804,-2.16720151901245,-0.889534950256348,0.328050494194031,-2.23146104812622,-0.806586265563965,0.331635355949402,-2.24406290054321,-0.790267944335938,0.34193217754364,-2.18711996078491,-0.838723182678223,0.343222975730896,-2.18022632598877,-0.854977607727051,0.389642596244812,-2.10601329803467,-0.910177230834961,0.38006055355072,-2.1050910949707,-0.86341381072998,0.326147437095642,-2.19604444503784,-0.70857048034668,0.274375200271606,-2.24338054656982,-0.602705955505371,0.361152529716492,-2.14166402816772,-0.822793960571289,0.363983988761902,-2.15259313583374,-0.798236846923828,0.350249171257019,-2.12644958496094,-0.758292198181152,0.368384718894958,-2.11809825897217,-0.789863586425781,0.308029413223267,-2.13985395431519,-0.690369606018066,0.215113401412964,-2.1853141784668,-0.581753730773926,0.426285982131958,-2.03140735626221,-0.89315938949585,0.415969133377075,-2.0376181602478,-0.853024482727051,0.405425786972046,-2.05599594116211,-0.79594612121582,0.410980939865112,-2.0503101348877,-0.812906265258789,0.366223216056824, +-2.1013765335083,-0.763328552246094,0.356718897819519,-2.11134433746338,-0.74674129486084,0.465005159378052,-1.95253276824951,-0.875113487243652,0.455585718154907,-1.95770454406738,-0.831377983093262,0.373465776443481,-2.03143358230591,-0.669095516204834,0.254598379135132,-2.07014179229736,-0.559382438659668,0.444444894790649,-1.94654941558838,-0.737479209899902,0.45513129234314,-1.94973850250244,-0.765462398529053,0.438905000686646,-1.99473714828491,-0.77866792678833,0.438239812850952,-2.00241708755493,-0.753649711608887,0.39339804649353,-1.95367860794067,-0.65428352355957,0.269922018051147,-1.98217678070068,-0.547348499298096,0.498692512512207,-1.86239147186279,-0.85438060760498,0.487320423126221,-1.86710071563721,-0.815366268157959,0.450176954269409,-1.92026996612549,-0.736516952514648,0.444410085678101,-1.92934370040894,-0.717677593231201,0.480393171310425,-1.85937309265137,-0.769114971160889,0.48293662071228,-1.86156892776489,-0.783456325531006,0.542855501174927,-1.7218770980835,-0.822422504425049,0.528386116027832,-1.72187662124634,-0.776749610900879,0.502303600311279,-1.80169248580933,-0.623739242553711,0.45310640335083,-1.83009195327759,-0.528039455413818,0.503582954406738,-1.77253818511963,-0.749404907226563,0.515071868896484,-1.77815103530884,-0.720667362213135,0.515941381454468,-1.71928691864014,-0.684837341308594,0.521735906600952,-1.7171893119812,-0.708558082580566,0.034022182226181,-2.51203012466431,-0.801788330078125,0.0345581471920013,-2.56236457824707,-0.708492279052734,0.568787574768066,-1.51701402664185,-0.42070198059082,0.557128667831421,-1.49259757995605,-0.433334827423096,0.592338562011719,-1.53665351867676,-0.442527294158936,0.575360059738159,-1.5103325843811,-0.436161041259766,0.173246741294861,-2.50360012054443,-0.649944305419922,0.175074398517609,-2.50019693374634,-0.664726257324219,0.27196204662323,-2.48375844955444,-0.640424728393555,0.275615572929382,-2.47911691665649,-0.657379150390625,0.147637188434601,-2.54905080795288,-0.655697822570801,0.15215003490448,-2.5445032119751,-0.672258377075195, +0.307910799980164,-2.43741750717163,-0.63404655456543,0.309606432914734,-2.4343695640564,-0.649261474609375,0.366397261619568,-2.38535451889038,-0.612029075622559,0.367982745170593,-2.38058137893677,-0.629014015197754,0.316966891288757,-2.33372116088867,-0.596651077270508,0.321334719657898,-2.33173179626465,-0.61053466796875,0.263324499130249,-2.25664758682251,-0.556850433349609,0.270954370498657,-2.25374746322632,-0.572964668273926,0.194872617721558,-2.19412326812744,-0.541936874389648,0.203891038894653,-2.19283437728882,-0.554296493530273,0.210262060165405,-2.08209848403931,-0.510919570922852,0.232050180435181,-2.07898664474487,-0.527376174926758,0.234343767166138,-1.98518991470337,-0.50545597076416,0.249168634414673,-1.98606204986572,-0.519210815429688,0.422097444534302,-1.84217166900635,-0.484842777252197,0.438986539840698,-1.83820152282715,-0.499895095825195,0.581772089004517,-1.57869148254395,-0.438228607177734,0.591299295425415,-1.57422161102295,-0.452140808105469,0.060025542974472,-2.46752262115479,-0.795928955078125,0.0597032010555267,-2.42349529266357,-0.866551399230957,0.26148784160614,-2.32455253601074,-0.766658782958984,0.249700903892517,-2.29248762130737,-0.82902717590332,0.24145495891571,-2.09101629257202,-0.676624298095703,0.339587569236755,-2.05384159088135,-0.766355514526367,0.16962993144989,-2.47299289703369,-0.660392761230469,0.189042389392853,-2.45256423950195,-0.689650535583496,0.215153574943542,-2.46065855026245,-0.658082962036133,0.193538069725037,-2.47986602783203,-0.644015312194824,0.19058358669281,-2.46808958053589,-0.660196304321289,0.189866900444031,-2.33068084716797,-0.908180236816406,0.210337042808533,-2.3218846321106,-0.887642860412598,0.183652222156525,-2.33981323242188,-0.898089408874512,0.196994125843048,-2.32998895645142,-0.89361572265625,0.00524124503135681,-2.37135457992554,-0.959209442138672,0.0190318524837494,-2.35718441009521,-0.964105606079102,0.0286849439144135,-2.37124824523926,-0.956480979919434,0.0131042897701263,-2.38605165481567,-0.952536582946777,0.0153063237667084, +-2.37131595611572,-0.958991050720215,0.23198926448822,-2.29566621780396,-0.592319488525391,0.208428263664246,-2.25906181335449,-0.609393119812012,0.187024474143982,-2.24532604217529,-0.567719459533691,0.220267176628113,-2.28073120117188,-0.56574821472168,0.209436774253845,-2.27156639099121,-0.57955265045166,0.317630171775818,-2.13281583786011,-0.862915992736816,0.327365756034851,-2.11541986465454,-0.832209587097168,0.312684416770935,-2.14805316925049,-0.849302291870117,0.319563269615173,-2.13050937652588,-0.842221260070801,0.232722640037537,-2.22684097290039,-0.925421714782715,0.154926657676697,-2.25370931625366,-0.956851959228516,0.0963991582393646,-2.2349534034729,-0.987179756164551,0.179532408714294,-2.206383228302,-0.958685874938965,0.167444050312042,-2.23149299621582,-0.95795726776123,0.174982786178589,-1.93732690811157,-0.503810405731201,0.213306665420532,-1.90235614776611,-0.529620170593262,0.255982637405396,-1.87409067153931,-0.498984813690186,0.217634916305542,-1.91305637359619,-0.486822605133057,0.209072828292847,-1.90892648696899,-0.501048564910889,0.435848951339722,-1.77024078369141,-0.78462553024292,0.450456857681274,-1.72654247283936,-0.755879878997803,0.428875207901001,-1.79951238632202,-0.779139995574951,0.439391374588013,-1.76264953613281,-0.769217967987061,0.34109103679657,-1.94475555419922,-0.889060497283936,0.24328887462616,-1.99460887908936,-0.947708606719971,0.155947089195251,-1.93502712249756,-0.984472751617432,0.265836596488953,-1.88523244857788,-0.931048393249512,0.255413413047791,-1.94078540802002,-0.940012454986572,0.475643157958984,-1.56854677200317,-0.477039337158203,0.474264621734619,-1.54714107513428,-0.553049564361572,0.497564077377319,-1.45311689376831,-0.632599830627441,0.490740776062012,-1.44492626190186,-0.646285533905029,0.0390537679195404,-2.52845907211304,-0.672599792480469,0.0619424283504486,-2.51185750961304,-0.702455520629883,0.0930493772029877,-2.52150011062622,-0.672696113586426,0.0665267407894135,-2.53960132598877,-0.658411026000977,0.0638931691646576,-2.52655601501465, +-0.673879623413086,0.138593018054962,-2.49646806716919,-0.659567832946777,0.152042210102081,-2.477126121521,-0.688052177429199,0.156877398490906,-2.48575830459595,-0.662616729736328,0.149482071399689,-2.49819803237915,-0.646571159362793,0.150376677513123,-2.49004554748535,-0.660163879394531,0.150861084461212,-2.43577146530151,-0.783684730529785,0.140705943107605,-2.41221904754639,-0.834694862365723,0.270786166191101,-2.40128135681152,-0.635184288024902,0.268378615379333,-2.37155246734619,-0.661579132080078,0.282387137413025,-2.36876201629639,-0.627018928527832,0.291782736778259,-2.39728879928589,-0.615899085998535,0.278162837028503,-2.38632583618164,-0.631352424621582,0.271220564842224,-2.33512258529663,-0.612953186035156,0.267491221427917,-2.31514453887939,-0.638815879821777,0.272044539451599,-2.32378053665161,-0.609613418579102,0.283470511436462,-2.33707475662231,-0.598667144775391,0.273168444633484,-2.32882118225098,-0.611264228820801,0.290142416954041,-2.26871204376221,-0.743206024169922,0.296990275382996,-2.24719953536987,-0.790243148803711,0.11897599697113,-2.17009735107422,-0.538965225219727,0.109372019767761,-2.13744831085205,-0.562355041503906,0.0842903852462769,-2.10959577560425,-0.523497581481934,0.100011706352234,-2.14791965484619,-0.515311241149902,0.0966657400131226,-2.14482021331787,-0.530392646789551,0.100291132926941,-2.02642631530762,-0.513386249542236,0.132052302360535,-1.99303245544434,-0.542292594909668,0.146757841110229,-1.97915124893188,-0.515334606170654,0.130258798599243,-2.00279188156128,-0.50292444229126,0.123725771903992,-1.99947881698608,-0.514438152313232,0.272492289543152,-1.95836925506592,-0.654126167297363,0.359498381614685,-1.93730688095093,-0.715530872344971,0.450158357620239,-1.6936297416687,-0.476552963256836,0.459626436233521,-1.65259742736816,-0.494791507720947,0.477581739425659,-1.61472177505493,-0.461733818054199,0.479273319244385,-1.65844058990479,-0.455173015594482,0.46612286567688,-1.65665245056152,-0.469601154327393,0.462285280227661,-1.63308715820313,-0.571712493896484, +0.472401857376099,-1.60357904434204,-0.662218570709229,0.249676108360291,-2.43229150772095,-0.644448280334473,0.257521986961365,-2.41069173812866,-0.67328929901123,0.264769911766052,-2.41922521591187,-0.645844459533691,0.261253237724304,-2.43293809890747,-0.631199836730957,0.259135127067566,-2.42463302612305,-0.644810676574707,0.248393893241882,-2.3645486831665,-0.77381420135498,0.238508105278015,-2.33794832229614,-0.826451301574707,0.183920741081238,-2.40700817108154,-0.787113189697266,0.17421418428421,-2.36898899078369,-0.850414276123047,0.162429630756378,-2.31256008148193,-0.933073997497559,0.0980823934078217,-2.32789421081543,-0.952847480773926,0.0651286542415619,-2.30808019638062,-0.972075462341309,0.129243671894073,-2.29241991043091,-0.954689979553223,0.11430823802948,-2.31071424484253,-0.953699111938477,0.1142538189888,-2.34631252288818,-0.938295364379883,0.0640195310115814,-2.35748291015625,-0.951416969299316,0.0465033948421478,-2.34225606918335,-0.964332580566406,0.0809076726436615,-2.34327363967896,-0.952280044555664,0.145792305469513,-2.36250972747803,-0.913409233093262,0.16192901134491,-2.36172199249268,-0.896139144897461,0.141655266284943,-2.38359117507935,-0.886526107788086,0.152526676654816,-2.37397813796997,-0.889501571655273,0.0230072438716888,-2.40194272994995,-0.942131996154785,0.0148948132991791,-2.41996717453003,-0.928825378417969,0.00525888800621033,-2.40419244766235,-0.94334888458252,0.0135687291622162,-2.40348052978516,-0.943228721618652,0.00525888800621033,-2.43405961990356,-0.905642509460449,0.0252102315425873,-2.42782068252563,-0.910006523132324,0.0152700841426849,-2.43201208114624,-0.907140731811523,0.0877669751644135,-2.39243602752686,-0.92324161529541,0.110725700855255,-2.38876342773438,-0.905807495117188,0.0780962407588959,-2.40047264099121,-0.915223121643066,0.094446986913681,-2.39347362518311,-0.912298202514648,0.151840090751648,-2.20468235015869,-0.555715560913086,0.161989569664001,-2.18545818328857,-0.584207534790039,0.159017443656921,-2.19176435470581,-0.556354522705078,0.159834265708923, +-2.20314121246338,-0.544508934020996,0.154814124107361,-2.19670295715332,-0.556466102600098,0.262555003166199,-2.14215326309204,-0.691306114196777,0.311025977134705,-2.12555885314941,-0.741876602172852,0.263268828392029,-2.21750640869141,-0.715885162353516,0.295829176902771,-2.18794775009155,-0.794190406799316,0.28713071346283,-2.10891675949097,-0.911759376525879,0.201221346855164,-2.14645576477051,-0.957749366760254,0.124695122241974,-2.11727094650269,-0.995687007904053,0.221135973930359,-2.07831907272339,-0.954107284545898,0.211142897605896,-2.11364603042603,-0.956166744232178,0.260643362998962,-2.17513084411621,-0.920124053955078,0.110797703266144,-2.18282175064087,-0.99387264251709,0.190743803977966,-2.17769861221313,-0.958610534667969,0.294492125511169,-2.18939685821533,-0.876167297363281,0.30006730556488,-2.18486070632935,-0.852852821350098,0.295152544975281,-2.21435499191284,-0.849869728088379,0.297695517539978,-2.20111083984375,-0.850693702697754,0.197943031787872,-2.27623176574707,-0.930154800415039,0.081354945898056,-2.2729058265686,-0.979375839233398,0.142479240894318,-2.27372360229492,-0.955760955810547,0.232203841209412,-2.29031562805176,-0.899093627929688,0.242107748985291,-2.28774785995483,-0.879189491271973,0.230771899223328,-2.31054019927979,-0.878698348999023,0.236520171165466,-2.30062055587769,-0.878338813781738,0.265621542930603,-2.24553728103638,-0.888697624206543,0.280252814292908,-2.23228073120117,-0.861396789550781,0.260427832603455,-2.25790929794312,-0.876933097839355,0.270565390586853,-2.24401807785034,-0.869988441467285,0.361109018325806,-1.79281854629517,-0.490365505218506,0.405509233474731,-1.75451898574829,-0.516368389129639,0.434179067611694,-1.73675584793091,-0.490316390991211,0.412366628646851,-1.76517581939697,-0.478874206542969,0.40472674369812,-1.7613787651062,-0.490610599517822,0.442014455795288,-1.72784090042114,-0.612737655639648,0.461099624633789,-1.710608959198,-0.675798416137695,0.311353445053101,-1.86997365951538,-0.631002902984619,0.401126146316528,-1.84019613265991,-0.72823429107666, +0.17904931306839,-1.57711458206177,-0.864449977874756,0.336327433586121,-1.63372707366943,-0.83582878112793,0.261342406272888,-1.77090358734131,-0.911701202392578,0.116636157035828,-1.73963260650635,-0.945615291595459,0.220562338829041,-1.67303371429443,-0.892379283905029,0.361812472343445,-1.84352111816406,-0.873424530029297,0.166709721088409,-1.82549619674683,-0.964300155639648,0.272123694419861,-1.83511829376221,-0.92310094833374,0.40936017036438,-1.87465620040894,-0.808461666107178,0.414979696273804,-1.85811710357666,-0.785652637481689,0.403637170791626,-1.90606737136841,-0.778592109680176,0.409921884536743,-1.88167667388916,-0.780630588531494,0.309803366661072,-2.04419279098511,-0.904275417327881,0.139989197254181,-2.03777122497559,-0.994746685028076,0.231863856315613,-2.03957843780518,-0.951858520507813,0.346982836723328,-2.06456279754639,-0.848154544830322,0.356282114982605,-2.05432939529419,-0.824145793914795,0.345993399620056,-2.09191560745239,-0.812832355499268,0.352032542228699,-2.07401323318481,-0.817185401916504,0.373077273368835,-2.00045347213745,-0.834243297576904,0.387601733207703,-1.96579933166504,-0.802886009216309,0.368049025535583,-2.01728105545044,-0.821094512939453,0.377481341362,-1.99338912963867,-0.813727378845215,0.491350173950195,-1.5007586479187,-0.463925838470459,0.490167379379272,-1.47726440429688,-0.550476551055908,0.493750095367432,-1.45801830291748,-0.611294746398926,0.490220785140991,-1.50837230682373,-0.674724102020264,0.480908632278442,-1.51750421524048,-0.642655849456787,0.464682579040527,-1.50039339065552,-0.720452308654785,0.476305484771729,-1.46246957778931,-0.692612648010254,0.473260879516602,-1.5383448600769,-0.715193748474121,0.475284814834595,-1.49947023391724,-0.70347261428833,0.46991229057312,-1.61648988723755,-0.726966857910156,0.466577768325806,-1.67158222198486,-0.727922439575195,0.481804847717285,-1.59274578094482,-0.694319248199463,0.00525888800621033,-2.54043769836426,-0.671935081481934,0.0119932591915131,-2.52431631088257,-0.700559616088867,0.0194619596004486,-2.53471803665161, +-0.672056198120117,0.0130499303340912,-2.5474066734314,-0.656798362731934,0.0124047696590424,-2.53847646713257,-0.671987533569336,0.0616010129451752,-2.41711187362671,-0.893245697021484,0.0152891576290131,-2.44868183135986,-0.866727828979492,0.0144289433956146,-2.45133447647095,-0.846920967102051,0.118516802787781,-2.49395847320557,-0.695219993591309,0.11377078294754,-2.44919013977051,-0.793328285217285,0.137285530567169,-2.40710496902466,-0.852106094360352,0.0974558293819427,-2.39980936050415,-0.889554977416992,0.100410342216492,-2.40837383270264,-0.863966941833496,0.161229491233826,-2.467369556427,-0.689620971679688,0.16219699382782,-2.42797470092773,-0.782023429870605,0.161427319049835,-2.39723300933838,-0.844936370849609,0.1611407995224,-2.40434551239014,-0.829226493835449,0.173784136772156,-2.35971260070801,-0.872509002685547,0.232651114463806,-2.42979192733765,-0.681017875671387,0.221314787864685,-2.38064050674438,-0.783758163452148,0.202618002891541,-2.33450746536255,-0.865017890930176,0.205662608146667,-2.34299564361572,-0.844207763671875,0.235337138175964,-2.33053779602051,-0.843722343444824,0.261917948722839,-2.39958095550537,-0.669746398925781,0.253722548484802,-2.35569477081299,-0.770268440246582,0.249163508415222,-2.28485536575317,-0.849736213684082,0.243145823478699,-2.32167339324951,-0.840717315673828,0.245026469230652,-2.33008527755737,-0.823554039001465,0.26856791973114,-2.33381366729736,-0.64918041229248,0.278708815574646,-2.28521823883057,-0.754884719848633,0.297697901725769,-2.24147033691406,-0.804941177368164,0.275982737541199,-2.25075817108154,-0.835178375244141,0.27616012096405,-2.25608062744141,-0.815264701843262,0.252433657646179,-2.30157423019409,-0.630448341369629,0.282766699790955,-2.25893640518188,-0.732294082641602,0.299735426902771,-2.22576093673706,-0.805438995361328,0.296798586845398,-2.23390913009644,-0.787835121154785,0.301949381828308,-2.18109464645386,-0.819321632385254,0.167783617973328,-2.20779466629028,-0.590678215026855,0.252463698387146,-2.16581201553345,-0.698309898376465, +0.315992712974548,-2.13699388504028,-0.80350399017334,0.307756781578064,-2.14028596878052,-0.778069496154785,0.322064757347107,-2.12241077423096,-0.757606506347656,0.15547502040863,-2.17700338363647,-0.57680606842041,0.263643145561218,-2.1308536529541,-0.687355041503906,0.357393622398376,-2.0447473526001,-0.793275833129883,0.340071082115173,-2.09365463256836,-0.761488914489746,0.325326323509216,-2.10234832763672,-0.744372367858887,0.0990160703659058,-2.05851554870605,-0.549132347106934,0.244497179985046,-2.01877021789551,-0.662276744842529,0.380139589309692,-1.93359231948853,-0.734086513519287,0.375930190086365,-1.98921918869019,-0.777194499969482,0.354790568351746,-1.99247169494629,-0.750388622283936,0.16375470161438,-1.95497226715088,-0.537292957305908,0.285264372825623,-1.9226541519165,-0.645109176635742,0.392897844314575,-1.88923692703247,-0.733436584472656,0.372574090957642,-1.89667797088623,-0.71235179901123,0.41548752784729,-1.83371019363403,-0.760159969329834,0.311912775039673,-1.82428169250488,-0.522226333618164,0.377791166305542,-1.7938117980957,-0.61884593963623,0.438830614089966,-1.76488590240479,-0.744475841522217,0.428449869155884,-1.76908302307129,-0.712249279022217,0.466635465621948,-1.70695829391479,-0.697120666503906,0.0248344838619232,-2.51626014709473,-0.700325965881348,0.026392787694931,-2.47045516967773,-0.792520523071289,0.486173868179321,-1.53933572769165,-0.443116188049316,0.507253408432007,-1.48744440078735,-0.431804656982422,0.506679773330688,-1.51603317260742,-0.42047643661499,0.496864557266235,-1.50992012023926,-0.436059951782227,0.16149890422821,-2.48720979690552,-0.647692680358887,0.160854160785675,-2.47949028015137,-0.661934852600098,0.238221526145935,-2.45865058898926,-0.635186195373535,0.23490846157074,-2.44651794433594,-0.650847434997559,0.119788467884064,-2.52158641815186,-0.650403022766113,0.11871325969696,-2.50919485092163,-0.665846824645996,0.273995280265808,-2.41930103302002,-0.627572059631348,0.267295241355896,-2.41188812255859,-0.641279220581055,0.29302966594696,-2.36176872253418, +-0.604656219482422,0.277599215507507,-2.34998321533203,-0.61962890625,0.263436675071716,-2.31945991516113,-0.590438842773438,0.255162596702576,-2.31296873092651,-0.602756500244141,0.177015662193298,-2.23241949081421,-0.54466724395752,0.16551673412323,-2.22191572189331,-0.559635162353516,0.143078207969666,-2.18638563156128,-0.537412643432617,0.143763899803162,-2.18424415588379,-0.549142837524414,0.0909913778305054,-2.07050657272339,-0.502360820770264,0.0856908559799194,-2.06646919250488,-0.517292499542236,0.165564298629761,-1.96245431900024,-0.498125553131104,0.158800363540649,-1.95961570739746,-0.510147094726563,0.318023920059204,-1.83782720565796,-0.480276584625244,0.308833360671997,-1.8328685760498,-0.494339942932129,0.494262218475342,-1.57855033874512,-0.438172817230225,0.481941223144531,-1.57497453689575,-0.452295780181885,0.00525888800621033,-2.55426979064941,-0.651948928833008,0.0220578610897064,-2.5565390586853,-0.652600288391113,0.0140345990657806,-2.56158638000488,-0.65314769744873,0.0136588513851166,-2.55510711669922,-0.652226448059082,0.0987447202205658,-2.54837799072266,-0.651339530944824,0.0747650563716888,-2.56803703308105,-0.653336524963379,0.0444091260433197,-2.55708646774292,-0.65272045135498,0.0697506368160248,-2.55506801605225,-0.653066635131836,0.142049193382263,-2.51763486862183,-0.640217781066895,0.130264580249786,-2.54413890838623,-0.645783424377441,0.123710513114929,-2.53411245346069,-0.645145416259766,0.156717121601105,-2.49576616287231,-0.645022392272949,0.154227137565613,-2.50917625427246,-0.643274307250977,0.151219189167023,-2.50434970855713,-0.642284393310547,0.177079975605011,-2.49302673339844,-0.637870788574219,0.167391180992126,-2.49839973449707,-0.641836166381836,0.164023756980896,-2.49343061447144,-0.642120361328125,0.225112318992615,-2.48286533355713,-0.634627342224121,0.20745313167572,-2.49904346466064,-0.63533878326416,0.19977080821991,-2.49027681350708,-0.636569023132324,0.260857939720154,-2.45210409164429,-0.623831748962402,0.255897879600525,-2.4762806892395,-0.6280517578125, +0.246118903160095,-2.46851396560669,-0.628467559814453,0.271974921226501,-2.4293851852417,-0.628499984741211,0.274567008018494,-2.44236946105957,-0.626862525939941,0.267101645469666,-2.43857908248901,-0.626379013061523,0.296759486198425,-2.42114162445068,-0.614439964294434,0.292452216148376,-2.4315619468689,-0.623200416564941,0.282838225364685,-2.42594337463379,-0.622597694396973,0.316080451011658,-2.390456199646,-0.604787826538086,0.327857851982117,-2.41761255264282,-0.60981559753418,0.309343218803406,-2.40811252593994,-0.609441757202148,0.304720759391785,-2.35469341278076,-0.592595100402832,0.335198283195496,-2.37921905517578,-0.597529411315918,0.313496470451355,-2.37159967422485,-0.597867965698242,0.286255240440369,-2.33256769180298,-0.594297409057617,0.30776059627533,-2.34554862976074,-0.593133926391602,0.295575976371765,-2.34233045578003,-0.593466758728027,0.259685397148132,-2.31075620651245,-0.578210830688477,0.28900945186615,-2.32727861404419,-0.591007232666016,0.275091052055359,-2.32373809814453,-0.588543891906738,0.214724898338318,-2.26223945617676,-0.553504943847656,0.260839819908142,-2.29534673690796,-0.570769309997559,0.237851500511169,-2.28821086883545,-0.565582275390625,0.178952097892761,-2.22100496292114,-0.53978443145752,0.217050909996033,-2.24569272994995,-0.549327850341797,0.194741129875183,-2.2396445274353,-0.544205665588379,0.163971781730652,-2.19586563110352,-0.544429779052734,0.18359363079071,-2.20907688140869,-0.545167922973633,0.170256495475769,-2.20667886734009,-0.542750358581543,0.134414076805115,-2.17630624771118,-0.523714065551758,0.165720820426941,-2.19027757644653,-0.53803539276123,0.151746153831482,-2.18827199935913,-0.535730361938477,0.104669451713562,-2.11673450469971,-0.510430335998535,0.14160430431366,-2.15642499923706,-0.521963119506836,0.115522742271423,-2.15181541442871,-0.516162872314453,0.123608827590942,-2.03365325927734,-0.498133659362793,0.137357473373413,-2.07689476013184,-0.508514404296875,0.108195662498474,-2.07384061813354,-0.502961158752441,0.163525819778442,-1.98539257049561, +-0.503581047058105,0.163026094436646,-2.00873422622681,-0.503893852233887,0.144004106521606,-2.00579833984375,-0.501370906829834,0.197105169296265,-1.9475793838501,-0.485909938812256,0.193760633468628,-1.97472190856934,-0.496933460235596,0.177283525466919,-1.96803522109985,-0.495132446289063,0.282772302627563,-1.88144063949585,-0.485841751098633,0.257343530654907,-1.92351293563843,-0.489091873168945,0.233706712722778,-1.91808128356934,-0.485433578491211,0.389574289321899,-1.80008172988892,-0.472249507904053,0.364304780960083,-1.84097671508789,-0.481503486633301,0.337485551834106,-1.83999729156494,-0.478586673736572,0.454521894454956,-1.74211549758911,-0.477957725524902,0.448060274124146,-1.76999521255493,-0.476347923278809,0.427793741226196,-1.76789379119873,-0.475476264953613,0.485006093978882,-1.69709396362305,-0.457918643951416,0.509492158889771,-1.61752510070801,-0.44773530960083,0.525287628173828,-1.66036367416382,-0.455360412597656,0.500184297561646,-1.65941667556763,-0.453082084655762,0.51758599281311,-1.54581451416016,-0.423294544219971,0.538504123687744,-1.57899188995361,-0.437794208526611,0.514423847198486,-1.57928657531738,-0.435940742492676,0.524266242980957,-1.49697065353394,-0.412285327911377,0.538271188735962,-1.51864814758301,-0.415422916412354,0.521275520324707,-1.51831197738647,-0.415329933166504,0.0519121587276459,-2.57836055755615,-0.655733108520508,0.0351317822933197,-2.580322265625,-0.663393974304199,0.0232761800289154,-2.57360172271729,-0.655695915222168,0.032248817384243,-2.56982421875,-0.653783798217773,0.034022182226181,-2.57790851593018,-0.656074523925781,0.11552506685257,-2.56387376785278,-0.65245532989502,0.0827339589595795,-2.57365083694458,-0.654758453369141,0.15338546037674,-2.53140163421631,-0.644740104675293,0.139291107654572,-2.54903125762939,-0.648073196411133,0.159761786460876,-2.50142765045166,-0.646428108215332,0.157128632068634,-2.51330995559692,-0.645540237426758,0.189042389392853,-2.50696468353271,-0.639470100402832,0.170578837394714,-2.50239896774292,-0.643374443054199,0.241892695426941, +-2.49789953231812,-0.635920524597168,0.214706301689148,-2.50583028793335,-0.637816429138184,0.279662489891052,-2.46295690536499,-0.627859115600586,0.264959216117859,-2.48207759857178,-0.631339073181152,0.283988356590271,-2.43445014953613,-0.630284309387207,0.281505942344666,-2.44521903991699,-0.629202842712402,0.325229525566101,-2.43682050704956,-0.62012767791748,0.301504492759705,-2.4359393119812,-0.62617301940918,0.355352282524109,-2.40516185760498,-0.609272956848145,0.34456479549408,-2.42457628250122,-0.614953994750977,0.341081023216248,-2.36451768875122,-0.595955848693848,0.354259371757507,-2.3843355178833,-0.601898193359375,0.302313685417175,-2.33556461334229,-0.595460891723633,0.318647742271423,-2.34752750396729,-0.59520149230957,0.306454062461853,-2.32430934906006,-0.584492683410645,0.304582476615906,-2.33141660690308,-0.591931343078613,0.262614607810974,-2.27658987045288,-0.560977935791016,0.287794470787048,-2.30338859558105,-0.572964668273926,0.222453474998474,-2.23135089874268,-0.545507431030273,0.242690443992615,-2.25266647338867,-0.551253318786621,0.181459784507751,-2.19791030883789,-0.545801162719727,0.198202013969421,-2.21197938919067,-0.545870780944824,0.182950258255005,-2.18484020233154,-0.528356552124023,0.181143164634705,-2.1927490234375,-0.538301467895508,0.168508291244507,-2.12628507614136,-0.515573501586914,0.174027681350708,-2.16205263137817,-0.521413803100586,0.182993173599243,-2.03850364685059,-0.50216817855835,0.174615144729614,-2.08057451248169,-0.507834434509277,0.191477060317993,-1.99443340301514,-0.506526470184326,0.185225248336792,-2.01178359985352,-0.504541873931885,0.248334646224976,-1.96210241317749,-0.490903854370117,0.214285612106323,-1.98092365264893,-0.499186515808105,0.335381269454956,-1.88720750808716,-0.489017009735107,0.28692364692688,-1.92908811569214,-0.489768028259277,0.445993185043335,-1.80174589157104,-0.47439432144165,0.394730806350708,-1.84241056442261,-0.481147766113281,0.487699270248413,-1.74821138381958,-0.479843139648438,0.469846963882446,-1.77191829681396,-0.477379322052002, +0.540197610855103,-1.70007848739624,-0.459413051605225,0.555166482925415,-1.61961507797241,-0.448322296142578,0.550720453262329,-1.66210794448853,-0.454019546508789,0.565314054489136,-1.54493999481201,-0.423103332519531,0.56255578994751,-1.57955646514893,-0.436007976531982,0.543465137481689,-1.49974918365479,-0.413385391235352,0.555266380310059,-1.51899433135986,-0.415493011474609,0.0380156934261322,-2.43777084350586,-0.944278717041016,0.0384458005428314,-2.45125770568848,-0.903614044189453,0.035078376531601,-2.43628072738647,-0.881955146789551,0.486173868179321,-1.40957832336426,-0.644150257110596,0.46333909034729,-1.55885934829712,-0.734324932098389,0.471381425857544,-1.5789794921875,-0.72318172454834,0.444983243942261,-1.6826376914978,-0.766983032226563,0.459925651550293,-1.69732046127319,-0.73998498916626,0.423205137252808,-1.82146835327148,-0.796272754669189,0.420992612838745,-1.83103656768799,-0.784889221191406,0.392204642295837,-1.93921804428101,-0.821137428283691,0.396296858787537,-1.93539810180664,-0.788585662841797,0.361649870872498,-2.02876329421997,-0.841058731079102,0.361190676689148,-2.0365252494812,-0.824996471405029,0.331760287284851,-2.10049533843994,-0.854583263397217,0.33719003200531,-2.10410833358765,-0.820163726806641,0.30767285823822,-2.15703058242798,-0.868982315063477,0.305600047111511,-2.16666650772095,-0.852621078491211,0.280557990074158,-2.21929359436035,-0.881962776184082,0.288921236991882,-2.22355222702026,-0.854068756103516,0.252351641654968,-2.26502370834351,-0.893807411193848,0.25050675868988,-2.27298307418823,-0.879367828369141,0.211106657981873,-2.31208848953247,-0.903470039367676,0.221816420555115,-2.31651163101196,-0.882243156433105,0.172531485557556,-2.3443808555603,-0.911468505859375,0.172137081623077,-2.35038805007935,-0.89896297454834,0.116922676563263,-2.37848615646362,-0.917399406433105,0.127095103263855,-2.38701438903809,-0.894591331481934,0.0638760030269623,-2.40352010726929,-0.925764083862305,0.0465219914913177,-2.41742849349976,-0.914676666259766,0.0615123212337494,-2.40914297103882, +-0.915778160095215,0.0377462804317474,-2.45687103271484,-0.886857986450195,0.0349710881710052,-2.46982002258301,-0.865737915039063,0.0321768224239349,-2.43689489364624,-0.857253074645996,0.432481527328491,-1.52991485595703,-0.752892017364502,0.433198213577271,-1.46441125869751,-0.738374710083008,0.45001482963562,-1.51398611068726,-0.737400531768799,0.418530702590942,-1.73897886276245,-0.808925151824951,0.408698320388794,-1.82565021514893,-0.826837539672852,0.423079252243042,-1.79359102249146,-0.80656099319458,0.368241667747498,-1.98542881011963,-0.856669425964355,0.351119875907898,-2.03052377700806,-0.866048336029053,0.363065123558044,-2.01282548904419,-0.852328300476074,0.313510298728943,-2.12532567977905,-0.88270092010498,0.299057841300964,-2.15959692001343,-0.889805793762207,0.309696078300476,-2.14321613311768,-0.878787040710449,0.256792426109314,-2.23934650421143,-0.904219627380371,0.237898707389832,-2.266676902771,-0.909729957580566,0.253319144248962,-2.25381469726563,-0.901643753051758,0.179838001728058,-2.32450914382935,-0.91944408416748,0.154083549976349,-2.3433895111084,-0.923671722412109,0.174052596092224,-2.33553647994995,-0.917708396911621,0.0811584889888763,-2.38422584533691,-0.93168830871582,0.0499423444271088,-2.39796209335327,-0.935338020324707,0.070305198431015,-2.39464616775513,-0.930444717407227,0.400800943374634,-1.39987897872925,-0.746074676513672,0.401731252670288,-1.5676646232605,-0.778822422027588,0.40746283531189,-1.64918422698975,-0.796462535858154,0.392508387565613,-1.89760446548462,-0.843739986419678,0.400299310684204,-1.85933399200439,-0.837283611297607,0.379953265190125,-1.94332361221313,-0.851995468139648,0.330328345298767,-2.07898187637329,-0.877496242523193,0.340302348136902,-2.05362272262573,-0.873402118682861,0.320889830589294,-2.10337972640991,-0.881438732147217,0.277908205986023,-2.20145177841187,-0.899565696716309,0.288670420646667,-2.17991018295288,-0.895973205566406,0.266141772270203,-2.2215723991394,-0.902917861938477,0.209065794944763,-2.29770803451538,-0.916006088256836,0.223589777946472, +-2.28199005126953,-0.913816452026367,0.193000197410583,-2.31189632415771,-0.918369293212891,0.11532860994339,-2.36348056793213,-0.929876327514648,0.134455978870392,-2.3530216217041,-0.927509307861328,0.0723107755184174,-2.37182569503784,-0.940762519836426,0.0968826711177826,-2.37384462356567,-0.931382179260254,0.0378364026546478,-2.38520574569702,-0.946127891540527,0.0486348569393158,-2.37119054794312,-0.949752807617188,0.00525888800621033,-2.34132289886475,-0.970083236694336,0.02730593085289,-2.32456731796265,-0.97467041015625,0.0231145322322845,-2.34157228469849,-0.969337463378906,0.00524124503135681,-2.30570650100708,-0.98151969909668,0.0351675450801849,-2.28837299346924,-0.985231399536133,0.0313356816768646,-2.30634021759033,-0.980096817016602,0.00524124503135681,-2.27186822891235,-0.99159049987793,0.0421341359615326,-2.25568866729736,-0.994296073913574,0.0386780202388763,-2.27220392227173,-0.989725112915039,0.00525888800621033,-2.23719310760498,-1.00173759460449,0.0492800176143646,-2.21392965316772,-1.00473690032959,0.045733779668808,-2.236732006073,-0.999672889709473,0.00524124503135681,-2.18670558929443,-1.01036834716797,0.0559414327144623,-2.15379047393799,-1.01054000854492,0.0525930821895599,-2.18576383590698,-1.00833606719971,0.00525888800621033,-2.12028026580811,-1.01324939727783,0.0635894238948822,-2.08111667633057,-1.01151180267334,0.0596311986446381,-2.11951971054077,-1.01137971878052,0.00525888800621033,-2.03657817840576,-1.01347541809082,0.0718449056148529,-1.98677444458008,-1.00920438766479,0.0677264630794525,-2.03684854507446,-1.01157760620117,0.0790093839168549,-1.87047576904297,-0.990476608276367,0.00525888800621033,-1.79387903213501,-0.97270393371582,0.0810321271419525,-1.80607795715332,-0.974995613098145,-0.0671288073062897,-2.45325708389282,-0.875676155090332,-0.0742742121219635,-2.50681066513062,-0.804494857788086,-0.288431763648987,-2.31588697433472,-0.836111068725586,-0.317382454872131,-2.3626856803894,-0.776201248168945,-0.391685247421265,-2.07002067565918,-0.770670890808105,-0.324926137924194, +-2.11095714569092,-0.682560920715332,-0.184899032115936,-2.50581073760986,-0.66414737701416,-0.211887955665588,-2.49244022369385,-0.693721771240234,-0.240578293800354,-2.4963526725769,-0.661324501037598,-0.209685921669006,-2.50853157043457,-0.64634895324707,-0.212049603462219,-2.50488901138306,-0.663297653198242,-0.225732445716858,-2.3425440788269,-0.887932777404785,-0.21616804599762,-2.34322547912598,-0.923625946044922,-0.098666787147522,-2.41446781158447,-0.980607986450195,-0.0950485467910767,-2.41118144989014,-0.939693450927734,-0.321247696876526,-2.32785701751709,-0.605854034423828,-0.306055665016174,-2.29814767837524,-0.625157356262207,-0.279237389564514,-2.27973794937134,-0.582993507385254,-0.297800660133362,-2.30887460708618,-0.578716278076172,-0.305430054664612,-2.30747890472412,-0.595287322998047,-0.352182984352112,-2.13871145248413,-0.841464996337891,-0.352243065834045,-2.13465118408203,-0.881549835205078,-0.310532212257385,-2.25436210632324,-0.944185256958008,-0.300073266029358,-2.25334358215332,-0.901966094970703,-0.270902395248413,-1.96856689453125,-0.513379096984863,-0.32893443107605,-1.9270920753479,-0.538566589355469,-0.359253644943237,-1.88728284835815,-0.505053043365479,-0.294007062911987,-1.93376302719116,-0.49338960647583,-0.310916662216187,-1.93298530578613,-0.509294986724854,-0.494492292404175,-1.77737808227539,-0.764010429382324,-0.495104551315308,-1.800377368927,-0.800145626068115,-0.434839963912964,-1.99332046508789,-0.884467601776123,-0.425866842269897,-1.99938631057739,-0.843911170959473,-0.584524869918823,-1.566819190979,-0.476658344268799,-0.583574533462524,-1.54588174819946,-0.55311918258667,-0.547917604446411,-1.45214509963989,-0.656993865966797,-0.547398328781128,-1.45805788040161,-0.634053230285645,-0.541255712509155,-1.59566831588745,-0.752939701080322,-0.552018880844116,-1.58823680877686,-0.792141914367676,-0.0452796667814255,-2.57582330703735,-0.67951774597168,-0.0801130831241608,-2.55755805969238,-0.707575798034668,-0.118152320384979,-2.55809688568115,-0.675373077392578,-0.0792171061038971, +-2.57351589202881,-0.661554336547852,-0.0812412798404694,-2.56925678253174,-0.677947998046875,-0.152877509593964,-2.52860355377197,-0.669269561767578,-0.155545353889465,-2.49930286407471,-0.69493293762207,-0.153217434883118,-2.49834251403809,-0.665546417236328,-0.149653553962708,-2.51454019546509,-0.652350425720215,-0.153021037578583,-2.51050186157227,-0.667054176330566,-0.141773819923401,-2.4284930229187,-0.839338302612305,-0.153666138648987,-2.45666933059692,-0.78886604309082,-0.325791954994202,-2.43711948394775,-0.647915840148926,-0.341716408729553,-2.41304731369019,-0.674302101135254,-0.359168648719788,-2.40330505371094,-0.637042999267578,-0.345374703407288,-2.42736196517944,-0.625897407531738,-0.347385048866272,-2.42442607879639,-0.643633842468262,-0.341200470924377,-2.35972166061401,-0.620957374572754,-0.312751412391663,-2.33120441436768,-0.643628120422363,-0.300193428993225,-2.33239698410034,-0.612644195556641,-0.314895272254944,-2.3470721244812,-0.601908683776855,-0.315849900245667,-2.34275674819946,-0.615702629089355,-0.319667458534241,-2.25558614730835,-0.792492866516113,-0.320945382118225,-2.28167104721069,-0.7462158203125,-0.202474355697632,-2.18753433227539,-0.547187805175781,-0.21855092048645,-2.15748977661133,-0.571385383605957,-0.202242612838745,-2.12927007675171,-0.532350540161133,-0.18607497215271,-2.16680574417114,-0.523268699645996,-0.202257394790649,-2.16568279266357,-0.539638519287109,-0.212773561477661,-2.03699588775635,-0.520405769348145,-0.224733114242554,-2.00632858276367,-0.548635482788086,-0.200069665908813,-1.9988169670105,-0.521001815795898,-0.187411546707153,-2.01435041427612,-0.507511615753174,-0.202478170394897,-2.01261043548584,-0.520228862762451,-0.424736738204956,-1.9518461227417,-0.719151973724365,-0.364744901657104,-1.97388124465942,-0.659575462341309,-0.560136079788208,-1.69898366928101,-0.479183197021484,-0.575239896774292,-1.6557445526123,-0.496156215667725,-0.573478937149048,-1.61746215820313,-0.462570667266846,-0.560049295425415,-1.66293239593506,-0.456661701202393,-0.570492029190063, +-1.66084861755371,-0.471157073974609,-0.556764841079712,-1.61603784561157,-0.667347431182861,-0.577757596969604,-1.63697719573975,-0.573300361633301,-0.280087113380432,-2.45864009857178,-0.653314590454102,-0.279463410377502,-2.42825841903687,-0.679494857788086,-0.280480980873108,-2.43049573898315,-0.64980411529541,-0.276649117469788,-2.44521188735962,-0.63630485534668,-0.279797196388245,-2.44047927856445,-0.650992393493652,-0.254494309425354,-2.34949445724487,-0.82677173614502,-0.267693161964417,-2.38093852996826,-0.777554512023926,-0.19877827167511,-2.38686943054199,-0.860172271728516,-0.206514954566956,-2.43940544128418,-0.794582366943359,-0.227791428565979,-2.34673404693604,-0.965042114257813,-0.174744307994843,-2.37940979003906,-0.972551345825195,-0.161474406719208,-2.38090038299561,-0.928115844726563,-0.162583947181702,-2.39980888366699,-0.870671272277832,-0.0274969637393951,-2.43777084350586,-0.944278717041016,-0.0276571810245514,-2.43774223327637,-0.986196517944336,-0.00573650002479553,-2.4539680480957,-0.891378402709961,-0.00543227791786194,-2.45976495742798,-0.869391441345215,-0.0977179110050201,-2.41766881942749,-0.907773971557617,-0.233925342559814,-2.23131895065308,-0.564672470092773,-0.210331559181213,-2.20177173614502,-0.587499618530273,-0.182702660560608,-2.19691228866577,-0.558309555053711,-0.197226643562317,-2.21360969543457,-0.549236297607422,-0.202924847602844,-2.21091794967651,-0.560905456542969,-0.332472443580627,-2.13290166854858,-0.74351692199707,-0.292226433753967,-2.15605068206787,-0.694135665893555,-0.338374733924866,-2.2026743888855,-0.81464958190918,-0.329929947853088,-2.25088596343994,-0.72757625579834,-0.360731720924377,-2.13677597045898,-0.918985366821289,-0.332112908363342,-2.198655128479,-0.931358337402344,-0.322137475013733,-2.19979906082153,-0.887105941772461,-0.319779992103577,-2.22009038925171,-0.829927444458008,-0.275484681129456,-2.30820465087891,-0.956408500671387,-0.26086962223053,-2.3050422668457,-0.912044525146484,-0.257253289222717,-2.32071256637573,-0.859456062316895,-0.302221894264221, +-2.25943756103516,-0.856340408325195,-0.469220876693726,-1.79712104797363,-0.494242191314697,-0.491422891616821,-1.76300144195557,-0.518490314483643,-0.495739221572876,-1.74857521057129,-0.493729591369629,-0.473337888717651,-1.77263355255127,-0.481752872467041,-0.483818769454956,-1.76965522766113,-0.494049549102783,-0.512704610824585,-1.7235221862793,-0.666001796722412,-0.516058206558228,-1.73953199386597,-0.605590343475342,-0.476130247116089,-1.86836576461792,-0.740499019622803,-0.421391248703003,-1.89708185195923,-0.639813899993896,-0.506404638290405,-1.80047416687012,-0.840263843536377,-0.472413778305054,-1.90754413604736,-0.864780902862549,-0.461237668991089,-1.91434049606323,-0.821704387664795,-0.451955556869507,-1.91807174682617,-0.761481285095215,-0.397480607032776,-2.07075309753418,-0.902136325836182,-0.386895775794983,-2.072829246521,-0.857022762298584,-0.373180985450745,-2.09140968322754,-0.791378974914551,-0.429778814315796,-1.99654197692871,-0.798081398010254,-0.567188024520874,-1.50041246414185,-0.463860034942627,-0.566346883773804,-1.47755241394043,-0.550680637359619,-0.555117845535278,-1.46378707885742,-0.613492488861084,-0.561851263046265,-1.52344512939453,-0.646178245544434,-0.545500516891479,-1.51688957214355,-0.677169322967529,-0.548311471939087,-1.43969678878784,-0.713733673095703,-0.55784010887146,-1.43015956878662,-0.755860328674316,-0.545428991317749,-1.5048246383667,-0.731787204742432,-0.555082082748413,-1.49615287780762,-0.770961284637451,-0.545624971389771,-1.51355314254761,-0.693394660949707,-0.540754556655884,-1.60389709472656,-0.714036464691162,-0.54037880897522,-1.60724115371704,-0.697805404663086,-0.00319305062294006,-2.54788780212402,-0.705222129821777,-0.0127216875553131,-2.57044982910156,-0.67855167388916,-0.00317588448524475,-2.56784391403198,-0.660787582397461,-0.00315728783607483,-2.56208610534668,-0.676555633544922,-0.0578166544437408,-2.42704248428345,-0.943315505981445,-0.058478981256485,-2.4296760559082,-0.984070777893066,-0.0581752359867096,-2.43597221374512,-0.911855697631836, +-0.0589090883731842,-2.43959617614746,-0.898846626281738,-0.00357022881507874,-2.47076225280762,-0.851597785949707,-0.00308576226234436,-2.49859189987183,-0.796743392944336,-0.130294024944305,-2.39668464660645,-0.932313919067383,-0.140054821968079,-2.39648342132568,-0.976492881774902,-0.142526268959045,-2.53254461288452,-0.702142715454102,-0.134216010570526,-2.48317193984985,-0.801197052001953,-0.133159816265106,-2.41231441497803,-0.877220153808594,-0.135416150093079,-2.41980409622192,-0.855216026306152,-0.115232646465302,-2.4345121383667,-0.872429847717285,-0.100385844707489,-2.42059135437012,-0.894767761230469,-0.165718674659729,-2.48963212966919,-0.692811012268066,-0.166416823863983,-2.44711494445801,-0.786191940307617,-0.18964546918869,-2.36199140548706,-0.928055763244629,-0.201983571052551,-2.36323070526123,-0.968817710876465,-0.164966225624084,-2.41915941238403,-0.833086967468262,-0.163640141487122,-2.40888357162476,-0.847746849060059,-0.194516360759735,-2.36699962615967,-0.894906044006348,-0.195071339607239,-2.37022924423218,-0.880589485168457,-0.239413857460022,-2.32548093795776,-0.916573524475098,-0.252630829811096,-2.32984447479248,-0.961262702941895,-0.264719605445862,-2.46566724777222,-0.688097953796387,-0.251880288124084,-2.41104650497437,-0.791394233703613,-0.236227631568909,-2.35929012298584,-0.853756904602051,-0.228686928749084,-2.34359216690063,-0.872794151306152,-0.244196534156799,-2.3333535194397,-0.862983703613281,-0.248118996620178,-2.33876609802246,-0.841955184936523,-0.296668648719788,-2.42371559143066,-0.677981376647949,-0.281466126441956,-2.37800598144531,-0.775444030761719,-0.28210985660553,-2.28033638000488,-0.908790588378906,-0.295560479164124,-2.28166389465332,-0.95041561126709,-0.27842104434967,-2.29311275482178,-0.869071006774902,-0.277329087257385,-2.29902410507202,-0.853301048278809,-0.263914704322815,-2.34307241439819,-0.8243408203125,-0.257448792457581,-2.32961368560791,-0.838911056518555,-0.312520623207092,-2.22703218460083,-0.893002510070801,-0.321975350379944,-2.22717571258545, +-0.937914848327637,-0.350190758705139,-2.36772060394287,-0.658982276916504,-0.33408796787262,-2.31495046615601,-0.762297630310059,-0.315322518348694,-2.23910284042358,-0.831164360046387,-0.316309571266174,-2.24730634689331,-0.806290626525879,-0.314669251441956,-2.27551174163818,-0.821206092834473,-0.304584145545959,-2.26319932937622,-0.838276863098145,-0.30963671207428,-2.32265090942383,-0.638221740722656,-0.322329163551331,-2.27688503265381,-0.736878395080566,-0.335103631019592,-2.16720151901245,-0.889534950256348,-0.34409487247467,-2.16765213012695,-0.926045417785645,-0.321715950965881,-2.24394178390503,-0.790392875671387,-0.31804621219635,-2.23135709762573,-0.806693077087402,-0.332757592201233,-2.18021583557129,-0.854989051818848,-0.331587433815002,-2.18708753585815,-0.838756561279297,-0.369560837745667,-2.1050910949707,-0.86341381072998,-0.379124283790588,-2.10601329803467,-0.910177230834961,-0.261271119117737,-2.24386215209961,-0.602211952209473,-0.314422249794006,-2.19630002975464,-0.708305358886719,-0.353587746620178,-2.15257883071899,-0.798252105712891,-0.350739121437073,-2.14164590835571,-0.822813987731934,-0.358025193214417,-2.11808681488037,-0.789874076843262,-0.340017914772034,-2.12642955780029,-0.758309364318848,-0.200505018234253,-2.18599510192871,-0.581063270568848,-0.295480370521545,-2.14025831222534,-0.689952850341797,-0.405468702316284,-2.0376181602478,-0.853024482727051,-0.415766477584839,-2.03140735626221,-0.89315938949585,-0.400401830673218,-2.05032920837402,-0.812886714935303,-0.39470362663269,-2.05604076385498,-0.795899868011475,-0.345843911170959,-2.11144351959229,-0.746636390686035,-0.355645775794983,-2.10141658782959,-0.763283729553223,-0.445083379745483,-1.95770454406738,-0.831377983093262,-0.454502820968628,-1.95253276824951,-0.875113487243652,-0.232453107833862,-2.07189083099365,-0.557630062103271,-0.355449438095093,-2.03249979019165,-0.66803503036499,-0.443868398666382,-1.94983100891113,-0.765371322631836,-0.432422399520874,-1.94673252105713,-0.737300395965576,-0.426251173019409,-2.00262308120728, +-0.753445625305176,-0.427898168563843,-1.99480295181274,-0.778604507446289,-0.248124837875366,-1.98357486724854,-0.545983791351318,-0.375540494918823,-1.95454740524292,-0.653443336486816,-0.476800680160522,-1.86710071563721,-0.815366268157959,-0.488190412521362,-1.86239147186279,-0.85438060760498,-0.431616544723511,-1.92961263656616,-0.717416763305664,-0.438420057296753,-1.92041873931885,-0.736372470855713,-0.472363233566284,-1.86157655715942,-0.783450126647949,-0.469736814498901,-1.85938835144043,-0.769101619720459,-0.517884492874146,-1.72187662124634,-0.776749610900879,-0.532355070114136,-1.7218770980835,-0.822422504425049,-0.434819936752319,-1.83091878890991,-0.5272536277771,-0.487733602523804,-1.80212831497192,-0.623324394226074,-0.504061460494995,-1.77820634841919,-0.720614910125732,-0.492990255355835,-1.77254962921143,-0.749394416809082,-0.511112928390503,-1.71720552444458,-0.708542346954346,-0.505089044570923,-1.71932888031006,-0.684797286987305,-0.0240580141544342,-2.56236457824707,-0.708492279052734,-0.0235201418399811,-2.51203012466431,-0.801788330078125,-0.581838369369507,-1.53665351867676,-0.442527294158936,-0.546628713607788,-1.49259757995605,-0.433334827423096,-0.558287858963013,-1.51701402664185,-0.42070198059082,-0.564860105514526,-1.5103325843811,-0.436161041259766,-0.162745654582977,-2.50360012054443,-0.649944305419922,-0.16457188129425,-2.50019693374634,-0.664726257324219,-0.261461853981018,-2.48375844955444,-0.640424728393555,-0.265114426612854,-2.47911691665649,-0.657379150390625,-0.137134671211243,-2.54905080795288,-0.655697822570801,-0.141630291938782,-2.5445032119751,-0.672258377075195,-0.297715783119202,-2.43735456466675,-0.634111404418945,-0.299398064613342,-2.43430852890015,-0.649324417114258,-0.355494141578674,-2.38543844223022,-0.611942291259766,-0.35699999332428,-2.38067865371704,-0.628913879394531,-0.305931687355042,-2.33382892608643,-0.596539497375488,-0.3101726770401,-2.33186912536621,-0.610391616821289,-0.250574707984924,-2.25705671310425,-0.556432723999023,-0.257800579071045,-2.25423288345337, +-0.572468757629395,-0.180622220039368,-2.19472980499268,-0.541323661804199,-0.189242839813232,-2.19351148605347,-0.55361270904541,-0.189422369003296,-2.08367586135864,-0.509335994720459,-0.210091352462769,-2.080726146698,-0.525631427764893,-0.214182138442993,-1.98639535903931,-0.50427770614624,-0.227937459945679,-1.98739814758301,-0.517905712127686,-0.404183149337769,-1.84296035766602,-0.484091281890869,-0.420598745346069,-1.83904123306274,-0.49909782409668,-0.571253538131714,-1.57869148254395,-0.438228607177734,-0.580799341201782,-1.57422161102295,-0.452140808105469,-0.0492025762796402,-2.42349529266357,-0.866551399230957,-0.0495239645242691,-2.46752262115479,-0.795928955078125,-0.239200234413147,-2.29248762130737,-0.82902717590332,-0.251603722572327,-2.32442474365234,-0.766790390014648,-0.330352425575256,-2.05366325378418,-0.766533851623535,-0.236416459083557,-2.09023904800415,-0.677396297454834,-0.183037459850311,-2.47986602783203,-0.644015312194824,-0.204670071601868,-2.46065855026245,-0.658082962036133,-0.178541839122772,-2.45256423950195,-0.689650535583496,-0.159127414226532,-2.47299289703369,-0.660392761230469,-0.180064380168915,-2.46808958053589,-0.660196304321289,-0.173150181770325,-2.33981323242188,-0.898089408874512,-0.199817776679993,-2.3218846321106,-0.887642860412598,-0.179365813732147,-2.33068084716797,-0.908180236816406,-0.186493575572968,-2.32998895645142,-0.89361572265625,-0.00260272622108459,-2.38605165481567,-0.952536582946777,-0.0181833803653717,-2.37124824523926,-0.956480979919434,-0.00853029265999794,-2.35718441009521,-0.964105606079102,-0.00482335686683655,-2.37131595611572,-0.958991050720215,-0.213470101356506,-2.2800407409668,-0.566454887390137,-0.181535840034485,-2.24447154998779,-0.568588256835938,-0.203298687934875,-2.258056640625,-0.610424041748047,-0.225699067115784,-2.2948317527771,-0.593178749084473,-0.20364248752594,-2.27069282531738,-0.580447196960449,-0.302257180213928,-2.14803886413574,-0.84931755065918,-0.317031502723694,-2.11538553237915,-0.832245826721191,-0.307128548622131, +-2.13281583786011,-0.862915992736816,-0.309161782264709,-2.13048553466797,-0.842247009277344,-0.222221970558167,-2.22684097290039,-0.925421714782715,-0.169031739234924,-2.206383228302,-0.958685874938965,-0.0858971178531647,-2.2349534034729,-0.987179756164551,-0.144424140453339,-2.25370931625366,-0.956851959228516,-0.156924366950989,-2.23149299621582,-0.95795726776123,-0.206444501876831,-1.91315174102783,-0.486727714538574,-0.245759725570679,-1.8740758895874,-0.498995780944824,-0.204664945602417,-1.90215682983398,-0.529810905456543,-0.165682435035706,-1.93719720840454,-0.503934383392334,-0.19938063621521,-1.90884637832642,-0.50112247467041,-0.418380498886108,-1.79951238632202,-0.779140949249268,-0.439963102340698,-1.72654056549072,-0.755881309509277,-0.425347089767456,-1.77024078369141,-0.78462553024292,-0.428901433944702,-1.7626485824585,-0.769219875335693,-0.330590844154358,-1.94475555419922,-0.889060497283936,-0.255317330360413,-1.88523244857788,-0.931048393249512,-0.145444989204407,-1.93502712249756,-0.984472751617432,-0.232788681983948,-1.99460887908936,-0.947708606719971,-0.24491274356842,-1.94078540802002,-0.940012454986572,-0.463762044906616,-1.54714107513428,-0.553049564361572,-0.465143918991089,-1.56854629516602,-0.477039337158203,-0.480238676071167,-1.44492626190186,-0.646285533905029,-0.487062215805054,-1.45311689376831,-0.632599830627441,-0.0560075342655182,-2.53960132598877,-0.658411026000977,-0.0825487673282623,-2.52150011062622,-0.672696113586426,-0.0514403879642487,-2.51185750961304,-0.702455520629883,-0.0285345613956451,-2.52845907211304,-0.672599792480469,-0.0533930361270905,-2.52655601501465,-0.673879623413086,-0.138980031013489,-2.49819803237915,-0.646571159362793,-0.146376729011536,-2.48575830459595,-0.662616729736328,-0.141541123390198,-2.477126121521,-0.688052177429199,-0.128091037273407,-2.49646806716919,-0.659567832946777,-0.139875531196594,-2.49004554748535,-0.660163879394531,-0.13020533323288,-2.41221904754639,-0.834694862365723,-0.140358567237854,-2.43577146530151,-0.783684730529785,-0.282549500465393, +-2.39702558517456,-0.616170883178711,-0.274057984352112,-2.36831092834473,-0.627485275268555,-0.259544968605042,-2.37120628356934,-0.661937713623047,-0.261311173439026,-2.40106868743896,-0.635404586791992,-0.269214272499084,-2.3860034942627,-0.631686210632324,-0.274978280067444,-2.33665418624878,-0.599103927612305,-0.263935685157776,-2.32328081130981,-0.61013126373291,-0.26003897190094,-2.31451225280762,-0.639471054077148,-0.263743042945862,-2.33449506759644,-0.613602638244629,-0.265263199806213,-2.32828235626221,-0.611822128295898,-0.287453293800354,-2.24699926376343,-0.790451049804688,-0.281595826148987,-2.26830577850342,-0.743625640869141,-0.0931473970413208,-2.14740943908691,-0.51581859588623,-0.079938530921936,-2.10875463485718,-0.524331092834473,-0.104682087898254,-2.13660907745361,-0.563192367553711,-0.112033009529114,-2.16958618164063,-0.539474487304688,-0.0912343263626099,-2.14409255981445,-0.53111743927002,-0.119710206985474,-2.00284719467163,-0.50286340713501,-0.136114835739136,-1.97920560836792,-0.515279293060303,-0.12447988986969,-1.99271774291992,-0.54259204864502,-0.0939160585403442,-2.02596187591553,-0.513833045959473,-0.114798188209534,-1.99932909011841,-0.514578342437744,-0.350643754005432,-1.93712949752808,-0.715701103210449,-0.266212105751038,-1.95790863037109,-0.654568195343018,-0.468628644943237,-1.65845680236816,-0.455157279968262,-0.46708083152771,-1.61472177505493,-0.461733818054199,-0.449217557907104,-1.65258359909058,-0.494805335998535,-0.439549207687378,-1.6936354637146,-0.47654914855957,-0.455610036849976,-1.65664911270142,-0.4696044921875,-0.461899518966675,-1.60357904434204,-0.662218570709229,-0.451864004135132,-1.63307666778564,-0.571722984313965,-0.250984787940979,-2.43288850784302,-0.63124942779541,-0.254727959632874,-2.41912984848022,-0.645943641662598,-0.247378945350647,-2.41061353683472,-0.673370361328125,-0.23926317691803,-2.43227338790894,-0.644467353820801,-0.248946785926819,-2.42456912994385,-0.644877433776855,-0.22800600528717,-2.33794832229614,-0.826451301574707,-0.237891793251038, +-2.3645486831665,-0.77381420135498,-0.16371214389801,-2.36898899078369,-0.850414276123047,-0.173419594764709,-2.40700817108154,-0.787113189697266,-0.151928544044495,-2.31256008148193,-0.933073997497559,-0.118743121623993,-2.29241991043091,-0.954689979553223,-0.0546285212039948,-2.30808019638062,-0.972075462341309,-0.0875813066959381,-2.32789421081543,-0.952847480773926,-0.103824734687805,-2.31071424484253,-0.953699111938477,-0.103753268718719,-2.34631252288818,-0.938295364379883,-0.0359846651554108,-2.34225606918335,-0.964332580566406,-0.0535003244876862,-2.35748291015625,-0.951416969299316,-0.0704070627689362,-2.34327363967896,-0.952280044555664,-0.131154179573059,-2.38359117507935,-0.886526107788086,-0.15142697095871,-2.36172199249268,-0.896139144897461,-0.135291218757629,-2.36250972747803,-0.913409233093262,-0.142006993293762,-2.37397813796997,-0.889501571655273,-0.00439324975013733,-2.41996717453003,-0.928825378417969,-0.0124880373477936,-2.40194272994995,-0.942131996154785,-0.00306859612464905,-2.40348052978516,-0.943228721618652,-0.0147086679935455,-2.42782068252563,-0.910006523132324,-0.0047699511051178,-2.43201208114624,-0.907140731811523,-0.0675946772098541,-2.40047264099121,-0.915223121643066,-0.100225150585175,-2.38876342773438,-0.905807495117188,-0.0772644579410553,-2.39243602752686,-0.92324161529541,-0.0839449465274811,-2.39347362518311,-0.912298202514648,-0.151167988777161,-2.20287990570068,-0.544768333435059,-0.149579167366028,-2.19162511825562,-0.556491851806641,-0.154537320137024,-2.18500518798828,-0.584657669067383,-0.145894646644592,-2.20399284362793,-0.556408882141113,-0.146830677986145,-2.19633483886719,-0.55683422088623,-0.302550911903381,-2.1252326965332,-0.742206573486328,-0.25513231754303,-2.14166688919067,-0.691797256469727,-0.286380410194397,-2.1877293586731,-0.794415473937988,-0.256808876991272,-2.21671485900879,-0.716700553894043,-0.276629090309143,-2.10891675949097,-0.911759376525879,-0.210634827613831,-2.07831907272339,-0.954107284545898,-0.114194512367249,-2.11727094650269,-0.995687007904053, +-0.190719246864319,-2.14645576477051,-0.957749366760254,-0.200623154640198,-2.11364603042603,-0.956166744232178,-0.250123620033264,-2.17513084411621,-0.920124053955078,-0.10029661655426,-2.18282175064087,-0.99387264251709,-0.180243194103241,-2.17769861221313,-0.958610534667969,-0.284680008888245,-2.21434545516968,-0.849880218505859,-0.289589524269104,-2.1848521232605,-0.852861404418945,-0.283990502357483,-2.18939685821533,-0.876167297363281,-0.287249207496643,-2.20109939575195,-0.850706100463867,-0.187442481517792,-2.27623176574707,-0.930154800415039,-0.0708543360233307,-2.2729058265686,-0.979375839233398,-0.131977260112762,-2.27372360229492,-0.955760955810547,-0.220269799232483,-2.31054019927979,-0.878698348999023,-0.231606125831604,-2.28774785995483,-0.879189491271973,-0.221720337867737,-2.29031562805176,-0.899093627929688,-0.226036667823792,-2.30062055587769,-0.878338813781738,-0.249927163124084,-2.25790929794312,-0.876933097839355,-0.269753098487854,-2.23228073120117,-0.861396789550781,-0.255120873451233,-2.24553728103638,-0.888697624206543,-0.260046601295471,-2.24401807785034,-0.869988441467285,-0.400422811508179,-1.76531934738159,-0.478739261627197,-0.422640562057495,-1.7368597984314,-0.490218639373779,-0.394451856613159,-1.75456714630127,-0.5163254737854,-0.350326299667358,-1.79284286499023,-0.490343570709229,-0.393316984176636,-1.76146364212036,-0.490532398223877,-0.450627088546753,-1.71060228347778,-0.675804615020752,-0.431467771530151,-1.72783708572388,-0.612742900848389,-0.391393423080444,-1.84011316299438,-0.72831392288208,-0.304283857345581,-1.86959981918335,-0.631360530853271,-0.325826287269592,-1.63372707366943,-0.83582878112793,-0.106135547161102,-1.73963260650635,-0.945615291595459,-0.250840783119202,-1.77090358734131,-0.911701202392578,-0.210061192512512,-1.67303371429443,-0.892379283905029,-0.351311326026917,-1.84352111816406,-0.873424530029297,-0.156190514564514,-1.82549619674683,-0.964300155639648,-0.261622071266174,-1.83511829376221,-0.92310094833374,-0.393312215805054,-1.90604829788208,-0.778609752655029, +-0.40453314781189,-1.85811138153076,-0.785657405853271,-0.398859620094299,-1.87465620040894,-0.808461666107178,-0.399545431137085,-1.88166427612305,-0.780641555786133,-0.299303650856018,-2.04419279098511,-0.904275417327881,-0.1294886469841,-2.03777122497559,-0.994746685028076,-0.221344590187073,-2.03957843780518,-0.951858520507813,-0.335801720619202,-2.09186220169067,-0.812886238098145,-0.34586489200592,-2.05431699752808,-0.82415771484375,-0.336482644081116,-2.06456279754639,-0.848154544830322,-0.341742157936096,-2.07397890090942,-0.817220211029053,-0.357615113258362,-2.01727056503296,-0.821105003356934,-0.37720263004303,-1.96578693389893,-0.802898406982422,-0.362576127052307,-2.00045347213745,-0.834243297576904,-0.367087960243225,-1.99337482452393,-0.813740730285645,-0.479666471481323,-1.47726440429688,-0.550476551055908,-0.480830907821655,-1.5007586479187,-0.463925838470459,-0.483247518539429,-1.45801830291748,-0.611294746398926,-0.470389127731323,-1.51750421524048,-0.642655849456787,-0.479719877243042,-1.50837230682373,-0.674724102020264,-0.462759733200073,-1.5383448600769,-0.715193748474121,-0.46578574180603,-1.46246957778931,-0.692612648010254,-0.454163312911987,-1.50039339065552,-0.720452308654785,-0.464784383773804,-1.49947023391724,-0.70347261428833,-0.456078290939331,-1.67158222198486,-0.727922916412354,-0.459411382675171,-1.61648988723755,-0.726966857910156,-0.47130274772644,-1.59274578094482,-0.694319248199463,-0.00253072381019592,-2.5474066734314,-0.656798362731934,-0.00894275307655334,-2.53471803665161,-0.672056198120117,-0.00149169564247131,-2.52431631088257,-0.700559616088867,-0.00190463662147522,-2.53847646713257,-0.671987533569336,-0.0510822832584381,-2.41711187362671,-0.893245697021484,-0.00392833352088928,-2.45133447647095,-0.846920967102051,-0.00478711724281311,-2.44868183135986,-0.866727828979492,-0.103269696235657,-2.44919013977051,-0.793328285217285,-0.108014762401581,-2.49395847320557,-0.695219993591309,-0.126783490180969,-2.40710496902466,-0.852106094360352,-0.089891105890274,-2.40837383270264, +-0.863966941833496,-0.0869366228580475,-2.39980936050415,-0.889554977416992,-0.15169495344162,-2.42797470092773,-0.782023429870605,-0.1507288813591,-2.467369556427,-0.689620971679688,-0.150638699531555,-2.40434551239014,-0.829226493835449,-0.15092533826828,-2.39723300933838,-0.844936370849609,-0.163283467292786,-2.35971260070801,-0.872509002685547,-0.210795521736145,-2.38064050674438,-0.783758163452148,-0.222150444984436,-2.42979192733765,-0.681017875671387,-0.195143342018127,-2.34299564361572,-0.844207763671875,-0.192116916179657,-2.33450746536255,-0.865017890930176,-0.224836945533752,-2.33053779602051,-0.843722343444824,-0.243309617042542,-2.35567665100098,-0.77028751373291,-0.252088189125061,-2.39943790435791,-0.669894218444824,-0.23866331577301,-2.28485536575317,-0.849736213684082,-0.23452627658844,-2.33008527755737,-0.823554039001465,-0.232626557350159,-2.32167339324951,-0.840717315673828,-0.269782662391663,-2.28489208221436,-0.755222320556641,-0.261278748512268,-2.3331470489502,-0.649869918823242,-0.287886261940002,-2.24132823944092,-0.805088043212891,-0.266047120094299,-2.25600051879883,-0.815349578857422,-0.265560746192932,-2.25074195861816,-0.835195541381836,-0.274712204933167,-2.25842809677124,-0.732820510864258,-0.245569825172424,-2.30083131790161,-0.631217002868652,-0.287385582923889,-2.23368310928345,-0.788068771362305,-0.289966225624084,-2.22560930252075,-0.805597305297852,-0.291952729225159,-2.1809868812561,-0.81943416595459,-0.246842980384827,-2.16495943069458,-0.699178695678711,-0.163289666175842,-2.20682573318481,-0.591655731201172,-0.298770546913147,-2.14000558853149,-0.778356552124023,-0.306111931800842,-2.13686513900757,-0.80363655090332,-0.313171982765198,-2.12214946746826,-0.757869720458984,-0.255738854408264,-2.13047313690186,-0.687736511230469,-0.1469966173172,-2.17671918869019,-0.57708740234375,-0.347428917884827,-2.04467487335205,-0.79334831237793,-0.316290497779846,-2.10213661193848,-0.744582176208496,-0.330623269081116,-2.09350395202637,-0.76163911819458,-0.240139603614807,-2.01803207397461, +-0.66299295425415,-0.0956026315689087,-2.05763339996338,-0.549993515014648,-0.370574593544006,-1.93349313735962,-0.734180450439453,-0.34568464756012,-1.99230766296387,-0.750546455383301,-0.365954041481018,-1.98915719985962,-0.777254581451416,-0.278645157814026,-1.92222690582275,-0.645516872406006,-0.1547771692276,-1.95481300354004,-0.5374436378479,-0.363575577735901,-1.89651584625244,-0.712506294250488,-0.38323187828064,-1.88915014266968,-0.733520030975342,-0.405222654342651,-1.83368444442749,-0.760184288024902,-0.368720769882202,-1.79364395141602,-0.619007110595703,-0.302276372909546,-1.82419443130493,-0.522308826446533,-0.418281316757202,-1.76904296875,-0.712288379669189,-0.428418874740601,-1.76487445831299,-0.744487285614014,-0.456159353256226,-1.70695447921753,-0.69712495803833,-0.0158912241458893,-2.47045516967773,-0.792520523071289,-0.0143329203128815,-2.51626014709473,-0.700325965881348,-0.496178388595581,-1.51603317260742,-0.42047643661499,-0.496734380722046,-1.48744440078735,-0.431804656982422,-0.475671529769897,-1.53933572769165,-0.443116188049316,-0.486364126205444,-1.50992012023926,-0.436059951782227,-0.150996804237366,-2.48720979690552,-0.647692680358887,-0.150334537029266,-2.47949028015137,-0.661934852600098,-0.227719902992249,-2.45865058898926,-0.635186195373535,-0.224389672279358,-2.44651794433594,-0.650847434997559,-0.109286427497864,-2.52158641815186,-0.650403022766113,-0.10821259021759,-2.50919485092163,-0.665846824645996,-0.264093995094299,-2.41917324066162,-0.627704620361328,-0.257469773292542,-2.41174793243408,-0.641424179077148,-0.284631371498108,-2.36133193969727,-0.605108261108398,-0.26991331577301,-2.34939956665039,-0.620234489440918,-0.255508065223694,-2.31893634796143,-0.59097957611084,-0.247849106788635,-2.31232118606567,-0.603425979614258,-0.170456528663635,-2.23179388046265,-0.545299530029297,-0.16022264957428,-2.22108697891235,-0.560469627380371,-0.133949398994446,-2.18620157241821,-0.537592887878418,-0.135052800178528,-2.18399620056152,-0.54938793182373,-0.0839730501174927,-2.0701060295105, +-0.502746105194092,-0.0810080766677856,-2.06575202941895,-0.51799201965332,-0.154019117355347,-1.9626030921936,-0.497977733612061,-0.148623704910278,-1.95959854125977,-0.510159969329834,-0.30654501914978,-1.83794212341309,-0.480165004730225,-0.298444509506226,-1.83286380767822,-0.494343757629395,-0.483752012252808,-1.57855129241943,-0.43817138671875,-0.471439123153687,-1.57497453689575,-0.452295303344727,-0.0035344660282135,-2.56158638000488,-0.65314769744873,-0.0115391314029694,-2.5565390586853,-0.652600288391113,-0.00315728783607483,-2.55510711669922,-0.652226448059082,-0.033907562494278,-2.55708646774292,-0.65272045135498,-0.0642634928226471,-2.56803703308105,-0.653336524963379,-0.0882436335086823,-2.54837799072266,-0.651339530944824,-0.059249073266983,-2.55506801605225,-0.653066635131836,-0.119763493537903,-2.54413890838623,-0.645783424377441,-0.131548523902893,-2.51763486862183,-0.640217781066895,-0.113208472728729,-2.53411245346069,-0.645145416259766,-0.143726050853729,-2.50917625427246,-0.643274307250977,-0.146197438240051,-2.49576616287231,-0.645022392272949,-0.140717148780823,-2.50434970855713,-0.642284393310547,-0.156888663768768,-2.49839973449707,-0.641836166381836,-0.166577517986298,-2.49302673339844,-0.637870788574219,-0.153522670269012,-2.49343061447144,-0.642120361328125,-0.196952044963837,-2.49904346466064,-0.63533878326416,-0.21461021900177,-2.48286533355713,-0.634627342224121,-0.18926876783371,-2.49027681350708,-0.636569023132324,-0.245396256446838,-2.4762806892395,-0.6280517578125,-0.250357270240784,-2.45210409164429,-0.623831748962402,-0.235599160194397,-2.46851396560669,-0.628467559814453,-0.264215111732483,-2.44233417510986,-0.626898765563965,-0.26185667514801,-2.42930603027344,-0.628582000732422,-0.256789803504944,-2.43853998184204,-0.626419067382813,-0.282382607460022,-2.43147325515747,-0.623292922973633,-0.286924004554749,-2.4210033416748,-0.614583015441895,-0.272863030433655,-2.42583465576172,-0.622710227966309,-0.317896485328674,-2.4175009727478,-0.609930992126465,-0.306671738624573,-2.39022922515869, +-0.605022430419922,-0.29971182346344,-2.40792942047119,-0.60963249206543,-0.325166344642639,-2.37912178039551,-0.597630500793457,-0.295535683631897,-2.35442066192627,-0.592877388000488,-0.304244637489319,-2.37134027481079,-0.598136901855469,-0.297964692115784,-2.34540367126465,-0.59328556060791,-0.277249932289124,-2.33225679397583,-0.594618797302246,-0.286432862281799,-2.34204816818237,-0.593759536743164,-0.279459595680237,-2.32708501815796,-0.591207504272461,-0.251306176185608,-2.31033658981323,-0.578642845153809,-0.266377091407776,-2.32337188720703,-0.588924407958984,-0.251157402992249,-2.29519891738892,-0.570920944213867,-0.206659436225891,-2.26182174682617,-0.553930282592773,-0.22966730594635,-2.28777503967285,-0.566028594970703,-0.207032799720764,-2.2456259727478,-0.549393653869629,-0.170099377632141,-2.22076368331909,-0.54002571105957,-0.186473488807678,-2.23929071426392,-0.544563293457031,-0.172603726387024,-2.20916843414307,-0.545072555541992,-0.153562664985657,-2.19587516784668,-0.544418334960938,-0.160518765449524,-2.20658159255981,-0.542845726013184,-0.153998970985413,-2.19048929214478,-0.53781795501709,-0.124606728553772,-2.17622995376587,-0.523786544799805,-0.141482472419739,-2.18826150894165,-0.535737991333008,-0.128783822059631,-2.156822681427,-0.521559715270996,-0.0947743654251099,-2.11670684814453,-0.51045036315918,-0.10588800907135,-2.15172386169434,-0.516250610351563,-0.122687101364136,-2.07757759094238,-0.507823467254639,-0.112076997756958,-2.03385829925537,-0.497921466827393,-0.0974947214126587,-2.07395792007446,-0.502834320068359,-0.147996187210083,-2.00935792922974,-0.50327730178833,-0.149924039840698,-1.98581027984619,-0.503167629241943,-0.131314516067505,-2.00612449645996,-0.501044750213623,-0.177839517593384,-1.9754114151001,-0.496259212493896,-0.183749437332153,-1.94793462753296,-0.485562801361084,-0.163682699203491,-1.96843385696411,-0.49474048614502,-0.240912199020386,-1.92422437667847,-0.488401889801025,-0.269307851791382,-1.88179206848145,-0.485502243041992,-0.220103979110718,-1.91846036911011, +-0.485064029693604,-0.349322080612183,-1.84146213531494,-0.481039524078369,-0.376554250717163,-1.80034208297729,-0.472002983093262,-0.324361562728882,-1.84028816223145,-0.478307723999023,-0.43425440788269,-1.77034139633179,-0.476019382476807,-0.441996335983276,-1.74233102798462,-0.477752208709717,-0.414962530136108,-1.76813364028931,-0.475249767303467,-0.473528623580933,-1.69720506668091,-0.457811832427979,-0.514242887496948,-1.66043472290039,-0.4552903175354,-0.498869180679321,-1.61754131317139,-0.447718620300293,-0.489322423934937,-1.65946245193481,-0.453037738800049,-0.527982473373413,-1.5789942741394,-0.437791347503662,-0.507066965103149,-1.54581451416016,-0.423294544219971,-0.503902196884155,-1.57928895950317,-0.435938358306885,-0.527769804000854,-1.51864814758301,-0.415422916412354,-0.513765573501587,-1.49697065353394,-0.412285327911377,-0.510773897171021,-1.51831197738647,-0.415329933166504,-0.0414120256900787,-2.57836055755615,-0.655733108520508,-0.0217472687363625,-2.56982421875,-0.653783798217773,-0.0127746164798737,-2.57360172271729,-0.655695915222168,-0.0246311649680138,-2.580322265625,-0.663393974304199,-0.0235029831528664,-2.57790851593018,-0.656074523925781,-0.105024516582489,-2.56387376785278,-0.65245532989502,-0.0722333490848541,-2.57365083694458,-0.654758453369141,-0.142884433269501,-2.53140163421631,-0.644740104675293,-0.128807663917542,-2.54903125762939,-0.648073196411133,-0.149259209632874,-2.50142765045166,-0.646428108215332,-0.146627604961395,-2.51330995559692,-0.645540237426758,-0.178541839122772,-2.50696468353271,-0.639470100402832,-0.160059571266174,-2.50239896774292,-0.643374443054199,-0.231390595436096,-2.49789953231812,-0.635920524597168,-0.204205632209778,-2.50583028793335,-0.637816429138184,-0.269162774085999,-2.46295690536499,-0.627859115600586,-0.254459023475647,-2.48207759857178,-0.631339073181152,-0.273821473121643,-2.43438148498535,-0.630355834960938,-0.271154046058655,-2.44518852233887,-0.62923526763916,-0.315036416053772,-2.43675565719604,-0.620193481445313,-0.291374802589417, +-2.43586587905884,-0.626248359680176,-0.345001816749573,-2.40513038635254,-0.609305381774902,-0.334350228309631,-2.42451620101929,-0.615015983581543,-0.330352425575256,-2.36456441879272,-0.595907211303711,-0.343646645545959,-2.38435459136963,-0.60187816619873,-0.292341828346252,-2.33545398712158,-0.595574378967285,-0.308294892311096,-2.34749698638916,-0.595233917236328,-0.295407891273499,-2.32442569732666,-0.584372520446777,-0.294175744056702,-2.33139944076538,-0.591949462890625,-0.251427292823792,-2.27673006057739,-0.560833930969238,-0.276636719703674,-2.3035306930542,-0.572817802429199,-0.210293412208557,-2.23163318634033,-0.545220375061035,-0.2310711145401,-2.2528715133667,-0.551042556762695,-0.169254422187805,-2.19819641113281,-0.545511245727539,-0.18603527545929,-2.21225690841675,-0.545588493347168,-0.168402314186096,-2.18549728393555,-0.527692794799805,-0.167995572090149,-2.19318389892578,-0.537861824035645,-0.151270151138306,-2.12739133834839,-0.51445198059082,-0.158182859420776,-2.16292810440063,-0.520528793334961,-0.165025472640991,-2.03955268859863,-0.501127243041992,-0.156378507614136,-2.08177804946899,-0.506624221801758,-0.174440622329712,-1.99528217315674,-0.505691528320313,-0.167906522750854,-2.01269054412842,-0.503646373748779,-0.228829145431519,-1.96319484710693,-0.489840030670166,-0.195979356765747,-1.98190021514893,-0.498230934143066,-0.317904233932495,-1.88800573348999,-0.488247394561768,-0.267874479293823,-1.93010473251343,-0.488780975341797,-0.430311918258667,-1.80228471755981,-0.473883628845215,-0.378069639205933,-1.84307289123535,-0.48051643371582,-0.473889112472534,-1.74857378005981,-0.479495525360107,-0.455221891403198,-1.77235698699951,-0.476961612701416,-0.527932405471802,-1.70029211044312,-0.459206104278564,-0.544437170028687,-1.61964559555054,-0.448292255401611,-0.53957724571228,-1.66219472885132,-0.453934192657471,-0.554812669754028,-1.54493999481201,-0.423103332519531,-0.55205225944519,-1.57955646514893,-0.436007499694824,-0.532963514328003,-1.49974918365479,-0.413385391235352,-0.544766664505005, +-1.51899433135986,-0.415493011474609,-0.0279442369937897,-2.45125770568848,-0.903614044189453,-0.0245768204331398,-2.43628072738647,-0.881955146789551,-0.463243246078491,-1.39784145355225,-0.685450553894043,-0.452838659286499,-1.55885934829712,-0.734324932098389,-0.46087908744812,-1.5789794921875,-0.72318172454834,-0.434481382369995,-1.6826376914978,-0.766983032226563,-0.449430227279663,-1.69731855392456,-0.739985466003418,-0.412703275680542,-1.82146835327148,-0.796272754669189,-0.410527944564819,-1.83103561401367,-0.784890651702881,-0.381702065467834,-1.93921804428101,-0.821137428283691,-0.385966897010803,-1.93537998199463,-0.78860330581665,-0.351150155067444,-2.02876329421997,-0.841058731079102,-0.350744843482971,-2.03651857376099,-0.825003147125244,-0.321260094642639,-2.10049533843994,-0.854583263397217,-0.326877236366272,-2.10406541824341,-0.820208549499512,-0.29717218875885,-2.15703058242798,-0.868982315063477,-0.295148491859436,-2.16665697097778,-0.852630615234375,-0.270057320594788,-2.21929359436035,-0.881962776184082,-0.27842104434967,-2.22355222702026,-0.854068756103516,-0.241849541664124,-2.26502370834351,-0.893807411193848,-0.24000608921051,-2.27298307418823,-0.879367828369141,-0.200605988502502,-2.31208848953247,-0.903470039367676,-0.21131432056427,-2.31651163101196,-0.882243156433105,-0.162028908729553,-2.3443808555603,-0.911468505859375,-0.161635041236877,-2.35038805007935,-0.89896297454834,-0.106420695781708,-2.37848615646362,-0.917399406433105,-0.116575360298157,-2.38701438903809,-0.894591331481934,-0.036020427942276,-2.41742849349976,-0.914676666259766,-0.0533744394779205,-2.40352010726929,-0.925764083862305,-0.0509931147098541,-2.40914297103882,-0.915778160095215,-0.02445188164711,-2.46982002258301,-0.865737915039063,-0.0272456705570221,-2.45687103271484,-0.886857986450195,-0.0216580927371979,-2.43689489364624,-0.857253074645996,-0.422695875167847,-1.46441125869751,-0.738374710083008,-0.421980619430542,-1.52991485595703,-0.752892017364502,-0.439513921737671,-1.51398611068726,-0.737400531768799,-0.398197770118713, +-1.82565021514893,-0.826837539672852,-0.408028364181519,-1.73897886276245,-0.808925151824951,-0.412578344345093,-1.79359102249146,-0.80656099319458,-0.340619683265686,-2.03052377700806,-0.866048336029053,-0.357740044593811,-1.98542881011963,-0.856669425964355,-0.352546334266663,-2.01282548904419,-0.852328300476074,-0.288557648658752,-2.15959692001343,-0.889805793762207,-0.303010582923889,-2.12532567977905,-0.88270092010498,-0.299195885658264,-2.14321613311768,-0.878787040710449,-0.227397561073303,-2.266676902771,-0.909729957580566,-0.246291756629944,-2.23934650421143,-0.904219627380371,-0.242817521095276,-2.25381469726563,-0.901643753051758,-0.14358252286911,-2.3433895111084,-0.923671722412109,-0.1693354845047,-2.32450914382935,-0.91944408416748,-0.163551509380341,-2.33553647994995,-0.917708396911621,-0.0394422113895416,-2.39796209335327,-0.935338020324707,-0.0706569254398346,-2.38422584533691,-0.93168830871582,-0.059786468744278,-2.39464616775513,-0.930444717407227,-0.390102982521057,-1.4002251625061,-0.746145725250244,-0.391230225563049,-1.5676646232605,-0.778822422027588,-0.39694356918335,-1.64918422698975,-0.796462535858154,-0.382008194923401,-1.89760446548462,-0.843739986419678,-0.389797806739807,-1.85933399200439,-0.837283611297607,-0.369434952735901,-1.94332361221313,-0.851995468139648,-0.319826722145081,-2.07898187637329,-0.877496242523193,-0.329803109169006,-2.05362272262573,-0.873402118682861,-0.310389161109924,-2.10337972640991,-0.881438732147217,-0.267406105995178,-2.20145177841187,-0.899565696716309,-0.278170228004456,-2.17991018295288,-0.895973205566406,-0.255622506141663,-2.2215723991394,-0.902917861938477,-0.198563277721405,-2.29770803451538,-0.916006088256836,-0.213106274604797,-2.28199005126953,-0.913816452026367,-0.182499587535858,-2.31189632415771,-0.918369293212891,-0.104828059673309,-2.36348056793213,-0.929876327514648,-0.123953998088837,-2.3530216217041,-0.927509307861328,-0.0618106424808502,-2.37182569503784,-0.940762519836426,-0.0863629877567291,-2.37384462356567,-0.931382179260254,-0.0273176729679108, +-2.38520574569702,-0.946127891540527,-0.0381347239017487,-2.37119054794312,-0.949752807617188,-0.0168043673038483,-2.32456731796265,-0.97467041015625,-0.0126139223575592,-2.34157228469849,-0.969337463378906,-0.0246669352054596,-2.28837299346924,-0.985231399536133,-0.0208527222275734,-2.30634021759033,-0.980096817016602,-0.0316340029239655,-2.25568866729736,-0.994296073913574,-0.0281950533390045,-2.27220392227173,-0.989725112915039,-0.0387784540653229,-2.21392965316772,-1.00473690032959,-0.0352331697940826,-2.236732006073,-0.999672889709473,-0.0454413145780563,-2.15379047393799,-1.01054000854492,-0.0420743525028229,-2.18576383590698,-1.00833606719971,-0.0530888140201569,-2.08111667633057,-1.01151180267334,-0.0491310656070709,-2.11951971054077,-1.01137971878052,-0.0613447725772858,-1.98677444458008,-1.00920438766479,-0.0572248995304108,-2.03684854507446,-1.01157760620117,-0.0685078203678131,-1.87047576904297,-0.990476608276367,-0.0705319941043854,-1.80607795715332,-0.974995613098145,-0.00552096962928772,-2.44321060180664,-0.987460136413574,-0.00550380349159241,-2.44385528564453,-0.943899154663086,-0.0245954170823097,-2.57563972473145,-0.67961311340332,0.00524124503135681,-2.56267166137695,-0.653668403625488,-0.00340810418128967,-2.56675815582275,-0.654489517211914,-0.0179153978824615,-2.54357147216797,-0.657260894775391,-0.0199033468961716,-2.55738496780396,-0.652665138244629,-0.0157834589481354,-2.53129482269287,-0.672120094299316,-0.00202909111976624,-2.47669410705566,-0.791831016540527,-0.0245596468448639,-2.41383409500122,-0.928511619567871,-0.0245238691568375,-2.42330312728882,-0.91264533996582,-0.0241467133164406,-2.40025997161865,-0.939366340637207,0.0381763875484467,-2.43774223327637,-0.986196517944336,0.0350955426692963,-2.57563972473145,-0.67961311340332,0.0139273107051849,-2.56675815582275,-0.654489517211914,0.0284155309200287,-2.54357147216797,-0.657260894775391,0.0304039418697357,-2.55738496780396,-0.652665138244629,0.0262854993343353,-2.53129482269287,-0.672120094299316,0.0125482976436615,-2.47669410705566, +-0.791831016540527,0.035059779882431,-2.41383409500122,-0.928511619567871,0.0350240170955658,-2.42330312728882,-0.91264533996582,0.0346482694149017,-2.40025997161865,-0.939366340637207,0.559420824050903,-1.47145795822144,-0.43238639831543,0.511372089385986,-1.46112394332886,-0.428313255310059,0.527543067932129,-1.46919870376587,-0.411222457885742,0.545183420181274,-1.47251510620117,-0.414657115936279,-0.548920869827271,-1.47145795822144,-0.43238639831543,-0.500871419906616,-1.46112394332886,-0.428313255310059,-0.517042398452759,-1.46919870376587,-0.411222457885742,-0.534683465957642,-1.47251510620117,-0.414657115936279,0.517621755599976,-1.44168615341187,-0.410997867584229,0.486477375030518,-1.3889012336731,-0.641970634460449,0.399045348167419,-1.34138441085815,-0.735852718353271,-0.38734495639801,-1.34341239929199,-0.736280918121338,-0.463725805282593,-1.36932897567749,-0.686220169067383,-0.50713849067688,-1.44168615341187,-0.410997867584229,-0.475671529769897,-1.40957832336426,-0.644150257110596,-0.475976705551147,-1.3889012336731,-0.641970634460449,0.473745346069336,-1.39784145355225,-0.685450553894043,0.474228382110596,-1.36932897567749,-0.686220169067383,0.166047394275665,-1.51886892318726,-0.827264308929443,0.00524124503135681,-1.92945194244385,-1.00408792495728,0.0757854878902435,-1.93101978302002,-1.00202989578247,-0.0652667582035065,-1.93101978302002,-1.00202989578247,0,-0.345246315002441,-0.00825023651123047,0,-0.265622138977051,-0.00206470489501953,-1.10871769720688e-06,-1.62175416946411,-0.200486183166504,0,-1.69481754302979,-0.159814834594727,0,-1.58573865890503,-0.387930870056152,-1.12850830191746e-06,-1.61586904525757,-0.198664665222168,0,-1.64934921264648,-0.187406539916992,-1.01122714113444e-06,-1.62937641143799,-0.302401542663574,-1.06536026578397e-06,-1.63601112365723,-0.196146011352539,-1.10883411252871e-06,-1.63136959075928,-0.234468460083008,0,-0.872443199157715,0.148219108581543,0,-1.8157525062561,-0.662173271179199,0,-1.64687252044678,-0.0602779388427734,0,-1.68011713027954,-0.511748313903809, +0,-0.92073917388916,0.0553350448608398,-3.88045955332927e-05,-1.99744510650635,-0.915884971618652,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,-0.0675684958696365,-0.00715541839599609,0,-0.00186079740524292,-0.000196456909179688,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,-0.00012476509436965,-1.38467407226563,-3.06125068664551,-0.000273022975306958,-1.55497169494629,-3.08271646499634,-0.000264305504970253,-1.38253211975098,-3.12297677993774,-0.00033256397000514,-1.9698486328125,-1.51926803588867,0,-0.234329462051392,-0.00289440155029297,0,-0.591861724853516,-0.00321197509765625,0,-0.685393810272217,0.00345897674560547,0,-0.819171905517578,0.0245609283447266,0,-0.126773118972778,-0.00395488739013672,0,-0.22624659538269,-0.00764179229736328,0,-0.205984234809875,-0.00503826141357422,0,-0.191318035125732,-0.0118656158447266,0,-0.158449649810791,-0.0154581069946289,0,-0.223806381225586,-0.00150489807128906,0,-0.243331670761108,-0.00106716156005859,0,-0.121915102005005,-0.0129117965698242,-0.000307206209981814,-1.85740375518799,-2.16040420532227,-0.000342211336828768,-1.80262756347656,-2.65491580963135,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,1.35821755975485e-06,-1.29526424407959,-1.39444851875305,0.000227391166845337,-1.893385887146,-2.61878371238708,1.80401548310563e-06,-0.958293914794922,-1.71031606197357,0,-0.22776985168457,-1.40582156181335,0,-0.00089263916015625,-0.0785905122756958,0,-1.1746244430542,-1.53676176071167,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06, +0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0.0272300243377686,-0.289109945297241,-0.00523662567138672,0.035254955291748,-0.224714756011963,0.00253677368164063,0.103327959775925,-1.62073659896851,-0.192342758178711,0.0696056038141251,-1.71307802200317,-0.142245292663574,0.506405353546143,-1.37859344482422,-0.0944461822509766,0.505756378173828,-1.39645433425903,-0.0999259948730469,0.526254653930664,-1.4486403465271,-0.0593442916870117,0.518559694290161,-1.41764640808105,-0.0562887191772461,0.458729982376099,-1.53219699859619,-0.0777692794799805,0.478796124458313,-1.48904705047607,-0.07781982421875,0.386241793632507,-1.58009767532349,-0.0949821472167969,0.421626329421997,-1.54767417907715,-0.105381965637207,0.287667393684387,-1.60101222991943,-0.121519088745117,0.332844495773315,-1.58520555496216,-0.137509346008301,0.171712219715118,-1.6348705291748,-0.143174171447754,0.213511139154434,-1.60598516464233,-0.172289848327637,0.508149027824402,-1.44962978363037,-0.056971549987793,0.497015476226807,-1.48472595214844,-0.0571098327636719,0.503018856048584,-1.38248825073242,-0.109850883483887,0.506140232086182,-1.37804508209229,-0.0982770919799805,0.507233858108521,-1.37290525436401,-0.118715286254883,0.50638747215271,-1.37617349624634,-0.102538108825684,0.511841297149658,-1.36572694778442,-0.116994857788086,0.506594657897949,-1.37554740905762,-0.0997838973999023,0.513044357299805,-1.36326265335083,-0.110360145568848,0.506930112838745,-1.37617349624634,-0.0953960418701172,0.512697458267212,-1.40999269485474,-0.0574722290039063,0.516760349273682,-1.36726093292236,-0.100436210632324,0.50558340549469,-1.44457769393921,-0.0540590286254883,0.507992267608643,-1.37791872024536,-0.109267234802246,0.465573668479919,-1.40750551223755,-0.154330253601074,0.477053880691528,-1.48222017288208,-0.0749568939208984,0.404207468032837,-1.46375894546509,-0.20516300201416,0.421988844871521,-1.54143238067627,-0.102349281311035,0.320184767246246,-1.51646089553833,-0.260271072387695,0.334234178066254,-1.57769060134888,-0.133684158325195,0.213057518005371, +-1.55400896072388,-0.322085380554199,0.216380774974823,-1.59757328033447,-0.167951583862305,0.099747896194458,-1.58071708679199,-0.365749359130859,0.102760568261147,-1.61014318466187,-0.189743995666504,0.0920915305614471,-1.64629507064819,-0.179289817810059,0.203114986419678,-1.63262891769409,-0.15946102142334,0.32517945766449,-1.61229228973389,-0.126914024353027,0.418557047843933,-1.57534837722778,-0.096217155456543,0.476748824119568,-1.51455545425415,-0.073155403137207,0.510388255119324,-1.47042846679688,-0.0541191101074219,0.519747495651245,-1.42988634109497,-0.056060791015625,0.505583047866821,-1.38522052764893,-0.0964698791503906,0.505532264709473,-1.38081121444702,-0.103179931640625,0.506850957870483,-1.37478399276733,-0.109835624694824,0.508354663848877,-1.37065553665161,-0.107742309570313,0.509074926376343,-1.36989068984985,-0.102218627929688,0.517626285552979,-1.39039278030396,-0.0751333236694336,0.514582753181458,-1.41389226913452,-0.0755786895751953,0.481306910514832,-1.45259046554565,-0.107653617858887,0.425945281982422,-1.51504135131836,-0.146698951721191,0.339243650436401,-1.56437063217163,-0.191489219665527,0.230329692363739,-1.59750699996948,-0.240633010864258,0.11005026102066,-1.62192583084106,-0.278242111206055,0.100501984357834,-1.63480281829834,-0.187894821166992,0.212402254343033,-1.6207160949707,-0.167274475097656,0.333191394805908,-1.59886837005615,-0.132949829101563,0.423297643661499,-1.55922985076904,-0.100300788879395,0.480090498924255,-1.49901723861694,-0.0748176574707031,0.510573148727417,-1.45755863189697,-0.0552654266357422,0.519758224487305,-1.42217445373535,-0.0558414459228516,0.506664514541626,-1.38118410110474,-0.0950689315795898,0.50622034072876,-1.37921190261841,-0.0998907089233398,0.506511926651001,-1.37564706802368,-0.105060577392578,0.507123708724976,-1.37381839752197,-0.102567672729492,0.507572174072266,-1.373939037323,-0.0977668762207031,0.518384695053101,-1.40458393096924,-0.0634527206420898,0.512493252754211,-1.43621587753296,-0.0619382858276367,0.482177138328552,-1.47447824478149, +-0.0872154235839844,0.427218556404114,-1.53562641143799,-0.118578910827637,0.33988344669342,-1.57915210723877,-0.15472412109375,0.224069803953171,-1.60577487945557,-0.194526672363281,0.106311902403831,-1.62383699417114,-0.221573829650879,0.0681949406862259,-0.857470512390137,0.147575378417969,0.163125693798065,-0.905281543731689,0.11067008972168,0.312274575233459,-0.974218845367432,0.134605407714844,0.395905613899231,-0.970556259155273,0.166638374328613,0.343582272529602,-0.862083435058594,0.0656108856201172,0.264072179794312,-0.750239849090576,-0.0432519912719727,0.272677898406982,-0.821620464324951,-0.115176200866699,0.46434211730957,-1.04356241226196,-0.0452365875244141,0.437483072280884,-1.15456533432007,-0.11068058013916,0.491536378860474,-1.29812622070313,-0.167751312255859,0.610656261444092,-1.42702722549438,-0.193604469299316,0.734255075454712,-1.51779365539551,-0.222850799560547,0.748378992080688,-1.58624744415283,-0.291605949401855,0.593321323394775,-1.65006971359253,-0.397189140319824,0.070909708738327,-1.81165742874146,-0.659370422363281,0.14085453748703,-1.80044031143188,-0.649075508117676,0.190779447555542,-1.78021240234375,-0.623008728027344,0.248047351837158,-1.73917055130005,-0.579841613769531,0.368417501449585,-1.69889879226685,-0.505602836608887,0.0376257598400116,-1.57145977020264,-0.0567512512207031,0.148005127906799,-1.5007119178772,-0.0728597640991211,0.268303215503693,-1.5102915763855,-0.0643949508666992,0.309150695800781,-1.48725128173828,-0.0428228378295898,0.409210681915283,-1.44870471954346,-0.0451440811157227,0.434995770454407,-1.41963672637939,-0.0317249298095703,0.491837024688721,-1.36590480804443,-0.037663459777832,0.512934446334839,-1.30426597595215,-0.0777425765991211,0.481329679489136,-1.28655576705933,-0.100139617919922,0.49332857131958,-1.32794666290283,-0.126497268676758,0.535154104232788,-1.38768720626831,-0.143045425415039,0.560547351837158,-1.43207025527954,-0.15113639831543,0.569409370422363,-1.46405363082886,-0.171244621276855,0.521848440170288,-1.48930406570435,-0.22453498840332, +0.435825347900391,-1.51727151870728,-0.296788215637207,0.35156774520874,-1.57211256027222,-0.366572380065918,0.26878809928894,-1.62925624847412,-0.420634269714355,0.181224882602692,-1.66623258590698,-0.458891868591309,0.0870640873908997,-1.68037939071655,-0.493206024169922,0.0113929510116577,-0.890589237213135,0.0321884155273438,0.0421109199523926,-0.802156925201416,0.0296783447265625,0.175848305225372,-0.821361064910889,0.0898036956787109,0.289865612983704,-0.824050903320313,0.13973331451416,0.285181283950806,-0.659733772277832,0.128419876098633,0.312048196792603,-0.597060680389404,0.115898132324219,0.506675004959106,-0.741679191589355,0.130519866943359,0.566311597824097,-1.00192451477051,0.0553932189941406,0.933670997619629,-1.74364185333252,-0.448775291442871,0.965077877044678,-1.64459180831909,-0.32298755645752,0.758341789245605,-1.50240230560303,-0.286276817321777,0.508465766906738,-1.29737043380737,-0.256021499633789,0.502855777740479,-1.12483644485474,-0.074432373046875,0.0647709965705872,-2.00209140777588,-0.91748046875,0.134943783283234,-2.01146221160889,-0.901249885559082,0.150391340255737,-2.00282764434814,-0.903640747070313,0.18719482421875,-1.97986316680908,-0.881082534790039,0.332846641540527,-1.92799758911133,-0.780350685119629,0.658695220947266,-1.84436511993408,-0.604065895080566,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,5.7220458984375e-06,-0.000223517417907715,0.000306129455566406,0,2.98023223876953e-06,0,0.00188469886779785,0.000725746154785156,0.00400066375732422,0,6.07967376708984e-06,0,0.00951874256134033,-0.0154564380645752,0.00300979614257813,0,4.58955764770508e-06,0,0.00603783130645752,-0.0191738605499268,0.000716209411621094, +0,4.58955764770508e-06,0,-0.00367319583892822,-0.0104725360870361,-0.001007080078125,-0.000241547822952271,-0.000535786151885986,-5.7220458984375e-05,-0.00930759310722351,-0.0408460199832916,-0.00432491302490234,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0.000254631042480469,-0.0102641582489014,0.014063835144043,0,7.62939453125e-06,0,0.00784873962402344,0.000216484069824219,0.0139083862304688,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0.311310052871704,-1.47004222869873,-2.75872850418091,0.557971477508545,-1.68538379669189,-2.56926774978638,0.399086475372314,-1.3643741607666,-2.11728143692017,0.665570020675659,-1.87301731109619,-1.91624593734741,0.57880711555481,-1.20617294311523,-1.53619432449341,0.893352270126343,-1.70970058441162,-1.4435396194458,0.681117534637451,-0.831171035766602,-1.0405900478363,0.980639457702637,-1.37412929534912,-0.933096408843994,0.607425212860107,-0.456451416015625,-0.607409477233887,0.886559963226318,-0.95015287399292,-0.609193801879883,0.160778999328613,-0.039031982421875,-0.0577678382396698,0.58652925491333,-0.372584819793701,-0.118378162384033,0.472238063812256,-0.247886657714844,-0.0226563215255737,0.645425319671631,-1.03671741485596,-1.26568579673767,1.00818920135498,-1.61954879760742,-1.16418170928955,0.361837863922119,-0.140706062316895,-0.224008977413177,0.69842004776001,-0.547140598297119,-0.266054391860962,0.464400172233582,-1.43711185455322,-2.76825523376465,0.585177183151245,-1.52583980560303,-2.16712188720703,0.819594621658325,-1.36881637573242,-1.56335735321045,0.952382564544678,-1.18956661224365,-1.28405427932739,1.0733494758606,-0.983113288879395,-1.00371265411377,0.983211040496826,-0.614725112915039,-0.623082637786865,0.752860546112061,-0.234424114227295,-0.30646276473999,0.65910530090332,-0.12826681137085,-0.149155378341675, +0.306241989135742,-0.114137172698975,-0.0261518955230713,0.224023938179016,-0.309411764144897,0.099766731262207,0.164644122123718,-0.387879610061646,0.0653352737426758,0.132618427276611,-0.462002515792847,0.0350408554077148,0.227491617202759,-0.470334529876709,0.071955680847168,0.145220398902893,-0.394004821777344,0.0419559478759766,0.172088861465454,-0.377188920974731,0.0562610626220703,0.152676582336426,-0.266440391540527,0.0457944869995117,0.142242312431335,-0.246972560882568,0.0397186279296875,0.0600389838218689,-0.226599931716919,0.0144433975219727,0.0512325763702393,-0.248493194580078,0.0120325088500977,0.23327374458313,-0.463016033172607,0.07513427734375,0.217972755432129,-0.280113220214844,0.102156639099121,0.360255241394043,-0.567933797836304,0.172901153564453,0.56063985824585,-0.845776081085205,0.252148628234863,0.758938550949097,-1.06503629684448,0.268401145935059,0.487354040145874,-1.07646703720093,-0.0879287719726563,0.563394784927368,-1.40122747421265,-0.329755783081055,0.894501209259033,-1.64483022689819,-0.410342216491699,1.13337302207947,-1.78386354446411,-0.494786262512207,0.970154047012329,-1.92428207397461,-0.664769172668457,0.643112182617188,-2.02415657043457,-0.85634708404541,0.389208912849426,-2.00183773040771,-1.11042499542236,0.203945279121399,-2.00347805023193,-1.2996826171875,0.189351081848145,-2.00477409362793,-1.38472938537598,0.172582268714905,-2.02106952667236,-1.43827629089355,0.0988535284996033,-2.00767135620117,-1.49466896057129,-0.00268265604972839,-0.557145833969116,-0.0148839950561523,-0.00853419303894043,-0.642755508422852,-0.00468921661376953,-0.0383565127849579,-0.631732225418091,-0.00773239135742188,-0.0488003790378571,-0.627033948898315,-0.0192174911499023,0.0186896026134491,-0.435100317001343,-0.00969791412353516,0.0310168117284775,-0.509102821350098,-0.00376796722412109,-0.000992149114608765,-0.306608438491821,-0.00655269622802734,0.00127232074737549,-0.262789726257324,-0.00314617156982422,-0.0054023265838623,-0.201164484024048,-0.00301456451416016,-0.00629165768623352,-0.119051456451416, +-0.00189781188964844,0.00814551115036011,-0.196057796478271,-0.000718116760253906,0.0085071325302124,-0.132160902023315,0.000199317932128906,0.0523182153701782,-0.257115125656128,0.00691986083984375,0.0531671643257141,-0.219704151153564,0.00763702392578125,0.0776678323745728,-0.322345972061157,0.0146713256835938,0.105131030082703,-0.279566287994385,0.0249662399291992,0.0653927326202393,-0.531166076660156,0.00631904602050781,0.0947864055633545,-0.455690145492554,0.0177574157714844,0.0634995698928833,-0.699768304824829,0.00108718872070313,0.112667441368103,-0.67302417755127,0.0148715972900391,0.00397038459777832,-0.596905946731567,-0.0121288299560547,0.0879217386245728,-0.747063636779785,0.0373411178588867,-0.0310307145118713,-0.594784736633301,-0.00304508209228516,-0.0461187362670898,-0.593764543533325,-0.0188198089599609,0.0371155738830566,-0.661890745162964,-0.00623512268066406,0.0872284173965454,-0.687890529632568,0.0180339813232422,0.000603973865509033,-0.573636293411255,-0.011754035949707,0.0274312198162079,-0.443860054016113,-0.00736618041992188,0.00567471981048584,-0.289869785308838,-0.00480270385742188,-0.00707435607910156,-0.169851064682007,-0.00242805480957031,0.0085684061050415,-0.170045614242554,-8.96453857421875e-05,0.0521309971809387,-0.237288951873779,0.00708866119384766,0.0840935707092285,-0.30222749710083,0.0172967910766602,0.0728535652160645,-0.503834009170532,0.00937652587890625,0.0805623531341553,-0.699510335922241,0.00643730163574219,0.0514470338821411,-0.685673952102661,-9.1552734375e-05,0.0105031132698059,-0.627605199813843,-0.00611686706542969,-0.0430278182029724,-0.600927114486694,-0.0145702362060547,-0.046629786491394,-0.62714958190918,-0.0155296325683594,-0.0444639921188354,-0.626466751098633,-0.0120649337768555,-0.0386841297149658,-0.601360559463501,-0.0100278854370117,0.020988404750824,-0.640076160430908,0.00217533111572266,0.0663241147994995,-0.692752122879028,0.00694942474365234,0.0953176021575928,-0.690339326858521,0.0108299255371094,0.0819301605224609,-0.485124111175537,0.0126361846923828, +0.0943261384963989,-0.287436723709106,0.0210399627685547,0.0526483058929443,-0.226389169692993,0.00735759735107422,0.00919228792190552,-0.154557466506958,0.000185012817382813,-0.00844788551330566,-0.160892248153687,-0.00248050689697266,0.0049954354763031,-0.2753746509552,-0.00406837463378906,0.0317771136760712,-0.460147619247437,-0.00596332550048828,-0.00276657938957214,-0.603924751281738,-0.00930213928222656,-0.00564119219779968,-0.810729503631592,0.0109367370605469,0.010878324508667,-0.115904569625854,-0.000308990478515625,0.0505262017250061,-0.225566625595093,0.00742721557617188,0.0460558533668518,-0.251270771026611,0.00811767578125,0.0203835368156433,-0.180119752883911,-0.00269031524658203,0.130262136459351,-0.250982999801636,0.0344963073730469,0.117203116416931,-0.264907598495483,0.0294351577758789,0.111932158470154,-0.426084756851196,0.0248937606811523,0.131405830383301,-0.406061887741089,0.0336265563964844,0.0608456134796143,-0.608410596847534,0.00267505645751953,0.0676313638687134,-0.625106811523438,0.00355339050292969,0.0771239995956421,-0.621979951858521,0.00477313995361328,0.0874186754226685,-0.60453987121582,0.00545597076416016,0.0998126268386841,-0.57511830329895,0.00758171081542969,0.116072773933411,-0.524996995925903,0.015141487121582,0.131808876991272,-0.640952587127686,0.0178756713867188,0.162731766700745,-0.578700542449951,0.0267677307128906,0.146711945533752,-0.693309307098389,0.0388212203979492,0.158196806907654,-0.56566047668457,0.0302753448486328,0.194528341293335,-0.778332233428955,0.0749988555908203,0.177550554275513,-0.703984260559082,0.0459461212158203,0.251292943954468,-0.428557634353638,0.0930509567260742,0.230906248092651,-0.300698041915894,0.114376068115234,0.220122814178467,-0.322892665863037,0.0963869094848633,0.18686830997467,-0.495674610137939,0.0480070114135742,0.146865844726563,-0.583432197570801,0.0179777145385742,0.120862007141113,-0.633777379989624,0.00953102111816406,0.104140996932983,-0.655753612518311,0.00841236114501953,0.0884997844696045,-0.671105146408081,0.00714015960693359, +0.0731779336929321,-0.676270008087158,0.00406742095947266,0.0600472688674927,-0.668689489364624,0.000741958618164063,0.0151241421699524,-0.182002425193787,0.00272941589355469,0.0691462159156799,-0.191280364990234,0.0184650421142578,0.131246984004974,-0.227696657180786,0.0319385528564453,-0.0104820728302002,-0.143344879150391,-0.00631332397460938,0.0300316214561462,-0.137685894966125,0.00679588317871094,0.122569382190704,-0.224180102348328,0.034820556640625,-0.0215273201465607,-0.113903939723969,-0.0104265213012695,0.00540071725845337,-0.0854355096817017,0.000159263610839844,0.120506525039673,-0.237103700637817,0.0448083877563477,0.0286930799484253,-0.202290654182434,0.00506782531738281,0.0828684568405151,-0.204612493515015,0.0218124389648438,0.147936582565308,-0.244086742401123,0.0387210845947266,0.147562026977539,-0.234616279602051,0.106233596801758,0.158270239830017,-0.284891605377197,0.118942260742188,0.0673373937606812,-0.280551195144653,0.100757598876953,0.0892486572265625,-0.326348781585693,0.117233276367188,0.0747053623199463,-0.288139820098877,0.0782613754272461,0.0932611227035522,-0.350808620452881,0.105485916137695,0.172606706619263,-0.297538042068481,0.0669422149658203,0.195152044296265,-0.360593557357788,0.0928153991699219,0.170495986938477,-0.261215209960938,0.045659065246582,0.19591236114502,-0.284198045730591,0.053715705871582,0.137622356414795,-0.38218355178833,0.132214546203613,0.128893852233887,-0.389925956726074,0.122551918029785,0.168029427528381,-0.347061157226563,0.131134986877441,0.201952219009399,-0.346852540969849,0.0922470092773438,0.207456588745117,-0.379873752593994,0.112969398498535,0.203339219093323,-0.392673492431641,0.112551689147949,0.227312445640564,-0.330513715744019,0.0780172348022461,0.194306612014771,-0.365772008895874,0.0674972534179688,0.0351266860961914,-0.21860146522522,0.00453281402587891,0.0766744613647461,-0.217672109603882,0.0197305679321289,0.152783632278442,-0.260560989379883,0.0436792373657227,0.206383228302002,-0.315973043441772,0.0601367950439453,0.223394393920898, +-0.350304365158081,0.0760536193847656,0.15489661693573,-0.218375205993652,0.114500999450684,0.0642454624176025,-0.250146150588989,0.096247673034668,0.0495756864547729,-0.166253328323364,0.0396766662597656,0.0514037609100342,-0.131304740905762,0.0188493728637695,-0.0187934935092926,-0.0876688361167908,-0.00923824310302734,-0.00500452518463135,-0.0405062437057495,-0.00189971923828125,0.104166507720947,-0.0869297981262207,0.0988502502441406,0.327897310256958,-0.407947778701782,0.240638732910156,0.193901300430298,-0.188121795654297,0.233660697937012,0.385794639587402,-0.632519960403442,0.393777847290039,0.216851234436035,-0.289504051208496,0.246317863464355,0.319397687911987,-0.786203622817993,0.352060317993164,0.0658631324768066,-0.250435590744019,0.187273025512695,0.218132495880127,-0.649493217468262,0.222615242004395,0.47413444519043,-0.823430061340332,0.264838218688965,0.195023059844971,-0.408905267715454,0.0390539169311523,0.075047492980957,-0.204198837280273,0.0490245819091797,0.180158615112305,-0.340601444244385,0.027623176574707,0.0809950828552246,-0.164288282394409,0.0243315696716309,0.156894683837891,-0.245121717453003,0.0406484603881836,0.0627593994140625,-0.10584568977356,0.0242228507995605,0.0965843200683594,-0.124382019042969,0.0402336120605469,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0.390628814697266,-0.689579010009766,0.072293758392334,0.265620708465576,-0.381097555160522,0.031773567199707,0.314924240112305,-0.530473470687866,0.0231552124023438,0.210036754608154,-0.24000096321106,0.0597119331359863,0.441776275634766,-1.00437498092651,-0.104071617126465,0.383724689483643,-0.504174709320068,0.000916481018066406,0.421486377716064,-0.685399055480957,-0.0531711578369141,0.500318050384521,-0.950218677520752,-0.0374631881713867,0.535407543182373,-0.839344024658203,-0.151315689086914,0.50340747833252,-0.613498210906982,-0.0530242919921875,0.57610559463501,-1.16193294525146,-0.21411657333374,0.566573143005371,-1.33132553100586,-0.284521102905273,0.753838062286377,-1.64014053344727, +-0.505455493927002,0.722852230072021,-1.45807313919067,-0.434245586395264,0.695161819458008,-1.20287799835205,-0.349555969238281,0.654019355773926,-0.90457010269165,-0.251780033111572,0.984099388122559,-1.77357816696167,-0.603168487548828,0.96042013168335,-1.76396369934082,-0.900123596191406,0.905142784118652,-1.56784725189209,-0.762971878051758,1.03726959228516,-1.90045070648193,-0.760265350341797,0.863416194915771,-1.91670036315918,-1.11629343032837,0.480020999908447,-1.33935546875,-1.78665351867676,0.70038104057312,-1.45418453216553,-1.87110137939453,0.797189474105835,-1.76222324371338,-1.70314264297485,0.824606418609619,-2.05985641479492,-0.958740234375,0.786473751068115,-1.9995813369751,-1.31399488449097,0.685316324234009,-2.1100549697876,-1.14533996582031,0.707818746566772,-2.02564811706543,-1.5424690246582,0.34148108959198,-1.43560791015625,-2.44822835922241,0.550424456596375,-1.51925277709961,-2.45597982406616,0.626924514770508,-1.80679225921631,-2.23980093002319,0.59907329082489,-1.98759651184082,-1.8127875328064,0.538907408714294,-2.0779447555542,-1.40184211730957,0.402417182922363,-2.0146427154541,-1.68256950378418,0.526535034179688,-1.86235332489014,-2.16954231262207,0.244297325611115,-1.46276760101318,-2.96601057052612,0.396831035614014,-1.4072961807251,-2.97470331192017,0.414663314819336,-1.63684844970703,-2.80690956115723,0.161326229572296,-1.43237018585205,-3.02951717376709,0.277011752128601,-1.3934211730957,-3.09329986572266,0.306702136993408,-1.59047603607178,-2.94984579086304,0.227923214435577,-1.92103672027588,-2.02840900421143,0.324612140655518,-1.95427227020264,-1.90071964263916,0.380039572715759,-1.81952285766602,-2.39076232910156,0.251722037792206,-1.77902603149414,-2.54883766174316,0.0839579999446869,-1.40030193328857,-3.0656886100769,0.155557632446289,-1.38625431060791,-3.12034749984741,0.168861746788025,-1.56811428070068,-3.04951095581055,0.141850918531418,-1.88834095001221,-2.11876201629639,0.174595355987549,-1.80395698547363,-2.62525844573975,0.819419384002686,-1.33154916763306,-0.64400053024292, +0.791994571685791,-1.10152292251587,-0.502535820007324,0.673769950866699,-0.634902000427246,-0.818537712097168,1.12115669250488,-0.802596092224121,-0.787765502929688,0.962212085723877,-1.13670015335083,-0.754668235778809,0.753247261047363,-0.885473728179932,-0.357609272003174,0.500725746154785,-0.287711143493652,-0.402092099189758,0.826515674591064,-0.455940723419189,-0.470124244689941,0.804205417633057,-0.742880344390869,-0.438016176223755,0.690831661224365,-0.667111396789551,-0.205788612365723,0.614380836486816,-0.680253505706787,-0.123053550720215,0.607129573822021,-0.47371244430542,-0.0718131065368652,0.547168731689453,-0.490113735198975,-0.013042688369751,0.446206569671631,-0.44077467918396,0.0344033241271973,0.329115390777588,-0.351394653320313,0.0588397979736328,0.508635520935059,-0.321572780609131,0.0113368034362793,0.459177017211914,-0.324519395828247,0.05265212059021,0.363309860229492,-0.282415866851807,0.0843765735626221,0.241524219512939,-0.207595825195313,0.0795361995697021,0.117108345031738,-0.113481163978577,0.0521836280822754,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06, +0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06, +0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0.0145664215087891,0.00078737735748291,0.00715696811676025,0.0108070373535156,0.00149989128112793,0.00509929656982422,0.0357599258422852,0.00060272216796875,0.0140547752380371,0.0279569625854492,0.00299978256225586,0.00951564311981201,0.0665245056152344,-0.00497627258300781,0.0204346179962158,0.055267333984375,0.000657558441162109,0.0132745504379272,0.10570240020752,-0.0193893909454346,0.0279868450015783,0.0923728942871094,-0.00960707664489746,0.0143791437149048,0.149989128112793,-0.0409989356994629,0.0358432531356812,0.134835243225098,-0.0252108573913574,0.0136259794235229,0.192259311676025,-0.0689835548400879,0.0461731553077698,0.168575286865234,-0.0415878295898438,0.015323281288147,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0.0160751342773438,0.00155329704284668,0.00731873512268066,0.0392971038818359,0.0025634765625,0.0133341550827026,0.0719242095947266,-0.00236201286315918,0.0178400278091431,0.11332893371582,-0.0184066295623779,0.0205500535666943,0.158910751342773,-0.0400207042694092,0.0284181237220764,0.198283195495605,-0.0632095336914063,0.0358630418777466,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0.00217628479003906,0.00030207633972168,0.0012664794921875,0.00699234008789063,0.00078272819519043,0.00308811664581299,0.017237663269043,0.000955104827880859,0.00504076480865479,0.0350465774536133,-0.0014495849609375,0.00783681869506836,0.061525821685791,-0.0112595558166504,0.0104606226086617,0.118242263793945,-0.0335478782653809,0.0129258036613464,0.25495719909668,-0.116696119308472,0.0614889860153198,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06, +0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0.00433158874511719,0.00052642822265625,0.00228595733642578,0.0129222869873047,0.00137472152709961,0.0051501989364624,0.0298786163330078,0.00095367431640625,0.00814986228942871,0.0581293106079102,-0.00590372085571289,0.0118870139122009,0.100044250488281,-0.0195496082305908,0.0143730789422989,0.161769866943359,-0.0464401245117188,0.0169217586517334,0.235573291778564,-0.0921218395233154,0.0552029609680176,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0.0141973495483398,0.00181269645690918,0.00650334358215332,0.0354089736938477,0.00312948226928711,0.0116628408432007,0.0663681030273438,-0.000463962554931641,0.0156466960906982,0.107053756713867,-0.013885498046875,0.0163320004940033,0.151091575622559,-0.0338013172149658,0.0176717936992645,0.188564300537109,-0.05350661277771,0.022343635559082,0.2417893409729,-0.0890395641326904,0.0336172580718994,0.244795322418213,-0.0924632549285889,0.0277427434921265,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0.00724601745605469,0.00096285343170166,0.00358986854553223,0.0199728012084961,0.00238633155822754,0.00721263885498047,0.0426368713378906,0.00103139877319336,0.0107473134994507,0.0764369964599609,-0.00725865364074707,0.0133327841758728,0.120611190795898,-0.0214309692382813,0.0144066866487265,0.168686866760254, +-0.0456023216247559,0.0146524906158447,0.213740348815918,-0.0705840587615967,0.027428925037384,0.224656581878662,-0.0784988403320313,0.0383224487304688,0.159158706665039,-0.0649688243865967,0.0533881187438965,0.116750717163086,-0.0359864234924316,0.0388069152832031,0.0793328285217285,-0.0193085670471191,0.027463436126709,0.0495338439941406,-0.00671076774597168,0.019488513469696,0.0263051986694336,-0.00197911262512207,0.0114564895629883,0.00976371765136719,-9.00030136108398e-05,0.00497829914093018,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0.0125417709350586,-0.00144803524017334,0.00650477409362793,0.0251035690307617,-0.0041351318359375,0.0119849443435669,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0.0410661697387695,-0.012176513671875,0.01877161860466,0.0634217262268066,-0.0203461647033691,0.0258220434188843,0,7.62939453125e-06,0,0.0370769500732422,-0.0148605108261108,0.0202001333236694,0.0903334617614746,-0.0338456630706787,0.0364541411399841,0.0746378898620605,-0.0306228399276733,0.0350357294082642,0.0762662887573242,-0.0336593389511108,0.0349012613296509,0.0975193977355957,-0.0427398681640625,0.0419412851333618,0.0898890495300293,-0.0366989374160767,0.039141058921814,0.0517868995666504,-0.0217026472091675,0.027382493019104,0.0505385398864746,-0.0231872797012329,0.0262688398361206,0.116832733154297,-0.0531296730041504,0.0473637580871582,0.0896964073181152,-0.0368103981018066,0.0376968383789063,0,-1.54972076416016e-06,0,0.164937973022461,-0.08428955078125,0.0623519420623779,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0.358603000640869,-0.210361003875732,0.0723836421966553,0.260848522186279,-0.167388916015625, +0.0809013843536377,0.129260540008545,-0.0911972522735596,0.0550162792205811,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0.245378017425537,-0.0909867286682129,0.0100287199020386,0.383453369140625,-0.180980205535889,0.0260912179946899,0.41049337387085,-0.217001438140869,0.0538948774337769,0.322449207305908,-0.142366170883179,0.0555891990661621,0.333118438720703,-0.140530347824097,0.0436110496520996,0,4.29153442382813e-06,0,0.00907421112060547,0.00039219856262207,0.00162923336029053,0,6.19888305664063e-06,0,0.00623464584350586,0.00107717514038086,0.00177288055419922,0.00128889083862305,0.00051569938659668,0.000295639038085938,0.002716064453125,0.00072932243347168,0.00124549865722656,0.000721931457519531,0.000425577163696289,0.000322818756103516,0.000834465026855469,0.00026094913482666,0.000532150268554688,0.000238895416259766,0.00015556812286377,0.000167369842529297,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0.000118732452392578,0.000112771987915039,5.14984130859375e-05,5.24520874023438e-05,4.87565994262695e-05,3.91006469726563e-05,4.76837158203125e-06,4.52995300292969e-06,2.38418579101563e-06,3.33786010742188e-06,6.07967376708984e-06,2.86102294921875e-06,0,2.98023223876953e-06,1.9073486328125e-06,2.14576721191406e-05,2.12192535400391e-05,9.5367431640625e-06,1.33514404296875e-05,1.68085098266602e-05,1.1444091796875e-05,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06, +0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.147392272949219,-0.0288944244384766,-0.202075302600861,0.239797115325928,-0.0846681594848633,-0.423667907714844,0.285392999649048,-0.166020393371582,-0.64807003736496,0.300125122070313,-0.274911880493164,-0.876344203948975,0.291042804718018,-0.395524978637695,-1.09972190856934,0.162638664245605,-0.50534725189209,-1.34933030605316,-0.0112228393554688,-0.611283302307129,-1.5643150806427,-0.184719562530518,-0.772280693054199,-1.64631271362305,-0.205299019813538,-0.967265129089355,-1.56282472610474,-0.156915009021759,-1.10126304626465,-1.49779558181763,-0.0932832956314087,-1.19295787811279,-1.45954513549805,-0.030264288187027,-1.25501918792725,-1.42377758026123,-0.0059744119644165,-1.28619289398193,-1.40265393257141,0.173703670501709,-0.0350284576416016,-0.144991815090179,0.302762508392334,-0.115859031677246,-0.327416837215424,0.378468990325928,-0.229336738586426,-0.524648427963257,0.385486364364624,-0.417571067810059,-0.747655630111694,0.457935571670532,-0.541269302368164,-0.979405879974365,0.438549041748047,-0.79615592956543,-1.26130342483521,0.320786237716675,-0.976748466491699,-1.46158623695374,0.195880055427551,-1.11182594299316,-1.57768702507019,-0.0611135959625244,-1.38212108612061,-1.74932742118835,-0.24594521522522,-1.62950325012207,-1.99845290184021,-0.277312040328979,-1.75545692443848,-2.27699732780457,-0.248583257198334, +-1.81564617156982,-2.49001717567444,-0.199260205030441,-1.84811592102051,-2.64244627952576,-0.145463496446609,-1.86635875701904,-2.63048577308655,0.0868384838104248,-0.0117006301879883,-0.253911644220352,0.13222336769104,-0.0381002426147461,-0.495590925216675,0.106887578964233,-0.0605792999267578,-0.735898435115814,-0.073458194732666,-0.0783233642578125,-1.00212621688843,-0.198465466499329,-0.203241348266602,-1.10652732849121,-0.168620824813843,-0.437338829040527,-1.07296240329742,-0.197451591491699,-0.671842575073242,-1.06808400154114,-0.215762853622437,-0.827595710754395,-1.18886530399323,-0.175194323062897,-0.922651290893555,-1.35926222801208,-0.113756060600281,-0.964791297912598,-1.52407777309418,-0.0438057482242584,-0.965768814086914,-1.66245055198669,0.0363643169403076,-0.0111360549926758,-0.149410367012024,0.0536825656890869,-0.0274696350097656,-0.293490350246429,0.052847146987915,-0.0528049468994141,-0.424974918365479,0.0518374443054199,-0.0945072174072266,-0.548102200031281,0.0250072479248047,-0.135459899902344,-0.696895241737366,-0.00138580799102783,-0.160867691040039,-0.867420315742493,-0.0118754506111145,-0.18242073059082,-1.02611994743347,0.00198787450790405,-0.200067520141602,-1.21487736701965,0.00572982430458069,-0.216302871704102,-1.3317985534668,0.00283065438270569,-0.224418640136719,-1.38276100158691,0.000967130064964294,-0.00103759765625,-0.0976827144622803,0.11542797088623,-0.0215244293212891,-0.237562417984009,0.180213928222656,-0.060765266418457,-0.475517988204956,0.206685304641724,-0.117620468139648,-0.711203753948212,0.195072650909424,-0.176529884338379,-0.945312082767487,0.0905716419219971,-0.231302261352539,-1.19655406475067,-0.0818345546722412,-0.306580543518066,-1.42792212963104,-0.25357711315155,-0.492117881774902,-1.48773431777954,-0.0917408466339111,-0.789875030517578,-1.34467482566833,0.061470627784729,-0.952649116516113,-1.37430953979492,0.146497905254364,-1.06160545349121,-1.45345377922058,0.135782837867737,-1.12559223175049,-1.50115990638733,0.0645109340548515,-1.16457271575928,-1.52930355072021, +0.0309189558029175,-0.305977821350098,0.00055694580078125,0.0491638779640198,-0.325115442276001,0.00540924072265625,0.0639855265617371,-0.386169672012329,0.00868415832519531,0.0578598380088806,-0.481689214706421,0.00433731079101563,0.0494347810745239,-0.550196647644043,-0.00034332275390625,0.0447431802749634,-0.610331773757935,-0.00377273559570313,0.0164520740509033,-0.322360515594482,-0.00393772125244141,-0.00256800651550293,-0.367094755172729,-0.0102291107177734,-0.016987144947052,-0.426444292068481,-0.0153360366821289,-0.0258232355117798,-0.471643209457397,-0.0192775726318359,-0.0275691151618958,-0.487113475799561,-0.0206193923950195,-0.0132892727851868,-0.481447696685791,-0.016728401184082,0.0105039477348328,-0.516607284545898,-0.0117673873901367,0.0271680355072021,-0.578380107879639,-0.00882434844970703,0.038957953453064,-0.637375116348267,-0.00643253326416016,0.0164704322814941,-0.392427682876587,-0.00616550445556641,0.0284935235977173,-0.428327083587646,-0.00363349914550781,0.0360962748527527,-0.483410596847534,-0.00301551818847656,0.0383652448654175,-0.55341911315918,-0.00441265106201172,0.0059850811958313,-0.374288320541382,-0.00843715667724609,0,-0.954240322113037,-0.112764358520508,0,-1.33191394805908,-0.416210174560547,0.0202004611492157,-0.95658016204834,-0.108538627624512,0.273460149765015,-0.885105133056641,-0.109764099121094,0.369969606399536,-0.927592277526855,-0.0722284317016602,0.114089369773865,-0.89965295791626,-0.125219345092773,0.145157098770142,-0.858946800231934,-0.135931015014648,0.093264102935791,-0.936429977416992,-0.11249828338623,0.0671074986457825,-0.94859790802002,-0.107620239257813,0.0412197113037109,-0.953202724456787,-0.106471061706543,0.384130954742432,-0.934737682342529,-0.0738592147827148,0.351472139358521,-0.917859077453613,-0.114276885986328,0.372673749923706,-0.927650928497314,-0.124228477478027,0.462098121643066,-0.944911479949951,-0.10236644744873,0.508829593658447,-0.997403621673584,-0.102795600891113,0.42656397819519,-1.03251171112061,-0.181417465209961,0.352743864059448, +-1.07110404968262,-0.24378490447998,0.271385192871094,-1.14459705352783,-0.307889938354492,0.206671416759491,-1.22261047363281,-0.339401245117188,0.136223614215851,-1.28414392471313,-0.371273994445801,0.0663161277770996,-1.32073450088501,-0.400851249694824,-1.14329304778948e-06,-1.57653617858887,-0.211650848388672,0.106202960014343,-1.57675457000732,-0.201694488525391,0.216622650623322,-1.56068897247314,-0.178979873657227,0.33302366733551,-1.53888702392578,-0.137530326843262,0.411669075489044,-1.50476169586182,-0.102201461791992,0.463413000106812,-1.44761657714844,-0.0759687423706055,0.495611190795898,-1.4095892906189,-0.059636116027832,0.49384880065918,-1.37769556045532,-0.0777177810668945,0.488005638122559,-1.35250568389893,-0.113802909851074,0.487205743789673,-1.34478282928467,-0.127165794372559,0.495217800140381,-1.34111881256104,-0.134433746337891,0.497855424880981,-1.33952236175537,-0.131831169128418,0.493540048599243,-1.33947610855103,-0.122880935668945,0.489624738693237,-1.37724781036377,-0.0776271820068359,0.487185597419739,-1.41016864776611,-0.0613012313842773,0.459187507629395,-1.44497156143188,-0.0797319412231445,0.41175788640976,-1.5046968460083,-0.102960586547852,0.332474529743195,-1.54800081253052,-0.134465217590332,0.216572195291519,-1.57447195053101,-0.171354293823242,0.103177309036255,-1.58736181259155,-0.192460060119629,-1.15120928967372e-06,-1.59304571151733,-0.199528694152832,0,-1.26727390289307,-0.152872085571289,0.0914479345083237,-1.26886987686157,-0.143680572509766,0.183132022619247,-1.26189231872559,-0.127608299255371,0.276890814304352,-1.2536768913269,-0.097773551940918,0.330671072006226,-1.23209095001221,-0.0778312683105469,0.35818088054657,-1.19421625137329,-0.0657405853271484,0.3762366771698,-1.17076778411865,-0.0579671859741211,0.375930070877075,-1.14294862747192,-0.0794219970703125,0.393905639648438,-1.13321399688721,-0.0984029769897461,0.404439926147461,-1.13183736801147,-0.112302780151367,0.417263984680176,-1.13333368301392,-0.123941421508789,0.427533864974976,-1.1393871307373,-0.125186920166016, +0.437411546707153,-1.14967632293701,-0.117573738098145,0.448729276657104,-1.20155143737793,-0.077509880065918,0.451619505882263,-1.25102186203003,-0.06048583984375,0.427457332611084,-1.30464315414429,-0.0823726654052734,0.38844633102417,-1.38537740707397,-0.107476234436035,0.319329679012299,-1.44587182998657,-0.1417236328125,0.211199283599854,-1.48769378662109,-0.183061599731445,0.101464167237282,-1.51110649108887,-0.209996223449707,-1.13526039058343e-06,-1.52029514312744,-0.219282150268555,0,-0.625032186508179,0.0249032974243164,0.0156207382678986,-0.627282857894897,0.0313825607299805,0.15313720703125,-0.562549114227295,-0.0399689674377441,0.177148580551147,-0.559065341949463,-0.0743598937988281,0.100808382034302,-0.593385457992554,0.00552558898925781,0.128403186798096,-0.576536655426025,-0.0175371170043945,0.0733442306518555,-0.613590955734253,0.022003173828125,0.0528593063354492,-0.622456312179565,0.0309610366821289,0.032367467880249,-0.625454664230347,0.0339059829711914,0.197329759597778,-0.559808731079102,-0.104384422302246,0.215595006942749,-0.578295230865479,-0.160298347473145,0.239985227584839,-0.631513595581055,-0.187189102172852,0.294612884521484,-0.698030948638916,-0.221489429473877,0.472409248352051,-0.752105712890625,-0.218582630157471,0.45166540145874,-0.816563606262207,-0.253585338592529,0.359342932701111,-0.893240928649902,-0.306578636169434,0.255728125572205,-0.967921257019043,-0.383691787719727,0.157780587673187,-1.0200252532959,-0.443425178527832,0.0775837898254395,-1.06636142730713,-0.48333740234375,0.0308326780796051,-1.10109043121338,-0.508516311645508,0,-1.11393547058105,-0.521498680114746,0,-0.0803725719451904,0.0199999809265137,0.00416883826255798,-0.0803208351135254,0.0228512287139893,0.0418229103088379,-0.0676331520080566,-0.0216073989868164,0.0490789413452148,-0.0696978569030762,-0.039454460144043,0.027148962020874,-0.072819709777832,0.00492405891418457,0.0347418785095215,-0.0699586868286133,-0.00833392143249512,0.0197079181671143,-0.0771775245666504,0.0158095359802246,0.0141766667366028, +-0.0789628028869629,0.0213851928710938,0.00866031646728516,-0.0795669555664063,0.0233380794525146,0.0578243732452393,-0.0743470191955566,-0.0569677352905273,0.0715863704681396,-0.0938701629638672,-0.0969033241271973,0.0806057453155518,-0.112067222595215,-0.133758306503296,0.0851612091064453,-0.135238647460938,-0.186796426773071,0.0863375663757324,-0.1788330078125,-0.249385118484497,0.085019588470459,-0.237619400024414,-0.321080684661865,0.0828790664672852,-0.304394721984863,-0.380617618560791,0.0736607313156128,-0.381802558898926,-0.432967662811279,0.0608580708503723,-0.444297790527344,-0.463699817657471,0.0416448712348938,-0.49303150177002,-0.48638916015625,0.0208984613418579,-0.527684211730957,-0.51156759262085,0,-0.542167663574219,-0.528231143951416,0,-0.00591754913330078,-0.15850442647934,0,-0.00591850280761719,-0.158504545688629,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.15850442647934,0,-0.00591754913330078,-0.158504545688629,0,-0.00591850280761719,-0.15850442647934,0,-0.00591850280761719,-0.15850430727005,0,-0.00591754913330078,-0.15850430727005,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591850280761719,-0.158504486083984,0.00130105018615723,-0.00614356994628906,-0.165478229522705,0.00177311897277832,-0.00642108917236328,-0.170103788375854,0.00181019306182861,-0.00671768188476563,-0.173963665962219,0.00162160396575928,-0.00671577453613281,-0.177491664886475,0.00116795301437378,-0.00661373138427734,-0.180501222610474,0.000603288412094116,-0.00664234161376953,-0.182587385177612,0,-0.00675106048583984,-0.183351635932922,0,6.19888305664063e-06,0,0.0259513854980469,-0.00633144378662109,-0.0481162965297699,0.036067008972168,-0.0126562118530273,-0.0769106149673462,0.0413000583648682,-0.0218038558959961,-0.10959780216217,0.0475389957427979,-0.052983283996582,-0.145081281661987,0.0572304725646973,-0.0764741897583008,-0.244582533836365, +0.0631885528564453,-0.112884521484375,-0.326589107513428,0.0603275299072266,-0.156073570251465,-0.397768259048462,0.0523036122322083,-0.186903953552246,-0.451659440994263,0.0369722843170166,-0.209490776062012,-0.494720935821533,0.018904983997345,-0.227828979492188,-0.5312739610672,0,-0.237490653991699,-0.55023992061615,0,-0.306283712387085,0.0577750205993652,0.0104430615901947,-0.307292222976685,0.0635929107666016,0.0216654539108276,-0.30619215965271,0.0652179718017578,0.0354338884353638,-0.304776191711426,0.0619702339172363,0.0492146015167236,-0.299888610839844,0.0522980690002441,0.0677597522735596,-0.28855299949646,0.0337867736816406,0.0865216255187988,-0.279698133468628,0.0100789070129395,0.103721857070923,-0.272834777832031,-0.013155460357666,0.120302200317383,-0.273486614227295,-0.0462045669555664,0.136934757232666,-0.278936862945557,-0.0747108459472656,0.151462554931641,-0.296911716461182,-0.131115436553955,0.16125226020813,-0.322004318237305,-0.177340984344482,0.163743495941162,-0.354578018188477,-0.245415687561035,0.154793500900269,-0.408967971801758,-0.32562780380249,0.140340089797974,-0.479620933532715,-0.399084091186523,0.130325317382813,-0.564449310302734,-0.447021961212158,0.112825155258179,-0.660270690917969,-0.486994743347168,0.0878851413726807,-0.735620498657227,-0.504144668579102,0.0564806461334229,-0.793303489685059,-0.515061855316162,0.0277853906154633,-0.832740783691406,-0.531881332397461,0,-0.847414970397949,-0.546758651733398,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,-0.0272302031517029, +-0.289108753204346,-0.00523567199707031,-0.0352553129196167,-0.224713563919067,0.00253677368164063,-0.103330075740814,-1.62073659896851,-0.192342758178711,-0.0696069747209549,-1.7130765914917,-0.142246246337891,-0.506403923034668,-1.37859344482422,-0.094447135925293,-0.505755186080933,-1.39645576477051,-0.0999259948730469,-0.526255130767822,-1.4486403465271,-0.0593442916870117,-0.518558502197266,-1.41764736175537,-0.0562877655029297,-0.458729147911072,-1.53219699859619,-0.0777692794799805,-0.478795766830444,-1.48904657363892,-0.0778217315673828,-0.386241316795349,-1.58009767532349,-0.0949811935424805,-0.421627283096313,-1.54767370223999,-0.105381965637207,-0.28766793012619,-1.60101270675659,-0.121519088745117,-0.3328458070755,-1.58520555496216,-0.137508392333984,-0.17171323299408,-1.63486909866333,-0.143173217773438,-0.213513106107712,-1.60598611831665,-0.17228889465332,-0.508148431777954,-1.44963026046753,-0.056971549987793,-0.497014760971069,-1.48472595214844,-0.0571088790893555,-0.503017663955688,-1.38248777389526,-0.109851837158203,-0.506139755249023,-1.37804508209229,-0.0982770919799805,-0.507231712341309,-1.37290525436401,-0.118716239929199,-0.506386756896973,-1.37617349624634,-0.102538108825684,-0.511838912963867,-1.36572694778442,-0.116995811462402,-0.50659441947937,-1.37554740905762,-0.0997858047485352,-0.513044357299805,-1.36326313018799,-0.110360145568848,-0.506929874420166,-1.37617349624634,-0.0953969955444336,-0.512696981430054,-1.40999221801758,-0.0574722290039063,-0.51676082611084,-1.36726093292236,-0.100436210632324,-0.505583524703979,-1.44457769393921,-0.0540590286254883,-0.507991909980774,-1.37792062759399,-0.109268188476563,-0.465574026107788,-1.40750551223755,-0.154328346252441,-0.477053999900818,-1.48221921920776,-0.074955940246582,-0.404207706451416,-1.46375894546509,-0.20516300201416,-0.421988606452942,-1.54143190383911,-0.102349281311035,-0.320185840129852,-1.51646089553833,-0.260271072387695,-0.334235668182373,-1.57769012451172,-0.133682250976563,-0.213058531284332,-1.55400800704956,-0.322083473205566, +-0.216382563114166,-1.59757232666016,-0.167949676513672,-0.0997490584850311,-1.58071708679199,-0.365748405456543,-0.102762192487717,-1.61014270782471,-0.189743995666504,-0.0920931845903397,-1.64629507064819,-0.179289817810059,-0.203116536140442,-1.63262891769409,-0.159459114074707,-0.32518059015274,-1.61229276657104,-0.126914024353027,-0.418556928634644,-1.57534790039063,-0.096217155456543,-0.47674834728241,-1.51455497741699,-0.073155403137207,-0.510387778282166,-1.47042942047119,-0.0541181564331055,-0.519746541976929,-1.42988634109497,-0.0560617446899414,-0.505582571029663,-1.38522052764893,-0.096470832824707,-0.505531549453735,-1.38081121444702,-0.103182792663574,-0.506849765777588,-1.37478446960449,-0.109837532043457,-0.50835394859314,-1.37065505981445,-0.107742309570313,-0.509074687957764,-1.36989116668701,-0.10222053527832,-0.517624139785767,-1.39039278030396,-0.07513427734375,-0.514583587646484,-1.41389322280884,-0.0755796432495117,-0.48130738735199,-1.45259237289429,-0.107653617858887,-0.425945401191711,-1.51504135131836,-0.146698951721191,-0.339245498180389,-1.56436967849731,-0.191486358642578,-0.230331659317017,-1.59750699996948,-0.240631103515625,-0.11005263030529,-1.62192487716675,-0.278242111206055,-0.100503340363503,-1.63480186462402,-0.187894821166992,-0.212404102087021,-1.62071561813354,-0.167272567749023,-0.333192646503448,-1.59886837005615,-0.132949829101563,-0.423298120498657,-1.5592303276062,-0.100299835205078,-0.480090856552124,-1.49901676177979,-0.0748176574707031,-0.510573625564575,-1.45755910873413,-0.0552644729614258,-0.51975679397583,-1.42217445373535,-0.0558414459228516,-0.506663799285889,-1.38118410110474,-0.0950708389282227,-0.506219863891602,-1.37921190261841,-0.0998926162719727,-0.506510972976685,-1.37564659118652,-0.105060577392578,-0.50712251663208,-1.37381839752197,-0.102567672729492,-0.507572174072266,-1.37393951416016,-0.0977678298950195,-0.518384218215942,-1.40458393096924,-0.0634546279907227,-0.512492656707764,-1.43621635437012,-0.0619373321533203,-0.482176661491394,-1.47447824478149, +-0.0872154235839844,-0.427218556404114,-1.53562641143799,-0.118578910827637,-0.339884996414185,-1.57915163040161,-0.154722213745117,-0.224071681499481,-1.60577487945557,-0.194527626037598,-0.106314077973366,-1.62383699417114,-0.221572875976563,-0.0681965351104736,-0.857470989227295,0.147574424743652,-0.163126707077026,-0.905282497406006,0.110669136047363,-0.312276124954224,-0.97421932220459,0.13460636138916,-0.395906090736389,-0.970556259155273,0.16663932800293,-0.343580722808838,-0.862081050872803,0.0656108856201172,-0.26407265663147,-0.750240802764893,-0.0432519912719727,-0.272679567337036,-0.821621417999268,-0.115177154541016,-0.464343309402466,-1.04356288909912,-0.0452365875244141,-0.437482595443726,-1.15456581115723,-0.11068058013916,-0.491535186767578,-1.29812669754028,-0.167752265930176,-0.610655069351196,-1.42702722549438,-0.193606376647949,-0.734255075454712,-1.51779365539551,-0.222851753234863,-0.7483811378479,-1.58624744415283,-0.291604995727539,-0.593323707580566,-1.65006971359253,-0.397189140319824,-0.07091024518013,-1.81165647506714,-0.659370422363281,-0.140854835510254,-1.80043935775757,-0.649075508117676,-0.190779447555542,-1.78021240234375,-0.623007774353027,-0.248048186302185,-1.73917055130005,-0.579840660095215,-0.368418216705322,-1.69889879226685,-0.50560188293457,-0.0376263856887817,-1.57145929336548,-0.0567531585693359,-0.148005902767181,-1.50071096420288,-0.0728597640991211,-0.268303871154785,-1.51029205322266,-0.0643959045410156,-0.309150695800781,-1.48725032806396,-0.0428237915039063,-0.409210085868835,-1.44870376586914,-0.0451440811157227,-0.434995293617249,-1.41963624954224,-0.0317249298095703,-0.491835832595825,-1.36590576171875,-0.0376644134521484,-0.512933015823364,-1.30426549911499,-0.0777425765991211,-0.481327056884766,-1.28655338287354,-0.100139617919922,-0.493327140808105,-1.32794666290283,-0.126499176025391,-0.535153150558472,-1.38768720626831,-0.143046379089355,-0.560547351837158,-1.43207025527954,-0.151137351989746,-0.569409608840942,-1.46405363082886,-0.171244621276855,-0.521848201751709, +-1.48930406570435,-0.224536895751953,-0.43582546710968,-1.51727342605591,-0.296789169311523,-0.35156786441803,-1.57211256027222,-0.366572380065918,-0.268788754940033,-1.62925624847412,-0.420634269714355,-0.181225717067719,-1.66623258590698,-0.458890914916992,-0.087065190076828,-1.68037843704224,-0.493206024169922,-0.0113931596279144,-0.890588760375977,0.0321874618530273,-0.0421118140220642,-0.802155494689941,0.0296792984008789,-0.175849795341492,-0.821362495422363,0.0898046493530273,-0.289866924285889,-0.824051380157471,0.139734268188477,-0.285181760787964,-0.659732818603516,0.128419876098633,-0.312049865722656,-0.597062587738037,0.115899085998535,-0.506678581237793,-0.741682529449463,0.130518913269043,-0.566312074661255,-1.00192642211914,0.0553932189941406,-0.933672904968262,-1.74364376068115,-0.448775291442871,-0.96507740020752,-1.64459180831909,-0.32298755645752,-0.758339881896973,-1.50240421295166,-0.286277770996094,-0.508464813232422,-1.29737043380737,-0.256023406982422,-0.502855062484741,-1.12483596801758,-0.0744333267211914,-0.0648418366909027,-2.00056934356689,-0.919124603271484,-0.135010242462158,-2.01018047332764,-0.902218818664551,-0.15009343624115,-2.00183010101318,-0.904712677001953,-0.187194228172302,-1.97986507415771,-0.881087303161621,-0.332848310470581,-1.92799758911133,-0.780349731445313,-0.658697605133057,-1.84436511993408,-0.604063987731934,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,-5.7220458984375e-06,-0.000223517417907715,0.000306129455566406,0,2.98023223876953e-06,0,-0.00188469886779785,0.000725746154785156,0.00400066375732422,0,6.07967376708984e-06,0,-0.00951874256134033,-0.0154560804367065,0.00300979614257813,0,4.58955764770508e-06, +0,-0.00603783130645752,-0.0191738605499268,0.000716209411621094,0,4.58955764770508e-06,0,0.00367313623428345,-0.0104723572731018,-0.001007080078125,0.000241547822952271,-0.000535786151885986,-5.7220458984375e-05,0.00930768251419067,-0.0408455729484558,-0.00432491302490234,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,-0.000254631042480469,-0.0102643966674805,0.0140647888183594,0,7.62939453125e-06,0,-0.00784873962402344,0.00021660327911377,0.0139083862304688,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,-0.313318252563477,-1.46674633026123,-2.76006460189819,-0.558161497116089,-1.68521022796631,-2.56953859329224,-0.400536060333252,-1.36100196838379,-2.11972188949585,-0.665369033813477,-1.87363338470459,-1.91583395004272,-0.578195333480835,-1.20559310913086,-1.53702878952026,-0.889949321746826,-1.71502685546875,-1.44151306152344,-0.681051015853882,-0.831201553344727,-1.04062795639038,-0.981273651123047,-1.37375164031982,-0.933132171630859,-0.606936931610107,-0.456741333007813,-0.607446432113647,-0.886311054229736,-0.950305461883545,-0.609196901321411,-0.160778999328613,-0.039031982421875,-0.0577678382396698,-0.58652925491333,-0.372584819793701,-0.118378162384033,-0.472238063812256,-0.247886657714844,-0.0226563215255737,-0.64500093460083,-1.03645801544189,-1.2658257484436,-1.00997018814087,-1.61718845367432,-1.16575384140015,-0.361837863922119,-0.140706062316895,-0.224008977413177,-0.698421001434326,-0.547140598297119,-0.266053915023804,-0.466040253639221,-1.43158721923828,-2.77490282058716,-0.587167024612427,-1.51969814300537,-2.17271900177002,-0.813158512115479,-1.3719596862793,-1.56364583969116,-0.950564622879028,-1.17885971069336,-1.29254007339478,-1.06334447860718,-0.984959602355957,-1.00760269165039,-0.970449447631836,-0.622415542602539,-0.623803615570068,-0.756429195404053, +-0.232287883758545,-0.305153846740723,-0.659777164459229,-0.127854824066162,-0.148908734321594,-0.306241989135742,-0.114137172698975,-0.0261518955230713,-0.224026083946228,-0.309413194656372,0.0997695922851563,-0.164644837379456,-0.387877464294434,0.0653371810913086,-0.13261890411377,-0.461999177932739,0.0350408554077148,-0.227492809295654,-0.47033429145813,0.0719566345214844,-0.145220398902893,-0.39400315284729,0.0419559478759766,-0.172088503837585,-0.377187728881836,0.0562601089477539,-0.152677178382874,-0.266441106796265,0.0457944869995117,-0.142243146896362,-0.24697208404541,0.0397186279296875,-0.0600399374961853,-0.226599931716919,0.0144433975219727,-0.051233172416687,-0.248492240905762,0.0120334625244141,-0.233275651931763,-0.463015794754028,0.0751361846923828,-0.217973947525024,-0.280116319656372,0.102158546447754,-0.360256433486938,-0.567936658859253,0.172903060913086,-0.560643434524536,-0.845778942108154,0.252150535583496,-0.758937358856201,-1.06503629684448,0.268401145935059,-0.487352132797241,-1.07646560668945,-0.0879278182983398,-0.563394069671631,-1.40122842788696,-0.329756736755371,-0.894498348236084,-1.64483213424683,-0.410342216491699,-1.13337182998657,-1.78386354446411,-0.494786262512207,-0.970156192779541,-1.92428207397461,-0.664769172668457,-0.643121480941772,-2.02414131164551,-0.856354713439941,-0.389002799987793,-2.00216388702393,-1.11008262634277,-0.203462362289429,-2.0045337677002,-1.2983455657959,-0.189151644706726,-2.0039587020874,-1.3857536315918,-0.172820150852203,-2.02152729034424,-1.43777179718018,-0.0991992950439453,-2.00912380218506,-1.4929838180542,0.00268357992172241,-0.557142496109009,-0.0148839950561523,0.00853452086448669,-0.642753124237061,-0.00468921661376953,0.0383570492267609,-0.631728887557983,-0.00773239135742188,0.0488007962703705,-0.627031087875366,-0.0192174911499023,-0.0186887979507446,-0.435096979141235,-0.00969791412353516,-0.0310171097517014,-0.509100914001465,-0.00376796722412109,0.00099259614944458,-0.30660605430603,-0.00655269622802734,-0.0012725293636322,-0.262787342071533, +-0.00314617156982422,0.00540179014205933,-0.201163053512573,-0.00301456451416016,0.00629183650016785,-0.119051218032837,-0.00189781188964844,-0.00814610719680786,-0.196057558059692,-0.0007171630859375,-0.00850766897201538,-0.132160425186157,0.000200271606445313,-0.0523192882537842,-0.257115364074707,0.00691986083984375,-0.0531682372093201,-0.219703435897827,0.00763702392578125,-0.0776687860488892,-0.322345733642578,0.0146713256835938,-0.105131983757019,-0.279565572738647,0.0249662399291992,-0.0653934478759766,-0.531166315078735,0.00631904602050781,-0.0947867631912231,-0.455688714981079,0.0177574157714844,-0.0635007619857788,-0.699768304824829,0.00108623504638672,-0.112668871879578,-0.67302417755127,0.0148735046386719,-0.0039713978767395,-0.596909761428833,-0.0121288299560547,-0.0879231691360474,-0.747065544128418,0.0373420715332031,0.0310296416282654,-0.594784736633301,-0.00304317474365234,0.0461181402206421,-0.593765497207642,-0.0188198089599609,-0.0371162891387939,-0.661893606185913,-0.00623512268066406,-0.0872296094894409,-0.687891483306885,0.0180339813232422,-0.000603049993515015,-0.573630571365356,-0.011754035949707,-0.0274307727813721,-0.443856716156006,-0.00736618041992188,-0.00567421317100525,-0.289867401123047,-0.00480270385742188,0.00707405805587769,-0.169850826263428,-0.00242805480957031,-0.00856918096542358,-0.170045852661133,-8.96453857421875e-05,-0.052131712436676,-0.237289190292358,0.00708961486816406,-0.0840940475463867,-0.302227020263672,0.0172977447509766,-0.0728540420532227,-0.503832817077637,0.00937652587890625,-0.0805628299713135,-0.699510335922241,0.00643825531005859,-0.0514482259750366,-0.685675859451294,-9.1552734375e-05,-0.0105041861534119,-0.627609014511108,-0.00611782073974609,0.0430269837379456,-0.600928068161011,-0.0145692825317383,0.046630322933197,-0.627145767211914,-0.0155305862426758,0.0444642901420593,-0.626463890075684,-0.0120649337768555,0.0386830568313599,-0.601359605789185,-0.0100259780883789,-0.0209894180297852,-0.640079021453857,0.00217533111572266,-0.0663251876831055,-0.692751169204712, +0.00694942474365234,-0.0953181982040405,-0.690338373184204,0.0108299255371094,-0.0819308757781982,-0.485122203826904,0.0126371383666992,-0.0943269729614258,-0.287436008453369,0.0210399627685547,-0.0526490211486816,-0.226388454437256,0.00736141204833984,-0.00919294357299805,-0.154557943344116,0.000185012817382813,0.00844764709472656,-0.160891532897949,-0.00248050689697266,-0.00499510765075684,-0.275370836257935,-0.00406837463378906,-0.0317768156528473,-0.460143327713013,-0.00596237182617188,0.00276723504066467,-0.603921890258789,-0.00930213928222656,0.00564166903495789,-0.810727119445801,0.0109367370605469,-0.0108785033226013,-0.115904331207275,-0.000308990478515625,-0.0505272150039673,-0.225566148757935,0.00742721557617188,-0.0460566878318787,-0.251270055770874,0.00811767578125,-0.0203836560249329,-0.180118799209595,-0.00269031524658203,-0.130262851715088,-0.250982284545898,0.0344972610473633,-0.117203950881958,-0.264906167984009,0.0294351577758789,-0.111932516098022,-0.426084041595459,0.0248937606811523,-0.131406307220459,-0.406060457229614,0.0336275100708008,-0.0608463287353516,-0.608408689498901,0.00267505645751953,-0.0676321983337402,-0.625106811523438,0.00355243682861328,-0.0771245956420898,-0.621977090835571,0.00477313995361328,-0.0874193906784058,-0.604537010192871,0.00545692443847656,-0.0998135805130005,-0.575115442276001,0.00758266448974609,-0.116073131561279,-0.524993896484375,0.015141487121582,-0.131809592247009,-0.640950679779053,0.0178766250610352,-0.162732839584351,-0.578699588775635,0.0267667770385742,-0.146711945533752,-0.693308353424072,0.0388174057006836,-0.15819787979126,-0.565658569335938,0.0302762985229492,-0.194528460502625,-0.778333187103271,0.0749998092651367,-0.17755115032196,-0.703980445861816,0.0459442138671875,-0.251294732093811,-0.428556680679321,0.093052864074707,-0.230907678604126,-0.300701141357422,0.114377021789551,-0.220123648643494,-0.322891473770142,0.0963869094848633,-0.186869621276855,-0.495671510696411,0.0480079650878906,-0.146866679191589,-0.583429336547852,0.0179805755615234, +-0.120862483978271,-0.633774518966675,0.00953102111816406,-0.104141712188721,-0.655752658843994,0.00841331481933594,-0.0885007381439209,-0.671103239059448,0.00714015960693359,-0.0731791257858276,-0.676269054412842,0.00406837463378906,-0.0600484609603882,-0.668688535690308,0.000742912292480469,-0.0151244401931763,-0.182001709938049,0.00273036956787109,-0.0691469311714172,-0.191280841827393,0.0184659957885742,-0.131247639656067,-0.227697134017944,0.0319385528564453,0.0104820728302002,-0.143343806266785,-0.00631332397460938,-0.030032217502594,-0.137686133384705,0.00679588317871094,-0.1225705742836,-0.224181056022644,0.034820556640625,0.021527498960495,-0.113902986049652,-0.0104265213012695,-0.00540107488632202,-0.0854357481002808,0.000159263610839844,-0.120507121086121,-0.237104535102844,0.0448093414306641,-0.0286937355995178,-0.202289938926697,0.00506877899169922,-0.082869291305542,-0.204612255096436,0.0218124389648438,-0.147937417030334,-0.244087219238281,0.0387210845947266,-0.147562623023987,-0.234616041183472,0.106234550476074,-0.158271431922913,-0.284891128540039,0.118943214416504,-0.0673381090164185,-0.280551433563232,0.10075855255127,-0.0892493724822998,-0.326348304748535,0.117233276367188,-0.0747051239013672,-0.288140296936035,0.0782613754272461,-0.0932612419128418,-0.35080885887146,0.105486869812012,-0.172607064247131,-0.297540903091431,0.0669431686401367,-0.195152163505554,-0.360595703125,0.0928163528442383,-0.170497059822083,-0.261216640472412,0.0456600189208984,-0.195913195610046,-0.284198522567749,0.053715705871582,-0.137622475624084,-0.382181882858276,0.132214546203613,-0.128893733024597,-0.389925479888916,0.122551918029785,-0.168030261993408,-0.347059011459351,0.131134986877441,-0.201952457427979,-0.346849918365479,0.0922470092773438,-0.20745587348938,-0.37987208366394,0.112969398498535,-0.203338742256165,-0.392674207687378,0.112550735473633,-0.227312088012695,-0.330514192581177,0.0780172348022461,-0.194306254386902,-0.365769863128662,0.0674972534179688,-0.0351273417472839,-0.21860146522522,0.00453281402587891, +-0.0766751170158386,-0.217671871185303,0.0197315216064453,-0.15278434753418,-0.260561227798462,0.0436792373657227,-0.206383347511292,-0.315973520278931,0.0601367950439453,-0.223393797874451,-0.350303173065186,0.0760536193847656,-0.154898405075073,-0.218375682830811,0.114501953125,-0.0642459392547607,-0.250145435333252,0.096247673034668,-0.0495758056640625,-0.166252613067627,0.039677619934082,-0.0514034032821655,-0.131304144859314,0.0188484191894531,0.0187936723232269,-0.0876680612564087,-0.00923824310302734,0.00500434637069702,-0.04050612449646,-0.00189971923828125,-0.104166746139526,-0.0869283676147461,0.0988492965698242,-0.327898979187012,-0.407950878143311,0.240639686584473,-0.193900585174561,-0.188120365142822,0.233660697937012,-0.385794639587402,-0.632518529891968,0.393777847290039,-0.216849327087402,-0.289500951766968,0.24631404876709,-0.319392681121826,-0.786197423934937,0.352054595947266,-0.0658626556396484,-0.250436067581177,0.187272071838379,-0.218131065368652,-0.649493217468262,0.222614288330078,-0.474133014678955,-0.823428153991699,0.264838218688965,-0.195023059844971,-0.408905029296875,0.0390539169311523,-0.0750470161437988,-0.204197883605957,0.0490226745605469,-0.180158615112305,-0.340601205825806,0.0276226997375488,-0.0809950828552246,-0.164288282394409,0.0243315696716309,-0.156894683837891,-0.245121717453003,0.0406484603881836,-0.0627593994140625,-0.10584568977356,0.0242228507995605,-0.0965843200683594,-0.124382019042969,0.0402336120605469,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,-0.390628814697266,-0.689579010009766,0.072293758392334,-0.265620708465576,-0.381097555160522,0.031773567199707,-0.314923763275146,-0.53047251701355,0.0231547355651855,-0.210036754608154,-0.24000096321106,0.0597119331359863,-0.441777229309082,-1.00437450408936,-0.104071617126465,-0.383724689483643,-0.504174709320068,0.000916481018066406,-0.421486377716064,-0.685399055480957,-0.0531711578369141,-0.500318050384521,-0.950218200683594,-0.0374631881713867,-0.535407066345215,-0.839343547821045, +-0.151315689086914,-0.50340747833252,-0.613498210906982,-0.0530242919921875,-0.576105117797852,-1.16193294525146,-0.21411657333374,-0.566573143005371,-1.33132553100586,-0.284521102905273,-0.753837108612061,-1.64014053344727,-0.50545597076416,-0.722852230072021,-1.45807313919067,-0.434245586395264,-0.695161819458008,-1.20287799835205,-0.349555969238281,-0.654019355773926,-0.90457010269165,-0.251780033111572,-0.984096527099609,-1.7735800743103,-0.603168487548828,-0.960488796234131,-1.76381397247314,-0.900224208831787,-0.905142784118652,-1.56784725189209,-0.762971878051758,-1.0372679233551,-1.90045166015625,-0.760265350341797,-0.868030309677124,-1.90828990936279,-1.12190008163452,-0.481257915496826,-1.33465576171875,-1.79066801071167,-0.699708223342896,-1.45311641693115,-1.87276744842529,-0.796446084976196,-1.76279544830322,-1.703444480896,-0.824596405029297,-2.05988311767578,-0.958756446838379,-0.787830591201782,-1.99646663665771,-1.31634950637817,-0.685717344284058,-2.10927963256836,-1.14601039886475,-0.708514451980591,-2.02411079406738,-1.54407024383545,-0.343206882476807,-1.43360900878906,-2.44824457168579,-0.551127791404724,-1.52004146575928,-2.45440196990967,-0.626673102378845,-1.80814170837402,-2.2385458946228,-0.599759578704834,-1.98564338684082,-1.81608963012695,-0.53883171081543,-2.07815361022949,-1.40190315246582,-0.400622010231018,-2.01912784576416,-1.67695903778076,-0.525268077850342,-1.86581039428711,-2.16553211212158,-0.24578332901001,-1.46043300628662,-2.96640729904175,-0.397825002670288,-1.40467357635498,-2.9775013923645,-0.415076076984406,-1.63622188568115,-2.80767869949341,-0.162209391593933,-1.43050861358643,-3.03048372268677,-0.277638137340546,-1.39039993286133,-3.09837818145752,-0.307180404663086,-1.58984851837158,-2.95088624954224,-0.22847181558609,-1.91916751861572,-2.0311279296875,-0.324190974235535,-1.95648193359375,-1.89793968200684,-0.379860162734985,-1.82060050964355,-2.38960933685303,-0.251958012580872,-1.77963352203369,-2.54815196990967,-0.0843888819217682,-1.39941692352295,-3.06607294082642, +-0.156081169843674,-1.38518619537354,-3.1220440864563,-0.169339090585709,-1.56822490692139,-3.04918432235718,-0.142276108264923,-1.88951587677002,-2.11738395690918,-0.175073355436325,-1.80466365814209,-2.62440776824951,-0.819418907165527,-1.33154916763306,-0.644001007080078,-0.791994571685791,-1.10152292251587,-0.502536296844482,-0.673913478851318,-0.634932518005371,-0.818487644195557,-1.12448072433472,-0.802107810974121,-0.787348031997681,-0.96251392364502,-1.13660860061646,-0.754597187042236,-0.753247261047363,-0.885473728179932,-0.357609272003174,-0.501002311706543,-0.287543296813965,-0.401989340782166,-0.845338344573975,-0.444649219512939,-0.463133811950684,-0.805628776550293,-0.742025852203369,-0.437487840652466,-0.690831661224365,-0.667111396789551,-0.205788612365723,-0.614380836486816,-0.680253505706787,-0.123053550720215,-0.607129573822021,-0.47371244430542,-0.0718131065368652,-0.547168731689453,-0.490113735198975,-0.013042688369751,-0.446206569671631,-0.44077467918396,0.0344033241271973,-0.329115390777588,-0.351394653320313,0.0588397979736328,-0.508635520935059,-0.321572780609131,0.0113368034362793,-0.459177017211914,-0.324519395828247,0.05265212059021,-0.363309860229492,-0.282415866851807,0.0843765735626221,-0.241524219512939,-0.207595825195313,0.0795361995697021,-0.117108345031738,-0.113481163978577,0.0521836280822754,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06, +0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06, +0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-0.0145664215087891,0.00078737735748291,0.00715696811676025,-0.0108070373535156,0.00149989128112793,0.00509929656982422,-0.0357599258422852,0.00060272216796875,0.0140547752380371,-0.0279569625854492,0.00299978256225586,0.00951564311981201,-0.0665245056152344,-0.00497627258300781,0.0204346179962158,-0.055267333984375,0.000657558441162109,0.0132745504379272,-0.10570240020752,-0.0193893909454346,0.0279868450015783,-0.0923728942871094,-0.00960707664489746,0.0143791437149048,-0.149989128112793,-0.0409989356994629,0.0358432531356812,-0.134835243225098,-0.0252108573913574,0.0136259794235229,-0.192259311676025,-0.0689835548400879,0.0461731553077698,-0.168575286865234,-0.0415878295898438,0.015323281288147,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,-0.0160751342773438,0.00155329704284668,0.00731873512268066,-0.0392971038818359,0.0025634765625,0.0133341550827026,-0.0719242095947266,-0.00236201286315918,0.0178400278091431,-0.11332893371582,-0.0184066295623779,0.0205500535666943,-0.158910751342773,-0.0400207042694092,0.0284181237220764,-0.198283195495605,-0.0632095336914063,0.0358630418777466,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,-0.00217628479003906,0.00030207633972168,0.0012664794921875,-0.00699234008789063,0.00078272819519043,0.00308811664581299,-0.017237663269043,0.000955104827880859,0.00504076480865479,-0.0350465774536133, +-0.0014495849609375,0.00783681869506836,-0.061525821685791,-0.0112595558166504,0.0104606226086617,-0.118242263793945,-0.0335478782653809,0.0129258036613464,-0.25495719909668,-0.116696119308472,0.0614889860153198,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,-0.00433158874511719,0.00052642822265625,0.00228595733642578,-0.0129222869873047,0.00137472152709961,0.0051501989364624,-0.0298786163330078,0.00095367431640625,0.00814986228942871,-0.0581293106079102,-0.00590372085571289,0.0118870139122009,-0.100044250488281,-0.0195496082305908,0.0143730789422989,-0.161769866943359,-0.0464401245117188,0.0169217586517334,-0.235573291778564,-0.0921218395233154,0.0552029609680176,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,-0.0141973495483398,0.00181269645690918,0.00650334358215332,-0.0354089736938477,0.00312948226928711,0.0116628408432007,-0.0663681030273438,-0.000463962554931641,0.0156466960906982,-0.107053756713867,-0.013885498046875,0.0163320004940033,-0.151091575622559,-0.0338013172149658,0.0176717936992645,-0.188564300537109,-0.05350661277771,0.022343635559082,-0.2417893409729,-0.0890395641326904,0.0336172580718994,-0.244795322418213,-0.0924632549285889,0.0277427434921265,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06, +0,0,-4.58955764770508e-06,0,-0.00724601745605469,0.00096285343170166,0.00358986854553223,-0.0199728012084961,0.00238633155822754,0.00721263885498047,-0.0426368713378906,0.00103139877319336,0.0107473134994507,-0.0764369964599609,-0.00725865364074707,0.0133327841758728,-0.120611190795898,-0.0214309692382813,0.0144066866487265,-0.168686866760254,-0.0456023216247559,0.0146524906158447,-0.213740348815918,-0.0705840587615967,0.027428925037384,-0.224656581878662,-0.0784988403320313,0.0383224487304688,-0.159158706665039,-0.0649688243865967,0.0533881187438965,-0.116750717163086,-0.0359864234924316,0.0388069152832031,-0.0793328285217285,-0.0193085670471191,0.027463436126709,-0.0495338439941406,-0.00671076774597168,0.019488513469696,-0.0263051986694336,-0.00197911262512207,0.0114564895629883,-0.00976371765136719,-9.00030136108398e-05,0.00497829914093018,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,-0.0125417709350586,-0.00144803524017334,0.00650477409362793,-0.0251035690307617,-0.0041351318359375,0.0119849443435669,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,-0.0410661697387695,-0.012176513671875,0.01877161860466,-0.0634217262268066,-0.0203461647033691,0.0258220434188843,0,7.62939453125e-06,0,-0.0370769500732422,-0.0148605108261108,0.0202001333236694,-0.0903334617614746,-0.0338456630706787,0.0364541411399841,-0.0746378898620605,-0.0306228399276733,0.0350357294082642,-0.0762662887573242,-0.0336593389511108,0.0349012613296509,-0.0975193977355957,-0.0427398681640625,0.0419412851333618,-0.0898890495300293,-0.0366989374160767,0.039141058921814,-0.0517868995666504,-0.0217026472091675,0.027382493019104,-0.0505385398864746,-0.0231872797012329,0.0262688398361206,-0.116832733154297, +-0.0531296730041504,0.0473637580871582,-0.0896964073181152,-0.0368103981018066,0.0376968383789063,0,-1.54972076416016e-06,0,-0.164937973022461,-0.08428955078125,0.0623519420623779,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,-0.358603000640869,-0.210361003875732,0.0723836421966553,-0.260848522186279,-0.167388916015625,0.0809013843536377,-0.129260540008545,-0.0911972522735596,0.0550162792205811,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,-0.245378017425537,-0.0909867286682129,0.0100287199020386,-0.383453369140625,-0.180980205535889,0.0260912179946899,-0.41049337387085,-0.217001438140869,0.0538948774337769,-0.322449207305908,-0.142366170883179,0.0555891990661621,-0.333118438720703,-0.140530347824097,0.0436110496520996,0,4.29153442382813e-06,0,-0.00907421112060547,0.00039219856262207,0.00162923336029053,0,6.19888305664063e-06,0,-0.00623464584350586,0.00107717514038086,0.00177288055419922,-0.00128889083862305,0.00051569938659668,0.000295639038085938,-0.002716064453125,0.00072932243347168,0.00124549865722656,-0.000721931457519531,0.000425577163696289,0.000322818756103516,-0.000834465026855469,0.00026094913482666,0.000532150268554688,-0.000238895416259766,0.00015556812286377,0.000167369842529297,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,-0.000118732452392578,0.000112771987915039,5.14984130859375e-05,-5.24520874023438e-05,4.87565994262695e-05,3.91006469726563e-05,-4.76837158203125e-06,4.52995300292969e-06, +2.38418579101563e-06,-3.33786010742188e-06,6.07967376708984e-06,2.86102294921875e-06,0,2.98023223876953e-06,1.9073486328125e-06,-2.14576721191406e-05,2.12192535400391e-05,9.5367431640625e-06,-1.33514404296875e-05,1.68085098266602e-05,1.1444091796875e-05,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.147392272949219,-0.0288944244384766,-0.202075302600861,-0.239797115325928,-0.0846681594848633,-0.423667907714844,-0.285392999649048,-0.166020393371582,-0.64807003736496,-0.300125122070313,-0.274911880493164,-0.876344203948975,-0.291043043136597,-0.395524978637695,-1.09972178936005,-0.162639856338501,-0.50534725189209,-1.34933006763458,0.0112210512161255,-0.611281394958496,-1.56431555747986,0.184719324111938,-0.772279739379883,-1.64631533622742,0.205301880836487,-0.967265129089355,-1.56282901763916,0.156917631626129,-1.10126209259033,-1.49779987335205,0.0932871699333191,-1.19295692443848,-1.459547996521,0.0302663147449493,-1.25501918792725,-1.42377948760986,0.00597655773162842,-1.28619289398193,-1.40265560150146,-0.173703670501709,-0.0350284576416016,-0.144991815090179,-0.302762508392334,-0.115859031677246,-0.327416837215424,-0.378468990325928,-0.229336738586426,-0.524648427963257,-0.385486364364624,-0.417571067810059,-0.747655630111694, +-0.457935571670532,-0.541269302368164,-0.979405879974365,-0.438550233840942,-0.79615592956543,-1.26130366325378,-0.320799350738525,-0.976748466491699,-1.46159052848816,-0.195934057235718,-1.11180973052979,-1.57772493362427,0.0605313777923584,-1.381667137146,-1.74932646751404,0.242930769920349,-1.62553977966309,-1.9988386631012,0.273672103881836,-1.75190734863281,-2.27575278282166,0.245625793933868,-1.8134593963623,-2.48779463768005,0.197792083024979,-1.84684467315674,-2.64055395126343,0.145275056362152,-1.86577415466309,-2.62918901443481,-0.0868384838104248,-0.0117006301879883,-0.253911644220352,-0.13222336769104,-0.0381002426147461,-0.495590925216675,-0.106889009475708,-0.0605792999267578,-0.735898077487946,0.0734555721282959,-0.0783233642578125,-1.00212574005127,0.198465943336487,-0.203238487243652,-1.10653138160706,0.168620824813843,-0.437335014343262,-1.07296788692474,0.197450637817383,-0.671838760375977,-1.06808650493622,0.21576452255249,-0.827593803405762,-1.18886756896973,0.175196766853333,-0.922653198242188,-1.35926127433777,0.11376017332077,-0.964791297912598,-1.52407824993134,0.0438088923692703,-0.965770721435547,-1.66245090961456,-0.0363643169403076,-0.0111360549926758,-0.149410367012024,-0.053682804107666,-0.0274696350097656,-0.293490290641785,-0.052847146987915,-0.0528049468994141,-0.424975097179413,-0.0518381595611572,-0.0945072174072266,-0.548102378845215,-0.0250082015991211,-0.135459899902344,-0.696895182132721,0.00138509273529053,-0.160867691040039,-0.867420256137848,0.0118756294250488,-0.18242073059082,-1.02611982822418,-0.00198733806610107,-0.200067520141602,-1.21487724781036,-0.00572916865348816,-0.216304779052734,-1.3317985534668,-0.0028298944234848,-0.224418640136719,-1.38276100158691,-0.000967130064964294,-0.00103759765625,-0.0976827144622803,-0.11542797088623,-0.0215244293212891,-0.237562417984009,-0.180213928222656,-0.060765266418457,-0.475517988204956,-0.206685304641724,-0.117620468139648,-0.711203753948212,-0.195073127746582,-0.176530838012695,-0.945311903953552,-0.0905723571777344,-0.231302261352539, +-1.19655382633209,0.0818338394165039,-0.306580543518066,-1.42792332172394,0.253576874732971,-0.49211597442627,-1.4877382516861,0.0917444229125977,-0.789874076843262,-1.34467947483063,-0.0614660382270813,-0.952648162841797,-1.37431144714355,-0.14650022983551,-1.06160449981689,-1.45345425605774,-0.135784864425659,-1.12559127807617,-1.50116086006165,-0.0645097568631172,-1.16457080841064,-1.52930474281311,-0.0309199094772339,-0.305977821350098,0.000557899475097656,-0.049164891242981,-0.325116157531738,0.00540924072265625,-0.0639864802360535,-0.386171102523804,0.00868415832519531,-0.0578601956367493,-0.481690406799316,0.00433731079101563,-0.0494351387023926,-0.55019998550415,-0.00034332275390625,-0.0447431802749634,-0.610333681106567,-0.00377178192138672,-0.016452968120575,-0.322360515594482,-0.00393772125244141,0.00256729125976563,-0.367093801498413,-0.0102291107177734,0.016986608505249,-0.426443338394165,-0.0153350830078125,0.0258229970932007,-0.471642971038818,-0.0192785263061523,0.0275687575340271,-0.487113475799561,-0.0206193923950195,0.013288676738739,-0.481449365615845,-0.016728401184082,-0.0105046629905701,-0.516610860824585,-0.0117673873901367,-0.0271687507629395,-0.578382968902588,-0.00882530212402344,-0.0389587879180908,-0.637378931045532,-0.00643253326416016,-0.0164713859558105,-0.392428398132324,-0.00616455078125,-0.0284944176673889,-0.428329229354858,-0.00363445281982422,-0.03609699010849,-0.483413219451904,-0.00301456451416016,-0.0383657217025757,-0.553422212600708,-0.00441360473632813,-0.00598573684692383,-0.37428879737854,-0.00843715667724609,-0.0202004909515381,-0.95658016204834,-0.108538627624512,-0.273462057113647,-0.885106086730957,-0.109763145446777,-0.369971036911011,-0.927593231201172,-0.0722284317016602,-0.114088773727417,-0.899652481079102,-0.125219345092773,-0.145157098770142,-0.858946800231934,-0.135933876037598,-0.093264102935791,-0.936429977416992,-0.11249828338623,-0.0671075582504272,-0.94859790802002,-0.107621192932129,-0.0412197113037109,-0.953202724456787,-0.106471061706543,-0.38413143157959, +-0.934737682342529,-0.0738592147827148,-0.351471900939941,-0.917858600616455,-0.114277839660645,-0.372672557830811,-0.927650928497314,-0.124228477478027,-0.462097883224487,-0.944911479949951,-0.10236644744873,-0.508829832077026,-0.997405529022217,-0.102794647216797,-0.426564931869507,-1.03251361846924,-0.181416511535645,-0.352744460105896,-1.07110404968262,-0.24378490447998,-0.271386384963989,-1.14459705352783,-0.307888984680176,-0.206672489643097,-1.22261047363281,-0.339400291442871,-0.136224508285522,-1.28414392471313,-0.371273040771484,-0.0663172751665115,-1.32073354721069,-0.400850296020508,-0.106204763054848,-1.57675409317017,-0.201694488525391,-0.216624706983566,-1.56068897247314,-0.17897891998291,-0.333024561405182,-1.53888654708862,-0.137529373168945,-0.411670386791229,-1.50476169586182,-0.102199554443359,-0.463413715362549,-1.44761657714844,-0.0759677886962891,-0.495610594749451,-1.40958881378174,-0.059636116027832,-0.493849277496338,-1.37769603729248,-0.0777177810668945,-0.488004922866821,-1.35250616073608,-0.113804817199707,-0.487204313278198,-1.34478282928467,-0.127165794372559,-0.495217084884644,-1.34111881256104,-0.134433746337891,-0.497854709625244,-1.33952283859253,-0.131831169128418,-0.493539333343506,-1.33947610855103,-0.122881889343262,-0.489624500274658,-1.37724685668945,-0.0776271820068359,-0.487185716629028,-1.41016864776611,-0.0613012313842773,-0.459187507629395,-1.44497156143188,-0.0797319412231445,-0.411758661270142,-1.5046968460083,-0.102958679199219,-0.332475960254669,-1.54800033569336,-0.134465217590332,-0.216573536396027,-1.57447195053101,-0.171354293823242,-0.103179231286049,-1.58736181259155,-0.192459106445313,-0.0914496779441833,-1.26886987686157,-0.143678665161133,-0.183133989572525,-1.26189231872559,-0.127607345581055,-0.276891350746155,-1.2536768913269,-0.0977725982666016,-0.330671191215515,-1.23209047317505,-0.0778312683105469,-0.358180522918701,-1.19421672821045,-0.0657405853271484,-0.376236438751221,-1.17076826095581,-0.0579681396484375,-0.375930070877075,-1.14294910430908,-0.0794229507446289, +-0.393904209136963,-1.13321399688721,-0.0984029769897461,-0.404439449310303,-1.13183784484863,-0.112302780151367,-0.41726279258728,-1.13333320617676,-0.123942375183105,-0.427533864974976,-1.13938665390015,-0.125188827514648,-0.437410116195679,-1.14967632293701,-0.117573738098145,-0.448729038238525,-1.20155143737793,-0.0775108337402344,-0.45162045955658,-1.25102233886719,-0.06048583984375,-0.427458524703979,-1.30464458465576,-0.082371711730957,-0.388446986675262,-1.38537788391113,-0.107476234436035,-0.319330751895905,-1.44587182998657,-0.1417236328125,-0.211201190948486,-1.48769283294678,-0.183060646057129,-0.101466119289398,-1.51110649108887,-0.209996223449707,-0.0156207382678986,-0.627282857894897,0.0313825607299805,-0.15313720703125,-0.562549114227295,-0.0399689674377441,-0.177148342132568,-0.559065341949463,-0.0743603706359863,-0.100808382034302,-0.593385457992554,0.00552558898925781,-0.128403186798096,-0.576536655426025,-0.0175371170043945,-0.0733442306518555,-0.613590955734253,0.022003173828125,-0.0528593063354492,-0.622456312179565,0.0309610366821289,-0.032367467880249,-0.625454664230347,0.0339059829711914,-0.197329759597778,-0.559808731079102,-0.104384422302246,-0.215595006942749,-0.578295230865479,-0.160298347473145,-0.239985227584839,-0.631513595581055,-0.187189102172852,-0.294612407684326,-0.698030948638916,-0.221489429473877,-0.472409248352051,-0.752106666564941,-0.218582630157471,-0.451667785644531,-0.816563606262207,-0.253584861755371,-0.359344959259033,-0.893240928649902,-0.306578636169434,-0.255729675292969,-0.967921257019043,-0.383689880371094,-0.157781422138214,-1.0200252532959,-0.443425178527832,-0.0775842666625977,-1.06636142730713,-0.483336448669434,-0.030832827091217,-1.10108947753906,-0.508516311645508,-0.00416883826255798,-0.0803208351135254,0.0228512287139893,-0.0418229103088379,-0.0676331520080566,-0.0216073989868164,-0.0490789413452148,-0.0696978569030762,-0.039454460144043,-0.027148962020874,-0.072819709777832,0.00492405891418457,-0.0347418785095215,-0.0699586868286133,-0.00833392143249512, +-0.0197079181671143,-0.0771775245666504,0.0158095359802246,-0.0141766667366028,-0.0789628028869629,0.0213851928710938,-0.00866031646728516,-0.0795669555664063,0.0233380794525146,-0.0578243732452393,-0.0743470191955566,-0.0569677352905273,-0.0715863704681396,-0.0938701629638672,-0.0969033241271973,-0.0806057453155518,-0.112067222595215,-0.133758306503296,-0.0851612091064453,-0.135238647460938,-0.186796426773071,-0.0863375663757324,-0.1788330078125,-0.249385118484497,-0.085019588470459,-0.237619400024414,-0.321080684661865,-0.0828790664672852,-0.304394721984863,-0.380617618560791,-0.0736607313156128,-0.381802558898926,-0.432967662811279,-0.0608580708503723,-0.444297790527344,-0.463699817657471,-0.0416448712348938,-0.49303150177002,-0.48638916015625,-0.0208984613418579,-0.527684211730957,-0.51156759262085,0,-0.00591850280761719,-0.158504545688629,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.158504605293274,0,-0.00591754913330078,-0.15850442647934,0,-0.00591754913330078,-0.158504545688629,0,-0.00591850280761719,-0.15850442647934,0,-0.00591850280761719,-0.15850430727005,0,-0.00591754913330078,-0.15850430727005,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591754913330078,-0.158504545688629,0,-0.00591754913330078,-0.158504486083984,0,-0.00591850280761719,-0.158504486083984,-0.00130105018615723,-0.00614356994628906,-0.165478229522705,-0.00177311897277832,-0.00642108917236328,-0.170103788375854,-0.00181019306182861,-0.00671768188476563,-0.173963665962219,-0.00162160396575928,-0.00671577453613281,-0.177491664886475,-0.00116795301437378,-0.00661373138427734,-0.180501222610474,-0.000603288412094116,-0.00664234161376953,-0.182587385177612,0,6.19888305664063e-06,0,-0.0259513854980469,-0.00633144378662109,-0.0481162965297699,-0.036067008972168,-0.0126562118530273,-0.0769106149673462,-0.0413000583648682,-0.0218038558959961,-0.10959780216217,-0.0475389957427979,-0.052983283996582,-0.145081281661987,-0.0572304725646973,-0.0764741897583008,-0.244582533836365,-0.0631885528564453, +-0.112884521484375,-0.326589107513428,-0.0603275299072266,-0.156073570251465,-0.397768259048462,-0.0523036122322083,-0.186903953552246,-0.451659440994263,-0.0369722843170166,-0.209490776062012,-0.494720935821533,-0.018904983997345,-0.227828979492188,-0.5312739610672,-0.0104430615901947,-0.307292222976685,0.0635929107666016,-0.0216654539108276,-0.30619215965271,0.0652179718017578,-0.0354338884353638,-0.304776191711426,0.0619702339172363,-0.0492146015167236,-0.299888610839844,0.0522980690002441,-0.0677597522735596,-0.28855299949646,0.0337867736816406,-0.0865216255187988,-0.279698133468628,0.0100789070129395,-0.103721857070923,-0.272834777832031,-0.013155460357666,-0.120302200317383,-0.273486614227295,-0.0462045669555664,-0.136934757232666,-0.278936862945557,-0.0747108459472656,-0.151462554931641,-0.296911716461182,-0.131115436553955,-0.16125226020813,-0.322004318237305,-0.177340984344482,-0.163743734359741,-0.354578018188477,-0.245415687561035,-0.154793500900269,-0.408967971801758,-0.32562780380249,-0.140340089797974,-0.479620933532715,-0.399084091186523,-0.130325317382813,-0.564449310302734,-0.447021961212158,-0.112825274467468,-0.660270690917969,-0.486994743347168,-0.0878852605819702,-0.735620498657227,-0.504144668579102,-0.0564806461334229,-0.793303489685059,-0.515061855316162,-0.0277853906154633,-0.832740783691406,-0.531881332397461,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06, +0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *15735 { + a: -0.000541627407073975,0.00578469038009644,0.229976609349251,-0.613894355780623,0.771947717294097,1.0199011489749,-1.17211157083511,-0.179455578327179,-0.0345638245344162,-0.914914220571518,0.0335996150970459,-0.359372073784471,-0.618499830830842,0.365997314453125,-0.886005528271198,-0.319293946027756,-0.146461844444275,-0.428455047309399,-0.0319027304649353,-0.0726131200790405,-0.0801974982023239,-0.701139336200795,0.463641867041588,0.801094561815262,-1.55334734916687,0.193493276834488,-0.0131670981645584,-1.63994580507278,0.800906032323837,-0.716579347848892,-0.569925725925714,0.556637674570084,-1.67905521392822,0.230798304080963,0.744268119335175,-0.958792984485626,0.307202756404877,0.835374139249325,0.159425646066666,-0.504858758127718,0.211238622665405,0.778556739911437,-1.59410935640335,0.768132247030735,0.271082609891891,-0.650112682487816,1.47105133533478,-0.83844843506813,0.185238242149353,0.744570642709732,-0.0662305057048798,-0.565107153448092,-0.537854760885239,-0.70317879319191,-1.07432825863361,0.592678129673004,-0.412913292646408,-0.264959431605746,1.32338377833366,-0.986581578850746,0.660895645618439,0.459736987948418,-0.949403148144484,-0.585795641807987,-0.162265062332153,-0.672979384660721,-1.62150347232819,0.766214549541473,-0.576156320050359,-0.264958949411024,1.32648703455925,-0.916809182614088,0.696264877915382,0.87458011507988,-1.12040875852108,-0.149306849338132,-0.776567012071609,-1.27395382523537,-1.13014721870422,0.739011868834496,-1.11868241429329,-0.264954220361233,1.32481023669243,-0.965952351689339,0.5116878002882,0.982184231281281,-1.13956473767757,-0.119943025390157,-0.627977639436722,-0.971271097660065,-0.874002084136009,0.963131040334702,-1.16788184642792,-0.264958547845922,1.30945625901222,-1.09130199253559,0.658988073468208,0.791177362203598,-1.35317519307137,-0.119942746485606,-0.622344344854355,-1.03822267055511,-0.786892170337596,0.874293625354767,-1.32746082544327,1.32694438077507e-05,0.992253720760345,-1.70857161283493,0.427698373794556,0.197704415768385, +-1.78929543495178,-0.127898812846524,-0.363895267248154,-1.64105004072189,-0.576962461117764,0.382498793303967,-1.74868786334991,0.426372540480628,-0.584012612700462,-1.39255118370056,0.506949675566688,-0.511931344866753,-1.43298053741455,-0.42726277316,-0.440194249153137,-1.34920465946198,-0.401312723755836,-0.373528599739075,-1.38950458168983,0.132434077560902,-0.494077831506729,-1.71377456188202,-0.443712701443691,-0.289334833621979,-1.54769724607468,0.547586327167592,-0.208736658096313,-1.45358836650848,0.717045553028584,-0.356279999017715,-0.720874533057213,0.877190932631493,-0.158910483121872,-0.496752887964249,0.631465718150139,-0.498551607131958,-0.726295977830887,0.797519810497761,-0.220347076654434,-0.561154633760452,0.794128924608231,0.0846355259418488,-0.123135983943939,0.842063516378403,-0.343979477882385,-0.441095322370529,0.949635565280914,-0.174728572368622,-0.265356957912445,0.268520034849644,0.00258071720600128,0.00460684299468994,0.127893184665699,0.17666420340538,0.0550203323364258,0.414362609386444,0.349330855533481,0.0811876654624939,0.391804188489914,0.182820275425911,0.0741388201713562,0.129564769566059,0.181239753961563,0.0828729867935181,0.505055442452431,0.437656095251441,0.356541395187378,0.527744352817535,0.367882952094078,0.424883484840393,0.357081681489944,0.553214743733406,0.667730629444122,0.000388026237487793,0.192258751019835,0.0225625038146973,0.00239220261573792,0.191597878932953,0.048133909702301,-0.162057816982269,0.134312391281128,-0.119866520166397,0.0866469740867615,-0.0750722289085388,0.0125486850738525,0.00128543376922607,0.0236896276473999,0.225259995087981,-0.109360158443451,0.128346264362335,0.0610933601856232,-0.0523982644081116,-0.035572350025177,-1.0046441257,0.348338812589645,-0.314571261405945,-0.749727547168732,0.210799545049667,0.0346435904502869,-0.744921758770943,0.645907034166157,-0.00273728370666504,-1.41414469480515,0.223679572343826,-0.25098043680191,-1.2409285902977,1.17490068078041,-0.0835736989974976,-0.590006425976753,1.39384245872498,-0.191194474697113, +-0.833538711071014,1.67508506774902,0.748230025172234,-0.544594032689929,1.26474815607071,0.36513939499855,-0.609717862680554,1.45581215620041,0.632234543561935,0.225922336801887,1.4725598692894,0.597424380481243,0.456791326403618,1.45107984542847,0.584196299314499,0.527276379987597,1.01549017429352,0.542319983243942,0.861472085118294,1.05375036597252,0.425850987434387,1.35562181472778,0.496037566103041,0.00272637605667114,1.37672680616379,0.434084733679101,0.150861978530884,1.70014816522598,0.508393160998821,0.149817436933517,1.70712405443192,0.464906116016209,0.00271934270858765,1.37672108411789,0.471877910196781,0.234988689422607,1.56974345445633,0.407680533826351,-0.174572676420212,1.52545297145844,0.249283671379089,0.182431429624557,1.69271266460419,-0.337309688329697,0.39213465154171,1.3874905705452,-0.4258913397789,0.196830987930298,0.941476345062256,-0.817442150786519,0.110219731926918,1.45594942569733,-0.904501357115805,0.632821619510651,0.769024789333344,-0.371084868907928,0.148604989051819,0.274070739746094,0.105341583490372,1.43084222078323,0.742276348173618,0.0273458575829864,1.16401252150536,0.502456665039063,-0.707969860639423,-0.0420593470335007,0.324617505073547,-0.841308951377869,1.60203129053116,0.47070649266243,-0.095412015914917,1.60573744773865,0.58133796043694,0.21969211101532,0.361143440008163,-0.0565168857574463,-0.141050666570663,1.39879930019379,0.513378158211708,-0.0430633723735809,1.52769416570663,0.736359402537346,-0.0194655656814575,1.43280518054962,0.675315383821726,-0.095693826675415,-0.122353613376617,0.891287267208099,0.295757651329041,0.335485935211182,1.10310757160187,0.321331411600113,0.604330688714981,1.2237234711647,0.0841318964958191,-0.170772433280945,0.968005001544952,-0.092912495136261,-0.253793805837631,1.33924239873886,-0.689235761761665,-0.518022745847702,0.683175485348329,-0.574916042648834,-0.440308272838593,0.962259531021118,-0.958411455154419,-1.27287495136261,0.675632029771805,-0.707128793001175,-1.33633825182915,0.430539341177791,-0.583838596940041,-0.659402579069138, +1.06105130910873,-0.691117834299803,-0.726499110460281,0.761158607900143,-0.882121749222279,-1.24852034449577,0.852269321680069,-1.78713196516037,-0.561622053384781,0.550501964986324,-1.59746360778809,0.431494235992432,1.12285923957825,-1.45698928833008,0.334398671984673,1.2209130525589,-1.15568697452545,1.20746287703514,1.00663238763809,-1.31212174892426,0.979568034410477,0.967478513717651,-0.944855600595474,1.20216985046864,0.531727392226458,-0.914747170427518,1.39878642559052,0.0472183264791965,-1.08673866093159,1.24597331881523,0.00968989729881287,-0.705588892102242,1.29406380653381,-0.463590444996953,-0.744737476110458,1.34819936752319,-0.154450833797455,-0.640097349882126,1.2119862139225,-0.0531604662537575,-0.539821922779083,0.932338465005159,-0.262606367468834,0.162005484104156,0.450430393218994,-0.325535178184509,0.0814716219902039,-0.0172918438911438,-0.658255875110626,0.117769539356232,0.0444440841674805,-0.335716232657433,-0.164997100830078,-0.481111571192741,-0.966320604085922,0.13859498500824,-0.231509357690811,-0.751629389822483,-0.751210495829582,-0.522138625383377,-1.07555547356606,-0.687342083173547,-0.562479048967361,-0.848216980695724,-1.01823979616165,-0.591865062713623,-0.545521959662437,-0.714165151119232,-0.605654895305634,-0.842953205108643,-0.483436301350594,-0.573491364717484,-0.919414818286896,-0.674342256039381,-0.518806964159012,-1.09972640872002,-0.598037049174309,-0.481567114591599,-0.907028526067734,-1.04286143928766,0.44417667388916,-0.844456151127815,-1.12259158492088,0.722395852208138,-0.580904364585876,-1.18322309851646,0.154416292905807,-0.771736390888691,-1.26043701171875,1.22271022200584,-0.526529438793659,-1.2199045419693,1.14847275614738,-0.424776017665863,-0.292483493685722,1.48635691404343,-0.877497600391507,-0.0718542995174403,1.50766086578369,-0.974132396280766,-0.224597543478012,1.41015616059303,-1.01798888295889,-0.11864910274744,1.40761065483093,-0.910035360604525,-0.0553482621908188,1.4764718413353,-0.968025647103786,0.204193405807018,1.76801460981369,-0.641786329448223, +0.224089972674847,1.46621644496918,-0.94005636125803,0.72074493765831,0.865132510662079,-1.04050548374653,0.755911849439144,0.441918969154358,-0.991888999938965,0.792730890214443,0.173969358205795,-1.22340905666351,0.508036099374294,0.0355914831161499,-0.998216778039932,0.53354468551877,0.108839154243469,-1.06452003121376,-0.0839923524401636,-0.422326922416687,-1.15676888823509,-0.0925710576424876,-0.472731024026871,-1.33858186006546,-0.173972323536873,-0.370572030544281,-1.30763646960258,0.0839898160554915,-0.422327697277069,-1.15676724910736,0.102113215001665,-0.461689233779907,-1.35915732383728,-0.0486114605046888,-0.515497267246246,-1.24553361535072,-0.0463057362578363,-0.345885217189789,-1.33820018172264,-0.803736105561256,0.191782295703888,-1.21336406469345,-0.805542819201946,0.783494979143143,-1.09647926688194,-0.864582171394631,0.185009330511093,-1.21969667077065,-0.344773713672133,1.7465403676033,-0.614602897316217,-0.450973235070705,1.67578709125519,-0.662266205996275,-0.0437639355659485,1.50600773096085,-0.919746182858944,0.0718478592728964,1.51388245820999,-0.809704184532166,-0.08932875841856,1.78719180822372,-0.582049366086721,0.235310740768909,1.75614297389984,-0.698307402431965,0.292681761085987,1.4863606095314,-0.823213027790189,0.430505216121674,1.37292122840881,-0.975193001329899,0.294824533164501,1.391975492239,-0.900989057030529,0.842801317572594,1.12218803167343,-1.04608681797981,1.09179712831974,0.166414976119995,-1.1254073381424,1.08650453388691,0.188564836978912,-1.16518595814705,0.663978964090347,-0.0515466928482056,-0.825103536248207,1.0912771821022,-0.31133958697319,-0.929247170686722,0.527293659746647,-0.607196837663651,-0.725274726748466,0.23108528512472,-0.596420168876648,-1.00399136543274,0.102457292377949,-0.498295843601227,-0.957470022141933,0.71998555213213,-0.607197433710098,-0.725275360047817,0.739409931004047,-0.575551450252533,-0.739412643015385,0.779367290437222,-0.691415697336197,-0.524510569870472,0.766516879200935,-0.529738903045654,-0.466449201107025,-0.249919056892395,0.0891516804695129, +-0.907355606555939,-0.147342443466187,0.994346708059311,-0.871005550026894,-0.125942289829254,-0.0834114849567413,-0.909847915172577,0.54903370141983,1.2524770796299,-0.564608655869961,0.333902359008789,1.34401336312294,-0.697349742054939,0.395421504974365,1.45285555720329,-0.899506479501724,0.841699761169821,1.28666731715202,-0.629675015807152,0.649739980697632,1.19279888272285,-0.792258471250534,1.04397982358932,0.978425610810518,-0.678680881857872,1.076889321208,1.23894459009171,-0.338703244924545,1.07018487155437,1.38583385944366,-0.616774886846542,1.06167095899582,1.25243911147118,-0.672985166311264,1.74153989553452,0.808139801025391,-0.433548226952553,1.62314569950104,-0.0367475152015686,-0.332795394584537,1.72224861383438,0.0812152028083801,-0.24965706281364,1.39660155773163,-0.595067501068115,-0.388915777206421,1.33084005117416,-0.618716388940811,0.354852974414825,0.601304993033409,-0.562451541423798,0.450954534113407,0.953458122727151,-0.732268571853638,-0.19157712161541,0.788721986114979,-0.977483343333006,-0.511116310954094,1.01727540045977,-1.37764155864716,-0.03055689483881,0.90989113599062,-0.781562656164169,0.493468444794416,0.750666573643684,-0.774573057889938,0.394608989357948,0.845017574727535,-1.38216942548752,-0.0130857303738594,0.0662160515785217,-0.902642965316772,0.116085559129715,-0.130137264728546,0.812476992607117,0.410258203744888,-0.308659195899963,0.0341061651706696,0.451850280165672,0.355645298957825,1.30000519752502,0.23265141248703,0.489411920309067,1.1241908967495,0.292826801538467,0.479417458176613,0.868879675865173,-0.0786014199256897,0.405191876940989,-0.00934278964996338,-0.576198518276215,0.699102491140366,0.527995884418488,-0.143243998289108,0.667607560753822,-0.229824185371399,-1.05579674243927,0.50410433113575,-0.0581532716751099,-0.710205435752869,0.700664132833481,-0.380177199840546,-0.929455071687698,0.763104498386383,-0.00813555717468262,-0.777359068393707,1.12265613675117,-0.540201276540756,-1.01515978574753,0.923231512308121,-1.39798438549042,-0.829887539148331,0.959312468767166, +-1.5278605222702,-0.702818274497986,0.296454588882625,-1.61724251508713,-0.690849397331476,0.338924655690789,-1.7929675579071,-0.220293626189232,0.714604377746582,-0.658855007961392,-0.0566230416297913,0.405203917460767,-1.79819846153259,-0.58027321100235,-0.0938838105648756,-1.86091816425323,-0.224480614066124,0.0335991205647588,-1.14445906877518,0.153586506843567,0.0892997561022639,-1.35150843858719,0.43208122253418,-0.0899536963552237,-1.62998539209366,-0.521151795983315,-0.474920477718115,-1.78920716047287,-0.548661537468433,-1.24474966526031,-0.465824041515589,-0.0124831795692444,-0.720530053600669,-0.68266960978508,-0.418037846684456,-0.642930318601429,-1.60925751924515,-0.433736328035593,-0.742752254009247,-0.482132196426392,-1.02497288584709,-0.813647359609604,-0.141703724861145,-0.633676506578922,-0.431715610315564,-1.07308655977249,-1.08453062921762,-0.234530135989189,-1.08068041503429,-1.20512703061104,-0.34988971054554,-1.48645323514938,-1.11354440450668,-0.272629275918007,-0.985318198800087,-1.22895535826683,-0.98162018507719,-0.50640095770359,-0.664396107196808,-0.732551842927933,-1.51430678367615,-0.826699174940586,-0.886703640222549,-1.00190676748753,-1.17175349593163,-1.07429412007332,-1.49603182077408,0.198167353868484,-1.07008498907089,-1.10530558228493,0.348672270774841,-1.22549563646317,-1.01910609006882,0.160700380802155,-1.19000518321991,-1.26239091157913,-0.984275907278061,-1.38004940748215,-0.679380714893341,1.19631010293961,-1.11572435498238,-1.06424757838249,0.480861157178879,-1.30167061090469,-1.30754435062408,-0.110649228096008,-1.48133325576782,-0.915021151304245,0.726175151765347,-1.49821931123734,-0.685641776770353,-0.827291250228882,-1.47060233354568,-0.817510493099689,-0.690182939171791,-1.28093063831329,-0.53597466647625,-1.00414535403252,-1.3067302107811,-0.479075655341148,-1.07030099630356,-1.32693088054657,-0.912213213741779,-0.807455763220787,-1.37671226263046,-0.927229791879654,-0.78859743475914,-1.31838649511337,-0.598909884691238,-0.653992518782616,-1.2791143655777,-0.608937129378319, +-0.808786571025848,-1.11175054311752,-0.598179504275322,-1.06441396474838,-1.1706657409668,0.787236899137497,-1.20468887686729,-0.890166029334068,0.571724638342857,-1.10826052725315,-0.821269005537033,1.57584494352341,-0.782563865184784,-0.823473274707794,1.31008371710777,-1.17940998077393,-0.972627803683281,1.19634898006916,-0.681549586355686,-0.976920634508133,1.17039068043232,-0.841271072626114,-0.795113861560822,1.62441331148148,-0.530480444431305,-0.767192721366882,1.63084030151367,-0.492553792893887,-0.978784650564194,1.67738610506058,-0.0591112598776817,-0.328582569956779,1.93045377731323,0.114889897406101,-0.4779550768435,1.87314605712891,-0.0507856160402298,-0.899590194225311,1.40686544775963,-0.483478710055351,-1.39660447835922,0.877298891544342,-1.02005872130394,-0.546795669943094,1.846036195755,-0.136590752750635,-0.690793193876743,0.115847527980804,-1.13520312309265,-0.576643787324429,0.56727060675621,-0.743501931428909,0.691256366670132,0.246221661567688,-1.05692231655121,0.185900501906872,0.752125665545464,0.319283127784729,0.18562250956893,0.813079461455345,0.76911848783493,0.391148805618286,0.82366144657135,1.20951104164124,0.988360561430454,1.34793883562088,-0.305606409907341,0.760788884013891,0.655351221561432,-0.678399264812469,0.562732085585594,1.7129413485527,0.527841135859489,0.728634811937809,1.69907456636429,0.15134984254837,0.701676249504089,1.77462631464005,0.329329505562782,0.596256361993776,1.72145682573318,0.53427392244339,0.344773926102201,1.93588203191757,-0.0956884864717722,0.450970225036144,1.67578202486038,-0.662277512252331,0.366971559822559,1.93965005874634,-0.231577701866627,0.289740719162504,1.95448046922684,-0.0881787706166506,0.346520926630525,1.68304747343063,-0.927390992641449,0.319237407124071,1.72064328193665,-0.84491965174675,0.41099131878523,1.43192458152771,-0.871484503149986,0.307602681219578,1.74548715353012,-0.646902859210968,0.405268616974354,0.616396486759186,-1.51286596059799,0.0579869414499203,0.0112196803092957,-0.224234879016876,0.0432001032855371,0.0672447085380554, +-0.168509900569916,-0.0662374310195446,-0.0364024043083191,0.176073409616947,-0.00287999957799911,-0.00138533115386963,-0.216194942593575,-0.0256665721535683,0.0515061020851135,-0.453244477510452,-0.0712118707597256,-0.0306283831596375,0.119402542710304,0.0833177715539932,0.073267936706543,-0.2198805809021,0.0943055599927902,0.109074473381042,-0.676274642348289,0.152993638068438,-0.232719302177429,-0.574292115867138,0.0646074116230011,-0.178754091262817,-0.839320033788681,0.0431385636329651,0.388562500476837,0.676184415817261,0.0940810069441795,0.0770504474639893,0.236798003315926,0.232813492417336,0.676760643720627,0.745925232768059,0.473876506090164,0.327773213386536,-0.416621088981628,1.13315790891647,0.0469188690185547,-0.705767840147018,0.99786102771759,-0.0231715440750122,-1.10475385189056,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,0.873636121163145,-0.376826524734497,-0.367784887552261,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.34601473808289,-0.80495909973979,-0.174851790070534,0.554421335458755,-0.779981128871441,-0.00255656242370605,0.606260657310486,-0.893889561295509,-0.280525714159012,1.31610041856766,-1.08115969598293,-0.155530869960785,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,0.62409570813179,-1.08069442212582,-0.15588390827179,1.38747662305832,-0.628132402896881,-0.104847259819508,1.25783395767212,-0.479136273264885,-0.867621898651123,1.14789520204067,-0.954155210405588,-0.0851109549403191,0.968382424547599,-0.93065767432563,-0.109639555215836,0.789135560393333,-0.736478731036186,-0.400099456310272,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628, +-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214, +1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995, +1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776, +0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182, +0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.095344141173058,-1.53991746902466,1.17970952391624,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387, +0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859, +-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595, +-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227, +-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766, +-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119, +-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046, +0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011, +-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663, +-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738, +0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991, +-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605, +-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627, +-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585, +-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285, +-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146, +-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808, +-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028, +-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268, +-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622, +0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497, +-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,-1.25670471787453,-0.932411693036556,-0.580859676003456,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,-0.539233446121216,-0.890279395738617,0.0350731508806348,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695, +-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.72025540471077,-0.972490146756172,-0.899271011352539,-0.984674960374832,-0.969035344198346,-0.769197642803192,-0.899476598482579,-0.79539099894464,-1.01158782839775,-0.93474754691124,-0.839308973401785,-1.06500226259232,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.719780698418617,-0.905225321650505,-1.06397993862629,-0.978769481182098,-0.943699356168509,-0.732679754495621,-1.1035061776638,-0.997920505702496,-0.806534633040428,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.62458798289299,0.156162064522505, +-1.61309748888016,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959, +0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267, +-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674, +-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497, +-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814, +0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696, +-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432, +-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-1.27433297038078,-0.692831486463547,1.16278174519539,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.907496950359928,-1.27116760611534,0.363996639847755,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.07360804826021,-0.883280169218779,0.384527459740639,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044, +-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341, +-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607, +-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-1.14816054701805,-1.25225827097893,0.22861410677433,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228, +-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.52062526345253,-1.49900907278061,0.488896064460278,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-1.0672041028738,-1.25326484441757,0.138262093067169,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779, +-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542, +-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768, +-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346, +-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155, +-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.0962461829185486,-1.91317826509476,-0.459616638720036,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486, +-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.325067788362503,-1.83284968137741,-0.560099676251411,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0205637663602829,-1.48972344398499,-0.914397053420544,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223, +0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662, +-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.924896318465471,-0.885557159781456,0.090619221329689,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718, +-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.824748605489731,-1.79644429683685,-0.255595020949841,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.545629471540451,-1.74815338850021,0.616559252142906,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594, +-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,0.0172350932398331,-1.90063774585724,0.273659318685532,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.101407632231712,-1.89779084920883,0.366249352693558,0.00376266732564545,-1.90259951353073,0.240455269813538,-0.172410029917955,-1.90172868967056,0.385693838819861,-0.0977969076484442,-1.89424967765808,0.271674454212189,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.424873291862241,-1.87907129526138,0.198870584368706,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.264070093631744,-0.803282603621483,-1.05939481407404,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794, +-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496, +-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379, +0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502, +-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008, +-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736, +0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917, +-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686, +-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.429251529276371,-1.4157133102417,0.788258891552687,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.449169829487801,-1.77463334798813,0.674642011523247,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803, +-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119, +-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.266774364281446,-1.83619451522827,0.316911831498146,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906, +-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391, +0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.667574539780617,-1.50847029685974,0.585083772428334,0.819199977442622,-1.32262486219406,0.306689068675041,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803, +0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108, +0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755, +-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244, +0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831, +-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.10827336460352,-0.93781503289938,-0.382747139548883,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863, +1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.694319739937782,-1.1428180038929,-0.326081916689873,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.997398681938648,-0.501885333098471,-0.397656708955765,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826, +-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0486346483230591,-0.303709432482719,0.132841855287552,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972, +0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.637745469808578,-0.995427191257477,-0.0856948709115386,-0.577570050954819, +-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.524519771337509,-0.792090430855751,0.199291825294495,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.847270093858242,-0.89885928138392,0.119447976350784,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.827066659927368,-1.0932784229517,0.134561866521835,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712, +0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.789123580732848,-0.993153437972069,-1.21781891584396,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.7353532910347,-0.503583252429962,-0.484055027365685,-1.72601342201233,-0.550957024097443,-0.54945083707571,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.463705003261566,-1.1440646648407,-0.673177562654018,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.0511702299118042,-0.539458140730858,-0.328643925487995,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342, +-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.685561671853065,-0.861295877490193,-1.05978813767433,-0.775165332395318,-1.04452644661069,-0.660626988857985,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812, +0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874, +0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604, +-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861, +-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651, +-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111, +-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529, +0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468, +-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149, +0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773, +0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199, +-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734, +-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356, +-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127, +-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986, +-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789, +-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071, +-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252, +-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884, +-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575, +-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515, +0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391, +0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273, +0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762, +-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867, +-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652, +1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985, +-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568, +1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786, +0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043,0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988, +-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297, +-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676, +0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178, +-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886, +-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055, +-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737, +0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234, +0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957, +-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104, +0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559, +-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114, +0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697, +1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561, +-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277, +0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058, +0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627, +1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461, +-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825, +-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096, +-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276, +0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017, +-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579, +0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161, +0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717, +0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208, +-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574, +0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743, +-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896, +0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014, +0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263, +-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807563818208, "Geometry::Mouth_Upper_Left", "Shape" { + Version: 100 + Indexes: *2773 { + a: 636,640,642,658,666,667,668,670,671,681,699,701,702,705,707,709,710,711,713,715,716,717,719,751,753,755,757,758,767,773,781,782,783,784,785,786,787,788,795,796,801,804,812,813,814,816,818,819,820,822,824,825,905,907,909,910,911,912,913,914,916,918,954,955,956,957,958,959,960,961,962,971,972,973,974,975,977,982,989,993,1014,1017,1025,1047,1052,1055,1060,1063,1068,1339,1356,1357,1358,1367,1392,1433,1434,1435,1437,1439,1440,1444,1459,1460,1461,1504,1505,1506,1510,1514,1515,1516,1517,1518,1519,1524,1525,1526,1527,1528,1529,1530,1531,1532,1536,1537,1538,1539,1540,1541,1545,1546,1549,1550,1553,1676,1690,1691,1692,1693,1694,1695,1703,1717,1729,1772,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1787,1788,1804,1805,1806,1807,1845,1846,1849,1850,1851,1853,1854,1855,1857,1858,1859,1861,1862,1863,2066,2067,2068,2069,2079,2080,2081,2082,2083,2084,2088,2089,2090,2091,2092,2093,2094,2126,2127,2128,2141,2142,2143,2144,2145,2146,2147,2148,2149,2165,2166,2167,2168,2169,2170,2171,2175,2176,2177,2178,2179,2180,2181,2182,2183,2185,2186,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2223,2231,2301,2302,2321,2324,2373,2387,2395,2409,2555,2556,2557,2579,2647,2648,3044,3045,3056,3057,3058,3059,3060,3061,3062,3084,3085,3086,3103,3104,3105,3106,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3137,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043, +6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6151,6152,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6513,6514,6515,6544,6545,6546,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592, +6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002, +7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437, +7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7533,7534,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7895,7896,7897,7926,7927,7928,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986, +7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396, +8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 + } + Vertices: *8319 { + a: -0.00252258777618408,0.00510454177856445,0,-0.000482916831970215,0.000974178314208984,0,-8.52346420288086e-05,0.000172138214111328,0,-0.0027129054069519,0.00547313690185547,0,-0.00449669361114502,0.00907230377197266,0,-0.00831127166748047,0.0167684555053711,0,-0.00255322456359863,0.00515127182006836,0,-0.00660794973373413,0.013331413269043,0,-0.00512093305587769,0.0103316307067871,0,-0.00236749649047852,0.00478243827819824,0,-0.00196263194084167,0.00395965576171875,0,-0.000319033861160278,0.000643730163574219,0,-0.00700181722640991,0.0141263008117676,0,-0.00265562534332275,0.00535774230957031,0,-0.00873899459838867,0.0176310539245605,0,-0.0033840537071228,0.00682735443115234,0,-0.00552904605865479,0.0111551284790039,0,-0.000333786010742188,0.000674962997436523,0,-0.0010221004486084,0.00206232070922852,0,-0.000531792640686035,0.00107288360595703,0,-0.0037848949432373,0.0076301097869873,0,-2.95639038085938e-05,5.96046447753906e-05,0,-0.000517487525939941,0.00104761123657227,0,-0.000679628981743008,0.00137138366699219,0,-0.00113238336052746,0.00228452682495117,0,-0.000507354736328125,0.00102376937866211,0,-0.000583171844482422,0.00117635726928711,0,-0.00126779731363058,0.00255775451660156,0,-0.011433151550591,0.023066520690918,0,-0.00320342183113098,0.00646305084228516,0,-0.00495558977127075,0.00999784469604492,0,-0.00808948278427124,0.0163207054138184,0,-0.00477957725524902,0.0096430778503418,0,-0.00126276328228414,0.0025477409362793,0,-0.00715041160583496,0.0144262313842773,0,-0.00517523288726807,0.0104413032531738,0,-0.000870208605192602,0.00175571441650391,0,-8.52449447847903e-05,0.000172138214111328,0,-0.000302672386169434,0.000610828399658203,0,-0.000113489106297493,0.0002288818359375,0,-0.011433151550591,0.023066520690918,0,-0.00434840843081474,0.00877285003662109,0,-0.00253604352474213,0.00511646270751953,0,-0.000679627060890198,0.00137138366699219,0,-0.00715041160583496,0.0144262313842773,0,-0.00326603651046753,0.00658941268920898,0,-0.0078386664390564,0.0158147811889648,0,-0.00330817699432373, +0.00667428970336914,0,-0.0072782039642334,0.014683723449707,0,-0.00218081474304199,0.00439977645874023,0,-0.00210988521575928,0.0042567253112793,0,-0.00064694881439209,0.00130510330200195,0,-0.000720307230949402,0.00145339965820313,0,-0.00121365487575531,0.00244855880737305,0,-0.000589251518249512,0.00118875503540039,0,-0.00213265419006348,0.0043025016784668,0,-0.00562703609466553,0.0113525390625,0,-0.00500118732452393,0.0100898742675781,0,-0.000160336494445801,0.000323295593261719,0,-0.00182974338531494,0.00369167327880859,0,-0.00392371416091919,0.00791597366333008,0,-0.00342774391174316,0.00691556930541992,0,-4.56571578979492e-05,9.20295715332031e-05,0,-0.0011676549911499,0.00235557556152344,0,-0.00160777568817139,0.00324344635009766,0,-0.00358414649963379,0.00723075866699219,0,-0.00618791580200195,0.012484073638916,0,-0.00480431318283081,0.00969266891479492,0,-0.00177931785583496,0.00358963012695313,0,-0.00463753938674927,0.00935649871826172,0,-0.00405099987983704,0.00817298889160156,0,-0.00255763530731201,0.00515985488891602,0,-0.0081334114074707,0.0164093971252441,0,-0.00868022441864014,0.0175127983093262,0,-0.00920102000236511,0.0185632705688477,0,-0.0053369402885437,0.0107674598693848,0,-0.000449319020844996,0.000906467437744141,0,0.00704121589660645,-0.0046994686126709,0,0.0116464495658875,-0.0036470890045166,0,-8.94069671630859e-06,0,2.86102294921875e-06,0.0010521411895752,-0.000509262084960938,0,0.000724494457244873,-0.000466346740722656,-5.7220458984375e-06,0.00528192520141602,-0.00355863571166992,0,0.00725024938583374,-0.00296950340270996,0,0.00623166561126709,-0.00173163414001465,0,0.0011594295501709,-0.000744342803955078,0,0.00926566123962402,-0.00623893737792969,0,0.000571489334106445,-0.000378608703613281,0,3.46899032592773e-05,0,-9.5367431640625e-06,-1.16229057312012e-05,2.33650207519531e-05,0,-0.0070796012878418,0.0142831802368164,0,-0.00384116172790527,0.00774955749511719,0,-0.00639200210571289,0.0128960609436035,0,-0.00135266780853271,0.00273847579956055,0,-1.97887420654297e-05,4.00543212890625e-05, +0,-0.000623464584350586,0.00125789642333984,0,-0.000302731990814209,0.000610828399658203,0,-0.000658631324768066,0.00132894515991211,0,-0.00788962841033936,0.0159173011779785,0,-0.00303894281387329,0.00613117218017578,0,-0.000113490968942642,0.0002288818359375,0,-0.00427061319351196,0.00861597061157227,0,-0.00139164924621582,0.0028076171875,0,-0.0035330057144165,0.00712251663208008,0,-0.000365495681762695,0.000737190246582031,0,-0.00344705581665039,0.00695466995239258,0,-0.00134804844856262,0.00271987915039063,0,-0.00193199515342712,0.00389766693115234,0,-0.00683969259262085,0.0137991905212402,0,-0.0010221004486084,0.00206232070922852,0,-0.00245875120162964,0.00496053695678711,0,-0.0033336877822876,0.00672578811645508,0,-0.00230133533477783,0.00464296340942383,0,-0.00205159187316895,0.00413894653320313,0,-0.00273090600967407,0.00550985336303711,0,-0.00890898704528809,0.0179738998413086,0,-0.00134807825088501,0.00271987915039063,0,-0.000302731990814209,0.000610828399658203,0,-0.00273090600967407,0.00550985336303711,0,-0.000973403453826904,0.00196409225463867,0,-0.00487470626831055,0.00983476638793945,0,-0.0061643123626709,0.0124368667602539,0,-0.00129616260528564,0.00262236595153809,0,-0.00396394729614258,0.00799751281738281,0,-0.00263082981109619,0.00530767440795898,0,-0.00384116172790527,0.00774955749511719,0,-0.000696539878845215,0.00140523910522461,0,-0.00210988521575928,0.0042567253112793,0,-0.000305891036987305,0.000617027282714844,0,-0.00111055374145508,0.00224065780639648,0,-0.00330030918121338,0.0066530704498291,0,-5.84125518798828e-05,0.000117778778076172,0,-5.84125518798828e-05,0.000117778778076172,0,-1.97887420654297e-05,4.00543212890625e-05,0,-6.7591667175293e-05,0.000136852264404297,0,-8.97645950317383e-05,0.000181198120117188,0,-0.0080336332321167,0.0162081718444824,0,-0.0051734447479248,0.0104374885559082,0,-0.00109142158180475,0.00220203399658203,0,-0.00252487510442734,0.00509405136108398,0,-0.00136173143982887,0.00274753570556641,0,-0.00190295279026031,0.00383901596069336,0,-0.000572800636291504,0.00115585327148438, +0,-8.52346420288086e-05,0.000172138214111328,0,-0.000219523906707764,0.000442981719970703,0,-0.000182867050170898,0.000369071960449219,0,-0.000374197959899902,0.000754833221435547,0,-0.000997185707092285,0.00201177597045898,0,-0.000821113586425781,0.00165653228759766,0,-0.00926405191421509,0.0186905860900879,0,-0.00954878330230713,0.0192646980285645,0,-0.00666362047195435,0.0134439468383789,0,-0.00293302536010742,0.00591754913330078,0,-0.000646921165753156,0.00130510330200195,0,-0.00072031281888485,0.00145339965820313,0,-0.000973401591181755,0.00196409225463867,0,-0.000338941812515259,0.000683784484863281,0,-0.00626823306083679,0.0126461982727051,0,-0.00493776798248291,0.00996208190917969,0,-0.00588202476501465,0.0118670463562012,0,-0.00342774391174316,0.00691556930541992,0,-0.00140237808227539,0.00282907485961914,0,-5.84125518798828e-05,0.000117778778076172,0,-0.00184115767478943,0.00371456146240234,0,-0.00255325436592102,0.00515127182006836,0,-0.00132018327713013,0.00266361236572266,0,-0.00297462940216064,0.00600147247314453,0,-0.00392371416091919,0.00791597366333008,0,-0.00137484073638916,0.00277376174926758,0,-0.0046994686126709,0.00948143005371094,0,-0.0060046911239624,0.0121145248413086,0,-0.00382661819458008,0.0077204704284668,0,-0.00106239318847656,0.00214338302612305,0,-0.00232386589050293,0.00468826293945313,0,-0.000281929969787598,0.000568866729736328,0,-0.000572800636291504,0.00115585327148438,0,-0.000613093376159668,0.00123691558837891,0,-0.001050665974617,0.00211954116821289,0,-0.000173196196556091,0.000349521636962891,0,-0.00012071430683136,0.000243663787841797,0,-0.000449314713478088,0.000906467437744141,0,-0.000953912734985352,0.00192451477050781,0,-0.00613129138946533,0.0123701095581055,0,-0.00838065147399902,0.0169081687927246,0,-0.00741559267044067,0.0149612426757813,0,-0.00415188074111938,0.0083765983581543,0,-0.000160276889801025,0.000323295593261719,0,-5.84125518798828e-05,0.000117778778076172,0,-0.00109142065048218,0.00220203399658203,0,-0.000679612159729004,0.00137138366699219,0,-1.97887420654297e-05, +4.00543212890625e-05,0,-0.00415194034576416,0.0083765983581543,0,-0.000173211097717285,0.000349521636962891,0,-0.000150799751281738,0.000304222106933594,0,-0.00064694881439209,0.00130510330200195,0,-4.56571578979492e-05,9.20295715332031e-05,0,-0.000281870365142822,0.000568866729736328,0,-0.000281929969787598,0.000568866729736328,0,-0.00236797332763672,0.00477743148803711,0,-0.000754117965698242,0.00152158737182617,0,-0.00894647836685181,0.0180497169494629,0,-0.00850194692611694,0.0171527862548828,0,-0.00894647836685181,0.0180497169494629,0,-0.00684496760368347,0.0138096809387207,0,-0.00384122133255005,0.00774955749511719,0,-0.00538274645805359,0.0108599662780762,0,-0.00648832321166992,0.0130906105041504,0,-0.00442147254943848,0.00892066955566406,0,-0.00818192958831787,0.0165071487426758,0,-0.00886857509613037,0.0178923606872559,0,-0.00836163759231567,0.0168695449829102,0,-0.00743454694747925,0.0149993896484375,0,-0.00822529196739197,0.0165948867797852,0,-0.00134146341588348,0.00270652770996094,0,-0.00347127020359039,0.0070033073425293,0,-0.00309944152832031,0.00625324249267578,0,-0.00102209637407213,0.00206232070922852,0,-0.00315992534160614,0.00637531280517578,0,-0.00349386036396027,0.0070490837097168,0,-0.00036544181057252,0.000737190246582031,0,-0.00191740691661835,0.00386857986450195,0,-0.00262235105037689,0.00529050827026367,0,-0.000258862972259521,0.000522136688232422,0,-0.00106234848499298,0.00214338302612305,0,-0.000461260438896716,0.0009307861328125,0,-0.00177931785583496,0.00358963012695313,0,-1.97887420654297e-05,4.00543212890625e-05,0,-0.00936661846935749,0.018897533416748,0,-0.00583887100219727,0.0117802619934082,0,-0.00468459725379944,0.00945138931274414,0,-0.011433151550591,0.023066520690918,0,-0.00579389929771423,0.0116891860961914,0,-0.00578877329826355,0.0116791725158691,0,-0.00783868972212076,0.0158147811889648,0,-0.00340408086776733,0.00686788558959961,0,0.00320589542388916,-0.00177907943725586,0,0.00257778167724609,-0.00173115730285645,0,0.000446438789367676,-0.000286579132080078,0,0.00963950157165527, +-0.00285124778747559,0,-3.45706939697266e-06,0,9.5367431640625e-07,0.00911879539489746,-0.00612139701843262,0,0.0106980204582214,-0.00379633903503418,0,0.00290751457214355,-0.000780820846557617,0,0.00387656688690186,-0.00255703926086426,0,0.00777924060821533,-0.00524401664733887,0,-0.000482935458421707,0.000974178314208984,0,-0.000403083860874176,0.000813007354736328,0,-0.000482935458421707,0.000974178314208984,0,-0.00109142065048218,0.00220203399658203,0,-0.000250203534960747,0.000504970550537109,0,-0.000403083860874176,0.000813007354736328,0,-8.97571444511414e-05,0.000181198120117188,0,-0.000250205397605896,0.000504970550537109,0,-0.00428807735443115,0.0086512565612793,0,-0.000449329614639282,0.000906467437744141,0,-0.0114331543445587,0.023066520690918,0,-0.00933298468589783,0.018829345703125,0,-0.0114331543445587,0.023066520690918,0,-0.0114331543445587,0.023066520690918,0,-0.00779440999031067,0.0157256126403809,0,-2.96086072921753e-05,5.96046447753906e-05,0,-4.56273555755615e-05,9.20295715332031e-05,0,-8.52420926094055e-05,0.000172138214111328,0,-4.56571578979492e-05,9.20295715332031e-05,0,-2.95639038085938e-05,5.96046447753906e-05,0,-2.95639038085938e-05,5.96046447753906e-05,0,-2.95639038085938e-05,5.96046447753906e-05,0,-0.00141440331935883,0.0028533935546875,0,-0.00142824649810791,0.00288152694702148,0,-0.00258635729551315,0.0052180290222168,0,-0.00177612900733948,0.00358343124389648,0,-0.00563399493694305,0.0113668441772461,0,-0.00393038988113403,0.00792980194091797,0,-0.00848454236984253,0.017117977142334,0,-0.00730231404304504,0.0147323608398438,0,-0.00804448127746582,0.0162301063537598,0,-0.00876188278198242,0.0176773071289063,0,-0.0047372579574585,0.00955772399902344,0,-0.00662708282470703,0.0133705139160156,0,-0.000931918621063232,0.00188016891479492,0,-0.00259876251220703,0.00524330139160156,0,-5.84125518798828e-05,0.000117778778076172,0,0.177021726965904,3.48091125488281e-05,-5.24520874023438e-05,0.0915490984916687,4.69684600830078e-05,0,0.824972629568947,-0.0083765983581543,-0.0923929214477539,0.936384737498884, +-0.00705051422119141,-0.128968238830566,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.898055076620949,-0.00750827789306641,-0.123711585998535,0,3.48091125488281e-05,0,0.854470551028498,-0.00802421569824219,-0.101079940795898,0,3.48091125488281e-05,0,0.590696632862091,-0.00553798675537109,0.118556976318359,0,3.48091125488281e-05,0,0.90392714738482,-0.048774242401123,-0.111408233642578,0,3.48091125488281e-05,0,0.573289752006531,-0.242793083190918,0.0465564727783203,0,3.4332275390625e-05,0,0,4.76837158203125e-05,0,0,2.84910202026367e-05,0,0,4.75049018859863e-05,0,0,2.19047069549561e-05,0,0,3.79681587219238e-05,0,0,3.85046005249023e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0.497763425111771,0.150196075439453,-0.019927978515625,0.485300362110138,0.00922012329101563,-0.00209808349609375,0.505659222602844,-0.0680832862854004,0.000880241394042969,0.507520496845245,-0.122427940368652,0.0302610397338867,0.452507436275482,0.183187007904053,-0.0353279113769531,0.334241032600403,0.0858635902404785,-0.0402612686157227,0,2.1815299987793e-05,0,0,2.82526016235352e-05,0,0,3.14712524414063e-05,0,0.0201053600758314,4.42266464233398e-05,0,0.048640500754118,3.09944152832031e-05,0,0,4.11272048950195e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.48091125488281e-05,0,0,4.48226928710938e-05,0,0,3.24249267578125e-05,0,0,4.1961669921875e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,4.16934490203857e-05,0,0,4.50611114501953e-05,0,0,4.48226928710938e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06, +0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.66893005371094e-06,0.171798080205917,-0.00320696830749512,0.0268955230712891,0.0447227954864502,4.69684600830078e-05,0,0.85746106505394,-0.00775527954101563,0.013035774230957,0.955262452363968,-0.00578451156616211,-0.0528621673583984,0.325180053710938,-0.000482559204101563,0.250858306884766,0.326383590698242,-0.000498771667480469,0.256072998046875,0.481736898422241,-0.00677394866943359,0.351207733154297,0.482564449310303,-0.00646448135375977,0.342196464538574,0.85791540145874,-0.0265369415283203,0.447510719299316,0.841803908348083,-0.0263853073120117,0.425458908081055,0.906571984291077,0.0181732177734375,0.368027687072754,0.829191863536835,-0.0244107246398926,0.318216323852539,0.943496942520142,-0.0151834487915039,0.226361274719238,0.884710133075714,-0.0170493125915527,0.209941864013672,0.977782487869263,-0.0104484558105469,0.0708961486816406,0.885019659996033,-0.0100479125976563,0.126144409179688,0.74989926815033,-0.0185666084289551,0.442147254943848,0.76035749912262,-0.019716739654541,0.456205368041992,0.275064468383789,-7.77244567871094e-05,0.217853546142578,0.275003671646118,-7.39097595214844e-05,0.212673187255859,0.227326631546021,4.00543212890625e-05,0.181761741638184,0.227990627288818,3.19480895996094e-05,0.177322387695313,0.227215528488159,0.000121593475341797,0.180655479431152,0.228738784790039,0.000129222869873047,0.177083969116211,0.186002254486084,0.000455379486083984,0.146267890930176,0.18603777885437,0.000466823577880859,0.143571853637695,0.174604415893555,0.00277519226074219,0.125306129455566,0.176177978515625,0.00265645980834961,0.133537292480469,0.145880460739136,0.00383663177490234,0.0886478424072266,0.148858308792114,0.00360441207885742,0.0983762741088867,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05, +0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.933965444564819,-0.00696516036987305,-0.0330057144165039,0.958455204963684,-0.010472297668457,0.0853385925292969,0.933061957359314,-0.0158228874206543,0.213275909423828,0.864040732383728,-0.00910711288452148,0.346475601196289,0.855316758155823,-0.0274438858032227,0.43980598449707,0.746855497360229,-0.0192394256591797,0.447322845458984,0.47925066947937,-0.0066375732421875,0.345527648925781,0.325862407684326,-0.000496387481689453,0.253240585327148,0.275235891342163,-7.39097595214844e-05,0.215081214904785,0.227705240249634,3.19480895996094e-05,0.179373741149902,0.2279953956604,0.000118255615234375,0.178745269775391,0.18595027923584,0.000463008880615234,0.14478588104248,0.176514625549316,0.00271797180175781,0.128881454467773,0.149866580963135,0.00369071960449219,0.0956287384033203,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.889189690351486,-0.00748109817504883,-7.72476196289063e-05,0.916553497314453,-0.0102157592773438,0.117774963378906,0.906364023685455,-0.0176501274108887,0.211372375488281,0.840096414089203,-0.0218515396118164,0.327814102172852,0.848526358604431,-0.0267972946166992,0.431446075439453,0.750337958335876,-0.018826961517334,0.445115089416504,0.479969024658203,-0.00651836395263672,0.342812538146973,0.32538104057312,-0.000486373901367188,0.251615524291992,0.275114774703979,-8.34465026855469e-05,0.213501930236816,0.227877140045166,3.19480895996094e-05,0.178040504455566,0.228482246398926,0.000131130218505859,0.177671432495117,0.186014413833618,0.000465869903564453,0.14399528503418,0.177677392959595,0.00275278091430664,0.127182006835938,0.148496627807617,0.00378084182739258,0.0911283493041992,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.612029045820236,-0.00481796264648438,0.175751686096191,0.629496291279793, +-0.0255270004272461,0.17575740814209,0.463333129882813,-0.0360116958618164,0.153764724731445,0.325198769569397,-0.0133252143859863,0.125073432922363,0.462388634681702,-0.0102972984313965,0.233264923095703,0.497253179550171,-0.00672340393066406,0.315954208374023,0.404783248901367,-0.0023503303527832,0.304374694824219,0.318607330322266,-0.000169754028320313,0.26786994934082,0.267921209335327,-9.5367431640625e-06,0.235767364501953,0.221738815307617,3.19480895996094e-05,0.196374893188477,0.221045970916748,5.91278076171875e-05,0.19394588470459,0.176603078842163,0.000167369842529297,0.15145206451416,0.139865398406982,0.000834465026855469,0.116106986999512,0.0934858322143555,0.00110721588134766,0.0692882537841797,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.915323495864868,-0.017364501953125,-0.0340557098388672,0.919848620891571,-0.0118117332458496,0.0512790679931641,0.828837990760803,-0.000926494598388672,0.162954330444336,0.818051278591156,0.032289981842041,0.276833534240723,0.750455975532532,-0.018953800201416,0.368745803833008,0.689999222755432,-0.0132169723510742,0.416604995727539,0.452260255813599,-0.00453424453735352,0.327286720275879,0.324785947799683,-0.000325679779052734,0.256829261779785,0.274127721786499,-4.24385070800781e-05,0.221102714538574,0.226389408111572,3.19480895996094e-05,0.185504913330078,0.225543975830078,9.10758972167969e-05,0.184713363647461,0.183051347732544,0.000309944152832031,0.147438049316406,0.16685938835144,0.00172948837280273,0.131160736083984,0.129471778869629,0.00233602523803711,0.0879487991333008,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.574647933244705,-0.245561122894287,0.0684738159179688,0.303208738565445,-0.245890140533447,0.0125217437744141,0.282934248447418,-0.309534549713135,0.00621318817138672,0.386302828788757,-0.28986930847168,0.0535869598388672,0.0737590789794922,-0.0257177352905273,0.0271177291870117,0.0570170879364014, +4.05311584472656e-05,0.0338230133056641,0.172164678573608,3.19480895996094e-05,0.117496490478516,0.181047439575195,2.288818359375e-05,0.133103370666504,0.102182626724243,3.19480895996094e-05,0.088775634765625,0.141053915023804,3.19480895996094e-05,0.13383674621582,0.127873420715332,3.19480895996094e-05,0.0936336517333984,0.118665933609009,2.38418579101563e-05,0.0844593048095703,0.167064428329468,3.19480895996094e-05,0.125926971435547,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0.0660686492919922,3.24249267578125e-05,0.0506210327148438,0,3.48091125488281e-05,0,0,4.45842742919922e-05,0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,0.00302529335021973,-0.00239741802215576,0,0,4.1663646697998e-05,0,5.50746917724609e-05,3.79085540771484e-05,2.00271606445313e-05,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.282999038696289,-0.109869956970215,0.0478153228759766,0.332331895828247,-0.109879493713379,0.0499839782714844,0.389280319213867,-0.101694345474243,0.13831615447998,0.321688055992126,-0.106125116348267,0.128779411315918,0.424111127853394,-0.0987229347229004,0.133784294128418,0.335032820701599,-0.109867334365845,0.035161018371582,0.195988535881042,-0.0597870349884033,0.0312795639038086,0.32635509967804,-0.0613646507263184,0.107706069946289,0.0479342937469482,4.69684600830078e-05,0.00652885437011719,0.20349246263504,-0.00254964828491211,0.074894905090332,0.303685188293457,-0.106232404708862,0.12313175201416,0.246635317802429,-0.109879493713379,0.0333385467529297,0.0135810375213623,-0.00351238250732422,0.00503826141357422,0.0630338191986084,3.19480895996094e-05,0.0373916625976563,0.0323264598846436,2.05039978027344e-05,0.0191764831542969,0.0415744781494141,3.19480895996094e-05,0.0260963439941406,0.0419507026672363,3.19480895996094e-05,0.0248861312866211,0.0442538261413574,3.19480895996094e-05,0.0271015167236328,0.0330715179443359,3.19480895996094e-05,0.0210704803466797,0.0525181293487549,3.24249267578125e-05,0.0585222244262695,0.0382165908813477,-8.10623168945313e-05,0.0320730209350586,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0.360877126455307,-0.0350284576416016,0.0116701126098633,0.497473418712616,-0.0878386497497559,0.0411758422851563,0.417689740657806,-0.119870901107788,0.0465774536132813,0.293312311172485,-0.0719892978668213,0.0131855010986328,0.363871932029724,0.000580787658691406,0.00668525695800781,0.491624265909195,0.0097346305847168,0.0231876373291016,0.359178841114044,0.0369744300842285,0.00499343872070313,0.508098185062408,0.107306241989136,0.00122928619384766,0.351651430130005,0.0579197406768799, +0.00179576873779297,0.495341598987579,0.148296356201172,-0.0152559280395508,0.300800114870071,0.0241317749023438,0.0251398086547852,0.394699305295944,0.0646347999572754,0.0136947631835938,0.201220273971558,-0.0327236652374268,0.0881938934326172,0.258761286735535,-0.0373189449310303,0.106966972351074,0.224652409553528,-0.0257048606872559,0.0789327621459961,0.359983801841736,-0.0690572261810303,0.108209609985352,0.287291169166565,-0.0442836284637451,0.0926609039306641,0.42311692237854,-0.090219259262085,0.13056468963623,0.328560948371887,-0.131807804107666,0.0666036605834961,0.394659996032715,-0.137356281280518,0.136049270629883,0.250103712081909,-0.161382675170898,-0.00186252593994141,0.298503875732422,-0.213136196136475,0.0205230712890625,0.223536610603333,-0.16014552116394,0.0121431350708008,0.216166138648987,-0.13278865814209,0.00993061065673828,0.282824695110321,-0.160584449768066,0.0163192749023438,0.354533135890961,-0.195128202438354,0.0684089660644531,0.42047119140625,-0.0473990440368652,0.0231399536132813,0.427733361721039,0.00419449806213379,0.0177135467529297,0.432166695594788,0.0600640773773193,0.00652217864990234,0.429173588752747,0.0923504829406738,-0.00501060485839844,0.364948183298111,0.0437300205230713,0.0234107971191406,0.239648520946503,-0.0360012054443359,0.101894378662109,0.347810983657837,-0.0744562149047852,0.0933446884155273,0.40263569355011,-0.0906968116760254,0.106916427612305,0.355311393737793,-0.135661602020264,0.0967893600463867,0.301996052265167,-0.175997018814087,0.0328912734985352,0.254608392715454,-0.184763431549072,0.000257492065429688,0.218179136514664,-0.144266843795776,0.0109786987304688,0.338133186101913,-0.0900058746337891,0.0226106643676758,0.369080573320389,-0.104634284973145,0.0326986312866211,0.220417559146881,-0.15264630317688,0.01177978515625,0.26167893409729,-0.201781034469604,0.00335025787353516,0.32314932346344,-0.18593168258667,0.0488967895507813,0.376845240592957,-0.137906074523926,0.118810653686523,0.415275692939758,-0.0901656150817871,0.121267318725586,0.357231736183167, +-0.071568489074707,0.102925300598145,0.252418339252472,-0.0367276668548584,0.105073928833008,0.383265227079391,0.0521564483642578,0.0212001800537109,0.457069128751755,0.108855485916138,-0.00876235961914063,0.461025923490524,0.0757529735565186,0.00527286529541016,0.458727091550827,0.00706934928894043,0.0213594436645508,0.456937432289124,-0.0639331340789795,0.0311956405639648,0.511316299438477,-0.117177963256836,0.0504856109619141,0.373678982257843,0.0554916858673096,0.0146818161010742,0.258219718933105,-0.033815860748291,0.106137275695801,0.246825277805328,-0.0176224708557129,0.0963306427001953,0.295174181461334,-0.0152585506439209,0.0577507019042969,0.347839951515198,-0.0633959770202637,0.115208625793457,0.354126811027527,-0.0663299560546875,0.111684799194336,0.427327871322632,-0.0908951759338379,0.136235237121582,0.432070255279541,-0.0933499336242676,0.142264366149902,0.369006156921387,-0.0978343486785889,0.0903806686401367,0.376898527145386,-0.0987792015075684,0.105535507202148,0.391106367111206,-0.097437858581543,0.126395225524902,0.397840738296509,-0.0948715209960938,0.14006519317627,0.399168729782104,-0.0932242870330811,0.147470474243164,0.401337265968323,-0.0946109294891357,0.154884338378906,0.402175307273865,-0.129133701324463,0.148004531860352,0.386676430702209,-0.110683917999268,0.161316871643066,0.407948613166809,-0.168004035949707,0.121953010559082,0.380664467811584,-0.119219303131104,0.151898384094238,0.405285120010376,-0.184741973876953,0.0983953475952148,0.359154343605042,-0.120761156082153,0.137531280517578,0.26103413105011,-0.105634450912476,0.0963048934936523,0.228835701942444,-0.109898328781128,0.0317592620849609,0.322648525238037,-0.109892606735229,0.0490169525146484,0.370006322860718,-0.102593898773193,0.143875122070313,0.388715982437134,-0.101730823516846,0.159772872924805,0.394284009933472,-0.108402013778687,0.14993953704834,0.392961382865906,-0.112643480300903,0.140595436096191,0.379192233085632,-0.115386962890625,0.122035026550293,0.363033175468445,-0.114561319351196,0.100614547729492,0.347499132156372, +-0.111379146575928,0.0786266326904297,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,0.000971317291259766,-0.000742673873901367,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,3.39746475219727e-05,3.69548797607422e-06,0,0,2.50935554504395e-05,0,-2.19345092773438e-05,5.07831573486328e-05,7.91549682617188e-05,0.000480413436889648,-0.000362753868103027,0,0.00934112071990967,3.46899032592773e-05,0,0.005656898021698,5.07831573486328e-05,-4.76837158203125e-06,0.116955995559692,-0.0535984039306641,0,0.242914199829102,-0.109869956970215,0,0.269181847572327,-0.109873294830322,0.0001678466796875,0.194959282875061,-0.088322639465332,0,0.230321764945984,-0.0951414108276367,0,0.143458604812622,-0.0750906467437744,0,0.186455607414246,-0.0856516361236572,0,0.117884874343872,-0.0608534812927246,0,0.164532423019409,-0.078575611114502,0,0.12868332862854,-0.0650873184204102,0,0.183332443237305,-0.0820250511169434,0,0.267624139785767,-0.102914810180664,0,0.221172213554382,-0.0929927825927734,0,0.299065828323364,-0.109885931015015,0,0.300350904464722,-0.109879493713379,0.00207138061523438,0.276907324790955,-0.104875087738037,0,0.225546002388,-0.0938928127288818,4.76837158203125e-06,0.240921497344971,-0.0971758365631104,0,0.300271391868591,-0.109892606735229,0.00154018402099609,0.0318434834480286,5.07831573486328e-05,0,0.0212369561195374,4.10079956054688e-05,-1.9073486328125e-06,0.142931222915649,-0.0597062110900879,0.000472068786621094,0.241134524345398,-0.0919435024261475,0,0.282168626785278,-0.106069326400757,0,0.237521052360535,-0.1098952293396,0,0.191486716270447,-0.0873744487762451,0,0.0262422561645508,-0.0205914974212646,0,0.000429868698120117,-0.000299930572509766,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,0.0223536491394043,-0.00847315788269043,0,0.0165555477142334,-0.0115768909454346,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05, +0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0.000532627105712891,3.24249267578125e-05,0.000316619873046875,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0.00339174270629883,3.24249267578125e-05,0.00201225280761719,0,3.24249267578125e-05,0,0.00371193885803223,-0.000484466552734375,0.00239372253417969,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,-0.000448465347290039,-0.00153827667236328,0.000314712524414063,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0, +1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,0,2.21729278564453e-05,0,0,4.1663646697998e-05,0,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05,0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05, +0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05, +0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05, +0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05,0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0, +3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05, +1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06, +0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06, +0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0.102122843265533,-0.0225331783294678,0.0192775726318359,0.140435934066772,-0.0270946025848389,0.0193557739257813,0.191608786582947,-0.0359129905700684,0.0232858657836914,0.201152563095093,-0.0447936058044434,0.0194540023803711,0.198593139648438,-0.0506198406219482,0.020808219909668,0.195026516914368,-0.0592358112335205,0.0220518112182617,0.077473521232605,-0.0241842269897461,0.015690803527832,0.0780785083770752,-0.0232782363891602,0.0216760635375977,0.0969939529895782,-0.0213191509246826,0.0210294723510742,0.0942258238792419,-0.0225341320037842,0.0166387557983398,0.0756353437900543,-0.0321328639984131,0.0140314102172852,0.107779502868652,-0.0503973960876465, +0.00316238403320313,0.155850350856781,-0.0689494609832764,-0.00112056732177734,0.16978520154953,-0.0741724967956543,8.7738037109375e-05,0.182607710361481,-0.0724234580993652,0.0142335891723633,0.115109443664551,-0.0334539413452148,0.00840377807617188,0.141991853713989,-0.0398645401000977,0.00139427185058594,0.154686689376831,-0.0474023818969727,0.00103759765625,0.169149279594421,-0.0563309192657471,0.00588607788085938,0.089902937412262,-0.0286011695861816,0.0168647766113281,-0.00132343453333306,0.00271749496459961,9.918212890625e-05,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0.000247001647949219,0.0972678661346436,3.19480895996094e-05,0.0763864517211914,0.120185852050781,3.19480895996094e-05,0.0972585678100586,0.0839642286300659,3.19480895996094e-05,0.0536823272705078,0.147774696350098,3.19480895996094e-05,0.117600440979004,0.0321134328842163,3.48091125488281e-05,0.0190248489379883,0.000228285789489746,2.47955322265625e-05,0.000165939331054688,0,3.48091125488281e-05,8.10623168945313e-05,0.11046290397644,3.19480895996094e-05,0.0866737365722656,0.0954086780548096,3.19480895996094e-05,0.0776729583740234,0.103832721710205,3.19480895996094e-05,0.0840530395507813,0.0876989364624023,3.19480895996094e-05,0.0708608627319336,0.0873029232025146,3.19480895996094e-05,0.0700759887695313,0.0362176895141602,3.19480895996094e-05,0.0251531600952148,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.749416530154122,-0.00925970077514648,-0.101834297180176,0.779224038124084,-0.00855302810668945,-0.00636672973632813,0.804126679897308,-0.0107517242431641,0.100368499755859,0.809263229370117,-0.0174899101257324,0.200159072875977,0.765356183052063,-0.0249433517456055,0.330713272094727,0.82364284992218,-0.0265092849731445,0.425600051879883,0.736681222915649,-0.018979549407959,0.486465454101563,0.431823968887329,-0.0066370964050293,0.332218170166016,0.309072971343994,-0.000495433807373047,0.248791694641113,0.255868434906006,-7.62939453125e-05,0.211062431335449,0.213486433029175, +3.19480895996094e-05,0.178072929382324,0.213356733322144,0.000121116638183594,0.176834106445313,0.173892259597778,0.000461101531982422,0.141868591308594,0.155901670455933,0.00272226333618164,0.119935035705566,0.141342163085938,0.00382900238037109,0.092686653137207,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.00505230298585957,3.48091125488281e-05,0.00446128845214844,0.0322184264659882,3.48091125488281e-05,0.0200433731079102,0.0701930522918701,5.05447387695313e-05,0.0398502349853516,0.187162518501282,3.48091125488281e-05,0.0746688842773438,0.214310646057129,3.48091125488281e-05,0.11689567565918,0.2903151512146,3.14712524414063e-05,0.199376106262207,0.327986121177673,3.19480895996094e-05,0.24017333984375,0.242669820785522,3.19480895996094e-05,0.189798355102539,0.224807739257813,3.19480895996094e-05,0.182602882385254,0.162832021713257,3.19480895996094e-05,0.13026237487793,0.144385576248169,3.19480895996094e-05,0.117368698120117,0.147777795791626,3.19480895996094e-05,0.120732307434082,0.121879577636719,3.19480895996094e-05,0.0992889404296875,0.0982351303100586,3.19480895996094e-05,0.0770635604858398,0.0702645778656006,3.19480895996094e-05,0.0513620376586914,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.000281896442174911,0.000600576400756836,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,2.24113464355469e-05,0,0,3.83853912353516e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0, +0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05, +1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0.141408622264862,0.00256752967834473,-0.0269231796264648,0.040570080280304,4.69684600830078e-05,0,0.795285850763321,-0.0123858451843262,-0.159697532653809,0.922072380781174,-0.0120573043823242,-0.188895225524902,0.193615436553955,-0.00143718719482422,-0.411779403686523,0.212609767913818,0.00176715850830078,-0.45085620880127,0.245828866958618,-0.00641250610351563,-0.467555046081543,0.246181964874268,-0.0182986259460449,-0.422513961791992,0.433911323547363,-0.0137925148010254,-0.397256851196289,0.455267786979675,-0.0298423767089844,-0.427498817443848,0.59946596622467,-0.0110011100769043,-0.355545997619629,0.575734853744507,-0.033165454864502,-0.327432632446289,0.734517693519592,-0.0319981575012207,-0.301414489746094,0.708550691604614,-0.029383659362793,-0.286496162414551,0.828085064888,-0.0210909843444824,-0.243342399597168,0.753558754920959,-0.0203981399536133,-0.23465633392334,0.355279922485352,-0.0211782455444336,-0.460138320922852,0.33449387550354,-0.0214896202087402,-0.514724731445313,0.175710678100586,0.00288772583007813,-0.391848564147949,0.167374849319458,0.000143051147460938,-0.366973876953125,0.135964632034302,0.00272083282470703,-0.320070266723633,0.139641761779785,0.000839710235595703,-0.313745498657227,0.128132343292236,0.00168609619140625,-0.308810234069824,0.137042760848999,0.004638671875,-0.303739547729492,0.0978457927703857,0.000139713287353516, +-0.227218627929688,0.107730150222778,0.00322341918945313,-0.23106575012207,0.0914831161499023,-0.00169706344604492,-0.145896911621094,0.0698695182800293,-0.000586032867431641,-0.141273498535156,0.0717718601226807,0.00124549865722656,-0.0883979797363281,0.0608370304107666,0.00321817398071289,-0.0804014205932617,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.864367693662643,-0.0114831924438477,-0.201065063476563,0.811344265937805,-0.0188851356506348,-0.284720420837402,0.744685530662537,-0.0258893966674805,-0.344786643981934,0.586641073226929,-0.0208001136779785,-0.373809814453125,0.450334191322327,-0.0247998237609863,-0.414840698242188,0.366891145706177,-0.022484302520752,-0.507654190063477,0.257910013198853,-0.0153155326843262,-0.46338939666748,0.206986427307129,0.000395774841308594,-0.443363189697266,0.174376964569092,0.0016322135925293,-0.387663841247559,0.140253782272339,0.00187015533447266,-0.323394775390625,0.134918212890625,0.00106430053710938,-0.312214851379395,0.104379653930664,1.43051147460938e-06,-0.233036041259766,0.0823426246643066,-0.00112628936767578,-0.144415855407715,0.0671863555908203,0.00320529937744141,-0.0825262069702148,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.82379150390625,-0.0119671821594238,-0.173945426940918,0.778166055679321,-0.0196847915649414,-0.25438404083252,0.723253011703491,-0.0280876159667969,-0.30860710144043,0.579190135002136,-0.0301580429077148,-0.342796325683594,0.460537910461426,-0.0285816192626953,-0.430238723754883,0.370728015899658,-0.0210628509521484,-0.49276065826416,0.246586084365845,-0.0171213150024414,-0.43076229095459,0.199224710464478,-0.000718593597412109,-0.425723075866699,0.170436859130859,0.000698089599609375,-0.376147270202637,0.140274286270142,0.00123405456542969,-0.318549156188965, +0.136721849441528,0.00495719909667969,-0.307986259460449,0.106806039810181,0.00334644317626953,-0.232481002807617,0.0916213989257813,0.000577926635742188,-0.146137237548828,0.0714726448059082,0.001739501953125,-0.0918674468994141,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.538004159927368,-0.0113730430603027,0.0656499862670898,0.476147174835205,-0.0105743408203125,-0.0914058685302734,0.424760937690735,-0.00343894958496094,-0.0704059600830078,0.350361585617065,-0.000618457794189453,-0.0811042785644531,0.284004211425781,-0.00601434707641602,-0.0977907180786133,0.265248775482178,-0.00636005401611328,-0.265148162841797,0.184554576873779,-0.00732946395874023,-0.431308746337891,0.145510673522949,0.00546550750732422,-0.34892749786377,0.085092306137085,0.00693511962890625,-0.285149574279785,0.0575940608978271,0.00560569763183594,-0.240315437316895,0.0600934028625488,0.00469589233398438,-0.232062339782715,0.0410053730010986,0.00205707550048828,-0.156848907470703,0.040874719619751,0.00204133987426758,-0.098912239074707,0.0207676887512207,0.00282478332519531,-0.0439138412475586,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.88823789358139,-0.036461353302002,-0.12265682220459,0.816098928451538,-0.0343108177185059,-0.193453788757324,0.692314624786377,-0.0255742073059082,-0.234492301940918,0.589939713478088,-0.0130090713500977,-0.310347557067871,0.422536134719849,0.00475025177001953,-0.351425170898438,0.319939613342285,-0.0499615669250488,-0.485105514526367,0.239619731903076,-0.0113730430603027,-0.461568832397461,0.206185817718506,0.00260353088378906,-0.431537628173828,0.165670871734619,0.00390338897705078,-0.372040748596191,0.11744213104248,0.00331544876098633,-0.289175033569336,0.103891611099243,0.00243473052978516,-0.283863067626953,0.0774035453796387,0.000275135040283203,-0.203523635864258,0.0548105239868164,-0.000701904296875,-0.133313179016113,0.043508768081665, +0.00241899490356445,-0.0619163513183594,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.520230650901794,-0.23076868057251,-0.0113973617553711,0.383855581283569,-0.170649528503418,-0.0284671783447266,0.302417635917664,-0.0891051292419434,-0.0170164108276367,0.104143619537354,-0.0194344520568848,-0.0516319274902344,0.0164854526519775,-0.0104546546936035,-0.00747013092041016,0.00102567672729492,-0.000899314880371094,6.96182250976563e-05,0.176399946212769,3.52859497070313e-05,-0.092132568359375,0.119289398193359,2.288818359375e-05,-0.136422157287598,0.0288577079772949,0.0115957260131836,-0.0364160537719727,0.0090644359588623,0.00137472152709961,-0.0580644607543945,-0.00284743309020996,0.00116682052612305,-0.0574111938476563,-0.00790309906005859,0.00162363052368164,-0.0531682968139648,0.0243918895721436,0.00216341018676758,-0.132513999938965,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0.0217435359954834,0.00929355621337891,-0.0205669403076172,0,3.48091125488281e-05,0,0,4.45842742919922e-05,0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,0,3.82661819458008e-05,0,0,4.1663646697998e-05,0,0,3.79085540771484e-05,0,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06, +0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.0320740938186646,0.0719413757324219,-0.0466670989990234,-0.0189448595046997,0.0746350288391113,-0.049163818359375,-0.00745320320129395,0.0753443241119385,-0.131333351135254,-0.0362062454223633,0.0650548934936523,-0.122397422790527,0.0241336822509766,0.0746252536773682,-0.127531051635742,-0.0137220621109009,0.0746471881866455,-0.0347814559936523,0.0342719554901123,0.0100128650665283,-0.0310869216918945,0.11508572101593,0.0151388645172119,-0.106654167175293,0.0256837010383606,4.69684600830078e-05,-0.00646018981933594,0.165704607963562,0.00250959396362305,-0.0764684677124023,-0.0362832546234131,0.0618448257446289,-0.117353439331055,-0.0331611633300781,0.0703587532043457,-0.032597541809082,-0.00631427764892578,0.014249324798584,9.25064086914063e-05,0.0215427875518799,2.90870666503906e-05,0,0.00490570068359375,2.05039978027344e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.000199794769287109,3.19480895996094e-05,0.000141143798828125,-0.0113115310668945,0.00161600112915039,-0.0175323486328125,0.0242898464202881,0.0120906829833984,-0.0189800262451172,0.0215044021606445,0.00685596466064453,-0.0108785629272461,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0.279972970485687,-0.0264127254486084,-0.114697456359863,0.415706396102905,-0.0572671890258789,-0.0680580139160156,0.391419857740402,-0.140321016311646, +-0.0693588256835938,0.274525910615921,-0.0972189903259277,-0.105568885803223,0.285152733325958,0.0220878124237061,-0.117451667785645,0.421878755092621,0.0327539443969727,-0.052769660949707,0.287835389375687,0.0622889995574951,-0.123411178588867,0.446960359811783,0.144148826599121,-0.0624485015869141,0.272257626056671,0.0973274707794189,-0.114678382873535,0.416813284158707,0.180878400802612,-0.0522594451904297,0.208443999290466,0.0801260471343994,-0.115811347961426,0.276817262172699,0.116514205932617,-0.0862693786621094,0.0838540196418762,0.0267171859741211,-0.109582901000977,0.175029993057251,0.0450065135955811,-0.0434465408325195,0.0787391662597656,0.00577044486999512,-0.0799551010131836,0.122030138969421,0.0158803462982178,-0.0751409530639648,0.011368989944458,0.0233385562896729,-0.0819988250732422,0.00841724872589111,0.0525743961334229,-0.118653297424316,0.0667781829833984,-0.0227394104003906,-0.0629749298095703,0.0321286916732788,0.0160040855407715,-0.130859375,0.0989721417427063,-0.0893661975860596,-0.0102348327636719,0.21709144115448,-0.115904569625854,-0.026641845703125,0.27004462480545,-0.21436595916748,-0.0512733459472656,0.189778327941895,-0.132504463195801,-0.0602054595947266,0.0971709489822388,-0.0657758712768555,-0.0152015686035156,0.125149726867676,-0.0470442771911621,-0.0722646713256836,0.329168170690536,-0.0359904766082764,-0.101898193359375,0.334959030151367,0.0283856391906738,-0.102479934692383,0.347519099712372,0.0893197059631348,-0.108821868896484,0.324463427066803,0.129101753234863,-0.100000381469727,0.239038407802582,0.100503921508789,-0.11012077331543,0.147124230861664,0.0391607284545898,-0.0433454513549805,0.104423999786377,0.0104119777679443,-0.0421743392944336,0.0116418600082397,0.0330612659454346,-0.0955076217651367,0.0656975507736206,-0.00946426391601563,-0.093409538269043,0.117139220237732,-0.0645592212677002,-0.0331792831420898,0.131015360355377,-0.110366106033325,-0.0152120590209961,0.215549111366272,-0.16011381149292,-0.0603809356689453,0.30218505859375,-0.107290744781494,-0.0967798233032227, +0.321556329727173,-0.11275053024292,-0.0854272842407227,0.228749811649323,-0.176705837249756,-0.0573768615722656,0.155413568019867,-0.116708040237427,-0.0183954238891602,0.124719619750977,-0.0577461719512939,-0.051025390625,0.0547341108322144,0.00286602973937988,-0.114846229553223,0.0104086399078369,0.0433349609375,-0.109336853027344,0.116375684738159,0.0134799480438232,-0.0607833862304688,0.159278571605682,0.0439832210540771,-0.0464439392089844,0.253520905971527,0.108599901199341,-0.100715637207031,0.353858470916748,0.143619537353516,-0.089198112487793,0.378781616687775,0.108822345733643,-0.0969295501708984,0.368813037872314,0.0322268009185791,-0.0864086151123047,0.367785811424255,-0.0523641109466553,-0.0853242874145508,0.448533892631531,-0.104527473449707,-0.0272684097290039,0.279082655906677,0.108209609985352,-0.0815534591674805,0.199254155158997,0.0368132591247559,-0.0421180725097656,0.22634756565094,0.0176999568939209,-0.0718965530395508,0.216302335262299,0.0431969165802002,-0.0731287002563477,0.117353677749634,0.0174696445465088,-0.112801551818848,0.13467264175415,0.0169219970703125,-0.0884284973144531,0.0100640058517456,0.0610518455505371,-0.12520694732666,0.0175461769104004,0.0702145099639893,-0.133062362670898,0.0228430032730103,0.0137715339660645,-0.0815010070800781,0.0250740051269531,0.0168209075927734,-0.0964183807373047,0.0177161693572998,0.0280978679656982,-0.116335868835449,-0.00130987167358398,0.0423166751861572,-0.128703117370605,-0.0169026851654053,0.0553970336914063,-0.135546684265137,-0.0189023017883301,0.0688166618347168,-0.14372730255127,-0.000632643699645996,0.0260603427886963,-0.141242980957031,-0.0393795967102051,0.045842170715332,-0.151592254638672,0.056249737739563,-0.000229120254516602,-0.121769905090332,-0.0305122137069702,0.0346059799194336,-0.144351005554199,0.0822247266769409,-0.0102283954620361,-0.100930213928223,-0.0272260904312134,0.027590274810791,-0.131618499755859,-0.0319137573242188,0.0603926181793213,-0.0926876068115234,-0.0316977500915527,0.0667390823364258,-0.0310192108154297, +-0.0276657342910767,0.0741813182830811,-0.0480861663818359,-0.0350676774978638,0.0718050003051758,-0.135804176330566,-0.0427203178405762,0.0617012977600098,-0.148736953735352,-0.0220497846603394,0.0433547496795654,-0.139967918395996,0.00738465785980225,0.0294344425201416,-0.132044792175293,0.0332834720611572,0.0153086185455322,-0.115158081054688,0.0458039045333862,0.00375580787658691,-0.0944395065307617,0.044417142868042,-0.00655817985534668,-0.0722551345825195,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,0,3.48091125488281e-05,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,0,2.1815299987793e-05,0,0,2.50935554504395e-05,0,0,5.07831573486328e-05,0,0,2.1815299987793e-05,0,0.0086098313331604,3.46899032592773e-05,0,0.000772833824157715,5.07831573486328e-05,0,-0.000124335289001465,0.000298500061035156,0,-0.0331242084503174,0.0668702125549316,0,-0.0331413745880127,0.0668210983276367,-0.000166893005371094,-0.0256650447845459,0.05181884765625,0,-0.02659010887146,0.0536940097808838,0,-0.0156440734863281,0.031611442565918,0,-0.020479679107666,0.0413508415222168,0,-0.00421774387359619,0.00855255126953125,0,-0.0140405893325806,0.0283603668212891,0,-0.0068279504776001,0.013791561126709,0,-0.0177768468856812,0.0358984470367432,0,-0.028101921081543,0.0567121505737305,0,-0.0238274335861206,0.0481045246124268,0,-0.0329599380493164,0.0665230751037598,0,-0.0337076187133789,0.0694921016693115,-0.00205898284912109,-0.0304191112518311,0.0614032745361328,0,-0.0238801240921021,0.0482110977172852,0,-0.026700496673584,0.0539009571075439,0,-0.03340744972229,0.0690059661865234,-0.00153064727783203,0.0296644568443298,5.07831573486328e-05,0,0.0074763298034668,4.10079956054688e-05,0,-0.000789403915405273,0.0028533935546875,-0.000468254089355469,-0.0238476991653442,0.0481584072113037,0,-0.0320816040039063,0.0647635459899902,0,-0.0331356525421143,0.0668680667877197,0,-0.0256578922271729,0.0517783164978027,0,-0.011663556098938,0.0235452651977539,0,0,4.42266464233398e-05,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,-0.00629878044128418, +0.01273512840271,0,-0.00928616523742676,0.0187749862670898,1.9073486328125e-06,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0.00609135627746582,0.00180816650390625,-0.00301933288574219,0.000791072845458984,0.000209808349609375,-0.000382423400878906,0.0156006813049316,0.0040435791015625,-0.00759601593017578,0.00349164009094238,0.000819206237792969,-0.00169181823730469,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0.0054326057434082,0.00307178497314453,-0.00274276733398438,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0.000501036643981934,0.000218391418457031,-0.000247001647949219,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,-1.43051147460938e-06,4.86373901367188e-05,-7.91549682617188e-05,1.96099281311035e-05,6.58035278320313e-05,-0.000125885009765625,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05, +0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,0,2.21729278564453e-05,0,0,4.1663646697998e-05,0,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05,0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05, +0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05, +0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05,0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05, +0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05,0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05, +0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05, +-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05, +2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05,1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0.033890962600708,-0.00689291954040527,-0.0439605712890625,0.0377787947654724,-0.00512146949768066,-0.0327119827270508,0.0296531319618225,-0.00472402572631836, +-0.0287103652954102,0.00381326675415039,-0.00850701332092285,-0.0226211547851563,0.00454092025756836,-0.0149636268615723,-0.0211582183837891,0.0193468332290649,-0.0229687690734863,-0.0192155838012695,0.0192604064941406,-0.00556468963623047,-0.0439310073852539,0.0335803627967834,-0.00437331199645996,-0.0554618835449219,0.0586951375007629,-0.00445365905761719,-0.0642585754394531,0.0651706457138062,-0.0102448463439941,-0.0595970153808594,0.0567926168441772,-0.0219216346740723,-0.0449161529541016,0.0406815409660339,-0.0325140953063965,-0.0225887298583984,0.0350953340530396,-0.0375990867614746,-0.00774192810058594,0.0371887683868408,-0.0410723686218262,-0.00298690795898438,0.0419083833694458,-0.0384674072265625,-0.0123882293701172,0.0078316330909729,-0.00875377655029297,-0.0253047943115234,0.00524675846099854,-0.0136649608612061,-0.0143947601318359,0.00651192665100098,-0.0181877613067627,-0.00849437713623047,0.0132273435592651,-0.0253827571868896,-0.00852394104003906,0.0177018642425537,-0.00453090667724609,-0.0380983352661133,-0.00694212317466736,0.0148401260375977,0.000109672546386719,0.0126364231109619,3.0517578125e-05,0.00560665130615234,0.0147063732147217,0.0302691459655762,-0.0592231750488281,0,3.19480895996094e-05,0,0.0207006931304932,2.71797180175781e-05,0,-0.00504434108734131,0.0102119445800781,0,-0.0114331245422363,0.0230913162231445,0,-0.0114331245422363,0.0231013298034668,0,-0.0167875289916992,2.90870666503906e-05,-0.111382484436035,-0.0258481502532959,3.09944152832031e-05,-0.196320533752441,-0.0105946063995361,3.09944152832031e-05,-0.24029541015625,0.00901317596435547,3.4332275390625e-05,-0.134041786193848,0.0264968872070313,-9.5367431640625e-05,-0.0642786026000977,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0.724644601345062,-0.0132951736450195,-0.171535491943359,0.687628567218781,-0.0213418006896973,-0.244661331176758,0.629313588142395,-0.030339241027832,-0.307051658630371,0.527303338050842,-0.0347933769226074, +-0.347283363342285,0.403321146965027,-0.03057861328125,-0.378525733947754,0.312285184860229,-0.0286726951599121,-0.405178070068359,0.211747407913208,-0.0129189491271973,-0.320575714111328,0.163882732391357,-0.000221729278564453,-0.375000953674316,0.119126319885254,0.00142478942871094,-0.298535346984863,0.0882930755615234,0.00182485580444336,-0.241409301757813,0.0908186435699463,0.00139665603637695,-0.244500160217285,0.0778725147247314,0.0002593994140625,-0.191493988037109,0.0733869075775146,0.000218868255615234,-0.116256713867188,0.0601842403411865,0.00318098068237305,-0.0623235702514648,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0.000871658325195313,0,5.05447387695313e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-3.45706939697266e-06,0.000794887542724609,-6.103515625e-05,0.0833432674407959,2.19345092773438e-05,-0.0418262481689453,0.0976982116699219,-0.00359153747558594,-0.0937719345092773,0.0809571743011475,-0.00132179260253906,-0.139594078063965,0.0290656089782715,-0.000901699066162109,-0.0816164016723633,0.0576605796813965,0.0182809829711914,-0.166980743408203,0.0626792907714844,0.0179152488708496,-0.17851448059082,0.0235943794250488,-0.00133085250854492,-0.081695556640625,0.0394654273986816,-0.00240898132324219,-0.0716400146484375,0.0096733570098877,3.48091125488281e-05,-0.0120086669921875,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.00642013549804688,0.0129971504211426,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.0035252571105957,0.00713491439819336,0,-0.0114331245422363,0.0230891704559326,0,-0.0114331245422363,0.0231051445007324,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,-0.00165605545043945,-0.000673294067382813,-0.00592231750488281,0,3.24249267578125e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0,0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05, +1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0 + } + Normals: *8319 { + a: -0.597092765817582,-1.20674596726894,-0.819351315498352,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.594912737607956,-1.10369230806828,-0.885224524885416,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.163332663476467,0.706752747297287,-0.81874081492424,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.5545769110322,0.83391448110342,-0.568683743476868,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.774938248097897,0.881902649998665,-0.456946484744549,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19223820318075,0.00875526666641235,0.135418526362628,0.693808138370514,-0.884770534932613,0.930083112791181,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.154018715023994,0.0270361304283142,0.366592600941658,0.35709891826582,-0.918058261275291,0.989276960492134,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782, +-0.123436847481116,-0.741918206214905,1.17062877118587,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,-0.904423972775248,1.32568544149399,0.256302457302809,-0.769762395925716,1.53529137372971,0.520672351121902,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.265326533466578,1.06496109813452,1.09727028012276,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.509452104568481,1.10115332901478,0.961873315274715,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.560919091105461,-0.771625407040119,1.39845451712608,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.553172126412392,-0.521344833076,-0.142709732055664,-0.57022713124752,-0.761778369545937,-0.440274268388748,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011, +1.59164476394653,1.11365535855293,-0.100846465360064,1.6130183339119,0.900492273271084,0.519307337701321,0.680022969841957,-0.320886075496674,0.427825834602118,0.611639320850372,-0.43081459403038,1.24984148144722,0.743428140878677,0.0101923048496246,1.24035313725471,-0.716003447771072,-0.429137527942657,0.6684610247612,-1.17865699529648,-0.558192223310471,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.287638731300831,0.364852160215378,-0.134946346282959,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.468268631026149,0.433664247393608,-0.103400349617004,0.715243133594754,0.00880149006843567,0.305856227874756,0.837141009857419,0.0635102242231369,0.449118494987488,1.21493142843246,-0.588079117238522,0.410405874252319,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-1.33883160352707,0.271105103194714,0.201965391635895,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,0.066013514995575,0.622238367795944,-0.634040534496307,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198,-0.698155164718628,0.20468544960022,0.921138681471348,-0.815660007297993,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-1.18955874443054,0.554470807313919,-0.544300228357315,-1.26738625764847,0.169437065720558,-0.685808211565018,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174, +-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.597992211580276,0.508298240602016,0.248544991016388,-0.221662759780884,0.683038927614689,1.51674383878708,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,0.965885102748871,1.32491594552994,1.10400906205177,-0.137227639555931,1.44083914160728,0.982179835438728,0.0100697576999664,0.604398783296347,1.65839213132858,0.0926925539970398,0.590333692729473,1.62470996379852,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859, +1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,0.613032087683678,0.335265077650547,1.86055380105972,-0.232703726738691,-0.317183703184128,0.0465255379676819,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229, +-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536,1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,0.998518122150927,0.916681956499815,0.521828444674611,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647, +0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.22979035958042,0.949295956641436,0.953685918822885,0.265242695808411,0.957664247602224,0.970916826277971,1.33693334460258,-0.428975835442543,-0.875247816555202,1.69533205032349,-0.0761311762034893,-0.074331670999527,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.84295350313187,-0.358152143657207,-0.155432343482971,1.63278758525848,-0.373890697956085,-0.890541508793831,1.28755939006805,-0.494611859321594,-0.535688370466232,1.31134834885597,0.147582679986954,-0.629765912890434,1.40888613462448,-0.331198558211327,-0.354947298765182,1.56502795219421,0.032392218708992,-0.075869619846344,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.696403190493584,0.905656889081001,0.683515354990959,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.572749421000481,0.897463396191597,0.677460659295321,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797, +0.481656223535538,0.446323215961456,0.530354015529156,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.21371960639954,1.29597768187523,0.356007778085768,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393, +-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732, +-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534, +0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196, +-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969, +-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044, +-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993, +0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194, +-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651, +-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488, +0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963, +-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527, +-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484, +-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692, +0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975, +-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464, +-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427, +-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575, +-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731, +0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924, +1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953, +-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163, +0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137, +-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875, +-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239, +-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216, +-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616, +-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677, +-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293, +-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079, +-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916, +1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485, +1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589, +-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865, +-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925, +-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891, +0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911, +-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279, +-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905, +0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779, +-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362, +0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132, +0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635, +-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797, +-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603, +0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594, +0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367, +-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453, +-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188, +-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825, +-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397, +-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754, +0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677, +-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418, +-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943, +0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905, +-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383, +-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398, +-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872, +-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111, +-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134, +0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171, +0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823, +0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782, +0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062, +-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558, +1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059, +1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 + } + } + Geometry: 2807563819648, "Geometry::Mouth_Upper_Right", "Shape" { + Version: 100 + Indexes: *8027 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,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,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966, +2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402, +3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813, +3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236, +4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651, +4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075, +5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490, +5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915, +5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5965,5967,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6151,6152,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368, +6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6513,6514,6515,6525,6526,6529,6530,6531,6536,6544,6545,6546,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874, +6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284, +7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7347,7349,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7533,7534,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737, +7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7895,7896,7897,7907,7908,7911,7912,7913,7918,7926,7927,7928,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243, +8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653, +8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 + } + Vertices: *24081 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, +0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, +0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, +0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, +4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, +-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,-0.0068817138671875,-0.0046994686126709,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,-0.0114863514900208,-0.0036470890045166,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.57114791870117e-05,0,2.86102294921875e-06,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05, +0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,-0.000892519950866699,-0.000509262084960938,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,-0.000647217035293579,-0.000466346740722656,-5.7220458984375e-06,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,-0.00520455837249756,-0.00355863571166992,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,-0.00709056854248047,-0.00296950340270996,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,-0.00607156753540039,-0.00173163414001465,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,-0.00108230113983154,-0.000744342803955078,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,-0.0091860294342041,-0.00623893737792969,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,-0.000488638877868652,-0.000378608703613281,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000124812126159668,0,-9.5367431640625e-06,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05, +0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000833069963846356,0.00137138366699219,0,0.000153440982103348,0,0,0.0012858243426308,0.00228452682495117,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.00142123829573393,0.00255775451660156,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.0115865925326943,0.023066520690918,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.00141620426438749,0.0025477409362793,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.00102364958729595,0.00175571441650391,0,0.000238685926888138,0.000172138214111328,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000266930088400841,0.0002288818359375,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.0115865925326943,0.023066520690918,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.00450184941291809,0.00877285003662109,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05, +0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05, +0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000602760002948344,0.000906467437744141, +0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.00268208980560303,0.00510454177856445,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000560343265533447,0.000974178314208984,0,8.29696655273438e-05,0,0,0.000162482261657715,0.000172138214111328,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.00287309288978577,0.00547313690185547,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.00457954406738281,0.00907230377197266,0,0.00838840007781982,0.0167684555053711,0,0.00271272659301758,0.00515127182006836,0,0.000159621238708496,0,0,0.00676769018173218,0.013331413269043,0,0.00520437955856323,0.0103316307067871,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,0.00244486331939697,0.00478243827819824,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,0.00203993916511536,0.00395965576171875,0,7.78436660766602e-05,0,0,0.000401914119720459,0.000643730163574219,0,0.00707918405532837,0.0141263008117676,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,0.00273287296295166,0.00535774230957031,0,0.000159680843353271, +0,0,0.00881630182266235,0.0176310539245605,0,0.000160098075866699,0,0,0.0035436749458313,0.00682735443115234,0,0.00560629367828369,0.0111551284790039,0,0.000410914421081543,0.000674962997436523,0,8.2850456237793e-05,0,0,0.0011821985244751,0.00206232070922852,0,0.000160098075866699,0,0,0.000615239143371582,0.00107288360595703,0,0.00386452674865723,0.0076301097869873,0,0.000106692314147949,5.96046447753906e-05,0,8.32080841064453e-05,0,0,0.000600337982177734,0.00104761123657227,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000666916370391846,0.00102376937866211,0,8.29696655273438e-05,0,0,0.000660538673400879,0.00117635726928711,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.00336354970932007,0.00646305084228516,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00503295660018921,0.00999784469604492,0,0.00824916362762451,0.0163207054138184,0,0.00493979454040527,0.0096430778503418,0,0.00730997323989868,0.0144262313842773,0,0.00525811314582825,0.0104413032531738,0,7.65323638916016e-05,0,0,7.7366828918457e-05, +0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000462770462036133,0.000610828399658203,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,0.00261892378330231,0.00511646270751953,0,0.000757455825805664,0.00137138366699219,0,0.00723385810852051,0.0144262313842773,0,8.29100608825684e-05,0,0,0.0034257173538208,0.00658941268920898,0,0.000159084796905518,0,0,0.00799834728240967,0.0158147811889648,0,0.00338542461395264,0.00667428970336914,0,0.00743842124938965,0.014683723449707,0,8.27312469482422e-05,0,0,0.00234091281890869,0.00439977645874023,0,0.000159502029418945,0,0,0.00219261646270752,0.0042567253112793,0,0.000729918479919434,0.00130510330200195,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05, +0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,0.000797584652900696,0.00145339965820313,0,0.00129653513431549,0.00244855880737305,0,0.000672221183776855,0.00118875503540039,0,0.00221562385559082,0.0043025016784668,0,0.00570440292358398,0.0113525390625,0,0.00507855415344238,0.0100898742675781,0,0.000237584114074707,0.000323295593261719,0,0.00191205739974976,0.00369167327880859,0,7.53402709960938e-05,0,0,0.0040009617805481,0.00791597366333008,0,8.34465026855469e-05,0,0,0.00350499153137207,0.00691556930541992,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05, +0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,0.000122785568237305,9.20295715332031e-05,0,0.00132763385772705,0.00235557556152344,0,0.001761794090271,0.00324344635009766,0,0.00374424457550049,0.00723075866699219,0,0.0062708854675293,0.012484073638916,0,0.00488173961639404,0.00969266891479492,0,0.00193953514099121,0.00358963012695313,0,0.00472044944763184,0.00935649871826172,0,0.00412824749946594,0.00817298889160156,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.00271761417388916,0.00515985488891602,0,0.0082930326461792,0.0164093971252441,0,0.00883930921554565,0.0175127983093262,0,0.00936123728752136,0.0185632705688477,0,0.00549650192260742,0.0107674598693848,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,-0.00312304496765137,-0.00177907943725586,0,8.34465026855469e-05,0,0,8.32080841064453e-05, +0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,-0.0024944543838501,-0.00173115730285645,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,-0.00036919116973877,-0.000286579132080078,0,7.7366828918457e-05,0,0,-0.00947922468185425,-0.00285124778747559,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0, +0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.63075256347656e-05,0,9.5367431640625e-07,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,-0.00904369354248047,-0.00612139701843262,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.36551189422607e-05,0,-9.5367431640625e-07,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,-0.01053786277771,-0.00379633903503418,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,-0.0027472972869873,-0.000780820846557617,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271, +0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,-0.00371706485748291,-0.00255703926086426,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,-0.00769579410552979,-0.00524401664733887,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0, +8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.0012448625639081,0.00220203399658203,0,0.000485971570014954,0.000813007354736328,0,0.000643093138933182,0.000974178314208984,0,0.000560779124498367,0.000974178314208984,0,7.72476196289063e-05, +0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.00116872787475586,0.00220203399658203,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05, +0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000800362147856504,0.00130510330200195,0,0.000333640724420547,0.000504970550537109,0,0.000485962256789207,0.000813007354736328,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625, +0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05, +0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0, +8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05, +0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.00149490439798683,0.00270652770996094,0,0.000167027115821838,0.000181198120117188,0,0.000333085656166077,0.000504970550537109,0,0.00117553735617548,0.00206232070922852,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,0.00036544181057252,0.000737190246582031,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000614701421000063, +0.0009307861328125,0,0.00437095761299133,0.0086512565612793,0,0.000527143478393555,0.000906467437744141,0,0.00952005945146084,0.018897533416748,0,0.0115160048007965,0.023066520690918,0,0.00941529870033264,0.018829345703125,0,0.0115865925326943,0.023066520690918,0,0.0115160048007965,0.023066520690918,0,0.0115104019641876,0.023066520690918,0,0.00783868972212076,0.0158147811889648,0,0.00779491662979126,0.0157256126403809,0,7.72476196289063e-05,0,0,9.44733619689941e-05,2.33650207519531e-05,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,0.00392460823059082,0.00774955749511719,0,0.00716233253479004,0.0142831802368164,0,8.2850456237793e-05,0,0,0.00647485256195068,0.0128960609436035,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.00143599510192871,0.00273847579956055,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,0.000103235244750977,4.00543212890625e-05,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05, +0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.000462949275970459,0.000610828399658203,0,0.00070643424987793,0.00125789642333984,0,0.000736355781555176,0.00132894515991211,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,0.00796699523925781,0.0159173011779785,0,0.00319862365722656,0.00613117218017578,0,0.00113353133201599,0.00211954116821289,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,0.00434845685958862,0.00861597061157227,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.0036081075668335,0.00712251663208008,0,0.00146877765655518,0.0028076171875,0,0.000448703765869141,0.000737190246582031,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05, +0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,0.00353044271469116,0.00695466995239258,0,8.34167003631592e-05,0,0,0.0019325315952301,0.00389766693115234,0,0.00142532587051392,0.00271987915039063,0,0.000159598886966705,0,0,0.00692325830459595,0.0137991905212402,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,0.00254172086715698,0.00496053695678711,0,0.0010993480682373,0.00206232070922852,0,0.00213509798049927,0.00413894653320313,0,0.00238427519798279,0.00464296340942383,0,0.00341665744781494,0.00672578811645508,0,0.00280827283859253,0.00550985336303711,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.00899231433868408,0.0179738998413086,0,0.00016021728515625,0,0,0.00289058685302734,0.00550985336303711,0,0.00046241283416748,0.000610828399658203,0,0.00142544507980347,0.00271987915039063,0,0.00105631351470947,0.00196409225463867,0,0.0063244104385376,0.0124368667602539,0,0.0049513578414917,0.00983476638793945,0,0.00404739379882813,0.00799751281738281,0,0.00145566463470459,0.00262236595153809,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.000773072242736816,0.00140523910522461,0,0.00392460823059082,0.00774955749511719,0,0.00270748138427734,0.00530767440795898,0,0.00218713283538818,0.0042567253112793,0,0.00119340419769287,0.00224065780639648,0,0.00038909912109375,0.000617027282714844,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,0.000139474868774414,0.000117778778076172,0,0.00338375568389893,0.0066530704498291,0,8.46385955810547e-05, +0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,9.71555709838867e-05,4.00543212890625e-05,0,0.000135064125061035,0.000117778778076172,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000227689743041992,0.000136852264404297,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05, +0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000249326229095459,0.000181198120117188,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.0053328275680542,0.0104374885559082,0,0.00811088085174561,0.0162081718444824,0,0.00152188912034035,0.00274753570556641,0,0.00260776281356812,0.00509405136108398,0,0.00198079645633698,0.00383901596069336,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.000650167465209961,0.00115585327148438,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.00016254186630249, +0.000172138214111328,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000296831130981445,0.000442981719970703,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000342488288879395,0.000369071960449219,0,8.2850456237793e-05,0,0,0.00115680694580078,0.00201177597045898,0,0.000457227230072021,0.000754833221435547,0,0.000903964042663574,0.00165653228759766,0,0.00934129953384399,0.0186905860900879,0,0.00962609052658081,0.0192646980285645,0,0.00301039218902588,0.00591754913330078,0,0.0067409873008728,0.0134439468383789,0,0.00080375000834465,0.00145339965820313,0,0.00105627998709679,0.00196409225463867,0,8.34502279758453e-05,0,0,0.000415660440921783,0.000683784484863281,0,0.00502118468284607,0.00996208190917969,0,0.0063454806804657,0.0126461982727051,0,8.35657119750977e-05,0,0,7.74860382080078e-05, +0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,0.0059654712677002,0.0118670463562012,0,0.00148510932922363,0.00282907485961914,0,0.00351071357727051,0.00691556930541992,0,7.71284103393555e-05,0,0,0.00014185905456543,0.000117778778076172,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,0.0026305615901947,0.00515127182006836,0,0.00192460417747498,0.00371456146240234,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,0.00305807590484619,0.00600147247314453,0,0.00140374898910522,0.00266361236572266,0,0.00400704145431519,0.00791597366333008,0,7.84993171691895e-05,0,0,0.00145328044891357,0.00277376174926758,0,0.0060882568359375,0.0121145248413086,0,0.0047767162322998,0.00948143005371094,0,7.72476196289063e-05,0,0,0.00390386581420898,0.0077204704284668,0,0.00248408317565918,0.00468826293945313,0,0.00113964080810547,0.00214338302612305,0,8.27312469482422e-05,0,0,0.000732302665710449,0.00115585327148438,0,0.00036466121673584,0.000568866729736328, +0,0.000690340995788574,0.00123691558837891,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05, +0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0, +8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000256061553955078,0.000349521636962891,0,0.000532194972038269,0.000906467437744141,0,0.000197991728782654,0.000243663787841797,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.00111329555511475,0.00192451477050781,0,0.00620901584625244,0.0123701095581055,0,0.00846350193023682,0.0169081687927246,0,0.00749903917312622,0.0149612426757813,0,0.00415241718292236,0.0083765983581543,0,0.000237554311752319,0.000323295593261719,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,0.00013577938079834,0.000117778778076172,0,0.00117483735084534,0.00220203399658203,0,0.000762522220611572,0.00137138366699219,0,9.64999198913574e-05,4.00543212890625e-05,0,0.00423479080200195,0.0083765983581543,0,0.000251173973083496,0.000349521636962891,0,0.00023353099822998,0.000304222106933594,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05, +0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,0.000730156898498535,0.00130510330200195,0,0.000122427940368652,9.20295715332031e-05,0,0.000364780426025391,0.000568866729736328,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.00245141983032227,0.00477743148803711,0,0.000364780426025391,0.000568866729736328,0,0.000837564468383789,0.00152158737182617,0,0.00858491659164429,0.0171527862548828,0,0.00902998447418213,0.0180497169494629,0,0.00902938842773438,0.0180497169494629,0,0.00392410159111023,0.00774955749511719,0,0.00692221522331238,0.0138096809387207,0,0.00554236769676208,0.0108599662780762,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,0.00657093524932861,0.0130906105041504,0,0.00450491905212402,0.00892066955566406,0,0.00833570957183838,0.0165071487426758,0,0.00894594192504883,0.0178923606872559,0,0.008445143699646,0.0168695449829102,0,0.00751239061355591,0.0149993896484375,0,0.00830259919166565,0.0165948867797852,0,8.2850456237793e-05,0,0,0.00354854017496109,0.0070033073425293,0,0.00318232178688049, +0.00625324249267578,0,0.00324279069900513,0.00637531280517578,0,0.00357112288475037,0.0070490837097168,0,0.00199469923973083,0.00386857986450195,0,0.00278247892856598,0.00529050827026367,0,0.000342279672622681,0.000522136688232422,0,0.00114521384239197,0.00214338302612305,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.00186219811439514,0.00358963012695313,0,9.76026058197021e-05,4.00543212890625e-05,0,0.00592172145843506,0.0117802619934082,0,0.00476691126823425,0.00945138931274414,0,0.00587674975395203,0.0116891860961914,0,0.00586602091789246,0.0116791725158691,0,0.00340458750724792,0.00686788558959961,0,0.000160165131092072,0,0,0.000196371227502823,0.0002288818359375,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.00149782001972198,0.0028533935546875,0,0.00151168555021286,0.00288152694702148,0,0.00274652987718582,0.0052180290222168,0,0.00185341387987137,0.00358343124389648,0,0.00571687519550323,0.0113668441772461,0,0.00401380658149719,0.00792980194091797,0,0.00856795907020569,0.017117977142334,0,0.00737956166267395,0.0147323608398438,0,0.00820469856262207,0.0162301063537598,0,0.00884532928466797,0.0176773071289063,0,0.00482022762298584,0.00955772399902344,0,0.00671058893203735,0.0133705139160156,0,0.00101536512374878,0.00188016891479492,0,0.00268226861953735,0.00524330139160156,0,7.7366828918457e-05,0,0,5.90085983276367e-05,0.000117778778076172,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05, +0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,0.000113047659397125,5.96046447753906e-05,0,0.00020579993724823,9.20295715332031e-05,0,0.000162526965141296,0.000172138214111328,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000122904777526855,9.20295715332031e-05,0,0.00018918514251709,5.96046447753906e-05,0,0.000112414360046387,5.96046447753906e-05,0,0.0001068115234375,5.96046447753906e-05,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05, +0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0, +0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781, +0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0, +0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05, +0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05, +0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781, +0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05, +0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05, +0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0, +0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05, +0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0, +0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375, +0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0, +0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05, +0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0, +0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0, +8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05, +0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0, +0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05, +0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05, +0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05, +0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0, +0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803, +0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0, +9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0, +8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05, +0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05, +0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0, +0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883, +0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0, +9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766, +0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,-0.177021726965904,3.48091125488281e-05,-5.24520874023438e-05,-0.0915490984916687,4.69684600830078e-05,0,-0.824972629525291,-0.0083765983581543,-0.0923929214477539,-0.936384737484332,-0.00705051422119141,-0.128968238830566,1.45519152283669e-10,3.48091125488281e-05,0,4.36557456851006e-11,3.48091125488281e-05,0,-0.898055076577293,-0.00750827789306641,-0.123711585998535,-2.91038304567337e-11,3.48091125488281e-05,0,-0.854470550999395, +-0.00802421569824219,-0.101079940795898,4.36557456851006e-11,3.48091125488281e-05,0,-0.590696632862091,-0.00553798675537109,0.118556976318359,-4.72937244921923e-11,3.48091125488281e-05,0,-0.903927147392096,-0.048774242401123,-0.111408233642578,-2.03726813197136e-10,3.48091125488281e-05,0,-0.573289752006531,-0.242793083190918,0.0465564727783203,1.31183529502049e-29,3.4332275390625e-05,0,1.76704839760241e-29,4.76837158203125e-05,0,1.76704839760241e-29,2.84910202026367e-05,0,1.6494232794919e-29,4.75049018859863e-05,0,1.76704839760241e-29,2.19047069549561e-05,0,1.76704839760241e-29,3.79681587219238e-05,0,1.76704839760241e-29,3.85046005249023e-05,0,1.16397638697519e-29,3.24249267578125e-05,0,1.2030073133208e-29,3.4332275390625e-05,0,1.17687680741049e-29,3.24249267578125e-05,0,1.28502273907597e-29,3.4332275390625e-05,0,-0.497763425111771,0.150196075439453,-0.019927978515625,-0.485300362110138,0.00922012329101563,-0.00209808349609375,-0.505659222602844,-0.0680832862854004,0.000880241394042969,-0.507520496845245,-0.122427940368652,0.0302610397338867,-0.452507436275482,0.183187007904053,-0.0353279113769531,-0.334241032600403,0.0858635902404785,-0.0402612686157227,1.69452569998719e-29,2.1815299987793e-05,0,1.70417235205941e-29,2.82526016235352e-05,0,1.71227329488799e-29,3.14712524414063e-05,0,-0.0201053600758314,4.42266464233398e-05,0,-0.048640500754118,3.09944152832031e-05,0,1.6823769940833e-29,4.11272048950195e-05,0,1.25674060830592e-29,3.4332275390625e-05,0,1.23097723279127e-29,3.4332275390625e-05,0,1.76704839760241e-29,3.48091125488281e-05,0,1.76704839760241e-29,4.48226928710938e-05,0,1.76704839760241e-29,3.24249267578125e-05,0,1.76704839760241e-29,4.1961669921875e-05,0,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.11006020387699e-29,3.19480895996094e-05,0,1.20450953867742e-29,4.16040420532227e-05,0,1.25386284767183e-29,4.16934490203857e-05,0,1.76704839760241e-29,4.50611114501953e-05,0,1.76704839760241e-29,4.48226928710938e-05,0,1.76704839760241e-29,3.24249267578125e-05,0,1.76704839760241e-29,3.24249267578125e-05, +0,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.76704839760241e-29,3.24249267578125e-05,-1.49011611938477e-06,1.76704839760241e-29,3.24249267578125e-05,-1.43051147460938e-06,1.026728826302e-29,3.19480895996094e-05,0,1.96628296081702e-16,3.24249267578125e-05,0,-1.93790846881475e-15,3.24249267578125e-05,2.62260437011719e-06,8.77084445781299e-30,3.19480895996094e-05,0,9.80023445286197e-30,3.24249267578125e-05,1.43051147460938e-06,9.58355604937264e-30,3.19480895996094e-05,0,1.18770504759626e-29,3.24249267578125e-05,1.43051147460938e-06,7.4275955903035e-30,3.24249267578125e-05,0,6.59519281550426e-16,3.24249267578125e-05,1.9073486328125e-06,6.5952056590738e-30,3.24249267578125e-05,0,-2.37353751358763e-15,3.24249267578125e-05,2.02655792236328e-06,5.74120017348389e-30,3.24249267578125e-05,0,-1.83593396053657e-15,3.24249267578125e-05,2.38418579101563e-06,8.17811092940521e-30,3.24249267578125e-05,0,7.57453707368001e-16,3.24249267578125e-05,1.66893005371094e-06,0,0.000311195850372314,0,0,0.000519618391990662,0,-0.141408622264862,0.00256752967834473,-0.0269231796264648,-0.040570080280304,4.69684600830078e-05,0,-0.795285731554031,-0.0123858451843262,-0.159697532653809,-0.922072380781174,-0.0120573043823242,-0.188895225524902,-0.193614959716797,-0.00143718719482422,-0.411779403686523,-0.212609052658081,0.00176715850830078,-0.45085620880127,-0.245829820632935,-0.00641250610351563,-0.467555046081543,-0.246181488037109,-0.0182986259460449,-0.422513961791992,-0.433910608291626,-0.0137925148010254,-0.397256851196289,-0.455267190933228,-0.0298423767089844,-0.427498817443848,-0.599465608596802,-0.0110011100769043,-0.355545997619629,-0.575735330581665,-0.033165454864502,-0.327432632446289,-0.734517693519592,-0.0319981575012207,-0.301414489746094,-0.708550691604614,-0.029383659362793,-0.286496162414551,-0.828085064888,-0.0210909843444824,-0.243342399597168,-0.753558754920959,-0.0203981399536133,-0.23465633392334,-0.355279445648193,-0.0211782455444336,-0.460138320922852, +-0.33449387550354,-0.0214896202087402,-0.514724731445313,-0.175710678100586,0.00288772583007813,-0.391848564147949,-0.167375326156616,0.000143051147460938,-0.366973876953125,-0.135963201522827,0.00272083282470703,-0.320070266723633,-0.139641761779785,0.000839710235595703,-0.313745498657227,-0.128130912780762,0.00168609619140625,-0.308810234069824,-0.137042999267578,0.004638671875,-0.303739547729492,-0.0978460311889648,0.000139713287353516,-0.227218627929688,-0.107730865478516,0.00322341918945313,-0.23106575012207,-0.0914835929870605,-0.00169706344604492,-0.145896911621094,-0.0698702335357666,-0.000586032867431641,-0.141273498535156,-0.0717720985412598,0.00124549865722656,-0.0883979797363281,-0.0608365535736084,0.00321817398071289,-0.0804014205932617,-2.38418579101563e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,2.38418579101563e-07,3.48091125488281e-05,0,5.96046447753906e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.78813934326172e-07,3.48091125488281e-05,0,-2.08616256713867e-07,3.48091125488281e-05,0,-0.864367783069611,-0.0114831924438477,-0.201065063476563,-0.811344146728516,-0.0188851356506348,-0.284720420837402,-0.744685649871826,-0.0258893966674805,-0.344786643981934,-0.586640596389771,-0.0208001136779785,-0.373809814453125,-0.450334072113037,-0.0247998237609863,-0.414840698242188,-0.366890907287598,-0.022484302520752,-0.507654190063477,-0.257909774780273,-0.0153155326843262,-0.46338939666748,-0.206986665725708,0.000395774841308594,-0.443363189697266,-0.174376726150513,0.0016322135925293,-0.387663841247559,-0.140253782272339,0.00187015533447266,-0.323394775390625,-0.134918212890625,0.00106430053710938,-0.312214851379395,-0.104380369186401,1.43051147460938e-06,-0.233036041259766,-0.0823416709899902,-0.00112628936767578,-0.144415855407715,-0.0671875476837158,0.00320529937744141,-0.0825262069702148,-2.38418579101563e-07,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05, +0,-7.15255737304688e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,-2.68220901489258e-07,3.48091125488281e-05,0,-0.823791652917862,-0.0119671821594238,-0.173945426940918,-0.778166055679321,-0.0196847915649414,-0.25438404083252,-0.723253011703491,-0.0280876159667969,-0.30860710144043,-0.579190254211426,-0.0301580429077148,-0.342796325683594,-0.460538268089294,-0.0285816192626953,-0.430238723754883,-0.370728969573975,-0.0210628509521484,-0.49276065826416,-0.246585130691528,-0.0171213150024414,-0.43076229095459,-0.199224948883057,-0.000718593597412109,-0.425723075866699,-0.170436859130859,0.000698089599609375,-0.376147270202637,-0.140274524688721,0.00123405456542969,-0.318549156188965,-0.13672137260437,0.00495719909667969,-0.307986259460449,-0.106806516647339,0.00334644317626953,-0.232481002807617,-0.0916221141815186,0.000577926635742188,-0.146137237548828,-0.0714724063873291,0.001739501953125,-0.0918674468994141,4.76837158203125e-07,3.48091125488281e-05,0,3.57627868652344e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-0.538004219532013,-0.0113730430603027,0.0656499862670898,-0.476147174835205,-0.0105743408203125,-0.0914058685302734,-0.424760937690735,-0.00343894958496094,-0.0704059600830078,-0.350361585617065,-0.000618457794189453,-0.0811042785644531,-0.284004211425781,-0.00601434707641602,-0.0977907180786133,-0.265248775482178,-0.00636005401611328,-0.265148162841797,-0.184554576873779,-0.00732946395874023,-0.431308746337891,-0.145510673522949,0.00546550750732422,-0.34892749786377,-0.085092306137085,0.00693511962890625,-0.285149574279785,-0.0575940608978271,0.00560569763183594,-0.240315437316895,-0.0600934028625488,0.00469589233398438,-0.232062339782715,-0.0410053730010986,0.00205707550048828,-0.156848907470703,-0.040874719619751,0.00204133987426758,-0.098912239074707,-0.0207676887512207,0.00282478332519531,-0.0439138412475586,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0, +3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.88823789358139,-0.036461353302002,-0.12265682220459,-0.816098928451538,-0.0343108177185059,-0.193453788757324,-0.692314624786377,-0.0255742073059082,-0.234492301940918,-0.589939832687378,-0.0130090713500977,-0.310347557067871,-0.422536373138428,0.00475025177001953,-0.351425170898438,-0.319939851760864,-0.0499615669250488,-0.485105514526367,-0.239619731903076,-0.0113730430603027,-0.461568832397461,-0.206185817718506,0.00260353088378906,-0.431537628173828,-0.165670871734619,0.00390338897705078,-0.372040748596191,-0.117441892623901,0.00331544876098633,-0.289175033569336,-0.103891611099243,0.00243473052978516,-0.283863067626953,-0.0774037837982178,0.000275135040283203,-0.203523635864258,-0.0548105239868164,-0.000701904296875,-0.133313179016113,-0.0435085296630859,0.00241899490356445,-0.0619163513183594,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.520230650901794,-0.23076868057251,-0.0113973617553711,-0.383855581283569,-0.170649528503418,-0.0284671783447266,-0.302417635917664,-0.0891051292419434,-0.0170164108276367,-0.104143619537354,-0.0194344520568848,-0.0516319274902344,-0.0164854526519775,-0.0104546546936035,-0.00747013092041016,-0.00102567672729492,-0.000899314880371094,6.96182250976563e-05,-0.176399946212769,3.52859497070313e-05,-0.092132568359375,-0.119289398193359,2.288818359375e-05,-0.136422157287598,-0.0288577079772949,0.0115957260131836,-0.0364160537719727,-0.0090644359588623,0.00137472152709961,-0.0580644607543945,0.00284743309020996,0.00116682052612305,-0.0574111938476563,0.00790309906005859,0.00162363052368164,-0.0531682968139648,-0.0243918895721436,0.00216341018676758,-0.132513999938965,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,-0.0217435359954834,0.00929355621337891,-0.0205669403076172,0,3.48091125488281e-05,0,0,4.45842742919922e-05, +0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,0,3.82661819458008e-05,0,0,4.1663646697998e-05,0,0,3.79085540771484e-05,0,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,-1.43051147460938e-06,4.04119491577148e-05,1.9073486328125e-06,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.0320740938186646,0.0719413757324219,-0.0466670989990234,0.0189448595046997,0.0746350288391113,-0.049163818359375,0.00745320320129395,0.0753443241119385,-0.131333351135254,0.0362062454223633,0.0650548934936523,-0.122397422790527,-0.0241336822509766,0.0746252536773682,-0.127531051635742,0.0137220621109009,0.0746471881866455,-0.0347814559936523,-0.0342719554901123,0.0100128650665283,-0.0310869216918945,-0.11508572101593,0.0151388645172119, +-0.106654167175293,-0.0256837010383606,4.69684600830078e-05,-0.00646018981933594,-0.165704607963562,0.00250959396362305,-0.0764684677124023,0.0362832546234131,0.0618448257446289,-0.117353439331055,0.0331611633300781,0.0703587532043457,-0.032597541809082,0.00631427764892578,0.014249324798584,9.25064086914063e-05,-0.0215427875518799,2.90870666503906e-05,0,-0.00490570068359375,2.05039978027344e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.000199794769287109,3.19480895996094e-05,0.000141143798828125,0.0113115310668945,0.00161600112915039,-0.0175323486328125,-0.0242898464202881,0.0120906829833984,-0.0189800262451172,-0.0215044021606445,0.00685596466064453,-0.0108785629272461,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,-0.279972970485687,-0.0264127254486084,-0.114697456359863,-0.415706396102905,-0.0572671890258789,-0.0680580139160156,-0.391419798135757,-0.140321016311646,-0.0693588256835938,-0.274525910615921,-0.0972189903259277,-0.105568885803223,-0.285152733325958,0.0220878124237061,-0.117451667785645,-0.421878755092621,0.0327539443969727,-0.052769660949707,-0.287835448980331,0.0622889995574951,-0.123411178588867,-0.446960359811783,0.144148826599121,-0.0624485015869141,-0.272257626056671,0.0973274707794189,-0.114678382873535,-0.416813343763351,0.180878400802612,-0.0522594451904297,-0.208443999290466,0.0801260471343994,-0.115811347961426,-0.276817262172699,0.116514205932617,-0.0862693786621094,-0.0838540196418762,0.0267171859741211,-0.109582901000977,-0.175029993057251,0.0450065135955811,-0.0434465408325195,-0.0787391662597656,0.00577044486999512,-0.0799551010131836,-0.122030138969421,0.0158803462982178,-0.0751409530639648,-0.011368989944458,0.0233385562896729,-0.0819988250732422,-0.00841724872589111,0.0525743961334229,-0.118653297424316,-0.0667781829833984,-0.0227394104003906,-0.0629749298095703,-0.0321286916732788,0.0160040855407715,-0.130859375,-0.0989721417427063,-0.0893661975860596,-0.0102348327636719,-0.21709144115448,-0.115904569625854, +-0.026641845703125,-0.27004462480545,-0.21436595916748,-0.0512733459472656,-0.189778327941895,-0.132504463195801,-0.0602054595947266,-0.0971709489822388,-0.0657758712768555,-0.0152015686035156,-0.125149726867676,-0.0470442771911621,-0.0722646713256836,-0.329168170690536,-0.0359904766082764,-0.101898193359375,-0.334959030151367,0.0283856391906738,-0.102479934692383,-0.347519099712372,0.0893197059631348,-0.108821868896484,-0.324463427066803,0.129101753234863,-0.100000381469727,-0.239038407802582,0.100503921508789,-0.11012077331543,-0.147124230861664,0.0391607284545898,-0.0433454513549805,-0.104423999786377,0.0104119777679443,-0.0421743392944336,-0.0116418600082397,0.0330612659454346,-0.0955076217651367,-0.0656975507736206,-0.00946426391601563,-0.093409538269043,-0.117139220237732,-0.0645592212677002,-0.0331792831420898,-0.131015360355377,-0.110366106033325,-0.0152120590209961,-0.215549111366272,-0.16011381149292,-0.0603809356689453,-0.302185118198395,-0.107290744781494,-0.0967798233032227,-0.321556329727173,-0.11275053024292,-0.0854272842407227,-0.228749811649323,-0.176705837249756,-0.0573768615722656,-0.155413568019867,-0.116708040237427,-0.0183954238891602,-0.124719619750977,-0.0577461719512939,-0.051025390625,-0.0547341108322144,0.00286602973937988,-0.114846229553223,-0.0104086399078369,0.0433349609375,-0.109336853027344,-0.116375684738159,0.0134799480438232,-0.0607833862304688,-0.159278571605682,0.0439832210540771,-0.0464439392089844,-0.253520905971527,0.108599901199341,-0.100715637207031,-0.353858470916748,0.143619537353516,-0.089198112487793,-0.378781616687775,0.108822345733643,-0.0969295501708984,-0.368813037872314,0.0322268009185791,-0.0864086151123047,-0.367785811424255,-0.0523641109466553,-0.0853242874145508,-0.448533892631531,-0.104527473449707,-0.0272684097290039,-0.279082655906677,0.108209609985352,-0.0815534591674805,-0.199254155158997,0.0368132591247559,-0.0421180725097656,-0.22634756565094,0.0176999568939209,-0.0718965530395508,-0.216302335262299,0.0431969165802002,-0.0731287002563477,-0.117353677749634, +0.0174696445465088,-0.112801551818848,-0.13467264175415,0.0169219970703125,-0.0884284973144531,-0.0100640058517456,0.0610518455505371,-0.12520694732666,-0.0175461769104004,0.0702145099639893,-0.133062362670898,-0.0228430032730103,0.0137715339660645,-0.0815010070800781,-0.0250740051269531,0.0168209075927734,-0.0964183807373047,-0.0177161693572998,0.0280978679656982,-0.116335868835449,0.00130987167358398,0.0423166751861572,-0.128703117370605,0.0169026851654053,0.0553970336914063,-0.135546684265137,0.0189023017883301,0.0688166618347168,-0.14372730255127,0.000632643699645996,0.0260603427886963,-0.141242980957031,0.0393795967102051,0.045842170715332,-0.151592254638672,-0.056249737739563,-0.000229120254516602,-0.121769905090332,0.0305122137069702,0.0346059799194336,-0.144351005554199,-0.0822247266769409,-0.0102283954620361,-0.100930213928223,0.0272260904312134,0.027590274810791,-0.131618499755859,0.0319137573242188,0.0603926181793213,-0.0926876068115234,0.0316977500915527,0.0667390823364258,-0.0310192108154297,0.0276657342910767,0.0741813182830811,-0.0480861663818359,0.0350676774978638,0.0718050003051758,-0.135804176330566,0.0427203178405762,0.0617012977600098,-0.148736953735352,0.0220497846603394,0.0433547496795654,-0.139967918395996,-0.00738465785980225,0.0294344425201416,-0.132044792175293,-0.0332834720611572,0.0153086185455322,-0.115158081054688,-0.0458039045333862,0.00375580787658691,-0.0944395065307617,-0.044417142868042,-0.00655817985534668,-0.0722551345825195,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,0,3.48091125488281e-05,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,0,2.1815299987793e-05,0,0,2.50935554504395e-05,0,0,5.07831573486328e-05,0,0,2.1815299987793e-05,0,-0.0086098313331604,3.46899032592773e-05,0,-0.000772833824157715,5.07831573486328e-05,0,0.000124335289001465,0.000298500061035156,0,0.0331242084503174,0.0668702125549316,0,0.0331413745880127,0.0668210983276367,-0.000166893005371094,0.0256650447845459,0.05181884765625,0,0.02659010887146,0.0536940097808838,0,0.0156440734863281,0.031611442565918, +0,0.020479679107666,0.0413508415222168,0,0.00421774387359619,0.00855255126953125,0,0.0140405893325806,0.0283603668212891,0,0.0068279504776001,0.013791561126709,0,0.0177768468856812,0.0358984470367432,0,0.028101921081543,0.0567121505737305,0,0.0238274335861206,0.0481045246124268,0,0.0329599380493164,0.0665230751037598,0,0.0337076187133789,0.0694921016693115,-0.00205898284912109,0.0304191112518311,0.0614032745361328,0,0.0238801240921021,0.0482110977172852,0,0.026700496673584,0.0539009571075439,0,0.03340744972229,0.0690059661865234,-0.00153064727783203,-0.0296644568443298,5.07831573486328e-05,0,-0.0074763298034668,4.10079956054688e-05,0,0.000789403915405273,0.0028533935546875,-0.000468254089355469,0.0238476991653442,0.0481584072113037,0,0.0320816040039063,0.0647635459899902,0,0.0331356525421143,0.0668680667877197,0,0.0256578922271729,0.0517783164978027,0,0.011663556098938,0.0235452651977539,0,0,4.42266464233398e-05,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,0.00629878044128418,0.01273512840271,0,0.00928616523742676,0.0187749862670898,1.9073486328125e-06,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06, +0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,-0.00609135627746582,0.00180816650390625,-0.00301933288574219,-0.000791072845458984,0.000209808349609375,-0.000382423400878906,-0.0156006813049316,0.0040435791015625,-0.00759601593017578,-0.00349164009094238,0.000819206237792969,-0.00169181823730469,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,-0.0054326057434082,0.00307178497314453,-0.00274276733398438,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,-0.000501036643981934,0.000218391418457031,-0.000247001647949219,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,1.43051147460938e-06,4.86373901367188e-05,-7.91549682617188e-05,-1.96099281311035e-05,6.58035278320313e-05,-0.000125885009765625,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05, +0,3.9219856262207e-05,5.7220458984375e-06,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,-6.67572021484375e-06,-5.7220458984375e-06,7.62939453125e-06,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,6.13927841186523e-06,4.76837158203125e-06,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05, +0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05, +0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05,0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05, +0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05, +0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06, +0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06, +0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05,1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,-0.033890962600708,-0.00689291954040527,-0.0439605712890625,-0.0377787947654724,-0.00512146949768066,-0.0327119827270508, +-0.0296531319618225,-0.00472402572631836,-0.0287103652954102,-0.00381326675415039,-0.00850701332092285,-0.0226211547851563,-0.00454092025756836,-0.0149636268615723,-0.0211582183837891,-0.0193468332290649,-0.0229687690734863,-0.0192155838012695,-0.0192604064941406,-0.00556468963623047,-0.0439310073852539,-0.0335803627967834,-0.00437331199645996,-0.0554618835449219,-0.0586951375007629,-0.00445365905761719,-0.0642585754394531,-0.0651706457138062,-0.0102448463439941,-0.0595970153808594,-0.0567926168441772,-0.0219216346740723,-0.0449161529541016,-0.0406815409660339,-0.0325140953063965,-0.0225887298583984,-0.0350953340530396,-0.0375990867614746,-0.00774192810058594,-0.0371887683868408,-0.0410723686218262,-0.00298690795898438,-0.0419083833694458,-0.0384674072265625,-0.0123882293701172,-0.0078316330909729,-0.00875377655029297,-0.0253047943115234,-0.00524675846099854,-0.0136649608612061,-0.0143947601318359,-0.00651192665100098,-0.0181877613067627,-0.00849437713623047,-0.0132273435592651,-0.0253827571868896,-0.00852394104003906,-0.0177018642425537,-0.00453090667724609,-0.0380983352661133,0.00132343451514316,0.00271749496459961,9.918212890625e-05,-7.27595761418343e-12,3.48091125488281e-05,0,0.00694212317466736,0.0148401260375977,0.000109672546386719,-0.0126364231109619,3.0517578125e-05,0.00560665130615234,-0.0147063732147217,0.0302691459655762,-0.0592231750488281,0,3.19480895996094e-05,0,-0.0207006931304932,2.71797180175781e-05,0,0.00504434108734131,0.0102119445800781,0,0.0114331245422363,0.0230913162231445,0,0.0114331245422363,0.0231013298034668,0,0.0167875289916992,2.90870666503906e-05,-0.111382484436035,0.0258481502532959,3.09944152832031e-05,-0.196320533752441,0.0105946063995361,3.09944152832031e-05,-0.24029541015625,-0.00901317596435547,3.4332275390625e-05,-0.134041786193848,-0.0264968872070313,-9.5367431640625e-05,-0.0642786026000977,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.749416530110466,-0.00925970077514648, +-0.101834297180176,-0.724644601345062,-0.0132951736450195,-0.171535491943359,-0.68762880563736,-0.0213418006896973,-0.244661331176758,-0.629313349723816,-0.030339241027832,-0.307051658630371,-0.52730405330658,-0.0347933769226074,-0.347283363342285,-0.403321623802185,-0.03057861328125,-0.378525733947754,-0.312284469604492,-0.0286726951599121,-0.405178070068359,-0.211748361587524,-0.0129189491271973,-0.320575714111328,-0.163882732391357,-0.000221729278564453,-0.375000953674316,-0.119125604629517,0.00142478942871094,-0.298535346984863,-0.0882928371429443,0.00182485580444336,-0.241409301757813,-0.0908188819885254,0.00139665603637695,-0.244500160217285,-0.0778725147247314,0.0002593994140625,-0.191493988037109,-0.0733873844146729,0.000218868255615234,-0.116256713867188,-0.0601842403411865,0.00318098068237305,-0.0623235702514648,2.38418579101563e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,5.96046447753906e-08,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,4.36557456851006e-11,3.48091125488281e-05,0,-0.00505230294220382,3.48091125488281e-05,0.00446128845214844,8.94069671630859e-08,3.48091125488281e-05,0.000871658325195313,-4.76837158203125e-07,5.05447387695313e-05,0,4.76837158203125e-07,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,4.29153442382813e-06,0.000794887542724609,-6.103515625e-05,-0.0833427906036377,2.19345092773438e-05,-0.0418262481689453,-0.0976982116699219,-0.00359153747558594,-0.0937719345092773,-0.0809557437896729,-0.00132179260253906,-0.139594078063965,-0.0290653705596924,-0.000901699066162109,-0.0816164016723633,-0.0576598644256592,0.0182809829711914,-0.166980743408203,-0.0626797676086426,0.0179152488708496,-0.17851448059082,-0.0235934257507324,-0.00133085250854492,-0.081695556640625,-0.0394659042358398,-0.00240898132324219,-0.0716400146484375,-0.009674072265625,3.48091125488281e-05,-0.0120086669921875,-3.57627868652344e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-2.98023223876953e-07, +3.48091125488281e-05,0,2.68220901489258e-07,3.48091125488281e-05,0,2.98459781333804e-08,3.48091125488281e-05,0,0.000281896442174911,0.000600576400756836,0,0.00642013549804688,0.0129971504211426,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0.0035252571105957,0.00713491439819336,0,0.0114331245422363,0.0230891704559326,0,0.0114331245422363,0.0231051445007324,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0.00165605545043945,-0.000673294067382813,-0.00592231750488281,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,1.37974147837371e-29,3.24249267578125e-05,0,1.53641994185809e-29,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0,0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,1.45414240907454e-29,1.62124633789063e-05,0,1.73472347597681e-18,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06, +0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,1.30104260698261e-18,3.24249267578125e-05,1.54972076416016e-06,1.68087296316736e-29,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,1.28982296899908e-29,3.24249267578125e-05,1.19209289550781e-06,1.69348870708276e-29,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,1.40932586880537e-29,3.24249267578125e-05,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,-0.171798080205917,-0.00320696830749512,0.0268955230712891,-0.0447227954864502,4.69684600830078e-05,0,-0.85746094584465,-0.00775527954101563,0.013035774230957,-0.955262452363968,-0.00578451156616211,-0.0528621673583984,-0.325179576873779,-0.000482559204101563,0.250858306884766,-0.326382875442505,-0.000498771667480469, +0.256072998046875,-0.481737852096558,-0.00677394866943359,0.351207733154297,-0.482563972473145,-0.00646448135375977,0.342196464538574,-0.857914686203003,-0.0265369415283203,0.447510719299316,-0.841803312301636,-0.0263853073120117,0.425458908081055,-0.906571626663208,0.0181732177734375,0.368027687072754,-0.829192399978638,-0.0244107246398926,0.318216323852539,-0.943496942520142,-0.0151834487915039,0.226361274719238,-0.884710073471069,-0.0170493125915527,0.209941864013672,-0.977782487869263,-0.0104484558105469,0.0708961486816406,-0.885019659996033,-0.0100479125976563,0.126144409179688,-0.749898791313171,-0.0185666084289551,0.442147254943848,-0.76035749912262,-0.019716739654541,0.456205368041992,-0.275064468383789,-7.77244567871094e-05,0.217853546142578,-0.275004148483276,-7.39097595214844e-05,0.212673187255859,-0.227325201034546,4.00543212890625e-05,0.181761741638184,-0.227990627288818,3.19480895996094e-05,0.177322387695313,-0.227214097976685,0.000121593475341797,0.180655479431152,-0.228739023208618,0.000129222869873047,0.177083969116211,-0.186002492904663,0.000455379486083984,0.146267890930176,-0.186038494110107,0.000466823577880859,0.143571853637695,-0.174604892730713,0.00277519226074219,0.125306129455566,-0.176178693771362,0.00265645980834961,0.133537292480469,-0.145880699157715,0.00383663177490234,0.0886478424072266,-0.148857831954956,0.00360441207885742,0.0983762741088867,-2.38418579101563e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,2.38418579101563e-07,3.48091125488281e-05,0,5.96046447753906e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.78813934326172e-07,3.48091125488281e-05,0,-2.08616256713867e-07,3.48091125488281e-05,0,-0.933965474367142,-0.00696516036987305,-0.0330057144165039,-0.958455085754395,-0.010472297668457,0.0853385925292969,-0.933062076568604,-0.0158228874206543,0.213275909423828,-0.86404025554657,-0.00910711288452148,0.346475601196289,-0.855316638946533, +-0.0274438858032227,0.43980598449707,-0.74685525894165,-0.0192394256591797,0.447322845458984,-0.479250431060791,-0.0066375732421875,0.345527648925781,-0.325862646102905,-0.000496387481689453,0.253240585327148,-0.275235652923584,-7.39097595214844e-05,0.215081214904785,-0.227705240249634,3.19480895996094e-05,0.179373741149902,-0.2279953956604,0.000118255615234375,0.178745269775391,-0.185950994491577,0.000463008880615234,0.14478588104248,-0.176513671875,0.00271797180175781,0.128881454467773,-0.14986777305603,0.00369071960449219,0.0956287384033203,-2.38418579101563e-07,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,-7.15255737304688e-07,3.48091125488281e-05,0,-3.57627868652344e-07,3.48091125488281e-05,0,-2.68220901489258e-07,3.48091125488281e-05,0,-0.889189839363098,-0.00748109817504883,-7.72476196289063e-05,-0.916553497314453,-0.0102157592773438,0.117774963378906,-0.906363964080811,-0.0176501274108887,0.211372375488281,-0.840096592903137,-0.0218515396118164,0.327814102172852,-0.8485267162323,-0.0267972946166992,0.431446075439453,-0.750338912010193,-0.018826961517334,0.445115089416504,-0.479968070983887,-0.00651836395263672,0.342812538146973,-0.325381278991699,-0.000486373901367188,0.251615524291992,-0.275114774703979,-8.34465026855469e-05,0.213501930236816,-0.227877378463745,3.19480895996094e-05,0.178040504455566,-0.228481769561768,0.000131130218505859,0.177671432495117,-0.186014890670776,0.000465869903564453,0.14399528503418,-0.177678108215332,0.00275278091430664,0.127182006835938,-0.148496389389038,0.00378084182739258,0.0911283493041992,4.76837158203125e-07,3.48091125488281e-05,0,3.57627868652344e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-1.19209289550781e-07,3.48091125488281e-05,0,-0.612029075622559,-0.00481796264648438,0.175751686096191,-0.629496335983276,-0.0255270004272461,0.17575740814209,-0.463333129882813,-0.0360116958618164,0.153764724731445,-0.325198769569397,-0.0133252143859863,0.125073432922363,-0.462388634681702, +-0.0102972984313965,0.233264923095703,-0.497253179550171,-0.00672340393066406,0.315954208374023,-0.404783248901367,-0.0023503303527832,0.304374694824219,-0.318607330322266,-0.000169754028320313,0.26786994934082,-0.267921209335327,-9.5367431640625e-06,0.235767364501953,-0.221738815307617,3.19480895996094e-05,0.196374893188477,-0.221045970916748,5.91278076171875e-05,0.19394588470459,-0.176603078842163,0.000167369842529297,0.15145206451416,-0.139865398406982,0.000834465026855469,0.116106986999512,-0.0934858322143555,0.00110721588134766,0.0692882537841797,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.915323555469513,-0.017364501953125,-0.0340557098388672,-0.919848680496216,-0.0118117332458496,0.0512790679931641,-0.828837990760803,-0.000926494598388672,0.162954330444336,-0.81805145740509,0.032289981842041,0.276833534240723,-0.750456213951111,-0.018953800201416,0.368745803833008,-0.689999461174011,-0.0132169723510742,0.416604995727539,-0.452260255813599,-0.00453424453735352,0.327286720275879,-0.324785947799683,-0.000325679779052734,0.256829261779785,-0.274127721786499,-4.24385070800781e-05,0.221102714538574,-0.226389169692993,3.19480895996094e-05,0.185504913330078,-0.225543975830078,9.10758972167969e-05,0.184713363647461,-0.183051586151123,0.000309944152832031,0.147438049316406,-0.16685938835144,0.00172948837280273,0.131160736083984,-0.12947154045105,0.00233602523803711,0.0879487991333008,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,1.19209289550781e-07,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.574647903442383,-0.245561122894287,0.0684738159179688,-0.303208708763123,-0.245890140533447,0.0125217437744141,-0.282934248447418,-0.309534549713135,0.00621318817138672,-0.386302828788757,-0.28986930847168,0.0535869598388672,-0.0737590789794922,-0.0257177352905273,0.0271177291870117,-0.0570170879364014,4.05311584472656e-05,0.0338230133056641,-0.172164678573608,3.19480895996094e-05,0.117496490478516, +-0.181047439575195,2.288818359375e-05,0.133103370666504,-0.102182626724243,3.19480895996094e-05,0.088775634765625,-0.141053915023804,3.19480895996094e-05,0.13383674621582,-0.127873420715332,3.19480895996094e-05,0.0936336517333984,-0.118665933609009,2.38418579101563e-05,0.0844593048095703,-0.167064428329468,3.19480895996094e-05,0.125926971435547,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,-0.0660686492919922,3.24249267578125e-05,0.0506210327148438,0,3.48091125488281e-05,0,0,4.45842742919922e-05,0,0,2.50339508056641e-05,0,0,4.10079956054688e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,4.50015068054199e-05,0,0,4.80413436889648e-05,0,0,1.59740447998047e-05,0,0,3.20672988891602e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,4.49419021606445e-05,0,-0.00302529335021973,-0.00239741802215576,0,0,4.1663646697998e-05,0,-5.50746917724609e-05,3.79085540771484e-05,2.00271606445313e-05,0,3.77893447875977e-05,0,0,4.7534704208374e-05,0,0,4.10974025726318e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,4.48599457740784e-05,0,0,4.49419021606445e-05,0,0,1.9073486328125e-05,0,-1.43051147460938e-06,5.56707382202148e-05,-1.9073486328125e-06,0,3.20672988891602e-05,0,0,2.40802764892578e-05,0,0,1.87158584594727e-05,0,0,4.18424606323242e-05,0,0,3.48091125488281e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0, +3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,-0.282999038696289,-0.109869956970215,0.0478153228759766,-0.332331895828247,-0.109879493713379,0.0499839782714844,-0.389280319213867,-0.101694345474243,0.13831615447998,-0.321688055992126,-0.106125116348267,0.128779411315918,-0.424111127853394,-0.0987229347229004,0.133784294128418,-0.335032820701599,-0.109867334365845,0.035161018371582,-0.195988535881042,-0.0597870349884033,0.0312795639038086,-0.32635509967804,-0.0613646507263184,0.107706069946289,-0.0479342937469482,4.69684600830078e-05,0.00652885437011719,-0.20349246263504,-0.00254964828491211,0.074894905090332,-0.303685188293457,-0.106232404708862,0.12313175201416,-0.246635317802429,-0.109879493713379,0.0333385467529297,-0.0135810375213623,-0.00351238250732422,0.00503826141357422,-0.0630338191986084,3.19480895996094e-05,0.0373916625976563,-0.0323264598846436,2.05039978027344e-05,0.0191764831542969,-0.0415744781494141,3.19480895996094e-05,0.0260963439941406,-0.0419507026672363,3.19480895996094e-05,0.0248861312866211,-0.0442538261413574,3.19480895996094e-05,0.0271015167236328,-0.0330715179443359,3.19480895996094e-05,0.0210704803466797,-0.0525181293487549,3.24249267578125e-05,0.0585222244262695,-0.0382165908813477,-8.10623168945313e-05,0.0320730209350586,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,-0.360877096652985,-0.0350284576416016,0.0116701126098633,-0.497473418712616,-0.0878386497497559,0.0411758422851563,-0.417689710855484,-0.119870901107788,0.0465774536132813,-0.293312281370163,-0.0719892978668213,0.0131855010986328,-0.363871932029724,0.000580787658691406,0.00668525695800781,-0.491624295711517,0.0097346305847168,0.0231876373291016,-0.359178870916367,0.0369744300842285,0.00499343872070313,-0.508098214864731,0.107306241989136,0.00122928619384766,-0.351651430130005,0.0579197406768799,0.00179576873779297, +-0.495341628789902,0.148296356201172,-0.0152559280395508,-0.300800085067749,0.0241317749023438,0.0251398086547852,-0.394699275493622,0.0646347999572754,0.0136947631835938,-0.201220273971558,-0.0327236652374268,0.0881938934326172,-0.258761286735535,-0.0373189449310303,0.106966972351074,-0.224652409553528,-0.0257048606872559,0.0789327621459961,-0.359983801841736,-0.0690572261810303,0.108209609985352,-0.287291169166565,-0.0442836284637451,0.0926609039306641,-0.42311692237854,-0.090219259262085,0.13056468963623,-0.328560948371887,-0.131807804107666,0.0666036605834961,-0.394659996032715,-0.137356281280518,0.136049270629883,-0.250103712081909,-0.161382675170898,-0.00186252593994141,-0.298503875732422,-0.213136196136475,0.0205230712890625,-0.223536610603333,-0.16014552116394,0.0121431350708008,-0.216166138648987,-0.13278865814209,0.00993061065673828,-0.282824695110321,-0.160584449768066,0.0163192749023438,-0.354533135890961,-0.195128202438354,0.0684089660644531,-0.420471221208572,-0.0473990440368652,0.0231399536132813,-0.427733361721039,0.00419449806213379,0.0177135467529297,-0.432166695594788,0.0600640773773193,0.00652217864990234,-0.429173588752747,0.0923504829406738,-0.00501060485839844,-0.364948213100433,0.0437300205230713,0.0234107971191406,-0.239648520946503,-0.0360012054443359,0.101894378662109,-0.347810983657837,-0.0744562149047852,0.0933446884155273,-0.40263569355011,-0.0906968116760254,0.106916427612305,-0.355311393737793,-0.135661602020264,0.0967893600463867,-0.301996052265167,-0.175997018814087,0.0328912734985352,-0.254608392715454,-0.184763431549072,0.000257492065429688,-0.218179136514664,-0.144266843795776,0.0109786987304688,-0.338133215904236,-0.0900058746337891,0.0226106643676758,-0.369080543518066,-0.104634284973145,0.0326986312866211,-0.220417559146881,-0.15264630317688,0.01177978515625,-0.26167893409729,-0.201781034469604,0.00335025787353516,-0.32314932346344,-0.18593168258667,0.0488967895507813,-0.376845240592957,-0.137906074523926,0.118810653686523,-0.415275692939758,-0.0901656150817871,0.121267318725586, +-0.357231736183167,-0.071568489074707,0.102925300598145,-0.252418339252472,-0.0367276668548584,0.105073928833008,-0.383265197277069,0.0521564483642578,0.0212001800537109,-0.457069158554077,0.108855485916138,-0.00876235961914063,-0.461025893688202,0.0757529735565186,0.00527286529541016,-0.458727121353149,0.00706934928894043,0.0213594436645508,-0.456937432289124,-0.0639331340789795,0.0311956405639648,-0.511316299438477,-0.117177963256836,0.0504856109619141,-0.373678982257843,0.0554916858673096,0.0146818161010742,-0.258219718933105,-0.033815860748291,0.106137275695801,-0.246825277805328,-0.0176224708557129,0.0963306427001953,-0.295174181461334,-0.0152585506439209,0.0577507019042969,-0.347839951515198,-0.0633959770202637,0.115208625793457,-0.354126811027527,-0.0663299560546875,0.111684799194336,-0.427327871322632,-0.0908951759338379,0.136235237121582,-0.432070255279541,-0.0933499336242676,0.142264366149902,-0.369006156921387,-0.0978343486785889,0.0903806686401367,-0.376898527145386,-0.0987792015075684,0.105535507202148,-0.391106367111206,-0.097437858581543,0.126395225524902,-0.397840738296509,-0.0948715209960938,0.14006519317627,-0.399168729782104,-0.0932242870330811,0.147470474243164,-0.401337265968323,-0.0946109294891357,0.154884338378906,-0.402175307273865,-0.129133701324463,0.148004531860352,-0.386676430702209,-0.110683917999268,0.161316871643066,-0.407948613166809,-0.168004035949707,0.121953010559082,-0.380664467811584,-0.119219303131104,0.151898384094238,-0.405285120010376,-0.184741973876953,0.0983953475952148,-0.359154343605042,-0.120761156082153,0.137531280517578,-0.26103413105011,-0.105634450912476,0.0963048934936523,-0.228835701942444,-0.109898328781128,0.0317592620849609,-0.322648525238037,-0.109892606735229,0.0490169525146484,-0.370006322860718,-0.102593898773193,0.143875122070313,-0.388715982437134,-0.101730823516846,0.159772872924805,-0.394284009933472,-0.108402013778687,0.14993953704834,-0.392961382865906,-0.112643480300903,0.140595436096191,-0.379192233085632,-0.115386962890625,0.122035026550293,-0.363033175468445, +-0.114561319351196,0.100614547729492,-0.347499132156372,-0.111379146575928,0.0786266326904297,0,2.1815299987793e-05,0,0,1.87158584594727e-05,0,-0.000971317291259766,-0.000742673873901367,0,0,2.49147415161133e-05,0,0,2.49147415161133e-05,0,-3.39746475219727e-05,3.69548797607422e-06,0,0,2.50935554504395e-05,0,2.19345092773438e-05,5.07831573486328e-05,7.91549682617188e-05,-0.000480413436889648,-0.000362753868103027,0,-0.00934112071990967,3.46899032592773e-05,0,-0.005656898021698,5.07831573486328e-05,-4.76837158203125e-06,-0.116955995559692,-0.0535984039306641,0,-0.242914199829102,-0.109869956970215,0,-0.269181847572327,-0.109873294830322,0.0001678466796875,-0.194959282875061,-0.088322639465332,0,-0.230321764945984,-0.0951414108276367,0,-0.143458604812622,-0.0750906467437744,0,-0.186455607414246,-0.0856516361236572,0,-0.117884874343872,-0.0608534812927246,0,-0.164532423019409,-0.078575611114502,0,-0.12868332862854,-0.0650873184204102,0,-0.183332443237305,-0.0820250511169434,0,-0.267624139785767,-0.102914810180664,0,-0.221172213554382,-0.0929927825927734,0,-0.299065828323364,-0.109885931015015,0,-0.300350904464722,-0.109879493713379,0.00207138061523438,-0.276907324790955,-0.104875087738037,0,-0.225546002388,-0.0938928127288818,4.76837158203125e-06,-0.240921497344971,-0.0971758365631104,0,-0.300271391868591,-0.109892606735229,0.00154018402099609,-0.0318434834480286,5.07831573486328e-05,0,-0.0212369561195374,4.10079956054688e-05,-1.9073486328125e-06,-0.142931222915649,-0.0597062110900879,0.000472068786621094,-0.241134524345398,-0.0919435024261475,0,-0.282168626785278,-0.106069326400757,0,-0.237521052360535,-0.1098952293396,0,-0.191486716270447,-0.0873744487762451,0,-0.0262422561645508,-0.0205914974212646,0,-0.000429868698120117,-0.000299930572509766,0,0,4.75049018859863e-05,0,0,2.82526016235352e-05,0,-0.0223536491394043,-0.00847315788269043,0,-0.0165555477142334,-0.0115768909454346,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.43458557128906e-05,0,0,4.17232513427734e-05,0,0,3.19480895996094e-05, +0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.83853912353516e-05,0,0,2.24113464355469e-05,0,0,4.16040420532227e-05,0,0,4.80413436889648e-05,0,0,2.55107879638672e-05,0,0,2.5629997253418e-05,0,0,2.88039445877075e-05,0,0,4.48226928710938e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.14848327636719e-05,0,0,3.95774841308594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,-0.000532627105712891,3.24249267578125e-05,0.000316619873046875,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,-0.00339174270629883,3.24249267578125e-05,0.00201225280761719,0,3.24249267578125e-05,0,-0.00371193885803223,-0.000484466552734375,0.00239372253417969,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0.000448465347290039,-0.00153827667236328,0.000314712524414063,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.4332275390625e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0, +0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,3.69548797607422e-05,0,0,1.91926956176758e-05,0,-6.67572021484375e-06,5.00679016113281e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,7.71880149841309e-05,-4.76837158203125e-06,0,4.48226928710938e-05,0,0,2.68816947937012e-05,0,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,0,2.24113464355469e-05,0,0,2.50339508056641e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,4.1961669921875e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.58684158325195e-05,0,0,4.49419021606445e-05,0,0,3.20672988891602e-05,0,0,1.92299485206604e-05,0,0,2.88188457489014e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,4.1663646697998e-05,0,0,4.80413436889648e-05,0,0,3.20672988891602e-05,0,0,4.80413436889648e-05,0,0,1.91926956176758e-05,0,0,3.19480895996094e-05,0,0,4.80413436889648e-05, +0,0,3.19480895996094e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,1.92523002624512e-05,0,0,3.20672988891602e-05,0,0,3.84524464607239e-05,0,0,3.84561717510223e-05,0,0,4.48226928710938e-05,0,0,2.87890434265137e-05,0,0,1.91926956176758e-05,0,0,4.16040420532227e-05,0,0,1.59740447998047e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.51071357727051e-05,0,0,3.8444995880127e-05,0,0,4.1663646697998e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,2.25305557250977e-05,0,0,4.49419021606445e-05,0,0,2.24709510803223e-05,0,0,4.16561961174011e-05,0,0,4.48226928710938e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.8444995880127e-05,0,0,3.84523300454021e-05,0,0,2.58684158325195e-05,0,0,3.20672988891602e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,3.51667404174805e-05,0,0,4.50015068054199e-05,0,0,4.48599457740784e-05,0,0,4.1663646697998e-05,0,0,2.55107879638672e-05,0,0,4.17232513427734e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,4.16040420532227e-05,0,0,3.20374965667725e-05,0,0,1.59740447998047e-05,0,0,2.58684158325195e-05,0,0,1.59740447998047e-05,0,0,4.49419021606445e-05,0,0,4.49419021606445e-05,0,0,4.1663646697998e-05,0,0,1.60224735736847e-05,0,0,1.91330909729004e-05,0,0,4.80413436889648e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.24113464355469e-05,0,0,4.49419021606445e-05,0,0,2.25305557250977e-05,0,0,2.25305557250977e-05,0,0,2.58684158325195e-05,0,0,2.88486480712891e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,1.59740447998047e-05,0,0,3.85046005249023e-05,0,0,3.20672988891602e-05, +0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.8444995880127e-05,0,0,1.92523002624512e-05,0,0,2.88486480712891e-05,0,0,4.49419021606445e-05,0,0,3.83853912353516e-05,0,0,2.57492065429688e-05,0,0,2.24113464355469e-05,0,0,1.59740447998047e-05,0,0,3.51667404174805e-05,0,0,1.92523002624512e-05,0,0,4.16561961174011e-05,0,0,1.91330909729004e-05,0,0,2.55107879638672e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.17232513427734e-05,0,0,4.48226928710938e-05,0,0,4.48524951934814e-05,0,0,2.5629997253418e-05,0,0,3.51667404174805e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.85046005249023e-05,0,0,2.88486480712891e-05,0,0,3.52859497070313e-05,0,0,4.48599457740784e-05,0,0,2.24709510803223e-05,0,0,3.20672988891602e-05,0,0,4.43458557128906e-05,0,0,1.9073486328125e-05,0,0,4.17232513427734e-05,0,0,1.62124633789063e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.83853912353516e-05,0,0,1.9073486328125e-05,0,0,1.9073486328125e-05,0,0,3.83853912353516e-05,0,0,4.16040420532227e-05,0,0,3.51667404174805e-05,0,0,1.91330909729004e-05,0,0,2.56347702816129e-05,0,0,3.8444995880127e-05,0,0,4.48524951934814e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,2.5629997253418e-05,0,0,4.4860877096653e-05,0,0,2.55703926086426e-05,0,0,1.92523002624512e-05,0,0,3.8444995880127e-05,0,0,3.20374965667725e-05,0,0,3.8444995880127e-05,0,0,2.88486480712891e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.250075340271e-05,0,0,4.48599457740784e-05,0,0,3.20374965667725e-05,0,0,1.91330909729004e-05,0,0,2.88486480712891e-05,0,0,3.82661819458008e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,4.80413436889648e-05,0,0,3.51667404174805e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,3.20672988891602e-05,0,0,2.21729278564453e-05, +0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,1.9073486328125e-05,0,0,3.01599502563477e-05,0,0,3.19480895996094e-05,0,0,1.91330909729004e-05,0,0,1.92224979400635e-05,0,0,3.8444995880127e-05,0,0,4.18424606323242e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.76701354980469e-05,0,0,2.21729278564453e-05,0,0,1.91330909729004e-05,0,0,1.60187482833862e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.05311584472656e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,1.9073486328125e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.51667404174805e-05,0,0,3.82661819458008e-05,0,0,4.48524951934814e-05,0,0,4.48524951934814e-05,0,0,3.52561473846436e-05,0,0,3.8444995880127e-05,0,0,2.25305557250977e-05,0,0,3.20672988891602e-05,0,0,1.91926956176758e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,2.58684158325195e-05,0,0,2.24113464355469e-05,0,0,1.97887420654297e-05,0,0,1.97887420654297e-05,0,0,4.17232513427734e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0, +3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.43458557128906e-05,0,0,3.82661819458008e-05,0,0,4.17232513427734e-05,0,0,4.49419021606445e-05,0,0,3.19480895996094e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,4.43458557128906e-05,0,0,3.20672988891602e-05,0,0,3.52486968040466e-05,0,0,2.5629997253418e-05,0,0,2.24262475967407e-05,0,0,1.92224979400635e-05,0,0,3.84151935577393e-05,0,0,2.24113464355469e-05,0,0,3.85046005249023e-05,0,0,3.85046005249023e-05,0,0,1.91926956176758e-05,0,0,3.20672988891602e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.57492065429688e-05,0,0,2.57492065429688e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,4.17232513427734e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,1.95503234863281e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.2814998626709e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.10268592834473e-06,0,3.24249267578125e-05,-1.07288360595703e-06,0,3.24249267578125e-05,-1.19209289550781e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,2.55107879638672e-05,0,0,2.250075340271e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05, +-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.82661819458008e-05,0,0,2.56597995758057e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.49011611938477e-06,0,3.19480895996094e-05,0,0,2.21729278564453e-05,0,0,4.16934490203857e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,1.9073486328125e-05,0,0,3.82661819458008e-05,0,0,1.60187482833862e-05,0,0,2.24113464355469e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.37090682983398e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,4.17232513427734e-05,0,0,2.21729278564453e-05,0,0,4.48524951934814e-05,0,0,4.50611114501953e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.24249267578125e-05,-1.43051147460938e-06,0,3.19480895996094e-05,0,0,4.81605529785156e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.62124633789063e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05, +0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.31713056564331e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.50339508056641e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.24249267578125e-05,2.62260437011719e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.08778476715088e-06,0,3.24249267578125e-05,1.13248825073242e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05, +0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.07288360595703e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.50501728057861e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0, +3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.60932540893555e-06,0,3.24249267578125e-05,1.69873237609863e-06,0,3.24249267578125e-05,1.75461173057556e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.84774398803711e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.78813934326172e-06,0,3.24249267578125e-05,1.9073486328125e-06,0,3.24249267578125e-05,1.96695327758789e-06,0,3.24249267578125e-05,2.02655792236328e-06,0,3.24249267578125e-05,2.11596488952637e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.14576721191406e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.26497650146484e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,2.38418579101563e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06, +0,3.24249267578125e-05,1.22189521789551e-06,0,3.24249267578125e-05,1.2814998626709e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,0,3.24249267578125e-05,1.66893005371094e-06,-0.102122843265533,-0.0225331783294678,0.0192775726318359,-0.140435934066772,-0.0270946025848389,0.0193557739257813,-0.191608786582947,-0.0359129905700684,0.0232858657836914,-0.201152563095093,-0.0447936058044434,0.0194540023803711,-0.198593139648438,-0.0506198406219482,0.020808219909668,-0.195026516914368,-0.0592358112335205,0.0220518112182617,-0.077473521232605,-0.0241842269897461,0.015690803527832,-0.0780785083770752,-0.0232782363891602,0.0216760635375977,-0.0969939529895782,-0.0213191509246826,0.0210294723510742,-0.0942258238792419,-0.0225341320037842,0.0166387557983398,-0.0756353437900543,-0.0321328639984131,0.0140314102172852,-0.107779502868652,-0.0503973960876465,0.00316238403320313,-0.155850350856781,-0.0689494609832764,-0.00112056732177734,-0.16978520154953,-0.0741724967956543,8.7738037109375e-05,-0.182607710361481,-0.0724234580993652,0.0142335891723633,-0.115109443664551,-0.0334539413452148,0.00840377807617188,-0.141991853713989,-0.0398645401000977,0.00139427185058594,-0.154686689376831,-0.0474023818969727,0.00103759765625,-0.169149279594421,-0.0563309192657471,0.00588607788085938,-0.089902937412262,-0.0286011695861816,0.0168647766113281,0,3.48091125488281e-05,0.000247001647949219,-0.0972678661346436,3.19480895996094e-05,0.0763864517211914,-0.120185852050781,3.19480895996094e-05,0.0972585678100586,-0.0839642286300659,3.19480895996094e-05,0.0536823272705078,-0.147774696350098,3.19480895996094e-05,0.117600440979004, +-0.0321134328842163,3.48091125488281e-05,0.0190248489379883,-0.000228285789489746,2.47955322265625e-05,0.000165939331054688,0,3.48091125488281e-05,8.10623168945313e-05,-0.11046290397644,3.19480895996094e-05,0.0866737365722656,-0.0954086780548096,3.19480895996094e-05,0.0776729583740234,-0.103832721710205,3.19480895996094e-05,0.0840530395507813,-0.0876989364624023,3.19480895996094e-05,0.0708608627319336,-0.0873029232025146,3.19480895996094e-05,0.0700759887695313,-0.0362176895141602,3.19480895996094e-05,0.0251531600952148,0,3.19480895996094e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-0.77922397851944,-0.00855302810668945,-0.00636672973632813,-0.804126918315887,-0.0107517242431641,0.100368499755859,-0.809262990951538,-0.0174899101257324,0.200159072875977,-0.7653568983078,-0.0249433517456055,0.330713272094727,-0.823643326759338,-0.0265092849731445,0.425600051879883,-0.736680507659912,-0.018979549407959,0.486465454101563,-0.431824922561646,-0.0066370964050293,0.332218170166016,-0.309072971343994,-0.000495433807373047,0.248791694641113,-0.255867719650269,-7.62939453125e-05,0.211062431335449,-0.213486194610596,3.19480895996094e-05,0.178072929382324,-0.213356971740723,0.000121116638183594,0.176834106445313,-0.173892259597778,0.000461101531982422,0.141868591308594,-0.155902147293091,0.00272226333618164,0.119935035705566,-0.141342163085938,0.00382900238037109,0.092686653137207,2.38418579101563e-07,3.48091125488281e-05,0,-2.38418579101563e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,5.96046447753906e-08,3.48091125488281e-05,0,-5.96046447753906e-08,3.48091125488281e-05,0,-0.032218337059021,3.48091125488281e-05,0.0200433731079102,-0.0701935291290283,5.05447387695313e-05,0.0398502349853516,-0.187162041664124,3.48091125488281e-05,0.0746688842773438,-0.214310526847839,3.48091125488281e-05,0.11689567565918,-0.290314316749573,3.14712524414063e-05,0.199376106262207,-0.327985644340515,3.19480895996094e-05,0.24017333984375,-0.242669820785522,3.19480895996094e-05,0.189798355102539, +-0.224806308746338,3.19480895996094e-05,0.182602882385254,-0.162831783294678,3.19480895996094e-05,0.13026237487793,-0.144384860992432,3.19480895996094e-05,0.117368698120117,-0.147778272628784,3.19480895996094e-05,0.120732307434082,-0.121878623962402,3.19480895996094e-05,0.0992889404296875,-0.0982356071472168,3.19480895996094e-05,0.0770635604858398,-0.0702652931213379,3.19480895996094e-05,0.0513620376586914,-3.57627868652344e-07,3.48091125488281e-05,0,0,3.48091125488281e-05,0,0,3.48091125488281e-05,0,-2.98023223876953e-07,3.48091125488281e-05,0,2.68220901489258e-07,3.48091125488281e-05,0,0,4.43458557128906e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,2.24113464355469e-05,0,0,2.24113464355469e-05,0,0,3.83853912353516e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.19480895996094e-05,0,0,2.14576721191406e-05,0,0,3.19480895996094e-05,0,0,2.19345092773438e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,1.59740447998047e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05, +1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,3.24249267578125e-05,1.54972076416016e-06,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,1.01327896118164e-06,0,3.24249267578125e-05,1.10268592834473e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.31130218505859e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.43051147460938e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,3.24249267578125e-05,1.19209289550781e-06,0,4.17232513427734e-05,0,0,4.43458557128906e-05,0,0,3.83853912353516e-05,0,0,4.81605529785156e-05,0,0,4.43458557128906e-05,0,0,2.24113464355469e-05,0,0,4.48226928710938e-05,0,0,3.19480895996094e-05,0,0,2.43186950683594e-05,0,0,3.19480895996094e-05,0,0,3.19480895996094e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,0,3.24249267578125e-05,0,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07, +0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 + } + Normals: *24081 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, +0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, +-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, +-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, +0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, +0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, +-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, +3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, +-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, +-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, +-0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, +-0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, +0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, +-0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, +-0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, +0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, +0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, +0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, +0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, +-0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, +0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, +0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, +0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, +0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, +0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, +0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, +-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, +1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, +0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, +-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, +-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, +-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, +-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, +-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, +0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, +-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, +-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, +-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, +0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, +1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, +0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, +0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, +-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, +0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, +1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, +0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, +1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, +-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, +1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,0.998518122150927,0.916681956499815,0.521828444674611,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048, +0.40275951102376,0.97666217417229,1.17430025339127,0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.22979035958042,0.949295956641436,0.953685918822885,0.265242695808411,0.957664247602224,0.970916826277971,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488, +0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893,-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438, +4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072,0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935, +-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675,0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241, +0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155,0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.3687296807766,-0.189652357250452,-0.858098965138197,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482, +0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933,0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566, +1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192,0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332, +1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056, +1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765, +0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471, +-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084, +0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024, +0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505, +-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755, +0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245, +0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744, +0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147, +-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482, +0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842, +0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,0.199070394039154,0.131208285689354,1.71188509464264,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712, +1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667, +0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113, +1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.572749421000481,0.897463396191597,0.677460659295321,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.69771420955658,0.770994648337364,0.791048258543015,0.726730242371559,0.828447245061398, +0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734, +0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817, +1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851, +-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666, +1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658, +1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513, +0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655, +-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082, +0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174, +0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194, +-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863, +0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168, +-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449, +-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709, +-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565, +-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068, +-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525, +-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391, +-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196, +-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234, +0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741, +-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833, +0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957, +-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494, +-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004, +0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274, +-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485, +-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635, +-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808, +0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004, +0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465, +0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359, +0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447, +0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261, +0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408, +-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974, +-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494, +-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244, +-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634, +-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435, +0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128, +-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798, +0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115, +-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309, +-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209, +-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882, +-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078, +-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234, +0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693, +0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163, +-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794, +-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496, +-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379, +0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502, +-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008, +-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736, +0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917, +-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686, +-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456, +-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517, +-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523, +-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514, +0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757, +0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275, +1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489, +-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167, +0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694, +0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405, +-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594, +-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953, +-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495, +0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725, +-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296, +-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733, +-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419, +0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788, +1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809, +0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506, +-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196, +-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563, +-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695, +0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011, +-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998, +-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845, +-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749, +-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722, +-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752,-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355, +-1.46571457386017,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688, +0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461, +0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207, +-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159, +0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343, +0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992, +1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575, +-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801, +0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884, +-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337, +1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772, +-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807, +0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619, +-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981, +0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913, +-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494, +-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661, +1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461, +1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229, +-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291, +0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26852324604988,-0.635325476527214, +-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772, +-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115, +-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798, +0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841, +-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871, +0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753, +0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211, +-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955, +0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215, +-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347, +0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099, +-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.15600806474686,-0.679048359394073,-0.674144491553307, +-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971, +-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545, +0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776, +-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396, +-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134, +-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663, +-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515, +-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644, +0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733, +0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308, +0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158, +-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705, +0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507, +-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476, +0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615, +-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171, +-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846, +-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983, +-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029, +0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057, +1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485, +-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177,-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807563818496, "Geometry::Mouth_Lower_Left", "Shape" { + Version: 100 + Indexes: *2469 { + a: 5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6144,6145,6146,6148,6151,6152,6154,6156,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334, +6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869, +6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279, +7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7519,7521,7523,7525,7526,7527,7528,7530,7533,7534,7536,7538,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739, +7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274, +8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684, +8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 + } + Vertices: *7407 { + a: 0,4.9591064453125e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,1.27675056464795,0.0413122177124023,-0.0645132064819336,1.16320300104417,0.0399665832519531,-0.142570495605469,0,4.9591064453125e-05,0,1.27226328848337,0.0412483215332031,-0.0373516082763672,0,4.9591064453125e-05,0,1.219265937827,0.0406303405761719,-0.0804147720336914,0,4.9591064453125e-05,0,0.398767769313054,0.000980377197265625,-0.0432891845703125,0,4.9591064453125e-05,0,0.824047028916539,0.0272226333618164,0.0103206634521484,0,4.9591064453125e-05,0,0.268665730953217,0.122298240661621,0.0223369598388672,0,6.81877136230469e-05,0,0,4.07695770263672e-05,0,0,6.78598880767822e-05,0,0,3.12924385070801e-05,0,0,5.42402267456055e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.140026524662971,0.124683380126953,-0.182172775268555,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,4.02927398681641e-05,0,0,4.49419021606445e-05,0,0,6.31809234619141e-05,0,0,4.69684600830078e-05,0,0,5.87701797485352e-05,0,0.0107803102582693,0.0703191757202148,-0.142992973327637,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,6.00814819335938e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,5.95450401306152e-05,0,0,6.43730163574219e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0995450019836426,-0.000111579895019531,0.0767946243286133,0.0999133586883545,-0.000116348266601563,0.0783901214599609,0.0860245227813721,-0.00116968154907227,0.0627164840698242,0.0861721038818359,-0.0011143684387207,0.0611076354980469,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.130982875823975,-6.19888305664063e-06,0.103739738464355,0.130954027175903,-4.76837158203125e-06,0.101273536682129,0.324752330780029,5.7220458984375e-05,0.259659767150879,0.325700759887695,4.57763671875e-05,0.253317832946777,0.324593782424927,0.000173568725585938,0.258079528808594,0.326769590377808,0.000184535980224609,0.25297737121582,0.398576259613037,0.000951766967773438,0.313431739807129,0.398652076721191,0.000977993011474609,0.30765438079834,0.582014799118042,0.00918912887573242,0.41768741607666,0.587260007858276,0.00879383087158203,0.445124626159668,0.833602666854858,0.0217761993408203,0.506560325622559,0.850619554519653,0.0204572677612305,0.562145233154297,1.16351747512817,0.0385079383850098,0.66041088104248,1.18005168437958,0.041710376739502,0.609430313110352,1.18949866294861,0.0509552955627441,0.537966728210449,1.15998101234436,0.0616559982299805,0.46901798248291,1.33126091957092,0.0551390647888184,0.349763870239258,1.25182485580444,0.0613255500793457,0.302909851074219,1.3816944360733,0.052217960357666,0.200172424316406,1.25871384143829,0.0565094947814941,0.16761589050293,1.33770489692688,0.0463752746582031,0.0549812316894531, +1.21342206001282,0.0471053123474121,-0.00367069244384766,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.085580587387085,-0.00114536285400391,0.0617027282714844,0.0997538566589355,-0.000115871429443359,0.0775241851806641,0.131064653396606,-4.76837158203125e-06,0.102419853210449,0.325293064117432,4.57763671875e-05,0.256248474121094,0.325707674026489,0.000169277191162109,0.255351066589355,0.398464679718018,0.000969409942626953,0.310256958007813,0.588382244110107,0.00899839401245117,0.429603576660156,0.856380224227905,0.0209393501281738,0.546449661254883,1.19825768470764,0.0398087501525879,0.645291328430176,1.20748090744019,0.0545463562011719,0.500950813293457,1.32953596115112,0.0589127540588379,0.324268341064453,1.3626766204834,0.0540976524353027,0.229059219360352,1.32308769226074,0.0466217994689941,0.0923271179199219,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0857086181640625,-0.00112342834472656,0.0612173080444336,0.0996065139770508,-0.000113010406494141,0.0770254135131836,0.131007194519043,-9.05990600585938e-06,0.101668357849121,0.325538873672485,4.57763671875e-05,0.254343032836914,0.326403141021729,0.000187397003173828,0.253816604614258,0.398602247238159,0.000975131988525391,0.308562278747559,0.592257499694824,0.00911521911621094,0.423938751220703,0.848552346229553,0.0214576721191406,0.520729064941406,1.19336068630219,0.041048526763916,0.62343692779541,1.18862676620483,0.0567841529846191,0.478273391723633,1.2949994802475,0.060575008392334,0.320125579833984,1.3117378950119,0.0558371543884277,0.21734619140625,1.26964569091797,0.0471305847167969,0.0571804046630859,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0722827911376953,-0.000379562377929688,0.0543537139892578,0.0975329875946045,-1.57356262207031e-05,0.0820016860961914, +0.127581357955933,2.57492065429688e-05,0.112270355224609,0.316769599914551,4.57763671875e-05,0.280535697937012,0.3157799243927,8.44001770019531e-05,0.277065277099609,0.378435134887695,0.000336647033691406,0.324540138244629,0.466217994689941,0.00272130966186523,0.387022972106934,0.534204959869385,0.00619077682495117,0.395930290222168,0.417741179466248,-0.00707674026489258,-0.00117588043212891,0.434364050626755,-0.000550746917724609,0.0626649856567383,0.462161123752594,0.0153346061706543,0.147782325744629,0.489729762077332,0.0134005546569824,0.257467269897461,0.620650172233582,0.0112357139587402,0.370214462280273,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0807607173919678,-0.000769615173339844,0.0584449768066406,0.0994241237640381,-6.34193420410156e-05,0.0786218643188477,0.130537271499634,1.04904174804688e-05,0.105287551879883,0.323413610458374,4.57763671875e-05,0.265007019042969,0.322205543518066,0.000130176544189453,0.263875961303711,0.392252683639526,0.000641345977783203,0.315938949584961,0.556198358535767,0.00570297241210938,0.437200546264648,0.739838480949402,0.0132083892822266,0.502562522888184,0.947428941726685,0.0250177383422852,0.562769889831543,0.864683449268341,0.0331206321716309,0.423648834228516,0.888651371002197,0.0360569953918457,0.254423141479492,0.892789483070374,0.0343384742736816,0.107573509216309,0.86562305688858,0.0304360389709473,0.0556659698486328,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0307435989379883,4.57763671875e-05,0.0209827423095703,0.0554227828979492,4.33921813964844e-05,0.0407466888427734,0.340609312057495,4.57763671875e-05,0.295917510986328,0.302258491516113,4.57763671875e-05,0.286791801452637,0.182676315307617,4.57763671875e-05,0.133762359619141,0.169522762298584,3.4332275390625e-05,0.12065601348877,0.0795543193817139,4.57763671875e-05,0.0599660873413086,0.290952086448669,0.105450630187988, +0.0599746704101563,0.322829782962799,0.0482006072998047,0.153926849365234,0.187987804412842,0.0225543975830078,0.1278076171875,0.21029007434845,0.0669927597045898,0.113323211669922,0.345803499221802,0.163242340087891,0.268852233886719,0.37753438949585,4.57763671875e-05,0.28925895690918,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05, +0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00606608390808105,4.57763671875e-05,0.00359916687011719,0.0112559795379639,4.57763671875e-05,0.00667762756347656,0.00989580154418945,4.24385070800781e-05,0.00587081909179688,0.0197978019714355,4.57763671875e-05,0.0124273300170898,0.059929370880127,4.57763671875e-05,0.0355510711669922,0.0632195472717285,4.57763671875e-05,0.0387163162231445,0.0708670616149902,4.57763671875e-05,0.0451507568359375,0.175060987472534,4.57763671875e-05,0.195073127746582,0.218379974365234,-0.000601768493652344,0.183271408081055,0.150002717971802,0.0490407943725586,0.117069244384766,0.107816696166992,0.0602731704711914,-0.0419492721557617,0.0637694597244263,0.0518913269042969,-0.071258544921875,0.144341826438904,0.0628318786621094,-0.0906219482421875,0.15870076417923,0.0776147842407227,-0.14581298828125,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,-0.000926733016967773,-0.00148725509643555,-8.392333984375e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000644087791442871,-0.000343084335327148,-3.814697265625e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, +0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000365495681762695,3.62396240234375e-05,-1.62124633789063e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,5.65052032470703e-05,0,-0.00272870063781738,-0.00544142723083496,-0.000269889831542969,-0.00305509567260742,-0.00611639022827148,-0.000284194946289063,-0.00193691253662109,-0.0051581859588623,-0.00018310546875,-0.000319719314575195,-0.00332498550415039,-5.340576171875e-05,0.000667214393615723,-0.00159335136413574,2.47955322265625e-05,0.000542759895324707,-0.00036168098449707,2.57492065429688e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.4332275390625e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05,0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05, +0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,5.29289245605469e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0.00114083290100098,4.57763671875e-05,0.000678062438964844,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.011305570602417,4.57763671875e-05,0.00670719146728516,0,4.57763671875e-05,1.9073486328125e-06,0.0212113857269287,-0.00290679931640625,0.0136737823486328,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.000640630722045898,-0.00219821929931641,0.00045013427734375,0.00117087364196777,-0.0427980422973633,-0.0575265884399414,0.00343072414398193,0.0161342620849609,-0.0968351364135742,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.0195425152778625,0.0199184417724609,-0.0706014633178711,0.0161951780319214,0.00913238525390625,-0.0500688552856445,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.0291272699832916,0.0339164733886719,-0.0910749435424805,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05,0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05,0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.39882278442383e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.11407852172852e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0, +0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05, +-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0, +4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05, +2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06, +0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-1.96695327758789e-06,-0.000391721725463867,-1.43051147460938e-05,-9.77516174316406e-05,-0.00304818153381348,-0.000110626220703125,-0.00101387500762939,-0.00720953941345215,-0.000286102294921875,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-3.21865081787109e-06,-0.00113964080810547,-4.00543212890625e-05,-5.60283660888672e-06,-0.00394773483276367,-0.000139236450195313,-0.000206887722015381,-0.00787067413330078,-0.00028228759765625,-0.00138866901397705,-0.0128016471862793,-0.000490188598632813,0,-6.12735748291016e-05,-1.9073486328125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.017369270324707,4.57763671875e-05,0.013641357421875,0.0367915630340576,4.57763671875e-05,0.0297737121582031,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0526015758514404,4.57763671875e-05,0.0412731170654297,0.136298179626465,4.57763671875e-05,0.1109619140625,0.148332357406616,4.57763671875e-05,0.120075225830078,0.187926292419434,4.57763671875e-05,0.151844024658203,0.291009664535522,4.57763671875e-05,0.233586311340332,0.206958293914795,4.57763671875e-05,0.143731117248535,0.168437242507935,4.57763671875e-05,0.0970783233642578,0.115802884101868,4.9591064453125e-05,0.0722675323486328,0.0915870070457458,4.9591064453125e-05,0.0478658676147461,0.0352809429168701,4.9591064453125e-05,0.0182924270629883,0.00406369566917419, +4.9591064453125e-05,0.00210762023925781,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0771114826202393,-0.00114536285400391,0.0593252182006836,0.0946142673492432,-0.000115394592285156,0.0761613845825195,0.1218421459198,-5.24520874023438e-06,0.100505828857422,0.304980754852295,4.57763671875e-05,0.254389762878418,0.304795265197754,0.000173091888427734,0.252619743347168,0.372626304626465,0.000965595245361328,0.30400276184082,0.51967191696167,0.00901460647583008,0.399782180786133,0.807669162750244,0.0217432975769043,0.529636383056641,1.15381026268005,0.0420465469360352,0.59061336517334,1.08818674087524,0.057915210723877,0.476544380187988,1.18024528026581,0.0611381530761719,0.293766021728516,1.19687902927399,0.0561661720275879,0.153227806091309,1.15293216705322,0.0465631484985352,-0.0137386322021484,1.10584187509812,0.0393071174621582,-0.14647388458252,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0433340072631836,4.57763671875e-05,0.0338935852050781,0.0688185691833496,4.57763671875e-05,0.0558996200561523,0.0775392055511475,4.57763671875e-05,0.0620298385620117,0.206264972686768,4.57763671875e-05,0.167669296264648,0.211111307144165,4.57763671875e-05,0.17247486114502,0.261170387268066,4.57763671875e-05,0.212761878967285,0.32745099067688,4.57763671875e-05,0.256878852844238,0.401511788368225,4.57763671875e-05,0.293492317199707,0.507161974906921,2.62260437011719e-05,0.314969062805176,0.397182404994965,4.9591064453125e-05,0.192567825317383,0.382010042667389,4.9591064453125e-05,0.115025520324707,0.137231200933456,4.9591064453125e-05,0.0726718902587891,0.0614893436431885,2.6702880859375e-05,0.0346031188964844,0.0143055645967252,4.9591064453125e-05,0.00935268402099609,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,2.288818359375e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0237081050872803,-0.000133991241455078,-0.0504207611083984,0.026033878326416,0.000258445739746094,-0.055206298828125,0.0438981056213379,-0.00110530853271484,-0.083491325378418,0.0439610481262207,-0.00322771072387695,-0.0754480361938477,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.209179162979126,0.00344562530517578,-0.466486930847168,0.199255704879761,0.000177860260009766,-0.436874389648438,0.194235324859619,0.00388717651367188,-0.457242965698242, +0.199488162994385,0.00119972229003906,-0.448207855224609,0.183046340942383,0.00240850448608398,-0.441157341003418,0.195775270462036,0.00662660598754883,-0.433914184570313,0.209669828414917,0.000276565551757813,-0.486897468566895,0.230850219726563,0.00688409805297852,-0.495140075683594,0.304943323135376,-0.00571918487548828,-0.486323356628418,0.232898235321045,-0.00201416015625,-0.470913887023926,0.410125017166138,0.00696897506713867,-0.505133628845215,0.347640037536621,0.0182499885559082,-0.459443092346191,0.567117929458618,0.0388288497924805,-0.513298034667969,0.565139889717102,0.0364694595336914,-0.505244255065918,0.80171012878418,0.0487813949584961,-0.520891189575195,0.800869226455688,0.0436215400695801,-0.470650672912598,1.0136022567749,0.0481581687927246,-0.434863090515137,0.992466449737549,0.0423970222473145,-0.428083419799805,1.14706563949585,0.0438179969787598,-0.333576202392578,1.06126832962036,0.0382218360900879,-0.354747772216797,1.22421514987946,0.0404014587402344,-0.189285278320313,1.11890956759453,0.0371947288513184,-0.244532585144043,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0460555553436279,-0.00269508361816406,-0.0827474594116211,0.0253453254699707,9.05990600585938e-05,-0.0542888641357422,0.20759129524231,0.00195121765136719,-0.461504936218262,0.200362682342529,0.00267171859741211,-0.461992263793945,0.192740201950073,0.00152063369750977,-0.44602108001709,0.223670721054077,-1.9073486328125e-05,-0.499362945556641,0.274475574493408,-0.00381660461425781,-0.481388092041016,0.383922815322876,0.0181665420532227,-0.471580505371094,0.617798566818237,0.0379781723022461,-0.562504768371582,0.826755523681641,0.0464897155761719,-0.483047485351563,1.02012157440186,0.0453858375549316,-0.403177261352539,1.1367609500885,0.041989803314209,-0.291484832763672,1.2122520506382,0.0398697853088379,-0.153960227966309,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, +0,0,4.9591064453125e-05,0,0.0440332889556885,-0.00301742553710938,-0.0769205093383789,0.0243947505950928,-4.62532043457031e-05,-0.052128791809082,0.202900886535645,0.000838756561279297,-0.447793960571289,0.20039176940918,0.00176286697387695,-0.455070495605469,0.195316791534424,0.00708150863647461,-0.439980506896973,0.228870153427124,0.00714874267578125,-0.498174667358398,0.305404424667358,0.00186586380004883,-0.487123489379883,0.408416032791138,0.00979042053222656,-0.52496337890625,0.602838277816772,0.0370664596557617,-0.578190803527832,0.821746826171875,0.0447449684143066,-0.46190357208252,1.02366185188293,0.0436148643493652,-0.39854907989502,1.10159635543823,0.039700984954834,-0.312348365783691,1.16751372814178,0.0383415222167969,-0.189427375793457,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0329561233520508,-0.00126838684082031,-0.0770187377929688,0.0178177356719971,0.000711441040039063,-0.042724609375,0.101300239562988,0.00826358795166016,-0.339463233947754,0.0822772979736328,0.00800848007202148,-0.343308448791504,0.0858478546142578,0.00670814514160156,-0.331518173217773,0.0878691673278809,0.00438547134399414,-0.336105346679688,0.136249303817749,0.006744384765625,-0.329708099365234,0.118672609329224,0.0160059928894043,-0.250938415527344,0.383847296237946,0.00365972518920898,-0.0582962036132813,0.358230471611023,0.00663995742797852,-0.120144844055176,0.319499254226685,0.00565719604492188,-0.162991523742676,0.243722558021545,0.0149374008178711,-0.188346862792969,0.202286958694458,0.0161342620849609,-0.261253356933594,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0427894592285156,-0.00199079513549805,-0.0824222564697266,0.02524733543396,0.000360488891601563,-0.0528402328491211,0.197227001190186,0.0046544075012207,-0.442905426025391,0.167774438858032,0.00473642349243164,-0.413106918334961,0.148416519165039,0.0034785270690918, +-0.405518531799316,0.165864944458008,0.000567436218261719,-0.436121940612793,0.182701826095581,-0.00240182876586914,-0.444380760192871,0.248622179031372,0.0136852264404297,-0.353813171386719,0.365522146224976,0.0262999534606934,-0.409682273864746,0.511186003684998,0.0328006744384766,-0.341083526611328,0.651204943656921,0.0321660041809082,-0.311899185180664,0.741390407085419,0.0290970802307129,-0.196427345275879,0.792137801647186,0.0268654823303223,-0.0943164825439453,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0315001010894775,4.57763671875e-05,-0.00127029418945313,0.0146069526672363,4.57763671875e-05,-0.0167045593261719,0.0961923599243164,0.0385913848876953,-0.121387481689453,0.0194237232208252,0.00292253494262695,-0.124423980712891,-0.00406789779663086,0.00166702270507813,-0.0820159912109375,-0.0112900733947754,0.0023193359375,-0.0759544372558594,0.0290379524230957,0.00258350372314453,-0.157754898071289,0.241905629634857,0.10344123840332,-0.00790691375732422,0.182855546474457,0.04217529296875,0.0330257415771484,0.235190033912659,0.0758724212646484,-0.0250358581542969,0.230345726013184,0.133208274841309,-0.0967388153076172,0.196059226989746,0.124443054199219,-0.0937747955322266,0.124248266220093,0.0529670715332031,-0.117525100708008,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00103378295898438,-0.00187444686889648,8.58306884765625e-05,0,4.9591064453125e-05,0,-0.0031275749206543,0.000556230545043945,-0.000153541564941406,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0.00190234184265137,-0.00217366218566895,0.000123023986816406,0.0010840892791748,-0.00107693672180176,6.67572021484375e-05,0.00384688377380371,4.57763671875e-05,0,0.000600814819335938,4.43458557128906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000285625457763672,4.57763671875e-05,0.000201225280761719,-0.0242385864257813,0.00344038009643555,-0.0375699996948242,0.0809657573699951,0.0402402877807617,-0.063267707824707,0.122883081436157,0.0390377044677734,-0.0621671676635742,0.173804521560669,0.0593433380126953,-0.0852117538452148,0.18219780921936,0.0651445388793945,-0.125412940979004,0.151659607887268,0.0670242309570313,-0.133914947509766,0.120817065238953,0.0562601089477539,-0.164339065551758,0.119302004575729, +0.080561637878418,-0.197463035583496,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,0.00949263572692871,-0.00575876235961914,-9.5367431640625e-06,0.00077211856842041,-0.000208377838134766,-7.62939453125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00562560558319092,-0.00316333770751953,-8.58306884765625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00296485424041748,-0.00134897232055664,-1.33514404296875e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0.000146865844726563,9.05990600585938e-06,0,0,5.65052032470703e-05,0,0.0252008438110352,-0.012009859085083,-0.000249862670898438,0.0277515649795532,-0.0111331939697266,-0.000570297241210938,0.0214325189590454,-0.00760626792907715,-0.00087738037109375,0.00955390930175781,-0.00347471237182617,-0.00100326538085938,-0.000794768333435059,-0.000644922256469727,-0.000908851623535156,-0.00619149208068848,0.00084376335144043,-0.000573158264160156, +0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00289821624755859,-0.00311136245727539,0.000180244445800781,0.000104665756225586,-0.000274419784545898,1.23977661132813e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05,0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05,0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,1.50203704833984e-05,3.00407409667969e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,5.7220458984375e-05,0,0,6.38961791992188e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.0203044414520264,0.00596714019775391,-0.010066032409668,0.00263667106628418,0.000639915466308594,-0.00127696990966797,0.089146614074707,0.0229692459106445,-0.0434141159057617,0.0199530124664307,0.00454235076904297,-0.00967311859130859,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.00776076316833496,0.00438785552978516,-0.00391769409179688,0.110514163970947,0.0556974411010742,-0.0555076599121094,0.0782061815261841,0.0369453430175781,-0.114658355712891,0.000715732574462891,0.000311851501464844,-0.000352859497070313,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.00396722555160522,0.0369396209716797,-0.154996871948242,0.00452947616577148,0.0224714279174805,-0.137593269348145,-2.02655792236328e-06,6.96182250976563e-05,-0.000112533569335938,2.80141830444336e-05,9.34600830078125e-05,-0.000179290771484375,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.00914990901947021,0.0528097152709961,-0.158097267150879,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06, +0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05,0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05, +0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05, +0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06, +0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06, +0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0, +4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,9.41753387451172e-06,4.79221343994141e-05,0,0.00067216157913208,-0.000592708587646484,7.62939453125e-06,0.00578618049621582,-0.00467133522033691,2.86102294921875e-05,0.014642596244812,-0.0114948749542236,4.67300415039063e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, +0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0027192234992981,-0.000914096832275391,-3.814697265625e-06,0.00544500350952148,-0.00318717956542969,1.33514404296875e-05,0.0113910436630249,-0.00830650329589844,3.814697265625e-05,0.0213048458099365,-0.016322135925293,6.19888305664063e-05,0.00167185068130493,-0.000221490859985352,-7.62939453125e-06,0,4.9591064453125e-05,0,0.00225639343261719,4.57763671875e-05,0.00100135803222656,0.0018007755279541,0.00374794006347656,-0.00725078582763672,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0199854373931885,4.1961669921875e-05,-0.132597923278809,-0.0369260311126709,4.43458557128906e-05,-0.280458450317383,-0.0151350498199463,4.43458557128906e-05,-0.343279838562012,0.0193138122558594,5.10215759277344e-05,-0.287232398986816,0.0883233547210693,-0.000378131866455078,-0.214262962341309,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0.0378122329711914,-0.00226688385009766,-0.0572452545166016,0.0200674533843994,1.47819519042969e-05,-0.0459175109863281,0.14181661605835,0.00170373916625977,-0.355400085449219,0.126132965087891,0.00260686874389648,-0.344870567321777,0.129740953445435,0.00199508666992188,-0.349286079406738,0.166869878768921,0.000532150268554688,-0.410344123840332,0.244623899459839,0.000669956207275391,-0.387523651123047,0.343910932540894,0.0180392265319824,-0.356136322021484,0.504353523254395,0.0357527732849121,-0.423690795898438,0.743615865707397,0.0425806045532227,-0.483428955078125,0.920379042625427,0.0413627624511719,-0.438457489013672,1.01215833425522,0.0373291969299316,-0.353115081787109,1.06523817777634,0.0364007949829102,-0.249068260192871,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0, +0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0174460411071777,-0.000600814819335938,-0.0167436599731445,0.00991320610046387,-0.000119686126708984,-0.0170927047729492,0.0346016883850098,-0.00106525421142578,-0.0971622467041016,0.0823724269866943,0.0261154174804688,-0.238544464111328,0.0895419120788574,0.0255932807922363,-0.255021095275879,0.0505590438842773,-0.00287485122680664,-0.175063133239746,0.131551265716553,-0.00809049606323242,-0.238802909851074,0.05527663230896,6.00814819335938e-05,-0.0686264038085938,0,2.6702880859375e-05,0.00225639343261719,0,4.9591064453125e-05,0.00278759002685547,0,4.9591064453125e-05,0.000185012817382813,0,4.9591064453125e-05,0.00462722778320313,0,2.6702880859375e-05,0.00151348114013672,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.00946259498596191,-0.00398445129394531,-0.033843994140625,-0.0389766693115234,-0.0430498123168945,-0.0427312850952148,-9.62018966674805e-05,9.05990600585938e-05,-0.000657081604003906,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06, +0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06 + } + Normals: *7407 { + a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453, +-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666, +1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428, +0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255, +-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868, +-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951, +0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347, +-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537, +-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009, +0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843, +-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934, +-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996, +0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176, +-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271, +-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036, +0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026, +0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312, +-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224, +0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802, +0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946, +0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045, +-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956, +-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467, +-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753, +0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581, +-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245, +0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655, +-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321, +-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191, +0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125, +1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235, +0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831, +-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197, +-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332, +0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341, +-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966, +0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269, +-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505, +-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369, +0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306, +-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292, +0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897, +-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076, +0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857, +-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551, +-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122, +-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743, +1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513, +-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366, +-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103, +-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323, +-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971, +-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362, +-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668, +-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626, +0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678, +0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252, +-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199, +0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154, +-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801, +-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905, +-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059, +-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782, +0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062, +-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558, +1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059, +1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 + } + } + Geometry: 2807563819072, "Geometry::Mouth_Lower_Right", "Shape" { + Version: 100 + Indexes: *2469 { + a: 5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6135,6137,6139,6141,6143,6144,6145,6146,6148,6151,6152,6154,6156,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334, +6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869, +6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279, +7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7517,7519,7521,7523,7525,7526,7527,7528,7530,7533,7534,7536,7538,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739, +7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274, +8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684, +8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 + } + Vertices: *7407 { + a: 0,4.9591064453125e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-1.27675056450244,0.0413122177124023,-0.0645132064819336,-1.16320300100051,0.0399665832519531,-0.142570495605469,0,4.9591064453125e-05,0,-1.27226328851248,0.0412483215332031,-0.0373516082763672,0,4.9591064453125e-05,0,-1.21926593778335,0.0406303405761719,-0.0804147720336914,0,4.9591064453125e-05,0,-0.398767769360347,0.000980377197265625,-0.0432891845703125,0,4.9591064453125e-05,0,-0.824047029120266,0.0272226333618164,0.0103206634521484,0,4.9591064453125e-05,0,-0.268665730953217,0.122298240661621,0.0223369598388672,0,6.81877136230469e-05,0,0,4.07695770263672e-05,0,0,6.78598880767822e-05,0,0,3.12924385070801e-05,0,0,5.42402267456055e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.140026524662971,0.124683380126953,-0.182172775268555,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,4.02927398681641e-05,0,0,4.49419021606445e-05,0,0,6.31809234619141e-05,0,0,4.69684600830078e-05,0,0,5.87701797485352e-05,0,-0.0107803102582693,0.0703191757202148,-0.142992973327637,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,6.00814819335938e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,5.95450401306152e-05,0,0,6.43730163574219e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0237076282501221,-0.000133991241455078,-0.0504207611083984,-0.0260331630706787,0.000258445739746094,-0.055206298828125,-0.0438990592956543,-0.00110530853271484,-0.083491325378418,-0.0439605712890625,-0.00322771072387695,-0.0754480361938477,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.209179162979126,0.00344562530517578,-0.466486930847168,-0.199256181716919,0.000177860260009766,-0.436874389648438,-0.194233894348145,0.00388717651367188,-0.457242965698242,-0.199488162994385,0.00119972229003906,-0.448207855224609,-0.183044910430908,0.00240850448608398,-0.441157341003418,-0.195775508880615,0.00662660598754883,-0.433914184570313,-0.209670066833496,0.000276565551757813,-0.486897468566895,-0.2308509349823,0.00688409805297852,-0.495140075683594,-0.304943799972534,-0.00571918487548828,-0.486323356628418,-0.232898950576782,-0.00201416015625,-0.470913887023926,-0.410125255584717,0.00696897506713867,-0.505133628845215,-0.347639560699463,0.0182499885559082,-0.459443092346191,-0.567118167877197,0.0388288497924805,-0.513298034667969,-0.565140247344971,0.0364694595336914,-0.505244255065918,-0.801709890365601,0.0487813949584961,-0.520891189575195,-0.800868630409241,0.0436215400695801,-0.470650672912598,-1.01360249519348,0.0481581687927246,-0.434863090515137,-0.992466568946838,0.0423970222473145,-0.428083419799805,-1.14706563949585,0.0438179969787598,-0.333576202392578,-1.06126832962036,0.0382218360900879, +-0.354747772216797,-1.22421497106552,0.0404014587402344,-0.189285278320313,-1.11890989542007,0.0371947288513184,-0.244532585144043,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0460553169250488,-0.00269508361816406,-0.0827474594116211,-0.0253455638885498,9.05990600585938e-05,-0.0542888641357422,-0.20759105682373,0.00195121765136719,-0.461504936218262,-0.200362682342529,0.00267171859741211,-0.461992263793945,-0.192740201950073,0.00152063369750977,-0.44602108001709,-0.223671436309814,-1.9073486328125e-05,-0.499362945556641,-0.274474620819092,-0.00381660461425781,-0.481388092041016,-0.383924007415771,0.0181665420532227,-0.471580505371094,-0.617798805236816,0.0379781723022461,-0.562504768371582,-0.826755404472351,0.0464897155761719,-0.483047485351563,-1.02012228965759,0.0453858375549316,-0.403177261352539,-1.13676130771637,0.041989803314209,-0.291484832763672,-1.2122523188591,0.0398697853088379,-0.153960227966309,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0440323352813721,-0.00301742553710938,-0.0769205093383789,-0.0243949890136719,-4.62532043457031e-05,-0.052128791809082,-0.202900886535645,0.000838756561279297,-0.447793960571289,-0.200392007827759,0.00176286697387695,-0.455070495605469,-0.195316314697266,0.00708150863647461,-0.439980506896973,-0.228870630264282,0.00714874267578125,-0.498174667358398,-0.305405139923096,0.00186586380004883,-0.487123489379883,-0.408415794372559,0.00979042053222656,-0.52496337890625,-0.602837800979614,0.0370664596557617,-0.578190803527832,-0.821746468544006,0.0447449684143066,-0.46190357208252,-1.02366209030151,0.0436148643493652,-0.39854907989502,-1.10159647464752,0.039700984954834,-0.312348365783691,-1.16751384735107,0.0383415222167969,-0.189427375793457,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, +0,-0.0329561233520508,-0.00126838684082031,-0.0770187377929688,-0.0178177356719971,0.000711441040039063,-0.042724609375,-0.101300239562988,0.00826358795166016,-0.339463233947754,-0.0822772979736328,0.00800848007202148,-0.343308448791504,-0.0858478546142578,0.00670814514160156,-0.331518173217773,-0.0878691673278809,0.00438547134399414,-0.336105346679688,-0.136249303817749,0.006744384765625,-0.329708099365234,-0.118672609329224,0.0160059928894043,-0.250938415527344,-0.383847296237946,0.00365972518920898,-0.0582962036132813,-0.358230471611023,0.00663995742797852,-0.120144844055176,-0.319499254226685,0.00565719604492188,-0.162991523742676,-0.243722558021545,0.0149374008178711,-0.188346862792969,-0.202286958694458,0.0161342620849609,-0.261253356933594,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0427894592285156,-0.00199079513549805,-0.0824222564697266,-0.02524733543396,0.000360488891601563,-0.0528402328491211,-0.197227001190186,0.0046544075012207,-0.442905426025391,-0.167774200439453,0.00473642349243164,-0.413106918334961,-0.148416519165039,0.0034785270690918,-0.405518531799316,-0.165865182876587,0.000567436218261719,-0.436121940612793,-0.182701826095581,-0.00240182876586914,-0.444380760192871,-0.248621940612793,0.0136852264404297,-0.353813171386719,-0.365522146224976,0.0262999534606934,-0.409682273864746,-0.511186003684998,0.0328006744384766,-0.341083526611328,-0.651204824447632,0.0321660041809082,-0.311899185180664,-0.741390466690063,0.0290970802307129,-0.196427345275879,-0.792137801647186,0.0268654823303223,-0.0943164825439453,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0315001010894775,4.57763671875e-05,-0.00127029418945313,-0.0146069526672363,4.57763671875e-05,-0.0167045593261719,-0.0961923599243164,0.0385913848876953,-0.121387481689453,-0.0194237232208252,0.00292253494262695,-0.124423980712891,0.00406789779663086, +0.00166702270507813,-0.0820159912109375,0.0112900733947754,0.0023193359375,-0.0759544372558594,-0.0290379524230957,0.00258350372314453,-0.157754898071289,-0.241905629634857,0.10344123840332,-0.00790691375732422,-0.182855546474457,0.04217529296875,0.0330257415771484,-0.235190033912659,0.0758724212646484,-0.0250358581542969,-0.230345726013184,0.133208274841309,-0.0967388153076172,-0.196059226989746,0.124443054199219,-0.0937747955322266,-0.124248266220093,0.0529670715332031,-0.117525100708008,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06, +0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00103378295898438,-0.00187444686889648,8.58306884765625e-05,0,4.9591064453125e-05,0,0.0031275749206543,0.000556230545043945,-0.000153541564941406,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,-0.00190234184265137,-0.00217366218566895,0.000123023986816406,-0.0010840892791748,-0.00107693672180176,6.67572021484375e-05,-0.00384688377380371,4.57763671875e-05,0,-0.000600814819335938,4.43458557128906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000285625457763672,4.57763671875e-05,0.000201225280761719,0.0242385864257813,0.00344038009643555,-0.0375699996948242,-0.0809657573699951,0.0402402877807617,-0.063267707824707,-0.122883081436157,0.0390377044677734,-0.0621671676635742,-0.173804521560669,0.0593433380126953,-0.0852117538452148,-0.18219780921936,0.0651445388793945,-0.125412940979004,-0.151659607887268,0.0670242309570313,-0.133914947509766,-0.120817065238953,0.0562601089477539,-0.164339065551758,-0.119302004575729,0.080561637878418,-0.197463035583496,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,-0.00949263572692871,-0.00575876235961914,-9.5367431640625e-06,-0.00077211856842041,-0.000208377838134766,-7.62939453125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05, +0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00562560558319092,-0.00316333770751953,-8.58306884765625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00296485424041748,-0.00134897232055664,-1.33514404296875e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,-0.000146865844726563,9.05990600585938e-06,0,0,5.65052032470703e-05,0,-0.0252008438110352,-0.012009859085083,-0.000249862670898438,-0.0277515649795532,-0.0111331939697266,-0.000570297241210938,-0.0214325189590454,-0.00760626792907715,-0.00087738037109375,-0.00955390930175781,-0.00347471237182617,-0.00100326538085938,0.000794768333435059,-0.000644922256469727,-0.000908851623535156,0.00619149208068848,0.00084376335144043,-0.000573158264160156,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00289821624755859,-0.00311136245727539,0.000180244445800781,-0.000104665756225586,-0.000274419784545898,1.23977661132813e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05, +0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05,0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,-1.50203704833984e-05,3.00407409667969e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,5.7220458984375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0203044414520264,0.00596714019775391,-0.010066032409668,-0.00263667106628418,0.000639915466308594,-0.00127696990966797,-0.089146614074707,0.0229692459106445,-0.0434141159057617,-0.0199530124664307,0.00454235076904297,-0.00967311859130859,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, +0,4.57763671875e-05,1.9073486328125e-06,-0.00776076316833496,0.00438785552978516,-0.00391769409179688,-0.110514163970947,0.0556974411010742,-0.0555076599121094,-0.0782061815261841,0.0369453430175781,-0.114658355712891,-0.000715732574462891,0.000311851501464844,-0.000352859497070313,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.00396722555160522,0.0369396209716797,-0.154996871948242,-0.00452947616577148,0.0224714279174805,-0.137593269348145,2.02655792236328e-06,6.96182250976563e-05,-0.000112533569335938,-2.80141830444336e-05,9.34600830078125e-05,-0.000179290771484375,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.00914990901947021,0.0528097152709961,-0.158097267150879,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05, +0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05,0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05,0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05, +0,0,2.71797180175781e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.93662261962891e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05, +0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0, +0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,-9.41753387451172e-06,4.79221343994141e-05,0,-0.00067216157913208,-0.000592708587646484,7.62939453125e-06,-0.00578618049621582,-0.00467133522033691,2.86102294921875e-05,-0.014642596244812,-0.0114948749542236,4.67300415039063e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0027192234992981,-0.000914096832275391,-3.814697265625e-06,-0.00544500350952148,-0.00318717956542969,1.33514404296875e-05,-0.0113910436630249,-0.00830650329589844,3.814697265625e-05,-0.0213048458099365,-0.016322135925293,6.19888305664063e-05,-0.00167185068130493,-0.000221490859985352,-7.62939453125e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00225639343261719,4.57763671875e-05,0.00100135803222656,-0.0018007755279541,0.00374794006347656,-0.00725078582763672,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.0199854373931885,4.1961669921875e-05, +-0.132597923278809,0.0369260311126709,4.43458557128906e-05,-0.280458450317383,0.0151350498199463,4.43458557128906e-05,-0.343279838562012,-0.0193138122558594,5.10215759277344e-05,-0.287232398986816,-0.0883233547210693,-0.000378131866455078,-0.214262962341309,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0378131866455078,-0.00226688385009766,-0.0572452545166016,-0.0200674533843994,1.47819519042969e-05,-0.0459175109863281,-0.141815900802612,0.00170373916625977,-0.355400085449219,-0.126132726669312,0.00260686874389648,-0.344870567321777,-0.129741191864014,0.00199508666992188,-0.349286079406738,-0.166869878768921,0.000532150268554688,-0.410344123840332,-0.244624376296997,0.000669956207275391,-0.387523651123047,-0.343910932540894,0.0180392265319824,-0.356136322021484,-0.504353284835815,0.0357527732849121,-0.423690795898438,-0.743616104125977,0.0425806045532227,-0.483428955078125,-0.920379042625427,0.0413627624511719,-0.438457489013672,-1.01215827465057,0.0373291969299316,-0.353115081787109,-1.06523823738098,0.0364007949829102,-0.249068260192871,-1.10584187505447,0.0393071174621582,-0.14647388458252,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0174460411071777,-0.000600814819335938,-0.0167436599731445,-0.00991177558898926,-0.000119686126708984,-0.0170927047729492,-0.0346014499664307,-0.00106525421142578,-0.0971622467041016,-0.082371711730957,0.0261154174804688,-0.238544464111328,-0.0895423889160156,0.0255932807922363,-0.255021095275879,-0.0505580902099609,-0.00287485122680664,-0.175063133239746,-0.131551742553711,-0.00809049606323242,-0.238802909851074,-0.0552773475646973,6.00814819335938e-05,-0.0686264038085938,0,2.6702880859375e-05,0.00225639343261719, +0,4.9591064453125e-05,0.00278759002685547,0,4.9591064453125e-05,0.000185012817382813,0,4.9591064453125e-05,0.00462722778320313,0,2.6702880859375e-05,0.00151348114013672,-0.0143055636217468,4.9591064453125e-05,0.00935268402099609,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0.00946259498596191,-0.00398445129394531,-0.033843994140625,0.0389766693115234,-0.0430498123168945,-0.0427312850952148,9.62018966674805e-05,9.05990600585938e-05,-0.000657081604003906,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,2.288818359375e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05, +2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0995445251464844,-0.000111579895019531,0.0767946243286133,-0.0999126434326172,-0.000116348266601563,0.0783901214599609,-0.0860254764556885,-0.00116968154907227,0.0627164840698242, +-0.0861716270446777,-0.0011143684387207,0.0611076354980469,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.130982875823975,-6.19888305664063e-06,0.103739738464355,-0.130954504013062,-4.76837158203125e-06,0.101273536682129,-0.324750900268555,5.7220458984375e-05,0.259659767150879,-0.325700759887695,4.57763671875e-05,0.253317832946777,-0.324592351913452,0.000173568725585938,0.258079528808594,-0.326769828796387,0.000184535980224609,0.25297737121582,-0.398576498031616,0.000951766967773438,0.313431739807129,-0.398652791976929,0.000977993011474609,0.30765438079834,-0.5820152759552,0.00918912887573242,0.41768741607666,-0.587260723114014,0.00879383087158203,0.445124626159668,-0.833602905273438,0.0217761993408203,0.506560325622559,-0.850619077682495,0.0204572677612305,0.562145233154297,-1.16351771354675,0.0385079383850098,0.66041088104248,-1.18005204200745,0.041710376739502,0.609430313110352,-1.18949842453003,0.0509552955627441,0.537966728210449,-1.15998041629791,0.0616559982299805,0.46901798248291,-1.3312611579895,0.0551390647888184,0.349763870239258,-1.25182497501373,0.0613255500793457,0.302909851074219,-1.3816944360733,0.052217960357666,0.200172424316406,-1.25871384143829,0.0565094947814941,0.16761589050293,-1.3377046585083,0.0463752746582031,0.0549812316894531,-1.21342232823372,0.0471053123474121,-0.00367069244384766,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0855803489685059,-0.00114536285400391,0.0617027282714844,-0.0997540950775146,-0.000115871429443359,0.0775241851806641,-0.131064414978027,-4.76837158203125e-06,0.102419853210449,-0.325293064117432,4.57763671875e-05,0.256248474121094,-0.325707674026489,0.000169277191162109,0.255351066589355,-0.398465394973755,0.000969409942626953,0.310256958007813,-0.588381290435791,0.00899839401245117, +0.429603576660156,-0.856381416320801,0.0209393501281738,0.546449661254883,-1.19825792312622,0.0398087501525879,0.645291328430176,-1.2074807882309,0.0545463562011719,0.500950813293457,-1.32953667640686,0.0589127540588379,0.324268341064453,-1.36267697811127,0.0540976524353027,0.229059219360352,-1.323087900877,0.0466217994689941,0.0923271179199219,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0857076644897461,-0.00112342834472656,0.0612173080444336,-0.0996067523956299,-0.000113010406494141,0.0770254135131836,-0.131007194519043,-9.05990600585938e-06,0.101668357849121,-0.325539112091064,4.57763671875e-05,0.254343032836914,-0.32640266418457,0.000187397003173828,0.253816604614258,-0.398602724075317,0.000975131988525391,0.308562278747559,-0.592258214950562,0.00911521911621094,0.423938751220703,-0.848552107810974,0.0214576721191406,0.520729064941406,-1.19336020946503,0.041048526763916,0.62343692779541,-1.18862640857697,0.0567841529846191,0.478273391723633,-1.29499971866608,0.060575008392334,0.320125579833984,-1.31173801422119,0.0558371543884277,0.21734619140625,-1.26964581012726,0.0471305847167969,0.0571804046630859,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0722827911376953,-0.000379562377929688,0.0543537139892578,-0.0975329875946045,-1.57356262207031e-05,0.0820016860961914,-0.127581357955933,2.57492065429688e-05,0.112270355224609,-0.316769599914551,4.57763671875e-05,0.280535697937012,-0.3157799243927,8.44001770019531e-05,0.277065277099609,-0.378435134887695,0.000336647033691406,0.324540138244629,-0.466217994689941,0.00272130966186523,0.387022972106934,-0.534204959869385,0.00619077682495117,0.395930290222168,-0.417741179466248,-0.00707674026489258,-0.00117588043212891,-0.434364050626755,-0.000550746917724609,0.0626649856567383,-0.462161123752594,0.0153346061706543,0.147782325744629,-0.489729762077332,0.0134005546569824,0.257467269897461, +-0.620650172233582,0.0112357139587402,0.370214462280273,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0807607173919678,-0.000769615173339844,0.0584449768066406,-0.0994241237640381,-6.34193420410156e-05,0.0786218643188477,-0.130537271499634,1.04904174804688e-05,0.105287551879883,-0.323413372039795,4.57763671875e-05,0.265007019042969,-0.322205543518066,0.000130176544189453,0.263875961303711,-0.392252922058105,0.000641345977783203,0.315938949584961,-0.556198358535767,0.00570297241210938,0.437200546264648,-0.739838242530823,0.0132083892822266,0.502562522888184,-0.947428941726685,0.0250177383422852,0.562769889831543,-0.864683449268341,0.0331206321716309,0.423648834228516,-0.888651251792908,0.0360569953918457,0.254423141479492,-0.892789542675018,0.0343384742736816,0.107573509216309,-0.86562305688858,0.0304360389709473,0.0556659698486328,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0307435989379883,4.57763671875e-05,0.0209827423095703,-0.0554227828979492,4.33921813964844e-05,0.0407466888427734,-0.340609312057495,4.57763671875e-05,0.295917510986328,-0.302258491516113,4.57763671875e-05,0.286791801452637,-0.182676315307617,4.57763671875e-05,0.133762359619141,-0.169522762298584,3.4332275390625e-05,0.12065601348877,-0.0795543193817139,4.57763671875e-05,0.0599660873413086,-0.290952086448669,0.105450630187988,0.0599746704101563,-0.322829782962799,0.0482006072998047,0.153926849365234,-0.187987804412842,0.0225543975830078,0.1278076171875,-0.21029007434845,0.0669927597045898,0.113323211669922,-0.345803499221802,0.163242340087891,0.268852233886719,-0.37753438949585,4.57763671875e-05,0.28925895690918,0,4.9591064453125e-05,0,0,6.36577606201172e-05,0,0,3.57627868652344e-05,0,0,5.86509704589844e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, +6.42538070678711e-05,0,0,6.866455078125e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.01871109008789e-05,0,0,5.41210174560547e-05,0,0,5.40018081665039e-05,0,0,6.78896903991699e-05,0,0,5.87105751037598e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05,0,0,6.40861690044403e-05,0,0,6.41345977783203e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.6702880859375e-05,0,0,5.98430633544922e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.84125518798828e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,5.84125518798828e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00606608390808105,4.57763671875e-05,0.00359916687011719,-0.0112559795379639,4.57763671875e-05,0.00667762756347656,-0.00989580154418945,4.24385070800781e-05,0.00587081909179688,-0.0197978019714355,4.57763671875e-05,0.0124273300170898,-0.059929370880127,4.57763671875e-05,0.0355510711669922,-0.0632195472717285,4.57763671875e-05, +0.0387163162231445,-0.0708670616149902,4.57763671875e-05,0.0451507568359375,-0.175060987472534,4.57763671875e-05,0.195073127746582,-0.218379974365234,-0.000601768493652344,0.183271408081055,-0.150002717971802,0.0490407943725586,0.117069244384766,-0.107816696166992,0.0602731704711914,-0.0419492721557617,-0.0637694597244263,0.0518913269042969,-0.071258544921875,-0.144341826438904,0.0628318786621094,-0.0906219482421875,-0.15870076417923,0.0776147842407227,-0.14581298828125,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.93526458740234e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.26769256591797e-05,0,0,5.65052032470703e-05,0,0,4.02927398681641e-05,0,0.000926733016967773,-0.00148725509643555,-8.392333984375e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000644087791442871,-0.000343084335327148,-3.814697265625e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000365495681762695,3.62396240234375e-05,-1.62124633789063e-05,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,5.65052032470703e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,5.65052032470703e-05, +0,0.00272870063781738,-0.00544142723083496,-0.000269889831542969,0.00305509567260742,-0.00611639022827148,-0.000284194946289063,0.00193691253662109,-0.0051581859588623,-0.00018310546875,0.000319719314575195,-0.00332498550415039,-5.340576171875e-05,-0.000667214393615723,-0.00159335136413574,2.47955322265625e-05,-0.000542759895324707,-0.00036168098449707,2.57492065429688e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.4332275390625e-05,0,0,4.02927398681641e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,3.12328338623047e-05,0,0,2.6702880859375e-05,0,0,4.9591064453125e-05,0,0,3.55243682861328e-05,0,0,3.55243682861328e-05,0,0,3.12328338623047e-05,0,0,3.58819961547852e-05,0,0,7.2479248046875e-05,0,0,3.12328338623047e-05,0,0,4.9591064453125e-05,0,0,6.103515625e-05,0,0,5.84125518798828e-05,0,0,5.45978546142578e-05,0,0,5.41210174560547e-05,0,0,5.26905059814453e-05,0,0,6.103515625e-05,0,0,6.103515625e-05,0,0,4.9591064453125e-05,0,0,7.2479248046875e-05,0,0,4.9591064453125e-05,0,0,4.05311584472656e-05,0,0,4.9591064453125e-05,0,0,3.814697265625e-05,0,0,4.9591064453125e-05,0,0,4.50611114501953e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.02927398681641e-05,0,0,6.103515625e-05,0,0,5.41210174560547e-05,0,0,5.84125518798828e-05,0,0,5.84125518798828e-05,0,0,5.41210174560547e-05,0,0,3.64780426025391e-05,0,0,3.4332275390625e-05,0,0,4.9591064453125e-05,0,0,6.31809234619141e-05,0,0,6.78300857543945e-05,0,0,4.02927398681641e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,5.45978546142578e-05,0,0,5.26905059814453e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0, +0,3.19480895996094e-05,0,0,5.93662261962891e-05,0,0,6.866455078125e-05,0,0,3.64780426025391e-05,0,0,3.65972518920898e-05,0,0,4.11570072174072e-05,0,0,5.48362731933594e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,0,0,5.29289245605469e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.48362731933594e-05,0,0,5.48362731933594e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.00114083290100098,4.57763671875e-05,0.000678062438964844,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.011305570602417,4.57763671875e-05,0.00670719146728516,0,4.57763671875e-05,1.9073486328125e-06,-0.0212113857269287,-0.00290679931640625,0.0136737823486328,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.000640630722045898,-0.00219821929931641,0.00045013427734375,-0.00117087364196777,-0.0427980422973633,-0.0575265884399414,-0.00343072414398193,0.0161342620849609,-0.0968351364135742,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.0195425152778625,0.0199184417724609,-0.0706014633178711,-0.0161951780319214,0.00913238525390625,-0.0500688552856445,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.0291272699832916,0.0339164733886719,-0.0910749435424805,0,4.9591064453125e-05,1.9073486328125e-06, +0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,3.57627868652344e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,6.00814819335938e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.69548797607422e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.74702906608582e-05,0,0,4.11868095397949e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.94854354858398e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,2.75373458862305e-05,0,0,4.57763671875e-05,0,0,5.49331307411194e-05,0,0,5.49368560314178e-05,0,0,6.40153884887695e-05,0,0,4.11272048950195e-05,0,0,2.74181365966797e-05,0,0,5.93662261962891e-05,0,0,2.288818359375e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.01871109008789e-05,0,0,5.49256801605225e-05,0,0,5.94854354858398e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,3.21865081787109e-05,0,0,6.41345977783203e-05,0,0,3.20672988891602e-05,0,0,5.95077872276306e-05,0,0,6.40153884887695e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,5.49554824829102e-05,0,0,5.49319665879011e-05, +0,0,3.69548797607422e-05,0,0,4.57763671875e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.03063201904297e-05,0,0,6.42538070678711e-05,0,0,6.40898942947388e-05,0,0,5.94854354858398e-05,0,0,3.64780426025391e-05,0,0,5.96046447753906e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,5.94258308410645e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,3.69548797607422e-05,0,0,2.288818359375e-05,0,0,6.41345977783203e-05,0,0,6.41345977783203e-05,0,0,5.94854354858398e-05,0,0,2.288818359375e-05,0,0,2.72989273071289e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.19480895996094e-05,0,0,6.41345977783203e-05,0,0,3.21865081787109e-05,0,0,3.21865081787109e-05,0,0,3.69548797607422e-05,0,0,4.12464141845703e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.49256801605225e-05,0,0,2.75373458862305e-05,0,0,4.12464141845703e-05,0,0,6.41345977783203e-05,0,0,5.48362731933594e-05,0,0,3.67164611816406e-05,0,0,3.19480895996094e-05,0,0,2.288818359375e-05,0,0,5.03063201904297e-05,0,0,2.75373458862305e-05,0,0,5.95077872276306e-05,0,0,2.72989273071289e-05,0,0,3.64780426025391e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,3.19480895996094e-05,0,0,5.96046447753906e-05,0,0,6.40153884887695e-05,0,0,6.40749931335449e-05,0,0,3.65972518920898e-05,0,0,5.03063201904297e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,5.50746917724609e-05,0,0,4.12464141845703e-05,0,0,5.04255294799805e-05,0,0,6.40861690044403e-05,0,0,3.20672988891602e-05,0,0,4.57763671875e-05,0,0,6.34193420410156e-05,0,0,2.71797180175781e-05,0,0,5.96046447753906e-05,0,0,2.288818359375e-05, +0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,5.48362731933594e-05,0,0,2.71797180175781e-05,0,0,2.71797180175781e-05,0,0,5.48362731933594e-05,0,0,5.93662261962891e-05,0,0,5.03063201904297e-05,0,0,2.72989273071289e-05,0,0,3.66211170330644e-05,0,0,5.49554824829102e-05,0,0,6.40749931335449e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,3.65972518920898e-05,0,0,6.40871003270149e-05,0,0,3.65376472473145e-05,0,0,2.75373458862305e-05,0,0,5.49256801605225e-05,0,0,4.57763671875e-05,0,0,5.49554824829102e-05,0,0,4.12464141845703e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.21269035339355e-05,0,0,6.40861690044403e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,4.12464141845703e-05,0,0,5.45978546142578e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,6.866455078125e-05,0,0,5.03063201904297e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,2.71797180175781e-05,0,0,4.39882278442383e-05,0,0,4.57763671875e-05,0,0,2.72989273071289e-05,0,0,2.74628400802612e-05,0,0,5.49554824829102e-05,0,0,5.98430633544922e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.11407852172852e-05,0,0,3.17096710205078e-05,0,0,2.72989273071289e-05,0,0,2.288818359375e-05,0,0,5.50150871276855e-05,0,0,5.50746917724609e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.81741333007813e-05,0,0,4.57763671875e-05,0,0,3.19480895996094e-05,0,0,6.38961791992188e-05,0,0,2.71797180175781e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,5.03063201904297e-05,0,0,5.45978546142578e-05,0,0,6.40749931335449e-05,0,0,6.40749931335449e-05,0,0,5.03659248352051e-05,0,0,5.49554824829102e-05,0,0,3.21865081787109e-05,0,0,4.57763671875e-05,0,0,2.74181365966797e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,3.69548797607422e-05, +0,0,3.19480895996094e-05,0,0,2.81333923339844e-05,0,0,2.81333923339844e-05,0,0,5.96046447753906e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,6.34193420410156e-05,0,0,5.45978546142578e-05,0,0,5.96046447753906e-05,0,0,6.41345977783203e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,6.34193420410156e-05,0,0,4.57763671875e-05,0,0,5.03510236740112e-05,0,0,3.66121530532837e-05,0,0,3.20374965667725e-05,0,0,2.74777412414551e-05,0,0,5.48958778381348e-05,0,0,3.19480895996094e-05,0,0,5.50746917724609e-05,0,0,5.50746917724609e-05,0,0,2.74181365966797e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.67164611816406e-05,0,0,3.67164611816406e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.866455078125e-05, +0,0,4.57763671875e-05,0,0,5.96046447753906e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,2.76565551757813e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,3.64780426025391e-05,0,0,3.21269035339355e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,6.866455078125e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,5.45978546142578e-05,0,0,3.66568565368652e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,3.17096710205078e-05,0,0,5.95450401306152e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,2.71797180175781e-05,0,0,5.45978546142578e-05,0,0,2.288818359375e-05, +0,0,3.19480895996094e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,5.96046447753906e-05,0,0,3.17096710205078e-05,0,0,6.40749931335449e-05,0,0,6.43730163574219e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,6.866455078125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,6.38961791992188e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,2.288818359375e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,1.96695327758789e-06,-0.000391721725463867,-1.43051147460938e-05,9.77516174316406e-05, +-0.00304818153381348,-0.000110626220703125,0.00101387500762939,-0.00720953941345215,-0.000286102294921875,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,3.21865081787109e-06,-0.00113964080810547,-4.00543212890625e-05,5.60283660888672e-06,-0.00394773483276367,-0.000139236450195313,0.000206887722015381,-0.00787067413330078,-0.00028228759765625,0.00138866901397705,-0.0128016471862793,-0.000490188598632813,0,-6.12735748291016e-05,-1.9073486328125e-06,0,4.9591064453125e-05,0,-0.017369270324707,4.57763671875e-05,0.013641357421875,-0.0367915630340576,4.57763671875e-05,0.0297737121582031,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.0526015758514404,4.57763671875e-05,0.0412731170654297,-0.136298179626465,4.57763671875e-05,0.1109619140625,-0.148332357406616,4.57763671875e-05,0.120075225830078,-0.187926292419434,4.57763671875e-05,0.151844024658203,-0.291009664535522,4.57763671875e-05,0.233586311340332,-0.206958293914795,4.57763671875e-05,0.143731117248535,-0.168437242507935,4.57763671875e-05,0.0970783233642578,-0.115802884101868,4.9591064453125e-05,0.0722675323486328,-0.0915870070457458,4.9591064453125e-05,0.0478658676147461,-0.0352809429168701,4.9591064453125e-05,0.0182924270629883,-0.00406369566917419,4.9591064453125e-05,0.00210762023925781,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,-0.0771124362945557,-0.00114536285400391,0.0593252182006836,-0.0946142673492432,-0.000115394592285156,0.0761613845825195,-0.121841430664063,-5.24520874023438e-06,0.100505828857422,-0.304980516433716,4.57763671875e-05,0.254389762878418,-0.304795503616333,0.000173091888427734,0.252619743347168,-0.372626304626465,0.000965595245361328,0.30400276184082,-0.519672393798828,0.00901460647583008, +0.399782180786133,-0.807669162750244,0.0217432975769043,0.529636383056641,-1.15381002426147,0.0420465469360352,0.59061336517334,-1.08818697929382,0.057915210723877,0.476544380187988,-1.18024528026581,0.0611381530761719,0.293766021728516,-1.1968789100647,0.0561661720275879,0.153227806091309,-1.15293216705322,0.0465631484985352,-0.0137386322021484,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0433340072631836,4.57763671875e-05,0.0338935852050781,-0.068817138671875,4.57763671875e-05,0.0558996200561523,-0.0775389671325684,4.57763671875e-05,0.0620298385620117,-0.20626425743103,4.57763671875e-05,0.167669296264648,-0.211111783981323,4.57763671875e-05,0.17247486114502,-0.26116943359375,4.57763671875e-05,0.212761878967285,-0.327451467514038,4.57763671875e-05,0.256878852844238,-0.401512503623962,4.57763671875e-05,0.293492317199707,-0.50716233253479,2.62260437011719e-05,0.314969062805176,-0.397182404994965,4.9591064453125e-05,0.192567825317383,-0.382010042667389,4.9591064453125e-05,0.115025520324707,-0.13723149895668,4.9591064453125e-05,0.0726718902587891,-0.061489075422287,2.6702880859375e-05,0.0346031188964844,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.86238098144531e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,3.4332275390625e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,5.48362731933594e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,5.26905059814453e-05,0,0,5.45978546142578e-05,0,0,5.03063201904297e-05,0,0,5.7220458984375e-05,0,0,5.45978546142578e-05,0,0,3.88622283935547e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05, +1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06 + } + Normals: *7407 { + a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453, +-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666, +1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428, +0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255, +-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868, +-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951, +0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347, +-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537, +-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009, +0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843, +-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934, +-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996, +0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176, +-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271, +-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036, +0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026, +0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312, +-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224, +0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802, +0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946, +0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045, +-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956, +-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467, +-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753, +0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581, +-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245, +0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655, +-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321, +-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191, +0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125, +1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235, +0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831, +-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197, +-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332, +0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341, +-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966, +0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269, +-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505, +-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369, +0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306, +-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292, +0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897, +-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076, +0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857, +-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551, +-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122, +-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743, +1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513, +-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366, +-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103, +-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323, +-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971, +-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362, +-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668, +-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626, +0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678, +0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252, +-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199, +0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154, +-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801, +-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905, +-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059, +-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782, +0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062, +-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558, +1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059, +1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 + } + } + Geometry: 2807563819360, "Geometry::Mouth_Upper_Overturn", "Shape" { + Version: 100 + Indexes: *759 { + a: 5879,5880,5881,5882,5885,5887,5889,5891,5893,5905,5906,5907,5908,5909,5910,5911,5912,5914,5915,5922,5924,5929,5930,5933,5936,5938,5939,5940,5941,5942,5947,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6109,6137,6139,6154,6156,6167,6169,6179,6183,6184,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6352,6360,6362,6364,6366,6367,6368,6370,6371,6373,6374,6375,6376,6377,6379,6380,6382,6383,6384,6385,6386,6387,6410,6411,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7227,7231,7232,7233,7234,7240,7241,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378, +7379,7380,7381,7382,7383,7384,7385,7386,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7491,7519,7521,7536,7538,7549,7551,7561,7565,7566,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7734,7742,7744,7746,7748,7749,7750,7752,7753,7755,7756,7757,7758,7759,7761,7762,7764,7765,7766,7767,7768,7769,7792,7793,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8606,8607,8608,8609,8615,8616,8698,8699,8700,8712,8723,8724,8725,8737,8748,8749,8750,8761,8767,8768,8769,8770,8773,8774,8775,8786,8792,8793,8794,8795 + } + Vertices: *2277 { + a: 0,-0.0646967887878418,-0.0173530578613281,0,-0.0723047256469727,0.00224971771240234,2.58665459114127e-05,0.151955127716064,1.05388450622559,8.40692155179568e-06,0.436273097991943,1.051025390625,2.57030751527054e-05,0.475208759307861,1.3378324508667,2.46576601057313e-05,0.360669136047363,1.46428775787354,0,-0.0115871429443359,0.928911209106445,3.00763713312335e-06,0.30335807800293,1.10473251342773,0,-0.110494136810303,0.759476661682129,0,0.0204381942749023,0.151528358459473,0,0.0334687232971191,0.314996719360352,0,-0.0122814178466797,0.413086891174316,0,-0.0645251274108887,0.54420280456543,0,-0.00704860687255859,-0.0142097473144531,0,-0.0333402156829834,-0.0471820831298828,0,-0.0395948886871338,0.0136299133300781,0,-0.00554382801055908,0.00437736511230469,0,-0.0617697238922119,0.00922775268554688,0,-0.0710384845733643,0.00658130645751953,0,1.81198120117188e-05,0,0,-6.43730163574219e-06,0,0,1.04904174804688e-05,0,0,-2.00271606445313e-05,0,0,-2.09808349609375e-05,0,0,-2.57492065429688e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,2.09808349609375e-05,0,0,3.0517578125e-05,0,-0.000145435333251953,-0.063894510269165,-0.0148344039916992,0,-0.0741710662841797,0.00255393981933594,-0.00153231620788574,0.13328218460083,0.99661922454834,0.0738517194986343,0.377238750457764,0.990007400512695,0.717770576477051,0.0284276008605957,0.970651626586914,0.536936283111572,0.122415542602539,0.977749824523926,0.459138870239258,0.053800106048584,1.06699371337891,0.531224012374878,-0.0399489402770996,1.08935737609863,0.276312828063965,0.151837348937988,1.09577178955078,0.341257214546204,-0.0938620567321777,1.12666130065918,0.135848164558411,0.122814178466797,1.03781318664551,0.152213931083679,-0.158437252044678,0.944880485534668,0.104564309120178,0.204104423522949,1.01487827301025,0.0303633213043213,-0.115612030029297,0.912620544433594,0.103027939796448,0.291701316833496,0.984965324401855,-0.065115213394165,0.00431680679321289,0.96058464050293,0.443747997283936, +-0.135309219360352,1.26742172241211,0.380891561508179,0.10183572769165,1.18695449829102,0.49741268157959,0.0536937713623047,0.747503280639648,0.667594909667969,-0.0427260398864746,0.756633758544922,0.451865673065186,-0.0273666381835938,0.56884765625,0.575550317764282,-0.0486178398132324,0.619497299194336,0.332128047943115,-0.0761804580688477,0.43603515625,0.450353145599365,-0.0497512817382813,0.490008354187012,0.219695568084717,-0.0973625183105469,0.333452224731445,0.324358224868774,-0.0528130531311035,0.374615669250488,0.200314044952393,-0.0621027946472168,0.287156105041504,0.163057088851929,-0.074317455291748,0.34454345703125,0.208857774734497,-0.0451006889343262,0.177416801452637,0.124317407608032,-0.0405516624450684,0.260091781616211,0.0855557918548584,0.433149337768555,1.30013561248779,0.149266123771667,0.350541114807129,1.30243301391602,0.0837317705154419,0.25182580947876,1.25561714172363,0.0551810264587402,0.191296100616455,1.22881317138672,0.201876163482666,0.214968681335449,1.30384159088135,0.351449966430664,0.17775821685791,1.39311504364014,0.431096792221069,0.0892925262451172,1.17146682739258,0.513583660125732,0.0667581558227539,1.02448844909668,0.495420455932617,-0.00561285018920898,0.783577919006348,0.442702770233154,-0.0462536811828613,0.628232955932617,0.336171627044678,-0.0677571296691895,0.498613357543945,0.227119207382202,-0.0752115249633789,0.38896656036377,0.139483451843262,-0.106489181518555,0.382464408874512,0.0982978343963623,-0.0800876617431641,0.288278579711914,0.00864475965499878,0.304684162139893,1.39367198944092,-0.0105759501457214,0.20963191986084,1.36627292633057,-0.00478696823120117,0.0814189910888672,1.30981540679932,0.0162891149520874,0.0664725303649902,1.29851913452148,0.203076839447021,0.110470294952393,1.37527275085449,0.384147644042969,0.0702099800109863,1.45310115814209,0.453661203384399,0.0189914703369141,1.17666244506836,0.595444202423096,0.0160903930664063,1.01978778839111,0.566837549209595,-0.0416388511657715,0.796650886535645,0.492504596710205,-0.0550875663757324,0.65485668182373, +0.380683660507202,-0.0532355308532715,0.524598121643066,0.26561427116394,-0.0615601539611816,0.402480125427246,0.180963277816772,-0.0899314880371094,0.32213020324707,0.121851444244385,-0.0693845748901367,0.291323661804199,0.00708895921707153,0.0114936828613281,0.909755706787109,0.0515520572662354,-0.0840935707092285,0.845119476318359,0.101097464561462,-0.360849857330322,0.823868751525879,0.191768884658813,-0.374909400939941,0.82579231262207,0.302794694900513,-0.217581748962402,0.991700172424316,0.354353904724121,-0.309872627258301,1.16224956512451,0.359830379486084,-0.29056978225708,0.984250068664551,0.511802434921265,0.035459041595459,0.879109382629395,0.46373987197876,0.021357536315918,0.649105072021484,0.358412027359009,-0.00658559799194336,0.440622329711914,0.26954984664917,-0.0395770072937012,0.330744743347168,0.184126377105713,-0.0384864807128906,0.27931022644043,0.17580771446228,-0.024620532989502,0.340800285339355,0.136513948440552,0.00921106338500977,0.259811401367188,0.0662684589624405,0.243529319763184,1.03287410736084,0.103932738304138,0.164711475372314,1.10026454925537,0.116872906684875,0.0804848670959473,1.04707908630371,0.0945807695388794,0.0423521995544434,1.03262329101563,0.244349479675293,0.060905933380127,1.09347915649414,0.407251238822937,0.0616869926452637,1.17784786224365,0.448456764221191,0.0519504547119141,1.02636432647705,0.529141664505005,0.17147159576416,0.939445495605469,0.459779024124146,0.0667595863342285,0.709714889526367,0.403445482254028,-0.00309467315673828,0.52286434173584,0.283071041107178,-0.0522322654724121,0.387964248657227,0.186330556869507,-0.082007884979248,0.296136856079102,0.179408073425293,-0.0697021484375,0.336506843566895,0.130406856536865,-0.035181999206543,0.253597259521484,0.00983494520187378,-0.108022212982178,0.766936302185059,-0.0566827058792114,-0.113788604736328,0.755132675170898,0.00415480136871338,-0.249175071716309,0.695111274719238,0.0888817310333252,-0.250987529754639,0.66395378112793,0.159300923347473,-0.506837844848633,0.780002593994141,0.123938798904419, +-0.3787522315979,0.993114471435547,0.250686407089233,-0.254126071929932,0.989139556884766,0.395111560821533,-0.105743885040283,0.743771553039551,0.161507368087769,-0.0132308006286621,0.288573265075684,0.170098543167114,-0.0371270179748535,0.223663330078125,0.261277675628662,-0.0449199676513672,0.289975166320801,0.35525369644165,-0.0266580581665039,0.405059814453125,0.371267795562744,-0.061213493347168,0.521640777587891,0.137377977371216,0.0198221206665039,0.231292724609375,0,0,0.00756454467773438,-0.000437140464782715,-7.62939453125e-06,2.288818359375e-05,0,0,0.00321388244628906,-0.00246572494506836,-4.37498092651367e-05,0.0114498138427734,0.0113914012908936,0.00259971618652344,0.0143594741821289,0.0227189064025879,0.0132322311401367,0.0362567901611328,0.00160551071166992,0.000966072082519531,0.00258350372314453,0.000132322311401367,8.10623168945313e-05,0.000212669372558594,0.00143313407897949,0.000863075256347656,0.00230598449707031,-0.0068204402923584,-0.0712571144104004,0.100616455078125,0.00970184803009033,-0.0308339595794678,0.000972747802734375,0.0229463577270508,-0.0489766597747803,0.00106716156005859,0.00140190124511719,-0.105099201202393,0.151186943054199,0.012382984161377,-0.0537023544311523,0.000777244567871094,0.00457382202148438,-0.026618480682373,-0.000257492065429688,-2.14576721191406e-06,-0.038646936416626,1.23977661132813e-05,0.000230669975280762,-0.0511269569396973,0.000761032104492188,0,-0.0588011741638184,0.000203132629394531,-0.00285589694976807,-0.0441131591796875,-0.00708770751953125,-0.000525236129760742,-0.117754936218262,0.193086624145508,-0.0108869075775146,-0.0752615928649902,0.116305351257324,0.00925636291503906,-0.184865713119507,0.584772109985352,0.044635534286499,-0.179177284240723,0.595590591430664,0.256755113601685,-0.224066734313965,0.581348419189453,0.205386638641357,-0.0962200164794922,0.400664329528809,0.185328006744385,-0.0313706398010254,0.319867134094238,0.146651744842529,-0.022951602935791,0.23309326171875,0.119714736938477,0.00325918197631836,0.178974151611328,0.11512017250061, +0.0283985137939453,0.213800430297852,0.0943801403045654,0.0531034469604492,0.172492980957031,3.79383563995361e-05,-0.0335021018981934,0.400566101074219,0.0239043235778809,-0.0232415199279785,0.434087753295898,-0.0344362854957581,-0.0937583446502686,0.55379581451416,0.000859051942825317,-0.0797598361968994,0.425488471984863,-0.000667572021484375,-0.0331926345825195,0.373599052429199,4.93228435516357e-05,0.0219786167144775,0.335282325744629,-0.00447893142700195,-0.0416414737701416,0.312426567077637,-0.000939339399337769,0.0154681205749512,0.222764015197754,-0.0144979357719421,-0.0782780647277832,0.23857307434082,-0.00789198279380798,-0.0266904830932617,0.121533393859863,-0.0176359415054321,-0.0722305774688721,0.174126625061035,-0.0201452970504761,-0.0661535263061523,0.07818603515625,-0.0114471316337585,-0.0564358234405518,0.0970134735107422,-0.0159072875976563,-0.0430095195770264,0.0272588729858398,0.000432372093200684,-0.0712952613830566,0.0692253112792969,0.00106275081634521,-0.0693552494049072,0.0151767730712891,0.0264607667922974,-0.0933070182800293,0.0678586959838867,0.0255063772201538,-0.0822763442993164,0.0198602676391602,0.0477938652038574,-0.106835126876831,0.0721263885498047,0.0414704084396362,-0.108803033828735,0.110690116882324,-0.0240933895111084,-0.115582227706909,0.23237133026123,0.00702214241027832,-0.171325206756592,0.352198600769043,0.00853615999221802,-0.148457527160645,0.515483856201172,-0.0590575933456421,-0.094304084777832,0.384753227233887,0.0323226451873779,-0.128154039382935,0.105280876159668,0.0500407218933105,-0.150244235992432,0.104399681091309,7.32839107513428e-05,-0.014650821685791,0.392269134521484,-0.000270873308181763,-0.00687479972839355,0.366880416870117,-0.00353825092315674,-0.00764036178588867,0.284528732299805,-0.0150828957557678,-0.0769674777984619,0.225543975830078,-0.0195243358612061,-0.0693666934967041,0.148388862609863,-0.0142008662223816,-0.0476489067077637,0.072235107421875,0.000607609748840332,-0.069493293762207,0.0528297424316406,0.026252269744873,-0.0897634029388428,0.0527772903442383, +0.0509294271469116,-0.104301929473877,0.0768938064575195,0.0418009757995605,-0.135876655578613,0.0952596664428711,-0.0156184434890747,-0.137662887573242,0.24449634552002,-0.0560111403465271,-0.108448505401611,0.395637512207031,0.00123530626296997,-0.0817329883575439,0.439971923828125,0.00142243504524231,-0.0844521522521973,0.446774482727051,-0.0529258251190186,-0.121685028076172,0.399440765380859,-0.00766807794570923,-0.157881736755371,0.253549575805664,0.0475596189498901,-0.142354726791382,0.0901470184326172,0.0492473840713501,-0.103968620300293,0.088653564453125,0.0272254943847656,-0.0861165523529053,0.035578727722168,0.000798702239990234,-0.0689079761505127,0.031956672668457,-0.0152129530906677,-0.0438861846923828,0.0534296035766602,-0.0201331377029419,-0.0673868656158447,0.121450424194336,-0.0138165950775146,-0.0748312473297119,0.225541114807129,-0.00311890244483948,0.00703859329223633,0.25806999206543,-3.28123569488525e-05,0.0160799026489258,0.342263221740723,0.000112831592559814,0.00507616996765137,0.37064266204834,0.000183403491973877,-0.0623998641967773,0.600116729736328,-0.0170084238052368,-0.0594334602355957,0.00329685211181641,-0.0151834487915039,-0.0428466796875,0.0003814697265625,-0.00972664356231689,-0.0425131320953369,-0.00951671600341797,-0.00795942544937134,-0.0525166988372803,-0.0350885391235352,0.000528097152709961,-0.0601780414581299,0.00104236602783203,0.000770926475524902,-0.0661361217498779,0.00373554229736328,0.0219329595565796,-0.0776715278625488,0.00699424743652344,0.0175013542175293,-0.0690078735351563,0.00145435333251953,0.0385897159576416,-0.0935695171356201,0.0643157958984375,0.0442686080932617,-0.0875413417816162,0.0531940460205078,0.046786904335022,-0.080244779586792,0.0532674789428711,0.0464754104614258,-0.0739235877990723,0.0470609664916992,0.0434932708740234,-0.0683414936065674,0.0347862243652344,0.0361193418502808,-0.060279369354248,0.015263557434082,0.0237926244735718,-0.125631093978882,0.165990829467773,0.00924217700958252,-0.127293109893799,0.184714317321777,0.0220589637756348, +-0.143856287002563,0.182059288024902,0.00275981426239014,-0.149592161178589,0.252357482910156,0.0170254707336426,-0.154042720794678,0.326921463012695,-0.00332367420196533,-0.163516998291016,0.422844886779785,-0.00310039520263672,-0.126766204833984,0.318435668945313,-0.0137332677841187,-0.0894820690155029,0.203001976013184,-0.00013279914855957,-0.051170825958252,0.0536603927612305,0.0141199827194214,-0.0806100368499756,0.0715103149414063,0.0243520736694336,-0.0927164554595947,0.101261138916016,0.0352352857589722,-0.0956275463104248,0.104793548583984,0.0446940660476685,-0.0896215438842773,0.0863637924194336,0.0495060682296753,-0.089252233505249,0.0754146575927734,0.0493029356002808,-0.0931804180145264,0.0673513412475586,0.0446306467056274,-0.0983188152313232,0.0696897506713867,0,-0.0341771841049194,0.0130825042724609,0,-0.0277496576309204,0.00391483306884766,0,-0.0115551948547363,0,0,-0.00286495685577393,0.00339698791503906,0,-0.00209450721740723,0.000200271606445313,0,-0.000151276588439941,0,0,-0.0571521520614624,0.00927162170410156,0,-0.0433707237243652,0.00216770172119141,0,-0.0283026695251465,0,-0.00569212436676025,-0.0347957611083984,0.0334091186523438,-0.00418078899383545,-0.0332431793212891,0.0321722030639648,-0.00120735168457031,-0.00437331199645996,0.000181198120117188,-0.000942826271057129,-0.00705409049987793,0.00140380859375,5.01871109008789e-05,-0.000951528549194336,-1.23977661132813e-05,0.000424623489379883,-0.00301122665405273,-2.95639038085938e-05,7.08103179931641e-05,-0.00354862213134766,-1.52587890625e-05,0.000860333442687988,-0.00572037696838379,-6.866455078125e-05,0,-0.00852656364440918,-8.58306884765625e-06,0.000283598899841309,-0.0154216289520264,-4.10079956054688e-05,-0.000194311141967773,-0.00894904136657715,0.00193500518798828,0.000672101974487305,-0.00466084480285645,-2.288818359375e-05,-0.00207912921905518,-0.0219631195068359,0.0189018249511719,0.00426316261291504,-0.0169141292572021,0.000329017639160156,0.00237190723419189,-0.00930905342102051,-0.000101089477539063,0.00156807899475098,-0.00660347938537598, +-0.000104904174804688,0.00158107280731201,-0.0125532150268555,-0.000116348266601563,0.00490415096282959,-0.0188047885894775,-0.000292778015136719,0,-0.0706679821014404,0.00625133514404297,0,-0.0550811290740967,0.00125694274902344,0,-0.0361800193786621,0,0.00104475021362305,-0.0225455760955811,-9.82284545898438e-05,0.00287497043609619,-0.0151834487915039,-0.00019073486328125,-0.0126142501831055,-0.036069393157959,0.0583610534667969,-0.00346684455871582,-0.00327277183532715,0.00106239318847656,-0.000506401062011719,6.81877136230469e-05,2.288818359375e-05,-0.0196239948272705,-0.00479722023010254,0.0486927032470703,-0.025892972946167,-0.0835790634155273,0.354103088378906,-0.0225052833557129,-0.00703549385070801,0.171073913574219,-0.000366926193237305,-0.080474853515625,0.360453605651855,-0.00388431549072266,-0.00555229187011719,0.174657821655273,0.00223469734191895,-0.0513179302215576,0.33576488494873,0,0,0.103813171386719,0.0953512191772461,0.0147140026092529,0.234951019287109,0.153968811035156,-0.0469894409179688,0.206294059753418,0.0903549194335938,-0.00663018226623535,0.104671478271484,0.0795669555664063,-0.0322055816650391,0.095557689666748,0.093109130859375,-0.0252084732055664,0.117351531982422,0.06854248046875,-0.0415050983428955,0.113206386566162,0.0693416595458984,-0.0266904830932617,0.102079391479492,0.0355496406555176,-0.0302267074584961,0.0747890472412109,0.0462660789489746,-0.0210490226745605,0.0732307434082031,0.05523681640625,-0.0577483177185059,0.12357759475708,0.06866455078125,-0.049079418182373,0.129380226135254,0.116317749023438,-0.046574592590332,0.17896842956543,0.0849609375,-0.0468487739562988,0.153185367584229,0.0513992309570313,-0.0509777069091797,0.119544506072998,0.0494537353515625,-0.0573124885559082,0.103248596191406,0.0369963645935059,-0.0471749305725098,0.0287466049194336,0.051424503326416,-0.0365896224975586,0.0561904907226563,0.011150598526001,0.00196647644042969,0.0216169357299805,0.0244269371032715,0.0116386413574219,0.0373053550720215,0.00295329093933105,0.00177955627441406,0.00475263595581055, +0.0270071029663086,0.0119771957397461,0.0406351089477539,0.0563762187957764,0.03253173828125,0.0854005813598633,0.0430126190185547,0.0318632125854492,0.0538206100463867,0.0682978630065918,0.0386381149291992,0.0845260620117188,0.0586800575256348,0.0242204666137695,0.0551290512084961,0.0680313110351563,-0.085141658782959,0.130546092987061,0.052032470703125,-0.0637950897216797,0.105812072753906,-0.00150752067565918,-0.0755078792572021,0.17586612701416,-0.000399768352508545,-0.0773060321807861,0.135909080505371,0.00187939405441284,-0.0822079181671143,0.108978271484375,0.00768482685089111,-0.0920841693878174,0.11031436920166,0.0145406723022461,-0.0978844165802002,0.109274864196777,0.0232795476913452,-0.101917743682861,0.099308967590332,-0.00107777118682861,-0.0752718448638916,0.205157279968262,-0.000440120697021484,-0.0735232830047607,0.244522094726563,-5.14388084411621e-05,-0.0752227306365967,0.27393627166748,0,-0.0823452472686768,0.281020164489746,0.000261187553405762,-0.0943868160247803,0.268973350524902,0.00202655792236328,-0.108516693115234,0.223397254943848,0.00693643093109131,-0.115852832794189,0.166899681091309,0.014776885509491,-0.113113164901733,0.12956714630127,0.0260344743728638,-0.108770132064819,0.103798866271973,0.000401496887207031,-0.088925838470459,0.198792457580566,0.00182223320007324,-0.0946898460388184,0.169625282287598,0.00537484884262085,-0.0988585948944092,0.143037796020508,0.0125702619552612,-0.102908372879028,0.12396240234375,-3.5405158996582e-05,-0.0826058387756348,0.219475746154785,4.447266292118e-06,0.0666146278381348,0.078333854675293,0.00203990936279297,0.0368728637695313,0.0702066421508789,0.00535035133361816,-0.0920586585998535,0.133760452270508,0.00414538383483887,-0.0210552215576172,0.0903959274291992,0.000470757484436035,-0.232184410095215,-0.126755714416504,0.0679678916931152,-0.288845539093018,-0.0705060958862305,0.049562931060791,-0.127261161804199,0.0648298263549805,0.0296121835708618,-0.0862040519714355,0.101108551025391,0.00295203924179077,-0.0111179351806641,0.0701618194580078, +0,0,0.0309982299804688,0,0,0.0430173873901367,0,0,0.042999267578125,0,0,0.0354461669921875,0,0.000261783599853516,0.0474472045898438,-0.000169515609741211,0.00037384033203125,0.035426139831543,2.58665459114127e-05,0.106497287750244,0.816441535949707,-0.0366162955760956,0.115146160125732,0.74250602722168,-0.074146032333374,0.0331816673278809,0.709633827209473,0.0515351891517639,-0.159089088439941,0.681074142456055,0.198563575744629,-0.295037746429443,0.712100982666016,0.490230441093445,-0.222806930541992,0.927135467529297,0.663760423660278,-0.133066177368164,1.07466888427734,0.796926259994507,-0.0653505325317383,0.963357925415039,0.935407638549805,0.021481990814209,0.873577117919922,0.89634370803833,-0.0395255088806152,0.71428394317627,0.779067754745483,-0.028954029083252,0.594712257385254,0.602002859115601,-0.0257935523986816,0.483840942382813,0.408354759216309,-0.0295534133911133,0.377096176147461,0.271356821060181,-0.0427312850952148,0.290725708007813,0.178207159042358,-0.0204758644104004,0.244610786437988,2.58665459114127e-05,0.0818452835083008,0.420102119445801,-0.119018763303757,0.00560522079467773,0.334754943847656,-0.186183452606201,-0.0649337768554688,0.116440773010254,-0.0743099451065063,-0.240662097930908,0.0416345596313477,0.0310053825378418,-0.423313140869141,0.141791343688965,0.357816576957703,-0.386440753936768,0.368062973022461,0.698532819747925,-0.482622623443604,0.671249389648438,0.854528546333313,-0.331986427307129,0.71706485748291,1.00083494186401,-0.154228210449219,0.755987167358398,0.976666927337646,-0.115692138671875,0.676286697387695,0.850667476654053,-0.0561413764953613,0.580391883850098,0.666540145874023,-0.0422372817993164,0.451297760009766,0.448374271392822,-0.0325465202331543,0.351924896240234,0.24271821975708,0.04254150390625,0.293334007263184,0.0892899036407471,0.0516090393066406,0.161541938781738,0,-6.43730163574219e-06,0,-0.000847101211547852,-0.00340080261230469,0.000279426574707031,-1.28746032714844e-05,-6.65187835693359e-05,5.7220458984375e-06,-0.000226259231567383,-0.00289487838745117, +0.000212669372558594,0.00011754035949707,-3.93390655517578e-05,-2.86102294921875e-06,0,-0.00122261047363281,-0.00104188919067383,0,-0.00154972076416016,-0.00133800506591797,0.000145435333251953,-0.063894510269165,-0.0148344039916992,0,-0.0741710662841797,0.00255393981933594,0.0012938380241394,0.133278846740723,0.996665000915527,-0.0738355815410614,0.377238273620605,0.990009307861328,-0.716909408569336,0.0273938179016113,0.971689224243164,-0.536952972412109,0.122684001922607,0.977578163146973,-0.459516048431396,0.054755687713623,1.06664276123047,-0.531646728515625,-0.0401210784912109,1.08840274810791,-0.27642035484314,0.151754379272461,1.09628295898438,-0.341462016105652,-0.0938286781311035,1.12621688842773,-0.13610827922821,0.122647285461426,1.03825855255127,-0.152155637741089,-0.158438682556152,0.945252418518066,-0.104484081268311,0.204104900360107,1.01484489440918,-0.0303089618682861,-0.115627288818359,0.912969589233398,-0.103010952472687,0.291701793670654,0.984963417053223,0.0651707649230957,0.00421380996704102,0.960575103759766,-0.444065809249878,-0.135311126708984,1.26644802093506,-0.380820512771606,0.101809501647949,1.18660354614258,-0.497804164886475,0.053863525390625,0.746867179870605,-0.667054414749146,-0.0429577827453613,0.756588935852051,-0.452150106430054,-0.0274181365966797,0.568637847900391,-0.576723337173462,-0.0483303070068359,0.615510940551758,-0.332042694091797,-0.0764756202697754,0.436393737792969,-0.450831413269043,-0.0502614974975586,0.485608100891113,-0.219336748123169,-0.0979738235473633,0.333725929260254,-0.323698043823242,-0.0532960891723633,0.373312950134277,-0.199827909469604,-0.0621247291564941,0.286727905273438,-0.163080930709839,-0.0744194984436035,0.344620704650879,-0.208656549453735,-0.0450930595397949,0.177064895629883,-0.124162197113037,-0.0406227111816406,0.260041236877441,-0.085545152425766,0.433157920837402,1.30014705657959,-0.149273157119751,0.350523948669434,1.30245018005371,-0.0836020708084106,0.251912593841553,1.25561237335205,-0.0550330877304077,0.191423892974854,1.22908687591553, +-0.201779961585999,0.214971542358398,1.30423545837402,-0.351637125015259,0.177741050720215,1.39269828796387,-0.431421279907227,0.089148998260498,1.17056655883789,-0.513922929763794,0.0671625137329102,1.02387714385986,-0.495900392532349,-0.00587177276611328,0.782623291015625,-0.442610025405884,-0.0461411476135254,0.627749443054199,-0.336133241653442,-0.0676627159118652,0.49888801574707,-0.227069854736328,-0.0751914978027344,0.389307975769043,-0.139165163040161,-0.106491088867188,0.38233470916748,-0.0979726314544678,-0.0801172256469727,0.28815746307373,-0.00859752297401428,0.304707050323486,1.39367771148682,0.0106267333030701,0.209560394287109,1.36624717712402,0.00483989715576172,0.0814118385314941,1.30985546112061,-0.0162354707717896,0.0662164688110352,1.29870796203613,-0.203019380569458,0.110487937927246,1.37561130523682,-0.384501457214355,0.0702009201049805,1.45237445831299,-0.454062938690186,0.018765926361084,1.175705909729,-0.595226049423218,0.0161676406860352,1.01955604553223,-0.566695690155029,-0.0414071083068848,0.796145439147949,-0.492115020751953,-0.0546040534973145,0.653114318847656,-0.380477666854858,-0.0532102584838867,0.523733139038086,-0.26543927192688,-0.0615420341491699,0.402180671691895,-0.180631399154663,-0.0899243354797363,0.321775436401367,-0.12155818939209,-0.0693836212158203,0.291097640991211,-0.00708940625190735,0.0114970207214355,0.909753799438477,-0.0515434741973877,-0.0840930938720703,0.84511661529541,-0.101126670837402,-0.360795974731445,0.823940277099609,-0.191916108131409,-0.37468433380127,0.826425552368164,-0.303177118301392,-0.216641426086426,0.992460250854492,-0.354862928390503,-0.305207252502441,1.16212272644043,-0.359411478042603,-0.288549423217773,0.98454761505127,-0.511436939239502,0.0364789962768555,0.87893009185791,-0.463593482971191,0.0216255187988281,0.648811340332031,-0.358113050460815,-0.00653409957885742,0.439970970153809,-0.269331693649292,-0.0396914482116699,0.330422401428223,-0.183952808380127,-0.0386290550231934,0.279159545898438,-0.175595998764038,-0.024836540222168,0.340505599975586, +-0.136210680007935,0.00893211364746094,0.259458541870117,-0.066258117556572,0.243508815765381,1.03287601470947,-0.103926718235016,0.164710998535156,1.10026359558105,-0.116732358932495,0.0804858207702637,1.04701232910156,-0.0950838327407837,0.0419378280639648,1.03318977355957,-0.245559215545654,0.0600733757019043,1.0947790145874,-0.407152652740479,0.0624723434448242,1.17828941345215,-0.448129415512085,0.0529203414916992,1.02607536315918,-0.529506683349609,0.171853065490723,0.939506530761719,-0.459468126296997,0.0673313140869141,0.70930004119873,-0.403532981872559,-0.0031123161315918,0.522571563720703,-0.282733201980591,-0.052675724029541,0.38801383972168,-0.186081886291504,-0.0823254585266113,0.296266555786133,-0.179401397705078,-0.0700216293334961,0.336620330810547,-0.13020133972168,-0.0353002548217773,0.253479957580566,-0.00983494520187378,-0.108022212982178,0.766936302185059,0.0566827058792114,-0.113788604736328,0.755132675170898,-0.00415122509002686,-0.249160766601563,0.695109367370605,-0.0888645648956299,-0.250975608825684,0.664839744567871,-0.159312009811401,-0.506826877593994,0.780916213989258,-0.124769687652588,-0.377325057983398,0.994823455810547,-0.250825643539429,-0.253482341766357,0.990007400512695,-0.395960807800293,-0.106197834014893,0.745171546936035,-0.161173343658447,-0.0133986473083496,0.288193702697754,-0.169730424880981,-0.0372958183288574,0.223644256591797,-0.26134991645813,-0.0449733734130859,0.290238380432129,-0.355955123901367,-0.026641845703125,0.405994415283203,-0.372339725494385,-0.0615501403808594,0.522928237915039,-0.137137889862061,0.0196380615234375,0.231001853942871,0,0,0.00764274597167969,0.000437140464782715,-7.62939453125e-06,2.288818359375e-05,0,0,0.00321388244628906,0.00246572494506836,-4.37498092651367e-05,0.011448860168457,-0.0113914012908936,0.00259971618652344,0.0143594741821289,-0.0227189064025879,0.0132322311401367,0.0362567901611328,-0.00160551071166992,0.000966072082519531,0.00258350372314453,-0.000132322311401367,8.10623168945313e-05,0.000212669372558594,-0.00143313407897949, +0.000863075256347656,0.00230598449707031,0.0068204402923584,-0.071258544921875,0.100652694702148,-0.00970184803009033,-0.0308339595794678,0.000973701477050781,-0.0229463577270508,-0.0489766597747803,0.00106334686279297,-0.00139856338500977,-0.105108499526978,0.15147876739502,-0.012382984161377,-0.0537021160125732,0.000777244567871094,-0.00457382202148438,-0.026618480682373,-0.000257492065429688,2.14576721191406e-06,-0.038646936416626,1.23977661132813e-05,-0.000230669975280762,-0.0511195659637451,0.000761032104492188,0,-0.0588011741638184,0.000203132629394531,0.00285589694976807,-0.0441131591796875,-0.00708770751953125,0.000528812408447266,-0.1177659034729,0.193404197692871,0.0108866691589355,-0.0752613544464111,0.116302490234375,-0.00925755500793457,-0.18486213684082,0.584591865539551,-0.044635534286499,-0.179177284240723,0.595497131347656,-0.256879329681396,-0.224141597747803,0.581555366516113,-0.205544471740723,-0.0962448120117188,0.400815010070801,-0.185422420501709,-0.0313668251037598,0.31999683380127,-0.146675586700439,-0.0229678153991699,0.233158111572266,-0.119466304779053,0.00315952301025391,0.178974151611328,-0.11499547958374,0.0283012390136719,0.213688850402832,-0.0942378044128418,0.0530052185058594,0.172408103942871,-3.79383563995361e-05,-0.033536434173584,0.400566101074219,-0.0239043235778809,-0.0232410430908203,0.434087753295898,0.0344362854957581,-0.0937583446502686,0.55379581451416,-0.000859051942825317,-0.0797598361968994,0.425488471984863,0.000667572021484375,-0.0331926345825195,0.373599052429199,-4.93228435516357e-05,0.0219786167144775,0.335282325744629,0.00447893142700195,-0.0416414737701416,0.312426567077637,0.000939339399337769,0.0154681205749512,0.22276496887207,0.0144979357719421,-0.0782785415649414,0.23857307434082,0.00789198279380798,-0.0266904830932617,0.121533393859863,0.0176359415054321,-0.0722305774688721,0.174126625061035,0.0201452970504761,-0.0661535263061523,0.07818603515625,0.0114471316337585,-0.0564358234405518,0.0970134735107422,0.0159072875976563,-0.0430095195770264,0.0272598266601563, +-0.000432372093200684,-0.0712954998016357,0.0692253112792969,-0.00106275081634521,-0.0693550109863281,0.0151815414428711,-0.0264607667922974,-0.0933070182800293,0.0678615570068359,-0.0255063772201538,-0.0822763442993164,0.019862174987793,-0.0477938652038574,-0.106835126876831,0.0721292495727539,-0.0414704084396362,-0.108806133270264,0.111215591430664,0.0240933895111084,-0.115582227706909,0.232375144958496,-0.00702214241027832,-0.171325922012329,0.352201461791992,-0.00853615999221802,-0.148457527160645,0.515483856201172,0.0590575933456421,-0.094304084777832,0.384753227233887,-0.0323226451873779,-0.128154039382935,0.105284690856934,-0.0500407218933105,-0.150243997573853,0.104399681091309,-7.32839107513428e-05,-0.014650821685791,0.392269134521484,0.000270873308181763,-0.00687479972839355,0.366880416870117,0.00353825092315674,-0.00763797760009766,0.284533500671387,0.0150828957557678,-0.0769674777984619,0.225543975830078,0.0195243358612061,-0.0693666934967041,0.148388862609863,0.0142008662223816,-0.0476489067077637,0.072235107421875,-0.000607609748840332,-0.0694851875305176,0.0529699325561523,-0.026252269744873,-0.0897634029388428,0.0527801513671875,-0.0509294271469116,-0.104301929473877,0.0768928527832031,-0.0418009757995605,-0.135876655578613,0.0952625274658203,0.0156184434890747,-0.137662887573242,0.244600296020508,0.0560111403465271,-0.108448505401611,0.395637512207031,-0.00123530626296997,-0.0817329883575439,0.439971923828125,-0.00142243504524231,-0.0844521522521973,0.446774482727051,0.0529258251190186,-0.121685028076172,0.399440765380859,0.00766807794570923,-0.157881736755371,0.253552436828613,-0.0475596189498901,-0.142354488372803,0.0900650024414063,-0.0492473840713501,-0.103969097137451,0.0888547897338867,-0.0272254943847656,-0.0861165523529053,0.0355806350708008,-0.000798702239990234,-0.0689048767089844,0.0319576263427734,0.0152129530906677,-0.0438861846923828,0.0534305572509766,0.0201331377029419,-0.0673863887786865,0.121417999267578,0.0138165950775146,-0.0748312473297119,0.225542068481445,0.00311890244483948, +0.00703859329223633,0.25806999206543,3.28123569488525e-05,0.0160799026489258,0.342263221740723,-0.000112831592559814,0.00507616996765137,0.37064266204834,-0.000183403491973877,-0.0623998641967773,0.600116729736328,0.0170084238052368,-0.0594334602355957,0.00329685211181641,0.0151834487915039,-0.0428466796875,0.0003814697265625,0.00972664356231689,-0.0425131320953369,-0.00951671600341797,0.00795942544937134,-0.0525166988372803,-0.0350885391235352,-0.000528097152709961,-0.0601747035980225,0.00104236602783203,-0.000770926475524902,-0.0661451816558838,0.00373744964599609,-0.0219329595565796,-0.0776712894439697,0.00699520111083984,-0.0175013542175293,-0.0690078735351563,0.00145435333251953,-0.0385897159576416,-0.0935695171356201,0.0643196105957031,-0.0442686080932617,-0.0875413417816162,0.0531930923461914,-0.046786904335022,-0.0802476406097412,0.0532674789428711,-0.0464754104614258,-0.073920726776123,0.0472755432128906,-0.0434932708740234,-0.0683395862579346,0.0350322723388672,-0.0361193418502808,-0.0602791309356689,0.015477180480957,-0.0237891674041748,-0.125636100769043,0.166443824768066,-0.00923037528991699,-0.127307176589966,0.185375213623047,-0.0220589637756348,-0.143866777420044,0.18278980255127,-0.00274550914764404,-0.149606943130493,0.253066062927246,-0.0170254707336426,-0.154046535491943,0.327793121337891,0.00334525108337402,-0.163524627685547,0.423651695251465,0.00310564041137695,-0.126775741577148,0.318747520446777,0.0137335062026978,-0.0894768238067627,0.202864646911621,0.00013279914855957,-0.051170825958252,0.0536527633666992,-0.0141181945800781,-0.0806112289428711,0.0715646743774414,-0.0243439674377441,-0.0927245616912842,0.101846694946289,-0.0352059602737427,-0.0956313610076904,0.105446815490723,-0.0446940660476685,-0.0896215438842773,0.0868511199951172,-0.0495060682296753,-0.0892515182495117,0.0755300521850586,-0.0493029356002808,-0.0931804180145264,0.0673513412475586,-0.0446306467056274,-0.0983188152313232,0.0696926116943359,0,-0.0341771841049194,0.0130825042724609,0,-0.0277496576309204,0.00391483306884766, +0,-0.0115551948547363,0,0,-0.00286495685577393,0.00339698791503906,0,-0.00209450721740723,0.000200271606445313,0,-0.000151276588439941,0,0,-0.0571521520614624,0.00927162170410156,0,-0.0433707237243652,0.00216770172119141,0,-0.0283029079437256,0,0.00569212436676025,-0.0347959995269775,0.0334091186523438,0.00418078899383545,-0.0332431793212891,0.0321722030639648,0.00120735168457031,-0.00437307357788086,0.000181198120117188,0.000942826271057129,-0.00705385208129883,0.00140476226806641,-5.01871109008789e-05,-0.00095820426940918,-1.23977661132813e-05,-0.000424623489379883,-0.00301122665405273,-2.95639038085938e-05,-7.08103179931641e-05,-0.00354886054992676,-1.52587890625e-05,-0.000860333442687988,-0.00572037696838379,-6.866455078125e-05,0,-0.00852656364440918,-8.58306884765625e-06,-0.000283598899841309,-0.0154216289520264,-4.10079956054688e-05,0.000194311141967773,-0.00894904136657715,0.00193500518798828,-0.000672101974487305,-0.00466084480285645,-2.288818359375e-05,0.00207912921905518,-0.0219631195068359,0.0189027786254883,-0.00426316261291504,-0.0169141292572021,0.000329017639160156,-0.00237190723419189,-0.00930905342102051,-0.000101089477539063,-0.00156807899475098,-0.00660347938537598,-0.000104904174804688,-0.00158107280731201,-0.0125532150268555,-0.000116348266601563,-0.00490415096282959,-0.0188047885894775,-0.000292778015136719,0,-0.0706679821014404,0.00625133514404297,0,-0.0550811290740967,0.00125694274902344,0,-0.0361802577972412,0,-0.00104475021362305,-0.0225558280944824,-9.82284545898438e-05,-0.00287497043609619,-0.0151834487915039,-0.00019073486328125,0.0126142501831055,-0.0360686779022217,0.0583381652832031,0.00346684455871582,-0.00327277183532715,0.00105953216552734,0.000506401062011719,6.81877136230469e-05,2.288818359375e-05,0.0196239948272705,-0.00479722023010254,0.0486927032470703,0.0258920192718506,-0.0835793018341064,0.354113578796387,0.0225052833557129,-0.00703549385070801,0.171073913574219,0.000362873077392578,-0.080474853515625,0.360455513000488,0.00388431549072266,-0.00555229187011719,0.174657821655273, +-0.00224137306213379,-0.0513179302215576,0.335763931274414,0,0,0.103813171386719,-0.0953588485717773,0.0147140026092529,0.234951019287109,-0.15399169921875,-0.047004222869873,0.206435203552246,-0.0903549194335938,-0.00663018226623535,0.104671478271484,-0.0795669555664063,-0.0322055816650391,0.095557689666748,-0.093109130859375,-0.0252103805541992,0.117368698120117,-0.06854248046875,-0.0415053367614746,0.113208293914795,-0.0693645477294922,-0.0266938209533691,0.10210132598877,-0.0355496406555176,-0.0302267074584961,0.0747895240783691,-0.0462660789489746,-0.0210490226745605,0.0732331275939941,-0.05523681640625,-0.0577483177185059,0.123578071594238,-0.06866455078125,-0.049079418182373,0.129384517669678,-0.116348266601563,-0.0465736389160156,0.179004669189453,-0.0849609375,-0.0468487739562988,0.153185367584229,-0.0513992309570313,-0.0509777069091797,0.119544506072998,-0.0494537353515625,-0.0573124885559082,0.103248596191406,-0.0369963645935059,-0.0471773147583008,0.0287513732910156,-0.051424503326416,-0.0365896224975586,0.056190013885498,-0.0111536979675293,0.00195789337158203,0.0216426849365234,-0.0244269371032715,0.0116386413574219,0.0373053550720215,-0.00295329093933105,0.00177955627441406,0.00475263595581055,-0.0270071029663086,0.0119771957397461,0.0406351089477539,-0.0563843250274658,0.0325155258178711,0.0854358673095703,-0.0430126190185547,0.0318632125854492,0.0538196563720703,-0.0683050155639648,0.0386276245117188,0.084564208984375,-0.0586800575256348,0.0242204666137695,0.0551271438598633,-0.0680313110351563,-0.085141658782959,0.130546092987061,-0.052032470703125,-0.0637950897216797,0.105812072753906,0.00150752067565918,-0.0755078792572021,0.17586612701416,0.000399768352508545,-0.0773060321807861,0.135909080505371,-0.00187939405441284,-0.0822079181671143,0.108979225158691,-0.00768482685089111,-0.0920848846435547,0.110317230224609,-0.0145406723022461,-0.097928524017334,0.10930347442627,-0.0232795476913452,-0.101917743682861,0.0993127822875977,0.00107777118682861,-0.0752639770507813,0.205281257629395,0.000440120697021484, +-0.0735232830047607,0.244522094726563,5.14388084411621e-05,-0.0752227306365967,0.27393627166748,0,-0.0823452472686768,0.281021118164063,-0.000261187553405762,-0.0943868160247803,0.268973350524902,-0.00202655792236328,-0.108516693115234,0.223397254943848,-0.00693643093109131,-0.115869045257568,0.166912078857422,-0.014776885509491,-0.113116979598999,0.129596710205078,-0.0260344743728638,-0.108770132064819,0.103801727294922,-0.000401496887207031,-0.088925838470459,0.198792457580566,-0.00182223320007324,-0.0946898460388184,0.169625282287598,-0.00537484884262085,-0.0988585948944092,0.143039703369141,-0.0125702619552612,-0.102908372879028,0.123965263366699,3.5405158996582e-05,-0.0826058387756348,0.219475746154785,-0.00205680727958679,0.0371642112731934,0.0703182220458984,-0.00540661811828613,-0.0920596122741699,0.133270263671875,-0.00412535667419434,-0.0210552215576172,0.0898036956787109,0.00830376148223877,-0.226092338562012,-0.109767913818359,-0.0671076774597168,-0.291175365447998,-0.0841827392578125,-0.0494121313095093,-0.127303600311279,0.0648689270019531,-0.0296036005020142,-0.0862035751342773,0.101109504699707,-0.00294995307922363,-0.0108532905578613,0.0703258514404297,0,0,0.0304336547851563,0,0,0.0427331924438477,0,0,0.0429906845092773,0,0,0.0354795455932617,0,0.000260829925537109,0.0473451614379883,0.000169515609741211,0.000373363494873047,0.0353937149047852,0.036704421043396,0.115095138549805,0.742537498474121,0.0745730996131897,0.0331034660339355,0.709671020507813,-0.050870954990387,-0.159089088439941,0.680973052978516,-0.198330760002136,-0.295037746429443,0.712183952331543,-0.490028142929077,-0.222812652587891,0.926936149597168,-0.664120674133301,-0.133093357086182,1.07386302947998,-0.797453641891479,-0.0658082962036133,0.965202331542969,-0.933014392852783,0.022428035736084,0.875049591064453,-0.897272348403931,-0.0379824638366699,0.710650444030762,-0.780546426773071,-0.0288467407226563,0.589520454406738,-0.603030204772949,-0.0265927314758301,0.479490280151367,-0.408274173736572,-0.0308599472045898,0.373950004577637, +-0.271157503128052,-0.0433487892150879,0.289896965026855,-0.178205966949463,-0.0204610824584961,0.244139671325684,0.118922650814056,0.00645112991333008,0.333915710449219,0.186554491519928,-0.0653076171875,0.116684913635254,0.0750095844268799,-0.24109935760498,0.041773796081543,-0.0307177305221558,-0.423150062561035,0.141491889953613,-0.358466506004333,-0.388642311096191,0.36810302734375,-0.698696851730347,-0.482269763946533,0.671316146850586,-0.854441046714783,-0.330268383026123,0.716963768005371,-1.00376152992249,-0.151043891906738,0.75828742980957,-0.980063438415527,-0.112119197845459,0.678241729736328,-0.854207515716553,-0.0541300773620605,0.582310676574707,-0.668467044830322,-0.0416340827941895,0.452406883239746,-0.448434829711914,-0.0338292121887207,0.351312637329102,-0.242157697677612,0.0400943756103516,0.292271614074707,-0.0892610549926758,0.0514893531799316,0.161590576171875,0.000847101211547852,-0.00340080261230469,0.000279426574707031,1.28746032714844e-05,-6.65187835693359e-05,5.7220458984375e-06,0.000226259231567383,-0.00289487838745117,0.000212669372558594,-0.00011754035949707,-3.93390655517578e-05,-2.86102294921875e-06,0,-0.00122261047363281,-0.00104284286499023,0,-0.00154876708984375,-0.00133609771728516,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-1.96695327758789e-06,0,0,-2.5331974029541e-06,0,0,5.24520874023438e-06,0,0,2.68220901489258e-06,0,0,1.07288360595703e-06,0,0,2.05636024475098e-06,0,0,2.14576721191406e-06,0,0,-1.60932540893555e-06,0,0,3.87430191040039e-06,0,0,-2.17556953430176e-06,0,0,-3.26335430145264e-06,0,0,5.39422035217285e-06,0,0,-3.12924385070801e-06,0,0,-1.57952308654785e-06,0,0,-2.44379043579102e-06,0,0,1.43051147460938e-06,0,0,-2.98023223876953e-06,0,0,2.41398811340332e-06,0,0,2.83122062683105e-06,0,0,-5.27501106262207e-06,0,0,2.95042991638184e-06,0,0,1.46031379699707e-06,0 + } + Normals: *2277 { + a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.697922846870561,0.218657426536083,0.243624031543732,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.37752080016508,-0.215317510068417,-1.91366750001907,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589, +0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224, +-0.226044476032257,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449, +-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.183858662843704,-0.170020867139101,-1.82239359617233,0.317191332578659,0.422314759343863,-1.34763860702515,0.221148788928986,0.310832679271698,-1.26058748364449,0.676499664783478,0.394543980248272,-1.38882184028625,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671, +-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874, +0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842, +0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442, +-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,0.376216888427734,-0.614558279514313,-0.556118197739124,0.0134696960449219,-0.3723304271698,-0.660809934139252,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431, +-0.420463636517525,-0.682044595479965,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.261731175705791,0.211270391941071, +1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807, +1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-0.738990459194355,1.26655244827271,1.06764000654221,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431, +-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365, +-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-1.06108289957047,4.1671097278595e-05, +0.163650870323181,-0.940145373344421,0.194000024348497,-0.0857091546058655,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-1.06437003612518,0.84141793847084,0.424562990665436,-1.30209255218506,0.681211248040199,0.375398635864258,-0.862383862957358,0.426683764904737,0.597152233123779,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431, +0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326, +-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047, +0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023, +-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.68354600667953,0.430448427796364,0.169923663139343,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854, +-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912, +-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.74395287036896,-0.529954386875033,-0.258157923817635,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,-0.444174110889435,-1.52680599689484,0.167733874171972,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.962147414684296,-1.56267940998077,-0.75883275270462,0.76577752828598,-1.23354479670525, +-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.419496715068817,-0.747102489694953,-0.682158470153809,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855 + } + } + Geometry: 2805454334880, "Geometry::Mouth_Lower_Overturn", "Shape" { + Version: 100 + Indexes: *442 { + a: 5883,5884,5886,5888,5890,5892,5894,5902,5903,5904,5917,5918,5922,5924,5929,5930,5933,5936,5938,5939,5940,5941,5942,5947,5979,5980,5981,5982,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6156,6165,6167,6169,6179,6183,6184,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6343,6344,6352,6362,6364,6366,6367,6368,6372,6373,6374,6375,6376,6377,6378,6379,6380,6382,6383,6384,6385,6386,6387,6390,6391,6392,6393,6394,6397,6400,6401,6402,6403,6404,6407,6408,6409,6410,6411,7165,7167,7168,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7240,7241,7242,7243,7244,7247,7331,7361,7362,7363,7364,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7538,7547,7549,7551,7561,7565,7566,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7725,7726,7734,7744,7746,7748,7749,7750,7754,7755,7756,7757,7758,7759,7760,7761,7762,7764,7765,7766,7767,7768,7769,7772,7773,7774,7775,7776,7779,7782,7783,7784,7785,7786,7789,7790,7791,7792,7793,8547,8548,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8590,8591,8592,8593,8594,8595,8596,8597, +8598,8599,8600,8601,8602,8615,8616,8617,8618,8619,8698,8699,8700,8712,8723,8724,8725,8737,8748,8749,8750,8761,8767,8768,8769,8770,8773,8774,8775,8786,8789,8792,8793,8794,8795 + } + Vertices: *1326 { + a: -0.0006238959467737,-0.483419895172119,0.784582138061523,2.68064177362248e-05,-0.472735404968262,1.03938674926758,2.23803235712694e-05,-0.701373100280762,0.987392425537109,2.68065050477162e-05,-0.609458446502686,1.15764713287354,-0.00136933943758777,-0.294312000274658,0.750221252441406,-0.00122776276839431,-0.335236072540283,0.80193042755127,-0.0335820913314819,-0.0693998336791992,0.821723937988281,0,-0.000870704650878906,0.000601768493652344,0,-2.00271606445313e-05,0,-0.0010448438115418,0.0961427688598633,0.558370590209961,0,-0.00478267669677734,0.173303604125977,0,-0.00520133972167969,0.0104713439941406,0,1.81198120117188e-05,0,0,-6.43730163574219e-06,0,0,1.04904174804688e-05,0,0,-2.00271606445313e-05,0,0,-2.09808349609375e-05,0,0,-2.57492065429688e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,1.57356262207031e-05,0,0,-2.00271606445313e-05,0,0,2.09808349609375e-05,0,0,3.0517578125e-05,0,0.307615995407104,0.012183666229248,0.415993690490723,0.230115413665771,0.0524640083312988,0.419035911560059,0.114784717559814,0.0134496688842773,0.266748428344727,0.132806062698364,-0.00998735427856445,0.2723388671875,0.331608295440674,0.0357961654663086,0.498334884643555,0.445063352584839,-0.0284843444824219,0.504423141479492,0.451865673065186,-0.0273666381835938,0.56884765625,0.575550317764282,-0.0486178398132324,0.619497299194336,0.498192310333252,-0.114270210266113,0.654051780700684,0.675529956817627,-0.0746269226074219,0.735013008117676,0.512622356414795,-0.227178573608398,0.778054237365723,0.756835699081421,-0.123231410980225,0.874102592468262,0.590872645378113,-0.153339862823486,0.899144172668457,0.402610063552856,-0.183499336242676,0.850724220275879,0.458375930786133,-0.137711048126221,0.86231803894043,0.379595279693604,-0.123825550079346,0.794178009033203,0.437676787376404,-0.201735496520996,0.822293281555176,0.390217542648315,-0.162132263183594,0.833274841308594,0.389851689338684,-0.370441436767578,0.709674835205078,0.163115739822388,-0.133504867553711,0.721637725830078,0.240984797477722, +-0.404284477233887,0.679520606994629,-0.0102294683456421,-0.187110900878906,0.746468544006348,0.00102663040161133,-0.44001579284668,0.696071624755859,-0.220902025699615,-0.303369045257568,0.828703880310059,-0.148422718048096,-0.510412693023682,0.752713203430176,-0.211330890655518,-0.455160617828369,0.932422637939453,0.107774257659912,0.0223231315612793,0.292866706848145,0.220107316970825,0.0286107063293457,0.439066886901855,0.330280303955078,-0.00374126434326172,0.522384643554688,0.442702770233154,-0.0462536811828613,0.628232955932617,0.504257440567017,-0.101635932922363,0.747920036315918,0.529944658279419,-0.17549467086792,0.907588958740234,0.344403982162476,-0.262936115264893,0.944353103637695,0.300145626068115,-0.244541168212891,0.880239486694336,0.304213523864746,-0.362518310546875,0.995491981506348,0.145293235778809,-0.434634685516357,0.844383239746094,0.00497567653656006,-0.480399608612061,0.832744598388672,-0.0958244204521179,-0.616430282592773,0.926680564880371,-0.147905707359314,-0.719480991363525,0.976479530334473,0.113415241241455,0.00474834442138672,0.29416561126709,0.255190372467041,0.00689554214477539,0.437051773071289,0.377891778945923,-0.0277585983276367,0.531100273132324,0.492504596710205,-0.0550875663757324,0.65485668182373,0.571025848388672,-0.0798540115356445,0.786896705627441,0.619766473770142,-0.143640041351318,0.939120292663574,0.446822881698608,-0.222053050994873,0.985501289367676,0.372065663337708,-0.211862087249756,0.889538764953613,0.317242503166199,-0.253729343414307,0.990479469299316,0.125524401664734,-0.322347164154053,0.899962425231934,-0.0153677463531494,-0.365593910217285,0.936932563781738,-0.207525074481964,-0.43060302734375,1.00467491149902,-0.18245655298233,-0.59083890914917,1.10133171081543,0.0899574756622314,-0.0726423263549805,0.246062278747559,0.219343900680542,0.0151972770690918,0.376761436462402,0.309159994125366,0.0142383575439453,0.432737350463867,0.358412027359009,-0.00658559799194336,0.440622329711914,0.404325008392334,-0.0593647956848145,0.49611759185791,0.429628610610962, +-0.0898027420043945,0.651723861694336,0.43409276008606,-0.0607919692993164,0.841485023498535,0.416836977005005,0.0281238555908203,0.793318748474121,-0.116600394248962,-0.317013263702393,0.814275741577148,-0.0447801947593689,-0.265531063079834,0.755805015563965,0.0808781385421753,-0.305002689361572,0.67192554473877,0.235603928565979,-0.194816589355469,0.75192928314209,0.397628545761108,-0.065192699432373,0.903663635253906,0.112113952636719,0.0129876136779785,0.256590843200684,0.226774930953979,0.0734882354736328,0.402619361877441,0.306519508361816,0.0445065498352051,0.47314453125,0.403445482254028,-0.00309467315673828,0.52286434173584,0.424606800079346,-0.0783476829528809,0.58194637298584,0.434771299362183,-0.191352367401123,0.690985679626465,0.442982912063599,-0.172104835510254,0.830883026123047,0.398187637329102,-0.107427597045898,0.774344444274902,0.462687969207764,-0.155696868896484,0.834476470947266,0.330689311027527,-0.263789176940918,0.722058296203613,0.206771850585938,-0.298539161682129,0.67429256439209,-0.000215470790863037,-0.334412097930908,0.702715873718262,-0.137507021427155,-0.39373254776001,0.769412994384766,0.062671422958374,-0.0635313987731934,0.247284889221191,0.169333457946777,-0.0453190803527832,0.318758964538574,0.398783922195435,-0.0326690673828125,0.712525367736816,0.396896600723267,-0.0866298675537109,0.521881103515625,0.391916513442993,-0.0673789978027344,0.434962272644043,0.35525369644165,-0.0266580581665039,0.405059814453125,0.247511625289917,-0.0408086776733398,0.347761154174805,0.0317386984825134,-0.0511617660522461,0.803583145141602,0.0901289582252502,-0.0642375946044922,0.775375366210938,0.116502642631531,-0.0310211181640625,0.652098655700684,0.279475808143616,0.0553865432739258,0.616022109985352,0.461694478988647,0.150577545166016,0.755233764648438,0.419474363327026,0.060523509979248,0.706240653991699,-0.000616550445556641,-1.09672546386719e-05,0.00286197662353516,0.0113155841827393,-0.0105953216552734,0.00677108764648438,0.0347833633422852,0.00793933868408203,0.0438451766967773,0.0530104637145996, +0.0308732986450195,0.0845990180969238,0.00240802764892578,0.00145053863525391,0.0038752555847168,0.000403881072998047,0.000244140625,0.000649929046630859,0.00334405899047852,0.00201320648193359,0.00538158416748047,0.0111589431762695,-0.0447945594787598,0.148898124694824,0.110037803649902,-0.0960283279418945,0.249149322509766,0.136924266815186,-0.0641469955444336,0.267109870910645,0.185328006744385,-0.0313706398010254,0.319867134094238,0.219977855682373,-0.0344266891479492,0.349639892578125,0.279334306716919,0.00760412216186523,0.417605400085449,0.284247398376465,0.0701198577880859,0.527901649475098,0.288183450698853,0.162148475646973,0.526695251464844,0.282460689544678,0.237651824951172,0.53803825378418,0.190878868103027,0.110481262207031,0.475432395935059,0.123686075210571,0.0638370513916016,0.495452880859375,0.130833029747009,0.0745439529418945,0.55661678314209,0.121218115091324,0.0802669525146484,0.588569641113281,-0.00562644004821777,-0.00175881385803223,0.0427684783935547,-9.17911529541016e-05,-0.0201187133789063,0.090113639831543,0.0795669555664063,-0.0322055816650391,0.095557689666748,0.06854248046875,-0.0415050983428955,0.113206386566162,0.0462279319763184,-0.0177936553955078,0.0680532455444336,0.0592498779296875,-0.0503778457641602,0.124649047851563,0.0308442115783691,-0.0140328407287598,0.0488200187683105,0.05523681640625,-0.0577483177185059,0.12357759475708,0.0478439331054688,-0.0934891700744629,0.0372381210327148,0.0849609375,-0.0468487739562988,0.153185367584229,0.0513992309570313,-0.0509777069091797,0.119544506072998,0.0494537353515625,-0.0573124885559082,0.103248596191406,0.0554943084716797,-0.0707621574401855,0.0431203842163086,0.0771369934082031,-0.0548839569091797,0.084284782409668,0.0722122192382813,-0.0806980133056641,0.0948853492736816,0.0260179042816162,0.00458908081054688,0.0504388809204102,0.0569961071014404,0.0271568298339844,0.0870466232299805,0.00729250907897949,0.00439453125,0.0117344856262207,0.0666840076446533,0.0295734405517578,0.100334167480469,0.139200210571289,0.0803260803222656,0.210864067077637, +0.10620379447937,0.07867431640625,0.132890701293945,0.208542585372925,0.117978096008301,0.25809383392334,0.179176092147827,0.0739545822143555,0.168333053588867,0.0183215141296387,-0.00660324096679688,0.0165004730224609,0.111440181732178,0.0422229766845703,0.0821876525878906,0.207371234893799,0.10316276550293,0.198845863342285,0.0875314474105835,-0.00724983215332031,0.129048347473145,0.0297852754592896,-0.0249452590942383,0.0184307098388672,0.0114630460739136,-0.0107345581054688,0.00685787200927734,0.0114914774894714,-0.0102510452270508,0.00655174255371094,0.122914612293243,-0.0190191268920898,0.19697380065918,0.100697040557861,-0.024968147277832,0.145277976989746,0.060733437538147,-0.0255584716796875,0.0289373397827148,0.0768558382987976,-0.0255584716796875,0.028895378112793,0.00843062996864319,-0.00747299194335938,0.00477504730224609,0.114405691623688,-0.012211799621582,0.201597213745117,0.072242259979248,-0.0190334320068359,0.0219879150390625,0.0680313110351563,-0.085141658782959,0.130546092987061,0.052032470703125,-0.0637950897216797,0.105812072753906,3.56697705683473e-06,0.236507415771484,-0.359658241271973,0.00133752822875977,-0.023015022277832,0.0334396362304688,0.00177645683288574,-0.00902366638183594,0.0387411117553711,0,0,0.020665168762207,0,0,0.0430173873901367,0,0,0.0644979476928711,0,-1.43051147460938e-06,0.0827083587646484,0,0.000646591186523438,0.117155075073242,-0.000517606735229492,0.00113916397094727,0.108170509338379,0.0597255229949951,0.461997985839844,0.105563163757324,-0.0189690589904785,0.551415920257568,-0.148783683776855,-0.0419668555259705,0.358753204345703,-0.274959564208984,-0.0328803658485413,0.222307682037354,-0.319223403930664,-0.0116217434406281,0.232020854949951,-0.340732574462891,0.199231624603271,-0.0163378715515137,0.240839004516602,0.400888919830322,0.00920724868774414,0.3743896484375,0.597562551498413,-0.0263504981994629,0.476189613342285,0.779067754745483,-0.028954029083252,0.594712257385254,0.90300440788269,-0.0386900901794434,0.725760459899902,0.952827453613281,-0.0689578056335449, +0.879892349243164,0.756719589233398,-0.10551118850708,0.907960891723633,0.544144034385681,-0.0625224113464355,0.746904373168945,0.505744814872742,-0.00129890441894531,0.757048606872559,0.245566725730896,-0.0383577346801758,0.54488468170166,0.0620806217193604,-0.0190677642822266,0.428594589233398,-0.222905576229095,-0.105296611785889,0.408242225646973,-0.212205648422241,-0.221711158752441,0.495352745056152,2.68064450210659e-05,-0.248584270477295,0.524032592773438,0.213632106781006,-0.0829963684082031,0.179266929626465,0.428929328918457,-0.0660977363586426,0.323993682861328,0.651111125946045,-0.0771279335021973,0.450858116149902,0.850667476654053,-0.0561413764953613,0.580391883850098,0.999810218811035,-0.0633559226989746,0.676947593688965,1.04620611667633,-0.0759425163269043,0.821157455444336,0.901939034461975,0.105040550231934,0.724281311035156,0.709603548049927,0.157584190368652,0.493256568908691,0.631578326225281,0.454818725585938,0.265034675598145,0.277613639831543,0.462442874908447,0.0330371856689453,0.102648556232452,0.34022331237793,-0.106995582580566,-0.137146294116974,0.253963470458984,-0.198402404785156,-0.203539609909058,0.125116348266602,-0.228947639465332,2.68065705313347e-05,0.115657329559326,-0.23289680480957,0,-0.00301742553710938,-0.00257253646850586,0,-0.00473213195800781,-0.00408458709716797,0,-0.000291824340820313,-0.000249862670898438,0.00416100025177002,0.00414276123046875,0.000548362731933594,0.00358211994171143,0.00364112854003906,0.000463485717773438,0,-2.00271606445313e-05,0,0,-1.04904174804688e-05,0,-0.307246685028076,0.0117406845092773,0.416439056396484,-0.230122566223145,0.052579402923584,0.418962478637695,-0.11487889289856,0.0136890411376953,0.266660690307617,-0.132911682128906,-0.0100302696228027,0.272100448608398,-0.33186936378479,0.0359091758728027,0.49791145324707,-0.444702863693237,-0.0286378860473633,0.504392623901367,-0.452150106430054,-0.0274181365966797,0.568637847900391,-0.576723337173462,-0.0483303070068359,0.615510940551758,-0.498064041137695,-0.114713191986084,0.654589653015137, +-0.676246881484985,-0.0753927230834961,0.728410720825195,-0.511785745620728,-0.228606224060059,0.778693199157715,-0.755295753479004,-0.124358654022217,0.871062278747559,-0.589671850204468,-0.153394222259521,0.898089408874512,-0.402669429779053,-0.183751583099365,0.850914001464844,-0.457761764526367,-0.137688636779785,0.861245155334473,-0.379121541976929,-0.124040603637695,0.79401969909668,-0.437321901321411,-0.203742980957031,0.821797370910645,-0.38908863067627,-0.161987781524658,0.832240104675293,-0.389018535614014,-0.370156288146973,0.710299491882324,-0.161711812019348,-0.1330885887146,0.72097110748291,-0.238088011741638,-0.403781890869141,0.677477836608887,0.0112818479537964,-0.186862468719482,0.746562957763672,0.00159144401550293,-0.434976577758789,0.69677734375,0.221327722072601,-0.303234100341797,0.829916954040527,0.148475646972656,-0.510854244232178,0.752106666564941,0.211548298597336,-0.455183506011963,0.933463096618652,-0.107855081558228,0.0222873687744141,0.292641639709473,-0.220252513885498,0.0287842750549316,0.438804626464844,-0.330600261688232,-0.00391435623168945,0.521749496459961,-0.442610025405884,-0.0461411476135254,0.627749443054199,-0.504199743270874,-0.101494789123535,0.748332977294922,-0.529829502105713,-0.175447940826416,0.908385276794434,-0.343616962432861,-0.262941837310791,0.944035530090332,-0.299153804779053,-0.244632244110107,0.879868507385254,-0.303041815757751,-0.362663269042969,0.995268821716309,-0.144462466239929,-0.434739589691162,0.84422779083252,-0.00438094139099121,-0.480259895324707,0.83219051361084,0.0959926247596741,-0.616256713867188,0.926619529724121,0.14783987402916,-0.720043659210205,0.975674629211426,-0.113515615463257,0.00469160079956055,0.293926239013672,-0.255096912384033,0.00692892074584961,0.436952590942383,-0.37779712677002,-0.0276045799255371,0.530763626098633,-0.492115020751953,-0.0546040534973145,0.653114318847656,-0.570716381072998,-0.0798158645629883,0.785598754882813,-0.61935830116272,-0.143598556518555,0.938422203063965,-0.446003198623657,-0.22203540802002,0.984624862670898, +-0.371169567108154,-0.211858749389648,0.888848304748535,-0.315858960151672,-0.253742694854736,0.989869117736816,-0.124307155609131,-0.322128295898438,0.899797439575195,0.0159332752227783,-0.365464687347412,0.936792373657227,0.20783531665802,-0.430492401123047,1.00551223754883,0.182539165019989,-0.590809345245361,1.10149765014648,-0.0898528099060059,-0.0721368789672852,0.246136665344238,-0.219187259674072,0.0156345367431641,0.376684188842773,-0.309062242507935,0.0144166946411133,0.432540893554688,-0.358113050460815,-0.00653409957885742,0.439970970153809,-0.403997659683228,-0.0595364570617676,0.495634078979492,-0.429223537445068,-0.0901346206665039,0.651371955871582,-0.433570861816406,-0.0613255500793457,0.840755462646484,-0.415909767150879,0.0272741317749023,0.792238235473633,0.115644991397858,-0.305534839630127,0.804839134216309,0.0437561869621277,-0.262321949005127,0.754545211791992,-0.0796886682510376,-0.307677745819092,0.670780181884766,-0.23516833782196,-0.195967674255371,0.751559257507324,-0.395434379577637,-0.0673489570617676,0.901754379272461,-0.112032175064087,0.0132298469543457,0.256518363952637,-0.22693133354187,0.0736517906188965,0.402645111083984,-0.306312322616577,0.0448875427246094,0.472867012023926,-0.403532981872559,-0.0031123161315918,0.522571563720703,-0.424099922180176,-0.0790133476257324,0.582021713256836,-0.434191226959229,-0.192093372344971,0.691287994384766,-0.442966222763062,-0.17289400100708,0.831162452697754,-0.397560596466064,-0.1077880859375,0.773981094360352,-0.461665749549866,-0.156483173370361,0.834136962890625,-0.330043077468872,-0.263080596923828,0.722240447998047,-0.20345401763916,-0.298011779785156,0.671525001525879,-0.000908136367797852,-0.331383228302002,0.704668998718262,0.137660443782806,-0.391825199127197,0.769172668457031,-0.0627062320709229,-0.0633707046508789,0.247502326965332,-0.169697523117065,-0.0455136299133301,0.319358825683594,-0.397958993911743,-0.0330820083618164,0.711591720581055,-0.396037578582764,-0.0870242118835449,0.521835327148438,-0.392024993896484,-0.0674591064453125, +0.435357093811035,-0.355955123901367,-0.026641845703125,0.405994415283203,-0.248226404190063,-0.0410337448120117,0.34861946105957,-0.0353135466575623,-0.0610971450805664,0.797797203063965,-0.0981817841529846,-0.0566549301147461,0.772909164428711,-0.115908741950989,-0.0337028503417969,0.651735305786133,-0.279147505760193,0.0543794631958008,0.615731239318848,-0.461770534515381,0.150187492370605,0.75670337677002,-0.418741703033447,0.0599627494812012,0.705353736877441,0.000616550445556641,-1.09672546386719e-05,0.00286197662353516,-0.0113155841827393,-0.0105953216552734,0.00677108764648438,-0.034782886505127,0.00793933868408203,0.0438451766967773,-0.0530104637145996,0.0308732986450195,0.0845990180969238,-0.00240802764892578,0.00145053863525391,0.0038752555847168,-0.000403881072998047,0.000244140625,0.000649929046630859,-0.00334405899047852,0.00201320648193359,0.00538158416748047,-0.0111589431762695,-0.0447945594787598,0.148874282836914,-0.110091209411621,-0.0960607528686523,0.249238014221191,-0.137029647827148,-0.0641632080078125,0.267210006713867,-0.185422420501709,-0.0313668251037598,0.31999683380127,-0.22001314163208,-0.0344514846801758,0.349737167358398,-0.278754711151123,0.00737190246582031,0.417606353759766,-0.283939599990845,0.0698795318603516,0.527624130249023,-0.28774881362915,0.161848068237305,0.526434898376465,-0.282467126846313,0.237576484680176,0.538200378417969,-0.19083297252655,0.110335350036621,0.475393295288086,-0.1236172914505,0.063450813293457,0.495586395263672,-0.131933689117432,0.0756320953369141,0.556674003601074,-0.121730893850327,0.0788602828979492,0.588338851928711,0.00562644004821777,-0.00175881385803223,0.0427684783935547,9.08374786376953e-05,-0.0201187133789063,0.090113639831543,-0.0795669555664063,-0.0322055816650391,0.095557689666748,-0.06854248046875,-0.0415053367614746,0.113208293914795,-0.0462431907653809,-0.0177960395812988,0.0680675506591797,-0.0592498779296875,-0.0503778457641602,0.124649047851563,-0.0308442115783691,-0.0140328407287598,0.0488219261169434,-0.05523681640625,-0.0577483177185059, +0.123578071594238,-0.0478439331054688,-0.0934891700744629,0.0372376441955566,-0.0849609375,-0.0468487739562988,0.153185367584229,-0.0513992309570313,-0.0509777069091797,0.119544506072998,-0.0494537353515625,-0.0573124885559082,0.103248596191406,-0.0554943084716797,-0.0707659721374512,0.0431270599365234,-0.0771369934082031,-0.0548830032348633,0.084284782409668,-0.0722122192382813,-0.0806980133056641,0.0948853492736816,-0.0260255336761475,0.00456714630126953,0.0504980087280273,-0.0569961071014404,0.0271568298339844,0.0870447158813477,-0.00729250907897949,0.00439453125,0.0117344856262207,-0.0666844844818115,0.0295734405517578,0.100334167480469,-0.139220476150513,0.0802860260009766,0.210954666137695,-0.10620379447937,0.0786733627319336,0.13288688659668,-0.208564281463623,0.117947578430176,0.258213043212891,-0.179176092147827,0.0739536285400391,0.168329238891602,-0.0183215141296387,-0.00660324096679688,0.0165004730224609,-0.111440181732178,0.0422220230102539,0.0821866989135742,-0.207382917404175,0.103168487548828,0.198872566223145,-0.087537407875061,-0.00725269317626953,0.12905216217041,-0.0297852754592896,-0.0249452590942383,0.0184307098388672,-0.0114630460739136,-0.0107345581054688,0.00685787200927734,-0.0114914774894714,-0.0102510452270508,0.00655174255371094,-0.122888684272766,-0.019012451171875,0.196959495544434,-0.100705027580261,-0.0249691009521484,0.145283699035645,-0.060733437538147,-0.0255584716796875,0.0289373397827148,-0.0768558382987976,-0.0255584716796875,0.028895378112793,-0.00843062996864319,-0.00747299194335938,0.00477504730224609,-0.114439010620117,-0.0122194290161133,0.201729774475098,-0.072242259979248,-0.0190334320068359,0.0219879150390625,-0.0680313110351563,-0.085141658782959,0.130546092987061,-0.052032470703125,-0.0637950897216797,0.105812072753906,-0.00135159492492676,-0.023015022277832,0.0333175659179688,-0.00176787376403809,-0.00902366638183594,0.038487434387207,0,0,0.020289421081543,0,0,0.0427331924438477,0,0,0.0644845962524414,0,-1.43051147460938e-06,0.0827865600585938,0,0.000643730163574219, +0.116901397705078,0.000517606735229492,0.00113868713378906,0.108073234558105,-0.0604430437088013,0.286600589752197,0.104964256286621,0.0183802843093872,0.376058101654053,-0.149049758911133,0.0418922305107117,0.183372497558594,-0.27491569519043,0.0326692461967468,0.049558162689209,-0.318086624145508,0.0114204883575439,0.234650135040283,-0.339345932006836,-0.199363231658936,-0.0164523124694824,0.241300582885742,-0.399863243103027,0.00961208343505859,0.375020980834961,-0.598181486129761,-0.0253214836120605,0.473767280578613,-0.780546426773071,-0.0288467407226563,0.589520454406738,-0.904545307159424,-0.039888858795166,0.719235420227051,-0.952639579772949,-0.0720067024230957,0.872550964355469,-0.756174802780151,-0.107033729553223,0.905914306640625,-0.544140338897705,-0.0624775886535645,0.745464324951172,-0.505107879638672,-0.00108432769775391,0.756327629089355,-0.244449019432068,-0.0382628440856934,0.546135902404785,-0.0610541105270386,-0.0189766883850098,0.429902076721191,0.223538219928741,-0.104866027832031,0.40395450592041,0.212110221385956,-0.221365928649902,0.486811637878418,-0.213610172271729,-0.0825672149658203,0.179241180419922,-0.430183410644531,-0.0647330284118652,0.324979782104492,-0.653375625610352,-0.0747466087341309,0.45216178894043,-0.854207515716553,-0.0541300773620605,0.582310676574707,-1.0027003288269,-0.0624508857727051,0.678610801696777,-1.04634809494019,-0.0789356231689453,0.819728851318359,-0.900554180145264,0.0989980697631836,0.721657752990723,-0.709150791168213,0.157218933105469,0.493406295776367,-0.634402513504028,0.452764987945557,0.261700630187988,-0.279871463775635,0.461830139160156,0.0318374633789063,-0.102716863155365,0.340213775634766,-0.107175827026367,0.138886213302612,0.254633903503418,-0.19809627532959,0.203883975744247,0.125581741333008,-0.228060722351074,0,-0.00302028656005859,-0.00257349014282227,0,-0.004730224609375,-0.00407981872558594,0,-0.000291824340820313,-0.000243186950683594,-0.00416100025177002,0.00414276123046875,0.000548362731933594,-0.00358211994171143,0.00364112854003906, +0.000463485717773438,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-1.96695327758789e-06,0,0,-2.5331974029541e-06,0,0,5.24520874023438e-06,0,0,2.68220901489258e-06,0,0,1.07288360595703e-06,0,0,2.05636024475098e-06,0,0,2.14576721191406e-06,0,0,-1.60932540893555e-06,0,0,3.87430191040039e-06,0,0,-2.17556953430176e-06,0,0,-3.26335430145264e-06,0,0,5.39422035217285e-06,0,0,-3.12924385070801e-06,0,0,-1.57952308654785e-06,0,0,-2.44379043579102e-06,0,0,1.43051147460938e-06,0,0,-2.98023223876953e-06,0,0,2.41398811340332e-06,0,0,-1.02818012237549e-06,0,0,2.83122062683105e-06,0,0,-5.27501106262207e-06,0,0,2.95042991638184e-06,0,0,1.46031379699707e-06,0 + } + Normals: *1326 { + a: -0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.697922846870561,0.218657426536083,0.243624031543732,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.37752080016508,-0.215317510068417,-1.91366750001907,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465, +0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116, +1.00598068535328,-0.406233571004122,-0.586036771535873,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517, +0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.00140410661697388,0.47925940901041,-1.30150604248047,0.317191332578659,0.422314759343863,-1.34763860702515,0.221148788928986,0.310832679271698,-1.26058748364449,0.676499664783478,0.394543980248272,-1.38882184028625,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,0.376216888427734,-0.614558279514313,-0.556118197739124,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328, +0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812, +-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.998503710208251,-0.881174180656672,0.356345940381289,-0.768468946218491,0.565167635679245,0.388752035796642, +-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983, +-0.992238243576139,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547, +-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-1.15227884054184,0.806445047259331,0.284897208213806,-1.06437003612518,0.84141793847084,0.424562990665436,-1.30209255218506,0.681211248040199,0.375398635864258,-0.862383862957358,0.426683764904737,0.597152233123779,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494, +-0.364190399646759,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.68354600667953,0.430448427796364,0.169923663139343,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.730625748634338,0.771656796336174,0.32690155506134,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,1.0665990114212, +0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404, +-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.74395287036896,-0.529954386875033,-0.258157923817635,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,-0.444174110889435,-1.52680599689484,0.167733874171972,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.962147414684296,-1.56267940998077,-0.75883275270462,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.419496715068817,-0.747102489694953,-0.682158470153809,0.899685729295015,-0.94619420170784,-0.482682764530182,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855 + } + } + Geometry: 2805454332576, "Geometry::Mouth_Pout", "Shape" { + Version: 100 + Indexes: *1940 { + a: 636,643,648,669,672,681,700,703,708,711,716,719,982,989,993,1014,1017,1025,1044,1047,1052,1055,1060,1063,1359,1367,1436,1438,1441,1457,1460,1503,1509,1523,1531,1545,1553,2223,2231,2301,2302,2306,2321,2324,2368,2373,2387,2395,2409,2417,3065,3110,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6171,6173,6177,6178,6179,6182,6183,6184,6185,6186,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286, +6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6396,6397,6400,6401,6402,6403,6404,6407,6408,6409,6410,6411,6414,6415,6418,6419,6420,6422,6423,6424,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804, +6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7167,7168,7169,7170,7171,7172,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7553,7555,7559,7560,7561,7564,7565,7566,7567,7568,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604, +7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7778,7779,7782,7783,7784,7785,7786,7789,7790,7791,7792,7793,7796,7797,7800,7801,7802,7804,7805,7806,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092, +8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8547,8548,8549,8550,8551,8552,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *5820 { + a: -0.0280719995498657,-0.00618362426757813,0.0348062515258789,-0.0267033576965332,-0.00023961067199707,0.0013580322265625,-0.00365817546844482,-0.000661611557006836,0.00375080108642578,-0.0205808877944946,-0.00344133377075195,0.0193700790405273,-0.0153587460517883,0,0,-0.0218974351882935,-0.00449442863464355,0.0252981185913086,-0.00585612654685974,0,0,-0.0248583555221558,0,0,-0.0242902040481567,-0.00165748596191406,0.00932979583740234,-0.0203883647918701,-0.00468873977661133,0.0263910293579102,-0.0285946130752563,-0.00603437423706055,0.0339651107788086,-0.0121395587921143,-0.00240039825439453,0.0135116577148438,0.0280829668045044,-0.00618553161621094,0.0348167419433594,0.0267101526260376,-0.000240564346313477,0.00136280059814453,0.00365793704986572,-0.000661611557006836,0.00375080108642578,0.0205880403518677,-0.00344395637512207,0.0193853378295898,0.015363872051239,0,0,0.0218991041183472,-0.00449466705322266,0.025299072265625,0.00585946440696716,0,0,0.024867832660675,0,0,0.024297833442688,-0.00165963172912598,0.00934219360351563,0.0203932523727417,-0.00468969345092773,0.0263967514038086,0.0285981893539429,-0.00603485107421875,0.0339679718017578,0.0121399164199829,-0.00240039825439453,0.0135107040405273,-0.0207590460777283,0,0,-0.017116904258728,-0.00345778465270996,0.0194625854492188,-0.0196256637573242,-0.00417399406433105,0.023493766784668,-0.0257688760757446,-0.000865697860717773,0.00487232208251953,-0.00230244547128677,0,0,-0.000987887382507324,-0.000153541564941406,0.000870704650878906,-0.029505729675293,-0.00633907318115234,0.035679817199707,-0.00988286733627319,0,0,-0.0267400741577148,0,0,-0.0225288867950439,-0.00255608558654785,0.0143871307373047,-0.0244241952896118,-0.00557994842529297,0.0314064025878906,-0.0258880853652954,-0.0053861141204834,0.0303163528442383,-0.00752520561218262,-0.00144052505493164,0.00810718536376953,0.0207646489143372,0,0,0.0171178579330444,-0.00345778465270996,0.0194625854492188,0.0196279287338257,-0.00417518615722656,0.0235013961791992,0.0257765650749207,-0.000867366790771484, +0.00488185882568359,0.00444768369197845,0,0,0.000987648963928223,-0.000153541564941406,0.000870704650878906,0.0295100212097168,-0.00633978843688965,0.0356836318969727,0.00988760590553284,0,0,0.0267477631568909,0,0,0.0225363969802856,-0.00255846977233887,0.0144014358520508,0.0244362354278564,-0.00558209419250488,0.0314188003540039,0.0258908271789551,-0.0053865909576416,0.0303192138671875,0.00752508640289307,-0.00144028663635254,0.00810623168945313,0.00230558216571808,0,0,-0.00444579124450684,0,0,0,-0.0486528873443604,-0.00214290618896484,0,-0.0342142581939697,-0.000125885009765625,-7.74058571550995e-06,-0.0936927795410156,1.14999961853027,1.85562385013327e-06,0.766011238098145,1.01820468902588,-2.38652910411474e-06,-0.558505058288574,0.627824783325195,-1.73602165887132e-06,-0.418153762817383,1.42077732086182,0,0.758654117584229,1.27795505523682,0,-0.80862283706665,1.05367279052734,-2.72628744824033e-06,0.206398010253906,1.39727020263672,-1.52428128785687e-06,-0.828648567199707,1.42115211486816,0,0.305794715881348,0.890608787536621,0,0.0880327224731445,0.57000732421875,2.00947033590637e-06,0.624016761779785,0.891023635864258,-2.48992660090153e-06,-0.289889335632324,0.685052871704102,-1.70393582266115e-06,-0.072664737701416,0.515542030334473,0,0.337884902954102,0.498977661132813,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,0.171541213989258,0.184432029724121,-1.46215575114184e-06,-0.0434048175811768,0.0951452255249023,-1.69886425283039e-06,-0.0649046897888184,0.25960636138916,-2.3299508029595e-06,-0.101208686828613,0.246250152587891,-2.05451578949578e-06,-0.087007999420166,0.392825126647949,-1.1137086630697e-06,-0.0405027866363525,-4.67300415039063e-05,0,-0.0298962593078613,-0.00133037567138672,0,-0.00128507614135742,0.0112953186035156,0,1.15633010864258e-05,0.00525569915771484,0,-1.19209289550781e-06,0.000155448913574219,0,-0.0245873928070068,0.00817298889160156,0,-0.0373220443725586,0.00341796875,0,3.03983688354492e-06, +0,0,0.223786354064941,-0.00894927978515625,-1.07656524050981e-06,0.13687801361084,-0.00559902191162109,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0.0165462493896484,-0.0837588310241699,-0.0032196044921875,0.0105196833610535,-0.101094245910645,-0.00390434265136719,0.138515681028366,-0.0743870735168457,1.12447166442871,0.0902243405580521,0.72950553894043,1.01178073883057,1.24612236022949,-0.0643234252929688,1.82181930541992,1.1265435218811,0.120970249176025,1.86682319641113,0.910613536834717,0.141136646270752,1.69851303100586,0.926835298538208,-0.113376140594482,1.68156051635742,0.545521855354309,0.405107021331787,1.37164402008057,0.721802949905396,-0.107110500335693,1.51807022094727,0.503060102462769,0.665344715118408,1.11981296539307,0.61636883020401,-0.0986113548278809,1.29601955413818,0.368877649307251,0.734985828399658,1.08320903778076,0.490359008312225,-0.119518280029297,1.20316314697266,0.184995889663696,0.810925006866455,1.01382160186768,0.311962425708771,-0.0695981979370117,1.17402458190918,0.702011585235596,-0.131602764129639,1.53373908996582,0.697089195251465,0.216283321380615,1.50236988067627,1.12633979320526,0.0440335273742676,1.7389965057373,1.27531814575195,-0.0674862861633301,1.79403400421143,1.12399733066559,-0.0265288352966309,1.71488475799561,1.30372285842896,-0.0648908615112305,1.79680442810059,1.06831288337708,-0.102293014526367,1.73597621917725,1.27602577209473, +-0.0603981018066406,1.81012439727783,1.01820349693298,-0.203010559082031,1.78181076049805,1.24373161792755,-0.0573902130126953,1.84066867828369,0.920946598052979,-0.12823486328125,1.74450397491455,0.876150608062744,-0.205070972442627,1.75480270385742,0.725940704345703,-0.17232608795166,1.59896183013916,0.707846283912659,-0.216055870056152,1.64770698547363,0.613118886947632,-0.33568286895752,1.35220050811768,0.534717798233032,-0.177016258239746,1.48744869232178,0.540050148963928,-0.457663059234619,1.03502655029297,0.295615553855896,-0.230406284332275,1.33524990081787,0.388238668441772,-0.548883438110352,0.830607414245605,0.20011568069458,-0.323071002960205,1.36502742767334,0.222888350486755,-0.622731685638428,0.699822425842285,0.1039137840271,-0.357163906097412,1.43537616729736,0.0697868466377258,-0.629575729370117,0.646885871887207,0.0426046550273895,-0.404194831848145,1.45178413391113,0.0795712172985077,0.729808807373047,1.25760173797607,0.154894828796387,0.716662406921387,1.2846565246582,0.255991578102112,0.656645774841309,1.3705940246582,0.254681706428528,0.524643898010254,1.49331760406494,0.422273278236389,0.306268692016602,1.57961940765381,0.67939305305481,0.150420188903809,1.58522987365723,0.923160791397095,0.0754485130310059,1.73225975036621,1.18590939044952,0.081200122833252,1.88308906555176,1.16648304462433,0.0166134834289551,1.81193828582764,1.16310000419617,-0.0437769889831543,1.79360294342041,1.1224000453949,-0.105210781097412,1.81616497039795,1.08792948722839,-0.175295829772949,1.86599254608154,0.89497184753418,-0.201094150543213,1.74888134002686,0.776916265487671,-0.230991840362549,1.65040302276611,0.525286912918091,-0.392139911651611,1.40890693664551,0.198050737380981,-0.59315013885498,1.15940856933594,0.0166076421737671,-0.720341205596924,1.10639381408691,-0.0180944204330444,-0.81830883026123,1.13427066802979,-0.0686206519603729,-0.844464778900146,1.09683227539063,0.10246416926384,0.206964015960693,1.37886333465576,0.193633079528809,0.229889392852783,1.47779846191406,0.340832531452179,0.236762046813965, +1.56236267089844,0.364490389823914,0.0951275825500488,1.58118152618408,0.509030818939209,-0.0147414207458496,1.63594245910645,0.66141414642334,-0.00132989883422852,1.61590766906738,0.90923011302948,-0.000475406646728516,1.73818302154541,1.19344258308411,0.0318593978881836,1.92363357543945,1.20765256881714,-0.0171880722045898,1.86989784240723,1.22565865516663,-0.0581207275390625,1.86256408691406,1.19155836105347,-0.0881271362304688,1.88432121276855,1.15637850761414,-0.116644859313965,1.93814945220947,0.876046895980835,-0.153602123260498,1.77949714660645,0.707821011543274,-0.194891452789307,1.6545991897583,0.453423976898193,-0.319567680358887,1.49263000488281,0.14663553237915,-0.497655868530273,1.28659248352051,-0.0270283222198486,-0.670139789581299,1.30507659912109,0.0572209358215332,-0.786372661590576,1.36337184906006,0.0192448198795319,-0.843400478363037,1.38870429992676,0.0473075956106186,0.265225410461426,0.796100616455078,0.133938133716583,0.196861267089844,0.671639442443848,0.304033517837524,0.142562389373779,0.778558731079102,0.326179027557373,0.0737261772155762,0.810773849487305,0.478107810020447,0.213042736053467,0.874772071838379,0.464175343513489,0.320868015289307,0.959881782531738,0.55970573425293,0.322802066802979,1.15174007415771,0.818610191345215,0.256730079650879,1.35046768188477,0.907676935195923,0.168004512786865,1.32721328735352,0.895837783813477,0.0977802276611328,1.32287979125977,0.858353853225708,0.0343890190124512,1.36650276184082,0.805769443511963,0.0129685401916504,1.48892211914063,0.696508646011353,0.0144557952880859,1.57327938079834,0.620182514190674,0.0508813858032227,1.48771381378174,0.0330678820610046,0.102782726287842,0.594552993774414,0.151700735092163,0.0968108177185059,0.761104583740234,0.287907481193542,0.00344944000244141,0.957118034362793,0.397139549255371,-0.0295872688293457,1.18705272674561,0.497955918312073,0.0176281929016113,1.27950286865234,0.0695285946130753,0.634988784790039,0.9066162109375,0.18825101852417,0.687826633453369,0.897958755493164,0.372314631938934,0.601865291595459, +0.962961196899414,0.485832810401917,0.570577621459961,1.07892227172852,0.560514688491821,0.396418571472168,1.26258087158203,0.658795595169067,0.376108646392822,1.36605548858643,0.767912268638611,0.383140563964844,1.53935813903809,0.911657571792603,0.333117961883545,1.65134239196777,0.893252611160278,0.170229434967041,1.56511688232422,0.916664123535156,0.0302639007568359,1.54444694519043,0.899690389633179,-0.0672607421875,1.58188438415527,0.851233720779419,-0.190281391143799,1.64876079559326,0.77498459815979,-0.220962047576904,1.68405342102051,0.662224650382996,-0.190363883972168,1.57850170135498,0.597487807273865,-0.181910037994385,1.3675537109375,0.562122821807861,-0.177636623382568,1.16014194488525,0.385238766670227,-0.220780372619629,0.92536449432373,0.214353263378143,-0.313804149627686,0.766253471374512,0.0852431058883667,-0.324009418487549,0.700218200683594,0.0872533172369003,-0.0794820785522461,0.510658264160156,0.224404186010361,-0.120526790618896,0.55238151550293,0.221068978309631,-0.0842885971069336,0.449455261230469,0.238696575164795,-0.114346504211426,0.351573944091797,0.21546733379364,0.0376663208007813,0.477810859680176,0.12018346786499,0.0159120559692383,0.536430358886719,0.309984445571899,0.160501956939697,0.817009925842285,0.523997783660889,0.139523029327393,0.944397926330566,0.634828805923462,0.218649387359619,1.37127017974854,0.765333414077759,0.149158954620361,1.32050037384033,0.851195096969604,0.122529983520508,1.26589393615723,0.935102701187134,0.0849928855895996,1.25625610351563,0.685797452926636,0.0564637184143066,1.00169372558594,0.107610553503036,0.315487861633301,0.579801559448242,0.23013037443161,0.310166358947754,0.744465827941895,0.233587145805359,0.281110763549805,0.930473327636719,0.190808534622192,0.361569404602051,0.96785831451416,0.333194375038147,0.386055469512939,1.0456075668335,0.521645069122314,0.278665065765381,1.2666187286377,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06, +0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0.00485467910766602,-0.00187122821807861,0.0108599662780762,0.0152664184570313,-0.00589656829833984,0.0341510772705078,0.0233654975891113,-0.00732064247131348,0.0498008728027344,0.0769968032836914,-0.0221179723739624,0.161165237426758,0.00980615615844727,-0.00103139877319336,0.0179224014282227,0.041248083114624,-0.00496888160705566,0.0762901306152344,0,6.07967376708984e-06,0,0.00861108303070068,4.05311584472656e-06,0.00151920318603516,0,4.58955764770508e-06,0,0.000308394432067871,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0.052466869354248,-0.0188095569610596,0.115289688110352,0.016303539276123,-0.00622570514678955,0.0363674163818359,0.0680069923400879,-0.0140891075134277,0.134384155273438,0.0190887451171875,-0.00421178340911865,0.0381088256835938,0.0141706466674805,-0.000128865242004395,0.0239048004150391,0.00261211395263672,-1.54972076416016e-06,0.00436687469482422,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0.000101685523986816,0.000138282775878906,0.000552177429199219,0.00581526756286621,0.00790309906005859,0.0315942764282227,0.000327110290527344,0.000444412231445313,0.00177669525146484,0.0438611507415771,0.0485687255859375,0.22911548614502,0.00112676620483398,0.0005340576171875,0.00529193878173828,0.0807013511657715,0.0608291625976563,0.399410247802734,0.000780105590820313,-0.0118722915649414,0.109848499298096,0.0100545883178711,0.00371599197387695,0.0295639038085938,0,-7.62939453125e-06,0,0.000254392623901367,0.000120162963867188,0.00119495391845703,0.0429458618164063,0.0169801712036133,0.275956153869629,0.00176310539245605, +0.00239658355712891,0.00957870483398438,0.0143945217132568,0.0164728164672852,0.0756363868713379,0.0273580551147461,0.0176734924316406,0.132405281066895,0.0156359672546387,0.00754928588867188,0.0735516548156738,0.00199079513549805,0.000943183898925781,0.00935077667236328,0.113381624221802,-0.0200455188751221,0.132864952087402,0.0991657972335815,-0.0510165691375732,0.113883018493652,0.106261014938354,-0.0570931434631348,0.116336822509766,0.118895769119263,-0.0243780612945557,0.137514114379883,0.086111307144165,-0.0726714134216309,0.0723152160644531,0.0741567611694336,-0.0604960918426514,0.0635910034179688,0.0571126937866211,-0.0602517127990723,0.00146293640136719,0.0790995359420776,-0.0831136703491211,0.00491428375244141,0.0152920484542847,-0.03208327293396,-0.000972747802734375,0.0458744764328003,-0.0743918418884277,-0.00433826446533203,0.119079113006592,-0.0216083526611328,0.141249656677246,0.114765763282776,-0.0197875499725342,0.135354042053223,0.0855660438537598,-0.00256466865539551,0.222524642944336,0.0654759407043457,-0.00212526321411133,0.275635719299316,0.293443202972412,-0.208890914916992,0.483055114746094,0.470399141311646,-0.144723415374756,0.922346115112305,0.542214155197144,0.00242328643798828,1.00513553619385,0.586232423782349,0.0652875900268555,0.968788146972656,0.588658094406128,0.205205917358398,1.03964614868164,0.424860239028931,0.27068567276001,0.983441352844238,0.321038722991943,0.333558082580566,0.829522132873535,0.194063186645508,0.435211181640625,0.597278594970703,0.0884238481521606,0.317569732666016,0.382608413696289,0.0415083169937134,0.193239212036133,0.266154289245605,0.026027500629425,0.169173240661621,0.198989868164063,0.0106138586997986,0.179964065551758,0.204939842224121,0.151599496603012,-0.152306318283081,0.212970733642578,0.109981834888458,-0.108041763305664,0.314367294311523,0.167576938867569,-0.120150804519653,0.386052131652832,0.196993082761765,-0.163892269134521,0.236108779907227,0.120401561260223,-0.133008718490601,0.177053451538086,0.0608351230621338,-0.0759496688842773,0.249595642089844, +0.100803822278976,-0.117209672927856,0.121546745300293,0.0489711910486221,-0.0690279006958008,0.132835388183594,0.0799372792243958,-0.0945398807525635,0.0521879196166992,0.0516102313995361,-0.0868470668792725,0.0331611633300781,0.0650304555892944,-0.0748016834259033,0.0274763107299805,0.0433295965194702,-0.0903770923614502,0.00199127197265625,0.0659658908843994,-0.0449938774108887,0.0176334381103516,0.0515621900558472,-0.0639824867248535,-0.00144767761230469,0.0951215028762817,-0.0478179454803467,0.0338058471679688,0.0903251171112061,-0.0737097263336182,0.0144643783569336,0.149954915046692,-0.0657634735107422,0.0734472274780273,0.131759643554688,-0.0771353244781494,0.0736293792724609,0.17966103553772,-0.0652973651885986,0.0791463851928711,0.184612393379211,-0.0665688514709473,0.0959568023681641,0.139828979969025,-0.0384652614593506,0.0552396774291992,0.189348578453064,-0.0256514549255371,0.204097747802734,0.252066493034363,-0.108272790908813,0.402693748474121,0.194252789020538,-0.113952159881592,0.167401313781738,0.146708607673645,-0.0423238277435303,0.050537109375,0.177260160446167,-0.053248405456543,0.065333366394043,0.147740840911865,-0.134284257888794,0.245786666870117,0.112267136573792,-0.112709760665894,0.21419620513916,0.0920431613922119,-0.103140354156494,0.13982105255127,0.0751029849052429,-0.0936293601989746,0.0478811264038086,0.0601911544799805,-0.0762853622436523,0.0184421539306641,0.0640955567359924,-0.0502111911773682,0.0109090805053711,0.0968102216720581,-0.0568735599517822,0.0283145904541016,0.146971464157104,-0.0707480907440186,0.0714225769042969,0.188331961631775,-0.0695798397064209,0.0824966430664063,0.159196972846985,-0.0486607551574707,0.0568418502807617,0.153907656669617,-0.0375123023986816,0.0697450637817383,0.212317228317261,-0.109641313552856,0.195158958435059,0.201994180679321,-0.153678178787231,0.261665344238281,0.199875980615616,-0.14152193069458,0.276413917541504,0.224847912788391,-0.102237701416016,0.217104911804199,0.164343297481537,-0.0343217849731445,0.0810604095458984,0.169204235076904, +-0.0520954132080078,0.0614414215087891,0.189442157745361,-0.0692033767700195,0.0846538543701172,0.141839385032654,-0.0753118991851807,0.0723152160644531,0.0935431718826294,-0.0664401054382324,0.0194978713989258,0.058998703956604,-0.0547189712524414,0.00511646270751953,0.0533826947212219,-0.0800912380218506,0.0105752944946289,0.0721742808818817,-0.094318151473999,0.0489492416381836,0.0824134051799774,-0.094874382019043,0.13889217376709,0.0967466533184052,-0.0994341373443604,0.229960441589355,0.139747947454453,-0.124706268310547,0.261016845703125,0.0834720283746719,-0.092167854309082,0.413443565368652,0.0284125208854675,-0.0959501266479492,-0.00401592254638672,0.0465515851974487,-0.0771181583404541,-0.00504016876220703,0.0477617383003235,-0.0862104892730713,-0.00561809539794922,0.0123087167739868,-0.0769288539886475,-0.00352859497070313,0.0791137218475342,-0.0819027423858643,0.00608444213867188,0.0838046073913574,-0.0787734985351563,0.00893306732177734,0.118619799613953,-0.0768682956695557,0.0755672454833984,0.102502584457397,-0.0756101608276367,0.0779180526733398,0.166959166526794,-0.0726046562194824,0.0834980010986328,0.176047325134277,-0.0801255702972412,0.0880746841430664,0.177106022834778,-0.0838346481323242,0.0941982269287109,0.170537352561951,-0.0828299522399902,0.10374641418457,0.156669735908508,-0.0774290561676025,0.114052772521973,0.132074594497681,-0.0677499771118164,0.118844032287598,0.164704322814941,-0.0529434680938721,0.117908477783203,0.132739424705505,-0.0335545539855957,0.13683032989502,0.168862581253052,-0.0483884811401367,0.102370262145996,0.127496123313904,-0.017871618270874,0.141994476318359,0.164459228515625,-0.0415487289428711,0.207463264465332,0.123081088066101,-0.00256681442260742,0.260991096496582,0.118953704833984,-0.0190167427062988,0.239471435546875,0.115789771080017,-0.019442081451416,0.185459136962891,0.110624432563782,-0.0281190872192383,0.12641716003418,0.118142008781433,-0.0352003574371338,0.129730224609375,0.139095306396484,-0.0495758056640625,0.129579544067383,0.166253328323364,-0.0635242462158203, +0.118806838989258,0.180410027503967,-0.0720508098602295,0.101071357727051,0.187896132469177,-0.0768451690673828,0.0923995971679688,0.187523484230042,-0.0769057273864746,0.0878238677978516,0.177815079689026,-0.0709400177001953,0.0840330123901367,0.00366342067718506,-0.00352978706359863,0.00497627258300781,0.00588381290435791,-0.000100255012512207,0.000494003295898438,0.030728816986084,0,9.5367431640625e-06,0.000963151454925537,0,0.00108432769775391,0.0037950873374939,-3.33786010742188e-06,2.6702880859375e-05,0.0277286767959595,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,5.94854354858398e-05,7.62939453125e-06,0,0.0218377113342285,-6.07967376708984e-06,0,0.00349724292755127,-0.0493150949478149,0.00231361389160156,0.00288867950439453,-0.00494241714477539,0.000145912170410156,0.0301204919815063,-0.0135719776153564,0.000596046447753906,0.0972031354904175,-0.0197889804840088,0.125034332275391,0.0964757204055786,-0.0198071002960205,0.124006271362305,0.056491494178772,-0.0133974552154541,0.0791816711425781,0.0635141134262085,-0.0152959823608398,0.0906543731689453,0.0424963235855103,-0.00725126266479492,0.0412397384643555,0.0505993366241455,-0.0118930339813232,0.0683021545410156,0.0412883758544922,-0.00436687469482422,0.024622917175293,0.0470231771469116,-0.00977468490600586,0.0548610687255859,0.0413578748703003,-0.00350332260131836,0.0197019577026367,0.0465866327285767,-0.0107221603393555,0.0381937026977539,0.0727128982543945,-0.0186779499053955,0.105146408081055,0.0589041709899902,-0.0147490501403809,0.084864616394043,0.0936394929885864,-0.0229930877685547,0.120640754699707,0.0899337530136108,-0.0397562980651855,0.113433837890625,0.074453592300415,-0.0266051292419434,0.104527473449707,0.0588288307189941,-0.0166900157928467,0.0829696655273438,0.0551546812057495,-0.0175402164459229,0.0727453231811523,0.0771856307983398,-0.0438065528869629,0.0926837921142578,0.0038793683052063,-0.0850729942321777,-0.00196075439453125,0.00375300645828247,-0.0152394771575928,-0.00041961669921875,0.042101263999939,-0.0373353958129883,0.00117588043212891, +0.0604404211044312,-0.0371041297912598,0.0434627532958984,0.0655561685562134,-0.030137300491333,0.0855731964111328,0.0986794233322144,-0.0193572044372559,0.126169204711914,0.0560089349746704,-0.0130519866943359,0.0783205032348633,0.0382711887359619,-0.00430893898010254,0.0246152877807617,0.00988662242889404,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0.0352210998535156,-0.00698637962341309,0.0568075180053711,0.0823705196380615,-0.00836992263793945,0.105536460876465,0.0438098907470703,-0.00157070159912109,0.07562255859375,0.0814578533172607,-0.00438070297241211,0.142724990844727,0.0960109233856201,-0.0125041007995605,0.178936004638672,0.142843723297119,-0.0207035541534424,0.269308090209961,0.144420623779297,-0.0297155380249023,0.285107612609863,0.195950508117676,-0.0395863056182861,0.387392044067383,0.217062473297119,-0.0256633758544922,0.477450370788574,0.207442283630371,-0.0381572246551514,0.426576614379883,0.147157669067383,-0.0394644737243652,0.303921699523926,0.146442413330078,-0.0273797512054443,0.318548679351807,0.092125415802002,-0.0322139263153076,0.201239109039307,0.0314145088195801,-0.00880289077758789,0.0702009201049805,0.0220184326171875,-0.00848901271820068,0.0492548942565918,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0.276563167572021,-0.00448274612426758,0.621041774749756,0.0570759773254395,0.0116100311279297,0.126935958862305,0.230039596557617,0.014528751373291,0.526444911956787,0,4.52995300292969e-06,0,0.194972038269043,-0.00900077819824219,0.595002174377441,0.0759634971618652,0.0331487655639648,0.169338226318359,0.236279964447021,0.0371007919311523,0.616759777069092,0.274289131164551,0.0149030685424805,0.75838041305542,0.168790340423584,0.035123348236084,0.525218963623047,0.0795660018920898,0.0400300025939941,0.179971218109131,0.177898406982422,0.00433540344238281,0.674627304077148,0.10294246673584,-0.0205001831054688,0.584411144256592,0.0486421585083008,-0.0326886177062988,0.533014297485352,0.0876574516296387, +-0.0192327499389648,0.588948249816895,0.105810165405273,-0.00179243087768555,0.503730297088623,0.120527267456055,0.0357522964477539,0.391182422637939,0.0754208564758301,-0.000941276550292969,0.571249008178711,0.0554604530334473,0.00443744659423828,0.498860836029053,0.0123481750488281,-0.0416312217712402,0.400515079498291,0.234369516372681,0.139843940734863,0.79525089263916,0.110416173934937,0.072413444519043,0.570082664489746,0.00063014030456543,0.000461578369140625,0.00309514999389648,0.0241339206695557,0.0213956832885742,0.121633529663086,0.0702564716339111,0.0638942718505859,0.355465888977051,0.160174131393433,0.166935920715332,0.616198539733887,0.0930037498474121,0.0780525207519531,0.466331481933594,0.0941462516784668,0.110830307006836,0.379291534423828,0.0572338104248047,0.0607137680053711,0.296871185302734,0.000276923179626465,0.000376701354980469,0.00150442123413086,0.0061798095703125,0.00835132598876953,0.0335359573364258,0.0202460289001465,0.0263843536376953,0.109057426452637,0.0315008163452148,0.0381507873535156,0.154505729675293,0.0806822776794434,0.140786170959473,0.227526664733887,0.0720673799514771,0.17531681060791,0.0895538330078125,0.0142850875854492,0.0368690490722656,0.0509719848632813,0.000289440155029297,0.000392913818359375,0.00157260894775391,0.000981330871582031,0.00133323669433594,0.00533199310302734,3.89814376831055e-05,5.340576171875e-05,0.000211715698242188,0.00862467288970947,0.213484764099121,-0.00480461120605469,0.0266172885894775,0.196139335632324,0.00649833679199219,0.002288818359375,0.0648794174194336,0.00791454315185547,0.0172761678695679,0.0985479354858398,-0.00272178649902344,0.000355124473571777,0.000796318054199219,-3.52859497070313e-05,0.0314179360866547,0.222631454467773,-0.00800323486328125,0.0376603603363037,0.134963035583496,-0.00516033172607422,0.0207486152648926,-0.0362668037414551,0.314972877502441,0.0494914054870605,-0.00307655334472656,0.250094890594482,0.000745773315429688,-0.00678014755249023,0.0411806106567383,0.0616836547851563,0.0252671241760254,0.169345378875732, +0.00375795364379883,0.00194644927978516,0.0083315372467041,0.0162458419799805,0.00841569900512695,0.0360174179077148,0.0553522109985352,0.028346061706543,0.124311447143555,0.000231266021728516,0.000119686126708984,0.000512599945068359,0.000691413879394531,0.000364065170288086,0.00153255462646484,1.95503234863281e-05,1.00135803222656e-05,4.29153442382813e-05,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0, +6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0.000428915023803711,3.45706939697266e-06,0.0007171630859375,0.00240635871887207,-0.000160098075866699,0.00425243377685547,0.0062408447265625,-0.00146591663360596,0.0125789642333984,0.0087132453918457,-0.00294637680053711,0.0188941955566406,0.00668716430664063,-0.00258409976959229,0.0149593353271484,0.00182914733886719,-0.000707030296325684,0.00409126281738281,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,4.29153442382813e-05,-1.81496143341064e-05,9.63211059570313e-05,0.000787734985351563,-0.000300765037536621,0.00176143646240234,0.000792026519775391,-0.000303924083709717,0.00177097320556641,0.000115394592285156,-3.4630298614502e-05,0.000249862670898438,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06, +0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, +0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06, +0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0635228157043457,-0.0415182113647461,0.038395881652832,0.0626983642578125,-0.0240070819854736,0.0330438613891602,0.0761091709136963,-0.0180385112762451,0.0337104797363281,0.102037727832794,-0.0226156711578369,0.0465326309204102,0.117515325546265,-0.0284810066223145,0.0537633895874023,0.13060462474823,-0.0365338325500488,0.0583429336547852,0.0706300139427185,-0.0621206760406494,0.0468835830688477,0.0855915546417236,-0.0958395004272461,0.0637111663818359,0.103821873664856,-0.120132684707642,0.0841970443725586,0.109449148178101,-0.128532648086548,0.0852222442626953,0.112493842840195,-0.110007762908936,0.0751247406005859,0.105921745300293,-0.064943790435791,0.0580739974975586,0.112974226474762,-0.0338873863220215,0.0405025482177734,0.122671067714691,-0.0297207832336426,0.0423870086669922,0.13787853717804,-0.0375330448150635,0.0560989379882813,0.0828190445899963,-0.052443265914917,0.0497474670410156,0.0840600728988647,-0.0278487205505371,0.0428743362426758,0.0976268649101257,-0.0207538604736328,0.0400753021240234,0.114110171794891,-0.0249664783477783,0.0457839965820313,0.0847916007041931,-0.0773303508758545,0.0559158325195313,0,6.19888305664063e-06,0,0.0538616180419922,0.00499629974365234,0.137451171875,0.072526216506958,0.0115556716918945,0.231487274169922,0.0158500671386719,0.00410985946655273,0.0199260711669922,0.0316977500915527,0.00115537643432617,0.0637378692626953, +0.00744068622589111,0.0109996795654297,-0.0325164794921875,-0.00118416547775269,0.000767707824707031,-0.00222969055175781,0.0867624282836914,0.0176000595092773,0.313218116760254,0.08481764793396,0.0220518112182617,0.352771759033203,0.0781352519989014,0.0225505828857422,0.346470832824707,0.0636916160583496,0.0198311805725098,0.296347618103027,0.0348398685455322,0.0109767913818359,0.163346290588379,0.00974702835083008,0.00327491760253906,0.048731803894043,0.0446419715881348,0.0860409736633301,0.0139846801757813,-0.0204155445098877,0.104367733001709,-0.109431266784668,-0.0504937767982483,0.0143294334411621,-0.0102643966674805,-0.0381883382797241,-0.000192642211914063,0.00250244140625,-0.0123233795166016,0,0,-2.54295446211472e-06,-0.059199333190918,0.923863410949707,0.0674786567687988,-0.0844459533691406,0.923213958740234,0.155135184526443,-0.10215425491333,0.975153923034668,0.29925549030304,-0.137851715087891,1.05715656280518,0.426023960113525,-0.128699779510498,1.18498420715332,0.643330454826355,-0.121294975280762,1.42224597930908,0.804385542869568,-0.0911312103271484,1.59635257720947,0.963687419891357,-0.0668826103210449,1.61636352539063,1.18903231620789,-0.030754566192627,1.66070652008057,1.23678123950958,-0.0261554718017578,1.65697288513184,1.26670908927917,-0.0059514045715332,1.65248775482178,1.24905073642731,-0.0297932624816895,1.67095851898193,1.2088395357132,-0.0609335899353027,1.74968814849854,1.00496566295624,-0.153861999511719,1.69235038757324,0.727814555168152,-0.100196838378906,1.57497882843018,0.492871761322021,-0.0680537223815918,1.35210990905762,0.294223308563232,-0.0764541625976563,1.09921932220459,0.205953598022461,-0.0985260009765625,0.983359336853027,0.0708158016204834,-0.116298198699951,0.943935394287109,0.0449875295162201,-0.125604629516602,0.955224990844727,0,-0.127365589141846,0.94149112701416,0,-0.280145645141602,0.705107688903809,-0.0388620793819427,-0.287216663360596,0.6607666015625,0.0594136714935303,-0.290189743041992,0.659320831298828,0.331970691680908,-0.30087423324585,0.668166160583496, +0.592724800109863,-0.337290287017822,0.786624908447266,0.703126788139343,-0.32349681854248,0.904684066772461,0.716201901435852,-0.324467658996582,0.974400520324707,0.849264860153198,-0.261682987213135,1.11627674102783,1.04402709007263,-0.156473159790039,1.22489547729492,1.08725380897522,-0.034182071685791,1.33133506774902,1.09447622299194,0.053886890411377,1.3731746673584,1.09657025337219,0.0101509094238281,1.37302303314209,1.02580404281616,-0.0223555564880371,1.40661144256592,0.885868668556213,-0.106058597564697,1.34639930725098,0.634175777435303,-0.0232353210449219,1.23357582092285,0.438769578933716,0.0352892875671387,1.11203670501709,0.26885998249054,-0.0329174995422363,0.895625114440918,0.16429191827774,-0.038383960723877,0.757973670959473,0.0588620901107788,-0.0627312660217285,0.684978485107422,0.0225707590579987,-0.0597748756408691,0.6937255859375,0,-0.0434060096740723,0.667597770690918,0,5.96046447753906e-06,0,0.0589752197265625,0.00106191635131836,0.108132839202881,0.0656559467315674,0.0055232048034668,0.16210412979126,0.0286147594451904,3.38554382324219e-05,0.0478401184082031,0.0508105754852295,6.00814819335938e-05,0.0849485397338867,0.00862336158752441,5.7220458984375e-06,0.0144166946411133,0.00142943859100342,-2.86102294921875e-06,0.00238990783691406,0,3.09944152832031e-06,0,0.0692713260650635,0.0110344886779785,0.221133708953857,0.0773286819458008,0.020561695098877,0.3260178565979,0.0747449398040771,0.0227789878845215,0.343037128448486,0.062802791595459,0.0197868347167969,0.294450283050537,0.0367288589477539,0.0115718841552734,0.172203063964844,0.0118539333343506,0.00373458862304688,0.055577278137207,0.00365710258483887,0.00115203857421875,0.0171470642089844,0.000163435935974121,5.14984130859375e-05,0.000766754150390625,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06, +0,0,7.62939453125e-06,0,2.14576721191406e-06,0,9.5367431640625e-06,0.000784397125244141,0.000240802764892578,0.00367641448974609,0.00475025177001953,0.00149679183959961,0.0222721099853516,0.00496339797973633,0.00156354904174805,0.0232696533203125,0.00131773948669434,0.000414848327636719,0.00617790222167969,9.5367431640625e-06,2.86102294921875e-06,4.48226928710938e-05,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,-0.0165463089942932,-0.0837583541870117,-0.0032196044921875,-0.0105195641517639,-0.101093292236328,-0.00390434265136719,-0.13858637213707,-0.0743889808654785,1.12446403503418,-0.0902179926633835,0.729514598846436,1.0117769241333,-1.24637162685394,-0.0643930435180664,1.82155609130859,-1.12572109699249,0.123678684234619,1.86664390563965,-0.910574913024902,0.141265869140625,1.6989688873291,-0.927593588829041,-0.113683223724365,1.6825647354126,-0.545573711395264,0.404888153076172,1.37205791473389,-0.721786141395569,-0.107086181640625,1.51797199249268,-0.503376007080078,0.665034294128418,1.12030029296875,-0.616374313831329,-0.098604679107666,1.29594707489014,-0.368882119655609,0.734985828399658,1.08320903778076,-0.490340113639832,-0.11951208114624,1.20312976837158,-0.184996128082275,0.810928821563721,1.01381874084473,-0.311957865953445,-0.0696120262145996,1.17401218414307,-0.702031373977661,-0.131597995758057,1.53361797332764,-0.695483565330505,0.220945835113525,1.50023460388184,-1.12590610980988,0.0454106330871582,1.73871421813965,-1.27476513385773,-0.0673956871032715,1.79278659820557,-1.12376415729523, +-0.0259170532226563,1.7145357131958,-1.30148947238922,-0.0645685195922852,1.79309272766113,-1.06749105453491,-0.101866245269775,1.7351188659668,-1.27325916290283,-0.0603599548339844,1.80564022064209,-1.01794373989105,-0.202756881713867,1.78169536590576,-1.24206244945526,-0.0576505661010742,1.83747863769531,-0.919230103492737,-0.128848075866699,1.74353408813477,-0.876092910766602,-0.204911708831787,1.7547779083252,-0.724586009979248,-0.17264986038208,1.59853935241699,-0.707116603851318,-0.216085433959961,1.64782047271729,-0.611564517021179,-0.336343288421631,1.35167407989502,-0.532760143280029,-0.177492141723633,1.48689079284668,-0.539419293403625,-0.457696437835693,1.03508949279785,-0.292943477630615,-0.231550216674805,1.33509635925293,-0.387871146202087,-0.548853874206543,0.830622673034668,-0.197878301143646,-0.323661327362061,1.36493110656738,-0.22268134355545,-0.622656345367432,0.699831962585449,-0.103489816188812,-0.357103824615479,1.43530654907227,-0.0698111653327942,-0.629575729370117,0.646873474121094,-0.0425493717193604,-0.404093265533447,1.45177745819092,-0.0795678049325943,0.729809761047363,1.25760269165039,-0.154898464679718,0.716663837432861,1.28465843200684,-0.255913972854614,0.656765460968018,1.37055587768555,-0.254593253135681,0.524856567382813,1.49327754974365,-0.422187566757202,0.306483268737793,1.57963943481445,-0.67875337600708,0.152934074401855,1.58432483673096,-0.923088073730469,0.0764265060424805,1.7319917678833,-1.18568801879883,0.0824184417724609,1.88301753997803,-1.16669988632202,0.0169568061828613,1.81188678741455,-1.1622953414917,-0.0433187484741211,1.79258155822754,-1.12084639072418,-0.104998588562012,1.81447219848633,-1.08763265609741,-0.175115585327148,1.86567783355713,-0.894677639007568,-0.201057910919189,1.7488431930542,-0.776068449020386,-0.230864524841309,1.65037155151367,-0.526989698410034,-0.391197681427002,1.40762329101563,-0.206227779388428,-0.590402126312256,1.15432739257813,-0.0155637264251709,-0.720652103424072,1.10672187805176,0.0182724595069885,-0.818277359008789,1.13423252105713, +0.0683674514293671,-0.844549655914307,1.0968189239502,-0.102464273571968,0.206994533538818,1.37887191772461,-0.193632364273071,0.229891777038574,1.4778003692627,-0.340831756591797,0.236766815185547,1.5623664855957,-0.364490747451782,0.095128059387207,1.58114910125732,-0.509033560752869,-0.0147099494934082,1.6358699798584,-0.661543130874634,-0.00145149230957031,1.61567974090576,-0.908762216567993,-0.000379562377929688,1.73838138580322,-1.19340753555298,0.0319547653198242,1.92343044281006,-1.20635628700256,-0.016629695892334,1.86843490600586,-1.22272849082947,-0.0575394630432129,1.85890579223633,-1.18752264976501,-0.0881829261779785,1.87920570373535,-1.15507650375366,-0.116753101348877,1.93598365783691,-0.875325560569763,-0.153643608093262,1.77926921844482,-0.706586956977844,-0.194984436035156,1.65437698364258,-0.452343344688416,-0.319190502166748,1.49261283874512,-0.146449565887451,-0.497779846191406,1.2853889465332,0.0282218456268311,-0.670102596282959,1.3045768737793,-0.056760311126709,-0.786325454711914,1.36339950561523,-0.0192149877548218,-0.843390941619873,1.38869953155518,-0.047307163476944,0.265224456787109,0.796100616455078,-0.133940517902374,0.196860313415527,0.671636581420898,-0.304112553596497,0.142651081085205,0.778641700744629,-0.326242446899414,0.0737709999084473,0.8109130859375,-0.478456735610962,0.211966037750244,0.875822067260742,-0.464506864547729,0.319849491119385,0.961211204528809,-0.563010931015015,0.315792083740234,1.15202903747559,-0.81905460357666,0.25860595703125,1.35001277923584,-0.907761335372925,0.169079780578613,1.32765579223633,-0.897095441818237,0.0982060432434082,1.32481861114502,-0.85977578163147,0.0348548889160156,1.36812210083008,-0.806588411331177,0.0130252838134766,1.49012279510498,-0.696712732315063,0.0142860412597656,1.57248878479004,-0.620248317718506,0.0506410598754883,1.48604297637939,-0.0330787003040314,0.102784156799316,0.594548225402832,-0.151847898960114,0.0964155197143555,0.761147499084473,-0.288043200969696,0.00276756286621094,0.957281112670898,-0.397069454193115,-0.029998779296875, +1.18700504302979,-0.497757911682129,0.017247200012207,1.27875232696533,-0.0695189237594604,0.634998798370361,0.906612396240234,-0.188251197338104,0.687829971313477,0.897954940795898,-0.372321009635925,0.601866722106934,0.962961196899414,-0.486086249351501,0.570383071899414,1.07925701141357,-0.560328602790833,0.395712375640869,1.2634859085083,-0.657769799232483,0.373247146606445,1.36856651306152,-0.776168346405029,0.366487503051758,1.54977607727051,-0.913264274597168,0.331709384918213,1.6532564163208,-0.893663883209229,0.170721530914307,1.56623840332031,-0.9175865650177,0.0305123329162598,1.54618167877197,-0.898844242095947,-0.0661725997924805,1.58029842376709,-0.851342678070068,-0.190045833587646,1.64898777008057,-0.775041103363037,-0.220809459686279,1.68427085876465,-0.661967396736145,-0.190720558166504,1.5775146484375,-0.596876621246338,-0.182852268218994,1.36685371398926,-0.561652541160583,-0.178015232086182,1.16026973724365,-0.384939312934875,-0.220856666564941,0.925393104553223,-0.214115560054779,-0.313662528991699,0.766269683837891,-0.0852595567703247,-0.324005126953125,0.700222015380859,-0.0872565656900406,-0.0794796943664551,0.510663986206055,-0.224404990673065,-0.120523452758789,0.552385330200195,-0.221062541007996,-0.0842742919921875,0.449436187744141,-0.238678097724915,-0.114344120025635,0.3515625,-0.215468406677246,0.0376720428466797,0.477817535400391,-0.119986534118652,0.016819953918457,0.536818504333496,-0.310260534286499,0.163385391235352,0.819992065429688,-0.524248361587524,0.140439510345459,0.944460868835449,-0.634854555130005,0.218128204345703,1.36868858337402,-0.766534805297852,0.149049282073975,1.32269477844238,-0.855541706085205,0.123769760131836,1.27164649963379,-0.93822193145752,0.0853385925292969,1.26089286804199,-0.685307741165161,0.0575051307678223,1.00149440765381,-0.107611030340195,0.315488815307617,0.579799652099609,-0.230147004127502,0.310172080993652,0.744458198547363,-0.233744859695435,0.281533241271973,0.93089485168457,-0.190723896026611,0.361682891845703,0.967920303344727,-0.333163022994995, +0.386080265045166,1.04425048828125,-0.521956920623779,0.278782367706299,1.26350498199463,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,-0.00485467910766602,-0.00187122821807861,0.0108599662780762,-0.0152664184570313,-0.00589644908905029,0.0341506004333496,-0.0233654975891113,-0.00732076168060303,0.0498008728027344,-0.0769963264465332,-0.0221179723739624,0.161164283752441,-0.00980639457702637,-0.00103139877319336,0.0179233551025391,-0.0412485599517822,-0.00496912002563477,0.0762901306152344,0,6.07967376708984e-06,0,-0.00861108303070068,4.05311584472656e-06,0.00152015686035156,0,4.58955764770508e-06,0,-0.000308394432067871,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,-0.052466869354248,-0.01880943775177,0.115288734436035,-0.016303539276123,-0.00622570514678955,0.0363674163818359,-0.0680074691772461,-0.0140891075134277,0.134384155273438,-0.0190887451171875,-0.00421178340911865,0.0381097793579102,-0.0141711235046387,-0.000128865242004395,0.0239048004150391,-0.00261211395263672,-1.54972076416016e-06,0.00436687469482422,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,-0.000101685523986816,0.000138282775878906,0.000552177429199219,-0.00581538677215576,0.00790309906005859,0.0315952301025391,-0.000327110290527344,0.000444412231445313,0.00177717208862305,-0.0438616275787354,0.0485696792602539,0.229117393493652,-0.00112676620483398,0.0005340576171875,0.00529193878173828,-0.0807013511657715,0.0608291625976563,0.399409294128418, +-0.000779628753662109,-0.0118722915649414,0.109847068786621,-0.0100545883178711,0.00371646881103516,0.0295639038085938,0,-7.62939453125e-06,0,-0.000254392623901367,0.000120162963867188,0.00119495391845703,-0.042945384979248,0.0169801712036133,0.275954246520996,-0.00176310539245605,0.00239658355712891,0.00957965850830078,-0.014394998550415,0.0164737701416016,0.0756373405456543,-0.0273580551147461,0.0176734924316406,0.132405757904053,-0.0156359672546387,0.00754928588867188,0.0735511779785156,-0.00199079513549805,0.000943183898925781,0.00935077667236328,-0.11338198184967,-0.020045280456543,0.132865905761719,-0.0991660356521606,-0.0510163307189941,0.113883972167969,-0.106260538101196,-0.0570919513702393,0.116337776184082,-0.118895888328552,-0.0243773460388184,0.137515068054199,-0.0861105918884277,-0.0726699829101563,0.0723152160644531,-0.0741562843322754,-0.060495138168335,0.0635910034179688,-0.0571129322052002,-0.0602519512176514,0.00146293640136719,-0.0790992975234985,-0.0831124782562256,0.00491428375244141,-0.0152920484542847,-0.0320818424224854,-0.000972747802734375,-0.0458747148513794,-0.0743916034698486,-0.00433826446533203,-0.119079351425171,-0.0216076374053955,0.141250610351563,-0.114766120910645,-0.0197875499725342,0.135354995727539,-0.085566520690918,-0.00256490707397461,0.222524642944336,-0.0649640560150146,-0.00155925750732422,0.275775909423828,-0.293444633483887,-0.208890914916992,0.483057975769043,-0.47039008140564,-0.14472484588623,0.922342300415039,-0.542439699172974,0.00238847732543945,1.00564479827881,-0.58759880065918,0.065617561340332,0.971320152282715,-0.588406801223755,0.203607082366943,1.03859806060791,-0.421276092529297,0.267416477203369,0.977153778076172,-0.319023847579956,0.332162857055664,0.826595306396484,-0.194023370742798,0.435199737548828,0.59722900390625,-0.0884245634078979,0.317569732666016,0.382606506347656,-0.041508674621582,0.193240165710449,0.266156196594238,-0.0260278582572937,0.169175148010254,0.198989868164063,-0.0106141269207001,0.179964065551758,0.204939842224121,-0.151602625846863, +-0.152304649353027,0.212974548339844,-0.109986007213593,-0.108040332794189,0.314370155334473,-0.167581021785736,-0.120149850845337,0.38606071472168,-0.196996927261353,-0.163891792297363,0.236114501953125,-0.120404422283173,-0.133007764816284,0.177054405212402,-0.060838058590889,-0.0759506225585938,0.249598503112793,-0.100804597139359,-0.117208003997803,0.121547698974609,-0.0489732325077057,-0.0690293312072754,0.132834434509277,-0.0799336731433868,-0.0945377349853516,0.0521888732910156,-0.0516108274459839,-0.0868477821350098,0.0331611633300781,-0.0650296211242676,-0.0747997760772705,0.0274772644042969,-0.0433285236358643,-0.0903754234313965,0.00199127197265625,-0.0659635663032532,-0.0449943542480469,0.017634391784668,-0.0515626668930054,-0.0639820098876953,-0.00144863128662109,-0.0951210260391235,-0.0478196144104004,0.0338039398193359,-0.0903247594833374,-0.0737104415893555,0.0144634246826172,-0.149953603744507,-0.0657656192779541,0.0734453201293945,-0.131758570671082,-0.0771348476409912,0.0736284255981445,-0.17966091632843,-0.0652987957000732,0.0791444778442383,-0.18461275100708,-0.0665686130523682,0.0959558486938477,-0.139828443527222,-0.0384650230407715,0.0552406311035156,-0.189345896244049,-0.0256528854370117,0.204092979431152,-0.252066195011139,-0.108268260955811,0.402693748474121,-0.194254875183105,-0.113951683044434,0.167403221130371,-0.146707892417908,-0.0423243045806885,0.0505361557006836,-0.177259922027588,-0.0532467365264893,0.0653219223022461,-0.147744804620743,-0.134284257888794,0.245791435241699,-0.112269401550293,-0.112709283828735,0.214199066162109,-0.0920363664627075,-0.103140354156494,0.13982105255127,-0.0751029551029205,-0.0936279296875,0.0478792190551758,-0.0601902008056641,-0.0762829780578613,0.0184421539306641,-0.0640954971313477,-0.0502114295959473,0.0109090805053711,-0.0968091487884521,-0.0568752288818359,0.0283145904541016,-0.14697003364563,-0.0707483291625977,0.0714206695556641,-0.188331484794617,-0.0695805549621582,0.0824956893920898,-0.159195899963379,-0.0486612319946289,0.0568399429321289, +-0.153906404972076,-0.0375120639801025,0.0697422027587891,-0.212318539619446,-0.109639406204224,0.195159912109375,-0.201997637748718,-0.153677463531494,0.261669158935547,-0.199877113103867,-0.141520500183105,0.276420593261719,-0.22484889626503,-0.102235317230225,0.217104911804199,-0.164341866970062,-0.0343220233917236,0.0810585021972656,-0.169203877449036,-0.0520961284637451,0.0614395141601563,-0.189441919326782,-0.0692033767700195,0.0846519470214844,-0.141838073730469,-0.0753121376037598,0.0723142623901367,-0.0935419797897339,-0.0664405822753906,0.0194978713989258,-0.0589963793754578,-0.0547189712524414,0.00511550903320313,-0.0533819198608398,-0.0800890922546387,0.0105724334716797,-0.0721744298934937,-0.0943171977996826,0.0489482879638672,-0.0824150145053864,-0.0948741436004639,0.138893127441406,-0.096749484539032,-0.0994336605072021,0.229961395263672,-0.139750897884369,-0.124704837799072,0.261019706726074,-0.0834757834672928,-0.0921649932861328,0.413447380065918,-0.0284118056297302,-0.0959501266479492,-0.00401592254638672,-0.0465517640113831,-0.0771174430847168,-0.00504016876220703,-0.0477619767189026,-0.086209774017334,-0.00561809539794922,-0.012308657169342,-0.0769290924072266,-0.00352859497070313,-0.0791136026382446,-0.081902027130127,0.00608444213867188,-0.0838046073913574,-0.0787732601165771,0.00893211364746094,-0.118619084358215,-0.0768675804138184,0.075566291809082,-0.102501511573792,-0.0756087303161621,0.0779180526733398,-0.166958570480347,-0.0726065635681152,0.08349609375,-0.176046371459961,-0.0801260471343994,0.0880727767944336,-0.17710542678833,-0.0838344097137451,0.0941972732543945,-0.170536756515503,-0.0828287601470947,0.103745460510254,-0.156668901443481,-0.0774276256561279,0.114052772521973,-0.132073640823364,-0.0677480697631836,0.118844032287598,-0.164704322814941,-0.0529420375823975,0.11790943145752,-0.132738947868347,-0.0335526466369629,0.136832237243652,-0.16886293888092,-0.0483870506286621,0.102370262145996,-0.127495527267456,-0.0178694725036621,0.141993522644043,-0.164459347724915,-0.0415468215942383, +0.207463264465332,-0.123080492019653,-0.0025639533996582,0.260991096496582,-0.118953943252563,-0.0190162658691406,0.239472389221191,-0.115790367126465,-0.019442081451416,0.185460090637207,-0.11062490940094,-0.0281190872192383,0.126418113708496,-0.118141770362854,-0.0351996421813965,0.129731178283691,-0.139094114303589,-0.0495743751525879,0.129579544067383,-0.166252851486206,-0.0635225772857666,0.118807792663574,-0.180410027503967,-0.0720500946044922,0.101072311401367,-0.187895536422729,-0.0768451690673828,0.0923986434936523,-0.187522888183594,-0.076906681060791,0.0878238677978516,-0.177814245223999,-0.0709414482116699,0.0840320587158203,-0.00366336107254028,-0.00352978706359863,0.00497627258300781,-0.00588375329971313,-0.000100255012512207,0.000494003295898438,-0.030728816986084,0,9.5367431640625e-06,-0.000963151454925537,0,0.00108432769775391,-0.0037950873374939,-3.33786010742188e-06,2.6702880859375e-05,-0.0277286767959595,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,-5.94854354858398e-05,7.62939453125e-06,0,-0.0218377113342285,-6.07967376708984e-06,0,-0.00349718332290649,-0.0493148565292358,0.00231361389160156,-0.00288867950439453,-0.00494194030761719,0.000145912170410156,-0.030120849609375,-0.0135726928710938,0.000596046447753906,-0.0972034931182861,-0.0197889804840088,0.125034332275391,-0.0964760780334473,-0.0198071002960205,0.124007225036621,-0.0564916133880615,-0.0133974552154541,0.0791816711425781,-0.063514232635498,-0.0152959823608398,0.0906543731689453,-0.0424941778182983,-0.00725126266479492,0.0412397384643555,-0.0505994558334351,-0.0118932723999023,0.0683021545410156,-0.0412883758544922,-0.00436687469482422,0.024622917175293,-0.0470231771469116,-0.00977468490600586,0.0548610687255859,-0.0413578748703003,-0.00350332260131836,0.0197019577026367,-0.0465866327285767,-0.0107223987579346,0.0381937026977539,-0.0727130174636841,-0.0186781883239746,0.105145454406738,-0.0589042901992798,-0.0147490501403809,0.084864616394043,-0.0936397314071655,-0.0229930877685547,0.120640754699707,-0.0899339914321899,-0.0397562980651855, +0.113433837890625,-0.0744538307189941,-0.0266053676605225,0.104527473449707,-0.0588288307189941,-0.0166902542114258,0.0829696655273438,-0.0551549196243286,-0.017540454864502,0.0727453231811523,-0.0771855115890503,-0.0438063144683838,0.0926828384399414,-0.00387930870056152,-0.0850722789764404,-0.00196075439453125,-0.00375306606292725,-0.0152380466461182,-0.00041961669921875,-0.0421015024185181,-0.0373365879058838,0.00117588043212891,-0.0604401826858521,-0.0371041297912598,0.0434627532958984,-0.0655561685562134,-0.030137300491333,0.0855731964111328,-0.0986796617507935,-0.0193572044372559,0.126169204711914,-0.05600905418396,-0.0130519866943359,0.0783214569091797,-0.0382711887359619,-0.00430893898010254,0.0246152877807617,-0.00988662242889404,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,-0.0352213382720947,-0.00698637962341309,0.0568094253540039,-0.0823712348937988,-0.00837016105651855,0.105538368225098,-0.0438103675842285,-0.0015709400177002,0.0756235122680664,-0.0814588069915771,-0.00438070297241211,0.142725944519043,-0.0960116386413574,-0.0125043392181396,0.178936958312988,-0.142844915390015,-0.0207037925720215,0.269309997558594,-0.144420623779297,-0.0297157764434814,0.285107612609863,-0.195950984954834,-0.039586067199707,0.387392997741699,-0.217062950134277,-0.0256633758544922,0.477452278137207,-0.207442283630371,-0.0381569862365723,0.426575660705566,-0.147157192230225,-0.0394644737243652,0.303920745849609,-0.146441459655762,-0.0273797512054443,0.318546772003174,-0.0921244621276855,-0.0322139263153076,0.201237678527832,-0.0314140319824219,-0.00880289077758789,0.0701990127563477,-0.0220179557800293,-0.00848877429962158,0.0492539405822754,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,-0.276562690734863,-0.00448274612426758,0.621041774749756,-0.057075023651123,0.0116097927093506,0.126934051513672,-0.230038642883301,0.014528751373291,0.526442050933838,0,4.52995300292969e-06,0,-0.194972515106201,-0.00900077819824219,0.595001220703125,-0.075963020324707, +0.0331487655639648,0.169335842132568,-0.236279964447021,0.0371007919311523,0.616757869720459,-0.274289131164551,0.0149035453796387,0.758379459381104,-0.168789863586426,0.035123348236084,0.525217056274414,-0.0795660018920898,0.0400300025939941,0.179969310760498,-0.17789888381958,0.00433492660522461,0.674626350402832,-0.102942943572998,-0.0205001831054688,0.584413051605225,-0.0486416816711426,-0.0326886177062988,0.533013343811035,-0.0876569747924805,-0.0192322731018066,0.588947772979736,-0.105809688568115,-0.00179195404052734,0.503729343414307,-0.120526313781738,0.0357522964477539,0.391181468963623,-0.0754194259643555,-0.000941753387451172,0.571246147155762,-0.0554599761962891,0.00443744659423828,0.49885892868042,-0.0123472213745117,-0.041630744934082,0.400513172149658,-0.23436164855957,0.139839172363281,0.795241355895996,-0.110416412353516,0.0724124908447266,0.570082664489746,-0.00063014030456543,0.000462532043457031,0.00309514999389648,-0.0241341590881348,0.0213956832885742,0.121634483337402,-0.0702567100524902,0.0638942718505859,0.355467796325684,-0.160175085067749,0.166934013366699,0.616199493408203,-0.0930042266845703,0.0780534744262695,0.466333389282227,-0.094146728515625,0.110831260681152,0.379293441772461,-0.0572340488433838,0.0607137680053711,0.296872138977051,-0.000276923179626465,0.000376701354980469,0.00150489807128906,-0.0061798095703125,0.00835132598876953,0.0335359573364258,-0.0202465057373047,0.0263843536376953,0.10905933380127,-0.0315010547637939,0.038151741027832,0.154507637023926,-0.0806818008422852,0.14078426361084,0.22752857208252,-0.0720680952072144,0.17531681060791,0.0895557403564453,-0.0142854452133179,0.0368680953979492,0.0509729385375977,-0.000289440155029297,0.000393867492675781,0.00157260894775391,-0.000981330871582031,0.00133419036865234,0.00533199310302734,-3.89814376831055e-05,5.340576171875e-05,0.000211715698242188,-0.00862401723861694,0.213482856750488,-0.00480270385742188,-0.0266185998916626,0.196136474609375,0.00649833679199219,-0.00228893756866455,0.0648784637451172,0.00791549682617188, +-0.0172752141952515,0.098546028137207,-0.00272178649902344,-0.000355124473571777,0.000796318054199219,-3.52859497070313e-05,-0.0314178466796875,0.222633361816406,-0.00800323486328125,-0.0376601815223694,0.134963035583496,-0.00516033172607422,-0.0207481384277344,-0.0362663269042969,0.314971446990967,-0.0494914054870605,-0.00307607650756836,0.250094413757324,-0.000746250152587891,-0.00678014755249023,0.0411806106567383,-0.061683177947998,0.0252671241760254,0.169343948364258,-0.00375795364379883,0.00194644927978516,0.008331298828125,-0.0162453651428223,0.00841522216796875,0.0360169410705566,-0.055351734161377,0.028346061706543,0.12431001663208,-0.000231266021728516,0.000119686126708984,0.000512599945068359,-0.000691413879394531,0.000364065170288086,0.00153255462646484,-1.95503234863281e-05,1.00135803222656e-05,4.29153442382813e-05,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06, +0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,-0.000428915023803711,3.45706939697266e-06,0.0007171630859375,-0.00240659713745117,-0.000160098075866699,0.00425243377685547,-0.0062408447265625,-0.00146603584289551,0.0125799179077148,-0.0087132453918457,-0.00294637680053711,0.0188941955566406,-0.00668716430664063,-0.00258409976959229,0.0149593353271484,-0.00182914733886719,-0.000707030296325684,0.00409126281738281,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,-4.29153442382813e-05,-1.81198120117188e-05,9.63211059570313e-05,-0.000787734985351563,-0.000300765037536621,0.00176143646240234,-0.000792026519775391,-0.000303924083709717,0.00177097320556641,-0.000115394592285156,-3.4630298614502e-05,0.000249862670898438,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06, +0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06, +0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0, +6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0635226964950562,-0.0415160655975342,0.038395881652832,-0.0626983642578125,-0.0240061283111572,0.0330429077148438,-0.0761091709136963,-0.0180389881134033,0.0337085723876953,-0.102036654949188,-0.0226173400878906,0.0465316772460938,-0.117514848709106,-0.0284817218780518,0.0537624359130859,-0.130604028701782,-0.0365347862243652,0.0583419799804688,-0.0706301927566528,-0.0621180534362793,0.0468854904174805,-0.0855923891067505,-0.0958378314971924,0.0637130737304688,-0.103823512792587,-0.120131015777588,0.084197998046875,-0.109450608491898,-0.128530263900757,0.0852241516113281,-0.112495422363281,-0.110007524490356,0.0751276016235352,-0.105922341346741,-0.0649428367614746,0.0580739974975586,-0.112973928451538,-0.0338864326477051,0.0405025482177734,-0.122670590877533,-0.0297210216522217,0.0423860549926758,-0.137877941131592,-0.0375335216522217,0.0560970306396484,-0.082818865776062, +-0.0524404048919678,0.049748420715332,-0.0840598344802856,-0.0278468132019043,0.0428733825683594,-0.0976263284683228,-0.0207533836364746,0.0400753021240234,-0.114109337329865,-0.0249667167663574,0.0457830429077148,-0.0847922563552856,-0.0773289203643799,0.0559167861938477,-0.0538625717163086,0.00499629974365234,0.137453079223633,-0.0725269317626953,0.0115556716918945,0.231490135192871,-0.0159136056900024,0.00415325164794922,0.019780158996582,-0.03169846534729,0.00115537643432617,0.0637397766113281,-0.0073167085647583,0.0109372138977051,-0.0324678421020508,0.00119280815124512,0.000765323638916016,-0.002227783203125,-0.0867631435394287,0.0176005363464355,0.313220977783203,-0.0848181247711182,0.0220518112182617,0.352773666381836,-0.0781357288360596,0.0225505828857422,0.34647274017334,-0.0636920928955078,0.0198311805725098,0.296350479125977,-0.0348403453826904,0.0109772682189941,0.163349151611328,-0.00974750518798828,0.00327491760253906,0.0487337112426758,-0.0453580617904663,0.0858607292175293,0.0135889053344727,0.0198210477828979,0.104231357574463,-0.10975456237793,0.050416886806488,0.0142898559570313,-0.0102567672729492,0.038081169128418,-0.000192165374755859,0.00249862670898438,0.0122838914394379,0,0,-0.0672456026077271,-0.0844335556030273,0.923186302185059,-0.154504954814911,-0.102213859558105,0.975102424621582,-0.298427224159241,-0.137921810150146,1.05711650848389,-0.425821423530579,-0.128724098205566,1.184889793396,-0.643164157867432,-0.121382236480713,1.42208957672119,-0.804945707321167,-0.091069221496582,1.59694862365723,-0.965088486671448,-0.0660128593444824,1.61970043182373,-1.18935537338257,-0.0297904014587402,1.66130447387695,-1.23650515079498,-0.0252985954284668,1.65642833709717,-1.26665496826172,-0.00529623031616211,1.65083980560303,-1.24855184555054,-0.0297484397888184,1.66928005218506,-1.20662224292755,-0.0620632171630859,1.74559497833252,-1.00195455551147,-0.156440734863281,1.68936538696289,-0.726179122924805,-0.101122379302979,1.57367706298828,-0.491834044456482,-0.0684099197387695,1.35189342498779,-0.293142318725586, +-0.0764369964599609,1.0994815826416,-0.204978227615356,-0.0984597206115723,0.98362922668457,-0.0700191855430603,-0.116316795349121,0.943905830383301,-0.0447364747524261,-0.125581741333008,0.955217361450195,0.0388298332691193,-0.286779880523682,0.659859657287598,-0.0591113567352295,-0.29035472869873,0.659570693969727,-0.331305086612701,-0.301082134246826,0.668506622314453,-0.592473864555359,-0.337268829345703,0.786520004272461,-0.705474138259888,-0.324235439300537,0.906167030334473,-0.717394471168518,-0.324953079223633,0.976117134094238,-0.850099563598633,-0.260262012481689,1.11837768554688,-1.04463863372803,-0.153125762939453,1.22748565673828,-1.08677053451538,-0.029240608215332,1.33181953430176,-1.09483408927917,0.0571622848510742,1.37327480316162,-1.09713530540466,0.011293888092041,1.37278461456299,-1.02203464508057,-0.0244607925415039,1.39639663696289,-0.88234531879425,-0.109829425811768,1.34258079528809,-0.631603479385376,-0.0258045196533203,1.23192405700684,-0.441863059997559,0.0350179672241211,1.11023044586182,-0.271353244781494,-0.0333023071289063,0.893952369689941,-0.164370536804199,-0.038517951965332,0.757294654846191,-0.0572287440299988,-0.0623836517333984,0.686832427978516,-0.0218119025230408,-0.0593051910400391,0.696707725524902,0,5.96046447753906e-06,0,-0.0589754581451416,0.00106191635131836,0.108133316040039,-0.0656564235687256,0.005523681640625,0.162105560302734,-0.0286154747009277,3.38554382324219e-05,0.0478410720825195,-0.0508112907409668,6.00814819335938e-05,0.0849494934082031,-0.00862371921539307,5.7220458984375e-06,0.0144176483154297,-0.00142955780029297,-2.86102294921875e-06,0.00238990783691406,0,3.09944152832031e-06,0,-0.0692715644836426,0.0110344886779785,0.221134662628174,-0.0773289203643799,0.0205621719360352,0.326018333435059,-0.0747451782226563,0.0227789878845215,0.343037605285645,-0.0628030300140381,0.0197873115539551,0.294451713562012,-0.0367295742034912,0.0115718841552734,0.172206878662109,-0.0118544101715088,0.00373458862304688,0.0555791854858398,-0.00365734100341797,0.00115203857421875, +0.0171470642089844,-0.000163555145263672,5.14984130859375e-05,0.000766754150390625,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,-2.14576721191406e-06,0,9.5367431640625e-06,-0.000784397125244141,0.000240802764892578,0.00367641448974609,-0.00475025177001953,0.00149679183959961,0.0222721099853516,-0.00496339797973633,0.00156354904174805,0.0232696533203125,-0.00131773948669434,0.000414848327636719,0.00617790222167969,-9.5367431640625e-06,2.86102294921875e-06,4.48226928710938e-05,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06, +0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *5820 { + a: -0.597092765817582,-1.20674596726894,-0.819351315498352,-0.384596306972981,-1.27944368124008,-0.820560738444328,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.35247701406479,0.038206547498703,-0.535711735486984,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.774938248097897,0.881902649998665,-0.456946484744549,0.519307337701321,0.680022969841957,-0.320886075496674,0.427825834602118,0.611639320850372,-0.43081459403038,1.24984148144722,0.743428140878677,0.0101923048496246,1.24035313725471,-0.716003447771072,-0.429137527942657,0.6684610247612,-1.17865699529648,-0.558192223310471,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.287638731300831,0.364852160215378,-0.134946346282959,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.468268631026149,0.433664247393608,-0.103400349617004,0.715243133594754,0.00880149006843567,0.305856227874756,0.837141009857419,0.0635102242231369,0.449118494987488,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.33883160352707,0.271105103194714,0.201965391635895,-0.185629397630692,0.60392153263092,-0.423017710447311,0.0953263938426971,0.519869685173035,-0.52972674369812,0.382831320166588,0.495755851268768,-0.813438422977924,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.149402499198914,0.649232625961304,-0.918700143694878,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.896484866738319,0.121514856815338,0.316224336624146,-0.597992211580276,0.508298240602016, +0.248544991016388,1.33693334460258,-0.428975835442543,-0.875247816555202,1.69533205032349,-0.0761311762034893,-0.074331670999527,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.12227132916451,-0.257228456437588,-0.548864245414734,1.84295350313187,-0.358152143657207,-0.155432343482971,1.63278758525848,-0.373890697956085,-0.890541508793831,1.26172557473183,-0.546142593026161,-0.859731506556273,1.28755939006805,-0.494611859321594,-0.535688370466232,1.31134834885597,0.147582679986954,-0.629765912890434,1.40888613462448,-0.331198558211327,-0.354947298765182,1.56502795219421,0.032392218708992,-0.075869619846344,1.19551733136177,0.0307884961366653,0.431280195713043,0.825121775269508,-0.218170151114464,-0.178467690944672,0.769775316119194,-0.0740673840045929,-0.92814214900136,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393, +-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688, +-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449, +0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254, +0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137, +0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182, +-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047, +-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.437944859266281,0.259957488626242,-1.2592768073082,0.608295112848282,0.10823181271553,-1.25950562953949,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246, +-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851, +-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812, +-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883, +-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382, +0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686, +-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917, +0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755, +-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449, +-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145, +0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322, +-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842, +-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038, +0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248, +-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295, +1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499, +-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293, +-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382, +0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651, +0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542, +-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031, +-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248, +-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299, +-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.31432190537453,0.719328045845032,0.437053114175797,-1.30395328998566,0.315785571932793,0.602485001087189,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753, +0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603, +-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969, +0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263, +-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586, +-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833, +0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874, +-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971, +-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599, +-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309, +-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736, +0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396, +-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568, +0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706, +0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719, +-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856, +0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814, +0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434, +0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524, +0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193, +-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805454334592, "Geometry::Mouth_Raiser_Left", "Shape" { + Version: 100 + Indexes: *1717 { + a: 703,1359,1509,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6096,6098,6100,6101,6102,6103,6104,6105,6106,6107,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6267,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496, +6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7167,7168,7172,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392, +7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7765,7766,7767,7768,7769,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856, +7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7949,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7980,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8698,8699,8700,8701,8702, +8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 + } + Vertices: *5151 { + a: 0.000429093837738037,0,0,6.09755516052246e-05,0,0,0.000388860702514648,0,0,0,0.0421245098114014,0,0,0.00739669799804688,0,0.0696006715515978,0.00740814208984375,0.0133209228515625,0.0696006715370459,0.0683817863464355,0.0133209228515625,0.0766299367678585,0.0806794166564941,0.0133209228515625,0.0766299367169267,0.0654416084289551,0.0133209228515625,0.0696006715515978,0.00740337371826172,0.0133199691772461,0.076629936680547,0.0806884765625,0.0133209228515625,0.0696006715443218,0.007415771484375,0.0133218765258789,0.0766299367169267,0.088066577911377,0.0133209228515625,0.0232002250850201,0.024627685546875,0.00497531890869141,0.0255433134498162,0.0268921852111816,0.0742597579956055,0.0464004501664022,0.0492429733276367,0.0437917709350586,0.0510866268450627,0.0537962913513184,0.0437908172607422,0,0.0110573768615723,0,0,2.86102294921875e-06,0.0132322311401367,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,0.0273797512054443,0,0,0.0232882499694824,0,0,0.016993522644043,0,0,0.0143084526062012,0,0,0.0193789005279541,0,0,0.0420000553131104,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,0.000456094741821289,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,9.39369201660156e-05,0,0,5.96046447753906e-06, +0,0.0394487977027893,0.0274462699890137,0.052729606628418,0.0394487082958221,0.0424103736877441,0.052729606628418,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.101092338562012,0,0,0.104729652404785,0,0,0.0697479248046875,0,0,0.104729652404785,0.000134706497192383,0.00014495849609375,0.104552268981934,0.000133872032165527,0.000132560729980469,0.10455322265625,0.00360167026519775,0.00388479232788086,0.0999813079833984,0.00360143184661865,0.00387096405029297,0.0999813079833984,0.0166193842887878,0.017909049987793,0.0828094482421875,0.0166193246841431,0.017909049987793,0.0828094482421875,0,0,0.104729652404785,0,-6.19888305664063e-06,0.0888071060180664,0,0,0.103442192077637,0,0,0.104729652404785,0,7.62939453125e-06,0.101931571960449,0,0,0.104729652404785,0,0,0.103560447692871,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.0928316116333008,0,0,0.0898313522338867,0,0,0.104729652404785,6.47306442260742e-05,6.24656677246094e-05,0.0843000411987305,6.52074813842773e-05,7.15255737304688e-05,0.104652404785156,0.00341200828552246,0.00358438491821289,0.100663185119629,0.00341212749481201,0.00357341766357422,0.100663185119629,0.015791654586792,0.0165753364562988,0.085902214050293,0.0157915353775024,0.0165829658508301,0.085902214050293,0.0406132340431213,0.042633056640625,0.0563030242919922,0.0406131744384766,0.0254340171813965,0.0563030242919922,0.0394487977027893,0.028897762298584,0.0527305603027344,0.0166194438934326,0.0179076194763184,0.0828094482421875,0.00360190868377686,0.00387716293334961,0.0999813079833984,0.000134468078613281,0.0001373291015625,0.10455322265625,0,7.62939453125e-06,0.0959863662719727,0,0,0.102462768554688,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104368209838867,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,6.4849853515625e-05,6.103515625e-05,0.10465145111084,0.00341212749481201,0.00358247756958008,0.100663185119629,0.015791118144989, +0.0165772438049316,0.0859012603759766,0.0406129360198975,0.0426449775695801,0.0563030242919922,0.0394485890865326,0.0283288955688477,0.052729606628418,0.0166194438934326,0.0179076194763184,0.0828094482421875,0.00360167026519775,0.00388479232788086,0.099980354309082,0.00013422966003418,0.000132560729980469,0.10455322265625,0,0,0.103616714477539,0,0,0.104729652404785,0,7.62939453125e-06,0.104729652404785,0,0,0.104729652404785,0,-7.62939453125e-06,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,0,0,0.104729652404785,6.52074813842773e-05,5.76972961425781e-05,0.104652404785156,0.00341212749481201,0.00357675552368164,0.100662231445313,0.0157917737960815,0.0165772438049316,0.0859012603759766,0.040613204240799,0.0374655723571777,0.0563039779663086,0.0131495594978333,0.0141477584838867,0.0137128829956055,0.00553977489471436,0.00597810745239258,0.0255918502807617,0.00120055675506592,0.00128602981567383,0.0191125869750977,4.48226928710938e-05,4.10079956054688e-05,0.0101308822631836,0,-6.19888305664063e-06,0.00400543212890625,0,-6.19888305664063e-06,0.00336647033691406,0,0,0.0117177963256836,0,-7.62939453125e-06,0.0366878509521484,0,0,0.0408420562744141,0,0,0.0431509017944336,0,0,0.045191764831543,0,0,0.0399274826049805,0,-7.62939453125e-06,0.0276222229003906,0,0,0.0171642303466797,0.0135377049446106,0.0142226219177246,0.088587760925293,0.00526392459869385,0.00552225112915039,0.0984535217285156,0.001137375831604,0.00120067596435547,0.103373527526855,2.14576721191406e-05,1.66893005371094e-05,0.051997184753418,0,0,0.0114431381225586,0.0262991189956665,0.0282807350158691,0.0700626373291016,0.0110795497894287,0.0119490623474121,0.0901174545288086,0.00240123271942139,0.00258779525756836,0.101564407348633,8.95261764526367e-05,0.000100612640380859,0.104612350463867,0,0,0.0572309494018555,0,0,0.0777311325073242,0,6.19888305664063e-06,0.0950441360473633,0,0,0.103164672851563,0,0,0.0995683670043945,0,0,0.0936498641967773,0,0,0.0936498641967773,0,0,0.0987100601196289, +0,0,0.0947999954223633,0,0,0.0738611221313477,0,0,0.0541276931762695,4.3034553527832e-05,4.43458557128906e-05,0.0626544952392578,0.00227487087249756,0.00238323211669922,0.102017402648926,0.0105277895927429,0.0110487937927246,0.0921773910522461,0.0270755290985107,0.0284209251403809,0.0724449157714844,0,0.000100612640380859,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,0,0.000119209289550781,0,0,2.76565551757813e-05,0,-7.62939453125e-06,0,0,0,6.4849853515625e-05,0,0,0.0163049697875977,0,0,0.0214643478393555,0,0,0.018803596496582,0,0,0.0004425048828125,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,2.81333923339844e-05,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,0.00449800491333008,0,0,-4.52995300292969e-06,0,0,0.00131440162658691,0,0,5.96046447753906e-06, +0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.000245809555053711,0,0,-6.19888305664063e-06,0,0,0.000917911529541016,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06, +0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06, +0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06, +0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06, +0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06, +0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-0.000458705888377153,-0.000176906585693359,6.38961791992188e-05,0,-4.76837158203125e-06,0.0449857711791992,0,0,0.000668525695800781,0,0,0.00848865509033203,0,-4.76837158203125e-06,0,0,0,0.00336742401123047,0,0,0.00652885437011719,0,0,0.00856399536132813,0,0,0.00561046600341797,0,0,0.00773048400878906,0,0,0.00408172607421875,0,0,0.00456142425537109,0,0,0.0442171096801758,0,0,0.055537223815918,0,0,0.0409917831420898,0,0,0.0400629043579102,0.0696006715515978,0.0504183769226074,-0.000292778015136719,0.0394486784934998,0.0375738143920898,0.0419416427612305,0.0166196227073669,0.0179104804992676,0.0700235366821289,0.00360214710235596,0.00387859344482422,0.0875091552734375,0.000133872032165527,0.00014495849609375,0.0919170379638672,0,0,0.0923519134521484,0,0,0.0908584594726563,0,0,0.0911197662353516,0,-7.62939453125e-06,0.0967369079589844,0,0,0.0888681411743164,0,0,0.0865936279296875,0,0,0.0893936157226563,0,7.62939453125e-06,0.0935306549072266,0,0,0.0888271331787109,0,-7.62939453125e-06,0.0908946990966797,0,0,0.0914020538330078,6.43730163574219e-05,6.38961791992188e-05,0.0923614501953125,0.00341236591339111,0.003570556640625,0.0929136276245117,0.015791654586792,0.0165829658508301,0.0807085037231445,0.0406131148338318,0.0312938690185547,0.0514488220214844,0.0766299367169267,0.0753226280212402,0.008575439453125,0,-0.00189733505249023,0.0750246047973633,0,0,0.0738906860351563,0,7.62939453125e-06,0.0669460296630859,0,0,0.0626935958862305,0,0,0.0556468963623047,0,0,0.0612640380859375,0,0,0.0732097625732422,0,0,0.0699834823608398,0,0,0.0647001266479492,0,0,0.0496320724487305,0,0,0.0491180419921875, +0,0,0.054377555847168,0,0,0.0644302368164063,0,0,0.0867624282836914,0,0,0.0737533569335938,0,-7.62939453125e-06,0.0622406005859375,0,0,0.0638942718505859,0,0,0.0686674118041992,0,0,0.0743417739868164,0,-7.62939453125e-06,0.0777769088745117,0,-0.0078129768371582,0.0794687271118164,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,0.0980789661407471,0,0,0.0537068843841553,0,0.109404176473618,0.00635051727294922,-0.041346549987793,0.11065486073494,0.119833469390869,-0.0415019989013672,0.577010631561279,1.1142578125,-1.19161701202393,0.651965379714966,1.29945230484009,-1.18517398834229,0.735209465026855,1.13890743255615,-0.985410690307617,0.675071954727173,0.901994705200195,-1.19204711914063,0.342524528503418,0.707215309143066,-0.515114784240723,0.493985533714294,0.498385906219482,-0.652111053466797,0.223673820495605,0.461632251739502,-0.318572998046875,0.268253445625305,0.280452728271484,-0.440461158752441,0.171403765678406,0.247918605804443,-0.249712944030762,0.159429550170898,0.0912680625915527,-0.294137001037598,0.171427130699158,0.133952617645264, +-0.172199249267578,0.147028148174286,0.023859977722168,-0.117494583129883,0.628770351409912,0.701540946960449,-0.873368263244629,0.58311915397644,0.895533561706543,-0.637057304382324,0.675577163696289,1.28249168395996,-1.28822898864746,0.634757280349731,1.17517137527466,-1.33303356170654,0.720823764801025,1.28418254852295,-1.34038925170898,0.598799467086792,1.18098497390747,-1.28858184814453,0.780188798904419,1.11220645904541,-1.20008563995361,0.585317850112915,1.16025304794312,-1.21508598327637,0.760004997253418,0.988587856292725,-1.06015682220459,0.555882930755615,1.12059926986694,-1.09805297851563,0.601966857910156,0.980047702789307,-1.12635231018066,0.853412389755249,1.00761413574219,-0.970894813537598,0.665758609771729,0.838160991668701,-0.998209953308105,0.813812017440796,0.942248821258545,-0.811418533325195,0.645570039749146,0.712018013000488,-0.585637092590332,0.467674612998962,0.649681568145752,-0.566285133361816,0.453079700469971,0.466160297393799,-0.448667526245117,0.407931923866272,0.493937015533447,-0.43466854095459,0.292707204818726,0.305967807769775,-0.258566856384277,0.266164779663086,0.294405937194824,-0.254031181335449,0.202662706375122,0.214481830596924,-0.140233993530273,0.180864691734314,0.201183795928955,-0.13611888885498,0.128797888755798,0.135787963867188,-0.0486831665039063,0.125245183706284,0.125740051269531,-0.04803466796875,0.165018886327744,0.116413116455078,-0.0414524078369141,0.202110707759857,0.189950466156006,-0.123610496520996,0.218051075935364,0.236100673675537,-0.218132972717285,0.317161440849304,0.455863475799561,-0.354351043701172,0.438881754875183,0.712942123413086,-0.524405479431152,0.640414237976074,0.933218002319336,-0.701214790344238,0.791547298431396,1.15863513946533,-1.06826019287109,0.673439741134644,1.29688930511475,-1.17191028594971,0.705335140228271,1.27984809875488,-1.2864933013916,0.734445810317993,1.28334712982178,-1.34778022766113,0.765701532363892,1.22369050979614,-1.28171634674072,0.83477520942688,1.16091203689575,-1.14033126831055,0.920667886734009,1.09050607681274, +-1.01376724243164,0.914158344268799,0.954336643218994,-0.901653289794922,0.671273946762085,0.692586421966553,-0.641805648803711,0.490262746810913,0.467108249664307,-0.418026924133301,0.328194737434387,0.292797565460205,-0.254822731018066,0.245366990566254,0.203634738922119,-0.137659072875977,0.182820051908493,0.135326862335205,-0.0485391616821289,0.109731793403625,0.00693893432617188,-0.0413904190063477,0.146625280380249,0.0206613540649414,-0.118207931518555,0.174119710922241,0.136242389678955,-0.228367805480957,0.287082433700562,0.361271381378174,-0.363458633422852,0.473078489303589,0.600516319274902,-0.54026985168457,0.676202535629272,0.840977668762207,-0.759921073913574,0.777014255523682,0.999681949615479,-1.07364940643311,0.644418001174927,1.16472482681274,-1.09964752197266,0.65627908706665,1.20963764190674,-1.22374153137207,0.720222473144531,1.23949432373047,-1.29627990722656,0.755663871765137,1.24152612686157,-1.27911281585693,0.783680200576782,1.20311784744263,-1.1577320098877,0.7833092212677,1.0578408241272,-1.14925575256348,0.802698612213135,0.912711143493652,-0.957178115844727,0.62076997756958,0.705772876739502,-0.606789588928223,0.431336998939514,0.49042797088623,-0.417122840881348,0.267547369003296,0.291525363922119,-0.253942489624023,0.183407664299011,0.200567722320557,-0.136415481567383,0.126437336206436,0.13662052154541,-0.0482444763183594,0.0360139012336731,0.0395994186401367,-0.0118923187255859,0.051430344581604,0.0621609687805176,-0.0296230316162109,0.0532042980194092,0.0991911888122559,-0.0663909912109375,0.068458080291748,0.162514686584473,-0.115501403808594,0.162719249725342,0.410398960113525,-0.208106994628906,0.270444631576538,0.551486015319824,-0.251461982727051,0.478776693344116,0.766640663146973,-0.612368583679199,0.479750394821167,1.08522367477417,-1.01621150970459,0.482890844345093,1.3445029258728,-1.05967712402344,0.550342798233032,1.30738687515259,-1.07348251342773,0.64227294921875,0.792848110198975,-0.839774131774902,0.516250371932983,0.503678798675537,-0.50274658203125,0.388018608093262, +0.488545894622803,-0.21129322052002,0.302158117294312,0.423520088195801,-0.202205657958984,0.0429326295852661,0.0452742576599121,0.0535917282104492,0.0693684816360474,0.0746598243713379,0.0225582122802734,0.105386018753052,0.117594718933105,-0.0187616348266602,0.153674125671387,0.179139614105225,-0.139959335327148,0.212814331054688,0.264853000640869,-0.240682601928711,0.0738129317760468,0.0799012184143066,0.00723648071289063,0.162980318069458,0.119552612304688,-0.141581535339355,0.123478889465332,0.220269680023193,-0.199660301208496,0.190977811813354,0.40557336807251,-0.279606819152832,0.303928375244141,0.672940731048584,-0.471795082092285,0.518782377243042,0.928863525390625,-0.515346527099609,0.651650190353394,1.17559814453125,-0.84105110168457,0.638954401016235,1.33206415176392,-1.1961784362793,0.671753406524658,1.32497882843018,-1.2897777557373,0.709600687026978,1.29039812088013,-1.32439422607422,0.753500699996948,0.96449613571167,-1.09985065460205,0.735457897186279,0.833239555358887,-0.943358421325684,0.690157413482666,0.791527271270752,-0.721676826477051,0.668200731277466,0.767022609710693,-0.585491180419922,0.570119857788086,0.574554443359375,-0.516372680664063,0.30520236492157,0.336688995361328,-0.323385238647461,0.207812547683716,0.222201347351074,-0.140748023986816,0.138684451580048,0.148377895355225,-0.0595273971557617,0.0858651101589203,0.0905394554138184,0.00245475769042969,0.00985977053642273,0.0285630226135254,0,0.0273736715316772,0.0221238136291504,0,0.0124967098236084,0.0326979160308838,0.000164031982421875,-0.00385177135467529,0.15786600112915,0.000667572021484375,-0.00200724601745605,0.208488464355469,-0.00113773345947266,0.0959780216217041,0.381638765335083,-0.311526298522949,0.311861753463745,0.6244797706604,-0.43171501159668,0.366658687591553,1.08328342437744,-0.648689270019531,0.00522279739379883,0.0829877853393555,0.0881490707397461,0.13139820098877,0.211676120758057,-0.113384246826172,0.351564407348633,0.668519496917725,-0.275273323059082,0.28621244430542,1.17311573028564,-0.357152938842773, +0.37065052986145,1.18894910812378,-0.553585052490234,0,0,0.0141019821166992,0,0,0.0166645050048828,0,0,0.00992870330810547,0,0,0.000542640686035156,0.0393860340118408,0.141563892364502,0.0782108306884766,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,0.120375096797943,9.20295715332031e-05,0,0.144842565059662,0.000103473663330078,0.00714349746704102,0.379486083984375,-0.00335121154785156,0.00373125076293945,0.545555114746094,0.106529712677002,0.00739955902099609,0.4706130027771,0.0239486694335938,0,0.685157716274261,0.180377960205078,0.00619411468505859,0.456957936286926,0.0373802185058594,0,0.650361657142639,0.141945838928223,-0.0015866756439209,0.277819752693176,0.00592899322509766,0,0.40487802028656,0.0621328353881836,0,0.0759490728378296,0,0,0.0753723382949829,0,0,0.0290725827217102,0,-0.00152325630187988,0.0247269868850708,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,5.57899475097656e-05,0.278158582746983,0.0129108428955078,0,0.37528076954186,0.0232467651367188,0,0.707083106040955,0.180951118469238,-0.00357770919799805,0.488700866699219,0.0616827011108398,0,0.534188747406006,0.0881557464599609,0.0109691619873047,0.383949279785156,0.0203104019165039,0,0.187425255775452,0.0332279205322266,-0.000374078750610352,0.157466053962708,-0.000298500061035156,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.0812101364135742,0.0812087059020996,0,0.0385951995849609,0.0386033058166504,0,0.35653018951416,0.356534957885742,0,0.06097412109375,0.0609786510467529,0,0.48246431350708,0.482460498809814,0,0.002197265625,0.00219053030014038,0,0.283894062042236,0.283892869949341, +0,0.164848327636719,0.164837598800659,0,0.010859489440918,0.0108604431152344,0,0.225071907043457,0.225070476531982,0,0.0221662521362305,0.022168755531311,0,0.400735378265381,0.400734424591064,0,0.022221565246582,0.0222148895263672,0,0.103660583496094,0.103664398193359,0,0.192276954650879,0.192270278930664,0,0.254675388336182,0.254682540893555,0,0.186977863311768,0.186983585357666,0,0.120741367340088,0.120741128921509,0,0.0624985694885254,0.0624922513961792,0.0999999046325684,0.410187959671021,0,0.0999999046325684,0.236515283584595,0,0.162853717803955,0.268378019332886,0,0.162853717803955,0.377988338470459,0,0.162506341934204,0.248990774154663,-0.000658035278320313,0.100000023841858,0.230084419250488,0,0.100000023841858,0.271437883377075,0,0.163744807243347,0.290322303771973,-0.000491142272949219,0.00406110286712646,0.0789573192596436,0,0.014385461807251,0.255821466445923,0,0.0999999046325684,0.265031576156616,-0.00277328491210938,0.0999999046325684,0.420051336288452,0,0.0405309200286865,0.439738750457764,0.109830856323242,0.162686824798584,0.419004201889038,0.139925956726074,0.2295241355896,0.542010307312012,0.0779399871826172,0.330397605895996,0.919257164001465,-0.0116300582885742,0.294425010681152,0.811666965484619,0.0427913665771484,0.157881736755371,0.365872859954834,0.11107063293457,-0.0398588180541992,0.177743434906006,0.120985984802246,0.000526189804077148,0.0747222900390625,0.0753364562988281,0.0093543529510498,0.0254364013671875,0.0364246368408203,0.0430151522159576,0.0315632820129395,0,0.0209885537624359,0.0359420776367188,0,0.0348715484142303,0.03594970703125,0,0.0489092767238617,0.0331461429595947,0,0.041869729757309,0.0412425994873047,0,0.0152446925640106,0.0377686023712158,0,0.0454334914684296,0.0618398189544678,0,0.0150698721408844,0.0638890266418457,0,0.057433545589447,0.0652675628662109,0,0.0196424424648285,0.0703232288360596,0,0.0667752623558044,0.0528552532196045,0,0.0479891300201416,0.0641906261444092,0,0.122839212417603,0.192924022674561,0.0151157379150391,0.116623759269714,0.259340524673462,0.0159435272216797, +0.151784062385559,0.193490505218506,0.00856685638427734,0.1623375415802,0.263237476348877,-0.00216388702392578,0.163622617721558,0.179462671279907,0.00551033020019531,0.165335536003113,0.227160453796387,-0.00662994384765625,0.162202835083008,0.169953107833862,0,0.121521353721619,0.255175590515137,0,0.0907981395721436,0.00604057312011719,0,0.0651452541351318,0.0447161197662354,0,0.0573937296867371,0.0166680812835693,0,0.0628357529640198,0.016005277633667,0,0.111344695091248,0.0330820083618164,0,0.0889623165130615,0.0943939685821533,0,0.0401086211204529,0.0348308086395264,0,0.0382111072540283,0.0445799827575684,0,0.0405855476856232,0.0686328411102295,0,0.0538530349731445,0.0719857215881348,0,0.067048966884613,0.0582754611968994,0,0.127467453479767,0.2298583984375,0.0203866958618164,0.16060471534729,0.219604253768921,0.00880336761474609,0.171759247779846,0.195117473602295,0.00356292724609375,0.163466691970825,0.195428371429443,0,0.112754821777344,0.0538473129272461,0,0.0902532935142517,0.0127358436584473,0,0.0643498301506042,0.0170843601226807,0,0.047791600227356,0.0353140830993652,0,0.0441147089004517,0.0359435081481934,0,0.0629429221153259,0.0172994136810303,0,0.0821250081062317,0.019451379776001,0,0.104676008224487,0.0716896057128906,0,0.151944279670715,0.220437526702881,0,0.174617409706116,0.209667921066284,-0.00084686279296875,0.164431691169739,0.239760875701904,0.00404834747314453,0.124161064624786,0.238654851913452,0.0195045471191406,0.0621252655982971,0.0596387386322021,0,0.0472608208656311,0.0744917392730713,0,0.0352332592010498,0.0696706771850586,0,0.0311589241027832,0.0434043407440186,0,0.0337567925453186,0.0359435081481934,0,0.0103150010108948,0.0329136848449707,0,0.0189869403839111,0.0666244029998779,0,0.100939512252808,0.294716835021973,0.00936031341552734,0.0692451000213623,0.28000283241272,6.96182250976563e-05,0.000391244888305664,0.0713791847229004,0,0.180607318878174,0.313431978225708,0.00115489959716797,0.15175187587738,0.295029163360596,-0.0108089447021484,0.145132422447205,0.24541187286377,-0.0143833160400391, +0.169746279716492,0.26386570930481,-0.00206947326660156,0.169936060905457,0.174321889877319,0.00407218933105469,0.17670202255249,0.181179285049438,0.00182437896728516,0.168173313140869,0.193114519119263,0.000481605529785156,0.149486660957336,0.213171482086182,1.1444091796875e-05,0.12571656703949,0.23421311378479,0,0.157601594924927,0.263725996017456,0.0133800506591797,0.0845487117767334,0.307615995407104,0,0.105027079582214,0.362545490264893,0,0.0471242666244507,0.194660663604736,0,0.0650398731231689,0.263664960861206,0,0.0239908695220947,0.176133394241333,9.5367431640625e-06,0.0633293390274048,0.270389556884766,-0.000301361083984375,0.0931510925292969,0.257895469665527,-0.0111618041992188,0.094136118888855,0.425754547119141,-0.000995635986328125,0.0999999046325684,0.294389247894287,0,0.162853717803955,0.338751554489136,0,0.153993129730225,0.330218553543091,0.0133800506591797,0.0917040109634399,0.283359289169312,0,0.125476241111755,0.254048824310303,0,0.15634024143219,0.215863704681396,0,0.168752431869507,0.185629367828369,0,0.166390538215637,0.165019989013672,0.000479698181152344,0,-6.07967376708984e-06,0,0.00741666555404663,0.0185325145721436,0,0.0199999809265137,0.0999908447265625,0,0,-4.64916229248047e-06,0,0.00211912393569946,0.00816428661346436,0,0.0199999809265137,0.0999847650527954,0,0,-4.58955764770508e-06,0,-0.000686109066009521,0.000141739845275879,0,0.0199999809265137,0.0999847650527954,0,0,0.00477266311645508,0,0.0198195576667786,0.026484489440918,0,0.0610345602035522,0.235920667648315,0,0.0940465927124023,0.424496173858643,0,0.0923123359680176,0.413531064987183,0,0.0552965402603149,0.297423124313354,0,0.0610345602035522,0.293076753616333,0,0.0199999809265137,0.253825187683105,0,0.0312525033950806,0.262957096099854,0,0.0199999809265137,0.0999987125396729,0,0.03873610496521,0.230994462966919,0,0.0199999809265137,0.0999877452850342,0,0.0423910617828369,0.229442358016968,0,0.0777370929718018,0.277410984039307,0,0.0544322729110718,0.263275623321533,0,0.099763035774231,0.286029100418091,0,0.100000023841858, +0.243182897567749,0,0.097464919090271,0.243473529815674,0,0.0740594863891602,0.237645387649536,0,0.071816086769104,0.229446887969971,0,0.100000023841858,0.229449510574341,0,0,0.0286219120025635,0,0.0141246914863586,0.0441789627075195,0,0.094832181930542,0.256793022155762,0,0.0882402658462524,0.232730388641357,0,0.0929419994354248,0.229453563690186,0,0.0878140926361084,0.436149597167969,0.000123977661132813,0.0559799671173096,0.314321756362915,0,0.0134904384613037,0.117861747741699,0,0.00705611705780029,0.060289740562439,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0.00851058959960938,0.250736474990845,0.156147003173828,-0.0144195556640625,0.344099044799805,0.197043418884277,0,0.175024509429932,0.241936683654785,0.00196146965026855,0.197541952133179,0.257369041442871,0,0.363320589065552,0.296060562133789,0.0285332202911377,0.32060980796814,0.34233283996582,0,0.610493421554565,0.206000328063965,0.0401010513305664,0.578113555908203,0.30206298828125,0.0841460227966309,0.651404619216919,0.256318092346191,0,0.708309888839722,0.425711631774902,0,0.756303310394287,0.25572681427002,0,0.789532423019409,0.469202041625977,0,0.819888234138489,0.30653190612793,0,0.72809898853302,0.425552368164063,0,0.776386857032776,0.279592514038086,0,0.501426696777344,0.255244731903076,0,0.597012221813202,0.162715911865234,0,0.199398815631866,0.0667128562927246,0,0.285688757896423,0.0304265022277832,0,0.720053195953369,0.547023296356201,0,0.74214768409729,0.571880340576172,0,0.808605909347534,0.625621795654297,0,0.498356342315674,0.364551067352295,0.154631614685059,0.844466686248779,0.295870780944824,0,0.732550144195557,0.646092891693115,0,0.818905115127563,0.724274635314941,0,0.732923984527588,0.643249034881592,0,0.79356050491333,0.751604080200195,0,0.706692218780518,0.671451091766357,0,0.724737167358398,0.68503999710083,0.128349781036377,0.796257495880127,0.301641941070557,0.120188236236572,0.377138614654541,0.389564514160156,0,0.590972423553467,0.590951919555664,0,0.70997142791748,0.698229312896729,0,0.73881196975708,0.726625919342041, +-0.0284929275512695,0.170897483825684,0.257709503173828,0,0.312698841094971,0.312702178955078,0,0.450172424316406,0.450164318084717,0,0.183678150177002,0.183680534362793,0,0.145829200744629,0.145834922790527,0,0.012782096862793,0.0127763748168945,0,0.0641012191772461,0.0641098022460938,0,0.040924072265625,0.0409202575683594,0,0.00790977478027344,0.00790214538574219,0,0.00108146667480469,0.00107765197753906,0,0.566425800323486,0.566432476043701,0,0.634742736816406,0.634739875793457,0,0.058074951171875,0.0580766201019287,0,0.247834205627441,0.247835636138916,0,0.44639253616333,0.446391105651855,0,0.637979030609131,0.637984752655029,0,0.0464558601379395,0.04644775390625,0,0.235540866851807,0.235541343688965,0,0.465264797210693,0.465257167816162,0,0.559603214263916,0.559608459472656,0,0.645765781402588,0.645771980285645,0,0.401989459991455,0.401984930038452,0,0.452390909194946,0.452389240264893,0,0.494573831558228,0.471117496490479,0,0.501083374023438,0.435564994812012,0,0.213491916656494,0.213487386703491,0,0.241825819015503,0.24182653427124,0,0.227441310882568,0.227444648742676,0,0.233962774276733,0.201238870620728,0,0.223219275474548,0.151006698608398,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0, +0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,3.96817922592163e-05,4.57763671875e-05,0,0.000466920435428619,0.000459671020507813,0,0.000103771686553955,0.000103950500488281,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,0.0226364135742188,0,0,0.0552688241004944,0,-0.0020442008972168,0.126040577888489,-0.00647926330566406,0.000676631927490234,0.210137963294983,0.0100793838500977,0.00312042236328125,0.274165272712708,0.011932373046875,-0.000406742095947266,0.34236752986908,0.0237598419189453,-0.0237593650817871,0.367411732673645,0.0458641052246094,-0.0117788314819336,0.347425818443298,0.0448651313781738,-0.0675268173217773,0.289352416992188,0.0308055877685547,-0.0162677764892578,0.16912841796875,0.0201258659362793,0,0.0786499381065369,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,0.037646472454071,0,0,0.0778884887695313,0.00159406661987305,-0.000454902648925781,0.121151734143496,0.00970458984375,0,0.149458304047585,0.0168819427490234,0,0.154101550579071,0.0146684646606445,0,0.140580713748932,0.00717926025390625,0,0.114933788776398,0.000848770141601563,1.52587890625e-05,0.0828307867050171,-3.14712524414063e-05, +0,0.0519378781318665,0,0,0.0281478762626648,0,0,0.0124145448207855,0,0,0.00284118950366974,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,0.113494873046875,0.0001373291015625,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,0.00354146957397461,0.0035322904586792,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.814697265625e-05,3.44514846801758e-05,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,0.00470590591430664,0.00470209121704102,0,0.0348846912384033,0.0348873138427734,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.00231170654296875,0.00231665372848511,0,0.0138809680938721,0.0138884782791138,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0, +-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,0.0199539661407471,0.0199553966522217,0,0.0264022350311279,0.0264006853103638,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,0.00271916389465332,0.00271803140640259,0,0.00397491455078125,0.00396817922592163,0,0.00499272346496582,0.00500035285949707,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,0.00308370590209961,0.00308513641357422,0,-6.19888305664063e-06,0,0,9.00030136108398e-05,8.02278518676758e-05,0,0.019775390625,0.0197718143463135,0,0.000436365604400635,0.000435829162597656,0,0.0632720962166786,0.00306224822998047, +0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.11570405960083,0.115694999694824,0,0.0984954833984375,0.098491907119751,0,0.0666244029998779,0.0666210651397705,0,0.04841148853302,0.0484087467193604,0,0.0756164193153381,0.032548189163208,0,0.00139617919921875,0.00139927864074707,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.001953125,0.00194966793060303,0,0.0414900779724121,0.0414818525314331,0,0.0817303657531738,0.0817365646362305,0,0.102120876312256,0.102127432823181,0,0.0428450107574463,0.0428465604782104,0,0.0418884754180908,0.0418946743011475,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06, +0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0686224699020386,0.131339311599731,0,0.0803417563438416,0.140960931777954,0,0.0946940779685974,0.149560451507568,0,0.104705691337585,0.142169237136841,0,0.109913229942322,0.146900415420532,0,0.115104675292969,0.159123420715332,0,0.0611746311187744,0.129290580749512,0,0.0532138347625732,0.129290580749512,0,0.0504551529884338,0.00510430335998535,0,0.0479691624641418,0.00735092163085938,0,0.052191436290741,0.00653171539306641,0,0.0658787488937378,0.00151586532592773,0,0.0840401649475098,9.5367431640625e-06,0,0.0992790460586548,0.00682330131530762,0,0.113266706466675,0.0306658744812012,0,0.0678815245628357,0.129284381866455,0,0.079240620136261,0.129491090774536,0,0.0907720923423767,0.129478216171265,0,0.102042198181152,0.13684606552124,0,0.0595511794090271,0.129290580749512,0,-0.00674924254417419,-0.00326251983642578,-0.138082504272461,0.092125415802002,0.8501296043396,-1.13014602661133,0.142074108123779,0.937809944152832,-1.20134019851685,0.123252630233765,0.654169082641602,-0.926348686218262,0.0559718608856201,0.787017822265625,-1.03789234161377,0.107673525810242,0.406932353973389,-0.765750885009766,-0.0166324973106384,0.0922679901123047,-0.741513252258301,-0.00344139337539673,-0.0169658660888672,-0.407352447509766,0.148383378982544,0.842872142791748,-1.18830633163452,0.297156095504761,0.756353855133057,-1.20088815689087,0.30971097946167,0.580183029174805,-1.17550230026245,0.347258567810059,0.196982860565186,-0.814088821411133,0.285465478897095,0.0538492202758789,-0.665604591369629,0.276171922683716,-0.0137624740600586,-0.410099983215332,0.227282643318176,-0.0408000946044922,-0.275561332702637,0.110105633735657,-0.0171394348144531,-0.238299369812012,0,0,0.0628519058227539,0,0,0.0505285263061523,0,0,0.0454206466674805,0.107136756181717,0.119833946228027,-0.0525178909301758,0.130377471446991,0.200599193572998, +-0.152209281921387,0.149489760398865,0.295027732849121,-0.310447692871094,0.253184676170349,0.462238788604736,-0.387774467468262,0.425948739051819,0.745505809783936,-0.602468490600586,0.528151035308838,0.938767910003662,-0.834512710571289,0.492781639099121,1.07602024078369,-1.08432006835938,0.320883512496948,1.12324237823486,-1.07913398742676,0.382086515426636,1.19590950012207,-1.18410778045654,0.4806227684021,1.03061532974243,-1.18275547027588,0.461478233337402,0.927089214324951,-1.08271789550781,0.373913049697876,0.797740936279297,-0.969921112060547,0.333985090255737,0.571910858154297,-0.817037582397461,0.335246801376343,0.493689060211182,-0.614094734191895,0.353063344955444,0.407426357269287,-0.571516036987305,0.28676700592041,0.278003215789795,-0.380960464477539,0.267441868782043,0.294036865234375,-0.262039184570313,0.179674208164215,0.199520587921143,-0.141022682189941,0.124505043029785,0.131499767303467,-0.0527372360229492,0.0557845234870911,0.0366582870483398,-0.0273752212524414,0.105253517627716,0.163015842437744,-0.111342430114746,0.11329460144043,0.288881301879883,-0.294978141784668,0.175743460655212,0.531348705291748,-0.376167297363281,0.323932290077209,0.874509334564209,-0.63753604888916,0.383604526519775,1.08052539825439,-0.814425468444824,0.324109792709351,1.30893468856812,-0.907532691955566,0.0459296703338623,1.35073900222778,-0.968086242675781,0.0832781791687012,1.1246452331543,-1.09744834899902,0.440655946731567,0.8722243309021,-1.06291961669922,0.371651411056519,0.650352954864502,-1.10626268386841,0.433174610137939,0.261968612670898,-0.664688110351563,0.340415477752686,0.00135946273803711,-0.433822631835938,0.351510047912598,-0.166252136230469,-0.245529174804688,0.249775528907776,-0.205191135406494,-0.0955390930175781,0.168144941329956,-0.206719875335693,-0.0158805847167969,-0.0277719497680664,-0.0340471267700195,0.081904411315918,-0.00919568538665771,-0.00837421417236328,0.0852508544921875,-0.000849455595016479,-0.0018916130065918,0.0795812606811523,0,5.96046447753906e-06,0,-0.274328470230103,0.0927848815917969, +-0.648492336273193,0,0.304619312286377,-0.875658988952637,-0.0547678470611572,0.143083095550537,-0.0654087066650391,-0.250402927398682,0.023106575012207,-0.40710973739624,0,0.0891194343566895,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,0.122697353363037,-0.896142959594727,0,0.248271942138672,-0.907111167907715,-0.0504250526428223,0.119516849517822,-0.842813014984131,0,-0.134779930114746,-0.488653659820557,-0.0878419876098633,2.86102294921875e-06,-0.317373752593994,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,0.059497594833374,-0.110101222991943,0,0.0478353500366211,-0.162425518035889,0,0.231618881225586,-0.251439094543457,0,0.122671604156494,-0.395650386810303,0,0.339669704437256,-0.513039112091064,0,0.0894670486450195,-0.276107311248779,0,3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06, +0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *5151 { + a: -0.361779465851725,0.701383203268051,-0.769705891609192,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763, +-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243, +1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116, +0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017, +-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695, +-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668, +-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385, +-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831, +-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004, +-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447, +-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043, +-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399, +-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099, +-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848, +-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891, +0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733, +0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762, +0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147, +0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.180295750498772,0.379578433930874,1.83726984262466,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773, +0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043, +0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245, +0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629, +-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698, +-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143, +0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567, +-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759, +-0.766009718179703,0.116848640143871,0.689910739660263,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434, +1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933, +1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301, +-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262, +-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583, +-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816, +0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879, +-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352, +-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101, +-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815, +0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266, +-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414, +0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578, +-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612, +0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328, +-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318, +0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007, +-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074, +0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146, +0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 + } + } + Geometry: 2805454333728, "Geometry::Mouth_Raiser_Right", "Shape" { + Version: 100 + Indexes: *7177 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971, +2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409,3410, +3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820, +3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243, +4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658,4659, +4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082, +5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497, +5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954, +5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6383,6384,6385,6386,6387,6410,6411,6412, +6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6444,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6567,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191, +7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7478,7480,7482,7483,7484,7485,7486,7487,7488,7489,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7649,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7826,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853, +7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8547,8548,8552,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741, +8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799 + } + Vertices: *21531 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, +0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, +0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, +0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, +4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, +-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05, +0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348, +0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699, +0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05, +0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05, +0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,-0.000269412994384766,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05, +0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699, +0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625, +0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05, +0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05, +0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0, +8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, +0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05, +0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05, +0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05, +0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05, +0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05, +0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05, +0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0, +0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,2.18749046325684e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, +0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0, +8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,-0.000228703022003174,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, +0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05, +0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05, +0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05, +0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05, +0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05, +0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, +0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05, +0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05, +0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0, +0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05, +0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05, +0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0, +0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781, +0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0, +0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05, +0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05, +0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0, +0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05, +0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0, +0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944, +0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05, +0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0, +0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578, +0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05, +0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, +8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05, +0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0, +0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0, +9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781, +0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0, +0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0, +0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05, +0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0, +0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0, +8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05, +0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803, +0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0, +0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, +0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05, +0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05, +0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,1.66221145432263e-29,0.0421245098114014,0,1.67509351823815e-29,0.00739669799804688,0,-0.069600671507942,0.00740814208984375,0.0133209228515625,-0.0696006715224939,0.0683817863464355,0.0133209228515625,-0.0766299366223393,0.0806794166564941,0.0133209228515625,-0.076629936673271,0.0654416084289551,0.0133209228515625,-0.069600671507942,0.00740337371826172,0.0133199691772461,-0.0766299367096508,0.0806884765625,0.0133209228515625,-0.069600671515218,0.007415771484375,0.0133218765258789,-0.076629936673271,0.088066577911377,0.0133209228515625,-0.0232002250850201,0.024627685546875,0.00497531890869141,-0.0255433134971099,0.0268921852111816,0.0742597579956055,-0.0464004501736781,0.0492429733276367,0.0437917709350586,-0.0510866270487895,0.0537962913513184,0.0437908172607422,1.63308522456914e-29,0.0110573768615723,0,1.31183529502049e-29,2.86102294921875e-06,0.0132322311401367,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,-2.98023223876953e-06,0,1.6494232794919e-29,6.09457492828369e-06,0,1.76704839760241e-29,-6.10947608947754e-06,0,1.76704839760241e-29,1.54972076416016e-06,0,1.76704839760241e-29,3.09944152832031e-06,0,1.63431706741717e-29,0.0273797512054443,0,1.63516402520287e-29,0.0232882499694824,0,1.63594763794899e-29,0.016993522644043,0,1.63467396630998e-29,0.0143084526062012,0,1.63873030579207e-29,0.0193789005279541,0,1.64724848328751e-29,0.0420000553131104,0,1.69452569998719e-29,-6.07967376708984e-06,0,1.70417235205941e-29,-3.09944152832031e-06,0,1.71227329488799e-29,-1.54972076416016e-06, +0,1.68687870486503e-29,4.52995300292969e-06,0,1.68150235105465e-29,0.000456094741821289,0,1.6823769940833e-29,3.03983688354492e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,1.20450953867742e-29,4.52995300292969e-06,0,1.25386284767183e-29,4.58955764770508e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,0.00030970573425293,0,0,-6.09457492828369e-06,0,0,0.000513523817062378,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,0.0980789661407471,0,0,0.0537068843841553,0,-0.109404057264328,0.00635051727294922,-0.041346549987793,-0.11065486073494,0.119833469390869,-0.0415019989013672,-0.577010154724121,1.1142578125,-1.19161701202393,-0.651964664459229,1.29945230484009,-1.18517398834229,-0.735210418701172,1.13890743255615,-0.985410690307617,-0.675071477890015,0.901994705200195,-1.19204711914063,-0.342523813247681,0.707215309143066,-0.515114784240723,-0.493984937667847,0.498385906219482,-0.652111053466797,-0.223673462867737,0.461632251739502,-0.318572998046875,-0.268253922462463,0.280452728271484,-0.440461158752441,-0.171403765678406,0.247918605804443,-0.249712944030762,-0.159429550170898,0.0912680625915527,-0.294137001037598,-0.171427130699158,0.133952617645264,-0.172199249267578,-0.147028148174286,0.023859977722168,-0.117494583129883,-0.628769874572754,0.701540946960449,-0.873368263244629,-0.58311915397644,0.895533561706543,-0.637057304382324,-0.675577163696289,1.28249168395996,-1.28822898864746,-0.63475775718689,1.17517137527466,-1.33303356170654,-0.720822334289551,1.28418254852295,-1.34038925170898,-0.598799467086792,1.18098497390747,-1.28858184814453, +-0.780187368392944,1.11220645904541,-1.20008563995361,-0.585318088531494,1.16025304794312,-1.21508598327637,-0.760005235671997,0.988587856292725,-1.06015682220459,-0.555883646011353,1.12059926986694,-1.09805297851563,-0.601967334747314,0.980047702789307,-1.12635231018066,-0.853413105010986,1.00761413574219,-0.970894813537598,-0.665758848190308,0.838160991668701,-0.998209953308105,-0.813811540603638,0.942248821258545,-0.811418533325195,-0.645570278167725,0.712018013000488,-0.585637092590332,-0.467674970626831,0.649681568145752,-0.566285133361816,-0.453079462051392,0.466160297393799,-0.448667526245117,-0.407931327819824,0.493937015533447,-0.43466854095459,-0.292707443237305,0.305967807769775,-0.258566856384277,-0.266164898872375,0.294405937194824,-0.254031181335449,-0.202662706375122,0.214481830596924,-0.140233993530273,-0.180864691734314,0.201183795928955,-0.13611888885498,-0.128797709941864,0.135787963867188,-0.0486831665039063,-0.12524539232254,0.125740051269531,-0.04803466796875,-0.165018856525421,0.116413116455078,-0.0414524078369141,-0.202110588550568,0.189950466156006,-0.123610496520996,-0.218051195144653,0.236100673675537,-0.218132972717285,-0.317160964012146,0.455863475799561,-0.354351043701172,-0.438881635665894,0.712942123413086,-0.524405479431152,-0.640413999557495,0.933218002319336,-0.701214790344238,-0.791547060012817,1.15863513946533,-1.06826019287109,-0.673439979553223,1.29688930511475,-1.17191028594971,-0.705334901809692,1.27984809875488,-1.2864933013916,-0.734445810317993,1.28334712982178,-1.34778022766113,-0.765701532363892,1.22369050979614,-1.28171634674072,-0.834775924682617,1.16091203689575,-1.14033126831055,-0.920666933059692,1.09050607681274,-1.01376724243164,-0.914159536361694,0.954336643218994,-0.901653289794922,-0.671274185180664,0.692586421966553,-0.641805648803711,-0.490262627601624,0.467108249664307,-0.418026924133301,-0.328195452690125,0.292797565460205,-0.254822731018066,-0.245367348194122,0.203634738922119,-0.137659072875977,-0.182820320129395,0.135326862335205,-0.0485391616821289,-0.109731942415237, +0.00693893432617188,-0.0413904190063477,-0.146625280380249,0.0206613540649414,-0.118207931518555,-0.174119710922241,0.136242389678955,-0.228367805480957,-0.287082552909851,0.361271381378174,-0.363458633422852,-0.473078846931458,0.600516319274902,-0.54026985168457,-0.676203489303589,0.840977668762207,-0.759921073913574,-0.777013301849365,0.999681949615479,-1.07364940643311,-0.644418239593506,1.16472482681274,-1.09964752197266,-0.65627908706665,1.20963764190674,-1.22374153137207,-0.72022271156311,1.23949432373047,-1.29627990722656,-0.755663394927979,1.24152612686157,-1.27911281585693,-0.78368067741394,1.20311784744263,-1.1577320098877,-0.783309936523438,1.0578408241272,-1.14925575256348,-0.802698373794556,0.912711143493652,-0.957178115844727,-0.620769500732422,0.705772876739502,-0.606789588928223,-0.431336641311646,0.49042797088623,-0.417122840881348,-0.267547607421875,0.291525363922119,-0.253942489624023,-0.183407783508301,0.200567722320557,-0.136415481567383,-0.126437455415726,0.13662052154541,-0.0482444763183594,-0.0360139012336731,0.0395994186401367,-0.0118923187255859,-0.051430344581604,0.0621609687805176,-0.0296230316162109,-0.0532042980194092,0.0991911888122559,-0.0663909912109375,-0.068458080291748,0.162514686584473,-0.115501403808594,-0.162719249725342,0.410398960113525,-0.208106994628906,-0.270444631576538,0.551486015319824,-0.251461982727051,-0.478776693344116,0.766640663146973,-0.612368583679199,-0.479750394821167,1.08522367477417,-1.01621150970459,-0.482890844345093,1.3445029258728,-1.05967712402344,-0.550342798233032,1.30738687515259,-1.07348251342773,-0.64227294921875,0.792848110198975,-0.839774131774902,-0.516250371932983,0.503678798675537,-0.50274658203125,-0.388018608093262,0.488545894622803,-0.21129322052002,-0.302158117294312,0.423520088195801,-0.202205657958984,-0.0429326295852661,0.0452742576599121,0.0535917282104492,-0.0693684816360474,0.0746598243713379,0.0225582122802734,-0.105386018753052,0.117594718933105,-0.0187616348266602,-0.153674125671387,0.179139614105225,-0.139959335327148,-0.212814331054688, +0.264853000640869,-0.240682601928711,-0.0738129317760468,0.0799012184143066,0.00723648071289063,-0.162980318069458,0.119552612304688,-0.141581535339355,-0.123478889465332,0.220269680023193,-0.199660301208496,-0.190977931022644,0.40557336807251,-0.279606819152832,-0.30392861366272,0.672940731048584,-0.471795082092285,-0.518782615661621,0.928863525390625,-0.515346527099609,-0.651650190353394,1.17559814453125,-0.84105110168457,-0.638954401016235,1.33206415176392,-1.1961784362793,-0.671753406524658,1.32497882843018,-1.2897777557373,-0.709600448608398,1.29039812088013,-1.32439422607422,-0.753500699996948,0.96449613571167,-1.09985065460205,-0.735458135604858,0.833239555358887,-0.943358421325684,-0.690157413482666,0.791527271270752,-0.721676826477051,-0.668200492858887,0.767022609710693,-0.585491180419922,-0.570119857788086,0.574554443359375,-0.516372680664063,-0.30520236492157,0.336688995361328,-0.323385238647461,-0.207812428474426,0.222201347351074,-0.140748023986816,-0.138684511184692,0.148377895355225,-0.0595273971557617,-0.0858651101589203,0.0905394554138184,0.00245475769042969,-0.00985977053642273,0.0285630226135254,0,-0.0273736715316772,0.0221238136291504,0,-0.0124967098236084,0.0326979160308838,0.000164031982421875,0.00385177135467529,0.15786600112915,0.000667572021484375,0.00200724601745605,0.208488464355469,-0.00113773345947266,-0.0959780216217041,0.381638765335083,-0.311526298522949,-0.311861753463745,0.6244797706604,-0.43171501159668,-0.366658687591553,1.08328342437744,-0.648689270019531,-0.00522279739379883,0.0829877853393555,0.0881490707397461,-0.13139820098877,0.211676120758057,-0.113384246826172,-0.351564407348633,0.668519496917725,-0.275273323059082,-0.28621244430542,1.17311573028564,-0.357152938842773,-0.37065052986145,1.18894910812378,-0.553585052490234,0,0,0.0141019821166992,0,0,0.0166645050048828,0,0,0.00992870330810547,0,0,0.000542640686035156,-0.0393860340118408,0.141563892364502,0.0782108306884766,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06, +0,0,3.09944152832031e-06,0,0,4.05311584472656e-06,9.5367431640625e-07,0,-4.52995300292969e-06,0,0,2.38418579101563e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,-4.76837158203125e-07,0,0.120375096797943,9.25064086914063e-05,0,0.144842565059662,0.000103473663330078,-0.00714349746704102,0.379486083984375,-0.00335121154785156,-0.00373125076293945,0.545555114746094,0.106529712677002,-0.00739955902099609,0.4706130027771,0.0239486694335938,0,0.685157716274261,0.180377960205078,-0.00619411468505859,0.456957936286926,0.0373802185058594,0,0.650361657142639,0.141945838928223,0.0015866756439209,0.277819752693176,0.00592899322509766,0,0.40487802028656,0.0621328353881836,0,0.0759490728378296,0,0,0.0753723382949829,0,0,0.0290725827217102,0,0.00152325630187988,0.0247269868850708,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,-5.57899475097656e-05,0.278158582746983,0.0129108428955078,0,0.37528076954186,0.0232467651367188,0,0.707083106040955,0.180951118469238,0.00357770919799805,0.488700866699219,0.0616827011108398,0,0.534188747406006,0.0881557464599609,-0.0109705924987793,0.383941650390625,0.0203123092651367,0,0.187425255775452,0.0332279205322266,0.000374078750610352,0.157466053962708,-0.000298500061035156,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.0812101364135742,0.0812087059020996,0,0.0385951995849609,0.0386033058166504,0,0.35653018951416,0.356534957885742,0,0.06097412109375,0.0609786510467529,0,0.48246431350708,0.482460498809814,0,0.002197265625,0.00219053030014038,0,0.283894062042236,0.283892869949341,0,0.164848327636719,0.164837598800659,0,0.010859489440918,0.0108604431152344,0,0.225071907043457,0.225070476531982,0,0.0221662521362305,0.022168755531311,0,0.400735378265381,0.400734424591064,0,0.022221565246582,0.0222148895263672,0,0.103660583496094,0.103664398193359, +0,0.192276954650879,0.192270278930664,0,0.254675388336182,0.254682540893555,0,0.186977863311768,0.186983585357666,0,0.120741367340088,0.120741128921509,0,0.0624985694885254,0.0624922513961792,-0.0999999046325684,0.410187959671021,0,-0.0999999046325684,0.236515283584595,0,-0.162853717803955,0.268378019332886,0,-0.162853717803955,0.377988338470459,0,-0.162506341934204,0.248990774154663,-0.000658035278320313,-0.100000023841858,0.230084419250488,0,-0.100000023841858,0.271437883377075,0,-0.163744807243347,0.290322303771973,-0.000491142272949219,-0.00406110286712646,0.0789573192596436,0,-0.014385461807251,0.255821466445923,0,-0.0999999046325684,0.265031576156616,-0.00277328491210938,-0.0999999046325684,0.420051336288452,0,-0.0405309200286865,0.439738750457764,0.109830856323242,-0.162686824798584,0.419004201889038,0.139925956726074,-0.2295241355896,0.542010307312012,0.0779399871826172,-0.330397605895996,0.919257164001465,-0.0116300582885742,-0.294425010681152,0.811666965484619,0.0427913665771484,-0.157881736755371,0.365872859954834,0.11107063293457,0.0398588180541992,0.177743434906006,0.120985984802246,-0.000526189804077148,0.0747222900390625,0.0753364562988281,-0.0093543529510498,0.0254364013671875,0.0364246368408203,-0.0430151522159576,0.0315632820129395,0,-0.0209885537624359,0.0359420776367188,0,-0.0348715484142303,0.03594970703125,0,-0.0489092767238617,0.0331461429595947,0,-0.041869729757309,0.0412425994873047,0,-0.0152446925640106,0.0377686023712158,0,-0.0454334914684296,0.0618398189544678,0,-0.0150698721408844,0.0638890266418457,0,-0.057433545589447,0.0652675628662109,0,-0.0196424424648285,0.0703232288360596,0,-0.0667752623558044,0.0528552532196045,0,-0.0479891300201416,0.0641906261444092,0,-0.122839212417603,0.192924022674561,0.0151157379150391,-0.116623759269714,0.259340524673462,0.0159435272216797,-0.151784062385559,0.193490505218506,0.00856685638427734,-0.1623375415802,0.263237476348877,-0.00216388702392578,-0.163622617721558,0.179462671279907,0.00551033020019531,-0.165335536003113,0.227160453796387,-0.00662994384765625, +-0.162202835083008,0.169953107833862,0,-0.121521353721619,0.255175590515137,0,-0.0907981395721436,0.00604057312011719,0,-0.0651452541351318,0.0447161197662354,0,-0.0573937296867371,0.0166680812835693,0,-0.0628357529640198,0.016005277633667,0,-0.111344695091248,0.0330820083618164,0,-0.0889623165130615,0.0943939685821533,0,-0.0401086211204529,0.0348308086395264,0,-0.0382111072540283,0.0445799827575684,0,-0.0405855476856232,0.0686328411102295,0,-0.0538530349731445,0.0719857215881348,0,-0.067048966884613,0.0582754611968994,0,-0.127467453479767,0.2298583984375,0.0203866958618164,-0.16060471534729,0.219604253768921,0.00880336761474609,-0.171759247779846,0.195117473602295,0.00356292724609375,-0.163466691970825,0.195428371429443,0,-0.112754821777344,0.0538473129272461,0,-0.0902532935142517,0.0127358436584473,0,-0.0643498301506042,0.0170843601226807,0,-0.047791600227356,0.0353140830993652,0,-0.0441147089004517,0.0359435081481934,0,-0.0629429221153259,0.0172994136810303,0,-0.0821250081062317,0.019451379776001,0,-0.104676008224487,0.0716896057128906,0,-0.151944279670715,0.220437526702881,0,-0.174617409706116,0.209667921066284,-0.00084686279296875,-0.164431691169739,0.239760875701904,0.00404834747314453,-0.124161064624786,0.238654851913452,0.0195045471191406,-0.0621252655982971,0.0596387386322021,0,-0.0472608208656311,0.0744917392730713,0,-0.0352332592010498,0.0696706771850586,0,-0.0311589241027832,0.0434043407440186,0,-0.0337567925453186,0.0359435081481934,0,-0.0103150010108948,0.0329136848449707,0,-0.0189869403839111,0.0666244029998779,0,-0.100939512252808,0.294716835021973,0.00936031341552734,-0.0692451000213623,0.28000283241272,6.96182250976563e-05,-0.000391244888305664,0.0713791847229004,0,-0.180607318878174,0.313431978225708,0.00115489959716797,-0.15175187587738,0.295029163360596,-0.0108089447021484,-0.145132422447205,0.24541187286377,-0.0143833160400391,-0.169746279716492,0.26386570930481,-0.00206947326660156,-0.169936060905457,0.174321889877319,0.00407218933105469,-0.17670202255249,0.181179285049438,0.00182437896728516, +-0.168173313140869,0.193114519119263,0.000481605529785156,-0.149486660957336,0.213171482086182,1.1444091796875e-05,-0.12571656703949,0.23421311378479,0,-0.157601594924927,0.263725996017456,0.0133800506591797,-0.0845487117767334,0.307615995407104,0,-0.105027079582214,0.362545490264893,0,-0.0471242666244507,0.194660663604736,0,-0.0650398731231689,0.263664960861206,0,-0.0239908695220947,0.176133394241333,9.5367431640625e-06,-0.0633293390274048,0.270389556884766,-0.000301361083984375,-0.0931510925292969,0.257895469665527,-0.0111618041992188,-0.094136118888855,0.425754547119141,-0.000995635986328125,-0.0999999046325684,0.294389247894287,0,-0.162853717803955,0.338751554489136,0,-0.153993129730225,0.330218553543091,0.0133800506591797,-0.0917040109634399,0.283359289169312,0,-0.125476241111755,0.254048824310303,0,-0.15634024143219,0.215863704681396,0,-0.168752431869507,0.185629367828369,0,-0.166390538215637,0.165019989013672,0.000479698181152344,0,-6.07967376708984e-06,0,-0.00741666555404663,0.0185325145721436,0,-0.0199999809265137,0.0999908447265625,0,0,-4.64916229248047e-06,0,-0.00211912393569946,0.00816428661346436,0,-0.0199999809265137,0.0999847650527954,0,0,-4.58955764770508e-06,0,0.000686109066009521,0.000141739845275879,0,-0.0199999809265137,0.0999847650527954,0,0,0.00477266311645508,0,-0.0198195576667786,0.026484489440918,0,-0.0610345602035522,0.235920667648315,0,-0.0940465927124023,0.424496173858643,0,-0.0923123359680176,0.413531064987183,0,-0.0552965402603149,0.297423124313354,0,-0.0610345602035522,0.293076753616333,0,-0.0199999809265137,0.253825187683105,0,-0.0312525033950806,0.262957096099854,0,-0.0199999809265137,0.0999987125396729,0,-0.03873610496521,0.230994462966919,0,-0.0199999809265137,0.0999877452850342,0,-0.0423910617828369,0.229442358016968,0,-0.0777370929718018,0.277410984039307,0,-0.0544322729110718,0.263275623321533,0,-0.099763035774231,0.286029100418091,0,-0.100000023841858,0.243182897567749,0,-0.097464919090271,0.243473529815674,0,-0.0740594863891602,0.237645387649536,0,-0.071816086769104,0.229446887969971, +0,-0.100000023841858,0.229449510574341,0,0,0.0286219120025635,0,-0.0141246914863586,0.0441789627075195,0,-0.094832181930542,0.256793022155762,0,-0.0882402658462524,0.232730388641357,0,-0.0929419994354248,0.229453563690186,0,-0.0878140926361084,0.436149597167969,0.000123977661132813,-0.0559799671173096,0.314321756362915,0,-0.0134904384613037,0.117861747741699,0,-0.00705611705780029,0.060289740562439,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,-0.00851058959960938,0.250736474990845,0.156147003173828,0.0144195556640625,0.344099044799805,0.197043418884277,0,0.175024509429932,0.241936683654785,-0.00196146965026855,0.197541952133179,0.257369041442871,0,0.363320589065552,0.296060562133789,-0.0285332202911377,0.32060980796814,0.34233283996582,0,0.610493421554565,0.206000328063965,-0.0401010513305664,0.578113555908203,0.30206298828125,-0.0841460227966309,0.651404619216919,0.256318092346191,0,0.708309888839722,0.425711631774902,0,0.756303310394287,0.25572681427002,0,0.789532423019409,0.469202041625977,0,0.819888234138489,0.30653190612793,0,0.72809898853302,0.425552368164063,0,0.776386857032776,0.279592514038086,0,0.501426696777344,0.255244731903076,0,0.597012221813202,0.162715911865234,0,0.199398815631866,0.0667128562927246,0,0.285688772797585,0.0304265022277832,0,0.720053195953369,0.547023296356201,0,0.74214768409729,0.571880340576172,0,0.808605909347534,0.625621795654297,0,0.498356342315674,0.364551067352295,-0.154631614685059,0.844466686248779,0.295870780944824,0,0.732550144195557,0.646092891693115,0,0.818905115127563,0.724274635314941,0,0.732923984527588,0.643249034881592,0,0.79356050491333,0.751604080200195,0,0.706692218780518,0.671451091766357,0,0.724737167358398,0.68503999710083,-0.128349781036377,0.796257495880127,0.301641941070557,-0.120188236236572,0.377138614654541,0.389564514160156,0,0.590972423553467,0.590951919555664,0,0.70997142791748,0.698229312896729,0,0.73881196975708,0.726625919342041,0.0284929275512695,0.170897483825684,0.257709503173828,0,0.312698841094971,0.312702178955078,0,0.450172424316406, +0.450164318084717,0,0.183678150177002,0.183680534362793,0,0.145829200744629,0.145834922790527,0,0.012782096862793,0.0127763748168945,0,0.0641012191772461,0.0641098022460938,0,0.040924072265625,0.0409202575683594,0,0.00790977478027344,0.00790214538574219,0,0.00108146667480469,0.00107765197753906,0,0.566425800323486,0.566432476043701,0,0.634742736816406,0.634739875793457,0,0.058074951171875,0.0580766201019287,0,0.247834205627441,0.247835636138916,0,0.44639253616333,0.446391105651855,0,0.637979030609131,0.637984752655029,0,0.0464558601379395,0.04644775390625,0,0.235540866851807,0.235541343688965,0,0.465264797210693,0.465257167816162,0,0.559603214263916,0.559608459472656,0,0.645765781402588,0.645771980285645,0,0.401989459991455,0.401984930038452,0,0.452390909194946,0.452389240264893,0,0.494573831558228,0.471117496490479,0,0.501083374023438,0.435564994812012,0,0.213491916656494,0.213487386703491,0,0.241825819015503,0.24182653427124,0,0.227441310882568,0.227444648742676,0,0.233962774276733,0.201238870620728,0,0.223219275474548,0.151006698608398,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,0.000113487243652344,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,-3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,0.000143557786941528,0,1.19209289550781e-06,-1.39474868774414e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,0.000310592353343964,0,0,0.000773891806602478,0,0,0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.49011611938477e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06, +0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,-9.29832458496094e-05,-5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.49011611938477e-06,0,0,-6.07967376708984e-06,0,0,3.96817922592163e-05,4.57763671875e-05,0,0.000466920435428619,0.000459671020507813,0,0.000103771686553955,0.000103950500488281,0,4.55975532531738e-06,0,0,0.0001564621925354,-0.000370025634765625,0,0.000211834907531738,0,0,8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,8.0108642578125e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,0.0226364135742188,0,0,0.0552688241004944,0,0.0020442008972168,0.126040577888489,-0.00647926330566406,-0.000676631927490234,0.210137963294983,0.0100793838500977,-0.00312709808349609,0.274137377738953,0.0119400024414063,0.000406742095947266,0.34236752986908,0.0237598419189453,0.0237593650817871,0.367411732673645,0.0458641052246094,0.0117788314819336,0.347425818443298,0.0448651313781738,0.0675268173217773,0.289352416992188,0.0308055877685547,0.0162677764892578,0.16912841796875,0.0201263427734375,0,0.0786499381065369,4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,4.76837158203125e-07,0,-6.07967376708984e-06,4.76837158203125e-07,-4.76837158203125e-07,-6.31809234619141e-06,0,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,9.5367431640625e-07,4.29153442382813e-06,-5.96046447753906e-06,-2.86102294921875e-06, +-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-0.000197052955627441,0,0,-3.21865081787109e-06,0,0,0.0376464128494263,0,0,0.0778884887695313,0.00159406661987305,0.000454902648925781,0.121151734143496,0.00970458984375,0,0.149458304047585,0.0168819427490234,0,0.154101550579071,0.0146684646606445,0,0.140580713748932,0.00717926025390625,-3.814697265625e-06,0.114898264408112,0.000853538513183594,-1.52587890625e-05,0.0828307867050171,-3.14712524414063e-05,0,0.0519378781318665,0,0,0.0281478762626648,0,0,0.0124145448207855,0,0,0.00284118950366974,0,-7.51018524169922e-06,-6.05583190917969e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030672550201416,-2.57492065429688e-05,0.000108718872070313,-0.000706672668457031,-9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,0.113494873046875,0.0001373291015625,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,0.00354146957397461,0.0035322904586792,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.814697265625e-05,3.44514846801758e-05,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06, +0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,0.00470590591430664,0.00470209121704102,0,0.0348846912384033,0.0348873138427734,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.00231170654296875,0.00231665372848511,0,0.0138809680938721,0.0138884782791138,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,0.0199539661407471,0.0199553966522217,0,0.0264022350311279,0.0264006853103638,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,0.00271916389465332,0.00271803140640259,0,0.00397491455078125,0.00396817922592163,0,0.00499272346496582,0.00500035285949707,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06, +0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,0.00308370590209961,0.00308513641357422,0,-6.19888305664063e-06,0,0,9.00030136108398e-05,8.02278518676758e-05,0,0.019775390625,0.0197718143463135,0,0.000436365604400635,0.000435829162597656,0,0.0632720962166786,0.00306224822998047,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.11570405960083,0.115694999694824,0,0.0984954833984375,0.098491907119751,0,0.0666244029998779,0.0666210651397705,0,0.04841148853302,0.0484087467193604,0,0.0756164193153381,0.032548189163208,0,0.00139617919921875,0.00139927864074707,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.001953125,0.00194966793060303,0,0.0414900779724121,0.0414818525314331,0,0.0817303657531738,0.0817365646362305,0,0.102120876312256,0.102127432823181,0,0.0428450107574463,0.0428465604782104,0,0.0418884754180908,0.0418946743011475,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06, +0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0686224699020386,0.131339311599731,0,-0.0803417563438416,0.140960931777954,0,-0.0946940779685974,0.149560451507568,0,-0.104705691337585,0.142169237136841,0,-0.109913229942322,0.146900415420532,0,-0.115104675292969,0.159123420715332,0,-0.0611746311187744,0.129290580749512,0,-0.0532138347625732,0.129290580749512,0,-0.0504551529884338,0.00510430335998535,0,-0.0479691624641418,0.00735092163085938,0,-0.052191436290741,0.00653171539306641,0,-0.0658787488937378,0.00151586532592773,0,-0.0840401649475098,9.5367431640625e-06,0,-0.0992790460586548,0.00682330131530762,0,-0.113266706466675,0.0306658744812012,0,-0.0678815245628357,0.129284381866455,0,-0.079240620136261,0.129491090774536,0,-0.0907720923423767,0.129478216171265,0,-0.102042198181152,0.13684606552124,0,-0.0595511794090271,0.129290580749512,0,0.000458705870187259,-0.000176906585693359,6.38961791992188e-05,-7.27595761418343e-12,-4.76837158203125e-06,0.0449857711791992,0.00674924254417419,-0.00326251983642578,-0.138082504272461,-0.092125415802002,0.8501296043396,-1.13014602661133,-0.142074108123779,0.937809944152832,-1.20134019851685,-0.123252630233765,0.654169082641602, +-0.926348686218262,-0.0559718608856201,0.787017822265625,-1.03789234161377,-0.107673525810242,0.406932353973389,-0.765750885009766,0.0166324973106384,0.0922679901123047,-0.741513252258301,0.00344139337539673,-0.0169658660888672,-0.407352447509766,-0.148383378982544,0.842872142791748,-1.18830633163452,-0.297156095504761,0.756353855133057,-1.20088815689087,-0.30971097946167,0.580183029174805,-1.17550230026245,-0.347258567810059,0.196982860565186,-0.814088821411133,-0.285465478897095,0.0538492202758789,-0.665604591369629,-0.276171922683716,-0.0137624740600586,-0.410099983215332,-0.227282643318176,-0.0408000946044922,-0.275561332702637,-0.110105633735657,-0.0171394348144531,-0.238299369812012,0,0,0.0628519058227539,0,0,0.0505285263061523,0,0,0.0454206466674805,-0.069600671507942,0.0504183769226074,-0.000292778015136719,-0.107136756181717,0.119833946228027,-0.0525178909301758,-0.13037770986557,0.200599193572998,-0.152209281921387,-0.149489521980286,0.295027732849121,-0.310447692871094,-0.253185391426086,0.462238788604736,-0.387774467468262,-0.425949215888977,0.745505809783936,-0.602468490600586,-0.528150320053101,0.938767910003662,-0.834512710571289,-0.492782592773438,1.07602024078369,-1.08432006835938,-0.320883512496948,1.12324237823486,-1.07913398742676,-0.382085800170898,1.19590950012207,-1.18410778045654,-0.480622529983521,1.03061532974243,-1.18275547027588,-0.461478471755981,0.927089214324951,-1.08271789550781,-0.373913049697876,0.797740936279297,-0.969921112060547,-0.333985567092896,0.571910858154297,-0.817037582397461,-0.335246801376343,0.493689060211182,-0.614094734191895,-0.353063106536865,0.407426357269287,-0.571516036987305,-0.286767244338989,0.278003215789795,-0.380960464477539,-0.267441868782043,0.294036865234375,-0.262039184570313,-0.17967414855957,0.199520587921143,-0.141022682189941,-0.12450510263443,0.131499767303467,-0.0527372360229492,-0.076629936673271,0.0753226280212402,0.008575439453125,4.36557456851006e-11,-0.00189733505249023,0.0750246047973633,-0.0557844340801239,0.0366582870483398,-0.0273752212524414, +-0.105253994464874,0.163015842437744,-0.111342430114746,-0.113294124603271,0.288881301879883,-0.294978141784668,-0.175743341445923,0.531348705291748,-0.376167297363281,-0.323931455612183,0.874509334564209,-0.63753604888916,-0.383604049682617,1.08052539825439,-0.814425468444824,-0.324109792709351,1.30893468856812,-0.907532691955566,-0.0459282398223877,1.35073900222778,-0.968086242675781,-0.0832779407501221,1.1246452331543,-1.09744834899902,-0.44065523147583,0.8722243309021,-1.06291961669922,-0.371651887893677,0.650352954864502,-1.10626268386841,-0.433173656463623,0.261968612670898,-0.664688110351563,-0.340415954589844,0.00135946273803711,-0.433822631835938,-0.351510763168335,-0.166252136230469,-0.245529174804688,-0.249775886535645,-0.205191135406494,-0.0955390930175781,-0.168144941329956,-0.206719875335693,-0.0158805847167969,0.0277719497680664,-0.0340471267700195,0.081904411315918,0.00919538736343384,-0.00837421417236328,0.0852508544921875,0.000849723815917969,-0.0018916130065918,0.0795812606811523,2.98459781333804e-08,-0.0078129768371582,0.0794687271118164,0,5.96046447753906e-06,0,0.274328470230103,0.0927848815917969,-0.648492336273193,0,0.304619312286377,-0.875658988952637,0.0547678470611572,0.143083095550537,-0.0654087066650391,0.250402927398682,0.023106575012207,-0.40710973739624,0,0.0891194343566895,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,0.122697353363037,-0.896142959594727,0,0.248271942138672,-0.907111167907715,0.0504250526428223,0.119516849517822,-0.842813014984131,0,-0.134779930114746,-0.488653659820557,0.0878419876098633,2.86102294921875e-06,-0.317373752593994,1.53641994185809e-29,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,1.69348870708276e-29,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,0.059497594833374,-0.110101222991943,0,0.0478353500366211,-0.162425518035889,0,0.231618881225586,-0.251439094543457,0,0.122671604156494, +-0.395650386810303,0,0.339669704437256,-0.513039112091064,0,0.0894670486450195,-0.276107311248779,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-0.000312685966491699,0,0,-6.09457492828369e-06,0,0,-0.000525712966918945,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,9.39369201660156e-05,0,0,5.96046447753906e-06,0,-0.0394486784934998,0.0274462699890137,0.052729606628418,-0.0394487082958221,0.0424103736877441,0.052729606628418,4.76837158203125e-07,0,0.104729652404785,7.15255737304688e-07,0,0.104729652404785,-9.5367431640625e-07,0,0.101092338562012,4.76837158203125e-07,0,0.104729652404785,7.15255737304688e-07,0,0.0697479248046875,5.96046447753906e-07,0,0.104729652404785,-0.00013434886932373,0.00014495849609375,0.104552268981934,-0.00013434886932373,0.000132560729980469,0.10455322265625,-0.00360167026519775,0.00388479232788086,0.0999813079833984,-0.00360143184661865,0.00387096405029297,0.0999813079833984,-0.0166193842887878,0.017909049987793,0.0828094482421875,-0.0166193246841431,0.017909049987793,0.0828094482421875,4.76837158203125e-07,0,0.104729652404785,0,-6.19888305664063e-06,0.0888071060180664,0,0,0.103442192077637,-4.76837158203125e-07,0,0.104729652404785,1.43051147460938e-06,7.62939453125e-06,0.101931571960449,0,0,0.104729652404785,1.43051147460938e-06,0,0.103560447692871,-2.38418579101563e-07,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,-4.76837158203125e-07,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,4.76837158203125e-07,0,0.0928316116333008,-2.38418579101563e-07,0,0.0898313522338867,-3.57627868652344e-07, +0,0.104729652404785,-6.44922256469727e-05,6.24656677246094e-05,0.0843000411987305,-6.46114349365234e-05,7.15255737304688e-05,0.104652404785156,-0.00341224670410156,0.00358438491821289,0.100663185119629,-0.00341224670410156,0.00357341766357422,0.100663185119629,-0.015791654586792,0.0165753364562988,0.085902214050293,-0.0157915353775024,0.0165829658508301,0.085902214050293,-0.040613055229187,0.042633056640625,0.0563030242919922,-0.0406133830547333,0.0254340171813965,0.0563030242919922,-0.0394487679004669,0.028897762298584,0.0527305603027344,-0.0166193246841431,0.0179076194763184,0.0828094482421875,-0.00360202789306641,0.00387716293334961,0.0999813079833984,-0.000133991241455078,0.0001373291015625,0.10455322265625,1.19209289550781e-07,7.62939453125e-06,0.0959863662719727,2.38418579101563e-07,0,0.102462768554688,2.38418579101563e-07,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,2.38418579101563e-07,0,0.104729652404785,0,0,0.104368209838867,0,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,9.5367431640625e-07,0,0.104729652404785,-1.19209289550781e-06,0,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,-6.47306442260742e-05,6.103515625e-05,0.10465145111084,-0.00341284275054932,0.00358247756958008,0.100663185119629,-0.0157914757728577,0.0165772438049316,0.0859012603759766,-0.040613204240799,0.0426449775695801,0.0563030242919922,-0.0394487380981445,0.0283288955688477,0.052729606628418,-0.0166194438934326,0.0179076194763184,0.0828094482421875,-0.00360167026519775,0.00388479232788086,0.099980354309082,-0.00013434886932373,0.000132560729980469,0.10455322265625,-3.57627868652344e-07,0,0.103616714477539,-9.5367431640625e-07,0,0.104729652404785,9.5367431640625e-07,7.62939453125e-06,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,0,-7.62939453125e-06,0.104729652404785,-2.38418579101563e-07,0,0.104729652404785,4.76837158203125e-07,0,0.104729652404785,-4.76837158203125e-07,0,0.104729652404785,-7.15255737304688e-07,0,0.104729652404785,2.38418579101563e-07,0,0.104729652404785,4.76837158203125e-07, +0,0.104729652404785,-6.4849853515625e-05,5.76972961425781e-05,0.104652404785156,-0.00341236591339111,0.00357675552368164,0.100662231445313,-0.0157918930053711,0.0165772438049316,0.0859012603759766,-0.0406133234500885,0.0374655723571777,0.0563039779663086,-0.0131495594978333,0.0141477584838867,0.0137128829956055,-0.00553977489471436,0.00597810745239258,0.0255918502807617,-0.00120055675506592,0.00128602981567383,0.0191125869750977,-4.48226928710938e-05,4.10079956054688e-05,0.0101308822631836,0,-6.19888305664063e-06,0.00400543212890625,0,-6.19888305664063e-06,0.00336647033691406,0,0,0.0117177963256836,0,-7.62939453125e-06,0.0366878509521484,0,0,0.0408420562744141,0,0,0.0431509017944336,0,0,0.045191764831543,0,0,0.0399274826049805,0,-7.62939453125e-06,0.0276222229003906,0,0,0.0171642303466797,-0.0135377049446106,0.0142226219177246,0.088587760925293,-0.00526392459869385,0.00552225112915039,0.0984535217285156,-0.001137375831604,0.00120067596435547,0.103373527526855,-2.14576721191406e-05,1.66893005371094e-05,0.051997184753418,0,0,0.0114431381225586,-0.0262991189956665,0.0282807350158691,0.0700626373291016,-0.0110795497894287,0.0119490623474121,0.0901174545288086,-0.00240123271942139,0.00258779525756836,0.101564407348633,-8.96453857421875e-05,0.000100612640380859,0.104612350463867,-2.38418579101563e-07,0,0.0572309494018555,-2.38418579101563e-07,0,0.0777311325073242,0,6.19888305664063e-06,0.0950441360473633,0,0,0.103164672851563,0,0,0.0995683670043945,2.38418579101563e-07,0,0.0936498641967773,0,0,0.0936498641967773,-2.38418579101563e-07,0,0.0987100601196289,0,0,0.0947999954223633,2.38418579101563e-07,0,0.0738611221313477,0,0,0.0541276931762695,-4.3034553527832e-05,4.43458557128906e-05,0.0626544952392578,-0.00227475166320801,0.00238323211669922,0.102017402648926,-0.0105278491973877,0.0110487937927246,0.0921773910522461,-0.0270755290985107,0.0284209251403809,0.0724449157714844,0,0.000100612640380859,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,0,0.000119209289550781, +0,0,2.76565551757813e-05,0,-7.62939453125e-06,0,0,0,6.4849853515625e-05,0,0,0.0163049697875977,0,0,0.0214643478393555,0,0,0.018803596496582,0,0,0.0004425048828125,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,2.14576721191406e-06,-9.5367431640625e-07,0,-4.52995300292969e-06,0,0,3.814697265625e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,4.76837158203125e-07,0,-1.49011611938477e-06,-4.76837158203125e-07,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.11133873462677e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,-1.43051147460938e-06,1.52587890625e-05,-1.9073486328125e-06,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,2.81333923339844e-05,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,0.00449800491333008,0,0,-4.52995300292969e-06,0,0,0.00131440162658691,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06, +0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,0.000245809555053711,0,0,-6.19888305664063e-06,0,0,0.000917911529541016,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06, +0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,-0.000116467475891113,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,-0.000146627426147461,0,1.19209289550781e-06,1.70469284057617e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,-0.000307537615299225,0,0,-0.000783011317253113,0,0,-0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.54972076416016e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,-9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,8.392333984375e-05,5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.60932540893555e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,-0.000150382518768311,0.000370025634765625,0,-0.000223994255065918,0,0,-8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-8.63075256347656e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,6.07967376708984e-06,0,0,-4.58955764770508e-06, +0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,-6.67572021484375e-06,2.32458114624023e-05,-7.62939453125e-06,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,-4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,-4.76837158203125e-07,0,-6.07967376708984e-06,-4.76837158203125e-07,-4.76837158203125e-07,-5.84125518798828e-06,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-4.52995300292969e-06,0,0,1.43051147460938e-06,-9.5367431640625e-07,4.29153442382813e-06,2.12192535400391e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,0.000193953514099121,0,0,-2.86102294921875e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,-3.814697265625e-06,4.01139259338379e-05,-4.76837158203125e-06,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-7.51018524169922e-06,6.98566436767578e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030982494354248,2.57492065429688e-05,0.000108718872070313,0.000691413879394531,9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0, +-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06, +0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06, +0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,0,0.000668525695800781,0,0,0.00848865509033203,0,-4.76837158203125e-06,0,0,0,0.00336742401123047,0,0,0.00652885437011719,0,0,0.00856399536132813,0,0,0.00561046600341797,0,0,0.00773048400878906,0,0,0.00408172607421875,0,0,0.00456142425537109,0,0,0.0442171096801758,0,0,0.055537223815918,0,0,0.0409917831420898,0,0,0.0400629043579102,-0.0394486784934998,0.0375738143920898,0.0419416427612305,-0.016619861125946,0.0179104804992676,0.0700235366821289,-0.00360190868377686,0.00387859344482422,0.0875091552734375,-0.000134587287902832,0.00014495849609375,0.0919170379638672,-4.76837158203125e-07,0,0.0923519134521484,7.15255737304688e-07,0,0.0908584594726563,-9.5367431640625e-07,0,0.0911197662353516,0,-7.62939453125e-06,0.0967369079589844,7.15255737304688e-07,0,0.0888681411743164,2.38418579101563e-07,0,0.0865936279296875,-2.38418579101563e-07,0,0.0893936157226563,0,7.62939453125e-06,0.0935306549072266,-4.76837158203125e-07,0,0.0888271331787109,0,-7.62939453125e-06,0.0908946990966797,2.38418579101563e-07,0,0.0914020538330078,-6.46114349365234e-05,6.38961791992188e-05,0.0923614501953125, +-0.00341236591339111,0.003570556640625,0.0929136276245117,-0.0157915949821472,0.0165829658508301,0.0807085037231445,-0.0406131744384766,0.0312938690185547,0.0514488220214844,8.94069671630859e-08,0,0.0738906860351563,-4.76837158203125e-07,7.62939453125e-06,0.0669460296630859,4.76837158203125e-07,0,0.0626935958862305,1.19209289550781e-07,0,0.0556468963623047,8.34465026855469e-07,0,0.0612640380859375,4.76837158203125e-07,0,0.0732097625732422,0,0,0.0699834823608398,1.43051147460938e-06,0,0.0647001266479492,2.38418579101563e-07,0,0.0496320724487305,7.15255737304688e-07,0,0.0491180419921875,-4.76837158203125e-07,0,0.054377555847168,9.5367431640625e-07,0,0.0644302368164063,-4.76837158203125e-07,0,0.0867624282836914,-7.15255737304688e-07,0,0.0737533569335938,-3.57627868652344e-07,-7.62939453125e-06,0.0622406005859375,0,0,0.0638942718505859,0,0,0.0686674118041992,-2.98023223876953e-07,0,0.0743417739868164,2.68220901489258e-07,-7.62939453125e-06,0.0777769088745117,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,-2.38418579101563e-07,-3.39746475219727e-05,0,2.38418579101563e-07,-0.000373542308807373,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-0.000886619091033936,9.5367431640625e-07,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,0.000717267394065857,0,0,0.000729367136955261,0,0,-8.20755958557129e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,-2.38418579101563e-07, +4.1663646697998e-05,0,2.38418579101563e-07,0.000361323356628418,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,0.000874459743499756,-9.5367431640625e-07,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,-0.000714197754859924,0,0,-0.000735461711883545,0,0,7.29560852050781e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.814697265625e-06,0.00030362606048584,0,7.15255737304688e-07,0.000399649143218994,0,5.00679016113281e-06,0.000416934490203857,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,-0.00023651123046875,0,-4.76837158203125e-07,7.68899917602539e-06,0,0,4.58955764770508e-06,0,-4.64916229248047e-05,0.00096428394317627,0,0,1.53481960296631e-06,0,-6.19888305664063e-05,-1.78068876266479e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.75224447250366e-05,0,1.43051147460938e-06,3.27751040458679e-05,-9.5367431640625e-07,0,4.61935997009277e-06,0,0,-1.22189521789551e-06,0,0,-1.43051147460938e-06,0,0,6.13927841186523e-06,0,0,7.68899917602539e-06,0,-3.814697265625e-06,-0.000311195850372314,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000415384769439697,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,0.000233650207519531,0,-4.76837158203125e-07,7.56978988647461e-06,0,-4.64916229248047e-05,-0.000970363616943359,0,0,1.53481960296631e-06,0,-6.19888305664063e-05,1.01774930953979e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,1.53332948684692e-05,0,1.43051147460938e-06,-3.88696789741516e-05, +9.5367431640625e-07,0,-3.06963920593262e-06,0,0,-1.81794166564941e-06,0,0,-1.60932540893555e-06,0,0,6.13927841186523e-06,0,0,7.56978988647461e-06,0,0,1.84774398803711e-06,0,0,-3.33786010742188e-06,0 + } + Normals: *21531 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, +0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, +-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, +-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, +0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, +0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, +-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, +3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, +-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, +-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, +-0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, +-0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, +0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, +-0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, +-0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, +0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, +0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, +0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, +0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, +-0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, +0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, +0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, +0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, +0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, +0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, +0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, +-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, +1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, +0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, +-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, +-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, +-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, +-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, +-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, +0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, +-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, +-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, +-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, +0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, +1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, +0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, +0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, +-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, +0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, +1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, +0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, +1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, +-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, +1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, +0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, +-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, +0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, +0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, +0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, +0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, +0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008, +1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725, +0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397, +-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403, +-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725, +0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397, +-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513, +0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882, +0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183, +-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171, +0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949, +1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573, +0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265, +-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102, +0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853, +0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868, +-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439, +0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784, +0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456, +0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415, +0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229, +1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123, +1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998, +1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356, +0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413, +-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632, +-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368, +-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621, +0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802, +-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883, +-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984, +-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193, +-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867, +-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607, +-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346, +-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263, +-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784, +0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208, +-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694, +0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266, +-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709, +-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695, +-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901, +-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686, +0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874, +-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368, +-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843, +-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535, +-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957, +0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487, +0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031, +-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867, +-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023, +-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025, +-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785, +0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809, +-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731, +-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885, +-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671, +-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257, +0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835, +-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219, +-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225, +-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308, +-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291, +-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, +-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209, +-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725, +-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392, +1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102, +-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208, +-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207, +-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127, +-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673, +-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602, +0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554, +-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722, +-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228, +-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647, +0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336, +1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798, +0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394, +-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393, +0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574, +1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375, +-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363, +-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974, +-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862, +-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116, +0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151, +-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651, +0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233, +1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169, +1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673, +-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746, +0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486, +0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,0.146543323993683,-0.399054899811745,-0.195634871721268, +-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442, +0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853, +-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429, +-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022, +0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316, +-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,0.283098638057709,-1.00639636814594,-1.30733358860016,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246, +-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085, +0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249, +-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673, +0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264, +-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874, +-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329, +0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952, +0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295, +-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156, +1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792, +0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551, +-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065, +-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094, +0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189, +-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778, +-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119, +-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437, +0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976, +-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028, +0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898, +-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825, +0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368, +0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591, +-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944, +-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797, +-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632, +-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292, +-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315, +-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.663957834243774,-0.292329281568527,0.231935441493988,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054, +0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311, +0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671, +-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254, +-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805454334304, "Geometry::Mouth_Stretcher_Left", "Shape" { + Version: 100 + Indexes: *1640 { + a: 636,643,648,669,672,681,703,708,711,716,719,724,1359,1367,1436,1438,1457,1460,1509,1523,1531,1545,1553,1567,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5985,5986,5987,5988,5989,5990,5992,5995,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6030,6031,6032,6033,6034,6035,6036,6037,6040,6042,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6060,6065,6067,6068,6069,6070,6072,6073,6074,6075,6078,6087,6088,6089,6090,6091,6092,6093,6096,6098,6102,6104,6105,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6267,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6401,6408,6409,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536, +6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7166,7172,7173,7183,7184,7185,7186,7187,7188,7189,7193,7197,7199,7201,7202,7203,7204,7205,7206,7207,7208,7209,7221,7224,7225,7226,7228,7233,7234,7235,7236,7247,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453, +7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7545,7547,7549,7551,7553,7559,7561,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7765,7766,7767,7768,7769,7772,7773,7774,7775,7776,7783,7784,7785,7786,7790,7791,7792,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950, +7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8695,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797, +8799 + } + Vertices: *4920 { + a: -0.0589675903320313,-0.0377306938171387,-0.0104227066040039,-0.0320440530776978,-0.0259759426116943,0.00125503540039063,-0.0250627994537354,-0.00778627395629883,-0.00145149230957031,-0.0479824542999268,-0.0239481925964355,-0.00742816925048828,-0.00089302659034729,-0.00103998184204102,0,-0.0693792104721069,-0.029712438583374,-0.00790500640869141,-0.0113372206687927,-0.012258768081665,0,-0.0457133054733276,-0.0276517868041992,-0.0013427734375,-0.0389324426651001,-0.0215480327606201,-0.0118541717529297,-0.0733824968338013,-0.0413720607757568,-0.00867366790771484,-0.0497547388076782,-0.0161523818969727,-0.00550270080566406,-0.0050966739654541,-0.00153803825378418,0,-0.00457799434661865,-0.00548720359802246,0,-0.0609126091003418,-0.0222251415252686,-0.00713920593261719,-0.0447736978530884,-0.0214264392852783,-0.0104236602783203,-0.0404189229011536,-0.0279853343963623,0.000581741333007813,-0.0136034488677979,-0.00416302680969238,-0.000306129455566406,-0.0683120489120483,-0.0420777797698975,-0.00938320159912109,-0.0212366580963135,-0.0198662281036377,0.00051116943359375,-0.0482180118560791,-0.0263514518737793,-0.0041961669921875,-0.0467844009399414,-0.0293359756469727,-0.0114326477050781,-0.0737040042877197,-0.0366992950439453,-0.00827598571777344,-0.0375151634216309,-0.0118982791900635,-0.00326347351074219,-0.000623941421508789,-0.000185966491699219,0,0,-0.0576834678649902,0,0,-0.00913190841674805,0,-0.00593897418730194,-0.0462260246276855,-0.0453395843505859,0.00353378803265514,-0.0517654418945313,-0.0434350967407227,0.0402948484552326,-0.0463104248046875,0.00263881683349609,0.00693869173846906,-0.0533323287963867,-0.0393276214599609,-0.00401326127030188,-0.0514993667602539,-0.042724609375,0.0102280899736797,-0.0266036987304688,-0.00683975219726563,-0.00596592666988727,-0.0488252639770508,-0.0441675186157227,0.00648529876343673,-0.0535697937011719,-0.0380611419677734,0.00272510759532452,-0.0148100852966309,-0.0155248641967773,0.011669239936964,-0.00778388977050781,-0.0398683547973633,0.000943863993597915, +-0.031834602355957,-0.0272378921508789,0.0510754658753285,0.00851631164550781,-0.056696891784668,0.00975990388542414,-0.0413398742675781,-0.00844097137451172,-0.024855699390173,0.0416440963745117,0.109015464782715,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,-0.0402112565934658,0.0395736694335938,0.158485412597656,0,-0.0212080478668213,0,0.00350005575455725,-0.0288643836975098,-0.00302600860595703,0.00805237982422113,-0.037968635559082,-0.00696277618408203,0.00947846099734306,-0.0422544479370117,-0.00819587707519531,0,-0.0608837604522705,0,0,-0.0616207122802734,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,-0.0142997605726123,-0.00781917572021484,0.140799522399902,0.00327401864342391,-0.00852489471435547,0.0109024047851563,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.000132560729980469,0,0,5.96046447753906e-06,0,-0.00190287828445435,-0.020164966583252,-0.0272045135498047,0.00496849417686462,-0.0261220932006836,-0.0284862518310547,3.40938568115234e-05,-0.00011444091796875,-0.000101089477539063,3.31401824951172e-05,-0.000111579895019531,-0.000100135803222656,0.000894069671630859,-0.00310373306274414,-0.00270843505859375,0.000108718872070313,-0.00150012969970703,-0.00252532958984375,0.0031125545501709, +-0.0122575759887695,-0.01226806640625,2.46763229370117e-05,-0.00623846054077148,-0.0115423202514648,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,9.65595245361328e-06,-4.43458557128906e-05,-4.38690185546875e-05,1.01327896118164e-05,-5.05447387695313e-05,-4.29153442382813e-05,0.000504732131958008,-0.00247335433959961,-0.00232505798339844,0.000504851341247559,-0.00246906280517578,-0.00232505798339844,0.00233542919158936,-0.0114550590515137,-0.0107622146606445,0.00233489274978638,-0.0114479064941406,-0.0107612609863281,0.00223764777183533,-0.0267033576965332,-0.00794029235839844,0.00468435883522034,-0.030519962310791,-0.0243406295776367,0.00100508332252502,-0.0229973793029785,-0.0276737213134766,0.0016205906867981,-0.00923776626586914,-0.0119161605834961,0.000613570213317871,-0.00253152847290039,-0.00264263153076172,3.38554382324219e-05,-0.0001220703125,-0.000100135803222656,0,7.62939453125e-06,0,9.77516174316406e-06,-4.57763671875e-05,-4.38690185546875e-05,0.000504732131958008,-0.00246000289916992,-0.00232505798339844,0.0023348331451416,-0.0114531517028809,-0.0107622146606445,0.00500518083572388,-0.0303573608398438,-0.0252475738525391,-0.00120186805725098,-0.0213470458984375,-0.0272560119628906,0.00057673454284668,-0.00720739364624023,-0.0116710662841797,0.000307321548461914,-0.00191354751586914,-0.00257110595703125,3.36170196533203e-05,-0.000111579895019531,-0.000101089477539063,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,1.01327896118164e-05,-4.91142272949219e-05,-4.38690185546875e-05,0.000504732131958008,-0.00246572494506836,-0.00232601165771484,0.00233554840087891,-0.0114531517028809,-0.0107622146606445,0.00464034080505371,-0.0306401252746582,-0.024205207824707,0.00226542353630066,-0.00928974151611328,-0.00965595245361328,0.00139486789703369,-0.00482511520385742,-0.00417423248291016,0.000304818153381348,-0.00104856491088867,-0.000904083251953125,1.13248825073242e-05,-5.05447387695313e-05,-3.4332275390625e-05,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,-0.0014166533946991, +-0.0144171714782715,0.00410842895507813,0.000715672969818115,-0.00373315811157227,-0.00340747833251953,0.000168323516845703,-0.000828742980957031,-0.000774383544921875,3.09944152832031e-06,-1.38282775878906e-05,-1.43051147460938e-05,0.0025259256362915,-0.0155544281005859,-0.0188150405883789,0.00203967094421387,-0.00810098648071289,-0.00817108154296875,0.000609278678894043,-0.00209665298461914,-0.00180912017822266,2.26497650146484e-05,-6.72340393066406e-05,-6.67572021484375e-05,0,6.19888305664063e-06,0,6.19888305664063e-06,-3.19480895996094e-05,-2.86102294921875e-05,0.000336647033691406,-0.00164508819580078,-0.00155067443847656,0.00155699253082275,-0.00762796401977539,-0.00717449188232422,0.00397387146949768,-0.0194106101989746,-0.0184392929077148,0.00198480486869812,-0.00680875778198242,-0.00171661376953125,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0171114504337311,0.0231513977050781,0.0523567199707031,-0.000499308109283447,0.000660896301269531,0.00143623352050781,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06, +0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,-0.000788748264312744,0.00127792358398438,0.00260543823242188,-0.0143816471099854,0.0203933715820313,0.0560894012451172,1.42753124237061e-05,-3.36170196533203e-05,-1.23977661132813e-05,0.00100600719451904,-0.00304913520812988,-0.0008697509765625,0.000263869762420654,-0.000623703002929688,-0.000227928161621094,9.68575477600098e-06,-1.83582305908203e-05,-8.58306884765625e-06,0,-4.52995300292969e-06,0,0.000370591878890991,-0.00505781173706055,-0.0003204345703125,0,-4.52995300292969e-06,0,0,-0.00261306762695313,0,0,5.96046447753906e-06,0,0,-0.0111865997314453,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,6.95884227752686e-05,-0.000169038772583008,-6.00814819335938e-05,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,2.50339508056641e-05,-6.53266906738281e-05,-2.19345092773438e-05,6.37173652648926e-05,-0.000156879425048828,-5.53131103515625e-05,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-05,0,1.15633010864258e-05,-0.000298976898193359,-9.5367431640625e-06,0.000264942646026611,-0.000632286071777344,-0.0002288818359375,0.00217738747596741,-0.00834751129150391,-0.00188255310058594,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0, +-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-4.73260879516602e-05,-3.71932983398438e-05,0.00158500671386719,-0.00225603580474854,-0.000981330871582031,0.0431232452392578,0.000925719738006592,-0.00188541412353516,0.00178337097167969,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06, +0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06, +0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06, +0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06, +0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-0.00152464747407066,0.00308847427368164,0.000359535217285156,0.00540309212738066,0.0166411399841309,-0.00294113159179688,-0.000475853681564331,0.000964164733886719,0.000112533569335938,0,-4.76837158203125e-06,0,-1.94907188415527e-05,4.72068786621094e-05,4.76837158203125e-06,2.74181365966797e-06,1.38282775878906e-05,-3.814697265625e-06,0.000884085893630981,0.00387859344482422, +-0.000905036926269531,-0.00313858080335194,-0.0388274192810059,-0.0482187271118164,-0.00157240033149719,-0.0177373886108398,-0.0275440216064453,-0.000131547451019287,-0.0058445930480957,-0.011505126953125,4.76837158203125e-05,-0.00138568878173828,-0.00250911712646484,3.3259391784668e-05,-0.00011444091796875,-0.000100135803222656,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,9.29832458496094e-06,-4.29153442382813e-05,-4.38690185546875e-05,0.000504970550537109,-0.002471923828125,-0.00232505798339844,0.0023273229598999,-0.0114583969116211,-0.0107507705688477,0.00477752089500427,-0.0298943519592285,-0.0243797302246094,0.00759205270878738,-0.0514554977416992,-0.0401153564453125,-0.0181202143212431,0.0201129913330078,0.00498676300048828,-0.00989773869514465,0.0152416229248047,0.00197601318359375,-0.00373005867004395,0.00754547119140625,0.000879287719726563,-0.000690460205078125,0.00139284133911133,0.000163078308105469,0,-7.62939453125e-06,0,-1.58548355102539e-05,-2.24113464355469e-05,8.58306884765625e-06,-0.000870317220687866,0.000861167907714844,0.00276279449462891,-0.00239426128246123,0.00665950775146484,0.0103416442871094,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,-0.000101773992355447,0.000173568725585938,0.000220298767089844,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06, +0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.0795361995697021,0,-0.000128269195556641,-0.00920772552490234,0,-0.00498637557029724,-0.0964298248291016,-0.0639190673828125,0.00550204515457153,-0.101284980773926,-0.0546321868896484,-0.167726516723633,-0.707053184509277,0.142163276672363,-0.109456539154053,-0.741019248962402,0.223371505737305,0.0940566062927246,-0.675601482391357,0.0781106948852539,0.0334873199462891,-0.719618797302246,0.030573844909668,0.0555353164672852,-0.252529621124268,0.0121860504150391,0.042960524559021,-0.334860801696777,-0.0444984436035156,0.0517963171005249,-0.246419906616211,-0.0425214767456055,0.101143479347229,-0.222472190856934,-0.129537582397461,0.0263551473617554,-0.267362117767334,-0.0779170989990234,0.0453908443450928,-0.179988384246826,-0.11833381652832,0.00726300477981567,-0.192025661468506,-0.0548105239868164,0.0126553773880005,-0.141599178314209,-0.0928783416748047,0.104473352432251,-0.534534931182861,0.0262203216552734,0.112606287002563,-0.446418285369873,0.0187110900878906,-0.14988374710083,-0.762790679931641,0.195289611816406,-0.137470722198486,-0.769210338592529,0.0529022216796875,-0.176609754562378,-0.754067897796631,0.210469245910645,-0.156377077102661,-0.837718486785889,0.0548114776611328,-0.197515249252319,-0.720362663269043,0.256500244140625,-0.158542633056641,-0.729660987854004,0.0714702606201172,-0.159824848175049,-0.721329212188721,0.309762001037598,-0.209766864776611,-0.669604301452637,0.129140853881836,-0.00728487968444824,-0.625784873962402,0.0303220748901367,-0.0166008472442627,-0.647607803344727,0.303556442260742,0.0566720962524414,-0.487497329711914,-0.0139369964599609,0.116071462631226,-0.534886837005615,0.233206748962402,0.163299798965454,-0.372396469116211,0.135809898376465,0.0476363897323608,-0.196175098419189,-0.0834922790527344,0.148544073104858,-0.224846363067627,-0.0106544494628906,0.0852837562561035, +-0.0948033332824707,-0.182416915893555,0.141568064689636,-0.176172733306885,-0.0844278335571289,0.0481961965560913,-0.00137519836425781,-0.162002563476563,0.0826737284660339,-0.164953231811523,-0.046234130859375,0.0227411985397339,-0.0376501083374023,-0.10823917388916,0.10946524143219,-0.131124973297119,0.00213336944580078,0.00895139575004578,-0.0644469261169434,-0.0621795654296875,-0.00632467865943909,-0.108116626739502,-0.0529565811157227,0.000113368034362793,-0.182186603546143,-0.0617666244506836,0.0325863361358643,-0.22346305847168,-0.0776729583740234,0.0781035423278809,-0.214998722076416,-0.0737829208374023,0.0792993307113647,-0.26906156539917,0.0221261978149414,0.149080276489258,-0.468070507049561,0.0195894241333008,0.0867183208465576,-0.697486877441406,0.0547037124633789,-0.142313003540039,-0.762638092041016,0.254510879516602,-0.192344665527344,-0.780982494354248,0.182248115539551,-0.238631248474121,-0.795376777648926,0.188342094421387,-0.22704005241394,-0.770657539367676,0.216961860656738,-0.193722724914551,-0.735584735870361,0.25253963470459,0.0112526416778564,-0.680306911468506,0.207609176635742,0.114402532577515,-0.567344665527344,0.118124961853027,0.142995119094849,-0.314630031585693,0.0662651062011719,0.173714637756348,-0.180995941162109,-0.0756750106811523,0.185614347457886,-0.119808197021484,-0.114728927612305,0.102967083454132,-0.118278980255127,-0.0327386856079102,0.0998779237270355,-0.11268138885498,0.0238971710205078,-0.0068744421005249,-0.102608203887939,-0.0594100952148438,0.00691664218902588,-0.156805038452148,-0.0806035995483398,0.0406844615936279,-0.195703506469727,-0.100480079650879,0.0886775255203247,-0.223677158355713,-0.094761848449707,0.0838901996612549,-0.337005615234375,0.00339031219482422,0.134994268417358,-0.513887882232666,0.0180263519287109,0.0766236782073975,-0.70979642868042,0.0489416122436523,-0.168264865875244,-0.784878730773926,0.23723316192627,-0.21098780632019,-0.79949426651001,0.163568496704102,-0.220479488372803,-0.805167675018311,0.140676498413086,-0.228994131088257,-0.776212692260742, +0.152286529541016,-0.229021549224854,-0.721557140350342,0.208309173583984,-0.0356760025024414,-0.617142677307129,0.0723762512207031,0.0894346237182617,-0.470705509185791,0.020751953125,0.058655858039856,-0.161410808563232,-0.0621671676635742,0.079453706741333,-0.0173778533935547,-0.177101135253906,0.0533576011657715,0.0335345268249512,-0.158036231994629,0.0275824069976807,0.000315666198730469,-0.106034278869629,0.00722584128379822,-0.0567750930786133,-0.0593929290771484,0.00797432661056519,-0.036219596862793,-0.0228395462036133,0.0170378088951111,-0.0767474174499512,-0.0315208435058594,0.0256466865539551,-0.11336612701416,-0.045292854309082,0.000334858894348145,-0.234844207763672,-0.00475120544433594,-0.0757415294647217,-0.299776554107666,0.0559616088867188,-0.10783863067627,-0.363600254058838,0.137477874755859,-0.106349468231201,-0.387628078460693,0.278562545776367,-0.274105548858643,-0.380926132202148,0.451558113098145,-0.262244462966919,-0.353853225708008,0.493288040161133,-0.166119337081909,-0.37518835067749,0.496253967285156,-0.0945303440093994,-0.401963233947754,0.509078025817871,-0.0280852317810059,-0.414980888366699,0.528519630432129,-0.0757715702056885,-0.33463716506958,0.667523384094238,-0.0791964530944824,-0.170750141143799,0.572446823120117,0.0357803106307983,-0.0180191993713379,-0.0350379943847656,0.103539884090424,-0.00188827514648438,-0.0635833740234375,0.161513566970825,-0.0141973495483398,-0.0502090454101563,0.0756851434707642,-0.00939798355102539,0.0800800323486328,0.00588631629943848,-0.0366373062133789,0.338019371032715,0.00038561224937439,-0.066072940826416,-0.0299501419067383,0.000314593315124512,-0.131531715393066,-0.0184755325317383,0.00663220882415771,-0.197669506072998,-0.0280685424804688,0.0206787586212158,-0.15138578414917,-0.00490665435791016,0.044464111328125,-0.224893569946289,0.0191326141357422,0.0829598903656006,-0.424555778503418,0.0534496307373047,0.0932474136352539,-0.68114709854126,0.0914478302001953,-0.142927169799805,-0.747771263122559,0.254244804382324,-0.198576927185059,-0.755668640136719, +0.263683319091797,-0.222572803497314,-0.715573310852051,0.270094871520996,-0.179933786392212,-0.643553256988525,0.292718887329102,-0.0871350765228271,-0.638719081878662,0.392474174499512,-0.0797231197357178,-0.588850021362305,0.470881462097168,0.0195214748382568,-0.437413215637207,0.392663955688477,0.0477912425994873,-0.239221096038818,0.182730674743652,0.0698374509811401,-0.0854630470275879,-0.0133848190307617,0.104779958724976,-0.0183811187744141,-0.120841026306152,0.0449415445327759,-0.0567131042480469,-0.115802764892578,0.0688556730747223,-0.0385465621948242,-0.112002372741699,0.0305933952331543,-0.101837635040283,-0.0182895660400391,0.0536583662033081,-0.185341358184814,-0.029292106628418,0.00520038604736328,-0.289676666259766,-0.0327377319335938,-0.0736359357833862,-0.214948654174805,-0.0131511688232422,-0.185658693313599,-0.149147033691406,-0.0467300415039063,-0.122040033340454,-0.121195316314697,0.045018196105957,-0.357045888900757,-0.14184045791626,0.445835113525391,-0.51034140586853,-0.227692127227783,0.742347717285156,-0.144267320632935,-0.134767055511475,0.833705902099609,-0.113757848739624,-0.244824886322021,0.777538299560547,-0.118153810501099,-0.0993251800537109,0.750201225280762,-0.308660745620728,-0.018369197845459,0.842061996459961,-0.313722848892212,-0.216243743896484,0.790835380554199,0.0235203504562378,0.0661125183105469,0.133912086486816,0.0815248489379883,0.0606679916381836,0.10490608215332,0.136619210243225,0.140710830688477,0.0932235717773438,0.0676562786102295,0.247998237609863,0.19444751739502,-0.0118014812469482,0.268400192260742,0.446456909179688,-0.114112854003906,0.0535593032836914,0.715588569641113,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06, +0,7.62939453125e-05,-0.000768542289733887,-0.000599861145019531,-0.000210285186767578,0.00428009033203125,-0.0126781463623047,-0.000516653060913086,-0.00181329250335693,-0.000432014465332031,-0.0351629257202148,0.000364065170288086,-0.00266933441162109,0,6.07967376708984e-06,0,-0.0434468984603882,-0.0133141279220581,0.000108718872070313,0,4.58955764770508e-06,0,-0.00100159645080566,-0.000419974327087402,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0.00463342666625977,0.000942707061767578,-0.0316810607910156,0.00211668014526367,-0.00695216655731201,-0.00376510620117188,-0.00289416313171387,0.00115525722503662,0.00498676300048828,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0.00612294673919678,9.5367431640625e-06,-0.00084686279296875,-0.0115430355072021,-0.087982177734375,0.106958389282227,-0.00119400024414063,0.000330924987792969,0.00242137908935547,-0.00289678573608398,-0.00140380859375,-0.000468730926513672,0,-7.62939453125e-06,0,-0.0116147994995117,-0.0056915283203125,-0.00332260131835938,-0.119580030441284,-0.302328109741211,-0.0388898849487305,-0.136605501174927,-0.242403984069824,-0.0477495193481445,-0.11903965473175,-0.283511638641357,-0.054814338684082,-0.115921378135681,-0.278347969055176,-0.018951416015625,-0.129915714263916,-0.237297773361206,0.000964164733886719,-0.136843085289001,-0.192579746246338,0.0146560668945313,-0.134613394737244,-0.0806000232696533,0.000291824340820313,-0.136571645736694,-0.116618871688843,-0.00439929962158203,-0.0532984137535095,-0.0322082042694092,-4.10079956054688e-05,-0.0631358623504639,-0.0671646595001221,-0.000357627868652344,-0.124946117401123,-0.281020879745483,-0.000731468200683594,-0.128237724304199,-0.30337929725647, +-0.0282754898071289,-0.214116811752319,-0.144962072372437,0.171842575073242,-0.300072908401489,-0.125400543212891,0.530242919921875,-0.465940237045288,-0.320194244384766,0.927966117858887,-0.273812532424927,-0.0705442428588867,0.997319221496582,0.00665760040283203,-0.101917266845703,0.716825485229492,0.0354046821594238,-0.119463920593262,0.670452117919922,-0.0732190608978271,-0.254147052764893,0.783779144287109,-0.0712542533874512,-0.129192352294922,0.820082664489746,-0.0676846504211426,0.0308856964111328,0.670964241027832,-0.00272321701049805,0.126842498779297,0.367378234863281,0.0457656383514404,0.0914125442504883,0.0935611724853516,0.0705642700195313,0.0806369781494141,0.126322746276855,0.0645126104354858,0.0843467712402344,0.174030303955078,-0.019076943397522,0.0506734848022461,0.190317153930664,0.0195336937904358,-0.0780885219573975,-0.0149612426757813,0.0246294736862183,-0.0883474349975586,-0.0166988372802734,0.0435788333415985,-0.134240388870239,-0.0220727920532227,0.0427044928073883,-0.132663726806641,-0.0213918685913086,0.00970616936683655,-0.0554168224334717,-0.0089111328125,0.00785991549491882,-0.0490517616271973,-0.00679588317871094,0.00312402844429016,-0.0380928516387939,-0.00408554077148438,0.0012284517288208,-0.0201444625854492,-0.00106239318847656,-0.00647437572479248,-0.0484809875488281,-0.00126743316650391,0,-0.0238173007965088,0,-0.0189366340637207,-0.0684750080108643,-0.000870704650878906,-0.0107969641685486,-0.0855319499969482,0,-0.0679417252540588,-0.0870499610900879,-0.00183391571044922,-0.0743304491043091,-0.106987953186035,-0.000689506530761719,-0.0980051755905151,-0.122912645339966,-0.00167655944824219,-0.124503135681152,-0.140937328338623,0.000575065612792969,-0.0712776184082031,-0.243460416793823,0.00328254699707031,-0.107540011405945,-0.255214691162109,0.00321006774902344,-0.0119647979736328,-0.303377389907837,-0.0421991348266602,-0.0494800806045532,-0.297999858856201,-0.0466804504394531,0.0153950452804565,-0.22166633605957,-0.0201253890991211,-0.00167548656463623,-0.351958751678467,-0.0267791748046875, +0.0429309010505676,-0.203388214111328,-0.0305681228637695,0.0450254678726196,-0.168829679489136,-0.0260295867919922,0.00448977947235107,-0.29612398147583,-0.0246753692626953,-0.0134559869766235,-0.375608921051025,-0.0360240936279297,0.0220198333263397,-0.0832886695861816,-0.0161161422729492,0.0107205510139465,-0.0558915138244629,-0.00928783416748047,0.00387045741081238,-0.0324335098266602,-0.00349330902099609,-0.00370979309082031,-0.0442633628845215,-0.000658035278320313,-0.0199108719825745,-0.0760433673858643,-0.000370025634765625,-0.0752038359642029,-0.0985968112945557,-0.00133132934570313,-0.110967636108398,-0.134450912475586,8.0108642578125e-05,-0.0852237939834595,-0.251287698745728,0.00582313537597656,-0.018220067024231,-0.340681076049805,-0.0434541702270508,-0.00223767757415771,-0.350618839263916,-0.0266828536987305,0.0190670490264893,-0.287073135375977,-0.0186014175415039,0.0461785793304443,-0.185637712478638,-0.0280513763427734,0.0439959168434143,-0.136505126953125,-0.0223655700683594,0.0448614954948425,-0.138725757598877,-0.0227985382080078,0.0452690720558167,-0.195338487625122,-0.0292987823486328,0.0146248936653137,-0.317225933074951,-0.0197906494140625,-0.00829386711120605,-0.37549877166748,-0.0312986373901367,-0.0338753461837769,-0.336306095123291,-0.0454273223876953,-0.0966982841491699,-0.257723331451416,0.00417804718017578,-0.119940280914307,-0.139416456222534,0.000696182250976563,-0.0762315988540649,-0.102967023849487,-0.00099945068359375,-0.0180333852767944,-0.0806200504302979,-0.000110626220703125,-0.00138366222381592,-0.0375957489013672,-0.000460624694824219,0.00315892696380615,-0.0279786586761475,-0.0027313232421875,0.0100553631782532,-0.0542371273040771,-0.00869464874267578,0.0246151089668274,-0.0889782905578613,-0.0169076919555664,0.0248807072639465,-0.0886197090148926,-0.0166263580322266,-0.00143653154373169,-0.0838282108306885,0,-0.0684974193572998,-0.106259346008301,-0.000537872314453125,-0.0648385286331177,-0.0906441211700439,-0.00043487548828125,0,-0.0910055637359619,0,-0.132523059844971, +-0.127844333648682,-0.00339603424072266,-0.128351330757141,-0.133800983428955,-0.00170040130615234,-0.116295337677002,-0.250047206878662,0.00274372100830078,-0.124015808105469,-0.2461256980896,0.00100517272949219,-0.0471670627593994,-0.254444360733032,-0.0202932357788086,-0.0534218549728394,-0.291066408157349,-0.0250301361083984,-0.0666069984436035,-0.313311815261841,-0.0315799713134766,-0.0773952007293701,-0.317652940750122,-0.0385541915893555,-0.0849733352661133,-0.316620588302612,-0.0443410873413086,-0.0983016490936279,-0.309927701950073,-0.0500679016113281,-0.0654712915420532,-0.25761866569519,-0.0406942367553711,-0.0892236232757568,-0.242030143737793,-0.0283107757568359,-0.0563420057296753,-0.262618064880371,-0.0335922241210938,-0.0945515632629395,-0.239954233169556,-0.0145540237426758,-0.0588303804397583,-0.258345127105713,-0.0249490737915039,-0.104153394699097,-0.233547210693359,-0.00527286529541016,-0.142007231712341,-0.291941165924072,0.0215978622436523,-0.142019748687744,-0.299408674240112,-0.00891017913818359,-0.115203261375427,-0.288045167922974,-0.053980827331543,-0.0996671915054321,-0.283831834793091,-0.0466928482055664,-0.0819567441940308,-0.27769660949707,-0.0467519760131836,-0.0676670074462891,-0.279029607772827,-0.0478715896606445,-0.0597274303436279,-0.303161382675171,-0.0473060607910156,-0.0457112789154053,-0.33193039894104,-0.043034553527832,-0.0338702201843262,-0.322593927383423,-0.038264274597168,-0.0231921672821045,-0.285815238952637,-0.0310268402099609,0,-6.07967376708984e-06,0,-0.0141082406044006,-0.00860726833343506,0,-0.0961838960647583,-0.103501558303833,0.0215959548950195,0,-4.64916229248047e-06,0,-0.00987130403518677,-0.00623989105224609,0,-0.0881932973861694,-0.0834919214248657,0.0153312683105469,0,-4.58955764770508e-06,0,-0.000165343284606934,-9.46521759033203e-05,0,-0.0736716985702515,-0.0500165224075317,0.00543212890625,-0.0277493596076965,-0.0163333415985107,0,-0.072702169418335,-0.0669779777526855,0.0106668472290039,-0.136532545089722,-0.266479015350342,-0.0454301834106445,-0.133278489112854, +-0.265169143676758,-0.0499696731567383,-0.149012923240662,-0.205379486083984,-0.00474166870117188,-0.146393299102783,-0.2134850025177,-0.018733024597168,-0.153683185577393,-0.184826135635376,0.0247392654418945,-0.150251388549805,-0.194205760955811,0.00481033325195313,-0.143749952316284,-0.179279327392578,0.0388689041137695,-0.149310231208801,-0.183638334274292,0.0244722366333008,-0.135659337043762,-0.177609205245972,0.0427064895629883,-0.137852311134338,-0.178603410720825,0.0376577377319336,-0.149329662322998,-0.216079950332642,-0.0287981033325195,-0.151182293891907,-0.200815916061401,-0.00862503051757813,-0.137813806533813,-0.247759103775024,-0.0484066009521484,-0.146873235702515,-0.221318483352661,-0.034820556640625,-0.150578379631042,-0.205209493637085,-0.0174026489257813,-0.151825547218323,-0.19232702255249,0.00401782989501953,-0.144701719284058,-0.184939622879028,0.020319938659668,-0.143356084823608,-0.19916296005249,-0.0042572021484375,0,7.62939453125e-06,0,-0.0475343465805054,-0.027705192565918,-1.9073486328125e-05,-0.110070824623108,-0.0802860260009766,0.00799846649169922,-0.134823203086853,-0.179481983184814,0.0325784683227539,-0.143168687820435,-0.190149068832397,0.00953865051269531,-0.147493481636047,-0.258228302001953,-0.0384416580200195,-0.155404448509216,-0.199044466018677,-0.00294589996337891,-0.155054211616516,-0.158332109451294,0.0276098251342773,-0.0355198383331299,-0.0169088840484619,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,-0.105685949325562,-0.0522723197937012,-0.0142831802368164,-0.152413129806519,-0.126888036727905,0.0403661727905273,-0.0276894569396973,0.0147716999053955,0.0741233825683594,-0.163995504379272,-0.0777838230133057,0.36451530456543,-0.074923038482666,-0.0536940097808838,0.161096572875977,-0.13459587097168,-0.184607028961182,0.601090431213379,-0.018002986907959,-0.0495200157165527,0.0715866088867188,0.00438928604125977,-0.134623289108276,0.364879608154297,-0.0498814582824707,-0.156900882720947,0.721939086914063,0.0331320762634277,-0.0549306869506836,0.0870695114135742, +-0.00677680969238281,-0.00474262237548828,-0.00342082977294922,-0.000134944915771484,0.000563383102416992,-0.000584125518798828,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,-0.0330362319946289,0.00607633590698242,0.202304363250732,0,5.96046447753906e-06,0,0.000411510467529297,0.00241661071777344,0.00239372253417969,0,4.52995300292969e-06,0,-0.00303888320922852,-0.0660796165466309,0.672313690185547,0,6.19888305664063e-06,0,0.0101795196533203,0.0323071479797363,0.0179848670959473,-0.0174503326416016,0.0767865180969238,0.172672748565674,0.0187740325927734,0.0318608283996582,0.00374221801757813,0.0580286979675293,0.0809292793273926,0.0781421661376953,0.131928443908691,-0.0563111305236816,0.442511081695557,0.0450310707092285,-0.310181617736816,0.195218086242676,0.0286564826965332,-0.0920791625976563,0.138073921203613,0.0493745803833008,0.00300455093383789,0.0418462753295898,0.00179719924926758,0.00173091888427734,-0.00110769271850586,0.0095524787902832,-0.304445743560791,0.368039131164551,-0.0835781097412109,-0.112734794616699,0.153359889984131,-0.0322589874267578,-0.0897607803344727,0.0813107490539551,-0.0967540740966797,-0.326504707336426,0.624225616455078,-0.103562593460083,-0.084202766418457,0.165948867797852,-0.0110960006713867,-0.0432615280151367,0.05010986328125,-0.0847980976104736,-0.172977447509766,0.747123718261719,-0.0697212219238281,-0.159865379333496,0.363869667053223,-0.0431375503540039,-0.0650119781494141,0.62578296661377,-0.0188391208648682,-0.162288665771484,0.363728523254395,0.0348238945007324,-0.0222187042236328,0.0228996276855469,0.0629951953887939,-0.0594263076782227,0.119637489318848,0.0390932559967041,-0.0150880813598633,0.275566101074219,0.0455694198608398,0.0178298950195313,0.0371475219726563,0.0298333168029785,0.00333118438720703,-0.00201416015625,0.0425919890403748,0.040165901184082,0.186580657958984,0.0385414361953735,0.0520877838134766,0.125638008117676,0.00260508060455322, +0.00583267211914063,0.0120220184326172,0.00686538219451904,0.00400066375732422,0.0156774520874023,0.0071098804473877,0.000806808471679688,0.19408130645752,0.00323605537414551,-0.00634765625,0.0169363021850586,0.0251994132995605,-0.031590461730957,0.00908470153808594,0.0018620491027832,-0.000360488891601563,9.67979431152344e-05,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06, +0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,3.00407409667969e-05,0.000217556953430176,-1.81198120117188e-05,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06, +0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06, +0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06, +0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0244932174682617,-0.0368142127990723,-0.00387382507324219,-0.0380070805549622,-0.0468306541442871,-0.00460529327392578,-0.0454353094100952,-0.0639605522155762,-0.00764369964599609,-0.0296103954315186,-0.0882976055145264,-0.00953197479248047,-0.019112229347229,-0.115752220153809,-0.0153121948242188,-0.00607931613922119,-0.143117427825928,-0.0280351638793945,-0.0139689445495605,-0.0324935913085938,-0.00442218780517578,-0.00339990854263306,-0.032750129699707,-0.00576972961425781,0.00253641605377197,-0.0399138927459717,-0.00796604156494141,0.00889366865158081,-0.0431594848632813,-0.00963401794433594,0.0161603689193726,-0.0558526515960693,-0.0118579864501953,0.0176183581352234,-0.0624206066131592,-0.0154838562011719,0.00451403856277466,-0.0740993022918701,-0.0226230621337891,-0.00285929441452026,-0.109077453613281,-0.0282688140869141,-0.00268316268920898,-0.159327745437622,-0.0351848602294922,-0.00916439294815063,-0.0346791744232178,-0.00759696960449219,-0.00922173261642456,-0.0391330718994141,-0.0113296508789063,-0.00377541780471802,-0.0494551658630371,-0.0169963836669922,-0.00286996364593506,-0.0837657451629639,-0.0236454010009766,-0.00665634870529175,-0.0328068733215332,-0.00633811950683594,-0.00222310423851013,0.00410175323486328,0.00111198425292969,0.364614248275757,0.574792861938477,-0.636462211608887,0.460901975631714,0.509015560150146,-0.835040092468262,0.134209394454956,0.455369472503662,-0.687342643737793,0.303750991821289,0.61398458480835,-0.666497230529785,0.111141681671143,0.322372436523438,-0.691246032714844,0.0606871247291565,0.228277683258057,-0.706578254699707,0.0233358144760132,0.139857769012451,-0.70640754699707,0.454293727874756,0.151336193084717,-0.893330574035645,0.469332218170166, +0.096127986907959,-0.935287475585938,0.60266375541687,-0.1347975730896,-1.00005435943604,0.541651487350464,-0.180011749267578,-1.00350332260132,0.221770524978638,-0.246203422546387,-1.03447151184082,0.273691177368164,-0.117496967315674,-0.828937530517578,0.151746034622192,0.0676932334899902,-0.799908638000488,0.0408051013946533,0.156614303588867,-0.916275024414063,-0.0338757634162903,0.0912995338439941,-0.657970428466797,0.0173113942146301,0.102922916412354,-0.44096565246582,0.0137591958045959,0.0411825180053711,-0.00121307373046875,0.00185549259185791,-0.0809445381164551,-0.0719242095947266,0.0237480401992798,-0.11609935760498,-0.106504440307617,0.0537909269332886,-0.133247852325439,-0.121820449829102,0.0849208831787109,-0.127762794494629,-0.063507080078125,-0.0369312763214111,-0.147495269775391,0.00800609588623047,-0.0852258205413818,-0.176612377166748,0.108213424682617,-0.152630567550659,-0.186233043670654,0.0965089797973633,-0.288655996322632,-0.197507858276367,0.12209415435791,-0.175417900085449,-0.286369323730469,0.0368862152099609,-0.282756090164185,-0.4581618309021,-0.0734109878540039,-0.319236040115356,-0.49191951751709,-0.17020320892334,-0.283263921737671,-0.570595741271973,-0.227787017822266,-0.0713152885437012,-0.733841419219971,-0.428863525390625,-0.0415422916412354,-0.701671600341797,-0.195104598999023,0.0210299491882324,-0.349779605865479,-0.0189714431762695,0.0240277051925659,-0.115889549255371,-0.251388549804688,0.0451579093933105,-0.062556266784668,-0.322501182556152,0.0276469588279724,-0.038177490234375,-0.307347297668457,0.0116085708141327,-0.0625114440917969,-0.0640792846679688,-0.0265197455883026,0.0104126930236816,0.0176668167114258,-0.0291095972061157,0.0115132331848145,0.0398693084716797,-0.0274507403373718,0.148880958557129,0.114439964294434,-0.0223040580749512,0.362350463867188,0.215750694274902,-0.0533874034881592,0.297615528106689,0.277132034301758,-0.0437569618225098,0.19870138168335,0.260843276977539,-0.13357949256897,0.245926380157471,0.358005523681641,-0.218405485153198,0.258342742919922, +0.258685111999512,-0.0358688831329346,0.12598991394043,0.0509824752807617,0.129164218902588,-0.0927414894104004,-0.357649803161621,0.165540218353271,-0.360909938812256,-0.627902984619141,0.184454917907715,-0.590910911560059,-0.670075416564941,0.131800889968872,-0.635167598724365,-0.683856964111328,-0.0197577476501465,-0.693347930908203,-0.453692436218262,-0.08121657371521,-0.48192310333252,-0.285200119018555,-0.0439728498458862,-0.387962818145752,-0.484800338745117,-0.00147342681884766,-0.303205966949463,-0.514575004577637,-0.00217938423156738,-0.309125423431396,-0.382747650146484,-0.00380048155784607,0.0295343399047852,0.0206241607666016,0,5.96046447753906e-06,0,0,-2.86102294921875e-06,-0.587490081787109,0.122285604476929,0.0852017402648926,-0.739159107208252,0,-1.43051147460938e-06,-0.587490081787109,0,1.66893005371094e-06,-0.587490081787109,0,-4.52995300292969e-06,-0.587491035461426,0,-4.52995300292969e-06,-0.587491035461426,0,3.09944152832031e-06,-0.587490081787109,-0.000552654266357422,0.000251293182373047,-0.720715045928955,-0.0052790641784668,0.00950860977172852,-0.728108882904053,-0.00435256958007813,0.0169181823730469,-0.721095561981201,-0.00591182708740234,0.0156598091125488,-0.506240844726563,0.0168051719665527,-0.0160017013549805,-0.466192245483398,0.018043041229248,0.00841331481933594,-0.462890625,0.0102481842041016,0.0684337615966797,-0.450016021728516,-0.00214982032775879,0.112611770629883,-0.469596862792969,-0.00584173202514648,0.0999736785888672,-0.507693290710449,-0.00563454627990723,0.0404777526855469,-0.555027008056641,-0.00441253185272217,0.00831890106201172,0.011723518371582,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.33786010742188e-06,-0.179092884063721,0,-6.19888305664063e-06,-0.217879772186279,0,-6.19888305664063e-06,-0.30161190032959,0,-0.233698844909668,-0.285504817962646, +0,-0.10120964050293,-0.187989234924316,0,-0.0786333084106445,-0.219666957855225,-4.83989715576172e-05,2.288818359375e-05,9.72747802734375e-05,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06, +0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4920 { + a: -0.597092765817582,-1.20674596726894,-0.819351315498352,-0.384596306972981,-1.27944368124008,-0.820560738444328,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.35247701406479,0.038206547498703,-0.535711735486984,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.33883160352707,0.271105103194714,0.201965391635895,-0.185629397630692,0.60392153263092,-0.423017710447311,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.149402499198914,0.649232625961304,-0.918700143694878,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.896484866738319,0.121514856815338,0.316224336624146,-0.597992211580276,0.508298240602016,0.248544991016388,-0.456251949071884,0.331182681024075,0.38022056221962,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276, +-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209, +-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881, +-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888, +-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986, +-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954, +0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359, +0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703, +-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,-0.100254029035568,-0.732699543237686,-1.28549030423164,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822, +-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028, +0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752, +-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443, +-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157, +0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844, +-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474, +0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852, +0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243, +-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682, +0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888, +0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886, +0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001, +-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017, +-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074, +-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028, +0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.15227884054184,0.806445047259331,0.284897208213806,-1.06437003612518,0.84141793847084,0.424562990665436,-1.30209255218506,0.681211248040199,0.375398635864258,-1.31432190537453,0.719328045845032,0.437053114175797,-0.981949830893427,0.209982231259346,0.852725625038147,-0.862383862957358,0.426683764904737,0.597152233123779,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481, +-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403, +-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361, +-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199, +0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901, +-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047, +-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167, +-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436, +-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229, +0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713, +-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496, +1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344, +-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877, +-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308, +-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025, +0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709, +-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649, +1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.353135406970978,-1.14357566833496,0.00262853503227234,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216, +-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997, +0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805454335168, "Geometry::Mouth_Stretcher_Right", "Shape" { + Version: 100 + Indexes: *7082 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970, +2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409, +3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819, +3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242, +4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658, +4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081, +5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496, +5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5950,5951, +5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6165,6167,6169,6171,6177,6179,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6383,6384,6385,6386,6387,6390,6391,6392,6393,6394,6401,6402,6403,6404,6408, +6409,6410,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6444,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6525,6526,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215, +7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7328,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7367,7368,7369,7370,7371,7372,7374,7377,7379,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7410,7412,7413,7414,7415,7416,7417,7418,7419,7422,7424,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7442,7447,7449,7450,7451,7452,7454,7455,7456,7457,7460,7469,7470,7471,7472,7473,7474,7475,7478,7480,7484,7486,7487,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7649,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7783,7790,7791,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7826,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923, +7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8546,8552,8553,8563,8564,8565,8566,8567,8568,8572,8576,8578,8580,8581,8582,8583,8584,8585,8586,8591,8598,8601,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *21246 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, +0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, +0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, +0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, +4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, +-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05, +0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348, +0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699, +0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05, +0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.0591270923614502,-0.0377306938171387,-0.0104227066040039,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.0322041511535645,-0.0259759426116943,0.00125503540039063,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05, +0,0,0.0251395702362061,-0.00778627395629883,-0.00145149230957031,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.0481420755386353,-0.0239481925964355,-0.00742816925048828,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000970304012298584,-0.00103998184204102,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,0.0694565773010254,-0.029712438583374,-0.00790500640869141,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.011496901512146,-0.012258768081665,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.0458734035491943,-0.0276517868041992,-0.0013427734375,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.0390095710754395,-0.0215480327606201,-0.0118541717529297,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.0734621286392212,-0.0413720607757568,-0.00867366790771484,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,0.049837589263916,-0.0161523818969727,-0.00550270080566406,7.7366828918457e-05, +0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.00525617599487305,-0.00153803825378418,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05, +0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625, +0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05, +0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945, +0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0, +7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05, +0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05, +0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05, +0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348, +0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302, +0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05, +0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05, +0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05, +0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.00466084480285645,-0.00548720359802246,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.0609959363937378,-0.0222251415252686,-0.00713920593261719,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05, +0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,0.0448509454727173,-0.0214264392852783,-0.0104236602783203,0.0405791997909546,-0.0279853343963623,0.000581741333007813,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,0.0136862993240356,-0.00416302680969238,-0.000306129455566406,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.0683871507644653,-0.0420777797698975,-0.00938320159912109,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05, +0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.021396815776825,-0.0198662281036377,0.00051116943359375,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.0483782291412354,-0.0263514518737793,-0.0041961669921875,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.0469439029693604,-0.0293359756469727,-0.0114326477050781,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,0.0737874507904053,-0.0366992950439453,-0.00827598571777344,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.0376752614974976,-0.0118982791900635,-0.00326347351074219,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047, +0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000624418258666992,-0.000185966491699219,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05, +0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0, +0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05, +0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0, +8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945, +0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05, +0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, +0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072, +0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05, +0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0, +8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05, +0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0, +0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05, +0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0, +8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05, +0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332, +0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0, +8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05, +0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05, +0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0, +0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477, +0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0, +9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05, +0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0, +0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0, +0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05, +0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0, +0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05, +0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0, +8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05, +0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0, +0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05, +0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0, +0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0, +0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883, +0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05, +0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0, +0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0, +9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168, +0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0, +0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,1.66221145432263e-29,-0.0576834678649902,0,1.67509351823815e-29,-0.00913190841674805,0,0.00593897423095768,-0.0462260246276855,-0.0453395843505859,-0.00353378801810322,-0.0517654418945313,-0.0434350967407227,-0.0402948483097134,-0.0463104248046875,0.00263881683349609,-0.00693869169481331,-0.0533323287963867,-0.0393276214599609,0.00401326131395763,-0.0514993667602539,-0.042724609375,-0.0102280900027836,-0.0266036987304688,-0.00683975219726563,0.0059659266989911,-0.0488252639770508,-0.0441675186157227,-0.00648529871978099,-0.0535697937011719,-0.0380611419677734,-0.00272510759532452,-0.0148100852966309,-0.0155248641967773,-0.0116692399842577,-0.00778388977050781,-0.0398683547973633,-0.000943864000873873,-0.031834602355957,-0.0272378921508789, +-0.0510754660790553,0.00851631164550781,-0.056696891784668,-0.00975990388542414,-0.0413398742675781,-0.00844097137451172,0.024855699390173,0.0416440963745117,0.109015464782715,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,-2.98023223876953e-06,0,1.6494232794919e-29,6.09457492828369e-06,0,1.76704839760241e-29,-6.10947608947754e-06,0,1.76704839760241e-29,1.54972076416016e-06,0,1.76704839760241e-29,3.09944152832031e-06,0,0.0402112565934658,0.0395736694335938,0.158485412597656,1.63431706741717e-29,-0.0212080478668213,0,-0.00350005575455725,-0.0288643836975098,-0.00302600860595703,-0.00805237982422113,-0.037968635559082,-0.00696277618408203,-0.00947846099734306,-0.0422544479370117,-0.00819587707519531,1.63873030579207e-29,-0.0608837604522705,0,1.64724848328751e-29,-0.0616207122802734,0,1.69452569998719e-29,-6.07967376708984e-06,0,1.70417235205941e-29,-3.09944152832031e-06,0,1.71227329488799e-29,-1.54972076416016e-06,0,1.68687870486503e-29,4.52995300292969e-06,0,1.6823769940833e-29,3.03983688354492e-06,0,0.0142997605726123,-0.00781917572021484,0.140799522399902,-0.00327401864342391,-0.00852489471435547,0.0109024047851563,1.76704839760241e-29,6.19888305664063e-06,0,1.20450953867742e-29,4.52995300292969e-06,0,1.25386284767183e-29,4.58955764770508e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,1.76704839760241e-29,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,0.00030970573425293,0,0,-6.09457492828369e-06,0,0,0.000513523817062378,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.0795361995697021,0,0.000128269195556641,-0.00920772552490234,0,0.00498649477958679,-0.0964298248291016,-0.0639190673828125, +-0.00550204515457153,-0.101284980773926,-0.0546321868896484,0.167726993560791,-0.707053184509277,0.142163276672363,0.10945725440979,-0.741019248962402,0.223371505737305,-0.094057559967041,-0.675601482391357,0.0781106948852539,-0.0334868431091309,-0.719618797302246,0.030573844909668,-0.0555346012115479,-0.252529621124268,0.0121860504150391,-0.0429599285125732,-0.334860801696777,-0.0444984436035156,-0.0517959594726563,-0.246419906616211,-0.0425214767456055,-0.101143956184387,-0.222472190856934,-0.129537582397461,-0.0263551473617554,-0.267362117767334,-0.0779170989990234,-0.0453908443450928,-0.179988384246826,-0.11833381652832,-0.00726300477981567,-0.192025661468506,-0.0548105239868164,-0.0126553773880005,-0.141599178314209,-0.0928783416748047,-0.104472875595093,-0.534534931182861,0.0262203216552734,-0.112606287002563,-0.446418285369873,0.0187110900878906,0.14988374710083,-0.762790679931641,0.195289611816406,0.137470245361328,-0.769210338592529,0.0529022216796875,0.176611185073853,-0.754067897796631,0.210469245910645,0.156377077102661,-0.837718486785889,0.0548114776611328,0.197516679763794,-0.720362663269043,0.256500244140625,0.158542394638062,-0.729660987854004,0.0714702606201172,0.15982460975647,-0.721329212188721,0.309762001037598,0.209766149520874,-0.669604301452637,0.129140853881836,0.00728440284729004,-0.625784873962402,0.0303220748901367,0.0166001319885254,-0.647607803344727,0.303556442260742,-0.0566723346710205,-0.487497329711914,-0.0139369964599609,-0.116070985794067,-0.534886837005615,0.233206748962402,-0.163300037384033,-0.372396469116211,0.135809898376465,-0.0476367473602295,-0.196175098419189,-0.0834922790527344,-0.148543834686279,-0.224846363067627,-0.0106544494628906,-0.0852831602096558,-0.0948033332824707,-0.182416915893555,-0.141568303108215,-0.176172733306885,-0.0844278335571289,-0.0481963157653809,-0.00137519836425781,-0.162002563476563,-0.0826737284660339,-0.164953231811523,-0.046234130859375,-0.0227411985397339,-0.0376501083374023,-0.10823917388916,-0.109465062618256,-0.131124973297119,0.00213336944580078, +-0.00895160436630249,-0.0644469261169434,-0.0621795654296875,0.00632470846176147,-0.108116626739502,-0.0529565811157227,-0.000113248825073242,-0.182186603546143,-0.0617666244506836,-0.0325864553451538,-0.22346305847168,-0.0776729583740234,-0.0781030654907227,-0.214998722076416,-0.0737829208374023,-0.0792992115020752,-0.26906156539917,0.0221261978149414,-0.149080038070679,-0.468070507049561,0.0195894241333008,-0.0867180824279785,-0.697486877441406,0.0547037124633789,0.14231276512146,-0.762638092041016,0.254510879516602,0.192344903945923,-0.780982494354248,0.182248115539551,0.238631248474121,-0.795376777648926,0.188342094421387,0.22704005241394,-0.770657539367676,0.216961860656738,0.193722009658813,-0.735584735870361,0.25253963470459,-0.01125168800354,-0.680306911468506,0.207609176635742,-0.11440372467041,-0.567344665527344,0.118124961853027,-0.142995357513428,-0.314630031585693,0.0662651062011719,-0.173714518547058,-0.180995941162109,-0.0756750106811523,-0.185615062713623,-0.119808197021484,-0.114728927612305,-0.102967441082001,-0.118278980255127,-0.0327386856079102,-0.099878191947937,-0.11268138885498,0.0238971710205078,0.00687429308891296,-0.102608203887939,-0.0594100952148438,-0.00691664218902588,-0.156805038452148,-0.0806035995483398,-0.0406844615936279,-0.195703506469727,-0.100480079650879,-0.0886776447296143,-0.223677158355713,-0.094761848449707,-0.0838905572891235,-0.337005615234375,0.00339031219482422,-0.134995222091675,-0.513887882232666,0.0180263519287109,-0.0766227245330811,-0.70979642868042,0.0489416122436523,0.168264627456665,-0.784878730773926,0.23723316192627,0.21098780632019,-0.79949426651001,0.163568496704102,0.220479249954224,-0.805167675018311,0.140676498413086,0.228994607925415,-0.776212692260742,0.152286529541016,0.229021072387695,-0.721557140350342,0.208309173583984,0.0356752872467041,-0.617142677307129,0.0723762512207031,-0.0894343852996826,-0.470705509185791,0.020751953125,-0.0586553812026978,-0.161410808563232,-0.0621671676635742,-0.0794533491134644,-0.0173778533935547,-0.177101135253906,-0.0533578395843506, +0.0335345268249512,-0.158036231994629,-0.0275825262069702,0.000315666198730469,-0.106034278869629,-0.00722596049308777,-0.0567750930786133,-0.0593929290771484,-0.00797432661056519,-0.036219596862793,-0.0228395462036133,-0.0170378088951111,-0.0767474174499512,-0.0315208435058594,-0.0256466865539551,-0.11336612701416,-0.045292854309082,-0.000334858894348145,-0.234844207763672,-0.00475120544433594,0.0757415294647217,-0.299776554107666,0.0559616088867188,0.10783863067627,-0.363600254058838,0.137477874755859,0.106349468231201,-0.387628078460693,0.278562545776367,0.274105548858643,-0.380926132202148,0.451558113098145,0.262244462966919,-0.353853225708008,0.493288040161133,0.166119337081909,-0.37518835067749,0.496253967285156,0.0945303440093994,-0.401963233947754,0.509078025817871,0.0280852317810059,-0.414980888366699,0.528519630432129,0.0757715702056885,-0.33463716506958,0.667523384094238,0.0791964530944824,-0.170750141143799,0.572446823120117,-0.0357803106307983,-0.0180191993713379,-0.0350379943847656,-0.103539884090424,-0.00188827514648438,-0.0635833740234375,-0.161513566970825,-0.0141973495483398,-0.0502090454101563,-0.0756851434707642,-0.00939798355102539,0.0800800323486328,-0.00588631629943848,-0.0366373062133789,0.338019371032715,-0.00038561224937439,-0.066072940826416,-0.0299501419067383,-0.000314593315124512,-0.131531715393066,-0.0184755325317383,-0.00663220882415771,-0.197669506072998,-0.0280685424804688,-0.0206788778305054,-0.15138578414917,-0.00490665435791016,-0.0444643497467041,-0.224893569946289,0.0191326141357422,-0.0829601287841797,-0.424555778503418,0.0534496307373047,-0.0932474136352539,-0.68114709854126,0.0914478302001953,0.142927169799805,-0.747771263122559,0.254244804382324,0.198576927185059,-0.755668640136719,0.263683319091797,0.222573041915894,-0.715573310852051,0.270094871520996,0.179933786392212,-0.643553256988525,0.292718887329102,0.087134838104248,-0.638719081878662,0.392474174499512,0.0797231197357178,-0.588850021362305,0.470881462097168,-0.0195212364196777,-0.437413215637207,0.392663955688477, +-0.0477912425994873,-0.239221096038818,0.182730674743652,-0.0698374509811401,-0.0854630470275879,-0.0133848190307617,-0.104779839515686,-0.0183811187744141,-0.120841026306152,-0.0449416041374207,-0.0567131042480469,-0.115802764892578,-0.0688556730747223,-0.0385465621948242,-0.112002372741699,-0.0305933952331543,-0.101837635040283,-0.0182895660400391,-0.0536583662033081,-0.185341358184814,-0.029292106628418,-0.00520038604736328,-0.289676666259766,-0.0327377319335938,0.0736359357833862,-0.214948654174805,-0.0131511688232422,0.185658693313599,-0.149147033691406,-0.0467300415039063,0.122040033340454,-0.121195316314697,0.045018196105957,0.357045888900757,-0.14184045791626,0.445835113525391,0.51034140586853,-0.227692127227783,0.742347717285156,0.144267320632935,-0.134767055511475,0.833705902099609,0.113757848739624,-0.244824886322021,0.777538299560547,0.118153810501099,-0.0993251800537109,0.750201225280762,0.308660745620728,-0.018369197845459,0.842061996459961,0.313722848892212,-0.216243743896484,0.790835380554199,-0.0235203504562378,0.0661125183105469,0.133912086486816,-0.0815248489379883,0.0606679916381836,0.10490608215332,-0.136619210243225,0.140710830688477,0.0932235717773438,-0.0676562786102295,0.247998237609863,0.19444751739502,0.0118014812469482,0.268400192260742,0.446456909179688,0.114112854003906,0.0535593032836914,0.715588569641113,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.05311584472656e-06,9.5367431640625e-07,0,-4.52995300292969e-06,0,0,2.38418579101563e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,-4.76837158203125e-07,0,-1.49011611938477e-06,4.76837158203125e-07,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,-7.62939453125e-05,-0.000768542289733887,-0.000599861145019531,0.000210285186767578,0.00428009033203125,-0.0126781463623047,0.000516653060913086,-0.00181329250335693,-0.000432014465332031,0.0351629257202148,0.000364065170288086,-0.00266933441162109, +0,6.07967376708984e-06,0,0.0434468984603882,-0.0133141279220581,0.000108718872070313,0,4.58955764770508e-06,0,0.00100159645080566,-0.000419974327087402,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,-0.00463342666625977,0.000942707061767578,-0.0316810607910156,-0.00211811065673828,-0.00695979595184326,-0.00376319885253906,0.00289416313171387,0.00115525722503662,0.00498676300048828,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,-0.00612294673919678,9.5367431640625e-06,-0.00084686279296875,0.0115430355072021,-0.087982177734375,0.106958389282227,0.00119400024414063,0.000330924987792969,0.00242137908935547,0.00289678573608398,-0.00140380859375,-0.000468730926513672,0,-7.62939453125e-06,0,0.0116147994995117,-0.0056915283203125,-0.00332260131835938,0.119580030441284,-0.302328109741211,-0.0388898849487305,0.136605501174927,-0.242403984069824,-0.0477495193481445,0.11903965473175,-0.283511638641357,-0.054814338684082,0.115921378135681,-0.278347969055176,-0.018951416015625,0.129915714263916,-0.237297773361206,0.000964164733886719,0.136843085289001,-0.192579746246338,0.0146560668945313,0.134613394737244,-0.0806000232696533,0.000291824340820313,0.136571645736694,-0.116618871688843,-0.00439929962158203,0.0532984137535095,-0.0322082042694092,-4.10079956054688e-05,0.0631358623504639,-0.0671646595001221,-0.000357627868652344,0.124946117401123,-0.281020879745483,-0.000731468200683594,0.128237724304199,-0.30337929725647,-0.0282754898071289,0.214116811752319,-0.144962072372437,0.171842575073242,0.300072908401489,-0.125400543212891,0.530242919921875,0.465940237045288,-0.320194244384766,0.927966117858887,0.273812532424927,-0.0705442428588867,0.997319221496582,-0.00665760040283203,-0.101917266845703, +0.716825485229492,-0.0354046821594238,-0.119463920593262,0.670452117919922,0.0732190608978271,-0.254147052764893,0.783779144287109,0.0712542533874512,-0.129192352294922,0.820082664489746,0.0676846504211426,0.0308856964111328,0.670964241027832,0.00272321701049805,0.126842498779297,0.367378234863281,-0.0457656383514404,0.0914125442504883,0.0935611724853516,-0.0705642700195313,0.0806369781494141,0.126322746276855,-0.0645126104354858,0.0843467712402344,0.174030303955078,0.019076943397522,0.0506734848022461,0.190317153930664,-0.0195336937904358,-0.0780885219573975,-0.0149612426757813,-0.0246294736862183,-0.0883474349975586,-0.0166988372802734,-0.0435788333415985,-0.134240388870239,-0.0220727920532227,-0.0427044928073883,-0.132663726806641,-0.0213918685913086,-0.00970616936683655,-0.0554168224334717,-0.0089111328125,-0.00785991549491882,-0.0490517616271973,-0.00679588317871094,-0.00312402844429016,-0.0380928516387939,-0.00408554077148438,-0.0012284517288208,-0.0201444625854492,-0.00106239318847656,0.00647437572479248,-0.0484809875488281,-0.00126743316650391,0,-0.0238173007965088,0,0.0189366340637207,-0.0684750080108643,-0.000870704650878906,0.0107969641685486,-0.0855319499969482,0,0.0679417252540588,-0.0870499610900879,-0.00183391571044922,0.0743304491043091,-0.106987953186035,-0.000689506530761719,0.0980051755905151,-0.122912645339966,-0.00167655944824219,0.124503135681152,-0.140937328338623,0.000575065612792969,0.0712776184082031,-0.243460416793823,0.00328254699707031,0.107540011405945,-0.255214691162109,0.00321006774902344,0.0119647979736328,-0.303377389907837,-0.0421991348266602,0.0494800806045532,-0.297999858856201,-0.0466804504394531,-0.0153950452804565,-0.22166633605957,-0.0201253890991211,0.00167548656463623,-0.351958751678467,-0.0267791748046875,-0.0429309010505676,-0.203388214111328,-0.0305681228637695,-0.0450254678726196,-0.168829679489136,-0.0260295867919922,-0.00448977947235107,-0.29612398147583,-0.0246753692626953,0.0134559869766235,-0.375608921051025,-0.0360240936279297,-0.0220198333263397,-0.0832886695861816, +-0.0161161422729492,-0.0107205510139465,-0.0558915138244629,-0.00928783416748047,-0.00387045741081238,-0.0324335098266602,-0.00349330902099609,0.00370979309082031,-0.0442633628845215,-0.000658035278320313,0.0199108719825745,-0.0760433673858643,-0.000370025634765625,0.0752038359642029,-0.0985968112945557,-0.00133132934570313,0.110967636108398,-0.134450912475586,8.0108642578125e-05,0.0852237939834595,-0.251287698745728,0.00582313537597656,0.018220067024231,-0.340681076049805,-0.0434541702270508,0.00223767757415771,-0.350618839263916,-0.0266828536987305,-0.0190670490264893,-0.287073135375977,-0.0186014175415039,-0.0461785793304443,-0.185637712478638,-0.0280513763427734,-0.0439959168434143,-0.136505126953125,-0.0223655700683594,-0.0448614954948425,-0.138725757598877,-0.0227985382080078,-0.0452690720558167,-0.195338487625122,-0.0292987823486328,-0.0146248936653137,-0.317225933074951,-0.0197906494140625,0.00829386711120605,-0.37549877166748,-0.0312986373901367,0.0338753461837769,-0.336306095123291,-0.0454273223876953,0.0966982841491699,-0.257723331451416,0.00417804718017578,0.119940280914307,-0.139416456222534,0.000696182250976563,0.0762315988540649,-0.102967023849487,-0.00099945068359375,0.0180333852767944,-0.0806200504302979,-0.000110626220703125,0.00138366222381592,-0.0375957489013672,-0.000460624694824219,-0.00315892696380615,-0.0279786586761475,-0.0027313232421875,-0.0100553631782532,-0.0542371273040771,-0.00869464874267578,-0.0246151089668274,-0.0889782905578613,-0.0169076919555664,-0.0248807072639465,-0.0886197090148926,-0.0166263580322266,0.00143653154373169,-0.0838282108306885,0,0.0684974193572998,-0.106259346008301,-0.000537872314453125,0.0648385286331177,-0.0906441211700439,-0.00043487548828125,0,-0.0910055637359619,0,0.132523059844971,-0.127844333648682,-0.00339603424072266,0.128351330757141,-0.133800983428955,-0.00170040130615234,0.116295337677002,-0.250047206878662,0.00274372100830078,0.124015808105469,-0.2461256980896,0.00100517272949219,0.0471670627593994,-0.254444360733032,-0.0202932357788086,0.0534218549728394, +-0.291066408157349,-0.0250301361083984,0.0666069984436035,-0.313311815261841,-0.0315799713134766,0.0773952007293701,-0.317652940750122,-0.0385541915893555,0.0849733352661133,-0.316620588302612,-0.0443410873413086,0.0983016490936279,-0.309927701950073,-0.0500679016113281,0.0654712915420532,-0.25761866569519,-0.0406942367553711,0.0892236232757568,-0.242030143737793,-0.0283107757568359,0.0563420057296753,-0.262618064880371,-0.0335922241210938,0.0945515632629395,-0.239954233169556,-0.0145540237426758,0.0588303804397583,-0.258345127105713,-0.0249490737915039,0.104153394699097,-0.233547210693359,-0.00527286529541016,0.142007231712341,-0.291941165924072,0.0215978622436523,0.142019748687744,-0.299408674240112,-0.00891017913818359,0.115203261375427,-0.288045167922974,-0.053980827331543,0.0996671915054321,-0.283831834793091,-0.0466928482055664,0.0819567441940308,-0.27769660949707,-0.0467519760131836,0.0676670074462891,-0.279029607772827,-0.0478715896606445,0.0597274303436279,-0.303161382675171,-0.0473060607910156,0.0457112789154053,-0.33193039894104,-0.043034553527832,0.0338702201843262,-0.322593927383423,-0.038264274597168,0.0231921672821045,-0.285815238952637,-0.0310268402099609,0,-6.07967376708984e-06,0,0.0141082406044006,-0.00860726833343506,0,0.0961838960647583,-0.103501558303833,0.0215959548950195,0,-4.64916229248047e-06,0,0.00987130403518677,-0.00623989105224609,0,0.0881932973861694,-0.0834919214248657,0.0153312683105469,0,-4.58955764770508e-06,0,0.000165343284606934,-9.46521759033203e-05,0,0.0736716985702515,-0.0500165224075317,0.00543212890625,0.0277493596076965,-0.0163333415985107,0,0.072702169418335,-0.0669779777526855,0.0106668472290039,0.136532545089722,-0.266479015350342,-0.0454301834106445,0.133278489112854,-0.265169143676758,-0.0499696731567383,0.149012923240662,-0.205379486083984,-0.00474166870117188,0.146393299102783,-0.2134850025177,-0.018733024597168,0.153683185577393,-0.184826135635376,0.0247392654418945,0.150251388549805,-0.194205760955811,0.00481033325195313,0.143749952316284,-0.179279327392578,0.0388689041137695, +0.149310231208801,-0.183638334274292,0.0244722366333008,0.135659337043762,-0.177609205245972,0.0427064895629883,0.137852311134338,-0.178603410720825,0.0376577377319336,0.149329662322998,-0.216079950332642,-0.0287981033325195,0.151182293891907,-0.200815916061401,-0.00862503051757813,0.137813806533813,-0.247759103775024,-0.0484066009521484,0.146873235702515,-0.221318483352661,-0.034820556640625,0.150578379631042,-0.205209493637085,-0.0174026489257813,0.151825547218323,-0.19232702255249,0.00401782989501953,0.144701719284058,-0.184939622879028,0.020319938659668,0.143356084823608,-0.19916296005249,-0.0042572021484375,0,7.62939453125e-06,0,0.0475343465805054,-0.027705192565918,-1.9073486328125e-05,0.110070824623108,-0.0802860260009766,0.00799846649169922,0.134823203086853,-0.179481983184814,0.0325784683227539,0.143168687820435,-0.190149068832397,0.00953865051269531,0.147493481636047,-0.258228302001953,-0.0384416580200195,0.155404448509216,-0.199044466018677,-0.00294589996337891,0.155054211616516,-0.158332109451294,0.0276098251342773,0.0355198383331299,-0.0169088840484619,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0.105685949325562,-0.0522723197937012,-0.0142831802368164,0.152413129806519,-0.126888036727905,0.0403661727905273,0.0276894569396973,0.0147716999053955,0.0741233825683594,0.163995504379272,-0.0777838230133057,0.36451530456543,0.074923038482666,-0.0536940097808838,0.161096572875977,0.13459587097168,-0.184607028961182,0.601090431213379,0.018002986907959,-0.0495200157165527,0.0715866088867188,-0.00438928604125977,-0.134623289108276,0.364879608154297,0.0498814582824707,-0.156900882720947,0.721939086914063,-0.0331320762634277,-0.0549306869506836,0.0870695114135742,0.00677680969238281,-0.00474262237548828,-0.00342082977294922,0.000134944915771484,0.000563383102416992,-0.000584125518798828,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0.0330362319946289,0.00607633590698242,0.202304363250732, +0,5.96046447753906e-06,0,-0.000411510467529297,0.00241661071777344,0.00239372253417969,0,4.52995300292969e-06,0,0.00303888320922852,-0.0660796165466309,0.672313690185547,0,6.19888305664063e-06,0,-0.0101795196533203,0.0323071479797363,0.0179848670959473,0.0174503326416016,0.0767865180969238,0.172672748565674,-0.0187740325927734,0.0318608283996582,0.00374221801757813,-0.0580286979675293,0.0809292793273926,0.0781421661376953,-0.131928443908691,-0.0563111305236816,0.442511081695557,-0.0450310707092285,-0.310181617736816,0.195218086242676,-0.0286564826965332,-0.0920791625976563,0.138073921203613,-0.0493745803833008,0.00300455093383789,0.0418462753295898,-0.00179719924926758,0.00173091888427734,-0.00110769271850586,-0.0095524787902832,-0.304445743560791,0.368039131164551,0.0835781097412109,-0.112734794616699,0.153359889984131,0.0322589874267578,-0.0897607803344727,0.0813107490539551,0.0967540740966797,-0.326504707336426,0.624225616455078,0.103562593460083,-0.084202766418457,0.165948867797852,0.0110960006713867,-0.0432615280151367,0.05010986328125,0.0847980976104736,-0.172977447509766,0.747123718261719,0.0697212219238281,-0.159865379333496,0.363869667053223,0.0431375503540039,-0.0650119781494141,0.62578296661377,0.0188391208648682,-0.162288665771484,0.363728523254395,-0.0348238945007324,-0.0222187042236328,0.0228996276855469,-0.0629951953887939,-0.0594263076782227,0.119637489318848,-0.0390932559967041,-0.0150880813598633,0.275566101074219,-0.0455694198608398,0.0178298950195313,0.0371475219726563,-0.0298333168029785,0.00333118438720703,-0.00201416015625,-0.0425919890403748,0.040165901184082,0.186580657958984,-0.0385414361953735,0.0520877838134766,0.125638008117676,-0.00260508060455322,0.00583267211914063,0.0120220184326172,-0.00686538219451904,0.00400066375732422,0.0156774520874023,-0.0071098804473877,0.000806808471679688,0.19408130645752,-0.00323605537414551,-0.00634765625,0.0169363021850586,-0.0251994132995605,-0.031590461730957,0.00908470153808594,-0.0018620491027832,-0.000360488891601563,9.67979431152344e-05,0,5.96046447753906e-06, +0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,0.000113487243652344,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,-3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,0.000143557786941528,0,1.19209289550781e-06,-1.39474868774414e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,0.000310592353343964,0,0,0.000773891806602478,0,0,0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.49011611938477e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,-9.29832458496094e-05,-5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.49011611938477e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,0.0001564621925354,-0.000370025634765625,0,0.000211834907531738,0,0,8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,8.0108642578125e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,0,6.07967376708984e-06, +0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,-3.67164611816406e-05,0.000189661979675293,-1.04904174804688e-05,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,4.76837158203125e-07,0,-6.07967376708984e-06,4.76837158203125e-07,-4.76837158203125e-07,-6.31809234619141e-06,0,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,9.5367431640625e-07,4.29153442382813e-06,-5.96046447753906e-06,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-0.000197052955627441,0,0,-3.21865081787109e-06,0,0,2.98023223876953e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,-3.814697265625e-06,-3.09348106384277e-05,4.76837158203125e-06,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-7.51018524169922e-06,-6.05583190917969e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030672550201416,-2.57492065429688e-05,0.000108718872070313,-0.000706672668457031,-9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06, +0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06, +0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06, +0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0244932174682617,-0.0368142127990723,-0.00387382507324219,0.0380070805549622,-0.0468306541442871,-0.00460529327392578,0.0454353094100952,-0.0639605522155762,-0.00764369964599609,0.0296103954315186,-0.0882976055145264,-0.00953197479248047,0.019112229347229,-0.115752220153809,-0.0153121948242188,0.00607931613922119,-0.143117427825928,-0.0280351638793945,0.0139689445495605,-0.0324935913085938,-0.00442218780517578,0.00339990854263306,-0.032750129699707,-0.00576972961425781,-0.00253641605377197,-0.0399138927459717,-0.00796604156494141,-0.00889366865158081,-0.0431594848632813,-0.00963401794433594,-0.0161603689193726,-0.0558526515960693,-0.0118579864501953,-0.0176183581352234,-0.0624206066131592,-0.0154838562011719,-0.00451403856277466,-0.0740993022918701,-0.0226230621337891,0.00285929441452026,-0.109077453613281,-0.0282688140869141,0.00268316268920898,-0.159327745437622,-0.0351848602294922,0.00916439294815063,-0.0346791744232178,-0.00759696960449219,0.00922173261642456,-0.0391330718994141,-0.0113296508789063,0.00377541780471802,-0.0494551658630371,-0.0169963836669922,0.00286996364593506,-0.0837657451629639,-0.0236454010009766,0.00665634870529175,-0.0328068733215332,-0.00633811950683594,0.00152464745588077,0.00308847427368164, +0.000359535217285156,-0.00540309213465662,0.0166411399841309,-0.00294113159179688,0.00222310423851013,0.00410175323486328,0.00111198425292969,-0.364614248275757,0.574792861938477,-0.636462211608887,-0.460901975631714,0.509015560150146,-0.835040092468262,-0.134209394454956,0.455369472503662,-0.687342643737793,-0.303750991821289,0.61398458480835,-0.666497230529785,-0.111141681671143,0.322372436523438,-0.691246032714844,-0.0606871247291565,0.228277683258057,-0.706578254699707,-0.0233358144760132,0.139857769012451,-0.70640754699707,-0.454293727874756,0.151336193084717,-0.893330574035645,-0.469332218170166,0.096127986907959,-0.935287475585938,-0.60266375541687,-0.1347975730896,-1.00005435943604,-0.541651487350464,-0.180011749267578,-1.00350332260132,-0.221770524978638,-0.246203422546387,-1.03447151184082,-0.273691177368164,-0.117496967315674,-0.828937530517578,-0.151746034622192,0.0676932334899902,-0.799908638000488,-0.0408051013946533,0.156614303588867,-0.916275024414063,0.0338757634162903,0.0912995338439941,-0.657970428466797,-0.0173113942146301,0.102922916412354,-0.44096565246582,-0.0137591958045959,0.0411825180053711,-0.00121307373046875,0.00313858084700769,-0.0388274192810059,-0.0482187271118164,-0.00185549259185791,-0.0809445381164551,-0.0719242095947266,-0.0237482786178589,-0.11609935760498,-0.106504440307617,-0.0537906885147095,-0.133247852325439,-0.121820449829102,-0.0849215984344482,-0.127762794494629,-0.063507080078125,0.0369307994842529,-0.147495269775391,0.00800609588623047,0.0852265357971191,-0.176612377166748,0.108213424682617,0.152629613876343,-0.186233043670654,0.0965089797973633,0.288655996322632,-0.197507858276367,0.12209415435791,0.175418615341187,-0.286369323730469,0.0368862152099609,0.282756328582764,-0.4581618309021,-0.0734109878540039,0.319235801696777,-0.49191951751709,-0.17020320892334,0.283263921737671,-0.570595741271973,-0.227787017822266,0.071314811706543,-0.733841419219971,-0.428863525390625,0.0415422916412354,-0.701671600341797,-0.195104598999023,-0.0210297107696533,-0.349779605865479,-0.0189714431762695, +-0.024027943611145,-0.115889549255371,-0.251388549804688,-0.0451579093933105,-0.062556266784668,-0.322501182556152,-0.0276468992233276,-0.038177490234375,-0.307347297668457,-0.0116086304187775,-0.0625114440917969,-0.0640792846679688,-0.00759205266513163,-0.0514554977416992,-0.0401153564453125,0.0181202143648989,0.0201129913330078,0.00498676300048828,0.0265198349952698,0.0104126930236816,0.0176668167114258,0.0291091203689575,0.0115132331848145,0.0398693084716797,0.02745121717453,0.148880958557129,0.114439964294434,0.0223041772842407,0.362350463867188,0.215750694274902,0.053388237953186,0.297615528106689,0.277132034301758,0.043757438659668,0.19870138168335,0.260843276977539,0.13357949256897,0.245926380157471,0.358005523681641,0.218406915664673,0.258342742919922,0.258685111999512,0.0358691215515137,0.12598991394043,0.0509824752807617,-0.129163503646851,-0.0927414894104004,-0.357649803161621,-0.16554069519043,-0.360909938812256,-0.627902984619141,-0.184453964233398,-0.590910911560059,-0.670075416564941,-0.13180136680603,-0.635167598724365,-0.683856964111328,0.0197570323944092,-0.693347930908203,-0.453692436218262,0.0812162160873413,-0.48192310333252,-0.285200119018555,0.0439728498458862,-0.387962818145752,-0.484800338745117,0.00147342681884766,-0.303205966949463,-0.514575004577637,0.00217908620834351,-0.309125423431396,-0.382747650146484,0.00380074977874756,0.0295343399047852,0.0206241607666016,0.00239429112843936,0.00665950775146484,0.0103416442871094,0,5.96046447753906e-06,0,0,-2.86102294921875e-06,-0.587490081787109,-0.122285604476929,0.0852017402648926,-0.739159107208252,0,-1.43051147460938e-06,-0.587490081787109,0,1.66893005371094e-06,-0.587490081787109,0,-4.52995300292969e-06,-0.587491035461426,0,-4.52995300292969e-06,-0.587491035461426,0,3.09944152832031e-06,-0.587490081787109,0.000552654266357422,0.000251293182373047,-0.720715045928955,0.0052790641784668,0.00950860977172852,-0.728108882904053,0.00435256958007813,0.0169181823730469,-0.721095561981201,0.00591182708740234,0.0156598091125488,-0.506240844726563,-0.0168051719665527, +-0.0160017013549805,-0.466192245483398,-0.018043041229248,0.00841331481933594,-0.462890625,-0.0102481842041016,0.0684337615966797,-0.450016021728516,0.00214982032775879,0.112611770629883,-0.469596862792969,0.00584173202514648,0.0999736785888672,-0.507693290710449,0.00563454627990723,0.0404777526855469,-0.555027008056641,0.00441253185272217,0.00831890106201172,0.011723518371582,0.000101773992355447,0.000173568725585938,0.000220298767089844,1.53641994185809e-29,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,1.69348870708276e-29,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.33786010742188e-06,-0.179092884063721,0,-6.19888305664063e-06,-0.217879772186279,0,-6.19888305664063e-06,-0.30161190032959,0,-0.233698844909668,-0.285504817962646,0,-0.10120964050293,-0.187989234924316,0,-0.0786333084106445,-0.219666957855225,4.83989715576172e-05,2.288818359375e-05,9.72747802734375e-05,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-0.000312685966491699,0,0,-6.09457492828369e-06,0,0,-0.000525712966918945,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-0.000132560729980469,0,0,5.96046447753906e-06,0,0.0019029974937439,-0.020164966583252,-0.0272045135498047,-0.00496849417686462,-0.0261220932006836,-0.0284862518310547,-3.37362289428711e-05,-0.00011444091796875,-0.000101089477539063,-3.36170196533203e-05,-0.000111579895019531,-0.000100135803222656,-0.000894069671630859,-0.00310373306274414,-0.00270843505859375,-0.000108718872070313, +-0.00150012969970703,-0.00252532958984375,-0.0031125545501709,-0.0122575759887695,-0.01226806640625,-2.46763229370117e-05,-0.00623846054077148,-0.0115423202514648,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,1.43051147460938e-06,0,0,-9.41753387451172e-06,-4.43458557128906e-05,-4.38690185546875e-05,-9.5367431640625e-06,-5.05447387695313e-05,-4.29153442382813e-05,-0.000504970550537109,-0.00247335433959961,-0.00232505798339844,-0.000504970550537109,-0.00246906280517578,-0.00232505798339844,-0.00233542919158936,-0.0114550590515137,-0.0107622146606445,-0.00233489274978638,-0.0114479064941406,-0.0107612609863281,-0.002237468957901,-0.0267033576965332,-0.00794029235839844,-0.00468456745147705,-0.030519962310791,-0.0243406295776367,-0.00100505352020264,-0.0229973793029785,-0.0276737213134766,-0.00162047147750854,-0.00923776626586914,-0.0119161605834961,-0.000613689422607422,-0.00253152847290039,-0.00264263153076172,-3.33786010742188e-05,-0.0001220703125,-0.000100135803222656,1.19209289550781e-07,7.62939453125e-06,0,-1.19209289550781e-06,0,0,-9.65595245361328e-06,-4.57763671875e-05,-4.38690185546875e-05,-0.000505447387695313,-0.00246000289916992,-0.00232505798339844,-0.00233519077301025,-0.0114531517028809,-0.0107622146606445,-0.00500544905662537,-0.0303573608398438,-0.0252475738525391,0.00120171904563904,-0.0213470458984375,-0.0272560119628906,-0.00057673454284668,-0.00720739364624023,-0.0116710662841797,-0.000307321548461914,-0.00191354751586914,-0.00257110595703125,-3.37362289428711e-05,-0.000111579895019531,-0.000101089477539063,9.5367431640625e-07,7.62939453125e-06,0,0,-7.62939453125e-06,0,-9.77516174316406e-06,-4.91142272949219e-05,-4.38690185546875e-05,-0.000504970550537109,-0.00246572494506836,-0.00232601165771484,-0.00233566761016846,-0.0114531517028809,-0.0107622146606445,-0.00464046001434326,-0.0306401252746582,-0.024205207824707,-0.00226542353630066,-0.00928974151611328,-0.00965595245361328,-0.00139486789703369,-0.00482511520385742,-0.00417423248291016,-0.000304818153381348,-0.00104856491088867, +-0.000904083251953125,-1.13248825073242e-05,-5.05447387695313e-05,-3.4332275390625e-05,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0.0014166533946991,-0.0144171714782715,0.00410842895507813,-0.000715672969818115,-0.00373315811157227,-0.00340747833251953,-0.000168323516845703,-0.000828742980957031,-0.000774383544921875,-3.09944152832031e-06,-1.38282775878906e-05,-1.43051147460938e-05,-0.0025259256362915,-0.0155544281005859,-0.0188150405883789,-0.00203967094421387,-0.00810098648071289,-0.00817108154296875,-0.000609278678894043,-0.00209665298461914,-0.00180912017822266,-2.27689743041992e-05,-6.72340393066406e-05,-6.67572021484375e-05,0,6.19888305664063e-06,0,-6.19888305664063e-06,-3.19480895996094e-05,-2.86102294921875e-05,-0.000336527824401855,-0.00164508819580078,-0.00155067443847656,-0.00155705213546753,-0.00762796401977539,-0.00717449188232422,-0.00397387146949768,-0.0194106101989746,-0.0184392929077148,-0.00198480486869812,-0.00680875778198242,-0.00171661376953125,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0171114504337311,0.0231513977050781,0.0523567199707031,0.000499308109283447,0.000660896301269531,0.00143623352050781,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,2.14576721191406e-06,-9.5367431640625e-07,0,-4.52995300292969e-06,0,0,3.814697265625e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,4.76837158203125e-07,0,-1.49011611938477e-06,-4.76837158203125e-07,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06, +0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,-1.43051147460938e-06,1.52587890625e-05,-1.9073486328125e-06,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0.000788748264312744,0.00127792358398438,0.00260543823242188,0.0143816471099854,0.0203933715820313,0.0560894012451172,-1.42753124237061e-05,-3.36170196533203e-05,-1.23977661132813e-05,-0.00100600719451904,-0.00304913520812988,-0.0008697509765625,-0.000263869762420654,-0.000623703002929688,-0.000227928161621094,-9.68575477600098e-06,-1.83582305908203e-05,-8.58306884765625e-06,0,-4.52995300292969e-06,0,-0.000370591878890991,-0.00505781173706055,-0.0003204345703125,0,-4.52995300292969e-06,0,0,-0.00261306762695313,0,0,5.96046447753906e-06,0,0,-0.0111865997314453,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,-6.95884227752686e-05,-0.000169038772583008,-6.00814819335938e-05,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,-2.50339508056641e-05,-6.53266906738281e-05,-2.19345092773438e-05,-6.37173652648926e-05,-0.000156879425048828,-5.53131103515625e-05,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-05,0,-1.15633010864258e-05,-0.000298976898193359,-9.5367431640625e-06,-0.000264942646026611,-0.000632286071777344,-0.0002288818359375,-0.00217738747596741,-0.00834751129150391, +-0.00188255310058594,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,4.73260879516602e-05,-3.71932983398438e-05,0.00158500671386719,0.00225603580474854,-0.000981330871582031,0.0431232452392578,-0.000925719738006592,-0.00188541412353516,0.00178337097167969,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06, +0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,5.24520874023438e-06,-0.000116467475891113,0,0,1.54972076416016e-06,0,-2.38418579101563e-06,3.91006469726563e-05,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,2.86102294921875e-06,-0.000146627426147461,0,1.19209289550781e-06,1.70469284057617e-05,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,-0.000307537615299225,0,0,-0.000783011317253113,0,0,-0.0005522221326828,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.54972076416016e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,-9.5367431640625e-07,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,-4.93526458740234e-05,8.392333984375e-05,5.81741333007813e-05,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.60932540893555e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,-0.000150382518768311,0.000370025634765625,0,-0.000223994255065918,0,0,-8.65459442138672e-05,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-8.63075256347656e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06, +0,0,-6.07967376708984e-06,0,-6.67572021484375e-06,2.32458114624023e-05,-7.62939453125e-06,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,-4.76837158203125e-07,-4.76837158203125e-07,-6.07967376708984e-06,-4.76837158203125e-07,0,-6.07967376708984e-06,-4.76837158203125e-07,-4.76837158203125e-07,-5.84125518798828e-06,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-4.52995300292969e-06,0,0,1.43051147460938e-06,-9.5367431640625e-07,4.29153442382813e-06,2.12192535400391e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,0.000193953514099121,0,0,-2.86102294921875e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,-3.814697265625e-06,4.01139259338379e-05,-4.76837158203125e-06,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-7.51018524169922e-06,6.98566436767578e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030982494354248,2.57492065429688e-05,0.000108718872070313,0.000691413879394531,9.5367431640625e-06,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0, +3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, +0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06, +0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0.000475853681564331,0.000964164733886719,0.000112533569335938,0,-4.76837158203125e-06,0,1.94907188415527e-05,4.72068786621094e-05,4.76837158203125e-06,-2.74181365966797e-06,1.38282775878906e-05,-3.814697265625e-06,-0.000884085893630981,0.00387859344482422,-0.000905036926269531,0.00157240033149719,-0.0177373886108398,-0.0275440216064453,0.000131309032440186,-0.0058445930480957,-0.011505126953125,-4.74452972412109e-05,-0.00138568878173828,-0.00250911712646484,-3.39746475219727e-05,-0.00011444091796875,-0.000100135803222656,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,-9.5367431640625e-06,-4.29153442382813e-05,-4.38690185546875e-05,-0.000504970550537109,-0.002471923828125,-0.00232505798339844,-0.00232726335525513,-0.0114583969116211,-0.0107507705688477,-0.00477758049964905,-0.0298943519592285,-0.0243797302246094,0.00989782810211182,0.0152416229248047,0.00197601318359375,0.00372958183288574,0.00754547119140625,0.000879287719726563,0.000690937042236328,0.00139284133911133,0.000163078308105469,1.43051147460938e-06,0,0,-3.57627868652344e-07,-7.62939453125e-06,0,1.5556812286377e-05,-2.24113464355469e-05,8.58306884765625e-06,0.000870585441589355,0.000861167907714844,0.00276279449462891, +0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-2.38418579101563e-07,-2.93850898742676e-05,0,2.38418579101563e-07,-0.000370502471923828,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-0.000886619091033936,9.5367431640625e-07,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,0.000717267394065857,0,0,0.000729367136955261,0,0,-8.20755958557129e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,-2.38418579101563e-07,3.7074089050293e-05,0,2.38418579101563e-07,0.000358283519744873,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,0.000874459743499756,-9.5367431640625e-07,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,-0.000714197754859924,0,0,-0.000735461711883545,0,0,7.29560852050781e-05,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.814697265625e-06,0.000299036502838135,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000409305095672607,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,-0.00023651123046875,0,-4.76837158203125e-07,7.68899917602539e-06,0,-4.64916229248047e-05,0.00096428394317627, +0,0,1.53481960296631e-06,0,-6.19888305664063e-05,-1.93268060684204e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.75224447250366e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-6.04987144470215e-06,0,0,4.85777854919434e-06,0,0,1.60932540893555e-06,0,0,6.13927841186523e-06,0,0,7.68899917602539e-06,0,-3.814697265625e-06,-0.000306606292724609,0,7.15255737304688e-07,-0.000405728816986084,0,5.00679016113281e-06,-0.000407755374908447,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,-4.29153442382813e-06,0.000233650207519531,0,-4.76837158203125e-07,7.56978988647461e-06,0,0,4.58955764770508e-06,0,-4.64916229248047e-05,-0.000970363616943359,0,0,1.53481960296631e-06,0,-6.19888305664063e-05,1.16974115371704e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,1.53332948684692e-05,0,1.43051147460938e-06,-4.49642539024353e-05,9.5367431640625e-07,0,7.5995922088623e-06,0,0,-7.89761543273926e-06,0,0,-4.64916229248047e-06,0,0,6.13927841186523e-06,0,0,7.56978988647461e-06,0,0,-1.84774398803711e-06,0 + } + Normals: *21246 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, +0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, +-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, +-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, +0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, +0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, +-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, +3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, +-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, +-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, +-0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, +-0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, +0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, +-0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, +-0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, +0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, +0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, +0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, +0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, +-0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, +0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, +0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, +0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, +0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, +0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, +0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, +-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, +1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, +0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, +-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, +-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, +-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, +-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, +-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, +0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, +-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, +-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, +-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, +0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, +1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, +0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, +0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, +-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, +0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, +1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, +0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, +1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, +-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, +1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, +0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, +-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, +0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, +0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, +0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, +0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, +0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.36057752370834,0.0150644034147263,0.473320543766022,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049, +1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384, +1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423, +-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204, +0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011, +0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994, +0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311, +0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383, +-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517, +-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139, +1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198, +1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082, +0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835, +0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964, +-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651, +0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508, +-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456, +0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079, +1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721, +1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455, +1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495, +1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719, +1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466, +1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771, +1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202, +-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848, +-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612, +-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242, +0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181, +-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855, +-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711, +-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518, +0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979, +-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534, +-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875, +-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252, +-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172, +-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547, +-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015, +0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835, +-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528, +-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414, +-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398, +0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798, +0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311, +-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775, +-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194, +-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996, +-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797, +0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146, +-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401, +-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144, +-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578, +-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146, +-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273, +-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938, +-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377, +0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444, +-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755, +0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208, +-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682, +-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201, +-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424, +-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353, +-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819, +-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789, +-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984, +-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211, +-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374, +-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726, +-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611, +-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045, +-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669, +-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468, +-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811, +0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817, +-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923, +-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899, +-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841, +-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172, +0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915, +0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966, +-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318, +0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223, +0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276, +-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637, +-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695, +-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132, +0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158, +0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065, +-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793, +0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307, +1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334, +1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437, +-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404, +0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.00140410661697388,0.47925940901041, +-1.30150604248047,0.317191332578659,0.422314759343863,-1.34763860702515,0.221148788928986,0.310832679271698,-1.26058748364449,0.437944859266281,0.259957488626242,-1.2592768073082,0.580531150102615,0.0278149172663689,-1.05323074758053,0.676499664783478,0.394543980248272,-1.38882184028625,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089, +0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438, +-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256, +-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753, +-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538, +-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784, +-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,0.283098638057709,-1.00639636814594,-1.30733358860016,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974, +-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294, +0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305, +-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874, +-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265, +0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455, +0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724, +0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757, +-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648, +-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707, +0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407, +0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-0.457435488700867,-0.52697029709816,0.442069187760353,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306, +0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454, +-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-0.862624652683735,-0.616199009120464, +-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093, +-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101, +-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172, +0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537, +-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258, +0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124, +-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961, +-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914, +-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266, +-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023, +-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976, +0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562, +0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105, +-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.513018878176808,0.462569477036595,0.0529692769050598,0.663957834243774,-0.292329281568527, +0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.714810416102409,0.279693081974983,-0.203442215919495,0.992890149354935,-0.246238062158227,-0.146641075611115,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682, +0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534, +0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762, +0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805454332864, "Geometry::Cheek_Puff_Left", "Shape" { + Version: 100 + Indexes: *2503 { + a: 5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6131,6133,6134,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6150,6151,6152,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327, +6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6513,6514,6515,6516,6544,6545,6546,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855, +6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265, +7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7532,7533,7534,7535,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715, +7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7895,7896,7897,7898,7899,7900,7901,7902,7927,7928,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240, +8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650, +8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697 + } + Vertices: *7509 { + a: -0.00163092371076345,-0.0015721321105957,0.000338554382324219,-0.000443189026555046,-0.000391006469726563,9.1552734375e-05,-0.111760452367889,-0.00277996063232422,0.421629905700684,-0.161375373594637,-0.0233550071716309,0.415858268737793,-0.131131693648058,0.0207018852233887,0.402071952819824,-0.106857568003761,-0.00281429290771484,0.42170524597168,-0.142538055755722,-0.0129146575927734,0.418899536132813,-0.137582048788317,0.0151009559631348,0.412527084350586,-0.124444447443238,-0.00602912902832031,0.421350479125977,-0.122971408047306,0.00464057922363281,0.418312072753906,-0.133612081408501,-0.0245723724365234,0.314766883850098,-0.0596447028456168,0.0142645835876465,0.247822761535645,-0.140041917566123,-0.0274224281311035,0.352447509765625,-0.0970137418335071,0.0197787284851074,0.329452514648438,-0.0713537782430649,-0.0348601341247559,0.153958320617676,-0.0210610181093216,0.00221157073974609,0.14530086517334,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0113422805443406,7.91549682617188e-05,0.0692024230957031,-0.0292403679341078,-0.033461332321167,0.0250930786132813,-0.040963888168335,-0.0378713607788086,0.0333375930786133,-0.0468014441430569,-0.0325336456298828,0.0384235382080078,-0.0609319321811199,-0.0332555770874023,0.0981807708740234,-0.0158042963594198,-0.0183501243591309,0.0113506317138672,-0.00586307095363736,-0.00612926483154297,0.00204181671142578,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-3.79388393412228e-06,4.57763671875e-05,0,-0.000141997603350319,-9.1552734375e-05,2.95639038085938e-05,0,4.9591064453125e-05,0,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06, +0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,-0.000934302806854248,-0.000879287719726563,0.000193595886230469,-0.000162243843078613,-0.000111818313598633,3.33786010742188e-05,-0.0899026989936829,-0.00349187850952148,0.346687316894531,-0.14049831032753,-0.0209107398986816,0.35748291015625,0.121631145477295,4.57763671875e-05,0.00466823577880859,0.118788957595825,4.57763671875e-05,-0.0112161636352539,0.0770378112792969,4.57763671875e-05,0.0256862640380859,0.0812840461730957,4.57763671875e-05,0.0447206497192383,-0.0111258029937744,4.9591064453125e-05,0.100346565246582,0.00525665283203125,4.9591064453125e-05,0.118742942810059,-0.0543028116226196,5.86509704589844e-05,0.152242660522461,-0.0381326675415039,6.00814819335938e-05,0.172468185424805,-0.0875810384750366,-0.00198078155517578,0.206466674804688,-0.0597066879272461,-0.000670433044433594,0.222519874572754,-0.11832720041275,-0.0106453895568848,0.280047416687012,-0.0721175074577332,-0.00249147415161133,0.282980918884277,0.0436098575592041,4.91142272949219e-05,0.0803594589233398,0.0305626392364502,4.9591064453125e-05,0.0598583221435547,0.124475002288818,4.57763671875e-05,-0.0178194046020508,0.123031616210938,4.57763671875e-05,-0.000267982482910156,0.129391670227051, +4.57763671875e-05,-0.0221796035766602,0.124817609786987,4.57763671875e-05,-0.00444126129150391,0.131565093994141,4.57763671875e-05,-0.014369010925293,0.124322175979614,4.57763671875e-05,-0.000194549560546875,0.1299729347229,4.57763671875e-05,-0.00170612335205078,0.122555494308472,4.57763671875e-05,0.00566291809082031,0.0887582302093506,4.57763671875e-05,0.0467863082885742,0.112319469451904,4.57763671875e-05,0.0274744033813477,0.0504522323608398,4.9591064453125e-05,0.0806388854980469,0.0750906467437744,4.57763671875e-05,0.0616674423217773,0.0249204635620117,4.9591064453125e-05,0.100232124328613,0.0120793581008911,4.9591064453125e-05,0.119688987731934,-0.0256892442703247,4.9591064453125e-05,0.144893646240234,-0.0324974060058594,4.9591064453125e-05,0.173041343688965,-0.063605785369873,0.00046539306640625,0.196734428405762,-0.0531834363937378,-0.000680923461914063,0.223200798034668,-0.0863432288169861,0.00305414199829102,0.254944801330566,-0.0649380087852478,-0.00262594223022461,0.282669067382813,-0.106033265590668,0.0101280212402344,0.327436447143555,-0.0809994041919708,-0.00349760055541992,0.348152160644531,-0.123056322336197,-0.0113115310668945,0.346755027770996,-0.103726744651794,-0.00615978240966797,0.277449607849121,-0.0814437866210938,-0.00138664245605469,0.211535453796387,-0.0513715744018555,6.00814819335938e-05,0.159921646118164,-0.00556302070617676,4.9591064453125e-05,0.107809066772461,0.0346803665161133,4.9591064453125e-05,0.0682640075683594,0.0772371292114258,4.57763671875e-05,0.0340194702148438,0.119433641433716,4.57763671875e-05,-0.00314712524414063,0.122930526733398,4.57763671875e-05,-0.00858688354492188,0.12684440612793,4.57763671875e-05,-0.0126476287841797,0.127958536148071,4.57763671875e-05,-0.00665569305419922,0.126145362854004,4.57763671875e-05,0.00235557556152344,0.0969138145446777,4.57763671875e-05,0.0371112823486328,0.058957576751709,4.9591064453125e-05,0.0681209564208984,0.0122793912887573,4.9591064453125e-05,0.107086181640625,-0.038832426071167,4.9591064453125e-05,0.157730102539063,-0.0696665048599243, +0.000472545623779297,0.209334373474121,-0.0867364406585693,0.00162649154663086,0.26375675201416,-0.106139421463013,0.00605583190917969,0.332069396972656,-0.103304505348206,-0.00604963302612305,0.346283912658691,-0.085151195526123,-0.00377273559570313,0.280163764953613,-0.0690734386444092,-0.000956058502197266,0.21795654296875,-0.0432484149932861,6.00814819335938e-05,0.167815208435059,0.00106751918792725,4.9591064453125e-05,0.114607810974121,0.0399432182312012,4.91142272949219e-05,0.0756397247314453,0.0796370506286621,4.57763671875e-05,0.0407590866088867,0.120520114898682,4.57763671875e-05,0.00174045562744141,0.122784614562988,4.57763671875e-05,-0.00324440002441406,0.125581979751587,4.57763671875e-05,-0.00730800628662109,0.125608921051025,4.57763671875e-05,-0.00245857238769531,0.123833894729614,4.57763671875e-05,0.00451278686523438,0.0880985260009766,4.57763671875e-05,0.0432329177856445,0.0495169162750244,4.9591064453125e-05,0.0754566192626953,0.00827956199645996,4.9591064453125e-05,0.11475944519043,-0.0386298894882202,4.9591064453125e-05,0.167208671569824,-0.0633599758148193,-6.62803649902344e-05,0.217529296875,-0.07704097032547,-0.000621318817138672,0.275382041931152,-0.0948716402053833,0.000863075256347656,0.342033386230469,-0.0855074822902679,-0.0292229652404785,0.229031562805176,-0.0570191144943237,-0.0191826820373535,0.162273406982422,-0.0287865400314331,-0.00409078598022461,0.115525245666504,-0.00710487365722656,-8.0108642578125e-05,0.086207389831543,0.0139720439910889,4.9591064453125e-05,0.0527133941650391,0.0282785892486572,4.9591064453125e-05,0.0294885635375977,0.0495901107788086,4.57763671875e-05,0.003265380859375,0.0770242214202881,4.57763671875e-05,-0.0308389663696289,0.0875155925750732,4.57763671875e-05,-0.0449533462524414,0.0913500785827637,4.57763671875e-05,-0.0456762313842773,0.0938806533813477,4.57763671875e-05,-0.0396337509155273,0.0962648391723633,4.57763671875e-05,-0.0255403518676758,0.0919787883758545,4.57763671875e-05,-0.00289630889892578,0.0721676349639893,4.57763671875e-05,0.020721435546875, +-0.0413184463977814,0.00617790222167969,0.196380615234375,-0.0271099209785461,0.00163507461547852,0.15288257598877,-0.0136791467666626,0.000175952911376953,0.118377685546875,0.00927853584289551,4.9591064453125e-05,0.0846500396728516,0.0386874675750732,4.9591064453125e-05,0.0512475967407227,-0.114856392145157,-0.0240645408630371,0.295466423034668,-0.0927788615226746,-0.0126490592956543,0.222781181335449,-0.0659645795822144,-0.0023808479309082,0.161237716674805,-0.039610743522644,4.9591064453125e-05,0.117231369018555,-0.0061185359954834,4.9591064453125e-05,0.0769128799438477,0.025841236114502,4.9591064453125e-05,0.0449686050415039,0.0597963333129883,4.57763671875e-05,0.0174455642700195,0.0934689044952393,4.57763671875e-05,-0.014683723449707,0.100438356399536,4.57763671875e-05,-0.0234460830688477,0.106301069259644,4.57763671875e-05,-0.0291614532470703,0.110231399536133,4.57763671875e-05,-0.024754524230957,0.110573768615723,4.57763671875e-05,-0.0111017227172852,0.102506875991821,4.57763671875e-05,0.0110616683959961,0.0752310752868652,4.57763671875e-05,0.0422754287719727,0.0335657596588135,4.91142272949219e-05,0.0764007568359375,-0.00526654720306396,4.9591064453125e-05,0.113943099975586,-0.0367050170898438,0.000369548797607422,0.156717300415039,-0.0578942894935608,0.00276374816894531,0.205227851867676,-0.0757105946540833,0.00967979431152344,0.265080451965332,-0.0548308491706848,-0.0339045524597168,0.113742828369141,-0.0374653935432434,-0.0197005271911621,0.0963468551635742,-0.0135055780410767,-0.00595712661743164,0.0749654769897461,0.00350439548492432,-0.000132560729980469,0.052617073059082,0.0148172378540039,4.9591064453125e-05,0.0327854156494141,0.0232219696044922,4.57763671875e-05,0.0175638198852539,0.041820764541626,4.57763671875e-05,-0.0038604736328125,0.0572435855865479,4.57763671875e-05,-0.0277767181396484,0.0712871551513672,4.57763671875e-05,-0.0124416351318359,0.0760440826416016,4.57763671875e-05,-0.0312719345092773,0.0802950859069824,4.57763671875e-05,-0.0452289581298828,0.0808768272399902,4.57763671875e-05,-0.0502309799194336, +0.0691497325897217,4.57763671875e-05,-0.0418672561645508,-0.0157101154327393,0.000753402709960938,0.119224548339844,-0.00628578662872314,7.15255737304688e-05,0.0946502685546875,0.0018002986907959,4.9591064453125e-05,0.0759048461914063,0.0141143798828125,4.9591064453125e-05,0.0542755126953125,0.0338106155395508,4.57763671875e-05,0.0305604934692383,0.0565090179443359,4.57763671875e-05,0.00664043426513672,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,0.00421679019927979,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05, +1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-6.91413879394531e-06,4.26769256591797e-05,0,-0.000178694725036621,-0.000128030776977539,3.814697265625e-05,-0.000106394290924072,-5.62667846679688e-05,2.19345092773438e-05,-0.000885248184204102,-0.000830650329589844,0.000185012817382813,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.012364387512207,4.57763671875e-05,0.0064239501953125,0.0200600624084473,4.57763671875e-05,-0.00381088256835938,0.0256261825561523,4.57763671875e-05,-0.0144882202148438,0.0378260612487793,4.57763671875e-05,-0.0245857238769531,0.0386185646057129,4.57763671875e-05,-0.024134635925293,0.046332836151123,4.57763671875e-05,-0.0263347625732422,0.0454823970794678,4.57763671875e-05,-0.0201778411865234,0.0395617485046387,4.57763671875e-05,-0.00847148895263672,0.0305740833282471,4.57763671875e-05,0.00187873840332031,0.0187242031097412,4.57763671875e-05,0.0132761001586914,0.00800907611846924,4.9591064453125e-05,0.0254793167114258,0.000470280647277832,4.9591064453125e-05,0.0361595153808594,-0.00523191690444946,4.9591064453125e-05,0.0464000701904297,-0.00944387912750244,4.9591064453125e-05,0.0573959350585938,-0.0253473818302155,-0.0268192291259766,0.00975322723388672,-0.0364633798599243,-0.0325846672058105,0.0351190567016602,-0.0365979969501495,-0.0283854007720947,0.0491018295288086,-0.0237701237201691,-0.024594783782959,0.00744724273681641,-0.0243672430515289,-0.0262298583984375,0.0104866027832031,-0.0306651294231415,-0.034416675567627,0.0201835632324219,-0.0209643244743347,-0.0227327346801758,0.00934314727783203,-0.024369478225708,-0.0284430980682373,0.0177984237670898,-0.0144584774971008,-0.0153779983520508,0.00549983978271484,-0.0144740045070648,-0.0166592597961426,0.00910186767578125,-0.0111609697341919,-0.0114388465881348,0.00324058532714844,-0.00731664896011353, +-0.00753402709960938,0.00224685668945313,-0.00642353296279907,-0.00633740425109863,0.00133323669433594,-0.0037921667098999,-0.00372099876403809,0.000787734985351563,-0.0040585994720459,-0.00398588180541992,0.000843048095703125,-0.00163662433624268,-0.00157785415649414,0.000340461730957031,-0.00184917449951172,-0.00178909301757813,0.000384330749511719,-0.000434279441833496,-0.000382184982299805,9.05990600585938e-05,-0.00183796882629395,-0.00177788734436035,0.000382423400878906,-0.000229358673095703,-0.00017857551574707,4.86373901367188e-05,-0.00770890712738037,-0.00761532783508301,0.00159931182861328,-0.00657820701599121,-0.00466465950012207,0.0285434722900391,-0.0233488082885742,-0.0164003372192383,0.0429563522338867,-0.0175461769104004,-0.0175278186798096,0.00395011901855469,-0.004020094871521,-0.00394773483276367,0.000834465026855469,-0.00200378894805908,-0.00194287300109863,0.000416755676269531,-0.0264965891838074,-0.0284459590911865,0.0115108489990234,-0.0255756378173828,-0.0281357765197754,0.0129375457763672,-0.0217279195785522,-0.024205207824707,0.0116729736328125,-0.0136995911598206,-0.0149056911468506,0.00606250762939453,-0.00936782360076904,-0.00965285301208496,0.00286006927490234,-0.00528275966644287,-0.0052030086517334,0.00109672546386719,-0.00315093994140625,-0.00308346748352051,0.000654220581054688,-0.00137901306152344,-0.00132155418395996,0.000287055969238281,-0.00117135047912598,-0.00111508369445801,0.000244140625,-0.00328576564788818,-0.00321745872497559,0.000682830810546875,-0.00733834505081177,-0.00724697113037109,0.00152301788330078,-0.01719069480896,-0.0172219276428223,0.00398826599121094,-0.024316132068634,-0.0254127979278564,0.00828456878662109,-0.0249825716018677,-0.0263214111328125,0.00915050506591797,-0.0167893171310425,-0.0168662071228027,0.00400733947753906,-0.00692206621170044,-0.00683307647705078,0.00143623352050781,-0.00269722938537598,-0.00263237953186035,0.000560760498046875,-0.000690817832946777,-0.000637292861938477,0.000144004821777344,-0.000845909118652344,-0.000791549682617188, +0.000176429748535156,-0.00230169296264648,-0.00223898887634277,0.000478744506835938,-0.00462597608566284,-0.00454998016357422,0.000960350036621094,-0.00835525989532471,-0.0086066722869873,0.00255680084228516,-0.0140905380249023,-0.0155677795410156,0.00688838958740234,-0.0220258235931396,-0.0248768329620361,0.0129404067993164,-0.027087390422821,-0.0301637649536133,0.0151920318603516,-0.0279492437839508,-0.030134916305542,0.0130252838134766,-0.0481632053852081,-0.0340099334716797,0.0757474899291992,-0.00575399398803711,-0.00584125518798828,0.00159549713134766,-0.00280129909515381,-0.00273585319519043,0.000581741333007813,-0.00168120861053467,-0.00162196159362793,0.000349998474121094,-0.00298506021499634,-0.00291848182678223,0.000619888305664063,-0.000514626502990723,-0.000462055206298828,0.000107765197753906,-0.00102889537811279,-0.00097346305847168,0.000214576721191406,-0.000152826309204102,-0.00010228157043457,3.24249267578125e-05,-6.19888305664063e-06,4.33921813964844e-05,0,-0.00148022174835205,-0.00142216682434082,0.000308036804199219,-0.000967621803283691,-0.000912666320800781,0.000201225280761719,-0.000488400459289551,-0.000436067581176758,0.000102043151855469,-0.000143289566040039,-9.29832458496094e-05,3.0517578125e-05,-4.76837158203125e-06,4.48226928710938e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000106334686279297,-5.60283660888672e-05,2.288818359375e-05,0,4.9591064453125e-05,0,0.000744342803955078,-0.000132322311401367,0.024073600769043,0.0045851469039917,4.9591064453125e-05,0.0178050994873047,0.00724434852600098,4.9591064453125e-05,0.0130605697631836,0.00467777252197266,4.57763671875e-05,0.00712299346923828,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.000118494033813477,-6.81877136230469e-05,2.57492065429688e-05,-0.00052344799041748,-0.000470876693725586,0.000109672546386719,-0.00105667114257813,-0.00100111961364746,0.000220298767089844,-0.00165319442749023,-0.00159430503845215,0.000344276428222656,0,4.9591064453125e-05, +0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-1.25765800476074e-05,3.71932983398438e-05,2.86102294921875e-06,-2.26497650146484e-06,4.74452972412109e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, +4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06, +0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05, +2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06, +0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0, +4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,-0.0115255117416382,-0.0114102363586426,0.00239086151123047,-0.0087246298789978,-0.00862526893615723,0.00181007385253906,-0.00613337755203247,-0.00604891777038574,0.00127315521240234,-0.00483870506286621,-0.0047614574432373,0.00100421905517578,-0.00419068336486816,-0.00411725044250488,0.0008697509765625,-0.00353085994720459,-0.00346112251281738,0.000733375549316406,-0.0138244032859802,-0.0137186050415039,0.00292110443115234,-0.0168894529342651,-0.0168626308441162,0.00378513336181641,-0.0186611413955688,-0.0187015533447266,0.00433444976806641,-0.0195284485816956,-0.0194871425628662,0.00441932678222656,-0.0178924798965454,-0.0177679061889648,0.00378513336181641,-0.0132693648338318,-0.0131442546844482,0.00275325775146484,-0.0083199143409729,-0.00822281837463379,0.00172615051269531,-0.00550222396850586,-0.00542140007019043,0.00114250183105469,-0.00373363494873047,-0.0036628246307373,0.000775337219238281,-0.0122660398483276,-0.0121464729309082,0.00254440307617188,-0.00933539867401123,-0.00923252105712891,0.00193691253662109,-0.00691050291061401,-0.00682163238525391,0.001434326171875,-0.0051196813583374,-0.00504088401794434,0.00106239318847656,-0.0147477388381958,-0.0146265029907227,0.00308895111083984,-0.0231020543815248,-0.025029182434082,0.0179281234741211,-0.0115948431230208,0.00667524337768555,0.0213642120361328,-0.0174013078212738,-0.0195126533508301,0.0108499526977539,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000140070915222168,-8.96453857421875e-05,2.95639038085938e-05,-0.00319629907608032, +-0.00321626663208008,0.000870704650878906,-0.00994426012039185,-0.0109128952026367,0.00479984283447266,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,-0.000127255916595459,0.000134944915771484,0.000262260437011719,-0.00147277116775513,0.00103616714477539,0.00302886962890625,-0.00515854358673096,0.00320053100585938,0.00994682312011719,-0.0767005607267492,0.00159263610839844,0.417016983032227,-0.0559877455234528,-0.000159740447998047,0.344879150390625,-0.038210391998291,-0.000724315643310547,0.283628463745117,-0.0256938934326172,-0.000164985656738281,0.226056098937988,-0.00368118286132813,6.00814819335938e-05,0.17790412902832,0.040841817855835,4.91142272949219e-05,0.122526168823242,0.0805473327636719,4.57763671875e-05,0.0771522521972656,0.119408130645752,4.57763671875e-05,0.0369710922241211,0.147720098495483,4.57763671875e-05,-0.00371265411376953,0.156679153442383,4.57763671875e-05,-0.019129753112793,0.158758878707886,4.57763671875e-05,-0.0274467468261719,0.158167362213135,4.57763671875e-05,-0.0217342376708984,0.155740976333618,4.57763671875e-05,-0.00566482543945313,0.120764255523682,4.57763671875e-05,0.0392923355102539,0.0809054374694824,4.57763671875e-05,0.0833396911621094,0.0413978099822998,4.91142272949219e-05,0.125871658325195,-0.00417327880859375,4.9591064453125e-05,0.178096771240234,-0.031165599822998,-0.000363826751708984,0.226388931274414,-0.0472381711006165,-0.0017085075378418,0.283908843994141,-0.063207745552063,-0.0021815299987793,0.347779273986816,-0.0885624363800162,-0.00164079666137695,0.419951438903809,-0.0145060876166099,-0.00393390655517578,0.0331525802612305,-0.00532492995262146,-0.00298786163330078,0.0153007507324219,-0.000999331474304199,-0.00139427185058594,0.00462532043457031,-2.83718109130859e-05,-0.000117778778076172,0.000335693359375,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.00013267993927002,0.000110626220703125,0.000315666198730469,-0.00176060199737549,-0.000157833099365234,0.00529670715332031,-0.00786560773849487,0.000425815582275391,0.0186290740966797,-0.0200067348559969,0.0016779899597168,0.042017936706543,-2.25360890908632e-05,2.33650207519531e-05,5.7220458984375e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05, +2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.00540220737457275,-0.00282764434814453,0.00146102905273438,-0.00244230031967163,-0.00114631652832031,0.00118064880371094,-0.0912066549062729,-0.00296926498413086,0.396718978881836,-0.153615117073059,-0.0241103172302246, +0.446992874145508,-0.496079921722412,0.168283939361572,1.50814056396484,-0.472243309020996,0.168550491333008,1.50536251068115,-0.454502582550049,0.0976943969726563,1.28577327728271,-0.52208423614502,0.151006698608398,1.27116107940674,-0.497352480888367,0.0983405113220215,0.97866153717041,-0.57843816280365,0.13075590133667,1.00329113006592,-0.429036021232605,0.104555606842041,0.854087829589844,-0.41688597202301,0.0709090232849121,0.737983703613281,-0.29463529586792,0.0423707962036133,0.668708801269531,-0.2834712266922,0.0251898765563965,0.607094764709473,-0.206919968128204,-0.00793743133544922,0.529261589050293,-0.150299966335297,0.00181865692138672,0.466658592224121,-0.605844259262085,0.153275012969971,1.14843463897705,-0.46296238899231,0.101705551147461,1.10691738128662,-0.384437322616577,0.145184516906738,1.53133106231689,-0.449356555938721,0.153040409088135,1.50346946716309,-0.405590057373047,0.143306255340576,1.56307888031006,-0.397512435913086,0.151094436645508,1.50220489501953,-0.402194261550903,0.131279945373535,1.57107639312744,-0.454372644424438,0.165160655975342,1.51166820526123,-0.440876722335815,0.117146968841553,1.55735206604004,-0.503969669342041,0.183385848999023,1.51574039459229,-0.55935001373291,0.144500255584717,1.35329055786133,-0.605750322341919,0.180456161499023,1.50767612457275,-0.611722230911255,0.144687175750732,1.18411350250244,-0.681203603744507,0.245982646942139,1.36668586730957,-0.636487483978271,0.202836036682129,1.08494091033936,-0.572916030883789,0.129280090332031,0.99631404876709,-0.493260502815247,0.14922571182251,0.79279613494873,-0.466166257858276,0.0726542472839355,0.750367164611816,-0.333110630512238,0.0804347991943359,0.576826095581055,-0.302544236183167,0.0271077156066895,0.590445518493652,-0.159108400344849,0.0478482246398926,0.441702842712402,-0.151560693979263,0.000737667083740234,0.466983795166016,-0.112070068717003,0.0332999229431152,0.429425239562988,-0.0852233320474625,-0.00245141983032227,0.399282455444336,-0.121977299451828,-0.0167574882507324,0.43260669708252,-0.16964727640152, +-0.0103778839111328,0.492929458618164,-0.288821399211884,0.0291361808776855,0.638309478759766,-0.40442943572998,0.0750832557678223,0.823626518249512,-0.537361025810242,0.120270729064941,1.01245021820068,-0.508352398872375,0.129139423370361,1.15933132171631,-0.489007949829102,0.13176155090332,1.28878498077393,-0.471152782440186,0.174188613891602,1.50615882873535,-0.41678786277771,0.155145168304443,1.50948047637939,-0.412880659103394,0.146074295043945,1.52925109863281,-0.402519464492798,0.140751838684082,1.54309558868408,-0.473680734634399,0.166221141815186,1.54815196990967,-0.5910964012146,0.166050434112549,1.42112445831299,-0.639099955558777,0.185564041137695,1.27666187286377,-0.590459227561951,0.17370080947876,1.05356884002686,-0.480820655822754,0.133223533630371,0.790040016174316,-0.325577259063721,0.0826091766357422,0.593918800354004,-0.18570739030838,0.0468688011169434,0.492312431335449,-0.120839610695839,0.0274138450622559,0.448963165283203,-0.104991286993027,-0.00789976119995117,0.39765739440918,-0.159883260726929,-0.00303983688354492,0.473395347595215,-0.284864366054535,0.0262775421142578,0.621394157409668,-0.40929114818573,0.0644598007202148,0.778014183044434,-0.550127625465393,0.120011329650879,1.02122974395752,-0.570742964744568,0.15038537979126,1.15109252929688,-0.504306316375732,0.144131660461426,1.27503108978271,-0.494148969650269,0.162392616271973,1.50158500671387,-0.464741706848145,0.157248020172119,1.50764942169189,-0.454112529754639,0.156954765319824,1.51901245117188,-0.462091207504272,0.167641162872314,1.52247619628906,-0.501156091690063,0.185912609100342,1.52161598205566,-0.60172700881958,0.177432060241699,1.36970806121826,-0.632905244827271,0.167493343353271,1.19025039672852,-0.576487421989441,0.147260665893555,0.99442195892334,-0.479573369026184,0.110386848449707,0.772055625915527,-0.322094917297363,0.0570526123046875,0.607304573059082,-0.168365955352783,0.0193915367126465,0.517355918884277,-0.0982814580202103,0.00862884521484375,0.484910011291504,-0.1558977663517,-0.0192852020263672,0.343053817749023, +-0.168643951416016,0.0124473571777344,0.395943641662598,-0.176306962966919,-0.0369358062744141,0.57200813293457,-0.173178553581238,0.0250935554504395,0.809830665588379,-0.313502073287964,0.0914535522460938,1.12785148620605,-0.344350576400757,0.111648082733154,1.29959201812744,-0.396620988845825,0.0973591804504395,1.53944206237793,-0.58690071105957,0.105615139007568,1.8801908493042,-0.53264045715332,0.155951023101807,1.95163059234619,-0.485357999801636,0.147543907165527,1.91780281066895,-0.487787246704102,0.106702327728271,1.86956787109375,-0.469266653060913,0.133047103881836,1.85712623596191,-0.38940691947937,0.160372257232666,1.77031517028809,-0.324235200881958,0.209689617156982,1.49044990539551,-0.0557039976119995,0.0241103172302246,0.259607315063477,-0.0623806118965149,0.0345497131347656,0.29591178894043,-0.0852494239807129,0.0546951293945313,0.385111808776855,-0.155084609985352,0.152819156646729,0.646639823913574,-0.233898639678955,0.181911945343018,1.04897880554199,-0.140314489603043,-0.0245518684387207,0.347535133361816,-0.193712830543518,-0.00411224365234375,0.450103759765625,-0.26139771938324,0.0481300354003906,0.583757400512695,-0.389865040779114,0.210843086242676,0.744058609008789,-0.462051630020142,0.21345853805542,0.875240325927734,-0.397588729858398,0.195805549621582,1.02561473846436,-0.405396223068237,0.23095178604126,1.31195449829102,-0.488669395446777,0.295629024505615,1.62527751922607,-0.327401161193848,0.207535743713379,1.63455581665039,-0.368279218673706,0.152582168579102,1.66745090484619,-0.41990852355957,0.118014335632324,1.66846370697021,-0.432518243789673,0.0684223175048828,1.65896034240723,-0.516419649124146,0.0926942825317383,1.64123630523682,-0.469200849533081,0.132978439331055,1.41868114471436,-0.400745153427124,0.168729782104492,1.08222579956055,-0.341106772422791,0.143210887908936,0.735932350158691,-0.221442103385925,0.090059757232666,0.520211219787598,-0.105147302150726,0.0477433204650879,0.354975700378418,-0.0798524916172028,0.032768726348877,0.312179565429688,-0.0937626659870148,-0.0185928344726563, +0.187541961669922,-0.129110395908356,0.0160961151123047,0.262725830078125,-0.206474363803864,0.0335330963134766,0.471966743469238,-0.19465696811676,0.075251579284668,0.71794605255127,-0.353838443756104,0.231824636459351,0.988322257995605,-0.426651000976563,0.244785308837891,1.317702293396,-0.374788045883179,0.082636833190918,1.76680755615234,-0.308649063110352,0.0916910171508789,2.1830587387085,-0.242093563079834,0.110772609710693,1.76633834838867,-0.360467433929443,0.00367116928100586,1.91899108886719,-0.438642978668213,0.00509214401245117,2.20515918731689,-0.446281433105469,0.0912361145019531,2.43235492706299,-0.242685556411743,0.0194158554077148,2.35827350616455,-0.0255694091320038,0.00487232208251953,0.17575740814209,-0.0272464156150818,0.0174226760864258,0.245524406433105,-0.0116976499557495,0.0438013076782227,0.358451843261719,-0.0428295135498047,0.165467262268066,0.576217651367188,0.00255560874938965,0.256905555725098,0.939101219177246,-0.0930507183074951,0.162072658538818,1.39078521728516,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0753593444824219,0.0197952091693878,0.151402473449707,0.0897960662841797,0.0941253304481506,0.189964294433594,0.154628753662109,0.0471512079238892,0.218108177185059,0.291264057159424,0.251311182975769,0.344815731048584,0.0703721046447754,0.0661032199859619,0.118640899658203,0.320487499237061,0.372848391532898,0.527549743652344,0.00183796882629395,0.0234962701797485,0.0316019058227539,-0.0957028865814209,0.1285320520401,0.597674369812012,-0.00062251091003418,6.04391098022461e-05,0.00157642364501953,-0.484714508056641,-0.0989919900894165,0.506077766418457,-8.82148742675781e-06,4.57763671875e-05,2.47955322265625e-05,-0.130656123161316,-0.0790562629699707,0.125581741333008,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0.00701475143432617,0.000515744090080261,0.0882377624511719,0.0128154754638672,7.78157263994217e-05,0.025505542755127,0.370195388793945,0.316527605056763,0.421140670776367,0.141891002655029,0.0628664493560791,0.170815467834473,0.15791654586792,0.230051040649414,0.491595268249512,0.020024299621582,0.0491354465484619,0.0741615295410156,-0.224169969558716,0.0376908779144287,0.553531646728516,-0.00364160537719727,0.00278115272521973,0.00871753692626953,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,-0.00574707984924316,0.00431632995605469,-0.0187778472900391,0,4.57763671875e-05,1.9073486328125e-06,0.0428798198699951,-0.0527811050415039,0.00497913360595703,0.000112533569335938,4.57763671875e-05,0.000226974487304688,0.156652450561523,-0.100918769836426,0.151751041412354,0.0493311882019043,4.57763671875e-05,0.0986642837524414,0.333480358123779,-0.250406265258789,0.44207763671875,0.072298526763916,4.57763671875e-05,0.144598245620728,0.481326580047607,-0.143180847167969,0.658619403839111,0.006134033203125,4.57763671875e-05,0.0122683346271515,0.294757843017578,-0.00768756866455078,0.353692293167114,3.57627868652344e-05,4.57763671875e-05,7.11267348378897e-05,0.122544288635254,0.000120639801025391,0.244267225265503,0.0182666778564453,4.57763671875e-05,0.0365347862243652,0.183066844940186,-0.229484558105469,0.289061069488525,0.0274777412414551,4.57763671875e-05,0.0549572706222534,0.520839214324951,-0.128692150115967,0.556059598922729,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.0144643783569336,4.57763671875e-05,0.0289306640625,0.0772266387939453,4.57763671875e-05,0.154454708099365,0.148436069488525,4.29153442382813e-05,0.296858310699463,0.197999477386475,4.57763671875e-05,0.395999431610107,0.140644550323486,4.57763671875e-05,0.281291484832764,0.086707592010498,4.57763671875e-05,0.173415899276733,0.0428485870361328,4.57763671875e-05,0.085698127746582,-0.195231318473816,0.0418212413787842,0.579584121704102,-0.136224985122681,0.0225005149841309, +0.383407592773438,-0.13637900352478,0.0493006706237793,0.357051849365234,-0.198992490768433,0.0847976207733154,0.583436965942383,-0.084907054901123,0.0434858798980713,0.139411926269531,-0.0862531661987305,0.0308046340942383,0.142521858215332,-0.0438110828399658,0.0148494243621826,0.0301380157470703,-0.0559374094009399,0.0217373371124268,0.0334444046020508,-0.0131728053092957,0.00153064727783203,0.0077972412109375,-0.026193380355835,0.00366091728210449,0.0108489990234375,-0.198741912841797,0.0910375118255615,0.587281227111816,-0.197914242744446,0.0535178184509277,0.580921173095703,-0.510722756385803,0.175629377365112,1.33125495910645,-0.404936075210571,0.0737879276275635,1.71976852416992,0.0559604167938232,0.200148582458496,2.21100330352783,0.217696189880371,0.220017433166504,2.42553520202637,0.191464900970459,-0.109786510467529,2.47250747680664,0.147121906280518,-0.461048126220703,2.11341381072998,-0.110345602035522,-0.330268383026123,1.74042224884033,-0.0374834537506104,-0.168135643005371,1.3767032623291,0.00597047805786133,-3.33786010742188e-05,0.99695873260498,0.0225801467895508,0.112486839294434,0.583847999572754,0.027135968208313,0.0884437561035156,0.296010971069336,0.000458002090454102,0.015385627746582,0.145888328552246,-0.00808769464492798,0.000850677490234375,0.0948286056518555,-0.0111770331859589,0.000245094299316406,0.0815525054931641,-0.0776686072349548,-0.00273299217224121,0.0716075897216797,-0.078475683927536,-0.013181209564209,0.0968351364135742,-0.0981456339359283,0.00161409378051758,0.141754150390625,-0.0944826006889343,0.0139532089233398,0.0917997360229492,-0.0623182654380798,-0.0164997577667236,0.0504617691040039,-0.0523374825716019,-0.0321478843688965,0.0473356246948242,-0.0502186715602875,-0.0243875980377197,0.0337944030761719,-0.0382629185914993,-0.0367143154144287,0.0314540863037109,-0.0429816246032715,-0.0220499038696289,0.0228509902954102,-0.0305759012699127,-0.0275111198425293,0.0228633880615234,-0.0428981781005859,-0.0161592960357666,0.0188455581665039,-0.0313440561294556,-0.0151669979095459, +0.0147438049316406,-0.0544736385345459,-0.0014650821685791,0.020960807800293,-0.0450935959815979,-0.000265121459960938,0.0172281265258789,-0.0684434175491333,0.0115320682525635,0.038731575012207,-0.0641235113143921,0.0178437232971191,0.0358390808105469,-0.0878407955169678,0.056096076965332,0.137775421142578,-0.0854336023330688,0.0604178905487061,0.136402130126953,-0.120386600494385,0.0894842147827148,0.25855827331543,-0.156355023384094,0.135223627090454,0.370790481567383,-0.104708075523376,0.0406656265258789,0.144598007202148,-0.139255523681641,0.076683521270752,0.309577941894531,-0.126082003116608,0.0335683822631836,0.192451477050781,-0.108143627643585,0.031775951385498,0.107792854309082,-0.108863711357117,0.0576739311218262,0.209635734558105,-0.142087578773499,0.109066724777222,0.31070613861084,-0.0782718062400818,-0.0051424503326416,0.0758113861083984,-0.0616743564605713,-0.0209982395172119,0.0536632537841797,-0.0479562878608704,-0.0295312404632568,0.0354185104370117,-0.0399639010429382,-0.024500846862793,0.0235834121704102,-0.0403286814689636,-0.0162055492401123,0.0187931060791016,-0.0522253513336182,-0.00140166282653809,0.0204248428344727,-0.0677332878112793,0.0135514736175537,0.0388383865356445,-0.0874671936035156,0.058969259262085,0.135955810546875,-0.135145664215088,0.109858512878418,0.299212455749512,-0.118566870689392,0.07403564453125,0.248467445373535,-0.110551774501801,0.0483944416046143,0.166784286499023,-0.112474262714386,0.0340287685394287,0.115860939025879,-0.0952340066432953,0.0124738216400146,0.0947980880737305,-0.0945950746536255,0.0103697776794434,0.095942497253418,-0.115318179130554,0.0351462364196777,0.121784210205078,-0.114998579025269,0.0550904273986816,0.183808326721191,-0.12857186794281,0.0891640186309814,0.278640747070313,-0.146088004112244,0.124289512634277,0.330964088439941,-0.0876009464263916,0.0624456405639648,0.139823913574219,-0.0658937692642212,0.0157172679901123,0.0370893478393555,-0.0497213006019592,-0.0010528564453125,0.019505500793457,-0.0373828411102295,-0.0157175064086914,0.0176897048950195, +-0.03834068775177,-0.0261416435241699,0.0242729187011719,-0.0452525317668915,-0.03212571144104,0.0343217849731445,-0.0587976574897766,-0.025059700012207,0.0524730682373047,-0.0780001878738403,-0.00670695304870605,0.0779685974121094,-0.0833382159471512,-0.0187411308288574,0.135395050048828,-0.0210502147674561,-0.0127224922180176,0.00888252258300781,-0.0387219190597534,0.000967741012573242,0.014134407043457,-0.0317308902740479,0.00277805328369141,0.0116281509399414,-0.0117248892784119,-0.00687956809997559,0.00332164764404297,-0.0590654611587524,0.0216507911682129,0.0322370529174805,-0.0615994930267334,0.019486665725708,0.0329685211181641,-0.0825655460357666,0.0547816753387451,0.130915641784668,-0.0821807384490967,0.0486066341400146,0.132192611694336,-0.101539969444275,0.0772392749786377,0.190147399902344,-0.111626029014587,0.0926084518432617,0.223092079162598,-0.119515061378479,0.103384494781494,0.250795364379883,-0.123297691345215,0.104411125183105,0.273031234741211,-0.12539279460907,0.0950381755828857,0.292600631713867,-0.129465818405151,0.0754425525665283,0.317309379577637,-0.166170477867126,0.135408639907837,0.429548263549805,-0.178193807601929,0.116474390029907,0.505083084106445,-0.167652487754822,0.142944812774658,0.40680980682373,-0.177815198898315,0.123466491699219,0.500401496887207,-0.174663305282593,0.139792203903198,0.487847328186035,-0.18143355846405,0.12575364112854,0.592026710510254,-0.199115037918091,0.0884099006652832,0.682358741760254,-0.198258519172668,0.0580084323883057,0.638368606567383,-0.180877566337585,0.00743389129638672,0.537413597106934,-0.181360721588135,0.0701749324798584,0.513494491577148,-0.165619492530823,0.101117134094238,0.452702522277832,-0.154574751853943,0.121329069137573,0.396435737609863,-0.146408677101135,0.12587833404541,0.348176002502441,-0.137389063835144,0.11916184425354,0.30666446685791,-0.12529468536377,0.104049205780029,0.267478942871094,-0.111554503440857,0.0848958492279053,0.227785110473633,-0.000442206859588623,-0.000253915786743164,0.000761985778808594,-0.00575143098831177, +-0.000383734703063965,0.006439208984375,-0.0198287963867188,0.000850677490234375,0.0256147384643555,-1.96993350982666e-05,3.61204147338867e-05,3.4332275390625e-05,-0.00217002630233765,-0.00113344192504883,0.00363445281982422,-0.0192872285842896,-0.0102602243423462,0.040257453918457,0,4.9591064453125e-05,0,-0.000840067863464355,-0.000472426414489746,0.00154018402099609,-0.0430558919906616,-0.0723477602005005,0.126120567321777,-0.00075143575668335,-0.000394105911254883,0.000954627990722656,-0.00882333517074585,0.000495195388793945,0.00787258148193359,-0.0286571979522705,0.00571489334106445,0.0264825820922852,-0.188571691513062,0.0197112560272217,0.519399642944336,-0.197062373161316,0.0137507915496826,0.536905288696289,-0.178429007530212,-0.0337555408477783,0.427173614501953,-0.184251189231873,-0.0263564586639404,0.451886177062988,-0.133030772209167,-0.0487148761749268,0.307110786437988,-0.159236788749695,-0.0411581993103027,0.369842529296875,-0.0687556266784668,-0.02947998046875,0.157450675964355,-0.100876331329346,-0.0270652770996094,0.22492790222168,-0.0412800312042236,-0.00698494911193848,0.0809230804443359,-0.0524349212646484,0.00269508361816406,0.0937080383300781,-0.165475726127625,-0.00745630264282227,0.426980972290039,-0.158253312110901,-0.0274064540863037,0.383954048156738,-0.168388366699219,0.00886631011962891,0.493756294250488,-0.141046047210693,0.013756275177002,0.36594295501709,-0.126988887786865,0.00392389297485352,0.324748039245605,-0.122379422187805,-0.0148558616638184,0.285800933837891,-0.0870227813720703,-0.00132060050964355,0.182782173156738,-0.111643671989441,0.0191051959991455,0.232548713684082,-0.0013696551322937,-0.000675439834594727,0.00103092193603516,-0.011113703250885,0.00118613243103027,0.0081634521484375,-0.0351452827453613,0.00955462455749512,0.0275678634643555,-0.0624556541442871,0.0168578624725342,0.0937032699584961,-0.094653844833374,0.0110862255096436,0.197508811950684,-0.21039080619812,0.0159881114959717,0.565969467163086,-0.200155019760132,-0.0372245311737061,0.465599060058594,-0.136245846748352, +-0.0522747039794922,0.303382873535156,-0.0347899198532104,-0.1284419298172,0.182060241699219,0,4.9591064453125e-05,0,-8.21352005004883e-05,-6.79492950439453e-06,0.000141143798828125,-0.476842403411865,0.00686502456665039,0.820951461791992,-0.543681383132935,0.172092914581299,1.10493850708008,-0.294943571090698,0.139740467071533,1.03482151031494,-0.452796220779419,0.0294671058654785,1.49821376800537,-0.126797676086426,0.206727504730225,1.22148323059082,-0.0263919830322266,0.110484600067139,1.80345153808594,0.169441223144531,0.370425939559937,1.10349082946777,0.401983737945557,0.547997951507568,1.46753406524658,0.690550327301025,0.630499124526978,1.77655410766602,0.958969116210938,0.648314476013184,1.07548999786377,0.595145702362061,0.518774747848511,0.784878730773926,0.948807716369629,0.585750579833984,0.762885093688965,0.589752197265625,0.440557837486267,0.606231689453125,0.665275573730469,0.390104055404663,0.578547954559326,0.40149450302124,0.272027850151062,0.413376331329346,0.374548435211182,0.141891479492188,0.427975654602051,0.223008155822754,0.0530561208724976,0.258133888244629,0.0437870025634766,4.57763671875e-05,0.0875730514526367,0.0174107551574707,4.57614660263062e-05,0.0348224639892578,1.3076171875,0.779091358184814,1.37289381027222,0.922341823577881,0.482083320617676,0.802279949188232,1.28080034255981,0.718641519546509,1.01203298568726,0.533634185791016,0.215083599090576,0.708419799804688,0.955363273620605,0.525122165679932,2.00088787078857,1.13083124160767,0.375576496124268,0.965540885925293,1.62671136856079,0.590461730957031,1.1269063949585,1.55928516387939,0.60658073425293,1.50315713882446,1.66362905502319,0.381349086761475,1.23895978927612,1.1532130241394,0.202535629272461,0.905195236206055,1.5915699005127,0.240335941314697,1.60168313980103,1.09360265731812,0.112430095672607,2.06551027297974,0.814552307128906,-0.773806095123291,1.51357173919678,1.24971675872803,-0.329543113708496,1.67502117156982,1.49701976776123,0.0391106605529785,1.40546274185181,1.47579479217529,0.143168926239014,1.16267347335815, +0.371504783630371,-0.884945392608643,1.5100154876709,0.251954555511475,-0.485884666442871,0.808689594268799,0.629468441009521,-0.48081111907959,0.825149536132813,0.0946609973907471,-0.592116355895996,1.2390308380127,0.151287078857422,-0.35060977935791,0.590707778930664,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.0742201805114746,-0.0579214096069336,0.053156852722168,0.0929169654846191,-0.305057525634766,0.927199363708496,0.157821178436279,-0.216730117797852,0.385636329650879,0.0766899585723877,-0.0962276458740234,0.586169242858887,0.110671997070313,-0.11202335357666,0.191343307495117,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.017167329788208,-0.0140609741210938,-0.0736160278320313,0.0240023136138916,-0.0334186553955078,0.0380430221557617,0.0280845165252686,0.0168209075927734,0.269829750061035,0.00370132923126221,0.0312986373901367,0.0677261352539063,-0.0303030014038086,0.00900554656982422,-0.0528011322021484,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-0.000813007354736328,0.00190639495849609,0.00374507904052734,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,1.05209541320801,-0.356701374053955,0.865079879760742,1.21054267883301,-0.174500942230225,0.937239170074463,0.0681958198547363,4.57763671875e-05,0.136391878128052,0.192473888397217,4.57763671875e-05,0.38494873046875,0.465262889862061,-0.228355884552002,0.554149627685547,1.04614114761353,-0.0202617645263672,0.858506202697754,0.0558652877807617,4.57763671875e-05,0.111731290817261,0.181558132171631,4.57763671875e-05, +0.363116979598999,0.530718326568604,-0.0867462158203125,0.670158863067627,0.814110279083252,-0.0201897621154785,0.666767597198486,1.11972522735596,0.0399999618530273,0.834645748138428,0.528068065643311,-0.0615401268005371,0.51902437210083,0.739956855773926,-0.0659852027893066,0.705760955810547,0.728589534759521,0.0179581642150879,0.656323432922363,0.667332172393799,0.114625930786133,0.663304805755615,0.179313182830811,-0.000979423522949219,0.356032609939575,0.196282863616943,-0.00199437141418457,0.389111518859863,0.207540512084961,-0.0712509155273438,0.410078048706055,0.204543590545654,-0.0141603946685791,0.329749822616577,0.171186923980713,-0.0153884887695313,0.250921249389648,-1.02519989013672e-05,0.000253081321716309,7.15255737304688e-05,0.00128006935119629,0.00890529155731201,0.00653553009033203,0.0100069046020508,0.0222426652908325,0.030029296875,0.0294094085693359,0.026430606842041,0.0585298538208008,0.0656723976135254,0.0240135788917542,0.111780166625977,0.0764603614807129,0.0207953453063965,0.193331241607666,0.0384883880615234,0.00981900095939636,0.15935230255127,0.00304269790649414,0.000259369611740112,0.126978874206543,-5.340576171875e-05,0.00113832950592041,0.000375747680664063,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00282526016235352,4.57763671875e-05,0.00565141439437866,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00124645233154297,4.57763671875e-05,0.00249266624450684,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00307703018188477,4.57763671875e-05,0.00615447759628296,0.0253543853759766,4.57763671875e-05,0.0507098436355591,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00278711318969727,4.57763671875e-05,0.00557500123977661,0.00940132141113281,4.57763671875e-05,0.0188028812408447,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000574111938476563,4.57763671875e-05,0.00114792585372925,0.016045093536377,4.57763671875e-05,0.0320912599563599,0.0222930908203125,4.57763671875e-05,0.0445866584777832,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.00107145309448242,4.57763671875e-05,0.00214308500289917,0.00653839111328125,4.57763671875e-05,0.013077437877655,0.00662565231323242,4.57763671875e-05,0.0132526159286499,0.0020294189453125,4.57763671875e-05,0.00405991077423096,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000258445739746094,0.00140213966369629,-0.000211119651794434,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0140867233276367,-0.00186610221862793,0.0659031867980957,0,4.57763671875e-05,0,0.000481128692626953,4.57763671875e-05,0.0009613037109375,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0.087557315826416,-7.20024108886719e-05,0.175322771072388,0.0694007873535156,-0.00223994255065918,0.168082475662231,0.0460281372070313,0.00024867057800293,0.0952138900756836,0.0303611755371094,4.56571578979492e-05,0.0607223510742188,0.0187702178955078,4.57763671875e-05,0.0375411510467529,2.47955322265625e-05,4.57763671875e-05,4.88758087158203e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.0018305778503418,4.57763671875e-05,0.00366169214248657,0.0291404724121094,4.57763671875e-05,0.0582817792892456,0.0681333541870117,4.57763671875e-05,0.13626754283905,0.0813484191894531,4.57763671875e-05,0.162697076797485,0.0337252616882324,4.57763671875e-05,0.0674507617950439,0.0342960357666016,4.57763671875e-05,0.06859290599823,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06, +0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, +4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0.000168323516845703,4.57763671875e-05,0.000338315963745117,4.29153442382813e-06,4.57763671875e-05,1.02519989013672e-05,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05, +3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,-0.0603125095367432,-0.00146269798278809,0.0291624069213867,-0.0653135776519775,0.00411868095397949,0.0319242477416992,-0.0717939138412476,0.0122079849243164,0.0444698333740234,-0.0785301327705383,0.0220575332641602,0.0776348114013672,-0.0842498540878296,0.0310795307159424,0.109946250915527,-0.0907691717147827,0.0417277812957764,0.147930145263672,-0.060210645198822,-0.0029597282409668,0.0315608978271484,-0.0625045001506805,-0.00297665596008301,0.0376968383789063,-0.068547785282135,0.000679254531860352,0.0474643707275391,-0.0730924904346466,0.00469398498535156,0.0546836853027344,-0.08048015832901,0.0120267868041992,0.0634231567382813,-0.0879670977592468,0.0201320648193359,0.0731544494628906,-0.0915313959121704,0.026479959487915,0.0968685150146484,-0.0936827063560486,0.0338990688323975,0.130402565002441,-0.0966775417327881,0.0462436676025391,0.168240547180176,-0.0730260610580444,0.00786328315734863,0.0457592010498047,-0.0788542032241821,0.0144553184509277,0.0557765960693359,-0.08309006690979,0.0210418701171875,0.0773048400878906, +-0.0876574516296387,0.029716968536377,0.111587524414063,-0.0672163367271423,0.00198149681091309,0.0408649444580078,-0.0328217744827271,-0.0296263694763184,0.0267877578735352,-0.075814962387085,0.0644741058349609,0.428897857666016,-0.04522705078125,0.13163948059082,0.607892036437988,-0.0498461723327637,-0.0162973403930664,0.113898277282715,-0.0740776062011719,0.0180950164794922,0.262751579284668,-0.0452369451522827,-0.0262598991394043,0.0708656311035156,-0.0439265966415405,-0.0238165855407715,0.0464677810668945,-0.0394489765167236,-0.026270866394043,0.0321493148803711,0.0711033344268799,0.144748687744141,0.770784378051758,0.0892558097839355,0.143639087677002,0.862894058227539,0.0171005725860596,0.0806674957275391,0.775216102600098,-0.0612697601318359,0.0491290092468262,0.586565971374512,-0.0922152996063232,0.0407323837280273,0.39898681640625,-0.0423500537872314,0.0508937835693359,0.24345874786377,-0.0235553979873657,0.0547356605529785,0.185766220092773,-0.0212404727935791,0.0364193916320801,0.111922264099121,-0.0236454010009766,0.0193171501159668,0.0499238967895508,-0.0201236009597778,0.0149369239807129,0.0339565277099609,-0.0159532725811005,0.0109105110168457,0.0280733108520508,-0.0619915872812271,0.00301790237426758,0.403645515441895,-0.126994550228119,0.00738239288330078,0.471827507019043,-0.267653584480286,0.0181756019592285,0.585397720336914,-0.390980005264282,0.0401101112365723,0.755876541137695,-0.523493647575378,0.0929255485534668,1.0847635269165,-0.594367742538452,0.12542200088501,1.34188461303711,-0.472407817840576,0.130880355834961,1.47902202606201,-0.41059947013855,0.143818855285645,1.63209056854248,-0.375559091567993,0.123701572418213,1.7311840057373,-0.39721155166626,0.136543750762939,1.77730464935303,-0.39542031288147,0.14130973815918,1.75236320495605,-0.406593799591064,0.139073848724365,1.69548320770264,-0.487781763076782,0.123972415924072,1.49551296234131,-0.612424612045288,0.121927261352539,1.32989501953125,-0.523171901702881,0.0970120429992676,1.04672718048096,-0.419385015964508,0.0452890396118164, +0.741824150085449,-0.283147156238556,0.0234012603759766,0.59251594543457,-0.137803703546524,0.00411033630371094,0.471415519714355,-0.0699324160814285,-0.000354766845703125,0.403323173522949,-0.0153074562549591,-0.00652933120727539,0.034296989440918,-0.0357983112335205,-0.00702762603759766,0.0556344985961914,-0.0955552458763123,-0.00357818603515625,0.108292579650879,-0.127790093421936,0.00384759902954102,0.177730560302734,-0.205942392349243,0.0477972030639648,0.370638847351074,-0.33866286277771,0.103124141693115,0.619852066040039,-0.365204572677612,0.1522216796875,0.793634414672852,-0.296106338500977,0.157322406768799,0.840658187866211,-0.205310344696045,0.137688159942627,0.911896705627441,-0.184102773666382,0.112148284912109,1.04478454589844,-0.218239545822144,0.0933880805969238,0.993690490722656,-0.266821384429932,0.0989556312561035,0.824082374572754,-0.388710498809814,0.146683216094971,0.85521125793457,-0.313970327377319,0.0923476219177246,0.59220027923584,-0.194828867912292,0.0508308410644531,0.384221076965332,-0.14317786693573,0.0197248458862305,0.192501068115234,-0.119518876075745,0.0148649215698242,0.119693756103516,-0.0448674559593201,0.00540590286254883,0.0548477172851563,-0.0136526823043823,0.00266027450561523,0.0285615921020508,-3.98159027099609e-05,2.288818359375e-05,7.62939453125e-06,0.227958202362061,-0.0549411773681641,0.44747257232666,0.344064712524414,0.00674247741699219,0.675629138946533,0.047072172164917,-0.0733017921447754,0.0487165451049805,0.0799179077148438,-0.262475490570068,0.0380277633666992,0.00673651695251465,0.0016019344329834,0.0159235000610352,-0.00137782096862793,0.00176835060119629,-4.29153442382813e-05,-0.000422179698944092,0.000573635101318359,-1.23977661132813e-05,0.461037158966064,0.0269193649291992,0.836468696594238,0.535700559616089,0.0162277221679688,0.935246467590332,0.445451974868774,0.00911521911621094,0.780385494232178,0.271408081054688,0.00930213928222656,0.499908924102783,0.113525629043579,-0.000188827514648438,0.227436065673828,0.0356531143188477,4.57763671875e-05,0.0713081359863281, +0.00805878639221191,4.57763671875e-05,0.016118049621582,0.000261187553405762,0.000655174255371094,0.00189590454101563,5.48362731933594e-06,5.62667846679688e-05,4.00543212890625e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.091090202331543,4.57763671875e-05,0.182181835174561,0.110629081726074,4.57763671875e-05,0.221258640289307,0.0310518741607666,4.57763671875e-05,0.0621042251586914,0.0666606426239014,4.57763671875e-05,0.13332200050354,0.00697708129882813,4.57763671875e-05,0.0139544010162354,5.5849552154541e-05,4.57763671875e-05,0.000112056732177734,0,4.57763671875e-05,0,0.109734535217285,4.57763671875e-05,0.219469785690308,0.0837774276733398,4.57763671875e-05,0.167555809020996,0.0485594272613525,4.57763671875e-05,0.0971202850341797,0.00761294364929199,4.57763671875e-05,0.0152273178100586,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06, +0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,0,4.64916229248047e-06,4.57763671875e-05,1.00135803222656e-05,0.00875377655029297,4.57763671875e-05,0.0175085067749023,0.041359543800354,4.57763671875e-05,0.0827198028564453,0.128973484039307,4.57763671875e-05,0.257946968078613,0.25335168838501,4.57763671875e-05,0.506703853607178,0.367084980010986,4.57763671875e-05,0.734169960021973,0.466518878936768,0.00283336639404297,0.92064905166626,0.532763481140137,0.0118589401245117,1.01298666000366,0.495234489440918,0.016932487487793,0.915375709533691,0.369162082672119,0.00661468505859375,0.709118366241455,0.192490339279175,4.57763671875e-05,0.384982585906982,0.0676751136779785,0.000729560852050781,0.136476516723633,0.0130739212036133,4.57763671875e-05,0.0261497497558594,0.00206708908081055,4.57763671875e-05,0.00413608551025391,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06 + } + Normals: *7509 { + a: -0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453, +-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972,-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666, +1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428, +0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255, +-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868, +-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014, +-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229, +0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595, +-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476, +-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735, +0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654, +-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996, +-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324, +-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636, +-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033, +-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668, +-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074, +0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273, +-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303, +0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383, +0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104,-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634, +-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598, +-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739, +0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018,-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415, +-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525,-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001, +-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201, +0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165, +-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067, +-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969,0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683, +1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757, +0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776, +-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647, +-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413, +0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769, +0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178, +-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082, +-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675, +-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223, +0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308, +-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009, +-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439, +0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915, +1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106, +-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298, +-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284, +-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727, +0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952, +-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962, +0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671, +0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266, +-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515, +-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008, +-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292, +-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176, +-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966,-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943, +-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043, +0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124, +0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906,-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555, +-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938,0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199, +0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122, +-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448, +-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552,-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322, +-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908,-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402, +-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913, +0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101, +-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567, +1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272, +1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634 + } + } + Geometry: 2805454335456, "Geometry::Cheek_Puff_Right", "Shape" { + Version: 100 + Indexes: *8033 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971, +2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409,3410, +3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820, +3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243, +4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658,4659, +4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082, +5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497, +5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922, +5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5965,5967,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6113,6115,6117,6119,6120,6123,6125,6127,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6143,6144,6145,6146,6148,6150,6151,6152,6153,6154,6155,6156,6157,6158,6160,6162,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370, +6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6513,6514,6515,6516,6517,6518,6519,6520,6525,6526,6529,6530,6531,6536,6544,6545,6546,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871, +6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281, +7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7347,7349,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7495,7497,7499,7501,7502,7505,7507,7509,7511,7513,7515,7516,7517,7518,7519,7520,7521,7522,7523,7525,7526,7527,7528,7530,7532,7533,7534,7536,7537,7538,7539,7540,7542,7544,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732, +7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7895,7896,7897,7898,7907,7908,7911,7912,7913,7918,7926,7927,7928,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237, +8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647, +8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 + } + Vertices: *24099 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, +0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, +0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, +0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, +4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, +-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05, +0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348, +0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699, +0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05, +0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05, +0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05, +0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699, +0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625, +0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05, +0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05, +0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0, +8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, +0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05, +0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05, +0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05, +0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05, +0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05, +0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05, +0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0, +0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, +0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0, +8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, +0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05, +0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05, +0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05, +0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05, +0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05, +0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05, +0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05, +0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05, +0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0, +0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05, +0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05, +0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0, +0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781, +0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0, +0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05, +0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05, +0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0, +0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05, +0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0, +0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944, +0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05, +0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0, +0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578, +0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05, +0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, +8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05, +0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0, +0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0, +9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781, +0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0, +0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0, +0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05, +0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0, +0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0, +8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05, +0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803, +0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0, +0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, +0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05, +0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05, +0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0.00163092371076345,-0.0015721321105957,0.000338554382324219,0.000443189026555046,-0.000391006469726563,9.1552734375e-05,0.111760452411545,-0.00277996063232422,0.421629905700684,0.161375373609189,-0.0233550071716309,0.415858268737793,0.131131693793577,0.0207018852233887,0.402071952819824,0.106857568047417,-0.00281429290771484,0.42170524597168,0.142538055799378,-0.0129146575927734,0.418899536132813,0.137582048759214,0.0151009559631348,0.412527084350586,0.124444447472342,-0.00602912902832031,0.421350479125977,0.122971408090962,0.00464057922363281,0.418312072753906,0.133612081408501,-0.0245723724365234,0.314766883850098,0.0596447027983231,0.0142645835876465,0.247822761535645,0.140041917558847,-0.0274224281311035,0.352447509765625,0.0970137416297803,0.0197787284851074,0.329452514648438,0.0713537782430649,-0.0348601341247559,0.153958320617676,0.0210610181093216,0.00221157073974609,0.14530086517334,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.9591064453125e-05,0,1.6494232794919e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.16397638697519e-29,4.57763671875e-05,1.9073486328125e-06,1.2030073133208e-29,4.9591064453125e-05,1.9073486328125e-06,1.17687680741049e-29,4.57763671875e-05,1.9073486328125e-06,0.0113422805443406,7.91549682617188e-05,0.0692024230957031,0.0292403679341078,-0.033461332321167,0.0250930786132813,0.040963888168335,-0.0378713607788086,0.0333375930786133,0.0468014441430569, +-0.0325336456298828,0.0384235382080078,0.0609319321811199,-0.0332555770874023,0.0981807708740234,0.0158042963594198,-0.0183501243591309,0.0113506317138672,0.00586307095363736,-0.00612926483154297,0.00204181671142578,1.69452569998719e-29,4.9591064453125e-05,0,1.70417235205941e-29,4.9591064453125e-05,0,1.71227329488799e-29,4.9591064453125e-05,0,3.79388393412228e-06,4.57763671875e-05,0,0.000141997603350319,-9.1552734375e-05,2.95639038085938e-05,1.6823769940833e-29,4.9591064453125e-05,0,1.25674060830592e-29,4.9591064453125e-05,1.9073486328125e-06,1.23097723279127e-29,4.9591064453125e-05,1.9073486328125e-06,1.76704839760241e-29,4.9591064453125e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.11006020387699e-29,4.57763671875e-05,0,1.20450953867742e-29,4.57763671875e-05,0,1.25386284767183e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,0,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.76704839760241e-29,4.57763671875e-05,-1.9073486328125e-06,1.76704839760241e-29,4.57763671875e-05,-2.14576721191406e-06,1.76704839760241e-29,4.57763671875e-05,-2.14576721191406e-06,1.76704839760241e-29,4.57763671875e-05,-2.14576721191406e-06,1.026728826302e-29,4.57763671875e-05,0,1.96628296081702e-16,4.57763671875e-05,1.9073486328125e-06,-1.93790846881475e-15,4.57763671875e-05,3.814697265625e-06,8.77084445781299e-30,4.57763671875e-05,0,9.80023445286197e-30,4.57763671875e-05,1.9073486328125e-06,9.58355604937264e-30,4.57763671875e-05,0,1.18770504759626e-29,4.57763671875e-05,1.9073486328125e-06,7.4275955903035e-30,4.57763671875e-05,1.9073486328125e-06,6.59519281550426e-16,4.57763671875e-05,2.62260437011719e-06,6.5952056590738e-30,4.57763671875e-05,1.9073486328125e-06,-2.37353751358763e-15,4.57763671875e-05,2.86102294921875e-06,5.74120017348389e-30,4.57763671875e-05,1.9073486328125e-06, +-1.83593396053657e-15,4.57763671875e-05,3.33786010742188e-06,8.17811092940521e-30,4.57763671875e-05,0,7.57453707368001e-16,4.57763671875e-05,2.38418579101563e-06,0,0.000311195850372314,0,0,0.000519618391990662,0,0.00540220737457275,-0.00282764434814453,0.00146102905273438,0.00244230031967163,-0.00114631652832031,0.00118064880371094,0.0912067741155624,-0.00296926498413086,0.396718978881836,0.153615117073059,-0.0241103172302246,0.446992874145508,0.49608039855957,0.168283939361572,1.50814056396484,0.472244024276733,0.168550491333008,1.50536251068115,0.454501628875732,0.0976943969726563,1.28577327728271,0.522084712982178,0.151006698608398,1.27116107940674,0.497353196144104,0.0983405113220215,0.97866153717041,0.578438758850098,0.13075590133667,1.00329113006592,0.429036378860474,0.104555606842041,0.854087829589844,0.416885495185852,0.0709090232849121,0.737983703613281,0.29463529586792,0.0423707962036133,0.668708801269531,0.2834712266922,0.0251898765563965,0.607094764709473,0.206919968128204,-0.00793743133544922,0.529261589050293,0.150299966335297,0.00181865692138672,0.466658592224121,0.605844736099243,0.153275012969971,1.14843463897705,0.46296238899231,0.101705551147461,1.10691738128662,0.384437322616577,0.145184516906738,1.53133106231689,0.449356079101563,0.153040409088135,1.50346946716309,0.405591487884521,0.143306255340576,1.56307888031006,0.397512435913086,0.151094436645508,1.50220489501953,0.402195692062378,0.131279945373535,1.57107639312744,0.454372406005859,0.165160655975342,1.51166820526123,0.440876483917236,0.117146968841553,1.55735206604004,0.503968954086304,0.183385848999023,1.51574039459229,0.559349536895752,0.144500255584717,1.35329055786133,0.605749607086182,0.180456161499023,1.50767612457275,0.611721992492676,0.144687175750732,1.18411350250244,0.681204080581665,0.245982646942139,1.36668586730957,0.636487245559692,0.202836036682129,1.08494091033936,0.57291567325592,0.129280090332031,0.99631404876709,0.493260741233826,0.14922571182251,0.79279613494873,0.466166853904724,0.0726542472839355,0.750367164611816,0.333110392093658, +0.0804347991943359,0.576826095581055,0.302544116973877,0.0271077156066895,0.590445518493652,0.159108400344849,0.0478482246398926,0.441702842712402,0.151560693979263,0.000737667083740234,0.466983795166016,0.112070232629776,0.0332999229431152,0.429425239562988,0.0852231234312057,-0.00245141983032227,0.399282455444336,0.12197732925415,-0.0167574882507324,0.43260669708252,0.169647395610809,-0.0103778839111328,0.492929458618164,0.288821280002594,0.0291361808776855,0.638309478759766,0.404429912567139,0.0750832557678223,0.823626518249512,0.537361145019531,0.120270729064941,1.01245021820068,0.508352637290955,0.129139423370361,1.15933132171631,0.489008188247681,0.13176155090332,1.28878498077393,0.471152544021606,0.174188613891602,1.50615882873535,0.416788101196289,0.155145168304443,1.50948047637939,0.412880659103394,0.146074295043945,1.52925109863281,0.402519464492798,0.140751838684082,1.54309558868408,0.473680019378662,0.166221141815186,1.54815196990967,0.591097354888916,0.166050434112549,1.42112445831299,0.639098763465881,0.185564041137695,1.27666187286377,0.590458989143372,0.17370080947876,1.05356884002686,0.480820775032043,0.133223533630371,0.790040016174316,0.325576543807983,0.0826091766357422,0.593918800354004,0.185707032680511,0.0468688011169434,0.492312431335449,0.120839342474937,0.0274138450622559,0.448963165283203,0.104991137981415,-0.00789976119995117,0.39765739440918,0.159883260726929,-0.00303983688354492,0.473395347595215,0.284864366054535,0.0262775421142578,0.621394157409668,0.40929102897644,0.0644598007202148,0.778014183044434,0.550127267837524,0.120011329650879,1.02122974395752,0.570742011070251,0.15038537979126,1.15109252929688,0.504307270050049,0.144131660461426,1.27503108978271,0.494148731231689,0.162392616271973,1.50158500671387,0.464741706848145,0.157248020172119,1.50764942169189,0.45411229133606,0.156954765319824,1.51901245117188,0.462091684341431,0.167641162872314,1.52247619628906,0.501155614852905,0.185912609100342,1.52161598205566,0.601726293563843,0.177432060241699,1.36970806121826,0.63290548324585, +0.167493343353271,1.19025039672852,0.576487898826599,0.147260665893555,0.99442195892334,0.479573726654053,0.110386848449707,0.772055625915527,0.322094678878784,0.0570526123046875,0.607304573059082,0.168365836143494,0.0193915367126465,0.517355918884277,0.0982813388109207,0.00862884521484375,0.484910011291504,0.1558977663517,-0.0192852020263672,0.343053817749023,0.168643951416016,0.0124473571777344,0.395943641662598,0.176306962966919,-0.0369358062744141,0.57200813293457,0.173178553581238,0.0250935554504395,0.809830665588379,0.313502073287964,0.0914535522460938,1.12785148620605,0.344350576400757,0.111648082733154,1.29959201812744,0.396620988845825,0.0973591804504395,1.53944206237793,0.58690071105957,0.105615139007568,1.8801908493042,0.53264045715332,0.155951023101807,1.95163059234619,0.485357999801636,0.147543907165527,1.91780281066895,0.487787246704102,0.106702327728271,1.86956787109375,0.469266653060913,0.133047103881836,1.85712623596191,0.38940691947937,0.160372257232666,1.77031517028809,0.324235200881958,0.209689617156982,1.49044990539551,0.0557039976119995,0.0241103172302246,0.259607315063477,0.0623806118965149,0.0345497131347656,0.29591178894043,0.0852494239807129,0.0546951293945313,0.385111808776855,0.155084609985352,0.152819156646729,0.646639823913574,0.233898639678955,0.181911945343018,1.04897880554199,0.140314489603043,-0.0245518684387207,0.347535133361816,0.193712830543518,-0.00411224365234375,0.450103759765625,0.26139771938324,0.0481300354003906,0.583757400512695,0.389864921569824,0.210843086242676,0.744058609008789,0.462051391601563,0.21345853805542,0.875240325927734,0.397588491439819,0.195805549621582,1.02561473846436,0.405396223068237,0.23095178604126,1.31195449829102,0.488669395446777,0.295629024505615,1.62527751922607,0.327401161193848,0.207535743713379,1.63455581665039,0.368279457092285,0.152582168579102,1.66745090484619,0.41990852355957,0.118014335632324,1.66846370697021,0.432518005371094,0.0684223175048828,1.65896034240723,0.516419649124146,0.0926942825317383,1.64123630523682,0.46920108795166,0.132978439331055, +1.41868114471436,0.400745153427124,0.168729782104492,1.08222579956055,0.341106772422791,0.143210887908936,0.735932350158691,0.221442222595215,0.090059757232666,0.520211219787598,0.105147242546082,0.0477433204650879,0.354975700378418,0.0798524916172028,0.032768726348877,0.312179565429688,0.0937626659870148,-0.0185928344726563,0.187541961669922,0.129110395908356,0.0160961151123047,0.262725830078125,0.206474363803864,0.0335330963134766,0.471966743469238,0.19465696811676,0.075251579284668,0.71794605255127,0.353838443756104,0.231824636459351,0.988322257995605,0.426651000976563,0.244785308837891,1.317702293396,0.374788045883179,0.082636833190918,1.76680755615234,0.308649063110352,0.0916910171508789,2.1830587387085,0.242093563079834,0.110772609710693,1.76633834838867,0.360467433929443,0.00367116928100586,1.91899108886719,0.438642978668213,0.00509214401245117,2.20515918731689,0.446281433105469,0.0912361145019531,2.43235492706299,0.242685556411743,0.0194158554077148,2.35827350616455,0.0255694091320038,0.00487232208251953,0.17575740814209,0.0272464156150818,0.0174226760864258,0.245524406433105,0.0116976499557495,0.0438013076782227,0.358451843261719,0.0428295135498047,0.165467262268066,0.576217651367188,-0.00255560874938965,0.256905555725098,0.939101219177246,0.0930507183074951,0.162072658538818,1.39078521728516,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0753593444824219,0.0197952091693878,0.151402473449707,-0.0897960662841797,0.0941253304481506,0.189964294433594,-0.154628753662109,0.0471512079238892,0.218108177185059,-0.291264057159424,0.251311182975769,0.344815731048584,-0.0703721046447754,0.0661032199859619,0.118640899658203,-0.320487499237061,0.372848391532898,0.527549743652344,-0.00183796882629395,0.0234962701797485,0.0316019058227539,0.0957028865814209,0.1285320520401,0.597674369812012,0.00062251091003418,6.04391098022461e-05, +0.00157642364501953,0.484714508056641,-0.0989919900894165,0.506077766418457,8.82148742675781e-06,4.57763671875e-05,2.47955322265625e-05,0.130656123161316,-0.0790562629699707,0.125581741333008,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00701475143432617,0.000515744090080261,0.0882377624511719,-0.0128154754638672,7.78157263994217e-05,0.025505542755127,-0.370195388793945,0.316527605056763,0.421140670776367,-0.141891002655029,0.0628664493560791,0.170815467834473,-0.15791654586792,0.230051040649414,0.491595268249512,-0.0200257301330566,0.0491278171539307,0.0741634368896484,0.224169969558716,0.0376908779144287,0.553531646728516,0.00364160537719727,0.00278115272521973,0.00871753692626953,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0.00574707984924316,0.00431632995605469,-0.0187778472900391,0,4.57763671875e-05,1.9073486328125e-06,-0.0428798198699951,-0.0527811050415039,0.00497913360595703,-0.000112533569335938,4.57763671875e-05,0.000226974487304688,-0.156652450561523,-0.100918769836426,0.151751041412354,-0.0493311882019043,4.57763671875e-05,0.0986642837524414,-0.333480358123779,-0.250406265258789,0.44207763671875,-0.072298526763916,4.57763671875e-05,0.144598245620728,-0.481326580047607,-0.143180847167969,0.658619403839111,-0.006134033203125,4.57763671875e-05,0.0122683346271515,-0.294757843017578,-0.00768756866455078,0.353692293167114,-3.57627868652344e-05,4.57763671875e-05,7.11267348378897e-05,-0.122544288635254,0.000120639801025391,0.244267225265503,-0.0182666778564453,4.57763671875e-05,0.0365347862243652,-0.183066844940186,-0.229484558105469,0.289061069488525,-0.0274777412414551,4.57763671875e-05,0.0549572706222534,-0.520839214324951,-0.128692150115967,0.556059598922729,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0144643783569336,4.57763671875e-05,0.0289306640625,-0.0772266387939453,4.57763671875e-05,0.154454708099365,-0.148436069488525,4.29153442382813e-05, +0.296858310699463,-0.197999477386475,4.57763671875e-05,0.395999431610107,-0.140644550323486,4.57763671875e-05,0.281291484832764,-0.086707592010498,4.57763671875e-05,0.173415899276733,-0.0428485870361328,4.57763671875e-05,0.085698127746582,0.195231318473816,0.0418212413787842,0.579584121704102,0.136224985122681,0.0225005149841309,0.383407592773438,0.13637900352478,0.0493006706237793,0.357051849365234,0.198992490768433,0.0847976207733154,0.583436965942383,0.084907054901123,0.0434858798980713,0.139411926269531,0.0862531661987305,0.0308046340942383,0.142521858215332,0.0438110828399658,0.0148494243621826,0.0301380157470703,0.0559374094009399,0.0217373371124268,0.0334444046020508,0.0131728053092957,0.00153064727783203,0.0077972412109375,0.026193380355835,0.00366091728210449,0.0108489990234375,0.198741912841797,0.0910375118255615,0.587281227111816,0.197914242744446,0.0535178184509277,0.580921173095703,0.510722756385803,0.175629377365112,1.33125495910645,0.404936075210571,0.0737879276275635,1.71976852416992,-0.0559604167938232,0.200148582458496,2.21100330352783,-0.217696189880371,0.220017433166504,2.42553520202637,-0.191464900970459,-0.109786510467529,2.47250747680664,-0.147121906280518,-0.461048126220703,2.11341381072998,0.110345602035522,-0.330268383026123,1.74042224884033,0.0374834537506104,-0.168135643005371,1.3767032623291,-0.00597047805786133,-3.33786010742188e-05,0.99695873260498,-0.0225801467895508,0.112486839294434,0.583847999572754,-0.027135968208313,0.0884437561035156,0.296010971069336,-0.000458002090454102,0.015385627746582,0.145888328552246,0.00808769464492798,0.000850677490234375,0.0948286056518555,0.0111770331859589,0.000245094299316406,0.0815525054931641,0.0776686072349548,-0.00273299217224121,0.0716075897216797,0.078475683927536,-0.013181209564209,0.0968351364135742,0.0981456339359283,0.00161409378051758,0.141754150390625,0.0944826006889343,0.0139532089233398,0.0917997360229492,0.0623182654380798,-0.0164997577667236,0.0504617691040039,0.0523374825716019,-0.0321478843688965,0.0473356246948242,0.0502186715602875, +-0.0243875980377197,0.0337944030761719,0.0382629185914993,-0.0367143154144287,0.0314540863037109,0.0429816246032715,-0.0220499038696289,0.0228509902954102,0.0305759012699127,-0.0275111198425293,0.0228633880615234,0.0428981781005859,-0.0161592960357666,0.0188455581665039,0.0313440561294556,-0.0151669979095459,0.0147438049316406,0.0544736385345459,-0.0014650821685791,0.020960807800293,0.0450935959815979,-0.000265121459960938,0.0172281265258789,0.0684434175491333,0.0115320682525635,0.038731575012207,0.0641235113143921,0.0178437232971191,0.0358390808105469,0.0878407955169678,0.056096076965332,0.137775421142578,0.0854336023330688,0.0604178905487061,0.136402130126953,0.120386600494385,0.0894842147827148,0.25855827331543,0.156355023384094,0.135223627090454,0.370790481567383,0.104708075523376,0.0406656265258789,0.144598007202148,0.139255523681641,0.076683521270752,0.309577941894531,0.126082003116608,0.0335683822631836,0.192451477050781,0.108143627643585,0.031775951385498,0.107792854309082,0.108863711357117,0.0576739311218262,0.209635734558105,0.142087578773499,0.109066724777222,0.31070613861084,0.0782718062400818,-0.0051424503326416,0.0758113861083984,0.0616743564605713,-0.0209982395172119,0.0536632537841797,0.0479562878608704,-0.0295312404632568,0.0354185104370117,0.0399639010429382,-0.024500846862793,0.0235834121704102,0.0403286814689636,-0.0162055492401123,0.0187931060791016,0.0522253513336182,-0.00140166282653809,0.0204248428344727,0.0677332878112793,0.0135514736175537,0.0388383865356445,0.0874671936035156,0.058969259262085,0.135955810546875,0.135145664215088,0.109858512878418,0.299212455749512,0.118566870689392,0.07403564453125,0.248467445373535,0.110551774501801,0.0483944416046143,0.166784286499023,0.112474262714386,0.0340287685394287,0.115860939025879,0.0952340066432953,0.0124738216400146,0.0947980880737305,0.0945950746536255,0.0103697776794434,0.095942497253418,0.115318179130554,0.0351462364196777,0.121784210205078,0.114998579025269,0.0550904273986816,0.183808326721191,0.12857186794281,0.0891640186309814,0.278640747070313, +0.146088004112244,0.124289512634277,0.330964088439941,0.0876009464263916,0.0624456405639648,0.139823913574219,0.0658937692642212,0.0157172679901123,0.0370893478393555,0.0497213006019592,-0.0010528564453125,0.019505500793457,0.0373828411102295,-0.0157175064086914,0.0176897048950195,0.03834068775177,-0.0261416435241699,0.0242729187011719,0.0452525317668915,-0.03212571144104,0.0343217849731445,0.0587976574897766,-0.025059700012207,0.0524730682373047,0.0780001878738403,-0.00670695304870605,0.0779685974121094,0.0833382159471512,-0.0187411308288574,0.135395050048828,0.0210502147674561,-0.0127224922180176,0.00888252258300781,0.0387219190597534,0.000967741012573242,0.014134407043457,0.0317308902740479,0.00277805328369141,0.0116281509399414,0.0117248892784119,-0.00687956809997559,0.00332164764404297,0.0590654611587524,0.0216507911682129,0.0322370529174805,0.0615994930267334,0.019486665725708,0.0329685211181641,0.0825655460357666,0.0547816753387451,0.130915641784668,0.0821807384490967,0.0486066341400146,0.132192611694336,0.101539969444275,0.0772392749786377,0.190147399902344,0.111626029014587,0.0926084518432617,0.223092079162598,0.119515061378479,0.103384494781494,0.250795364379883,0.123297691345215,0.104411125183105,0.273031234741211,0.12539279460907,0.0950381755828857,0.292600631713867,0.129465818405151,0.0754425525665283,0.317309379577637,0.166170477867126,0.135408639907837,0.429548263549805,0.178193807601929,0.116474390029907,0.505083084106445,0.167652487754822,0.142944812774658,0.40680980682373,0.177815198898315,0.123466491699219,0.500401496887207,0.174663305282593,0.139792203903198,0.487847328186035,0.18143355846405,0.12575364112854,0.592026710510254,0.199115037918091,0.0884099006652832,0.682358741760254,0.198258519172668,0.0580084323883057,0.638368606567383,0.180877566337585,0.00743389129638672,0.537413597106934,0.181360721588135,0.0701749324798584,0.513494491577148,0.165619492530823,0.101117134094238,0.452702522277832,0.154574751853943,0.121329069137573,0.396435737609863,0.146408677101135,0.12587833404541,0.348176002502441, +0.137389063835144,0.11916184425354,0.30666446685791,0.12529468536377,0.104049205780029,0.267478942871094,0.111554503440857,0.0848958492279053,0.227785110473633,0.000442206859588623,-0.000253915786743164,0.000761985778808594,0.00575143098831177,-0.000383734703063965,0.006439208984375,0.0198287963867188,0.000850677490234375,0.0256147384643555,1.96993350982666e-05,3.61204147338867e-05,3.4332275390625e-05,0.00217002630233765,-0.00113344192504883,0.00363445281982422,0.0192872285842896,-0.0102602243423462,0.040257453918457,0,4.9591064453125e-05,0,0.000840067863464355,-0.000472426414489746,0.00154018402099609,0.0430558919906616,-0.0723477602005005,0.126120567321777,0.00075143575668335,-0.000394105911254883,0.000954627990722656,0.00882333517074585,0.000495195388793945,0.00787258148193359,0.0286571979522705,0.00571489334106445,0.0264825820922852,0.188571691513062,0.0197112560272217,0.519399642944336,0.197062373161316,0.0137507915496826,0.536905288696289,0.178429007530212,-0.0337555408477783,0.427173614501953,0.184251189231873,-0.0263564586639404,0.451886177062988,0.133030772209167,-0.0487148761749268,0.307110786437988,0.159236788749695,-0.0411581993103027,0.369842529296875,0.0687556266784668,-0.02947998046875,0.157450675964355,0.100876331329346,-0.0270652770996094,0.22492790222168,0.0412800312042236,-0.00698494911193848,0.0809230804443359,0.0524349212646484,0.00269508361816406,0.0937080383300781,0.165475726127625,-0.00745630264282227,0.426980972290039,0.158253312110901,-0.0274064540863037,0.383954048156738,0.168388366699219,0.00886631011962891,0.493756294250488,0.141046047210693,0.013756275177002,0.36594295501709,0.126988887786865,0.00392389297485352,0.324748039245605,0.122379422187805,-0.0148558616638184,0.285800933837891,0.0870227813720703,-0.00132060050964355,0.182782173156738,0.111643671989441,0.0191051959991455,0.232548713684082,0.0013696551322937,-0.000675439834594727,0.00103092193603516,0.011113703250885,0.00118613243103027,0.0081634521484375,0.0351452827453613,0.00955462455749512,0.0275678634643555,0.0624556541442871, +0.0168578624725342,0.0937032699584961,0.094653844833374,0.0110862255096436,0.197508811950684,0.21039080619812,0.0159881114959717,0.565969467163086,0.200155019760132,-0.0372245311737061,0.465599060058594,0.136245846748352,-0.0522747039794922,0.303382873535156,0.0347899198532104,-0.1284419298172,0.182060241699219,0,4.9591064453125e-05,0,8.21352005004883e-05,-6.79492950439453e-06,0.000141143798828125,0.476842403411865,0.00686502456665039,0.820951461791992,0.543681383132935,0.172092914581299,1.10493850708008,0.294943571090698,0.139740467071533,1.03482151031494,0.452796220779419,0.0294671058654785,1.49821376800537,0.126797676086426,0.206727504730225,1.22148323059082,0.0263919830322266,0.110484600067139,1.80345153808594,-0.169441223144531,0.370425939559937,1.10349082946777,-0.401983737945557,0.547997951507568,1.46753406524658,-0.690550327301025,0.630499124526978,1.77655410766602,-0.958969116210938,0.648314476013184,1.07548999786377,-0.595145702362061,0.518774747848511,0.784878730773926,-0.948807716369629,0.585750579833984,0.762885093688965,-0.589752197265625,0.440557837486267,0.606231689453125,-0.665275573730469,0.390104055404663,0.578547954559326,-0.40149450302124,0.272027850151062,0.413376331329346,-0.374548435211182,0.141891479492188,0.427975654602051,-0.223008155822754,0.0530561208724976,0.258133888244629,-0.0437870025634766,4.57763671875e-05,0.0875730514526367,-0.0174107551574707,4.57614660263062e-05,0.0348224639892578,-1.3076171875,0.779091358184814,1.37289381027222,-0.922341823577881,0.482083320617676,0.802279949188232,-1.28080034255981,0.718641519546509,1.01203298568726,-0.533634185791016,0.215083599090576,0.708419799804688,-0.955363273620605,0.525122165679932,2.00088787078857,-1.13083124160767,0.375576496124268,0.965540885925293,-1.62671136856079,0.590461730957031,1.1269063949585,-1.55928516387939,0.60658073425293,1.50315713882446,-1.66362905502319,0.381349086761475,1.23895978927612,-1.1532130241394,0.202535629272461,0.905195236206055,-1.5915699005127,0.240335941314697,1.60168313980103,-1.09360265731812,0.112430095672607, +2.06551027297974,-0.814552307128906,-0.773806095123291,1.51357173919678,-1.24971675872803,-0.329543113708496,1.67502117156982,-1.49701976776123,0.0391106605529785,1.40546274185181,-1.47579479217529,0.143168926239014,1.16267347335815,-0.371504783630371,-0.884945392608643,1.5100154876709,-0.251954555511475,-0.485884666442871,0.808689594268799,-0.629468441009521,-0.48081111907959,0.825149536132813,-0.0946609973907471,-0.592116355895996,1.2390308380127,-0.151287078857422,-0.35060977935791,0.590707778930664,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,-0.0742201805114746,-0.0579214096069336,0.053156852722168,-0.0929169654846191,-0.305057525634766,0.927199363708496,-0.157821178436279,-0.216730117797852,0.385636329650879,-0.0766899585723877,-0.0962276458740234,0.586169242858887,-0.110671997070313,-0.11202335357666,0.191343307495117,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0.017167329788208,-0.0140609741210938,-0.0736160278320313,-0.0240023136138916,-0.0334186553955078,0.0380430221557617,-0.0280845165252686,0.0168209075927734,0.269829750061035,-0.00370132923126221,0.0312986373901367,0.0677261352539063,0.0303030014038086,0.00900554656982422,-0.0528011322021484,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0.000813007354736328,0.00190639495849609,0.00374507904052734,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,-1.05209541320801,-0.356701374053955,0.865079879760742,-1.21054267883301,-0.174500942230225,0.937239170074463,-0.0681958198547363,4.57763671875e-05,0.136391878128052,-0.192473888397217, +4.57763671875e-05,0.38494873046875,-0.465262889862061,-0.228355884552002,0.554149627685547,-1.04614114761353,-0.0202617645263672,0.858506202697754,-0.0558652877807617,4.57763671875e-05,0.111731290817261,-0.181558132171631,4.57763671875e-05,0.363116979598999,-0.530718326568604,-0.0867462158203125,0.670158863067627,-0.814110279083252,-0.0201897621154785,0.666767597198486,-1.11972522735596,0.0399999618530273,0.834645748138428,-0.528068065643311,-0.0615401268005371,0.51902437210083,-0.739956855773926,-0.0659852027893066,0.705760955810547,-0.728589534759521,0.0179581642150879,0.656323432922363,-0.667332172393799,0.114625930786133,0.663304805755615,-0.179313182830811,-0.000979423522949219,0.356032609939575,-0.196282863616943,-0.00199437141418457,0.389111518859863,-0.207540512084961,-0.0712509155273438,0.410078048706055,-0.204543590545654,-0.0141603946685791,0.329749822616577,-0.171186923980713,-0.0153884887695313,0.250921249389648,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,1.02519989013672e-05,0.000253081321716309,7.15255737304688e-05,-0.00128006935119629,0.00890529155731201,0.00653553009033203,-0.0100135803222656,0.0222147703170776,0.0300369262695313,-0.0294094085693359,0.026430606842041,0.0585298538208008,-0.0656723976135254,0.0240135788917542,0.111780166625977,-0.0764603614807129,0.0207953453063965,0.193331241607666,-0.0384883880615234,0.00981900095939636,0.15935230255127,-0.00304269790649414,0.000259369611740112,0.126979351043701,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078, +9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,5.340576171875e-05,0.00113832950592041,0.000375747680664063,0,4.57763671875e-05,0,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00282526016235352,4.57763671875e-05,0.00565141439437866,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00124645233154297,4.57763671875e-05,0.00249266624450684,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00307703018188477,4.57763671875e-05,0.00615447759628296,-0.0253543853759766,4.57763671875e-05,0.0507098436355591,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00278711318969727,4.57763671875e-05,0.00557500123977661,-0.00940132141113281,4.57763671875e-05,0.0188028812408447,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000574111938476563,4.57763671875e-05,0.00114792585372925,-0.016045093536377,4.57763671875e-05,0.0320912599563599,-0.0222930908203125,4.57763671875e-05,0.0445866584777832,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.00107145309448242,4.57763671875e-05,0.00214308500289917,-0.00653839111328125,4.57763671875e-05,0.013077437877655,-0.00662565231323242,4.57763671875e-05,0.0132526159286499,-0.0020294189453125,4.57763671875e-05,0.00405991077423096,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.000258445739746094,0.00140213966369629,-0.000211119651794434,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0140867233276367,-0.00186610221862793,0.0659031867980957,0,4.57763671875e-05,0,-0.000481128692626953,4.57763671875e-05,0.0009613037109375,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.087557315826416,-7.20024108886719e-05,0.175322771072388,-0.0694007873535156,-0.00223994255065918,0.168082475662231,-0.0460281372070313,0.00024867057800293,0.0952138900756836,-0.0303611755371094,4.56571578979492e-05,0.0607223510742188,-0.0187702178955078,4.57763671875e-05,0.0375411510467529,-2.47955322265625e-05,4.57763671875e-05,4.88758087158203e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.0018305778503418,4.57763671875e-05,0.00366169214248657,-0.0291404724121094,4.57763671875e-05,0.0582817792892456,-0.0681333541870117,4.57763671875e-05,0.13626754283905,-0.0813484191894531,4.57763671875e-05,0.162697076797485,-0.0337252616882324, +4.57763671875e-05,0.0674507617950439,-0.0342960357666016,4.57763671875e-05,0.06859290599823,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05, +-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06, +0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,-0.000168323516845703,4.57763671875e-05,0.000338315963745117,-4.29153442382813e-06,4.57763671875e-05,1.02519989013672e-05,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05, +1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05, +2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06, +0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0.0603125095367432,-0.00146269798278809,0.0291624069213867,0.0653135776519775,0.00411868095397949,0.0319242477416992,0.0717939138412476,0.0122079849243164,0.0444698333740234,0.0785301327705383,0.0220575332641602,0.0776348114013672,0.0842498540878296,0.0310795307159424,0.109946250915527,0.0907691717147827,0.0417277812957764,0.147930145263672,0.060210645198822,-0.0029597282409668,0.0315608978271484,0.0625045001506805,-0.00297665596008301,0.0376968383789063,0.068547785282135,0.000679254531860352,0.0474643707275391,0.0730924904346466,0.00469398498535156,0.0546836853027344,0.08048015832901,0.0120267868041992,0.0634231567382813,0.0879670977592468,0.0201320648193359,0.0731544494628906,0.0915313959121704,0.026479959487915,0.0968685150146484,0.0936827063560486,0.0338990688323975,0.130402565002441,0.0966775417327881,0.0462436676025391,0.168240547180176,0.0730260610580444,0.00786328315734863,0.0457592010498047,0.0788542032241821,0.0144553184509277,0.0557765960693359,0.08309006690979,0.0210418701171875,0.0773048400878906,0.0876574516296387,0.029716968536377,0.111587524414063,0.0672163367271423,0.00198149681091309,0.0408649444580078,0.0231020543633349,-0.025029182434082,0.0179281234741211,0.0115948431157449,0.00667524337768555,0.0213642120361328,0.0328217744827271,-0.0296263694763184,0.0267877578735352,0.075814962387085,0.0644741058349609,0.428897857666016,0.04522705078125,0.13163948059082,0.607892036437988,0.0498461723327637,-0.0162973403930664,0.113898277282715,0.0740776062011719,0.0180950164794922,0.262751579284668,0.0452369451522827,-0.0262598991394043,0.0708656311035156,0.0439265966415405,-0.0238165855407715,0.0464677810668945,0.0394489765167236,-0.026270866394043,0.0321493148803711,-0.0711033344268799, +0.144748687744141,0.770784378051758,-0.0892558097839355,0.143639087677002,0.862894058227539,-0.0171005725860596,0.0806674957275391,0.775216102600098,0.0612697601318359,0.0491290092468262,0.586565971374512,0.0922152996063232,0.0407323837280273,0.39898681640625,0.0423500537872314,0.0508937835693359,0.24345874786377,0.0235553979873657,0.0547356605529785,0.185766220092773,0.0212404727935791,0.0364193916320801,0.111922264099121,0.0236454010009766,0.0193171501159668,0.0499238967895508,0.0201236009597778,0.0149369239807129,0.0339565277099609,0.0159532725811005,0.0109105110168457,0.0280733108520508,0.076700560770405,0.00159263610839844,0.417016983032227,0.0619915872812271,0.00301790237426758,0.403645515441895,0.12699431180954,0.00738239288330078,0.471827507019043,0.267653822898865,0.0181756019592285,0.585397720336914,0.390979290008545,0.0401101112365723,0.755876541137695,0.52349317073822,0.0929255485534668,1.0847635269165,0.594368457794189,0.12542200088501,1.34188461303711,0.47240686416626,0.130880355834961,1.47902202606201,0.41059947013855,0.143818855285645,1.63209056854248,0.37555980682373,0.123701572418213,1.7311840057373,0.397211790084839,0.136543750762939,1.77730464935303,0.395420074462891,0.14130973815918,1.75236320495605,0.406593799591064,0.139073848724365,1.69548320770264,0.487781286239624,0.123972415924072,1.49551296234131,0.612424612045288,0.121927261352539,1.32989501953125,0.52317214012146,0.0970120429992676,1.04672718048096,0.419384777545929,0.0452890396118164,0.741824150085449,0.283147156238556,0.0234012603759766,0.59251594543457,0.137803763151169,0.00411033630371094,0.471415519714355,0.0699323564767838,-0.000354766845703125,0.403323173522949,0.0885624364236719,-0.00164079666137695,0.419951438903809,0.0145060876602656,-0.00393390655517578,0.0331525802612305,0.0153075456619263,-0.00652933120727539,0.034296989440918,0.0357978343963623,-0.00702762603759766,0.0556344985961914,0.0955557227134705,-0.00357818603515625,0.108292579650879,0.127790212631226,0.00384759902954102,0.177730560302734,0.20594322681427,0.0477972030639648, +0.370638847351074,0.338663339614868,0.103124141693115,0.619852066040039,0.365204572677612,0.1522216796875,0.793634414672852,0.296107769012451,0.157322406768799,0.840658187866211,0.205310583114624,0.137688159942627,0.911896705627441,0.184103488922119,0.112148284912109,1.04478454589844,0.218239068984985,0.0933880805969238,0.993690490722656,0.266822338104248,0.0989556312561035,0.824082374572754,0.388710021972656,0.146683216094971,0.85521125793457,0.313969612121582,0.0923476219177246,0.59220027923584,0.194828510284424,0.0508308410644531,0.384221076965332,0.14317786693573,0.0197248458862305,0.192501068115234,0.119518876075745,0.0148649215698242,0.119693756103516,0.0448671579360962,0.00540590286254883,0.0548477172851563,0.0136529505252838,0.00266027450561523,0.0285615921020508,0.020006764701975,0.0016779899597168,0.042017936706543,2.25360890908632e-05,2.33650207519531e-05,5.7220458984375e-06,3.98159027099609e-05,2.288818359375e-05,7.62939453125e-06,-0.227958202362061,-0.0549411773681641,0.44747257232666,-0.344064712524414,0.00674247741699219,0.675629138946533,-0.047072172164917,-0.0733017921447754,0.0487165451049805,-0.0799179077148438,-0.262475490570068,0.0380277633666992,-0.00673651695251465,0.0016019344329834,0.0159235000610352,0.00137782096862793,0.00176835060119629,-4.29153442382813e-05,0.000422179698944092,0.000573635101318359,-1.23977661132813e-05,-0.461037158966064,0.0269193649291992,0.836468696594238,-0.535700559616089,0.0162277221679688,0.935246467590332,-0.445451974868774,0.00911521911621094,0.780385494232178,-0.271408081054688,0.00930213928222656,0.499908924102783,-0.113525629043579,-0.000188827514648438,0.227436065673828,-0.0356531143188477,4.57763671875e-05,0.0713081359863281,-0.00805878639221191,4.57763671875e-05,0.016118049621582,-0.000261187553405762,0.000655174255371094,0.00189590454101563,-5.48362731933594e-06,5.62667846679688e-05,4.00543212890625e-05,0,4.57763671875e-05,0,0,4.57763671875e-05,0,1.37974147837371e-29,4.57763671875e-05,0,1.53641994185809e-29,4.57763671875e-05,0,0,4.57763671875e-05,0,-0.091090202331543, +4.57763671875e-05,0.182181835174561,-0.110629081726074,4.57763671875e-05,0.221258640289307,-0.0310518741607666,4.57763671875e-05,0.0621042251586914,-0.0666606426239014,4.57763671875e-05,0.13332200050354,-0.00697708129882813,4.57763671875e-05,0.0139544010162354,-5.5849552154541e-05,4.57763671875e-05,0.000112056732177734,0,4.57763671875e-05,0,-0.109734535217285,4.57763671875e-05,0.219469785690308,-0.0837774276733398,4.57763671875e-05,0.167555809020996,-0.0485594272613525,4.57763671875e-05,0.0971202850341797,-0.00761294364929199,4.57763671875e-05,0.0152273178100586,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,1.45414240907454e-29,4.57763671875e-05,1.43051147460938e-06,1.73472347597681e-18,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,1.30104260698261e-18,4.57763671875e-05,2.20537185668945e-06,1.68087296316736e-29,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06, +0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,1.28982296899908e-29,4.57763671875e-05,1.66893005371094e-06,1.69348870708276e-29,4.57763671875e-05,0,0,4.57763671875e-05,0,-4.64916229248047e-06,4.57763671875e-05,1.00135803222656e-05,-0.00875377655029297,4.57763671875e-05,0.0175085067749023,-0.041359543800354,4.57763671875e-05,0.0827198028564453,-0.128973484039307,4.57763671875e-05,0.257946968078613,-0.25335168838501,4.57763671875e-05,0.506703853607178,-0.367084980010986,4.57763671875e-05,0.734169960021973,-0.466518878936768,0.00283336639404297,0.92064905166626,-0.532763481140137,0.0118589401245117,1.01298666000366,-0.495234489440918,0.016932487487793,0.915375709533691,-0.369162082672119,0.00661468505859375,0.709118366241455,-0.192490339279175,4.57763671875e-05,0.384982585906982,-0.0676751136779785,0.000729560852050781,0.136476516723633,-0.0130739212036133,4.57763671875e-05,0.0261497497558594,-0.00206708908081055,4.57763671875e-05,0.00413608551025391,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,1.40932586880537e-29,4.57763671875e-05,1.43051147460938e-06,0,-0.000311195850372314,0,0,-0.000519618391990662,0,0.000934302806854248,-0.000879287719726563,0.000193595886230469,0.000162243843078613,-0.000111818313598633,3.33786010742188e-05,0.0899028182029724,-0.00349187850952148,0.346687316894531,0.14049831032753,-0.0209107398986816,0.35748291015625,-0.121630668640137,4.57763671875e-05,0.00466823577880859,-0.118788242340088,4.57763671875e-05,-0.0112161636352539,-0.0770387649536133, +4.57763671875e-05,0.0256862640380859,-0.0812835693359375,4.57763671875e-05,0.0447206497192383,0.0111265182495117,4.9591064453125e-05,0.100346565246582,-0.0052560567855835,4.9591064453125e-05,0.118742942810059,0.0543031692504883,5.86509704589844e-05,0.152242660522461,0.0381321907043457,6.00814819335938e-05,0.172468185424805,0.0875810384750366,-0.00198078155517578,0.206466674804688,0.0597066879272461,-0.000670433044433594,0.222519874572754,0.11832720041275,-0.0106453895568848,0.280047416687012,0.0721175074577332,-0.00249147415161133,0.282980918884277,-0.0436093807220459,4.91142272949219e-05,0.0803594589233398,-0.0305626392364502,4.9591064453125e-05,0.0598583221435547,-0.124475002288818,4.57763671875e-05,-0.0178194046020508,-0.123032093048096,4.57763671875e-05,-0.000267982482910156,-0.129390239715576,4.57763671875e-05,-0.0221796035766602,-0.124817609786987,4.57763671875e-05,-0.00444126129150391,-0.131563663482666,4.57763671875e-05,-0.014369010925293,-0.124322414398193,4.57763671875e-05,-0.000194549560546875,-0.129973173141479,4.57763671875e-05,-0.00170612335205078,-0.122556209564209,4.57763671875e-05,0.00566291809082031,-0.0887587070465088,4.57763671875e-05,0.0467863082885742,-0.112320184707642,4.57763671875e-05,0.0274744033813477,-0.0504524707794189,4.9591064453125e-05,0.0806388854980469,-0.0750901699066162,4.57763671875e-05,0.0616674423217773,-0.0249207019805908,4.9591064453125e-05,0.100232124328613,-0.0120797157287598,4.9591064453125e-05,0.119688987731934,0.0256894826889038,4.9591064453125e-05,0.144893646240234,0.0324980020523071,4.9591064453125e-05,0.173041343688965,0.0636055469512939,0.00046539306640625,0.196734428405762,0.0531833171844482,-0.000680923461914063,0.223200798034668,0.0863432288169861,0.00305414199829102,0.254944801330566,0.0649380087852478,-0.00262594223022461,0.282669067382813,0.106033444404602,0.0101280212402344,0.327436447143555,0.0809991955757141,-0.00349760055541992,0.348152160644531,0.123056352138519,-0.0113115310668945,0.346755027770996,0.103726863861084,-0.00615978240966797,0.277449607849121, +0.0814436674118042,-0.00138664245605469,0.211535453796387,0.0513720512390137,6.00814819335938e-05,0.159921646118164,0.00556313991546631,4.9591064453125e-05,0.107809066772461,-0.0346801280975342,4.9591064453125e-05,0.0682640075683594,-0.0772368907928467,4.57763671875e-05,0.0340194702148438,-0.119433879852295,4.57763671875e-05,-0.00314712524414063,-0.122930288314819,4.57763671875e-05,-0.00858688354492188,-0.12684440612793,4.57763671875e-05,-0.0126476287841797,-0.127958536148071,4.57763671875e-05,-0.00665569305419922,-0.126146078109741,4.57763671875e-05,0.00235557556152344,-0.0969128608703613,4.57763671875e-05,0.0371112823486328,-0.0589587688446045,4.9591064453125e-05,0.0681209564208984,-0.0122796297073364,4.9591064453125e-05,0.107086181640625,0.0388325452804565,4.9591064453125e-05,0.157730102539063,0.069665789604187,0.000472545623779297,0.209334373474121,0.0867360830307007,0.00162649154663086,0.26375675201416,0.106139153242111,0.00605583190917969,0.332069396972656,0.103304356336594,-0.00604963302612305,0.346283912658691,0.085151195526123,-0.00377273559570313,0.280163764953613,0.0690734386444092,-0.000956058502197266,0.21795654296875,0.0432482957839966,6.00814819335938e-05,0.167815208435059,-0.0010678768157959,4.9591064453125e-05,0.114607810974121,-0.0399441719055176,4.91142272949219e-05,0.0756397247314453,-0.0796360969543457,4.57763671875e-05,0.0407590866088867,-0.120520353317261,4.57763671875e-05,0.00174045562744141,-0.122784614562988,4.57763671875e-05,-0.00324440002441406,-0.125582218170166,4.57763671875e-05,-0.00730800628662109,-0.125608444213867,4.57763671875e-05,-0.00245857238769531,-0.123834371566772,4.57763671875e-05,0.00451278686523438,-0.0880992412567139,4.57763671875e-05,0.0432329177856445,-0.0495166778564453,4.9591064453125e-05,0.0754566192626953,-0.00827908515930176,4.9591064453125e-05,0.11475944519043,0.0386302471160889,4.9591064453125e-05,0.167208671569824,0.0633597373962402,-6.62803649902344e-05,0.217529296875,0.0770408511161804,-0.000621318817138672,0.275382041931152,0.0948715209960938,0.000863075256347656, +0.342033386230469,0.0855074822902679,-0.0292229652404785,0.229031562805176,0.0570191144943237,-0.0191826820373535,0.162273406982422,0.0287865400314331,-0.00409078598022461,0.115525245666504,0.00710487365722656,-8.0108642578125e-05,0.086207389831543,-0.0139720439910889,4.9591064453125e-05,0.0527133941650391,-0.0282785892486572,4.9591064453125e-05,0.0294885635375977,-0.0495901107788086,4.57763671875e-05,0.003265380859375,-0.0770242214202881,4.57763671875e-05,-0.0308389663696289,-0.0875155925750732,4.57763671875e-05,-0.0449533462524414,-0.0913500785827637,4.57763671875e-05,-0.0456762313842773,-0.0938806533813477,4.57763671875e-05,-0.0396337509155273,-0.0962648391723633,4.57763671875e-05,-0.0255403518676758,-0.0919787883758545,4.57763671875e-05,-0.00289630889892578,-0.0721676349639893,4.57763671875e-05,0.020721435546875,0.0413184463977814,0.00617790222167969,0.196380615234375,0.0271099209785461,0.00163507461547852,0.15288257598877,0.0136791467666626,0.000175952911376953,0.118377685546875,-0.00927853584289551,4.9591064453125e-05,0.0846500396728516,-0.0386874675750732,4.9591064453125e-05,0.0512475967407227,0.114856392145157,-0.0240645408630371,0.295466423034668,0.0927788615226746,-0.0126490592956543,0.222781181335449,0.0659645795822144,-0.0023808479309082,0.161237716674805,0.0396106243133545,4.9591064453125e-05,0.117231369018555,0.0061182975769043,4.9591064453125e-05,0.0769128799438477,-0.0258414745330811,4.9591064453125e-05,0.0449686050415039,-0.0597963333129883,4.57763671875e-05,0.0174455642700195,-0.0934689044952393,4.57763671875e-05,-0.014683723449707,-0.100438356399536,4.57763671875e-05,-0.0234460830688477,-0.106300830841064,4.57763671875e-05,-0.0291614532470703,-0.110231399536133,4.57763671875e-05,-0.024754524230957,-0.110574007034302,4.57763671875e-05,-0.0111017227172852,-0.102506875991821,4.57763671875e-05,0.0110616683959961,-0.0752308368682861,4.57763671875e-05,0.0422754287719727,-0.0335657596588135,4.91142272949219e-05,0.0764007568359375,0.00526654720306396,4.9591064453125e-05,0.113943099975586,0.0367051362991333, +0.000369548797607422,0.156717300415039,0.057894229888916,0.00276374816894531,0.205227851867676,0.0757105946540833,0.00967979431152344,0.265080451965332,0.0548308491706848,-0.0339045524597168,0.113742828369141,0.0374653935432434,-0.0197005271911621,0.0963468551635742,0.0135055780410767,-0.00595712661743164,0.0749654769897461,-0.00350439548492432,-0.000132560729980469,0.052617073059082,-0.0148172378540039,4.9591064453125e-05,0.0327854156494141,-0.0232219696044922,4.57763671875e-05,0.0175638198852539,-0.041820764541626,4.57763671875e-05,-0.0038604736328125,-0.0572435855865479,4.57763671875e-05,-0.0277767181396484,-0.0712871551513672,4.57763671875e-05,-0.0124416351318359,-0.0760440826416016,4.57763671875e-05,-0.0312719345092773,-0.0802950859069824,4.57763671875e-05,-0.0452289581298828,-0.0808768272399902,4.57763671875e-05,-0.0502309799194336,-0.0691497325897217,4.57763671875e-05,-0.0418672561645508,0.0157101154327393,0.000753402709960938,0.119224548339844,0.00628578662872314,7.15255737304688e-05,0.0946502685546875,-0.0018002986907959,4.9591064453125e-05,0.0759048461914063,-0.0141143798828125,4.9591064453125e-05,0.0542755126953125,-0.0338106155395508,4.57763671875e-05,0.0305604934692383,-0.0565090179443359,4.57763671875e-05,0.00664043426513672,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,0.00421679019927979,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-1.43051147460938e-06,5.340576171875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05, +0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.04308128356934e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,6.91413879394531e-06,4.26769256591797e-05,0,0.000178694725036621,-0.000128030776977539,3.814697265625e-05,0.000106394290924072,-5.62667846679688e-05,2.19345092773438e-05,0.000885248184204102,-0.000830650329589844,0.000185012817382813,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,-0.012364387512207,4.57763671875e-05,0.0064239501953125,-0.0200600624084473,4.57763671875e-05,-0.00381088256835938,-0.0256261825561523,4.57763671875e-05,-0.0144882202148438,-0.0378260612487793,4.57763671875e-05,-0.0245857238769531,-0.0386185646057129,4.57763671875e-05,-0.024134635925293,-0.046332836151123,4.57763671875e-05,-0.0263347625732422,-0.0454823970794678,4.57763671875e-05,-0.0201778411865234,-0.0395617485046387,4.57763671875e-05,-0.00847148895263672,-0.0305740833282471,4.57763671875e-05,0.00187873840332031,-0.0187242031097412,4.57763671875e-05,0.0132761001586914,-0.00800907611846924, +4.9591064453125e-05,0.0254793167114258,-0.000470280647277832,4.9591064453125e-05,0.0361595153808594,0.00523191690444946,4.9591064453125e-05,0.0464000701904297,0.00944387912750244,4.9591064453125e-05,0.0573959350585938,0.0253473818302155,-0.0268192291259766,0.00975322723388672,0.0364633798599243,-0.0325846672058105,0.0351190567016602,0.0365979969501495,-0.0283854007720947,0.0491018295288086,0.0237701237201691,-0.024594783782959,0.00744724273681641,0.0243672430515289,-0.0262298583984375,0.0104866027832031,0.0306651294231415,-0.034416675567627,0.0201835632324219,0.0209643244743347,-0.0227327346801758,0.00934314727783203,0.024369478225708,-0.0284430980682373,0.0177984237670898,0.0144584774971008,-0.0153779983520508,0.00549983978271484,0.0144740045070648,-0.0166592597961426,0.00910186767578125,0.0111609697341919,-0.0114388465881348,0.00324058532714844,0.00731664896011353,-0.00753402709960938,0.00224685668945313,0.00642353296279907,-0.00633740425109863,0.00133323669433594,0.0037921667098999,-0.00372099876403809,0.000787734985351563,0.0040585994720459,-0.00398588180541992,0.000843048095703125,0.00163662433624268,-0.00157785415649414,0.000340461730957031,0.00184917449951172,-0.00178909301757813,0.000384330749511719,0.000434279441833496,-0.000382184982299805,9.05990600585938e-05,0.00183796882629395,-0.00177788734436035,0.000382423400878906,0.000229358673095703,-0.00017857551574707,4.86373901367188e-05,0.00770890712738037,-0.00761532783508301,0.00159931182861328,0.00657820701599121,-0.00466465950012207,0.0285434722900391,0.0233488082885742,-0.0164003372192383,0.0429563522338867,0.0175461769104004,-0.0175278186798096,0.00395011901855469,0.004020094871521,-0.00394773483276367,0.000834465026855469,0.00200378894805908,-0.00194287300109863,0.000416755676269531,0.0264965891838074,-0.0284459590911865,0.0115108489990234,0.0255756378173828,-0.0281357765197754,0.0129375457763672,0.0217279195785522,-0.024205207824707,0.0116729736328125,0.0136995911598206,-0.0149056911468506,0.00606250762939453,0.00936782360076904,-0.00965285301208496, +0.00286006927490234,0.00528275966644287,-0.0052030086517334,0.00109672546386719,0.00315093994140625,-0.00308346748352051,0.000654220581054688,0.00137901306152344,-0.00132155418395996,0.000287055969238281,0.00117135047912598,-0.00111508369445801,0.000244140625,0.00328576564788818,-0.00321745872497559,0.000682830810546875,0.00733834505081177,-0.00724697113037109,0.00152301788330078,0.01719069480896,-0.0172219276428223,0.00398826599121094,0.024316132068634,-0.0254127979278564,0.00828456878662109,0.0249825716018677,-0.0263214111328125,0.00915050506591797,0.0167893171310425,-0.0168662071228027,0.00400733947753906,0.00692206621170044,-0.00683307647705078,0.00143623352050781,0.00269722938537598,-0.00263237953186035,0.000560760498046875,0.000690817832946777,-0.000637292861938477,0.000144004821777344,0.000845909118652344,-0.000791549682617188,0.000176429748535156,0.00230169296264648,-0.00223898887634277,0.000478744506835938,0.00462597608566284,-0.00454998016357422,0.000960350036621094,0.00835525989532471,-0.0086066722869873,0.00255680084228516,0.0140905380249023,-0.0155677795410156,0.00688838958740234,0.0220258235931396,-0.0248768329620361,0.0129404067993164,0.027087390422821,-0.0301637649536133,0.0151920318603516,0.0279492437839508,-0.030134916305542,0.0130252838134766,0.0481632053852081,-0.0340099334716797,0.0757474899291992,0.00575399398803711,-0.00584125518798828,0.00159549713134766,0.00280129909515381,-0.00273585319519043,0.000581741333007813,0.00168120861053467,-0.00162196159362793,0.000349998474121094,0.00298506021499634,-0.00291848182678223,0.000619888305664063,0.000514626502990723,-0.000462055206298828,0.000107765197753906,0.00102889537811279,-0.00097346305847168,0.000214576721191406,0.000152826309204102,-0.00010228157043457,3.24249267578125e-05,6.19888305664063e-06,4.33921813964844e-05,0,0.00148022174835205,-0.00142216682434082,0.000308036804199219,0.000967621803283691,-0.000912666320800781,0.000201225280761719,0.000488400459289551,-0.000436067581176758,0.000102043151855469,0.000143289566040039,-9.29832458496094e-05, +3.0517578125e-05,4.76837158203125e-06,4.48226928710938e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000106334686279297,-5.60283660888672e-05,2.288818359375e-05,0,4.9591064453125e-05,0,-0.000744342803955078,-0.000132322311401367,0.024073600769043,-0.0045851469039917,4.9591064453125e-05,0.0178050994873047,-0.00724434852600098,4.9591064453125e-05,0.0130605697631836,-0.00467777252197266,4.57763671875e-05,0.00712299346923828,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.000118494033813477,-6.81877136230469e-05,2.57492065429688e-05,0.00052344799041748,-0.000470876693725586,0.000109672546386719,0.00105667114257813,-0.00100111961364746,0.000220298767089844,0.00165319442749023,-0.00159430503845215,0.000344276428222656,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,1.25765800476074e-05,3.71932983398438e-05,2.86102294921875e-06,2.26497650146484e-06,4.74452972412109e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.9591064453125e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06, +0,4.57763671875e-05,0,0,4.57763671875e-05,1.31130218505859e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-6.67572021484375e-06,7.36713409423828e-05,-7.62939453125e-06,0,4.57763671875e-05,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,8.13007354736328e-05,-4.76837158203125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0, +4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06, +0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.19209289550781e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.31130218505859e-06,0,4.57763671875e-05,-1.07288360595703e-06,0,4.57763671875e-05,-1.36159360408783e-06,0,4.57763671875e-05,-1.84774398803711e-06,0,4.57763671875e-05,-1.71363353729248e-06,0,4.57763671875e-05,-1.57207250595093e-06,0,4.57763671875e-05,-1.54972076416016e-06,0,4.57763671875e-05,-1.66893005371094e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.07288360595703e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.9073486328125e-06, +0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.02655792236328e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.96695327758789e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,-1.43051147460938e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,-2.14576721191406e-06,0,4.57763671875e-05,-2.08616256713867e-06,0,4.57763671875e-05,-1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.98023223876953e-06,0,4.57763671875e-05, +3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.3155083656311e-06,0,4.57763671875e-05,3.39746475219727e-06,0,4.57763671875e-05,3.45706939697266e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.57627868652344e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,3.814697265625e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.63912773132324e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.37090682983398e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.54972076416016e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06, +0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.05636024475098e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.50339508056641e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.26497650146484e-06,0,4.57763671875e-05,2.41398811340332e-06,0,4.57763671875e-05,2.50712037086487e-06,0,4.57763671875e-05,2.62260437011719e-06, +0,4.57763671875e-05,2.68220901489258e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,2.86102294921875e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.62260437011719e-06,0,4.57763671875e-05,2.74181365966797e-06,0,4.57763671875e-05,2.80141830444336e-06,0,4.57763671875e-05,2.90572643280029e-06,0,4.57763671875e-05,3.01003456115723e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.09944152832031e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.21865081787109e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,3.33786010742188e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.72853469848633e-06,0,4.57763671875e-05,1.83284282684326e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,2.02655792236328e-06,0, +4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.14576721191406e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0,4.57763671875e-05,2.38418579101563e-06,0.0115255117416382,-0.0114102363586426,0.00239086151123047,0.0087246298789978,-0.00862526893615723,0.00181007385253906,0.00613337755203247,-0.00604891777038574,0.00127315521240234,0.00483870506286621,-0.0047614574432373,0.00100421905517578,0.00419068336486816,-0.00411725044250488,0.0008697509765625,0.00353085994720459,-0.00346112251281738,0.000733375549316406,0.0138244032859802,-0.0137186050415039,0.00292110443115234,0.0168894529342651,-0.0168626308441162,0.00378513336181641,0.0186611413955688,-0.0187015533447266,0.00433444976806641,0.0195284485816956,-0.0194871425628662,0.00441932678222656,0.0178924798965454,-0.0177679061889648,0.00378513336181641,0.0132693648338318,-0.0131442546844482,0.00275325775146484,0.0083199143409729,-0.00822281837463379,0.00172615051269531,0.00550222396850586,-0.00542140007019043,0.00114250183105469,0.00373363494873047,-0.0036628246307373,0.000775337219238281,0.0122660398483276,-0.0121464729309082,0.00254440307617188,0.00933539867401123,-0.00923252105712891,0.00193691253662109,0.00691050291061401,-0.00682163238525391,0.001434326171875,0.0051196813583374,-0.00504088401794434,0.00106239318847656,0.0147477388381958,-0.0146265029907227,0.00308895111083984,0.0174013078212738,-0.0195126533508301,0.0108499526977539,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0.000140070915222168,-8.96453857421875e-05,2.95639038085938e-05,0.00319629907608032,-0.00321626663208008,0.000870704650878906,0.00994426012039185,-0.0109128952026367,0.00479984283447266,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.9591064453125e-05,0,0.000127255916595459,0.000134944915771484,0.000262260437011719,0.00147277116775513,0.00103616714477539,0.00302886962890625,0.00515854358673096,0.00320053100585938,0.00994682312011719,0.0559877455234528,-0.000159740447998047,0.344879150390625,0.0382101535797119,-0.000724315643310547,0.283628463745117,0.0256941318511963,-0.000164985656738281,0.226056098937988,0.00368046760559082,6.00814819335938e-05,0.17790412902832,-0.0408422946929932,4.91142272949219e-05,0.122526168823242,-0.0805466175079346,4.57763671875e-05,0.0771522521972656,-0.119409084320068,4.57763671875e-05,0.0369710922241211,-0.147720098495483,4.57763671875e-05,-0.00371265411376953,-0.156678438186646,4.57763671875e-05,-0.019129753112793,-0.158758640289307,4.57763671875e-05,-0.0274467468261719,-0.158167600631714,4.57763671875e-05,-0.0217342376708984,-0.155740976333618,4.57763671875e-05,-0.00566482543945313,-0.12076473236084,4.57763671875e-05,0.0392923355102539,-0.0809054374694824,4.57763671875e-05,0.0833396911621094,-0.0413975715637207,4.91142272949219e-05,0.125871658325195,0.00417304039001465,4.9591064453125e-05,0.178096771240234,0.031165599822998,-0.000363826751708984,0.226388931274414,0.0472382307052612,-0.0017085075378418,0.283908843994141,0.0632076859474182,-0.0021815299987793,0.347779273986816,0.00532501935958862,-0.00298786163330078,0.0153007507324219,0.000998854637145996,-0.00139427185058594,0.00462532043457031,2.88486480712891e-05,-0.000117778778076172,0.000335693359375,1.19209289550781e-07,4.9591064453125e-05,0,8.34465026855469e-07,4.57763671875e-05,0,4.76837158203125e-07,4.57763671875e-05,0,0,4.57763671875e-05,0,1.43051147460938e-06,4.57763671875e-05,0,2.38418579101563e-07,4.57763671875e-05,0,7.15255737304688e-07,4.57763671875e-05,0,-4.76837158203125e-07,4.57763671875e-05,0,9.5367431640625e-07,4.57763671875e-05,0,-4.76837158203125e-07,4.57763671875e-05,0,-7.15255737304688e-07,4.57763671875e-05,0,-3.57627868652344e-07,4.9591064453125e-05,0,0,4.9591064453125e-05,0,0.00013267993927002,0.000110626220703125, +0.000315666198730469,0.00176030397415161,-0.000157833099365234,0.00529670715332031,0.00786587595939636,0.000425815582275391,0.0186290740966797,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.19209289550781e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,2.20537185668945e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05, +0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.01327896118164e-06,0,4.57763671875e-05,1.13248825073242e-06,0,4.57763671875e-05,1.2516975402832e-06,0,4.57763671875e-05,1.34110450744629e-06,0,4.57763671875e-05,1.44541263580322e-06,0,4.57763671875e-05,1.57952308654785e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.78813934326172e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.9073486328125e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,1.66893005371094e-06,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,0,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,0,4.57763671875e-05,1.43051147460938e-06,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06, +3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 + } + Normals: *24099 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, +0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, +-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, +-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, +0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, +0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, +-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, +3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, +-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, +-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, +-0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, +-0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, +0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, +-0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, +-0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, +0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, +0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, +0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, +0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, +-0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, +0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, +0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, +0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, +0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, +0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, +0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, +-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, +1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, +0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, +-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, +-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, +-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, +-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, +-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, +0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, +-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, +-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, +-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, +0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, +1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, +0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, +0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, +-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, +0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, +1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, +0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, +1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, +-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, +1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, +0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, +-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, +0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, +0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, +0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, +0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, +0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008, +1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725, +0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397, +-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403, +-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725, +0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397, +-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513, +0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882, +0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183, +-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171, +0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949, +1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573, +0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265, +-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102, +0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853, +0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868, +-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439, +0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784, +0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456, +0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415, +0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229, +1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123, +1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998, +1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356, +0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413, +-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632, +-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368, +-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621, +0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802, +-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883, +-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984, +-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193, +-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867, +-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607, +-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346, +-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263, +-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784, +0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208, +-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694, +0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266, +-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709, +-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695, +-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901, +-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686, +0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874, +-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368, +-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843, +-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535, +-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957, +0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487, +0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031, +-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867, +-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023, +-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025, +-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785, +0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809, +-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731, +-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885, +-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671, +-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257, +0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835, +-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219, +-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225, +-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308, +-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291, +-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355, +-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209, +-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725, +-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392, +1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102, +-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208, +-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207, +-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127, +-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673, +-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602, +0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554, +-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722, +-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228, +-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647, +0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336, +1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798, +0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394, +-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393, +0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574, +1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375, +-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363, +-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974, +-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862, +-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116, +0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151, +-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372923437878612,-1.05054581165314,-0.228235363960266,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.37292345324405,-1.28220981359482,-0.736904457211494,-0.399802154767764,-1.28233715891838,-0.941098548471928,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.346527387646793,-0.554163672029972, +-0.0417273640632629,-0.322036086044378,-0.380343452095985,-1.89667862653732,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.370050924001761,-0.229002796113491,0.0665469765663147,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.405539276024548,-0.257953205145895,0.0491384863853455,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.364103219533249,-0.526631146669388,0.0684242248535156,-0.396027461885424,0.466752298176289,-1.73845255374908,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864, +0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675, +1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652, +-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.889722406864166,0.39958019554615, +-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,-0.0247747302055359,-0.157172001898289,-0.677589893341064,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.0335051417350769, +-0.186165951192379,-1.92397409677505,-0.587101638317108,0.0469454741105437,-1.46615362167358,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648, +-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759, +-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994, +-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133,-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203, +-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342, +-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342, +0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362,-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777, +-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752, +-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,0.538497515022755,-0.311309695243835,-0.990312814712524,-0.162997160106897,-1.70171070098877,0.190538376569748,0.343593537807465,-0.575801014900208,-1.13952320814133,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568, +-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806, +-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325, +-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918, +0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643, +0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906, +1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.75367659330368,-0.456113398075104, +-0.394162625074387,-0.679157763719559,-0.67513132840395,-0.508659213781357,-0.497610181570053,-0.643185190856457,-0.346276879310608,-0.307712733745575,-0.354712724685669,-0.232395797967911,-0.197120785713196,-0.260692119598389,-0.239619076251984,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.649977907538414,-0.804319560527802,-0.408202171325684,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,-0.0604897141456604,-0.699446499347687,-0.12115615606308,0.0231236815452576,-0.3354671895504,0.0558144450187683,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.14202344417572,-0.592536583542824,0.227594003081322,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.133296251296997,-1.02692711353302,0.0849164724349976,-0.274594336748123,-1.13683503866196,0.0322275161743164,-0.351010262966156,-1.35519009828568,-0.115971088409424,-0.498119845986366,-1.36221963167191,-0.158832222223282,-0.689141154289246,-1.14236959815025,-0.102435827255249,-0.690232373774052,-1.17203766107559,-0.0805289149284363,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598, +-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,-0.182141959667206,-0.424519792199135,0.999648004770279,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.269564688205719,-0.661157563328743,0.843470424413681,-0.146608233451843,-0.578842431306839,0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,0.00121992826461792,0.156006053090096,0.22194858873263,-0.287382066249847,-0.415506526827812,0.151525691151619,-0.21727591753006,-0.4798882342875,0.356399778276682,-0.0689629316329956,-0.305224128067493,-0.00383862853050232,0.0126810073852539,-0.38159042596817,-0.104233548045158,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.36168110370636,-0.724888168275356,0.219740077853203,-0.228439152240753,-0.573133323341608,0.16615316644311,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.00337111949920654,-0.516043871641159,0.0970242917537689,-0.00847458839416504,-0.0894519127905369,-0.00173732452094555,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116, +-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.384016275405884,-0.784693814814091,-0.161492064595222,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.705943197011948,-0.662738889455795,0.889646045863628,-0.705300509929657,-1.04810547828674,0.662939045578241,-0.779546603560448,-1.1960551738739,0.419666131958365,-0.859493598341942,-1.16843083500862,0.19767215102911,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.161424841731787,-0.90669558942318,0.898082092404366,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.561751067638397,-0.94419826567173,0.408212659880519,-0.512732535600662,-1.32498675584793,0.12114804238081,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549,0.0594245493412018, +-0.760575354099274,-0.889390036463737,0.150301486253738,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.341021060943604,-0.775297522544861,0.712808422744274,-0.425624012947083,-0.714815393090248,0.597621439024806,-0.141003370285034,-0.905060634016991,1.08819955587387,-0.0926968455314636,-1.33269783854485,0.767117753624916,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.452599197626114,-0.684935435652733,0.0738549530506134,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.577799439430237,-0.538872286677361,0.9584079682827,-0.537354588508606,-0.485081315040588,0.803047388792038,-0.227647200226784,-0.710372895002365,1.00606915354729,-0.72404520213604,-0.820863470435143,0.258590437471867,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,-0.861969098448753,0.0746596208773553,1.14128789305687,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,0.0356032252311707,0.000169210135936737,1.56496787071228,0.548364117741585,-0.0216731205582619,1.5855952501297,0.639655411243439,0.147928826510906,1.3740311563015,0.110817134380341,-0.476778656244278,0.486403912305832,-0.135877847671509,-0.763485103845596,0.553705509752035,0.0136455893516541,-0.800107017159462,1.08743214607239,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.356962114572525, +-0.427449584007263,1.22124534845352,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.330494850873947,-0.5734533816576,1.61520791053772,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.481169044971466,-1.14818534255028,1.26520422101021,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.259049892425537,-0.452552769333124,-0.688679650425911,-0.225453436374664,-0.283967233262956,-1.17319524288177,-0.0715023279190063,-0.712271600961685,-1.26452821493149,-0.282516837120056,-0.234412840567529,-1.23899394273758,-0.420150697231293,-0.254769165068865,-0.952992454171181,-0.435242831707001,-0.116470918059349,-0.879932433366776,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.128251016139984,-0.419070534408092,-0.0470258593559265,-0.315277278423309,-0.378486937843263,-1.20695620775223,-0.519646733999252,-0.296847090125084,-1.21686217188835,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.551970645785332,-0.812046140432358,-1.45571911334991,-0.861296880990267,-0.314630306325853,-1.42273926734924,-0.813271753489971,-0.403879337012768,-0.246995568275452,-0.805887743830681,-1.08221736550331,-0.654593080282211,-1.25659707188606,0.0265754759311676,-0.865688182413578,-1.11913640797138,-0.0732314437627792,-1.21358034014702,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.862528637051582,-0.0827289074659348,0.873961955308914,-0.722531691193581,-0.0193124264478683,0.669596582651138,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.422556012868881,0.318009912967682,1.03226894140244,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0488940477371216,0.0534192323684692,1.28775924444199,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0265013575553894,0.357972405850887,0.262088917195797,0.2658970952034,0.370535179972649,0.75144699215889,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,0.207629442214966,0.200537461787462,0.322904884815216,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.449845045804977, +-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,-0.776450853794813,-0.272353395819664,1.53316497802734,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.159302264451981,-1.0613357424736,1.02808792516589,-0.164203494787216,-0.990836605429649,0.729593306779861,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,0.254308074712753,-0.832186132669449,0.23028564453125,-0.00905442237854004,-0.195137802511454,0.0317183136940002,-0.0477792024612427,-0.224445976316929,0.223309397697449,-0.0135191082954407,-0.000640269368886948,0.0919049754738808,0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,0.0962658524513245,0.043090358376503,-0.865479320287704,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347, +1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.916891194880009,-0.0868116021156311,1.13101997971535,-0.753275603055954,-0.0882145017385483,0.529749542474747,-0.612220779061317,0.123990327119827,0.571332842111588,-0.527817994356155,0.215095788240433,1.07274086773396,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.358292639255524,-0.0567116439342499,0.924121707677841,-0.201127409934998,-0.263784028589725,0.835683688521385,0.00478535890579224,-0.16336035169661,-0.0407675206661224,0.0252615213394165,-0.0785700231790543,0.700121700763702,0.207353413105011,-0.0282991118729115,0.780848473310471,0.247071623802185,0.193088514730334,0.623467485420406,0.0944622159004211,0.33176713436842,0.215886667370796,0.144131362438202,0.211659617722034,0.298841536045074,-0.0281315445899963,0.254898115992546,-0.00252652168273926,-0.106032013893127,0.0152285546064377,-0.197572559118271,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.83345527946949,-0.561303004622459,0.980043735355139,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.416901051998138,-0.339054636657238,0.79178361594677,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029, +-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.519418001174927,-1.0902191400528,-0.0314052477478981,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.035199761390686,-0.191824685782194,-0.303338628262281,0.481186747550964,-0.751205831766129,-0.450552554801106,-0.0312537550926208,0.23772668838501,-0.0186098515987396,-0.0271868705749512,0.454615101218224,-0.0426872670650482,-0.135010063648224,0.472936496138573,-0.346492916345596,-0.229602456092834,0.239033784717321,-0.497904412448406,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.861327141523361,-0.379329789429903,1.01589734107256,-0.557859256863594,-0.976881980895996,1.199447453022,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.58316096663475,-0.594954051077366,0.983767405152321,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.573865622282028,-0.459364786744118,0.566588401794434,-0.196832358837128,-0.275081224739552,-0.411501213908195,-0.213312804698944,-0.073132440506015,-0.407480135560036,0.502622842788696,-0.0493782872799784,0.314061641693115,-0.115965723991394,-0.566344454884529,-0.60116358846426,-0.258003711700439,-0.177838630974293,-0.497991129755974,0.412790149450302,-0.202578075230122,0.237927377223969, +0.390143811702728,-0.629586413502693,0.0942259430885315,-0.196941375732422,-0.00214292109012604,-0.209689557552338,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.622979730367661,-0.230946458934341,-0.666955068707466,-0.588349491357803,-0.161398686468601,-0.432677686214447,-0.839265324175358,-0.0558086484670639,-0.71777755022049,-0.823296923190355,0.0478922575712204,-0.430893778800964,-0.830360136926174,0.262925654649734,-0.427664637565613,-1.09778769314289,0.188431888818741,-0.747935846447945,-0.462860375642776,0.00574322789907455,-0.0513052344322205,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744,-0.272732302546501,0.0882022678852081,1.73492687940598,-0.642745912075043,-0.135042637586594,1.17486953735352,0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.718184113502502,0.0524749159812927,1.46765825152397,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.970491984859109,0.0809469744563103,1.0050904052332,0.655624449253082,0.337311945855618,0.753877460956573,0.784249067306519,0.345771864056587,0.643562734127045,0.595298051834106,0.494497075676918,0.423789232969284,0.336515992879868,0.540421172976494,0.190664231777191,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.0656715929508209, +0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795, +-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036, +0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939, +-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028, +-1.45162582397461,0.481310479342937,-1.07665279507637,-1.08519291877747,-0.411161124706268,-1.17447772622108,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.3477874994278,-0.844244949519634,-0.45054567232728,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.83026814460754, +0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608, +-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562, +-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994, +0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.544724434614182,0.371299996972084,-0.0366945862770081,0.283573925495148,0.283059403300285,-0.102856814861298,-0.353770619651186,0.0728668814990669,0.0622389316558838,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.65435266494751,0.112798821181059,0.464356422424316,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479, +-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.25114530324936,0.117499619722366,0.551175117492676,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.709432035684586,0.47479522228241,-0.159030497074127,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978,1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.981949830893427, +0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481, +-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403, +-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361, +-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583, +-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619, +-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206, +-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667, +0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428, +0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-1.57217866182327,0.201641887426376,-0.431463144719601,-0.865469738841057,-1.17828106880188,0.665479935705662,-1.62650567293167,0.394450001418591,-0.584586247801781,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004, +-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201, +0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662, +0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977, +-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385, +-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151, +-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.783982083201408,-0.569262553006411,-0.442419528961182,0.636734634637833,-0.627089126035571,-0.369751781225204,0.558987617492676,-0.601384362205863,-0.610856637358665,0.393649280071259,-0.455633457750082,-0.548892661929131,0.227936565876007,-0.395633126609027,-0.719608753919601,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.970507932826877,-0.349261220544577,-0.847924277186394,0.914770636707544,-0.366567794233561,-0.678669601678848,0.855046957731247,-0.353471912443638,-0.794213265180588,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.47531870007515,-0.451259419322014,-1.56650072336197,-0.513963639736176,-0.284009203314781,-1.38992446660995,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.581792294979095,-0.666960462927818,-0.934306681156158,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,-0.370646446943283,-0.774084404110909,-1.40525060892105,-0.0169147551059723,-0.867644071578979,-1.38717341423035,0.161118119955063,-0.825992718338966, +-1.42324674129486,0.166054114699364,-0.820901095867157,-1.51428645849228,0.256948933005333,-0.881695672869682,-1.53926718235016,0.18628978729248,-0.919194892048836,-1.57069581747055,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.20717716217041,-1.08720368146896,0.711914539337158,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.204362213611603,-1.36856776475906,0.403994932770729,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904, +-0.539316296577454,0.0470236837863922,-0.0835707783699036,-0.468415126204491,-0.0510012805461884,0.163015127182007,-1.0039718747139,-0.0889919996261597,0.110846221446991,-0.554252194240689,-0.119523704051971,0.0591845512390137,-0.398118566721678,-0.0408636033535004,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.316034018993378,-0.789460133761168,-0.152604684233665,0.227398574352264,-0.678539469838142,0.185032736510038,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0558229684829712,-0.202564366161823,-0.374653246253729,-0.0771517157554626,-0.0722846761345863,-0.429328979924321,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389,-0.698288276791573,-0.123287975788116,-1.51105320453644,-0.666817232966423,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.16020804643631,-1.21963593363762,0.326732695102692,0.260146856307983,-1.5944030880928,0.696119964122772,0.248230919241905,-1.7880225777626,0.217163801193237,0.77918367087841,-1.39672729372978,0.0128018110990524,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977, +-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.904944367706776,-1.26837402582169,-0.167848251760006,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.119889676570892,-1.62364900112152,0.191019371151924,0.153870671987534,-1.72987669706345,0.00816312432289124,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.4356424883008,-1.74682760238647,-0.535109147429466,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.439901292324066,-0.0864635333418846,0.677239313721657,0.42389965057373,-0.393628682941198,0.610251143574715,0.401900470256805,-0.613858869299293,0.331712871789932,0.441531956195831,-0.664834417402744,0.234360083937645,0.469029068946838,-0.754054024815559,0.0445282906293869,0.49987781047821,-0.913534943014383,-0.167973596602678,0.512112021446228,-0.876880969852209,-0.389464482665062,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702,0.6348976790905,-0.651722736656666,0.479455962777138,-0.295823562655642,-1.6392012834549,-0.232085376977921,-0.234079629539337,-1.88121777772903,-0.233751744031906, +-0.0787960290908813,-1.89038687944412,-0.455407150089741,-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.408815264701843,-0.89955797046423,0.649793907999992,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.798987194895744,-0.699518844485283,-0.213217616081238,-0.600579291582108,-1.53679895401001,-0.669644683599472,-0.470214486122131,-1.64274156093597,-0.362627133727074,-0.42703665792942,-1.5230256319046,-0.293302655220032,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.355002544820309,-1.21582734584808,-0.139252901077271,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.194891333580017,-0.684049800038338,-0.162605464458466,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.164258718490601,-1.04268655180931,0.127375721931458,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.623109988868237,-0.611030906438828,-1.50272238254547,-0.55256973952055,-0.441802054643631,-1.68255251646042,-0.301106035709381,-0.37745688855648,-1.67282992601395,-0.283485323190689,-0.283964548259974,-1.71461594104767,-0.459655679762363,-0.303385391831398,-1.77899777889252,-0.472937136888504,-0.45014800131321,-1.77171641588211,-0.459296517074108,-0.461047172546387,-1.7522748708725,-0.475888229906559,-0.381121307611465,-1.73763263225555,-0.466478921473026,-0.421956580132246,-1.72914576530457,0.117279142141342,-0.868819355964661,-1.54625308513641,0.226979196071625,-0.684362143278122,-1.74488377571106,0.250083059072495,-0.345741779543459,-1.84748989343643,0.509102670475841,-0.3890061378479,-1.79555159807205,0.543930754065514,-0.63109815120697,-1.78333008289337,0.814036622643471,-0.453414216637611,-1.71892952919006,0.938264161348343,-0.228094898164272,-1.67942416667938, +0.585616156458855,-0.312063158489764,-1.85271906852722,0.355570636689663,-0.246009276248515,0.0557888746261597,0.507007330656052,-0.173183612525463,0.188106298446655,0.285106435418129,-0.188595183193684,0.0804438591003418,-0.103397965431213,-0.221767159178853,-0.0563671588897705,0.125725239515305,-0.306952059268951,0.0421670079231262,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.525155007839203,-0.137939276173711,-0.30169540643692,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.424002230167389,-0.0176509171724319,-0.48319599032402,-0.468233466148376,0.00837813690304756,-0.673811510205269,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.721747815608978,0.0861832685768604,-1.36422288417816,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,0.645632218569517,-0.491704776883125,0.369428694248199,0.572800360620022,-0.498271927237511,0.362047255039215,0.516740277409554,-0.514906853437424,0.3949054479599,0.526304990053177,-0.217652395367622,0.373640835285187,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,0.0145272612571716,-0.436670310795307,0.106403112411499,0.0030561089515686,-0.123744856566191,0.00797092914581299,0.017760157585144,-0.0973851829767227,0.0484950244426727, +-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.293766558170319,-0.157592549920082,-1.01841846108437,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,0.359936520457268,-0.268336565466598,0.0515790581703186,0.28183713555336,-0.294441156089306,0.0467862486839294,0.316058143973351,-0.347322851419449,0.106490790843964,0.0735260546207428,-0.257493020268157,-0.0053824782371521,0.535619050264359,-0.304663639515638,0.763191848993301,0.366471946239471,-0.331951133906841,0.567991033196449,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.226158618927002,-0.193123044446111,-0.310428470373154,-0.308481812477112,-0.169159188866615,-0.46062159538269,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.490291476249695,-0.823932474479079,0.174815757200122,-0.553199350833893,-0.793337509036064,-0.278268828988075,0.0132036209106445,-0.149433121085167,-0.299738973379135,0.010010838508606,-0.0511260479688644,-0.0595756769180298,-0.391670346260071,-0.683022812008858,-0.607387989759445,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067, +0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476,0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.257763039320707,-1.13430336117744,0.448242098093033,0.569549411535263,-0.698259770870209,0.333285272121429,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,0.266203641891479,-0.852891355752945,0.499121055006981,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,0.00760668516159058,-0.322423659265041,-0.0762524269521236,-0.0983486175537109,-0.14288803935051,-0.574262671172619,-0.126985728740692,-0.342494890093803,-0.797859132289886,-0.180898010730743,-0.209256812930107,-1.03180864453316,0.000639617443084717,0.169879414141178,-0.866748541593552,0.0773361921310425,0.234275880502537,-0.852333873510361,0.167348325252533,0.11199376732111,-0.653070271015167,0.23631340265274,0.193901365622878,-0.648556254804134,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,0.937761824578047,-0.341998286545277,1.00905486941338,0.840673595666885,-0.369419310241938,1.13074603676796,0.749326884746552, +-0.474193461239338,1.14635819196701,0.695688724517822,-0.488705735653639,0.942707635462284,0.581720650196075,-0.433892343193293,1.0164210498333,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,0.0278320908546448,-0.8038469851017,-0.526654362678528,0.114108562469482,-0.612595871090889,-0.568799983710051,-0.348075121641159,-0.97520787268877,-0.791755527257919,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.148577511310577,-0.500528637319803,-0.806597165763378,0.16500598192215,-0.515912175178528,-0.834949731826782,0.188907444477081,-0.547060191631317,-0.855315566062927,0.207601070404053,-0.597409918904305,-0.853147082030773,0.381346702575684,-0.231726173311472,-0.884540051221848,0.484361410140991,-0.270236793905497,-0.912284769117832,0.54332822561264,-0.684454545378685,-0.868060063570738,0.608475565910339,-0.655505776405334,-1.07989692687988,0.876343689858913,-0.213184211403131,-1.06183115392923,1.00953956600279,-0.177811082452536,-0.890604875981808,1.0846738666296,-0.15553105995059,-1.10482820868492,1.15911462903023,-0.0125799253582954,-1.08723759651184,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.773595079779625,-0.179839618504047,0.8807258233428,0.674819320440292,-0.165913656353951,0.808416724205017,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.132576048374176,-0.161118041723967,0.593035764992237,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.530635893344879,-0.365104176104069,-0.781380834057927,-0.480676114559174,0.0588968545198441,-1.02893973886967,-0.311276614665985,0.0698410794138908, +-1.1115770637989,-0.380777955055237,-0.212026163935661,-1.28120294213295,-0.0923336148262024,-0.193836271762848,-1.32671856880188,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248, +-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894, +0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083, +1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341,-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392, +1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.4285164475441,0.184162899851799,-1.09295105934143,1.5418638586998,0.193339318037033,-0.96041476726532,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.2697502374649,-0.710591100156307,-1.01771235466003,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562, +0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177,-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805454333152, "Geometry::Cheek_Suck", "Shape" { + Version: 100 + Indexes: *404 { + a: 5979,5980,5981,5982,5991,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6021,6022,6023,6024,6025,6026,6027,6028,6040,6041,6042,6043,6044,6045,6046,6047,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6070,6071,6078,6079,6080,6081,6082,6083,6084,6085,6086,6095,6096,6097,6098,6099,6100,6101,6102,6103,6107,6108,6109,6131,6132,6133,6134,6135,6152,6153,6154,6169,6171,6173,6175,6179,6181,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6383,6384,6385,6386,6387,6391,6392,6410,6411,6414,6415,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6517,6518,7167,7168,7169,7170,7174,7175,7176,7177,7178,7179,7180,7191,7192,7193,7194,7195,7196,7197,7198,7199,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7229,7230,7231,7232,7236,7237,7238,7239,7240,7241,7242,7243,7244,7317,7318,7319,7320,7321,7322,7361,7362,7363,7364,7373,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7403,7404,7405,7406,7407,7408,7409,7410,7422,7423,7424,7425,7426,7427,7428,7429,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7452,7453,7460,7461,7462,7463,7464,7465,7466,7467,7468,7477,7478,7479,7480,7481,7482,7483,7484,7485,7489,7490,7491,7513,7514,7515,7516,7517,7534,7535,7536,7551,7553,7555,7557,7561,7563,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7765,7766,7767,7768,7769,7773,7774,7792,7793,7796,7797,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7899,7900,8547,8548,8549,8550,8554,8555,8556,8557,8558,8559,8560,8570,8571,8572,8573,8574,8575,8576,8577,8578,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8604,8605,8606,8607,8611,8612,8613,8614,8615,8616,8617,8618,8619,8684,8685,8686,8687,8688,8689 + } + Vertices: *1212 { + a: 0.0545086860656738,0.00699329376220703,0.00427436828613281,0.0631110668182373,0.00683259963989258,0.00446224212646484,0.00381231307983398,0.000863552093505859,0.000585556030273438,0.00570392608642578,0.00108146667480469,0.0006561279296875,2.86102294921875e-06,0,-1.9073486328125e-06,0.0827200412750244,0.00837135314941406,0.00530529022216797,0.0616199970245361,0.00750398635864258,0.00442600250244141,0.102176427841187,0.010282039642334,0.00630569458007813,0.0697081089019775,0.00814247131347656,0.00475025177001953,0.0993554592132568,0.0110201835632324,0.00663948059082031,0.0643336772918701,0.00781583786010742,0.00457382202148438,0.0825188159942627,0.0100650787353516,0.00637340545654297,0.0560104846954346,0.00723075866699219,0.00435256958007813,0.00660848617553711,0.00126314163208008,0.000761985778808594,0.041903018951416,0.00776052474975586,0.00461101531982422,3.33786010742188e-06,0,-1.9073486328125e-06,0.014742374420166,0.00273656845092773,0.00171375274658203,0.000276803970336914,4.62532043457031e-05,2.86102294921875e-05,0.00447487831115723,0.000871181488037109,0.000532150268554688,0.0576918125152588,0.00683307647705078,0.00432014465332031,0.0701711177825928,0.00785207748413086,0.00485610961914063,0.0838692188262939,0.00911521911621094,0.00560188293457031,0.0799834728240967,0.00925493240356445,0.00562667846679688,0.0678634643554688,0.00852823257446289,0.00535869598388672,0.0185437202453613,0.00357913970947266,0.00214004516601563,0.00327134132385254,0.000580787658691406,0.000379562377929688,0.00526928901672363,0.00100231170654297,0.000606536865234375,0.0554921627044678,0.00692272186279297,0.00432872772216797,0.0644149780273438,0.00759553909301758,0.00466346740722656,0.0746603012084961,0.00847244262695313,0.00520610809326172,0.069697380065918,0.0083155632019043,0.00505828857421875,0.0599210262298584,0.00767135620117188,0.00479221343994141,0.0102343559265137,0.00195693969726563,0.00117969512939453,0.000346183776855469,5.76972961425781e-05,3.62396240234375e-05,8.46385955810547e-05,2.33650207519531e-05, +1.81198120117188e-05,0.00710892677307129,0.00197744369506836,0.00153255462646484,0.0307555198669434,0.00855827331542969,0.00653648376464844,0.1734459400177,0.0173053741455078,0.0157938003540039,0.260770559310913,0.01983642578125,0.0103521347045898,0.283731698989868,0.0222158432006836,0.00242519378662109,0.286908864974976,0.0259099006652832,0.00584030151367188,0.264732360839844,0.0352945327758789,0.0196704864501953,0.193708658218384,0.0334963798522949,0.0225124359130859,0.10844874382019,0.0206336975097656,0.0126943588256836,7.74860382080078e-06,1.43051147460938e-06,0,0.0203628540039063,0.0036168098449707,0.00240039825439453,0.00402116775512695,0.00102853775024414,0.00075531005859375,0.0713415145874023,0.00737762451171875,0.00488567352294922,0.104624509811401,0.00988483428955078,0.00575160980224609,0.13650107383728,0.0122156143188477,0.00681591033935547,0.147218704223633,0.0151157379150391,0.00840377807617188,0.127811431884766,0.0139265060424805,0.0091400146484375,0.087662935256958,0.0142011642456055,0.00906944274902344,0.0391547679901123,0.00738954544067383,0.00455570220947266,0.00425148010253906,0.000720024108886719,0.000499725341796875,0.000673770904541016,0.000187397003173828,0.00014495849609375,0.0136668682098389,0.00380134582519531,0.00294685363769531,0.101882457733154,0.0258636474609375,0.0224065780639648,0.314298152923584,0.038963794708252,0.0309972763061523,0.274093151092529,0.0515999794006348,0.0346736907958984,0.417988777160645,0.0455131530761719,0.0179986953735352,0.573041915893555,0.0487828254699707,0.0264158248901367,0.642817497253418,0.0658769607543945,0.0515890121459961,0.481409549713135,0.0316057205200195,0.00435161590576172,0.000380873680114746,6.38961791992188e-05,4.1961669921875e-05,0.0299556255340576,0.00527667999267578,0.00355243682861328,0.156131029129028,0.0296821594238281,0.0183820724487305,0.00361108779907227,-2.00271606445313e-05,0.000504016876220703,0.00436973571777344,-0.00220572948455811,0.000896453857421875,0.0370573997497559,-0.0144606828689575,0.00704431533813477,0.00242757797241211, +-0.00122523307800293,0.000497817993164063,0.0824093818664551,-0.0108017921447754,0.00475025177001953,0.0960988998413086,-0.0247530937194824,0.0101795196533203,0.00857973098754883,-0.00433075428009033,0.00175952911376953,0.0172085762023926,-0.00058436393737793,0.000286102294921875,0.00444412231445313,0.000842094421386719,0.000524997711181641,0.0330352783203125,-0.00155544281005859,-0.00158500671386719,0.0140600204467773,-0.00127601623535156,-0.00568962097167969,4.62532043457031e-05,-2.09808349609375e-05,-5.31673431396484e-05,0.00490522384643555,0,0.000719070434570313,0.00249290466308594,-0.000644683837890625,-0.00755214691162109,0.0112917423248291,0.00314092636108398,0.00243473052978516,0.108549833297729,0.025627613067627,0.0192975997924805,0.420191764831543,0.0516371726989746,-0.00186824798583984,0.645887851715088,0.0880222320556641,-0.0984201431274414,0.657078981399536,0.0684075355529785,-0.21234130859375,0.639330863952637,-0.00280237197875977,-0.0488948822021484,0.488193035125732,0.0602998733520508,0.0350370407104492,0.263581275939941,0.0490007400512695,0.0298748016357422,0.136419057846069,0.0254945755004883,0.0160102844238281,0.0213534832000732,0.00368213653564453,0.0025482177734375,0.000787734985351563,0.000219106674194336,0.000169754028320313,0.000130176544189453,3.62396240234375e-05,2.76565551757813e-05,0.0252549648284912,0.00702404975891113,0.00544357299804688,0.0314173698425293,0.00182700157165527,0.00178432464599609,0.221463203430176,0.0161831378936768,0.0173625946044922,0.187217235565186,-0.00262904167175293,0.00648403167724609,0.536834716796875,0.0374431610107422,-0.0134153366088867,0.645248889923096,0.154645919799805,-0.139743804931641,0.617063999176025,0.08138108253479,-0.0628242492675781,0.374299049377441,-0.0298254489898682,0.0152530670166016,0.559171676635742,0.0611326694488525,-0.0468964576721191,0.336005210876465,-0.0550546646118164,0.0250411033630371,0.325201511383057,0.0913379192352295,-0.0265474319458008,0.116791248321533,-0.0251628160476685,0.0153951644897461,0.0656461715698242,0.00670242309570313, +0.00574159622192383,0.0183992385864258,-5.7220458984375e-06,0.00255727767944336,0.715144634246826,0.219384670257568,-0.118073463439941,0.327560901641846,0.221970796585083,0.037895679473877,0.608446598052979,0.171632766723633,-0.00334739685058594,0.148478031158447,0.0887339115142822,0.119101524353027,0.720613956451416,0.25721263885498,-0.264826774597168,0.359880924224854,0.179759502410889,0.0894832611083984,0.689394474029541,0.261315822601318,0.0337848663330078,0.759232997894287,0.334928512573242,-0.184019088745117,0.619020938873291,0.242360591888428,-0.0287322998046875,0.332739353179932,0.0978293418884277,0.0219335556030273,0.743425369262695,0.303231716156006,-0.215710639953613,0.703357219696045,0.270619869232178,-0.356438159942627,0.565763473510742,-0.143006324768066,-0.347825527191162,0.678959369659424,0.0909819602966309,-0.219685554504395,0.626595497131348,0.133241653442383,-0.106175899505615,0.438014507293701,0.119640827178955,-0.0805306434631348,0.563973426818848,-0.16411304473877,-0.0896973609924316,0.329719543457031,-0.029841423034668,0.0120201110839844,0.40621280670166,0.00352764129638672,-0.0408730506896973,0.395936489105225,-0.00877094268798828,0.0122814178466797,0.156213521957397,0.0196590423583984,0.00848102569580078,0.00256538391113281,0.000429153442382813,0.00031280517578125,0.209339618682861,0.0401926040649414,0.0245323181152344,0.0839722156524658,0.0157880783081055,0.00986099243164063,0.08432936668396,0.0154256820678711,0.00996208190917969,0.02099609375,0.00366878509521484,0.00251388549804688,6.103515625e-05,1.04904174804688e-05,7.62939453125e-06,0.00772976875305176,0.00128650665283203,0.000929832458496094,0.391454696655273,0.0285382270812988,-0.0628170967102051,0.280606269836426,0.0424919128417969,-0.0607500076293945,0.0363907814025879,-0.00231790542602539,-0.00983762741088867,0.128737926483154,0.0643854141235352,-0.12018346786499,0.0077362060546875,-0.0012507438659668,-0.00594663619995117,0.063347339630127,0.0232028961181641,-0.0591866970062256,0.208731174468994,0.0202388763427734,-0.0390119552612305, +0.0201268196105957,-0.0187807083129883,-0.00135660171508789,0.0701537132263184,-0.0462555885314941,-0.00872659683227539,0.12571907043457,-0.0172379016876221,-0.0107021331787109,0.158661365509033,0.0348398685455322,0.0288195610046387,6.67572021484375e-06,-7.15255737304688e-06,1.9073486328125e-06,0.000810623168945313,-0.000828027725219727,0.000221490859985352,0.000781536102294922,-0.000968456268310547,0.000506877899169922,0.0027613639831543,-0.00100564956665039,0.00174736976623535,0.000715732574462891,-0.000411629676818848,-2.24113464355469e-05,0.00112295150756836,-0.000566959381103516,0.000230789184570313,0.000410079956054688,-0.000207066535949707,8.392333984375e-05,0.109497547149658,0.0186748504638672,0.0149316787719727,0.236546754837036,0.0227084159851074,0.0105628967285156,0.00179862976074219,0.000500202178955078,0.000388145446777344,0.0278706550598145,0.00773906707763672,0.00600719451904297,0.372360467910767,0.022423267364502,-0.0113115310668945,0.428354501724243,0.0449542999267578,-0.0594844818115234,0.407017946243286,0.025425910949707,-0.075160026550293,0.31668758392334,0.0441389083862305,-0.0269384384155273,0.175528287887573,0.0362539291381836,0.00820541381835938,0.0641608238220215,0.0119123458862305,0.00751399993896484,0.0101804733276367,0.00174951553344727,0.0012054443359375,0.00168633460998535,0.000299930572509766,0.000192642211914063,0.0217230319976807,0.00379467010498047,0.00230789184570313,0.10452127456665,0.0107178688049316,0.00707054138183594,0.149770259857178,0.0125870704650879,0.00881576538085938,0.17488431930542,0.0147495269775391,0.00955677032470703,0.163638830184937,0.0143632888793945,0.00931072235107422,0.128540277481079,0.0127615928649902,0.00987911224365234,0.0203635692596436,0.00354528427124023,0.00217723846435547,0.000870227813720703,0.000150203704833984,9.82284545898438e-05,0.00160408020019531,0.000391006469726563,0.000285148620605469,0.0431375503540039,0.00546503067016602,0.0038604736328125,0.155473709106445,0.0148382186889648,0.00929069519042969,0.234984874725342,0.0164728164672852,0.0118932723999023, +0.274059295654297,0.0183911323547363,0.0110254287719727,0.260868549346924,0.0136866569519043,0.0110197067260742,0.208119630813599,0.0106916427612305,0.0179557800292969,0.0575730800628662,0.00809764862060547,0.00519847869873047,0.00864195823669434,0.00160741806030273,0.00100135803222656,2.26497650146484e-06,0,0,0.332823276519775,0.0271992683410645,0.0218815803527832,0.49573540687561,0.0205655097961426,0.0180835723876953,0.0105876922607422,0.00294351577758789,0.00228023529052734,0.119949102401733,0.0179519653320313,0.0139579772949219,0.637979507446289,-0.0496716499328613,-0.0110063552856445,0.62885308265686,-0.106375217437744,-0.100169658660889,0.533644437789917,-0.198410034179688,-0.113406658172607,0.391431093215942,-0.104763507843018,-0.0181913375854492,0.221136808395386,0.0112571716308594,0.000596523284912109,0.103288650512695,0.0193119049072266,0.0111885070800781,0.0444769859313965,0.00808429718017578,0.00525665283203125,0.00728487968444824,0.001220703125,0.000873565673828125,4.55379486083984e-05,7.62939453125e-06,4.76837158203125e-06,0.00780987739562988,0,0,0.0768561363220215,0,0,0.186596632003784,0,8.63075256347656e-05,0.199281692504883,0,0.000105857849121094,0.111838817596436,-0.000716209411621094,-0.00229263305664063,0.0384578704833984,-0.000117301940917969,-0.000150680541992188,-0.0545082092285156,0.00699329376220703,0.00427436828613281,-0.0631144046783447,0.00683450698852539,0.00446605682373047,-0.00381326675415039,0.000863552093505859,0.000585556030273438,-0.00570368766784668,0.00108146667480469,0.0006561279296875,-2.38418579101563e-06,0,-1.9073486328125e-06,-0.0827205181121826,0.00836992263793945,0.00530529022216797,-0.0616204738616943,0.00750398635864258,0.00442600250244141,-0.102177143096924,0.010282039642334,0.00630569458007813,-0.0697109699249268,0.00814294815063477,0.00475406646728516,-0.0993540287017822,0.0110201835632324,0.00663948059082031,-0.0643362998962402,0.00781583786010742,0.00457763671875,-0.0825185775756836,0.0100655555725098,0.00637245178222656,-0.0560100078582764,0.00723028182983398,0.00435352325439453, +-0.00660896301269531,0.00126314163208008,0.000761985778808594,-0.0419034957885742,0.00776100158691406,0.00461101531982422,-3.57627868652344e-06,0,-1.9073486328125e-06,-0.0147418975830078,0.00273656845092773,0.00171375274658203,-0.000277042388916016,4.62532043457031e-05,2.86102294921875e-05,-0.00447463989257813,0.000871181488037109,0.000532150268554688,-0.0576908588409424,0.00683212280273438,0.00431728363037109,-0.0701711177825928,0.00785207748413086,0.00485706329345703,-0.083869457244873,0.00911521911621094,0.00560188293457031,-0.0799834728240967,0.00925540924072266,0.00562667846679688,-0.0678644180297852,0.00852823257446289,0.00535869598388672,-0.0185427665710449,0.00357913970947266,0.00214004516601563,-0.00327253341674805,0.000580787658691406,0.000379562377929688,-0.00526833534240723,0.00100231170654297,0.000606536865234375,-0.0554904937744141,0.00692224502563477,0.00432682037353516,-0.0644152164459229,0.00759553909301758,0.00466346740722656,-0.0746603012084961,0.00847244262695313,0.00520515441894531,-0.0696971416473389,0.0083155632019043,0.00505828857421875,-0.0599186420440674,0.00767135620117188,0.00478935241699219,-0.010235071182251,0.00195693969726563,0.00117969512939453,-0.000345945358276367,5.76972961425781e-05,3.62396240234375e-05,-8.46385955810547e-05,2.33650207519531e-05,1.81198120117188e-05,-0.00710892677307129,0.00197744369506836,0.00153255462646484,-0.0307562351226807,0.0085601806640625,0.00651836395263672,-0.173642873764038,0.0173239707946777,0.0158891677856445,-0.261015653610229,0.0199685096740723,0.0102939605712891,-0.283844232559204,0.0223169326782227,0.00232982635498047,-0.286803722381592,0.0258650779724121,0.00582695007324219,-0.264779090881348,0.035273551940918,0.0196065902709961,-0.193721532821655,0.0335178375244141,0.0225811004638672,-0.108448505401611,0.0206332206726074,0.0126924514770508,-7.74860382080078e-06,1.43051147460938e-06,0,-0.0203628540039063,0.0036168098449707,0.00240039825439453,-0.00402116775512695,0.00102853775024414,0.00075531005859375,-0.0713467597961426,0.00740337371826172, +0.00489521026611328,-0.104608058929443,0.00990200042724609,0.00573635101318359,-0.136496305465698,0.0122122764587402,0.00680160522460938,-0.147217273712158,0.015113353729248,0.00839614868164063,-0.127812623977661,0.0139150619506836,0.00913810729980469,-0.0876600742340088,0.0142087936401367,0.00906658172607422,-0.0391547679901123,0.00738954544067383,0.00455570220947266,-0.00425171852111816,0.000720024108886719,0.000499725341796875,-0.000673770904541016,0.000187397003173828,0.00014495849609375,-0.0136668682098389,0.00380134582519531,0.00294685363769531,-0.101871728897095,0.0258378982543945,0.0224761962890625,-0.314730167388916,0.0391063690185547,0.0306234359741211,-0.274133682250977,0.051609992980957,0.0346364974975586,-0.418336629867554,0.0452160835266113,0.0179901123046875,-0.574235439300537,0.048609733581543,0.0258874893188477,-0.645241260528564,0.0666112899780273,0.0536012649536133,-0.480997800827026,0.0322532653808594,0.00325107574462891,-0.000380992889404297,6.38961791992188e-05,4.1961669921875e-05,-0.0299558639526367,0.00527667999267578,0.00355243682861328,-0.156131267547607,0.0296821594238281,0.0183830261230469,-0.00361108779907227,-2.00271606445313e-05,0.000504016876220703,-0.00436973571777344,-0.00220572948455811,0.000896453857421875,-0.0370578765869141,-0.0144606828689575,0.00704431533813477,-0.00242757797241211,-0.00122523307800293,0.000497817993164063,-0.0824093818664551,-0.0108017921447754,0.00475025177001953,-0.0960984230041504,-0.0247530937194824,0.0101795196533203,-0.00857973098754883,-0.00433075428009033,0.00175952911376953,-0.0172085762023926,-0.00058436393737793,0.000286102294921875,-0.00444412231445313,0.000842094421386719,0.000524997711181641,-0.0328774452209473,-0.00147724151611328,-0.00182867050170898,-0.013826847076416,-0.00125694274902344,-0.00559139251708984,-4.1961669921875e-05,-1.9073486328125e-05,-4.81605529785156e-05,-0.00490522384643555,0,0.000719070434570313,-0.00244522094726563,-0.000654697418212891,-0.00735235214233398,-0.0112917423248291,0.00314092636108398,0.00243473052978516,-0.108506202697754, +0.0256452560424805,0.019190788269043,-0.417878866195679,0.0525922775268555,-0.00389385223388672,-0.644408941268921,0.0893034934997559,-0.0982980728149414,-0.657952785491943,0.069669246673584,-0.210561752319336,-0.640648365020752,-0.00229358673095703,-0.0477199554443359,-0.487074613571167,0.0569162368774414,0.0344457626342773,-0.263873815536499,0.0489339828491211,0.0298624038696289,-0.136419534683228,0.0254945755004883,0.0160102844238281,-0.0213534832000732,0.00368213653564453,0.0025482177734375,-0.000787734985351563,0.000219106674194336,0.000169754028320313,-0.000130176544189453,3.62396240234375e-05,2.76565551757813e-05,-0.0252552032470703,0.00702404975891113,0.00544357299804688,-0.0314173698425293,0.00182700157165527,0.00178432464599609,-0.221426248550415,0.0161263942718506,0.017242431640625,-0.187229633331299,-0.00263142585754395,0.0064849853515625,-0.537430286407471,0.037214994430542,-0.0133285522460938,-0.640662908554077,0.157147884368896,-0.141234397888184,-0.615224361419678,0.0823347568511963,-0.0634870529174805,-0.374266624450684,-0.0298018455505371,0.0152320861816406,-0.55884313583374,0.0617332458496094,-0.0464134216308594,-0.33600378036499,-0.0550539493560791,0.0250415802001953,-0.32531213760376,0.0911424160003662,-0.0269746780395508,-0.116767406463623,-0.0251709222793579,0.0154047012329102,-0.0657224655151367,0.00674247741699219,0.00574207305908203,-0.0183992385864258,-5.7220458984375e-06,0.00255727767944336,-0.717929363250732,0.21838903427124,-0.114730834960938,-0.32643985748291,0.220819234848022,0.0382895469665527,-0.612044811248779,0.170247316360474,-0.000821590423583984,-0.148127555847168,0.0889401435852051,0.119209766387939,-0.715335369110107,0.259250164031982,-0.265450000762939,-0.35115909576416,0.174678564071655,0.088496208190918,-0.68652868270874,0.260441303253174,0.0353527069091797,-0.762342929840088,0.333708763122559,-0.179423809051514,-0.609147071838379,0.243983745574951,-0.0291428565979004,-0.32738733291626,0.0988931655883789,0.0221500396728516,-0.738240242004395,0.304128170013428,-0.215379238128662, +-0.701484203338623,0.271622180938721,-0.355126857757568,-0.563187599182129,-0.145651340484619,-0.349198341369629,-0.679356098175049,0.0902194976806641,-0.218510150909424,-0.636141300201416,0.131162643432617,-0.102325916290283,-0.431825637817383,0.122373580932617,-0.0809955596923828,-0.568020343780518,-0.162410736083984,-0.0860319137573242,-0.329783916473389,-0.0293521881103516,0.012723445892334,-0.404910087585449,0.00345039367675781,-0.040863037109375,-0.394742488861084,-0.010350227355957,0.0117912292480469,-0.156508445739746,0.0200290679931641,0.0086512565612793,-0.00256538391113281,0.000429153442382813,0.00031280517578125,-0.209317445755005,0.0401573181152344,0.0245170593261719,-0.0839717388153076,0.0157880783081055,0.00986099243164063,-0.0843296051025391,0.0154256820678711,0.00996208190917969,-0.02099609375,0.00366878509521484,0.00251388549804688,-6.103515625e-05,1.04904174804688e-05,7.62939453125e-06,-0.00772976875305176,0.00128650665283203,0.000929832458496094,-0.388625621795654,0.0282297134399414,-0.0625147819519043,-0.27852201461792,0.0428543090820313,-0.0613393783569336,-0.0358753204345703,-0.00232505798339844,-0.00964450836181641,-0.12709903717041,0.0649294853210449,-0.119941234588623,-0.0075993537902832,-0.00119638442993164,-0.00585460662841797,-0.0636987686157227,0.021388053894043,-0.0572957992553711,-0.205371856689453,0.0250105857849121,-0.0413675308227539,-0.0200481414794922,-0.0187239646911621,-0.00127220153808594,-0.0694718360900879,-0.0455865859985352,-0.00870776176452637,-0.124289989471436,-0.0165162086486816,-0.0105161666870117,-0.155260562896729,0.0389671325683594,0.0284771919250488,-6.67572021484375e-06,-7.15255737304688e-06,1.9073486328125e-06,-0.000810623168945313,-0.000828027725219727,0.000221490859985352,-0.000754833221435547,-0.000936746597290039,0.000490188598632813,-0.00269317626953125,-0.000960350036621094,0.00171566009521484,-0.000713348388671875,-0.000410556793212891,-2.24113464355469e-05,-0.00112295150756836,-0.000566840171813965,0.000230789184570313,-0.000410079956054688,-0.000207066535949707, +8.392333984375e-05,-0.109498023986816,0.0186748504638672,0.0149316787719727,-0.236474752426147,0.0230312347412109,0.00967502593994141,-0.00179874897003174,0.000500202178955078,0.000388145446777344,-0.0278708934783936,0.00773954391479492,0.00600719451904297,-0.371204137802124,0.0230774879455566,-0.022181510925293,-0.418875455856323,0.0440177917480469,-0.101924896240234,-0.395332813262939,0.0119881629943848,-0.118900299072266,-0.309459209442139,0.0380840301513672,-0.0445756912231445,-0.175397396087646,0.0361876487731934,0.00695419311523438,-0.0641610622406006,0.0119123458862305,0.00751399993896484,-0.0101805925369263,0.00174951553344727,0.0012054443359375,-0.00168561935424805,0.000299930572509766,0.000192642211914063,-0.0217242240905762,0.00379467010498047,0.00230789184570313,-0.104661703109741,0.0107951164245605,0.00716018676757813,-0.150028944015503,0.0125818252563477,0.00898075103759766,-0.175468444824219,0.0148434638977051,0.00964736938476563,-0.164111137390137,0.0143013000488281,0.00938701629638672,-0.128985166549683,0.0127453804016113,0.0104074478149414,-0.0203642845153809,0.00354576110839844,0.00217723846435547,-0.000870227813720703,0.000150203704833984,9.82284545898438e-05,-0.00160360336303711,0.000391006469726563,0.000285148620605469,-0.0431382656097412,0.00546646118164063,0.00386142730712891,-0.155773639678955,0.0155830383300781,0.00948715209960938,-0.235061168670654,0.0168266296386719,0.0116672515869141,-0.274167776107788,0.0186009407043457,0.00811100006103516,-0.260829448699951,0.0111713409423828,0.0076446533203125,-0.208608388900757,0.00805187225341797,0.0187473297119141,-0.0575668811798096,0.00810813903808594,0.00518226623535156,-0.00864267349243164,0.00160741806030273,0.00100135803222656,-2.62260437011719e-06,0,0,-0.332822799682617,0.0271992683410645,0.0218815803527832,-0.495748281478882,0.0206136703491211,0.0181260108947754,-0.0105876922607422,0.00294375419616699,0.00228023529052734,-0.119949579238892,0.0179519653320313,0.0139579772949219,-0.632829427719116,-0.0653576850891113,-0.0188460350036621,-0.594865083694458, +-0.153493881225586,-0.133562564849854,-0.505844831466675,-0.259515285491943,-0.141905307769775,-0.387782335281372,-0.141111373901367,-0.0238862037658691,-0.223525285720825,0.00192928314208984,-0.00482082366943359,-0.103298187255859,0.0192775726318359,0.0111684799194336,-0.044477105140686,0.00808429718017578,0.00525665283203125,-0.00728487968444824,0.001220703125,0.000873565673828125,-4.55379486083984e-05,7.62939453125e-06,4.76837158203125e-06,-0.00781011581420898,0,0,-0.0768561363220215,0,0,-0.186595916748047,0,8.63075256347656e-05,-0.199282169342041,0,0.000105857849121094,-0.112082481384277,-0.000777721405029297,-0.00243139266967773,-0.0389366149902344,-0.000320911407470703,-0.000376224517822266 + } + Normals: *1212 { + a: 0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,0.512022675946355,1.34185579419136,0.66503818333149,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153, +1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,0.221148788928986, +0.310832679271698,-1.26058748364449,0.437944859266281,0.259957488626242,-1.2592768073082,0.608295112848282,0.10823181271553,-1.25950562953949,0.801428377628326,0.168200765736401,-1.22813148796558,0.676499664783478,0.394543980248272,-1.38882184028625,0.614756196737289,0.162919949740171,-1.23879411816597,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223, +0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918,-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549, +-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082, +0.914712131023407,0.769653141498566,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-0.959292871877551,0.826793894171715,0.163627862930298,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449, +-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201, +-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-1.30209255218506,0.681211248040199,0.375398635864258,-1.31432190537453,0.719328045845032,0.437053114175797,-1.30395328998566,0.315785571932793,0.602485001087189,-0.987312516197562,0.200340773910284,0.75784258544445,-0.862383862957358,0.426683764904737,0.597152233123779,-0.766009718179703,0.116848640143871,0.689910739660263,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028, +0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427,-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.33592736721039,0.67454619705677,0.0972495675086975, +-1.05477386713028,0.454157344996929,0.189654588699341,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833,0.0759185552597046,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821, +-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007 + } + } + Geometry: 2805454332000, "Geometry::Mouth_Upper_UpLeft", "Shape" { + Version: 100 + Indexes: *1472 { + a: 635,636,643,648,669,672,681,700,703,708,711,716,719,724,1359,1367,1436,1438,1441,1457,1460,1503,1509,1523,1531,1545,1553,1567,3065,3110,5880,5881,5882,5883,5885,5887,5888,5889,5890,5891,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,6015,6016,6017,6018,6019,6020,6021,6022,6023,6034,6035,6036,6037,6038,6039,6040,6041,6042,6053,6054,6055,6056,6057,6058,6059,6060,6061,6065,6072,6073,6074,6075,6076,6077,6078,6079,6080,6091,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6245,6246,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6266,6267,6268,6269,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543, +6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7153,7156,7157,7159,7160,7161,7164,7165,7172,7180,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7197,7199,7204,7206,7207,7208,7209,7210,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7397,7398,7399,7400,7401,7402,7403,7404,7405,7416,7417,7418,7419,7420,7421,7422,7423,7424,7435,7436,7437,7438,7439,7440,7441,7442,7443,7447,7454,7455,7456,7457,7458,7459,7460,7461,7462,7473,7474,7475,7476,7477,7478,7479,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539, +7540,7541,7542,7543,7545,7559,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119, +8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8547,8548,8549,8550,8551,8552,8553,8560,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8576,8578,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8598,8602,8603,8606,8607,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 + } + Vertices: *4416 { + a: 0,0.00165987014770508,0,0.0113600492477417,0.00912189483642578,0.0103044509887695,0.00967609882354736,0.0102636814117432,0.00877571105957031,0.00329363346099854,0.00141119956970215,0.00297164916992188,0.0111244916915894,0.00925469398498535,0.0100946426391602,0.000448763370513916,0.00751352310180664,0.000403404235839844,0.0103975534439087,0.00532746315002441,0.00943088531494141,0,0.00575780868530273,0,0.00457936525344849,0.00829124450683594,0.00413608551025391,0.0116451978683472,0.010596752166748,0.0105762481689453,0.00847148895263672,0.00775384902954102,0.00766849517822266,0.0123339891433716,0.00765705108642578,0.0111989974975586,0.00692939758300781,0.00331211090087891,0.00626945495605469,0.000635147094726563,0.000216007232666016,0.000571250915527344,0.00210464000701904,0.00714993476867676,0.00189685821533203,0.00876593589782715,0.00436019897460938,0.00794219970703125,0.0100082159042358,0.00830817222595215,0.00907230377197266,0.0110384225845337,0.0106570720672607,0.0100212097167969,0,0.00244522094726563,0,0.00174331665039063,0.00067448616027832,0.00157070159912109,0.0122932195663452,0.00872611999511719,0.0111598968505859,0,0.00702929496765137,0,0.0073552131652832,0.00951862335205078,0.00665855407714844,0.0116806030273438,0.0100860595703125,0.0106058120727539,0.00962293148040771,0.0084996223449707,0.00871753692626953,0.0116403102874756,0.00639605522155762,0.0105657577514648,0.00506913661956787,0.00232052803039551,0.00457954406738281,0,3.79085540771484e-05,4.57763671875e-05,0,0.000743865966796875,0,0,0.00443625450134277,0,0,8.10623168945313e-06,0,0,0.625221729278564,0.0546998977661133,0,0.599854946136475,-0.0191240310668945,0,8.58306884765625e-06,0,0,0.62521505355835,0.0546979904174805,0,0.625211238861084,0.0546989440917969,0,-1.04904174804688e-05,0,0.00013883646170143,0.372093200683594,0.0213184356689453,0,8.58306884765625e-06,0,0,0.581961631774902,-0.107844352722168,0,-8.58306884765625e-06,0,0.000229898621910252,0.0665550231933594,0.0402717590332031,0,8.34465026855469e-06,0,0,-4.05311584472656e-06, +0,0,8.22544097900391e-06,0,0,-8.2552433013916e-06,0,0,2.08616256713867e-06,0,0,4.17232513427734e-06,0,-1.26401073430316e-05,0.113314867019653,0.0308637619018555,4.99820525874384e-05,0.0932981967926025,0.0424404144287109,0.000167526726727374,0.0941486358642578,0.0398797988891602,0.000212308048503473,0.095822811126709,0.0415964126586914,-9.45455485634739e-06,0.0699036121368408,0.00784492492675781,0,0.000186681747436523,-1.23977661132813e-05,0,-8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-2.08616256713867e-06,0,0,6.07967376708984e-06,0,0,4.11272048950195e-06,0,0,8.58306884765625e-06,0,0,6.07967376708984e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,-0.00439980626106262,0.517575263977051,0.0448122024536133,-0.00491273403167725,0.433036804199219,0.0448551177978516,-0.000164508819580078,0.00391578674316406,0.000117301940917969,-0.000165224075317383,0.00390720367431641,0.000109672546386719,-0.00192666053771973,0.0425376892089844,0.00149726867675781,-0.00190854072570801,0.0425209999084473,0.00159740447998047,-0.00740861892700195,0.168084144592285,0.00922489166259766,-0.00716876983642578,0.168070316314697,0.00955009460449219,-0.00945734977722168,0.210323810577393,0.0168657302856445,-0.00919854640960693,0.251285076141357,0.0173206329345703,-0.00968825817108154,0.21852970123291,0.0248012542724609,-0.00918245315551758,0.325525283813477,0.0251855850219727,-0.00825071334838867, +0.304775238037109,0.0346517562866211,-0.00749325752258301,0.416677474975586,0.0347995758056641,-0.00453925132751465,0.101328372955322,0.00474834442138672,-0.00467371940612793,0.101361274719238,0.00450992584228516,-3.95774841308594e-05,0.000939369201660156,2.57492065429688e-05,-3.88622283935547e-05,0.000926971435546875,2.6702880859375e-05,0,1.04904174804688e-05,0,-0.00479486584663391,0.517581462860107,0.0448036193847656,-0.00809139013290405,0.416696071624756,0.0346736907958984,-0.00964546203613281,0.32557487487793,0.024937629699707,-0.00946342945098877,0.251312255859375,0.0170431137084961,-0.007346510887146,0.16808032989502,0.00935840606689453,-0.00464105606079102,0.101348876953125,0.004608154296875,-0.00192928314208984,0.0425310134887695,0.00154209136962891,-0.000165462493896484,0.00391197204589844,0.000113487243652344,-3.95774841308594e-05,0.000926971435546875,2.57492065429688e-05,-0.00456351041793823,0.517577648162842,0.0448064804077148,-0.00775003433227539,0.416675567626953,0.0347461700439453,-0.0093914270401001,0.325543880462646,0.0250873565673828,-0.00930345058441162,0.251285076141357,0.0172185897827148,-0.00723922252655029,0.168055534362793,0.00947856903076172,-0.00458335876464844,0.101344585418701,0.00469398498535156,-0.00191712379455566,0.0425271987915039,0.00157833099365234,-0.000165224075317383,0.00390958786010742,0.000115394592285156,-3.93390655517578e-05,0.000937461853027344,2.6702880859375e-05,-0.00138106942176819,0.174463748931885,0.0148143768310547,-0.00243347883224487,0.138896942138672,0.0115547180175781,-0.00281989574432373,0.108523368835449,0.00824451446533203,-0.0027461051940918,0.0837712287902832,0.00560855865478516,-0.00218415260314941,0.0560426712036133,0.00302505493164063,-0.00143527984619141,0.0337743759155273,0.00147438049316406,-0.000608921051025391,0.0141968727111816,0.000462532043457031,-5.17368316650391e-05,0.00130796432495117,2.86102294921875e-05,-1.21593475341797e-05,0.000323295593261719,4.76837158203125e-06,0,-1.04904174804688e-05,0,-0.0192690491676331,0.43364429473877,0.00717926025390625, +-0.00544548034667969,0.27778434753418,-0.077479362487793,-0.00637984275817871,0.217047214508057,-0.0483465194702148,-0.00623095035552979,0.16754674911499,-0.0815544128417969,-0.0048830509185791,0.112064361572266,-0.0705051422119141,-0.00308465957641602,0.0675640106201172,-0.034794807434082,-0.0012822151184082,0.028353214263916,0.000987052917480469,-0.000110149383544922,0.00261783599853516,7.05718994140625e-05,-2.55107879638672e-05,0.000623703002929688,1.52587890625e-05,2.98023223876953e-05,0.00639581680297852,0.00542831420898438,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-0.00416469573974609,0,7.12275505065918e-06,-0.000834941864013672,0.003082275390625,0,-0.00478029251098633, +0,0,-0.00177645683288574,0,0,-0.00488185882568359,0,0,0.0162150859832764,0.0102510452270508,0,-0.00275206565856934,0,-1.16229057312012e-06,0.0046694278717041,0.00311088562011719,0,-0.000292301177978516,0,0,-0.00450038909912109,-2.09808349609375e-05,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-0.00536847114562988,0,0,-0.00615191459655762,0,0,-0.00347018241882324,0,0,-0.00066375732421875,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-0.00232410430908203,0,0,-0.0029299259185791,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-0.00137019157409668,0,0,-0.00381922721862793,0,0,-0.0049736499786377,0.00102901458740234,0,-0.00697517395019531,0,3.10242176055908e-05,0.0138659477233887,0.00889492034912109,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06, +0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.05636024475098e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,2.0638108253479e-06,0,0,-6.18398189544678e-06,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06, +0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06, +0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06, +0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0, +0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,0.000345706939697266,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,2.86102294921875e-06,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,0.625209331512451,0.0546998977661133,-0.00399598479270935,0.517569541931152,0.0448226928710938,-0.00681787729263306,0.416679382324219,0.0348310470581055,-0.00837445259094238,0.325535774230957,0.0252447128295898,-0.00837588310241699,0.251260757446289,0.017399787902832,-0.00649583339691162,0.168055534362793,0.00957965850830078,-0.00409340858459473,0.101336479187012,0.00468254089355469,-0.00171017646789551,0.0425310134887695,0.00154399871826172,-0.000151872634887695,0.00390338897705078,0.000111579895019531,-3.64780426025391e-05,0.000943183898925781,2.57492065429688e-05,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,0.581068992614746,0,0,0.525304317474365,0,0,0.436078071594238,0,0,0.391105175018311,0,0,0.280177593231201,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, +0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,-0.000207781791687012,0.0245532989501953,0.00350666046142578,0,0.0354187488555908,-0.0103969573974609,0.00645774602890015,0.755786418914795,0.0654315948486328,0.00721031427383423,0.651564121246338,0.0654945373535156,0.00112771987915039,0.026801586151123,0.000799179077148438,0.00113558769226074,0.0268139839172363,0.0007476806640625,0.00976204872131348,0.432011604309082,0.00847816467285156,0.0118255615234375,0.420721530914307,0.0100240707397461,0.0136048793792725,0.888204097747803,0.0478706359863281,0.0383621454238892,0.896750450134277,0.0504426956176758,0.0446834564208984,1.0450005531311,0.0729484558105469,0.0404008626937866,1.09091520309448,0.0747718811035156,0.0325756072998047,0.992218494415283,0.0808525085449219,0.0303802490234375,1.06364154815674,0.0820674896240234,0.0183617472648621,0.848072528839111,0.0761556625366211,0.0166680812835693,0.917777538299561,0.0765933990478516,-0.0101799964904785,0.71897554397583,0.0275468826293945,-0.013451099395752,0.740117073059082,0.0244245529174805,0.000269412994384766,0.006439208984375, +0.00017547607421875,0.000269412994384766,0.00644779205322266,0.000187873840332031,0,1.04904174804688e-05,0,0.00703737139701843,0.755792617797852,0.0654182434082031,0.0179984569549561,0.91779613494873,0.0763101577758789,0.03191077709198,1.06371212005615,0.081242561340332,0.0416066646575928,1.09096956253052,0.0735578536987305,0.0387028455734253,0.899975299835205,0.0491504669189453,-0.0107951164245605,0.725334644317627,0.0262012481689453,0.0113451480865479,0.423914432525635,0.00941085815429688,0.00113368034362793,0.0267977714538574,0.000773429870605469,0.000270605087280273,0.00644779205322266,0.000180244445800781,0.00669744610786438,0.755788803100586,0.0654220581054688,0.0172392725944519,0.91779613494873,0.076472282409668,0.0310711860656738,1.06368112564087,0.0817384719848633,0.0408620834350586,1.09095668792725,0.0743227005004883,0.0385837554931641,0.897578239440918,0.0499868392944336,-0.0102519989013672,0.720681667327881,0.0270853042602539,0.0117130279541016,0.421597003936768,0.00982189178466797,0.00113034248352051,0.0268158912658691,0.000789642333984375,0.00027012825012207,0.00643730163574219,0.000186920166015625,0.00238016247749329,0.521926403045654,0.0653915405273438,0.0105714201927185,0.565833568572998,0.050196647644043,0.056550145149231,0.721290826797485,0.0206060409545898,0.0386338233947754,0.753669500350952,0.0195217132568359,0.0120680332183838,0.72503137588501,0.00529766082763672,-0.0269381999969482,0.828293800354004,-0.00887298583984375,-0.033233642578125,0.676615715026855,-0.0116863250732422,-0.0017998218536377,0.0200862884521484,-0.000698089599609375,8.24928283691406e-05,0.00215625762939453,4.10079956054688e-05,0,-1.04904174804688e-05,0,0.0102051198482513,0.754615783691406,0.00870609283447266,0.012187123298645,0.928916454315186,-0.0700969696044922,0.024221658706665,1.02108192443848,0.0188570022583008,0.0350800752639771,1.07532501220703,0.0137729644775391,0.0248866081237793,1.00788879394531,0.0249185562133789,-0.0077824592590332,0.794155120849609,0.00853824615478516,0.00378155708312988,0.455960273742676,-0.000884056091308594, +0.000746726989746094,0.0179233551025391,0.000477790832519531,0.000178098678588867,0.00429058074951172,0.000109672546386719,0.000324130058288574,0.219309091567993,0.0564250946044922,0.0247697234153748,0.233216285705566,0.0305051803588867,0.0912512540817261,0.34543251991272,0.0277090072631836,0.0456092357635498,0.229515075683594,0.0218381881713867,-0.0164978504180908,0.639513492584229,0.0104579925537109,-0.0589981079101563,0.331307411193848,-0.0161275863647461,-0.0687851905822754,0.289051532745361,-0.0238990783691406,-0.00958347320556641,0.0459351539611816,-0.00373649597167969,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,-0.00826478004455566,0.00652158260345459,-0.00689125061035156,0,6.19888305664063e-06,0,-0.000351905822753906,0.000107288360595703,-0.000316619873046875,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,-0.00440287590026855,7.80820846557617e-05,-0.000230789184570313,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,-0.0038917064666748,0.209569215774536,-0.0108680725097656,0.0760703086853027,0.288944721221924,0.0102376937866211,0.116413116455078,0.287445068359375,0.0392980575561523,0.00628423690795898,0.271638154983521,0.00808143615722656, +0.100013136863708,0.352385282516479,0.0306806564331055,0.0618683099746704,0.358146190643311,-0.00499248504638672,0.0458624362945557,0.332109928131104,0.0516653060913086,0.0606355667114258,0.33014440536499,0.128809928894043,0.0014769434928894,0.179417371749878,-0.0376434326171875,0.004081130027771,0.211915016174316,0.085658073425293,-0.00159692764282227,0.278982639312744,0.0107526779174805,-0.00873994827270508,0.195996999740601,-0.00588130950927734,-0.0730884075164795,0.280040740966797,-0.0112800598144531,-0.108134746551514,0.321375370025635,-0.0274362564086914,-0.0170812606811523,0.0733165740966797,-0.00606250762939453,9.04202461242676e-05,0.221079349517822,0.0371360778808594,0.000237941741943359,0.225179672241211,0.0496273040771484,0.00130623579025269,0.229325294494629,0.0464344024658203,0.00122720003128052,0.219708681106567,0.034942626953125,-0.000685840845108032,0.229705095291138,0.0365839004516602,7.04675912857056e-05,0.216396570205688,0.0529537200927734,-0.0057181715965271,0.267945289611816,0.0305585861206055,-0.00134307146072388,0.266021251678467,0.0447587966918945,-0.0181542634963989,0.305384874343872,0.0260677337646484,-0.0112742781639099,0.318174123764038,0.0292339324951172,-0.0200811624526978,0.299572944641113,0.031550407409668,-0.0261296629905701,0.317383527755737,0.024622917175293,-0.00447320938110352,0.274620056152344,0.0849571228027344,-0.0108854174613953,0.26762843132019,0.0886831283569336,0.0238493680953979,0.304083585739136,0.0853090286254883,0.0444456338882446,0.332689762115479,0.0983448028564453,0.0658355951309204,0.378058671951294,0.0360250473022461,0.0957770347595215,0.370858192443848,0.0462675094604492,0.0858683586120605,0.351141929626465,0.0215988159179688,0.0936354398727417,0.317138671875,0.0419235229492188,0.0364720225334167,0.323412179946899,0.014434814453125,0.0940687656402588,0.401812791824341,0.0318126678466797,0.0311322808265686,0.31005597114563,0.0309610366821289,0.0124737620353699,0.246675968170166,0.0252685546875,0.0606476068496704,0.350630521774292,0.015223503112793,0.0961501598358154, +0.339097023010254,0.0322952270507813,0.000104695558547974,0.222729206085205,0.04266357421875,-0.000386953353881836,0.228110313415527,0.0434179306030273,-0.00504574179649353,0.270585298538208,0.0365028381347656,-0.0200161933898926,0.318885803222656,0.026127815246582,-0.0227074027061462,0.303089380264282,0.0350122451782227,-0.00698608160018921,0.266458034515381,0.0892333984375,0.0301823616027832,0.308229684829712,0.0911026000976563,0.0739552974700928,0.372309446334839,0.0417442321777344,0.0965045690536499,0.329387187957764,0.0306615829467773,0.0783208608627319,0.360106945037842,0.0219898223876953,0.0524944663047791,0.362272262573242,0.0199012756347656,0.0181271433830261,0.268814563751221,0.0278844833374023,0.00176471471786499,0.224229335784912,0.038996696472168,0.00203204154968262,0.22784161567688,0.0422534942626953,0.0236565470695496,0.288830995559692,0.0295829772949219,0.066938579082489,0.3922438621521,0.0239658355712891,0.0896177291870117,0.358153820037842,0.0274257659912109,0.0998822450637817,0.315372943878174,0.0376310348510742,0.085384726524353,0.363654375076294,0.0440874099731445,0.0365442037582397,0.312684059143066,0.0941066741943359,-0.00861990451812744,0.263624668121338,0.0879421234130859,-0.0242231488227844,0.308136701583862,0.0332546234130859,-0.0190340280532837,0.322310447692871,0.0256614685058594,-0.00445556640625,0.273171424865723,0.0387287139892578,-4.68790531158447e-05,0.225960731506348,0.0471343994140625,0.000161170959472656,0.224664688110352,0.0457429885864258,0.000293046236038208,0.221037149429321,0.0534124374389648,-0.0239631533622742,0.317543745040894,0.00891494750976563,-0.0120065212249756,0.267500638961792,0.0914688110351563,-0.00610935688018799,0.228328943252563,0.0976858139038086,-0.0113705992698669,0.215920925140381,-0.00163173675537109,0.0593676567077637,0.331184387207031,0.119748115539551,0.0530027151107788,0.343633413314819,0.106705665588379,0.102969408035278,0.375547409057617,0.0465583801269531,0.106029272079468,0.359499216079712,0.0430288314819336,0.0821728706359863,0.374294996261597, +0.0272769927978516,0.0931681394577026,0.355748653411865,0.0296497344970703,0.103262305259705,0.328924179077148,0.0363988876342773,0.116287231445313,0.327475070953369,0.0438652038574219,0.125649690628052,0.319050550460815,0.0483522415161133,0.128890991210938,0.29535436630249,0.0497426986694336,0.0681842565536499,0.323263883590698,0.0381383895874023,0.0328676700592041,0.295997142791748,0.0253171920776367,0.0588729381561279,0.30604362487793,0.0351772308349609,0.0164283514022827,0.310169458389282,0.0238962173461914,0.0539472103118896,0.284495115280151,0.0330324172973633,0.00815927982330322,0.316786289215088,0.0248270034790039,-0.0100841522216797,0.268871545791626,0.0110940933227539,-0.0159760713577271,0.200824975967407,-0.00121212005615234,0.0257208347320557,0.229422569274902,-0.00671768188476563,0.0621352195739746,0.271791219711304,0.0253992080688477,0.0845792293548584,0.285221576690674,0.0399227142333984,0.101680636405945,0.314624309539795,0.0466976165771484,0.108863949775696,0.316025972366333,0.0466594696044922,0.105158090591431,0.309003114700317,0.039586067199707,0.0970295667648315,0.33769702911377,0.0309982299804688,0.0827312469482422,0.36312198638916,0.021031379699707,0,0.00338232517242432,-0.00158405303955078,-0.00429451465606689,0.0592513084411621,-0.0305633544921875,-0.0211195945739746,0.139804482460022,-0.0502300262451172,0,-6.31809234619141e-06,0,-0.00433343648910522,0.00294828414916992,-0.00389480590820313,-0.0252722501754761,0.0320888757705688,-0.0225429534912109,0,-6.19888305664063e-06,0,-9.29832458496094e-06,4.16040420532227e-05,-1.04904174804688e-05,-0.0228914022445679,0.0155409574508667,-0.0204372406005859,0,0.000717401504516602,-0.00932979583740234,-0.00132960081100464,0.0811953544616699,-0.0579986572265625,0.0152758359909058,0.235925436019897,-0.0399532318115234,-0.00755047798156738,0.110235929489136,-0.0141963958740234,-0.00755584239959717,0.123297452926636,-0.0199966430664063,-0.0156934261322021,0.0302205085754395,-0.0118398666381836,-0.01642906665802,0.0568747520446777,-0.0121850967407227,-0.0275267362594604, +0.0770039558410645,-0.0206851959228516,-0.0272289514541626,0.114178895950317,-0.0165262222290039,-0.0348739624023438,0.14709997177124,-0.0115022659301758,-0.0410184860229492,0.251644849777222,-0.0207042694091797,-0.0344020128250122,0.150479078292847,-0.0272340774536133,-0.0157496929168701,0.292929410934448,-0.0247974395751953,-0.0179822444915771,0.171730756759644,-0.0133705139160156,-0.0292209386825562,0.180231332778931,-0.014042854309082,-0.0018455982208252,0.180527925491333,-0.0185117721557617,0.030372142791748,0.306731224060059,-0.00818157196044922,-0.00414001941680908,0.29831862449646,-0.0112419128417969,-0.0319081544876099,0.280459403991699,-0.0141963958740234,-0.0158529281616211,0.305838584899902,-0.0123748779296875,0.0260626077651978,0.333413600921631,-0.00878429412841797,0,0.00750064849853516,-0.0115270614624023,0.000171542167663574,0.158647775650024,-0.0788593292236328,0.0292532444000244,0.30135703086853,-0.0233163833618164,0.0321931838989258,0.336346387863159,-0.0120134353637695,0.00671994686126709,0.340452432632446,-0.0129766464233398,-0.0181764364242554,0.109813690185547,-0.0156803131103516,-0.019172191619873,0.0287120342254639,-0.0126934051513672,-0.0277440547943115,0.0352063179016113,-0.0233974456787109,-0.0118551254272461,0.00458157062530518,-0.0106267929077148,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,-0.035552978515625,0.0257267951965332,-0.00863170623779297,-0.0657587051391602,0.143848180770874,-0.00960063934326172,-0.0401880741119385,0.0125713348388672,-0.00293827056884766,-0.0869941711425781,0.144849300384521,-0.0144081115722656,-0.00554919242858887,0.00792217254638672,-0.000844955444335938,-0.022808313369751,0.0733199119567871,-0.00635623931884766,0,6.19888305664063e-06,0,-0.000807762145996094,0.00329065322875977,-0.000274658203125,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05, +0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.08616256713867e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,2.0638108253479e-06,0,0,-6.15417957305908e-06,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06, +0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06, +0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06, +0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05, +0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0.00321632623672485,0.324505567550659,0.0185317993164063,0.00622808933258057,0.322984218597412,0.0276298522949219,0.0102658867835999,0.325830698013306,0.0279827117919922,0.0180141925811768,0.34404182434082,0.0183572769165039,0.0282357931137085,0.363718032836914,0.0104436874389648,0.0412914752960205,0.372288942337036,0.00556373596191406,0.00249552726745605,0.314595222473145,0.0110912322998047,0.00195574760437012,0.290990352630615,0.00876235961914063,0.00182050466537476,0.269870281219482,0.0119142532348633,0.000958710908889771,0.251556634902954,0.0110855102539063,0.000898241996765137,0.233148097991943,0.00906944274902344,0.00387734174728394,0.236122369766235,0.00534439086914063,0.0134809017181396,0.289217710494995,0.00197982788085938,0.0271432399749756,0.336067914962769,0.0020294189453125,0.0458550453186035,0.365183353424072,0.00526332855224609,0.00401544570922852,0.300765991210938,0.00600051879882813,0.00627082586288452,0.295955896377563,0.0047760009765625,0.0112379789352417,0.315004110336304,0.00195121765136719,0.0230578184127808,0.347858428955078,0.00159168243408203,0.00301611423492432,0.303436756134033,0.006683349609375,-0.0136566162109375,0.447099685668945,-0.14747428894043,-0.00156354904174805,0.148046493530273,-0.0865316390991211,-0.00944364070892334,0.709800720214844,-0.244275093078613,-0.0313374996185303,0.774456977844238,-0.176634788513184,0.210403084754944,0.587462902069092,-0.37300968170166,0.13475376367569,0.411040782928467,-0.189296722412109,0.000753223896026611,0.163462162017822,6.67572021484375e-05,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0.00586485862731934,0.755780220031738,0.0654458999633789,0.0151662826538086,0.917779445648193,0.0766630172729492,0.0277106761932373,1.06363153457642,0.0822687149047852,0.0367882251739502,1.09089088439941,0.0751352310180664,0.0341120958328247, +0.899980545043945,0.050358772277832,-0.0134449005126953,0.722182273864746,0.0269041061401367,0.0532670021057129,0.451332092285156,0.00956821441650391,-0.00796389579772949,0.0724587440490723,0.000767707824707031,0.000245809555053711,0.00644302368164063,0.000172615051269531,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,0.675493240356445,0,0,0.908459186553955,-0.0588235855102539,0,1.15421676635742,-0.164273262023926,0.000523805618286133,1.18589067459106,-0.24884033203125,-0.00607633590698242,1.08390760421753,-0.177225112915039,-0.0457947254180908,0.960368156433105,-0.219592094421387,-0.0046236515045166,0.68829870223999,-0.140535354614258,-5.45978546142578e-05,0.208590507507324,-0.117132186889648,0,0.0654382705688477,-0.0427227020263672,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,-0.00121021270751953,0.00485825538635254,-0.000398635864257813,-1.83582305908203e-05,9.48905944824219e-05,-7.62939453125e-06,-0.000323295593261719,0.00412917137145996,-0.000304222106933594,0.000167965888977051,4.98294830322266e-05,3.814697265625e-06,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,-6.19888305664063e-06,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,2.08616256713867e-06, +0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.11272048950195e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,2.05636024475098e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0,0,-4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0 + } + Normals: *4416 { + a: 0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.384596306972981,-1.27944368124008,-0.820560738444328,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.35247701406479,0.038206547498703,-0.535711735486984,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.861437231302261,0.427536308765411,-0.433443754911423,-1.33883160352707,0.271105103194714,0.201965391635895,-0.185629397630692,0.60392153263092,-0.423017710447311,0.0953263938426971,0.519869685173035,-0.52972674369812,0.382831320166588,0.495755851268768,-0.813438422977924,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.149402499198914,0.649232625961304,-0.918700143694878,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.2391819357872,0.167699098587036,-0.671880319714546,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.896484866738319,0.121514856815338,0.316224336624146,-0.597992211580276,0.508298240602016,0.248544991016388,-0.456251949071884,0.331182681024075,0.38022056221962,0.825121775269508,-0.218170151114464,-0.178467690944672,0.769775316119194,-0.0740673840045929,-0.92814214900136,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471, +-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807, +-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786, +1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087, +-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681, +-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316, +-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697, +0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911, +-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881, +-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672, +-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245, +-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949, +-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166, +0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683, +0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148, +0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912, +0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687, +-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,0.517195463180542,-0.210257351398468,0.607364043593407,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.180295750498772,0.379578433930874,1.83726984262466,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402, +-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133, +-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571, +-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917, +0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437, +0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-0.593131090048701,0.13525072671473,0.191612243652344,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636, +-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424,-0.799145758152008,-0.113252222537994,-0.0412226319313049,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.32392130792141,0.347134307026863, +0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.891574680805206,0.588285773992538,0.370067834854126,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987,-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884, +-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722, +0.0708772093057632,-0.336878478527069,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001, +-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943, +-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272, +-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086, +0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773, +-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313, +-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283, +-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172, +-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751, +0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.965870946645737,0.69016756862402,-1.28132930397987,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.969371169805527,-0.390594244003296,0.0796598792076111,0.839855551719666,-0.363168686628342,0.141476035118103,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,0.824516475200653,-1.17877915501595,0.0225204229354858,0.262745406478643, +-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274,0.60525057464838,0.0108784288167953,-0.214622139930725,0.586801003730216,0.225314557552338,-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481, +-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162, +-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678, +1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 + } + } + Geometry: 2805454332288, "Geometry::Mouth_Upper_UpRight", "Shape" { + Version: 100 + Indexes: *6911 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,28,30,31,32,34,36,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,229,230,231,232,233,234,235,236,237,238,240,241,242,243,244,245,246,247,248,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970, +2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3405,3406,3407,3408,3409, +3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819, +3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235,4236,4237,4238,4239,4240,4241,4242, +4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4651,4652,4654,4655,4656,4657,4658, +4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081, +5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496, +5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5880,5881,5882,5883,5885,5887,5888,5889,5890,5891,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958, +5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5997,6015,6016,6017,6018,6019,6020,6021,6022,6023,6028,6034,6035,6036,6037,6038,6039,6040,6041,6042,6053,6054,6055,6056,6057,6058,6059,6060,6061,6065,6072,6073,6074,6075,6076,6077,6078,6079,6080,6091,6092,6093,6094,6095,6096,6097,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6163,6177,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6444,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6525,6526,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564, +6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7167,7168,7169,7170,7171,7172,7173,7180,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7197,7199,7204,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7221,7225,7228,7231,7232,7233,7234,7235,7236,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7379,7397,7398,7399,7400,7401,7402,7403,7404,7405,7410,7416,7417,7418,7419,7420,7421,7422,7423,7424,7435,7436,7437,7438,7439,7440,7441,7442,7443,7447,7454,7455,7456,7457,7458,7459,7460,7461,7462,7473,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528, +7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7627,7628,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7648,7649,7650,7651,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7826,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164, +8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8535,8538,8539,8541,8542,8543,8552,8560,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8576,8578,8583,8584,8585,8586,8587,8591,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799 + } + Vertices: *20733 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,3.9227306842804e-06,0,0,-9.29832458496094e-05,0,0,3.92645597457886e-06,0,0,-9.29832458496094e-05,0,0,-8.74996185302734e-05,0,0,-8.74996185302734e-05,0,0,-0.000191826373338699,0,0,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0, +0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,-1.43051147460938e-06,0,-9.51886177062988e-05,0,0,-8.7440013885498e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,4.76837158203125e-07,-9.48905944824219e-05,0,4.76837158203125e-07,-8.74996185302734e-05,9.5367431640625e-07,0,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,1.19507312774658e-05,9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.19507312774658e-05,-9.5367431640625e-07,0,-9.51886177062988e-05,0,0,1.20401382446289e-05,0,4.76837158203125e-07,-9.5367431640625e-05,4.76837158203125e-07,0,-9.48905944824219e-05,0,-4.76837158203125e-07,-9.51290130615234e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,-9.5367431640625e-07,0,-8.74996185302734e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,4.76837158203125e-07,-9.52184200286865e-05,0,0,-9.17017459869385e-05,0,-4.76837158203125e-07,-9.60826873779297e-05,0,0,-9.09566879272461e-05,0,4.76837158203125e-07,-9.87052917480469e-05,0,0,-9.45329666137695e-05,0,0,7.51018524169922e-06,0,0,-9.45329666137695e-05,0,9.5367431640625e-07,-9.918212890625e-05, +0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,7.5995922088623e-06,0,0,-9.17017459869385e-05,0,0,-9.5367431640625e-05,0,0,-9.918212890625e-05,0,-4.76837158203125e-07,-9.45329666137695e-05,0,0,-9.87052917480469e-05,0,0,7.51018524169922e-06,0,0,7.39097595214844e-06,0,-9.5367431640625e-07,-9.88245010375977e-05,0,9.5367431640625e-07,-8.74102115631104e-05,0,0,-0.000191815197467804,0,0,-0.000191271305084229,0,0,-8.74102115631104e-05,0,0,-0.000191271305084229,0,0,-9.51886177062988e-05,0,0,-8.82148742675781e-05,0,0,-8.76188278198242e-05,0,0,-9.58442687988281e-05,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,1.9073486328125e-06,7.98702239990234e-06,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.75592231750488e-05,0,0,-8.79168510437012e-05,0,0,-8.82148742675781e-05,0,0,-9.58442687988281e-05,0,0,-8.76188278198242e-05,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-2.86102294921875e-06,0,-9.5367431640625e-05,0,-9.5367431640625e-07,-8.75592231750488e-05,0,0,-0.000191837549209595,0,0,-0.000190675258636475,0,0,-8.75592231750488e-05,0,0,-0.000190675258636475,0,0,-8.82744789123535e-05,0,0,-9.51290130615234e-05,0,0,-8.7738037109375e-05,0,9.5367431640625e-07,7.62939453125e-06,1.43051147460938e-06,-9.5367431640625e-07,-9.52482223510742e-05,0,1.9073486328125e-06,-9.57250595092773e-05,0,0,-8.74996185302734e-05,0,9.5367431640625e-07,-8.82148742675781e-05,3.814697265625e-06,0,-8.82446765899658e-05,9.5367431640625e-07,1.9073486328125e-06,-8.82148742675781e-05,-3.814697265625e-06,0,-8.82446765899658e-05,-9.5367431640625e-07,-1.9073486328125e-06,-8.82148742675781e-05,0,0,-9.51290130615234e-05,0,1.9073486328125e-06,7.62939453125e-06,-1.43051147460938e-06,9.5367431640625e-07,-8.7738037109375e-05,0,-9.5367431640625e-07,-9.52482223510742e-05,0,-1.9073486328125e-06,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52184200286865e-05,2.38418579101563e-06,0,-8.82148742675781e-05,0,0,-0.000190317630767822,1.43051147460938e-06,-9.5367431640625e-07,-9.52184200286865e-05,-2.38418579101563e-06, +0,-9.57250595092773e-05,0,0,-9.52482223510742e-05,0,0,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-8.79764556884766e-05,0,0,-8.53538513183594e-05,0,0,-9.45329666137695e-05,0,-9.5367431640625e-07,-9.918212890625e-05,0,0,-8.83340835571289e-05,0,-1.9073486328125e-06,7.98702239990234e-06,0,9.5367431640625e-07,-8.74996185302734e-05,0,-9.5367431640625e-07,-8.82744789123535e-05,0,0,-0.000190317630767822,-1.43051147460938e-06,9.5367431640625e-07,-9.51886177062988e-05,0,0,-9.51290130615234e-05,0,0,-9.60826873779297e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-9.09566879272461e-05,0,-4.76837158203125e-07,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.5367431640625e-05,0,0,7.39097595214844e-06,0,9.5367431640625e-07,-9.88245010375977e-05,0,-9.5367431640625e-07,7.62939453125e-06,2.86102294921875e-06,0,-9.5367431640625e-05,0,9.5367431640625e-07,-9.52482223510742e-05,0,0,-8.73804092407227e-05,0,0,-9.52482223510742e-05,0,0,-8.79168510437012e-05,0,0,-9.51290130615234e-05,0,-1.9073486328125e-06,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,1.20401382446289e-05,0,-4.76837158203125e-07,-9.918212890625e-05,0,4.76837158203125e-07,-9.52482223510742e-05,0,0,-9.5367431640625e-05,-4.76837158203125e-07,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06, +4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0, +-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0.00165987014770508,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05, +0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05, +0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05, +0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05, +0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,-0.0112005472183228,0.00912189483642578,0.0103044509887695,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,-0.00951600074768066,0.0102636814117432,0.00877571105957031,7.72476196289063e-05,0,0,0.000159978866577148, +0,0,7.77244567871094e-05,0,0,-0.00321686267852783,0.00141119956970215,0.00297164916992188,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,-0.0109648704528809,0.00925469398498535,0.0100946426391602,0.000159740447998047,0,0,8.34465026855469e-05,0,0,-0.000371485948562622,0.00751352310180664,0.000403404235839844,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,-0.0103201866149902,0.00532746315002441,0.00943088531494141,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0.00575780868530273,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,-0.00441968441009521,0.00829124450683594,0.00413608551025391,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,-0.0114850997924805,0.010596752166748,0.0105762481689453,0.000159621238708496,0,0,7.72476196289063e-05,0,0,-0.00839436054229736,0.00775384902954102,0.00766849517822266,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,-0.0122543573379517,0.00765705108642578,0.0111989974975586,7.71284103393555e-05,0,0,8.32080841064453e-05, +0,0,-0.00684654712677002,0.00331211090087891,0.00626945495605469,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,-0.000475645065307617,0.000216007232666016,0.000571250915527344,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05, +0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148, +0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348, +0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05, +0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0.000743865966796875,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05, +0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625, +0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05, +0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05, +0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05, +0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05, +0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05, +0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05, +0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05, +0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,-0.00202178955078125,0.00714993476867676,0.00189685821533203,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,-0.00868260860443115,0.00436019897460938,0.00794219970703125,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05, +0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,-0.00993096828460693,0.00830817222595215,0.00907230377197266,-0.0108781456947327,0.0106570720672607,0.0100212097167969,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0.00443625450134277,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,-0.00166046619415283,0.00067448616027832,0.00157070159912109,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,-0.0122181177139282,0.00872611999511719,0.0111598968505859,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05, +0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0.00702929496765137,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,-0.00719505548477173,0.00951862335205078,0.00665855407714844,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,-0.0115203857421875,0.0100860595703125,0.0106058120727539,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,-0.00946342945098877,0.0084996223449707,0.00871753692626953,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,-0.01155686378479,0.00639605522155762,0.0105657577514648,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,-0.00490903854370117, +0.00232052803039551,0.00457954406738281,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,4.76837158203125e-07,3.79085540771484e-05,4.57763671875e-05,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05, +0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0, +7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05, +0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0, +8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625, +0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945, +0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05, +0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0.00244522094726563,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05, +0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, +0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0, +0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05, +0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0, +9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05, +0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05, +0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0, +0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05, +0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944, +0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0, +0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05, +0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0, +0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05, +0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0, +9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05, +0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0, +0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0, +0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05, +0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0, +0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365, +0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05, +0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332, +0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0, +0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05, +0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, +8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0, +9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05, +0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477, +0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0, +0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05, +0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0, +9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05, +0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,1.67509351823815e-29,8.10623168945313e-06,0,4.36557456851006e-11,0.625221729278564,0.0546998977661133,1.45519152283669e-11,0.599854946136475,-0.0191240310668945,1.45519152283669e-10,8.58306884765625e-06,0,4.36557456851006e-11,0.62521505355835,0.0546979904174805,2.91038304567337e-11,0.625211238861084,0.0546989440917969,4.36557456851006e-11,-1.04904174804688e-05,0,-0.00013883646170143,0.372093200683594,0.0213184356689453,-4.72937244921923e-11,8.58306884765625e-06,0,-7.27595761418343e-12,0.581961631774902,-0.107844352722168,-2.03726813197136e-10, +-8.58306884765625e-06,0,-0.000229898621910252,0.0665550231933594,0.0402717590332031,1.76704839760241e-29,8.34465026855469e-06,0,1.76704839760241e-29,-4.05311584472656e-06,0,1.6494232794919e-29,8.22544097900391e-06,0,1.76704839760241e-29,-8.2552433013916e-06,0,1.76704839760241e-29,2.08616256713867e-06,0,1.76704839760241e-29,4.17232513427734e-06,0,1.26401073430316e-05,0.113314867019653,0.0308637619018555,-4.99820525874384e-05,0.0932981967926025,0.0424404144287109,-0.000167526726727374,0.0941486358642578,0.0398797988891602,-0.000212308048503473,0.095822811126709,0.0415964126586914,9.45455485634739e-06,0.0699036121368408,0.00784492492675781,1.64724848328751e-29,0.000186681747436523,-1.23977661132813e-05,1.69452569998719e-29,-8.22544097900391e-06,0,1.70417235205941e-29,-4.17232513427734e-06,0,1.71227329488799e-29,-2.08616256713867e-06,0,1.68687870486503e-29,6.07967376708984e-06,0,1.6823769940833e-29,4.11272048950195e-06,0,1.76704839760241e-29,8.58306884765625e-06,0,1.20450953867742e-29,6.07967376708984e-06,0,1.25386284767183e-29,6.19888305664063e-06,0,1.76704839760241e-29,8.34465026855469e-06,0,1.76704839760241e-29,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,0.000309169292449951,0,0,-8.22544097900391e-06,0,0,0.000511392951011658,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0.000207781791687012,0.0245532989501953,0.00350666046142578,0,0.0354187488555908,-0.0103969573974609,-0.0064576268196106,0.755786418914795,0.0654315948486328,-0.00721031427383423,0.651564121246338,0.0654945373535156,-0.00112724304199219,0.026801586151123,0.000799179077148438,-0.00113487243652344,0.0268139839172363, +0.0007476806640625,-0.00976300239562988,0.432011604309082,0.00847816467285156,-0.0118250846862793,0.420721530914307,0.0100240707397461,-0.0136041641235352,0.888204097747803,0.0478706359863281,-0.0383615493774414,0.896750450134277,0.0504426956176758,-0.0446830987930298,1.0450005531311,0.0729484558105469,-0.0404013395309448,1.09091520309448,0.0747718811035156,-0.0325756072998047,0.992218494415283,0.0808525085449219,-0.0303802490234375,1.06364154815674,0.0820674896240234,-0.0183617472648621,0.848072528839111,0.0761556625366211,-0.0166680812835693,0.917777538299561,0.0765933990478516,0.0101804733276367,0.71897554397583,0.0275468826293945,0.013451099395752,0.740117073059082,0.0244245529174805,-0.000269412994384766,0.006439208984375,0.00017547607421875,-0.000269889831542969,0.00644779205322266,0.000187873840332031,1.43051147460938e-06,1.04904174804688e-05,0,1.43051147460938e-06,0,0,-0.00703734159469604,0.755792617797852,0.0654182434082031,-0.0179983377456665,0.91779613494873,0.0763101577758789,-0.0319108963012695,1.06371212005615,0.081242561340332,-0.0416061878204346,1.09096956253052,0.0735578536987305,-0.0387027263641357,0.899975299835205,0.0491504669189453,0.0107953548431396,0.725334644317627,0.0262012481689453,-0.0113449096679688,0.423914432525635,0.00941085815429688,-0.00113391876220703,0.0267977714538574,0.000773429870605469,-0.000270366668701172,0.00644779205322266,0.000180244445800781,-1.19209289550781e-06,0,0,-0.00669759511947632,0.755788803100586,0.0654220581054688,-0.0172392725944519,0.91779613494873,0.076472282409668,-0.0310711860656738,1.06368112564087,0.0817384719848633,-0.0408622026443481,1.09095668792725,0.0743227005004883,-0.0385841131210327,0.897578239440918,0.0499868392944336,0.0102510452270508,0.720681667327881,0.0270853042602539,-0.0117120742797852,0.421597003936768,0.00982189178466797,-0.00113058090209961,0.0268158912658691,0.000789642333984375,-0.00027012825012207,0.00643730163574219,0.000186920166015625,-0.00238016247749329,0.521926403045654,0.0653915405273438,-0.0105714201927185,0.565833568572998, +0.050196647644043,-0.056550145149231,0.721290826797485,0.0206060409545898,-0.0386338233947754,0.753669500350952,0.0195217132568359,-0.0120680332183838,0.72503137588501,0.00529766082763672,0.0269381999969482,0.828293800354004,-0.00887298583984375,0.033233642578125,0.676615715026855,-0.0116863250732422,0.0017998218536377,0.0200862884521484,-0.000698089599609375,-8.24928283691406e-05,0.00215625762939453,4.10079956054688e-05,0,-1.04904174804688e-05,0,-0.0102051198482513,0.754615783691406,0.00870609283447266,-0.012187123298645,0.928916454315186,-0.0700969696044922,-0.024221658706665,1.02108192443848,0.0188570022583008,-0.0350801944732666,1.07532501220703,0.0137729644775391,-0.0248868465423584,1.00788879394531,0.0249185562133789,0.0077822208404541,0.794155120849609,0.00853824615478516,-0.00378155708312988,0.455960273742676,-0.000884056091308594,-0.000746726989746094,0.0179233551025391,0.000477790832519531,-0.000178098678588867,0.00429058074951172,0.000109672546386719,-0.000324130058288574,0.219309091567993,0.0564250946044922,-0.0247697234153748,0.233216285705566,0.0305051803588867,-0.0912512540817261,0.34543251991272,0.0277090072631836,-0.0456092357635498,0.229515075683594,0.0218381881713867,0.0164978504180908,0.639513492584229,0.0104579925537109,0.0589981079101563,0.331307411193848,-0.0161275863647461,0.0687851905822754,0.289051532745361,-0.0238990783691406,0.00958347320556641,0.0459351539611816,-0.00373649597167969,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,5.24520874023438e-06,9.5367431640625e-07,0,-6.19888305664063e-06,0,0,3.57627868652344e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,-4.76837158203125e-07,0,-2.02655792236328e-06,4.76837158203125e-07,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0.00826478004455566,0.00652158260345459,-0.00689125061035156, +0,6.19888305664063e-06,0,0.000351905822753906,0.000107288360595703,-0.000316619873046875,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,-1.43051147460938e-06,2.62260437011719e-06,1.9073486328125e-06,0.00440287590026855,7.80820846557617e-05,-0.000230789184570313,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0.0038917064666748,0.209569215774536,-0.0108680725097656,-0.0760703086853027,0.288944721221924,0.0102376937866211,-0.116413116455078,0.287445068359375,0.0392980575561523,-0.00628423690795898,0.271638154983521,0.00808143615722656,-0.100013136863708,0.352385282516479,0.0306806564331055,-0.0618683099746704,0.358146190643311,-0.00499248504638672,-0.0458624362945557,0.332109928131104,0.0516653060913086,-0.0606355667114258,0.33014440536499,0.128809928894043,-0.0014769434928894,0.179417371749878,-0.0376434326171875,-0.004081130027771,0.211915016174316,0.085658073425293,0.00159692764282227,0.278982639312744,0.0107526779174805,0.00873994827270508,0.195996999740601,-0.00588130950927734,0.0730884075164795,0.280040740966797,-0.0112800598144531,0.108134746551514,0.321375370025635,-0.0274362564086914,0.0170812606811523,0.0733165740966797,-0.00606250762939453,-9.04202461242676e-05,0.221079349517822,0.0371360778808594,-0.000237941741943359,0.225179672241211,0.0496273040771484,-0.00130623579025269,0.229325294494629,0.0464344024658203,-0.00122720003128052,0.219708681106567,0.034942626953125,0.000685840845108032,0.229705095291138,0.0365839004516602,-7.04675912857056e-05,0.216396570205688,0.0529537200927734,0.0057181715965271,0.267945289611816,0.0305585861206055,0.00134307146072388,0.266021251678467,0.0447587966918945,0.0181542634963989, +0.305384874343872,0.0260677337646484,0.0112742781639099,0.318174123764038,0.0292339324951172,0.0200811624526978,0.299572944641113,0.031550407409668,0.0261296629905701,0.317383527755737,0.024622917175293,0.00447320938110352,0.274620056152344,0.0849571228027344,0.0108854174613953,0.26762843132019,0.0886831283569336,-0.0238493680953979,0.304083585739136,0.0853090286254883,-0.0444456338882446,0.332689762115479,0.0983448028564453,-0.0658355951309204,0.378058671951294,0.0360250473022461,-0.0957770347595215,0.370858192443848,0.0462675094604492,-0.0858683586120605,0.351141929626465,0.0215988159179688,-0.0936354398727417,0.317138671875,0.0419235229492188,-0.0364720225334167,0.323412179946899,0.014434814453125,-0.0940687656402588,0.401812791824341,0.0318126678466797,-0.0311322808265686,0.31005597114563,0.0309610366821289,-0.0124737620353699,0.246675968170166,0.0252685546875,-0.0606476068496704,0.350630521774292,0.015223503112793,-0.0961501598358154,0.339097023010254,0.0322952270507813,-0.000104695558547974,0.222729206085205,0.04266357421875,0.000386953353881836,0.228110313415527,0.0434179306030273,0.00504574179649353,0.270585298538208,0.0365028381347656,0.0200161933898926,0.318885803222656,0.026127815246582,0.0227074027061462,0.303089380264282,0.0350122451782227,0.00698608160018921,0.266458034515381,0.0892333984375,-0.0301823616027832,0.308229684829712,0.0911026000976563,-0.0739552974700928,0.372309446334839,0.0417442321777344,-0.0965045690536499,0.329387187957764,0.0306615829467773,-0.0783208608627319,0.360106945037842,0.0219898223876953,-0.0524944663047791,0.362272262573242,0.0199012756347656,-0.0181271433830261,0.268814563751221,0.0278844833374023,-0.00176471471786499,0.224229335784912,0.038996696472168,-0.00203204154968262,0.22784161567688,0.0422534942626953,-0.0236565470695496,0.288830995559692,0.0295829772949219,-0.066938579082489,0.3922438621521,0.0239658355712891,-0.0896177291870117,0.358153820037842,0.0274257659912109,-0.0998822450637817,0.315372943878174,0.0376310348510742,-0.085384726524353,0.363654375076294,0.0440874099731445, +-0.0365442037582397,0.312684059143066,0.0941066741943359,0.00861990451812744,0.263624668121338,0.0879421234130859,0.0242231488227844,0.308136701583862,0.0332546234130859,0.0190340280532837,0.322310447692871,0.0256614685058594,0.00445556640625,0.273171424865723,0.0387287139892578,4.68790531158447e-05,0.225960731506348,0.0471343994140625,-0.000161170959472656,0.224664688110352,0.0457429885864258,-0.000293046236038208,0.221037149429321,0.0534124374389648,0.0239631533622742,0.317543745040894,0.00891494750976563,0.0120065212249756,0.267500638961792,0.0914688110351563,0.00610935688018799,0.228328943252563,0.0976858139038086,0.0113705992698669,0.215920925140381,-0.00163173675537109,-0.0593676567077637,0.331184387207031,0.119748115539551,-0.0530027151107788,0.343633413314819,0.106705665588379,-0.102969408035278,0.375547409057617,0.0465583801269531,-0.106029272079468,0.359499216079712,0.0430288314819336,-0.0821728706359863,0.374294996261597,0.0272769927978516,-0.0931681394577026,0.355748653411865,0.0296497344970703,-0.103262305259705,0.328924179077148,0.0363988876342773,-0.116287231445313,0.327475070953369,0.0438652038574219,-0.125649690628052,0.319050550460815,0.0483522415161133,-0.128890991210938,0.29535436630249,0.0497426986694336,-0.0681842565536499,0.323263883590698,0.0381383895874023,-0.0328676700592041,0.295997142791748,0.0253171920776367,-0.0588729381561279,0.30604362487793,0.0351772308349609,-0.0164283514022827,0.310169458389282,0.0238962173461914,-0.0539472103118896,0.284495115280151,0.0330324172973633,-0.00815927982330322,0.316786289215088,0.0248270034790039,0.0100841522216797,0.268871545791626,0.0110940933227539,0.0159760713577271,0.200824975967407,-0.00121212005615234,-0.0257208347320557,0.229422569274902,-0.00671768188476563,-0.0621352195739746,0.271791219711304,0.0253992080688477,-0.0845792293548584,0.285221576690674,0.0399227142333984,-0.101680636405945,0.314624309539795,0.0466976165771484,-0.108863949775696,0.316025972366333,0.0466594696044922,-0.105158090591431,0.309003114700317,0.039586067199707,-0.0970295667648315, +0.33769702911377,0.0309982299804688,-0.0827312469482422,0.36312198638916,0.021031379699707,0,0.00338232517242432,-0.00158405303955078,0.00429451465606689,0.0592513084411621,-0.0305633544921875,0.0211195945739746,0.139804482460022,-0.0502300262451172,0,-6.31809234619141e-06,0,0.00433343648910522,0.00294828414916992,-0.00389480590820313,0.0252722501754761,0.0320888757705688,-0.0225429534912109,0,-6.19888305664063e-06,0,9.29832458496094e-06,4.16040420532227e-05,-1.04904174804688e-05,0.0228914022445679,0.0155409574508667,-0.0204372406005859,0,0.000717401504516602,-0.00932979583740234,0.00132960081100464,0.0811953544616699,-0.0579986572265625,-0.0152758359909058,0.235925436019897,-0.0399532318115234,0.00755047798156738,0.110235929489136,-0.0141963958740234,0.00755584239959717,0.123297452926636,-0.0199966430664063,0.0156934261322021,0.0302205085754395,-0.0118398666381836,0.01642906665802,0.0568747520446777,-0.0121850967407227,0.0275267362594604,0.0770039558410645,-0.0206851959228516,0.0272289514541626,0.114178895950317,-0.0165262222290039,0.0348739624023438,0.14709997177124,-0.0115022659301758,0.0410184860229492,0.251644849777222,-0.0207042694091797,0.0344020128250122,0.150479078292847,-0.0272340774536133,0.0157496929168701,0.292929410934448,-0.0247974395751953,0.0179822444915771,0.171730756759644,-0.0133705139160156,0.0292209386825562,0.180231332778931,-0.014042854309082,0.0018455982208252,0.180527925491333,-0.0185117721557617,-0.030372142791748,0.306731224060059,-0.00818157196044922,0.00414001941680908,0.29831862449646,-0.0112419128417969,0.0319081544876099,0.280459403991699,-0.0141963958740234,0.0158529281616211,0.305838584899902,-0.0123748779296875,-0.0260626077651978,0.333413600921631,-0.00878429412841797,0,0.00750064849853516,-0.0115270614624023,-0.000171542167663574,0.158647775650024,-0.0788593292236328,-0.0292532444000244,0.30135703086853,-0.0233163833618164,-0.0321931838989258,0.336346387863159,-0.0120134353637695,-0.00671994686126709,0.340452432632446,-0.0129766464233398,0.0181764364242554,0.109813690185547,-0.0156803131103516, +0.019172191619873,0.0287120342254639,-0.0126934051513672,0.0277440547943115,0.0352063179016113,-0.0233974456787109,0.0118551254272461,0.00458157062530518,-0.0106267929077148,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0.035552978515625,0.0257267951965332,-0.00863170623779297,0.0657587051391602,0.143848180770874,-0.00960063934326172,0.0401880741119385,0.0125713348388672,-0.00293827056884766,0.0869941711425781,0.144849300384521,-0.0144081115722656,0.00554919242858887,0.00792217254638672,-0.000844955444335938,0.022808313369751,0.0733199119567871,-0.00635623931884766,0,6.19888305664063e-06,0,0.000807762145996094,0.00329065322875977,-0.000274658203125,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,5.24520874023438e-06,0.000112950801849365,0,0,2.08616256713867e-06,0,-2.38418579101563e-06,-3.91006469726563e-05,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,2.86102294921875e-06,0.00014302134513855,0,1.19209289550781e-06,-1.34110450744629e-05,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,0.000311128795146942,0,0,0.000772282481193542,0,0,0.0005522221326828,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.02655792236328e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06, +9.5367431640625e-07,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,-4.93526458740234e-05,-9.46521759033203e-05,-5.81741333007813e-05,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,0.000157535076141357,-0.000370025634765625,0,0.000209689140319824,0,0,8.65459442138672e-05,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,7.89165496826172e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,-6.67572021484375e-06,-3.42130661010742e-05,7.62939453125e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,4.76837158203125e-07,-4.76837158203125e-07,-8.22544097900391e-06,4.76837158203125e-07,0,-8.22544097900391e-06,4.76837158203125e-07,-4.76837158203125e-07,-8.46385955810547e-06,0,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,9.5367431640625e-07,4.29153442382813e-06,-3.33786010742188e-06,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-0.000197649002075195, +0,0,-4.29153442382813e-06,0,0,4.05311584472656e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,-3.814697265625e-06,-2.93254852294922e-05,4.76837158203125e-06,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,-7.51018524169922e-06,-5.88893890380859e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.000306129455566406,-2.57492065429688e-05,0.000108718872070313,-0.000709295272827148,-9.5367431640625e-06,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06, +0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06, +0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,-0.00321632623672485,0.324505567550659,0.0185317993164063, +-0.00622808933258057,0.322984218597412,0.0276298522949219,-0.0102658867835999,0.325830698013306,0.0279827117919922,-0.0180141925811768,0.34404182434082,0.0183572769165039,-0.0282357931137085,0.363718032836914,0.0104436874389648,-0.0412914752960205,0.372288942337036,0.00556373596191406,-0.00249552726745605,0.314595222473145,0.0110912322998047,-0.00195574760437012,0.290990352630615,0.00876235961914063,-0.00182050466537476,0.269870281219482,0.0119142532348633,-0.000958710908889771,0.251556634902954,0.0110855102539063,-0.000898241996765137,0.233148097991943,0.00906944274902344,-0.00387734174728394,0.236122369766235,0.00534439086914063,-0.0134809017181396,0.289217710494995,0.00197982788085938,-0.0271432399749756,0.336067914962769,0.0020294189453125,-0.0458550453186035,0.365183353424072,0.00526332855224609,-0.00401544570922852,0.300765991210938,0.00600051879882813,-0.00627082586288452,0.295955896377563,0.0047760009765625,-0.0112379789352417,0.315004110336304,0.00195121765136719,-0.0230578184127808,0.347858428955078,0.00159168243408203,-0.00301611423492432,0.303436756134033,0.006683349609375,-1.81898940354586e-11,8.58306884765625e-06,0,-7.27595761418343e-12,2.86102294921875e-06,0,0.0136566162109375,0.447099685668945,-0.14747428894043,0.00156354904174805,0.148046493530273,-0.0865316390991211,0.00944364070892334,0.709800720214844,-0.244275093078613,0.0313374996185303,0.774456977844238,-0.176634788513184,-0.210403084754944,0.587462902069092,-0.37300968170166,-0.13475376367569,0.411040782928467,-0.189296722412109,-0.000753223896026611,0.163462162017822,6.67572021484375e-05,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,4.36557456851006e-11,0.625209331512451,0.0546998977661133,-0.00586485862731934,0.755780220031738,0.0654458999633789,-0.0151665210723877,0.917779445648193,0.0766630172729492,-0.0277104377746582,1.06363153457642,0.0822687149047852,-0.0367889404296875,1.09089088439941,0.0751352310180664,-0.0341125726699829,0.899980545043945,0.050358772277832,0.0134456157684326,0.722182273864746,0.0269041061401367, +-0.0532679557800293,0.451332092285156,0.00956821441650391,0.00796389579772949,0.0724587440490723,0.000767707824707031,-0.000245094299316406,0.00644302368164063,0.000172615051269531,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-5.96046447753906e-08,-8.58306884765625e-06,0,4.36557456851006e-11,0.581068992614746,0,8.94069671630859e-08,0.675493240356445,0,-4.76837158203125e-07,0.908459186553955,-0.0588235855102539,4.76837158203125e-07,1.15421676635742,-0.164273262023926,-0.000523686408996582,1.18589067459106,-0.24884033203125,0.00607717037200928,1.08390760421753,-0.177225112915039,0.045795202255249,0.960368156433105,-0.219592094421387,0.0046236515045166,0.68829870223999,-0.140535354614258,5.60283660888672e-05,0.208590507507324,-0.117132186889648,2.38418579101563e-07,0.0654382705688477,-0.0427227020263672,-3.57627868652344e-07,-1.04904174804688e-05,0,2.68220901489258e-07,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0.00121021270751953,0.00485825538635254,-0.000398635864257813,1.83582305908203e-05,9.48905944824219e-05,-7.62939453125e-06,0.000323295593261719,0.00412917137145996,-0.000304222106933594,-0.000167965888977051,4.98294830322266e-05,3.814697265625e-06,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,1.53641994185809e-29,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,1.45414240907454e-29,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,1.69348870708276e-29,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-0.000313222408294678, +0,0,-8.22544097900391e-06,0,0,-0.000527843832969666,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0.00439992547035217,0.517575263977051,0.0448122024536133,0.00491273403167725,0.433036804199219,0.0448551177978516,0.000164985656738281,0.00391578674316406,0.000117301940917969,0.000165939331054688,0.00390720367431641,0.000109672546386719,0.00192570686340332,0.0425376892089844,0.00149726867675781,0.00190901756286621,0.0425209999084473,0.00159740447998047,0.00740933418273926,0.168084144592285,0.00922489166259766,0.00716936588287354,0.168070316314697,0.00955009460449219,0.00945770740509033,0.210323810577393,0.0168657302856445,0.00919806957244873,0.251285076141357,0.0173206329345703,0.00968825817108154,0.21852970123291,0.0248012542724609,0.00918245315551758,0.325525283813477,0.0251855850219727,0.00825071334838867,0.304775238037109,0.0346517562866211,0.00749325752258301,0.416677474975586,0.0347995758056641,0.00453972816467285,0.101328372955322,0.00474834442138672,0.00467371940612793,0.101361274719238,0.00450992584228516,3.95774841308594e-05,0.000939369201660156,2.57492065429688e-05,3.83853912353516e-05,0.000926971435546875,2.6702880859375e-05,1.43051147460938e-06,1.04904174804688e-05,0,1.43051147460938e-06,0,0,0.0047948956489563,0.517581462860107,0.0448036193847656,0.0080915093421936,0.416696071624756,0.0346736907958984,0.00964534282684326,0.32557487487793,0.024937629699707,0.00946390628814697,0.251312255859375,0.0170431137084961,0.00734663009643555,0.16808032989502,0.00935840606689453,0.00464129447937012,0.101348876953125,0.004608154296875,0.00192952156066895,0.0425310134887695,0.00154209136962891,0.000165224075317383,0.00391197204589844,0.000113487243652344,3.98159027099609e-05,0.000926971435546875,2.57492065429688e-05,-1.19209289550781e-06,0,0,0.00456336140632629,0.517577648162842,0.0448064804077148,0.00775003433227539,0.416675567626953,0.0347461700439453,0.0093914270401001, +0.325543880462646,0.0250873565673828,0.00930333137512207,0.251285076141357,0.0172185897827148,0.00723886489868164,0.168055534362793,0.00947856903076172,0.00458240509033203,0.101344585418701,0.00469398498535156,0.00191807746887207,0.0425271987915039,0.00157833099365234,0.000164985656738281,0.00390958786010742,0.000115394592285156,3.93390655517578e-05,0.000937461853027344,2.6702880859375e-05,0.00138106942176819,0.174463748931885,0.0148143768310547,0.00243347883224487,0.138896942138672,0.0115547180175781,0.00281989574432373,0.108523368835449,0.00824451446533203,0.0027461051940918,0.0837712287902832,0.00560855865478516,0.00218415260314941,0.0560426712036133,0.00302505493164063,0.00143527984619141,0.0337743759155273,0.00147438049316406,0.000608921051025391,0.0141968727111816,0.000462532043457031,5.17368316650391e-05,0.00130796432495117,2.86102294921875e-05,1.21593475341797e-05,0.000323295593261719,4.76837158203125e-06,0,-1.04904174804688e-05,0,0.0192690491676331,0.43364429473877,0.00717926025390625,0.00544548034667969,0.27778434753418,-0.077479362487793,0.00637984275817871,0.217047214508057,-0.0483465194702148,0.00623083114624023,0.16754674911499,-0.0815544128417969,0.0048828125,0.112064361572266,-0.0705051422119141,0.00308442115783691,0.0675640106201172,-0.034794807434082,0.0012822151184082,0.028353214263916,0.000987052917480469,0.000110149383544922,0.00261783599853516,7.05718994140625e-05,2.55107879638672e-05,0.000623703002929688,1.52587890625e-05,-2.98023223876953e-05,0.00639581680297852,0.00542831420898438,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,3.33786010742188e-06,-9.5367431640625e-07,0,-6.19888305664063e-06,0,0,5.00679016113281e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,4.76837158203125e-07,0,-2.02655792236328e-06,-4.76837158203125e-07,0,8.2850456237793e-06,0,0,1.03116035461426e-05, +0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,-1.43051147460938e-06,1.78813934326172e-05,-1.9073486328125e-06,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-0.00416469573974609,0,-7.12275505065918e-06,-0.000834941864013672,0.003082275390625,0,-0.00478029251098633,0,0,-0.00177645683288574,0,0,-0.00488185882568359,0,0,0.0162150859832764,0.0102510452270508,0,-0.00275206565856934,0,1.16229057312012e-06,0.0046694278717041,0.00311088562011719,0,-0.000292301177978516,0,0,-0.00450038909912109,-2.09808349609375e-05,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-0.00536847114562988,0,0,-0.00615191459655762,0,0,-0.00347018241882324,0,0,-0.00066375732421875,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-0.00232410430908203,0,0,-0.0029299259185791,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-0.00137019157409668,0,0,-0.00381922721862793,0,0,-0.0049736499786377,0.00102901458740234, +0,-0.00697517395019531,0,-3.10242176055908e-05,0.0138659477233887,0.00889492034912109,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0, +-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,5.24520874023438e-06,-0.000117003917694092,0,0,2.08616256713867e-06,0,-2.38418579101563e-06,3.91006469726563e-05,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,2.86102294921875e-06,-0.000147163867950439,0,1.19209289550781e-06,1.75833702087402e-05,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,-0.000307001173496246,0,0,-0.000784620642662048,0,0,-0.0005522221326828,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.08616256713867e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,-9.5367431640625e-07,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,-4.93526458740234e-05,8.22544097900391e-05,5.81741333007813e-05,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,-0.000149309635162354,0.000370025634765625,0,-0.000226140022277832,0,0,-8.65459442138672e-05,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-8.74996185302734e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06, +0,-6.67572021484375e-06,2.15768814086914e-05,-7.62939453125e-06,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,-4.76837158203125e-07,-4.76837158203125e-07,-8.22544097900391e-06,-4.76837158203125e-07,0,-8.22544097900391e-06,-4.76837158203125e-07,-4.76837158203125e-07,-7.98702239990234e-06,0,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-6.19888305664063e-06,0,0,2.62260437011719e-06,-9.5367431640625e-07,4.29153442382813e-06,2.38418579101563e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,0.000193357467651367,0,0,-3.93390655517578e-06,0,0,4.17232513427734e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,-3.814697265625e-06,4.17232513427734e-05,-4.76837158203125e-06,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,-7.51018524169922e-06,7.15255737304688e-05,1.04904174804688e-05,2.11000442504883e-05,0.000310420989990234,2.57492065429688e-05,0.000108718872070313,0.000688791275024414,9.5367431640625e-06,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06, +0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06, +0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0, +4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,0.000345706939697266,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0.00399598479270935,0.517569541931152,0.0448226928710938,0.00681763887405396,0.416679382324219,0.0348310470581055,0.00837469100952148,0.325535774230957,0.0252447128295898,0.00837516784667969,0.251260757446289,0.017399787902832,0.00649535655975342,0.168055534362793,0.00957965850830078,0.00409412384033203,0.101336479187012,0.00468254089355469,0.0017092227935791,0.0425310134887695,0.00154399871826172,0.000151872634887695,0.00390338897705078,0.000111579895019531,3.71932983398438e-05,0.000943183898925781,2.57492065429688e-05,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-5.96046447753906e-08,-8.58306884765625e-06,0,8.94069671630859e-08,0.525304317474365,0,-4.76837158203125e-07,0.436078071594238,0,4.76837158203125e-07,0.391105175018311,0,1.19209289550781e-07,0.280177593231201,0,1.43051147460938e-06,0,0,-3.57627868652344e-07,-1.04904174804688e-05,0,2.68220901489258e-07,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0, +-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,4.11272048950195e-06,0,-2.38418579101563e-07,-3.34382057189941e-05,0,2.38418579101563e-07,-0.000376224517822266,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-0.00088876485824585,9.5367431640625e-07,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,0.000717803835868835,0,0,0.000728294253349304,0,0,-8.36849212646484e-05,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,-2.38418579101563e-07,4.38094139099121e-05,0,2.38418579101563e-07,0.000359714031219482,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,0.000872313976287842,-9.5367431640625e-07,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,-0.000713661313056946,0,0,-0.000736534595489502,0,0,7.13467597961426e-05,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,-3.814697265625e-06,0.000303089618682861,0,7.15255737304688e-07,0.000398576259613037,0,5.00679016113281e-06,0.000418543815612793,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,-4.29153442382813e-06,-0.000237107276916504,0,-4.76837158203125e-07,1.0371208190918e-05,0,0,6.19888305664063e-06,0,-4.64916229248047e-05,0.000963211059570313,0,0,2.07126140594482e-06,0,-6.19888305664063e-05,-1.8879771232605e-05,3.33786010742188e-05, +6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.96533107757568e-05,0,1.43051147460938e-06,3.06442379951477e-05,-9.5367431640625e-07,0,6.76512718200684e-06,0,0,-2.83122062683105e-06,0,0,-2.50339508056641e-06,0,0,8.2850456237793e-06,0,0,1.0371208190918e-05,0,-3.814697265625e-06,-0.000313341617584229,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000416457653045654,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,-4.29153442382813e-06,0.000233054161071777,0,-4.76837158203125e-07,1.02519989013672e-05,0,-4.64916229248047e-05,-0.000971436500549316,0,0,2.07126140594482e-06,0,-6.19888305664063e-05,8.58306884765625e-06,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,1.3202428817749e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,-4.67896461486816e-06,0,0,-1.2814998626709e-06,0,0,-1.60932540893555e-06,0,0,8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,1.84774398803711e-06,0,0,-3.87430191040039e-06,0 + } + Normals: *20733 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,0.512479096651077,0.790224626660347,-1.19418434798717,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.786892170337596,0.678731635212898,-1.39530062675476,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662,-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528, +0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668,0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373, +-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239, +-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594, +0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037, +0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118, +-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345, +3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.728567808866501,-1.44689455628395,-0.192887205630541,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.415541544556618,0.0772584676742554,0.510290458798409,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097, +-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.158881604671478,0.257880926132202,-0.403882533311844,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.709539905190468,-1.77536076307297,-0.128280056640506,0.065232127904892,-1.51649957895279,-0.816446907818317,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.143667638301849,0.166047215461731,-0.275089055299759,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,0.619130112230778,0.399932056665421,-0.251579016447067,-0.816980265080929,0.405150890350342,0.0179882049560547,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.711974777281284,0.109476447105408,0.29233118891716,0.529554069042206,-0.943819254636765,-0.538006961345673,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,-0.0224997699260712,-1.3710620701313,-0.66904317215085, +-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,-0.281477585434914,-1.47059673070908,-0.637108638882637,0.105275538640853,-0.637849658727646,-0.96121484786272,-0.163867056369781,-0.498093992471695,-0.758398741483688,-0.561409760408878,-0.238186240196228,-0.268574848771095,-0.481551367292344,-0.123277723789215,-0.0792654454708099,-0.363489553332329,-0.409769296646118,0.690038429573178,0.10529666366503,-1.32591781020164,-0.970152504742146,-0.597092765817582,-1.20674596726894,-0.819351315498352,-0.878060249960285,-1.09839354455471,-0.458795654587448,-0.989045231020313,-0.992124690674245,-0.137883204035461,-0.998089510450303,-0.990461918525398,-0.105736166238785,-0.492792263627052,-1.05144484713674,-0.946903960779309,-0.716646485030651,-0.503166675567627,-0.593034517019987,-0.65251578713411,-1.13004267215729,-0.790904641151428,-0.384596306972981,-1.27944368124008,-0.820560738444328,-0.115616609214385,-0.906971223652363,-0.930940613150597,-0.991757646203041,-1.16160273551941,-0.45825238712132,-0.689457193017006,-0.232048749923706,-0.306238638237119,-0.963839523494244,-1.01380455493927,-0.463646754622459,-1.09431371092796,-1.05242761224508,-0.352814815938473,-1.17259280383587,-1.16701963543892,0.0615004315041006,-0.585209548473358,-0.0446223616600037,-0.00327646359801292,-1.05041211098433,-1.00410573370755,-0.298566501587629,-1.08502657711506,-1.01769346557558,-0.225784154608846,-1.147909745574,-1.26500800251961,-0.0838903249241412,-0.602678641676903,-0.0696684122085571,0.0150078921578825,-1.19911512732506,-0.989327908493578,0.0660439543426037,-1.29160937666893,-0.928943054750562,0.07653783634305,-0.651156216859818,-0.497723132371902,-0.793288676068187,-0.594912737607956,-1.10369230806828,-0.885224524885416,-0.801202997565269,-0.286446273326874,-0.38749778131023,-1.07156902551651,-1.07774723321199,-0.593481628224254,-0.710847795009613,-0.00950115919113159, +-0.0313909631222486,-1.70593357086182,-0.690470829606056,-0.255964919924736,-1.26118168234825,0.253318428993225,0.0540343970060349,-1.82952833175659,0.18573497235775,-0.0318808257579803,-1.25751054286957,0.857411921024323,-0.394991517066956,-1.30417555570602,-0.59144751355052,-0.653988778591156,-1.20817908644676,-0.846025854349136,-0.621745869517326,-1.49858021736145,0.160122975707054,-0.511706411838531,-1.35247701406479,0.038206547498703,-0.535711735486984,-1.28803262114525,0.0805649608373642,-0.578685909509659,-1.2321574985981,0.0591745376586914,-0.630967319011688,-0.866234660148621,0.512745171785355,-0.704379037022591,-0.541840558441891,0.551915004849434,-0.715655148029327,-1.01268920302391,1.6279781460762,0.330325551331043,-1.77505433559418,0.253067135810852,-0.072257936000824,-1.7966730594635,0.23855809867382,-0.120924174785614,-1.41513180732727,0.740150671452284,-0.230629771947861,-1.43347907066345,0.708639703691006,-0.190422713756561,-1.43303048610687,0.76059352606535,-0.262669339776039,-0.85240675136447,0.898986808955669,-0.527454376220703,-0.851476546376944,0.852742925286293,-0.457578092813492,-0.951084077358246,1.65357851982117,0.510484084486961,-1.53763437271118,0.733000189065933,0.191999737173319,-1.05386840924621,1.04548007622361,0.0728711783885956,-1.03447915613651,0.976770184934139,0.176400750875473,-0.913139753043652,1.02130544744432,0.0532711260020733,-0.89667147397995,0.930237783119082,0.111363142728806,-0.961836948990822,0.866224147379398,-0.061127245426178,-0.972370680421591,0.892637021839619,-0.25703826546669,-0.483730219304562,1.79655581712723,0.187050927430391,-0.891749791800976,0.777836114168167,0.136746272444725,-1.05588912591338,1.00247775390744,0.081979226320982,-1.06055976077914,1.00657127704471,0.0194785892963409,-0.913454286754131,1.00315550900996,0.0518327578902245,-0.902466855943203,1.01286337897182,0.00117172673344612,-0.995745782872191,1.02413653768599,-0.0382548421621323,-0.997323467907847,1.0108815357089,0.0447078123688698,-0.0565169006586075,1.33777379989624,-0.603999763727188, +-0.163332663476467,0.706752747297287,-0.81874081492424,-0.243145450529994,0.672981262207031,-0.79989892244339,-0.312815740011615,0.95080133411102,-0.648673266172409,-0.363922938011569,0.700094729661942,-0.595136195421219,-0.361779465851725,0.701383203268051,-0.769705891609192,-0.888209231197834,1.53154361248016,-0.141700252890587,-0.5545769110322,0.83391448110342,-0.568683743476868,0.0764046390081035,1.41060599684715,-0.789862096309662,-0.424679969569198,0.768832355737686,-0.825348556041718,-0.511497803032398,0.717828214168549,-0.820600010454655,-0.517463393509388,0.938039224594831,-0.792635217308998,-0.581215567886829,0.780557170510292,-0.734920158982277,-0.587028063833714,0.747316986322403,-0.78947589546442,-0.705661974847317,1.55027610063553,-0.241124413907528,-0.679192200303078,0.820418879389763,-0.520290672779083,-0.142616625875235,1.51078361272812,-0.458231598138809,-0.796075649559498,0.818023517727852,-0.38367885351181,-0.800174720585346,0.822720557451248,-0.570956006646156,-0.535836175084114,0.81537564098835,-0.651380777359009,-0.778310671448708,0.90781531482935,-0.40847247838974,-0.774938248097897,0.881902649998665,-0.456946484744549,-0.220884144306183,1.41539913415909,0.428612545132637,-0.344603657722473,0.585700660943985,-0.156708657741547,-0.313487347215414,1.75320166349411,-0.114528506994247,-0.867311611771584,0.954653825610876,-0.244490593671799,-0.377395451068878,0.737946324050426,-0.135838270187378,-0.238497197628021,0.543613836169243,-0.221260517835617,0.037503182888031,0.231812857091427,-0.18727034330368,0.0161147117614746,0.212028793990612,-0.139861136674881,-0.105515003204346,1.5093742609024,0.585396602749825,-0.392047226428986,0.707873329520226,-0.0923718214035034,0.613853514194489,1.15923303365707,-0.194815337657928,-0.00502598285675049,0.238745599985123,-0.107082456350327,-0.36290043592453,0.708264581859112,-0.162923604249954,-0.281292676925659,0.76073744148016,-0.369130566716194,-0.0455173254013062,0.241681054234505,-0.00702306628227234,-0.0432339906692505,0.257716447114944,-0.0365667045116425, +0.302257925271988,0.246613383293152,0.454977914690971,-0.191652178764343,-0.859272181987762,0.0927550718188286,0.42237263917923,1.19850066304207,0.191006913781166,-0.0928283929824829,0.324429370462894,0.190255455672741,-0.219333589076996,-0.608145188365597,0.0530515611171722,-0.160559892654419,-0.650205500423908,0.0596678256988525,-0.170236349105835,-0.481234971433878,0.0976290255784988,-0.223145544528961,-0.588069019839168,0.0853922218084335,-0.247214525938034,-0.146059393882751,0.250937761738896,-0.653212606906891,-0.989055350422859,-0.012382548302412,0.770999232810027,-0.308427840471268,1.14616446197033,1.38746500015259,-0.243791371583939,0.903738290071487,0.848112851381302,-0.24040287733078,0.5534563139081,0.761212438344955,-0.0939980149269104,0.200024994090199,0.814708739519119,-0.222531020641327,0.448394434526563,0.29266068506422,-0.0834012627601624,0.619031704962254,0.19943144935035,-0.0118665099143982,0.352100029587746,0.19223820318075,0.00875526666641235,0.135418526362628,0.344770299508582,-0.260641932487488,0.761049665510654,0.693808138370514,-0.884770534932613,0.930083112791181,0.78244736790657,-0.843513071537018,0.790386668872088,1.00057655572891,-0.843835458159447,0.644282907247543,0.123440374956431,-0.135053992271423,0.744114935398102,0.115599138204743,-1.12651239335537,1.05629095435143,1.17613686621189,-0.879294648766518,0.278407052159309,0.852378338575363,-0.182531714439392,0.339773096144199,0.973388090729713,-0.894782811403275,0.792171657085419,0.123441958603514,-0.0587111115455627,0.603795051574707,1.19801422953606,-1.10125201940536,0.0842617005109787,0.682891607284546,-0.0382640361785889,0.428956270217896,1.10309166461229,-0.982717011123896,0.39802573621273,0.154018715023994,0.0270361304283142,0.366592600941658,0.990518974557958,-1.07008194923401,0.290197819471359,0.381496089679331,-0.0635197758674622,0.277367301285267,1.06299585103989,-0.907016195356846,0.374346524477005,0.123438742021335,-0.199645042419434,0.832172930240631,0.293484199029535,-0.394820511341095,0.936709806323051,0.35709891826582, +-0.918058261275291,0.989276960492134,0.469037305421352,-0.235939562320709,0.504578247666359,0.819227176887125,-0.948344677686691,0.755597099661827,0.227338299155235,-0.0433056950569153,0.314122691750526,0.838154025375843,-1.18183815479279,0.297775939106941,0.45112808344993,-0.0906301140785217,0.187708701007068,0.996079491869054,-1.07132073491812,0.180685056839138,0.236905470490456,-0.476593494415283,1.0045985430479,0.440259471535683,-0.850273579359055,1.01446716487408,0.437417104840279,-0.934553440660238,1.02462171018124,0.471346542239189,-0.599610030651093,0.913717195391655,-0.246295506159392,-0.0706257224082947,0.802437961101532,0.180369466543198,-0.664599597454071,1.09764894843102,0.196680188179016,-0.879966594278812,1.00004730373621,-0.115623258889627,-0.193366408348083,0.668480768799782,-0.123436847481116,-0.741918206214905,1.17062877118587,0.219005674123764,-0.096109926700592,0.509562283754349,0.693357288837433,-0.990676961839199,0.631566882133484,0.661071702837944,-0.990265242755413,0.700447618961334,0.487041473388672,-0.641847103834152,0.839378833770752,-0.319237616093304,0.0408437848091125,0.558106750249863,0.662649840116501,-0.739089742302895,0.534857727587223,0.605622887611389,-0.977460803464055,0.790030211210251,-0.319248362657163,-0.0454508662223816,0.754353135824203,0.0951815247535706,-0.0460214614868164,0.303559683263302,0.234495580196381,-0.752571135759354,0.383007436990738,0.205374300479889,-0.46999029815197,0.381328091025352,0.0313354730606079,0.863528043031693,0.327277116477489,-0.904423972775248,1.32568544149399,0.256302457302809,0.190966308116913,-0.357583403587341,0.37943709641695,0.158590614795685,-0.409569643437862,0.7448351085186,-0.769762395925716,1.53529137372971,0.520672351121902,-0.369662880897522,1.29973351955414,0.332399383187294,0.119207203388214,0.397630695253611,0.375802457332611,0.0719994306564331,1.08876711130142,0.40702635794878,0.43818199634552,1.20020228624344,0.577275052666664,0.272369503974915,1.43354642391205,0.264593675732613,0.282694518566132,1.37041717767715,0.2889584004879, +-0.868007618933916,0.928888976573944,1.07227230072021,-0.544720411300659,0.799193769693375,1.10264377295971,-0.190821886062622,0.752042733132839,1.13423606753349,-0.152527749538422,1.12613350152969,1.07487192749977,0.0690980553627014,1.32742735743523,0.969272628426552,0.265326533466578,1.06496109813452,1.09727028012276,0.179427117109299,1.38519352674484,0.987356975674629,-0.074355810880661,1.09499743580818,1.02994506061077,0.113120317459106,0.910001076757908,0.962152928113937,0.445555657148361,1.2221362143755,0.927243188023567,0.500713277608156,1.48634347319603,0.742496907711029,0.509452104568481,1.10115332901478,0.961873315274715,0.612555839121342,1.73337578773499,0.478871185332537,0.73030661419034,1.21470442414284,0.646720290184021,0.885105758905411,1.05865963548422,0.386698648333549,0.900459423661232,1.1508062928915,0.698119841516018,0.557075798511505,1.7058020234108,0.588843010365963,0.599714607000351,1.04383850470185,0.842252090573311,0.460118893533945,1.83856666088104,0.0817483067512512,1.03064560890198,1.11691509187222,0.40314557403326,1.09698195755482,0.976112580858171,0.20736289024353,0.827831103826867,1.04980290308595,0.675373807549477,0.277942098859078,1.69903123378754,0.707958348095417,0.751931466162205,0.952318336814642,0.800086606293917,0.606231033802032,1.83698809146881,-0.126876853406429,0.904843397620446,1.23948143422604,0.401581175625324,0.994940097311982,0.972802659496665,-0.0467462912201881,0.955232973078736,1.20989240705967,0.257541909813881,0.343549646619087,1.87796783447266,0.380460120737553,0.842801801860332,0.799521207809448,0.322276551276445,0.401512138545513,1.85963708162308,-0.0112724900245667,0.976474650386101,1.20643775165081,0.108354721218348,0.988257005239831,0.866960451006889,0.0310355424880981,0.831889562308788,1.32966816425323,0.234240405261517,0.35542469471693,1.81818807125092,0.388627219945192,0.843226544559002,0.917320728302002,0.375089336186647,-0.000779524445533752,1.03785438463092,1.11390169709921,0.0579949138564189,1.03147945180535,1.15322296321392,1.03881410509348,1.022614762187, +0.354129545390606,0.934428609907627,1.03314836323261,0.565864332020283,0.398336611688137,0.939539052546024,0.913480184972286,0.440355531871319,0.978899114765227,0.895900387316942,0.560386307537556,1.0524620860815,0.972929768264294,0.58458635956049,1.02960404753685,0.960186116397381,0.459843352437019,1.00302344374359,1.06979332864285,1.30454045534134,0.864913018653169,0.755712166428566,0.837631016969681,0.886925362050533,1.14125943183899,1.00004509836435,1.05710908025503,0.419840641319752,0.883297719061375,1.08435754477978,0.679208569228649,1.15867185592651,0.889474220573902,0.963019847869873,1.53903067111969,0.914194591343403,0.160599082708359,1.86625027656555,0.496455516666174,0.183957204222679,1.79646122455597,0.351398376747966,0.726610034704208,1.06657749414444,0.821566614788026,1.04511646926403,1.29057669639587,0.859839770942926,0.833294451236725,1.69569969177246,0.585299801081419,-0.0661299228668213,1.86165535449982,0.461917873471975,0.345078140497208,1.44756805896759,0.832610172219574,0.573004901409149,1.42854571342468,0.978058084845543,0.372152648866177,1.85659581422806,0.547638162970543,0.115219317376614,1.75454699993134,0.634861811995506,0.466448068618774,1.71920341253281,-0.417441710829735,0.781825363636017,1.7748190164566,-0.511735506355762,0.45194336771965,1.89856904745102,0.367132782936096,0.175598375499249,1.86115962266922,0.484469942748547,0.342809416353703,0.78985529311467,0.44735723733902,0.440106198191643,0.746110329278963,0.371886432170868,0.342839598655701,0.793361734598875,0.369053602218628,0.357736386358738,0.692392893135548,0.447604715824127,0.402729600667953,0.251343429088593,0.0773496031761169,0.381395787000656,0.413386538624763,0.0392517447471619,0.212984204292297,0.83419619128108,0.453340590000153,0.380816660821438,0.685326680541039,0.533861041069031,0.565381288528442,0.360816405154765,0.125040531158447,0.343951985705644,0.392389833927155,0.0791998505592346,0.149670086801052,0.302119188010693,0.0830177664756775,0.349738925695419,0.297209039330482,0.0791658759117126,0.634192734956741,0.205981712788343, +0.0256281495094299,0.588526725769043,0.247559877112508,0.0500559210777283,0.188667319715023,0.267922583967447,0.0493104457855225,0.172706555575132,0.244133934378624,0.0446460843086243,0.53594696521759,0.207570260390639,0.0483817458152771,0.299821175634861,0.222123194485903,0.0229443907737732,0.0482895411550999,0.18560022697784,0.137344181537628,0.552857257425785,0.14646258438006,0.0263457298278809,0.371078819036484,0.280873250216246,0.0722953081130981,0.324166096746922,0.311714127659798,0.178217709064484,0.553579472005367,0.176453415304422,0.391367256641388,0.92617204785347,0.177780984900892,0.11658376455307,0.692876949906349,0.275109497597441,0.170669198036194,0.640683978796005,0.303840334527194,0.474179446697235,0.846600338816643,0.180012298747897,0.138561069965363,0.534721434116364,0.181053010514006,0.39789080619812,0.691668555140495,-0.0501682286494542,0.312779009342194,1.10532423853874,-0.318340816550517,-0.863241102546453,-0.502256900072098,0.154013562236742,-0.766722157597542,-0.757700085639954,0.560919091105461,-0.771625407040119,1.39845451712608,9.94613651528198e-06,-0.843203332275152,1.44380357861519,-0.652966869577327,-0.866145715117455,-0.564316853880882,-0.563454759820857,-0.85734735429287,-0.632534369826317,-0.516109594159389,-0.719200789928436,-0.393018752336502,-0.662216916680336,-0.809796568006277,-0.399829357862473,-0.873685136437416,-0.834008097648621,-0.459361806511879,-0.390236684136653,-0.84113297984004,-0.473938256502151,-0.781835762166338,-0.466261878609657,0.174846470355988,-0.553172126412392,-0.521344833076,-0.142709732055664,-1.01844601333141,-0.784961551427841,-0.0683697760105133,-0.57022713124752,-0.761778369545937,-0.440274268388748,-1.08435307443142,-0.543010741472244,0.361198604106903,-1.22164690494537,-0.440128460526466,0.430939137935638,-1.16434267163277,-0.677264124155045,0.0703572034835815,-1.08659084141254,-0.7962666451931,-0.241294682025909,-1.02425117790699,-0.847349658608437,-0.256017491221428,-1.06909184157848,-0.742674067616463,0.0274530947208405,-1.17304649949074,-0.739782311022282, +0.072282612323761,-1.24243894219398,-0.822450100444257,0.253459483385086,-1.29521775245667,-0.502750052139163,0.794833488529548,-1.3996733725071,-0.284466773271561,0.807406567502767,-1.31761595606804,-0.402158200740814,0.522336306981742,-1.18537296354771,-0.622379511594772,0.124564662575722,-1.21525320410728,-0.590856596827507,0.254439055919647,-1.36299476027489,-0.655184157192707,0.367481276392937,-1.34483098983765,-0.863296982832253,0.281536370515823,-1.78544759750366,-0.436314742080867,0.369923394173384,-1.7008563876152,-0.253108527511358,0.568055301904678,0.25978022813797,0.962555378675461,0.731236547231674,0.0841711163520813,1.07790386676788,0.30395489372313,0.141446173191071,0.234698444604874,0.738057933747768,0.327230870723724,0.376838911324739,0.972449362277985,0.423100590705872,0.791948437690735,0.857030227780342,0.333611905574799,0.773445874452591,0.636981546878815,0.347804069519043,0.480303063988686,0.570558197796345,0.4801145195961,0.433744851499796,0.68575073312968,0.69696769118309,0.683454237878323,0.736378137953579,0.62625327706337,0.911849565804005,0.61999899148941,0.509289681911469,0.860891354619525,0.552532151341438,0.172399759292603,0.746731042861938,0.587453991174698,0.151031970977783,0.843565568327904,1.03666207194328,0.398988753557205,0.807546951808035,1.1065910756588,0.558009475469589,0.753673613071442,0.852586030960083,0.667764216661453,0.666364055126905,0.970314234495163,0.810211904346943,0.854841530323029,1.17327490448952,0.724706128239632,0.953819908201694,1.08605271577835,0.380229353904724,0.79344043135643,0.811186984181404,0.529327422380447,0.893662422895432,0.91094383597374,0.64928050339222,1.16089877486229,1.11817044019699,0.400673512369394,1.02471082285047,1.04203340411186,0.654199510812759,0.847972586750984,1.27012661099434,0.633812502026558,1.13503402471542,0.953392408788204,0.355319324880838,1.19115664064884,1.04150715470314,0.303494200110435,0.992614887654781,1.38105535507202,0.427759498357773,0.669483928009868,1.64631730318069,0.560304820537567,1.67755967378616,0.832586973905563, +0.343930348753929,1.81080657243729,0.534245550632477,0.375133313238621,1.54884678125381,0.798994090408087,0.555209845304489,1.75486421585083,0.596207976341248,0.504706829786301,1.52028864622116,0.981825292110443,0.465069369034154,1.52349001169205,1.04592943191528,0.469716182512911,1.69990855455399,0.808301895856857,0.536823913455009,1.78236150741577,0.542457275092602,0.470735013484955,1.66043770313263,0.95240518450737,0.33387761430231,1.65092486143112,1.01021954417229,0.297059609915124,1.72595465183258,0.729380682110786,0.27119950893055,1.69153690338135,0.779566422104836,0.266501060290011,1.59164476394653,1.11365535855293,0.406901560723782,1.52176183462143,1.05613893270493,-0.100846465360064,1.6130183339119,0.900492273271084,0.27942763881174,1.38624605536461,-0.374789088964462,0.561695591167791,1.46458119153976,0.382654637098312,0.459349839016795,1.55632025003433,0.697411444038153,0.390651009976864,1.47188299894333,1.11642390489578,0.519307337701321,0.680022969841957,-0.320886075496674,0.855775712057948,0.582211315631866,0.263969153165817,1.06313290446997,0.664614760316908,0.603157594799995,1.04128700122237,0.901253396645188,0.387104284018278,0.445575758814812,0.928794145584106,-0.765792444348335,0.510798029601574,1.47820803523064,-0.500465132296085,0.574543200433254,0.756662771105766,-0.292564332485199,0.427825834602118,0.611639320850372,-0.43081459403038,0.929435070604086,0.725066602230072,0.0165880918502808,0.658016763627529,1.41881728172302,0.470674812793732,1.14904296398163,0.595181994140148,0.197263181209564,1.24984148144722,0.743428140878677,0.0101923048496246,1.03834919631481,0.80061012506485,0.22056270390749,0.408280935138464,1.8230619430542,0.412234783172607,1.30008539557457,0.809837155044079,0.123495519161224,1.42287570238113,0.837849784642458,0.0486102700233459,1.59434998035431,0.326643496751785,0.390464745461941,1.18031018972397,1.46926194429398,0.330614682286978,1.44288510084152,0.848314131610096,0.227112336084247,1.35375609993935,0.839772496372461,0.408278413116932,0.879482269287109,0.952231168746948, +-0.112636804580688,1.01323449611664,0.480985999107361,-0.448818773031235,0.963889926671982,1.51455760002136,0.0672286450862885,1.08258134126663,0.497029796242714,0.114666819572449,1.00470560789108,1.5387020111084,0.41222171112895,1.39992654323578,0.336863398551941,0.254062503576279,1.06728380918503,0.840083070099354,0.678668513894081,1.6351403594017,-0.408198446035385,0.300432562828064,1.15170529484749,1.09195774793625,-0.443478733301163,1.17184013128281,0.625870874151587,-0.376455098390579,1.16680511832237,-0.514135286211967,-0.210811674594879,1.38111066818237,-0.616232499480247,-0.365365266799927,1.24035313725471,-0.716003447771072,-0.429137527942657,1.09353148937225,-0.513683825731277,-0.246519386768341,0.709663867950439,-1.0213965177536,-0.372934401035309,0.6684610247612,-1.17865699529648,-0.558192223310471,1.19340249896049,0.579855173826218,0.588152568787336,1.47638010978699,-0.0903341472148895,0.385040104389191,1.30833834409714,-0.499754756689072,0.36495515704155,1.25523287057877,-0.816163912415504,0.050129234790802,1.27343708276749,-0.847791083157063,0.090074211359024,1.2998360991478,-0.490287914872169,0.346630573272705,1.08553528785706,-0.620635777711868,0.192968130111694,1.06815800070763,-0.956273779273033,-0.0894255042076111,0.773693114519119,0.0211747884750366,0.459622390568256,1.37769389152527,-0.823745034635067,0.472674660384655,1.27056023478508,-0.7634910158813,0.441069908440113,1.23219898343086,-0.888778049498796,0.121821284294128,0.998053804592473,0.73536573536694,0.655467100441456,1.00289767980576,0.662523489445448,0.537111461162567,0.816046327352524,0.0911439508199692,0.580819189548492,0.915168198635342,0.0801996961236,0.59291610121727,0.482928305864334,0.966414570808411,1.12249898910522,0.999045133590698,0.468269646167755,0.761516945436597,0.924433715641499,0.669971977360547,0.697767671197653,0.773499712347984,0.171650569885969,0.902592729777098,0.702909469604492,-0.5120385941118,0.742803875356913,0.820282712578773,-0.579434264451265,0.736533094197512,0.898523658514023,0.189497401937842,0.892779417335987, +0.772588834166527,0.177659049630165,0.889936871826649,0.140482026030782,0.566242575645447,0.0740536451339722,0.151056855916977,-0.119666785001755,0.0554525256156921,0.0645986646413803,-0.918404132127762,-0.134298384189606,0.31282300005023,-0.633137196535245,-0.173405170440674,0.139150604605675,-0.0933593362569809,0.0648818016052246,0.287638731300831,0.364852160215378,-0.134946346282959,0.502506166696548,1.15874707698822,0.477206259965897,0.0812751352787018,0.0623888000845909,0.0290787816047668,-0.371769949793816,-0.10724076628685,-0.107100963592529,0.199960932135582,-0.0697633177042007,0.08550626039505,0.0258536636829376,-0.0997087508440018,0.0372614860534668,0.0216173827648163,-0.486918035894632,-0.0985488295555115,0.570291273295879,0.446717634797096,-0.091952919960022,0.468268631026149,0.433664247393608,-0.103400349617004,0.86535107344389,0.719235315918922,0.662560284137726,0.961468204855919,-0.00877925753593445,0.306401073932648,0.169044135138392,1.25224632024765,-0.0656377077102661,0.712059513286931,0.574357807636261,0.0196852684020996,0.715243133594754,0.00880149006843567,0.305856227874756,0.690401069819927,-0.0096823126077652,0.19558846950531,0.93279092758894,0.0827149897813797,0.438382029533386,0.837141009857419,0.0635102242231369,0.449118494987488,0.765008779860182,-0.0311751365661621,1.01274111866951,1.06509354710579,-0.814203515648842,0.372301161289215,0.459426067769527,0.977981582283974,0.527239054441452,1.10318037867546,-0.632681854069233,0.402080208063126,1.21493142843246,-0.588079117238522,0.410405874252319,0.987127169966698,-0.0535935461521149,0.350341618061066,1.43865764141083,-0.0923182219266891,0.31419712305069,1.37763607501984,0.382161863148212,0.200097918510437,1.01888102293015,0.928567364811897,1.09998059272766,1.34499967098236,-0.528316669166088,0.456710159778595,0.808585375547409,1.3264417052269,0.228611767292023,1.20486760139465,0.552826926112175,0.303956538438797,1.29403340816498,0.0832854732871056,0.488242894411087,1.21494269371033,0.121055033057928,0.342448890209198,1.24551522731781,0.555874157696962, +0.404363006353378,1.02180328220129,0.588662192225456,0.438736408948898,0.668595507740974,1.02914632856846,1.17977285385132,1.37355017662048,-0.68688040971756,0.702538311481476,0.842608273029327,1.05210484564304,0.735881447792053,1.21667198836803,0.180716570466757,0.835991412401199,1.28575778007507,-0.525613484089263,0.65943107008934,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.78611499071121,-0.21989156678319,0.59209905192256,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.02419292926788,0.0764340758323669,-0.0708325556479394,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691, +0.572726845741272,-1.44961768388748,-0.170815855264664,0.879621371626854,-1.30846068263054,-0.0885840952396393,1.06163559854031,-0.862930417060852,-0.786706410348415,0.966630272567272,-0.783637702465057,-0.0855450630187988,0.308812448754907,-1.8214396238327,-0.414695728570223,0.595581158995628,-1.87424182891846,-0.318094305694103,0.435193043202162,-1.40659564733505,-0.58306597173214,0.425749398767948,-1.32895568013191,-0.645616367459297,0.501435033977032,-1.5719318985939,-0.650973040610552,0.79965104162693,-1.15889459848404,0.295517385005951,0.377307236194611,-1.2703355550766,-1.08695983886719,0.164914147928357,-1.28612872958183,-0.877199165523052,0.207011729478836,-1.67113381624222,-0.183345466852188,0.291472487151623,-1.8032231926918,-0.349749609827995,0.275835789740086,-1.29034394025803,-0.897424504160881,0.348542163148522,-0.788839101791382,-0.0967389941215515,0.122924784198403,-1.77498817443848,-0.492367330938578,0.569765031337738,-1.6297949552536,-0.0103877186775208,0.388572677969933,-1.20050573348999,-0.573832720518112,0.585737764835358,-1.14100241661072,-0.271668195724487,0.409073553979397,-1.61506539583206,0.0121762156486511,0.389059722423553,-0.782512199133635,-0.0193853378295898,1.03332425653934,-0.620168149471283,-0.615158140659332,1.00205133110285,-0.650600135326385,-0.990871489048004,1.19625824689865,-0.946663498878479,0.274975199252367,1.69734984636307,-1.21687895059586,0.17560026049614,1.36874729394913,-0.705193132162094,-0.676108226180077,1.47644919157028,-0.6617571413517,-0.0412291586399078,1.68612033128738,-1.17464932799339,-0.0120724141597748,1.4849636554718,-1.42219150066376,-0.370947055518627,1.18990007042885,-0.863454222679138,-0.644832298159599,1.16303789615631,-0.945033699274063,-0.263474702835083,1.19791233539581,-0.926153749227524,0.600988358259201,1.60539907217026,-0.905505448579788,0.91586072742939,1.33666396141052,-1.09323212504387,0.837839931249619,1.29540640115738,-1.47453153133392,0.559504054486752,0.982951909303665,-1.37663233280182,0.142712522298098,1.39431583881378,-0.866706430912018, +0.278205990791321,1.33493316173553,-1.06039163470268,0.228415977209806,1.64357048273087,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241, +0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013, +0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338, +-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331, +1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489, +0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368, +-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198, +-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207, +-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026, +-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084, +-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669, +0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093, +-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708, +-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439, +-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937, +0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039, +1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407, +0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795, +0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304, +-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519, +0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928, +1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978, +0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073, +1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912, +-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536, +1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127, +0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893, +-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072, +0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675, +0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155, +0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933, +0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192, +0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.36057752370834,0.0150644034147263,0.473320543766022,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049, +1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384, +1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423, +-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204, +0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011, +0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994, +0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311, +0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383, +-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517, +-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139, +1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198, +1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082, +0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835, +0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964, +-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651, +0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508, +-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456, +0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079, +1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721, +1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455, +1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495, +1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719, +1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466, +1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771, +1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202, +-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848, +-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612, +-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242, +0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181, +-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855, +-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711, +-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518, +0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979, +-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534, +-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875, +-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252, +-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172, +-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547, +-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015, +0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835, +-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528, +-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414, +-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398, +0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798, +0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311, +-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775, +-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194, +-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996, +-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797, +0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146, +-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401, +-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144, +-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578, +-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146, +-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273, +-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938, +-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377, +0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444, +-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755, +0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208, +-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682, +-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201, +-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424, +-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353, +-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819, +-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789, +-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984, +-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211, +-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374, +-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726, +-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611, +-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045, +-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669, +-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468, +-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811, +0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817, +-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923, +-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899, +-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841, +-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172, +0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915, +0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966, +-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318, +0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223, +0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276, +-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637, +-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695, +-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132, +0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158, +0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566, +-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864, +0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.61700159311295,0.242999859154224,-0.226044476032257,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749, +0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271, +-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615, +0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.195959150791168,-0.575261430814862,-0.894015341997147,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.602815747261047,0.724253341555595,-0.250332050025463,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.412802875041962,0.321322411298752,0.151383817195892,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578, +-0.45786190405488,-1.36317935585976,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.485692828893661,0.776657424867153,-0.0338609218597412,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,0.39135280251503,-0.0228843092918396,-0.760021790862083,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.244752883911133, +-0.12813925743103,-1.25832629203796,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.11522588133812,-0.587622791528702,-1.57549560070038,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174, +-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442,-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.338748961687088,-0.697140499949455, +-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,0.283098638057709,-1.00639636814594,-1.30733358860016,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422, +-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877, +-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254, +-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621, +-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001, +-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877, +-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891, +0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541, +0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664, +0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.853419095277786,0.742612265050411,0.394881129264832,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906, +1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.847664967179298,0.129295632243156,1.61521798372269,-0.684355914592743,0.117605954408646,1.70955836772919,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142,1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853,0.654984444379807,1.31444895267487,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213, +-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223, +-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912, +-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293, +-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346, +0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-1.53508454561234,0.0403727740049362,0.72396445274353,-0.936012446880341,0.940078016370535,0.665666535496712,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193, +0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-1.34120434522629,0.59242832660675,0.600063428282738,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537, +-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552, +0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958, +-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744, +-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727, +0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681, +-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475, +-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397, +0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276, +0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247, +-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965, +-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,-0.605291366577148,0.27814160194248,-1.08560347557068,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.824516475200653,-1.17877915501595,0.0225204229354858,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.714810416102409,0.279693081974983,-0.203442215919495,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111, +-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226, +-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074, +-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805454334016, "Geometry::Mouth_Lower_DownLeft", "Shape" { + Version: 100 + Indexes: *1419 { + a: 5880,5881,5883,5884,5886,5888,5890,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6016,6019,6025,6026,6027,6028,6029,6030,6031,6032,6033,6035,6036,6040,6042,6044,6045,6046,6047,6048,6049,6050,6051,6052,6056,6057,6058,6060,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6074,6075,6078,6082,6083,6084,6085,6086,6087,6088,6089,6090,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578, +6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7172,7180,7183,7184,7186,7189,7193,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7208,7221,7222,7223,7224,7225,7226,7228,7233,7234,7235,7236,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7364,7367,7369,7373,7374,7377,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7398,7401,7407,7408,7409,7410,7411,7412,7413,7414,7415,7417,7418,7421,7422,7424,7426,7427,7428,7429,7430,7431,7432,7433,7434,7438,7439,7440,7442,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7456,7457,7460,7464,7465,7466,7467,7468,7469,7470,7471,7472,7474,7475,7478,7480,7481,7484,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541, +7542,7543,7545,7549,7559,7573,7575,7577,7578,7580,7581,7582,7587,7591,7592,7593,7594,7595,7596,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7761,7766,7767,7768,7769,7772,7773,7774,7775,7776,7784,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178, +8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8568,8570,8572,8575,8576,8577,8578,8579,8580,8581,8582,8583,8585,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8608,8609,8610,8611,8618,8619,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8766,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8791,8792,8793,8794,8795,8796,8797,8798 + } + Vertices: *4257 { + a: 0,8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0.00497248682950158,-0.548084735870361,-0.0485563278198242,0.00417620504595106,-0.563624382019043,-0.0475301742553711,0.00435526434739586,-0.555325984954834,-0.0480413436889648,0.00472632844321197,-0.565429210662842,-0.0475082397460938,0.0003048554117413,-0.182418823242188,-0.0159969329833984,0.00335480239300523,-0.365375518798828,-0.0323753356933594,0,-6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.2552433013916e-06,0,0,2.08616256713867e-06,0,0,4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-2.08616256713867e-06,0,0,6.07967376708984e-06,0,0,4.11272048950195e-06,0,0,8.58306884765625e-06,0,0,6.07967376708984e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,2.88486480712891e-05,-0.000675678253173828,-1.81198120117188e-05,2.76565551757813e-05,-0.000678062438964844,-1.9073486328125e-05,0.00017094612121582,-0.00409936904907227,-0.000115394592285156,0.000173091888427734,-0.00410127639770508,-0.000120162963867188,0.00176191329956055,-0.0390834808349609,-0.00142669677734375, +0.00166797637939453,-0.039097785949707,-0.00132179260253906,0.00432300567626953,-0.0943741798400879,-0.00426387786865234,0.00411057472229004,-0.0944113731384277,-0.00402450561523438,0.00689554214477539,-0.160648822784424,-0.00858211517333984,0.00699412822723389,-0.160629749298096,-0.0089569091796875,0.00916850566864014,-0.242638111114502,-0.0158901214599609,0.00911581516265869,-0.242584705352783,-0.0165596008300781,0.00955605506896973,-0.316099166870117,-0.0237951278686523,0.00906503200531006,-0.316031455993652,-0.0243692398071289,0.00808817148208618,-0.38785982131958,-0.0318822860717773,0.00742655992507935,-0.387808322906494,-0.0322637557983398,0.00476086139678955,-0.465483665466309,-0.0401735305786133,0.00433620810508728,-0.465532779693604,-0.0402641296386719,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,2.83718109130859e-05,-0.000684261322021484,-1.9073486328125e-05,0.000172615051269531,-0.00409364700317383,-0.000118255615234375,0.00173592567443848,-0.0391020774841309,-0.00137519836425781,0.00426602363586426,-0.0943880081176758,-0.00411224365234375,0.00706684589385986,-0.160632133483887,-0.00872230529785156,0.00937855243682861,-0.242619514465332,-0.0162086486816406,0.00958573818206787,-0.316060543060303,-0.0240983963012695,0.00799673795700073,-0.387836456298828,-0.0320215225219727,0.00471046566963196,-0.465488433837891,-0.0401906967163086,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,2.88486480712891e-05,-0.00067138671875,-1.81198120117188e-05,0.000173568725585938,-0.00408506393432617,-0.000120162963867188,0.00177097320556641,-0.0390958786010742,-0.00140762329101563,0.00435376167297363,-0.0943822860717773,-0.00420379638671875,0.00709772109985352,-0.160627841949463,-0.00886917114257813,0.00930821895599365,-0.24258279800415,-0.0164308547973633,0.0093611478805542,-0.316047668457031,-0.0242681503295898,0.00772321224212646,-0.387836456298828,-0.0321779251098633,0.00454488396644592,-0.465593338012695,-0.0402345657348633,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06, +0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,8.34465026855469e-06,-0.000238895416259766,-3.814697265625e-06,5.26905059814453e-05,-0.00137615203857422,-3.24249267578125e-05,0.000499963760375977,-0.0130290985107422,-0.000383377075195313,0.00122761726379395,-0.0314841270446777,-0.00122451782226563,0.00145566463470459,-0.155152320861816,-0.0133819580078125,0.00245857238769531,-0.129283428192139,-0.0106134414672852,0.00291895866394043,-0.105371952056885,-0.00792312622070313,0.00279653072357178,-0.0808711051940918,-0.0052490234375,0.00210881233215332,-0.0535497665405273,-0.00275802612304688,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,1.83582305908203e-05,-0.000444889068603516,-1.04904174804688e-05,0.000111579895019531,-0.0027313232421875,-7.2479248046875e-05,0.00106692314147949,-0.0260767936706543,-0.000834465026855469,0.00261330604553223,-0.0629329681396484,-0.00260543823242188,0.00442695617675781,-0.107118606567383,-0.00565147399902344,0.0058671236038208,-0.161768913269043,-0.0105381011962891,0.0061410665512085,-0.210727691650391,-0.0158357620239258,0.00522565841674805,-0.258561134338379,-0.0212469100952148,0.00307896733283997,-0.310317039489746,-0.0267753601074219,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05, +0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05, +0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.05636024475098e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,2.0638108253479e-06,0,0,-6.18398189544678e-06,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06, +0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06, +0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06, +0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05, +0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-0.125165939331055,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,0,0,-1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,2.50339508056641e-05,-0.000678062438964844,-1.71661376953125e-05,0.000157594680786133,-0.0040888786315918,-0.000111579895019531,0.00160455703735352,-0.0391020774841309,-0.00137901306152344,0.00396609306335449,-0.0943760871887207,-0.00427341461181641,0.00645017623901367,-0.160614967346191,-0.00903701782226563,0.00844407081604004,-0.242574214935303,-0.016636848449707,0.00854134559631348,-0.316035270690918,-0.0244255065917969,0.00707042217254639,-0.387808322906494, +-0.0322942733764648,0.00412115454673767,-0.465522289276123,-0.0402717590332031,0.00387136058270698,-0.562459945678711,-0.0475521087646484,0,1.04904174804688e-05,0,0,-0.293715953826904,0,0,-0.594390869140625,0,0,-0.670866012573242,0,0,-0.72140645980835,0,4.29153442382813e-06,-0.731537342071533,0,0.0031350325079984,-0.729241847991943,0.000248908996582031,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0.00113272666931152,-0.000380992889404297,-0.000149726867675781,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0.00057220458984375,-0.000192642211914063,-7.62939453125e-05,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-0.000138282775878906,-0.00335359573364258,-9.1552734375e-05,-0.000141382217407227,-0.00335597991943359,-9.63211059570313e-05,-0.000836849212646484,-0.0200638771057129,-0.000566482543945313,-0.00085139274597168,-0.020045280456543,-0.000585556030273438,0.0105223655700684,-0.275701999664307,-0.00945758819580078, +0.0160839557647705,-0.188828468322754,-0.00928401947021484,0.128478765487671,-0.484806537628174,-0.0395536422729492,0.181526660919189,-0.465046882629395,-0.0455951690673828,0.321631669998169,-0.741750717163086,-0.0801725387573242,0.182223200798035,-0.612441062927246,-0.0649843215942383,0.260512948036194,-0.880172729492188,-0.0922937393188477,0.277344346046448,-0.775943279266357,-0.105476379394531,0.287640810012817,-0.889443874359131,-0.104708671569824,0.304984211921692,-0.937394618988037,-0.106192588806152,0.191274523735046,-0.816108226776123,-0.0884895324707031,0.169410407543182,-0.895352840423584,-0.0811996459960938,0.0576695799827576,-0.660966873168945,-0.0640077590942383,0.0380387008190155,-0.717542171478271,-0.0578584671020508,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-0.000139951705932617,-0.00336217880249023,-9.44137573242188e-05,-0.000844955444335938,-0.0200371742248535,-0.000576972961425781,0.0149757862091064,-0.182690143585205,-0.00959110260009766,0.195186138153076,-0.432412147521973,-0.0476484298706055,0.337922334671021,-0.681324005126953,-0.0844602584838867,0.386741161346436,-0.809456348419189,-0.118122100830078,0.389187693595886,-0.912434101104736,-0.119653701782227,0.234145522117615,-0.870603084564209,-0.0920467376708984,0.0672255158424377,-0.705062389373779,-0.0629396438598633,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,6.72340393066406e-05,-2.33650207519531e-05,-8.58306884765625e-06,0.000461578369140625,-0.00014495849609375,-6.00814819335938e-05,0,-1.04904174804688e-05,0,-0.000140905380249023,-0.00336980819702148,-9.5367431640625e-05,-0.000849008560180664,-0.0200495719909668,-0.000583648681640625,0.0114765167236328,-0.1755051612854,-0.00948238372802734,0.15228796005249,-0.407019138336182,-0.0425567626953125,0.257792949676514,-0.628143310546875,-0.0752763748168945,0.325756549835205,-0.762980461120605,-0.113333702087402,0.362725496292114,-0.923375129699707,-0.115665435791016,0.21198308467865,-0.898251533508301,-0.0873584747314453,0.0530782341957092,-0.722977161407471,-0.0598583221435547, +0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,-4.31537628173828e-05,-0.00112438201904297,-2.19345092773438e-05,-0.000258207321166992,-0.00669097900390625,-0.000153541564941406,0.0141499042510986,-0.0776057243347168,-0.0071868896484375,0.121555805206299,-0.263933658599854,-0.0142650604248047,0.0299618542194366,-0.227768898010254,-0.0224905014038086,0.122154951095581,-0.3158860206604,-0.035700798034668,0.15530002117157,-0.348066329956055,-0.0407819747924805,0.100840449333191,-0.473615169525146,-0.0424022674560547,0.181271553039551,-0.4158616065979,-0.0803050994873047,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,-9.13143157958984e-05,-0.00225734710693359,-5.62667846679688e-05,-0.000546455383300781,-0.0133605003356934,-0.000356674194335938,0.00746440887451172,-0.124982357025146,-0.00553321838378906,0.134799242019653,-0.345272541046143,-0.0343046188354492,0.263775825500488,-0.541497230529785,-0.0651464462280273,0.182172775268555,-0.640108108520508,-0.0618410110473633,0.258599400520325,-0.624015331268311,-0.0779609680175781,0.199482977390289,-0.574315547943115,-0.0680780410766602,0.0555310249328613,-0.445511341094971,-0.044947624206543,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0.021773099899292,-0.0238652229309082,0.000736236572265625,0,-1.04904174804688e-05,0,0.000370532274246216,-0.000278472900390625,-4.00543212890625e-05,0.0154443979263306,-0.0115947723388672,-0.00166606903076172,0.0260686874389648,-0.0203762054443359,-0.00623416900634766,0.14681088924408,-0.0818672180175781,-0.0597782135009766,0.243725299835205,-0.113347053527832,-0.0929985046386719,0.163993120193481,-0.174602508544922,-0.0414905548095703,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06, +0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0.00545048713684082,-0.00289821624755859,-0.00213623046875,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,-0.000940561294555664,0.00029754638671875,0.000397682189941406,0.088651180267334,-0.0675191879272461,-0.0163068771362305,0.174848794937134,-0.141706466674805,-0.0596170425415039,0.219730138778687,-0.122831344604492,-0.109250068664551,0.1439129114151,-0.0647592544555664,-0.0815811157226563,0.0266549587249756,-0.00977802276611328,-0.0179338455200195,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06, +0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0.00027775764465332,-0.000945091247558594,-0.000173568725585938,0.0937416553497314,-0.108132362365723,-0.0215005874633789,0.0438785552978516, +-0.105669975280762,-0.0109701156616211,0.212418794631958,-0.179454803466797,-0.0837669372558594,0.174186229705811,-0.0958642959594727,-0.0681295394897461,0.00127434730529785,-0.00134181976318359,-0.000440597534179688,0.0795769691467285,-0.0723543167114258,-0.0287027359008789,0.201508045196533,-0.163234710693359,-0.0896081924438477,0.0491526126861572,-0.0349664688110352,-0.0228328704833984,0.000831007957458496,-0.000875473022460938,-0.000287055969238281,0.00208234786987305,-0.00147533416748047,-0.000783920288085938,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.08616256713867e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,2.0638108253479e-06,0,0,-6.15417957305908e-06,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06, +0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06, +0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06, +0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0, +0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,-0.160641670227051,0,-1.9073486328125e-06,-0.369204521179199,0,8.58306884765625e-06,-0.449555397033691,0,1.9073486328125e-06,-0.375125885009766,0,0,-0.417221069335938,0.0233571529388428,-0.0369486808776855,-0.462124824523926,0.000219345092773438,-0.11104679107666,-0.445558547973633,0.00853723287582397,-0.194488525390625,-0.313217163085938,0.00408732891082764,-0.222535610198975,-0.11424446105957,0.000196278095245361,-0.185385227203369,-0.0578193664550781,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0.0014042854309082,-0.000472545623779297,-0.000185012817382813,0,-1.04904174804688e-05,0,-0.000128507614135742,-0.00335597991943359,-8.7738037109375e-05,-0.000771522521972656,-0.0200533866882324,-0.000551223754882813,-0.00309538841247559,-0.340774536132813,-0.00697517395019531,0.0789673328399658,-0.48833703994751,-0.0323381423950195,0.183896780014038,-0.690641403198242,-0.0647144317626953,0.223771810531616,-0.788996696472168,-0.095576286315918,0.288812398910522,-0.930753231048584,-0.104083061218262,0.161680936813354,-0.890554904937744,-0.0802450180053711,0.03642937541008,-0.714728355407715,-0.0577220916748047,0,1.04904174804688e-05,0,0,-4.29153442382813e-06,-0.0955801010131836,0,1.9073486328125e-06, +-0.110593795776367,0,-4.29153442382813e-06,-0.240964889526367,0.000408649444580078,-0.415371894836426,-0.233325004577637,0.0615160465240479,-0.645479202270508,-0.173598289489746,0.0748404264450073,-0.82729434967041,-0.131120681762695,0.171642065048218,-0.91435718536377,-0.223723411560059,0.16468334197998,-0.956822395324707,-0.216363906860352,0.109791815280914,-0.865742206573486,-0.13390064239502,0.0293015241622925,-0.783292293548584,-0.0689687728881836,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0.00594437122344971,-0.00591850280761719,-0.000782966613769531,0.00511729717254639,-0.00520133972167969,-0.000662803649902344,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,-6.19888305664063e-06,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.11272048950195e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06, +0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,2.05636024475098e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0,0,-4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0 + } + Normals: *4257 { + a: -0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222, +0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473, +0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255, +0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559, +0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959, +0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158, +0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634, +0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714, +-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903, +-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921, +-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886, +-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733, +0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923, +-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427, +0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116, +0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356, +1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.180295750498772,0.379578433930874,1.83726984262466,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088, +-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306, +-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.941988617181778,0.707468748092651,0.298143722116947,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512, +-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959, +-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-0.917033791542053,-0.152083143591881,0.0715253353118896,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186, +0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06437003612518,0.84141793847084,0.424562990665436,-0.981949830893427, +0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849, +-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606, +1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201, +0.0914812311530113,0.278137892484665,-1.453280210495,0.33342457190156,0.103442192077637,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-1.25451999902725,0.224796816706657,-0.214592695236206,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707, +-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421, +0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977, +0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048, +-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431, +-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508, +0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391, +0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877, +-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636, +-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.934356838464737,0.651812255382538,-0.385107487440109,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013, +0.297500908374786,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052, +0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382, +1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193, +-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925 + } + } + Geometry: 2805454333440, "Geometry::Mouth_Lower_DownRight", "Shape" { + Version: 100 + Indexes: *1417 { + a: 5880,5881,5883,5884,5886,5888,5890,5892,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5982,5985,5987,5991,5992,5995,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6016,6019,6025,6026,6027,6028,6029,6030,6031,6032,6033,6035,6036,6039,6040,6042,6044,6045,6046,6047,6048,6049,6050,6051,6052,6056,6057,6058,6060,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6074,6075,6078,6082,6083,6084,6085,6086,6087,6088,6089,6090,6092,6093,6096,6098,6099,6102,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6167,6177,6191,6193,6195,6196,6198,6199,6200,6205,6209,6210,6211,6212,6213,6214,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6379,6384,6385,6386,6387,6390,6391,6392,6393,6394,6402,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538, +6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7165,7172,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7186,7189,7191,7193,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7208,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7228,7233,7234,7235,7236,7243,7244,7248,7250,7252,7256,7268,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7398,7401,7407,7408,7409,7410,7411,7412,7413,7414,7415,7417,7418,7422,7424,7426,7427,7428,7429,7430,7431,7432,7433,7434,7438,7439,7440,7442,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7456,7457,7460,7464,7465,7466,7467,7468,7469,7470,7471,7472,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498, +7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159, +8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8564,8565,8568,8572,8575,8576,8577,8578,8579,8580,8581,8582,8583,8585,8598,8599,8600,8601,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *4251 { + a: 0,8.10623168945313e-06,0,0,-1.04904174804688e-05,0,-0.00497248714964371,-0.548084735870361,-0.0485563278198242,-0.00417620500229532,-0.563624382019043,-0.0475301742553711,-0.00435526437649969,-0.555325984954834,-0.0480413436889648,-0.00472632839955622,-0.565429210662842,-0.0475082397460938,-0.000304855429931195,-0.182418823242188,-0.0159969329833984,-0.0033548023639014,-0.365375518798828,-0.0323753356933594,0,-6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.2552433013916e-06,0,0,2.08616256713867e-06,0,0,4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-2.08616256713867e-06,0,0,6.07967376708984e-06,0,0,4.11272048950195e-06,0,0,8.58306884765625e-06,0,0,6.07967376708984e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,-0.00113272666931152,-0.000380992889404297,-0.000149726867675781,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,-0.00057220458984375,-0.000192642211914063,-7.62939453125e-05,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0.000138282775878906,-0.00335359573364258,-9.1552734375e-05,0.000141382217407227,-0.00335597991943359,-9.63211059570313e-05,0.000836849212646484,-0.0200638771057129,-0.000566482543945313, +0.000850915908813477,-0.0200457572937012,-0.000585556030273438,-0.0105223655700684,-0.275702476501465,-0.00945758819580078,-0.0160839557647705,-0.18882942199707,-0.00928401947021484,-0.128478765487671,-0.484806537628174,-0.0395536422729492,-0.181526660919189,-0.465046882629395,-0.0455951690673828,-0.321631669998169,-0.741750717163086,-0.0801725387573242,-0.182223320007324,-0.612441062927246,-0.0649843215942383,-0.260512948036194,-0.880172729492188,-0.0922937393188477,-0.277344346046448,-0.775943279266357,-0.105476379394531,-0.287640810012817,-0.889443874359131,-0.104708671569824,-0.304984211921692,-0.937394618988037,-0.106192588806152,-0.191274523735046,-0.816108226776123,-0.0884895324707031,-0.169410407543182,-0.895352840423584,-0.0811996459960938,-0.05766960978508,-0.660966873168945,-0.0640077590942383,-0.0380387008190155,-0.717542171478271,-0.0578584671020508,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0.000139951705932617,-0.00336217880249023,-9.44137573242188e-05,0.000844955444335938,-0.0200371742248535,-0.000576972961425781,-0.0149757862091064,-0.182689189910889,-0.00959110260009766,-0.195186138153076,-0.432412624359131,-0.0476484298706055,-0.337922334671021,-0.681324005126953,-0.0844602584838867,-0.386741161346436,-0.809456348419189,-0.118122100830078,-0.389187335968018,-0.912434101104736,-0.119653701782227,-0.23414534330368,-0.870603084564209,-0.0920467376708984,-0.067225456237793,-0.705062389373779,-0.0629396438598633,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,-6.72340393066406e-05,-2.33650207519531e-05,-8.58306884765625e-06,-0.000461578369140625,-0.00014495849609375,-6.00814819335938e-05,0,-1.04904174804688e-05,0,0.000140905380249023,-0.00336980819702148,-9.5367431640625e-05,0.000849008560180664,-0.0200495719909668,-0.000583648681640625,-0.0114767551422119,-0.175506114959717,-0.00948238372802734,-0.15228796005249,-0.407019138336182,-0.0425567626953125,-0.257792949676514,-0.628143310546875,-0.0752763748168945,-0.325756549835205,-0.762980461120605,-0.113333702087402,-0.362725377082825,-0.923375129699707, +-0.115665435791016,-0.211983025074005,-0.898251533508301,-0.0873584747314453,-0.0530782341957092,-0.722977161407471,-0.0598583221435547,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,4.31537628173828e-05,-0.00112438201904297,-2.19345092773438e-05,0.000258207321166992,-0.00669097900390625,-0.000153541564941406,-0.0141499042510986,-0.0776057243347168,-0.0071868896484375,-0.121555805206299,-0.263933658599854,-0.0142650604248047,-0.0299618542194366,-0.227768898010254,-0.0224905014038086,-0.122154951095581,-0.3158860206604,-0.035700798034668,-0.15530002117157,-0.348066329956055,-0.0407819747924805,-0.100840449333191,-0.473615169525146,-0.0424022674560547,-0.181271553039551,-0.4158616065979,-0.0803050994873047,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,9.13143157958984e-05,-0.00225734710693359,-5.62667846679688e-05,0.000546455383300781,-0.0133605003356934,-0.000356674194335938,-0.00746440887451172,-0.124982357025146,-0.00553321838378906,-0.134799242019653,-0.345272541046143,-0.0343046188354492,-0.263775825500488,-0.541497230529785,-0.0651464462280273,-0.182172775268555,-0.640108108520508,-0.0618410110473633,-0.258599400520325,-0.624015331268311,-0.0779609680175781,-0.199482977390289,-0.574315547943115,-0.0680780410766602,-0.0555310249328613,-0.445511341094971,-0.044947624206543,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,-0.021773099899292,-0.0238652229309082,0.000736236572265625,0,-1.04904174804688e-05,0,-0.000370532274246216,-0.000278472900390625,-4.00543212890625e-05,-0.0154443979263306,-0.0115947723388672,-0.00166606903076172,-0.0260686874389648,-0.0203762054443359,-0.00623416900634766,-0.14681088924408,-0.0818672180175781,-0.0597782135009766,-0.243725299835205,-0.113347053527832,-0.0929985046386719,-0.163993120193481,-0.174602508544922,-0.0414905548095703,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, +0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,-0.00545048713684082,-0.00289821624755859,-0.00213623046875,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0.000940561294555664,0.00029754638671875,0.000397682189941406,-0.088651180267334,-0.0675191879272461,-0.0163068771362305,-0.174848794937134,-0.141706466674805,-0.0596170425415039,-0.219730138778687,-0.122831344604492,-0.109250068664551,-0.1439129114151,-0.0647592544555664,-0.0815811157226563,-0.0266549587249756,-0.00977802276611328,-0.0179338455200195,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05, +0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05, +0,-0.00027775764465332,-0.000945091247558594,-0.000173568725585938,-0.0937416553497314,-0.108132362365723,-0.0215005874633789,-0.0438785552978516,-0.105669975280762,-0.0109701156616211,-0.212418794631958,-0.179454803466797,-0.0837669372558594,-0.174186229705811,-0.0958642959594727,-0.0681295394897461,-0.00127434730529785,-0.00134181976318359,-0.000440597534179688,-0.0795769691467285,-0.0723543167114258,-0.0287027359008789,-0.201508045196533,-0.163234710693359,-0.0896081924438477,-0.0491526126861572,-0.0349664688110352,-0.0228328704833984,-0.000831007957458496,-0.000875473022460938,-0.000287055969238281,-0.00208234786987305,-0.00147533416748047,-0.000783920288085938,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.05636024475098e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12017107009888e-06,0,0,2.0638108253479e-06,0,0,-6.18398189544678e-06,0,0,-4.12017107009888e-06,0,0,8.24034214019775e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.17232513427734e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05, +0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05, +0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06, +0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06,0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0, +0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,-0.125165939331055,0,0,-6.19888305664063e-06,0,0,-1.9073486328125e-06,-0.160641670227051,0,-1.9073486328125e-06,-0.369204521179199,0,8.58306884765625e-06,-0.449555397033691,0,1.9073486328125e-06,-0.375125885009766,0,0,-0.417221069335938,-0.0233571529388428,-0.0369510650634766,-0.462124824523926,-0.000219821929931641,-0.111046314239502,-0.445558547973633,-0.00853997468948364,-0.194486141204834,-0.313217163085938,-0.00408762693405151,-0.2225341796875,-0.11424446105957,-0.000199466943740845,-0.185388088226318,-0.0578193664550781,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-0.0014042854309082,-0.000472545623779297,-0.000185012817382813,0,-1.04904174804688e-05,0,0.000128507614135742,-0.00335597991943359,-8.7738037109375e-05,0.000771522521972656,-0.0200533866882324,-0.000551223754882813,0.00309538841247559,-0.340774536132813,-0.00697517395019531,-0.0789673328399658,-0.48833703994751,-0.0323381423950195,-0.183896780014038,-0.690641403198242,-0.0647144317626953,-0.223771810531616,-0.788996696472168,-0.095576286315918,-0.288812398910522,-0.930753231048584,-0.104083061218262, +-0.161680936813354,-0.890554904937744,-0.0802450180053711,-0.03642937541008,-0.714728355407715,-0.0577220916748047,-0.00387136053905124,-0.562459945678711,-0.0475521087646484,0,1.04904174804688e-05,0,0,-4.29153442382813e-06,-0.0955801010131836,0,1.9073486328125e-06,-0.110593795776367,0,-4.29153442382813e-06,-0.240964889526367,-0.000408649444580078,-0.415371894836426,-0.233325004577637,-0.0615160465240479,-0.645479202270508,-0.173598289489746,-0.0748379230499268,-0.827291488647461,-0.131120681762695,-0.171644806861877,-0.914356231689453,-0.223723411560059,-0.164683938026428,-0.95682430267334,-0.216363906860352,-0.109791696071625,-0.865742206573486,-0.13390064239502,-0.0293015837669373,-0.783292293548584,-0.0689687728881836,-0.00313503246434266,-0.729241847991943,0.000248908996582031,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,-0.00594437122344971,-0.00591850280761719,-0.000782966613769531,-0.00511729717254639,-0.00520133972167969,-0.000662803649902344,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-4.11272048950195e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,6.31809234619141e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,-2.02655792236328e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,-2.05636024475098e-06,0,0,6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06, +0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-2.88486480712891e-05,-0.000675678253173828,-1.81198120117188e-05,-2.76565551757813e-05,-0.000678062438964844,-1.9073486328125e-05,-0.00017094612121582,-0.00409936904907227,-0.000115394592285156,-0.000173091888427734,-0.00410127639770508,-0.000120162963867188,-0.00176191329956055,-0.0390834808349609,-0.00142669677734375,-0.00166797637939453,-0.039097785949707,-0.00132179260253906,-0.00432300567626953,-0.0943741798400879,-0.00426387786865234,-0.00411057472229004,-0.0944113731384277,-0.00402450561523438,-0.00689554214477539,-0.160648822784424,-0.00858211517333984,-0.00699412822723389,-0.160629749298096,-0.0089569091796875,-0.00916850566864014,-0.242638111114502,-0.0158901214599609,-0.00911581516265869,-0.242584705352783,-0.0165596008300781,-0.00955605506896973,-0.316099166870117,-0.0237951278686523,-0.00906503200531006,-0.316031455993652,-0.0243692398071289,-0.00808817148208618,-0.38785982131958,-0.0318822860717773,-0.00742655992507935,-0.387808322906494,-0.0322637557983398,-0.00476086139678955,-0.465483665466309,-0.0401735305786133,-0.00433620810508728,-0.465532779693604,-0.0402641296386719,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,-2.83718109130859e-05,-0.000684261322021484,-1.9073486328125e-05,-0.000172615051269531,-0.00409364700317383,-0.000118255615234375,-0.00173592567443848,-0.0391020774841309,-0.00137519836425781,-0.00426602363586426,-0.0943880081176758,-0.00411224365234375,-0.00706684589385986,-0.160632133483887,-0.00872230529785156,-0.00937855243682861,-0.242619514465332,-0.0162086486816406,-0.00958573818206787,-0.316060543060303,-0.0240983963012695,-0.00799673795700073,-0.387836456298828,-0.0320215225219727,-0.00471046566963196,-0.465488433837891,-0.0401906967163086,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-2.88486480712891e-05,-0.00067138671875,-1.81198120117188e-05,-0.000173568725585938,-0.00408506393432617, +-0.000120162963867188,-0.00177097320556641,-0.0390958786010742,-0.00140762329101563,-0.00435376167297363,-0.0943822860717773,-0.00420379638671875,-0.00709772109985352,-0.160627841949463,-0.00886917114257813,-0.00930821895599365,-0.24258279800415,-0.0164308547973633,-0.0093611478805542,-0.316047668457031,-0.0242681503295898,-0.00772321224212646,-0.387836456298828,-0.0321779251098633,-0.00454488396644592,-0.465593338012695,-0.0402345657348633,0,-6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,-8.34465026855469e-06,-0.000238895416259766,-3.814697265625e-06,-5.26905059814453e-05,-0.00137615203857422,-3.24249267578125e-05,-0.000499963760375977,-0.0130290985107422,-0.000383377075195313,-0.00122761726379395,-0.0314841270446777,-0.00122451782226563,-0.00145566463470459,-0.155152320861816,-0.0133819580078125,-0.00245857238769531,-0.129283428192139,-0.0106134414672852,-0.00291895866394043,-0.105371952056885,-0.00792312622070313,-0.00279653072357178,-0.0808711051940918,-0.0052490234375,-0.00210881233215332,-0.0535497665405273,-0.00275802612304688,0,8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,8.58306884765625e-06,0,-1.83582305908203e-05,-0.000444889068603516,-1.04904174804688e-05,-0.000111579895019531,-0.0027313232421875,-7.2479248046875e-05,-0.00106692314147949,-0.0260767936706543,-0.000834465026855469,-0.00261330604553223,-0.0629329681396484,-0.00260543823242188,-0.00442695617675781,-0.107118606567383,-0.00565147399902344,-0.0058671236038208,-0.161768913269043,-0.0105381011962891,-0.0061410665512085,-0.210727691650391,-0.0158357620239258,-0.00522565841674805,-0.258561134338379,-0.0212469100952148,-0.00307896733283997,-0.310317039489746,-0.0267753601074219,0,-8.58306884765625e-06,0,0,5.7220458984375e-06,0,0,5.7220458984375e-06,0,0,-8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06, +0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,4.17232513427734e-06,0,0,-2.02655792236328e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,-1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,2.14576721191406e-06,0,0,6.16908073425293e-06,0,0,2.02655792236328e-06,0,0,8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,1.02519989013672e-05,0,0,4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,-4.05311584472656e-06,0,0,8.24034214019775e-06,0,0,8.24034214019775e-06,0,0,8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-1.03116035461426e-05,0,0,-6.19888305664063e-06,0,0,6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.10623168945313e-06,0,0,-1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-4.29153442382813e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06, +0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-1.02519989013672e-05,0,0,-6.31809234619141e-06,0,0,-6.31809234619141e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-1.02519989013672e-05,0,0,-4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,4.29153442382813e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,6.07967376708984e-06,0,0,1.02519989013672e-05,0,0,-4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,-2.07126140594482e-06,0,0,8.58306884765625e-06,0,0,8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,2.08616256713867e-06,0,0,2.07126140594482e-06,0,0,-6.17280602455139e-06,0,0,1.02967023849487e-05, +0,0,4.14252281188965e-06,0,0,2.05636024475098e-06,0,0,-2.08616256713867e-06,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,6.16908073425293e-06,0,0,4.12389636039734e-06,0,0,2.0638108253479e-06,0,0,-6.15417957305908e-06,0,0,-4.12017107009888e-06,0,0,8.2552433013916e-06,0,0,-2.05636024475098e-06,0,0,4.14252281188965e-06,0,0,4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,-2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,-6.07967376708984e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.05311584472656e-06,0,0,4.17232513427734e-06,0,0,8.22544097900391e-06,0,0,6.31809234619141e-06,0,0,4.17232513427734e-06,0,0,-1.0371208190918e-05,0,0,-8.22544097900391e-06,0,0,2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.24034214019775e-06,0,0,-4.11272048950195e-06,0,0,6.16908073425293e-06,0,0,4.11272048950195e-06,0,0,-8.22544097900391e-06,0,0,6.16908073425293e-06,0,0,6.16908073425293e-06,0,0,1.02967023849487e-05,0,0,1.03116035461426e-05,0,0,-4.29153442382813e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-4.1276216506958e-06,0,0,1.03116035461426e-05,0,0,2.02655792236328e-06,0,0,4.05311584472656e-06,0,0,-8.22544097900391e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,-2.08616256713867e-06,0,0,8.2850456237793e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,8.34465026855469e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,-4.11272048950195e-06,0,0,4.11272048950195e-06,0,0,1.03116035461426e-05,0,0,-4.12017107009888e-06,0,0,-2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,2.02655792236328e-06, +0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,4.1276216506958e-06,0,0,6.31809234619141e-06,0,0,2.14576721191406e-06,0,0,-1.02519989013672e-05,0,0,-8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.29153442382813e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,-8.23661684989929e-06,0,0,-2.05636024475098e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,1.03116035461426e-05,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,1.02519989013672e-05,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,4.12017107009888e-06,0,0,4.12203371524811e-06,0,0,8.22544097900391e-06,0,0,-2.08616256713867e-06,0,0,-8.22544097900391e-06,0,0,6.07967376708984e-06,0,0,-1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,1.04904174804688e-05,0,0,2.02655792236328e-06,0,0,4.1276216506958e-06,0,0,6.19888305664063e-06,0,0,-8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,8.22544097900391e-06,0,0,-6.19888305664063e-06,0,0,6.18025660514832e-06,0,0,8.22544097900391e-06,0,0,-4.17232513427734e-06,0,0,-6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,4.11272048950195e-06,0,0,4.11993823945522e-06,0,0,-4.05311584472656e-06,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,2.14576721191406e-06,0,0,8.2850456237793e-06,0,0,8.24034214019775e-06,0,0,6.19888305664063e-06,0,0,-4.17232513427734e-06,0,0,6.19888305664063e-06,0,0,-8.34465026855469e-06,0,0,8.58306884765625e-06,0,0,6.16908073425293e-06,0,0,-1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-1.02519989013672e-05,0,0,8.22544097900391e-06,0,0,8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-1.03004276752472e-05,0,0,-8.2850456237793e-06,0,0,1.02519989013672e-05,0,0,-1.02519989013672e-05,0,0,1.04904174804688e-05,0,0,-6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.05311584472656e-06,0,0,-2.14576721191406e-06,0,0,-6.07967376708984e-06,0,0,-1.02519989013672e-05, +0,0,4.17232513427734e-06,0,0,4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-2.14576721191406e-06,0,0,8.22544097900391e-06,0,0,4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,6.18025660514832e-06,0,0,-8.2850456237793e-06,0,0,-4.17232513427734e-06,0,0,-8.34465026855469e-06,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-4.11272048950195e-06,0,0,2.14576721191406e-06,0,0,6.31809234619141e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-2.14576721191406e-06,0,0,2.08616256713867e-06,0,0,8.24034214019775e-06,0,0,-6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,-8.34465026855469e-06,0,0,6.19888305664063e-06,0,0,-1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,4.29153442382813e-06,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,4.29153442382813e-06,0,0,6.07967376708984e-06,0,0,2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-4.11988003179431e-06,0,0,4.11272048950195e-06,0,0,8.2552433013916e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-4.11272048950195e-06,0,0,8.23941081762314e-06,0,0,-4.14252281188965e-06,0,0,-8.22544097900391e-06,0,0,4.1276216506958e-06,0,0,4.11272048950195e-06,0,0,-2.14576721191406e-06,0,0,-6.16908073425293e-06,0,0,8.24034214019775e-06,0,0,-8.2850456237793e-06,0,0,-2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,2.14576721191406e-06,0,0,-6.31809234619141e-06,0,0,8.22544097900391e-06,0,0,-8.34465026855469e-06,0,0,-2.14576721191406e-06,0,0,-8.2850456237793e-06,0,0,-8.24034214019775e-06,0,0,4.11272048950195e-06,0,0,6.31809234619141e-06,0,0,6.07967376708984e-06,0,0,-6.31809234619141e-06,0,0,-8.2850456237793e-06,0,0,-1.02967023849487e-05,0,0,4.14252281188965e-06,0,0,4.17232513427734e-06,0,0,5.7220458984375e-06,0,0,-8.34465026855469e-06,0,0,5.7220458984375e-06,0,0,-6.19888305664063e-06,0,0,8.58306884765625e-06, +0,0,-8.34465026855469e-06,0,0,-4.29153442382813e-06,0,0,2.14576721191406e-06,0,0,4.05311584472656e-06,0,0,8.2552433013916e-06,0,0,8.2552433013916e-06,0,0,2.05636024475098e-06,0,0,4.11272048950195e-06,0,0,-6.07967376708984e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,-4.05311584472656e-06,0,0,-6.19888305664063e-06,0,0,-8.10623168945313e-06,0,0,-8.10623168945313e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,1.04904174804688e-05,0,0,8.10623168945313e-06,0,0,4.05311584472656e-06,0,0,6.19888305664063e-06,0,0,8.22544097900391e-06,0,0,4.05311584472656e-06,0,0,8.10623168945313e-06,0,0,2.0638108253479e-06,0,0,-4.12017107009888e-06,0,0,-6.16908073425293e-06,0,0,-8.2552433013916e-06,0,0,4.11272048950195e-06,0,0,-6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,-4.29153442382813e-06,0,0,-4.29153442382813e-06,0,0,1.04904174804688e-05,0,0,6.19888305664063e-06,0,0,-8.58306884765625e-06,0,0,-4.17232513427734e-06,0,0,-6.16908073425293e-06,0,0,8.58306884765625e-06,0,0,1.04904174804688e-05,0,0,4.05311584472656e-06,0,0,-4.11272048950195e-06,0,0,-6.31809234619141e-06,0,0,6.19888305664063e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,4.05311584472656e-06,0,0,-1.02967023849487e-05,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.31809234619141e-06,0,0,8.2552433013916e-06,0,0,8.34465026855469e-06,0,0,1.04904174804688e-05,0,0,8.58306884765625e-06,0,0,-1.04904174804688e-05,0,0,-1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-8.34465026855469e-06,0,0,1.02519989013672e-05,0,0,-8.34465026855469e-06,0,0,-6.19888305664063e-06,0,0,1.43051147460938e-06,0,0,1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,-2.50339508056641e-05,-0.000678062438964844,-1.71661376953125e-05,-0.000157594680786133, +-0.0040888786315918,-0.000111579895019531,-0.00160455703735352,-0.0391020774841309,-0.00137901306152344,-0.00396609306335449,-0.0943760871887207,-0.00427341461181641,-0.00645017623901367,-0.160614967346191,-0.00903701782226563,-0.00844407081604004,-0.242574214935303,-0.016636848449707,-0.00854134559631348,-0.316035270690918,-0.0244255065917969,-0.00707042217254639,-0.387808322906494,-0.0322942733764648,-0.00412115454673767,-0.465522289276123,-0.0402717590332031,0,1.04904174804688e-05,0,0,-0.293715953826904,0,0,-0.594390869140625,0,0,-0.670866012573242,0,0,-0.72140645980835,0,-4.29153442382813e-06,-0.731537342071533,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-8.58306884765625e-06,0,0,-8.58306884765625e-06,0,0,-6.19888305664063e-06,0,0,-1.02519989013672e-05,0,0,8.58306884765625e-06,0,0,6.19888305664063e-06,0,0,8.10623168945313e-06,0,0,4.29153442382813e-06,0,0,1.02519989013672e-05,0,0,8.10623168945313e-06,0,0,-6.19888305664063e-06,0,0,1.04904174804688e-05,0,0,-8.58306884765625e-06,0,0,-1.02519989013672e-05,0,0,2.08616256713867e-06,0,0,-1.03116035461426e-05,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-8.2552433013916e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-6.16908073425293e-06,0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,4.17232513427734e-06,0,0,8.2850456237793e-06,0,0,-6.19888305664063e-06,0,0,4.05311584472656e-06,0,0,6.31809234619141e-06,0,0,-2.14576721191406e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,1.02519989013672e-05,0,0,6.19888305664063e-06,0,0,4.17232513427734e-06,0,0,-8.22544097900391e-06,0,0,6.19888305664063e-06,0,0,-2.05636024475098e-06,0,0,-8.2552433013916e-06,0,0,2.07126140594482e-06,0,0,-4.11272048950195e-06,0,0,-6.16908073425293e-06, +0,0,4.14252281188965e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-4.11272048950195e-06,0,0,6.19888305664063e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-4.1276216506958e-06,0,0,-8.22544097900391e-06,0,0,-8.22544097900391e-06,0,0,8.2552433013916e-06,0,0,-6.16908073425293e-06,0,0,-4.11272048950195e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-8.22544097900391e-06,0,0,-4.11272048950195e-06,0,0,8.34465026855469e-06,0,0,-4.05311584472656e-06,0,0,2.14576721191406e-06,0,0,-2.14576721191406e-06,0,0,-8.22544097900391e-06,0,0,-2.02655792236328e-06,0,0,-2.02655792236328e-06,0,0,1.03116035461426e-05,0,0,6.19888305664063e-06,0,0,-4.11272048950195e-06,0,0,2.07126140594482e-06,0,0,-6.16908073425293e-06,0,0,-8.22544097900391e-06,0,0,-6.16908073425293e-06,0,0,2.05636024475098e-06,0,0,8.2850456237793e-06,0,0,1.03116035461426e-05,0,0,-2.02655792236328e-06,0 + } + Normals: *4251 { + a: -0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222, +0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.464228086173534,1.34762564301491,0.747778013348579,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715, +0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809, +0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271, +-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.317191332578659,0.422314759343863,-1.34763860702515,0.580531150102615, +0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634, +0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059, +0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022, +0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,0.0425741374492645,-0.749953493475914,-1.20673528313637,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941, +-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287, +0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892, +-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937, +0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026, +0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606, +0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329, +0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513, +-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955, +0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.180295750498772,0.379578433930874,1.83726984262466,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.04941457509995,0.156741976737976,0.038623034954071,-1.32715570926666,0.719766840338707,0.45976210385561,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556, +-0.960159841911985,-0.729522794485092,0.174396470189095,-1.1230471432209,0.452305108308792,0.757969871163368,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995, +-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086, +-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.4566365480423,-0.102446258068085,-0.783346317708492, +-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582, +-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104, +-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659, +-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915, +-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, +-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496, +-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299, +-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199, +-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372, +-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927, +0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916, +-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833, +-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009, +-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.505612887442112,-0.955908000469208,-0.108852207660675,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522, +0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236, +-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934, +0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030774448, "Geometry::Mouth_Upper_Inside", "Shape" { + Version: 100 + Indexes: *172 { + a: 5881,5882,5885,5887,5889,5891,5893,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5998,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6053,6054,6055,6056,6057,6058,6059,6060,6061,6072,6073,6074,6075,6076,6077,6078,6079,6080,6091,6092,7164,7166,7172,7173,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7206,7207,7208,7209,7210,7211,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7380,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7435,7436,7437,7438,7439,7440,7441,7442,7443,7454,7455,7456,7457,7458,7459,7460,7461,7462,7473,7474,8546,8552,8553,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8584,8585,8586,8587,8588 + } + Vertices: *516 { + a: 9.83761201496236e-05,0.264973163604736,-0.836542129516602,-0.000279413645330351,-0.974118709564209,-0.719202995300293,-1.99062269530259e-05,-0.712031841278076,-1.1245813369751,5.13340091856662e-06,-0.4106125831604,-1.37310886383057,-0.000431368214776739,-0.412858963012695,0.0205974578857422,-0.00152949907715083,-0.724937915802002,-0.34149169921875,0,0,0.00439834594726563,0.00491288304328918,0.220133781433105,-0.883733749389648,-0.0440585911273956,-1.10382986068726,-0.634349822998047,-0.102494478225708,0.0683712959289551,-0.323273658752441,0.0161700248718262,-0.157132625579834,0.0556793212890625,0.102559328079224,-0.292766094207764,-0.119150161743164,0.0702409744262695,0.0688929557800293,-0.369180679321289,0.258182764053345,-0.51924467086792,-0.226705551147461,0.100175619125366,0.106053829193115,-0.898855209350586,0.223742961883545,-0.780326366424561,-0.395401954650879,0.0771993398666382,0.166711807250977,-1.01431179046631,0.161176323890686,-0.991139888763428,-0.500823974609375,0.052678108215332,0.193344593048096,-1.0997200012207,0.0614325404167175,-1.155930519104,-0.56517505645752,0.0192216038703918,0.200572967529297,-0.948493957519531,0.0882942676544189,0.0705275535583496,-0.588351249694824,0.248382091522217,-0.37091064453125,-0.099644660949707,-0.0382206439971924,-0.039093017578125,0.0206508636474609,-0.0507736206054688,0.0930790901184082,-0.11922550201416,-0.0149548053741455,0.00752925872802734,-0.0126333236694336,-0.0573105812072754,0.11890983581543,-0.115507125854492,-0.00491762161254883,0.0260553359985352,-0.0678768157958984,0.0729407072067261,-0.761091709136963,-1.12329292297363,0.136681377887726,-0.764311790466309,-1.15578556060791,0.253924608230591,-0.692450523376465,-1.11016941070557,0.404941916465759,-0.515819072723389,-0.969767570495605,0.372553944587708,-0.328228950500488,-0.73603343963623,0.315007925033569,-0.22042179107666,-0.492423057556152,0.253969192504883,-0.172928810119629,-0.300533294677734,0.123613119125366,-0.144972324371338,-0.10676383972168,0.0501945018768311,-0.0556221008300781, +-0.0735244750976563,0.0319111347198486,0.022705078125,-0.074188232421875,0.052381306886673,-0.442896842956543,-1.41551113128662,0.043260395526886,-0.419477462768555,-1.40836715698242,0.13701868057251,-0.371632099151611,-1.38526248931885,0.245442628860474,-0.273650646209717,-1.21821594238281,0.273274898529053,-0.170646667480469,-0.888178825378418,0.277605652809143,-0.0604081153869629,-0.631057739257813,0.234273910522461,-0.0607857704162598,-0.387771606445313,0.137215137481689,-0.0510315895080566,-0.249722480773926,0.129687547683716,-0.0198707580566406,-0.0894651412963867,0.00830411911010742,0.0492153167724609,0.0659236907958984,0.000200748443603516,0.000857353210449219,-0.003082275390625,-0.00538510084152222,-0.43292236328125,0.0719728469848633,-0.00211423635482788,-0.435808181762695,-0.00144004821777344,-0.0246642827987671,-0.397202491760254,0.0956563949584961,0.0263996124267578,-0.330748081207275,0.23835563659668,0.0755774974822998,-0.311208248138428,0.323648452758789,0.093454122543335,-0.305083751678467,0.179335594177246,0.111202716827393,-0.137352466583252,0.0100679397583008,-0.000843286514282227,-0.124556064605713,-0.0527744293212891,0.000478506088256836,-0.00427150726318359,-0.000130653381347656,-0.0625057816505432,-0.799593448638916,-0.296247482299805,-0.0269572734832764,-0.879314422607422,-0.247371673583984,0.0593546628952026,-0.78093433380127,-0.131237030029297,0.089669942855835,-0.583806991577148,-0.030705451965332,0.101280450820923,-0.41724681854248,0.0969629287719727,0.104849815368652,-0.259567260742188,0.126723289489746,0.0039665699005127,-0.174550533294678,-0.00496196746826172,-0.0689308643341064,-0.0682244300842285,0.0976686477661133,-0.091679573059082,-0.0163650512695313,0.0468482971191406,0,0,0.00326442718505859,0,0,0.00599479675292969,0,0.00560235977172852,0.0157318115234375,-0.00166052579879761,0.0160508155822754,-0.0104598999023438,-0.000184297561645508,0.00051116943359375,-0.000616073608398438,-0.000318348407745361,0.00143718719482422,-0.000998497009277344,-0.00107936069980497,0.554325580596924, +-0.127054214477539,0.0206130743026733,0.559921264648438,-0.207831382751465,0.0440825223922729,0.544809818267822,-0.34220027923584,-0.00133860111236572,0.566536903381348,-0.581121444702148,-0.0444616079330444,0.540414333343506,-0.611271858215332,-0.137894034385681,0.27228832244873,-0.64060115814209,-0.166476726531982,0.18254566192627,-0.433635711669922,-0.123983860015869,0.142982482910156,-0.287375450134277,-0.315650224685669,0.0997052192687988,-0.198620796203613,-0.305276155471802,0.155130863189697,-0.248817443847656,-0.178049325942993,0.164198875427246,-0.270977020263672,-0.0397944450378418,0.0665149688720703,-0.130270957946777,-2.77239923889283e-05,0.356693744659424,-0.0313014984130859,-0.000546693801879883,0.302002906799316,-0.211447715759277,0.00439000129699707,0.217612266540527,-0.175760269165039,0.0624765157699585,0.157349586486816,-0.268678665161133,0.0929781198501587,0.0375809669494629,-0.13072681427002,-0.000442385673522949,0.0107316970825195,-0.0235557556152344,-0.0051732063293457,0.218974113464355,-0.884933471679688,0.0434487164020538,-1.10382509231567,-0.634343147277832,0.102497816085815,0.0683712959289551,-0.323276519775391,-0.0162973403930664,-0.156865119934082,0.0556488037109375,-0.101153612136841,-0.289481163024902,-0.12019157409668,-0.0701746940612793,0.0665802955627441,-0.36761474609375,-0.255658149719238,-0.513010025024414,-0.229918479919434,-0.100532412528992,0.107163429260254,-0.899310111999512,-0.223618507385254,-0.777478218078613,-0.397295951843262,-0.0781576633453369,0.166965961456299,-1.01476764678955,-0.16225802898407,-0.9854416847229,-0.505571365356445,-0.0533081293106079,0.188173770904541,-1.10159587860107,-0.0617461204528809,-1.1546573638916,-0.571175575256348,-0.0206561088562012,0.194790363311768,-0.94945240020752,-0.0885665416717529,0.0704741477966309,-0.588430404663086,-0.247412919998169,-0.365104675292969,-0.101463317871094,0.0382235050201416,-0.0390920639038086,0.0206499099731445,0.0507690906524658,0.0930767059326172,-0.119226455688477,0.0151016712188721,0.00760459899902344,-0.0127792358398438, +0.057309627532959,0.11890983581543,-0.115509986877441,0.0048987865447998,0.025996208190918,-0.0677328109741211,-0.0733015835285187,-0.761437892913818,-1.12486457824707,-0.136756241321564,-0.764547348022461,-1.15636348724365,-0.253859043121338,-0.691919326782227,-1.10989189147949,-0.404706954956055,-0.51509428024292,-0.969894409179688,-0.372541069984436,-0.327349185943604,-0.73560619354248,-0.314859867095947,-0.218734741210938,-0.493096351623535,-0.253413438796997,-0.171648025512695,-0.300848007202148,-0.123555660247803,-0.144927501678467,-0.106752395629883,-0.0501880645751953,-0.0556135177612305,-0.0735311508178711,-0.0321276187896729,0.0227546691894531,-0.0742368698120117,-0.0532432794570923,-0.44514274597168,-1.42012977600098,-0.0431574583053589,-0.417911529541016,-1.40660285949707,-0.137547433376312,-0.371486186981201,-1.38527774810791,-0.245414257049561,-0.272830009460449,-1.21724033355713,-0.273131132125854,-0.16963529586792,-0.888771057128906,-0.278321981430054,-0.0596194267272949,-0.630565643310547,-0.234041213989258,-0.0609464645385742,-0.387404441833496,-0.137149810791016,-0.0510315895080566,-0.249722480773926,-0.129671573638916,-0.0198631286621094,-0.0894584655761719,-0.00831341743469238,0.0492181777954102,0.0659370422363281,-0.000198841094970703,0.000844001770019531,-0.0030364990234375,0.00423160195350647,-0.43189525604248,0.0701055526733398,0.00138962268829346,-0.433747291564941,-0.000655174255371094,0.0244554281234741,-0.396140575408936,0.0968084335327148,-0.0260058641433716,-0.33067798614502,0.239084243774414,-0.0752062797546387,-0.312009334564209,0.32337474822998,-0.0937669277191162,-0.304873943328857,0.178987503051758,-0.111493349075317,-0.137731552124023,0.0102300643920898,0.000829219818115234,-0.124531269073486,-0.0527553558349609,-0.000478506088256836,-0.00427150726318359,-0.000130653381347656,0.061273604631424,-0.799002170562744,-0.296610832214355,0.0266731381416321,-0.877855777740479,-0.245580673217773,-0.0596326589584351,-0.779997825622559,-0.13050651550293,-0.089236855506897,-0.583010196685791, +-0.0278940200805664,-0.101186394691467,-0.416294097900391,0.0965023040771484,-0.105106115341187,-0.25786304473877,0.126214027404785,-0.00511693954467773,-0.174532890319824,-0.00461578369140625,0.0688884258270264,-0.0680460929870605,0.0977516174316406,0.0916776657104492,-0.0163655281066895,0.0468482971191406,0,0,0.00341415405273438,0,0,0.00610923767089844,0.00165808200836182,0.0162954330444336,-0.010807991027832,0.000184118747711182,0.00051116943359375,-0.000616073608398438,0.000320732593536377,0.00150728225708008,-0.00112342834472656,-0.0212534964084625,0.566376209259033,-0.211854934692383,-0.0446540713310242,0.544893264770508,-0.34278678894043,0.000844120979309082,0.566322326660156,-0.582232475280762,0.0439695119857788,0.541242122650146,-0.6109619140625,0.138633608818054,0.273661613464355,-0.639838218688965,0.165903568267822,0.181288242340088,-0.433648109436035,0.125811100006104,0.143109798431396,-0.287419319152832,0.315620183944702,0.0997118949890137,-0.198627471923828,0.305273056030273,0.155130863189697,-0.248815536499023,0.178048610687256,0.164200782775879,-0.270980834960938,0.0397975444793701,0.0665216445922852,-0.130284309387207,0.0004710853099823,0.301598072052002,-0.210446357727051,-0.00464189052581787,0.217383861541748,-0.176094055175781,-0.0628244876861572,0.157877445220947,-0.26973819732666,-0.0938283205032349,0.038935661315918,-0.132510185241699,0.00111925601959229,0.0116348266601563,-0.0234603881835938 + } + Normals: *516 { + a: -0.793020684091388,0.727224364876747,-0.892200976610184,-0.803670145221048,0.138749428093433,-1.55179870128632,-0.825587966065477,0.53037460707128,-1.428053855896,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.78397116983399,-0.0509446412324905,-1.60343343019485,0.535148084163666,1.04456658661366,0.51144939661026,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,1.05932304263115,0.533200889825821,-0.00169801712036133,0.570867847651243,1.01464876160026,0.668222844600677,0.950756222009659,0.152891896665096,0.0503082871437073,0.300941593945026,1.26502925157547,0.632946699857712,0.810308873653412,0.442293539643288,-0.0574740767478943,0.713042497634888,1.04635570943356,0.357401698827744,1.16099807620049,0.232614949345589,-0.492092877626419,0.999290682375431,1.2053593993187,-0.156083077192307,0.512022675946355,1.34185579419136,0.66503818333149,1.52619820833206,0.357024684548378,-0.265309900045395,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.348103940486908,-0.395256578922272,0.762886703014374,1.00404207408428,0.826612442731857,-0.54215207695961,1.13285660743713,0.478411003947258,-0.438208907842636,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.26319825649261,0.790907800197601,-0.254651188850403,1.41945570707321,0.463434951379895,-0.165035128593445,1.51006400585175,0.525617511942983,-0.285175800323486,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188, +-0.540710747241974,0.687775045633316,1.07771757245064,0.0519442558288574,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.30123016238213,0.765197768807411,-1.0233393907547,1.29794338345528,0.945635974407196,-1.05976921319962,1.32832050323486,1.12770891189575,-0.427809491753578,1.38109764456749,0.955767944455147,-0.794126987457275,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.42057728767395,0.372901432216167,-1.14907959103584,1.54433196783066,0.235558219254017,-0.727221444249153,1.5728212594986,0.263049846515059,-0.596883669495583,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.261731175705791,0.211270391941071,1.82060474157333,-0.180295750498772,0.379578433930874,1.83726984262466,-0.154679639264941,0.355617590248585,1.87958270311356,-0.351349028235973,0.86887588351965,1.18702557682991,-0.362325264140964,0.879202574491501,1.12923868000507,-0.387430932372808,0.645117163658142, +1.11240950226784,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.24705880880356,0.860029801726341,0.242361314594746,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.37148728966713,0.733834750950336,0.202178090810776,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-0.915832795202732,0.647535890340805,0.0799480974674225,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-1.4642716050148,-0.132438108325005,-0.405925184488297,-0.895843179896474,0.870013058185577,0.290084332227707,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-0.91873687505722,0.67259681224823,0.113943934440613,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-0.92767222225666,0.804832711815834,0.0918973386287689,-1.13460373878479,-0.181383110582829,-0.51008602976799,-0.983829125761986,0.733061522245407,-0.0276605486869812,-0.959292871877551,0.826793894171715,0.163627862930298,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.11727793514729,0.647259816527367,-1.11005578935146,-1.16013008356094, +0.743868172168732,-1.05224168300629,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.45130413770676,0.729647636413574,-1.07479104399681,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.32005617022514,0.807553917169571,-0.690926343202591,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.44269624352455,0.506122842431068,-0.474443465471268,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.60500639677048,-0.141157109290361,-0.746958613395691,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914, +-0.730387195944786,-0.077882413752377,0.0258926427923143,0.00258094072341919,-0.353593325635302,-0.115320540964603,0.080802321434021,0.513018878176808,0.462569477036595,0.0529692769050598,0.663957834243774,-0.292329281568527,0.231935441493988,0.450418576598167,-0.29188334941864,0.272377371788025,0.375099884346128,0.69207176566124,-0.658867016434669,0.44991934671998,0.767563030123711,-0.652386501431465,0.569539815187454,0.770786583423615,-0.613855600357056,0.684461444616318,0.619149088859558,-0.526726692914963,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.886920481920242,0.482583492994308,-0.339271068572998,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.0816755332052708,-0.535643100738525,0.359934389591217,0.212553188204765,-0.50010946393013,0.297500908374786,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.760356411337852,-0.00724850594997406,-0.175798654556274 + } + } + Geometry: 2807030774736, "Geometry::Mouth_Lower_Inside", "Shape" { + Version: 100 + Indexes: *167 { + a: 5883,5884,5886,5888,5892,5979,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6069,6070,6071,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,7181,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7219,7220,7221,7222,7223,7224,7225,7226,7361,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7451,7452,7453,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,8561,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8596,8597,8598,8599,8600,8601,8602 + } + Vertices: *501 { + a: -2.70461405307287e-05,0.763498306274414,-0.235407829284668,-0.00230447782814736,0.318803787231445,-1.55941295623779,-0.000749007289414294,0.604796886444092,-0.852235794067383,-0.00145135224011028,0.709862232208252,-1.46103954315186,-0.000161001400556415,0.446483612060547,0.0411624908447266,0.0297865867614746,0.00381183624267578,-0.137162208557129,0.0426449775695801,-0.00567531585693359,-0.00106716156005859,-0.0235831737518311,-0.0152664184570313,-0.369030952453613,-0.0301084518432617,0.000814437866210938,1.43051147460938e-05,-0.0285699367523193,-0.0106048583984375,-0.486817359924316,0.0278604030609131,-0.0161161422729492,-0.0308122634887695,0.0494105815887451,0.0266504287719727,-0.627289772033691,0.0859191417694092,0.0577297210693359,0.00701904296875,0.113036394119263,0.0355758666992188,-0.709623336791992,0.158552885055542,0.0920600891113281,-0.782981872558594,0.172260046005249,0.11857795715332,-0.00458240509033203,0.140530586242676,0.130449295043945,-0.844780921936035,0.118054866790771,0.202941417694092,-0.0644397735595703,0.0790327787399292,0.314110279083252,-0.117555618286133,0.13386869430542,0.250745296478271,-1.01576995849609,0.10005509853363,0.452828884124756,-0.195915222167969,0.124919295310974,0.326183795928955,-1.29343700408936,0.13308048248291,0.572915554046631,-0.275124549865723,0.0314028263092041,0.277085781097412,-1.42619800567627,0.0480632781982422,0.667794704437256,-0.22968578338623,-0.0384621620178223,0.288966178894043,-1.47849559783936,0.0130373239517212,0.717281341552734,-0.232457160949707,-3.30805778503418e-05,0.299435615539551,-1.53100490570068,0.0595517158508301,0.00171232223510742,-0.0369234085083008,0.0474343299865723,0.030766487121582,-0.0936546325683594,0.106277704238892,0.0141544342041016,-0.19071102142334,0.140248537063599,0.105278968811035,-0.217930793762207,0.288350105285645,0.227232933044434,-0.193829536437988,0.383161902427673,0.353421688079834,-0.260561943054199,0.216305494308472,0.400806427001953,-0.358429908752441,0.214191079139709,0.416906833648682,-0.548280715942383, +0.174666941165924,0.480797290802002,-0.698230743408203,0.1148442029953,0.525673389434814,-0.74302864074707,0.0466086268424988,0.559209823608398,-0.807645797729492,0.00583100318908691,0.00188064575195313,-0.0110807418823242,0.0434548854827881,0.0174055099487305,-0.120907783508301,0.109357118606567,0.0417909622192383,-0.307561874389648,0.169449806213379,0.0442876815795898,-0.41342830657959,0.184521198272705,0.0493688583374023,-0.577927589416504,0.218900203704834,0.172773361206055,-0.565780639648438,0.305397987365723,0.318597793579102,-0.634899139404297,0.328881502151489,0.511224746704102,-0.84493350982666,0.211824297904968,0.62405252456665,-1.11331939697266,0.12043434381485,0.624173164367676,-1.32041263580322,0.0669474005699158,0.662400245666504,-1.42130374908447,0.0267734527587891,0.680657863616943,-1.45926952362061,0.011117696762085,0.0114030838012695,-0.0202369689941406,0.0322781801223755,0.00313854217529297,-0.0407466888427734,0.000108718872070313,-0.000105857849121094,-9.25064086914063e-05,0.0232889652252197,0.00427722930908203,0,-0.00016474723815918,-9.63211059570313e-05,0.000104904174804688,0.00368571281433105,-0.00894355773925781,0.0105485916137695,-0.000910282135009766,0.008575439453125,0.009552001953125,0.0006256103515625,0.000467300415039063,0.000377655029296875,0.00313401222229004,0.00261497497558594,-0.00175380706787109,0.0381870269775391,0.117680549621582,-0.0624179840087891,0.0628317594528198,0.260064125061035,0.0231657028198242,0.0276733636856079,0.319535255432129,-0.0216331481933594,0.000665545463562012,0.381089210510254,-0.0295495986938477,-0.0244817435741425,0.418164730072021,-0.00564670562744141,-0.00233983993530273,-0.00119400024414063,-0.00467586517333984,0.0011134147644043,-0.000236988067626953,-0.0102128982543945,-0.14204478263855,-0.0589389801025391,-0.430228233337402,-0.216675996780396,-0.073272705078125,-0.583067893981934,-0.201990365982056,-0.0551042556762695,-0.601783752441406,-0.110421180725098,-0.0469970703125,-0.623761177062988,-0.0183045864105225,-0.0494041442871094,-0.623546600341797, +-0.0767421722412109,-0.0544614791870117,-0.650055885314941,-0.174311876296997,0.00937557220458984,-0.722831726074219,-0.173001289367676,0.087975025177002,-0.856549263000488,-0.139737844467163,-0.0805048942565918,-0.95118522644043,-0.119748651981354,0.00619745254516602,-0.967282295227051,-0.00112482905387878,0.108748912811279,-1.04435157775879,-1.88899848581059e-05,0.138114452362061,-1.04312133789063,0.00315594673156738,0.00720405578613281,-0.00537109375,-0.156967401504517,-0.0439243316650391,-0.122879028320313,-0.21790599822998,-0.240766525268555,-0.347532272338867,-0.409540057182312,-0.227946758270264,-0.333504676818848,-0.311888456344604,-0.731653690338135,-0.329139709472656,-0.293747901916504,-0.66138744354248,-0.37105655670166,0,-0.575873851776123,-0.55072021484375,0,-0.550355434417725,-0.527105331420898,-0.0297904014587402,0.00381231307983398,-0.137177467346191,-0.0426483154296875,-0.00567531585693359,-0.00105953216552734,0.0235798358917236,-0.0152654647827148,-0.369035720825195,0.0298247337341309,0.000703811645507813,-0.000464439392089844,0.028564453125,-0.0106039047241211,-0.486824989318848,-0.027369499206543,-0.0150270462036133,-0.0315113067626953,-0.0495150089263916,0.0267267227172852,-0.62736988067627,-0.0865275859832764,0.0577449798583984,0.00716400146484375,-0.113443851470947,0.0359859466552734,-0.710144996643066,-0.158673763275146,0.0921487808227539,-0.783200263977051,-0.171882152557373,0.117822647094727,-0.00474739074707031,-0.141632795333862,0.129726409912109,-0.845343589782715,-0.116820812225342,0.200923442840576,-0.0638332366943359,-0.0788211822509766,0.312885761260986,-0.11719799041748,-0.134242296218872,0.250565528869629,-1.01566696166992,-0.10038149356842,0.452253818511963,-0.198004722595215,-0.12480902671814,0.325608253479004,-1.2935094833374,-0.13303530216217,0.572110652923584,-0.277095794677734,-0.031578540802002,0.276672840118408,-1.42654037475586,-0.0476642847061157,0.665435314178467,-0.231822967529297,0.0387281179428101,0.285823822021484,-1.48029804229736,-0.013216495513916,0.717693328857422, +-0.235692024230957,-0.000843912363052368,0.295653343200684,-1.53235816955566,-0.0595331192016602,0.00170183181762695,-0.0368766784667969,-0.0479037761688232,0.0309772491455078,-0.0943317413330078,-0.106857538223267,0.0140457153320313,-0.190996170043945,-0.140916109085083,0.105019569396973,-0.217940330505371,-0.288522958755493,0.226367950439453,-0.192853927612305,-0.381563544273376,0.351653575897217,-0.257959365844727,-0.215432643890381,0.399954795837402,-0.355401039123535,-0.214250445365906,0.416777610778809,-0.547671318054199,-0.175041079521179,0.480886936187744,-0.698040962219238,-0.115442514419556,0.525739669799805,-0.743653297424316,-0.0468676090240479,0.557793140411377,-0.807651519775391,-0.00591063499450684,0.00190591812133789,-0.0112333297729492,-0.043400764465332,0.0173854827880859,-0.120787620544434,-0.109225273132324,0.0416936874389648,-0.307538986206055,-0.169638872146606,0.0445499420166016,-0.413835525512695,-0.184769630432129,0.0502376556396484,-0.579148292541504,-0.219529628753662,0.172070503234863,-0.566020011901855,-0.30627703666687,0.317389488220215,-0.63587474822998,-0.326684474945068,0.509975433349609,-0.845430374145508,-0.212963700294495,0.624229907989502,-1.11327075958252,-0.127035737037659,0.626885890960693,-1.31365585327148,-0.0690954923629761,0.66270112991333,-1.42324638366699,-0.0304022133350372,0.682924270629883,-1.46314334869385,-0.0113301277160645,0.01239013671875,-0.0204648971557617,-0.0324537754058838,0.00402927398681641,-0.0406532287597656,-0.000100374221801758,-9.82284545898438e-05,-8.58306884765625e-05,-0.0232889652252197,0.00427722930908203,0,0.000161170959472656,-9.918212890625e-05,0.000102043151855469,-0.0042271614074707,-0.00898456573486328,0.00988483428955078,0.000911712646484375,0.00859260559082031,0.00957107543945313,-0.000620126724243164,0.000462532043457031,0.00037384033203125,-0.00310707092285156,0.00304985046386719,-0.00179290771484375,-0.0379025936126709,0.117417335510254,-0.0621986389160156,-0.0636634826660156,0.263751029968262,0.0223903656005859,-0.031353235244751,0.326218128204346, +-0.0257596969604492,-0.00105458498001099,0.381654739379883,-0.0270719528198242,0.0244026184082031,0.417428970336914,-0.00601863861083984,0.00233709812164307,-0.00118923187255859,-0.00470161437988281,-0.0011136531829834,-0.000237464904785156,-0.010218620300293,0.14204740524292,-0.0589399337768555,-0.430230140686035,0.216673374176025,-0.0732717514038086,-0.583073616027832,0.201974630355835,-0.0550985336303711,-0.601787567138672,0.110238552093506,-0.0457868576049805,-0.623173713684082,0.017996072769165,-0.0492038726806641,-0.623743057250977,0.0767083168029785,-0.0542421340942383,-0.649928092956543,0.175302743911743,0.00943470001220703,-0.72299861907959,0.172837018966675,0.0883450508117676,-0.857049942016602,0.139736890792847,-0.0805020332336426,-0.951187133789063,0.119752287864685,0.00618219375610352,-0.967276573181152,0.00113877654075623,0.108677387237549,-1.04433727264404,-0.00315594673156738,0.00720405578613281,-0.00537109375,0.157021999359131,-0.0439767837524414,-0.122810363769531,0.220717787742615,-0.241227149963379,-0.345990180969238,0.407706737518311,-0.226451396942139,-0.334771156311035,0.311888694763184,-0.731653690338135,-0.329139709472656,0.293747901916504,-0.661388397216797,-0.371058464050293,0,-0.575876712799072,-0.550724029541016 + } + Normals: *501 { + a: -0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576263497523,0.332329265773296,-0.884727489203215,0.758668020367622,1.37624508142471,0.466036655008793,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608, +-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.64750936627388,-0.886254876852036,1.64454412460327,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693, +-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.768468946218491,0.565167635679245,0.388752035796642,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049, +0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,0.565207481384277,-1.27340400218964,0.0968380570411682,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849, +-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688 + } + } + Geometry: 2807030772720, "Geometry::Mouth_Lower_Overlay", "Shape" { + Version: 100 + Indexes: *1957 { + a: 5880,5883,5884,5886,5888,5890,5892,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5909,5910,5911,5912,5913,5914,5916,5917,5918,5920,5925,5926,5927,5928,5939,5941,5943,5945,5947,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5979,5980,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6193,6195,6196,6198,6199,6200,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440, +6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6727,6728,6729,6730,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6763,6764,6765,6766,6767,6768,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7116,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142, +7143,7146,7147,7156,7157,7159,7160,7161,7165,7168,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7291,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7361,7362,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7575,7577,7578,7580,7581,7582,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712, +7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8109,8110,8111,8112,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8145,8146,8147,8148,8149,8150,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186, +8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8498,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8528,8529,8538,8539,8541,8542,8543,8548,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *5871 { + a: 0,5.96046447753906e-06,0,0,0.820554256439209,0.653059005737305,0,0.845953941345215,0.774177551269531,0,0.819602012634277,0.707551956176758,0,0.834578514099121,0.752799987792969,0,0.427282810211182,0.43388557434082,0,0.559930324554443,0.456537246704102,0,0.285525321960449,0.419831275939941,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,0.283172607421875,0.476954460144043,0,0.285736083984375,0.481281280517578,0,0.285822868347168,0.481415748596191,0,0.276473999023438,0.465673446655273,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,0.280339241027832,0.472173690795898,0,0.283677101135254,0.47780704498291,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,0.217860221862793,0.36695671081543,0,0.27680492401123,0.466226100921631,0,0.212079048156738,0.357207775115967,0,0.190122604370117,0.320228338241577,0,0.00551605224609375,0.00928926467895508,0,0.201388359069824,0.339219331741333,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0.0365476608276367,0.132401943206787,0.16335391998291,0.0317087173461914,0.119441032409668,0.180035591125488,0.00770211219787598,0.125497341156006,0.205921173095703, +0.0086216926574707,0.13751220703125,0.218227386474609,0,0.146385192871094,0.246554374694824,0,0.149244785308838,0.251375198364258,-0.000148534774780273,0.170611381530762,0.287445068359375,-0.000257968902587891,0.173966884613037,0.293784141540527,-0.00156497955322266,0.196243286132813,0.32856273651123,-0.00220751762390137,0.186583042144775,0.314642906188965,-0.014427661895752,0.262995719909668,0.38924503326416,-0.00841498374938965,0.272018432617188,0.396062850952148,-0.0275588035583496,0.338051795959473,0.425239562988281,-0.0125529766082764,0.339611053466797,0.412490844726563,-0.0133521556854248,0.498847007751465,0.505549430847168,-0.0381619930267334,0.503621578216553,0.534141540527344,-0.0124855041503906,0.618789672851563,0.55654239654541,-0.0569864511489868,0.683191299438477,0.594762802124023,-0.0123051404953003,0.72717809677124,0.634589195251465,-0.0377475023269653,0.746728897094727,0.719662666320801,-0.0100971460342407,0.777842998504639,0.644651412963867,-0.0250123143196106,0.80604887008667,0.754465103149414,-0.00554800033569336,0.80966854095459,0.654092788696289,-0.0107839703559875,0.83771276473999,0.772236824035645,0.0351583957672119,0.125380039215088,0.170425415039063,0.00837874412536621,0.128250122070313,0.206520080566406,0,0.148385524749756,0.249919891357422,-0.000202417373657227,0.171963214874268,0.290075302124023,-0.00190234184265137,0.192020893096924,0.322684288024902,-0.0112876892089844,0.264553546905518,0.388331413269043,-0.0192849636077881,0.33405876159668,0.412874221801758,-0.0246868133544922,0.501651763916016,0.524785995483398,-0.0411198139190674,0.674056053161621,0.588776588439941,-0.0250496864318848,0.732104778289795,0.67955207824707,-0.0182400345802307,0.787122249603271,0.70533275604248,-0.00887811183929443,0.816516399383545,0.71776294708252,0.0364408493041992,0.130566120147705,0.16722297668457,0.00859260559082031,0.137504577636719,0.219629287719727,0,0.150552272796631,0.253569602966309,-0.000237703323364258,0.173605442047119,0.29306697845459,-0.00209927558898926,0.185175895690918,0.311875343322754, +-0.0129125118255615,0.2619948387146,0.386637687683105,-0.0237891674041748,0.334719181060791,0.41862964630127,-0.0320138931274414,0.49863338470459,0.524624824523926,-0.0501612424850464,0.675487041473389,0.599513053894043,-0.0326724052429199,0.737317562103271,0.700977325439453,-0.0225074291229248,0.797986507415771,0.737817764282227,-0.0102527737617493,0.82785701751709,0.753236770629883,5.65052032470703e-05,0.117701530456543,0.200788497924805,4.31537628173828e-05,0.141842365264893,0.238812446594238,4.26769256591797e-05,0.168219089508057,0.28272533416748,0.000245571136474609,0.198824882507324,0.331281661987305,0.00055384635925293,0.242912292480469,0.382946014404297,0.00232887268066406,0.262887477874756,0.380683898925781,0.00223261117935181,0.423539638519287,0.430620193481445,0.00546395778656006,0.408888339996338,0.422101974487305,0.00879573822021484,0.38727855682373,0.421172142028809,0.00976741313934326,0.350358486175537,0.422521591186523,0.00617456436157227,0.304449081420898,0.405952453613281,0.00997424125671387,0.126359462738037,0.21147346496582,0.0018002986907959,0.127323627471924,0.214204788208008,-1.62124633789063e-05,0.142767429351807,0.240663528442383,-2.21729278564453e-05,0.166845798492432,0.280317306518555,-0.000303506851196289,0.205648899078369,0.342340469360352,-0.00241303443908691,0.265275478363037,0.401622772216797,-0.00386357307434082,0.308348178863525,0.407146453857422,-0.0023038387298584,0.36219596862793,0.415961265563965,0.00150454044342041,0.436171054840088,0.427900314331055,0.000754237174987793,0.493273735046387,0.441099166870117,-0.00134581327438354,0.532151699066162,0.455874443054199,-0.00104492902755737,0.554589748382568,0.461030006408691,0.00147271156311035,0.223246574401855,0.372969627380371,0.000393390655517578,0.205801486968994,0.345155715942383,9.48905944824219e-05,0.173678398132324,0.292160987854004,0.000107288360595703,0.147224426269531,0.247665405273438,-0.000814676284790039,0.113017082214355,0.192517280578613,0.00383821129798889,0.284485816955566,0.418965339660645,0.00807434320449829,0.281293869018555, +0.416671752929688,0.014316201210022,0.26994800567627,0.418091773986816,0.0137287378311157,0.25698184967041,0.409930229187012,0.00948381423950195,0.24262809753418,0.39681339263916,0.00413846969604492,0.227852344512939,0.378138542175293,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.276616096496582,0.465914726257324,0,0.282456398010254,0.475753784179688,0,0.265462875366211,0.447128772735596,0,0.276081085205078,0.465022087097168,0,0.24632740020752,0.414892196655273,0,0.264269828796387,0.445117950439453,0,0.214681625366211,0.36158561706543,0,0.243294715881348,0.409794807434082,0,0.163360595703125,0.275151491165161,0,0.207333087921143,0.349218845367432,0,0.03680419921875,0.0619814991950989,0,0.120975971221924,0.20375657081604,0,0.0942764282226563,0.158810377120972,0,0.23243236541748,0.391499042510986,0,0.255223274230957,0.429879188537598,0,0.0870161056518555,0.146575331687927,0,0.151864528656006,0.255794286727905,0,0.282223701477051,0.47536563873291,0,0.27515697479248,0.463444232940674,0,0.261876106262207,0.44108247756958,0,0.251548767089844, +0.423690319061279,0,0.237565040588379,0.400134086608887,0,0.194143295288086,0.3269944190979,0,0.127941608428955,0.215488433837891,0,0.0905289649963379,0.15246844291687,0,0.0612473487854004,0.103165984153748,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,0.112856864929199,0.190079689025879,0,0.161555290222168,0.27211856842041,0,0.192152500152588,0.323646545410156,0,0.212716579437256,0.358280181884766,0,0.228806018829346,0.385370254516602,0,0.242095947265625,0.407754898071289,0,0.253103256225586,0.42632007598877,0,0.26192569732666,0.441171646118164,0,0.268569946289063,0.452362060546875,0,0.273099899291992,0.459980010986328,0,0.275652885437012,0.464296340942383,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0, +0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,0.0159194469451904,0.0268154144287109,0,0.0413360595703125,0.0696144104003906,0,0.0742936134338379,0.125144004821777,0,0.0466125011444092,0.0785026550292969,0,0.0211348533630371,0.0356035232543945,0,0.0444304943084717,0.0748295783996582,0,0.0203735828399658,0.0343260765075684,0,0.0356247425079346,0.060002326965332,0,0.0142867565155029,0.0240654945373535,0,0.0202560424804688,0.0341272354125977,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,0.0764527320861816,0.128768920898438,0,0.060903787612915,0.102587223052979,0,0.0719420909881592,0.121177196502686,0,0.0440871715545654,0.0742459297180176,0,0.112709045410156,0.18982982635498,0,0.0881257057189941,0.148448467254639,0,0.101711750030518,0.171316146850586,0,0.109678745269775,0.184738636016846,0,0.132076740264893,0.222472667694092,0,0.115414142608643,0.194402694702148,0,0.144049167633057,0.242646217346191,0,0.152807712554932,0.257372379302979,0,0.202125549316406,0.340429306030273,0,0.18928337097168,0.318812370300293,0,0.176203727722168,0.29677677154541,0,0.159908771514893,0.26932954788208,0,0.219555377960205,0.369791984558105,0,0.243118762969971,0.409502983093262,0,0.230323791503906,0.387921333312988,0,0.234673023223877,0.395261764526367,0,0.253876686096191,0.427613258361816,0,0.257110595703125,0.433070659637451, +0,0.269521713256836,0.453964233398438,0,0.271052360534668,0.45651912689209,0,0.246977806091309,0.415992736816406,0,0.262511253356934,0.442159652709961,0,0.256917953491211,0.43275260925293,0,0.269254684448242,0.453500747680664,0,0.271835327148438,0.45785665512085,0,0.279275894165039,0.470401763916016,0,0.279803276062012,0.471269607543945,0,0.274415016174316,0.462207794189453,0,0.264813423156738,0.446045875549316,0,0.270922660827637,0.456303596496582,0,0.278252601623535,0.468677520751953,0,0.279969215393066,0.471574783325195,0,0.284199714660645,0.478676795959473,0,0.284235954284668,0.478737831115723,0,0.282015800476074,0.474995613098145,0,0.28529167175293,0.480524063110352,0,0.285223007202148,0.480422973632813,0,0.278266906738281,0.468684196472168,0,0.275350570678711,0.463770866394043,0,0.280950546264648,0.473209381103516,0,0.282613754272461,0.476016998291016,0,0.282940864562988,0.476560592651367,0,0.285736083984375,0.481257438659668,0,0.28565788269043,0.48112964630127,0,0.279838562011719,0.471354484558105,0,0.283444404602051,0.47740650177002,0,0.216511249542236,0.364694118499756,0,0.199882507324219,0.336668968200684,0,0.19195556640625,0.323321580886841,0,0.218781471252441,0.368503093719482,0,0.227734088897705,0.383570194244385,0,0.179086208343506,0.301628589630127,0,0.128441333770752,0.216340780258179,0,0.163488864898682,0.275368690490723,0,0.181680202484131,0.305999279022217,0,0.154314994812012,0.259908199310303,0,0.139509677886963,0.234982490539551,0,0.12766695022583,0.215015649795532,0,0.116224765777588,0.19575023651123,0,0.094778299331665,0.159652709960938,0,0.069580078125,0.117192268371582,0,0.102499485015869,0.172654628753662,0,0.0925796031951904,0.155925512313843,0,0.0724883079528809,0.122083187103271,0,0.047943115234375,0.0807664394378662,0,0.0232223272323608,0.0391144752502441,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06, +0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06, +0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,0.00228273868560791,0.00383841991424561,0,0.00171351432800293,0.00288009643554688,0,0.00576019287109375,0.00969934463500977,0,0.00452566146850586,0.00763237476348877,0,0.0110607147216797,0.0186180472373962,0,0.00924825668334961,0.0155826807022095,0,0.0182387828826904,0.0307085420936346,0,0.01595139503479,0.0268786549568176,0,0.0267653465270996,0.0450838804244995,0,0.0237088203430176,0.0399268269538879,0,0.0359816551208496,0.0605974793434143,0,0.0300979614257813,0.0506913065910339,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,0.00243830680847168,0.00409722328186035,0,0.0060882568359375,0.010257363319397,0,0.0117065906524658,0.0197114944458008,0,0.0192215442657471,0.0323871597647667,0,0.0278351306915283,0.0468840003013611,0,0.0360488891601563,0.060724139213562,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,0.00039362907409668,0.00066375732421875,0,0.00128626823425293,0.00217878818511963, +0,0.00324392318725586,0.00544583797454834,0,0.0066680908203125,0.0112484693527222,0,0.0122847557067871,0.0206936299800873,0,0.0235657691955566,0.0396797657012939,0,0.0499298572540283,0.0841038227081299,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,0.00074005126953125,0.00124883651733398,0,0.00225973129272461,0.00381958484649658,0,0.00536346435546875,0.00903880596160889,0,0.0107131004333496,0.0180515646934509,0,0.0189025402069092,0.0318417623639107,0,0.0308914184570313,0.0520331859588623,0,0.0454208850860596,0.0765190124511719,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,0.00217890739440918,0.00367832183837891,0,0.00557088851928711,0.00937032699584961,0,0.0108885765075684,0.0183485746383667,0,0.0181427001953125,0.0305507928133011,0,0.0263335704803467,0.0443464815616608,0,0.0338802337646484,0.0570684671401978,0,0.0472671985626221,0.0796009302139282,0,0.0484206676483154,0.0815457105636597,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,0.00119173526763916,0.00200843811035156,0,0.00336289405822754,0.00567007064819336,0,0.00736379623413086,0.0123950242996216,0,0.0135848522186279,0.0228914618492126,0,0.0218429565429688,0.0367847587913275,0,0.0311646461486816,0.0525016784667969, +0,0.0397064685821533,0.0668666362762451,0,0.0419082641601563,0.0706021785736084,0,0.0303070545196533,0.0510427951812744,0,0.0216002464294434,0.0363991856575012,0,0.0144133567810059,0.0242701172828674,0,0.00863957405090332,0.0145582258701324,0,0.00441431999206543,0.00743317604064941,0,0.00157320499420166,0.00265121459960938,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,0.00222933292388916,0.00374054908752441,0,0.00469970703125,0.0079120397567749,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,0.0079498291015625,0.0133854448795319,0,0.0120329856872559,0.0202595591545105,0,7.62939453125e-06,0,0,0.00683748722076416,0.0115162134170532,0,0.0170423984527588,0.028706431388855,0,0.0135513544082642,0.0228368043899536,0,0.0138870477676392,0.0233789682388306,0,0.017822265625,0.030021071434021,0,0.0164321660995483,0.0276666879653931,0,0.00948631763458252,0.0159788131713867,0,0.00925290584564209,0.0155812501907349,0,0.0217299461364746,0.0365978479385376,0,0.0166411399841309,0.0280300378799438,0,-1.54972076416016e-06,0,0,0.0314178466796875,0.0529062747955322,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.0705533027648926,0.118836164474487,0,0.0507049560546875,0.0853927135467529,0,0.0248916149139404,0.041921854019165,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.0487532615661621,0.0821069478988647,0,0.0760235786437988,0.128036618232727,0,0.0812621116638184,0.136878252029419,0,0.0636427402496338,0.107203722000122,0,0.0658752918243408,0.110955238342285,0,4.29153442382813e-06,0,0,0.00181126594543457,0.00303983688354492,0,6.19888305664063e-06, +0,0,0.00122976303100586,0.00206708908081055,0,0.00027155876159668,0.00045013427734375,0,0.00053095817565918,0.00089573860168457,0,0.000150918960571289,0.000252723693847656,0,0.00015413761138916,0.000268936157226563,0,4.87565994262695e-05,8.05854797363281e-05,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,2.12192535400391e-05,4.48226928710938e-05,0,1.82390213012695e-05,1.9073486328125e-05,0,4.52995300292969e-06,1.43051147460938e-06,0,6.07967376708984e-06,1.9073486328125e-06,0,2.98023223876953e-06,0,0,5.96046447753906e-06,8.58306884765625e-06,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,0.0418300628662109,0.0704513788223267,0,0.0790586471557617,0.133155226707458,0,0.111124992370605,0.187179327011108,0,0.138723373413086,0.233659505844116,0, +0.162836074829102,0.274285793304443,0,0.151838302612305,0.255735874176025,0,0.167304992675781,0.281778812408447,0,0.180829048156738,0.304555177688599,0,0.192268371582031,0.323851108551025,0,0.201589584350586,0.339560508728027,0,0.209114074707031,0.35222053527832,0,0.214340209960938,0.361018180847168,0,0.217077255249023,0.365616798400879,0,0.0442714691162109,0.074573814868927,0,0.0860147476196289,0.144879698753357,0,0.122729301452637,0.206731200218201,0,0.153885841369629,0.259195327758789,0,0.179829597473145,0.302879571914673,0,0.201462745666504,0.339318037033081,0,0.219515800476074,0.369733810424805,0,0.234515190124512,0.394994258880615,0,0.246769905090332,0.415653705596924,0,0.256726264953613,0.432425022125244,0,0.264649391174316,0.445757865905762,0,0.270566940307617,0.455721378326416,0,0.274373054504395,0.462133884429932,0,0.276275634765625,0.465337753295898,0,0.0129709243774414,0.0218643844127655,0,0.0316190719604492,0.0532589554786682,0,0.055058479309082,0.0927153825759888,0,0.0765609741210938,0.128948092460632,0,0.0980768203735352,0.165205597877502,0,0.121386528015137,0.204470753669739,0,0.144671440124512,0.243689775466919,0,0.159274101257324,0.268261909484863,0,0.175028800964355,0.294784307479858,0,0.189848899841309,0.319766044616699,0,0.206705093383789,0.348170280456543,0,0.214818000793457,0.361827611923218,0,0.0642423629760742,0.108212769031525,0,0.0803794860839844,0.135396838188171,0,0.0943984985351563,0.158991098403931,0,0.116857528686523,0.196829199790955,0,0.145086288452148,0.24436891078949,0,0.143693923950195,0.242032766342163,0,0.154560089111328,0.260334849357605,0,0.166681289672852,0.280746459960938,0,0.178991317749023,0.301467418670654,0,0.18864631652832,0.317739129066467,0,0.006866455078125,0.0115642547607422,0,0.0371150970458984,0.062524676322937,0,0.0689802169799805,0.11618435382843,0,0.0965089797973633,0.162568092346191,0,0.121211051940918,0.204147934913635,0,0.143879890441895,0.24235463142395,0,0.164898872375488,0.277732610702515,0,0.150025367736816,0.252686023712158,0,0.164416313171387,0.276927471160889, +0,0.177491188049316,0.298945426940918,0,0.188400268554688,0.317317724227905,0,0.196043014526367,0.330198049545288,0,0.200170516967773,0.337162017822266,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,0.247248649597168,0.416436195373535,0,0.0879058837890625,0.148063659667969,0,0.093745231628418,0.157906532287598,0,0.140150547027588,0.236056327819824,0,0.141401767730713,0.238161087036133,0,0.123663425445557,0.208284378051758,0,0.14755392074585,0.24852466583252,0,0.165206909179688,0.278254508972168,0,0.18348217010498,0.309049606323242,0,0.204825878143311,0.34498405456543,0,0.222747802734375,0.375168800354004,0,0.236189365386963,0.397808074951172,0,0.244454860687256,0.411723136901855,0.0194270610809326,0.137870788574219,0.16407585144043,0.00212836265563965,0.14323091506958,0.22758960723877,0,0.145605564117432,0.245250701904297,0.000308036804199219,0.160508632659912,0.269485473632813,-0.000394821166992188,0.181098937988281,0.30024528503418,-0.0138270854949951,0.265408039093018,0.387040138244629,-0.0274505615234375,0.342704296112061,0.420310974121094,-0.038422703742981,0.514297962188721,0.531996726989746,-0.0417444705963135,0.651353359222412,0.599813461303711,-0.0348756313323975,0.762030601501465,0.684944152832031,-0.0224441289901733,0.82240629196167,0.682287216186523,-0.00935095548629761,0.855240345001221,0.701972961425781,0,0.862894058227539,0.704019546508789,0.000811576843261719,-0.0077056884765625,0.00187873840332031,0.000594019889831543,-0.009918212890625,0.00310134887695313,0.000155091285705566,0.0022125244140625,-0.000777244567871094,0.000329375267028809,0.0011749267578125,-0.000447273254394531,0.0011594295501709,0.002471923828125,-0.00139617919921875,1.40666961669922e-05,3.0517578125e-05,-2.288818359375e-05,-0.00347661972045898,0.153153896331787,0.210897445678711,-0.00330471992492676,0.152126789093018,0.245725631713867,0,0.143993854522705,0.242537498474121,0.000575542449951172,0.153886318206787, +0.258514404296875,0.00110745429992676,0.169979572296143,0.284336090087891,-0.00502634048461914,0.214471340179443,0.361686706542969,-0.0106785297393799,0.239355564117432,0.400896072387695,-0.0157655477523804,0.341958999633789,0.508696556091309,-0.0169687271118164,0.395692348480225,0.590663909912109,-0.0128370523452759,0.441530227661133,0.678530693054199,-0.00699156522750854,0.448785781860352,0.696142196655273,-0.00195497274398804,0.449141502380371,0.700783729553223,0,0.44813871383667,0.699953079223633,0,0.0155012607574463,0.0261020660400391,0,0.0166990756988525,0.0281133651733398,0,0.0574002265930176,0.0966858863830566,0,0.0639677047729492,0.107743263244629,0,0.0410749912261963,0.0691709518432617,0,0.0496077537536621,0.0835428237915039,0,0.0327560901641846,0.0551681518554688,0,0.0255844593048096,0.0431070327758789,0,0.0201294422149658,0.0339107513427734,0,0.0698485374450684,0.117643356323242,0,0.0765180587768555,0.128879070281982,0,0.0855698585510254,0.144144535064697,0,0.104119777679443,0.175373077392578,0,0.116274356842041,0.19584846496582,0,0.137637138366699,0.231825828552246,0,0.160675048828125,0.270639419555664,0,0.183285713195801,0.308711051940918,0,0.203404426574707,0.342597007751465,0,0.219274044036865,0.369329452514648,0,0.229457378387451,0.386465072631836,0,0.232951641082764,0.392348289489746,0,0.00498509407043457,0.00838589668273926,0,0.00532674789428711,0.00898456573486328,0,0.0175414085388184,0.0295324325561523,0,0.0200695991516113,0.033804178237915,0,0.012507438659668,0.0210680961608887,0,0.0150327682495117,0.0253372192382813,0,0.0100874900817871,0.0170013904571533,0,0.00798177719116211,0.013460636138916,0,0.00637054443359375,0.010725736618042,0,0.0233855247497559,0.0393815040588379,0,0.0300307273864746,0.0505669116973877,0,0.0374231338500977,0.0630369186401367,0,0.0473175048828125,0.0797045230865479,0,0.0616607666015625,0.103858470916748,0,0.0820827484130859,0.138250827789307,0,0.105807304382324,0.178205013275146,0,0.131014823913574,0.220664024353027,0,0.155586242675781,0.262051582336426,0,0.17652416229248, +0.297322273254395,0,0.190653800964355,0.321128845214844,0,0.195640563964844,0.329518795013428,0,0.0349569320678711,0.0588787794113159,0,0.0349559783935547,0.0588786602020264,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788986206055,0,0.0349559783935547,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349559783935547,0.0588788986206055,0,0.0349559783935547,0.0588787198066711,0,0.0349569320678711,0.0588788390159607,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788390159607,0,0.0349559783935547,0.0588787198066711,0,0.0363063812255859,0.0611531734466553,0,0.0373172760009766,0.0628542900085449,0,0.0382575988769531,0.0644375085830688,0,0.0391626358032227,0.0659620761871338,0,0.039947509765625,0.0672838687896729,0,0.0404853820800781,0.0681908130645752,0,0.0406770706176758,0.0685139894485474,0,6.19888305664063e-06,0,0,0.0111551284790039,0.0188044011592865,0,0.0170526504516602,0.0287371873855591,0,0.0234537124633789,0.0394983291625977,0,0.0340986251831055,0.0574177503585815,0,0.0571928024291992,0.0963191986083984,0,0.0824432373046875,0.138874292373657,0,0.108834266662598,0.183314085006714,0,0.134903907775879,0.227211952209473,0,0.157544136047363,0.265340566635132,0,0.173019409179688,0.291410684585571,0,0.178509712219238,0.300680875778198,0,0.01021409034729,0.0172233581542969,0,0.0109755992889404,0.0184817314147949,0,0.01314377784729,0.0221266746520996,0,0.0165588855743408,0.0278935432434082,0,0.0210037231445313,0.0353751182556152,0,0.0261290073394775,0.0440058708190918,0,0.0314285755157471,0.052943229675293,0,0.0364913940429688,0.0614643096923828,0,0.0411648750305176,0.0693416595458984,0,0.0460448265075684,0.0775575637817383,0,0.0524230003356934,0.0882959365844727,0,0.0609221458435059,0.102613925933838,0,0.0729293823242188,0.122838973999023,0,0.0894365310668945,0.150627136230469,0,0.110260963439941,0.185714721679688,0,0.133652687072754,0.225111961364746,0,0.157646179199219,0.265541553497314, +0,0.180123329162598,0.303370952606201,0,0.198626518249512,0.334553718566895,0,0.210838317871094,0.355114936828613,0,0.215100288391113,0.362306118011475,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,-0.0365471839904785,0.132401943206787,0.16335391998291,-0.0317080020904541,0.119441032409668,0.180035591125488,-0.00770211219787598,0.125497341156006,0.205921173095703,-0.00862216949462891,0.13751220703125,0.218227386474609,0,0.146385192871094,0.246554374694824,0,0.149244785308838,0.251375198364258,0.000149965286254883,0.170611381530762,0.287445068359375,0.000257730484008789,0.173966884613037,0.293784141540527,0.00156474113464355,0.196243286132813,0.32856273651123,0.00220680236816406,0.186583042144775,0.314642906188965,0.0144271850585938,0.262995719909668,0.38924503326416,0.00841426849365234,0.272018432617188,0.396062850952148,0.0275585651397705,0.338051795959473,0.425239562988281,0.0125534534454346,0.339611053466797,0.412490844726563,0.0133519172668457,0.498847007751465,0.505549430847168,0.0381616353988647,0.503621578216553,0.534141540527344,0.0124857425689697,0.618789672851563,0.55654239654541,0.0569870471954346,0.683191299438477,0.594762802124023,0.0123049020767212,0.72717809677124,0.634589195251465,0.0377473831176758,0.746728897094727,0.719662666320801,0.0100971460342407,0.777842998504639,0.644651412963867,0.0250123143196106,0.80604887008667,0.754463195800781,0.00554817914962769,0.80966854095459,0.654092788696289,0.0107837617397308,0.83771276473999,0.772236824035645, +-0.035158634185791,0.125380039215088,0.170425415039063,-0.00837850570678711,0.128250122070313,0.206520080566406,0,0.148385524749756,0.249919891357422,0.000202417373657227,0.171963214874268,0.290075302124023,0.00190162658691406,0.192020893096924,0.322684288024902,0.0112886428833008,0.264553546905518,0.388331413269043,0.0192837715148926,0.33405876159668,0.412874221801758,0.0246865749359131,0.501651763916016,0.524785995483398,0.0411199331283569,0.674056053161621,0.588776588439941,0.0250489711761475,0.732104778289795,0.67955207824707,0.0182396769523621,0.787122249603271,0.70533275604248,0.00887784361839294,0.816516399383545,0.71776294708252,-0.0364410877227783,0.130566120147705,0.16722297668457,-0.00859260559082031,0.137504577636719,0.219629287719727,0,0.150552272796631,0.253569602966309,0.000238180160522461,0.173605442047119,0.29306697845459,0.00209879875183105,0.185175895690918,0.311875343322754,0.0129117965698242,0.2619948387146,0.386637687683105,0.0237894058227539,0.334719181060791,0.41862964630127,0.0320143699645996,0.49863338470459,0.524624824523926,0.050161600112915,0.675487041473389,0.599513053894043,0.0326721668243408,0.737317562103271,0.700977325439453,0.0225073099136353,0.797986507415771,0.737817764282227,0.0102526545524597,0.82785701751709,0.753236770629883,-5.65052032470703e-05,0.117701530456543,0.200788497924805,-4.31537628173828e-05,0.141842365264893,0.238812446594238,-4.26769256591797e-05,0.168219089508057,0.28272533416748,-0.000245571136474609,0.198824882507324,0.331281661987305,-0.00055384635925293,0.242912292480469,0.382946014404297,-0.00232887268066406,0.262887477874756,0.380683898925781,-0.00223261117935181,0.423539638519287,0.430620193481445,-0.00546395778656006,0.408888339996338,0.422101974487305,-0.00879573822021484,0.38727855682373,0.421172142028809,-0.00976741313934326,0.350358486175537,0.422521591186523,-0.00617456436157227,0.304449081420898,0.405952453613281,-0.00997424125671387,0.126359462738037,0.21147346496582,-0.0018002986907959,0.127323627471924,0.214204788208008,1.64508819580078e-05,0.142767429351807, +0.240663528442383,2.21729278564453e-05,0.166845798492432,0.280317306518555,0.000303268432617188,0.205648899078369,0.342340469360352,0.00241303443908691,0.265275478363037,0.401622772216797,0.00386381149291992,0.308348178863525,0.407146453857422,0.0023038387298584,0.36219596862793,0.415961265563965,-0.00150454044342041,0.436171054840088,0.427900314331055,-0.000754117965698242,0.493273735046387,0.441099166870117,0.00134575366973877,0.532151699066162,0.455874443054199,0.00104492902755737,0.554589748382568,0.461030006408691,-0.00147271156311035,0.223246574401855,0.372969627380371,-0.000393390655517578,0.205801486968994,0.345155715942383,-9.48905944824219e-05,0.173678398132324,0.292160987854004,-0.000107288360595703,0.147224426269531,0.247665405273438,0.000814676284790039,0.113017082214355,0.192517280578613,-0.00383821129798889,0.284485816955566,0.418965339660645,-0.00807434320449829,0.281293869018555,0.416671752929688,-0.014316201210022,0.26994800567627,0.418091773986816,-0.0137287378311157,0.25698184967041,0.409930229187012,-0.00948381423950195,0.24262809753418,0.39681339263916,-0.00413846969604492,0.227852344512939,0.378138542175293,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06, +0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,0.276616096496582,0.465914726257324,0,0.282456398010254,0.475753784179688,0,0.265462875366211,0.447128772735596,0,0.276081085205078,0.465022087097168,0,0.24632740020752,0.414892196655273,0,0.264269828796387,0.445117950439453,0,0.214681625366211,0.36158561706543,0,0.243294715881348,0.409794807434082,0,0.163360595703125,0.275151491165161,0,0.207333087921143,0.349218845367432,0,0.03680419921875,0.0619814991950989,0,0.120975971221924,0.20375657081604,0,0.0942764282226563,0.158810377120972,0,0.23243236541748,0.391499042510986,0,0.255223274230957,0.429879188537598,0,0.0870161056518555,0.146575331687927,0,0.151864528656006,0.255794286727905,0,0.282223701477051,0.47536563873291,0,0.27515697479248,0.463444232940674,0,0.261876106262207,0.44108247756958,0,0.251548767089844,0.423690319061279,0,0.237565040588379,0.400134086608887,0,0.194143295288086,0.3269944190979,0,0.127941608428955,0.215488433837891,0,0.0905289649963379,0.15246844291687,0,0.0612473487854004,0.103165984153748,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,0.112856864929199,0.190079689025879,0,0.161555290222168,0.27211856842041,0,0.192152500152588,0.323646545410156,0,0.212716579437256,0.358280181884766,0,0.228806018829346,0.385370254516602,0,0.242095947265625,0.407754898071289,0,0.253103256225586,0.42632007598877,0,0.26192569732666,0.441171646118164,0,0.268569946289063,0.452362060546875,0,0.273099899291992,0.459980010986328,0,0.275652885437012,0.464296340942383,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06, +0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,0.0159194469451904,0.0268154144287109,0,0.0413360595703125,0.0696144104003906,0,0.0742936134338379,0.125144004821777,0,0.0466125011444092,0.0785026550292969,0,0.0211348533630371,0.0356035232543945,0,0.0444304943084717,0.0748295783996582,0,0.0203735828399658,0.0343260765075684,0,0.0356247425079346,0.060002326965332,0,0.0142867565155029,0.0240654945373535,0,0.0202560424804688,0.0341272354125977,0,-3.09944152832031e-06, +0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,0.0764527320861816,0.128768920898438,0,0.060903787612915,0.102587223052979,0,0.0719420909881592,0.121177196502686,0,0.0440871715545654,0.0742459297180176,0,0.112709045410156,0.18982982635498,0,0.0881257057189941,0.148448467254639,0,0.101711750030518,0.171316146850586,0,0.109678745269775,0.184738636016846,0,0.132076740264893,0.222472667694092,0,0.115414142608643,0.194402694702148,0,0.144049167633057,0.242646217346191,0,0.152807712554932,0.257372379302979,0,0.202125549316406,0.340429306030273,0,0.18928337097168,0.318812370300293,0,0.176203727722168,0.29677677154541,0,0.159908771514893,0.26932954788208,0,0.219555377960205,0.369791984558105,0,0.243118762969971,0.409502983093262,0,0.230323791503906,0.387921333312988,0,0.234673023223877,0.395261764526367,0,0.253876686096191,0.427613258361816,0,0.257110595703125,0.433070659637451,0,0.269521713256836,0.453964233398438,0,0.271052360534668,0.45651912689209,0,0.246977806091309,0.415992736816406,0,0.262511253356934,0.442159652709961,0,0.256917953491211,0.43275260925293,0,0.269254684448242,0.453500747680664,0,0.271835327148438,0.45785665512085,0,0.279275894165039,0.470401763916016,0,0.279803276062012,0.471269607543945,0,0.274415016174316,0.462207794189453,0,0.264813423156738,0.446045875549316,0,0.270922660827637,0.456303596496582,0,0.278252601623535,0.468677520751953,0,0.279969215393066,0.471574783325195,0,0.284199714660645,0.478676795959473,0,0.284235954284668,0.478737831115723,0,0.282015800476074,0.474995613098145,0,0.28529167175293,0.480524063110352,0,0.285223007202148,0.480422973632813,0,0.278266906738281,0.468684196472168,0,0.275350570678711,0.463770866394043,0,0.280950546264648,0.473209381103516,0,0.282613754272461,0.476016998291016,0,0.282940864562988,0.476560592651367,0,0.285736083984375,0.481257438659668,0,0.28565788269043,0.48112964630127,0,0.279838562011719,0.471354484558105,0,0.283444404602051,0.47740650177002,0,0.216511249542236,0.364694118499756,0,0.199882507324219,0.336668968200684,0,0.19195556640625,0.323321580886841, +0,0.218781471252441,0.368503093719482,0,0.227734088897705,0.383570194244385,0,0.179086208343506,0.301628589630127,0,0.128441333770752,0.216340780258179,0,0.163488864898682,0.275368690490723,0,0.181680202484131,0.305999279022217,0,0.154314994812012,0.259908199310303,0,0.139509677886963,0.234982490539551,0,0.12766695022583,0.215015649795532,0,0.116224765777588,0.19575023651123,0,0.094778299331665,0.159652709960938,0,0.069580078125,0.117192268371582,0,0.102499485015869,0.172654628753662,0,0.0925796031951904,0.155925512313843,0,0.0724883079528809,0.122083187103271,0,0.047943115234375,0.0807664394378662,0,0.0232223272323608,0.0391144752502441,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06, +0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,0.00228273868560791,0.00383841991424561,0,0.00171351432800293,0.00288009643554688,0,0.00576019287109375,0.00969934463500977,0,0.00452566146850586,0.00763237476348877,0,0.0110607147216797,0.0186180472373962,0,0.00924825668334961,0.0155826807022095,0,0.0182387828826904,0.0307085420936346,0,0.01595139503479,0.0268786549568176,0,0.0267653465270996, +0.0450838804244995,0,0.0237088203430176,0.0399268269538879,0,0.0359816551208496,0.0605974793434143,0,0.0300979614257813,0.0506913065910339,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,0.00243830680847168,0.00409722328186035,0,0.0060882568359375,0.010257363319397,0,0.0117065906524658,0.0197114944458008,0,0.0192215442657471,0.0323871597647667,0,0.0278351306915283,0.0468840003013611,0,0.0360488891601563,0.060724139213562,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,0.00039362907409668,0.00066375732421875,0,0.00128626823425293,0.00217878818511963,0,0.00324392318725586,0.00544583797454834,0,0.0066680908203125,0.0112484693527222,0,0.0122847557067871,0.0206936299800873,0,0.0235657691955566,0.0396797657012939,0,0.0499298572540283,0.0841038227081299,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,0.00074005126953125,0.00124883651733398,0,0.00225973129272461,0.00381958484649658,0,0.00536346435546875,0.00903880596160889,0,0.0107131004333496,0.0180515646934509,0,0.0189025402069092,0.0318417623639107,0,0.0308914184570313,0.0520331859588623,0,0.0454208850860596,0.0765190124511719,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06, +0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,0.00217890739440918,0.00367832183837891,0,0.00557088851928711,0.00937032699584961,0,0.0108885765075684,0.0183485746383667,0,0.0181427001953125,0.0305507928133011,0,0.0263335704803467,0.0443464815616608,0,0.0338802337646484,0.0570684671401978,0,0.0472671985626221,0.0796009302139282,0,0.0484206676483154,0.0815457105636597,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,0.00119173526763916,0.00200843811035156,0,0.00336289405822754,0.00567007064819336,0,0.00736379623413086,0.0123950242996216,0,0.0135848522186279,0.0228914618492126,0,0.0218429565429688,0.0367847587913275,0,0.0311646461486816,0.0525016784667969,0,0.0397064685821533,0.0668666362762451,0,0.0419082641601563,0.0706021785736084,0,0.0303070545196533,0.0510427951812744,0,0.0216002464294434,0.0363991856575012,0,0.0144133567810059,0.0242701172828674,0,0.00863957405090332,0.0145582258701324,0,0.00441431999206543,0.00743317604064941,0,0.00157320499420166,0.00265121459960938,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,0.00222933292388916,0.00374054908752441,0,0.00469970703125,0.0079120397567749,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,0.0079498291015625,0.0133854448795319,0,0.0120329856872559,0.0202595591545105,0,7.62939453125e-06,0,0,0.00683748722076416,0.0115162134170532,0,0.0170423984527588,0.028706431388855,0,0.0135513544082642,0.0228368043899536,0,0.0138870477676392,0.0233789682388306, +0,0.017822265625,0.030021071434021,0,0.0164321660995483,0.0276666879653931,0,0.00948631763458252,0.0159788131713867,0,0.00925290584564209,0.0155812501907349,0,0.0217299461364746,0.0365978479385376,0,0.0166411399841309,0.0280300378799438,0,-1.54972076416016e-06,0,0,0.0314178466796875,0.0529062747955322,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,0.0705533027648926,0.118836164474487,0,0.0507049560546875,0.0853927135467529,0,0.0248916149139404,0.041921854019165,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,0.0487532615661621,0.0821069478988647,0,0.0760235786437988,0.128036618232727,0,0.0812621116638184,0.136878252029419,0,0.0636427402496338,0.107203722000122,0,0.0658752918243408,0.110955238342285,0,4.29153442382813e-06,0,0,0.00181126594543457,0.00303983688354492,0,6.19888305664063e-06,0,0,0.00122976303100586,0.00206708908081055,0,0.00027155876159668,0.00045013427734375,0,0.00053095817565918,0.00089573860168457,0,0.000150918960571289,0.000252723693847656,0,0.00015413761138916,0.000268936157226563,0,4.87565994262695e-05,8.05854797363281e-05,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,2.12192535400391e-05,4.48226928710938e-05,0,1.82390213012695e-05,1.9073486328125e-05,0,4.52995300292969e-06,1.43051147460938e-06,0,6.07967376708984e-06,1.9073486328125e-06,0,2.98023223876953e-06,0,0,5.96046447753906e-06,8.58306884765625e-06,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06, +0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,0.0418300628662109,0.0704513788223267,0,0.0790586471557617,0.133155226707458,0,0.111124992370605,0.187179327011108,0,0.138723373413086,0.233659505844116,0,0.162836074829102,0.274285793304443,0,0.151838302612305,0.255735874176025,0,0.167304992675781,0.281778812408447,0,0.180829048156738,0.304555177688599,0,0.192268371582031,0.323851108551025,0,0.201589584350586,0.339560508728027,0,0.209114074707031,0.35222053527832,0,0.214340209960938,0.361018180847168,0,0.217077255249023,0.365616798400879,0,0.0442714691162109,0.074573814868927,0,0.0860147476196289,0.144879698753357,0,0.122729301452637,0.206731200218201,0,0.153885841369629,0.259195327758789,0,0.179829597473145,0.302879571914673,0,0.201462745666504,0.339318037033081,0,0.219515800476074,0.369733810424805,0,0.234515190124512,0.394994258880615,0,0.246769905090332,0.415653705596924,0,0.256726264953613,0.432425022125244,0,0.264649391174316,0.445757865905762,0,0.270566940307617,0.455721378326416,0,0.274373054504395,0.462133884429932,0,0.276275634765625,0.465337753295898,0,0.0129709243774414,0.0218643844127655,0,0.0316190719604492,0.0532589554786682,0,0.055058479309082,0.0927153825759888,0,0.0765609741210938,0.128948092460632,0,0.0980768203735352,0.165205597877502,0,0.121386528015137,0.204470753669739,0,0.144671440124512, +0.243689775466919,0,0.159274101257324,0.268261909484863,0,0.175028800964355,0.294784307479858,0,0.189848899841309,0.319766044616699,0,0.206705093383789,0.348170280456543,0,0.214818000793457,0.361827611923218,0,0.0642423629760742,0.108212769031525,0,0.0803794860839844,0.135396838188171,0,0.0943984985351563,0.158991098403931,0,0.116857528686523,0.196829199790955,0,0.145086288452148,0.24436891078949,0,0.143693923950195,0.242032766342163,0,0.154560089111328,0.260334849357605,0,0.166681289672852,0.280746459960938,0,0.178991317749023,0.301467418670654,0,0.18864631652832,0.317739129066467,0,0.006866455078125,0.0115642547607422,0,0.0371150970458984,0.062524676322937,0,0.0689802169799805,0.11618435382843,0,0.0965089797973633,0.162568092346191,0,0.121211051940918,0.204147934913635,0,0.143879890441895,0.24235463142395,0,0.164898872375488,0.277732610702515,0,0.150025367736816,0.252686023712158,0,0.164416313171387,0.276927471160889,0,0.177491188049316,0.298945426940918,0,0.188400268554688,0.317317724227905,0,0.196043014526367,0.330198049545288,0,0.200170516967773,0.337162017822266,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,0.0879058837890625,0.148063659667969,0,0.093745231628418,0.157906532287598,0,0.140150547027588,0.236056327819824,0,0.141401767730713,0.238161087036133,0,0.123663425445557,0.208284378051758,0,0.14755392074585,0.24852466583252,0,0.165206909179688,0.278254508972168,0,0.18348217010498,0.309049606323242,0,0.204825878143311,0.34498405456543,0,0.222747802734375,0.375168800354004,0,0.236189365386963,0.397808074951172,0,0.244454860687256,0.411723136901855,-0.0194270610809326,0.137870788574219,0.16407585144043,-0.00212764739990234,0.14323091506958,0.22758960723877,0,0.145605564117432,0.245250701904297,-0.00030827522277832,0.160508632659912,0.269485473632813,0.000394821166992188,0.181098937988281,0.30024528503418,0.0138266086578369,0.265408039093018,0.387040138244629,0.0274505615234375,0.342704296112061, +0.420310974121094,0.0384229421615601,0.514297962188721,0.531996726989746,0.0417442321777344,0.651353359222412,0.599813461303711,0.0348756313323975,0.762030601501465,0.684944152832031,0.0224441885948181,0.82240629196167,0.682287216186523,0.00935089588165283,0.855240345001221,0.701972961425781,0.00362014770507813,0.153932094573975,0.210271835327148,0.00325441360473633,0.152050495147705,0.245761871337891,0,0.143993854522705,0.242537498474121,-0.000567913055419922,0.153886318206787,0.258506774902344,-0.00108623504638672,0.169933795928955,0.28429126739502,0.00488519668579102,0.214364528656006,0.361503601074219,0.0108332633972168,0.239447116851807,0.401032447814941,0.0153824090957642,0.341653823852539,0.508362770080566,0.016676664352417,0.395387172698975,0.590236663818359,0.0127778053283691,0.441438674926758,0.678349494934082,0.00706791877746582,0.449090957641602,0.696718215942383,0.00198569893836975,0.449629783630371,0.701723098754883,0,0.0166990756988525,0.0281133651733398,0,0.0574002265930176,0.0966858863830566,0,0.0639677047729492,0.107743263244629,0,0.0410749912261963,0.0691709518432617,0,0.0496077537536621,0.0835428237915039,0,0.0327560901641846,0.0551681518554688,0,0.0255844593048096,0.0431070327758789,0,0.0201294422149658,0.0339107513427734,0,0.0698485374450684,0.117643356323242,0,0.0765180587768555,0.128879070281982,0,0.0855698585510254,0.144144535064697,0,0.104119777679443,0.175373077392578,0,0.116274356842041,0.19584846496582,0,0.137637138366699,0.231825828552246,0,0.160675048828125,0.270639419555664,0,0.183285713195801,0.308711051940918,0,0.203404426574707,0.342597007751465,0,0.219274044036865,0.369329452514648,0,0.229457378387451,0.386465072631836,0,0.00532674789428711,0.00898456573486328,0,0.0175414085388184,0.0295324325561523,0,0.0200695991516113,0.033804178237915,0,0.012507438659668,0.0210680961608887,0,0.0150327682495117,0.0253372192382813,0,0.0100874900817871,0.0170013904571533,0,0.00798177719116211,0.013460636138916,0,0.00637054443359375,0.010725736618042,0,0.0233855247497559,0.0393815040588379,0,0.0300307273864746, +0.0505669116973877,0,0.0374231338500977,0.0630369186401367,0,0.0473175048828125,0.0797045230865479,0,0.0616607666015625,0.103858470916748,0,0.0820827484130859,0.138250827789307,0,0.105807304382324,0.178205013275146,0,0.131014823913574,0.220664024353027,0,0.155586242675781,0.262051582336426,0,0.17652416229248,0.297322273254395,0,0.190653800964355,0.321128845214844,0,0.0349559783935547,0.0588786602020264,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788986206055,0,0.0349559783935547,0.0588787794113159,0,0.0349569320678711,0.0588787794113159,0,0.0349559783935547,0.0588788986206055,0,0.0349559783935547,0.0588787198066711,0,0.0349569320678711,0.0588788390159607,0,0.0349569320678711,0.0588787794113159,0,0.0349569320678711,0.0588788390159607,0,0.0349559783935547,0.0588787198066711,0,0.0363063812255859,0.0611531734466553,0,0.0373172760009766,0.0628542900085449,0,0.0382575988769531,0.0644375085830688,0,0.0391626358032227,0.0659620761871338,0,0.039947509765625,0.0672838687896729,0,0.0404853820800781,0.0681908130645752,0,6.19888305664063e-06,0,0,0.0111551284790039,0.0188044011592865,0,0.0170526504516602,0.0287371873855591,0,0.0234537124633789,0.0394983291625977,0,0.0340986251831055,0.0574177503585815,0,0.0571928024291992,0.0963191986083984,0,0.0824432373046875,0.138874292373657,0,0.108834266662598,0.183314085006714,0,0.134903907775879,0.227211952209473,0,0.157544136047363,0.265340566635132,0,0.173019409179688,0.291410684585571,0,0.0109755992889404,0.0184817314147949,0,0.01314377784729,0.0221266746520996,0,0.0165588855743408,0.0278935432434082,0,0.0210037231445313,0.0353751182556152,0,0.0261290073394775,0.0440058708190918,0,0.0314285755157471,0.052943229675293,0,0.0364913940429688,0.0614643096923828,0,0.0411648750305176,0.0693416595458984,0,0.0460448265075684,0.0775575637817383,0,0.0524230003356934,0.0882959365844727,0,0.0609221458435059,0.102613925933838,0,0.0729293823242188,0.122838973999023,0,0.0894365310668945,0.150627136230469, +0,0.110260963439941,0.185714721679688,0,0.133652687072754,0.225111961364746,0,0.157646179199219,0.265541553497314,0,0.180123329162598,0.303370952606201,0,0.198626518249512,0.334553718566895,0,0.210838317871094,0.355114936828613,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,6.13927841186523e-06,0,0,-4.58955764770508e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06, +0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *5871 { + a: -0.884116136967485,-0.543078005313873,-1.34448239207268,-0.842690374439073,0.242965055629611,-1.51474511623383,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.993576245330566,0.178232096135616,-0.945944976061583,-0.993576263497523,0.332329265773296,-0.884727489203215,-0.692408370046412,-0.241693571209908,-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.470198271649906,0.756103157997131,-1.26443618535995,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.560718103597253,0.0533819831907749,-1.8227105140686,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.365000665796238,0.677815770730376,-1.64219343662262,-0.356566392915454,0.904723539948463,-1.10421094298363,-0.365000417938347,0.496099149808288, +-1.78426188230515,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.37752080016508,-0.215317510068417,-1.91366750001907,-0.396027461885424,0.466752298176289,-1.73845255374908,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.758668020367622,1.37624508142471,0.466036655008793,1.07595932483673,0.364670125767589,0.0958076119422913,1.01382929086685,0.491533651947975,-0.247394979000092,0.623119197785854,1.33687299489975,0.805279240012169,1.14071597158909,0.617008477449417,-0.687069118022919,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864,0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068, +-0.754436641931534,0.3939538449049,0.925415188074112,-0.728663846850395,0.510809898376465,0.984691768884659,0.696901172399521,0.0457341074943542,0.860736817121506,-0.324976205825806,0.314958125352859,1.62501043081284,0.320480421185493,-0.228561282157898,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.29381868243217,-0.667719230055809,-0.151087015867233,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.971452727913857,-0.788539305329323,-0.0708169341087341,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.1050630658865,0.423395546153188,-0.540710747241974,1.11550411581993,0.438819944858551,-0.576056569814682,1.46459203958511,0.643265664577484,-0.808811432681978,1.60444527864456,0.543951094150543,-0.861111789941788,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.17986667156219,0.321682639420033,-0.507210940122604,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.917997032403946,-0.0845799557864666,-0.422923982143402,1.37908479571342,0.963168323040009,-0.469931475818157,1.09801399707794,1.00461474061012,-0.736819755285978,0.992815136909485,0.875376135110855,-1.22411382198334,1.2098775357008,0.436104170978069,-0.8449338786304,1.59516072273254,0.198657333850861,-0.720014914870262,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.50504338741302,-0.186494469642639,-0.668427288532257,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328, +-0.406233571004122,-0.586036771535873,1.5728212594986,0.263049846515059,-0.596883669495583,1.50103968381882,0.547258526086807,-0.542409464716911,1.41646385192871,0.673135101795197,-0.736600980162621,1.36756077408791,0.497534438967705,-0.684602692723274,1.46095943450928,0.264543659985065,-0.484349220991135,1.46845752000809,0.455911546945572,-0.280545026063919,1.02537946403027,0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.41229394078255,0.393567815423012,-0.898287620395422,1.44287520647049,0.552613228559494,-1.11964479088783,1.53746294975281,0.338320180773735,-1.16872605681419,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.871865302324295,0.520269297063351,-0.999098673462868,-0.324598431587219,0.217438489198685,-1.25941088795662,-0.4418625831604,0.267053164541721,-0.685039915144444,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.297752797603607,0.00596422143280506,-0.790259346365929,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.445501685142517,0.0788079099729657,-0.906962499022484,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.285476744174957,0.254243310540915,-1.01625102758408,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163, +-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379, +-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.258549153804779,0.964152143336833,-0.854916965588927,-0.00140410661697388,0.47925940901041,-1.30150604248047,-0.167179524898529,0.802914805710316,-0.824575593695045,0.317191332578659,0.422314759343863,-1.34763860702515,-0.0311284065246582,0.725884325802326,-0.811353883706033,0.221148788928986,0.310832679271698,-1.26058748364449,0.138742685317993,0.666770227253437,-0.76159942895174,0.437944859266281,0.259957488626242,-1.2592768073082,0.333373188972473,0.675805615261197,-0.773726150393486,0.608295112848282,0.10823181271553,-1.25950562953949,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.580531150102615,0.0278149172663689,-1.05323074758053,0.101345241069794,0.82886290922761,-0.828864017501473,0.676499664783478,0.394543980248272,-1.38882184028625,0.525105506181717,0.591570593416691,-0.885946411639452,0.614756196737289,0.162919949740171,-1.23879411816597,0.348193570971489,0.775990813970566,-1.2625467479229,0.482840076088905,0.742744804279937,-1.20240181684494,0.359329789876938,0.691862981766462,-1.11937484145164,0.375963091850281,0.586611226201057,-1.06814371049404,0.452907145023346,0.55881055444479,-1.04075067490339,0.691860243678093,0.483705252408981,-0.982782110804692,0.0935768485069275,-0.148249924182892,-0.00617344677448273,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0004311203956604,-0.459323056042194,-0.661740578711033, +-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.246015846729279,-0.0595893561840057,-0.783799797296524,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.172049224376678,-0.515946777537465,-0.836000420153141,-0.383253157138824,-0.297135405242443,-0.911413721740246,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666,-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442, +-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682, +0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.113886833190918, +-0.372974216938019,-0.609257161617279,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.429701536893845,-0.711980909109116,-0.587764203548431,0.446635752916336,-0.742892950773239,-0.503289103507996,0.0911980867385864,-0.404589504003525,-0.520055443048477,-0.153519153594971,0.0272005200386047,-0.666218668222427,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.0588542819023132,-0.350616201758385,-0.569501280784607,-0.230534017086029,0.0905609279870987,-0.690496049821377,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,-0.117282629013062,0.223243594169617,-0.599023967981339,-0.00384587049484253,-0.036148726940155,-0.891184955835342,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,-0.030651330947876,-0.362702205777168,-1.0161247253418,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.173318564891815,0.250872850418091,-0.598893001675606,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.0304996967315674,-0.406572245061398,-1.10596886277199,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.212002754211426,-0.000204533338546753,-1.07850828766823,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.447182416915894,0.806576184928417,-0.888948023319244,-0.279415786266327,0.116289883852005,-1.04949781298637,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.44489598274231,0.168181091547012,-1.09907844662666,-0.100254029035568,-0.732699543237686,-1.28549030423164,0.0425741374492645,-0.749953493475914,-1.20673528313637,-0.232843160629272,-0.187342911958694,-1.23046618700027,-0.390026926994324,-0.144685506820679,-1.29665458202362, +-0.375279329717159,0.179202973842621,-0.413897261023521,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,-0.586331710219383,-0.0568989813327789,-1.57269960641861,-0.554702833294868,-0.118018865585327,-1.33752650022507,0.159278452396393,-0.363652423024178,-0.80483865737915,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.182981014251709,-0.317354187369347,-0.755840867757797,0.229211509227753,-0.434483826160431,-0.823259294033051,0.296527206897736,-0.155526161193848,-0.279198527336121,0.393196135759354,-0.301407039165497,-0.351608546450734,0.18047559261322,-0.323270171880722,-0.719346642494202,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.185368776321411,-0.362648621201515,-0.725168019533157,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,0.15667587518692,0.0235023200511932,-0.802159786224365,0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709, +-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431, +-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854, +-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956, +0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.811255313456059,-0.981955448165536,-0.66402730345726,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422, +0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445,-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088, +-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.515873625874519,-0.268991827964783,0.258705386891961,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917, +0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008, +0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.229765117168427,0.313936576247215,0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852, +0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243, +-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,0.449845045804977,-0.608092457056046,-0.17403656244278,0.166223287582397,0.184119202196598,0.202192723751068,-0.0390805602073669,0.229262202978134,0.0518724024295807,0.452572971582413,-0.476344019174576,-0.194641962647438,-0.0220091938972473,0.355205863714218,0.218727201223373,0.185904085636139,0.424326695501804,0.42782136797905,0.123874008655548,0.613244749605656,0.351749837398529,-0.179951250553131,0.635248109698296,0.0368033051490784,-0.335455894470215,0.392067953944206,-0.245879143476486,-0.317345321178436,0.450252294540405,-0.0819048881530762,-0.431333392858505,0.739164993166924,-0.0747618079185486,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.278488591313362,-0.192828416824341,-0.514718070626259,0.000485777854919434,0.323416730388999,-0.864409744739532,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,-0.154063105583191,0.33594611287117,0.169345170259476,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.396856039762497,0.852816989645362,-0.741743832826614,-0.58812427520752,0.906542943790555,-0.327182836830616,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.735096782445908,1.40902262926102,-0.086108174175024,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.0419488549232483, +0.0134161859750748,-0.04491126537323,-0.295188009738922,0.214331429451704,-0.419221580028534,-0.18359363079071,0.174008540809155,-0.160585463047028,-0.196186780929565,0.00483188033103943,-0.183700263500214,-0.345083653926849,0.0614327192306519,-0.478657811880112,-0.13665646314621,0.282971046864986,-0.0906510353088379,-0.306366503238678,0.361178528517485,-0.380304872989655,-0.329405725002289,0.60992768406868,-0.411456525325775,-0.264140903949738,0.604200050234795,-0.126516938209534,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.730364382266998,0.306279510259628,-0.490423649549484,-0.886111803352833,0.282837346196175,-0.806563410907984,-0.261450231075287,0.410456120967865,-0.521658450365067,-0.273510038852692,0.345239400863647,-0.357180893421173,-0.260551333427429,0.481825210154057,-0.376091182231903,-0.347658812999725,0.501052208244801,-0.614314690232277,-0.472524583339691,0.337657913565636,-0.791025720536709,-0.579494118690491,0.375404745340347,-0.73698017001152,-0.62894706428051,0.617731243371964,-0.718538954854012,-0.721859306097031,0.67201355099678,-0.872057788074017,-0.84612026065588,0.511212214827538,-0.776273161172867,-0.905597984790802,0.516680762171745,-0.887192331254482,-0.462860375642776,0.00574322789907455,-0.0513052344322205,0.189081847667694,0.438322022557259,0.112995564937592,0.322290301322937,0.427934616804123,0.182370126247406,0.305465251207352,0.592849791049957,0.173951506614685,0.271906137466431,0.691806584596634,0.20048999786377,0.421097636222839,0.597130194306374,0.36383455991745,0.272761940956116,0.663684964179993,0.30830317735672,0.255338251590729,0.529279805719852,0.331624269485474,0.403427302837372,0.536131553351879,0.361280262470245,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.363152861595154,0.189182728528976,-0.0224601626396179,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586, +0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.2556133300276,-1.09469392895699,1.60395538806915,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.82968296744184,0.10188889503479,1.45265838503838,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.806217473000288,-0.546170011162758,1.47070220112801,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.873776525259018,-0.82747745513916,1.56725305318832,-0.64750936627388,-0.886254876852036,1.64454412460327,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073,1.69242018461227,-0.418156966567039,-0.996445000171661,1.62188249826431,-1.32715570926666,0.719766840338707,0.45976210385561,-1.47245618700981,0.813697539269924,0.472755763679743,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.22930428385735,-0.747090443968773,0.240253269672394,-1.15142431855202,-0.734234526753426,1.06935754418373,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.601942539215088,-1.67186063528061,0.741705030202866,-1.017892498523,-0.665836066007614,0.391102124005556,-0.960159841911985,-0.729522794485092,0.174396470189095,-1.1230471432209,0.452305108308792,0.757969871163368,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.48888283967972,0.633280500769615,0.61393116414547,-1.36991047859192,0.403971791267395,1.38204634189606,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.35429108142853, +0.654984444379807,1.31444895267487,-1.72381806373596,0.279521815478802,0.444910958409309,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.39378422498703,-0.24418868124485,1.33234059810638,-1.54483103752136,-0.185494258999825,0.527791917324066,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.42860466241837,0.0516091883182526,1.21136975288391,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.893941581249237,-0.229679390788078,1.65949374437332,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.571227833317863,0.0539829134941101,1.62001818418503,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-1.67938727140427,-0.49170646071434,0.617060109972954,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.68745225667953,-0.788070857524872,0.727078855037689,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.81666337326169,-1.19985583424568,1.05672872066498,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.924171723425388,-1.2225076854229,0.790405482053757,-0.856766687106052,-1.22375068068504,0.850081384181976,-0.797007709285865,0.378508627414703,-0.123358756303787,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.57659423351288,0.30468824505806,0.00333210825920105,-1.64392256736755, +0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375,0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.8553404211998,0.141831368207932,0.188361465930939,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.8350510597229,-0.540856823325157,0.37151506729424,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-1.03254893422127,-1.26439967751503,0.990429520606995,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.000565230846405029,-1.3418020606041,0.790252566337585,-0.270260602235794,-1.2614977657795,0.912949204444885,-0.631436860770918,-1.35349377989769,0.990902483463287,-0.632129454844932,-1.3551484644413,0.986195832490921,-0.689489396404625,-0.373922154307365,-0.402563810348511,-0.535550370812416,-0.093359898775816,-0.299801111221313,-0.879581779241562,-0.190203309059143,-0.198362112045288,-1.00368857383728,-0.531802207231522,-0.263567328453064,-0.699612192809582,-0.119062272366136,-0.229993939399719,-0.785577058792114,-0.128116080537438,-0.242942154407501,-0.605821730569005,-0.384515412151814,-0.300109565258026,-0.770300989039242,-0.362795671448112,-0.46848851442337,-0.709338560700417,-0.326459180563688,-0.490393996238708,-1.33861029148102,-0.303658500313759,-0.287878096103668,-1.43251615762711,-0.490325599908829,-0.0676859617233276,-1.46350640058517,-0.875421702861786,0.0244572162628174,-1.48888093233109,-0.78707367181778,0.338591128587723,-1.35867446660995,-0.979819893836975,0.638760961592197,-0.977297469973564,-1.30687421560287,0.904543608427048,-0.403889268636703,-1.61917459964752,0.335363626480103,-0.538782089948654,-0.817170560359955,0.469862252473831,-0.365859925746918,-0.680286727845669,0.256256371736526,-0.141526818275452,-1.41395872831345,0.218454033136368,-0.942512252368033,-0.860116444528103,0.324086517095566,-0.979240778505542,-0.907312750816345,0.522302895784378,-0.683701634407043, +0.640349082648754,-1.09920170903206,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.84437698125839,-0.0242396593093872,-0.470494538545609,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.72625267505646,-0.574788570404053,0.0440070182085037,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.405073821544647,-0.29983451962471,0.260180160403252,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.408373057842255,-0.299432218074799,0.758136391639709,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.904993668935003,-0.580648869276047,0.186636179685593,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.81449174880981,0.471716772764921,0.103082984685898,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.91349363327026,0.255278681404889,0.178773060441017,-1.80069410800934,0.195624381303787,0.35423949174583,-1.80126881599426,0.0104192197322845,0.26885087043047,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.690081059932709,-0.448848932981491,0.527699060738087,-0.457435488700867,-0.52697029709816,0.442069187760353,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.01708904094994,-0.877110730856657,0.379201758652925,-0.998503710208251,-0.881174180656672,0.356345940381289,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606, +-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.768468946218491,0.565167635679245,0.388752035796642,-1.41973310709,0.0957981050014496,-0.360679119825363,-1.20299801230431,0.277153786271811,-0.525397747755051,-0.798909850418568,0.777520745992661,0.604770466685295,-1.13574504852295,0.283755149692297,-0.541101843118668,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.11303621530533,-0.798015587031841,-0.895976632833481,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.03431317210197,-0.899612630499178,-0.997651606798172,-1.38487881422043,0.0185545533895493,-1.40741235017776,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168, +-1.40657436847687,-1.05190888047218,-0.979564651846886,-1.10035198926926,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-1.01960306614637,-0.617926403880119,-0.715167924761772,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.07395175099373,0.829417556524277,-0.923868367448449,-1.14396674931049,0.616303145885468,-0.910945220850408,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.59401285648346,0.573885753750801,-0.843421995639801,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.27584394812584,0.321508452296257,-0.836829178035259,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.06090176105499,0.113657489418983,-0.992238243576139,-1.36626350879669,0.475077927112579,-0.359244585037231,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.13182732462883,0.341878995299339,-0.794445343315601,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.55794298648834,-0.163474380970001,-0.646471232175827,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.50767433643341,-0.456155970692635,-0.760513246059418,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-1.60500639677048,-0.141157109290361,-0.746958613395691,-1.54324442148209,-0.258292138576508,-0.707387827336788,-1.4566365480423,-0.102446258068085,-0.783346317708492,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.48569315671921,-0.115178093314171,-0.688375294208527,-1.58843266963959,-0.314196854829788,-0.676173649728298, +-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.32030257582664,-0.139431715011597,-0.75775096565485,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-1.63563579320908,-0.111212939023972,-0.645851656794548,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208,0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,0.468935012817383,0.444097517989576,-0.0837262272834778,-0.917033791542053,-0.152083143591881,0.0715253353118896,-0.899509996175766,-0.0132339000701904,0.105862855911255,-0.978266507387161,-0.218800947070122,0.148283898830414,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.989644974470139,-0.243411764968187,0.212349116802216,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.864884108304977,0.068976828828454,0.118159830570221,-0.962225139141083,0.0184548236429691,0.183243811130524,-1.06108289957047,4.1671097278595e-05,0.163650870323181,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798, +-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.06985518336296,1.19146612286568,0.565908078104258,-1.15227884054184,0.806445047259331,0.284897208213806,-0.751689940690994,1.14255890250206,0.889769431203604,-1.06437003612518,0.84141793847084,0.424562990665436,-0.994991093873978, +1.24098044633865,0.788824326358736,-1.30209255218506,0.681211248040199,0.375398635864258,-1.02134996652603,0.897251829504967,1.01019334793091,-1.31432190537453,0.719328045845032,0.437053114175797,-1.00561791658401,1.06915476918221,1.03261466324329,-1.30395328998566,0.315785571932793,0.602485001087189,-1.08500897884369,0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.981949830893427,0.209982231259346,0.852725625038147,-0.521233163774014,0.800939586013556,1.02310553379357,-0.862383862957358,0.426683764904737,0.597152233123779,-0.805963046848774,0.448815569281578,1.05076524242759,-0.766009718179703,0.116848640143871,0.689910739660263,-1.19413757324219,0.659561529755592,0.434770911931992,-1.24524211883545,0.708135586231947,0.577133819460869,-0.58906926959753,0.722414340823889,0.821866601705551,-0.559513598680496,0.603613488376141,0.845577642321587,-0.67862244695425,0.640427019447088,0.899562202394009,-1.4628718495369,0.48870662972331,0.794601633446291,-1.43604308366776,0.533288598060608,0.897666156291962,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.27592891454697,0.119089629501104,0.149021685123444,-1.27119427919388,0.370175234973431,0.276612162590027,-0.84610041975975,0.464426472783089,0.377565741539001,-0.684160793665797,0.388900734484196,0.324531733989716,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.12786066532135,0.271317994222045,0.105717599391937,-0.96245089173317,0.0291647836565971,0.101836264133453,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155, +-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, +-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739, +0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.10436095297337,0.198008470237255,0.618206173181534,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.06144091486931,0.0493755340576172,0.590569108724594,-1.6346275806427,0.0312936678528786,0.336885154247284,-1.61978113651276,0.202733341604471,0.330207228660583,-1.00251992046833,0.2667271271348,0.452624499797821,-0.983450084924698,0.157140016555786,0.486277043819427, +-1.07144989073277,0.223964743316174,0.555411636829376,-1.453280210495,0.33342457190156,0.103442192077637,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.38520258665085,0.151090383529663,0.11340194940567,-1.58005917072296,0.0557753443717957,-0.089605987071991,-1.60283923149109,-0.148395121097565,-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.62906205654144,-0.228315815329552,-0.371628075838089,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.40193945169449,0.194698095321655,-0.0351143926382065,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.05477386713028,0.454157344996929,0.189654588699341,-1.38249570131302,0.226804383099079,-0.124686896800995,-1.00103342533112,0.627255290746689,0.181045591831207,-0.806758642196655,1.40689265727997,0.663175418972969,-1.02959424257278,1.13772186636925,0.37870317697525,-0.730625748634338,0.771656796336174,0.32690155506134,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.64424654841423,1.02397805452347,0.195453107357025,-0.621513992547989,0.231634370982647,0.0285583734512329,-1.25451999902725,0.224796816706657,-0.214592695236206,-0.849064409732819,0.669134855270386,0.076042652130127,-1.07769149541855,0.756924659013748,-0.294369995594025,-0.976943150162697,1.15981651842594,0.363000050187111,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.12955410778522,-0.00110557675361633,-0.607781797647476,-1.12539194524288,0.268890276551247,-0.551124632358551,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.70521080493927,-0.246230289340019,0.0387457013130188,-1.77235019207001,-0.156699255108833, +0.0759185552597046,-1.56467086076736,0.362394839525223,0.57407683134079,-1.61219251155853,0.00945809483528137,0.447605738881975,-1.7548406124115,-0.117103263735771,0.188812047243118,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.68994826078415,-0.353448405861855,0.132532477378845,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551, +-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507, +-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098, +-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792, +0.000544942915439606,-0.544642694294453,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232, +0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.600028283894062,0.657730028033257,1.23243783414364,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201, +0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579, +-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.91254603862762,0.0032515674829483,0.466114416718483, +-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373, +-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425, +0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,-0.218245446681976,0.271447915583849,-1.49718564748764,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.631703644990921,0.384205006994307,-1.47888395190239,-0.453942745923996,0.416392158716917,-1.29734328389168,-0.404407173395157,0.478796392679214,-1.24031063914299,-0.562031090259552,0.547952054068446,-1.36980891227722,-0.174162924289703,-0.187826573848724,-0.901884585618973,-0.191403061151505,-0.194074511528015,-1.02072095870972,0.104021310806274,0.203202456235886,-1.19644516706467,0.284079790115356,0.259290516376495,-1.13418447971344,0.059979110956192,-0.0901576280593872,-1.13228613138199,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.634085543453693,0.338551968336105,-1.26176315546036,-0.495565205812454,-0.306424558162689,-1.06300169229507,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,-0.310108244419098,0.369243502616882,-0.914501428604126,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.156480044126511,0.492874652147293,-0.943969547748566,0.0540953874588013,0.620514452457428,-1.0752312541008,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.830552518367767,0.877453096210957,-0.114428516477346,0.931183822453022,0.921684209257364,-0.27465096116066,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.257009565830231,-0.233503311872482,-0.868397951126099,0.340928614139557,-0.187084093689919,-0.759165912866592,0.367477595806122,-0.159506157040596,-0.772595077753067,0.310016751289368,-0.174103111028671,-0.896730661392212,0.349780738353729,0.247892947867513,-0.833996541798115,0.356790363788605,0.283883551135659,-0.618445858359337,0.30935001373291,0.0946872234344482,-0.381668150424957,0.448457628488541,0.0793056786060333,-0.73324117064476, +0.637456744909286,0.452046165242791,-0.715856239199638,0.741893082857132,0.487201290205121,-0.460665076971054,0.257586747407913,-0.362258732318878,-1.18217068910599,0.234379172325134,0.243448905646801,-1.07331269979477,0.287016212940216,0.0905415043234825,-1.24487680196762,0.43664687871933,0.259586468338966,-0.977628752589226,0.395203590393066,0.157849989831448,-1.21410584449768,0.505958408117294,0.0803926941007376,-0.90012850612402,0.604947030544281,0.283929169178009,-0.77721956372261,0.676491796970367,0.274529002606869,-1.31833010911942,0.752051696181297,0.361942276358604,-1.30572485923767,0.818928860127926,0.265636044787243,-1.33603185415268,0.828657940030098,0.232219509780407,-1.417853474617,1.1216453909874,-0.0420224070549011,-1.04262313991785,0.154577076435089,0.13452684879303,-1.32599747180939,-0.147342026233673,0.149519346654415,-1.60044699907303,-0.200135409832001,0.186800919473171,-1.53840810060501,0.0622460842132568,0.259227111935616,-1.18301141262054,0.116962492465973,0.366240430390462,-1.05989217758179,-0.394169330596924,0.39809952583164,-1.48088347911835,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.15268212556839,0.406853206455708,-1.46883118152618,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,0.748476587235928,0.551028246991336,-1.32268404960632,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,1.05388695001602,-0.322993129491806,-0.0338871479034424,1.11213463544846,-0.417363226413727,-0.167172700166702,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,1.09484523534775,-1.1067690551281,-0.15492832660675, +0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.824516475200653,-1.17877915501595,0.0225204229354858,0.565207481384277,-1.27340400218964,0.0968380570411682,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.505612887442112,-0.955908000469208,-0.108852207660675,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.480055546599033,-0.0588511824607849,-0.122940957546234,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.300646757918003,-1.57336264848709,-0.148101091384888,0.262782337929821,-1.46231997013092,-0.299598902463913,0.448990777134895,-1.42406004667282,-0.295574963092804,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.200834203511477,-1.51684135198593,-0.35354408621788,0.152047302573919,-1.6581923365593,-0.269904941320419,0.714810416102409,0.279693081974983,-0.203442215919495,0.823833271861076,0.0705700218677521,-0.258839845657349,0.951288923621178,0.0149064734578133,-0.339438557624817,0.839720577001572,-0.502113223075867,-0.24354749917984,0.843248277902603,-0.581115663051605,-0.183417141437531,0.961686462163925,-0.535616010427475,-0.118007302284241,0.974294751882553,-0.355075240135193,-0.139003753662109,0.992890149354935,-0.246238062158227,-0.146641075611115,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.625307321548462,-0.599356144666672,0.023145318031311,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.767161771655083,0.132067978382111,-0.379375129938126, +0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.2391565144062,-0.0884372666478157,-0.772376507520676,1.67791867256165,-0.393890544772148,-0.389094859361649,1.62525814771652,-0.407146140933037,-0.292372345924377,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.293334849178791,-0.819025693461299,-0.39416491985321,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.835121516138315,-0.894348572473973,-0.153015643358231,0.01705601811409,0.938295260071754,-1.31072622537613,1.09038612246513,0.471424343064427,-1.27518326044083,1.33740389347076,0.40354148298502,-1.17478397488594,0.983469367027283,0.682022288441658,-1.28679051995277,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.47120893001556,0.209770212881267,-1.08181887865067,1.25535067915916,0.0136107448488474,-1.09491683542728,1.87034869194031,-0.2316062618047,-0.472062943503261,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,1.35203120112419,-0.886216830462217,0.0279365181922913,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.283053934574127,-0.708625040948391,-0.147830843925476,0.494020074605942,-0.809121757745743,-0.0890593528747559,0.952493308810517,-0.92289549484849,0.032221794128418,0.815923422574997,0.0321584462653846,-0.967480420134962,1.24826204776764,-0.121638141572475,-0.92222960665822,1.32317072153091,-0.153619270771742,-1.22606039047241,0.598443761467934,-0.760824779048562,-1.36313271522522,0.661132261157036,-0.780838022008538,-1.34747448563576,0.440351903438568,-0.824315614998341, +-1.32628270983696,0.441618825308979,-0.81732626631856,-1.33930751681328,0.450973011553288,-0.738324623554945,-1.36231654882431,0.93036612868309,-1.06705375015736,-1.17268660664558,1.06996673345566,-1.19917604327202,-1.02241185307503,1.24061834812164,-1.25071850419044,-0.881443977355957,1.20946311950684,-1.43408226966858,-0.645988196134567,1.10940277576447,-1.57493472099304,-0.337574142962694,0.663141131401062,-1.73296970129013,0.017496645450592,0.276147276163101,-1.63671255111694,0.184113919734955,0.0674229264259338,-1.43733525276184,0.222508430480957,-0.153834164142609,-1.39247524738312,0.212909638881683,0.0303831696510315,-1.47129809856415,0.204534709453583,0.498971156775951,-1.50281459093094,0.230528563261032,0.660592347383499,0.343201532959938,-1.11549997329712,1.36689883470535,-0.889552593231201,-0.840845614671707,1.29865834116936,-1.08374884724617,-0.669953584671021,1.21114584803581,-1.2469482421875,-0.58731796219945,1.13178282976151,-1.40182983875275,-0.368098437786102,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596,-1.61235952377319,-0.0890781879425049,-0.0963481664657593,-1.48688155412674,-0.122161000967026,0.125362932682037,-0.986302703619003,-0.147522479295731,0.19314169883728,-1.12847146391869,-0.214436441659927,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.68874233961105,0.523136101663113,-0.773848339915276,1.75988864898682,0.265540436375886,-0.775177180767059,1.81991249322891,-0.117224797606468,-0.670743525028229,1.78495985269547,-0.228292703162879,-0.583353088703007,1.67691868543625,-0.467171929776669,-0.542732492089272,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824, +0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.597725793719292,-1.17226991057396,-0.0322532951831818,0.353135406970978,-1.14357566833496,0.00262853503227234,0.083863228559494,-1.63346266746521,-0.117123454809189,0.483918391168118,-1.79934710264206,0.176196560263634,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079, +1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421, +-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030772144, "Geometry::Eye_Left_Blink", "Shape" { + Version: 100 + Indexes: *1439 { + a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484, +6485,6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541, +7542,7543,7544,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7945,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171, +8172,8173,8174,8175,8176,8178,8179,8182,8184,8185,8186,8187,8188,8189,8190,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8796,8797,8799 + } + Vertices: *4317 { + a: -0.00613665580749512,0.0182564854621887,0.0243701934814453,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00358819961547852,-0.0769793391227722,-0.0126619338989258,0.024446964263916,-0.169486105442047,-0.0646982192993164,0.0529365539550781,-0.458391129970551,-0.0494594573974609,0.0454597473144531,-0.678797662258148,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0472264289855957,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459413051605,0.0511989593505859,0.0672264099121094,-0.893106400966644,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.298909664154053,-0.00198650360107422,0.0389174222946167,-0.0977756083011627,0.0240745544433594,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.032780647277832,-0.160450369119644,-0.000295639038085938,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0495243072509766,-1.08459424972534,0.0203657150268555,0.0288047790527344,-1.08314323425293,-0.0128793716430664,0.0271816253662109,-0.954351663589478,-0.0837669372558594,-0.00526714324951172,-0.790514469146729,-0.0908432006835938,-0.00865554809570313,-0.620952308177948,-0.125743865966797,-0.0264496803283691,-0.368094146251678,-0.135475158691406,-0.0226020812988281,-0.208823055028915,-0.115944862365723,-0.0389270782470703,-0.137027770280838,-0.0579833984375,-0.000884056091308594,-0.0108398497104645,-0.000719070434570313,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00490427017211914,-0.0891427993774414,-0.0122623443603516,0.0220603942871094,-0.198800206184387,-0.0688571929931641,0.0529365539550781,-0.458391040563583,-0.0494594573974609,0.0454597473144531,-0.678797721862793,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094, +0.0472259521484375,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459424972534,0.0511989593505859,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.032780647277832,-0.160450369119644,-0.000295639038085938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.0213150978088379,0.0400071740150452,0.0177621841430664,-0.00638437271118164,0.0888170897960663,0.0231914520263672,-0.0175461769104004,0.139472648501396,0.0379095077514648,-0.0256650447845459,0.174823373556137,0.0525550842285156,-0.0207691192626953,0.195090867578983,0.0683212280273438,0.0213427543640137,0.218668770045042,0.0630502700805664,0.010951042175293,0.217465281486511,0.0562944412231445,-0.000445365905761719,0.190029501914978,0.0493602752685547,-0.00952959060668945,0.156094163656235,0.0419826507568359,-0.00745296478271484,0.077526867389679,0.0218887329101563,-0.00565242767333984,0.0358172655105591,0.011347770690918,0.0367529392242432,0.000832945108413696,0.00252914428710938,0.0493695735931396,0.0568453222513199,0.0177621841430664,-0.0257575511932373,0.133793652057648,0.0231914520263672,-0.0175461769104004,0.174690082669258,0.0453577041625977,-0.0256650447845459,0.234229490160942,0.0448799133300781,-0.0207691192626953,0.254496991634369,0.0606479644775391,0.022613525390625,0.265651524066925,0.0310649871826172,0.0122213363647461,0.310270339250565,-0.0122919082641602,0.000825881958007813,0.298430889844894,-0.01922607421875,-0.0105600357055664,0.269753575325012,-0.0241279602050781,-0.0487661361694336,0.238443367183208,-0.0187444686889648,-0.0182666778564453,0.153886333107948,0.0003814697265625,-0.00854206085205078,0.0186165273189545,0.0586395263671875,-0.00773286819458008,-0.00297999382019043,0.0135889053344727,-0.0222549438476563,0.0918513536453247,-0.0103788375854492,-0.0164384841918945,0.142634898424149,-0.0246381759643555,-0.0362467765808105,0.215277269482613, +-0.0750608444213867,0.000824928283691406,0.259828560054302,-0.01922607421875,0.0122218132019043,0.287264347076416,-0.0122919082641602,0.022613525390625,0.265651524066925,0.0310649871826172,-0.0207691192626953,0.227679088711739,0.0526962280273438,-0.0256650447845459,0.207411557435989,0.0369291305541992,-0.0175461769104004,0.139472603797913,0.0379095077514648,-0.027350902557373,0.110749125480652,-0.00228404998779297,0.0213150978088379,0.0370644330978394,-0.011016845703125,0.00869870185852051,-0.018947958946228,-0.0262508392333984,-0.00613665580749512,0.0182564854621887,0.0243701934814453,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00358819961547852,-0.0769793391227722,-0.0126619338989258,0.024446964263916,-0.169486105442047,-0.0646982192993164,0.0529365539550781,-0.458391129970551,-0.0494594573974609,0.0454597473144531,-0.678797662258148,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0472264289855957,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459413051605,0.0511989593505859,0.0672264099121094,-0.893106400966644,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.298909664154053,-0.00198650360107422,0.0389174222946167,-0.0977756083011627,0.0240745544433594,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.032780647277832,-0.160450354218483,-0.000295639038085938,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0495243072509766,-1.08459424972534,0.0203657150268555,0.0288047790527344,-1.08314323425293,-0.0128793716430664,0.0271816253662109,-0.954351663589478,-0.0837669372558594,-0.00526714324951172,-0.790514469146729,-0.0908432006835938,-0.00865554809570313,-0.620952308177948,-0.125743865966797,-0.0264496803283691,-0.368094205856323,-0.135475158691406,-0.0226020812988281, +-0.208823069930077,-0.115944862365723,-0.0389270782470703,-0.137027770280838,-0.0579833984375,-0.000884056091308594,-0.0108398497104645,-0.000719070434570313,-0.000884056091308594,-0.0108398497104645,-0.000719070434570313,0.00490427017211914,-0.0891428291797638,-0.0122623443603516,0.0220603942871094,-0.198800176382065,-0.0688571929931641,0.0529365539550781,-0.458391070365906,-0.0494594573974609,0.0454597473144531,-0.678797721862793,-0.00773525238037109,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0472259521484375,-0.983750820159912,0.0270214080810547,0.0491378307342529,-1.08314323425293,0.0494852066040039,0.0441427230834961,-1.08459424972534,0.0511989593505859,0.0672264099121094,-0.893106460571289,0.024907112121582,0.0709989070892334,-0.62511020898819,0.00778675079345703,0.0546555519104004,-0.356360077857971,-0.00198650360107422,0.032780647277832,-0.160450369119644,-0.000295639038085938,0.00869870185852051,-0.0160052180290222,0.00252914428710938,0.0213150978088379,0.0400071740150452,0.0177621841430664,-0.00638437271118164,0.0888170897960663,0.0231914520263672,-0.0175461769104004,0.139472648501396,0.0379095077514648,-0.0256650447845459,0.174823373556137,0.0525550842285156,-0.0207691192626953,0.195090867578983,0.0683212280273438,0.0213427543640137,0.218668770045042,0.0630502700805664,0.010951042175293,0.217465281486511,0.0562944412231445,-0.000445365905761719,0.190029501914978,0.0493602752685547,-0.00952959060668945,0.156094163656235,0.0419826507568359,-0.00745296478271484,0.077526867389679,0.0218887329101563,-0.00565242767333984,0.0358172655105591,0.011347770690918,0.0367529392242432,0.000832945108413696,0.00252914428710938,0.0493694543838501,0.0568453222513199,0.0177621841430664,-0.0257575511932373,0.133793652057648,0.0231914520263672,-0.0175461769104004,0.174690052866936,0.0453577041625977,-0.0256650447845459,0.234229490160942,0.0448799133300781,-0.0207691192626953,0.254497021436691,0.0606479644775391,0.022613525390625,0.265651524066925,0.0310649871826172,0.0122213363647461,0.310270369052887,-0.0122919082641602, +0.000825881958007813,0.298430889844894,-0.01922607421875,-0.0105600357055664,0.269753575325012,-0.0241279602050781,-0.0487661361694336,0.238443367183208,-0.0187444686889648,-0.0182666778564453,0.153886348009109,0.0003814697265625,-0.00854206085205078,0.0186165273189545,0.0586395263671875,-0.00773286819458008,-0.00297996401786804,0.0135889053344727,-0.0222549438476563,0.0918513536453247,-0.0103788375854492,-0.0164384841918945,0.142634898424149,-0.0246381759643555,-0.0362467765808105,0.215277280658484,-0.0750608444213867,0.000824928283691406,0.259828567504883,-0.01922607421875,0.0122218132019043,0.287264347076416,-0.0122919082641602,0.022613525390625,0.265651531517506,0.0310649871826172,-0.0207691192626953,0.227679088711739,0.0526962280273438,-0.0256650447845459,0.207411553710699,0.0369291305541992,-0.0175461769104004,0.139472618699074,0.0379095077514648,-0.027350902557373,0.110749155282974,-0.00228404998779297,0.0213150978088379,0.0370644330978394,-0.011016845703125,0.00869870185852051,-0.018947958946228,-0.0262508392333984,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-0.0943996906280518,0,0,-0.0857940912246704,0,0,7.3164701461792e-06,0,0,-7.33137130737305e-06,0,0,-0.0207539200782776,0,0,-0.0901124477386475,0,0,5.48362731933594e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0,0,-0.0399999618530273,0,0,-0.0399923324584961,0,0,5.48362731933594e-06,0,0,5.51342964172363e-06,0,0,7.39097595214844e-06,0,0,7.62939453125e-06,0,0,-3.63588333129883e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,5.60283660888672e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,-1.78813934326172e-06, +0,0,-7.3164701461792e-06,0,0,-7.3164701461792e-06,0,0,-5.51342964172363e-06,0,0,-1.81794166564941e-06,0,0,5.51342964172363e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-0.0136702060699463,0,0,-0.0124053955078125,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,-0.0120682716369629,0,0,7.27176666259766e-06,0,0,-7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06, +0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06, +0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,3.63588333129883e-06,0,0,-7.27176666259766e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,1.84774398803711e-06,0,0,1.84774398803711e-06,0,0,-5.49107789993286e-06,0,0,9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,1.81794166564941e-06,0,0,-1.81794166564941e-06,0,0,1.84774398803711e-06,0,0,-9.14931297302246e-06,0,0,5.51342964172363e-06,0,0,5.49107789993286e-06,0,0,3.66568565368652e-06,0,0,1.83284282684326e-06,0,0,-5.48362731933594e-06,0,0,-3.66196036338806e-06,0,0,7.33137130737305e-06,0,0,-1.81794166564941e-06,0,0,3.69548797607422e-06,0,0,3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,5.60283660888672e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,-7.3164701461792e-06,0,0,-7.32392072677612e-06, +0,0,-3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.15676355361938e-06,0,0,9.14931297302246e-06,0,0,-3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-7.15255737304688e-06,0,0,7.39097595214844e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06,0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,5.60283660888672e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,-7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.7220458984375e-06,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06, +0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06, +0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06,0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06, +0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06,0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-3.63588333129883e-06,0,0.0719904899597168,-0.335909783840179,-0.00125217437744141,0.103817462921143,-0.653789639472961,-0.00158977508544922,0.0944199562072754,-0.944258689880371,0.00712871551513672,0.046954870223999,-1.09558320045471,0.0221452713012695,0.0539760589599609,-1.07823133468628,0.0170736312866211,0.0313563346862793,-0.834603786468506,-0.0230865478515625,0.0450286865234375,-0.683069407939911,-0.0421733856201172,0.0507678985595703,-0.457954943180084,-0.0657100677490234,0.0264682769775391,-0.176083385944366,-0.0685710906982422,0.0484662055969238, +-0.971887111663818,-0.0062103271484375,-0.00789809226989746,0.0853742957115173,-0.02447509765625,-0.0227470397949219,0.138722091913223,-0.0287714004516602,0.0258917808532715,0.0638108849525452,0.0247535705566406,0.0370893478393555,-0.109590411186218,0.00440788269042969,-0.0390474796295166,0.163282424211502,-0.0239686965942383,-0.0381176471710205,0.194449409842491,-0.0046234130859375,0.04280686378479,0.223922356963158,-0.015141487121582,0.0143651962280273,0.212872624397278,-0.0196247100830078,-0.0044865608215332,0.1906917989254,-0.0235729217529297,-0.0213871002197266,0.16936469078064,-0.0265483856201172,-0.0111227035522461,0.0880334377288818,0.0241603851318359,-0.00842905044555664,0.0469152927398682,0.0145893096923828,0.00635719299316406,-0.0766314268112183,-0.0149068832397461,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-0.25,0,0,-0.249994397163391,0,0,-0.310001969337463,0,0,-0.31000542640686,0,0,-0.31000542640686,0,0,-0.309996128082275,0,0,-0.289996147155762,0,0,-0.290005445480347,0,0,-0.289996147155762,0,0,-0.289994478225708,0,0,-0.269999980926514,0,0,-0.269999980926514,0,0,-0.269999980926514,0,0,-0.269999980926514,0,0,-0.250007152557373,0,0,-0.25,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06, +0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,-0.00563430786132813,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-0.0411733388900757,0,0,-0.00100231170654297,0,0,-0.130781769752502,0,0,-0.0918408036231995,0,0,-0.309999942779541,0,0,-0.310007095336914,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06, +0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0.0546555519104004,-0.298909664154053,-0.00198650360107422,0.0709989070892334,-0.625110149383545,0.00778675079345703,0.0672264099121094,-0.893106341362,0.024907112121582,0.0441427230834961,-1.08459413051605,0.0511989593505859,0.0491378307342529,-1.08314299583435,0.0494852066040039,0.0472264289855957,-0.983750700950623,0.0270214080810547,0.0361957550048828,-0.848359823226929,0.00667381286621094,0.0454597473144531,-0.678797662258148,-0.00773525238037109,0.0529365539550781,-0.458391129970551,-0.0494594573974609,0.024446964263916,-0.169486105442047,-0.0646982192993164,0.00358819961547852,-0.0769793391227722,-0.0126619338989258,-0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00565242767333984, +0.0358172655105591,0.0113458633422852,-0.00745296478271484,0.077526867389679,0.0218887329101563,-0.00952959060668945,0.156094133853912,0.0419826507568359,-0.000445365905761719,0.190029501914978,0.0493602752685547,0.010951042175293,0.21746526658535,0.0562944412231445,0.0213427543640137,0.21866874396801,0.0630502700805664,-0.0207691192626953,0.195145769976079,0.0683212280273438,-0.0256650447845459,0.174823373556137,0.0525550842285156,-0.0175461769104004,0.139472648501396,0.0379095077514648,-0.00638437271118164,0.0888170599937439,0.0231914520263672,0.0213150978088379,0.0400071740150452,0.0177621841430664,0.00869870185852051,-0.016005277633667,0.00252914428710938,0.032780647277832,-0.116032093763351,-0.000295639038085938,0.0130568742752075,-0.027932733297348,0.00307083129882813,0.00412702560424805,0.0275995135307312,0.00987148284912109,-0.00396728515625,0.0130437687039375,0.0199928283691406,-0.0104598999023438,0.0111056417226791,0.0327205657958984,-0.0119936466217041,0.027458131313324,0.0446872711181641,-0.00636911392211914,0.075976125895977,0.0555171966552734,0.00494480133056641,0.0625671967864037,0.0552425384521484,0.00642633438110352,0.0570730082690716,0.0484247207641602,0.00280380249023438,0.033774696290493,0.040095329284668,-0.00116777420043945,0.0304486900568008,0.0298900604248047,-0.00310802459716797,0.0562353730201721,0.0172252655029297,-0.00281715393066406,0.0205114483833313,0.00700759887695313,-0.00122737884521484,-0.0181951522827148,-0.00153827667236328,0.00131416320800781,-0.0689611434936523,-0.00949764251708984,0.00488185882568359,-0.137587249279022,-0.014796257019043,-0.0117464065551758,-0.434331357479095,0.00862979888916016,0.00377321243286133,-0.659897267818451,0.0266170501708984,-0.0286707878112793,-0.833466589450836,0.0447959899902344,0.0396900177001953,-0.954945623874664,0.0559635162353516,0.0582427978515625,-1.04775166511536,0.0366306304931641,0.0653562545776367,-1.03327929973602,0.0272712707519531,0.078188419342041,-0.823152959346771,0.000416755676269531,0.0963766574859619,-0.552937269210815,-0.0381383895874023, +0.0354306697845459,-0.239714562892914,0.00300502777099609,0.0239667892456055,-0.102134346961975,-0.00159263610839844,0.0149809122085571,-0.0710668563842773,0.00239372253417969,0.0204463005065918,-0.145775675773621,0.0129108428955078,0.0199558734893799,-0.340906798839569,0.0338478088378906,0.0199229717254639,-0.543250441551208,0.0631084442138672,0.0230839252471924,-0.691357254981995,0.0923376083374023,0.0313692092895508,-0.752342462539673,0.214449882507324,0.036280632019043,-0.727460145950317,0.202787399291992,0.035942554473877,-0.653368353843689,0.0707530975341797,0.0278997421264648,-0.492339849472046,0.0386972427368164,0.0162563323974609,-0.285652816295624,0.0117349624633789,0.0058588981628418,-0.0896759629249573,-0.00365829467773438,0.00110626220703125,-0.0495007038116455,-0.00581836700439453,-0.000835418701171875,-0.0145183801651001,-0.00137710571289063,-0.000934600830078125,0.0112353563308716,0.00554847717285156,0.000607013702392578,0.0359363406896591,0.0154228210449219,0.00318527221679688,0.0525256283581257,0.0241231918334961,0.00628662109375,0.0788415670394897,0.0370941162109375,0.00737667083740234,0.0936639010906219,0.0456809997558594,0.00456380844116211,0.102689206600189,0.051508903503418,-0.00258588790893555,0.103868395090103,0.0520229339599609,-0.00746250152587891,0.0912048518657684,0.0427255630493164,-0.00766563415527344,0.0742730498313904,0.0319356918334961,-0.00343561172485352,0.0501214563846588,0.0195245742797852,0.0032961368560791,0.0185577422380447,0.00885105133056641,0.00913393497467041,-0.0224213004112244,0.00222206115722656,0,-0.128376483917236,0,0,-0.108676433563232,0,0,-0.118945598602295,0,0,-0.0472696423530579,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-0.0221973657608032,0,0,-0.0860745906829834,0,0,-0.130787372589111, +0,0,-0.136725664138794,0,0,-0.13853931427002,0,0,-0.131679773330688,0,0,-0.174082517623901,0,0,-0.184972763061523,0,0,-0.156406164169312,0,0,-0.121402382850647,0,0,-0.109190225601196,0,0,7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06,0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,-0.0075075626373291,0,0,-0.135537505149841,0,0,-0.135991215705872,0,0,-0.159062504768372,0,0,-0.100007057189941,0,0,-0.100342512130737,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999941825866699,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.000915765762329102,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06, +0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06, +0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06,0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999922752380371,0,0,-0.0999922752380371,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06, +0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-5.7220458984375e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-9.17911529541016e-06,0,0,1.84774398803711e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,5.60283660888672e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-7.33137130737305e-06,0,0,1.84774398803711e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0.000100612640380859,-0.000289261341094971,1.1444091796875e-05,0.0349197387695313,-0.105186700820923,0.00534343719482422,0.0692038536071777,-0.326201558113098,-0.000250816345214844,0.100544452667236,-0.632219910621643,-0.00325107574462891,0.0919408798217773,-0.91099214553833,0.000206947326660156,0.0454273223876953,-1.05459702014923,0.00995445251464844,0.0499629974365234,-1.02758324146271,0.00211238861083984,0.0426387786865234, +-0.916395306587219,0.0196857452392578,0.0266876220703125,-0.792064666748047,0.0164098739624023,0.0201129913330078,-0.58563905954361,-0.0386867523193359,0.0119137763977051,-0.445987164974213,-0.0396060943603516,0.00371837615966797,-0.171265840530396,-0.0376319885253906,0.0059051513671875,-0.0744451880455017,-0.0148038864135742,-0.00719714164733887,0.0647470057010651,0.0226249694824219,0.0260047912597656,0.0610789358615875,0.0230607986450195,-0.0212240219116211,0.0821790099143982,0.0375766754150391,-0.0370116233825684,0.108748763799667,0.0505990982055664,-0.0365900993347168,0.137288138270378,0.0686187744140625,0.0403835773468018,0.168377906084061,0.0582714080810547,0.0127854347229004,0.163542419672012,0.046478271484375,-0.00535821914672852,0.143106520175934,0.0436458587646484,-0.021174430847168,0.11872386932373,0.050114631652832,-0.0108180046081543,0.0857025384902954,0.023529052734375,-0.00806713104248047,0.0457141399383545,0.0143814086914063,0,-1.78813934326172e-06,0,0,-3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,-1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0,-3.63588333129883e-06,0,0,1.84029340744019e-06,0,0,-3.66568565368652e-06,0,0,-7.3164701461792e-06,0,0,-7.3164701461792e-06,0,0,7.33137130737305e-06,0,0,-5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,9.77516174316406e-06,-4.02927398681641e-05,4.76837158203125e-06,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,-1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0,5.51342964172363e-06,0,0,-3.63588333129883e-06,0,0,-0.0213926583528519,0,-4.52995300292969e-06,-0.0412797331809998,9.5367431640625e-06,0,-0.0535429716110229,0,0,-0.0413181856274605,0,0,-0.0213944986462593,0,0,-5.46872615814209e-06,0,0,1.81794166564941e-06,0,0,7.39097595214844e-06, +0,0,9.17911529541016e-06,0,0,-1.78813934326172e-06,0 + } + Normals: *4317 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, +0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, +-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, +-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, +0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051, +-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962, +-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984, +-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678, +0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861, +-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886, +-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159, +-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167, +0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507, +-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734, +-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045, +0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575, +-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784, +0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017, +0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954, +-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551, +-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495, +-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059, +0.464356422424316,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049, +-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458, +0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823, +-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711, +0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711, +0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561, +-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225, +0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812, +-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507, +-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842, +-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226, +-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402, +-0.719538241624832,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569, +0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658, +-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789, +0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763, +-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030773584, "Geometry::Eye_Left_Wide", "Shape" { + Version: 100 + Indexes: *409 { + a: 326,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,484,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,5895,5896,5900,5919,5920,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6123,6124,6146,6147,6160,6161,6162,6163,6505,6506,6507,6508,6524,6525,6527,6528,6529,6530,6531,6532,6533,6534,6535,6552,6553,6554,6555,6556,6557,6558,6559,6561,6562,6564,6794,6800,6804,6805,6806,6807,6808,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7528,7529,7542,7543,7544,7545,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7946,8176,8182,8183,8184,8185,8186,8187,8188,8189,8190,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784 + } + Vertices: *1227 { + a: -0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235199928283691,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0,0.000999689102172852,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453, +0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234334230423,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197255611419678,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556478276848793,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523, +1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,1.52587890625e-05,0.00242425501346588,0.00070953369140625,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.00789570808410645,-0.00230312347412109,-1.83582305908203e-05, +0.00841885805130005,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199636816978455,-0.000123977661132813,0,0.000999718904495239,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082, +0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318154692649841,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556483864784241,0.00016021728515625,-6.00814819335938e-05,0.00105259753763676,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,1.52587890625e-05,0.00242424011230469,0.00070953369140625,3.71932983398438e-05,0.00251369178295135,0.000734329223632813,3.57627868652344e-05,0.00203084945678711,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,0.039896696805954,0.055370569229126,-0.00553607940673828,0.0503910481929779,0.052578330039978,0.00574207305908203,0.0330334566533566,0.0302760601043701,0.00151157379150391,-0.0356791242957115,0.117853164672852,-0.00406074523925781,9.95717418845743e-05,0.113386154174805,0.000700950622558594,0.016003280878067,0.0216991901397705,-0.001373291015625,0.0212710797786713,0.00931870937347412,0.00263309478759766,0.00859534740447998,0.000510334968566895,0.00250911712646484,0.00213241577148438,0.000141382217407227,5.340576171875e-05,0.00301539897918701,-0.00167322158813477, +0.00063323974609375,0.000489115715026855,-0.00162339210510254,-0.000336647033691406,0.000546932220458984,-0.00104355812072754,-0.000135421752929688,-0.000103950500488281,-0.000948190689086914,-0.000379562377929688,0,1.66893005371094e-06,0,0.000159740447998047,-0.000432729721069336,-0.000136375427246094,9.82284545898438e-05,-9.1552734375e-05,-2.57492065429688e-05,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,3.814697265625e-06,0,0,1.66893005371094e-06,0,0.0174713730812073,0.0117024183273315,0.00120639801025391,0.0092894434928894,0.00257408618927002,0.00249671936035156,6.43730163574219e-06,-0.0013573169708252,-0.000384330749511719,0.00122332572937012,-0.00149083137512207,0.000101089477539063,0.00172257423400879,-0.00109267234802246,0.00105953216552734,0.00364315509796143,-0.00128936767578125,0.00200176239013672,0.00442993640899658,-0.00024878978729248,0.00256443023681641,0.00262439250946045,0.00153881311416626,0.00220489501953125,0,4.64916229248047e-06,0,7.15255737304688e-06,2.288818359375e-05,9.5367431640625e-06,0,-2.14576721191406e-06,0,0.000412225723266602,-0.000344038009643555,8.86917114257813e-05,0.000767946243286133,-0.000776529312133789,0.000371932983398438,0.000914335250854492,-0.000514984130859375,0.000566482543945313,0.000428676605224609,-9.84668731689453e-05,0.000191688537597656,0.000179767608642578,3.50475311279297e-05,5.05447387695313e-05,7.72476196289063e-05,1.07288360595703e-05,2.288818359375e-05,2.90870666503906e-05,1.1444091796875e-05,1.43051147460938e-05,9.05990600585938e-06,1.06096267700195e-05,3.814697265625e-06,0.00231671333312988,-0.000142693519592285,0.00180912017822266,0.00245881080627441,-0.000624775886535645,0.0019073486328125,0.00167679786682129,-0.000713348388671875,0.0014190673828125,-0.014453798532486,0.00105643272399902,-0.00242519378662109,-0.00671088695526123,0.000211477279663086,-0.00153541564941406,-0.00267446041107178,-0.000466108322143555,-0.000857353210449219,-0.000793099403381348,-0.000756978988647461,-0.000493049621582031,-3.57627868652344e-06,-0.000531673431396484,-0.000212669372558594, +5.86509704589844e-05,-6.103515625e-05,3.52859497070313e-05,1.43051147460938e-06,6.19888305664063e-06,0,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,0,-4.29153442382813e-06,0,-2.86102294921875e-06,-4.29153442382813e-06,0,-7.74860382080078e-06,1.76429748535156e-05,2.86102294921875e-06,-1.05500221252441e-05,2.43186950683594e-05,1.04904174804688e-05,-1.95801258087158e-05,3.95774841308594e-05,-2.95639038085938e-05,-0.000513553619384766,0.0024259090423584,-0.00019073486328125,-0.000608205795288086,0.00463926792144775,-0.000814437866210938,-0.000313997268676758,0.00642824172973633,-0.00204086303710938,1.09672546386719e-05,0.00789940357208252,-0.00334358215332031,-4.41074371337891e-05,0.00858867168426514,-0.00359725952148438,0.000218391418457031,0.00763392448425293,-0.00202846527099609,0.000766754150390625,0.00606966018676758,-0.00130748748779297,0.000406742095947266,0.00478005409240723,-0.000611305236816406,0.000275135040283203,0.00206238031387329,-0.000124931335449219,3.91006469726563e-05,0.00839114189147949,-0.002838134765625,8.36849212646484e-05,0.000929087400436401,0.000258445739746094,8.55922698974609e-05,0.00178617238998413,0.000478744506835938,0.000128269195556641,0.00021892786026001,0.000127792358398438,-0.000263690948486328,0.000653624534606934,-7.62939453125e-05,5.43594360351563e-05,0.00266426801681519,0.000682830810546875,5.26905059814453e-05,0.003371462225914,0.000856399536132813,1.43051147460938e-06,0.00316940248012543,0.000822067260742188,-4.91142272949219e-05,0.00245356559753418,0.000665664672851563,-7.05718994140625e-05,0.00195887684822083,0.0005340576171875,-0.000115394592285156,0.00129884481430054,0.000383377075195313,-7.39097595214844e-05,0.000541746616363525,0.000162124633789063,-5.81741333007813e-05,0.000188291072845459,8.20159912109375e-05,0.000144481658935547,0.000964581966400146,-3.14712524414063e-05,0.0719225704669952,0.171999216079712,-0.00208282470703125,0.0741032660007477,0.1179119348526,0.0199785232543945,0.074039101600647,0.488242030143738,0.190054893493652,0.0410565733909607, +0.419480562210083,0.0693569183349609,-0.00157749652862549,0.581050157546997,0.218133926391602,-0.02801513671875,0.540443420410156,0.0999221801757813,0.087191104888916,0.702215433120728,0.213652610778809,0.0153965950012207,0.68410325050354,0.12642765045166,0.0501279830932617,0.637698888778687,0.200088500976563,0.0429248809814453,0.617223262786865,0.155679702758789,0.0902509689331055,0.462861061096191,0.17335033416748,0.0830488204956055,0.480314970016479,0.147052764892578,0.115661144256592,0.285030364990234,0.0782508850097656,0.0203766822814941,0.267393827438354,0.138752937316895,0.0863628387451172,0.129194498062134,-0.007965087890625,0.0104227066040039,0.0373415946960449,-0.00250101089477539,0,3.814697265625e-06,0,0.0199103355407715,0.03977370262146,-0.00685930252075195,0.0359668731689453,0.0510199069976807,-0.00460624694824219,-0.0772476196289063,0.0599876642227173,0.0402641296386719,0.00830459594726563,0.681066274642944,0.147480964660645,0.0256655216217041,0.694765329360962,0.218293190002441,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000133037567138672,0.000999689102172852,-2.76565551757813e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656, +1.52587890625e-05,0.00242425128817558,0.00070953369140625,3.71932983398438e-05,0.00251471623778343,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351130962371826,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-8.0108642578125e-05,0.000617355108261108,6.96182250976563e-05,-1.02519989013672e-05,0.000482231378555298,0.000119209289550781,1.23977661132813e-05,0.000700816512107849,0.000223159790039063,1.9073486328125e-05,0.00102675892412663,0.0003509521484375,1.97887420654297e-05,0.00132780522108078,0.000464439392089844,2.38418579101563e-05,0.00156024098396301,0.00055694580078125,2.288818359375e-05,0.00153917074203491,0.000550270080566406,1.28746032714844e-05,0.00132940709590912,0.000472068786621094,-1.9073486328125e-06,0.00105854868888855,0.000367164611816406,-1.33514404296875e-05,0.000743985176086426,0.00025177001953125,-1.43051147460938e-05,0.000490725040435791,0.000143051147460938,4.29153442382813e-06,0.000372767448425293,6.96182250976563e-05,4.76837158203125e-05,0.000525236129760742,2.38418579101563e-05,0.000109195709228516,0.000935256481170654,-2.38418579101563e-05,0.000169754028320313,0.00164282321929932,-0.000112533569335938,0.000182628631591797,0.00367176532745361,-0.000372886657714844,0.0001373291015625,0.00537204742431641,-0.000761032104492188,6.43730163574219e-05,0.00575852394104004,-0.001190185546875,6.67572021484375e-06,0.00727617740631104,-0.00153160095214844,-2.33650207519531e-05,0.00761747360229492,-0.00174236297607422,-4.41074371337891e-05,0.00732779502868652,-0.00153732299804688,-0.000128984451293945,0.00651943683624268,-0.000931739807128906,-0.000224590301513672,0.00456857681274414,-0.000405311584472656,-0.000244379043579102,0.00204652547836304,-0.000105857849121094,-0.000171065330505371,0.00106459856033325,3.24249267578125e-05, +-0.000105381011962891,0.000781118869781494,0,-0.000135302543640137,0.00145900249481201,-0.000147819519042969,-0.000100135803222656,0.00208628177642822,0.000453948974609375,-0.000118732452392578,0.002960205078125,4.57763671875e-05,-9.58442687988281e-05,0.00358128547668457,-0.000405311584472656,-4.38690185546875e-05,0.00400543212890625,-0.000701904296875,-9.05990600585938e-05,0.00331759452819824,-0.000609397888183594,-9.918212890625e-05,0.00294971466064453,-0.000368118286132813,-4.48226928710938e-05,0.00240528583526611,-0.000832557678222656,1.57356262207031e-05,0.0017249584197998,-0.000451087951660156,5.38825988769531e-05,0.00107395648956299,-0.000173568725585938,5.14984130859375e-05,0.000679433345794678,-5.81741333007813e-05,3.19480895996094e-05,0.000389456748962402,1.1444091796875e-05,1.85966491699219e-05,0.000298202037811279,6.4849853515625e-05,1.85966491699219e-05,0.00035993754863739,0.000140190124511719,2.47955322265625e-05,0.00044279545545578,0.000209808349609375,3.76701354980469e-05,0.000672340393066406,0.000335693359375,4.33921813964844e-05,0.000835835933685303,0.000429153442382813,3.76701354980469e-05,0.000956177711486816,0.000493049621582031,2.33650207519531e-05,0.000984609127044678,0.000504493713378906,7.62939453125e-06,0.000854820013046265,0.000423431396484375,-1.9073486328125e-06,0.000686496496200562,0.000327110290527344,-1.02519989013672e-05,0.000517368316650391,0.000219345092773438,-2.81333923339844e-05,0.000440716743469238,0.00012969970703125,-6.05583190917969e-05,0.000494927167892456,5.81741333007813e-05,0.0115840435028076,0.612931489944458,0.214901924133301,0.0111932754516602,0.521907329559326,0.21419620513916,-0.0225270986557007,0.313108801841736,0.0894336700439453,-0.0535176992416382,0.0552123785018921,0.0429706573486328,0.0189471244812012,0.0448840856552124,-0.00684499740600586,0.0692782402038574,0.134331703186035,0.000301361083984375,0.112018585205078,0.283711433410645,0.0628395080566406,0.0924129486083984,0.444191694259644,0.1826171875,0.0430886745452881,0.523174047470093,0.225696563720703,0.0513632297515869, +0.577847480773926,0.242834091186523,-0.0269534587860107,0.419760227203369,0.0882482528686523,-0.00270533561706543,0.374822854995728,0.0538339614868164,0.0383625030517578,0.285292387008667,0.0128908157348633,0.0269880294799805,0.184450626373291,0.00119113922119141,0.025871753692627,0.0903611183166504,-0.0297765731811523,0.0308051109313965,0.0477136373519897,-0.0128669738769531,-0.0514130592346191,0.108309864997864,0.0243253707885742,-0.0500757694244385,0.232627272605896,0.102014541625977,-0.0562922954559326,0.388509392738342,0.171122550964355,-0.0304321646690369,0.278913021087646,-0.00598716735839844,0.00974196195602417,0.467592000961304,-0.00692558288574219,0.0123574733734131,0.458104610443115,-0.00974369049072266,0.0474120378494263,0.499452352523804,-0.00387859344482422,-0.0140345096588135,0.518790245056152,-0.0316677093505859,0.0553662776947021,0.497079372406006,-0.0471725463867188,0.105998516082764,0.374053478240967,-0.0496273040771484,-0.00850725173950195,0.129849433898926,-0.0193643569946289,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,3.76701354980469e-05,0.000108242034912109,-9.10758972167969e-05,0.0331077575683594,0.251204013824463,0.00354146957397461,0.0174629688262939,0.268531322479248,0.00681018829345703,0.0244226455688477,0.284929752349854,0.00650882720947266,0.0313739776611328,0.281942367553711,0.00528144836425781,-0.0125900506973267,0.280825614929199,0.0121126174926758,-0.00841838121414185,0.298995018005371,0.00684452056884766,0.000121742486953735,0.283126354217529,0.00475978851318359,0,1.78813934326172e-06,0,-0.00024867057800293,0.000627219676971436,-8.0108642578125e-05,-0.00049281120300293,0.00234889984130859,-0.000192642211914063,-0.000592708587646484,0.00481593608856201,-0.000767707824707031,-0.000319004058837891,0.00675666332244873,-0.00189018249511719,3.09944152832031e-06,0.00842452049255371,-0.00307559967041016,-2.31266021728516e-05,0.00935912132263184,-0.00327968597412109,6.53266906738281e-05,0.00914978981018066,-0.00255298614501953,0.000235080718994141,0.00837099552154541, +-0.00183773040771484,0.000354766845703125,0.00665366649627686,-0.00122642517089844,0.000401973724365234,0.0046461820602417,-0.000583648681640625,0.000266075134277344,0.0020061731338501,-0.000123023986816406,0.000139713287353516,0.000937461853027344,-3.14712524414063e-05,8.22544097900391e-05,0.000895410776138306,0.000245094299316406,0.000124692916870117,0.000211358070373535,0.000123023986816406,8.65459442138672e-05,0.00171753764152527,0.000447273254394531,5.62667846679688e-05,0.00255855917930603,0.000630378723144531,5.00679016113281e-05,0.00323455035686493,0.000787734985351563,-5.96046447753906e-06,0.00305303931236267,0.000757217407226563,-5.7220458984375e-05,0.002378910779953,0.000620841979980469,-7.67707824707031e-05,0.00190240144729614,0.000501632690429688,-0.000115394592285156,0.00125032663345337,0.000363349914550781,-7.20024108886719e-05,0.000527322292327881,0.000157356262207031,-5.57899475097656e-05,0.000183284282684326,8.10623168945313e-05,0,0.00131899118423462,0,0,0.00380241870880127,0,0,0.00561583042144775,0,0,0.00630033016204834,0,0,0.00630021095275879,0,0,0.00630033016204834,0,0,0.00522923469543457,0,0,0.00472331047058105,0,0,0.00311636924743652,0,0,0.0016065239906311,0 + } + Normals: *1227 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, +0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, +-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, +-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, +0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.107066869735718,-0.0274820327758789,-1.34571528434753, +0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.83636599034071,-0.958253972232342,-0.844457536935806,0.433115065097809,-0.226518977433443,0.52702921628952,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314, +-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059,0.464356422424316,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291, +0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986, +0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672, +-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343, +-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224, +1.22639819979668,0.864633291959763,-0.881134361028671 + } + } + Geometry: 2807030773872, "Geometry::Eye_Left_Right", "Shape" { + Version: 100 + Indexes: *1418 { + a: 326,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,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,460,461,462,463,464,465,466,467,468,469,470,471,484,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,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,618,619,620,621,622,623,624,625,626,627,628,629,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486,6488,6490,6491,6492,6493,6494,6495,6496, +6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544,7545,7559,7573,7575,7577,7578,7580,7581, +7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208, +8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8792,8793,8794,8796,8797,8799 + } + Vertices: *4254 { + a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449098825454712,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.373579978942871,-0.00995814800262451,-0.156295776367188,-0.243783712387085,-0.0108641386032104,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0375492572784424,0.00956952571868896,-0.00772762298583984,-0.0145010948181152,-0.00116109848022461,-0.00990867614746094,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.137148857116699,0.00349897146224976,0.0875425338745117,-0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043, +-0.0703115463256836,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.132277488708496,0.00881282985210419,-0.031951904296875,-0.134203910827637,0.0119159072637558,-0.00823402404785156,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239880204201,0.0300846099853516,-0.19727611541748,-0.0363855138421059,0.0537042617797852,-0.0876650810241699,-0.014349639415741,0.0323572158813477,-0.071815013885498,0.00169742107391357,0.0300350189208984,-0.0239934921264648,-0.00214302539825439,0.014979362487793,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0145010948181152,-0.00116115808486938,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.142739057540894,0.0284625440835953,-0.0102090835571289,-0.168860912322998,0.039720207452774,-0.0202426910400391,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239507675171,0.0300846099853516,-0.158125400543213,-0.019367128610611,0.0534534454345703,-0.0304460525512695,0.0133194625377655,-0.0105266571044922,-0.0192008018493652,0.0329480022192001,-0.0340337753295898,-0.0239934921264648,-0.00214299559593201,0.014979362487793,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0239934921264648,-0.00214299559593201,0.014979362487793,-0.0305619239807129,0.0217394530773163,-0.010218620300293,-0.0532975196838379,0.00251196324825287,0.00622272491455078,-0.169595241546631,-0.0245697200298309,0.0512323379516602,-0.178987741470337,-0.00883239507675171,0.0300846099853516,-0.147934436798096, +0.00172980129718781,0.000176429748535156,-0.15197491645813,0.0258671194314957,-0.0171632766723633,-0.136911392211914,0.0223250016570091,-0.0242319107055664,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.00511384010314941,0.0152137279510498,0.0203084945678711,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449098825454712,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.373579978942871,-0.00995814800262451,-0.156295776367188,-0.243783712387085,-0.0108641386032104,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0375492572784424,0.00956952571868896,-0.00772762298583984,-0.0145010948181152,-0.00116109848022461,-0.00990867614746094,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.457818746566772,-0.00489765405654907,-0.0703115463256836,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.137148857116699,0.00349897146224976,0.0875425338745117,-0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,-0.137148857116699, +0.00349891185760498,0.0875415802001953,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.334151268005371,0.0235978364944458,0.180244445800781,-0.449099063873291,0.0252541303634644,0.155594825744629,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.373579978942871,-0.00995826721191406,-0.156295776367188,-0.243783712387085,-0.0108641982078552,-0.141231536865234,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.0426630973815918,-0.00564420223236084,-0.0280361175537109,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.132277488708496,0.00881282985210419,-0.031951904296875,-0.134203910827637,0.0119159072637558,-0.00823402404785156,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239880204201,0.0300846099853516,-0.19727611541748,-0.0363855138421059,0.0537042617797852,-0.0876650810241699,-0.014349639415741,0.0323572158813477,-0.071815013885498,0.00169742107391357,0.0300350189208984,-0.0239934921264648,-0.00214302539825439,0.014979362487793,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0145010948181152,-0.00116115808486938,-0.00990867614746094,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0642046928405762,0.00606224685907364,-0.013580322265625,-0.142739057540894,0.0284624919295311,-0.0102090835571289,-0.168860912322998,0.039720207452774,-0.0202426910400391,-0.147934436798096,0.00172978639602661,0.000176429748535156,-0.178987741470337,-0.00883239507675171,0.0300846099853516,-0.158125400543213,-0.0193670690059662,0.0534534454345703,-0.0304460525512695,0.0133194625377655,-0.0105266571044922,-0.0192008018493652,0.0329480022192001,-0.0340337753295898,-0.0239934921264648,-0.0021430030465126,0.014979362487793,-0.00954198837280273,-0.00186002999544144,0.00846481323242188,-0.00954198837280273,-0.00186002254486084,0.00846481323242188,-0.0239934921264648, +-0.00214299559593201,0.014979362487793,-0.0305619239807129,0.021739449352026,-0.010218620300293,-0.0532975196838379,0.00251196324825287,0.00622272491455078,-0.169595241546631,-0.0245697274804115,0.0512323379516602,-0.178987741470337,-0.0088324174284935,0.0300846099853516,-0.147934436798096,0.00172980129718781,0.000176429748535156,-0.15197491645813,0.0258671082556248,-0.0171632766723633,-0.136911392211914,0.0223250091075897,-0.0242319107055664,-0.0642046928405762,0.00606223940849304,-0.013580322265625,-0.0163464546203613,0.000596761703491211,-0.00969505310058594,-0.0145010948181152,-0.001161128282547,-0.00990867614746094,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06, +0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06, +0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06, +0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06, +0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06, +0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06, +0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06, +0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,-0.104260444641113,-0.0151748061180115,-0.0817766189575195,-0.243622779846191,-0.0144773721694946,-0.157573699951172,-0.356208324432373,-0.0147475004196167,-0.160111427307129,-0.456611156463623,-0.0088956356048584,-0.0859260559082031,-0.49645733833313,0.00385284423828125,0.0355138778686523,-0.35156774520874,0.0133101940155029,0.188139915466309,-0.269849300384521,0.00949859619140625,0.210864067077637,-0.170101642608643,0.00426638126373291,0.10014533996582,-0.0621051788330078,-0.00112074613571167,0.0590801239013672,-0.429880857467651,0.0122146606445313,0.157896995544434,-0.0566027164459229,0.00390651822090149,-0.0168790817260742,-0.11329460144043,0.00616878271102905,-0.0420942306518555,-0.00918054580688477,0.000947564840316772,-0.00546550750732422,-0.0336756706237793,-0.00682216882705688,-0.022273063659668,-0.131659746170044,0.00679731369018555,-0.0179595947265625,-0.151692628860474,-0.00391058623790741,-0.0036163330078125,-0.150131702423096,-0.0124808549880981,0.0252065658569336,-0.194314956665039,-0.0375706255435944,0.0534324645996094,-0.103732109069824,-0.0193227529525757,0.0375385284423828, +-0.0803518295288086,-0.00123482942581177,0.001251220703125,-0.0255184173583984,-0.00187379121780396,0.0143709182739258,-0.0063629150390625,-0.0016140341758728,0.00507354736328125,-0.0253682136535645,-0.00208240747451782,0.0204629898071289,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0199603140354156,0.0113003253936768,-0.00263786315917969,-0.00975272059440613,0.00552606582641602,-0.00128936767578125,-1.78813934326172e-06,-1.54972076416016e-06,0,1.01327896118164e-06,-1.66893005371094e-06,0,-0.0269619226455688,0.0113177299499512,0.00885009765625,-0.0221642255783081,0.0175728797912598,0.00786972045898438,-0.0378122329711914,0.0285334587097168,0.0133228302001953,-0.0218844413757324,0.0352559089660645,0.00905799865722656,-0.0734541416168213,0.0578579902648926,-0.0244379043579102,-0.0660488605499268,0.0706672668457031,-0.0304670333862305,-0.0916662216186523,0.0411264896392822,-0.0118961334228516,-0.117982387542725,0.0577690601348877,-0.0151214599609375,-0.0254726409912109,0.00959873199462891,-0.00327491760253906,-0.00680398941040039,0.0025639533996582,-0.000874519348144531,-0.000240802764892578,-0.000154495239257813,5.53131103515625e-05,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,-0.00340890884399414,0.00430166721343994,0.000877857208251953,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06, +0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0.00107049942016602,-0.00165319442749023,-0.000279426574707031,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,-9.82284545898438e-05,0.000180959701538086,2.6702880859375e-05,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,-0.0272376537322998,0.000174105167388916,0.00655269622802734,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,-0.0275740623474121,0.0353116989135742,0.0107564926147461,-0.0432562828063965,0.0227468013763428,0.0145292282104492,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0, +0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.0986130237579346,-0.010418713092804,-0.0783872604370117,-0.243783712387085,-0.0108641386032104,-0.141231536865234,-0.373579978942871,-0.00995802879333496,-0.156295776367188,-0.457818746566772,-0.0048975944519043,-0.0703115463256836,-0.491699457168579,0.00249981880187988,0.0465059280395508,-0.449098825454712,0.0252542495727539,0.155594825744629,-0.334151268005371,0.0235977172851563,0.180244445800781,-0.212483406066895,0.00690162181854248,0.197136878967285,-0.137148857116699,0.00349891185760498,0.0875415802001953,-0.0621218681335449,-3.09944152832031e-06, +0.0612897872924805,-0.0280680656433105,-0.00108486413955688,0.0241451263427734,-0.00950193405151367,-0.0006561279296875,0.00911808013916016,-0.00954198837280273,-0.00186002254486084,0.00846385955810547,-0.0239934921264648,-0.00214302539825439,0.014979362487793,-0.071815013885498,0.00169739127159119,0.0300350189208984,-0.0876650810241699,-0.0143496096134186,0.0323572158813477,-0.19727611541748,-0.0363855287432671,0.0537042617797852,-0.178987741470337,-0.00883240252733231,0.0300846099853516,-0.147934436798096,0.00177557021379471,0.000176429748535156,-0.134203910827637,0.0119158998131752,-0.00823402404785156,-0.132277488708496,0.00881284475326538,-0.031951904296875,-0.0642046928405762,0.00606220960617065,-0.013580322265625,-0.0163464546203613,0.000596731901168823,-0.00969505310058594,-0.0145010948181152,-0.00116121768951416,-0.00990867614746094,-0.0426630973815918,-0.00564414262771606,-0.0280361175537109,-0.0247988700866699,-0.00176239013671875,-0.0180149078369141,-0.0219948291778564,0.000664412975311279,-0.0123424530029297,-0.0747983455657959,0.0151237621903419,-0.00421333312988281,-0.1527419090271,0.0162039827555418,-0.00968647003173828,-0.14022421836853,0.0178578123450279,0.00266170501708984,-0.139949321746826,0.0179325938224792,0.00835895538330078,-0.219900846481323,-0.00494733452796936,0.0422067642211914,-0.192359447479248,-0.0328969284892082,0.0512838363647461,-0.0590925216674805,-0.00599932670593262,0.0233230590820313,-0.0552554130554199,0.0030975341796875,0.0235662460327148,-0.0165929794311523,-0.00262224674224854,0.0132026672363281,-0.010587215423584,-0.00162965059280396,0.0105953216552734,-0.0145664215087891,-0.000950992107391357,0.0152626037597656,-0.0272364616394043,-0.000262439250946045,0.0258302688598633,-0.0529909133911133,0.000549674034118652,0.0579338073730469,-0.0976862907409668,0.00253605842590332,0.0731906890869141,-0.148930549621582,0.00423431396484375,0.181401252746582,-0.270235538482666,0.0264279842376709,0.167301177978516,-0.389108180999756,0.0214017629623413,0.146491050720215,-0.40769362449646, +0.00215303897857666,0.0509681701660156,-0.420200109481812,0.00350797176361084,-0.0454769134521484,-0.373639583587646,0.00190949440002441,-0.113078117370605,-0.234936237335205,-0.00633871555328369,-0.119570732116699,-0.0837616920471191,-0.0062713623046875,-0.071746826171875,-0.0432713031768799,-0.00388944149017334,-0.0299768447875977,-0.0388623476028442,-0.00165754556655884,-0.0220394134521484,-0.0618753433227539,-0.00225460529327393,-0.0387287139892578,-0.179849147796631,0.00682032108306885,-0.0692987442016602,-0.308836698532104,0.05329430103302,-0.0582733154296875,-0.248277902603149,0.0200564861297607,-0.000338554382324219,-0.235311985015869,0.0581557750701904,0.0205535888671875,-0.246797800064087,0.046625018119812,0.0577030181884766,-0.267519950866699,-0.0156550407409668,0.0909872055053711,-0.217994689941406,-0.0408935546875,0.0900602340698242,-0.224246978759766,-0.0420398712158203,0.0937004089355469,-0.0969524383544922,-0.0289382934570313,0.0548238754272461,-0.12263298034668,-0.0158578157424927,0.0525789260864258,-0.102671146392822,-0.0114836692810059,0.0389642715454102,-0.084012508392334,-0.0104409456253052,0.0303964614868164,-0.00968265533447266,-0.00200499594211578,0.0123167037963867,-0.0140361785888672,-0.00256958603858948,0.0126266479492188,-0.0242152214050293,-0.00348204374313354,0.0146427154541016,-0.11257791519165,-0.0114530920982361,0.0321006774902344,-0.193585157394409,0.0066453218460083,0.0450401306152344,-0.0742344856262207,0.0139896869659424,0.0065765380859375,-0.106448173522949,0.044166088104248,0.00919818878173828,-0.0974111557006836,0.0725729465484619,0.00562572479248047,-0.0554413795471191,0.0118582397699356,-0.00443458557128906,-0.017391562461853,-0.000358574092388153,-0.013397216796875,-0.0193077325820923,-0.00130462646484375,-0.0158481597900391,-0.0750501155853271,0.055222749710083,-0.0115242004394531,-0.0514262914657593,0.027684211730957,-0.0149755477905273,-0.0882445573806763,0.0582420825958252,0.0144567489624023,-0.0906147956848145,-0.00106757879257202,0.0214967727661133,-0.0729591846466064, +0.0188553035259247,0.017765998840332,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,-0.000917673110961914,0.000937342643737793,0.000233650207519531,-1.43051147460938e-05,1.29938125610352e-05,3.814697265625e-06,-0.000987052917480469,0.00064241886138916,0.000247955322265625,-0.0596766471862793,0.114591956138611,0.0159931182861328,-0.0827960968017578,0.104445457458496,0.0213212966918945,-0.0657963752746582,0.0096701979637146,0.0158658027648926,-0.123732566833496,8.04662704467773e-06,0.0295352935791016,-0.090184211730957,-0.0100013613700867,0.0213437080383301,-0.0502614974975586,-0.00972408056259155,0.0118327140808105,-0.0467782020568848,-0.016068696975708,0.0109939575195313,0.0183010101318359,-0.0742177963256836,-0.00532817840576172,-0.0457687377929688,-0.0282473564147949,0.0105381011962891,-0.0121359825134277,0.00457310676574707,-0.00156021118164063,-0.0750899314880371,0.0384180545806885,0.00353050231933594,-0.0358788967132568,0.0322830677032471,-0.00492477416992188,-0.065187931060791,0.0619609355926514,-0.00493049621582031,-0.127501010894775,0.0626354217529297,0.0312042236328125,-0.0742924213409424,0.048267126083374,0.0184459686279297,-0.0274176597595215,0.037442684173584,0.00707817077636719,-0.115433692932129,-0.0273041725158691,0.0270891189575195,-0.12520694732666,-0.0460220575332642,0.0292901992797852,-0.096381664276123,-0.0179497003555298,0.0227766036987305,-0.0663161277770996,-0.0582417249679565,0.0149679183959961,-0.0870394706726074,-0.0224457979202271,0.0205087661743164,-0.105979442596436,-0.021424412727356,0.024960994720459,-0.10612154006958,-0.0123015344142914,0.0250129699707031,-0.0721683502197266,0.00932585075497627,0.0175495147705078,-0.118720054626465,0.0563452243804932,0.0292024612426758,-0.0439791679382324,0.0731871128082275,0.0117616653442383,-0.147531032562256,0.0444884896278381,0.0359678268432617,-0.0748624801635742,0.0554708242416382,0.0187892913818359,-0.0254771709442139,0.026197075843811,0.00649452209472656,-0.0275394916534424,0.0192332863807678, +0.00691127777099609,-0.0233209133148193,0.0794694423675537,0.00684642791748047,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-0.00243031978607178,0.000277459621429443,0.000583648681640625,-0.0836323499679565,0.00968503952026367,0.0200862884521484,-0.114145040512085,0.043732762336731,-0.00831413269042969,-0.170982360839844,0.0942243337631226,0.00810527801513672,-0.1872239112854,0.065908670425415,0.00882148742675781,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,1.16825103759766e-05,4.76837158203125e-06,1.9073486328125e-06,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0, +-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06, +0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06, +0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-9.01222229003906e-05,-2.74181365966797e-05,-6.103515625e-05,-0.0321485996246338,-0.00655514001846313,-0.0216398239135742,-0.0700879096984863,-0.0146988034248352,-0.0824975967407227,-0.223358631134033,-0.0139434337615967,-0.15715503692627,-0.330886125564575,-0.01417076587677,-0.159114837646484,-0.437490463256836,-0.00856173038482666,-0.0840988159179688,-0.476159811019897,0.00368964672088623,-0.0123558044433594,-0.402390956878662,0.0114609003067017,0.160143852233887,-0.331011295318604,0.0125656127929688,0.187532424926758,-0.26105260848999,0.00920569896697998,0.210186004638672,-0.16370964050293,0.00413811206817627,0.100796699523926,-0.0594801902770996,-0.00112771987915039,0.0589199066162109,-0.0241637229919434,-0.00204008817672729,0.020411491394043,-0.0523378849029541,0.00293377041816711,-0.0175380706787109,-0.00878310203552246,0.000914007425308228,-0.00543689727783203,-0.075472354888916, +0.00424244999885559,-0.0241355895996094,-0.114959001541138,0.00276842713356018,-0.0207653045654297,-0.143499851226807,-0.00477446615695953,-0.00384235382080078,-0.133800268173218,-0.012367382645607,0.0228404998779297,-0.167060375213623,-0.0316793918609619,0.0475444793701172,-0.0866408348083496,-0.0136468112468719,0.0339651107788086,-0.0755414962768555,-0.00162374973297119,0.0325021743774414,-0.0195083618164063,-0.00312268733978271,0.0130949020385742,-0.00583982467651367,-0.00163877010345459,0.00503444671630859,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-9.77516174316406e-06,-3.03983688354492e-06,-0.0216598510742188,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-1.28746032714844e-05,-4.57465648651123e-06,-2.86102294921875e-06,-0.000710010528564453,-6.02006912231445e-06,0.000169754028320313,-0.000545978546142578,-6.47455453872681e-05,0.00012969970703125,-0.000487804412841797,0.000121057033538818,0.000118255615234375,-0.000793933868408203,0.000205874443054199,0.000191688537597656,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4254 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668,0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031, +-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106, +0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.608315385878086,0.0309087634086609,0.337096847593784,-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983, +1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041, +-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807, +-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543, +-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643, +-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899, +-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962, +-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679, +-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903, +0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593, +0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014, +0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704, +-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916, +-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385, +0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395, +0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853, +-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877, +0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688, +-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527, +-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354, +-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456, +0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976, +-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028, +0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495, +-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532, +-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716, +-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309, +-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736, +0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396, +-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568, +0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706, +0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719, +-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527, +0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151, +0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382, +1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193, +-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030774160, "Geometry::Eye_Left_Left", "Shape" { + Version: 100 + Indexes: *1431 { + a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485,6486, +6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7510,7511,7512,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544, +7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179, +8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *4293 { + a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.0903201103210449,0.0162455439567566,-0.375970840454102,0.192007541656494,0.0213414430618286,-0.45504093170166,0.310050964355469,0.0252300500869751,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898,-0.296371459960938,0.329407691955566,0.0257493257522583,-0.113393783569336,0.261270046234131,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297415256500244,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.043103814125061,0.0167997479438782,0.0434961318969727,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.101550102233887,0.00887632369995117,0.0476627349853516,0.138259410858154,0.00297409296035767,0.0624895095825195,0.24837589263916,0.0165941715240479,0.0442428588867188,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.329407691955566,0.0257493257522583,-0.11480712890625,0.338678359985352,0.0275640487670898,-0.297785758972168,0.326820850372314,0.0247514247894287,-0.408695220947266,0.310050964355469,0.0252300500869751,-0.502775192260742,0.164108276367188,0.0490363240242004,-0.496404647827148,0.0962176322937012,0.00350004434585571,-0.394233703613281,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.123275756835938,0.0382112860679626,-0.40921688079834,0.192007541656494,0.0213413834571838,-0.45504093170166,0.310050964355469,0.0252299308776855,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898, +-0.297785758972168,0.329407215118408,0.0257493257522583,-0.11480712890625,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297409296035767,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.169617414474487,-0.00934772193431854,0.0134963989257813,0.262131690979004,-0.0169035717844963,-0.000680923461914063,0.19421911239624,-0.00468742474913597,-0.0219268798828125,0.137040138244629,0.00615224242210388,-0.136188507080078,0.107697486877441,0.00664103031158447,-0.248453140258789,0.0621771812438965,0.00528210401535034,-0.23625659942627,0.0284223556518555,-0.0141885280609131,-0.21666431427002,0.0133295059204102,0.00161898136138916,-0.236495971679688,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650472939014435,0.0149145126342773,0.143210172653198,-0.0115275532007217,0.0188655853271484,0.169617414474487,-0.00934773683547974,0.0134963989257813,0.262131690979004,-0.0169035792350769,-0.000680923461914063,0.194218635559082,-0.00468742847442627,-0.0219268798828125,0.167585372924805,0.0298169553279877,-0.121891975402832,0.153645992279053,0.0369060039520264,-0.253515243530273,0.129809379577637,0.0621353089809418,-0.290690422058105,0.0969195365905762,0.0606474205851555,-0.327178955078125,0.0744624137878418,0.0981739610433578,-0.332362174987793,0.0135793685913086,0.0106267333030701,-0.214198112487793,0.00246715545654297,0.00920170545578003,-0.22663402557373,0.055539608001709,0.0514180064201355,-0.289390563964844,0.0837244987487793,0.0425230860710144,-0.295361518859863,0.107307434082031,0.0409700870513916,-0.270119667053223,0.134385585784912, +0.0260509103536606,-0.253552436828613,0.15485668182373,0.0213298052549362,-0.12946891784668,0.194218635559082,-0.00468741357326508,-0.0219268798828125,0.262131690979004,-0.0169035494327545,-0.000680923461914063,0.169617414474487,-0.00934772938489914,0.0134963989257813,0.143210172653198,-0.0115275830030441,0.0188655853271484,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.0903201103210449,0.0162455439567566,-0.375970840454102,0.192007541656494,0.0213414430618286,-0.45504093170166,0.310050964355469,0.0252300500869751,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898,-0.296371459960938,0.329407691955566,0.0257493257522583,-0.113393783569336,0.261270046234131,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297415256500244,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.043103814125061,0.0167997479438782,0.0434961318969727,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0137696266174316,0.000629693269729614,0.00848674774169922,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.101550102233887,0.00887632369995117,0.0476627349853516,0.138259410858154,0.00297409296035767,0.0624895095825195,0.24837589263916,0.0165941715240479,0.0442428588867188,0.26127028465271,0.00660628080368042,-0.0108213424682617,0.329407930374146,0.0257493257522583,-0.11480712890625,0.338678359985352,0.0275640487670898,-0.297785758972168,0.326820850372314,0.0247514247894287,-0.408695220947266,0.310050964355469,0.0252300500869751,-0.502775192260742,0.164108276367188,0.0490363240242004,-0.496404647827148,0.0962176322937012,0.00350004434585571,-0.394233703613281,0.0507545471191406, +0.00104856491088867,-0.318170547485352,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.000130653381347656,0.000640809535980225,-0.235055923461914,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.123275756835938,0.0382112860679626,-0.40921688079834,0.192007541656494,0.0213413834571838,-0.45504093170166,0.310050964355469,0.0252299904823303,-0.502775192260742,0.326820850372314,0.0247514247894287,-0.408696174621582,0.338678359985352,0.0275640487670898,-0.297785758972168,0.329407453536987,0.0257493257522583,-0.11480712890625,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.24837589263916,0.0165941715240479,0.0442428588867188,0.138259410858154,0.00297409296035767,0.0624895095825195,0.101550102233887,0.00887632369995117,0.0476627349853516,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.169617414474487,-0.00934772193431854,0.0134963989257813,0.262131690979004,-0.0169035717844963,-0.000680923461914063,0.19421911239624,-0.00468742474913597,-0.0219268798828125,0.137040138244629,0.00615224242210388,-0.136188507080078,0.107697486877441,0.00664103031158447,-0.248453140258789,0.0621771812438965,0.00528210401535034,-0.23625659942627,0.0284223556518555,-0.0141885280609131,-0.21666431427002,0.0133295059204102,0.00161898136138916,-0.236495971679688,0.0137698650360107,0.000629693269729614,0.00848674774169922,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.143210172653198,-0.0115275830030441,0.0188655853271484,0.169617414474487,-0.00934773683547974,0.0134963989257813,0.262131690979004,-0.0169035792350769,-0.000680923461914063,0.194218635559082,-0.00468742847442627,-0.0219268798828125,0.167585372924805,0.0298169851303101,-0.121891975402832,0.153645992279053,0.0369060039520264,-0.253515243530273, +0.129809379577637,0.0621353089809418,-0.290690422058105,0.0969195365905762,0.0606474205851555,-0.327178955078125,0.0744624137878418,0.098173975944519,-0.332362174987793,0.0135793685913086,0.0106267333030701,-0.214198112487793,0.00246715545654297,0.00920170545578003,-0.22663402557373,0.055539608001709,0.0514180064201355,-0.289390563964844,0.0837244987487793,0.0425230860710144,-0.295361518859863,0.107307434082031,0.0409700833261013,-0.270119667053223,0.134385585784912,0.0260509103536606,-0.253552436828613,0.15485668182373,0.0213298127055168,-0.12946891784668,0.194218635559082,-0.00468743592500687,-0.0219268798828125,0.262131690979004,-0.0169035494327545,-0.000680923461914063,0.169617414474487,-0.00934774056077003,0.0134963989257813,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.0636618137359619,-0.000650465488433838,0.0149145126342773,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0137698650360107,0.000629693269729614,0.00848674774169922,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06, +0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06, +0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06, +0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06, +0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06, +0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06, +0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06, +0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0.000238180160522461,0.000132977962493896,9.5367431640625e-06,0.0990467071533203,0.0082821249961853,0.047633171081543,0.142971277236938,-0.00980150699615479,0.0699443817138672,0.26461386680603,0.00175583362579346,0.0467805862426758,0.266428709030151,-0.00530350208282471,-0.00621604919433594,0.339926481246948,0.0198181867599487,-0.150485038757324,0.361836433410645,0.0361200571060181,-0.467625617980957,0.344032764434814,0.0346287488937378,-0.535763740539551,0.216418743133545,0.0182749032974243,-0.477591514587402,0.103751659393311,0.0199064612388611,-0.383056640625,-0.0022883415222168,0,-0.2498779296875,0.37465763092041,0.0185005664825439,-0.336268424987793,0.0582830905914307,-0.00549057126045227,0.0147705078125,0.128053903579712,-0.00937643647193909,0.0211477279663086, +0.00806570053100586,-0.000226080417633057,0.0035247802734375,0.0270147323608398,0.00050884485244751,0.0165061950683594,0.158831119537354,-0.0127155631780624,0.0145635604858398,0.240624904632568,-0.0171034783124924,-0.00535202026367188,0.208769559860229,-0.0020211935043335,-0.0298299789428711,0.143869400024414,0.00723865628242493,-0.149331092834473,0.136171817779541,0.00775185227394104,-0.282914161682129,0.0536060333251953,-0.00206896662712097,-0.28546142578125,0.024200439453125,-0.0144634246826172,-0.253257751464844,0.014124870300293,0.00166624784469604,-0.248126983642578,0.0588760375976563,0.0109925866127014,-0.321419715881348,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0.0116305351257324,-0.00467574596405029,0.000390052795410156,0.00164312124252319,-0.00114583969116211,5.81741333007813e-05,0.0498316287994385,-0.0116705894470215,0.00176620483398438,0.0818784236907959,-0.0551135540008545,0.00291061401367188,0.121216297149658,-0.0266857147216797,0.00438308715820313,0.0238196849822998,-0.0143837928771973,0.000828742980957031,0.129374980926514,0.0206098556518555,0.0049591064453125,0.12768816947937,0.0371713638305664,0.00509929656982422,0.0865483283996582,0.0504584312438965,0.00355625152587891,0.174444198608398,0.0191357135772705,0.00681304931640625,0.0886101722717285,0.0533926486968994,-0.0409784317016602,0.0495104789733887,0.00175237655639648,0.00190639495849609,0.135512351989746, +0.00797843933105469,-0.120069026947021,-1.9073486328125e-06,-1.07288360595703e-06,0,0,6.13927841186523e-06,0,1.43051147460938e-06,-1.19209289550781e-06,0,0,7.62939453125e-06,0,-0.00158405303955078,0.00531435012817383,-5.14984130859375e-05,0,-7.62939453125e-06,0,0.0241680145263672,0.0255273580551147,0.00104236602783203,0.0157561302185059,0.00699925422668457,0.000629425048828125,0.0175750255584717,0.00735747814178467,0.000706672668457031,0,2.98023223876953e-06,0,0.047046422958374,0.0202135443687439,0.00189781188964844,0,1.54972076416016e-06,0,0.0119510889053345,-0.00140209496021271,0.000448226928710938,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0.0515360832214355,0.0475425720214844,-0.0366711616516113,0,-2.98023223876953e-06,0,3.814697265625e-06,-1.07288360595703e-06,0,-1.43051147460938e-06,-1.11013650894165e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0.00529813766479492,0.017688512802124,0.000266075134277344,0,-6.19888305664063e-06,0,0.01129150390625,0.00424492359161377,0.000452041625976563,0.0207185745239258,0.00426256656646729,0.000791549682617188,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0.00424426794052124,-0.00169980525970459,0.000143051147460938,0.11449146270752,-0.034414529800415,0.00429821014404297,0.194644212722778,-0.0192775726318359,0.00722885131835938,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06, +0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06, +0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.101550102233887,0.00887632369995117,0.0476627349853516,0.138259410858154,0.00297415256500244,0.0624895095825195,0.24837589263916,0.0165942907333374,0.0442428588867188,0.26127028465271,0.0066063404083252,-0.0108213424682617,0.329407691955566,0.0257494449615479,-0.113393783569336,0.338678359985352,0.0275641679763794,-0.296371459960938,0.326820850372314,0.0247514247894287,-0.408696174621582,0.310050964355469,0.0252299308776855,-0.502775192260742,0.192007541656494,0.0213413238525391,-0.45504093170166,0.0903201103210449,0.0162455439567566,-0.375970840454102,0.0507545471191406,0.00104856491088867,-0.318170547485352,0.000130653381347656,0.000640869140625,-0.235055923461914,0.0133295059204102,0.00161898136138916,-0.236496925354004,0.0284223556518555,-0.0141884684562683,-0.21666431427002,0.0621771812438965,0.00528204441070557,-0.23625659942627,0.107697486877441,0.00664100050926208,-0.248453140258789,0.137040138244629,0.00615222752094269,-0.136188507080078,0.19421911239624,-0.00468742847442627,-0.0219268798828125,0.262131690979004,-0.0168577879667282,-0.000680923461914063,0.169617414474487,-0.00934771448373795,0.0134963989257813,0.143210172653198,-0.0115275681018829,0.0188655853271484,0.0636618137359619,-0.000650495290756226,0.0149145126342773,0.0174217224121094,0.000653326511383057,0.00787448883056641,0.0137696266174316,0.000629633665084839,0.00848674774169922,0.0379900932312012,0.00158601999282837,0.0231876373291016,0.0242965221405029,0.00126487016677856,0.015660285949707,0.0265774726867676,0.0039711594581604,0.0113620758056641,0.0735821723937988,0.0134950950741768,0.0148000717163086,0.135603427886963,0.00944078154861927,0.0160617828369141,0.171540260314941,-0.00206577777862549,0.0120716094970703,0.256332397460938,-0.0157688409090042,0.00373935699462891,0.177870273590088,-0.00625723600387573,-0.0124368667602539,0.131528377532959,0.00614805147051811,-0.110476493835449,0.112782001495361,0.0129797235131264,-0.226679801940918,0.0486507415771484,0.00343582034111023, +-0.22941780090332,0.00263786315917969,0.00204774737358093,-0.216222763061523,0.011970043182373,0.00126951932907104,-0.214228630065918,0.0156960487365723,0.000843822956085205,-0.211348533630371,0.048250675201416,0.000329852104187012,-0.277787208557129,0.0756072998046875,0.00605154037475586,-0.329646110534668,0.170723915100098,0.0229471921920776,-0.415866851806641,0.269514560699463,0.0256234407424927,-0.437540054321289,0.259909629821777,0.0068666934967041,-0.353434562683105,0.277475833892822,0.0240838527679443,-0.255824089050293,0.328291654586792,0.0210464000701904,-0.0850362777709961,0.258634805679321,0.0130612850189209,0.00355052947998047,0.201249599456787,0.0189461708068848,0.0386104583740234,0.127920627593994,0.00530815124511719,0.050994873046875,0.102397203445435,0.012145459651947,0.0449333190917969,0.040884256362915,0.00200074911117554,0.0264787673950195,0.0292434692382813,0.00143510103225708,0.0217084884643555,0.110448837280273,0.021564245223999,0.0381650924682617,0.165137052536011,0.0363199710845947,0.0440025329589844,0.198148250579834,0.0513136386871338,0.0378808975219727,0.201098442077637,0.0288066864013672,0.0166292190551758,0.185127258300781,0.0102483034133911,-0.0133810043334961,0.190587520599365,-0.00922918319702148,-0.0637855529785156,0.242588520050049,-0.0653148889541626,-0.159163475036621,0.247251033782959,-0.0288717746734619,-0.224226951599121,0.0689969062805176,-0.00318300724029541,-0.273089408874512,0.0297422409057617,8.392333984375e-05,-0.11963939666748,0.0163331031799316,0.000384390354156494,-0.0535240173339844,0.00680637359619141,0.00193840265274048,-0.0337743759155273,0.00688457489013672,0.00114214420318604,-0.0135650634765625,0.0182156562805176,0.00880126655101776,-0.0140447616577148,0.0221033096313477,0.00809766352176666,-0.0282840728759766,0.0744905471801758,0.00708749890327454,-0.0490274429321289,0.108960151672363,0.00850477814674377,-0.0291824340820313,0.124290466308594,-0.000273227691650391,-0.00786876678466797,0.183624744415283,-0.00733697414398193,0.00388145446777344,0.131885528564453, +0.0210279822349548,0.00943088531494141,0.0979771614074707,0.0647347569465637,0.012598991394043,0.0859107971191406,0.0420075058937073,0.0135459899902344,0.0298558473587036,0.00723016262054443,0.0121135711669922,0.0177936553955078,0.000237077474594116,0.0140390396118164,0.239066362380981,-0.0176901817321777,0.00895023345947266,0.237991213798523,-0.0321437120437622,0.00878524780273438,0.0749275684356689,-0.0245360136032104,0.00254726409912109,0.0107104778289795,-0.00430947542190552,0.000360488891601563,0.0103861093521118,-0.00122860074043274,0.000390052795410156,0.110658168792725,-0.0130277872085571,0.00415229797363281,0.109701037406921,0.0416576266288757,0.00438690185546875,0.0632960796356201,0.026045560836792,0.00249862670898438,0.0798726081848145,0.0210157632827759,0.00307559967041016,0.0700716972351074,0.0304704904556274,0.00280094146728516,0.0584845542907715,0.0240632295608521,0.00235080718994141,0.0715188980102539,0.0815666913986206,0.00310325622558594,0.0225114822387695,0.0756710171699524,0.00113391876220703,-0.0200138092041016,0.0668308138847351,-0.000905513763427734,2.38418579101563e-06,-1.22189521789551e-06,0,0,-1.16229057312012e-06,0,-2.38418579101563e-06,-1.13248825073242e-06,0,2.38418579101563e-06,-1.13248825073242e-06,0,0.0406279563903809,-0.0100667476654053,-0.0183992385864258,0.0552353858947754,0.0131537914276123,-0.0195140838623047,0.145007610321045,-0.0158710479736328,0.00544261932373047,0.0801806449890137,0.0102994441986084,0.00306606292724609,0.11051869392395,-0.020923376083374,0.00404262542724609,0.0452847480773926,0.0173771381378174,0.00187873840332031,0.0458097457885742,0.0145988464355469,0.00185012817382813,0.233118057250977,-0.00167036056518555,0.00936508178710938,0.21418285369873,-0.0645043849945068,-0.0406532287597656,0.161038398742676,-0.0880333185195923,-0.00156593322753906,0.0701031684875488,-0.0269216299057007,0.0433931350708008,0,-1.19209289550781e-06,0,-2.86102294921875e-06,-1.19209289550781e-06,0,0,-1.19209289550781e-06,0,2.86102294921875e-06,-1.22189521789551e-06,0,-3.814697265625e-06, +-1.27404928207397e-06,0,-0.00567293167114258,0.0775673985481262,9.72747802734375e-05,0.0197963714599609,0.0499762296676636,0.000940322875976563,0.0636119842529297,0.0398548245429993,0.00260734558105469,0.0590910911560059,0.0180896520614624,0.00233554840087891,0.0805466175079346,0.0224337577819824,0.00314140319824219,0.0872180461883545,0.0300605297088623,0.00339126586914063,0.071399450302124,0.0734748840332031,0.00300216674804688,0.0938503742218018,0.0383623838424683,0.00372505187988281,0.0577132701873779,-0.0066697746515274,0.00216579437255859,0.0115294456481934,-0.00135704874992371,0.000432968139648438,0.00011599063873291,-1.51991844177246e-05,3.814697265625e-06,0.0658905506134033,0.00966393947601318,0.00250530242919922,0.16734504699707,0.00797879695892334,0.00637054443359375,0.0751156806945801,0.0209629535675049,0.00299167633056641,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06, +0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06, +0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06, +0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,7.17639923095703e-05,3.09944152832031e-06,4.67300415039063e-05,0.0257148742675781,0.000463902950286865,0.0160846710205078,0.0926861763000488,0.0072779655456543,0.0483837127685547,0.155390739440918,0.00201785564422607,0.070404052734375,0.29344630241394,0.0338937044143677,0.0481891632080078,0.30637788772583,-0.00040435791015625,-0.0275583267211914,0.351467370986938,0.025180459022522,-0.15907096862793,0.36540699005127,0.00854885578155518,-0.344948768615723,0.363742351531982,0.0110155344009399,-0.469780921936035,0.338369369506836, +0.0225290060043335,-0.514941215515137,0.18055248260498,0.0312654972076416,-0.469051361083984,0.0892510414123535,0.0103706121444702,-0.365453720092773,0.0293307304382324,0.0019804835319519,-0.299956321716309,0.0449695587158203,-0.00594067573547363,0.0144062042236328,0.00570559501647949,-0.000830203294754028,0.00343036651611328,0.113539218902588,-0.0111568570137024,0.0209140777587891,0.138956546783447,-0.0116026103496552,0.0142955780029297,0.208453178405762,-0.0144858658313751,-0.00601863861083984,0.187669992446899,-0.000535920262336731,-0.0302619934082031,0.130633354187012,0.00658252835273743,-0.146069526672363,0.129236698150635,0.00711768865585327,-0.282761573791504,0.0567002296447754,0.00697898864746094,-0.245926856994629,-0.00708150863647461,-0.015288770198822,-0.226593017578125,-0.0309848785400391,-0.000244617462158203,-0.263739585876465,-0.0559554100036621,0,-0.18452262878418,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,8.10623168945313e-06,-3.03983688354492e-06,5.7220458984375e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,-0.058558464050293,0,0,-0.17643928527832,0.00276803970336914,0.000644445419311523,-0.175441741943359,0.00547885894775391,0.0013120174407959,-0.188865661621094,8.48770141601563e-05,1.54972076416016e-05,-0.194449424743652,0,0,-0.192206859588623,-0.0872402191162109,7.56978988647461e-06,-0.192206859588623,5.24520874023438e-06,4.05311584472656e-06,0,0,-3.03983688354492e-06,0,0.0122737884521484,-0.00113092362880707,0.000457763671875,0.0131425857543945, +-0.001299649477005,0.000491142272949219,0.00882458686828613,-0.00153090059757233,0.00032806396484375,0.0192015171051025,-0.00154019892215729,0.000720024108886719,0.0138607025146484,0.00033886730670929,-0.0785455703735352,0.00478076934814453,0.0001392662525177,-0.176295280456543,0.00820493698120117,1.51991844177246e-06,-0.176238059997559,0.00127601623535156,0,-0.176407814025879,-0.106726169586182,6.13927841186523e-06,-0.17643928527832,-0.193301200866699,-0.00720059871673584,-0.023188591003418,0,-1.49011611938477e-06,0 + } + Normals: *4293 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, +0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, +-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, +-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, +0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603, +0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845, +-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763, +-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417, +0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729, +-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455, +-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917, +0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755, +-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449, +-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145, +0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322, +-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842, +-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038, +0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248, +-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295, +1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823, +0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.632933646440506,0.395189315080643,-0.627764709293842,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094, +0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769, +-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291, +0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, +-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365, +-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, +-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724, +0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026, +-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116, +-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725, +-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247, +-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874, +-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839, +-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931, +-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246, +-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629, +-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285, +-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.45670014619827,-0.404784709215164,-0.154245809651911,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224, +1.22639819979668,0.864633291959763,-0.881134361028671,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030775024, "Geometry::Eye_Left_Up", "Shape" { + Version: 100 + Indexes: *1433 { + a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485, +6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544,7545, +7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178, +8179,8182,8184,8185,8186,8187,8188,8189,8190,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *4299 { + a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.089337170124054,-0.00554847717285156,0.0207724571228027,0.182315468788147,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103086471557617,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966549873352,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.00541162490844727,0.0586265325546265,0.0198440551757813,-0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00215601921081543,0.0157150626182556,0.00160980224609375,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0190379619598389,0.199966490268707,-0.0269260406494141,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.00152707099914551,0.353335618972778,-0.103085517883301,-0.000825643539428711,0.376742601394653,-0.116958618164063,0.00203275680541992,0.350414991378784,-0.0986337661743164,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.0207724571228027,0.182315528392792,-0.0221233367919922,0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,0.00134897232055664,0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.0893371105194092,-0.00554847717285156,0.0207724571228027,0.182315647602081,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.000825643539428711,0.376742601394653, +-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103085517883301,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.00561618804931641,0.0023496150970459,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978596448898,0.0188179016113281,0.00159883499145508,0.0908813327550888,0.026524543762207,0.00166559219360352,0.112487778067589,0.0328731536865234,0.000680923461914063,0.108485396951437,0.0317630767822266,-0.000680446624755859,0.0882735997438431,0.0263462066650391,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.00268125534057617,0.0471039116382599,0.0145492553710938,-0.00215721130371094,0.02490234375,0.00716114044189453,-0.001190185546875,0.0142379999160767,0.00361347198486328,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.005615234375,0.0023493766784668,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978447437286,0.0188188552856445,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00166559219360352,0.112487852573395,0.0328731536865234,0.000680923461914063,0.108485400676727,0.0317630767822266,-0.000680446624755859,0.0882736146450043,0.0263462066650391,-0.00168085098266602,0.0699157416820526,0.020665168762207,-0.00268125534057617,0.0471038967370987,0.0145492553710938,-0.00215721130371094,0.0249023661017418,0.00716209411621094,-0.001190185546875,0.0142379105091095,0.00361251831054688,0.00134897232055664,0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.001190185546875,0.0142379105091095,0.00361347198486328,-0.00215721130371094,0.02490234375,0.00716209411621094,-0.00268077850341797,0.0471039116382599,0.0145492553710938,-0.00168085098266602,0.0699157640337944,0.020665168762207, +-0.000680446624755859,0.0882736444473267,0.0263462066650391,0.000680923461914063,0.108485400676727,0.0317630767822266,0.00166559219360352,0.112487807869911,0.0328731536865234,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00224781036376953,0.0636978000402451,0.0188179016113281,0.0023493766784668,0.0375702530145645,0.0109281539916992,0.00262594223022461,0.0172897279262543,0.00561618804931641,-0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00511384010314941,0.0152137279510498,0.0203084945678711,0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.089337170124054,-0.00554847717285156,0.0207724571228027,0.182315468788147,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103086471557617,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966549873352,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.00541162490844727,0.0586265325546265,0.0198440551757813,-0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00215601921081543,0.0157150626182556,0.00160980224609375,-0.0105254650115967,0.0434127748012543,-0.000464439392089844,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.00152707099914551,0.353335559368134,-0.103085517883301,-0.000825643539428711,0.376742601394653,-0.116958618164063,0.00203275680541992,0.350415110588074,-0.0986337661743164,0.00718212127685547,0.302484154701233,-0.0725994110107422,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.0207724571228027,0.182315528392792,-0.0221233367919922,0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,0.00134897232055664, +0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824653148651,0.000777244567871094,0,0.0447372794151306,0,0.0106840133666992,0.0893371105194092,-0.00554847717285156,0.0207724571228027,0.182315587997437,-0.0221233367919922,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.00718212127685547,0.302484035491943,-0.0725994110107422,0.00203275680541992,0.350414991378784,-0.0986337661743164,-0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00152707099914551,0.353335618972778,-0.103085517883301,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.00561618804931641,0.0023496150970459,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978596448898,0.0188179016113281,0.00159883499145508,0.0908813327550888,0.026524543762207,0.00166559219360352,0.112487778067589,0.0328731536865234,0.000680923461914063,0.108485396951437,0.0317630767822266,-0.000680446624755859,0.0882735997438431,0.0263462066650391,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.00268125534057617,0.0471039116382599,0.0145492553710938,-0.00215721130371094,0.02490234375,0.00716114044189453,-0.001190185546875,0.0142379999160767,0.00361347198486328,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00262618064880371,0.0172897279262543,0.005615234375,0.0023493766784668,0.0375702381134033,0.0109281539916992,0.00224804878234863,0.0636978000402451,0.0188188552856445,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00166559219360352,0.112487822771072,0.0328731536865234,0.000680923461914063,0.108485400676727,0.0317630767822266,-0.000680446624755859,0.0882736444473267,0.0263462066650391,-0.00168085098266602,0.0699157416820526,0.020665168762207,-0.00268125534057617,0.0471038967370987,0.0145492553710938,-0.00215721130371094, +0.0249023586511612,0.00716209411621094,-0.001190185546875,0.0142379030585289,0.00361251831054688,0.00134897232055664,0.0151824951171875,0.000777244567871094,0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.001190185546875,0.0142379105091095,0.00361347198486328,-0.00215721130371094,0.02490234375,0.00716209411621094,-0.00268077850341797,0.0471039079129696,0.0145492553710938,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.000680446624755859,0.0882736593484879,0.0263462066650391,0.000680923461914063,0.108485378324986,0.0317630767822266,0.00166559219360352,0.112487807869911,0.0328731536865234,0.00159883499145508,0.0908813178539276,0.026524543762207,0.00224781036376953,0.0636978149414063,0.0188179016113281,0.0023493766784668,0.0375702530145645,0.0109281539916992,0.00262594223022461,0.0172897279262543,0.00561618804931641,-0.00215578079223633,0.0157150626182556,0.00160980224609375,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,-0.00490435818210244,0.0584185123443604,0.000736236572265625,-8.69575378601439e-05,0.112455129623413,0.000485420227050781,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,-6.22060470050201e-05,0.0804512500762939,0.000347137451171875,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,-0.000254413869697601,0.00131130218505859,-0.000378608703613281,0,0.0500063896179199,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06, +0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0, +-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06, +0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06, +0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06, +0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06, +0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, +0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,-0.0229835510253906,0.108558654785156,-0.00851726531982422,-0.0272183418273926,0.207606196403503,-0.0364656448364258,-0.0140557289123535,0.287662386894226,-0.0913305282592773,0.000494956970214844,0.353499531745911,-0.149645805358887,-0.00197863578796387,0.384345054626465,-0.160956382751465,0.0097804069519043,0.341617822647095,-0.0907707214355469,0.0343132019042969,0.271619081497192,-0.0584993362426758,0.0182085037231445,0.21390688419342,-0.0273571014404297,0.0123066902160645,0.0922927856445313,-0.00557327270507813,0.00175285339355469,0.375501990318298,-0.127015113830566,0.00374102592468262,0.041577160358429,0.011561393737793, +0.00382757186889648,0.0799316465854645,0.0214080810546875,0.00574183464050293,0.00979766249656677,0.00573348999023438,-0.01180100440979,0.0292496085166931,-0.00340080261230469,0.00243163108825684,0.119226068258286,0.030548095703125,0.00235915184020996,0.150872811675072,0.0383310317993164,6.81877136230469e-05,0.141830459237099,0.036773681640625,-0.00219440460205078,0.109797656536102,0.0297889709472656,-0.00316810607910156,0.0876602232456207,0.023895263671875,-0.0051722526550293,0.0581252574920654,0.0171747207641602,-0.00331211090087891,0.024243175983429,0.00723648071289063,-0.00261068344116211,0.00842589139938354,0.00366020202636719,0.00647449493408203,0.0431656241416931,-0.00140380859375,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-0.0246649980545044,0.246665000915527,0.00303173065185547,-0.00334277749061584,0.456263422966003,0.0108251571655273,-0.154863953590393,0.703448176383972,0.137066841125488,-0.109751880168915,0.378051519393921,0.0480270385742188,-0.137885212898254,0.523767709732056,0.0637903213500977,-0.191741824150085,0.490942001342773,-0.00625991821289063,-0.00177502632141113,0.590751647949219,0.0753660202026367,0.00606799125671387,0.55527925491333,0.00229835510253906,0.0103864669799805,0.47050952911377,-0.0252504348754883,0.0473291873931885,0.452560424804688,-0.0395317077636719,0.107317447662354,0.126441240310669,-0.0330076217651367,0.0490045547485352,0.334876775741577,-0.0190849304199219,0, +-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,-0.000286787748336792,0.270729660987854,0.00114631652832031,-0.0226919651031494,0.109617352485657,-0.00602340698242188,-0.0693250894546509,0.558444738388062,0.0153436660766602,-0.0296266078948975,0.571545124053955,0.108798027038574,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, +0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.0175065994262695,0.105868518352509,-0.00580120086669922,-0.0190379619598389,0.199966430664063,-0.0269260406494141,-0.0111958980560303,0.298364281654358,-0.0650091171264648,-0.00152707099914551,0.353335618972778,-0.103086471557617,-0.000825643539428711,0.376742720603943,-0.116958618164063,0.00203275680541992,0.350415229797363,-0.0986337661743164, +0.00718212127685547,0.302484154701233,-0.0725994110107422,0.0185613632202148,0.259619832038879,-0.0453500747680664,0.0207724571228027,0.182315468788147,-0.0221233367919922,0.0106840133666992,0.089337170124054,-0.00554847717285156,0.00594902038574219,0.0447372794151306,-0.00125312805175781,0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.001190185546875,0.0142379999160767,0.00361251831054688,-0.00215721130371094,0.02490234375,0.00716114044189453,-0.00268077850341797,0.0471038818359375,0.0145492553710938,-0.00168085098266602,0.069915771484375,0.020665168762207,-0.000680446624755859,0.0882736295461655,0.0263462066650391,0.000680923461914063,0.108485400676727,0.0317630767822266,0.00166559219360352,0.112533560954034,0.0328731536865234,0.00159883499145508,0.0908813327550888,0.026524543762207,0.00224804878234863,0.0636978000402451,0.0188179016113281,0.0023496150970459,0.0375702083110809,0.0109281539916992,0.00262618064880371,0.0172897279262543,0.00561618804931641,-0.00215601921081543,0.0157150030136108,0.00160980224609375,-0.0105254650115967,0.0434128046035767,-0.000464439392089844,-0.00358390808105469,0.0276260375976563,0.00311565399169922,-0.000456571578979492,0.0215805172920227,0.00531768798828125,0.000558376312255859,0.0313613787293434,0.0100059509277344,0.000854730606079102,0.0459472741931677,0.0157155990600586,0.000890493392944336,0.0594192519783974,0.0207805633544922,0.00107145309448242,0.0698196664452553,0.0249290466308594,0.00102090835571289,0.0688781663775444,0.0246143341064453,0.000574111938476563,0.0594909638166428,0.0211057662963867,-8.96453857421875e-05,0.0473694130778313,0.0164384841918945,-0.000590801239013672,0.0332931578159332,0.0112724304199219,-0.000636577606201172,0.0219604671001434,0.00639247894287109,0.000194072723388672,0.016680896282196,0.00312709808349609,0.0021357536315918,0.0235031247138977,0.00108718872070313,0.00487947463989258,0.041851818561554,-0.00106239318847656,0.00759124755859375,0.0735153555870056,-0.00502490997314453,0.0081634521484375,0.164313793182373,-0.0167045593261719, +0.00613927841186523,0.24040162563324,-0.0340747833251953,0.00288772583007813,0.257696390151978,-0.053257942199707,0.000299453735351563,0.325610280036926,-0.0685253143310547,-0.00104475021362305,0.340882778167725,-0.0779905319213867,-0.00197219848632813,0.327918887138367,-0.0687875747680664,-0.0057682991027832,0.291744232177734,-0.0416946411132813,-0.01004958152771,0.204445838928223,-0.0181217193603516,-0.0109395980834961,0.091583251953125,-0.00472450256347656,-0.00765681266784668,0.0476394891738892,0.00145149230957031,-0.00471532344818115,0.034954845905304,3.33786010742188e-05,-0.00605249404907227,0.0652878284454346,-0.00660610198974609,-0.00448155403137207,0.0933593511581421,0.020319938659668,-0.00531435012817383,0.132469296455383,0.00202846527099609,-0.00429344177246094,0.160261631011963,-0.018157958984375,-0.00195860862731934,0.179245471954346,-0.0314254760742188,-0.00404453277587891,0.148461580276489,-0.0272750854492188,-0.00444650650024414,0.132002234458923,-0.0164871215820313,-0.00200700759887695,0.107638597488403,-0.0372381210327148,0.00069427490234375,0.0771942138671875,-0.020167350769043,0.00242185592651367,0.0480575561523438,-0.00778484344482422,0.00230503082275391,0.0304046869277954,-0.00259780883789063,0.00143051147460938,0.0174270868301392,0.000502586364746094,0.000823020935058594,0.0133453607559204,0.0028839111328125,0.000825881958007813,0.0161071866750717,0.00625228881835938,0.00110626220703125,0.0198150649666786,0.00937938690185547,0.00169134140014648,0.0300872921943665,0.0150079727172852,0.00193500518798828,0.0374038517475128,0.0191936492919922,0.00168800354003906,0.0427886843681335,0.0220518112182617,0.00104331970214844,0.0440613031387329,0.0225696563720703,0.000339508056640625,0.0382537841796875,0.0189647674560547,-8.72611999511719e-05,0.0307205021381378,0.0146484375,-0.000461101531982422,0.023152157664299,0.00980377197265625,-0.00125837326049805,0.0197219848632813,0.00579357147216797,-0.00271117687225342,0.0221481025218964,0.00260639190673828,-0.08687424659729,0.509587526321411,0.10395336151123, +-0.146368622779846,0.498939990997314,0.055079460144043,-0.0327569246292114,0.444639205932617,-0.00915050506591797,-0.00209164619445801,0.056284487247467,-0.000683784484863281,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0.000103950500488281,0.000472068786621094,-8.58306884765625e-06,0.0344047546386719,0.210867881774902,-0.0122623443603516,0.0315563678741455,0.444688558578491,0.00304508209228516,-0.0296940803527832,0.507054805755615,0.0551080703735352,-0.0460715293884277,0.337499141693115,-0.0439329147338867,0.0221738815307617,0.31860089302063,-0.0515708923339844,0.0225749015808105,0.194423675537109,-0.0497236251831055,0.000167369842529297,0.0625293254852295,-0.0184745788574219,0,0.0660445690155029,-0.0184612274169922,0,0.0660582780838013,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,-0.00201606750488281,0.0542576313018799,-0.000658988952636719,-0.113526344299316,0.178548812866211,-0.0131702423095703,-0.0675196647644043,0.282259106636047,-0.0125761032104492,-0.0391246676445007,0.185465097427368,-0.0582218170166016,-0.0527400970458984,0.188737392425537,-0.0711154937744141,-0.0569877624511719,0.17251443862915,-0.0540847778320313,-0.0293891429901123,0.231223821640015,-0.0753583908081055,-0.00630688667297363,0.115139007568359,-0.0435619354248047,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06, +0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06, +0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0, +0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.100006103515625,0,0,0.100006103515625,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0500001907348633,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0, +0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.31401824951172e-05,7.93933868408203e-05,-6.67572021484375e-06,-0.0111274719238281,0.0280670523643494,-0.00357913970947266,-0.0220537185668945,0.105113208293915,-0.00862216949462891,-0.026519775390625,0.215512752532959,-0.0343732833862305,-0.0142712593078613,0.302361130714417,-0.0845785140991211,0.000134944915771484,0.376999497413635,-0.137645721435547,-0.00103354454040527,0.418821334838867,-0.146785736083984,0.0029139518737793,0.409454941749573,-0.114259719848633,0.010528564453125,0.3746018409729,-0.0822439193725586,0.0158753395080566,0.297749400138855,-0.0548686981201172,0.0179834365844727,0.207919239997864,-0.0261011123657227,0.0119132995605469,0.0897766351699829,-0.00549793243408203,0.00624799728393555,0.0419510006904602,-0.00141334533691406,0.00368404388427734,0.040069580078125,0.0109777450561523,0.00557565689086914,0.00945892930030823,0.00550460815429688,0.00386810302734375,0.0768585503101349,0.0200071334838867,0.00251674652099609,0.114495843648911,0.0282278060913086,0.00223827362060547,0.144746407866478,0.0352497100830078,-0.000264644622802734,0.136624127626419,0.0338764190673828,-0.00255155563354492,0.106455981731415,0.0277719497680664,-0.00343847274780273,0.0851318836212158,0.0224676132202148,-0.00516510009765625,0.0559524297714233,0.0162391662597656,-0.00321483612060547,0.0235977172851563,0.00705528259277344,-0.00249433517456055,0.00820314884185791,0.00362396240234375,0,-1.49011611938477e-06, +0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,-3.09944152832031e-06,0.0590249300003052,0,0,0.170155763626099,0,0,0.251310229301453,0,0,0.281938791275024,0,0,0.281935691833496,0,0,0.28193724155426,0,0,0.234009504318237,0,0,0.211369156837463,0,0,0.139455080032349,0,0,0.0718922019004822,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,1.06841325759888e-05,4.76837158203125e-06,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4299 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, +0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, +-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, +-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, +0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051, +-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962, +-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851, +-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479, +0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359, +0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703, +-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204, +0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909, +0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764, +-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297, +0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772, +-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344, +0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593, +0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161, +-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238, +1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738, +1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295, +0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769, +-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291, +0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, +-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365, +-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, +-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724, +0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026, +-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142, +-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215, +-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931, +-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806, +-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385, +-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058, +0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606, +0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576, +0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105, +1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044, +-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.22639819979668,0.864633291959763,-0.881134361028671,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030771568, "Geometry::Eye_Left_Down", "Shape" { + Version: 100 + Indexes: *1429 { + a: 326,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,484,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,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6432,6433,6434,6435,6436,6437,6438,6439,6440,6442,6446,6447,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6479,6480,6481,6482,6483,6484,6485, +6486,6488,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7544,7545, +7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182, +8184,8185,8186,8187,8188,8189,8190,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8712,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8748,8749,8750,8751,8752,8753,8754,8756,8757,8758,8760,8762,8763,8764,8766,8767,8768,8769,8770,8771,8772,8773,8775,8776,8777,8778,8779,8781,8782,8783,8785,8786,8787,8788,8789,8791,8793,8794,8796,8797,8799 + } + Vertices: *4287 { + a: -0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000557422637939453,-0.0152435302734375,-0.00279998779296875,7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882,0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.480979561805725,0.13865852355957,-0.00423359870910645,-0.351379334926605,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0141469240188599,-0.0298134088516235,0.0185604095458984,0.00112724304199219,-0.0158247947692871,-0.00244331359863281,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.00174903869628906,-0.48097962141037,0.13865852355957,0.0076596736907959,-0.516691148281097,0.135008811950684,0.011866569519043,-0.491652429103851,0.0999355316162109,0.00965499877929688,-0.43150407075882,0.0530052185058594,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00244855880737305,-0.213907301425934,-0.00314903259277344,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000416278839111328,-0.11182028055191,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882, +0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.48097962141037,0.13865852355957,-0.00423359870910645,-0.35137939453125,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.00112748146057129,-0.0158248245716095,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534191131592,-0.0131378173828125,-0.00699329376220703,-0.0618515014648438,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00181961059570313,-0.110366828739643,-0.038330078125,0.0057673454284668,-0.106037903577089,-0.0383234024047852,0.0084538459777832,-0.0857223197817802,-0.0327425003051758,0.00986433029174805,-0.0639732033014297,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550664901733,-0.00519371032714844,0.00112724304199219,-0.0158248543739319,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534340143204,-0.0131378173828125,-0.00699329376220703,-0.0618514865636826,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00181961059570313,-0.110366821289063,-0.038330078125,0.0057673454284668,-0.106037884950638,-0.0383234024047852,0.0084538459777832,-0.0857223570346832,-0.0327425003051758,0.00986433029174805,-0.0639732182025909,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550664901733,-0.00519466400146484,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.00285625457763672,-0.0136550664901733,-0.00519466400146484,0.00494718551635742, +-0.0237579345703125,-0.00962543487548828,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00986433029174805,-0.0639731958508492,-0.0230445861816406,0.0084538459777832,-0.0857223272323608,-0.0327425003051758,0.0057673454284668,-0.106037884950638,-0.0383234024047852,-0.00181961059570313,-0.11036679148674,-0.038330078125,-0.00543522834777832,-0.0888824537396431,-0.0306100845336914,-0.00699329376220703,-0.0618515238165855,-0.0219583511352539,-0.0060875415802002,-0.0360534191131592,-0.0131378173828125,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,-0.00511384010314941,0.0152137279510498,0.0203084945678711,0.000557422637939453,-0.0152435302734375,-0.00279998779296875,7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882,0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.480979561805725,0.13865852355957,-0.00423359870910645,-0.351379334926605,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0141469240188599,-0.0298134088516235,0.0185604095458984,0.00112724304199219,-0.0158247947692871,-0.00244331359863281,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.00174903869628906,-0.480979681015015,0.13865852355957,0.0076596736907959,-0.516691148281097,0.135008811950684,0.011866569519043,-0.491652429103851,0.0999355316162109,0.00965499877929688,-0.43150407075882,0.0530052185058594,0.00641536712646484, +-0.353680908679962,0.0443191528320313,0.00244855880737305,-0.213907301425934,-0.00314903259277344,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000416278839111328,-0.11182028055191,-0.00732135772705078,0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.00641536712646484,-0.353680908679962,0.0443191528320313,0.00965499877929688,-0.43150407075882,0.053004264831543,0.011866569519043,-0.491652429103851,0.0999355316162109,0.0076596736907959,-0.516691148281097,0.135008811950684,-0.00174903869628906,-0.48097962141037,0.13865852355957,-0.00423359870910645,-0.35137939453125,0.0896282196044922,0.0106139183044434,-0.213683784008026,0.0355854034423828,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.00112748146057129,-0.0158248245716095,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534191131592,-0.0131378173828125,-0.00699329376220703,-0.0618515014648438,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00181961059570313,-0.110366828739643,-0.038330078125,0.0057673454284668,-0.106037903577089,-0.0383234024047852,0.0084538459777832,-0.0857223197817802,-0.0327425003051758,0.00986433029174805,-0.0639732033014297,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550664901733,-0.00519371032714844,0.00112724304199219,-0.0158248543739319,-0.00244331359863281,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.0060875415802002,-0.0360534340143204,-0.0131378173828125,-0.00699329376220703,-0.0618515312671661,-0.0219583511352539,-0.00543522834777832,-0.0888824462890625, +-0.0306100845336914,-0.00181961059570313,-0.110366821289063,-0.038330078125,0.0057673454284668,-0.10603791475296,-0.0383234024047852,0.0084538459777832,-0.0857223272323608,-0.0327425003051758,0.00986433029174805,-0.0639732182025909,-0.0230445861816406,0.00751304626464844,-0.0452880561351776,-0.0185632705688477,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00285625457763672,-0.0136550739407539,-0.00519466400146484,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.000557422637939453,-0.0152434706687927,-0.00279998779296875,0.00285625457763672,-0.0136550664901733,-0.00519466400146484,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00751304626464844,-0.0452880598604679,-0.0185632705688477,0.00986433029174805,-0.0639731884002686,-0.0230445861816406,0.0084538459777832,-0.0857223123311996,-0.0327425003051758,0.0057673454284668,-0.106037892401218,-0.0383234024047852,-0.00181961059570313,-0.110366821289063,-0.038330078125,-0.00543522834777832,-0.088882464915514,-0.0306100845336914,-0.00699329376220703,-0.0618515089154243,-0.0219583511352539,-0.0060875415802002,-0.0360534116625786,-0.0131378173828125,-0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,-0.0499999523162842,0,0,-0.0499939918518066,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06, +0,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06, +0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06, +0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.51991844177246e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05473804473877e-06,0,0,1.52736902236938e-06,0,0,-4.57465648651123e-06,0,0,-3.05101275444031e-06,0,0,6.10947608947754e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06, +0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06, +0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06, +0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06, +0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0.0191645622253418,-0.125084578990936,4.9591064453125e-05,0.0165534019470215,-0.257076680660248,0.046295166015625,0.00422120094299316,-0.426436960697174,0.114619255065918,-0.00702023506164551,-0.544161915779114,0.16934871673584,0.0083315372467041,-0.576777756214142,0.165057182312012,0.00770854949951172,-0.458649933338165,0.056675910949707,0.00443410873413086,-0.376652419567108,0.0436382293701172,0.000653743743896484,-0.277825951576233, +-0.00839424133300781,-0.000598430633544922,-0.119400441646576,-0.00846767425537109,0.0125722885131836,-0.533011376857758,0.11861515045166,-0.00862360000610352,-0.039508044719696,-0.0143470764160156,-0.0107743740081787,-0.0773254185914993,-0.0262718200683594,-0.00820565223693848,-0.00790253281593323,-0.00690746307373047,0.0118691921234131,-0.0319076180458069,0.00249385833740234,-0.00865936279296875,-0.116445906460285,-0.0377359390258789,-0.00370097160339355,-0.147833228111267,-0.0485076904296875,0.00942730903625488,-0.138458237051964,-0.0479660034179688,0.0127339363098145,-0.106282025575638,-0.0392827987670898,0.0123934745788574,-0.0843368470668793,-0.0317935943603516,0.0111179351806641,-0.0555984675884247,-0.0223064422607422,0.00623226165771484,-0.022753894329071,-0.00963211059570313,0.00362730026245117,-0.00764161348342896,-0.00446796417236328,0.000436782836914063,-0.0446792244911194,-0.00568962097167969,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,-6.52670860290527e-06,-0.00385260581970215,-1.71661376953125e-05,-0.000580698251724243,-0.00824034214019775,-2.19345092773438e-05,-0.0117418766021729,-0.16671621799469,-0.000441551208496094,-0.000373780727386475,-0.138628959655762,-0.000613212585449219,0.0117788314819336,-0.206770181655884,-0.00222301483154297,0.0296263694763184,-0.188898086547852,-0.00255203247070313,0.042130708694458,-0.250246286392212,-0.00860118865966797,0.0418314933776855,-0.176600694656372, +-0.0030670166015625,0.0432720184326172,-0.151551485061646,-0.00738811492919922,0.0383427143096924,-0.222984313964844,-0.00935173034667969,0.00338983535766602,-0.167868852615356,-0.00711345672607422,0.0198945999145508,-0.0924186706542969,-0.00468349456787109,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,-0.000568151473999023,-0.00806033611297607,-2.09808349609375e-05,0.0628702640533447,-0.210161447525024,-0.00443077087402344,0.0167453289031982,-0.231987714767456,-0.00416755676269531,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06, +0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.0131409168243408,-0.107708752155304,-0.00230979919433594,0.0106139183044434,-0.213683724403381,0.0355854034423828, +-0.00423359870910645,-0.351379334926605,0.0896282196044922,-0.00174903869628906,-0.480979561805725,0.13865852355957,0.0076596736907959,-0.516691088676453,0.135008811950684,0.011866569519043,-0.491652309894562,0.0999355316162109,0.00965499877929688,-0.43150407075882,0.053004264831543,0.00641536712646484,-0.353680968284607,0.0443191528320313,0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.000416755676269531,-0.111820220947266,-0.00732135772705078,7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000557422637939453,-0.0152435302734375,-0.00279998779296875,0.00285625457763672,-0.0136550664901733,-0.00519561767578125,0.00494718551635742,-0.0237579345703125,-0.00962543487548828,0.00751304626464844,-0.0452880859375,-0.0185632705688477,0.00871515274047852,-0.0675506591796875,-0.0262365341186523,0.0084538459777832,-0.0857223346829414,-0.0327425003051758,0.0057673454284668,-0.106037899851799,-0.0383234024047852,-0.00181961059570313,-0.110321038402617,-0.038330078125,-0.00543522834777832,-0.0888824462890625,-0.0306100845336914,-0.00699329376220703,-0.0618514865636826,-0.0219583511352539,-0.0060875415802002,-0.0360534489154816,-0.0131378173828125,-0.00487399101257324,-0.0161117613315582,-0.00691032409667969,0.00112724304199219,-0.0158249139785767,-0.00244331359863281,0.0090329647064209,-0.0450271368026733,-0.00174808502197266,0.00187087059020996,-0.0277328491210938,-0.00473880767822266,-0.00128746032714844,-0.0211288332939148,-0.00659275054931641,-0.00291347503662109,-0.0305130034685135,-0.0114994049072266,-0.00334739685058594,-0.0448425188660622,-0.0173091888427734,-0.00237441062927246,-0.0581802278757095,-0.0223617553710938,-0.00032496452331543,-0.0683944374322891,-0.0268135070800781,0.00235128402709961,-0.0673828125,-0.0272741317749023,0.00393962860107422,-0.0579864457249641,-0.0243015289306641,0.00445699691772461,-0.0459991171956062,-0.0195913314819336,0.00391054153442383,-0.0322280824184418,-0.0139694213867188,0.00293302536010742,-0.0212524235248566,-0.00861263275146484,0.00165700912475586,-0.016369640827179, +-0.00518131256103516,0.000564098358154297,-0.0235702395439148,-0.00437831878662109,-8.82148742675781e-05,-0.042285144329071,-0.00474929809570313,6.43730163574219e-05,-0.0741744637489319,-0.00485515594482422,0.00319194793701172,-0.188803791999817,0.0233917236328125,0.0071415901184082,-0.279118776321411,0.0496578216552734,0.0098423957824707,-0.36152195930481,0.0690212249755859,0.00989532470703125,-0.428463101387024,0.0898170471191406,0.00661206245422363,-0.46946108341217,0.0869722366333008,0.00178408622741699,-0.435204982757568,0.0762434005737305,0.00174069404602051,-0.322332978248596,0.0442295074462891,0.00500082969665527,-0.177214503288269,0.00792407989501953,0.00705790519714355,-0.0926971435546875,-0.00158786773681641,0.00539016723632813,-0.0483230352401733,-0.00421810150146484,0.00295746326446533,-0.0353729128837585,-0.00200176239013672,0.00321483612060547,-0.0660598278045654,0.00277805328369141,0.00125360488891602,-0.0946289300918579,0.0371036529541016,-0.000171661376953125,-0.126208424568176,0.0536413192749023,0.00149178504943848,-0.19132673740387,0.0718708038330078,0.00674843788146973,-0.205310940742493,0.116900444030762,0.0113058090209961,-0.193929314613342,0.112403869628906,0.0128793716430664,-0.177929043769836,0.100587844848633,0.010322093963623,-0.109509229660034,0.0487117767333984,0.00585556030273438,-0.07806396484375,0.0336751937866211,0.00178766250610352,-0.048469603061676,0.000369071960449219,0.0002899169921875,-0.0306609869003296,-0.00276660919189453,-2.57492065429688e-05,-0.0174392461776733,-0.00375843048095703,0.000283718109130859,-0.0131438970565796,-0.00510883331298828,0.000630378723144531,-0.0156768709421158,-0.00828647613525391,0.000720024108886719,-0.0192474201321602,-0.0112266540527344,0.000934123992919922,-0.0292693972587585,-0.0170164108276367,0.000777244567871094,-0.0364944636821747,-0.0208749771118164,0.000343799591064453,-0.0418670773506165,-0.0231542587280273,-0.00043487548828125,-0.0431579351425171,-0.0231838226318359,-0.0010840892791748,-0.0374755859375,-0.0195121765136719,-0.00136923789978027, +-0.0300247371196747,-0.0153970718383789,-0.00108027458190918,-0.022624209523201,-0.0107765197753906,-0.000132322311401367,-0.0194320641458035,-0.00695133209228516,0.00140392780303955,-0.0222244262695313,-0.00390911102294922,0.0333895683288574,-0.191328883171082,-0.0201625823974609,0.00441551208496094,-0.169866681098938,-0.0175151824951172,-0.000931024551391602,-0.0132135152816772,-3.52859497070313e-05,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,-0.00822925567626953,-0.108883857727051,-0.0105037689208984,0.0246572494506836,-0.162688732147217,-0.0220460891723633,0.05692458152771,-0.196503162384033,-0.0225763320922852,0.00115275382995605,-0.00273442268371582,-0.000508308410644531,-0.000392913818359375,-0.00357317924499512,-0.000339508056640625,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0.000145435333251953,-0.000645995140075684,-9.63211059570313e-05,0,-0.100005865097046,0,0,-0.100004434585571,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999951362609863,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06, +0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06, +0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999937057495117, +0,0,-0.0999937057495117,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06, +0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,3.29017639160156e-05,-8.84532928466797e-05,5.7220458984375e-06,0.0111849308013916,-0.0306182503700256,0.00272750854492188,0.0184440612792969,-0.121572017669678,0.000260353088378906,0.0163445472717285,-0.237301707267761,0.0329160690307617,0.0048067569732666,-0.405415177345276,0.0750932693481445,-0.00640010833740234,-0.51403397321701,0.108180999755859,0.00716185569763184,-0.535477042198181,0.103034973144531,0.010465145111084,-0.476750791072845,0.0643882751464844,0.00588798522949219,-0.412103235721588,0.0458545684814453,0.00331544876098633,-0.360806167125702,0.0175142288208008,4.10079956054688e-05,-0.266052424907684,-0.00919628143310547,-0.000714302062988281,-0.0928317308425903,-0.00841236114501953,0.000329017639160156,-0.0433914065361023,-0.00564098358154297,-0.00834178924560547,-0.0380859375,-0.0137662887573242,-0.0079197883605957,-0.00763091444969177,-0.00670337677001953,-0.0105183124542236,-0.0743560492992401,-0.0248041152954102,-0.00850081443786621,-0.11189877986908,-0.0351934432983398,-0.00352954864501953,-0.141950964927673,-0.0450172424316406,0.0094139575958252,-0.133486956357956,-0.044764518737793,0.012753963470459,-0.103092938661575,-0.0370893478393555,0.0123543739318848,-0.0819518864154816,-0.0302667617797852,0.0108718872070313,-0.0536600947380066,-0.0212211608886719,0.00600862503051758,-0.0221481323242188,-0.00945186614990234,0.00346231460571289,-0.00745236873626709,-0.00443553924560547,0,-1.49011611938477e-06,0,0,-3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06, +0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-3.05473804473877e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,6.10947608947754e-06,0,0,-4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,3.33786010742188e-06,-3.03983688354492e-06,1.9073486328125e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,0,-4.57465648651123e-06,-4.76837158203125e-06,0,-6.09457492828369e-06,0,0,-4.55975532531738e-06,0,0,1.51991844177246e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4287 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, +0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, +-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, +-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, +0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051, +-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962, +-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851, +-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479, +0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359, +0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703, +-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204, +0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.3124640583992,-0.6936977468431,-1.49131292104721,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909, +0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764, +-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297, +0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772, +-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344, +0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593, +0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161, +-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238, +1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738, +1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295, +0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769, +-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291, +0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357, +-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365, +-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319, +-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724, +0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026, +-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575, +-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725, +-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247, +-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874, +-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839, +-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571, +0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124, +0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689, +-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.74395287036896,-0.529954386875033,-0.258157923817635,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854, +-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373, +0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,1.01030576229095,-1.07725595682859,-0.413102194666862,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030773296, "Geometry::Eye_Right_Blink", "Shape" { + Version: 100 + Indexes: *1460 { + a: 4,39,40,45,70,72,73,98,99,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,405,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,563,3208,3212,3215,3221,3224,4174,4212,4213,4214,4215,4667,4992,5867,5875,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447, +6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6802,6803,6804,6805,6806,6807,6808,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474, +7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142, +8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8755,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *4380 { + a: -0.00168840959668159,0,0,-0.00984275341033936,0.0014185905456543,-0.0127344131469727,-0.00297075510025024,0.000523567199707031,-0.00387859344482422,0.00100362300872803,-0.000124454498291016,0.00149679183959961,-0.00118720903992653,0,0,-0.00675380229949951,0.00101900100708008,-0.00865650177001953,-0.0012824535369873,0.000151157379150391,-0.00148963928222656,-8.75294208526611e-05,0.0262999534606934,0,-8.82148742675781e-05,0.0144534111022949,0,-0.00675362348556519,0.00101900100708008,-0.00875234603881836,-0.00128239393234253,0.0132813453674316,-0.00149679183959961,-0.00457102060317993,0.00100231170654297,-0.00577354431152344,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00358819961547852,-0.0769793391227722,-0.0126619338989258,-0.0244507789611816,-0.175540030002594,-0.0646982192993164,0.0218987464904785,-0.537538945674896,-0.0882892608642578,0.0230975151062012,-0.769942820072174,-0.0740146636962891,-0.0361833572387695,-0.858754396438599,0.0111770629882813,-0.0472183227539063,-0.982832670211792,0.0331611633300781,-0.0491397380828857,-1.08145761489868,0.056330680847168,-0.0441849231719971,-1.0831526517868,0.0576028823852539,-0.512169599533081,-0.965107917785645,-0.0337409973144531,0.155428886413574,-0.578757584095001,-0.201613426208496,-0.0547187328338623,-0.298291444778442,0.00206947326660156,-0.0389173030853271,-0.0977756083011627,0.0240745544433594,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.032780647277832,-0.160450369119644,-0.000295639038085938,-0.0546555519104004,-0.356360077857971,-0.00198650360107422,-0.0703508853912354,-0.626972615718842,0.0155954360961914,-0.0671441555023193,-0.894608676433563,0.0327558517456055,-0.0496175289154053,-1.08584415912628,0.0218677520751953,-0.0288047790527344,-1.08314323425293,-0.0128793716430664,-0.0271816253662109,-0.954351663589478,-0.0837669372558594,0.00526714324951172,-0.790514469146729,-0.0908432006835938,0.00865554809570313,-0.620952308177948,-0.125743865966797, +0.0264496803283691,-0.368094205856323,-0.135475158691406,0.0226020812988281,-0.208823055028915,-0.115944862365723,0.0389270782470703,-0.137027770280838,-0.0579833984375,0.000884056091308594,-0.0108398497104645,-0.000719070434570313,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00490427017211914,-0.0891427993774414,-0.0122623443603516,-0.0220603942871094,-0.198800206184387,-0.0688571929931641,-0.0528545379638672,-0.476084202528,-0.0494527816772461,-0.0453777313232422,-0.6925950050354,-0.00772857666015625,-0.0364518165588379,-0.850202083587646,0.0101642608642578,-0.0481338500976563,-0.983209252357483,0.037602424621582,-0.0499575138092041,-1.08139753341675,0.0589437484741211,-0.0442349910736084,-1.08369696140289,0.0584983825683594,-0.0671918392181396,-0.894178867340088,0.0338821411132813,-0.0705699920654297,-0.624351382255554,0.0164661407470703,-0.0547049045562744,-0.354735434055328,0.000637054443359375,-0.032780647277832,-0.160450369119644,-0.000295639038085938,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.0609581470489502,0.0352079570293427,0.187995910644531,-0.0470197200775146,0.237833827733994,-0.0594625473022461,-0.0136327743530273,0.298582762479782,-0.051243782043457,0.0191915035247803,0.277715243399143,-0.0421037673950195,0.0207672119140625,0.196598827838898,0.0683212280273438,-0.0213425159454346,0.219815544784069,0.0630502700805664,-0.010951042175293,0.217465281486511,0.0562944412231445,0.000445365905761719,0.190029501914978,0.0493602752685547,0.00952959060668945,0.156094193458557,0.0419826507568359,0.00745296478271484,0.077526867389679,0.0218887329101563,0.00565242767333984,0.0358172655105591,0.011347770690918,-0.0367529392242432,0.000832945108413696,0.00252914428710938,-0.0494046211242676,0.070903405547142,0.0177621841430664,0.0257585048675537,0.163810864090919,0.0231914520263672,0.0178329944610596,0.184557631611824,0.0453577041625977,0.0256650447845459,0.234229236841202,0.0448799133300781,0.0207691192626953,0.254496991634369,0.0606479644775391,-0.022613525390625,0.265651524066925, +0.0310649871826172,-0.0122213363647461,0.310270369052887,-0.0122919082641602,-0.000825881958007813,0.298430919647217,-0.01922607421875,0.0105600357055664,0.269753575325012,-0.0241279602050781,0.0487661361694336,0.238443367183208,-0.0187444686889648,0.0182666778564453,0.153886556625366,0.0003814697265625,0.00854206085205078,0.0186165273189545,0.0586395263671875,0.00773286819458008,-0.00297999382019043,0.0135889053344727,0.0222549438476563,0.0918516516685486,-0.0103788375854492,0.0164384841918945,0.142634898424149,-0.0246381759643555,0.0362467765808105,0.215277284383774,-0.0750608444213867,-0.000824928283691406,0.259828560054302,-0.01922607421875,-0.0122218132019043,0.287264347076416,-0.0122919082641602,-0.0226130485534668,0.265651524066925,0.0310649871826172,0.0207691192626953,0.227679073810577,0.0526962280273438,0.0256650447845459,0.207411587238312,0.0369291305541992,0.0175678730010986,0.183445997536182,0.0379095077514648,0.0273518562316895,0.145345225930214,-0.00228404998779297,-0.021221399307251,0.0580994486808777,-0.011016845703125,-0.00871849060058594,-0.0167021751403809,-0.0262508392333984,0.00613653659820557,0.0182564854621887,0.0243701934814453,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,-0.00358819961547852,-0.0769793391227722,-0.0126619338989258,-0.024446964263916,-0.169486105442047,-0.0646982192993164,0.439456462860107,-0.678084373474121,0.252486228942871,-0.0454459190368652,-0.717539012432098,-0.00773525238037109,-0.0361833572387695,-0.858754515647888,0.0111770629882813,-0.0472183227539063,-0.982832670211792,0.0331611633300781,-0.0491397380828857,-1.08145785331726,0.056330680847168,-0.0614516735076904,-1.10238456726074,-0.0513820648193359,-0.945381879806519,-0.941291332244873,-0.0497703552246094,-1.66557860374451,-0.68113112449646,-0.0754938125610352,-0.0546555519104004,-0.298909664154053,-0.00198650360107422,-0.0389173030853271,-0.0977756083011627,0.0240745544433594,-0.00869870185852051,-0.0160052180290222,0.00252914428710938,-0.00869870185852051,-0.0160052180290222,0.00252914428710938, +-0.0329468250274658,-0.154467031359673,-0.000295639038085938,-0.0546555519104004,-0.356360077857971,-0.00198650360107422,-0.0709989070892334,-0.62511020898819,0.00778675079345703,-0.0672264099121094,-0.894297003746033,0.024907112121582,-0.0495243072509766,-1.08626401424408,0.0203657150268555,-0.0288047790527344,-1.08314323425293,-0.0128793716430664,-0.0271816253662109,-0.954351663589478,-0.0837669372558594,0.00526714324951172,-0.790514469146729,-0.0908432006835938,0.00865554809570313,-0.620952308177948,-0.125743865966797,0.0264496803283691,-0.368094205856323,-0.135475158691406,0.0226020812988281,-0.208823069930077,-0.115944862365723,0.0389270782470703,-0.137027770280838,-0.0579833984375,0.000884056091308594,-0.0108398497104645,-0.000719070434570313,0.000884056091308594,-0.0108398497104645,-0.000719070434570313,-0.00490427017211914,-0.0891428291797638,-0.0122623443603516,-0.0220603942871094,-0.198800176382065,-0.0688571929931641,-0.0527534484863281,-0.455540657043457,-0.0494451522827148,-0.0449533462524414,-0.672406315803528,-0.006927490234375,-0.0361003875732422,-0.843256831169128,0.00669956207275391,-0.0476107597351074,-0.981390833854675,0.0323114395141602,-0.0495254993438721,-1.08106279373169,0.0544929504394531,-0.0442583560943604,-1.08296310901642,0.058110237121582,-0.0669772624969482,-0.893133699893951,0.0344524383544922,-0.0707616806030273,-0.623941123485565,0.0128679275512695,-0.0547895431518555,-0.354333341121674,-0.00199985504150391,-0.032780647277832,-0.160450369119644,-0.000295639038085938,-0.00871551036834717,-0.00712162256240845,0.00253868103027344,-0.0215325355529785,0.0554695725440979,0.0196628570556641,0.158217191696167,0.246479451656342,-0.100991249084473,0.0175478458404541,0.19693124294281,0.0379104614257813,0.0256638526916504,0.176783956587315,0.0525550842285156,0.0207672119140625,0.196598827838898,0.0683212280273438,-0.0213425159454346,0.219815544784069,0.0630502700805664,-0.010951042175293,0.217465281486511,0.0562944412231445,0.000445365905761719,0.190029501914978,0.0493602752685547,0.00952959060668945, +0.156094193458557,0.0419826507568359,0.00745296478271484,0.077526867389679,0.0218887329101563,0.00565242767333984,0.0358172655105591,0.011347770690918,-0.0367529392242432,0.000832945108413696,0.00252914428710938,-0.0493606328964233,0.0583002269268036,0.0177621841430664,0.0257694721221924,0.151492804288864,0.0231914520263672,0.0178115367889404,0.182273373007774,0.0453577041625977,0.0256650447845459,0.234229236841202,0.0448799133300781,0.0207691192626953,0.254497021436691,0.0606479644775391,-0.022613525390625,0.265651524066925,0.0310649871826172,-0.0122213363647461,0.310270369052887,-0.0122919082641602,-0.000825881958007813,0.298430919647217,-0.01922607421875,0.0105600357055664,0.269753575325012,-0.0241279602050781,0.0487661361694336,0.23844338953495,-0.0187444686889648,0.0182666778564453,0.153886586427689,0.0003814697265625,0.00854206085205078,0.0186165273189545,0.0586395263671875,0.00773286819458008,-0.00297996401786804,0.0135889053344727,0.0222549438476563,0.0918516516685486,-0.0103788375854492,0.0164384841918945,0.142634898424149,-0.0246381759643555,0.0362467765808105,0.215277284383774,-0.0750608444213867,-0.000824928283691406,0.259828567504883,-0.01922607421875,-0.0122218132019043,0.287264384329319,-0.0122919082641602,-0.022613525390625,0.265651524066925,0.0310649871826172,0.0207691192626953,0.227679044008255,0.0526962280273438,0.0256650447845459,0.207411587238312,0.0369291305541992,0.017500638961792,0.175722390413284,0.0378952026367188,0.0273284912109375,0.136438108980656,-0.00228404998779297,-0.0213671922683716,0.043411910533905,-0.0110311508178711,-0.00869870185852051,-0.018947958946228,-0.0262508392333984,0.00613653659820557,0.0182564854621887,0.0243701934814453,-0.00143316946923733,0,0,-0.00868558883666992,0.000990390777587891,-0.0114612579345703,0.00107622146606445,-8.67843627929688e-05,0.00134754180908203,-0.00590550899505615,0.000710964202880859,-0.00787734985351563,0.00645136833190918,-0.000720977783203125,0.008056640625,0.00161337852478027,-0.000173091888427734,0.00197124481201172,0.00501120090484619, +-0.000625133514404297,0.00645065307617188,-0.00492310523986816,0.000634193420410156,-0.00653553009033203,0.00608682632446289,-0.000720977783203125,0.00779151916503906,0.00412213802337646,-0.000547885894775391,0.00519657135009766,-0.000895023345947266,0.000182628631591797,-0.00125312805175781,0.0010761022567749,-9.63211059570313e-05,0.00134754180908203,0.00608646869659424,-0.000615596771240234,0.00788497924804688,-0.00394177436828613,0.000451564788818359,-0.00519752502441406,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,7.3164701461792e-06,0,0,-7.33137130737305e-06,0,0,1.84774398803711e-06,0,0,3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0,0,-0.0399999618530273,0,0,-0.0399923324584961,0,0,5.48362731933594e-06,0,0,5.51342964172363e-06,0,0,7.39097595214844e-06,0,0,7.62939453125e-06,0,0,0.00106477737426758,0,-0.0721924304962158,-0.335842788219452,0.006378173828125,-0.103594779968262,-0.653714299201965,0.00961971282958984,-0.0944406986236572,-0.944674849510193,0.018406867980957,-0.0469682216644287,-1.09627151489258,0.0330877304077148,-0.0539760589599609,-1.07876014709473,0.0287675857543945,-0.0313563346862793,-0.834603786468506,-0.0230865478515625,-0.0450286865234375,-0.683069407939911,-0.0421733856201172,-0.0507678985595703,-0.457954943180084,-0.0657081604003906,-0.0264682769775391,-0.182955265045166,-0.0685710906982422,-0.0484662055969238,-0.973202466964722,0.00466060638427734,0.00789809226989746,0.1434106528759,-0.02447509765625,0.3584885597229,0.139305770397186,-0.0935688018798828,0.0317821502685547,0.00755873322486877,0.0887107849121094,-0.0370893478393555,-0.109590411186218,0.00440788269042969,0.0390474796295166,0.164991766214371,-0.0239686965942383,0.0381176471710205,0.19444939494133,-0.0046234130859375, +-0.04280686378479,0.224969819188118,-0.015141487121582,-0.0143651962280273,0.212872624397278,-0.0196247100830078,0.0044865608215332,0.1906917989254,-0.0235729217529297,0.0213871002197266,0.169364720582962,-0.0265483856201172,0.0111227035522461,0.0880334377288818,0.0241603851318359,0.00842905044555664,0.0469152927398682,0.0145893096923828,-0.00635719299316406,-0.0766314268112183,-0.0149068832397461,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,1.66893005371094e-06,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-0.0999999046325684,0,0,-0.099994421005249,0,0,-0.160001873970032,0,0,-0.160005569458008,0,0,-0.160005450248718,0,0,-0.159996271133423,0,0,-0.139996290206909,0,0,-0.140005588531494,0,0,-0.139996290206909,0,0,-0.139994621276855,0,0,-0.120000123977661,0,0,-0.119999885559082,0,0,-0.120000123977661,0,0,-0.120000123977661,0,0,-0.100007057189941,0,0,-0.0999999046325684,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06, +0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-0.160000085830688,0,0,-0.160007238388062,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06, +0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,-0.0547187328338623,-0.298291444778442,0.00206947326660156,-0.070777416229248,-0.624725341796875,0.0162553787231445,-0.0672852993011475,-0.893011629581451,0.0343790054321289,-0.0441849231719971,-1.0831526517868,0.0576028823852539,-0.0491397380828857,-1.0814573764801,0.0563011169433594,-0.0472183227539063,-0.982832551002502,0.0331611633300781,-0.0361833572387695,-0.858754396438599,0.0111780166625977,-0.0454459190368652,-0.717539012432098,-0.00773429870605469,-0.0529227256774902,-0.497410953044891,-0.0494594573974609,-0.024446964263916,-0.169486105442047,-0.0646982192993164,-0.00358819961547852,-0.0769793391227722,-0.0126619338989258,0.000884056091308594,-0.0108398199081421,-0.000719070434570313,0.00565242767333984,0.0358172655105591,0.0113458633422852,0.00745296478271484,0.077526867389679,0.0218887329101563,0.00952959060668945,0.156094133853912,0.0419826507568359,0.000445365905761719,0.190029501914978,0.0493602752685547,-0.010951042175293,0.21746526658535,0.0562944412231445,-0.0213425159454346,0.219815518707037,0.0630502700805664,0.0207672119140625, +0.196655332110822,0.0683212280273438,0.0256638526916504,0.176783964037895,0.0525550842285156,0.0175478458404541,0.19693124294281,0.0379104614257813,0.00638437271118164,0.146174550056458,0.0231914520263672,-0.0215325355529785,0.0554695725440979,0.0196628570556641,-0.00869870185852051,-0.0160052478313446,0.00252914428710938,-0.032780647277832,-0.116032093763351,-0.000295639038085938,-0.0130568742752075,-0.027932733297348,0.00307083129882813,-0.00412702560424805,0.0312104523181915,0.00987148284912109,0.00396728515625,0.0481315180659294,0.0199928283691406,0.0104598999023438,0.0480238348245621,0.0327205657958984,0.0119936466217041,0.027458131313324,0.0446872711181641,0.00636911392211914,0.0759761035442352,0.0555171966552734,-0.00494480133056641,0.0625671967864037,0.0552425384521484,-0.00642633438110352,0.0570730082690716,0.0484247207641602,-0.00280380249023438,0.0337746813893318,0.040095329284668,0.00116777420043945,0.0304486900568008,0.0298900604248047,0.00310802459716797,0.0562353730201721,0.0172252655029297,0.00281715393066406,0.0205114483833313,0.00700759887695313,0.00122737884521484,-0.0181951522827148,-0.00153732299804688,-0.00131416320800781,-0.0689611434936523,-0.00949764251708984,-0.00488376617431641,-0.141428768634796,-0.014796257019043,0.0117535591125488,-0.473827540874481,0.00862979888916016,-0.00376605987548828,-0.699254214763641,0.0266180038452148,0.0286769866943359,-0.843723595142365,0.0469398498535156,-0.0396857261657715,-0.954486310482025,0.0590333938598633,-0.0582437515258789,-1.04688048362732,0.040125846862793,-0.0653927326202393,-1.03260266780853,0.0304594039916992,-0.0782749652862549,-0.823628723621368,0.00821018218994141,-0.0963118076324463,-0.553277015686035,-0.0326976776123047,-0.0354306697845459,-0.239714562892914,0.00300502777099609,-0.0239667892456055,-0.102134346961975,-0.00159263610839844,-0.0149809122085571,-0.0710668563842773,0.00239372253417969,-0.0204463005065918,-0.145775675773621,0.0129108428955078,-0.0200197696685791,-0.341560423374176,0.0365676879882813,-0.0200350284576416,-0.544153213500977, +0.0678939819335938,-0.0231072902679443,-0.691145062446594,0.0935144424438477,-0.031369686126709,-0.751999139785767,0.215743064880371,-0.0362792015075684,-0.727290153503418,0.203923225402832,-0.0359401702880859,-0.66069757938385,0.0717124938964844,-0.0278973579406738,-0.521489500999451,0.0399322509765625,-0.0162534713745117,-0.312926828861237,0.0127878189086914,-0.0058598518371582,-0.0915582776069641,-0.00398349761962891,-0.00110626220703125,-0.0495007038116455,-0.00581836700439453,0.000835418701171875,-0.0145183801651001,-0.00137710571289063,0.000934600830078125,0.0112353563308716,0.00554847717285156,-0.000607013702392578,0.0359363406896591,0.0154228210449219,-0.00318527221679688,0.0525256283581257,0.0241231918334961,-0.00628662109375,0.0788415670394897,0.0370941162109375,-0.00737667083740234,0.0936639010906219,0.0456809997558594,-0.00456380844116211,0.102689206600189,0.0508909225463867,0.00258588790893555,0.103868395090103,0.0520229339599609,0.00746250152587891,0.0912048518657684,0.0427255630493164,0.00766563415527344,0.0846101641654968,0.0319356918334961,0.00343561172485352,0.0599460303783417,0.0195245742797852,-0.0032961368560791,0.0195688083767891,0.00885105133056641,-0.00913393497467041,-0.0224213004112244,0.00222206115722656,0,-3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-0.0999909639358521,0,0,-0.0999999046325684,0,0,-0.100007057189941,0,1.19209289550781e-05,-0.101494193077087,0.00034332275390625,0,-0.105572700500488,6.19888305664063e-05,0,-0.00478947162628174,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06, +0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,-0.099994421005249,0,0,-0.0999981164932251,0,0,-0.100009202957153,0,0,-0.100007057189941,0,0,-0.100005388259888,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999941825866699,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06, +0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06,0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0, +3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999922752380371,0,0,-0.0999922752380371,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06,0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06, +0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-3.63588333129883e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,-0.000591278076171875,0,5.60283660888672e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,9.29832458496094e-06,-0.000949859619140625,0,-3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,-1.78813934326172e-06,0,0,-7.3164701461792e-06,0,0,-7.3164701461792e-06,0,0,-5.51342964172363e-06,0,0,-1.81794166564941e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,1.66893005371094e-06,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-5.7220458984375e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-7.62939453125e-06,0,0,-9.05990600585938e-06, +0,0,5.60283660888672e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,3.69548797607422e-06,0,0,-1.78813934326172e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,3.57627868652344e-06,0,0,3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,5.48362731933594e-06,0,0,1.78813934326172e-06,0,0,7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,-3.57627868652344e-06,0,0,7.34627246856689e-06,0,0,7.32392072677612e-06,0,0,7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-5.7220458984375e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06, +0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.27176666259766e-06,0,0,-9.17911529541016e-06,0,0,-5.60283660888672e-06,0,0,-5.60283660888672e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-9.05990600585938e-06,0,0,-3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,3.814697265625e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,-3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,-1.84774398803711e-06,0,0,7.62939453125e-06,0,0,7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,3.63588333129883e-06,0,0,-7.27176666259766e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,-0.00017547607421875,0,-3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.60283660888672e-06, +0,0,5.60283660888672e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,1.84774398803711e-06,0,0,1.84774398803711e-06,0,0,-5.49480319023132e-06,0,0,9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,1.81794166564941e-06,0,0,-1.84774398803711e-06,0,0,1.84774398803711e-06,0,0,-9.14931297302246e-06,0,0,5.51342964172363e-06,0,0,5.49107789993286e-06,0,0,3.66941094398499e-06,0,0,1.83284282684326e-06,0,0,-5.45382499694824e-06,0,0,-3.66196036338806e-06,0,0,7.34627246856689e-06,0,0,-1.81794166564941e-06,0,0,3.69548797607422e-06,0,0,3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,-3.63588333129883e-06,0,0,-1.78813934326172e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,-5.48362731933594e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.57627868652344e-06,0,0,3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,5.60283660888672e-06,0,0,3.69548797607422e-06,0,0,-9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,-7.3164701461792e-06,0,0,-7.32392072677612e-06,0,0,-3.63588333129883e-06,0,0,5.48362731933594e-06,0,0,3.63588333129883e-06,0.00061798095703125,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,9.15676355361938e-06,0,0,9.14931297302246e-06,0,0,-3.69548797607422e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,-3.66568565368652e-06,0,0,9.17911529541016e-06,0,0,1.66893005371094e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-1.84774398803711e-06,0,0,7.39097595214844e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-7.15255737304688e-06,0,0,7.39097595214844e-06,0.000269889831542969,0,-9.17911529541016e-06,0,0, +7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-3.63588333129883e-06,0,0,3.63588333129883e-06,0,0,9.14931297302246e-06,0,0,-3.66196036338806e-06,0,0,-1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,1.78813934326172e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.66568565368652e-06,0,0,5.60283660888672e-06,0,0,1.9073486328125e-06,0,0,-9.17911529541016e-06,0,0,-7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.7220458984375e-06,0,0,-3.814697265625e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,-7.32392072677612e-06,0,0,-1.81794166564941e-06,0,0,9.17911529541016e-06,0,0,5.48362731933594e-06,0,0,9.17911529541016e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-7.27176666259766e-06,0,0,3.66196036338806e-06,0,0,3.66382300853729e-06,0,0,7.27176666259766e-06,0,0,-1.84774398803711e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,1.78813934326172e-06,0,0,3.66568565368652e-06,0,0,5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,5.49480319023132e-06,0,0,7.27176666259766e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,3.63588333129883e-06,0,0,3.66219319403172e-06,0,0,-3.57627868652344e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,1.9073486328125e-06,0,0,7.39097595214844e-06,0,0,7.32392072677612e-06,0,0,5.48362731933594e-06,0,0,-3.69548797607422e-06,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,-3.57627868652344e-06,0,0,-9.17911529541016e-06,0,0,7.27176666259766e-06,0,0,7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-9.15490090847015e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-9.05990600585938e-06,0, +0,9.05990600585938e-06,0,0,-5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,-3.57627868652344e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,3.69548797607422e-06,0,0,3.66568565368652e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,7.27176666259766e-06,0,0,3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-5.48362731933594e-06,0,0,-9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,5.49480319023132e-06,0,0,-7.39097595214844e-06,0,0,-3.69548797607422e-06,0,0,-7.39097595214844e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,7.33137130737305e-06,0,0,-3.63588333129883e-06,0,0,1.9073486328125e-06,0,0,5.60283660888672e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.9073486328125e-06,0,0,1.84774398803711e-06,0,0,7.32392072677612e-06,0,0,-5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,-7.39097595214844e-06,0,0,5.48362731933594e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,3.814697265625e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,3.814697265625e-06,0,0,5.48362731933594e-06,0,0,1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-3.6621349863708e-06,0,0,3.63588333129883e-06,0,0,7.33137130737305e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-3.63588333129883e-06,0,0,7.32392072677612e-06,0,0,-3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,3.66568565368652e-06,0,0,3.63588333129883e-06,0,0,-1.9073486328125e-06,0,0,-5.48362731933594e-06,0,0,7.32392072677612e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,-7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,1.9073486328125e-06,0,0,-5.60283660888672e-06,0,0,7.27176666259766e-06,0,0,-7.39097595214844e-06,0,0,-1.9073486328125e-06,0,0,-7.39097595214844e-06,0,0,-7.32392072677612e-06,0,0,3.63588333129883e-06,0,0,5.60283660888672e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,-7.39097595214844e-06, +0,0,-9.14931297302246e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,5.24520874023438e-06,0,0,-7.39097595214844e-06,0,0,5.24520874023438e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,-7.39097595214844e-06,0,0,-3.814697265625e-06,0,0,1.9073486328125e-06,0,0,3.57627868652344e-06,0,0,7.33137130737305e-06,0,0,7.33137130737305e-06,0,0,1.81794166564941e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,-3.57627868652344e-06,0,0,-5.48362731933594e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,3.57627868652344e-06,0,0,5.48362731933594e-06,0,0,7.27176666259766e-06,0,0,3.57627868652344e-06,0,0,7.15255737304688e-06,0,0,1.83284282684326e-06,0,0,-3.66568565368652e-06,0,0,-5.48362731933594e-06,0,0,-7.33137130737305e-06,0,0,3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,3.69548797607422e-06,0,0,-7.27176666259766e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,9.05990600585938e-06,0,0,5.48362731933594e-06,0,0,-7.62939453125e-06,0,0,-3.69548797607422e-06,0,0,-5.48362731933594e-06,0,0,7.62939453125e-06,0,0,9.05990600585938e-06,0,0,3.57627868652344e-06,0,0,-3.63588333129883e-06,0,0,-5.60283660888672e-06,0,0,5.51342964172363e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,3.57627868652344e-06,0,0,-9.14931297302246e-06,0,0,-5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-5.60283660888672e-06,0,0,7.33137130737305e-06,0,0,7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,7.62939453125e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-7.39097595214844e-06,0,0,9.05990600585938e-06,0,0,-7.39097595214844e-06,0,0,-5.7220458984375e-06, +0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-7.62939453125e-06,0,0,9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,-9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,-5.48362731933594e-06,0,0,3.814697265625e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-5.7220458984375e-06,0,0,-9.05990600585938e-06,0,0,7.62939453125e-06,0,0,5.48362731933594e-06,0,0,7.15255737304688e-06,0,0,3.814697265625e-06,0,0,9.05990600585938e-06,0,0,7.15255737304688e-06,0,0,-5.48362731933594e-06,0,0,9.05990600585938e-06,0,0,-7.62939453125e-06,0,-0.000100612640380859,0.00140702724456787,1.1444091796875e-05,-0.0349197387695313,-0.105187654495239,0.00534343719482422,-0.0692038536071777,-0.326200604438782,-0.000250816345214844,-0.100541830062866,-0.632233262062073,0.00990009307861328,-0.0919437408447266,-0.911430358886719,0.0128726959228516,-0.0454225540161133,-1.05669844150543,0.0250167846679688,-0.0499629974365234,-1.02965998649597,0.0177030563354492,-0.0426387786865234,-0.918564319610596,0.0317831039428711,-0.0266876220703125,-0.798952341079712,0.0216407775878906,-0.0201129913330078,-0.605583250522614,-0.0386867523193359,-0.0119137763977051,-0.472547948360443,-0.0396060943603516,-0.00371837615966797,-0.171265840530396,-0.0376300811767578,-0.0059051513671875,-0.0744451880455017,-0.0148038864135742,0.00719714164733887,0.115697115659714,0.0226249694824219,-0.0260047912597656,0.0734522938728333,0.0230617523193359,0.0212240219116211,0.132207274436951,0.0375766754150391,0.0370116233825684,0.111141264438629,0.0505990982055664,0.0365900993347168,0.137288138270378,0.0686187744140625,-0.0403835773468018,0.168377891182899,0.0582714080810547,-0.0127854347229004,0.163542449474335,0.046478271484375,0.00535821914672852,0.143106520175934,0.0436458587646484,0.021174430847168,0.11872386932373,0.050114631652832,0.0108180046081543,0.0857025384902954,0.023529052734375,0.00806713104248047,0.0457141399383545,0.0143814086914063,0,-1.00135803222656e-05, +0,0,2.80141830444336e-06,0,0,-1.0073184967041e-05,0,0,3.69548797607422e-06,0,0,5.60283660888672e-06,0,0,-1.9073486328125e-06,0,0,-3.57627868652344e-06,0.000393867492675781,0,1.9073486328125e-06,0,0,9.17911529541016e-06,0,0,5.60283660888672e-06,0,0,3.57627868652344e-06,0,0,-7.27176666259766e-06,0,0,5.48362731933594e-06,0,0,-6.40749931335449e-06,0,0,-7.33137130737305e-06,0,0,1.84774398803711e-06,0,0,-3.63588333129883e-06,0,0,-5.48362731933594e-06,0,0,3.69548797607422e-06,0,0,-1.84774398803711e-06,0,0,9.17911529541016e-06,0,0,-7.27176666259766e-06,0,0,-6.3776969909668e-06,0,-9.77516174316406e-06,-4.02927398681641e-05,4.76837158203125e-06,-0.000375986099243164,-0.00341486930847168,0.00826930999755859,-7.31945037841797e-05,0.00083315372467041,0.0136070251464844,0.000144004821777344,-0.0120859146118164,0.00249958038330078,1.1444091796875e-05,-0.0124963521957397,0.00222492218017578,-5.07831573486328e-05,-0.010983943939209,0.000151634216308594,-3.57627868652344e-05,-0.00402688980102539,0,-5.76972961425781e-05,-0.00462007522583008,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0.000149250030517578,-0.00140845775604248,0,0,-3.63588333129883e-06,0,0.000326395034790039,-0.0235596001148224,0,-6.17504119873047e-05,-0.0412412881851196,5.7220458984375e-05,6.91413879394531e-06,-0.0534147992730141,0,0,-0.0413181856274605,0,0,-0.0213926583528519,0,0,-6.40749931335449e-06,0,0,3.69548797607422e-06,0,0,7.39097595214844e-06,0,0,9.17911529541016e-06,0,0,-2.74181365966797e-06,0,0,-4.58955764770508e-06,0,0,5.48362731933594e-06,0,0,7.39097595214844e-06,0,0,-3.57627868652344e-06,0,0,1.9073486328125e-06,0,0,-1.9073486328125e-06,0,0,-7.27176666259766e-06,0,0,-1.9073486328125e-06,0,0,-1.66893005371094e-06,0,0,9.17911529541016e-06,0,0,-3.63588333129883e-06,0,0,1.84029340744019e-06,0,-6.62803649902344e-05,-4.21106815338135e-05,-4.76837158203125e-05,6.91413879394531e-06,-0.000128172338008881,0,0,-7.3164701461792e-06,0,0,-9.14931297302246e-06,0,0,8.2552433013916e-06,0,0,-7.33137130737305e-06,0,0,-4.58955764770508e-06,0,0,7.39097595214844e-06, +0,0,9.17911529541016e-06,0,0,-1.78813934326172e-06,0 + } + Normals: *4380 { + a: -0.619063988793641,0.343783676624298,-1.09118802845478,0.426372540480628,-0.785622093826532,-1.41663271188736,0.506949675566688,-0.713540825992823,-1.45706206560135,0.547586327167592,-0.404298648238182,-1.52142816781998,0.634757091291249,-0.133753955364227,-1.52174496650696,1.16869607567787,-0.144422948360443,-0.762338221073151,1.38663822412491,-0.273440778255463,-0.938469022512436,0.223192602396011,0.497557729482651,-0.241826444864273,-0.137279778718948,1.54084533452988,0.373667314648628,0.474539913237095,0.346394777297974,-0.675818756222725,1.12679368257523,-0.00707453489303589,-0.884533584117889,0.987802267074585,-0.147653222084045,-1.24377107620239,0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005, +1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355,0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.474317714571953,-1.08626279234886,-0.799897104501724,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533, +-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.26907205581665,-1.25665864348412,-0.533412426710129,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054, +0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016, +0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064,-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,0.873636121163145,-0.376826524734497,-0.367784887552261,1.34601473808289,-0.80495909973979,-0.174851790070534,1.31610041856766,-1.08115969598293,-0.155530869960785,1.25783395767212,-0.479136273264885,-0.867621898651123,0.789135560393333,-0.736478731036186,-0.400099456310272,-1.25670471787453,-0.932411693036556,-0.580859676003456,-0.741916254162788,-0.916442506015301,-0.633733600378036,-0.751813910901546,-0.905485954135656,-0.848930507898331,-0.635811358690262,-0.943817850202322,-0.731744855642319,-0.616833597421646,-0.904992615804076,-0.678329199552536,0.239367835223675,-1.87268978357315,-0.524683281779289,-0.824748605489731,-1.79644429683685,-0.255595020949841,-1.09472087025642,-1.08427493274212,-0.711493290960789,-0.685561671853065,-0.861295877490193,-1.05978813767433, +-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643, +-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479, +-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289, +-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314, +-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697, +0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911, +-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999, +-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766, +-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238, +0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575, +-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469, +0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467, +0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625, +0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497, +0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854, +-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203, +-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273, +-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074, +-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669, +0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193, +0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174, +-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375, +-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866, +-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979, +-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142, +-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087, +-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609, +-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968, +-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112, +-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257, +-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916, +0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236, +-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426, +0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388, +1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030771856, "Geometry::Eye_Right_Wide", "Shape" { + Version: 100 + Indexes: *409 { + a: 326,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,484,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,5895,5896,5900,5919,5920,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6146,6147,6160,6161,6162,6163,6505,6506,6507,6508,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6564,6794,6800,6801,6802,6803,6804,6805,6806,6807,6808,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7505,7506,7528,7529,7542,7543,7544,7545,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7906,7907,7909,7910,7911,7912,7913,7914,7915,7916,7917,7934,7935,7936,7937,7938,7939,7940,7941,7943,7944,7946,8176,8182,8186,8187,8188,8189,8190,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784 + } + Vertices: *1227 { + a: -0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235199928283691,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0,0.000999689102172852,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453, +0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234334230423,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197255611419678,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556478276848793,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523, +1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,1.52587890625e-05,0.00242425501346588,0.00070953369140625,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000114321708679199,0.000339984893798828,0.000453948974609375,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000120878219604492,0.00131011009216309,0.000443458557128906,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.00789570808410645,-0.00230312347412109,-1.83582305908203e-05, +0.00841885805130005,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199636816978455,-0.000123977661132813,0,0.000999718904495239,0,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,0,0.000999689102172852,0,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000160694122314453,0.0067594051361084,-0.00162220001220703,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,-3.40938568115234e-05,0.007895827293396,-0.00230312347412109,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-0.000425338745117188,0.00446850061416626,-0.000601768493652344,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,3.57627868652344e-05,0.0020308643579483,0.000593185424804688,3.71932983398438e-05,0.00251368619501591,0.000734329223632813,1.52587890625e-05,0.00242425128817558,0.00070953369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,5.86509704589844e-05,0.000386357307434082, +0.000125885009765625,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.03063201904297e-05,0.00142340362071991,0.000420570373535156,3.57627868652344e-05,0.0020308792591095,0.000593185424804688,3.71932983398438e-05,0.00251370668411255,0.000734329223632813,1.52587890625e-05,0.00242424011230469,0.00070953369140625,-1.52587890625e-05,0.00197258591651917,0.000588417053222656,-3.76701354980469e-05,0.00156232714653015,0.000461578369140625,-6.00814819335938e-05,0.0010526031255722,0.000325202941894531,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-2.6702880859375e-05,0.000318154692649841,8.10623168945313e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,3.00407409667969e-05,0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556483864784241,0.00016021728515625,-6.00814819335938e-05,0.00105259753763676,0.000325202941894531,-3.76701354980469e-05,0.00156236439943314,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,1.52587890625e-05,0.00242424011230469,0.00070953369140625,3.71932983398438e-05,0.00251369178295135,0.000734329223632813,3.57627868652344e-05,0.00203084945678711,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351160764694214,3.62396240234375e-05,-0.039896696805954,0.055370569229126,-0.00553607940673828,-0.0503910481929779,0.052578330039978,0.00574207305908203,-0.0330334566533566,0.0302760601043701,0.00151157379150391,0.0356791242957115,0.117853164672852,-0.00406074523925781,-9.95717418845743e-05,0.113386154174805,0.000700950622558594,-0.0719225704669952,0.171999216079712,-0.00208282470703125,-0.0741032660007477,0.1179119348526,0.0199785232543945,-0.074039101600647,0.488242030143738,0.190054893493652,-0.0410565733909607,0.419480562210083,0.0693569183349609,0.00157749652862549,0.581050157546997, +0.218133926391602,0.02801513671875,0.540443420410156,0.0999221801757813,-0.087191104888916,0.702215433120728,0.213652610778809,-0.0153965950012207,0.68410325050354,0.12642765045166,-0.0501279830932617,0.637698888778687,0.200088500976563,-0.0429248809814453,0.617223262786865,0.155679702758789,-0.0902509689331055,0.462861061096191,0.17335033416748,-0.0830488204956055,0.480314970016479,0.147052764892578,-0.115661144256592,0.285030364990234,0.0782508850097656,-0.0203766822814941,0.267393827438354,0.138752937316895,-0.0863628387451172,0.129194498062134,-0.007965087890625,-0.0104227066040039,0.0373415946960449,-0.00250101089477539,0,3.814697265625e-06,0,-0.0199103355407715,0.03977370262146,-0.00685930252075195,-0.0359668731689453,0.0510199069976807,-0.00460624694824219,0.0772476196289063,0.0599876642227173,0.0402641296386719,-0.00830459594726563,0.681066274642944,0.147480964660645,-0.0256655216217041,0.694765329360962,0.218293190002441,-0.0115840435028076,0.612931728363037,0.214901924133301,-0.0111932754516602,0.521907210350037,0.21419620513916,0.0225270986557007,0.313108801841736,0.0894336700439453,0.0535176992416382,0.0552123785018921,0.0429706573486328,-0.0189471244812012,0.0448840856552124,-0.00684499740600586,-0.0692782402038574,0.134331703186035,0.000301361083984375,-0.112018585205078,0.283711433410645,0.0628395080566406,-0.0924129486083984,0.444191694259644,0.1826171875,-0.0430886745452881,0.523174047470093,0.225696563720703,-0.0513632297515869,0.577847480773926,0.242834091186523,0.0269534587860107,0.419760227203369,0.0882482528686523,0.00270533561706543,0.374822854995728,0.0538339614868164,-0.0383625030517578,0.285292387008667,0.0128908157348633,-0.0269880294799805,0.184450626373291,0.00107860565185547,-0.025871753692627,0.0903611183166504,-0.0297765731811523,-0.0308051109313965,0.0477136373519897,-0.0128660202026367,0.0514130592346191,0.108309864997864,0.0243253707885742,0.0500757694244385,0.232627272605896,0.102014541625977,0.0562922954559326,0.388509392738342,0.171122550964355,0.0304321646690369,0.278913021087646, +-0.00598716735839844,-0.00974196195602417,0.467592000961304,-0.00692558288574219,-0.0123574733734131,0.458104610443115,-0.00974369049072266,-0.0474120378494263,0.499452352523804,-0.00387859344482422,0.0140345096588135,0.518790245056152,-0.0316677093505859,-0.0553662776947021,0.497079372406006,-0.0471725463867188,-0.105998516082764,0.374053478240967,-0.0496273040771484,0.00850725173950195,0.129849433898926,-0.0193643569946289,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,-3.76701354980469e-05,0.000108242034912109,-9.10758972167969e-05,-0.0331077575683594,0.251204013824463,0.00354146957397461,-0.0174629688262939,0.268531322479248,0.00681018829345703,-0.0244226455688477,0.284929752349854,0.00650882720947266,-0.0313739776611328,0.281942367553711,0.00528144836425781,0.0125900506973267,0.280825614929199,0.0121126174926758,0.00841838121414185,0.298995018005371,0.00684452056884766,-0.000121742486953735,0.283126354217529,0.00475978851318359,-0.000513553619384766,0.0024259090423584,-0.00019073486328125,-0.000608205795288086,0.00463926792144775,-0.000814437866210938,-0.000313997268676758,0.00642824172973633,-0.00204086303710938,1.09672546386719e-05,0.00789940357208252,-0.00334358215332031,-4.41074371337891e-05,0.00858867168426514,-0.00359725952148438,0.000218391418457031,0.00763392448425293,-0.00202846527099609,0.000766754150390625,0.00606966018676758,-0.00130748748779297,0.000406742095947266,0.00478005409240723,-0.000611305236816406,0.000275135040283203,0.00206238031387329,-0.000124931335449219,3.91006469726563e-05,0.00839114189147949,-0.002838134765625,8.36849212646484e-05,0.000929087400436401,0.000258445739746094,8.55922698974609e-05,0.00178617238998413,0.000478744506835938,0.000128269195556641,0.00021892786026001,0.000127792358398438,-0.000263690948486328,0.000653624534606934,-7.62939453125e-05,5.43594360351563e-05,0.00266426801681519,0.000682830810546875,5.26905059814453e-05,0.003371462225914,0.000856399536132813,1.43051147460938e-06,0.00316940248012543,0.000822067260742188,-4.91142272949219e-05, +0.00245356559753418,0.000665664672851563,-7.05718994140625e-05,0.00195887684822083,0.0005340576171875,-0.000115394592285156,0.00129884481430054,0.000383377075195313,-7.39097595214844e-05,0.000541746616363525,0.000162124633789063,-5.81741333007813e-05,0.000188291072845459,8.20159912109375e-05,0.000144481658935547,0.000964581966400146,-3.14712524414063e-05,-0.016003280878067,0.0216991901397705,-0.001373291015625,-0.0212710797786713,0.00931870937347412,0.00263309478759766,-0.00859534740447998,0.000510334968566895,0.00250911712646484,-0.00213241577148438,0.000141382217407227,5.340576171875e-05,-0.00301539897918701,-0.00167322158813477,0.00063323974609375,-0.000489115715026855,-0.00162339210510254,-0.000336647033691406,-0.000546932220458984,-0.00104355812072754,-0.000135421752929688,0.000103950500488281,-0.000948190689086914,-0.000379562377929688,0,1.66893005371094e-06,0,-0.000159740447998047,-0.000432729721069336,-0.000136375427246094,-9.82284545898438e-05,-9.1552734375e-05,-2.57492065429688e-05,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,3.814697265625e-06,0,0,1.66893005371094e-06,0,-0.0174713730812073,0.0117024183273315,0.00120639801025391,-0.0092894434928894,0.00257408618927002,0.00249671936035156,-6.43730163574219e-06,-0.0013573169708252,-0.000384330749511719,-0.00122332572937012,-0.00149083137512207,0.000101089477539063,-0.000391244888305664,0.00236576795578003,-0.00012969970703125,-0.000425338745117188,0.00446856021881104,-0.000601768493652344,-0.000250101089477539,0.0066673755645752,-0.00145244598388672,-3.40938568115234e-05,0.007895827293396,-0.0023040771484375,-1.83582305908203e-05,0.00841879844665527,-0.00261402130126953,4.52995300292969e-05,0.00783050060272217,-0.00220394134521484,0.000160694122314453,0.0067594051361084,-0.00162220001220703,0.000414848327636719,0.00580155849456787,-0.00101375579833984,0.000463962554931641,0.0040740966796875,-0.000494003295898438,0.000238895416259766,0.00199633836746216,-0.000123977661132813,0.000133037567138672,0.000999689102172852,-2.76565551757813e-05,3.00407409667969e-05, +0.000339269638061523,1.71661376953125e-05,-2.6702880859375e-05,0.000318169593811035,8.10623168945313e-05,-4.81605529785156e-05,0.000556468963623047,0.00016021728515625,-6.00814819335938e-05,0.00105258822441101,0.000325202941894531,-3.76701354980469e-05,0.00156235694885254,0.000461578369140625,-1.52587890625e-05,0.00197260081768036,0.000588417053222656,1.52587890625e-05,0.00242425128817558,0.00070953369140625,3.71932983398438e-05,0.00251471623778343,0.000734329223632813,3.57627868652344e-05,0.00203085690736771,0.000593185424804688,5.03063201904297e-05,0.0014234185218811,0.000420570373535156,5.24520874023438e-05,0.000839561223983765,0.000244140625,5.86509704589844e-05,0.000386357307434082,0.000125885009765625,-4.81605529785156e-05,0.000351130962371826,3.62396240234375e-05,-0.000235319137573242,0.000970125198364258,-1.04904174804688e-05,-8.0108642578125e-05,0.000617355108261108,6.96182250976563e-05,-1.02519989013672e-05,0.000482231378555298,0.000119209289550781,1.23977661132813e-05,0.000700816512107849,0.000223159790039063,1.9073486328125e-05,0.00102675892412663,0.0003509521484375,1.97887420654297e-05,0.00132780522108078,0.000464439392089844,2.38418579101563e-05,0.00156024098396301,0.00055694580078125,2.288818359375e-05,0.00153917074203491,0.000550270080566406,1.28746032714844e-05,0.00132940709590912,0.000472068786621094,-1.9073486328125e-06,0.00105854868888855,0.000367164611816406,-1.33514404296875e-05,0.000743985176086426,0.00025177001953125,-1.43051147460938e-05,0.000490725040435791,0.000143051147460938,4.29153442382813e-06,0.000372767448425293,6.96182250976563e-05,4.76837158203125e-05,0.000525236129760742,2.38418579101563e-05,0.000109195709228516,0.000935256481170654,-2.38418579101563e-05,0.000169754028320313,0.00164282321929932,-0.000112533569335938,0.000182628631591797,0.00367176532745361,-0.000372886657714844,0.0001373291015625,0.00537204742431641,-0.000761032104492188,6.43730163574219e-05,0.00575852394104004,-0.001190185546875,6.67572021484375e-06,0.00727617740631104,-0.00153160095214844,-2.33650207519531e-05, +0.00761747360229492,-0.00174236297607422,-4.41074371337891e-05,0.00732779502868652,-0.00153732299804688,-0.000128984451293945,0.00651943683624268,-0.000931739807128906,-0.000224590301513672,0.00456857681274414,-0.000405311584472656,-0.000244379043579102,0.00204652547836304,-0.000105857849121094,-0.000171065330505371,0.00106459856033325,3.24249267578125e-05,-0.000105381011962891,0.000781118869781494,0,-0.000135302543640137,0.00145900249481201,-0.000147819519042969,-0.000100135803222656,0.00208628177642822,0.000453948974609375,-0.000118732452392578,0.002960205078125,4.57763671875e-05,-9.58442687988281e-05,0.00358128547668457,-0.000405311584472656,-4.38690185546875e-05,0.00400543212890625,-0.000701904296875,-9.05990600585938e-05,0.00331759452819824,-0.000609397888183594,-9.918212890625e-05,0.00294971466064453,-0.000368118286132813,-4.48226928710938e-05,0.00240528583526611,-0.000832557678222656,1.57356262207031e-05,0.0017249584197998,-0.000451087951660156,5.38825988769531e-05,0.00107395648956299,-0.000173568725585938,5.14984130859375e-05,0.000679433345794678,-5.81741333007813e-05,3.19480895996094e-05,0.000389456748962402,1.1444091796875e-05,1.85966491699219e-05,0.000298202037811279,6.4849853515625e-05,1.85966491699219e-05,0.00035993754863739,0.000140190124511719,2.47955322265625e-05,0.00044279545545578,0.000209808349609375,3.76701354980469e-05,0.000672340393066406,0.000335693359375,4.33921813964844e-05,0.000835835933685303,0.000429153442382813,3.76701354980469e-05,0.000956177711486816,0.000493049621582031,2.33650207519531e-05,0.000984609127044678,0.000504493713378906,7.62939453125e-06,0.000854820013046265,0.000423431396484375,-1.9073486328125e-06,0.000686496496200562,0.000327110290527344,-1.02519989013672e-05,0.000517368316650391,0.000219345092773438,-2.81333923339844e-05,0.000440716743469238,0.00012969970703125,-6.05583190917969e-05,0.000494927167892456,5.81741333007813e-05,-0.00172257423400879,-0.00109267234802246,0.00105953216552734,-0.00364315509796143,-0.00128936767578125,0.00200176239013672,-0.00442993640899658, +-0.00024878978729248,0.00256443023681641,-0.00262439250946045,0.00153881311416626,0.00220489501953125,0,4.64916229248047e-06,0,-7.15255737304688e-06,2.288818359375e-05,9.5367431640625e-06,0,-2.14576721191406e-06,0,-0.000412225723266602,-0.000344038009643555,8.86917114257813e-05,-0.000767946243286133,-0.000776529312133789,0.000371932983398438,-0.000914335250854492,-0.000514984130859375,0.000566482543945313,-0.000428676605224609,-9.84668731689453e-05,0.000191688537597656,-0.000179767608642578,3.50475311279297e-05,5.05447387695313e-05,-7.72476196289063e-05,1.07288360595703e-05,0.000135421752929688,-2.90870666503906e-05,1.1444091796875e-05,1.43051147460938e-05,-9.05990600585938e-06,1.06096267700195e-05,3.814697265625e-06,-0.00231671333312988,-0.000142693519592285,0.00180912017822266,-0.00245881080627441,-0.000624775886535645,0.0019073486328125,-0.00167679786682129,-0.000713348388671875,0.0014190673828125,0.014453798532486,0.00105643272399902,-0.00242519378662109,0.00671088695526123,0.000211477279663086,-0.00153541564941406,0.00267446041107178,-0.000466108322143555,-0.000857353210449219,0.000793099403381348,-0.000756978988647461,-0.000493049621582031,3.57627868652344e-06,-0.000531673431396484,-0.000212669372558594,-5.86509704589844e-05,-6.103515625e-05,3.52859497070313e-05,-1.43051147460938e-06,6.19888305664063e-06,0,0,-1.66893005371094e-06,0,0,3.09944152832031e-06,0,0,3.33786010742188e-06,0,0,-4.29153442382813e-06,0,2.86102294921875e-06,-4.29153442382813e-06,0,7.74860382080078e-06,1.76429748535156e-05,2.86102294921875e-06,1.05500221252441e-05,2.43186950683594e-05,1.04904174804688e-05,1.95801258087158e-05,3.95774841308594e-05,-2.95639038085938e-05,0,1.78813934326172e-06,0,-0.00024867057800293,0.000627219676971436,-8.0108642578125e-05,-0.00049281120300293,0.00234889984130859,-0.000192642211914063,-0.000592708587646484,0.00481593608856201,-0.000767707824707031,-0.000319004058837891,0.00675666332244873,-0.00189018249511719,3.09944152832031e-06,0.00842452049255371,-0.00307559967041016,-2.31266021728516e-05,0.00935912132263184, +-0.00327968597412109,6.53266906738281e-05,0.00914978981018066,-0.00255298614501953,0.000235080718994141,0.00837099552154541,-0.00183773040771484,0.000354766845703125,0.00665366649627686,-0.00122642517089844,0.000401973724365234,0.0046461820602417,-0.000583648681640625,0.000266075134277344,0.0020061731338501,-0.000123023986816406,0.000139713287353516,0.000937461853027344,-3.14712524414063e-05,8.22544097900391e-05,0.000895410776138306,0.000245094299316406,0.000124692916870117,0.000211358070373535,0.000123023986816406,8.65459442138672e-05,0.00171753764152527,0.000447273254394531,5.62667846679688e-05,0.00255855917930603,0.000630378723144531,5.00679016113281e-05,0.00323455035686493,0.000787734985351563,-5.96046447753906e-06,0.00305303931236267,0.000757217407226563,-5.7220458984375e-05,0.002378910779953,0.000620841979980469,-7.67707824707031e-05,0.00190240144729614,0.000501632690429688,-0.000115394592285156,0.00125032663345337,0.000363349914550781,-7.20024108886719e-05,0.000527322292327881,0.000157356262207031,-5.57899475097656e-05,0.000183284282684326,8.10623168945313e-05,0,0.00131899118423462,0,0,0.00380241870880127,0,0,0.00561583042144775,0,0,0.00630033016204834,0,0,0.00630021095275879,0,0,0.00630033016204834,0,0,0.00522923469543457,0,0,0.00472331047058105,0,0,0.00311636924743652,0,0,0.0016065239906311,0 + } + Normals: *1227 { + a: -0.133143305778503,-0.318960465490818,-0.859887212514877,-1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668, +0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058, +-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784, +-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575, +0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319,-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594, +-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.83636599034071,-0.958253972232342,-0.844457536935806,0.433115065097809,-0.226518977433443,0.52702921628952,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485, +-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.156518876552582,-0.00533966720104218, +0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551, +-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493, +0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218, +-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.22639819979668, +0.864633291959763,-0.881134361028671 + } + } + Geometry: 2807030772432, "Geometry::Eye_Right_Right", "Shape" { + Version: 100 + Indexes: *1432 { + a: 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,405,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,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6128,6129,6130,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470, +6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523, +7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179, +8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *4296 { + a: -0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.0903201103210449,0.0162455439567566,-0.375970840454102,-0.192007541656494,0.0213413238525391,-0.45504093170166,-0.310050964355469,0.0252300500869751,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.33867883682251,0.0275640487670898,-0.296371459960938,-0.329407691955566,0.0257493257522583,-0.113393783569336,-0.261270046234131,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297415256500244,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0431039333343506,0.0167997479438782,0.0434961318969727,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.24837589263916,0.0165941119194031,0.0442428588867188,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.329407691955566,0.0257493257522583,-0.11480712890625,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.326820850372314,0.0247514247894287,-0.408695220947266,-0.310050964355469,0.0252300500869751,-0.502775192260742,-0.164108276367188,0.0490363240242004,-0.496404647827148,-0.0962176322937012,0.00350004434585571,-0.394233703613281,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.123275756835938,0.0382112860679626,-0.40921688079834,-0.192007541656494,0.0213413834571838,-0.45504093170166,-0.310050964355469,0.0252299308776855,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.329407691955566, +0.0257493257522583,-0.11480712890625,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.262131690979004,-0.0169035643339157,-0.000680923461914063,-0.194218873977661,-0.00468742102384567,-0.0219268798828125,-0.137040138244629,0.00615224242210388,-0.136188507080078,-0.107697486877441,0.00664103031158447,-0.248453140258789,-0.0621771812438965,0.00528210401535034,-0.23625659942627,-0.0284223556518555,-0.0141885280609131,-0.21666431427002,-0.0133295059204102,0.00161898136138916,-0.236495971679688,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934773683547974,0.0134963989257813,-0.262131690979004,-0.0169035792350769,-0.000680923461914063,-0.194218635559082,-0.00468742847442627,-0.0219268798828125,-0.167585372924805,0.0298169851303101,-0.121891975402832,-0.153645992279053,0.0369060337543488,-0.253515243530273,-0.129809379577637,0.0621353089809418,-0.290690422058105,-0.0969195365905762,0.0606474205851555,-0.327178955078125,-0.0744624137878418,0.098174124956131,-0.332362174987793,-0.0135793685913086,0.0106267333030701,-0.214198112487793,-0.00246715545654297,0.00920170545578003,-0.22663402557373,-0.055539608001709,0.0514179468154907,-0.289390563964844,-0.0837244987487793,0.0425230860710144,-0.295361518859863,-0.107307434082031,0.0409700870513916,-0.270119667053223,-0.134385585784912, +0.0260509103536606,-0.253552436828613,-0.15485668182373,0.0213298052549362,-0.12946891784668,-0.19421911239624,-0.00468742847442627,-0.0219268798828125,-0.262131690979004,-0.0169035494327545,-0.000680923461914063,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0137698650360107,0.000629693269729614,0.00848674774169922,0.00511372089385986,0.0152137279510498,0.0203084945678711,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.0903201103210449,0.0162455439567566,-0.375970840454102,-0.192007541656494,0.0213413238525391,-0.45504093170166,-0.310050964355469,0.0252300500869751,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.33867883682251,0.0275640487670898,-0.296371459960938,-0.329407691955566,0.0257493257522583,-0.113393783569336,-0.261270046234131,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297415256500244,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0431039333343506,0.0167997479438782,0.0434961318969727,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0137696266174316,0.000629693269729614,0.00848674774169922,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.329407930374146,0.0257493257522583,-0.11480712890625,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.326820850372314,0.0247514247894287,-0.408695220947266,-0.310050964355469,0.0252299904823303,-0.502775192260742,-0.164108276367188,0.0490363240242004,-0.496404647827148,-0.0962176322937012,0.00350004434585571, +-0.394233703613281,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.000130653381347656,0.000640809535980225,-0.235055923461914,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.123275756835938,0.0382112860679626,-0.40921688079834,-0.192007541656494,0.0213413834571838,-0.45504093170166,-0.310050964355469,0.0252299904823303,-0.502775192260742,-0.326820850372314,0.0247514247894287,-0.408696174621582,-0.338678359985352,0.0275640487670898,-0.297785758972168,-0.329407453536987,0.0257493257522583,-0.11480712890625,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.24837589263916,0.0165941715240479,0.0442428588867188,-0.138259410858154,0.00297409296035767,0.0624895095825195,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.0379900932312012,0.00158601999282837,0.0231876373291016,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.262131690979004,-0.0169035643339157,-0.000680923461914063,-0.194218873977661,-0.00468742102384567,-0.0219268798828125,-0.137040138244629,0.00615224242210388,-0.136188507080078,-0.107697486877441,0.00664103031158447,-0.248453140258789,-0.0621771812438965,0.00528210401535034,-0.23625659942627,-0.0284223556518555,-0.0141885280609131,-0.21666431427002,-0.0133295059204102,0.00161898136138916,-0.236495971679688,-0.0137698650360107,0.000629693269729614,0.00848674774169922,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0636618137359619,-0.000650465488433838,0.0149145126342773,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.169617414474487,-0.00934773683547974,0.0134963989257813,-0.262131690979004,-0.0169035792350769,-0.000680923461914063,-0.194218635559082,-0.00468742847442627,-0.0219268798828125,-0.167585372924805,0.0298169851303101, +-0.121891975402832,-0.153645992279053,0.0369060337543488,-0.253515243530273,-0.129809379577637,0.0621353089809418,-0.290690422058105,-0.0969195365905762,0.0606474280357361,-0.327178955078125,-0.0744624137878418,0.0981741100549698,-0.332362174987793,-0.0135793685913086,0.0106267333030701,-0.214198112487793,-0.00246715545654297,0.00920170545578003,-0.22663402557373,-0.055539608001709,0.0514179468154907,-0.289390563964844,-0.0837244987487793,0.0425230860710144,-0.295361518859863,-0.107307434082031,0.0409700870513916,-0.270119667053223,-0.134385585784912,0.0260509103536606,-0.253552436828613,-0.15485668182373,0.0213298052549362,-0.12946891784668,-0.194218635559082,-0.00468742847442627,-0.0219268798828125,-0.262131690979004,-0.0169035643339157,-0.000680923461914063,-0.169617414474487,-0.00934772193431854,0.0134963989257813,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.0636618137359619,-0.000650458037853241,0.0149145126342773,-0.0174218416213989,0.000653326511383057,0.00787448883056641,-0.0137698650360107,0.000629693269729614,0.00848674774169922,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,-0.000238180160522461,0.000132977962493896,9.5367431640625e-06,-0.0990467071533203,0.0082821249961853,0.047633171081543,-0.142971277236938,-0.00980150699615479,0.0699443817138672,-0.26461386680603,0.00175583362579346,0.0467805862426758,-0.266428709030151,-0.00530350208282471,-0.00621604919433594, +-0.339926481246948,0.0198181867599487,-0.149991989135742,-0.361836433410645,0.0361200571060181,-0.467625617980957,-0.344032764434814,0.0346287488937378,-0.535763740539551,-0.216418743133545,0.0182749032974243,-0.477590560913086,-0.103751659393311,0.0199064612388611,-0.383056640625,0.0022883415222168,0,-0.2498779296875,-0.37465763092041,0.0185004472732544,-0.335476875305176,-0.0582830905914307,-0.00549057126045227,0.0147705078125,-0.128053903579712,-0.00937643647193909,0.0211477279663086,-0.00806570053100586,-0.000226080417633057,0.0035247802734375,-0.0270147323608398,0.00050884485244751,0.0165061950683594,-0.158831119537354,-0.0127155631780624,0.0145635604858398,-0.240624904632568,-0.017103485763073,-0.00535202026367188,-0.208769559860229,-0.0020211935043335,-0.0298299789428711,-0.143869400024414,0.00723865628242493,-0.149331092834473,-0.136171817779541,0.00775185227394104,-0.282914161682129,-0.0536060333251953,-0.00206893682479858,-0.28546142578125,-0.024200439453125,-0.0144634246826172,-0.253257751464844,-0.014124870300293,0.00166624784469604,-0.248126983642578,-0.0588760375976563,0.0109925866127014,-0.321419715881348,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,-0.0116305351257324,-0.00467574596405029,0.000390052795410156,-0.00164312124252319,-0.00114583969116211,5.81741333007813e-05,-0.0498316287994385,-0.0116705894470215,0.00176620483398438,-0.0818784236907959, +-0.0551135540008545,0.00291061401367188,-0.121216297149658,-0.0266857147216797,0.00438308715820313,-0.0238196849822998,-0.0143837928771973,0.000828742980957031,-0.129374980926514,0.0206098556518555,0.0049591064453125,-0.12768816947937,0.0371713638305664,0.00509929656982422,-0.0865483283996582,0.0504584312438965,0.00355625152587891,-0.174444198608398,0.0191357135772705,0.00681304931640625,-0.0886101722717285,0.0533926486968994,-0.0409784317016602,-0.0495104789733887,0.00175237655639648,0.00190639495849609,-0.135512351989746,0.00797843933105469,-0.120069026947021,1.9073486328125e-06,-1.07288360595703e-06,0,0,6.13927841186523e-06,0,-1.43051147460938e-06,-1.19209289550781e-06,0,0,7.62939453125e-06,0,0.00158405303955078,0.00531435012817383,-5.14984130859375e-05,0,-7.62939453125e-06,0,-0.0241680145263672,0.0255273580551147,0.00104236602783203,-0.0157561302185059,0.00699925422668457,0.000629425048828125,-0.0175750255584717,0.00735747814178467,0.000706672668457031,0,2.98023223876953e-06,0,-0.047046422958374,0.0202135443687439,0.00189781188964844,0,1.54972076416016e-06,0,-0.0119510889053345,-0.00140209496021271,0.000448226928710938,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,-0.0515360832214355,0.0475425720214844,-0.0366711616516113,0,-2.98023223876953e-06,0,-3.814697265625e-06,-1.07288360595703e-06,0,1.43051147460938e-06,-1.11013650894165e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,-0.00529813766479492,0.017688512802124,0.000266075134277344,0,-6.19888305664063e-06,0,-0.01129150390625,0.00424492359161377,0.000452041625976563,-0.0207185745239258,0.00426256656646729,0.000791549682617188,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,-0.00424426794052124,-0.00169980525970459,0.000143051147460938,-0.11449146270752,-0.034414529800415,0.00429821014404297,-0.194644212722778,-0.0192775726318359,0.00722885131835938,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06, +0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06, +0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.101550102233887,0.00887632369995117,0.0476627349853516,-0.138259410858154,0.00297415256500244,0.0624895095825195,-0.24837589263916,0.0165942907333374,0.0442428588867188,-0.26127028465271,0.0066063404083252,-0.0108213424682617,-0.329407691955566,0.0257494449615479,-0.113247871398926,-0.33867883682251,0.0275641679763794,-0.296371459960938,-0.326820850372314,0.0247514247894287,-0.408695220947266,-0.310050964355469,0.0252299308776855,-0.502774238586426,-0.192007541656494,0.0213414430618286,-0.45504093170166,-0.0903201103210449,0.0162455439567566,-0.375970840454102,-0.0507545471191406,0.00104856491088867,-0.318170547485352,-0.000130653381347656,0.000640869140625,-0.235055923461914,-0.0133295059204102,0.00161898136138916,-0.236496925354004,-0.0284223556518555,-0.0141884684562683,-0.21666431427002,-0.0621771812438965,0.00528204441070557,-0.23625659942627,-0.107697486877441,0.00664100050926208,-0.248453140258789,-0.137040138244629,0.00615222752094269,-0.136188507080078,-0.194218873977661,-0.00468742474913597,-0.0219268798828125,-0.262131690979004,-0.0168577879667282,-0.000680923461914063,-0.169617414474487,-0.00934770703315735,0.0134963989257813,-0.143210172653198,-0.0115275681018829,0.0188655853271484,-0.0636618137359619,-0.000650495290756226,0.0149145126342773,-0.0174217224121094,0.000653326511383057,0.00787448883056641,-0.0137696266174316,0.000629663467407227,0.00848674774169922,-0.0379900932312012,0.00158601999282837,0.0231876373291016, +-0.0242965221405029,0.00126487016677856,0.015660285949707,-0.0265774726867676,0.0039711594581604,0.0113620758056641,-0.0735821723937988,0.0134951025247574,0.0148000717163086,-0.135603427886963,0.00944077782332897,0.0160617828369141,-0.171540260314941,-0.00206577777862549,0.0120716094970703,-0.256332397460938,-0.0157688707113266,0.00373935699462891,-0.177870273590088,-0.00625723600387573,-0.0124368667602539,-0.131528377532959,0.00614805147051811,-0.110476493835449,-0.112782001495361,0.0129797086119652,-0.226679801940918,-0.0486507415771484,0.00343582034111023,-0.22941780090332,-0.00263786315917969,0.00204774737358093,-0.216222763061523,-0.011970043182373,0.00126951932907104,-0.214228630065918,-0.0156960487365723,0.000843822956085205,-0.211347579956055,-0.048250675201416,0.000329852104187012,-0.277787208557129,-0.0756072998046875,0.00605154037475586,-0.329646110534668,-0.170723915100098,0.0229473114013672,-0.415866851806641,-0.269514560699463,0.0256234407424927,-0.437540054321289,-0.259909629821777,0.0068666934967041,-0.353434562683105,-0.277475833892822,0.0240838527679443,-0.255824089050293,-0.328291654586792,0.0210464000701904,-0.0850362777709961,-0.258634805679321,0.0130612850189209,0.00355052947998047,-0.201249599456787,0.0189461708068848,0.0386104583740234,-0.127920627593994,0.00530815124511719,0.050994873046875,-0.102397203445435,0.012145459651947,0.0449333190917969,-0.040884256362915,0.00200074911117554,0.0264787673950195,-0.0292434692382813,0.00143510103225708,0.0217084884643555,-0.110448837280273,0.021564245223999,0.0381650924682617,-0.165137052536011,0.0363199710845947,0.0440025329589844,-0.198148250579834,0.0513136386871338,0.0378808975219727,-0.201098442077637,0.0288066864013672,0.0166292190551758,-0.185127258300781,0.0102483034133911,-0.0133810043334961,-0.190587520599365,-0.00922918319702148,-0.0637855529785156,-0.242588520050049,-0.0653148889541626,-0.159162521362305,-0.247251033782959,-0.0288717746734619,-0.224226951599121,-0.0689969062805176,-0.00318300724029541,-0.273089408874512,-0.0297422409057617, +8.392333984375e-05,-0.119638442993164,-0.0163331031799316,0.000384390354156494,-0.0535240173339844,-0.00680637359619141,0.00193840265274048,-0.0337743759155273,-0.00688457489013672,0.00114214420318604,-0.0135650634765625,-0.0182156562805176,0.00880126655101776,-0.0140447616577148,-0.0221033096313477,0.00809766352176666,-0.0282840728759766,-0.0744905471801758,0.00708749890327454,-0.0490274429321289,-0.108960151672363,0.00850477814674377,-0.0291824340820313,-0.124290466308594,-0.000273227691650391,-0.00838375091552734,-0.183624744415283,-0.00733697414398193,0.00388145446777344,-0.131885528564453,0.0210279822349548,0.00943088531494141,-0.0979771614074707,0.0647347569465637,0.012598991394043,-0.0859107971191406,0.0420075058937073,0.0135459899902344,-0.0298558473587036,0.00723016262054443,0.0121135711669922,-0.0177936553955078,0.000237077474594116,0.0140390396118164,-0.239066362380981,-0.0176901817321777,0.00895023345947266,-0.237991213798523,-0.0321437120437622,0.00878524780273438,-0.0749275684356689,-0.0245360136032104,0.00254726409912109,-0.0107104778289795,-0.00430947542190552,0.000360488891601563,-0.0103861093521118,-0.00122860074043274,0.000390052795410156,-0.110658168792725,-0.0130277872085571,0.00415229797363281,-0.109701037406921,0.0416576266288757,0.00438690185546875,-0.0632960796356201,0.026045560836792,0.00249862670898438,-0.0798726081848145,0.0210157632827759,0.00307559967041016,-0.0700716972351074,0.0304704904556274,0.00280094146728516,-0.0584845542907715,0.0240632295608521,0.00235080718994141,-0.0715188980102539,0.0815666913986206,0.00310325622558594,-0.0225114822387695,0.0756710171699524,0.00113391876220703,0.0200138092041016,0.0668308138847351,-0.000905513763427734,-2.38418579101563e-06,-1.22189521789551e-06,0,0,-1.16229057312012e-06,0,2.38418579101563e-06,-1.13248825073242e-06,0,-2.38418579101563e-06,-1.13248825073242e-06,0,-0.0406279563903809,-0.0100667476654053,-0.0183992385864258,-0.0552353858947754,0.0131537914276123,-0.0195140838623047,-0.145007610321045,-0.0158710479736328,0.00544261932373047,-0.0801806449890137, +0.0102994441986084,0.00306606292724609,-0.11051869392395,-0.020923376083374,0.00404262542724609,-0.0452847480773926,0.0173771381378174,0.00187873840332031,-0.0458097457885742,0.0145988464355469,0.00185012817382813,-0.233118057250977,-0.00167036056518555,0.00936508178710938,-0.21418285369873,-0.0645043849945068,-0.0408782958984375,-0.161038398742676,-0.0880333185195923,-0.00156593322753906,-0.0701031684875488,-0.0269216299057007,0.0433940887451172,0,-1.19209289550781e-06,0,2.86102294921875e-06,-1.19209289550781e-06,0,0,-1.19209289550781e-06,0,-2.86102294921875e-06,-1.22189521789551e-06,0,3.814697265625e-06,-1.27404928207397e-06,0,0.00567293167114258,0.0775673985481262,9.72747802734375e-05,-0.0197963714599609,0.0499762296676636,0.000940322875976563,-0.0636119842529297,0.0398548245429993,0.00260734558105469,-0.0590910911560059,0.0180896520614624,0.00233554840087891,-0.0805466175079346,0.0224337577819824,0.00314140319824219,-0.0872180461883545,0.0300605297088623,0.00339126586914063,-0.071399450302124,0.0734748840332031,0.00300216674804688,-0.0938503742218018,0.0383623838424683,0.00372505187988281,-0.0577132701873779,-0.0066697746515274,0.00216579437255859,-0.0115294456481934,-0.00135704874992371,0.000432968139648438,-0.00011599063873291,-1.51991844177246e-05,3.814697265625e-06,-0.0658905506134033,0.00966393947601318,0.00250530242919922,-0.16734504699707,0.00797879695892334,0.00637054443359375,-0.0751156806945801,0.0209629535675049,0.00299167633056641,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06, +0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06, +0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06, +0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06, +0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06, +0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06, +0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06, +0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06, +0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06, +0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06, +0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-7.17639923095703e-05,3.814697265625e-06,4.67300415039063e-05,-0.0257148742675781,0.000463128089904785,0.0160846710205078,-0.0926861763000488,0.00727874040603638,0.0483837127685547,-0.155390739440918,0.00201785564422607,0.070404052734375,-0.29344630241394,0.0338938236236572,0.0481891632080078,-0.30637788772583,-0.00040435791015625,-0.0275583267211914,-0.351467370986938,0.025180459022522,-0.159399032592773,-0.36540699005127,0.00854885578155518,-0.344948768615723,-0.363742351531982,0.0110155344009399,-0.469780921936035,-0.338369369506836,0.0225290060043335,-0.514941215515137,-0.18055248260498,0.0312654972076416,-0.469051361083984,-0.0892510414123535, +0.0103706121444702,-0.365452766418457,-0.0293307304382324,0.0019804835319519,-0.299956321716309,-0.0449695587158203,-0.00594067573547363,0.0144062042236328,-0.00570559501647949,-0.000830978155136108,0.00343132019042969,-0.113539218902588,-0.0111568868160248,0.0209140777587891,-0.138956546783447,-0.0116026103496552,0.0142955780029297,-0.208453178405762,-0.0144858658313751,-0.00601863861083984,-0.187669992446899,-0.000535905361175537,-0.0302619934082031,-0.130633354187012,0.00658252835273743,-0.146069526672363,-0.129236698150635,0.00711768865585327,-0.282761573791504,-0.0567002296447754,0.00697898864746094,-0.245926856994629,0.00708150863647461,-0.015288770198822,-0.226593017578125,0.0309848785400391,-0.000244617462158203,-0.263739585876465,0.0559554100036621,0,-0.18452262878418,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,-8.10623168945313e-06,-3.03983688354492e-06,5.7220458984375e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,-0.058558464050293,0,0,-0.17643928527832,-0.00276803970336914,0.000644445419311523,-0.175441741943359,-0.00547885894775391,0.0013120174407959,-0.188865661621094,-8.48770141601563e-05,1.54972076416016e-05,-0.194449424743652,0,0,-0.192206859588623,0.0872402191162109,7.56978988647461e-06,-0.192206859588623,-5.24520874023438e-06,3.27825546264648e-06,0,0,-3.03983688354492e-06,0,-0.0122737884521484,-0.00113092362880707,0.000457763671875,-0.0131978988647461,-0.00126761198043823,0.000531196594238281,-0.0088188648223877, +-0.00142408907413483,0.00032806396484375,-0.0192015171051025,-0.00154019892215729,0.000720024108886719,-0.0138607025146484,0.000340394675731659,-0.0785455703735352,-0.00478076934814453,0.00013849139213562,-0.176295280456543,-0.00820493698120117,3.06963920593262e-06,-0.176238059997559,-0.00127601623535156,0,-0.176407814025879,0.106726169586182,6.13927841186523e-06,-0.17643928527832,0.193301200866699,-0.00720059871673584,-0.023188591003418,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4296 { + a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, +0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, +-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714, +-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064, +-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598, +-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.419200159609318,0.837365716695786,0.256595432758331,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089, +-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354, +-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314, +0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234, +0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743, +0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999, +-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595, +-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848, +0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392, +-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036, +0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119, +-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198, +0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779, +0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386, +0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875, +-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314, +-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004, +-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755, +0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459, +-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438, +0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647, +-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592, +0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744, +-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221, +-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709, +-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922, +-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936, +0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438, +-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946, +-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235, +0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211, +0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0890900492668152,0.431337656453252,-0.086775922216475,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261, +0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.11738583445549,-0.0391004681587219,-0.793925583362579,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373, +0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807030773008, "Geometry::Eye_Right_Left", "Shape" { + Version: 100 + Indexes: *1420 { + a: 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,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,381,382,383,384,385,386,387,388,389,390,391,392,405,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,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,539,540,541,542,543,544,545,546,547,548,549,550,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478, +6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6559,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6804,6805,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529, +7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208, +8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *4260 { + a: 0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449098825454712,0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995814800262451,-0.156295776367188,0.243783712387085,-0.0108641386032104,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0375492572784424,0.00956952571868896,-0.00772762298583984,0.0145010948181152,-0.00116109848022461,-0.00990867614746094,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.243783712387085,-0.0108641982078552,-0.141231536865234,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.491699457168579,0.00249981880187988,0.0465059280395508,0.449099063873291,0.0252541303634644,0.155594825744629,0.334151268005371,0.0235978364944458,0.180244445800781,0.212483406066895,0.00690162181854248,0.197136878967285,0.137148857116699,0.00349897146224976,0.0875425338745117,0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449099063873291,0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.243783712387085, +-0.0108641982078552,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.132277488708496,0.00881282985210419,-0.031951904296875,0.134203910827637,0.0119159072637558,-0.00823402404785156,0.147934436798096,0.00172979384660721,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.19727611541748,-0.0363855138421059,0.0537042617797852,0.0876650810241699,-0.014349639415741,0.0323572158813477,0.071815013885498,0.00169742107391357,0.0300350189208984,0.0239934921264648,-0.00214302539825439,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0145010948181152,-0.00116115808486938,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.142739057540894,0.0284625291824341,-0.0102090835571289,0.168860912322998,0.0397201180458069,-0.0202426910400391,0.147934436798096,0.00172978639602661,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.158125400543213,-0.0193670690059662,0.0534534454345703,0.0304460525512695,0.0133194923400879,-0.0105266571044922,0.0192008018493652,0.0329480022192001,-0.0340337753295898,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.0305619239807129,0.0217394530773163,-0.010218620300293,0.0532975196838379,0.00251196324825287,0.00622272491455078,0.169595241546631,-0.0245697200298309,0.0512323379516602,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.147934436798096,0.00172980129718781,0.000176429748535156,0.15197491645813,0.0258671268820763,-0.0171632766723633,0.136911392211914,0.0223250240087509, +-0.0242319107055664,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.00511372089385986,0.0152137279510498,0.0203084945678711,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621218681335449,-3.03983688354492e-06,0.0612897872924805,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449098825454712,0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995814800262451,-0.156295776367188,0.243783712387085,-0.0108641386032104,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0375492572784424,0.00956952571868896,-0.00772762298583984,0.0145010948181152,-0.00116109848022461,-0.00990867614746094,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.243783712387085,-0.0108641982078552,-0.141231536865234,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.491699457168579,0.00249981880187988,0.0465059280395508,0.449099063873291,0.0252541303634644,0.155594825744629,0.334151268005371,0.0235978364944458,0.180244445800781,0.212483406066895,0.00690162181854248,0.197136878967285,0.137148857116699,0.00349897146224976,0.0875425338745117,0.0621218681335449,-3.03983688354492e-06,0.0612888336181641,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.0621213912963867,-3.09944152832031e-06,0.0612888336181641,0.137148857116699,0.00349891185760498,0.0875415802001953,0.212483406066895,0.00690162181854248,0.197136878967285,0.334151268005371,0.0235978364944458,0.180244445800781,0.449099063873291, +0.0252541303634644,0.155594825744629,0.491699457168579,0.00249981880187988,0.0465059280395508,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.373579978942871,-0.00995826721191406,-0.156295776367188,0.243783712387085,-0.0108641982078552,-0.141231536865234,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.0426630973815918,-0.00564420223236084,-0.0280361175537109,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.132277488708496,0.00881282985210419,-0.031951904296875,0.134203910827637,0.0119159072637558,-0.00823402404785156,0.147934436798096,0.00172979384660721,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.19727611541748,-0.0363855138421059,0.0537042617797852,0.0876650810241699,-0.014349639415741,0.0323572158813477,0.071815013885498,0.00169742107391357,0.0300350189208984,0.0239934921264648,-0.00214302539825439,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0145010948181152,-0.00116115808486938,-0.00990867614746094,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.142739057540894,0.0284625142812729,-0.0102090835571289,0.168860912322998,0.0397201180458069,-0.0202426910400391,0.147934436798096,0.00172978639602661,0.000176429748535156,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.158125400543213,-0.0193670690059662,0.0534534454345703,0.0304460525512695,0.0133194923400879,-0.0105266571044922,0.0192008018493652,0.0329480022192001,-0.0340337753295898,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.00954198837280273,-0.00186002254486084,0.00846481323242188,0.0239934921264648,-0.00214299559593201,0.014979362487793,0.0305619239807129,0.0217394530773163,-0.010218620300293,0.0532975196838379,0.00251196324825287,0.00622272491455078,0.169595241546631,-0.0245697274804115, +0.0512323379516602,0.178987741470337,-0.00883239507675171,0.0300846099853516,0.147934436798096,0.00172980129718781,0.000176429748535156,0.15197491645813,0.0258671268820763,-0.0171632766723633,0.136911392211914,0.0223250389099121,-0.0242319107055664,0.0642046928405762,0.00606223940849304,-0.013580322265625,0.0163464546203613,0.000596761703491211,-0.00969505310058594,0.0145010948181152,-0.001161128282547,-0.00990867614746094,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0.104260444641113,-0.0151748061180115,-0.0817766189575195,0.243622779846191,-0.0144773721694946,-0.157573699951172,0.356208324432373,-0.0147475004196167,-0.160111427307129,0.456611156463623,-0.0088956356048584,-0.0859260559082031,0.49645733833313,0.00385284423828125,0.0360069274902344,0.35156774520874,0.0133101940155029,0.188139915466309,0.269849300384521,0.00949859619140625,0.210864067077637,0.170101642608643,0.00426638126373291,0.100146293640137,0.0621051788330078,-0.00112074613571167,0.0590801239013672,0.429880857467651,0.0122145414352417,0.158688545227051,0.0566027164459229,0.00390651822090149,-0.0168790817260742,0.11329460144043,0.00616878271102905,-0.0420942306518555,0.00918054580688477,0.000947564840316772,-0.00546550750732422,0.0336756706237793,-0.00682216882705688,-0.022273063659668,0.131659746170044,0.00679731369018555,-0.0179595947265625,0.151692628860474,-0.00391058623790741,-0.0036163330078125, +0.150131702423096,-0.0124808549880981,0.0252065658569336,0.194314956665039,-0.0375706255435944,0.0534324645996094,0.103732109069824,-0.0193227529525757,0.0375385284423828,0.0803518295288086,-0.00123479962348938,0.001251220703125,0.0255184173583984,-0.00187379121780396,0.0143709182739258,0.0063629150390625,-0.0016140341758728,0.00507354736328125,0.0253682136535645,-0.00208240747451782,0.0204629898071289,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0199603140354156,0.0113003253936768,-0.00263786315917969,0.00975272059440613,0.00552606582641602,-0.00128936767578125,1.78813934326172e-06,-1.54972076416016e-06,0,-1.01327896118164e-06,-1.66893005371094e-06,0,0.0269619226455688,0.0113177299499512,0.00885009765625,0.0221642255783081,0.0175728797912598,0.00786972045898438,0.0378122329711914,0.0285334587097168,0.0133228302001953,0.0218844413757324,0.0352559089660645,0.00905799865722656,0.0734541416168213,0.0578579902648926,-0.0244379043579102,0.0660488605499268,0.0706672668457031,-0.0304670333862305,0.0916662216186523,0.0411264896392822,-0.0118961334228516,0.117982387542725,0.0577690601348877,-0.0151214599609375,0.0254726409912109,0.00959873199462891,-0.00327491760253906,0.00680398941040039,0.0025639533996582,-0.000874519348144531,0.000240802764892578,-0.000154495239257813,5.53131103515625e-05,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0.00340890884399414, +0.00430166721343994,0.000877857208251953,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,-0.00107049942016602,-0.00165319442749023,-0.000279426574707031,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,9.82284545898438e-05,0.000180959701538086,2.6702880859375e-05,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0.0272376537322998,0.000174105167388916,0.00655269622802734,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0.0275740623474121,0.0353116989135742,0.0107564926147461,0.0432562828063965,0.0227468013763428,0.0145292282104492,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06, +0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.0986130237579346,-0.010418713092804,-0.0783872604370117,0.243783712387085,-0.0108641386032104,-0.141231536865234,0.373579978942871,-0.00995802879333496,-0.156295776367188,0.457818746566772,-0.0048975944519043,-0.0703115463256836,0.491699457168579,0.00249981880187988,0.0466518402099609,0.449098825454712,0.0252542495727539,0.155594825744629,0.334151268005371,0.0235977172851563,0.180245399475098, +0.212483406066895,0.00690162181854248,0.197137832641602,0.137148857116699,0.00349879264831543,0.0875415802001953,0.0621218681335449,-3.09944152832031e-06,0.0612897872924805,0.0280680656433105,-0.00108486413955688,0.0241451263427734,0.00950193405151367,-0.0006561279296875,0.00911808013916016,0.00954198837280273,-0.00186002254486084,0.00846385955810547,0.0239934921264648,-0.00214302539825439,0.014979362487793,0.071815013885498,0.00169739127159119,0.0300350189208984,0.0876650810241699,-0.0143496096134186,0.0323572158813477,0.19727611541748,-0.0363855287432671,0.0537042617797852,0.178987741470337,-0.00883239880204201,0.0300846099853516,0.147934436798096,0.00177557021379471,0.000176429748535156,0.134203910827637,0.0119159072637558,-0.00823402404785156,0.132277488708496,0.00881284475326538,-0.031951904296875,0.0642046928405762,0.00606220960617065,-0.013580322265625,0.0163464546203613,0.000596731901168823,-0.00969505310058594,0.0145010948181152,-0.00116118788719177,-0.00990867614746094,0.0426630973815918,-0.00564414262771606,-0.0280361175537109,0.0247988700866699,-0.00176239013671875,-0.0180149078369141,0.0219948291778564,0.000664412975311279,-0.0123424530029297,0.0747983455657959,0.0151237696409225,-0.00421333312988281,0.1527419090271,0.0162039790302515,-0.00968647003173828,0.14022421836853,0.0178578123450279,0.00266170501708984,0.139949321746826,0.0179325640201569,0.00835895538330078,0.219900846481323,-0.00494733452796936,0.0422067642211914,0.192359447479248,-0.0328969284892082,0.0512838363647461,0.0590925216674805,-0.00599934160709381,0.0233230590820313,0.0552554130554199,0.0030975341796875,0.0235662460327148,0.0165929794311523,-0.00262224674224854,0.0132026672363281,0.010587215423584,-0.00162965059280396,0.0105953216552734,0.0145664215087891,-0.000950992107391357,0.015263557434082,0.0272364616394043,-0.000262439250946045,0.0258302688598633,0.0529909133911133,0.000549674034118652,0.0579338073730469,0.0976862907409668,0.00253593921661377,0.0731906890869141,0.148930549621582,0.00423431396484375,0.181401252746582,0.270235538482666, +0.0264279842376709,0.167301177978516,0.389108180999756,0.0214017629623413,0.146491050720215,0.40769362449646,0.00215303897857666,0.0509681701660156,0.420200109481812,0.00350797176361084,-0.0454769134521484,0.373639583587646,0.00190949440002441,-0.113078117370605,0.234936237335205,-0.00633871555328369,-0.119570732116699,0.0837616920471191,-0.0062713623046875,-0.071746826171875,0.0432713031768799,-0.00388944149017334,-0.0299768447875977,0.0388623476028442,-0.00165754556655884,-0.0220394134521484,0.0618753433227539,-0.00225460529327393,-0.0387287139892578,0.179849147796631,0.00682032108306885,-0.0692987442016602,0.308836698532104,0.05329430103302,-0.0582733154296875,0.248277902603149,0.0200564861297607,-0.000338554382324219,0.235311985015869,0.0581557750701904,0.0205535888671875,0.246797800064087,0.046625018119812,0.0577030181884766,0.267519950866699,-0.0156550407409668,0.0909881591796875,0.217994689941406,-0.0408935546875,0.0900602340698242,0.224246978759766,-0.0420398712158203,0.0937004089355469,0.0969524383544922,-0.0289382934570313,0.0548248291015625,0.12263298034668,-0.0158578157424927,0.0525789260864258,0.102671146392822,-0.0114836692810059,0.0389642715454102,0.084012508392334,-0.0104409456253052,0.0303964614868164,0.00968265533447266,-0.00200499594211578,0.0123167037963867,0.0140361785888672,-0.00256958603858948,0.0126266479492188,0.0242152214050293,-0.00348204374313354,0.0146427154541016,0.11257791519165,-0.0114530920982361,0.0321006774902344,0.193585157394409,0.0066453218460083,0.044525146484375,0.0742344856262207,0.0139896869659424,0.0065765380859375,0.106448173522949,0.044166088104248,0.00919818878173828,0.0974111557006836,0.0725729465484619,0.00562572479248047,0.0554413795471191,0.0118582397699356,-0.00443458557128906,0.017391562461853,-0.000358574092388153,-0.013397216796875,0.0193077325820923,-0.00130462646484375,-0.0158481597900391,0.0750501155853271,0.0552229881286621,-0.0115242004394531,0.0514262914657593,0.027684211730957,-0.0149755477905273,0.0882445573806763,0.0582420825958252,0.0144567489624023,0.0906147956848145, +-0.00106757879257202,0.0214967727661133,0.0729591846466064,0.0188553035259247,0.017765998840332,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0.000917673110961914,0.000937342643737793,0.000233650207519531,1.43051147460938e-05,1.29938125610352e-05,3.814697265625e-06,0.000987052917480469,0.00064241886138916,0.000247955322265625,0.0596766471862793,0.114591956138611,0.0159931182861328,0.0827960968017578,0.104445457458496,0.0213212966918945,0.0657963752746582,0.0096701979637146,0.0158658027648926,0.123732566833496,8.04662704467773e-06,0.0295357704162598,0.090184211730957,-0.0100013613700867,0.0213441848754883,0.0502614974975586,-0.00972408056259155,0.0118331909179688,0.0467782020568848,-0.016068696975708,0.0109944343566895,-0.0183010101318359,-0.0742177963256836,-0.00532817840576172,0.0457687377929688,-0.0282473564147949,0.0105381011962891,0.0121359825134277,0.00457310676574707,-0.00156021118164063,0.0750899314880371,0.0384180545806885,0.00353050231933594,0.0358788967132568,0.0322830677032471,-0.00492477416992188,0.065187931060791,0.0619609355926514,-0.00493049621582031,0.127501010894775,0.0626354217529297,0.0312042236328125,0.0742924213409424,0.048267126083374,0.0184459686279297,0.0274176597595215,0.037442684173584,0.00707817077636719,0.115433692932129,-0.0273041725158691,0.0268640518188477,0.12520694732666,-0.0460220575332642,0.0292901992797852,0.096381664276123,-0.0179497003555298,0.0227775573730469,0.0663161277770996,-0.0582417249679565,0.0149679183959961,0.0870394706726074,-0.0224457979202271,0.0205087661743164,0.105979442596436,-0.021424412727356,0.024960994720459,0.10612154006958,-0.0123015344142914,0.0250129699707031,0.0721683502197266,0.00932585075497627,0.0175495147705078,0.118720054626465,0.0563452243804932,0.0292024612426758,0.0439791679382324,0.0731871128082275,0.0117616653442383,0.147531032562256,0.0444884896278381,0.0359678268432617,0.0748624801635742,0.0554708242416382,0.0187892913818359,0.0254771709442139,0.026197075843811,0.00649452209472656,0.0275394916534424, +0.0192332863807678,0.00691127777099609,0.0233209133148193,0.0794694423675537,0.00684642791748047,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0.00243031978607178,0.000277459621429443,0.000583648681640625,0.0836323499679565,0.00968503952026367,0.0200862884521484,0.114145040512085,0.043732762336731,-0.00831413269042969,0.170982360839844,0.0942243337631226,0.00810527801513672,0.1872239112854,0.065908670425415,0.00882148742675781,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,-1.16825103759766e-05,4.76837158203125e-06,1.9073486328125e-06,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06, +0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06, +0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06, +0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06, +0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, +0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06, +0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0, +0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06, +0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06, +0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0, +5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,9.01222229003906e-05,-2.6702880859375e-05,-6.103515625e-05,0.0321485996246338,-0.00655591487884521,-0.0216398239135742,0.0700879096984863,-0.0146980285644531,-0.0824975967407227,0.223358631134033,-0.0139434337615967,-0.15715503692627,0.330886125564575,-0.01417076587677,-0.159114837646484,0.437490463256836,-0.00856173038482666,-0.0840988159179688,0.476159811019897,0.00368964672088623,-0.0126838684082031,0.402390956878662,0.0114609003067017,0.160143852233887,0.331011295318604,0.0125656127929688,0.187532424926758,0.26105260848999,0.00920557975769043,0.210186004638672,0.16370964050293,0.00413811206817627,0.100796699523926,0.0594801902770996,-0.00112771987915039,0.0589208602905273,0.0241637229919434,-0.00204008817672729,0.020411491394043,0.0523378849029541,0.00293377041816711,-0.0175380706787109,0.00878310203552246,0.000913232564926147,-0.00543594360351563,0.075472354888916,0.0042424201965332,-0.0241355895996094,0.114959001541138,0.00276842713356018,-0.0207653045654297,0.143499851226807,-0.00477446615695953,-0.00384235382080078,0.133800268173218,-0.0123673677444458,0.0228404998779297,0.167060375213623,-0.0316794216632843,0.0475444793701172,0.0866408348083496,-0.0136468112468719,0.0339651107788086,0.0755414962768555,-0.00162374973297119,0.0325021743774414,0.0195083618164063,-0.00312268733978271,0.0130949020385742,0.00583982467651367,-0.00163877010345459,0.00503444671630859,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06, +0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,9.77516174316406e-06,-3.03983688354492e-06,-0.0216598510742188,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,3.814697265625e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-4.24385070800781e-05,2.74628400802612e-05,3.71932983398438e-05,5.7220458984375e-06,0.0001068115234375,0,0.000710010528564453,-6.02006912231445e-06,0.000169754028320313,0.000545978546142578,-6.32107257843018e-05,0.00012969970703125,0.000487804412841797,0.000120282173156738,0.000118255615234375,0.000793933868408203,0.000207424163818359,0.000191688537597656,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4260 { + a: 0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355,0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739, +-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454, +0.314069658517838,-0.133558943867683,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537, +-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064,-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421, +-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978, +-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089,-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543, +-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662, +-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653,-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458, +-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722, +-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367, +-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742, +-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119, +0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453, +-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.248432002961636,-1.09178760647774,-1.41496700048447,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342, +-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806, +-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698, +0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681, +0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704, +1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554, +-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614, +0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091, +-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545, +-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207, +-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888, +-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403, +-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588, +-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418, +-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686, +-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952, +-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393, +-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373, +-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661, +-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877, +0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027, +-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128, +0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524, +0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816, +-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285, +-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807663840112, "Geometry::Eye_Right_Up", "Shape" { + Version: 100 + Indexes: *1436 { + a: 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,405,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,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471, +6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6802,6803,6804,6805,6806,6807,6808,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515, +7516,7518,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172, +8173,8174,8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *4308 { + a: -0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.089337170124054,-0.00554847717285156,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778,-0.103086471557617,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.0190379619598389,0.199966549873352,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.00541162490844727,0.0586265325546265,0.0198440551757813,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00215601921081543,0.0157150626182556,0.00160980224609375,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0190379619598389,0.199966371059418,-0.0269260406494141,0.0111958980560303,0.298364341259003,-0.0650091171264648,0.00152707099914551,0.353335618972778,-0.103085517883301,0.000825643539428711,0.376742601394653,-0.116958618164063,-0.00203275680541992,0.350414991378784,-0.0986337661743164,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.0207724571228027,0.182315528392792,-0.0221233367919922,-0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.0893371105194092,-0.00554847717285156,-0.0207724571228027,0.182315528392792,-0.0221233367919922,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778, +-0.103085517883301,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.0190379619598389,0.199966490268707,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.00561618804931641,-0.0023496150970459,0.0375702381134033,0.0109281539916992,-0.00224804878234863,0.0636978447437286,0.0188179016113281,-0.00159883499145508,0.0908813253045082,0.026524543762207,-0.00166559219360352,0.11248779296875,0.0328731536865234,-0.000680923461914063,0.108485393226147,0.0317630767822266,0.000680446624755859,0.0882735997438431,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471039116382599,0.0145492553710938,0.00215721130371094,0.02490234375,0.00716114044189453,0.001190185546875,0.0142379999160767,0.00361347198486328,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.005615234375,-0.0023493766784668,0.0375702232122421,0.0109281539916992,-0.00224804878234863,0.0636978298425674,0.0188188552856445,-0.00159883499145508,0.0908813178539276,0.026524543762207,-0.00166559219360352,0.112487852573395,0.0328731536865234,-0.000680923461914063,0.108485400676727,0.0317630767822266,0.000680446624755859,0.0882736444473267,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471038967370987,0.0145492553710938,0.00215721130371094,0.0249023661017418,0.00716209411621094,0.001190185546875,0.0142379105091095,0.00361251831054688,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0.001190185546875,0.0142379701137543,0.00361347198486328,0.00215721130371094,0.02490234375,0.00716209411621094,0.00268077850341797,0.0471039116382599,0.0145492553710938,0.00168085098266602,0.0699157640337944,0.020665168762207,0.000680446624755859,0.0882736444473267,0.0263462066650391,-0.000680923461914063, +0.108485393226147,0.0317630767822266,-0.00166559219360352,0.112487807869911,0.0328731536865234,-0.00159883499145508,0.0908813253045082,0.026524543762207,-0.00224781036376953,0.0636978298425674,0.0188179016113281,-0.0023493766784668,0.0375702381134033,0.0109281539916992,-0.00262594223022461,0.0172897279262543,0.00561618804931641,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00511372089385986,0.0152137279510498,0.0203084945678711,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.089337170124054,-0.00554847717285156,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0185613632202148,0.259619832038879,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778,-0.103086471557617,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.0190379619598389,0.199966549873352,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.00541162490844727,0.0586265325546265,0.0198440551757813,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00215601921081543,0.0157150626182556,0.00160980224609375,0.0105254650115967,0.0434127748012543,-0.000464439392089844,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0190379619598389,0.199966430664063,-0.0269260406494141,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.00152707099914551,0.353335618972778,-0.103085517883301,0.000825643539428711,0.376742660999298,-0.116958618164063,-0.00203275680541992,0.350415110588074,-0.0986337661743164,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.0185613632202148,0.259619772434235,-0.0453500747680664,-0.0207724571228027,0.182315528392792,-0.0221233367919922,-0.0106840133666992,0.089337170124054,-0.00554847717285156,0,0.0447372794151306,0,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824653148651, +0.000777244567871094,0,0.0447372794151306,0,-0.0106840133666992,0.0893371105194092,-0.00554847717285156,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0185613632202148,0.25961971282959,-0.0453500747680664,-0.00718212127685547,0.302484154701233,-0.0725994110107422,-0.00203275680541992,0.350415110588074,-0.0986337661743164,0.000825643539428711,0.376742601394653,-0.116958618164063,0.00152707099914551,0.353335618972778,-0.103085517883301,0.0111958980560303,0.298364222049713,-0.0650091171264648,0.0190379619598389,0.199966430664063,-0.0269260406494141,0.0175065994262695,0.105868518352509,-0.00580120086669922,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.00561618804931641,-0.0023496150970459,0.0375702381134033,0.0109281539916992,-0.00224804878234863,0.0636978447437286,0.0188179016113281,-0.00159883499145508,0.0908813253045082,0.026524543762207,-0.00166559219360352,0.11248779296875,0.0328731536865234,-0.000680923461914063,0.108485393226147,0.0317630767822266,0.000680446624755859,0.0882735997438431,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471039116382599,0.0145492553710938,0.00215721130371094,0.02490234375,0.00716114044189453,0.001190185546875,0.0142379999160767,0.00361347198486328,0.00215578079223633,0.0157150626182556,0.00160980224609375,-0.00262618064880371,0.0172897279262543,0.005615234375,-0.0023493766784668,0.0375702232122421,0.0109281539916992,-0.00224804878234863,0.0636978149414063,0.0188188552856445,-0.00159883499145508,0.0908813029527664,0.026524543762207,-0.00166559219360352,0.112487822771072,0.0328731536865234,-0.000680923461914063,0.108485400676727,0.0317630767822266,0.000680446624755859,0.0882736444473267,0.0263462066650391,0.00168085098266602,0.069915771484375,0.020665168762207,0.00268125534057617,0.0471038967370987,0.0145492553710938,0.00215721130371094,0.0249023661017418,0.00716209411621094,0.001190185546875,0.0142379105091095, +0.00361251831054688,-0.00134897232055664,0.0151824951171875,0.000777244567871094,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0.001190185546875,0.0142379701137543,0.00361347198486328,0.00215721130371094,0.02490234375,0.00716209411621094,0.00268077850341797,0.0471039116382599,0.0145492553710938,0.00168085098266602,0.069915771484375,0.020665168762207,0.000680446624755859,0.0882736369967461,0.0263462066650391,-0.000680923461914063,0.108485393226147,0.0317630767822266,-0.00166559219360352,0.112487807869911,0.0328731536865234,-0.00159883499145508,0.0908813178539276,0.026524543762207,-0.00224781036376953,0.0636978447437286,0.0188179016113281,-0.0023493766784668,0.0375702455639839,0.0109281539916992,-0.00262594223022461,0.0172897279262543,0.00561618804931641,0.00215578079223633,0.0157150626182556,0.00160980224609375,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0.00490435818210244,0.0584185123443604,0.000736236572265625,8.69575378601439e-05,0.112455129623413,0.000485420227050781,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,6.22060470050201e-05,0.0804512500762939,0.000347137451171875,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0.000254413869697601,0.00131130218505859,-0.000378608703613281,0,0.0500063896179199,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0.0229835510253906,0.108558654785156,-0.00851726531982422,0.0272183418273926,0.207606196403503,-0.0364656448364258,0.0140557289123535,0.287662386894226,-0.0913305282592773,-0.000494956970214844,0.353499531745911,-0.149645805358887,0.00197863578796387,0.384345054626465,-0.160463333129883,-0.0097804069519043,0.341617822647095,-0.0907707214355469, +-0.0343132019042969,0.271619081497192,-0.0584993362426758,-0.0182085037231445,0.21390688419342,-0.0273561477661133,-0.0123066902160645,0.0922927856445313,-0.00557327270507813,-0.00175285339355469,0.375501871109009,-0.126223564147949,-0.00374102592468262,0.041577160358429,0.011561393737793,-0.00382757186889648,0.0799316465854645,0.0214080810546875,-0.00574183464050293,0.00979766249656677,0.00573348999023438,0.01180100440979,0.0292496085166931,-0.00340080261230469,-0.00243163108825684,0.119226098060608,0.030548095703125,-0.00235915184020996,0.150872826576233,0.0383310317993164,-6.81877136230469e-05,0.141830429434776,0.036773681640625,0.00219440460205078,0.109797656536102,0.0297889709472656,0.00316810607910156,0.0876602232456207,0.023895263671875,0.0051722526550293,0.0581252872943878,0.0171747207641602,0.00331211090087891,0.024243175983429,0.00723648071289063,0.00261068344116211,0.00842589139938354,0.00366020202636719,-0.00647449493408203,0.0431656241416931,-0.00140380859375,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0.0246649980545044,0.246665000915527,0.00303173065185547,0.00334277749061584,0.456263422966003,0.0108251571655273,0.154863953590393,0.703448176383972,0.137066841125488,0.109751880168915,0.378051519393921,0.0480270385742188,0.137885212898254,0.523767709732056,0.0637903213500977,0.191741824150085,0.490942001342773,-0.00625991821289063,0.00177502632141113,0.590751647949219,0.0753660202026367, +-0.00606799125671387,0.55527925491333,0.00229835510253906,-0.0103864669799805,0.47050952911377,-0.0252504348754883,-0.0473291873931885,0.452560424804688,-0.0395317077636719,-0.107317447662354,0.126441240310669,-0.0330076217651367,-0.0490045547485352,0.334876775741577,-0.0190849304199219,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0.000286787748336792,0.270729660987854,0.00114631652832031,0.0226919651031494,0.109617352485657,-0.00602340698242188,0.0693250894546509,0.558444738388062,0.0153436660766602,0.0296266078948975,0.571545124053955,0.108798027038574,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06, +0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0.0175065994262695,0.105868518352509,-0.00580120086669922, +0.0190379619598389,0.199966430664063,-0.0269260406494141,0.0111958980560303,0.298364281654358,-0.0650091171264648,0.00152707099914551,0.353335618972778,-0.103086471557617,0.000825643539428711,0.376742720603943,-0.116812705993652,-0.00203275680541992,0.350415229797363,-0.0986337661743164,-0.00718212127685547,0.302484154701233,-0.0725984573364258,-0.0185613632202148,0.259619832038879,-0.04534912109375,-0.0207724571228027,0.182315587997437,-0.0221233367919922,-0.0106840133666992,0.089337170124054,-0.00554847717285156,-0.00594902038574219,0.0447372794151306,-0.00125312805175781,-0.00134897232055664,0.0151824951171875,0.000777244567871094,0.001190185546875,0.0142379999160767,0.00361251831054688,0.00215721130371094,0.02490234375,0.00716114044189453,0.00268077850341797,0.0471038818359375,0.0145492553710938,0.00168085098266602,0.069915771484375,0.020665168762207,0.000680446624755859,0.0882736295461655,0.0263462066650391,-0.000680923461914063,0.108485426753759,0.0317630767822266,-0.00166559219360352,0.112533560954034,0.0328731536865234,-0.00159883499145508,0.09088134765625,0.026524543762207,-0.00224804878234863,0.0636978149414063,0.0188179016113281,-0.0023496150970459,0.0375702083110809,0.0109281539916992,-0.00262618064880371,0.0172897279262543,0.00561618804931641,0.00215601921081543,0.0157150328159332,0.00160980224609375,0.0105254650115967,0.0434128046035767,-0.000464439392089844,0.00358390808105469,0.0276260375976563,0.00311565399169922,0.000456571578979492,0.0215805172920227,0.00531768798828125,-0.000558376312255859,0.031361386179924,0.0100059509277344,-0.000854730606079102,0.0459472686052322,0.0157155990600586,-0.000890493392944336,0.0594192519783974,0.0207805633544922,-0.00107145309448242,0.0698196366429329,0.0249290466308594,-0.00102090835571289,0.0688781663775444,0.0246143341064453,-0.000574111938476563,0.0594909638166428,0.0211057662963867,8.96453857421875e-05,0.0473693981766701,0.0164384841918945,0.000590801239013672,0.0332931578159332,0.0112724304199219,0.000636577606201172,0.0219604671001434,0.00639247894287109, +-0.000194072723388672,0.016680896282196,0.00312709808349609,-0.0021357536315918,0.0235031247138977,0.00108814239501953,-0.00487947463989258,0.041851818561554,-0.00106239318847656,-0.00759124755859375,0.0735152363777161,-0.00502490997314453,-0.0081634521484375,0.164313912391663,-0.0167045593261719,-0.00613927841186523,0.24040162563324,-0.0340747833251953,-0.00288772583007813,0.257696390151978,-0.053257942199707,-0.000299453735351563,0.325610280036926,-0.0685253143310547,0.00104475021362305,0.340882778167725,-0.0779905319213867,0.00197219848632813,0.327918887138367,-0.0687875747680664,0.0057682991027832,0.291744232177734,-0.0416946411132813,0.01004958152771,0.204445838928223,-0.0181217193603516,0.0109395980834961,0.0915831923484802,-0.00472450256347656,0.00765681266784668,0.0476394891738892,0.00145149230957031,0.00471532344818115,0.034954845905304,3.33786010742188e-05,0.00605249404907227,0.0652878284454346,-0.00660610198974609,0.00448155403137207,0.0933593511581421,0.020319938659668,0.00531435012817383,0.132469296455383,0.00202846527099609,0.00429344177246094,0.160261631011963,-0.018157958984375,0.00195860862731934,0.179245471954346,-0.0314254760742188,0.00404453277587891,0.148461580276489,-0.0272750854492188,0.00444650650024414,0.132002234458923,-0.0164861679077148,0.00200700759887695,0.107638597488403,-0.0372381210327148,-0.00069427490234375,0.0771942138671875,-0.020167350769043,-0.00242185592651367,0.0480575561523438,-0.00778388977050781,-0.00230503082275391,0.0304046869277954,-0.00259780883789063,-0.00143051147460938,0.0174270868301392,0.000502586364746094,-0.000823020935058594,0.0133453607559204,0.0028839111328125,-0.000825881958007813,0.0161071866750717,0.00625228881835938,-0.00110626220703125,0.0198150649666786,0.00937938690185547,-0.00169134140014648,0.0300872921943665,0.0150079727172852,-0.00193500518798828,0.0374038517475128,0.0191936492919922,-0.00168800354003906,0.0427886843681335,0.0215368270874023,-0.00104331970214844,0.0440613031387329,0.0225696563720703,-0.000339508056640625,0.0382537841796875,0.0189647674560547, +8.72611999511719e-05,0.0307205021381378,0.0146484375,0.000461101531982422,0.023152157664299,0.00980377197265625,0.00125837326049805,0.0197219848632813,0.00579357147216797,0.00271117687225342,0.0221481025218964,0.00260639190673828,0.08687424659729,0.509587287902832,0.10395336151123,0.146368622779846,0.498939871788025,0.055079460144043,0.0327569246292114,0.444639205932617,-0.00915050506591797,0.00209164619445801,0.056284487247467,-0.000683784484863281,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,-0.000103950500488281,0.000472068786621094,-8.58306884765625e-06,-0.0344047546386719,0.210867881774902,-0.0122623443603516,-0.0315563678741455,0.444688558578491,0.00304508209228516,0.0296940803527832,0.507054805755615,0.0551080703735352,0.0460715293884277,0.337499141693115,-0.0439329147338867,-0.0221738815307617,0.31860089302063,-0.0515708923339844,-0.0225749015808105,0.194423675537109,-0.0497236251831055,-0.000167369842529297,0.0625293254852295,-0.0186996459960938,0,0.0660445690155029,-0.0184612274169922,0,0.0660582780838013,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0.00201606750488281,0.0542576313018799,-0.000658988952636719,0.113526344299316,0.178548812866211,-0.0131702423095703,0.0675196647644043,0.282259106636047,-0.0125761032104492,0.0391246676445007,0.185465097427368,-0.0582218170166016,0.0527400970458984,0.188737392425537,-0.0711154937744141,0.0569877624511719,0.17251443862915,-0.0540847778320313,0.0293891429901123, +0.231223821640015,-0.0753583908081055,0.00630688667297363,0.115139007568359,-0.0435619354248047,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06, +0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0, +0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.100006103515625,0,0,0.100006103515625,0,0,0.0999999046325684,0,0,0.0999999046325684,0,0,0.0500001907348633,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06, +0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06, +0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06, +0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06, +0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06, +0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06, +0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06, +0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0, +5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,3.31401824951172e-05,8.0108642578125e-05,-6.67572021484375e-06,0.0111274719238281,0.0280662775039673,-0.00357913970947266,0.0220537185668945,0.105113983154297,-0.00862216949462891,0.026519775390625,0.215512752532959,-0.0343732833862305,0.0142712593078613,0.302361130714417,-0.0845785140991211,-0.000134944915771484,0.376999497413635,-0.137645721435547,0.00103354454040527,0.418821334838867,-0.147113800048828,-0.0029139518737793,0.409454941749573,-0.114259719848633,-0.010528564453125,0.3746018409729,-0.0822439193725586,-0.0158753395080566,0.297749280929565,-0.0548686981201172,-0.0179834365844727,0.207919239997864,-0.0261011123657227,-0.0119132995605469,0.0897766351699829,-0.00549697875976563,-0.00624799728393555,0.0419510006904602,-0.00141334533691406,-0.00368404388427734,0.040069580078125,0.0109777450561523,-0.00557565689086914,0.00945815443992615,0.00550556182861328,-0.00386810302734375,0.0768585205078125,0.0200071334838867,-0.00251674652099609,0.114495843648911,0.0282278060913086,-0.00223827362060547,0.144746407866478,0.0352497100830078,0.000264644622802734,0.136624112725258,0.0338764190673828,0.00255155563354492,0.106455981731415,0.0277719497680664,0.00343847274780273,0.0851318836212158,0.0224676132202148,0.00516510009765625,0.0559524297714233,0.0162391662597656,0.00321483612060547,0.0235977172851563,0.00705528259277344,0.00249433517456055,0.00820314884185791,0.00362396240234375,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06, +0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,3.09944152832031e-06,0.0590249300003052,0,0,0.170155763626099,0,0,0.251310229301453,0,0,0.281938791275024,0,0,0.281935691833496,0,0,0.28193724155426,0,0,0.234009504318237,0,0,0.211369156837463,0,0,0.139455080032349,0,0,0.0718922019004822,0,0,7.62939453125e-06,0,0,3.814697265625e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,4.27216291427612e-05,4.48226928710938e-05,5.7220458984375e-06,0.0001068115234375,0,0,-6.09457492828369e-06,0,0,1.53481960296631e-06,0,0,-5.33461570739746e-06,0,0,3.06963920593262e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4308 { + a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, +0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, +-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714, +-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064, +-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796, +0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089, +-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705, +-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653, +-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454, +0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694, +-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369, +-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974, +-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487, +0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869, +-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045, +0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687, +-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682, +0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737, +0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531,0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389, +0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297, +-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077, +-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191, +-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702,-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393, +0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608, +-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661,-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542, +0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097,0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835, +-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281, +-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435, +-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527, +-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743, +1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444, +0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027, +0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006,0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137, +0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074, +-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394,0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337, +0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912, +1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043,-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653, +-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.11738583445549,-0.0391004681587219,-0.793925583362579,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205, +0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807663838096, "Geometry::Eye_Right_Down", "Shape" { + Version: 100 + Indexes: *1432 { + a: 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,405,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,563,5880,5881,5888,5893,5895,5896,5897,5898,5899,5900,5905,5906,5908,5909,5910,5911,5912,5913,5914,5916,5919,5920,5925,5926,5927,5928,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5978,5985,5987,5992,5995,6016,6019,6035,6036,6040,6042,6056,6057,6058,6060,6065,6072,6074,6075,6078,6092,6093,6096,6098,6102,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6124,6126,6128,6129,6131,6132,6133,6134,6136,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6157,6158,6159,6160,6161,6162,6163,6177,6191,6193,6195,6196,6198,6199,6200,6205,6218,6220,6221,6222,6223,6224,6225,6227,6230,6231,6232,6233,6234,6235,6239,6241,6243,6244,6247,6251,6252,6253,6255,6256,6257,6258,6259,6261,6262,6264,6265,6268,6270,6271,6273,6274,6276,6277,6280,6281,6284,6286,6288,6291,6292,6293,6294,6295,6296,6300,6301,6303,6304,6305,6306,6307,6308,6310,6311,6312,6313,6314,6315,6316,6318,6320,6322,6324,6329,6330,6331,6332,6333,6334,6335,6336,6338,6339,6340,6341,6343,6345,6346,6347,6353,6354,6355,6356,6357,6358,6359,6360,6361,6363,6364,6365,6370,6371,6372,6411,6423,6425,6426,6427,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471, +6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6521,6522,6523,6524,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6564,6565,6566,6568,6569,6571,6572,6573,6575,6576,6578,6580,6582,6584,6585,6586,6587,6588,6589,6590,6591,6594,6595,6599,6600,6601,6602,6603,6605,6606,6607,6608,6609,6610,6613,6615,6616,6617,6618,6620,6621,6622,6623,6624,6625,6626,6627,6628,6631,6633,6635,6636,6637,6638,6639,6640,6641,6642,6643,6645,6648,6649,6650,6651,6652,6653,6654,6655,6659,6660,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6680,6683,6684,6685,6686,6687,6688,6689,6690,6692,6694,6695,6696,6697,6698,6700,6701,6702,6703,6704,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6725,6726,6729,6730,6732,6733,6734,6736,6737,6738,6744,6745,6747,6748,6750,6751,6752,6753,6756,6757,6758,6759,6760,6761,6764,6765,6768,6770,6771,6772,6774,6776,6777,6778,6779,6780,6781,6782,6784,6785,6788,6789,6790,6791,6792,6793,6794,6796,6797,6800,6802,6803,6804,6805,6806,6807,6808,6818,6820,6826,6836,6837,6838,6839,6843,6844,6846,6847,6848,6849,6850,6851,6852,6853,6854,6859,6860,6863,6865,6875,6889,6890,6899,6900,6902,6903,6912,6913,6914,6923,6924,6925,6926,6935,6936,6937,6938,6947,6950,6953,7146,7147,7156,7157,7159,7160,7161,7164,7172,7186,7189,7193,7197,7199,7204,7208,7221,7225,7228,7233,7234,7235,7236,7248,7250,7252,7256,7291,7311,7312,7313,7314,7315,7316,7317,7318,7320,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7343,7344,7345,7346,7347,7348,7349,7351,7352,7353,7354,7355,7356,7357,7358,7360,7367,7369,7374,7377,7398,7401,7417,7418,7422,7424,7438,7439,7440,7442,7447,7454,7456,7457,7460,7474,7475,7478,7480,7484,7493,7494,7495,7496,7497,7498,7499,7500,7501,7506,7508,7510,7511,7513,7514,7515,7516,7518, +7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7539,7540,7541,7542,7543,7545,7559,7573,7575,7577,7578,7580,7581,7582,7587,7600,7602,7603,7604,7605,7606,7607,7609,7612,7613,7614,7615,7616,7617,7621,7623,7625,7626,7629,7633,7634,7635,7637,7638,7639,7640,7641,7643,7644,7646,7647,7650,7652,7653,7655,7656,7658,7659,7662,7663,7666,7668,7670,7673,7674,7675,7676,7677,7678,7682,7683,7685,7686,7687,7688,7689,7690,7692,7693,7694,7695,7696,7697,7698,7700,7702,7704,7706,7711,7712,7713,7714,7715,7716,7717,7718,7720,7721,7722,7723,7725,7727,7728,7729,7735,7736,7737,7738,7739,7740,7741,7742,7743,7745,7746,7747,7752,7753,7754,7793,7805,7807,7808,7809,7812,7814,7815,7816,7817,7818,7819,7820,7821,7822,7824,7828,7829,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7861,7862,7863,7864,7865,7866,7867,7868,7870,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7883,7884,7885,7886,7887,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7903,7904,7905,7906,7909,7911,7912,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7934,7935,7936,7937,7938,7941,7946,7947,7948,7950,7951,7953,7954,7955,7957,7958,7960,7962,7964,7966,7967,7968,7969,7970,7971,7972,7973,7976,7977,7981,7982,7983,7984,7985,7987,7988,7989,7990,7991,7992,7995,7997,7998,7999,8000,8002,8003,8004,8005,8006,8007,8008,8009,8010,8013,8015,8017,8018,8019,8020,8021,8022,8023,8024,8025,8027,8030,8031,8032,8033,8034,8035,8036,8037,8041,8042,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8062,8065,8066,8067,8068,8069,8070,8071,8072,8074,8076,8077,8078,8079,8080,8082,8083,8084,8085,8086,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8107,8108,8111,8112,8114,8115,8116,8118,8119,8120,8126,8127,8129,8130,8132,8133,8134,8135,8138,8139,8140,8141,8142,8143,8146,8147,8150,8152,8153,8154,8156,8158,8159,8160,8161,8162,8163,8164,8166,8167,8170,8171,8172,8173,8174, +8175,8176,8178,8179,8182,8186,8187,8200,8202,8208,8218,8219,8220,8221,8225,8226,8228,8229,8230,8231,8232,8233,8234,8235,8236,8241,8242,8245,8247,8257,8271,8272,8281,8282,8284,8285,8294,8295,8296,8305,8306,8307,8308,8317,8318,8319,8320,8329,8332,8335,8528,8529,8538,8539,8541,8542,8543,8552,8565,8568,8572,8576,8578,8583,8585,8598,8602,8603,8608,8609,8610,8611,8623,8625,8629,8660,8679,8680,8681,8682,8683,8684,8685,8687,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8737,8739,8740,8741,8742,8743,8744,8745,8746,8748,8750,8751,8752,8753,8754,8756,8757,8758,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8771,8772,8773,8774,8775,8776,8777,8778,8779,8781,8782,8783,8785,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8799 + } + Vertices: *4296 { + a: -0.000557422637939453,-0.0152435302734375,-0.00279998779296875,-7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.0118670463562012,-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.480979561805725,0.13865852355957,0.00423359870910645,-0.351379334926605,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0141468048095703,-0.0298134088516235,0.0185604095458984,-0.00112724304199219,-0.0158247947692871,-0.00244331359863281,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0106139183044434,-0.213683784008026,0.0355854034423828,0.00423359870910645,-0.35137939453125,0.0896282196044922,0.00174903869628906,-0.48097962141037,0.13865852355957,-0.0076596736907959,-0.516691148281097,0.135008811950684,-0.011866569519043,-0.491652429103851,0.0999355316162109,-0.00965499877929688,-0.43150407075882,0.0530052185058594,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00244855880737305,-0.213907301425934,-0.00314903259277344,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000416278839111328,-0.11182028055191,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.011866569519043, +-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.48097962141037,0.13865852355957,0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.00112748146057129,-0.0158248245716095,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515014648438,-0.0219583511352539,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037892401218,-0.0383234024047852,-0.0084538459777832,-0.0857223197817802,-0.0327425003051758,-0.00986433029174805,-0.0639732033014297,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519371032714844,-0.00112724304199219,-0.0158248543739319,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515014648438,-0.0219583511352539,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037884950638,-0.0383234024047852,-0.0084538459777832,-0.0857223570346832,-0.0327425003051758,-0.00986433029174805,-0.0639731884002686,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519466400146484,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.00285625457763672,-0.0136551260948181,-0.00519466400146484,-0.00494718551635742,-0.0237579345703125, +-0.00962543487548828,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00986433029174805,-0.0639731958508492,-0.0230445861816406,-0.0084538459777832,-0.0857223272323608,-0.0327425003051758,-0.0057673454284668,-0.106037884950638,-0.0383234024047852,0.00181961059570313,-0.110366821289063,-0.038330078125,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00699329376220703,-0.0618515089154243,-0.0219583511352539,0.0060875415802002,-0.036053404211998,-0.0131378173828125,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.00511372089385986,0.0152137279510498,0.0203084945678711,-0.000557422637939453,-0.0152435302734375,-0.00279998779296875,-7.86781311035156e-05,-0.0456862449645996,-0.00543403625488281,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.0118670463562012,-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.480979561805725,0.13865852355957,0.00423359870910645,-0.351379334926605,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0141468048095703,-0.0298134088516235,0.0185604095458984,-0.00112724304199219,-0.0158247947692871,-0.00244331359863281,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0106139183044434,-0.213683784008026,0.0355854034423828,0.00423359870910645,-0.35137939453125,0.0896282196044922,0.00174903869628906,-0.48097962141037,0.13865852355957,-0.0076596736907959,-0.516691148281097,0.135008811950684,-0.011866569519043,-0.491652429103851,0.0999355316162109,-0.00965499877929688,-0.43150407075882,0.0530052185058594,-0.00641536712646484, +-0.353680908679962,0.0443191528320313,-0.00244855880737305,-0.213907301425934,-0.00314903259277344,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,0.000416278839111328,-0.11182028055191,-0.00732135772705078,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,-0.00641536712646484,-0.353680908679962,0.0443191528320313,-0.00965499877929688,-0.43150407075882,0.053004264831543,-0.011866569519043,-0.491652429103851,0.0999355316162109,-0.0076596736907959,-0.516691148281097,0.135008811950684,0.00174903869628906,-0.48097962141037,0.13865852355957,0.00423359870910645,-0.35137939453125,0.0896282196044922,-0.0106139183044434,-0.213683784008026,0.0355854034423828,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.00112748146057129,-0.0158248245716095,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515014648438,-0.0219583511352539,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037892401218,-0.0383234024047852,-0.0084538459777832,-0.0857223197817802,-0.0327425003051758,-0.00986433029174805,-0.0639732033014297,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519371032714844,-0.00112724304199219,-0.0158248543739319,-0.00244331359863281,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,0.0060875415802002,-0.0360534191131592,-0.0131378173828125,0.00699329376220703,-0.0618515163660049,-0.0219583511352539,0.00543522834777832,-0.0888824462890625, +-0.0306100845336914,0.00181961059570313,-0.110366821289063,-0.038330078125,-0.0057673454284668,-0.106037884950638,-0.0383234024047852,-0.0084538459777832,-0.0857223570346832,-0.0327425003051758,-0.00986433029174805,-0.0639731884002686,-0.0230445861816406,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00285625457763672,-0.0136550664901733,-0.00519466400146484,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.000557422637939453,-0.0152434706687927,-0.00279998779296875,-0.00285625457763672,-0.0136551260948181,-0.00519466400146484,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00751304626464844,-0.0452880561351776,-0.0185632705688477,-0.00986433029174805,-0.0639731884002686,-0.0230445861816406,-0.0084538459777832,-0.0857223197817802,-0.0327425003051758,-0.0057673454284668,-0.106037870049477,-0.0383234024047852,0.00181961059570313,-0.110366836190224,-0.038330078125,0.00543522834777832,-0.0888824462890625,-0.0306100845336914,0.00699329376220703,-0.0618515089154243,-0.0219583511352539,0.0060875415802002,-0.036053404211998,-0.0131378173828125,0.00487399101257324,-0.0161117315292358,-0.00691032409667969,-0.00112724304199219,-0.0158248245716095,-0.00244331359863281,0.00511372089385986,0.0152137279510498,0.0203084945678711,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,6.09457492828369e-06,0,0,-6.10947608947754e-06,0,0,1.54972076416016e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,4.52995300292969e-06,0,0,3.03983688354492e-06,0,0,-0.0499999523162842,0,0,-0.0499939918518066,0,0,4.52995300292969e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-3.03983688354492e-06,0,-0.0191645622253418,-0.125084578990936, +4.9591064453125e-05,-0.0165534019470215,-0.257076680660248,0.046295166015625,-0.00422120094299316,-0.426436960697174,0.114619255065918,0.00702023506164551,-0.544161915779114,0.16934871673584,-0.0083315372467041,-0.576777756214142,0.165550231933594,-0.00770854949951172,-0.458649933338165,0.056675910949707,-0.00443410873413086,-0.376652419567108,0.0436382293701172,-0.000653743743896484,-0.277825951576233,-0.00839328765869141,0.000598430633544922,-0.119400441646576,-0.00846767425537109,-0.0125722885131836,-0.533011496067047,0.119406700134277,0.00862360000610352,-0.039508044719696,-0.0143470764160156,0.0107743740081787,-0.0773254185914993,-0.0262718200683594,0.00820565223693848,-0.00790253281593323,-0.00690746307373047,-0.0118691921234131,-0.0319076180458069,0.00249385833740234,0.00865936279296875,-0.116445906460285,-0.0377359390258789,0.00370097160339355,-0.147833228111267,-0.0485076904296875,-0.00942730903625488,-0.138458237051964,-0.0479660034179688,-0.0127339363098145,-0.106282025575638,-0.0392827987670898,-0.0123934745788574,-0.0843368470668793,-0.0317935943603516,-0.0111179351806641,-0.0555984377861023,-0.0223064422607422,-0.00623226165771484,-0.022753894329071,-0.00963211059570313,-0.00362730026245117,-0.00764161348342896,-0.00446796417236328,-0.000436782836914063,-0.0446792244911194,-0.00568962097167969,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,6.52670860290527e-06,-0.00385260581970215, +-1.71661376953125e-05,0.000580698251724243,-0.00824034214019775,-2.19345092773438e-05,0.0117418766021729,-0.16671621799469,-0.000441551208496094,0.000373780727386475,-0.138628959655762,-0.000613212585449219,-0.0117788314819336,-0.206770181655884,-0.00222301483154297,-0.0296263694763184,-0.188898086547852,-0.00255203247070313,-0.042130708694458,-0.250246286392212,-0.00860118865966797,-0.0418314933776855,-0.176600694656372,-0.0030670166015625,-0.0432720184326172,-0.151551485061646,-0.00738811492919922,-0.0383427143096924,-0.222984313964844,-0.00935173034667969,-0.00338983535766602,-0.167868852615356,-0.00711345672607422,-0.0198945999145508,-0.0924186706542969,-0.00468349456787109,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0.000568151473999023,-0.00806033611297607,-2.09808349609375e-05,-0.0628702640533447,-0.210161447525024,-0.00443077087402344,-0.0167453289031982,-0.231987714767456,-0.00416755676269531,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06, +0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06, +0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,-0.0131409168243408,-0.107708752155304,-0.00230979919433594,-0.0106139183044434,-0.213683724403381,0.0355854034423828,0.00423359870910645,-0.351379334926605,0.0896282196044922,0.00174903869628906,-0.480979561805725,0.13865852355957,-0.0076596736907959,-0.516691088676453,0.135154724121094,-0.0118670463562012,-0.491652309894562,0.0999355316162109,-0.00965499877929688,-0.43150407075882,0.0530052185058594,-0.00641536712646484,-0.353680968284607,0.0443201065063477,-0.00244855880737305,-0.256771206855774,-0.00314903259277344,0.000416755676269531,-0.111820220947266,-0.00732135772705078,-7.86781311035156e-05,-0.0456863045692444,-0.00543403625488281,-0.000557422637939453,-0.0152435302734375,-0.00279998779296875,-0.00285625457763672,-0.0136550664901733,-0.00519561767578125,-0.00494718551635742,-0.0237579345703125,-0.00962543487548828,-0.00751304626464844,-0.0452880859375,-0.0185632705688477,-0.00871515274047852,-0.0675506591796875,-0.0262365341186523,-0.0084538459777832,-0.0857223346829414,-0.0327425003051758,-0.0057673454284668,-0.106037903577089,-0.0383234024047852,0.00181961059570313,-0.110321038402617,-0.038330078125,0.00543522834777832,-0.0888824388384819,-0.0306100845336914,0.00699329376220703,-0.0618514940142632,-0.0219583511352539,0.0060875415802002,-0.0360534489154816,-0.0131378173828125,0.00487399101257324,-0.0161117613315582,-0.00691032409667969,-0.00112724304199219,-0.0158248841762543,-0.00244331359863281,-0.0090329647064209,-0.0450271368026733,-0.00174808502197266,-0.00187087059020996,-0.0277328491210938,-0.00473880767822266,0.00128746032714844,-0.0211288332939148,-0.00659275054931641,0.00291347503662109,-0.0305130034685135,-0.0114994049072266,0.00334739685058594,-0.0448425244539976,-0.0173091888427734, +0.00237441062927246,-0.0581802427768707,-0.0223617553710938,0.00032496452331543,-0.0683944672346115,-0.0268135070800781,-0.00235128402709961,-0.0673828125,-0.0272741317749023,-0.00393962860107422,-0.0579864457249641,-0.0243015289306641,-0.00445699691772461,-0.0459991320967674,-0.0195913314819336,-0.00391054153442383,-0.0322280824184418,-0.0139694213867188,-0.00293302536010742,-0.0212524235248566,-0.00861263275146484,-0.00165700912475586,-0.016369640827179,-0.00518131256103516,-0.000564098358154297,-0.0235702395439148,-0.00437736511230469,8.82148742675781e-05,-0.042285144329071,-0.00474929809570313,-6.43730163574219e-05,-0.0741744637489319,-0.00485515594482422,-0.00319194793701172,-0.188803791999817,0.0233917236328125,-0.0071415901184082,-0.279118776321411,0.0496578216552734,-0.0098423957824707,-0.36152195930481,0.0690212249755859,-0.00989532470703125,-0.428463220596313,0.0898170471191406,-0.00661206245422363,-0.46946108341217,0.0869722366333008,-0.00178408622741699,-0.435204982757568,0.0762434005737305,-0.00174069404602051,-0.322332978248596,0.0442295074462891,-0.00500082969665527,-0.177214503288269,0.00792407989501953,-0.00705790519714355,-0.0926971435546875,-0.00158786773681641,-0.00539016723632813,-0.0483230352401733,-0.00421810150146484,-0.00295746326446533,-0.0353729128837585,-0.00200176239013672,-0.00321483612060547,-0.0660598278045654,0.00277805328369141,-0.00125360488891602,-0.0946289300918579,0.0371036529541016,0.000171661376953125,-0.126208424568176,0.0536413192749023,-0.00149178504943848,-0.19132673740387,0.0718708038330078,-0.00674843788146973,-0.205310940742493,0.116900444030762,-0.0113058090209961,-0.193929314613342,0.112403869628906,-0.0128793716430664,-0.177929043769836,0.100588798522949,-0.010322093963623,-0.109509229660034,0.0487117767333984,-0.00585556030273438,-0.07806396484375,0.0336751937866211,-0.00178766250610352,-0.048469603061676,0.000370025634765625,-0.0002899169921875,-0.0306609869003296,-0.00276660919189453,2.57492065429688e-05,-0.0174392461776733,-0.00375843048095703,-0.000283718109130859, +-0.0131438970565796,-0.00510883331298828,-0.000630378723144531,-0.0156768709421158,-0.00828647613525391,-0.000720024108886719,-0.0192474201321602,-0.0112266540527344,-0.000934123992919922,-0.0292693972587585,-0.0170164108276367,-0.000777244567871094,-0.0364944636821747,-0.0208749771118164,-0.000343799591064453,-0.0418670773506165,-0.0236692428588867,0.00043487548828125,-0.0431579351425171,-0.0231838226318359,0.0010840892791748,-0.0374755859375,-0.0195121765136719,0.00136923789978027,-0.0300247371196747,-0.0153970718383789,0.00108027458190918,-0.022624209523201,-0.0107765197753906,0.000132322311401367,-0.0194320641458035,-0.00695133209228516,-0.00140392780303955,-0.0222244262695313,-0.00390911102294922,-0.0333895683288574,-0.191328883171082,-0.0201625823974609,-0.00441551208496094,-0.169866681098938,-0.0175151824951172,0.000931024551391602,-0.0132135152816772,-3.52859497070313e-05,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0.00822925567626953,-0.108883857727051,-0.0105037689208984,-0.0246572494506836,-0.162688732147217,-0.0220460891723633,-0.05692458152771,-0.196503162384033,-0.0225763320922852,-0.00115275382995605,-0.00273442268371582,-0.000508308410644531,0.000392913818359375,-0.00357317924499512,-0.000339508056640625,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,-0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06, +0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,-0.000145435333251953,-0.000645995140075684,-9.63211059570313e-05,0,-0.100005865097046,0,0,-0.100004434585571,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999951362609863,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0, +-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0, +0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999937057495117,0,0,-0.0999937057495117,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,-0.0999999046325684,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06, +0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-3.03983688354492e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,-0.000493049621582031,0,4.64916229248047e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,7.74860382080078e-06,-0.000791549682617188,0,-3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,-1.49011611938477e-06,0,0,-6.09457492828369e-06,0,0,-6.09457492828369e-06,0,0,-4.58955764770508e-06,0,0,-1.51991844177246e-06,0,0,4.55975532531738e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,1.43051147460938e-06,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-4.76837158203125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0, +4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-1.49011611938477e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,2.98023223876953e-06,0,0,2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,4.58955764770508e-06,0,0,1.54972076416016e-06,0,0,4.57465648651123e-06,0,0,1.49011611938477e-06,0,0,6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,-2.98023223876953e-06,0,0,6.11692667007446e-06,0,0,6.10388815402985e-06,0,0,6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-7.62939453125e-06,0,0,-4.58955764770508e-06,0,0,4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-4.76837158203125e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-6.19888305664063e-06, +0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-7.62939453125e-06,0,0,-4.64916229248047e-06,0,0,-4.64916229248047e-06,0,0,-6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,-1.53481960296631e-06,0,0,6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,3.03983688354492e-06,0,0,-6.07967376708984e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,-0.000145912170410156,0,-2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,4.64916229248047e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,1.54972076416016e-06,0,0,1.53481960296631e-06,0,0,-4.57838177680969e-06,0,0,7.62939453125e-06,0,0,3.06963920593262e-06,0,0,1.51991844177246e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0, +-7.62939453125e-06,0,0,4.58955764770508e-06,0,0,4.57465648651123e-06,0,0,3.05846333503723e-06,0,0,1.52736902236938e-06,0,0,-4.54485416412354e-06,0,0,-3.05101275444031e-06,0,0,6.12437725067139e-06,0,0,-1.51991844177246e-06,0,0,3.06963920593262e-06,0,0,3.03983688354492e-06,0,0,4.58955764770508e-06,0,0,-3.03983688354492e-06,0,0,-1.49011611938477e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-2.98023223876953e-06,0,0,3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,4.64916229248047e-06,0,0,3.09944152832031e-06,0,0,-7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-6.09457492828369e-06,0,0,-6.10202550888062e-06,0,0,-3.03983688354492e-06,0,0,4.55975532531738e-06,0,0,3.03983688354492e-06,0.000514984130859375,0,-6.07967376708984e-06,0,0,4.55975532531738e-06,0,0,4.57465648651123e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-3.09944152832031e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,-3.05473804473877e-06,0,0,7.62939453125e-06,0,0,1.43051147460938e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,6.19888305664063e-06,0.000225067138671875,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-3.03983688354492e-06,0,0,3.03983688354492e-06,0,0,7.62939453125e-06,0,0,-3.05101275444031e-06,0,0,-1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,1.49011611938477e-06,0,0,4.58955764770508e-06,0,0,6.07967376708984e-06,0,0,-3.03983688354492e-06,0, +0,-4.58955764770508e-06,0,0,-6.10947608947754e-06,0,0,3.05473804473877e-06,0,0,4.64916229248047e-06,0,0,1.54972076416016e-06,0,0,-7.62939453125e-06,0,0,-5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.76837158203125e-06,0,0,-3.09944152832031e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,-6.10202550888062e-06,0,0,-1.51991844177246e-06,0,0,7.62939453125e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-6.07967376708984e-06,0,0,3.05101275444031e-06,0,0,3.05287539958954e-06,0,0,6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,1.49011611938477e-06,0,0,3.05473804473877e-06,0,0,4.58955764770508e-06,0,0,-6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.58955764770508e-06,0,0,4.57838177680969e-06,0,0,6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,3.03983688354492e-06,0,0,3.0518276616931e-06,0,0,-2.98023223876953e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,1.54972076416016e-06,0,0,6.13927841186523e-06,0,0,6.10202550888062e-06,0,0,4.58955764770508e-06,0,0,-3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,4.55975532531738e-06,0,0,-7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,6.07967376708984e-06,0,0,6.07967376708984e-06,0,0,4.58955764770508e-06,0,0,-7.62939453125e-06,0,0,-6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,-2.98023223876953e-06,0,0,-1.54972076416016e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,3.05473804473877e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,6.07967376708984e-06, +0,0,3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,-4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,4.57838177680969e-06,0,0,-6.13927841186523e-06,0,0,-3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,6.10947608947754e-06,0,0,-3.03983688354492e-06,0,0,1.54972076416016e-06,0,0,4.64916229248047e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-1.54972076416016e-06,0,0,1.54972076416016e-06,0,0,6.10388815402985e-06,0,0,-4.58955764770508e-06,0,0,5.96046447753906e-06,0,0,-6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,3.09944152832031e-06,0,0,4.52995300292969e-06,0,0,1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-3.05176945403218e-06,0,0,3.03983688354492e-06,0,0,6.10947608947754e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-3.03983688354492e-06,0,0,6.10342249274254e-06,0,0,-3.06963920593262e-06,0,0,-6.07967376708984e-06,0,0,3.05473804473877e-06,0,0,3.03983688354492e-06,0,0,-1.54972076416016e-06,0,0,-4.55975532531738e-06,0,0,6.10388815402985e-06,0,0,-6.13927841186523e-06,0,0,-1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,1.54972076416016e-06,0,0,-4.64916229248047e-06,0,0,6.07967376708984e-06,0,0,-6.19888305664063e-06,0,0,-1.54972076416016e-06,0,0,-6.13927841186523e-06,0,0,-6.10202550888062e-06,0,0,3.03983688354492e-06,0,0,4.64916229248047e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,-6.13927841186523e-06,0,0,-7.62939453125e-06,0,0,3.06963920593262e-06,0,0,3.09944152832031e-06,0,0,4.29153442382813e-06,0,0,-6.19888305664063e-06,0,0,4.29153442382813e-06,0,0,-4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,1.54972076416016e-06,0,0,2.98023223876953e-06,0,0,6.10947608947754e-06, +0,0,6.10947608947754e-06,0,0,1.51991844177246e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,-2.98023223876953e-06,0,0,-4.52995300292969e-06,0,0,-5.96046447753906e-06,0,0,-5.96046447753906e-06,0,0,4.52995300292969e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,2.98023223876953e-06,0,0,4.52995300292969e-06,0,0,6.07967376708984e-06,0,0,2.98023223876953e-06,0,0,5.96046447753906e-06,0,0,1.52736902236938e-06,0,0,-3.05473804473877e-06,0,0,-4.57465648651123e-06,0,0,-6.10947608947754e-06,0,0,3.03983688354492e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,3.09944152832031e-06,0,0,-6.07967376708984e-06,0,0,-3.09944152832031e-06,0,0,-3.09944152832031e-06,0,0,7.62939453125e-06,0,0,4.52995300292969e-06,0,0,-6.19888305664063e-06,0,0,-3.09944152832031e-06,0,0,-4.55975532531738e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,2.98023223876953e-06,0,0,-3.03983688354492e-06,0,0,-4.64916229248047e-06,0,0,4.58955764770508e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,2.98023223876953e-06,0,0,-7.62939453125e-06,0,0,-4.52995300292969e-06,0,0,4.52995300292969e-06,0,0,-4.64916229248047e-06,0,0,6.10947608947754e-06,0,0,6.19888305664063e-06,0,0,7.62939453125e-06,0,0,6.19888305664063e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-6.19888305664063e-06,0,0,7.62939453125e-06,0,0,-7.62939453125e-06,0,0,-7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,-4.52995300292969e-06,0,0,3.09944152832031e-06,0,0,-6.19888305664063e-06,0, +0,-6.19888305664063e-06,0,0,-4.76837158203125e-06,0,0,-7.62939453125e-06,0,0,6.19888305664063e-06,0,0,4.52995300292969e-06,0,0,5.96046447753906e-06,0,0,3.09944152832031e-06,0,0,7.62939453125e-06,0,0,5.96046447753906e-06,0,0,-4.52995300292969e-06,0,0,7.62939453125e-06,0,0,-6.19888305664063e-06,0,-3.29017639160156e-05,-8.7738037109375e-05,5.7220458984375e-06,-0.0111849308013916,-0.0306190252304077,0.00272750854492188,-0.0184440612792969,-0.121571242809296,0.000260353088378906,-0.0163445472717285,-0.237301707267761,0.0329160690307617,-0.0048067569732666,-0.405415177345276,0.0750932693481445,0.00640010833740234,-0.51403397321701,0.108180999755859,-0.00716185569763184,-0.535477042198181,0.102706909179688,-0.010465145111084,-0.476750791072845,0.0643882751464844,-0.00588798522949219,-0.412103235721588,0.0458545684814453,-0.00331544876098633,-0.360806167125702,0.0175142288208008,-4.10079956054688e-05,-0.266052424907684,-0.00919628143310547,0.000714302062988281,-0.0928317308425903,-0.00841140747070313,-0.000329017639160156,-0.0433914065361023,-0.00564098358154297,0.00834178924560547,-0.0380859375,-0.0137662887573242,0.0079197883605957,-0.00763168931007385,-0.00670242309570313,0.0105183124542236,-0.0743560791015625,-0.0248041152954102,0.00850081443786621,-0.11189877986908,-0.0351934432983398,0.00352954864501953,-0.141950964927673,-0.0450172424316406,-0.0094139575958252,-0.133486926555634,-0.044764518737793,-0.012753963470459,-0.103092938661575,-0.0370893478393555,-0.0123543739318848,-0.0819518864154816,-0.0302667617797852,-0.0108718872070313,-0.0536600947380066,-0.0212211608886719,-0.00600862503051758,-0.0221481323242188,-0.00945186614990234,-0.00346231460571289,-0.00745236873626709,-0.00443553924560547,0,-8.34465026855469e-06,0,0,2.32458114624023e-06,0,0,-8.40425491333008e-06,0,0,3.09944152832031e-06,0,0,4.64916229248047e-06,0,0,-1.54972076416016e-06,0,0,-2.98023223876953e-06,0.00032806396484375,0,1.54972076416016e-06,0,0,7.62939453125e-06,0,0,4.64916229248047e-06,0,0,2.98023223876953e-06,0,0,-6.07967376708984e-06,0,0,4.58955764770508e-06, +0,0,-5.33461570739746e-06,0,0,-6.10947608947754e-06,0,0,1.53481960296631e-06,0,0,-3.03983688354492e-06,0,0,-4.55975532531738e-06,0,0,3.06963920593262e-06,0,0,-1.54972076416016e-06,0,0,7.62939453125e-06,0,0,-6.07967376708984e-06,0,0,-5.30481338500977e-06,0,-3.33786010742188e-06,-3.03983688354492e-06,1.9073486328125e-06,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,3.814697265625e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,2.74628400802612e-05,3.52859497070313e-05,5.7220458984375e-06,0.0001068115234375,0,0,-6.09457492828369e-06,0,0,1.53481960296631e-06,0,0,-5.33461570739746e-06,0,0,3.06963920593262e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-2.26497650146484e-06,0,0,-3.814697265625e-06,0,0,4.58955764770508e-06,0,0,6.19888305664063e-06,0,0,-2.98023223876953e-06,0,0,1.54972076416016e-06,0,0,-1.54972076416016e-06,0,0,-6.07967376708984e-06,0,0,-1.54972076416016e-06,0,0,-1.43051147460938e-06,0,0,7.62939453125e-06,0,0,-3.03983688354492e-06,0,0,1.53481960296631e-06,0,-5.53131103515625e-05,-3.50922346115112e-05,-4.00543212890625e-05,5.7220458984375e-06,-0.0001068115234375,0,0,-6.09457492828369e-06,0,0,-7.62939453125e-06,0,0,6.88433647155762e-06,0,0,-6.10947608947754e-06,0,0,-3.814697265625e-06,0,0,6.13927841186523e-06,0,0,7.62939453125e-06,0,0,-1.49011611938477e-06,0 + } + Normals: *4296 { + a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, +0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, +-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,0.200937390327454,0.314069658517838,-0.133558943867683,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714, +-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064, +-0.373649805784225,-0.114552080631256,0.166332602500916,-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.952468730509281,0.536564290523529,0.0594483315944672,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.793020684091388,0.727224364876747,-0.892200976610184,-0.884114998749396,-0.479294866323471,-1.3755222260952,-0.78397116983399,-0.0509446412324905,-1.60343343019485,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.528576917195878,-0.539904925972223,-1.67383927106857,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796, +0.0409664511680603,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.902605712413788,0.0684178471565247,-0.0281954407691956,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.950756222009659,0.152891896665096,0.0503082871437073,0.810308873653412,0.442293539643288,-0.0574740767478943,1.52619820833206,0.357024684548378,-0.265309900045395,1.14071597158909,0.617008477449417,-0.687069118022919,1.13285660743713,0.478411003947258,-0.438208907842636,1.26319825649261,0.790907800197601,-0.254651188850403,0.899658635258675,1.05292454361916,-0.190162837505341,1.21520121395588,0.744653224945068,-0.860292591154575,1.38109764456749,0.955767944455147,-0.794126987457275,1.09801399707794,1.00461474061012,-0.736819755285978,1.53845745325089, +-0.28718806616962,-0.718265734612942,1.58622813224792,-0.152671582996845,-0.74600750207901,1.489053606987,0.307887464761734,-0.96625329554081,1.54433196783066,0.235558219254017,-0.727221444249153,1.46095943450928,0.264543659985065,-0.484349220991135,0.874600492417812,-0.404257342219353,-0.883077885955572,1.38328665494919,0.0835078358650208,-0.950058147311211,1.46305179595947,0.0952014625072479,-1.08432450890541,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.576802045106888,-0.141776937991381,-1.2802657186985,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.376065731048584,-0.0409428291022778,-0.974057778716087,-0.238165438175201,0.231018908321857,-0.702726870775223,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,0.257956802845001,0.0875755846500397,-1.42860263586044,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705, +-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,0.580531150102615,0.0278149172663689,-1.05323074758053,0.142078518867493,-0.814096540212631,0.229761403053999,0.11991560459137,-0.478369392454624,-0.409938581287861,0.111087501049042,-0.700669411569834,-0.622356630861759,0.0709547400474548,-0.964635640382767,-0.604860760271549,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,-0.195959150791168,-0.575261430814862,-0.894015341997147,-0.602815747261047,0.724253341555595,-0.250332050025463,0.432409584522247,-0.811870787292719,-0.65051381289959,0.158673107624054,-0.28248718380928,-0.151939854025841,-0.568863749504089,0.507759660482407,-0.414741426706314,0.074227511882782,-0.0759860873222351,-0.0737602412700653, +-0.565093815326691,0.379871964454651,-0.544072151184082,-0.229530215263367,0.347058802843094,0.195049256086349,-0.412802875041962,0.321322411298752,0.151383817195892,-0.346669673919678,0.605534855276346,-0.795580714941025,-1.2552170753479,0.745801657438278,-0.115406408905983,-0.285485476255417,0.227711021900177,-0.826672464609146,-1.2438146173954,0.455599695444107,-0.263998828828335,-0.486131101846695,0.622736603021622,-0.780141681432724,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.241065382957458,-0.643322572112083,-1.2639479637146,-0.972453907132149,0.557742886245251,-1.33343076705933,0.123937368392944,-0.0720444321632385,-0.583294346928596,0.110300779342651,-0.00705739855766296,-0.408492486923933,-0.485692828893661,0.776657424867153,-0.0338609218597412,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,0.322233736515045,-0.573693118989468,-1.0086697936058,0.160077393054962,-0.381976678967476,-1.06558483839035,-0.219301342964172,-0.354036554694176,-1.36929142475128,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.534842163324356,0.94424076937139,-0.838127255439758,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,0.39135280251503,-0.0228843092918396,-0.760021790862083,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011,-0.248567461967468,-1.3258820772171,-0.0836640894412994,-0.0310083478689194,-1.70327734947205,0.147064626216888,0.0879605561494827,-1.4808988571167,0.254932463169098,-0.0518413186073303,-1.16967839002609,0.22179901599884,0.181254044175148,-1.33838158845901,-0.21192067861557,0.272593975067139,-1.03599873185158,0.0305543839931488,0.175582766532898,-1.07576921582222,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.0255449712276459,-0.0880975127220154,-1.46933484077454, +0.11522588133812,-0.587622791528702,-1.57549560070038,0.149295687675476,-0.82866944372654,-1.58876371383667,0.7018081843853,-0.801574096083641,-0.592439234256744,0.601733505725861,-0.137450002133846,-1.00589925050735,0.456517487764359,0.318539060652256,-1.22904369235039,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,0.052886962890625,-1.15980905294418,-1.26109582185745,-0.069479763507843,-0.916788548231125,-0.836547315120697,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.0427052974700928,-0.788520634174347,-0.636523514986038,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,0.0400623083114624,-0.824866771697998,-0.724745213985443,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.055473268032074,-1.28484505414963,-0.257365819066763,0.240267902612686,-1.59694588184357,-0.443125456571579,0.0555644631385803,-1.21593242883682,0.284668155014515,0.156027734279633,-1.06051290035248,0.269052285701036,0.118725597858429,-1.12653911113739,-0.368444453924894,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.664001375436783,-0.453120522201061,-1.08399431407452,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694, +-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0832182765007019,-0.307632148265839,-0.44506711512804,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219,-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.0488128662109375,0.0485417991876602,-0.370706848800182,-0.150729119777679,-0.110141381621361,-0.792580604553223,0.102208912372589,-0.299842372536659,-0.596327483654022,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.0467466115951538,-0.366785362362862,-0.675516456365585,0.0866557955741882,-0.120473615825176,-0.878414154052734,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.0941441059112549,-0.0396405905485153,-0.666160017251968,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369, +-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974, +-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487, +0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774, +-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.869644872844219,-0.589571803808212,-0.446463737636805,0.596905343234539,-0.927329026162624,-1.21505773067474,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.202133387327194,-1.39558655023575,-1.28628271818161,0.671599477505879,-0.2003573179245,-0.763172179460526,0.522538669407368,-0.238086938858032,-0.810679644346237,0.538497515022755,-0.311309695243835,-0.990312814712524,0.343593537807465,-0.575801014900208,-1.13952320814133,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.762000144422871,-0.959270302206278,-1.05219921469688,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613,-0.940774857997894,0.0311036333441734,-0.328644931316376,0.393962293863297,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.00390174984931946,0.0498265027999878,-0.566674694418907,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.603177011013031,-0.758279852569103,-0.847386211156845,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.811255313456059,-0.981955448165536,-0.66402730345726, +0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.575440742075443,-0.39981746673584,0.211854338645935,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.835091985762119,-0.916988667100668,-0.574564456939697,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.0800609923899174,-0.794386729598045,0.848037555813789,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.165025036782026,0.0268293619155884,-0.239257469773293,0.654607690870762,-0.814375996589661,-0.767812371253967,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.421808689832687,-0.978765791282058,-0.759540475904942,0.35729792714119,-1.16209623217583,-0.843408688902855,0.635135415221157, +-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454,0.4240742623806,-1.45122596621513,0.541838407516479,0.423942059278488,-1.14665141701698,0.832958232611418,0.497268289327621,-0.941780988126993,0.791523288935423,0.491023927927017,-0.82430799305439,0.62312114238739,0.298471033573151,-0.630538105964661,0.652341343462467,0.515873625874519,-0.268991827964783,0.258705386891961,0.365742594003677,-0.642407774925232,-0.695367367006838,0.245470553636551,-0.261746168136597,-1.18723261356354,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.112293161451817,0.549503043293953,-0.358982503414154,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.35309611260891,0.249528110027313,-0.349773943424225,-0.290339961647987,0.73586767911911,-1.06806452572346,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.719614639878273,-0.136827260255814,0.56151071190834,0.515105456113815,-0.293638110160828,0.49517023563385,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917, +0.32366281747818,0.690021052956581,0.190942712360993,0.399938523769379,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047,0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.58100426197052,0.233640804886818,0.597490578889847,0.71550427377224,0.13685953989625,0.607274621725082,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.0742840766906738,0.71588072180748,0.0643671751022339,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.385219991207123,0.242338515818119,0.71497662179172,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.194614410400391,0.686820417642593,0.853740721940994,0.0916746854782104,0.342921026051044,0.172805711627007,0.265282869338989,0.449711125344038,0.392278179526329,0.172440469264984,0.389617502689362,0.192236006259918,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.304619431495667,0.399443715810776,0.476455822587013,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.15739369392395,0.5272381529212,0.222706768661737,0.312741458415985,0.437412172555923,0.558144643902779,0.0400737524032593,0.367100737057626,0.411040835082531, +0.0971634984016418,0.815875202417374,0.314854916185141,0.0395613312721252,0.165233947336674,0.374344136565924,1.01478315889835,-0.156479477882385,1.12985455989838,0.741910040378571,0.179542601108551,1.23913863301277,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.833376720547676,-0.528565552085638,1.02215826511383,0.778389990329742,-0.0909298323094845,1.21944917738438,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.413726031780243,-0.145389404147863,0.604092508554459,0.519129365682602,-0.219324979931116,0.720614522695541,0.546361804008484,-0.454116068780422,0.714588694274426,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.660385876893997,-0.53211335092783,0.625864878296852,0.661041408777237,-0.557324767112732,0.694450043141842,0.593249171972275,-0.56645879894495,0.43729442358017,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.942488458007574,-0.47453523427248,-0.678965479135513,-0.649977907538414,-0.804319560527802,-0.408202171325684,0.0398759841918945,-0.236044600605965,0.0777034759521484,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.437251210212708,0.314575906842947, +0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.0698795318603516,-0.0302916914224625,0.347412638366222,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.107309997081757,-0.253329928964376,0.713284179568291,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.0795069932937622,-0.387737691402435,0.941889971494675,0.0451879501342773,-0.385816551744938,0.613769203424454,0.0118919014930725,-0.331392705440521,0.163760401308537,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,0.0485331416130066,-0.260245393961668,0.0808353424072266,0.835500404238701,-0.26596324890852,0.732537046074867,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,-0.619605213403702,0.254955065902323,1.044498950243,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.861969098448753,0.0746596208773553,1.14128789305687,-0.231003969907761,0.00644201785326004,1.72276842594147,0.548364117741585,-0.0216731205582619,1.5855952501297,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641, +-0.000959157943725586,0.340808346867561,0.181987643241882,-0.512399576604366,0.509824901819229,0.217682003974915,-0.0238355100154877,0.876538135111332,0.832684561610222,-0.185455948114395,0.710533395409584,0.712371826171875,-0.309882596135139,0.9218784943223,0.690764710307121,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.180295750498772,0.379578433930874,1.83726984262466,-0.362325264140964,0.879202574491501,1.12923868000507,-1.24705880880356,0.860029801726341,0.242361314594746,-1.32715570926666,0.719766840338707,0.45976210385561,-1.25535342097282,-0.838271610438824,0.203865945339203,-1.15142431855202,-0.734234526753426,1.06935754418373,-1.017892498523,-0.665836066007614,0.391102124005556,-1.1230471432209,0.452305108308792,0.757969871163368,-1.42860466241837,0.0516091883182526,1.21136975288391,-0.730428256094456,-0.110456079244614,1.62915337085724,-0.756044611334801,1.13374081254005,0.854387104511261,-1.48789167404175,0.977366358041763,0.760854542255402,-1.31092742085457,0.928007364273071,0.786075055599213,-1.02857578545809,0.990798711776733,0.914303988218307,-1.67019212245941,-0.248231053352356,0.476389452815056,-0.797007709285865,0.378508627414703,-0.123358756303787,-1.72304207086563,0.128096729516983,-0.0287458598613739,-1.57659423351288,0.30468824505806,0.00333210825920105,-0.953672848641872,0.588098675012589,-0.0466750860214233,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.70007181167603,0.914519637823105,-0.0725744962692261,-1.80977773666382,0.605774726718664,-0.191288214176893,-1.91047030687332,0.512670129537582,-0.114954233169556,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995, +-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.26852324604988,-0.635325476527214,-0.55024442076683,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-1.40130913257599,-0.0191720575094223,-0.396800637245178,-1.2996418774128,-0.0326139032840729,-0.452348291873932,-1.61738860607147,0.227433915948495,-0.477466315031052,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.16013008356094,0.743868172168732,-1.05224168300629,-1.35815984010696,0.544997304677963,-1.2918119430542,-1.08034543693066,1.07295441627502,-0.769480893388391,-1.13270372152328,0.992315709590912,-0.711734585464001,-1.39920991659164,0.455113500356674,-0.395397454500198,-1.17983311414719,0.419577494263649,-0.675629526376724,-1.5408108830452,-0.271199909038842,-0.748135406523943,-1.58714556694031,-0.20973809948191,-0.736974239349365,-1.61097502708435,-0.305756151676178,-0.728639900684357,-1.58723455667496,-0.0604373821988702, +-0.749835930764675,-1.48569315671921,-0.115178093314171,-0.688375294208527,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.44096863269806,-0.597505390644073,-0.660487413406372,-1.5422620177269,-0.437638849020004,-0.533144623041153,-1.58598256111145,0.279336448758841,-0.585794165730476,-0.353593325635302,-0.115320540964603,0.080802321434021,0.121201753616333,-0.162462987005711,-0.0434780716896057,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.924131244421005,-0.541977897286415,0.0331447124481201,-1.09795799851418,-0.189449161291122,0.240723967552185,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.308299422264099,0.152335792779922,0.267315328121185,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095, +0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.968218743801117,0.848342210054398,-0.215124607086182,-0.981949830893427,0.209982231259346,0.852725625038147,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.31266784667969,-0.298176534473896,0.309483051300049,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-0.593131090048701,0.13525072671473,0.191612243652344,-0.936012446880341,0.940078016370535,0.665666535496712,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.49360460042953,0.24927353207022,0.93973558396101,-0.782869279384613,0.367577850818634,0.522574007511139,-1.43917262554169,0.0309290885925293,0.992731362581253,-0.782394200563431,0.530240476131439,0.44101893901825,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.898475229740143,0.375393062829971,1.25598964095116,-1.40670228004456,0.831520646810532,0.0871275365352631,-0.526979327201843,0.954100735485554,0.742093294858932,-1.13804736733437,0.818589240312576,0.29865637421608,-0.191937178373337,1.146882340312,0.819386206567287,-1.08284914493561,0.868836373090744,0.327559590339661, +-0.445644915103912,0.819151528179646,0.0367926359176636,-0.967767238616943,-0.0453618988394737,0.0402722358703613,-0.528876855969429,0.534304536879063,-0.0405997037887573,-1.38078272342682,0.433857388794422,0.732226401567459,-1.37628716230392,0.660546571016312,0.869743708521128,-1.16504970192909,1.1978731751442,0.933803141117096,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.34705364704132,0.453291535377502,0.314820200204849,-1.33851164579391,0.635057434439659,0.144389092922211,-1.18561786413193,0.0472765564918518,-0.0319313406944275,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.739803805947304,0.91213905159384,0.527532547712326,-1.1680263876915,1.04859229922295,0.186929881572723,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.34120434522629,0.59242832660675,0.600063428282738,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.32392130792141,0.347134307026863,0.103822410106659,-0.550219476222992,0.286571047268808,0.324343025684357,-0.867890521883965,0.492118157446384,0.465683460235596,-0.627423629164696,0.278921574354172,0.463329076766968,0.0253478735685349,0.939284107647836,0.633435189723969,-0.267505332827568,0.727595597505569,0.578096687793732,-0.846581101417542,0.807966649532318,0.403524518013,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.1212802529335,-0.30671788752079,-0.361288964748383,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.59862411022186,-0.757577151060104,0.610432878136635,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.60633271932602,0.557175770401955,0.325814843177795,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-1.31965005397797,-0.688649713993073,-0.058143675327301,-1.52723675966263,-0.394182473421097, +0.193914741277695,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-1.26212650537491,-0.328503780066967,0.590582877397537,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-1.16962146759033,-0.0757149755954742,0.526218891143799,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.6975713968277,-0.0519720911979675,0.0147145390510559,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839,-1.51877892017365,-0.667408674955368,0.237299561500549,-1.05326333642006,0.116885304450989,-0.397477626800537,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.62991857528687,0.85378834605217,-0.012765645980835,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897, +-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.45315498113632,0.687780164182186,-0.10070613026619,-1.68473601341248,0.368050500750542,0.262003093957901,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.50705373287201,0.0914812311530113,0.278137892484665,-1.84874057769775,0.00099945068359375,-0.0235772430896759,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.94836264848709,0.308224610984325,-0.270184587687254,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552, +-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352, +-0.688109442591667,0.482461705803871,-0.244004607200623,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119, +-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.64983195066452,0.222386207431555,0.78114066272974,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.22910735011101,-0.911793619394302,-0.774203827604651,-1.61747115850449,0.357769846916199,-0.265330623835325,-1.57480692863464,0.343612849712372,-0.373336654156446,-1.57217866182327,0.201641887426376,-0.431463144719601,-1.62650567293167,0.394450001418591,-0.584586247801781,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-1.68346929550171,0.196226812899113,-0.341894000768661,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.00415872037411,1.0466428399086,0.972510233521461,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.29296666383743,1.04530822485685,-0.0718201994895935,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603, +-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.86934822797775,-0.152658224105835,-0.452417511492968,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982,-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.8133248090744,-0.454144028946757,-0.284918747842312,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.65305280685425,0.809905409812927,0.511914309114218,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-1.04549122601748,0.27015844732523,1.0247506275773,-0.840652007609606,0.671525448560715,0.937376890331507,-0.946175713092089,0.82936354726553,0.710543785244226,-0.889748632907867,0.693943560123444,0.128201965242624,-1.71981275081635,-0.0926603376865387,-0.393249019980431,-1.63058423995972,0.452809585258365, +-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.61520844697952,-0.380077719688416,-0.996170371770859,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-1.24710929393768,-0.312335565686226,1.52362763881683,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.424554377794266,-0.176779419183731,1.68136084079742,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.600028283894062,0.657730028033257,1.23243783414364,-1.09988090395927,0.246948778629303,0.205801665782928,-1.20744872093201,0.454054154455662,0.0797560214996338,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,-0.205998122692108,-0.996057964861393,0.862564630806446,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,0.285785391926765,0.388586312532425,1.85289698839188,0.211730934679508,0.378694117069244,1.52361702919006, +0.277940087020397,0.448024749755859,1.40409678220749,0.390692040324211,0.780021578073502,1.41455152630806,-0.121843725442886,0.890234924852848,0.850817568600178,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.81647849082947,-0.34547024499625,-0.15619820356369,-1.44870901107788,-1.1919407248497,-0.329002842307091,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.58823108673096,-0.597653445554897,-0.809595331549644,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.41940599679947,-0.724583998322487,-0.276225414127111,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.08977842330933,0.255588248372078,0.48719996213913,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.56068193912506,-0.22471035271883,0.824054867494851,-1.20496526360512,-0.472699493169785,0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.83991456031799,-0.023664802312851,0.533058658242226,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.23089274764061,-0.793121986091137,0.336307927966118,-1.57457345724106,-0.305130358785391,0.535757958889008,-1.88095247745514, +-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.45869562029839,-0.815251007676125,-0.254695564508438,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.40375918149948,-0.727210387587547,0.289805047214031,-1.84046548604965,0.165150761604309,0.294174805283546,-1.34315621852875,-0.563575714826584,0.0140928123146296,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.91391336917877,0.0532687902450562,0.289836287498474,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621,-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.665364563465118,-0.104722455143929,-0.779919236898422,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.165059387683868,-0.112022437155247,-0.789090067148209,-0.17180860042572,-0.0945887230336666,-0.717197448015213,-0.151965796947479,-0.092001773416996,-0.61161220818758,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.160828292369843,-0.120246175676584,-0.772601619362831,-0.170234560966492,-0.114335849881172,-0.692679338157177,0.0159251689910889,-0.1504793651402,-0.719538241624832,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.970507932826877,-0.349261220544577,-0.847924277186394, +0.855046957731247,-0.353471912443638,-0.794213265180588,-0.724757760763168,-0.529213152825832,-1.23094093799591,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827,0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.843372106552124,-0.660073697566986,-0.168905586004257,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.77680803462863,-0.769401367753744,-0.016223669052124,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.348137080669403,-1.04275724291801,0.407252863049507,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.102336823940277,-0.493925049901009,-0.180162087082863,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,-0.609699964523315,-0.847584739327431,-0.131879404187202,-0.0906688570976257,-0.304374322295189,-0.355749532580376,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.0635359287261963,-0.619592040777206,0.703122437000275,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.44105738401413,0.0523230731487274,0.607965975999832,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863, +0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,-0.1262757845534,-0.908129066228867,0.848007082939148,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.568358182907104,-0.838845901191235,0.272912800312042,0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,0.0209307968616486,0.541517548263073,-1.58617055416107,0.411676954478025,0.745267570018768,-1.55441844463348,0.0710408091545105,0.877676658332348,-0.980928190052509,0.27747730910778,0.872976876795292,-1.01354433596134,0.478884801268578,0.847917661070824,-1.04395531117916,0.663957834243774,-0.292329281568527,0.231935441493988,0.375099884346128,0.69207176566124,-0.658867016434669,0.684461444616318,0.619149088859558,-0.526726692914963,0.331995342615755,-0.0269495844841003,-0.0592567920684814,0.300646757918003,-1.57336264848709,-0.148101091384888,0.448990777134895,-1.42406004667282,-0.295574963092804,0.152047302573919,-1.6581923365593,-0.269904941320419,0.212553188204765,-0.50010946393013,0.297500908374786,0.992890149354935,-0.246238062158227,-0.146641075611115,0.428200535476208,-0.484959565103054,-0.0132940411567688,0.22750461101532,0.538543492555618,-0.347657799720764,0.767161771655083,0.132067978382111,-0.379375129938126,0.909959197044373,0.0648094415664673,0.0769721269607544,0.860623337328434,0.683679968118668,-0.122190892696381,1.18460753560066,0.177612721920013,-0.791526943445206,1.09038612246513,0.471424343064427,-1.27518326044083,0.983469367027283,0.682022288441658,-1.28679051995277,0.61859492212534,0.974920306354761,-1.21607607603073,0.660592347383499,0.343201532959938,-1.11549997329712,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.56416100263596,0.528866618871689,-0.696322426199913,1.63710820674896,0.578776018694043, +-0.75817309319973,1.75988864898682,0.265540436375886,-0.775177180767059,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581, +-0.179572880268097,-0.0506054162979126,-0.444174110889435,-1.52680599689484,0.167733874171972,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.78222274780273,-0.13932503387332,-0.644678674638271,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.624583154916763,-1.14325071871281,-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808, +1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.248459815979,0.944102577865124,-0.645537167787552,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807663838672, "Geometry::Eye_Frown", "Shape" { + Version: 100 + Indexes: *2113 { + a: 315,316,317,318,319,320,321,322,323,324,325,329,330,331,332,333,334,335,336,337,338,339,340,343,344,345,346,347,348,349,350,351,352,353,354,394,395,396,397,398,399,400,401,402,403,404,408,409,410,411,412,413,414,415,416,417,418,419,422,423,424,425,426,427,428,429,430,431,432,433,473,474,475,476,477,478,479,480,481,482,483,487,488,489,490,491,492,493,494,495,496,497,498,501,502,503,504,505,506,507,508,509,510,511,512,552,553,554,555,556,557,558,559,560,561,562,566,567,568,569,570,571,572,573,574,575,576,577,580,581,582,583,584,585,586,587,588,589,590,591,5879,5880,5884,5885,5886,5887,5889,5891,5894,5895,5896,5897,5898,5899,5900,5901,5902,5904,5905,5906,5907,5908,5909,5910,5912,5913,5914,5915,5916,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5931,5934,5935,5938,5940,5943,5944,5945,5946,5948,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5968,5969,5970,5971,5972,5973,5974,5976,5978,5979,5981,5982,5984,5991,5994,5996,5997,5998,5999,6000,6002,6005,6006,6007,6009,6010,6011,6013,6014,6015,6017,6018,6020,6022,6023,6026,6028,6029,6030,6032,6034,6038,6044,6046,6047,6048,6050,6051,6052,6053,6054,6055,6059,6064,6067,6068,6070,6072,6073,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6091,6093,6094,6095,6096,6097,6101,6104,6105,6106,6108,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6155,6156,6157,6158,6159,6160,6161,6162,6163,6165,6169,6172,6174,6175,6176,6179,6186,6189,6190,6191,6192,6193,6194,6196,6197,6198,6199,6200,6201,6202,6203,6204,6206,6208,6210,6211,6214,6215,6216,6217,6219,6220,6225,6226,6228,6229,6231,6235,6236,6237,6238,6240,6241,6242,6245,6246,6248,6249,6250,6251,6252,6253,6254,6258,6259,6260,6261,6263,6264,6265,6266,6267,6269,6270,6271,6272,6275,6277,6278,6279,6282,6283,6284,6285,6286,6287,6289,6290,6291,6293,6295,6296,6297,6298,6299,6301,6302,6303,6304, +6306,6307,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6330,6331,6332,6333,6334,6336,6337,6338,6339,6340,6341,6342,6343,6344,6346,6347,6348,6349,6350,6351,6352,6353,6355,6356,6357,6358,6359,6360,6361,6362,6363,6365,6366,6367,6369,6370,6371,6373,6377,6380,6381,6384,6385,6387,6388,6390,6391,6393,6395,6398,6399,6406,6407,6410,6412,6413,6419,6420,6422,6423,6424,6425,6426,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6496,6497,6498,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6515,6516,6517,6518,6519,6520,6521,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6569,6570,6571,6572,6573,6574,6575,6577,6578,6579,6581,6583,6584,6585,6586,6587,6589,6590,6592,6593,6594,6595,6596,6597,6598,6600,6601,6602,6604,6605,6606,6607,6608,6609,6610,6611,6612,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6643,6644,6645,6646,6647,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6668,6669,6670,6671,6672,6673,6674,6676,6678,6679,6681,6682,6683,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6702,6704,6705,6706,6707,6710,6711,6712,6714,6715,6716,6717,6718,6719,6720,6721,6723,6724,6725,6726,6727,6728,6729,6730,6731,6733,6734,6735,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6748,6749,6752,6753,6754,6755,6756,6757,6759,6760,6761,6762,6763,6764,6766,6767,6768,6769,6771,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6785,6786,6787,6788,6789,6793,6794,6795,6797, +6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6812,6814,6816,6817,6819,6821,6822,6823,6828,6829,6834,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6850,6851,6852,6853,6855,6856,6857,6858,6859,6860,6861,6864,6865,6867,6868,6869,6871,6874,6878,6881,6882,6883,6884,6885,6886,6888,6889,6890,6891,6892,6897,6898,6899,6901,6902,6903,6904,6905,6906,6907,6908,6909,6911,6912,6913,6914,6915,6916,6917,6920,6921,6924,6925,6927,6932,6934,6935,6936,6937,6938,6939,6940,6945,6946,6948,6949,6950,6951,6958,6960,6962,6964,6971,6975,6982,6985,6987,6989,6992,6993,6995,6997,7001,7007,7010,7013,7014,7018,7019,7020,7023,7024,7025,7027,7028,7029,7032,7033,7035,7038,7040,7042,7045,7051,7060,7063,7065,7066,7067,7069,7070,7071,7073,7090,7093,7095,7096,7097,7098,7099,7103,7106,7109,7117,7118,7121,7122,7123,7125,7126,7138,7140,7141,7142,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7158,7160,7162,7163,7164,7166,7167,7168,7169,7173,7175,7176,7178,7179,7182,7183,7185,7188,7190,7191,7195,7196,7200,7201,7202,7205,7206,7207,7209,7210,7213,7214,7217,7220,7222,7224,7227,7228,7229,7230,7231,7232,7235,7238,7240,7241,7242,7244,7245,7249,7251,7253,7254,7255,7256,7258,7260,7261,7263,7264,7290,7291,7292,7293,7294,7297,7298,7300,7302,7304,7305,7307,7309,7311,7312,7313,7314,7315,7316,7324,7325,7326,7329,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7350,7351,7352,7353,7354,7355,7356,7358,7360,7361,7363,7364,7366,7373,7376,7378,7379,7380,7381,7382,7384,7387,7388,7389,7391,7392,7393,7395,7396,7397,7399,7400,7402,7404,7405,7408,7410,7411,7412,7414,7416,7420,7426,7428,7429,7430,7432,7433,7434,7435,7436,7437,7441,7446,7449,7450,7452,7454,7455,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7473,7475,7476,7477,7478,7479,7483,7486,7487,7488,7490,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534, +7535,7537,7538,7539,7540,7541,7542,7543,7544,7545,7547,7551,7554,7556,7557,7558,7561,7568,7571,7572,7573,7574,7575,7576,7578,7579,7580,7581,7582,7583,7584,7585,7586,7588,7590,7592,7593,7596,7597,7598,7599,7601,7602,7607,7608,7610,7611,7613,7617,7618,7619,7620,7622,7623,7624,7627,7628,7630,7631,7632,7633,7634,7635,7636,7640,7641,7642,7643,7645,7646,7647,7648,7649,7651,7652,7653,7654,7657,7659,7660,7661,7664,7665,7666,7667,7668,7669,7671,7672,7673,7675,7677,7678,7679,7680,7681,7683,7684,7685,7686,7688,7689,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7712,7713,7714,7715,7716,7718,7719,7720,7721,7722,7723,7724,7725,7726,7728,7729,7730,7731,7732,7733,7734,7735,7737,7738,7739,7740,7741,7742,7743,7744,7745,7747,7748,7749,7751,7752,7753,7755,7759,7762,7763,7766,7767,7769,7770,7772,7773,7775,7777,7780,7781,7788,7789,7792,7794,7795,7801,7802,7804,7805,7806,7807,7808,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7878,7879,7880,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7897,7898,7899,7900,7901,7902,7903,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7951,7952,7953,7954,7955,7956,7957,7959,7960,7961,7963,7965,7966,7967,7968,7969,7971,7972,7974,7975,7976,7977,7978,7979,7980,7982,7983,7984,7986,7987,7988,7989,7990,7991,7992,7993,7994,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8025,8026,8027,8028,8029,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8050,8051,8052,8053,8054,8055, +8056,8058,8060,8061,8063,8064,8065,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8084,8086,8087,8088,8089,8092,8093,8094,8096,8097,8098,8099,8100,8101,8102,8103,8105,8106,8107,8108,8109,8110,8111,8112,8113,8115,8116,8117,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8130,8131,8134,8135,8136,8137,8138,8139,8141,8142,8143,8144,8145,8146,8148,8149,8150,8151,8153,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8167,8168,8169,8170,8171,8175,8176,8177,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8194,8196,8198,8199,8201,8203,8204,8205,8210,8211,8216,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8232,8233,8234,8235,8237,8238,8239,8240,8241,8242,8243,8246,8247,8249,8250,8251,8253,8256,8260,8263,8264,8265,8266,8267,8268,8270,8271,8272,8273,8274,8279,8280,8281,8283,8284,8285,8286,8287,8288,8289,8290,8291,8293,8294,8295,8296,8297,8298,8299,8302,8303,8306,8307,8309,8314,8316,8317,8318,8319,8320,8321,8322,8327,8328,8330,8331,8332,8333,8340,8342,8344,8346,8353,8357,8364,8367,8369,8371,8374,8375,8377,8379,8383,8389,8392,8395,8396,8400,8401,8402,8405,8406,8407,8409,8410,8411,8414,8415,8417,8420,8422,8424,8427,8433,8442,8445,8447,8448,8449,8451,8452,8453,8455,8472,8475,8477,8478,8479,8480,8481,8485,8488,8491,8499,8500,8503,8504,8505,8507,8508,8520,8522,8523,8524,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8540,8542,8544,8545,8546,8547,8548,8549,8553,8555,8556,8558,8559,8562,8563,8567,8569,8570,8574,8575,8579,8580,8581,8584,8586,8587,8590,8591,8594,8597,8599,8601,8603,8604,8605,8606,8607,8610,8613,8615,8616,8617,8619,8620,8622,8624,8626,8627,8628,8629,8631,8633,8634,8636,8637,8660,8661,8662,8663,8666,8667,8669,8671,8673,8674,8676,8678,8679,8680,8681,8682,8683,8691,8692,8693,8696,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8710,8711,8713,8715,8716,8717,8718,8719,8720,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8735,8736,8737,8738,8740,8741,8742,8743,8744,8745,8747,8748,8749,8750,8751,8752,8753,8754, +8755,8757,8758,8759,8760,8761,8762,8763,8764,8765,8768,8769,8770,8771,8772,8774,8775,8776,8777,8778,8779,8780,8782,8783,8784,8785,8786,8787,8788,8789,8790,8792,8793,8794,8795,8796,8797,8798,8799 + } + Vertices: *6339 { + a: -0.000566005706787109,-0.0170508623123169,-0.000692367553710938,0.00303840637207031,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431003570557,-0.011993408203125,0.0131235122680664,-0.0528204441070557,-0.00647544860839844,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340700149536133,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.085599422454834,-0.011622428894043,-0.00211310386657715,-0.0798652172088623,-0.0209531784057617,0.00265836715698242,-0.0556373596191406,-0.00635147094726563,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,-0.00211334228515625,-0.0798652172088623,-0.0209522247314453,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.00702142715454102,-0.0759894847869873,0.0001373291015625,0.0131235122680664,-0.0528203845024109,-0.00647544860839844,0.00488185882568359,-0.0435431599617004,-0.011993408203125,0.00303840637207031,-0.0311987996101379,-0.00477218627929688,-0.000566005706787109,-0.0170509219169617,-0.000692367553710938,-0.000565528869628906,-0.0170509219169617,-0.000692367553710938,0.00303792953491211,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431599617004,-0.011993408203125,0.0131235122680664,-0.0528204441070557,-0.00647449493408203,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.00211334228515625,-0.0798652172088623,-0.0209522247314453,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00173830986022949,-0.0393043756484985, +-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.000566005706787109,-0.0170508623123169,-0.000692367553710938,-0.00303840637207031,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435432195663452,-0.011993408203125,-0.0131235122680664,-0.0528204441070557,-0.00647544860839844,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00425052642822266,-0.085599422454834,-0.011622428894043,0.00211310386657715,-0.0798652172088623,-0.0209531784057617,-0.00265836715698242,-0.0556373596191406,-0.00635147094726563,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00425052642822266,-0.0855995416641235,-0.0116214752197266,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.00702142715454102,-0.0759894847869873,0.0001373291015625,-0.0131235122680664,-0.0528203845024109,-0.00647544860839844,-0.00488185882568359,-0.0435431599617004,-0.011993408203125,-0.00303840637207031,-0.0311987996101379,-0.00477218627929688,0.000566005706787109,-0.0170509219169617,-0.000692367553710938,0.000565528869628906,-0.0170509219169617,-0.000692367553710938,-0.00303792953491211,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435431599617004,-0.011993408203125,-0.0131235122680664,-0.0528204441070557,-0.00647449493408203,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00425052642822266,-0.0855995416641235,-0.0116214752197266,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00265860557556152, +-0.0556374192237854,-0.00635242462158203,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,-0.000566005706787109,-0.0170508623123169,-0.000692367553710938,0.00303840637207031,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431003570557,-0.011993408203125,0.0131235122680664,-0.0528204441070557,-0.00647544860839844,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340700149536133,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.085599422454834,-0.011622428894043,-0.00211310386657715,-0.0798652172088623,-0.0209531784057617,0.00265836715698242,-0.0556373596191406,-0.00635147094726563,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,-0.00211334228515625,-0.0798652172088623,-0.0209522247314453,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.00702142715454102,-0.0759894847869873,0.0001373291015625,0.0131235122680664,-0.0528203845024109,-0.00647544860839844,0.00488185882568359,-0.0435431599617004,-0.011993408203125,0.00303840637207031,-0.0311987996101379,-0.00477218627929688,-0.000566005706787109,-0.0170509219169617,-0.000692367553710938,-0.000565528869628906,-0.0170509219169617,-0.000692367553710938,0.00303792953491211,-0.0311988592147827,-0.00477218627929688,0.00488138198852539,-0.0435431599617004,-0.011993408203125,0.0131235122680664,-0.0528203845024109,-0.00647449493408203,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00425052642822266,-0.0855995416641235,-0.0116214752197266,-0.00211334228515625, +-0.0798652172088623,-0.0209522247314453,0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0.000566005706787109,-0.0170508623123169,-0.000692367553710938,-0.00303840637207031,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435432195663452,-0.011993408203125,-0.0131235122680664,-0.0528204441070557,-0.00647544860839844,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00425052642822266,-0.085599422454834,-0.011622428894043,0.00211310386657715,-0.0798652172088623,-0.0209531784057617,-0.00265836715698242,-0.0556373596191406,-0.00635147094726563,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00265860557556152,-0.0556374192237854,-0.00635242462158203,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00425052642822266,-0.0855996012687683,-0.0116214752197266,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.00702142715454102,-0.0759894847869873,0.0001373291015625,-0.0131235122680664,-0.0528203845024109,-0.00647544860839844,-0.00488185882568359,-0.0435431599617004,-0.011993408203125,-0.00303840637207031,-0.0311987996101379,-0.00477218627929688,0.000566005706787109,-0.0170509219169617,-0.000692367553710938,0.000565528869628906,-0.0170509219169617,-0.000692367553710938,-0.00303792953491211,-0.0311988592147827,-0.00477218627929688,-0.00488138198852539,-0.0435431599617004,-0.011993408203125,-0.0131235122680664,-0.0528203845024109,-0.00647449493408203,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.000601291656494141,-0.084378719329834,0.00197887420654297, +-0.00425052642822266,-0.0855995416641235,-0.0116214752197266,0.00211334228515625,-0.0798652172088623,-0.0209522247314453,-0.00265860557556152,-0.0556374192237854,-0.00635242462158203,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867,-0.00511384010314941,-0.0152137279510498,-0.0203084945678711,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-0.0627508163452148,-0.0162181854248047,0,-0.115747690200806,-0.0369243621826172,0,-6.89923763275146e-06,0,0,-9.23275947570801e-05,0.000410079956054688,0,-0.0451819896697998,0.0201606750488281,0,-0.0940375328063965,-0.00228500366210938,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-9.77516174316406e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.00135803222656e-05,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-2.21729278564453e-05,0,0,-1.00135803222656e-05,0,0,-2.24113464355469e-05,0,0,-1.29938125610352e-05,0,0,-1.71661376953125e-05,0,0,-0.271533966064453,-0.142976760864258,0,-0.00580501556396484,0.00164985656738281,0,-2.09808349609375e-05,0,0,-9.5367431640625e-06,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-9.89437103271484e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,-2.86102294921875e-05,-7.09295272827148e-05,-8.96453857421875e-05,6.24656677246094e-05,-0.000263214111328125,-5.91278076171875e-05,0.000182390213012695,-0.000272393226623535,-4.86373901367188e-05,0.000196933746337891,-0.000431060791015625,-0.000131607055664063,0.000128030776977539,-0.000278472900390625,0.000164031982421875, +0.000115394592285156,-0.000629425048828125,0.000411033630371094,-0.000132560729980469,-0.000238656997680664,-0.000151634216308594,5.29289245605469e-05,-0.000141143798828125,-0.000199317932128906,-8.91685485839844e-05,-0.000214338302612305,-9.918212890625e-05,-3.19480895996094e-05,1.1444091796875e-05,2.86102294921875e-06,1.09672546386719e-05,-3.814697265625e-06,-8.0108642578125e-05,-7.86781311035156e-05,-0.000385284423828125,-0.000125885009765625,0,5.36441802978516e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,1.09672546386719e-05,-3.73125076293945e-05,-7.72476196289063e-05,0,-1.9073486328125e-05,0,0,2.29477882385254e-06,0,0,-2.21133232116699e-05,0,0,-9.89437103271484e-06,0,0,5.36441802978516e-06,0,0,-1.29938125610352e-05,0,-2.81333923339844e-05,-8.30888748168945e-05,-7.62939453125e-05,0,-7.15255737304688e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05, +0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-9.5367431640625e-06,0,0,-2.288818359375e-05,0,0.198601305484772,-0.233448028564453,0.0351734161376953,0.181233584880829,-0.0730688571929932,0.073124885559082,0.393107891082764,-0.222312331199646,0.207329750061035,0.619045376777649,-0.284741878509521,0.127145767211914,0.496301651000977,-0.656781673431396,0.277639389038086,0.458295345306396,-0.572644710540771,0.187798500061035,-0.0321366786956787,-0.709088683128357,0.0310096740722656,-0.0113766193389893,-0.725598812103271,-0.0391607284545898,-0.048736572265625,-0.771039605140686,0.066248893737793,-0.166918039321899,-0.78978967666626,-0.0831832885742188,-0.150293827056885,-0.760715484619141,0.0342578887939453,-0.0663290023803711,-0.672333240509033,0.146062850952148,0.00377178192138672,-0.410556793212891,0.20185661315918,-0.0562400817871094,-0.475208282470703,0.0470952987670898,-0.0753993988037109,-0.0409398078918457,-0.043940544128418,0.00100612640380859,-0.00134944915771484,0.00163745880126953,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-2.20537185668945e-05,0,0,-6.79492950439453e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-1.31130218505859e-05,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,-1.62124633789063e-05,0,0,-6.91413879394531e-06,0,0,-1.31130218505859e-05,0,0,-9.89437103271484e-06,0,0,-1.59740447998047e-05,0,0,-9.90927219390869e-06, +0,0,-1.60932540893555e-05,0,0.0435707271099091,0.0315025150775909,0.0380573272705078,0,-1.29938125610352e-05,0,0,-3.814697265625e-06,0,-7.15255737304688e-05,-1.28746032714844e-05,-9.10758972167969e-05,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-6.85453414916992e-06,0,0,-6.86012208461761e-06,0,0,-6.91413879394531e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,2.14576721191406e-06,0,0.0575366020202637,0.0370140075683594,0.0461807250976563,0.0562986731529236,0.037187933921814,0.049687385559082,0.0939074456691742,-0.0960333347320557,0.0430774688720703,0.247199416160583,-0.147589981555939,0.134914398193359,0.192692637443542,-0.650681018829346,0.10606575012207,0.203786373138428,-0.704376697540283,0.156311988830566,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,5.24520874023438e-06,0,0,-2.26497650146484e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05, +0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,2.14576721191406e-06,0,0,2.14576721191406e-06,0,0,2.32458114624023e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05, +0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,5.36441802978516e-06,0,0,-2.21580266952515e-05,0,0,-6.67572021484375e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,4.76837158203125e-06,0,0,-2.19345092773438e-05,0,0,4.76837158203125e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,0.00173830986022949,-0.0393043756484985,-0.0153684616088867,0.00265836715698242,-0.0556373596191406,-0.00635147094726563,-0.00211310386657715,-0.0798652172088623,-0.0209522247314453,0.00425052642822266,-0.085599422454834,-0.011622428894043,-0.000601291656494141,-0.084378719329834,0.00197887420654297,0.00340747833251953,-0.0842993259429932,0.00428676605224609,0.00702142715454102,-0.0759894847869873,0.000136375427246094,0.0131235122680664,-0.0528204441070557,-0.0457086563110352,0.00488138198852539,-0.0435432195663452,-0.011993408203125,0.00303840637207031,-0.0311988592147827,-0.00477218627929688,-0.000566005706787109,-0.0170508623123169,-0.000691413879394531,-7.62939453125e-05,-0.000263214111328125,0.00017547607421875,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.60038471221924e-05,0,0,2.29477882385254e-06,0,0,-1.9073486328125e-05, +0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.60336494445801e-05,0,-5.43594360351563e-05,-0.00015944242477417,-0.000225067138671875,0.00511384010314941,-0.015213668346405,-0.0203084945678711,-9.58442687988281e-05,-0.000400543212890625,-9.918212890625e-05,0,-9.89437103271484e-06,0,0,-9.92417335510254e-06,0,0,-1.29640102386475e-05,0,0,-1.60187482833862e-05,0,0,2.29477882385254e-06,0,0,-1.9073486328125e-05,0,0,5.33834099769592e-06,0,0,-6.85453414916992e-06,0,0,-2.21133232116699e-05,0,0,-1.29342079162598e-05,0,0,-1.29938125610352e-05,0,-3.29017639160156e-05,5.36441802978516e-06,-2.38418579101563e-05,-0.00038909912109375,-0.0136665105819702,0.000261306762695313,0.00375270843505859,-0.0486670732498169,0.000476837158203125,0.0146803855895996,-0.0940529108047485,-0.00689125061035156,0.0110211372375488,-0.111713409423828,-0.0127944946289063,-0.00789356231689453,-0.147260189056396,-0.0035400390625,-0.0175118446350098,-0.153586626052856,0.00140762329101563,-0.00359797477722168,-0.148538827896118,-0.00735378265380859,0.00955343246459961,-0.142941951751709,-0.0207509994506836,0.0134623050689697,-0.135285139083862,-0.0278902053833008,0.0101485252380371,-0.113632917404175,-0.0218610763549805,-0.00143623352050781,-0.0886878967285156,-0.0259761810302734,-0.0046234130859375,-0.0507667064666748,-0.0211696624755859,0.000264406204223633,-0.0841621160507202,-0.0196971893310547,0.0259188413619995,-0.126172602176666,-0.0308198928833008,0.0564348697662354,-0.168204545974731,-0.0282449722290039,0.0518314838409424,-0.211633920669556,-0.0366058349609375,0.0191142559051514,-0.228726863861084,-0.0295343399047852,-0.015955924987793,-0.254142045974731,0.0115470886230469,-0.0563993453979492,-0.219217538833618,-0.02032470703125,-0.0640130043029785,-0.208976030349731,-0.0344362258911133,-0.0160698890686035,-0.169751644134521,-0.0448808670043945,0.0117130279541016,-0.100040435791016,-0.0353326797485352,0.00673294067382813,-0.0469399094581604,-0.0134868621826172,0.00221538543701172,-0.0010993480682373,-0.00461578369140625, +4.48226928710938e-05,6.03199005126953e-05,-6.19888305664063e-05,0,5.36441802978516e-06,0,0,-9.95397567749023e-06,0,0,-1.29938125610352e-05,0,0,-1.9073486328125e-05,0,0,-9.92417335510254e-06,0,0,-9.92417335510254e-06,0,0,-3.814697265625e-06,0,-7.48634338378906e-05,-0.000659942626953125,-0.0001373291015625,0.117941856384277,-0.702539920806885,0.113059997558594,0.445447325706482,-0.632663726806641,0.154514312744141,0.301316738128662,-0.242453813552856,0.107141494750977,0.162029385566711,-0.0936257243156433,0.0846195220947266,0.0691169500350952,0.0293723940849304,0.0563573837280273,0,5.34951686859131e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-6.79492950439453e-06,0,-0.000739574432373047,7.55786895751953e-05,0.000294685363769531,0.000155448913574219,-0.000107526779174805,-0.000415802001953125,-0.0234146118164063,-0.142871856689453,0.0171165466308594,-0.0492358207702637,-0.392490386962891,0.267827033996582,-0.0761919021606445,-0.664289116859436,0.219707489013672,-0.0780789852142334,-0.740393757820129,0.167500495910645,-0.0397133827209473,-0.721021294593811,0.0830955505371094,0.02530837059021,-0.417987942695618,0.0143365859985352,-0.0278544425964355,-0.45692503452301,0.115342140197754,-0.0813326835632324,-0.380844712257385,0.133084297180176,-0.0796103477478027,-0.22330379486084,0.00683116912841797,-0.0153617858886719,-0.115528106689453,-0.0500507354736328,0.00555896759033203,-0.0514595508575439,-0.0303335189819336,0.000191688537597656,-0.000174760818481445,-0.000385284423828125,-0.0001220703125,5.36441802978516e-06,4.24385070800781e-05,-2.62260437011719e-05,3.27825546264648e-05,1.66893005371094e-05,0,-3.814697265625e-06,0,0,5.33834099769592e-06,0,0,-2.21133232116699e-05,0,0,-1.29938125610352e-05,0,0,-1.60932540893555e-05,0,0,-9.89437103271484e-06,0,0,-6.91413879394531e-06,0,0,5.36441802978516e-06,0,0,2.26497650146484e-06,0,0,-1.29640102386475e-05, +0,0.00468754768371582,0.000560760498046875,0.00362491607666016,0.0479890108108521,-0.0748481750488281,0.0213432312011719,0.157313585281372,-0.166788339614868,0.0218429565429688,0.164013147354126,-0.205063581466675,0.0148906707763672,0.070509672164917,-0.316425323486328,-0.0101642608642578,0.130076199769974,-0.283966541290283,0.100852012634277,0.189201891422272,-0.218106746673584,0.0156993865966797,0.195440411567688,-0.517203330993652,0.0190715789794922,-0.0195471048355103,-0.751078128814697,0.142290115356445,0.01531982421875,-0.765299081802368,0.109026908874512,-0.0976181030273438,-0.836844444274902,0.152434349060059,-0.143328666687012,-0.645481109619141,0.0880002975463867,0.0182294845581055,-0.187814712524414,0.0611109733581543,0,-1.57356262207031e-05,0,0,5.24520874023438e-06,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,-1.9073486328125e-05,0,0,-2.21133232116699e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.57356262207031e-05,0,0,-3.814697265625e-06,0,0,-2.19345092773438e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29677355289459e-05,0,0,-1.29658728837967e-05,0,0,-6.91413879394531e-06,0,0,-2.21729278564453e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.62124633789063e-05,0,0,-1.60932540893555e-05,0,0,-1.29640102386475e-05,0,0,-9.89437103271484e-06,0,0,-1.9073486328125e-05,0,0,2.38418579101563e-06,0,0,-6.91413879394531e-06,0,0,2.26497650146484e-06,0,0,-9.92044806480408e-06,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.29938125610352e-05,0,0,-1.29669206216931e-05,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.59740447998047e-05,0,0,-6.79492950439453e-06, +0,0,-6.86943531036377e-06,0,0,-9.89437103271484e-06,0,0,5.24520874023438e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.28746032714844e-05,0,0,-9.98377799987793e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-3.814697265625e-06,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,2.38418579101563e-06,0,0,5.48362731933594e-06,0,0,-2.21729278564453e-05,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.59740447998047e-05,0,0,-2.19345092773438e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.29640102386475e-05,0,0,-2.21729278564453e-05,0,0,-6.91413879394531e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,2.38418579101563e-06,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-9.92044806480408e-06,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.77516174316406e-06,0,0,-6.91413879394531e-06,0,0,-6.85453414916992e-06,0,0,5.36441802978516e-06,0,0,-1.59740447998047e-05,0,0,-9.77516174316406e-06,0,0,-2.19345092773438e-05,0,0,2.38418579101563e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-6.86012208461761e-06,0,0,2.26497650146484e-06,0,0,-1.59740447998047e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,-1.31130218505859e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-1.59740447998047e-05,0,0,5.33758429810405e-06,0,0,-1.29938125610352e-05,0,0,-6.85453414916992e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05, +0,0,5.36441802978516e-06,0,0,-6.86058774590492e-06,0,0,5.27501106262207e-06,0,0,-1.29640102386475e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,2.32458114624023e-06,0,0,-6.86757266521454e-06,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,0,-1.31130218505859e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,-1.62124633789063e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,2.14576721191406e-06,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-2.24113464355469e-05,0,0,-1.28746032714844e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-6.67572021484375e-06,0,0,5.48362731933594e-06,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.31130218505859e-05,0,0,-6.88433647155762e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.59740447998047e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,5.7220458984375e-06,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0.000611782073974609,-0.00208759307861328,0.00178861618041992,0.00208330154418945,-0.00717544555664063,0.00326395034790039,0.000888824462890625,-0.0125370025634766,0.00101089477539063,0.000283718109130859,-0.0128240585327148,0.000726699829101563,-0.000833272933959961,-0.0128240585327148,0.00227832794189453,-0.000962257385253906,-0.0122013092041016, +0.00332450866699219,-0.000764250755310059,-0.0101289749145508,8.20159912109375e-05,-0.00137609243392944,-0.00813007354736328,0.00103569030761719,0,-1.52587890625e-05,0,0,-9.5367431640625e-06,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.23977661132813e-05,0,0,-1.62124633789063e-05,0,0,-1.23977661132813e-05,0,0,-2.09808349609375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-7.15255737304688e-06,0,0,-1.31130218505859e-05,0,0,-1.00135803222656e-05,0,0,-6.79492950439453e-06,0,0,-1.62124633789063e-05,0,0,-2.20537185668945e-05,0,0,5.24520874023438e-06,0,0,-1.32322311401367e-05,0,0,-7.15255737304688e-06,0,0,-1.60932540893555e-05,0,0,-1.60187482833862e-05,0,0,5.33461570739746e-06,0,0,2.27987766265869e-06,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-9.5367431640625e-06,0,0,-1.23977661132813e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.52587890625e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-1.31130218505859e-05,0,0,5.24520874023438e-06,0,0,2.32458114624023e-06,0,0,-2.19345092773438e-05,0,0,5.7220458984375e-06,0,0,-2.09808349609375e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.31130218505859e-05,0,0,5.36441802978516e-06,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,2.14576721191406e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.33514404296875e-05,0,0,-1.52587890625e-05, +0,0,-2.09808349609375e-05,0,0,-1.32322311401367e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-9.77516174316406e-06,0,0,2.14576721191406e-06,0,0,-6.85453414916992e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05, +0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-9.5367431640625e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05, +0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.288818359375e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,2.86102294921875e-05,-7.09295272827148e-05,-8.96453857421875e-05,-6.24656677246094e-05,-0.000263214111328125,-5.91278076171875e-05,-0.000182390213012695,-0.000272393226623535,-4.86373901367188e-05,-0.000196933746337891,-0.000431060791015625,-0.000131607055664063,-0.000128030776977539,-0.000278472900390625,0.000164031982421875,-0.000115394592285156,-0.000629425048828125,0.000411033630371094,0.000132560729980469,-0.000238656997680664,-0.000151634216308594,-5.29289245605469e-05,-0.000141143798828125,-0.000199317932128906,8.91685485839844e-05,-0.000214338302612305,-9.918212890625e-05,3.19480895996094e-05,1.1444091796875e-05,2.86102294921875e-06,-1.09672546386719e-05,-3.814697265625e-06,-8.0108642578125e-05,7.86781311035156e-05,-0.000385165214538574,-0.000125885009765625,0,5.36441802978516e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,-1.09672546386719e-05,-3.73125076293945e-05,-7.72476196289063e-05,0,-1.9073486328125e-05,0,0,2.29477882385254e-06,0,0,-2.21133232116699e-05,0,0,-9.92417335510254e-06,0,0,5.36441802978516e-06,0,0,-1.29938125610352e-05,0,2.81333923339844e-05,-8.30888748168945e-05,-7.62939453125e-05,0,-7.15255737304688e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05, +0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,4.76837158203125e-06,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-9.5367431640625e-06,0,0,-2.288818359375e-05,0,-0.198601305484772,-0.233448028564453,0.0351734161376953,-0.181233584880829,-0.0730688571929932,0.073124885559082,-0.393107891082764,-0.222312331199646,0.207329750061035,-0.619045376777649,-0.284741878509521,0.127145767211914,-0.496301651000977,-0.656781673431396,0.277639389038086,-0.458295345306396,-0.572644710540771,0.187798500061035,0.0321366786956787,-0.709088683128357,0.0310096740722656,0.0113766193389893,-0.725598812103271,-0.0391607284545898,0.048736572265625,-0.771039605140686,0.066248893737793, +0.166918039321899,-0.78978967666626,-0.0831832885742188,0.150293827056885,-0.760715484619141,0.0342578887939453,0.0663290023803711,-0.672333240509033,0.146062850952148,-0.00377178192138672,-0.410556793212891,0.20185661315918,0.0562400817871094,-0.475208282470703,0.0470952987670898,0.0753993988037109,-0.0409398078918457,-0.043940544128418,-0.00100612640380859,-0.00134944915771484,0.00163745880126953,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-2.20537185668945e-05,0,0,-6.79492950439453e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-1.31130218505859e-05,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,-1.62124633789063e-05,0,0,-6.91413879394531e-06,0,0,-1.31130218505859e-05,0,0,-9.89437103271484e-06,0,0,-1.59740447998047e-05,0,0,-9.90927219390869e-06,0,0,-1.60932540893555e-05,0,-0.0435707271099091,0.0315025150775909,0.0380573272705078,0,-1.29938125610352e-05,0,0,-3.814697265625e-06,0,7.15255737304688e-05,-1.28746032714844e-05,-9.10758972167969e-05,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-6.85453414916992e-06,0,0,-6.86012208461761e-06,0,0,-6.91413879394531e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,2.14576721191406e-06,0,-0.0575366020202637,0.0370140075683594,0.0461807250976563,-0.0562986731529236,0.037187933921814,0.049687385559082,-0.0939074456691742,-0.0960333347320557,0.0430774688720703,-0.247199416160583,-0.147589981555939,0.134914398193359,-0.192692637443542,-0.650681018829346,0.10606575012207,-0.203786373138428,-0.704376697540283,0.156311988830566,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-2.24113464355469e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06, +0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,5.24520874023438e-06,0,0,-2.26497650146484e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,2.14576721191406e-06,0,0,2.14576721191406e-06,0,0,2.32458114624023e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06, +0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-7.15255737304688e-06,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,5.24520874023438e-06,0,0,5.36441802978516e-06,0,0,-2.21580266952515e-05,0,0,-6.67572021484375e-06,0,0,-7.15255737304688e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,4.76837158203125e-06,0,0,-2.19345092773438e-05,0,0,4.76837158203125e-06,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-2.19345092773438e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-7.15255737304688e-06,0,0,-1.9073486328125e-05,0,0,-6.67572021484375e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,-0.00173830986022949,-0.0393043756484985,-0.0153684616088867, +-0.00265836715698242,-0.0556373596191406,-0.00635147094726563,0.00211310386657715,-0.0798652172088623,-0.0209522247314453,-0.00425052642822266,-0.085599422454834,-0.011622428894043,0.000601291656494141,-0.084378719329834,0.00197887420654297,-0.00340747833251953,-0.0842993259429932,0.00428676605224609,-0.00702142715454102,-0.0759894847869873,0.000136375427246094,-0.0131235122680664,-0.0528204441070557,-0.00647544860839844,-0.00488138198852539,-0.0435432195663452,-0.011993408203125,-0.00303840637207031,-0.0311988592147827,-0.00477218627929688,0.000566005706787109,-0.0170508623123169,-0.000691413879394531,7.62939453125e-05,-0.000263214111328125,0.00017547607421875,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.60038471221924e-05,0,0,2.29105353355408e-06,0,0,-1.9073486328125e-05,0,0,-1.90809369087219e-05,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.60336494445801e-05,0,5.43594360351563e-05,-0.000159472227096558,-0.000225067138671875,-0.00511384010314941,-0.015213668346405,-0.0203084945678711,9.58442687988281e-05,-0.000400543212890625,-9.918212890625e-05,0,-9.89437103271484e-06,0,0,-9.92417335510254e-06,0,0,-1.2960284948349e-05,0,0,-1.60187482833862e-05,0,0,2.32458114624023e-06,0,0,-1.9073486328125e-05,0,0,5.33834099769592e-06,0,0,-6.83963298797607e-06,0,0,-2.21133232116699e-05,0,0,-1.29342079162598e-05,0,0,-1.29938125610352e-05,0,3.29017639160156e-05,5.36441802978516e-06,-2.38418579101563e-05,0.00038909912109375,-0.0136665105819702,0.000261306762695313,-0.00375270843505859,-0.0486670732498169,0.000476837158203125,-0.0146803855895996,-0.0940529108047485,-0.00689125061035156,-0.0110211372375488,-0.111713409423828,-0.0127944946289063,0.00789356231689453,-0.147260189056396,-0.0035400390625,0.0175118446350098,-0.153586626052856,0.00140762329101563,0.00359797477722168,-0.148538827896118,-0.00735378265380859,-0.00955343246459961,-0.142941951751709,-0.0207509994506836,-0.0134623050689697,-0.135285139083862,-0.0278902053833008,-0.0101485252380371,-0.113632917404175, +-0.0218610763549805,0.00143623352050781,-0.0886878967285156,-0.0259761810302734,0.0046234130859375,-0.0507667064666748,-0.0211696624755859,-0.000264406204223633,-0.0841621160507202,-0.0196971893310547,-0.0259188413619995,-0.126172602176666,-0.0308198928833008,-0.0564348697662354,-0.168204545974731,-0.0282449722290039,-0.0518314838409424,-0.211633920669556,-0.0366058349609375,-0.0191142559051514,-0.228726863861084,-0.0295343399047852,0.015955924987793,-0.254142045974731,0.0115470886230469,0.0563993453979492,-0.219217538833618,-0.02032470703125,0.0640130043029785,-0.208976030349731,-0.0344362258911133,0.0160698890686035,-0.169751644134521,-0.0448808670043945,-0.0117130279541016,-0.100040435791016,-0.0353326797485352,-0.00673294067382813,-0.0469399094581604,-0.0134868621826172,-0.00221538543701172,-0.0010993480682373,-0.00461578369140625,-4.48226928710938e-05,6.03199005126953e-05,-6.19888305664063e-05,0,5.36441802978516e-06,0,0,-9.95397567749023e-06,0,0,-1.29938125610352e-05,0,0,-1.9073486328125e-05,0,0,-9.92417335510254e-06,0,0,-9.92417335510254e-06,0,0,-3.814697265625e-06,0,7.48634338378906e-05,-0.000659942626953125,-0.0001373291015625,-0.117941856384277,-0.702539920806885,0.113059997558594,-0.445447325706482,-0.632663726806641,0.154514312744141,-0.301316738128662,-0.242453813552856,0.107141494750977,-0.162029385566711,-0.0936257243156433,0.0846195220947266,-0.0691169500350952,0.0293723940849304,0.0563573837280273,0,5.34951686859131e-06,0,0,-3.814697265625e-06,0,0,-1.60932540893555e-05,0,0,-1.31130218505859e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-6.79492950439453e-06,0,0.000739574432373047,7.55786895751953e-05,0.000294685363769531,-0.000155448913574219,-0.000107526779174805,-0.000415802001953125,0.0234146118164063,-0.142871856689453,0.0171165466308594,0.0492358207702637,-0.392490386962891,0.267827033996582,0.0761919021606445,-0.664289116859436,0.219707489013672,0.0780789852142334,-0.740393757820129, +0.167500495910645,0.0397133827209473,-0.721021294593811,0.0830955505371094,-0.02530837059021,-0.417987942695618,0.0143365859985352,0.0278544425964355,-0.45692503452301,0.115342140197754,0.0813326835632324,-0.380844712257385,0.133084297180176,0.0796103477478027,-0.22330379486084,0.00683116912841797,0.0153617858886719,-0.115528106689453,-0.0500507354736328,-0.00555896759033203,-0.0514595508575439,-0.0303335189819336,-0.000191688537597656,-0.000174760818481445,-0.000385284423828125,0.0001220703125,5.36441802978516e-06,4.24385070800781e-05,2.62260437011719e-05,3.27825546264648e-05,1.66893005371094e-05,0,-3.814697265625e-06,0,0,5.33834099769592e-06,0,0,-2.21133232116699e-05,0,0,-1.29938125610352e-05,0,0,-1.60932540893555e-05,0,0,-9.89437103271484e-06,0,0,-6.91413879394531e-06,0,0,5.36441802978516e-06,0,0,2.26497650146484e-06,0,0,-1.29640102386475e-05,0,-0.00468754768371582,0.000560760498046875,0.00362491607666016,-0.0479890108108521,-0.0748481750488281,0.0213432312011719,-0.157313585281372,-0.166788339614868,0.0218429565429688,-0.164013147354126,-0.205063581466675,0.0148906707763672,-0.070509672164917,-0.316425323486328,-0.0101642608642578,-0.130076199769974,-0.283966541290283,0.100852012634277,-0.189201891422272,-0.218106746673584,0.0156993865966797,-0.195440411567688,-0.517203330993652,0.0190715789794922,0.0195471048355103,-0.751078128814697,0.142290115356445,-0.01531982421875,-0.765299081802368,0.109026908874512,0.0976181030273438,-0.836844444274902,0.152434349060059,0.143328666687012,-0.645481109619141,0.0880002975463867,-0.0182294845581055,-0.187814712524414,0.0611109733581543,0,-1.57356262207031e-05,0,0,5.24520874023438e-06,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,-1.9073486328125e-05,0,0,-2.21133232116699e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.57356262207031e-05,0,0,-3.814697265625e-06,0,0,-2.19345092773438e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29677355289459e-05, +0,0,-1.29658728837967e-05,0,0,-6.91413879394531e-06,0,0,-2.21729278564453e-05,0,0,-1.00135803222656e-05,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.62124633789063e-05,0,0,4.76837158203125e-06,0,0,-1.62124633789063e-05,0,0,-1.60932540893555e-05,0,0,-1.29640102386475e-05,0,0,-9.89437103271484e-06,0,0,-1.9073486328125e-05,0,0,2.38418579101563e-06,0,0,-6.91413879394531e-06,0,0,2.26497650146484e-06,0,0,-9.92044806480408e-06,0,0,-6.91413879394531e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-1.29938125610352e-05,0,0,-1.29669206216931e-05,0,0,5.48362731933594e-06,0,0,-1.9073486328125e-05,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-1.59740447998047e-05,0,0,-6.79492950439453e-06,0,0,-6.86943531036377e-06,0,0,-9.89437103271484e-06,0,0,5.24520874023438e-06,0,0,-1.00135803222656e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.28746032714844e-05,0,0,-9.98377799987793e-06,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-3.814697265625e-06,0,0,-6.91413879394531e-06,0,0,-6.91413879394531e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.62124633789063e-05,0,0,5.48362731933594e-06,0,0,-6.91413879394531e-06,0,0,2.38418579101563e-06,0,0,2.38418579101563e-06,0,0,5.48362731933594e-06,0,0,-2.21729278564453e-05,0,0,2.38418579101563e-06,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-2.21729278564453e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.59740447998047e-05,0,0,-2.19345092773438e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.29640102386475e-05,0,0,-2.21729278564453e-05,0,0,-6.91413879394531e-06,0,0,-1.28746032714844e-05,0,0,5.24520874023438e-06,0,0,2.38418579101563e-06,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-9.92044806480408e-06, +0,0,5.24520874023438e-06,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,5.48362731933594e-06,0,0,-7.39097595214844e-06,0,0,-9.77516174316406e-06,0,0,-6.91413879394531e-06,0,0,-6.85453414916992e-06,0,0,5.36441802978516e-06,0,0,-1.59740447998047e-05,0,0,-9.77516174316406e-06,0,0,-2.19345092773438e-05,0,0,2.38418579101563e-06,0,0,-1.9073486328125e-05,0,0,-1.28746032714844e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-6.86012208461761e-06,0,0,2.26497650146484e-06,0,0,-1.59740447998047e-05,0,0,-7.15255737304688e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,-1.31130218505859e-05,0,0,-3.814697265625e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.00135803222656e-05,0,0,-1.59740447998047e-05,0,0,5.33758429810405e-06,0,0,-1.29938125610352e-05,0,0,-6.85453414916992e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,5.36441802978516e-06,0,0,-6.86058774590492e-06,0,0,5.27501106262207e-06,0,0,-1.29640102386475e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-2.21729278564453e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,2.32458114624023e-06,0,0,-6.86757266521454e-06,0,0,-1.9073486328125e-05,0,0,-2.21729278564453e-05,0,0,-1.31130218505859e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.59740447998047e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,2.14576721191406e-06,0,0,-6.91413879394531e-06,0,0,-1.62124633789063e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,2.14576721191406e-06,0,0,-3.814697265625e-06,0,0,-1.29342079162598e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-2.24113464355469e-05,0,0,-1.28746032714844e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-6.67572021484375e-06,0,0,5.48362731933594e-06,0,0,5.24520874023438e-06, +0,0,-2.24113464355469e-05,0,0,-1.59740447998047e-05,0,0,-1.31130218505859e-05,0,0,-6.88433647155762e-06,0,0,-6.85453414916992e-06,0,0,-1.60336494445801e-05,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.59740447998047e-05,0,0,5.24520874023438e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,5.48362731933594e-06,0,0,-1.00135803222656e-05,0,0,-6.67572021484375e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,5.7220458984375e-06,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,-0.000611782073974609,-0.00208759307861328,0.00178861618041992,-0.00208330154418945,-0.00717544555664063,0.00326395034790039,-0.000888824462890625,-0.0125370025634766,0.00101089477539063,-0.000283718109130859,-0.0128240585327148,0.000726699829101563,0.000833272933959961,-0.0128240585327148,0.00227832794189453,0.000962257385253906,-0.0122013092041016,0.00332450866699219,0.000764250755310059,-0.0101289749145508,8.20159912109375e-05,0.00137609243392944,-0.00813007354736328,0.00103569030761719,0,-1.52587890625e-05,0,0,-9.5367431640625e-06,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.23977661132813e-05,0,0,-1.62124633789063e-05,0,0,-1.23977661132813e-05,0,0,-2.09808349609375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-7.15255737304688e-06,0,0,-1.31130218505859e-05,0,0,-1.00135803222656e-05,0,0,-6.79492950439453e-06,0,0,-1.62124633789063e-05,0,0,-2.20537185668945e-05,0,0,5.24520874023438e-06,0,0,-1.32322311401367e-05,0,0,-7.15255737304688e-06,0,0,-1.60932540893555e-05,0,0,-1.60187482833862e-05,0,0,5.33461570739746e-06,0,0,2.27987766265869e-06,0,0,-1.29938125610352e-05,0,0,2.38418579101563e-06,0,0,-1.28746032714844e-05,0,0,-1.28746032714844e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.00135803222656e-05,0,0,-9.5367431640625e-06, +0,0,-1.23977661132813e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.52587890625e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,-1.31130218505859e-05,0,0,5.24520874023438e-06,0,0,2.32458114624023e-06,0,0,-2.19345092773438e-05,0,0,5.7220458984375e-06,0,0,-2.09808349609375e-05,0,0,-1.62124633789063e-05,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-1.31130218505859e-05,0,0,5.36441802978516e-06,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.52587890625e-05,0,0,-1.9073486328125e-05,0,0,2.14576721191406e-06,0,0,-9.89437103271484e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.23977661132813e-05,0,0,-1.33514404296875e-05,0,0,-1.52587890625e-05,0,0,-2.09808349609375e-05,0,0,-1.32322311401367e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-9.77516174316406e-06,0,0,2.14576721191406e-06,0,0,-6.85453414916992e-06,0,0,-6.67572021484375e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-2.288818359375e-05,0,0,-1.04904174804688e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0, +0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-2.288818359375e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-2.24113464355469e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,-1.28746032714844e-05,0,0,-1.62124633789063e-05,0,0,5.24520874023438e-06,0,0,5.24520874023438e-06,0,0,-3.814697265625e-06,0,0,-2.24113464355469e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-2.19345092773438e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-1.62124633789063e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.04904174804688e-05,0,0,-6.67572021484375e-06,0,0,-6.67572021484375e-06,0,0,-1.62124633789063e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.04904174804688e-05,0,0,-1.04904174804688e-05,0,0,-1.9073486328125e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05, +0,0,-6.67572021484375e-06,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-7.15255737304688e-06,0,0,4.76837158203125e-06,0,0,-1.33514404296875e-05,0,0,-2.24113464355469e-05,0,0,-1.62124633789063e-05,0,0,-1.28746032714844e-05,0,0,-2.19345092773438e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-9.5367431640625e-06,0,0,-9.5367431640625e-06,0,0,-1.62124633789063e-05,0,0,-1.04904174804688e-05,0,0,-1.33514404296875e-05,0,0,-1.62124633789063e-05,0,0,-1.62124633789063e-05,0,0,-3.814697265625e-06,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.33514404296875e-05,0,0,-1.33514404296875e-05,0,0,-6.67572021484375e-06,0,0,-1.04904174804688e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.19345092773438e-05,0,0,-2.288818359375e-05,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-1.9073486328125e-05,0,0,-1.71661376953125e-05,0,0,-1.9073486328125e-05,0,0,-1.00135803222656e-05,0,0,-7.15255737304688e-06,0,0,-1.28746032714844e-05,0,0,-3.814697265625e-06,0,0,-7.15255737304688e-06,0,0,-9.5367431640625e-06,0,0,-1.71661376953125e-05,0,0,-1.71661376953125e-05,0,0,-1.33514404296875e-05,0,0,-3.814697265625e-06,0,0,-1.59740447998047e-05,0,0,-3.814697265625e-06,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,-2.21729278564453e-05,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-1.29938125610352e-05,0,0,-9.89437103271484e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,-1.60038471221924e-05,0,0,5.33461570739746e-06,0,0,2.32458114624023e-06,0,0,-1.29342079162598e-05,0,0,-2.21133232116699e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-1.29342079162598e-05,0,0,-6.79492950439453e-06,0,0,2.26497650146484e-06,0,0,-1.29938125610352e-05,0,0,-9.77516174316406e-06,0,0,-2.21729278564453e-05,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,-1.29938125610352e-05,0,0,-9.89437103271484e-06,0, +0,-1.9073486328125e-05,0,0,-2.21133232116699e-05,0,0,-1.90436840057373e-05,0,0,-1.60038471221924e-05,0,0,5.33461570739746e-06,0,0,2.32458114624023e-06,0,0,-1.29342079162598e-05,0,0,-2.21133232116699e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,5.36441802978516e-06,0,0,-9.89437103271484e-06,0,0,-6.79492950439453e-06,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,-2.20537185668945e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,5.36441802978516e-06,0,0,-1.60038471221924e-05,0,0,5.33461570739746e-06,0,0,-1.9073486328125e-05,0,0,-6.85453414916992e-06,0,0,2.32458114624023e-06,0,0,5.36441802978516e-06,0,0,-6.79492950439453e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,5.36441802978516e-06,0,0,-6.79492950439453e-06,0,0,5.48362731933594e-06,0,0,-1.59740447998047e-05,0,0,-2.21729278564453e-05,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0,0,-2.20537185668945e-05,0,0,-1.9073486328125e-05,0,0,-3.814697265625e-06,0,0,-9.89437103271484e-06,0,0,5.36441802978516e-06,0,0,-1.60038471221924e-05,0,0,2.29477882385254e-06,0,0,-1.9073486328125e-05,0,0,-1.9073486328125e-05,0,0,2.32458114624023e-06,0,0,-1.60336494445801e-05,0,0,-1.9073486328125e-05,0,0,-6.79492950439453e-06,0,0,-3.814697265625e-06,0,0,-1.9073486328125e-05,0,0,-2.20537185668945e-05,0 + } + Normals: *6339 { + a: 0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355,0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555, +-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668,0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506,-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256, +1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089,-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172, +0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.608315385878086,0.0309087634086609,0.337096847593784,-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849,0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,-0.813232317757571,-0.186832426581532,-1.5627653002739,-0.884116136967485,-0.543078005313873,-1.34448239207268,-0.803670091190099,-0.912882976233959,-1.18500626087189,-0.825587966065477,0.53037460707128,-1.428053855896,-0.823403289638748,-0.0362337455153465,-1.55795729160309,-0.842690473710611,0.792773408815265,-1.18508744239807,-0.956571599439712,-0.440030723810196,-1.21143516898155,-0.868985265882912,-0.749374374747276,-1.2905809879303,-0.692408370046412,-0.241693571209908, +-1.66951555013657,-0.868985309833249,-0.0352115631103516,-1.43092286586761,-0.458389961814419,0.240954674780369,-1.84803771972656,-0.517540266355553,-0.766530230641365,-1.66777366399765,-0.512467302148593,-0.872842490673065,-1.62408316135406,-0.470198529023094,-0.659016817808151,-1.73522454500198,-0.512468231607727,-0.447668612003326,-1.79375672340393,-0.623787498111234,0.634414047002792,-0.767426945269108,-0.692408314061872,0.437180250883102,-1.37883526086807,-0.458389240580615,-0.115066394209862,-1.88498544692993,-0.407073738663414,0.817558132112026,-1.28655609488487,-0.528869095152473,0.866766199469566,-0.933257654309273,-0.528577324614474,1.01336302980781,-0.999117225408554,-0.528870391919895,0.750615581870079,-1.31498804688454,-0.56347397090552,0.523394763469696,-1.58060610294342,-0.576369719840812,0.306662756949663,-1.77987235784531,-0.533100592355723,-0.684878632426262,-1.67626404762268,-0.47014714342113,-0.806077599525452,-1.68672919273376,-0.517131713135209,-0.805852964520454,-1.63118904829025,-0.584679587163905,-0.64591421559453,-1.6142452955246,-0.517131793941857,-0.718358114361763,-1.68974906206131,-0.576369798743503,0.436215091496706,-1.73415410518646,-0.584679787817549,-0.206068400293589,-1.79767280817032,-0.533100796528913,-0.441469088196754,-1.78886115550995,-0.636213207650037,-0.663619183003902,-1.57884472608566,-0.697923323961703,-0.472049929201603,-1.63011568784714,-0.46415721973862,-0.966498672962189,-1.49675911664963,-0.697922846870561,0.218657426536083,0.243624031543732,-0.403955498420972,0.265933118760586,0.0281643271446228,-0.413790463606638,0.00240269303321838,0.0912419557571411,-0.464157345361841,-0.228790745139122,0.134498655796051,-0.346527489530359,-0.328116707503796,0.0409664511680603,-0.369805707111373,-0.779432833194733,-0.00591033697128296,-0.372627437563884,-1.08497707545757,-0.524529784917831,-0.413790494539235,-1.1430471688509,-1.23047634959221,-0.372627099641051,-0.0745131894946098,0.0825862884521484,-0.370051055663822,-0.325477205216885,0.0485187172889709,-0.370050924001761,-0.229002796113491, +0.0665469765663147,-0.365000417938347,0.496099149808288,-1.78426188230515,-0.324182373180124,-0.679597407579422,0.0736874938011169,-0.364103209060573,0.0138886272907257,-1.85714703798294,-0.408637360564947,-0.453165169805288,0.00234365463256836,-0.364103219533249,-0.526631146669388,0.0684242248535156,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.419200159609318,0.837365716695786,0.256595432758331,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,0.959487855434418,-0.35311184823513,0.0443820357322693,0.804791331291199,0.569708406925201,-0.343719720840454,0.758668020367622,1.37624508142471,0.466036655008793,1.20041340589523,0.353931602090597,0.131888329982758,0.464228086173534,1.34762564301491,0.747778013348579,0.570867847651243,1.01464876160026,0.668222844600677,0.512022675946355,1.34185579419136,0.66503818333149,0.623119197785854,1.33687299489975,0.805279240012169,-0.00557935237884521,0.275137208402157,1.21106320619583,0.933246061205864, +0.472250670194626,-0.284471750259399,0.348103940486908,-0.395256578922272,0.762886703014374,1.10612243413925,0.815682083368301,-0.374724596738815,1.12373933196068,-0.754436641931534,0.3939538449049,0.984691768884659,0.696901172399521,0.0457341074943542,1.66875964403152,0.336841240525246,-0.421169877052307,1.2396821975708,-0.448913604021072,-0.44733240455389,1.3377320766449,0.574145406484604,-0.197436511516571,1.32896319031715,0.392964839935303,-0.46950301527977,1.02993200719357,-0.323227286338806,-0.308938026428223,1.13693504035473,0.60411724448204,-1.07489155977964,0.981961362063885,0.333842307329178,-0.507026046514511,0.749221831560135,-0.394831925630569,-0.0454900860786438,1.00404207408428,0.826612442731857,-0.54215207695961,1.12076354026794,0.491385832428932,-0.280052006244659,1.03009968996048,0.730651497840881,-0.142471611499786,1.41945570707321,0.463434951379895,-0.165035128593445,1.43034505844116,0.894765108823776,-0.847519844770432,0.958363011479378,0.750393122434616,-0.251749694347382,1.46459203958511,0.643265664577484,-0.808811432681978,1.61700159311295,0.242999859154224,-0.226044476032257,1.54778915643692,0.110875498779933,-0.201242029666901,1.29907894134521,0.347025662660599,-0.255709409713745,1.04860645532608,-0.0254987329244614,-0.45549201965332,0.687775045633316,1.07771757245064,0.0519442558288574,1.29794338345528,0.945635974407196,-1.05976921319962,1.2098775357008,0.436104170978069,-0.8449338786304,1.59530675411224,0.342506997287273,-0.533560708165169,1.60462522506714,0.262725040316582,-0.630244560539722,1.63148379325867,-0.132836721837521,-0.659858271479607,1.13691943883896,0.0685862600803375,-0.523964703083038,1.03468449413776,0.015327513217926,-0.73105688393116,1.00598068535328,-0.406233571004122,-0.586036771535873,0.924431428313255,-0.347431821748614,-0.863943539559841,1.05679363012314,0.124092370271683,-1.27120211720467,1.31154474616051,0.15025383234024,-0.542059302330017,1.42057728767395,0.372901432216167,-1.14907959103584,1.36756077408791,0.497534438967705,-0.684602692723274,1.02537946403027, +0.719111204147339,-0.713285610079765,1.27141910791397,0.322616130113602,-0.890462649986148,1.44287520647049,0.552613228559494,-1.11964479088783,0.874600492417812,-0.404257342219353,-0.883077885955572,1.16520816087723,-0.218405157327652,-0.911929935216904,-0.345687210559845,-0.123629629611969,-1.00014136731625,-0.328248977661133,-0.0405336692929268,-0.895310923457146,-0.349133253097534,0.0261802673339844,-0.961982846260071,-0.369418203830719,0.14691175147891,-1.21966016292572,-0.55111101269722,0.0882266089320183,-1.08519911766052,-0.553318381309509,0.10360936075449,-1.20884814858437,-0.588072121143341,0.322662496939301,-1.38237407803535,-0.570351153612137,0.310371641069651,-1.29020845890045,-0.431682229042053,0.235790386795998,-0.711536034941673,-0.293046832084656,0.201466403901577,-0.698623023927212,-0.292874455451965,0.271263681352139,-0.757806442677975,-0.392893671989441,0.366391286253929,-0.804875008761883,-0.551830798387527,0.46793607622385,-0.882754050195217,-0.740192770957947,0.502923749387264,-0.980603598058224,-0.916955716907978,0.0777049008756876,-1.0554823204875,-0.499825716018677,-0.156215816736221,-1.18563264608383,-0.440467149019241,-0.126730479300022,-1.25020989775658,-0.309236109256744,-0.109778478741646,-1.25273981690407,-0.348215937614441,-0.124143801629543,-1.19235977530479,-0.419489979743958,-0.102246002294123,-1.02039647102356,-0.307833313941956,0.348311081528664,-0.611743949353695,-0.809572130441666,0.170086830854416,-1.0326626598835,-0.666025638580322,0.196455806493759,-1.09360158443451,-0.558172106742859,0.101115794852376,-1.05328327417374,-0.2851282954216,0.172524996101856,-1.11509475111961,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929,-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271, +-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.61037278175354,-0.129781739786267,-1.22904708981514,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.094384491443634,-0.289969511330128,-1.52325558662415,0.172315359115601,-0.340628400444984,-1.47063946723938,0.347414791584015,-0.271350386086851,-1.50321418046951,0.0796433687210083,-0.450535848736763,-1.51410466432571,-0.272748649120331,-0.447343766689301,-0.804688692092896,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.368729919195175, +-0.111302673816681,-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,0.209358334541321,-0.427624940872192,-1.79611629247665,0.366701066493988,-0.213069915771484,-1.68896836042404,0.0335051417350769,-0.186165951192379,-1.92397409677505,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.00140410661697388,0.47925940901041,-1.30150604248047,0.221148788928986,0.310832679271698,-1.26058748364449,0.333373188972473,0.675805615261197,-0.773726150393486,0.750930279493332,0.278859455138445,-0.939882326871157,0.801428377628326,0.168200765736401,-1.22813148796558,0.772642463445663,0.205818969756365,-0.918798044323921,0.676499664783478,0.394543980248272,-1.38882184028625,0.452907145023346,0.55881055444479,-1.04075067490339,0.128905594348907,-0.251244068145752,0.0700075998902321,0.203275620937347,-0.424728989601135,0.152741558849812,0.142078518867493,-0.814096540212631,0.229761403053999,0.172845244407654,-0.743438899517059,-0.320542298257351,0.11991560459137,-0.478369392454624,-0.409938581287861,0.282580256462097,-0.675579465925694,-0.0752892444143072,0.0709547400474548,-0.964635640382767,-0.604860760271549,-0.00208002328872681,-1.03843274712563,-0.682048879563808,0.254932820796967,-0.903381109237671,-1.04636228084564,-0.131398797035217,-0.934310793876648,-0.880852550268173,-0.123030006885529,-0.743424072861671,-0.778536278754473,0.224440455436707,-0.789541631937027,-0.34699771553278,0.105298757553101,-1.00373476743698,-0.372571334242821,-0.395596951246262,-0.606134243309498,-0.987976558506489,0.0356162786483765,-0.899120020214468,-0.922898530960083,-0.109816074371338,-0.497689627110958,-0.774499870836735,-0.0168763399124146,-0.378898844122887,-0.682088226079941,-0.301481008529663,-0.0624569356441498,-0.81800215691328,-0.142466366291046,-0.451549261808395,-0.803604997694492,-0.531966120004654,-0.13172422349453,-0.974060513079166,-0.633546739816666, +-0.269062526524067,-1.02374937385321,-0.620899930596352,-0.662623956799507,-1.06562451273203,0.146543323993683,-0.399054899811745,-0.195634871721268,-0.39104038476944,0.160358384251595,-0.780324265360832,0.432409584522247,-0.811870787292719,-0.65051381289959,-0.229530215263367,0.347058802843094,0.195049256086349,-0.606074243783951,0.582899361848831,-0.866705924272537,-0.307718813419342,0.151752084493637,-0.924377143383026,-0.936321450397372,0.755281418561935,0.141706228256226,-1.2552170753479,0.745801657438278,-0.115406408905983,-1.31956765055656,0.537584096193314,-0.82228684425354,-0.350613139569759,-0.0215975642204285,-0.96759095788002,-0.345776319503784,-0.221519112586975,-1.28984054923058,-0.449523031711578,-0.45786190405488,-1.36317935585976,-0.0398467779159546,-0.441333301365376,-1.1149877011776,-0.972453907132149,0.557742886245251,-1.33343076705933,-0.808518536388874,0.443044911138713,-1.35001021623611,-0.0348802208900452,0.482153872959316,-0.29449462890625,-0.159522235393524,0.666673004627228,-0.137939363718033,-0.652874276041985,0.449917256832123,-0.137810409069061,-0.897355973720551,0.582454741001129,-0.394351106137037,-0.990069277584553,0.941627465188503,-0.530490756034851,-1.25707560777664,0.655419588088989,-0.882702201604843,-0.556078195571899,-0.282084763050079,-1.35484007000923,-0.257680743932724,-0.689347885549068,-1.41405975818634,-0.0100386142730713,-0.76447357237339,-1.26158419251442,-0.448132246732712,-0.311108410358429,-1.45291882753372,-0.690895222127438,-0.17044922709465,-1.40231934189796,-0.795631930232048,0.183046936988831,-1.10691949725151,-0.621207997202873,0.79446829855442,-0.863918483257294,-0.348311513662338,0.755565650761127,-0.77732989192009,0.0539227724075317,0.129663646221161,-0.715690329670906,-0.00431191921234131,0.168757855892181,-0.655121505260468,-0.213209331035614,0.690120287239552,-0.658316783607006,-0.180644989013672,0.570272162556648,-0.614869233220816,-0.090128093957901,0.179215133190155,-1.06022304296494,0.0516188740730286,-0.162052035331726,-1.43328303098679,0.315741866827011, +-0.248567461967468,-1.3258820772171,0.280337005853653,-0.511278733611107,-1.36238038539886,0.244752883911133,-0.12813925743103,-1.25832629203796,0.22179901599884,0.181254044175148,-1.33838158845901,-0.992915093898773,0.856428164988756,-0.927693776786327,-0.663588717579842,0.747036501765251,-1.09326636791229,0.152796447277069,0.412176415324211,-1.24074134230614,0.360443264245987,0.132519513368607,-1.21458142995834,0.243872970342636,-0.0203934907913208,-1.19376504421234,0.573190003633499,-0.297951847314835,-1.00144872069359,0.0255449712276459,-0.0880975127220154,-1.46933484077454,0.504699409008026,-0.324237465858459,-1.22723233699799,0.276716649532318,-0.323954124003649,-1.64327991008759,0.292390942573547,-0.507062867283821,-1.58071911334991,0.149295687675476,-0.82866944372654,-1.58876371383667,0.601733505725861,-0.137450002133846,-1.00589925050735,0.287603318691254,0.376422017812729,-1.31029412150383,0.0927788317203522,0.14317923784256,-1.13947173953056,-0.269277204759419,0.258137285709381,-1.11497592926025,-0.63454195857048,0.649921864271164,-1.21462586522102,-0.792885839939117,0.495215356349945,-1.09050777554512,-0.069479763507843,-0.916788548231125,-0.836547315120697,-0.0432562828063965,-1.03337290883064,-0.640686392784119,0.144900858402252,-1.12288835644722,-1.23455566167831,-0.00650393962860107,-0.818678587675095,-0.829186946153641,-0.209839463233948,-0.846655905246735,-0.795131728053093,0.0277737379074097,-0.814226299524307,-0.76031294465065,-0.447347491979599,-1.00473895668983,-0.877230331301689,-0.162254691123962,-1.09773057699203,-0.563198871910572,-0.0987941026687622,-1.20746254920959,-0.578643977642059,0.422026991844177,-1.06833013892174,-0.807723119854927,0.00916111469268799,-0.813157469034195,0.107423633337021,0.107862114906311,-0.892595678567886,-0.533802092075348,0.291079521179199,-1.24517700076103,0.0605327188968658,0.4580098092556,-1.33913478255272,-0.413901634514332,0.278858929872513,-1.57600021362305,0.029085710644722,0.055473268032074,-1.28484505414963,-0.257365819066763,-0.182757437229156,-1.4913192987442, +-0.0888209380209446,0.240267902612686,-1.59694588184357,-0.443125456571579,0.089854896068573,-1.5400116443634,-0.710731118917465,0.0555644631385803,-1.21593242883682,0.284668155014515,-0.0712703466415405,-1.39934706687927,0.239304859191179,0.156027734279633,-1.06051290035248,0.269052285701036,0.204944133758545,-1.07737851142883,-0.114723410457373,-0.0210946202278137,-1.14396327733994,-0.0411824621260166,-0.236852943897247,-1.25797191262245,-0.0412024594843388,-0.17081493139267,-1.44559723138809,-0.300942245870829,-0.469679147005081,-1.05203744769096,-0.807735435664654,-0.25215345621109,-0.956931978464127,-0.643477141857147,-0.257963120937347,-0.91281458735466,-0.582006484270096,-0.165438652038574,-1.22571277618408,-0.5619857609272,-0.0687461495399475,-1.26798963546753,-0.422440461814404,-0.472099453210831,-0.646264631301165,-1.03794434666634,0.0805828869342804,-1.01741817593575,-0.887046277523041,0.304239332675934,-1.15706577897072,-0.710658520460129,-0.0449219942092896,-1.01467767357826,-0.666628263890743,0.0584603548049927,-0.949433416128159,-0.556912146508694,-0.142575770616531,-0.960854973644018,-1.01198896765709,-0.0819661319255829,-0.944932356476784,-1.03744757920504,-0.402630478143692,-0.684206068515778,-0.993095833808184,-0.500494420528412,-0.353871673345566,-1.02787034213543,-0.226141691207886,-0.58691368997097,-0.905037302523851,-0.31858891248703,-0.32805510610342,-0.90739917755127,0.163389474153519,-0.740502223372459,-0.899397164583206,0.257782280445099,-0.782551750540733,-0.768207170069218,-0.0497718453407288,-0.378981217741966,-0.709567740559578,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.376216888427734,-0.614558279514313,-0.556118197739124,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.125822305679321,-0.380040973424911,-0.379495576024055,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0106251239776611,-0.11834429949522,-0.301281929016113,-0.0193964242935181,-0.174777860753238,-0.323619153350592,0.0134696960449219, +-0.3723304271698,-0.660809934139252,0.086412787437439,-0.294747292995453,-0.430176809430122,-0.100566744804382,0.067211702466011,-0.448295947164297,-0.0488128662109375,0.0485417991876602,-0.370706848800182,0.102208912372589,-0.299842372536659,-0.596327483654022,0.0941470265388489,-0.342772796750069,-0.565656691789627,-0.0798745155334473,-0.0647302120923996,-0.573501497507095,0.427261888980865,-0.635639905929565,-0.609373345971107,0.437059372663498,-0.719605460762978,-0.5731480717659,0.0527521371841431,-0.420463636517525,-0.682044595479965,0.429701536893845,-0.711980909109116,-0.587764203548431,0.0176932811737061,-0.296599000692368,-0.694609135389328,0.311280846595764,-0.54197233915329,-0.902539730072021,0.0234842002391815,0.038692831993103,-0.330306272953749,0.253469347953796,-0.603169396519661,-0.954322040081024,0.268499791622162,-0.56881245970726,-0.850840017199516,0.0161058902740479,-0.270985469222069,-0.979245096445084,-0.396470099687576,0.414979100227356,-0.41935595497489,-0.165092289447784,0.253736525774002,-0.807100623846054,-0.117443561553955,-0.0299769788980484,-0.985072404146194,-0.12346076965332,-0.450245425105095,-1.16621002554893,-0.597473561763763,0.738787740468979,-0.534536670893431,-0.578998327255249,0.486206561326981,-0.476067528128624,-0.541511923074722,0.75378879904747,-0.970418989658356,-0.350440330803394,0.0938400626182556,-0.728352904319763,-0.604673475027084,0.192154884338379,-1.1265724003315,0.159278452396393,-0.363652423024178,-0.80483865737915,0.241834372282028,-0.0785813331604004,-0.256896987557411,0.374527454376221,-0.251756191253662,-0.412691909819841,0.198387205600739,-0.400555685162544,-0.759844124317169,0.189882159233093,-0.378317832946777,-0.77226197719574,0.00687521696090698,0.0540111809968948,-0.651154220104218,0.00514769554138184,0.0101138353347778,-0.620007395744324,0.232982218265533,-0.323975592851639,-0.752841383218765,0.23845386505127,-0.430602997541428,-0.641057655215263,0.0348537564277649,-0.032257467508316,-0.543725371360779,0.15667587518692,0.0235023200511932,-0.802159786224365, +0.341797232627869,-0.458088278770447,-0.716040506958961,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329, +0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227,-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593, +0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017, +0.106667190790176,-1.16624844074249,-1.44245409965515,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-0.21190193016082,-0.900232389569283,-1.58217811584473,0.0606137200129524,-1.01142406463623,-1.48837912082672,0.127801179924063,-1.05864062905312,-1.47034260630608,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,0.596905343234539,-0.927329026162624,-1.21505773067474,0.660032838582993,-0.695644907653332,-0.887050360441208,0.679285869002342,-0.426383584737778,-0.475331716239452,0.951277620324618,-0.558738052845001,-0.498939849727321,0.506537824845509,-1.2389180958271,-1.25664439797401,0.798823483288288,-0.453696578741074,-0.54329752177,0.202133387327194,-1.39558655023575,-1.28628271818161,-0.0297253011158887,-1.8235023021698,-0.820361763238907,0.522538669407368,-0.238086938858032,-0.810679644346237,-0.164466835558414,-1.83128523826599,-0.186976432800293,-0.162997160106897,-1.70171070098877,0.190538376569748,-0.287312739528716,-1.06280383467674,0.491486340761185,0.552930742502213,-0.843434965237975,-1.25301629304886,-0.102292401017621,-0.898378962650895,0.526898205280304,0.417686760425568,-0.866821501404047,-1.18339303135872,-0.318100269883871,-0.706931836903095,0.493584394454956,0.016932356189443,-0.671463519334793,0.618498533964157,0.696954786777496,-1.02969540655613, +-0.940774857997894,0.824440899323179,-1.156464189291,-0.867344051599503,0.18784703406164,-0.12941437959671,0.232602059841156,0.721328228712082,-1.2464699447155,-0.785953402519226,0.110101968050003,-0.0439839363098145,0.0588687658309937,0.704636931419373,-1.21260112524033,-0.866493284702301,0.186927825212479,-0.0132381916046143,-0.0937578231096268,0.470346063375473,-0.994526863098145,-0.946410119533539,0.796134360134602,-0.551852464675903,-0.65756867825985,0.80976676940918,-0.809020228683949,-0.737465083599091,0.617051035165787,-0.817307665944099,-0.748680353164673,0.803415060961932,-0.836868554353714,-0.886143624782562,0.939678238713896,-1.02181866019964,-0.611371129751205,0.870944805443287,-0.90985419973731,-0.495021194219589,0.843744367361069,-0.754512846469879,-0.564256697893143,0.924330996358549,-0.87652837485075,-0.646666169166565,0.947716988147704,-0.911223452538252,-0.580026268959045,0.846503116190434,-0.875011399388313,-0.559290677309036,0.832412607967854,-0.843587026000023,-0.609572619199753,0.82076371461153,-0.906239051371813,-0.654247552156448,0.543089747428894,-0.993815660476685,-0.830021947622299,0.396578103303909,-0.964315660297871,-1.02247780561447,0.845705419778824,-0.957849356345832,-0.621720105409622,0.866381831467152,-0.930638862773776,-0.517507269978523,0.635087996721268,-0.991000331938267,-0.635073900222778,0.641528695821762,-1.05514821410179,-0.589873343706131,0.97194776636502,-1.19461028277874,-0.312388010323048,0.952061314456245,-1.27388682961464,-0.236191373318434,0.819994129240513,-1.30401015281677,-0.117985099554062,0.740144826471806,-0.943264083005488,0.265382647514343,0.798786778323432,-0.802929639816284,0.328596323728561,0.758833722603413,-0.714354664087296,0.385621130466461,0.600615382194519,-0.647901654243469,0.411012768745422,0.59288964420557,-0.579319059848785,0.348548322916031,0.518213927745819,-0.216457188129425,-0.0396946519613266,0.373226970434189,-0.212622940540314,-0.071037083864212,0.494886547327042,-0.346763491630554,-0.0723698735237122,0.860740698873997,-0.753194853663445, +-0.418944075703621,0.835091985762119,-0.916988667100668,-0.574564456939697,0.582966178655624,-0.891087355092168,-0.737138777971268,0.563288748264313,-1.07246986031532,-0.775526583194733,0.763710395825001,-1.43046203255653,-0.670209228992462,-0.372780425551582,-1.91205143928528,-0.223568450659513,-0.512542329728603,-1.83870542049408,0.170097440481186,-0.34205436706543,-1.75722163915634,0.368529081344604,0.111691998240303,-1.18495492637157,0.805685132741928,0.102730492017599,-0.950682912021875,0.850854799151421,-0.184500936418772,-0.737781956791878,0.8075350522995,-0.23032770305872,-0.559626460075378,0.74039089679718,-0.179341394454241,-0.22399365901947,0.516850724816322,-0.373328372836113,-0.0364668369293213,0.288852468132973,-0.425549179315567,-0.0145671963691711,0.205061301589012,0.31764343380928,-0.448624014854431,-0.782539680600166,0.649079352617264,-0.750018745660782,-0.433074116706848,-0.0279271678259647,-1.51404851675034,0.707962796092033,-0.0176152444783213,-1.59268623590469,0.718726433813572,0.794614270329475,-1.19403839111328,0.2331822514534,0.651145875453949,-0.384312331676483,-0.311868667602539,0.844538788556719,-0.785635054111481,-0.576147459447384,0.137340354944172,-1.72190356254578,-0.658908661454916,0.115639135241508,-1.90184384584427,-0.303757613524795,0.838892236351967,-1.17504404485226,-0.206709295511246,0.505644753575325,-0.30648136138916,-0.428383469581604,0.722100332379341,-1.03393400460482,-0.490269547328353,-0.356048882007599,-1.95220839977264,-0.0832861298695207,-0.770635545253754,-1.82785642147064,0.0347765311598778,0.833189070224762,-1.24947088956833,-0.168443083763123,0.731378450989723,-0.743209064006805,-0.510247200727463,0.421808689832687,-0.978765791282058,-0.759540475904942,0.635135415221157,-1.26291817426682,-0.707087513059378,0.640446068420715,-1.26328662037849,-0.703021002933383,0.487858086824417,-1.39525246620178,-0.646622467786074,0.487206593155861,-1.6581489443779,-0.385857259854674,0.618014337196655,-1.78571617603302,0.0392472464591265,0.593335547267088,-1.69594389200211,0.246307611465454, +0.4240742623806,-1.45122596621513,0.541838407516479,0.497268289327621,-0.941780988126993,0.791523288935423,0.298471033573151,-0.630538105964661,0.652341343462467,0.299552351236343,-0.352325618267059,0.540932381525636,0.694596379995346,-0.437488198280334,-0.0239936485886574,0.589458495378494,-0.640308350324631,-0.40702429972589,0.365742594003677,-0.642407774925232,-0.695367367006838,0.467372894287109,-0.475672215223312,-0.389395887963474,0.499853104352951,-0.823385685682297,-0.575139939785004,0.598320811986923,-0.851820588111877,-0.750470966100693,0.453971475362778,-0.994320780038834,-0.661939322948456,0.162633806467056,-1.4291940331459,-0.745928652584553,-0.481885507702827,-1.79695338010788,-0.607631705701351,-0.684224426746368,-1.81021463871002,-0.483592450618744,-0.676042318344116,-1.58227843046188,-0.604566127061844,-0.718479990959167,-1.21195513010025,-0.526636362075806,-0.543539717793465,-1.34425830841064,-0.146246075630188,-0.456945344805717,-1.20688164234161,0.14841639995575,-0.409422099590302,-0.91228561103344,0.271620571613312,-0.329565122723579,-0.715150368399918,0.312955915927887,-0.38461109995842,-0.61828438192606,0.326004087924957,-0.462515205144882,-0.506938055157661,0.29730349779129,-0.321962058544159,0.226165294647217,-0.0844904184341431,-0.178481412265683,0.225186944007874,-0.28590652346611,-0.290339961647987,0.73586767911911,-1.06806452572346,0.178451895713806,-0.126068234443665,-1.60123562812805,0.211908712983131,-0.509354442358017,-1.65994256734848,0.688823133707047,-0.11045528948307,-1.22536525130272,0.478321000933647,-0.309001669287682,0.371027529239655,0.594210229814053,-0.113604493439198,0.317202389240265,0.562675088644028,0.160074453800917,0.32366281747818,0.667862460017204,0.267018086276948,0.422223627567291,0.58185139298439,0.654456526041031,0.461125075817108,0.50919109582901,0.435793504118919,0.403759241104126,0.533333390951157,0.746023535728455,0.547610312700272,0.672395080327988,0.678744792938232,0.730319514870644,0.6495001912117,0.661376953125,0.806205771863461,0.746810704469681,0.495189666748047, +0.904780358076096,0.596095025539398,0.585447609424591,0.7525455057621,0.71550427377224,0.13685953989625,0.607274621725082,0.578275740146637,0.39157822728157,0.472849309444427,0.216626524925232,0.524913355708122,0.165216982364655,0.11882084608078,0.126907899975777,0.0967555046081543,0.46918261051178,0.130835048854351,0.286931276321411,0.222808361053467,0.234992384910583,0.164685308933258,0.592955350875854,0.485231086611748,0.543168783187866,0.562617629766464,0.673839926719666,0.362748563289642,0.308558523654938,0.845017462968826,0.162000477313995,0.270964980125427,0.742772281169891,0.419973433017731,0.381514549255371,0.957993507385254,0.641272835433483,0.339524567127228,0.536407195031643,0.339704394340515,0.176651298999786,0.759059756994247,0.664483398199081,0.167273640632629,0.42133517563343,0.637876220047474,0.375010967254639,0.25451223552227,0.820197619497776,0.269237875938416,0.170559830963612,1.32841509580612,0.0960025191307068,0.275161772966385,0.0908327996730804,-0.00611734390258789,0.392829760909081,0.0771524608135223,0.0827841758728027,0.374806232750416,1.51094883680344,0.209774196147919,0.357403784990311,0.672940321266651,0.364989161491394,0.290147989988327,0.45547154545784,0.362085282802582,0.621928811073303,0.466887682676315,0.0916746854782104,0.342921026051044,0.172805711627007,0.18662029504776,0.456162691116333,0.416125580668449,0.192519187927246,0.184301942586899,0.348985388875008,0.0897603631019592,0.201901398599148,0.15637469291687,0.0548392534255981,0.243915662169456,0.272358879446983,0.157378733158112,0.257408991456032,0.440023571252823,0.0491156578063965,0.243389643728733,0.186379939317703,0.181334614753723,0.472585059702396,0.291866257786751,0.101452350616455,-0.00222893105819821,0.305610105395317,0.305002629756927,0.322837054729462,0.469054639339447,0.173624455928802,0.359227381646633,0.235229983925819,0.0637255311012268,0.507549285888672,0.616198733448982,0.217293560504913,0.344893723726273,0.809576377272606,0.15739369392395,0.5272381529212,0.222706768661737,0.229765117168427,0.313936576247215, +0.508130565285683,0.072333037853241,0.333515495061874,0.244593188166618,0.0400737524032593,0.367100737057626,0.411040835082531,0.294171690940857,0.532653048634529,0.520140066742897,0.0395613312721252,0.165233947336674,0.374344136565924,1.02288078516722,0.0891456604003906,1.17522336542606,0.741910040378571,0.179542601108551,1.23913863301277,0.805242136120796,-0.307266145944595,1.07879593968391,0.740346074104309,0.17716871201992,1.24686816334724,0.995142810046673,0.148485139012337,1.24836900830269,0.901822188869119,0.275157060474157,1.28420305252075,0.691662132740021,0.277464129030704,1.240573823452,0.494591325521469,0.108185961842537,1.18612200021744,0.753240466117859,0.0714290589094162,1.27527332305908,0.710223853588104,0.155793637037277,1.23764237761497,0.501755177974701,0.144624348729849,1.17852389812469,0.778389990329742,-0.0909298323094845,1.21944917738438,0.54348286986351,-0.130003947764635,1.0302422195673,0.615127354860306,-0.608792059123516,0.795806877315044,0.548186123371124,-0.467758469283581,0.759463638067245,0.490162074565887,-0.414980141445994,0.541629388928413,0.527703613042831,-0.224079176783562,0.807879611849785,0.433115065097809,-0.226518977433443,0.52702921628952,0.483690172433853,-0.410726319998503,0.518382668495178,0.661041408777237,-0.557324767112732,0.694450043141842,0.651286214590073,-0.39661755412817,0.822180591523647,0.646437525749207,-0.387190386652946,0.903520150110126,0.593249171972275,-0.56645879894495,0.43729442358017,0.514841437339783,-0.651405900716782,0.314972579479218,0.320910841226578,-0.587423503398895,0.199750065803528,0.180792361497879,-0.625382423400879,0.0791850090026855,0.0239863991737366,-1.11748716235161,-0.42150092124939,-0.410175800323486,-0.394218243658543,-0.16622006893158,-0.80958491563797,-0.374969862401485,-0.596424877643585,-0.447910998016596,-1.1638061106205,-0.826263144612312,-0.92357465159148,-0.3657231554389,-0.607500433921814,-0.589750405400991,-0.678659923374653,-0.0501880645751953,-0.581650704145432,-0.493924424052238,-0.0442878007888794,-0.679157763719559,-0.67513132840395, +-0.508659213781357,-0.307712733745575,-0.354712724685669,-0.232395797967911,0.402186691761017,-1.10857389867306,-0.253812804818153,0.0195279717445374,-0.202671103179455,0.0792641937732697,-0.431424468755722,-1.28285670280457,-0.850215848535299,-0.526838272809982,-0.75712725520134,-0.351972818374634,-0.423532068729401,-0.546573609113693,-0.281744837760925,-0.267951309680939,-0.529945850372314,-0.205801248550415,0.244684159755707,-0.915400058031082,0.162549078464508,0.0838098526000977,-1.11175870895386,0.0563167333602905,-0.689141154289246,-1.14236959815025,-0.102435827255249,0.473386734724045,-0.693019270896912,0.49298420548439,-0.00435435771942139,-0.0320952087640762,0.709357410669327,-0.264016270637512,0.0181824713945389,0.631037317216396,0.219181746244431,-0.624631658196449,0.550427615642548,-0.528187096118927,0.0423416346311569,0.825805447995663,-0.437734812498093,0.0303465574979782,1.17732492089272,-0.378692805767059,0.252449627965689,1.10045501589775,-0.437251210212708,0.314575906842947,0.789386708289385,-0.141233563423157,0.00499339401721954,0.489210451021791,-0.17121958732605,0.0258806645870209,0.511186622083187,-0.464388370513916,0.219277884811163,0.832856077700853,-0.404819130897522,0.209560129791498,0.8103235848248,0.23164775967598,-0.725237280130386,0.566767811775208,-0.162515997886658,-0.0468938946723938,0.539845550432801,0.164713978767395,-0.905471175909042,0.686989568173885,-0.273089230060577,-0.392473733518273,0.803669333457947,-0.191005051136017,-0.35583708435297,0.778148554265499,-0.0175263285636902,-0.260229669511318,0.482086226344109,-0.29462081193924,-0.539226695895195,0.808354675769806,-0.243450701236725,-0.470319323241711,0.803248718380928,-0.164831697940826,-0.431396894156933,0.642944183200598,-0.0691832304000854,-0.415978867560625,0.529910633340478,0.0565508008003235,-0.356048604473472,0.719830334186554,-0.221432507038116,-0.637898027896881,1.01355856657028,0.0109629034996033,-0.445102050900459,0.761529147624969,0.0451879501342773,-0.385816551744938,0.613769203424454,-0.146608233451843,-0.578842431306839, +0.867920786142349,-0.10199773311615,-0.219353891909122,0.159618556499481,-0.0681578516960144,-0.118375811725855,0.351025614887476,-0.287382066249847,-0.415506526827812,0.151525691151619,0.0126810073852539,-0.38159042596817,-0.104233548045158,-0.0780357718467712,-0.639235615730286,0.162131741642952,-0.0443564057350159,-0.26586227864027,0.00893662497401237,-0.355824768543243,-0.543151780962944,0.0312696248292923,-0.22391951084137,-0.414743840694427,-0.0488132922910154,-0.109115064144135,-0.351963110268116,-0.0904365479946136,-0.094332218170166,-0.226671636104584,-0.198628438636661,-0.252230703830719,-0.644901570864022,-0.160666633397341,-0.870806716382504,0.406279496848583,0.913005769252777,-0.867876932024956,0.309755526483059,1.00268842279911,-0.834716007113457,0.162198420614004,1.04602271318436,-0.801384001970291,-0.0229248944669962,1.0000751465559,-0.741198912262917,-0.400171652436256,0.97868275642395,-0.863515794277191,-1.20931176841259,0.0169210582971573,0.0354150533676147,-0.272576667368412,0.253422893583775,0.0485331416130066,-0.260245393961668,0.0808353424072266,-0.0768241733312607,0.272941630333662,1.94206219911575,-0.178760387003422,0.290510289371014,1.91057354211807,-0.174257338047028,-0.187893375754356,1.87025701999664,-0.147120431065559,-0.0905481837689877,1.96769672632217,-0.00115823745727539,-0.268355820327997,1.95481014251709,0.0333938673138618,-0.405908413231373,1.84379100799561,-0.0979196950793266,-0.67279677093029,1.6099066734314,-0.301692865788937,-0.982741646468639,1.32039526104927,-0.176858924329281,-1.03946293145418,1.11074635386467,-0.0609461665153503,0.368341028690338,1.84805780649185,0.0891253650188446,-0.0693578720092773,1.78332126140594,0.155038267374039,0.137470446527004,1.87555038928986,0.0651038885116577,-0.100260391831398,1.82373332977295,0.094115674495697,-0.662146300077438,1.67873597145081,-0.343530118465424,-0.944662511348724,1.03667733073235,-0.456636488437653,-0.767023578286171,0.99825182557106,-0.62468633055687,-1.05919571220875,-0.0528915021568537,-0.854780185967684,-1.06424351036549, +0.0594245493412018,-0.27883243560791,0.139880314469337,1.57532775402069,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.0644398331642151,-0.205259133130312,1.61114448308945,-0.279056698083878,-0.631424218416214,0.537613317370415,-0.634845465421677,-0.895627754274756,-0.140474557876587,-0.671526774764061,0.340984120965004,1.41708490252495,-0.703820392489433,0.486128106713295,1.24645724892616,-0.495129108428955,0.43242971599102,1.53134512901306,-0.317962527275085,0.391322504729033,1.57801192998886,-0.478246450424194,0.15546689927578,1.3078031539917,-0.175590604543686,-0.369486898183823,1.64576971530914,-0.331819206476212,-0.846033185720444,0.520202487707138,-0.554587941616774,0.0526751317083836,1.78571766614914,0.00944548845291138,-0.492533333599567,1.77084994316101,0.0452375262975693,-0.0154106691479683,1.92416560649872,-0.231003969907761,0.00644201785326004,1.72276842594147,0.0208532512187958,-0.599418662488461,1.45954614877701,-0.0762625336647034,-0.532289952039719,1.27019956707954,-0.109925478696823,-1.21923911571503,1.34134703874588,-0.620633378624916,-0.506199955940247,1.4299368262291,-0.715185105800629,-1.04637235403061,0.653350487351418,-0.351860165596008,-0.193065240979195,-1.16147777438164,-0.490748852491379,-0.305501904338598,-0.199288666248322,-0.869670297950506,-0.128025040030479,0.581729978322983,-0.651373356580734,0.0808694064617157,0.963342510163784,-0.344030618667603,0.233779773116112,0.690615944564342,-0.0928191542625427,0.11301077902317,0.251707524061203,0.0654357075691223,0.236599901691079,-0.262461721897125,0.217833697795868,0.290448173880577,0.446929737925529,-0.0955543518066406,0.280263155698776,-0.935305744409561,0.166223287582397,0.184119202196598,0.202192723751068,0.185904085636139,0.424326695501804,0.42782136797905,-0.688654810190201,0.783903121948242,-0.282384723424911,-0.804235391318798,-0.309406399726868,1.31261333823204,-0.584778517484665,-0.305213697254658,0.74920991063118,-0.314051449298859,-0.250313945114613,0.312414467334747,-0.0135191082954407,-0.000640269368886948,0.0919049754738808, +0.127588212490082,0.0186371887102723,-0.459732918068767,0.0570201277732849,-0.2079898416996,0.07012739777565,-0.162020206451416,0.417077548801899,-0.122279539704323,0.37313511967659,-0.203470230102539,-0.728409573435783,-0.0270523428916931,0.440572962164879,-0.631788335740566,0.360475301742554,-0.2436603307724,-0.0793362557888031,-0.331832349300385,0.962027803063393,-0.195715980604291,-0.32999461889267,0.968492820858955,-0.66764423251152,-0.564942896366119,1.10078664124012,-0.620482921600342,-0.716967463493347,1.16755129396915,-0.195612700656056,-0.784821927547455,1.36602872610092,-0.548498347401619,-0.612220779061317,0.123990327119827,0.571332842111588,-0.429407477378845,-0.0707406103610992,0.428512543439865,-0.201127409934998,-0.263784028589725,0.835683688521385,0.207353413105011,-0.0282991118729115,0.780848473310471,-0.0419488549232483,0.0134161859750748,-0.04491126537323,-0.135531455278397,-0.376129925251007,-0.659358635544777,-0.401092287153006,-1.21015936136246,0.86359104514122,-0.681648552417755,-0.537656009197235,1.26201483607292,-0.583233535289764,-0.30262403190136,1.27213567495346,-0.547361075878143,-0.310034293681383,0.941576071083546,-0.236602962017059,-0.63886484503746,0.618394035845995,-0.124801158905029,-0.607705757021904,0.425025846809149,-0.0612677931785583,-0.275671560317278,0.304076008498669,0.0162105560302734,-0.340779200196266,-0.0726652182638645,-0.942666482180357,-0.382007591426373,0.975493833422661,-0.582596063613892,-0.547761522233486,1.30515420436859,-0.348956972360611,-1.05684572458267,0.768615581095219,-0.355421423912048,-0.701175667345524,0.722092524170876,-0.167454838752747,-0.72381242364645,0.781006723642349,-0.0687049031257629,-0.568305186927319,0.557213246822357,-0.123307704925537,-0.501607127545867,0.0679894536733627,0.502622842788696,-0.0493782872799784,0.314061641693115,0.412790149450302,-0.202578075230122,0.237927377223969,-0.44728296995163,-0.112861275672913,-0.568231046199799,-0.916349079459906,-0.150419622659683,1.22278898954391,-0.806386813521385,0.020580381155014,1.18893234431744, +0.100420862436295,-0.10333214700222,1.80162715911865,0.338331580162048,-0.207836326444522,1.74702578783035,-0.218370854854584,-0.167356126068626,0.87909959256649,0.605376899242401,0.157999895513058,1.27889132499695,0.734673321247101,0.0622155591845512,1.14531199634075,0.255338251590729,0.529279805719852,0.331624269485474,0.10696205496788,-0.0386427044868469,0.0430854558944702,-0.0514255464076996,-0.00846213102340698,-0.0334461331367493,-0.242810264229774,0.156136095523834,-0.00400024652481079,-0.0656715929508209,0.302115082740784,1.1116638481617,-0.401125023141503,0.394442021846771,1.00816151499748,-0.735470145940781,0.553630203008652,0.946875378489494,-0.822341710329056,0.513050138950348,0.864163719117641,-0.793067514896393,0.443957716226578,0.725875981152058,-0.87443995475769,0.382972091436386,0.552025407552719,0.262399613857269,0.389397636055946,1.22699058055878,0.429478406906128,0.250721916556358,1.15466231107712,0.52439472079277,-0.151477813720703,0.864664599299431,0.517195463180542,-0.210257351398468,0.607364043593407,0.377293765544891,0.0745202004909515,0.431247740983963,0.225658297538757,0.222492292523384,0.272465527057648,-0.000959157943725586,0.340808346867561,0.181987643241882,-0.853419095277786,0.742612265050411,0.394881129264832,-0.185455948114395,0.710533395409584,0.712371826171875,-0.508391499519348,0.89449180662632,0.628158152103424,0.109876394271851,0.614613339304924,0.880295309703797,-0.222189841719512,0.0492085814476013,1.80186504125595,-0.261731175705791,0.211270391941071,1.82060474157333,-0.890412524342537,0.136124774813652,1.5656880736351,-0.911293104290962,0.0161476135253906,1.49007654190063,-0.850107491016388,-0.0178945660591125,1.58761411905289,-0.154679639264941,0.355617590248585,1.87958270311356,-0.942053478211164,-0.104927405714989,1.39310136437416,-0.701570525765419,-0.370089925825596,1.40673616528511,-0.794798046350479,-0.529602773487568,1.58082288503647,-0.576299110427499,-0.540126968175173,1.65660339593887,-0.383033516816795,-0.703802838921547,1.70296674966812,-0.330444395542145,-0.745888210833073, +1.69242018461227,-0.351349028235973,0.86887588351965,1.18702557682991,-0.741270549595356,0.216140747070313,0.0544680207967758,-1.33244499564171,0.803886719048023,0.113718181848526,-1.04941457509995,0.156741976737976,0.038623034954071,-1.8161586523056,0.187702752649784,0.27795535326004,-1.24740052223206,-0.878078803420067,0.909076273441315,-0.905935972929001,-1.50497037172318,0.0252207815647125,-1.06852712482214,-0.944083742797375,0.0839348137378693,-0.877191379666328,-0.953245624899864,0.962989240884781,-0.960159841911985,-0.729522794485092,0.174396470189095,-0.966559702832342,0.351228013634682,0.724897384643555,-1.0284579731524,0.370290122926235,0.912532065063715,-1.2550975382328,0.517617076635361,0.917018640786409,-1.41069608926773,0.675875872373581,0.816674032248557,-1.5469633936882,0.47765925526619,0.564712002873421,-1.43386590480804,0.734417945146561,0.614903017878532,-1.32816058397293,-0.254984900355339,1.33763229846954,-1.22718411684036,0.0169557631015778,1.48386257886887,-1.38223481178284,-0.141754597425461,1.21712246537209,-0.953935272991657,-0.0673295855522156,1.36372274160385,-0.738990459194355,1.26655244827271,1.06764000654221,-0.756044611334801,1.13374081254005,0.854387104511261,-1.63313263654709,0.866298019886017,0.692715480923653,-1.58097672462463,0.925869792699814,0.73355507850647,-1.51111233234406,1.0588364303112,0.72453698515892,-1.56688684225082,0.914712131023407,0.769653141498566,-1.02857578545809,0.990798711776733,0.914303988218307,-1.72269028425217,-0.616242602467537,0.748524487018585,-1.44590604305267,-1.05370360612869,0.888930827379227,-1.26884406805038,-1.15065050125122,1.01301681995392,-1.16918748617172,-1.0551874935627,1.08942633867264,-0.445360451936722,-1.3739852309227,0.807741433382034,-0.582397371530533,-1.40917247533798,0.715477705001831,-0.541668027639389,0.34703117609024,-0.157368004322052,-1.75786960124969,0.0525591969490051,0.0460064113140106,-1.64392256736755,0.236089199781418,-0.0466241538524628,-1.52720856666565,0.642002463340759,0.0343863666057587,-1.28931349515915,0.776971980929375, +0.0562882125377655,-0.953672848641872,0.588098675012589,-0.0466750860214233,-1.89716577529907,-0.0437558740377426,0.289727404713631,-1.44268697500229,-0.970432639122009,0.705543823540211,-1.35278606414795,-1.20574134588242,0.747130334377289,-0.487424626946449,-1.3252335190773,1.07856845855713,-0.123238325119019,-1.42974418401718,0.877612084150314,-0.98917955160141,0.545073926448822,-1.00824069976807,-0.683701634407043,0.640349082648754,-1.09920170903206,-0.958743583410978,0.589639972895384,-0.518373668193817,-1.22445401549339,0.356535986065865,-0.514722794294357,-1.38622304797173,0.352702893316746,-1.10091099143028,-1.61580187082291,0.137456424534321,-1.02734610438347,-1.70452499389648,0.00176753103733063,-0.335086554288864,-1.88010311126709,0.134928405284882,-0.478313744068146,-1.82499420642853,-0.385329253971577,-0.346853405237198,-1.3007238805294,-0.556503087282181,0.0549980401992798,-0.819994121789932,-0.579456150531769,0.346638202667236,-0.18218457698822,-0.19094517827034,0.0599592328071594,-0.91417248127982,-0.618582308292389,0.816370725631714,-0.807374244187127,1.46412870287895,-0.36582092102617,-0.67026986181736,1.2548026740551,-0.309820614755154,-1.00719021260738,1.23689025640488,0.294187049381435,-1.32517346739769,0.972439896315336,0.303528059273958,-1.54680901765823,0.892146520316601,-0.354446288198233,-1.60746747255325,0.961067870259285,0.194772273302078,-1.74175876379013,-0.334197819232941,0.296978902071714,-1.45794492959976,-0.519591778516769,0.473311558365822,-1.03200323879719,-0.456145733594894,0.642091691493988,-0.618419945240021,-0.618525981903076,0.405558224767447,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306, +-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.632933646440506,0.395189315080643,-0.627764709293842,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-1.29899448156357,-0.708090990781784,-0.401165932416916,-0.989429891109467,-0.314808905124664,-0.647978991270065,-0.768468946218491,0.565167635679245,0.388752035796642,-1.51178485155106,0.0413770973682404,-0.297730952501297,-0.941988617181778,0.707468748092651,0.298143722116947,-0.895843179896474,0.870013058185577,0.290084332227707,-0.959292871877551,0.826793894171715,0.163627862930298,-0.798909850418568,0.777520745992661,0.604770466685295,-0.112559497356415,0.0719804093241692,1.02913722395897,-1.07469116151333,0.114421665668488,-0.537041932344437,-0.521680757403374,-0.969892645967775,-0.549716457724571,-1.22420769929886,0.262449342757463,-1.50040847063065,-1.20382481813431,-0.709644168615341,-0.767638444900513,-1.41920775175095,0.205787304788828,-1.37910950183868,-1.42684906721115,0.0249961763620377,-1.37043499946594,-1.30667862296104,-0.819526977837086,-0.595503628253937,-1.38720452785492,0.20418082550168,-1.40657436847687,-1.38721030950546,0.0182631760835648,-1.16784498095512,-0.97023107111454,-0.83346376940608,-1.09562462568283,-1.20393164455891,0.233503483235836,-1.22306147217751,-0.946783952414989,0.365623146295547,-1.49695283174515,-0.844183532521129,-0.640742272138596,-1.08264976739883, +-1.11727793514729,0.647259816527367,-1.11005578935146,-1.23554998636246,0.638437271118164,-1.20865455269814,-1.23763784766197,0.39780805259943,-1.45691931247711,-1.44749915599823,0.801901072263718,-1.00984737277031,-1.50033056735992,0.71765610575676,-0.715480549260974,-1.1461777985096,0.836572587490082,-1.01768547296524,-1.45636278390884,0.660320654511452,-0.822183975949883,-1.68238508701324,0.32922638207674,-0.883319422602654,-1.66542321443558,0.252258363281726,-0.72258206224069,-1.54461681842804,0.181952767074108,-0.738704465329647,-1.09971363842487,0.29655547440052,-0.992678472772241,-1.08590842038393,0.985446274280548,-0.679207726381719,-1.42654183506966,0.41434583067894,-0.535946190357208,-1.17404802143574,0.094110369682312,-0.835641898214817,-1.66205328702927,-0.354974366724491,-0.676320876926184,-1.6567514538765,-0.422517016530037,-0.631036497652531,-1.62619543075562,-0.384411007165909,-0.666851527988911,-1.26703378558159,-0.644189685583115,-0.848298396915197,-1.1296007335186,-0.555004641413689,-0.866756558418274,-1.04487518593669,-0.579278022050858,-0.871514499187469,-0.883295156061649,-0.612889975309372,-0.923873612657189,-1.23678497970104,-0.493963107466698,-0.868548631668091,-1.45934304594994,-0.464422211050987,-0.757801003754139,-1.61217349767685,-0.0971416844986379,-0.738977909088135,-1.38583344221115,0.0418890863656998,-0.778163835406303,-1.10130815207958,0.0376258790493011,-0.796887516975403,-1.20895478129387,0.0021805465221405,-0.746227979660034,-1.51941633224487,-0.0681553930044174,-0.655989944934845,-0.862624652683735,-0.616199009120464,-0.681973740458488,-1.1452839076519,-0.604905813932419,-0.649002879858017,-1.56307554244995,-0.425869688391685,-0.509866371750832,-1.59701055288315,-0.389803156256676,-0.581826627254486,-1.58598256111145,0.279336448758841,-0.585794165730476,-1.47939425706863,0.215352296829224,-0.479672402143478,-1.41185289621353,0.00462330877780914,-0.730387195944786,-1.3889793753624,0.148270264267921,-0.80890666693449,-1.245685338974,0.533824801445007,-0.721685007214546,-1.34412550926208, +0.221104502677917,-0.809238247573376,-1.55900800228119,0.152279078029096,-0.754761300981045,-1.65860080718994,0.397090055048466,-0.622958987951279,-0.700149461627007,-0.180709466338158,0.242619216442108,-0.601943847723305,0.314579036086798,0.253187835216522,0.14647176861763,0.379569142125547,-0.00850290060043335,0.279922902584076,0.0933824479579926,-0.0901883840560913,-0.077882413752377,0.0258926427923143,0.00258094072341919,0.121201753616333,-0.162462987005711,-0.0434780716896057,0.0488746166229248,-0.473426163196564,-0.0791605710983276,0.00667303800582886,-0.143579573370516,0.00966036319732666,-0.290669828653336,-0.155245856847614,0.153578281402588,-0.32971952855587,-0.479323223233223,0.0806010961532593,-0.978266507387161,-0.218800947070122,0.148283898830414,-0.43546649813652,-0.375366061925888,-0.107172608375549,-0.61245658993721,-0.374549709260464,-0.100203335285187,-0.822628319263458,0.139498248696327,0.0182046294212341,-0.962225139141083,0.0184548236429691,0.183243811130524,-0.479762978851795,0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059,0.464356422424316,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2809898853302,-0.44488637149334,0.498575985431671, +-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.21715673804283,-0.102750048041344,-0.444301277399063,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.19655102491379,-0.328856192529202,-0.00399154424667358,-1.09706127643585,-0.321184687316418,0.284319400787354,-1.10942083597183,-0.181136012077332,0.340577661991119,-1.21206539869308,-0.284472674131393,0.125649034976959,-1.32593417167664,-0.441374458372593,0.161817669868469,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739,0.00932411849498749,0.195629894733429,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.918856531381607,-0.216035857796669,0.0450676679611206,-1.29780024290085,0.239220857620239,-0.098301887512207,-0.707422137260437,0.32304947078228,-0.15739506483078,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.15227884054184,0.806445047259331,0.284897208213806,-1.30209255218506,0.681211248040199,0.375398635864258,-1.00561791658401,1.06915476918221,1.03261466324329,-1.08500897884369, +0.506984621286392,1.01468610391021,-0.987312516197562,0.200340773910284,0.75784258544445,-0.868791066110134,0.274753656238317,1.05671838670969,-0.862383862957358,0.426683764904737,0.597152233123779,-0.67862244695425,0.640427019447088,0.899562202394009,-0.918410743121058,0.457515634596348,1.16329219937325,-1.35782369971275,-0.292210146784782,0.972025945782661,-1.41374287009239,-0.586049914360046,1.07454612851143,-1.45601642131805,-0.457085892558098,0.590152874588966,-1.3732034265995,-0.445661142468452,0.425824195146561,-1.4909805059433,-0.298826482146978,0.811011934594717,-1.23481279611588,-0.791172176599503,0.237781643867493,-1.14173105359077,-0.867120534181595,0.131518483161926,-1.17011204361916,-0.0618900395929813,0.233746826648712,-0.9091477394104,-0.0471624433994293,0.249607980251312,-0.743014425039291,0.100640967488289,0.240563213825226,-1.25704491138458,-0.0746730118989944,0.696346879005432,-0.962954014539719,-0.18475928902626,0.809236481785774,-0.700113356113434,0.232934780418873,0.0250049829483032,-0.628816097974777,0.16536860447377,0.100229918956757,-1.27592891454697,0.119089629501104,0.149021685123444,-0.84610041975975,0.464426472783089,0.377565741539001,-0.953996956348419,0.252541102468967,0.228858292102814,-0.767066389322281,0.325461432337761,0.255234122276306,-1.02220278978348,-0.0324234403669834,-0.057587742805481,-0.777593821287155,-0.0284340865910053,-0.03543621301651,-0.668012008070946,-0.132392287254333,-0.102108478546143,-1.53508454561234,0.0403727740049362,0.72396445274353,-1.13576525449753,0.269773572683334,0.10679042339325,-1.43150663375854,-0.149286294355989,0.437003612518311,-1.18245935440063,-0.0183003544807434,1.07995462417603,-0.887637138366699,0.339772522449493,0.152745425701141,-0.947905123233795,0.0447173714637756,0.110444188117981,-0.46837732475251,0.330204963684082,1.09947115182877,-0.526979327201843,0.954100735485554,0.742093294858932,-0.445644915103912,0.819151528179646,0.0367926359176636,-1.00043103843927,0.684696294367313,-0.146019756793976,-1.08581998944283,0.195557363331318,-0.133265137672424, +-0.799145758152008,-0.113252222537994,-0.0412226319313049,-1.36548662185669,0.134528290480375,0.0649875402450562,-0.528876855969429,0.534304536879063,-0.0405997037887573,-0.723882496356964,0.537235856056213,-0.126924335956573,-1.4555783867836,0.735980108380318,0.92987634241581,-1.48310089111328,0.771009236574173,0.934255838394165,-0.664111189544201,1.35051998496056,1.00656151771545,-0.404254168272018,1.03269191086292,0.901038192212582,-0.48409029841423,1.38518491387367,0.601910330355167,-0.410303741693497,1.15251398086548,0.0270861983299255,-0.644543692469597,0.675315469503403,-0.296407043933868,-0.964468508958817,0.169881708920002,-0.171062111854553,-1.08494120836258,0.0838059633970261,0.0855565071105957,-0.87771925330162,-0.142690062522888,-0.041022002696991,-0.503098335117102,0.818770945072174,-0.177741885185242,-0.308854773640633,1.16011133790016,0.184729754924774,-0.739803805947304,0.91213905159384,0.527532547712326,-1.19065296649933,1.0370297729969,0.463426932692528,-1.17003482580185,0.647124543786049,0.63080658018589,-1.30792677402496,0.653647370636463,0.568308100104332,-1.46774160861969,0.935674160718918,0.387290924787521,-1.29204845428467,0.680884428322315,0.679099407047033,-0.946850955486298,0.981021970510483,0.315166890621185,-0.746570080518723,0.759211659431458,0.140920877456665,-0.914654672145844,0.481591671705246,0.314547419548035,-0.517338275909424,0.176807261072099,0.257942795753479,-0.891574680805206,0.588285773992538,0.370067834854126,-0.627423629164696,0.278921574354172,0.463329076766968,0.153471291065216,0.787290647625923,0.853541545569897,-0.106287494301796,0.953283864771947,0.704849272966385,-0.5255406498909,0.631254932843149,0.579282969236374,-1.08333349227905,0.409657556330785,0.590761214494705,-0.846581101417542,0.807966649532318,0.403524518013,-0.743912562727928,0.544636234641075,0.644619137048721,-0.966738641262054,-0.0364843606948853,-0.316410899162292,-1.50438463687897,-0.0561235547065735,-0.00252580642700195,-1.28670364618301,-0.637191979214549,-0.293518394231796,-1.40116858482361,-0.659286364912987, +-0.143790900707245,-1.11966481804848,-0.586023241281509,-0.288739144802094,-1.62531536817551,-0.485468909144402,0.349010206758976,-1.24287438392639,0.806726455688477,0.372534841299057,-1.07306882739067,0.691267728805542,0.231779992580414,-0.79168326407671,0.756513029336929,0.19452440738678,-0.483349204063416,1.04897160828114,0.322076141834259,-0.311377733945847,0.701762586832047,0.390030696988106,-1.52723675966263,-0.394182473421097,0.193914741277695,-1.36138755083084,-0.392799377441406,0.491993099451065,-0.941507488489151,0.061263382434845,0.140452146530151,-0.807368635898456,-0.0487845242023468,0.517609030008316,-0.672082662349567,-0.0473211407661438,0.319722592830658,-1.1734114587307,0.179093927145004,0.36808505654335,-0.326670899987221,-0.426870718598366,0.291463017463684,-1.01529890298843,-0.435754358768463,0.465559244155884,-1.18151843547821,-0.277130633592606,0.430476546287537,-0.884422957664356,-0.0386902391910553,0.71248185634613,-0.712683662772179,-0.195816829800606,1.43485671281815,-1.31764328479767,-0.19151359051466,0.57740780711174,-0.771165370708331,-0.0855258405208588,1.36966156959534,-1.33946973085403,-0.0706921517848969,0.467395752668381,-1.35189080238342,-0.559691935777664,0.956173494458199,-1.53938537836075,-1.14481270313263,0.118608802556992,-1.41890245676041,-1.16094121336937,0.357249576598406,-1.48147410154343,-1.04644718766212,0.193366587162018,-1.29633629322052,-1.31421548128128,0.0667814314365387,-1.59659767150879,-0.862812548875809,0.81315004825592,-1.43516260385513,-1.06196519732475,0.786623269319534,-1.5746556520462,-0.943995386362076,0.735627681016922,-1.64655894041061,-0.948064416646957,0.357106979936361,-1.75211238861084,-0.269245207309723,0.0939956940710545,-1.61674648523331,-0.616365000605583,-0.0430580601096153,-1.5089311003685,-0.590131819248199,0.0523795932531357,-1.33512529730797,-0.376300036907196,-0.420492321252823,-1.631740629673,-0.376789197325706,-0.633317440748215,-1.66071599721909,-0.57684725895524,-0.634833142161369,-1.59311336278915,-0.63617732655257,-0.216039478778839, +-1.51877892017365,-0.667408674955368,0.237299561500549,-1.25437986850739,0.148324344307184,-0.647006005048752,-1.49730724096298,-0.140223721973598,-0.583758503198624,-1.64298123121262,-0.0530681163072586,-0.363129407167435,-1.52433925867081,-0.194435566663742,-0.0099341869354248,-1.57134526968002,0.0793468952178955,0.0695087313652039,-1.11969664692879,0.334987487643957,-0.621994227170944,-1.25567302107811,0.151580369099975,-0.696385204792023,-1.2284699678421,0.198013374581933,-0.530188828706741,-1.24982976913452,-0.0438116267323494,-0.364190399646759,-1.46893841028214,0.256715729832649,-0.595922112464905,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.54685533046722,0.0708772093057632,-0.336878478527069,-1.60703551769257,0.266862533986568,-0.257650524377823,-1.64837938547134,0.41449935734272,-0.207357078790665,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.57464116811752,0.85017204284668,-0.129968285560608,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.88422507047653,0.516770213842392,-0.248087771236897,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.71136730909348,0.483174748718739,0.294458985328674,-1.61001873016357,0.601040259934962,0.209741085767746,-1.5741274356842,0.757428929209709,-0.172397822141647,-1.7567400932312,0.663823544979095,0.00491437315940857,-1.68354600667953,0.430448427796364,0.169923663139343,-1.66707599163055,0.813841760158539,0.0613807737827301,-1.68473601341248,0.368050500750542,0.262003093957901,-1.55538630485535,0.480242863297462,0.341400682926178,-1.53947508335114,0.25777792930603,0.313940107822418,-1.16222098469734,0.36171892285347,0.594718039035797,-1.10422803461552,0.162837170064449,0.603253662586212,-1.51724869012833,0.237343013286591,0.265508145093918,-1.06144091486931,0.0493755340576172,0.590569108724594,-0.983450084924698,0.157140016555786,0.486277043819427,-1.54204660654068,0.486214235424995,0.0419155359268188,-0.741381883621216,1.02946452796459,0.92341548204422,-1.60283923149109,-0.148395121097565, +-0.377857059240341,-1.55047553777695,-0.298011898994446,-0.404723897576332,-1.67132139205933,-0.0956027209758759,-0.300647169351578,-1.17519584298134,0.383965492248535,0.174184445291758,-1.50250172615051,0.706340715289116,0.154933780431747,-1.33592736721039,0.67454619705677,0.0972495675086975,-1.38249570131302,0.226804383099079,-0.124686896800995,-0.806758642196655,1.40689265727997,0.663175418972969,-0.93775287270546,1.19342927634716,0.565686587244272,-0.964986130595207,1.29752478003502,0.195431709289551,-0.983820050954819,1.06665545701981,0.0777884125709534,-0.912386640906334,0.906184837222099,-0.0927530527114868,-1.7828910946846,0.292450845241547,0.0877161622047424,-1.56840592622757,0.574086531996727,0.597003072500229,-1.722392141819,0.636738531291485,0.383124951273203,-1.71955949068069,-0.185239851474762,0.166585147380829,-1.62971746921539,-0.357799082994461,0.108896225690842,-1.90402394533157,0.429219737648964,-0.306438069790602,-1.92235195636749,0.325343690812588,-0.351542081683874,-1.89542430639267,0.365822449326515,-0.0925145596265793,-1.90411722660065,0.397112779319286,-0.0212820172309875,-1.92977797985077,0.302030563354492,-0.0179281234741211,-1.95161414146423,0.135555759072304,-0.308389477431774,-1.94077485799789,0.0918666943907738,-0.0575135350227356,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469, +0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953,0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286, +-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592,-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.86806565523148,-0.157209141179919,-0.552420981228352, +-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-0.867201863788068,0.30927000194788,-0.706799983978271,-0.862756561487913,0.286125242710114,-0.575292855501175,-1.00924673676491,-0.0346077233552933,-0.527526348829269,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632, +-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386,-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,-1.29347044229507,-0.327972151339054,0.0381664633750916,-1.61092227697372,0.0707628838717937,0.3559250831604,-1.89563655853271,0.323156930506229,0.305961787700653,-1.9205858707428,0.487394630908966,0.167595739010721,-1.22747004032135,-0.189683079719543,-0.112273812294006,-1.82284915447235,0.027022659778595,-0.0410562418401241,-1.22910735011101,-0.911793619394302,-0.774203827604651,-0.892345398664474,-1.29150468111038,-0.350635252892971,-1.57480692863464,0.343612849712372,-0.373336654156446,-0.904734645038843,-1.2186775803566,0.334742285311222,-0.865469738841057,-1.17828106880188,0.665479935705662,-0.833926847670227,0.195828944444656,1.3274641931057,-1.30282115936279,0.416395621374249,-0.107253968715668,-0.982462696963921,0.0638848580420017,1.18215680122375,-1.35855424404144,0.358140219002962,-0.054291307926178,-0.791270319372416,0.544516064226627,1.34857955574989,-0.73786424472928,0.434737026691437,1.63594418764114,-1.77076983451843,0.0798533856868744,-0.421359211206436,-1.47302001714706,0.180123075842857,0.126474738121033,-0.908778950572014,0.99142986536026,1.20724338293076,-1.80376493930817,-0.212640643119812,-0.297402769327164,-0.863174229860306,1.28453615307808,1.05866453051567,-1.67578905820847,0.188011765480042,-0.348395571112633,-1.27072739601135,1.11732840538025,0.146486811339855,-1.77247387170792,0.000544942915439606,-0.544642694294453,-1.89119255542755,0.203316822648048,-0.252137000206858,-1.88228964805603,-0.127510569989681,-0.416591811925173,-1.91337376832962,0.165934033691883,-0.311609752476215,-1.73918813467026,-0.236059382557869,-0.57298407331109,-1.93531233072281,0.0104859620332718,-0.275841649621725,-1.87581098079681,-0.375114694237709,-0.11313834041357,-1.88408952951431,-0.115282073616982, +-0.0930708050727844,-1.84899663925171,-0.266065649688244,-0.224566012620926,-1.84354996681213,-0.377077113837004,-0.202589802443981,-1.87740314006805,-0.268265299499035,-0.144854575395584,-1.85634791851044,-0.26828695088625,-0.238954104483128,-1.8306976556778,-0.368542946875095,-0.311179004609585,-1.79244762659073,0.192449346184731,-0.674696356058121,-1.69377291202545,0.0131253898143768,-0.829370498657227,-1.94529742002487,0.0486747715622187,-0.257146436721087,-1.93576461076736,0.283825194463134,-0.21756505407393,-1.93958020210266,-0.0335134081542492,-0.260579366236925,-1.9408073425293,-0.0833600610494614,-0.38309982419014,-1.95118582248688,-0.382906928658485,-0.180646419525146,-1.93355160951614,-0.491742432117462,0.0586986038833857,-1.9099879860878,-0.541235893964767,0.117296958342195,-1.84460347890854,0.0705938749015331,0.552579391747713,-1.7952641248703,0.225485276430845,0.636905591934919,-1.74032336473465,0.0771951377391815,0.640715710818768,-1.71289199590683,0.383668806403875,0.676581960171461,-1.70121592283249,0.438387501984835,0.61987142637372,-1.59959077835083,1.01403293013573,0.190935274586082,-1.68566930294037,0.759647395461798,0.193244498223066,-1.66506934165955,1.02409443259239,0.00544580817222595,-1.86926233768463,0.63464243710041,-0.183006297796965,-1.94086319208145,0.126636456698179,-0.27955275028944,-1.79003119468689,0.450107030570507,-0.490961279720068,-1.72959077358246,0.292090758681297,-0.67386882007122,-1.71217215061188,-0.171387135982513,-0.605913698673248,-0.592794150114059,-0.667197555303574,-0.0321474019438028,-0.577833414077759,-0.611361980438232,0.379934992641211,-0.681429043412209,-0.372141093015671,0.64643070846796,-1.01397693157196,0.230863735079765,0.942521426826715,-1.06830497831106,0.298076089471579,1.01746650598943,-0.840652007609606,0.671525448560715,0.937376890331507,-0.800221525132656,0.833306461572647,0.97208920866251,-0.946175713092089,0.82936354726553,0.710543785244226,-0.936446290463209,0.873257918283343,0.506642214953899,-0.889238797128201,0.967568065971136,0.4207195751369, +-1.63058423995972,0.452809585258365,-0.521809585392475,-1.90582174062729,-0.0859731584787369,0.00810094177722931,-0.913365604355931,-0.753217741847038,1.09919844567776,-0.928763084113598,-0.590001456439495,1.12563544511795,-1.05903945863247,-0.0118579417467117,1.2795649766922,-0.899027206003666,0.68859576433897,0.809857055544853,-0.568783670663834,0.295636966824532,0.465239524841309,0.0732109844684601,-0.557367220520973,0.285573065280914,0.0250418186187744,-0.826474383473396,0.630795150995255,-1.09137729555368,-0.0965817347168922,0.856220379471779,-0.767899036407471,0.649005752056837,0.636914491653442,-0.574231415987015,-0.0500136739574373,0.445916712284088,0.342760667204857,-0.910129025578499,0.882458761334419,0.746941447257996,-0.8856460317038,1.06898081302643,-0.37536895275116,-0.257402808405459,0.773406073451042,-0.300271213054657,0.314717195928097,0.385511249303818,-1.31402790546417,-0.827480269595981,-0.829259514808655,-1.34329009056091,-0.39638377726078,-1.41957288980484,-1.14070194959641,-0.972404688596725,-1.21852943301201,-1.12564414739609,-1.11391484737396,-1.16413006186485,-1.33043825626373,-0.800862416625023,-1.10214447975159,-1.26573294401169,-0.92196761071682,-0.728761252015829,-1.06112676858902,-1.29443472623825,-0.27246367931366,-1.17689311504364,-0.963485866785049,1.29591453075409,-0.461788803339005,-0.0146223455667496,1.75404262542725,-0.355075925588608,-0.00462022423744202,1.68081140518188,-0.39618393778801,0.547456197440624,1.5335282087326,-0.755579993128777,0.133614152669907,0.86029952019453,-1.24040886759758,-0.213244825601578,0.355988204479218,-1.09988090395927,0.246948778629303,0.205801665782928,-1.53584522008896,-0.245974332094193,0.57658795453608,-1.50363224744797,-0.492790751159191,0.193172663450241,-1.55411463975906,-0.0149646773934364,0.265927255153656,-1.75248330831528,-0.204112261533737,-0.0170552432537079,-1.32104516029358,-1.06171101331711,-0.339892625808716,-0.140449211001396,-1.29764783382416,0.311990052461624,0.028789222240448,-0.959962122142315,0.723270863294601,-0.205998122692108, +-0.996057964861393,0.862564630806446,-0.173173725605011,-1.39764577150345,0.963132262229919,-0.211978644132614,-1.25905990600586,1.22090119123459,-0.363819897174835,-0.590166784822941,1.60531866550446,-0.765457153320313,-0.357063725590706,1.34729567170143,-0.676468268036842,-0.543725814670324,1.24185553193092,-0.101557463407516,-0.381389655172825,1.80058991909027,-0.0828327089548111,0.0823059976100922,1.91599369049072,0.285785391926765,0.388586312532425,1.85289698839188,0.277940087020397,0.448024749755859,1.40409678220749,-0.121843725442886,0.890234924852848,0.850817568600178,-0.473887413740158,-0.0831265151500702,-0.0280840992927551,-1.00958701968193,-0.570749312639236,-0.524433463811874,-1.76627093553543,0.105578288435936,0.27899095416069,-1.41339510679245,-1.07906740903854,-0.473232075572014,-1.67913395166397,-0.218529771082103,-0.417053431272507,-1.76126664876938,-0.0634396895766258,-0.795823350548744,-1.42912262678146,-0.755142028443515,-0.260214060544968,-1.53134888410568,0.248240746557713,0.239923089742661,-0.989779740571976,0.103455886244774,0.472756922245026,-0.841322004795074,-0.0972418189048767,0.369004428386688,-1.00695699453354,-0.26065668463707,0.585395961999893,-1.10814037919044,0.193855196237564,0.913498528301716,-1.60729730129242,0.187450997531414,0.708506871014833,-1.27797785401344,-0.469350844621658,0.29198782145977,-1.89798408746719,-0.0279785394668579,-0.127765417098999,-1.87632668018341,0.039787232875824,-0.258225679397583,-1.37139707803726,-0.67317458987236,-0.520351368933916,-1.28382158279419,-0.855197032913566,-0.65428014472127,-1.71910375356674,-0.0161171928048134,-0.498333811759949,-1.8256168961525,-0.177378058433533,-0.626517526805401,-1.545181453228,-0.541662529110909,-0.559418752789497,-1.45195871591568,-0.617513418197632,-0.101427972316742,-1.67960810661316,0.22996623814106,0.105437308549881,-0.999006099998951,-0.203265845775604,0.51496496796608,-1.04352218657732,-0.201218664646149,0.829833569005132,-1.25810772180557,-0.117079731076956,0.815684974193573,-1.20496526360512,-0.472699493169785, +0.593329876661301,-1.3357255756855,-0.692370623350143,0.128715995699167,-1.92127674818039,-0.0614991411566734,0.377567134797573,-1.81327402591705,-0.232611067593098,0.682025924324989,-1.27196079492569,-0.894921239465475,-0.499070331454277,-1.20827722549438,-0.60457170009613,-0.509111508727074,-1.6230103969574,0.117398887872696,0.836873725056648,-1.95711135864258,-0.0834754109382629,-0.0674848556518555,-1.38825818896294,-0.786261670291424,-0.556651651859283,-1.27961957454681,-0.676713407039642,-0.240876242518425,-1.56881219148636,-0.177259244024754,0.523153454065323,-1.21155068278313,-0.625751093029976,0.344182878732681,-1.88095247745514,-0.311376109719276,0.114588811993599,-1.42270848155022,-0.929214399307966,-0.0784811675548553,-1.40327161550522,-0.722153529524803,-0.224377982318401,-1.9553616642952,-0.0209222584962845,-0.145397668704391,-1.96001398563385,-0.060469925403595,-0.11835240572691,-1.45796665549278,-0.787534110248089,-0.246863797307014,-1.96890288591385,-0.181723663583398,-0.113060645759106,-1.96216332912445,-0.168487744405866,-0.31690514087677,-1.51542669534683,-0.832972440868616,-0.457649022340775,-1.41193854808807,-0.591320186853409,0.217147435992956,-1.91254603862762,0.0032515674829483,0.466114416718483,-1.76223522424698,-0.122739847749472,0.558665800839663,-1.39560145139694,-0.688608393073082,0.258028283715248,-1.75961941480637,-0.0908726304769516,0.556107886135578,-1.84046548604965,0.165150761604309,0.294174805283546,-1.46621558070183,-0.664239853620529,0.00790110230445862,-1.95248299837112,-0.0912742763757706,0.107418276369572,-1.45705097913742,-0.718469649553299,0.250943705439568,-1.41899400949478,-0.626014515757561,0.332338064908981,-1.93316930532455,-0.0247360914945602,0.286246329545975,-1.87666839361191,0.0853151232004166,-0.0210262537002563,-1.52980446815491,-0.585240736603737,0.106899410486221,-0.614900797605515,0.17192393168807,-0.661420941352844,-0.620276570320129,0.131017856299877,-0.669669091701508,-0.779376909136772,0.136576037853956,-0.693057000637054,-0.839075185358524,0.0825637429952621, +-0.696746915578842,-0.634934961795807,0.0603689979761839,-0.673569917678833,-0.79471854865551,0.0117229595780373,-0.694219946861267,-0.613845080137253,-0.105219760909677,-0.690563634037971,-0.828268393874168,-0.101614110171795,-0.848936781287193,-0.844742670655251,-0.0728873099033081,-0.945932384580374,-0.897836960852146,-0.105872057378292,-1.02663262933493,-0.864670552313328,-0.0707452539354563,-1.23207657039165,-0.174430191516876,-0.121297385543585,-0.618747547268867,-0.0799423456192017,-0.0923065282404423,-0.803985714912415,-0.116539716720581,-0.0839289166033268,-0.809467345476151,-0.170234560966492,-0.114335849881172,-0.692679338157177,-0.15227484703064,-0.114186812192202,-0.589336670935154,-0.0492793917655945,-0.0982588976621628,-0.288536900654435,0.0159251689910889,-0.1504793651402,-0.719538241624832,-0.0221540331840515,-0.258596166968346,-1.06559580564499,0.31781792640686,-0.300925550982356,-0.800425358116627,0.458918690681458,-0.207161739468575,-0.949439734220505,0.61838161945343,-0.246184594929218,-0.819547966122627,0.758364111185074,-0.333685806021094,-0.838960871100426,0.864914640784264,-0.182144477963448,-1.01684141159058,0.955444645136595,-0.247052140533924,-0.896716192364693,0.973721955902874,-0.208325758576393,-1.10663941502571,0.895424284040928,-0.397203728556633,-1.03950767219067,0.926573544740677,-0.549150355160236,-0.738556817173958,0.636734634637833,-0.627089126035571,-0.369751781225204,0.393649280071259,-0.455633457750082,-0.548892661929131,0.0909554362297058,-0.21278128027916,-0.563157349824905,0.0177822709083557,-0.085224736481905,-0.0384027659893036,0.914770636707544,-0.366567794233561,-0.678669601678848,0.730337917804718,-0.338390111923218,-0.860967115033418,-0.164958208799362,-0.80737978219986,-1.6932281255722,-0.371090680360794,-0.819753915071487,-1.59737503528595,-0.457600057125092,-0.453089743852615,-1.17055869102478,-0.511515587568283,-0.653047636151314,-1.33991014957428,0.256948933005333,-0.881695672869682,-1.53926718235016,-0.563073575496674,0.146152600646019,-0.607414186000824,-0.362809777259827, +0.225832181051373,-0.469966351985931,-0.16710352897644,0.0354754626750946,-0.152318120002747,-0.128621995449066,0.20858658850193,-0.14647364616394,0.125928729772568,0.285529866814613,0.0420141816139221,0.0573117434978485,0.298809653148055,-0.0101523995399475,-0.0232440233230591,0.0494919568300247,-0.0292533040046692,-0.0328968167304993,0.284914260730147,-0.0629171133041382,-0.380229294300079,0.165244605392218,-0.382835626602173,-0.289783358573914,0.000264212489128113,-0.280699968338013,-0.534115329259294,-0.672736972570419,0.282700002193451,-0.593406560906487,-0.669388815760612,0.221961140632629,-0.646827530115843,-0.67264860868454,0.127845048904419,-0.817377272137719,-0.670910611748695,-0.0124756693840027,-0.588889862653105,-0.805806665681303,0.205211281776428,-0.598093938082457,-0.789713353384286,0.160004734992981,-0.674268912523985,-0.796120574697852,0.11479389667511,-0.868408929556608,-0.701963320374489,-0.210343599319458,-0.516209408640862,-0.920772150158882,0.151977896690369,-0.571383997797966,-0.917387969791889,0.127616047859192,-0.70567798614502,-0.912342324852943,0.0831559300422668,-0.801622521132231,-0.858327440917492,-0.0543688535690308,-0.807770475745201,-0.792835860978812,-0.207310169935226,-0.534073427319527,-1.10628733038902,0.119174361228943,-0.00778138637542725,-0.474370494484901,0.158939927816391,-0.018506646156311,-0.425348095595837,0.401033148169518,-0.327806860208511,-1.24538978934288,0.222301334142685,-0.0370442867279053,-0.625095129013062,-0.0238719582557678,-0.0450982451438904,-0.539316296577454,0.0470236837863922,0.163015127182007,-1.0039718747139,-0.0889919996261597,-0.0320946574211121,-0.59681311249733,0.258078157901764,-0.0121650695800781,-0.445560213178396,-0.366924695670605,-0.0866963863372803,-0.232892252504826,-0.553317710757256,0.275394022464752,-0.806933518499136,-0.507289659231901,0.122536838054657,-0.60238004475832,-0.537955790758133,-0.129895150661469,-0.452411987818778,-0.712185144424438,-0.0544653534889221,-0.495618794113398,-0.727049320936203,-0.282304167747498,-1.37146979570389, +-0.698288276791573,0.276395045220852,-0.509484261274338,0.505720376968384,0.251936018466949,-0.442709147930145,0.43865117430687,0.302613601088524,-0.541013598442078,0.48064187169075,0.182784408330917,-0.818175170570612,0.486373275518417,0.115177750587463,-1.01020886003971,0.423922002315521,0.791714668273926,-1.40737089514732,0.0553609579801559,-0.549948304891586,-0.81626009196043,0.0356168150901794,-0.609699964523315,-0.847584739327431,-0.131879404187202,0.849738094955683,-0.108896672725677,0.820551007986069,0.849640790373087,-0.0734251439571381,0.808405429124832,0.824568301439285,-0.230682536959648,0.799810573458672,0.902080841362476,-0.117168340831995,0.839931353926659,0.865681007504463,-0.321595273911953,0.874210081994534,0.748189881443977,-0.912420183420181,0.987302914261818,0.784505501389503,-1.17641589045525,0.506923288106918,0.920993775129318,-1.00182221084833,0.305634997785091,0.934830136597157,-1.09664026647806,0.251504980027676,0.704618602991104,0.208677679300308,0.826416797935963,0.661971688270569,0.446161583065987,0.789914734661579,0.604832798242569,0.158657651394606,0.76332288980484,0.519522309303284,-0.305999260395765,0.805115260183811,0.53482723236084,-0.231731373816729,0.726971566677094,0.509154558181763,-0.572809457778931,0.618615508079529,0.475252270698547,-0.987882018089294,0.497326344251633,0.0574248135089874,-1.82378447055817,-0.200776770710945,0.37285827845335,-1.82481026649475,-0.516199767589569,0.0265237987041473,-0.571168124675751,0.618299677968025,0.0772276818752289,-0.612041652202606,0.596936613321304,0.439901292324066,-0.0864635333418846,0.677239313721657,0.49987781047821,-0.913534943014383,-0.167973596602678,0.628493010997772,-0.904363645240664,-0.481900587677956,0.744417428970337,0.209602363407612,0.62468895316124,0.671114072203636,-0.0208611190319061,0.652843296527863,0.619788736104965,-0.245884940028191,0.891832537949085,0.656544625759125,-0.0550114046782255,0.756045654416084,0.541226416826248,-0.666762828826904,0.858015365898609,0.481961131095886,-0.968773305416107,0.819690819829702, +-0.107122659683228,-1.69654679298401,-0.939639359712601,-0.0561106655586627,-0.834193721413612,0.606015801429749,-0.0620219558477402,-0.897155620157719,0.838165193796158,-0.151210933923721,-0.833514623343945,0.573437392711639,-0.241734981536865,-0.841477155685425,0.542880952358246,-0.343718737363815,-0.914052948355675,0.735543936491013,-0.505399473011494,-1.27941650152206,-0.300356775522232,-0.247670792043209,-0.717803865671158,-0.225584983825684,-0.109595380723476,-1.07491683959961,0.0663919448852539,0.277056261897087,-0.597935795783997,-0.0420190691947937,-0.459296517074108,-0.461047172546387,-1.7522748708725,0.226979196071625,-0.684362143278122,-1.74488377571106,0.355570636689663,-0.246009276248515,0.0557888746261597,-0.103397965431213,-0.221767159178853,-0.0563671588897705,-0.149565905332565,-0.211392522789538,-0.104655146598816,-0.440207868814468,-0.127787135541439,-0.387181520462036,-0.842830449342728,0.027154247276485,-0.973069573752582,-0.791882693767548,0.099089739844203,-1.14252497255802,-0.662419587373734,0.19166495744139,-1.53271597623825,-0.329897165298462,0.214163914322853,-1.52570468187332,-0.562031090259552,0.547952054068446,-1.36980891227722,0.232905313372612,-0.0477110743522644,-1.10331830382347,0.572800360620022,-0.498271927237511,0.362047255039215,0.440150916576385,-0.194528199732304,0.353849411010742,0.279505729675293,-0.431996889412403,0.342223167419434,-0.528117567300797,-0.73694160208106,-0.341980293393135,-0.622667700052261,-0.611204244196415,-0.658324798569083,-0.521191418170929,-0.174692429602146,-1.0137190669775,-0.184687256813049,-0.304933309555054,-0.472106441855431,0.137809038162231,0.209473758935928,-0.198391184210777,-0.341206133365631,0.325891375541687,-0.940250813961029,0.225305676460266,0.349144607782364,-0.0793074145913124,0.350896835327148,0.644708581268787,-0.152237977832556,-0.14144366979599,0.762266077101231,-1.15060743689537,0.0935044884681702,0.89455995708704,-1.10344597697258,0.377720504999161,0.889210291206837,-0.952562868595123,0.931183822453022,0.921684209257364,-0.27465096116066, +0.316058143973351,-0.347322851419449,0.106490790843964,0.535619050264359,-0.304663639515638,0.763191848993301,-0.357417196035385,-0.215671004028991,-0.309355676174164,-0.570636987686157,-0.072880070656538,-0.753760114312172,-0.371659636497498,-0.731389477849007,-0.778448283672333,0.637456744909286,0.452046165242791,-0.715856239199638,0.257763039320707,-1.13430336117744,0.448242098093033,0.571575433015823,-0.730027288198471,0.476723283529282,-0.0215617716312408,-1.14341866970062,0.384725540876389,-0.0174102783203125,-1.23827302455902,0.682199254631996,-0.0227361917495728,-0.759856551885605,-0.0393520593643188,-0.139104604721069,-0.744662761688232,-0.221732497215271,-0.0848063230514526,-0.793550163507462,-0.0374992489814758,-0.0983486175537109,-0.14288803935051,-0.574262671172619,0.937761824578047,-0.341998286545277,1.00905486941338,0.695688724517822,-0.488705735653639,0.942707635462284,0.485654354095459,-0.496729910373688,0.504486322402954,0.36869090795517,-0.61612131819129,0.364425137639046,0.248813927173615,-0.671582229435444,0.58601325750351,-0.336959600448608,-1.49974608421326,0.0452882815152407,-0.438080161809921,-1.40368247032166,-0.3162861764431,-0.375491440296173,-0.969178929924965,-0.747772142291069,0.188907444477081,-0.547060191631317,-0.855315566062927,0.484361410140991,-0.270236793905497,-0.912284769117832,0.953427542001009,-0.307795140892267,0.878735385835171,0.870156697928905,-0.168285541236401,0.890843451023102,0.553995043039322,-0.146358132362366,0.76256388425827,0.403796076774597,-0.124921627342701,0.720954261720181,0.24037492275238,-0.0962307974696159,0.737746387720108,0.0655803084373474,-0.110286016017199,0.276775620877743,-0.419856250286102,-0.509737128391862,-0.482310056686401,-0.0922377109527588,0.332665957510471,-1.3355016708374,-0.185748517513275,0.490700676105917,-1.62652486562729,0.146683216094971,0.503852069377899,-1.61477869749069,0.655814439058304,0.564860272919759,-1.30204367637634,-0.0638253688812256,0.829894714057446,-0.569304943084717,0.317116227000952,0.944038703106344,-0.642923206090927, +0.494323700666428,0.856344573199749,-0.800095468759537,0.660540491342545,0.90324591845274,-0.885625496506691,1.27697682380676,0.891815002076328,-0.581930994987488,1.24236857891083,0.729504838585854,-0.8276646733284,-0.396131902933121,0.615375392138958,-0.602612912654877,-0.341096609830856,0.443559933453798,-0.604752570390701,-0.428116738796234,0.289044409990311,-0.766521222889423,-0.605291366577148,0.27814160194248,-1.08560347557068,-0.354827404022217,0.284086391329765,-1.28094610571861,-0.133637070655823,0.384935863316059,-1.45345044136047,0.0209307968616486,0.541517548263073,-1.58617055416107,0.965870946645737,0.69016756862402,-1.28132930397987,0.27747730910778,0.872976876795292,-1.01354433596134,0.559565521776676,0.902252785861492,-1.18677788972855,0.0537799000740051,0.874184466898441,-0.835095302201807,0.513018878176808,0.462569477036595,0.0529692769050598,1.0665990114212,0.333313703536987,-0.3183354139328,1.05388695001602,-0.322993129491806,-0.0338871479034424,0.991900026798248,-0.366105973720551,0.107589423656464,0.450418576598167,-0.29188334941864,0.272377371788025,1.23068118095398,-0.665526587516069,-0.232529401779175,1.14164197444916,-1.01537409424782,-0.249089539051056,0.954004287719727,-1.16082009673119,-0.0472214221954346,0.840051501989365,-1.19027510285378,-0.00720787048339844,0.277166286483407,-1.30554831027985,0.0952189564704895,0.262745406478643,-1.31807655096054,0.0752802491188049,0.569539815187454,0.770786583423615,-0.613855600357056,0.842148810625076,0.638616740703583,-0.454564362764359,0.934356838464737,0.651812255382538,-0.385107487440109,0.899263188242912,-0.654852390289307,-0.137968182563782,0.463581670075655,-1.63224911689758,-0.253296434879303,0.307502284646034,-1.61582833528519,-0.221489489078522,0.163482338190079,-1.67078268527985,-0.27588301897049,0.152159877121449,-1.53168606758118,-0.372557431459427,0.0816755332052708,-0.535643100738525,0.359934389591217,0.389252603054047,-0.474740356206894,0.256008625030518,0.607357338070869,-0.519191354513168,0.207324504852295,0.586801003730216,0.225314557552338, +-0.23816192150116,0.714810416102409,0.279693081974983,-0.203442215919495,0.839720577001572,-0.502113223075867,-0.24354749917984,0.974294751882553,-0.355075240135193,-0.139003753662109,0.83675891160965,-0.317196542397141,-0.0987904667854309,0.477721236646175,-0.400936061516404,-0.0109286308288574,0.22750461101532,0.538543492555618,-0.347657799720764,1.06503310799599,-0.145174384117126,-0.408103659749031,1.0195744484663,-0.051188737154007,-0.602866008877754,0.935877293348312,0.473461121320724,-0.583981782197952,1.20234069228172,0.342591434717178,-0.512996822595596,0.860623337328434,0.683679968118668,-0.122190892696381,1.67791867256165,-0.393890544772148,-0.389094859361649,1.01133391261101,-0.485414264723659,-0.512854844331741,1.03425446152687,-0.888925820589066,-0.292871832847595,0.634900361299515,-0.887964278459549,-0.375242054462433,0.203681498765945,-0.827006627805531,-0.380244225263596,0.552719548344612,-0.89379109442234,-0.185906827449799,0.01705601811409,0.938295260071754,-1.31072622537613,1.33740389347076,0.40354148298502,-1.17478397488594,1.5398360490799,0.571781982202083,-0.938338845968246,1.42279297113419,0.657167822122574,-0.89911887049675,0.671862602233887,0.893556550145149,-1.3173340857029,0.61859492212534,0.974920306354761,-1.21607607603073,1.25535067915916,0.0136107448488474,-1.09491683542728,1.81998980045319,-0.353099040687084,-0.346499130129814,1.72619158029556,-0.582386378198862,-0.101826906204224,0.852996349334717,-0.884972233325243,0.0814869105815887,0.496643781661987,-0.806389335542917,0.0286549031734467,0.660592347383499,0.343201532959938,-1.11549997329712,0.874884351156652,0.305442899465561,-1.2888268828392,1.16608056426048,0.32303075492382,-1.22842290997505,1.41940268874168,0.324369877576828,-0.974351942539215,1.65105652809143,0.202264629304409,-0.930640310049057,1.69136416912079,0.0430487245321274,-0.97365990281105,1.36689883470535,-0.889552593231201,-0.840845614671707,1.21114584803581,-1.2469482421875,-0.58731796219945,0.729658752679825,-1.60795146226883,-0.172712534666061,0.183152854442596, +-1.61235952377319,-0.0890781879425049,0.125362932682037,-0.986302703619003,-0.147522479295731,0.685296676121652,-1.12714222073555,-0.158087551593781,0.634428814053535,0.759414866566658,-0.438483343459666,0.836221233010292,0.665039569139481,-0.582409290596843,1.24870058894157,0.712377741932869,-0.464758379384875,1.4829910993576,0.725413426756859,-0.51106096804142,1.47876328229904,0.500189960002899,-0.678076773881912,1.57403123378754,-0.745542839169502,-0.329607650637627,0.95169073343277,-1.59875559806824,0.0615349113941193,0.572615265846252,-1.63948541879654,-0.00570416450500488,0.083863228559494,-1.63346266746521,-0.117123454809189,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.17831620573997,-0.784377802163363,0.0281682014465332,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.0890900492668152,0.431337656453252,-0.086775922216475,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097, +0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.45670014619827,-0.404784709215164,-0.154245809651911,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.11738583445549,-0.0391004681587219,-0.793925583362579,0.249413907527924,0.0864650011062622,-0.725253343582153,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.624583154916763,-1.14325071871281, +-0.678533136844635,0.547077924013138,-0.430416986346245,-1.15261781215668,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,0.378755033016205,0.627797052264214,-0.543324559926987,0.564847350120544,0.865591334179044,-0.488185450434685,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.11028458178043,0.960832504555583,-0.74414986371994,1.21391540765762,0.855426385998726,-0.753934532403946,1.19704273343086,0.812456183135509,-0.900899171829224,1.22639819979668,0.864633291959763,-0.881134361028671,1.248459815979,0.944102577865124,-0.645537167787552,0.419496715068817,-0.747102489694953,-0.682158470153809,0.101619184017181,-0.218093574047089,-0.982465595006943,0.839861780405045,-1.00402070395648,-0.249316606670618,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.26913142204285,-0.831298835575581,-0.458635404706001,1.38707780838013,-0.195058532059193,-1.01529125869274,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2807663838960, "Geometry::Eye_Left_squeeze", "Shape" { + Version: 100 + Indexes: *403 { + a: 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,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,6925,6926,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7522,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7543,7544,7545,7727,7729,7733,7735,7737,7739,7741,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8773,8778,8779,8781,8782,8787 + } + Vertices: *1209 { + a: -0.00286102294921875,-0.20377904176712,0.0404777526855469,-0.00300788879394531,-0.210299670696259,0.0236577987670898,-0.00304937362670898,-0.21112859249115,0.0152950286865234,-0.0023961067199707,-0.147439897060394,-0.0160465240478516,-0.00193166732788086,-0.101453185081482,-0.0464906692504883,-0.00154542922973633,-0.0660508871078491,-0.0672950744628906,-0.00127172470092773,-0.0415349006652832,-0.0870685577392578,-0.00101041793823242,-0.0255123376846313,-0.0962123870849609,-0.000740528106689453,-0.0128453969955444,-0.0994892120361328,-0.00103545188903809,-0.0492388010025024,-0.0944423675537109,-0.00129437446594238,-0.082125186920166,-0.0875654220581055,-0.0017547607421875,-0.135447263717651,-0.0673322677612305,-0.00123906135559082,-0.104509294033051,-0.0512857437133789,-0.00108087062835693,-0.096275806427002,-0.0455036163330078,-0.000594258308410645,-0.0428833067417145,-0.0789728164672852,-0.000262022018432617,-0.0108810663223267,-0.08465576171875,-6.03199005126953e-05,0.0190056562423706,-0.105630874633789,0.000349044799804688,0.0682026743888855,-0.130517959594727,0.00104761123657227,0.13851261138916,-0.143711090087891,0.0015251636505127,0.189130902290344,-0.146093368530273,0.00117254257202148,0.172051191329956,-0.138432502746582,0.000514507293701172,0.120815634727478,-0.117051124572754,-3.38554382324219e-05,0.0743827819824219,-0.0958766937255859,-0.000434398651123047,0.0326504707336426,-0.0648126602172852,-0.00125741958618164,-0.0445335507392883,-0.0278778076171875,-0.000916481018066406,-0.029113233089447,0.0161542892456055,-0.000696659088134766,-0.0176739096641541,0.0329856872558594,-0.00113582611083984,-0.0580503344535828,0.0501375198364258,-0.00200414657592773,-0.134766697883606,0.0489692687988281,-0.00214433670043945,-0.139021337032318,0.0283699035644531,-0.00211286544799805,-0.133341610431671,0.0164031982421875,-0.00156116485595703,-0.0771165490150452,-0.0182952880859375,-0.0012049674987793,-0.0376050472259521,-0.054347038269043,-0.000658035278320313,0.0112801790237427,-0.0749149322509766,-0.000277996063232422, +0.0473924875259399,-0.101345062255859,0.000176429748535156,0.0818288326263428,-0.117767333984375,0.000576972961425781,0.102610468864441,-0.120171546936035,0.000230312347412109,0.0603909492492676,-0.112528800964355,-0.000459432601928711,-0.00616490840911865,-0.106705665588379,-0.000814914703369141,-0.0517572164535522,-0.0841245651245117,-0.000587940216064453,-0.0457003712654114,-0.0649433135986328,-0.000786066055297852,-0.0661399662494659,-0.060664176940918,-0.000854253768920898,-0.0757374167442322,-0.0442056655883789,-0.000715494155883789,-0.0557965934276581,-0.0524139404296875,-0.000515222549438477,-0.0227409303188324,-0.0738048553466797,6.07967376708984e-05,0.0374546945095062,-0.0848217010498047,0.000348091125488281,0.0757640823721886,-0.0935440063476563,-5.17368316650391e-05,0.0537442676723003,-0.0840024948120117,-0.000807285308837891,-0.0117491185665131,-0.0552902221679688,-0.00137233734130859,-0.0611621886491776,-0.0361223220825195,-0.0019679069519043,-0.119128733873367,-0.00442886352539063,-0.00223302841186523,-0.147785276174545,0.0192670822143555,-0.00253057479858398,-0.175825715065002,0.0341386795043945,-0.00033271312713623,-0.0276492834091187,-0.0641441345214844,4.05311584472656e-05,0.00574542582035065,-0.0638160705566406,0.000304460525512695,0.0325441658496857,-0.0683841705322266,0.00187945365905762,0.173324167728424,-0.0806522369384766,0.00231289863586426,0.22527576982975,-0.0951757431030273,0.00265073776245117,0.27017468214035,-0.10882568359375,0.00234794616699219,0.256758451461792,-0.0975255966186523,0.00213098526000977,0.235725551843643,-0.0668649673461914,0.00176048278808594,0.200132772326469,-0.0399637222290039,0.00117588043212891,0.146041959524155,-0.0111618041992188,0.000413894653320313,0.0761356800794601,0.014338493347168,-0.000294685363769531,0.0139240622520447,0.0293617248535156,-0.00118446350097656,-0.0616727769374847,0.0362071990966797,-0.00223588943481445,-0.149069577455521,0.0354232788085938,-0.00157594680786133,-0.0933359861373901,0.0286989212036133,-0.0007781982421875,-0.0243522673845291, +0.0149354934692383,-0.000112056732177734,0.0338084399700165,-0.00301170349121094,0.000371932983398438,0.0833520963788033,-0.0365972518920898,0.000573635101318359,0.105000339448452,-0.061518669128418,0.00101518630981445,0.145446687936783,-0.0931024551391602,0.00139260292053223,0.165128588676453,-0.103127479553223,0.00104665756225586,0.120299600064754,-0.0910568237304688,0.000469207763671875,0.0596703290939331,-0.0809526443481445,0.000205755233764648,0.0243206918239594,-0.0650749206542969,-0.00044560432434082,-0.0366076529026031,-0.0567235946655273,-0.000580430030822754,-0.0510348975658417,-0.0552635192871094,-0.00286102294921875,-0.20377904176712,0.0404777526855469,-0.00300788879394531,-0.210299670696259,0.0236577987670898,-0.00304937362670898,-0.21112859249115,0.0152950286865234,-0.0023961067199707,-0.147439897060394,-0.0160465240478516,-0.00193166732788086,-0.101453185081482,-0.0464906692504883,-0.00154542922973633,-0.0660507678985596,-0.0672950744628906,-0.00127172470092773,-0.0415349006652832,-0.0870685577392578,-0.00101041793823242,-0.0255122184753418,-0.0962123870849609,-0.000740528106689453,-0.0128452777862549,-0.0994892120361328,-0.00103545188903809,-0.0492386817932129,-0.0944423675537109,-0.00129437446594238,-0.082125186920166,-0.0875654220581055,-0.0017547607421875,-0.135447263717651,-0.0673322677612305,-0.00123906135559082,-0.104509294033051,-0.0512857437133789,-0.00108087062835693,-0.096275806427002,-0.0455036163330078,-0.000490307807922363,-0.0342818796634674,-0.0786285400390625,0.000280857086181641,0.0376265048980713,-0.0937976837158203,0.00109577178955078,0.112919688224792,-0.10840892791748,0.00209259986877441,0.204368531703949,-0.123381614685059,0.00244688987731934,0.250494241714478,-0.14033317565918,0.00287342071533203,0.302327334880829,-0.152194023132324,0.00292825698852539,0.317885756492615,-0.141921997070313,0.00215339660644531,0.251474618911743,-0.109152793884277,0.00157356262207031,0.203578591346741,-0.0923309326171875,0.00131750106811523,0.173618197441101,-0.0556507110595703,0.000587940216064453, +0.108357191085815,-0.0269956588745117,0.000143051147460938,0.0639296770095825,0.00140571594238281,0.000113010406494141,0.0608757436275482,0.00918483734130859,-0.000573635101318359,0.0056908130645752,0.0217456817626953,-0.0013270378112793,-0.0763925611972809,0.0481910705566406,-0.00103902816772461,-0.0487661957740784,0.0299835205078125,-0.00133943557739258,-0.0709472894668579,0.0149021148681641,-0.000399589538574219,0.0167046785354614,-0.0176906585693359,-4.76837158203125e-06,0.0646713972091675,-0.0603485107421875,0.000302314758300781,0.0916818380355835,-0.0790910720825195,0.000843524932861328,0.14270806312561,-0.106949806213379,0.00136160850524902,0.179784893989563,-0.120696067810059,0.00131940841674805,0.16503119468689,-0.12494945526123,0.0011742115020752,0.138805627822876,-0.119051933288574,0.000691652297973633,0.086955189704895,-0.108499526977539,4.79221343994141e-05,0.0202484130859375,-0.0880184173583984,-0.00079345703125,-0.0592456459999084,-0.068023681640625,-0.000897407531738281,-0.0743114650249481,-0.0614509582519531,-0.000854253768920898,-0.0757374167442322,-0.0442056655883789,-0.000715494155883789,-0.0557965934276581,-0.0524139404296875,-0.000515222549438477,-0.0227409303188324,-0.0738048553466797,6.07967376708984e-05,0.0374546945095062,-0.0848217010498047,0.000348091125488281,0.0757640823721886,-0.0935440063476563,-5.17368316650391e-05,0.0537442676723003,-0.0840024948120117,-0.000807285308837891,-0.0117491185665131,-0.0552902221679688,-0.00137233734130859,-0.0611621886491776,-0.0361223220825195,-0.0019679069519043,-0.119128733873367,-0.00442886352539063,-0.00223302841186523,-0.147785276174545,0.0192670822143555,-0.00253057479858398,-0.175825715065002,0.0341386795043945,-0.000274896621704102,-0.0223970711231232,-0.0701169967651367,0.000159502029418945,0.016204759478569,-0.0699930191040039,0.000382184982299805,0.0402449518442154,-0.0753450393676758,0.00165867805480957,0.158826887607574,-0.0910968780517578,0.00191330909729004,0.196976274251938,-0.10590648651123,0.0021965503692627,0.23856994509697,-0.120806694030762, +0.00191450119018555,0.22761307656765,-0.109344482421875,0.00181245803833008,0.21644327044487,-0.078526496887207,0.00167083740234375,0.199369266629219,-0.0506124496459961,0.00131368637084961,0.16362763941288,-0.020472526550293,0.000823974609375,0.115170687437057,0.00701141357421875,0.000257015228271484,0.0634316802024841,0.0246295928955078,-0.000221729278564453,0.0192385613918304,0.0354528427124023,-0.00143718719482422,-0.0825520157814026,0.0363941192626953,-0.000844478607177734,-0.0310283601284027,0.0272378921508789,-0.00023651123046875,0.0235298573970795,0.0112085342407227,0.000200271606445313,0.0638344846665859,-0.00902462005615234,0.000438690185546875,0.0937049016356468,-0.0440864562988281,0.000406265258789063,0.0963839590549469,-0.0700273513793945,0.000679492950439453,0.122897267341614,-0.102184295654297,0.0010371208190918,0.140160724520683,-0.112140655517578,0.000672817230224609,0.0930686295032501,-0.0997200012207031,0.000329971313476563,0.0507889539003372,-0.0892467498779297,0.000246047973632813,0.0288881212472916,-0.0716638565063477,-0.000303268432617188,-0.0247719287872314,-0.0616655349731445,-0.000529170036315918,-0.0465693175792694,-0.060511589050293,-0.164582967758179,-0.0242424011230469,0.110223770141602,-0.167819261550903,-0.0515785217285156,0.116046905517578,-0.00147438049316406,-0.130784094333649,-0.0367908477783203,-0.00148820877075195,-0.116860449314117,-0.057042121887207,-0.000974416732788086,-0.0591869354248047,-0.0767030715942383,-0.000674962997436523,-0.0250838994979858,-0.080418586730957,-0.000564098358154297,-0.00524616241455078,-0.0835723876953125,-0.000768661499023438,-0.0121790170669556,-0.0817251205444336,-0.00123929977416992,-0.0476366281509399,-0.0565557479858398,-0.00153779983520508,-0.0758291482925415,-0.0361871719360352,-0.00209760665893555,-0.127816736698151,-0.00986576080322266,-0.00287818908691406,-0.19909805059433,0.0147848129272461,-0.00308561325073242,-0.220526337623596,0.0318536758422852,-0.00104951858520508,-0.0301001071929932,-0.0736856460571289,-0.00131082534790039,-0.107336759567261, +-0.0419721603393555,-0.00117349624633789,-0.080241397023201,-0.0625839233398438,-0.00132870674133301,-0.116319954395294,-0.0361528396606445,-0.00162458419799805,-0.138894319534302,-0.0412788391113281,-0.000587224960327148,-0.0201903879642487,-0.0728015899658203,-0.000480890274047852,0.00254975259304047,-0.0800657272338867,-0.000910043716430664,-0.0227148681879044,-0.0688676834106445,-0.00146293640136719,-0.0718749910593033,-0.0409917831420898,-0.00204849243164063,-0.12301641702652,-0.0232992172241211,-0.00261783599853516,-0.175588697195053,0.000971794128417969,-0.00278663635253906,-0.191632509231567,0.0134410858154297,-0.00286006927490234,-0.200675666332245,0.0249128341674805,-0.00302028656005859,-0.212208807468414,0.0209140777587891,0.144130378961563,-0.350588798522949,-0.108823776245117,0.142196327447891,-0.0557607412338257,0,0.208171129226685,-0.44498884677887,-0.157761573791504,0.158511459827423,-0.708098888397217,-0.227814674377441,0.0623327493667603,-0.716661691665649,-0.119623184204102,0.158004283905029,-0.795922994613647,-0.213644981384277,0.184415817260742,-0.709466457366943,-0.0463142395019531,0.198340177536011,-0.775245189666748,-0.175933837890625,0.0704524517059326,-0.920334339141846,0.0787591934204102,0.0314090251922607,-0.919525384902954,-0.0177745819091797,-0.0777192115783691,-1.01470279693604,0.20340633392334,-0.0631051063537598,-1.07269167900085,0.227492332458496,-0.237175464630127,-1.0917159318924,0.473533630371094,-0.235237121582031,-1.01119065284729,0.42475414276123,-0.199289321899414,-1.02208209037781,0.603397369384766,-0.132351398468018,-0.942432165145874,0.85004997253418,-0.272266864776611,-0.432155966758728,1.07955694198608,-0.203939914703369,-0.444496154785156,0.970632553100586,-0.686311721801758,-0.0274044275283813,0.995948791503906,-0.591937065124512,-0.0298993587493896,1.02861928939819,-0.473684787750244,0.6211097240448,0.779248714447021,-0.110342979431152,0.481724858283997,0.787898063659668,-0.37762451171875,0.902147114276886,0.756945610046387,-0.083256721496582,0.648464024066925,0.634397983551025, +-0.165984153747559,0.927796125411987,0.381620407104492,0.0269308090209961,0.654579281806946,0.424444198608398,-0.12627387046814,0.757961452007294,0.0951871871948242,-0.0365395545959473,0.418406963348389,0.203545570373535,0.0353436470031738,0.400692641735077,-0.123965263366699,0,0.249039351940155,-0.0338373184204102,-0.0866632461547852,-0.673081398010254,0.868857860565186,-0.182016372680664,-0.670921921730042,0.770665168762207,-0.415093898773193,-0.322959542274475,1.12902736663818,-0.489314556121826,-0.263749778270721,1.11561346054077,-0.560000896453857,0.366446055471897,0.949146270751953,-0.435007572174072,0.41328159160912,0.890422344207764,-0.0314865112304688,0.680991291999817,0.502910614013672,-0.284119606018066,0.945544302463531,0.58000373840332,0.0363144874572754,0.607114553451538,0.32652473449707,-0.0912303924560547,0.860274851322174,0.199061393737793,-0.0781440734863281,0.200825810432434,0.0301017761230469,-0.021873950958252,0.550387024879456,-0.0300531387329102,0.100814402103424,-0.0674614906311035,0,0.199730157852173,-0.7635498046875,-0.203272819519043,0.156222343444824,-0.728736758232117,-0.0757036209106445,0.00955677032470703,0.271506071090698,0.118659973144531,0.0389881134033203,0.367816209793091,0.240447998046875,0.0802750587463379,0.366623401641846,0.310160636901855,0.0644207000732422,0.361501216888428,0.353473663330078,0.0631422996520996,0.329118728637695,0.419689178466797,0.0462298393249512,0.321691274642944,0.594432830810547,-0.228595733642578,0.246746063232422,0.629973411560059,-0.0017547607421875,-0.135446488857269,-0.0673322677612305,-0.00129437446594238,-0.0821244716644287,-0.0875654220581055,-0.00103545188903809,-0.0492380857467651,-0.0944423675537109,-0.000740528106689453,-0.012844443321228,-0.0994892120361328,-0.00101041793823242,-0.025511622428894,-0.0962123870849609,-0.00127172470092773,-0.0415340662002563,-0.0870685577392578,-0.00154542922973633,-0.0660501718521118,-0.0672950744628906,-0.00193166732788086,-0.101452469825745,-0.0464906692504883,-0.0023961067199707,-0.147439122200012,-0.0160465240478516, +-0.00304937362670898,-0.211127817630768,0.0152950286865234,-0.00300788879394531,-0.210298955440521,0.0236577987670898,-0.00286102294921875,-0.203778326511383,0.0404777526855469,-0.00253057479858398,-0.175824999809265,0.0341386795043945,-0.00223302841186523,-0.147784531116486,0.0192670822143555,-0.00196743011474609,-0.119127988815308,-0.00442886352539063,-0.00137233734130859,-0.0611613988876343,-0.0361223220825195,-0.000807285308837891,-0.0117483288049698,-0.0552902221679688,-5.17368316650391e-05,0.0537450984120369,-0.0840024948120117,0.000348091125488281,0.0757726645097136,-0.0935440063476563,6.07967376708984e-05,0.0374554991722107,-0.0848217010498047,-0.000515222549438477,-0.0227401256561279,-0.0738048553466797,-0.000715494155883789,-0.0557957887649536,-0.0524139404296875,-0.000854253768920898,-0.0757366120815277,-0.0442056655883789,-0.00108087062835693,-0.0962750613689423,-0.0455036163330078,-0.0012664794921875,-0.106848299503326,-0.050999641418457,-0.000667452812194824,-0.056363433599472,-0.054570198059082,4.3034553527832e-05,-0.00300714373588562,-0.0427713394165039,0.00105929374694824,0.0627417489886284,0.0100498199462891,0.00174045562744141,0.137893183156848,-0.0417633056640625,0.00236010551452637,0.208969354629517,-0.0328502655029297,0.00243425369262695,0.213236421346664,-0.037200927734375,0.00215053558349609,0.198134422302246,-0.0293188095092773,0.0015101432800293,0.179737776517868,-0.0237874984741211,0.00121116638183594,0.14141620695591,-0.0153560638427734,0.000304698944091797,0.0519838929176331,0.00530433654785156,-0.00110101699829102,-0.0525684058666229,0.0289573669433594,-0.00221920013427734,-0.146055847406387,0.0454540252685547,-0.00263643264770508,-0.142357289791107,0.0334157943725586,0.00977087020874023,-0.188816845417023,0.0453968048095703,0.0395112037658691,-0.237677037715912,0.0288848876953125,-0.00245141983032227,-0.214508712291718,-0.0496950149536133,0.0713620185852051,-0.147210836410522,-0.00486373901367188,0.0497546195983887,-0.129267454147339,0.0102558135986328,0.0501418113708496,-0.103359580039978, +0.00647354125976563,-0.00113439559936523,-0.0893709659576416,0.0515594482421875,-0.000878572463989258,-0.093894362449646,0.0575065612792969,-0.00127768516540527,-0.123712182044983,0.0353469848632813,-0.00162410736083984,-0.14739203453064,0.0169219970703125,-0.00153040885925293,-0.15049684047699,-0.0103321075439453,-0.00139057636260986,-0.0957322120666504,-0.0537624359130859,0.0376648902893066,-0.000407040119171143,-6.67572021484375e-06,0.0816409587860107,-0.188710451126099,-0.00480556488037109,0.108362197875977,-0.259911179542542,0.0639801025390625,0.0783317089080811,-0.308813571929932,0.113951683044434,0.0754907131195068,-0.38100528717041,0.167710304260254,0.0551035404205322,-0.388614177703857,0.0748414993286133,0.0687947273254395,-0.347057461738586,0.0648250579833984,-0.0517268180847168,-0.293858647346497,0.146702766418457,-0.000881671905517578,-0.273022651672363,0.104891777038574,0.0502266883850098,-0.185625195503235,0.0645999908447266,0.0865926742553711,-0.169196903705597,0.0157756805419922,0.00951194763183594,-0.140897870063782,-0.0507793426513672,-0.0992903709411621,-0.0630801916122437,-0.126720428466797,-0.0710229873657227,-0.0138210654258728,0.0750389099121094,-0.0741367340087891,0.116271212697029,0.219128608703613,-0.102123260498047,0.271922416985035,0.234209060668945,-0.0188732147216797,0.395222276449203,0.212471008300781,-0.00284862518310547,0.40361499786377,0.171840667724609,0.0158681869506836,0.334085404872894,0.183735847473145,0.0252542495727539,0.372327327728271,0.138895988464355,0.0740256309509277,0.324200838804245,0.126879692077637,0.0023038387298584,0.272351026535034,0.0485429763793945,0.000941991806030273,0.180589854717255,0.0552616119384766,0.0533242225646973,0.0572187229990959,-0.0146141052246094,0.0375640392303467,-0.00513893365859985,-0.0142478942871094,0.317132711410522,-0.813201308250427,-0.326605796813965,0.375768542289734,-0.70371288061142,-0.277327537536621,0.489056706428528,-0.502800583839417,-0.153005599975586,0.364308714866638,-0.120689868927002,0,0.080317497253418,0,0,0.0818809270858765, +0.0635456293821335,0,0.0690330266952515,0.414361506700516,-0.165244102478027,0.0517547130584717,0.559303760528564,-0.176733016967773,-0.0326416492462158,0.672659635543823,-0.132767677307129,-0.0885100364685059,0.682797849178314,0.00822639465332031,-0.0733470916748047,0.710878312587738,0.0347833633422852,-0.215682983398438,0.756072342395782,0.145392417907715,-0.398495197296143,0.718379855155945,0.342863082885742,-0.459701538085938,0.61292290687561,0.363532543182373,-0.524814605712891,0.450003206729889,0.438201904296875,-0.582118034362793,0.271450728178024,0.557196617126465,-0.586634159088135,0.0212851762771606,0.582931518554688,-0.41298770904541,-0.190651178359985,0.686676979064941,-0.304150104522705,-0.381133258342743,0.708871841430664,-0.304475784301758,-0.67447304725647,0.543445587158203,-0.249585628509521,-1.00937032699585,0.460536956787109,-0.276689529418945,-1.17841041088104,0.363770484924316,-0.0483541488647461,-1.1635023355484,0.270567893981934,0.095689058303833,-1.06626391410828,0.0925083160400391,0.25893759727478,-0.984095215797424,-0.134723663330078,0.29863166809082,-0.946109056472778,0.23159122467041,0.137356519699097,-1.02608156204224,0.290213584899902,0.00890016555786133,-0.984704732894897,0.337482452392578,-0.108830451965332,-0.914581060409546,0.279216766357422,-0.0755476951599121,-0.773639798164368,0.267004013061523,-0.0539007186889648,-0.501099765300751,0.256549835205078,-0.153902053833008,-0.246700584888458,0.211710929870605,-0.149906158447266,-0.13207870721817,0.150218963623047,-0.3155198097229,-0.010032057762146,0.080258846282959,-0.261213302612305,0.139643788337708,0.226344585418701,-0.267131805419922,0.323273796588182,0.363592624664307,-0.262065410614014,0.502895951271057,0.368078231811523,-0.267836570739746,0.619417190551758,0.389430999755859,-0.0217571258544922,0.548386752605438,0.249654769897461,0.00347900390625,0.510560154914856,0.224294662475586,-0.0260305404663086,0.493815809488297,0.151609420776367,-0.00434041023254395,0.523340821266174,-0.00800228118896484,0.0163586139678955,0.460755288600922, +-0.0139265060424805,0.0770086050033569,0.266324430704117,0.0189456939697266,0.0678503513336182,0.117022693157196,0,0.0881632566452026,0,0,0.269426584243774,-0.0844272971153259,0,0.35125207901001,-0.445446729660034,-0.0812654495239258,0.41232967376709,-0.622344374656677,-0.0108060836791992,0.363458156585693,-0.760687589645386,0.0885000228881836,0.0137416124343872,-0.101747274398804,0,-0.0034325122833252,-0.253147125244141,0.02838134765625,-0.0266480445861816,-0.286109924316406,0.0775690078735352,-0.0401268005371094,-0.302005767822266,0.125029563903809,-0.061455249786377,-0.298107147216797,0.15529203414917,-0.0772528648376465,-0.233085632324219,0.27659273147583,-0.16134786605835,-0.277328491210938,0.611410140991211,-0.188381195068359,-0.178329467773438,0.677287101745605,-0.196249485015869,-0.127300262451172,0.655929088592529,-0.298870086669922,0.0207136869430542,0.609638690948486,-0.00171470642089844,-0.114283949136734,-0.0185585021972656,-0.00190138816833496,-0.133228480815887,-0.0240650177001953,-0.00148487091064453,-0.103191077709198,-0.031951904296875,-0.000908136367797852,-0.0554419159889221,-0.0583696365356445,-0.000510215759277344,-0.0181514024734497,-0.0614194869995117,-0.000350475311279297,-0.0017474889755249,-0.0529870986938477,-0.00051569938659668,-0.00651836395263672,-0.0500497817993164,-0.000778675079345703,-0.022652268409729,-0.0347089767456055,-0.0011744499206543,-0.0492199659347534,-0.0345516204833984,-0.00203704833984375,-0.119726777076721,-0.0180683135986328,-0.00213193893432617,-0.125425100326538,0.00196647644042969,-0.0029139518737793,-0.18490469455719,0.0207252502441406,-0.00301504135131836,-0.19495701789856,0.0297031402587891,-0.00143885612487793,-0.115382850170135,-0.0359745025634766,-0.00164294242858887,-0.115668565034866,-0.0206871032714844,-0.00113773345947266,-0.0778682231903076,-0.0598487854003906,-0.000685453414916992,-0.0284913033246994,-0.0713281631469727,-0.000569581985473633,-0.00572562217712402,-0.0774383544921875,-0.00107383728027344,-0.0368082374334335,-0.0660362243652344,-0.00158929824829102, +-0.0818494260311127,-0.0398063659667969,-0.00211620330810547,-0.127741128206253,-0.0229215621948242,-0.00262069702148438,-0.167717039585114,-3.14712524414063e-05,-0.00291299819946289,-0.183605074882507,0.0210466384887695,-0.00298023223876953,-0.197807192802429,0.0346212387084961,-0.00305795669555664,-0.180809795856476,0.0366973876953125,-8.91685485839844e-05,-0.00366640090942383,0,0,0,0.00970172882080078,0,0,0.0064697265625,0,-0.00581908226013184,0.0119009017944336,0,-0.00472557544708252,0.0140342712402344,-9.84668731689453e-05,-0.00426703691482544,0.000152587890625 + } + Normals: *1209 { + a: -1.50185573101044,-0.601826071739197,-0.402270153164864,-1.59126418828964,-0.978847846388817,-0.174214832484722,-1.73177176713943,-0.891381323337555,-0.0770656280219555,-1.67680388689041,-0.266045391559601,-0.0843515396118164,-1.63690102100372,-0.352271229028702,-0.519921481609344,-1.48667925596237,-0.398075729608536,-0.649545311927795,-1.21311274170876,-0.364905118942261,-0.455924600362778,-0.667573653161526,0.0335391759872437,-0.370260745286942,-0.584230378270149,0.0798742175102234,-0.684645608067513,-0.385443478822708,0.0490411520004272,-1.05369764566422,-0.345133304595947,-0.447278320789337,-1.04475623369217,-0.17211788892746,-0.234618365764618,-0.480063706636429,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892,0.225637197494507,-0.0671213418245316,0.187671840190887,0.106081604957581,0.261300340294838,0.787496782839298,0.403662919998169,0.207751393318176,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0508227944374084,-0.0411628484725952,-0.662151902914047,-0.336466670036316,-0.122247755527496,-0.329892709851265,0.112945631146431,0.120173692703247,-0.268052637577057,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.339041277766228,0.145105302333832,-0.25739125511609,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.363858863711357,0.059422492980957,0.587299838662148,-0.325358957052231,0.097834587097168,0.437714099884033,-0.504228919744492,0.0945284962654114,0.381170973181725,-0.524551324546337,0.0367775559425354,0.56257176399231,-0.375280141830444,0.126147150993347,0.435346990823746,-0.415541544556618,0.0772584676742554,0.510290458798409,-0.602065085502193,0.12457013130188,0.336430218070745,-0.605729902071204,0.19992208480835,0.0430501401424408,-0.365026280283928,0.193111896514893,-0.34769557020627,-0.156429320573807,0.156052589416504,-0.274343803524971,-0.0674882325355668,0.193857789039612,-0.381555050611496,0.12334942975901,0.24046927690506, +-0.619278458878398,0.319673286470397,0.237965762615204,-0.543768731877208,0.565164541917596,0.273323059082031,-0.196749478578568,0.648158326745033,0.437639713287354,-0.0838366746902466,0.737015515565872,0.538032203912735,-0.21436615427956,0.822527384477411,0.414076268672943,0.122615903615952,-0.412386803956554,0.171557068824768,-0.12865737080574,-0.209644451737404,0.23904675245285,-0.341286689043045,-0.0437039509415627,0.495360881090164,-0.639684319496155,-0.0984339602291584,0.554885923862457,-0.672815263271332,-0.144274458289146,0.45696634054184,-0.495350450277328,-0.140135753899813,0.412960588932037,-0.428342252969742,-0.288750693202019,0.49910831451416,-0.583593994379044,-0.387474410235882,0.533515989780426,-0.837889567017555,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.487102523446083,0.464821577072144,-0.555950343608856,-0.151509329676628,0.533445924520493,-0.645747631788254,-0.213456615805626,0.722269922494888,-0.701753467321396,-0.000305712223052979,0.665166273713112,-0.548692375421524,0.754402801394463,0.55215223133564,-0.606332808732986,0.878427863121033,0.616948425769806,-0.901008464396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.254736870527267,0.32029601931572,-1.16767579317093,0.504261881113052,-0.11275514960289,-0.919845275580883,0.385556995868683,-0.215020313858986,-1.24524831771851,0.141297817230225,0.283928215503693,-1.085284948349,0.155354022979736,0.355814546346664,-0.688036061823368,0.306208968162537,-0.0154234766960144,-0.499868825078011,0.68174797296524,-0.111116349697113,-0.997287027537823,0.23677733540535,0.312541007995605,-0.717955209314823,0.158881604671478,0.257880926132202,-0.403882533311844,0.496002197265625,-0.175860404968262,-0.88284146040678,0.490558564662933,-0.0956130027770996,-0.587968662381172,0.601017624139786,-0.673016577959061,-0.811616001650691,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632, +1.0746888294816,-0.000389844179153442,-1.0696761533618,1.0746693611145,-0.504023537039757,-1.22071933746338,0.963456682860851,-0.602399051189423,-1.41119506955147,0.578399747610092,-0.840549319982529,-1.24013981223106,0.419054090976715,-0.805760279297829,-0.903338491916656,-0.553535893559456,0.288531601428986,0.00790807604789734,-0.816980265080929,0.405150890350342,0.0179882049560547,-0.895196173340082,0.535886496305466,0.0795767307281494,-0.760900795459747,0.542144805192947,-0.0419607758522034,-0.598432801663876,0.368244111537933,-0.0382752120494843,-0.603585157543421,0.3127561211586,-0.126257866621017,-0.320898070931435,0.389711201190948,-0.450091451406479,0.0115292444825172,0.352275550365448,-0.387758046388626,0.14838720113039,0.40705817937851,-0.532200783491135,0.254393235541897,0.410534083843231,-0.499103218317032,0.495379336441573,0.400426954030991,-0.272984683513641,0.870777294039726,0.539444506168365,-0.161191791296005,0.952468730509281,0.536564290523529,0.0594483315944672,0.778776981199798,0.363078594207764,0.112047731876373,0.678620816139652,0.253162145614624,0.0837875604629517,0.755384744076206,0.327573537826538,0.111577093601227,0.747041858995971,0.323557257652283,0.105192631483078,0.509130798280239,0.273870050907135,-0.0489658117294312,0.224745973944664,0.250952005386353,-0.26890441775322,0.0920627045283879,0.192047238349915,-0.262970149517059,-0.131517022155208,0.259085178375244,-0.406238049268723,-0.426537699997425,0.26420396566391,-0.337778806686401,-0.642107285559177,0.185825049877167,-0.0145222246646881,-0.711974777281284,0.109476447105408,0.29233118891716,-0.620818920433521,0.104616582393646,0.295931979082525,-0.434893097728491,0.0662642121315002,0.403861507773399,-0.295251008123159,-0.066243052482605,0.429270461201668,-0.210223276168108,-0.0472280383110046,0.266992792487144,-0.465672567486763,-0.0110886096954346,0.199461817741394,-0.608315385878086,0.0309087634086609,0.337096847593784,-0.603019502013922,0.121782600879669,0.361779168248177,-0.667177584022284,0.192173182964325,0.317236974835396,-0.625113066285849, +0.280387461185455,0.00511246919631958,-0.0274802446365356,0.133019268512726,-0.163706570863724,0.197687685489655,0.0727952718734741,-0.227657556533813,-0.061834093183279,0.283962845802307,-0.354415208101273,0.122639235109091,0.248716473579407,-0.290755182504654,0.851501405239105,0.0997061133384705,-0.258741915225983,1.16096293926239,0.161216795444489,-0.262958437204361,1.62235134840012,-0.124503463506699,-0.0881993770599365,1.76414412260056,-0.0693078637123108,-0.163263812661171,1.32596826553345,0.0799219608306885,0.0576132535934448,0.21365287899971,-0.0125518441200256,-0.149545907974243,0.806463591754436,-0.416218668222427,-0.310691565275192,0.86254261364229,-0.358324438333511,-0.345730990171432,0.476973827928305,-0.00263011455535889,-0.234298646450043,0.485704123973846,0.0263215303421021,-0.291734665632248,0.735084071755409,-0.378197580575943,-0.313567370176315,0.616508185863495,-0.322063118219376,-0.359671026468277,0.465949028730392,-1.11724245548248,-0.539901793003082,0.529554069042206,-0.943819254636765,-0.538006961345673,0.57141250371933,-0.222567766904831,-0.550553277134895,0.588862478733063,-0.119262456893921,-0.474771708250046,0.607144623994827,-0.665255784988403,-0.717223644256592,0.892453543841839,-0.557455599308014,-0.930429814383388,1.11482411623001,-0.472546115517616,-0.944982586428523,1.08437417447567,-0.540695160627365,-0.779460728168488,0.603004649281502,-1.11853238940239,-0.90881459787488,0.573842902551405,-1.14264732599258,-1.02042876929045,0.693832620978355,-0.775393813848495,-0.69949471950531,0.434402644634247,-0.985184341669083,-0.61371111869812,-0.0884353220462799,-1.40555182099342,-0.745034359395504,0.00643986463546753,-1.3666464984417,-0.690715957432985,-0.0224997699260712,-1.3710620701313,-0.66904317215085,-0.163956701755524,-1.40014854073524,-0.700877748429775,-0.402099609375,-1.40997919440269,-0.617858380079269,-0.0117914974689484,-1.35544803738594,-0.77558870613575,0.136893659830093,-1.29555252194405,-0.836707763373852,0.0497854053974152,-1.40631794929504,-0.689417291432619,-0.123042374849319, +-1.48438769578934,-0.649256303906441,-0.0765100419521332,-1.47887474298477,-0.838680855929852,-0.211057409644127,-1.55363339185715,-0.792857594788074,-0.0546330362558365,-1.55454725027084,-0.785161687061191,0.216854202095419,-1.49665647745132,-0.820179790258408,0.253774013370275,-1.4323253929615,-0.895418830681592,0.208883263170719,-1.45866963267326,-0.813542097806931,0.175042472779751,-1.52393871545792,-0.872029133141041,-0.0746157467365265,-1.59497082233429,-0.748141177464277,-0.281477585434914,-1.47059673070908,-0.637108638882637,-0.515447378158569,0.0467902272939682,0.876252649351954,-0.461801528930664,-0.0283066765405238,1.00263074040413,-1.72810244560242,-0.421300118789077,-0.557054158300161,-1.56471985578537,0.337856411933899,-0.150918601080775,-1.42422276735306,0.411298006772995,-0.258877515792847,-1.27924147248268,0.501740545034409,-0.302604457363486,-1.05735702812672,0.516562700271606,-0.344794629141688,-0.879539541900158,0.482428193092346,-0.368125699460506,-0.76709620654583,0.50542426109314,-0.34443748742342,-0.761508256196976,0.487263768911362,-0.401006042957306,-0.711132228374481,0.53999799489975,-0.265877828001976,-0.605064630508423,0.480696588754654,-0.348344728350639,-0.632933646440506,0.395189315080643,-0.627764709293842,-0.868938766419888,0.707184702157974,-0.324328824877739,-0.793471843004227,-1.03629317879677,-0.596903011202812,-0.840639278292656,-0.926301926374435,-0.734792433679104,-1.11910796165466,-0.940811038017273,-0.669003926217556,-1.83026814460754,0.260754287242889,-0.104523025453091,-0.955039251595736,-0.708331078290939,-0.783315487205982,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.15837450325489,-0.664129242300987,-0.846784750465304,-1.26509910821915,-0.634245567023754,-0.7584577947855,-1.28747853636742,-0.767328590154648,-0.685640700161457,-1.39049977064133,-0.646231643855572,-0.69512303173542,-1.31643104553223,-0.632965883240104,-0.721746142255142,-1.1930096745491,-0.753518491983414,-0.665236040949821,-0.471992373466492,0.388065934181213,-0.00968295335769653,-0.479762978851795, +0.297176294028759,-0.0498392581939697,-0.570045650005341,0.215554755181074,-0.03277188539505,-0.651794075965881,0.260781913995743,0.0216622948646545,-0.544724434614182,0.371299996972084,-0.0366945862770081,-0.270773946816917,0.509006358683109,0.130964636802673,0.283573925495148,0.283059403300285,-0.102856814861298,0.188356131315231,0.433917187154293,-0.0297991633415222,-0.353770619651186,0.0728668814990669,0.0622389316558838,0.0444653630256653,0.376232743263245,0.00634008646011353,-0.450644880111213,0.017251193523407,0.106152713298798,-0.569032894731208,0.00706358999013901,0.178126394748688,-0.184622019529343,0.342316150665283,0.0908067226409912,-0.392363399267197,0.163461938500404,0.217595517635345,-0.156518876552582,-0.00533966720104218,0.134041726589203,-0.308299422264099,0.152335792779922,0.267315328121185,-0.65435266494751,0.112798821181059,0.464356422424316,-1.26026144623756,-0.545328840613365,0.337407112121582,-1.30760335922241,-0.334023222327232,0.488808184862137,-1.2809898853302,-0.44488637149334,0.498575985431671,-1.2763839662075,-0.588752418756485,0.490391105413437,-1.23788356781006,-0.233890704810619,0.382141530513763,-1.25652548670769,-0.261572916060686,0.454515933990479,-1.11477899551392,-0.389123380184174,0.203171014785767,-1.16302850842476,-0.37324345856905,0.257106244564056,-1.35375529527664,0.274691790342331,-0.22184032201767,-1.50294709205627,0.0920944549143314,-0.293249100446701,-0.955899924039841,-0.110642716288567,-0.0969338417053223,-0.940145373344421,0.194000024348497,-0.0857091546058655,-0.908295601606369,-0.247933745384216,-0.0759211182594299,-1.45155519247055,-0.431078121066093,-0.39738741517067,-1.48708790540695,0.0373126938939095,0.38999006152153,-1.21521037817001,0.0774128306657076,0.431822180747986,-1.25114530324936,0.117499619722366,0.551175117492676,-1.40657961368561,0.0793880224227905,0.393477559089661,-1.43944656848907,0.00349607318639755,0.427669942378998,-1.40711826086044,0.078745074570179,0.527658998966217,-1.09805333614349,-0.00224276632070541,0.237773001194,-1.10237464308739, +0.00932411849498749,0.195629894733429,-1.06906479597092,0.0700286106657586,-0.000277340412139893,-0.882849395275116,-0.127865627408028,0.0330973267555237,-0.688262134790421,-0.168271332979202,-0.0288994908332825,-0.670831024646759,-0.23801101744175,0.00632905960083008,-0.814250439405441,0.167086806148291,0.0229705572128296,-0.709432035684586,0.47479522228241,-0.159030497074127,-0.968218743801117,0.848342210054398,-0.215124607086182,-1.35374891757965,-0.00621065497398376,-0.440102696418762,-1.4749738574028,0.0437636189162731,-0.361366152763367,-1.51727467775345,0.690047711133957,-0.562320411205292,-1.591881275177,0.368977472186089,-0.0139018893241882,-1.7028261423111,0.739736407995224,-0.29422727227211,-1.79600596427917,0.504440702497959,0.0166108310222626,-1.61001873016357,0.601040259934962,0.209741085767746,-1.35226571559906,0.527378253638744,-0.461523681879044,-1.22393277287483,0.796126484870911,-0.427413046360016,-1.24577644467354,0.811555981636047,-0.473440334200859,-1.12994013726711,0.633494786918163,-0.518867969512939,-1.0276238694787,0.733063936233521,-0.591131970286369,-1.083640858531,0.608606457710266,-0.595715165138245,-1.1934007704258,0.704117029905319,-0.544612228870392,-1.28370890021324,0.731822818517685,-0.617273405194283,-1.30402544140816,0.597992643713951,-0.435978561639786,-1.28991916775703,0.962138175964355,-0.754868886433542,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.26358872652054,0.427950076758862,-0.467314928770065,-1.37938776612282,0.282628297805786,-0.679843127727509,-1.48804664611816,0.190823644399643,-0.792410573922098,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.48965513706207,0.0334662199020386,-0.589713171124458,-1.33248683810234,0.0466544032096863,-0.54339998960495,-1.07836408913136,0.182899281382561,-0.583237111568451,-0.924508638679981,0.196861028671265,-0.792132377624512,-0.850741572678089,0.062741756439209,-0.766009703278542,-0.708259925246239,-0.185394264757633,-0.529456347227097,-0.702009484171867,0.0184760093688965,-0.715435385704041,-0.987715497612953, +0.0230474472045898,-0.547495722770691,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-1.56629252433777,0.0769224967807531,-0.429919093847275,-1.18814218044281,-0.427613288164139,-0.362948715686798,-0.814833395183086,-0.439229294657707,-0.443290770053864,-0.802061259746552,-0.149944689124823,-0.614926546812057,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.07491481304169,0.272788550704718,-0.0713945627212524,-1.16071736812592,0.00722691416740417,0.014716625213623,-0.906924575567245,-0.118803948163986,0.170659363269806,-0.911851733922958,-0.0538666248321533,0.138095080852509,-0.790046483278275,0.0368209502776153,0.0788846611976624,-0.989882797002792,0.363411672413349,-0.0377369523048401,-0.963445544242859,0.356567390263081,0.0227663516998291,-0.753280252218246,0.329574778676033,0.179901480674744,-1.35048490762711,0.246328726410866,-0.246740937232971,-1.30680626630783,0.234360247850418,-0.263952374458313,-0.736232995986938,0.0734355859458447,0.0517024397850037,-0.560464382171631,-0.0726121766492724,0.00371825695037842,-0.437435761094093,0.0764586329460144,-0.0378889441490173,-0.857035826891661,0.195206843316555,-0.404452502727509,-0.799685206264257,0.333739325404167,-0.36041796207428,-0.371713880449533,0.440628558397293,-0.019641637802124,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.38669329881668,0.0758300721645355,-0.430976241827011,-1.39254212379456,-0.0910450965166092,-0.447555273771286,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.983202524483204,-0.0687288045883179,-0.580734640359879,-0.91702151671052,-0.264197506010532,-0.609568864107132,-0.880775768309832,-0.53539153188467,-0.670331418514252,-1.01329702138901,-0.602600261569023,-0.628627896308899,-1.16538774967194,-0.120572254061699,-0.405127823352814,-1.29504650831223,-0.125624287873507,-0.300949156284332,-1.50401037931442,-0.168608497828245,-0.334645301103592, +-1.54685509204865,-0.0508545488119125,-0.294741600751877,-1.50013041496277,0.212949112057686,-0.237735629081726,-1.53359270095825,0.0371086373925209,-0.295024245977402,-1.51474577188492,0.038497194647789,-0.348457127809525,-1.46594172716141,0.16568510979414,-0.365607351064682,-1.42856001853943,-0.0538740269839764,-0.226697206497192,-1.16718029975891,0.261386036872864,-0.0500392913818359,-0.92300820350647,0.268931921571493,0.0760356187820435,-1.28727158904076,0.0903447021264583,-0.253074824810028,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.36329965479672,-0.0556701868772507,-0.0486111640930176,-0.942696213722229,-0.17416162788868,-0.301199734210968,-1.175064265728,0.0519946217536926,-0.216746747493744,-0.946011066436768,0.216242831200361,0.0946776270866394,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-0.792198717594147,0.629923850297928,0.0722466111183167,-1.33090138435364,0.439893439412117,-0.153691947460175,-1.54950654506683,-0.0846198964864016,-0.179232716560364,-1.56262999773026,-0.61203345656395,-0.553259268403053,-1.4588634967804,-0.558050572872162,-0.665117368102074,-1.2647331058979,-0.561610296368599,-0.67792484164238,-1.15600806474686,-0.679048359394073,-0.674144491553307,-1.2700135409832,-0.377608016133308,-0.739995747804642,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.42315661907196,-0.299161124974489,-0.56412473320961,-1.57252579927444,-0.236631877720356,-0.51525454223156,-1.71899092197418,0.318695582449436,-0.673587622120976,-1.8145609498024,0.0806653592735529,-0.668950088322163,-1.85890316963196,-0.00242913886904716,-0.267367884516716,-1.82720333337784,0.0696339458227158,-0.161362171173096,-1.85339421033859,-0.181563835591078,-0.223822429776192,-1.86806565523148,-0.157209141179919,-0.552420981228352,-1.8118087053299,-0.320481657981873,-0.686922043561935,-1.73713213205338,-0.308576427400112,-0.486310943961143, +-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.40001231431961,0.193549625575542,-0.495108276605606,-1.352593511343,0.503533247858286,-0.601754084229469,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.24766403436661,0.110081404447556,-0.511741161346436,-1.46390980482101,0.0612188726663589,-0.572528064250946,-1.63624280691147,0.112397015094757,-0.955967962741852,-1.7303494811058,0.144955389201641,-0.532444640994072,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.8176656961441,-0.107864551246166,-0.492456465959549,-1.73239117860794,0.130295947194099,-0.848558962345123,-1.73907613754272,-0.0421562865376472,-0.60315266251564,-1.69027239084244,-0.0773583222180605,-0.717350061284378,-1.62390279769897,0.136778514832258,-0.830081455409527,-1.54308259487152,0.253512460622005,-0.715614840388298,-1.37145832180977,0.444346299394965,-0.821768965572119,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.14431102573872,0.0864460170269012,-0.614551603794098,-1.00444512069225,0.205668210983276,-0.676662027835846,-1.0916191637516,0.124212741851807,-0.871697630733252,-1.36270073056221,-0.132568404078484,-0.864484490826726,-1.48064452409744,-0.0376247614622116,-0.533245086669922,-1.50268965959549,0.162546433508396,-0.369084656238556,-1.3815313577652,0.562386333942413,-0.392433553934097,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,-1.14590509235859,0.0271169692277908,-0.646482318639755,-1.28945660591125,-0.216241840273142,-0.597249716520309,-1.15911689400673,-0.291417423635721,-0.124064803123474,-1.32676148414612,-0.0748757421970367,-0.0853093266487122,-1.47561591863632,-0.239779729396105,0.137846410274506,-1.86129081249237,-0.0964114926755428,-0.0805594027042389,-1.84173309803009,-0.339781485497952,-0.00807809829711914,-1.54274487495422,-0.346800290048122,0.433000952005386, +-1.87718790769577,-0.391194120049477,-0.0541019886732101,-1.92978256940842,-0.136557079851627,-0.0364963263273239,0.0516217947006226,-0.206589981913567,-0.406470008194447,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,0.385558366775513,0.744765520095825,0.183386564254761,0.596324771642685,0.972755819559097,0.230248600244522,0.88828032463789,0.942593099549413,0.275120332837105,1.12593461573124,0.955337594728917,0.35361609607935,1.33340260386467,0.806991837918758,0.321982748806477,1.44407996535301,0.785750113427639,0.100705854594707,1.01048183441162,-0.0703772306442261,0.0716839544475079,1.1248545050621,-0.184135615825653,-0.0317361652851105,1.09020203351974,-0.299506068229675,-0.121575847268105,0.993004560470581,-0.179572880268097,-0.0506054162979126,-0.0761492252349854,-1.54209727048874,0.486717786639929,-0.444174110889435,-1.52680599689484,0.167733874171972,0.0353823900222778,-1.688849568367,0.529779655858874,0.361321434378624,-1.76565766334534,0.330692052841187,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.02839854359627,-1.66638123989105,0.144233509898186,1.21599930524826,-1.54792147874832,0.103181481361389,1.08387961983681,-1.63126027584076,0.0903707146644592,1.13599336147308,-1.58367240428925,0.00822634994983673,1.45670014619827,-0.404784709215164,-0.154245809651911,0.145425140857697,0.00856729596853256,-0.920645862817764,0.856311433017254,0.875273853540421,-0.391063332557678,1.08101157844067,0.758379563689232,-0.418496578931808,1.17356112599373,0.96101912856102,-0.713017195463181,1.21391540765762,0.855426385998726,-0.753934532403946,0.101619184017181,-0.218093574047089,-0.982465595006943 + } + } + Geometry: 2807663839824, "Geometry::Eye_Right_squeeze", "Shape" { + Version: 100 + Indexes: *411 { + a: 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,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,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6140,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6161,6162,6163,6345,6347,6351,6353,6355,6357,6359,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8761,8762,8763,8765,8767 + } + Vertices: *1233 { + a: 0.00286102294921875,-0.20377904176712,0.0404777526855469,0.00299215316772461,-0.210259735584259,0.0236854553222656,0.00019073486328125,-0.212266504764557,0.0145111083984375,-0.00428104400634766,-0.167659163475037,-0.0250368118286133,-0.0256428718566895,-0.112285375595093,-0.0291223526000977,-0.00609207153320313,-0.0681486129760742,-0.0581560134887695,0.00104188919067383,-0.0408704280853271,-0.0860557556152344,0.000921964645385742,-0.02419114112854,-0.0947198867797852,0.000708818435668945,-0.0122897624969482,-0.0982255935668945,0.00107669830322266,-0.0465710163116455,-0.0923843383789063,0.00185084342956543,-0.080646276473999,-0.0860748291015625,0.00186395645141602,-0.135030090808868,-0.066777229309082,0.00123929977416992,-0.104504257440567,-0.0512819290161133,0.00108063220977783,-0.0962211787700653,-0.0454998016357422,0.000594258308410645,-0.0428833067417145,-0.0789728164672852,0.000262022018432617,-0.0108810663223267,-0.08465576171875,6.93798065185547e-05,0.0190180540084839,-0.105713844299316,-0.000316858291625977,0.0652027726173401,-0.129213333129883,-0.00119686126708984,0.135568678379059,-0.14224910736084,-0.00148749351501465,0.188489079475403,-0.146014213562012,-0.00117254257202148,0.17205023765564,-0.138434410095215,-0.000494003295898438,0.120852589607239,-0.116884231567383,3.38554382324219e-05,0.0743827819824219,-0.0958766937255859,0.000432014465332031,0.0326594114303589,-0.0647602081298828,0.00124788284301758,-0.0445285439491272,-0.0278530120849609,0.000917434692382813,-0.0291134715080261,0.0161533355712891,0.000696659088134766,-0.0176739096641541,0.0329856872558594,0.00113582611083984,-0.0580503344535828,0.0501375198364258,0.00200414657592773,-0.134766697883606,0.0489692687988281,0.00214433670043945,-0.139021337032318,0.0283699035644531,0.00203037261962891,-0.133288681507111,0.0165042877197266,0.00319290161132813,-0.0820963382720947,-0.0228071212768555,0.0017695426940918,-0.0401890277862549,-0.0577793121337891,0.000646114349365234,0.0088423490524292,-0.0742340087890625,6.96182250976563e-05, +0.0421328544616699,-0.0979108810424805,-4.62532043457031e-05,0.0781317949295044,-0.115104675292969,-0.000867366790771484,0.0996009111404419,-0.118234634399414,-0.000865936279296875,0.0556321144104004,-0.110071182250977,0.000105619430541992,-0.00962555408477783,-0.104707717895508,0.000849246978759766,-0.0525725483894348,-0.0835447311401367,0.000584602355957031,-0.0457067787647247,-0.0649280548095703,0.000786066055297852,-0.0661399662494659,-0.060664176940918,0.000177860260009766,-0.0722299218177795,-0.0401592254638672,0.00487303733825684,-0.0354873090982437,-0.0317668914794922,0.0028231143951416,0.0102202892303467,-0.0595331192016602,-2.38418579101563e-05,0.0388921573758125,-0.0839643478393555,-0.000368595123291016,0.0765859261155128,-0.0929927825927734,1.1444091796875e-05,0.0545099601149559,-0.0835485458374023,0.000807285308837891,-0.0117491185665131,-0.0552902221679688,0.00137233734130859,-0.0611621886491776,-0.0361223220825195,0.0019683837890625,-0.119148403406143,-0.00442600250244141,0.00223302841186523,-0.147785276174545,0.0192670822143555,0.00253057479858398,-0.175825715065002,0.0341386795043945,0.00033271312713623,-0.0276450514793396,-0.0641469955444336,-0.000113725662231445,0.0109503567218781,-0.0645456314086914,-0.000387191772460938,0.0413159504532814,-0.0703182220458984,-0.00218033790588379,0.215430960059166,0.00156688690185547,-0.00231313705444336,0.225456327199936,-0.095179557800293,-0.00265192985534668,0.270286560058594,-0.108829498291016,-0.00235271453857422,0.25683856010437,-0.0975246429443359,-0.00213098526000977,0.235725596547127,-0.0668649673461914,-0.00176048278808594,0.200132787227631,-0.0399637222290039,-0.00117588043212891,0.146041959524155,-0.0111618041992188,-0.000413894653320313,0.0761356800794601,0.014338493347168,0.000294685363769531,0.0139241516590118,0.0293617248535156,0.00118446350097656,-0.0616727769374847,0.0362071990966797,0.00223875045776367,-0.149097055196762,0.035426139831543,0.00157594680786133,-0.0933356881141663,0.0286989212036133,0.0007781982421875,-0.024353101849556,0.0149354934692383, +0.000112056732177734,0.0338084474205971,-0.00301170349121094,-0.000371932983398438,0.0833520963788033,-0.0365972518920898,-0.000573635101318359,0.105000346899033,-0.061518669128418,-0.00102806091308594,0.145772606134415,-0.0931005477905273,-0.00139451026916504,0.165484726428986,-0.103137969970703,-0.00104665756225586,0.120713911950588,-0.0910663604736328,-0.000639438629150391,0.0799714103341103,-0.0809555053710938,-0.000206708908081055,0.0338632762432098,-0.0690288543701172,0.000460147857666016,-0.032802015542984,-0.0575323104858398,0.000559210777282715,-0.0504498183727264,-0.055445671081543,0.00286102294921875,-0.20377904176712,0.0404777526855469,0.00299215316772461,-0.210259735584259,0.0236854553222656,0.00019073486328125,-0.212266504764557,0.0145111083984375,-0.00428104400634766,-0.167659163475037,-0.0250368118286133,-0.0256428718566895,-0.112285375595093,-0.0291223526000977,-0.00609207153320313,-0.0681486129760742,-0.0581560134887695,0.00104188919067383,-0.0408704280853271,-0.0860557556152344,0.000921964645385742,-0.02419114112854,-0.0947198867797852,0.000708818435668945,-0.0122897624969482,-0.0982255935668945,0.00107669830322266,-0.0465710163116455,-0.0923843383789063,0.00185084342956543,-0.080646276473999,-0.0860748291015625,0.00186395645141602,-0.135030090808868,-0.066777229309082,0.00123929977416992,-0.104504257440567,-0.0512819290161133,0.00108063220977783,-0.0962211787700653,-0.0454998016357422,0.000490307807922363,-0.0342818796634674,-0.0786285400390625,-0.000466108322143555,0.0379849076271057,-0.0928659439086914,-0.00111603736877441,0.112947940826416,-0.108323097229004,-0.00208544731140137,0.204307913780212,-0.123449325561523,-0.00237607955932617,0.250284790992737,-0.140501022338867,-0.00279974937438965,0.302086234092712,-0.152440071105957,-0.00292253494262695,0.31780332326889,-0.142016410827637,-0.00215291976928711,0.251471877098083,-0.109155654907227,-0.00157356262207031,0.203578591346741,-0.0923309326171875,-0.00131082534790039,0.173610091209412,-0.0556716918945313,-0.000587940216064453,0.108357191085815, +-0.0269956588745117,-0.000143051147460938,0.0639296770095825,0.00140571594238281,-0.000113010406494141,0.0608757436275482,0.00918483734130859,0.000573635101318359,0.0056908130645752,0.0217456817626953,0.0013270378112793,-0.0763925611972809,0.0481910705566406,0.00103902816772461,-0.0487662255764008,0.0299835205078125,0.00133943557739258,-0.0709472894668579,0.0149021148681641,0.000273227691650391,0.0170870423316956,-0.01690673828125,-0.000488758087158203,0.0652350783348083,-0.0588970184326172,-0.000270843505859375,0.0922058820724487,-0.0780668258666992,-0.00104045867919922,0.140550494194031,-0.10511589050293,-0.00135231018066406,0.177872061729431,-0.119175910949707,-0.00171160697937012,0.162193775177002,-0.123085021972656,-0.00209689140319824,0.133691012859344,-0.116239547729492,-0.000886201858520508,0.0843643546104431,-0.107098579406738,-8.67843627929688e-05,0.0203579068183899,-0.0877542495727539,0.000604629516601563,-0.0588826537132263,-0.0671005249023438,0.000761747360229492,-0.0739213824272156,-0.0606584548950195,0.000177860260009766,-0.0722299218177795,-0.0401592254638672,0.00487303733825684,-0.0354873090982437,-0.0317668914794922,0.0028231143951416,0.0102202892303467,-0.0595331192016602,-2.38418579101563e-05,0.0388921573758125,-0.0839643478393555,-0.000368595123291016,0.0765859261155128,-0.0929927825927734,1.1444091796875e-05,0.0545099601149559,-0.0835485458374023,0.000807285308837891,-0.0117491185665131,-0.0552902221679688,0.00137233734130859,-0.0611621886491776,-0.0361223220825195,0.0019683837890625,-0.119148403406143,-0.00442600250244141,0.00223302841186523,-0.147785276174545,0.0192670822143555,0.00253057479858398,-0.175825715065002,0.0341386795043945,0.000274896621704102,-0.0223970711231232,-0.0701169967651367,-0.000161170959472656,0.0166914612054825,-0.070073127746582,-0.000427007675170898,0.0456086471676826,-0.0766277313232422,-0.00166821479797363,0.162214398384094,-0.0911626815795898,-0.00191259384155273,0.197150439023972,-0.105912208557129,-0.0021967887878418,0.238614082336426,-0.120807647705078,-0.00191831588745117, +0.227655306458473,-0.109341621398926,-0.00181245803833008,0.216443285346031,-0.078526496887207,-0.00167083740234375,0.19936928153038,-0.0506124496459961,-0.00131368637084961,0.16362763941288,-0.020472526550293,-0.000823974609375,0.115170069038868,0.00701141357421875,-0.000257015228271484,0.0634318590164185,0.0246295928955078,0.000221729278564453,0.0192385613918304,0.0354528427124023,0.00143718719482422,-0.0825520157814026,0.0363941192626953,0.000844478607177734,-0.0310282111167908,0.0272378921508789,0.00023651123046875,0.0235298573970795,0.0112085342407227,-0.000200271606445313,0.0638344883918762,-0.00902462005615234,-0.000438690185546875,0.0937054678797722,-0.0440864562988281,-0.000406265258789063,0.0963839590549469,-0.0700273513793945,-0.000692844390869141,0.123100593686104,-0.102171897888184,-0.0010378360748291,0.140414282679558,-0.112147331237793,-0.000670433044433594,0.0934210121631622,-0.0997314453125,-0.000386238098144531,0.0670327320694923,-0.0895252227783203,-0.000115633010864258,0.0357663109898567,-0.0747308731079102,0.000315666198730469,-0.0226834714412689,-0.0620212554931641,0.000529885292053223,-0.0465756952762604,-0.060511589050293,0.00147318840026855,-0.130485117435455,-0.0367870330810547,0.00141286849975586,-0.115769684314728,-0.055720329284668,0.00115561485290527,-0.0587246417999268,-0.0745067596435547,0.000806093215942383,-0.0244141817092896,-0.0786066055297852,0.00054621696472168,-0.00534546375274658,-0.0815935134887695,0.000627517700195313,-0.0122730731964111,-0.0797567367553711,0.000241756439208984,-0.0479729175567627,-0.0564870834350586,-0.00221824645996094,-0.0794105529785156,-0.0406284332275391,-0.00025177001953125,-0.129735350608826,-0.0148887634277344,0.00240755081176758,-0.198403775691986,0.0142850875854492,0.00308561325073242,-0.220526337623596,0.0318536758422852,0.000776767730712891,-0.0297248363494873,-0.0715312957763672,0.00304555892944336,-0.0881166458129883,-0.0447368621826172,0.00106382369995117,-0.0516267567873001,-0.0680837631225586,0.00159931182861328,-0.113758742809296,-0.0347480773925781, +0.00162911415100098,-0.138876140117645,-0.0412607192993164,0.000578403472900391,-0.0193333327770233,-0.0729808807373047,0.000477313995361328,0.00281193852424622,-0.0801124572753906,0.000889778137207031,-0.0222322642803192,-0.0689487457275391,0.00146293640136719,-0.0718749910593033,-0.0409917831420898,0.00204849243164063,-0.12301641702652,-0.0232992172241211,0.00261783599853516,-0.175588667392731,0.000971794128417969,0.00278663635253906,-0.191632509231567,0.0134410858154297,0.00286006927490234,-0.200675666332245,0.0249128341674805,0.00302028656005859,-0.212208807468414,0.0209140777587891,-0.144130378961563,-0.350588798522949,-0.108823776245117,-0.142196327447891,-0.0557607412338257,0,-0.208171129226685,-0.44498884677887,-0.157761573791504,-0.158511459827423,-0.708098888397217,-0.227814674377441,-0.0623327493667603,-0.716661691665649,-0.119623184204102,-0.158004283905029,-0.795922994613647,-0.213644981384277,-0.184416055679321,-0.709467649459839,-0.0463142395019531,-0.198340177536011,-0.775245189666748,-0.175933837890625,-0.0704524517059326,-0.920334339141846,0.0787591934204102,-0.0314090251922607,-0.919525384902954,-0.0177745819091797,0.0777192115783691,-1.01470279693604,0.20340633392334,0.0631051063537598,-1.07269167900085,0.227492332458496,0.237175464630127,-1.0917159318924,0.473533630371094,0.235237121582031,-1.01119065284729,0.42475414276123,0.199289321899414,-1.02208209037781,0.603397369384766,0.132351398468018,-0.942432165145874,0.85004997253418,0.272266864776611,-0.432156085968018,1.07955694198608,0.203939914703369,-0.444496154785156,0.970632553100586,0.686311721801758,-0.0274044275283813,0.995948791503906,0.591937065124512,-0.0298993587493896,1.02861928939819,0.473684787750244,0.6211097240448,0.779248714447021,0.110342979431152,0.481724858283997,0.787898063659668,0.37762451171875,0.902147114276886,0.756945610046387,0.083256721496582,0.648464024066925,0.634397983551025,0.165984153747559,0.927796125411987,0.381620407104492,-0.0269308090209961,0.654579281806946,0.424444198608398,0.12627387046814,0.757961452007294, +0.0951871871948242,0.0365395545959473,0.418406963348389,0.203545570373535,-0.0353436470031738,0.400692641735077,-0.123965263366699,0,0.249039351940155,-0.0338373184204102,0.0866632461547852,-0.673081398010254,0.868857860565186,0.182016372680664,-0.670921921730042,0.770665168762207,0.415093898773193,-0.322959542274475,1.12902736663818,0.489314556121826,-0.263749778270721,1.11561346054077,0.560000896453857,0.366446055471897,0.949146270751953,0.435007572174072,0.41328159160912,0.890422344207764,0.0314865112304688,0.680991291999817,0.502910614013672,0.284119606018066,0.945544302463531,0.58000373840332,-0.0363144874572754,0.607114553451538,0.32652473449707,0.0912294387817383,0.860270798206329,0.199058532714844,0.0781440734863281,0.200825810432434,0.0301017761230469,0.021873950958252,0.550387024879456,-0.0300531387329102,-0.100814402103424,-0.0674614906311035,0,-0.199730157852173,-0.7635498046875,-0.203272819519043,-0.156222343444824,-0.728736758232117,-0.0757036209106445,-0.00955677032470703,0.271506071090698,0.118659973144531,-0.0389881134033203,0.367816209793091,0.240447998046875,-0.0802750587463379,0.366623401641846,0.310160636901855,-0.0644207000732422,0.361501216888428,0.353473663330078,-0.0631422996520996,0.329118728637695,0.419689178466797,-0.0462298393249512,0.321691274642944,0.594432830810547,0.228595733642578,0.246746063232422,0.629973411560059,0.00186395645141602,-0.135030150413513,-0.066777229309082,0.00185060501098633,-0.0806463956832886,-0.0860748291015625,0.00107669830322266,-0.0465710163116455,-0.0923852920532227,0.000708818435668945,-0.0122897624969482,-0.0982255935668945,0.000918865203857422,-0.0241646766662598,-0.0946884155273438,0.00104236602783203,-0.0408703088760376,-0.0860557556152344,-0.00609207153320313,-0.0681474208831787,-0.0581569671630859,-0.0256423950195313,-0.112284541130066,-0.0291233062744141,-0.00428056716918945,-0.167658448219299,-0.0250368118286133,0.000191211700439453,-0.212266266345978,0.0145111083984375,0.00299167633056641,-0.210259258747101,0.0236854553222656,0.00286102294921875, +-0.203778326511383,0.0404777526855469,0.00253057479858398,-0.175824999809265,0.0341386795043945,0.00223302841186523,-0.147784531116486,0.0192670822143555,0.0019683837890625,-0.119147747755051,-0.00442600250244141,0.00137233734130859,-0.0611613988876343,-0.0361223220825195,0.000807285308837891,-0.0117483288049698,-0.0552902221679688,1.1444091796875e-05,0.0545109547674656,-0.0835475921630859,-0.000369787216186523,0.0766268214210868,-0.0929651260375977,-2.38418579101563e-05,0.0388932377099991,-0.0839633941650391,0.0028233528137207,0.0102211385965347,-0.0595331192016602,0.00487327575683594,-0.0354868024587631,-0.0317668914794922,0.000177621841430664,-0.0722295045852661,-0.0401582717895508,0.00108063220977783,-0.0962206423282623,-0.0454998016357422,0.0012660026550293,-0.10684996843338,-0.0510005950927734,0.000667452812194824,-0.056363433599472,-0.054570198059082,-0.000716805458068848,-0.00246372818946838,-0.0418291091918945,0.000238656997680664,0.0709294453263283,0.0155534744262695,-0.00173521041870117,0.149340802803636,-0.0331621170043945,-0.00241851806640625,0.209076553583145,-0.0327291488647461,-0.00247693061828613,0.213649079203606,-0.036870002746582,-0.00215291976928711,0.198420986533165,-0.0290422439575195,-0.0015101432800293,0.179737776517868,-0.0237874984741211,-0.00121116638183594,0.141416192054749,-0.0153560638427734,-0.000304698944091797,0.0519839227199554,0.00530433654785156,0.00110101699829102,-0.0525684058666229,0.0289573669433594,0.00221920013427734,-0.146055847406387,0.0454540252685547,0.00263690948486328,-0.142357051372528,0.0334157943725586,-0.00977087020874023,-0.188816845417023,0.0453968048095703,-0.0397896766662598,-0.237166821956635,0.0291366577148438,0.000343799591064453,-0.217133462429047,-0.0334854125976563,-0.0592732429504395,-0.162153601646423,0.0121603012084961,-0.0475835800170898,-0.134692311286926,0.0149974822998047,-0.0510826110839844,-0.100868105888367,0.00743770599365234,0.000583648681640625,-0.0862799882888794,0.053339958190918,0.0013575553894043,-0.0906038284301758,0.0584173202514648, +0.00420570373535156,-0.117558479309082,0.0415277481079102,0.00397729873657227,-0.144026100635529,0.018549919128418,0.00145220756530762,-0.150547862052917,-0.0103158950805664,0.00139057636260986,-0.0957322120666504,-0.0537624359130859,-0.0376648902893066,-0.000407040119171143,-6.67572021484375e-06,-0.0817152261734009,-0.188802480697632,-0.00482177734375,-0.10766863822937,-0.258968949317932,0.0669679641723633,-0.0774309635162354,-0.307624578475952,0.120946884155273,-0.0754022598266602,-0.380276083946228,0.169735908508301,-0.0554866790771484,-0.387714147567749,0.0772476196289063,-0.069176197052002,-0.346333265304565,0.0658845901489258,0.0531120300292969,-0.304465293884277,0.146931648254395,0.0116958618164063,-0.307540059089661,0.106858253479004,-0.0425205230712891,-0.212070226669312,0.0718526840209961,-0.0860676765441895,-0.170181274414063,0.0165519714355469,-0.00951194763183594,-0.140897870063782,-0.0507793426513672,0.0992903709411621,-0.0630801916122437,-0.126720428466797,0.0710229873657227,-0.0138210654258728,0.0750389099121094,0.0741367340087891,0.116271212697029,0.219128608703613,0.102123260498047,0.271922416985035,0.234209060668945,0.0188732147216797,0.395222276449203,0.212471008300781,0.00284862518310547,0.40361499786377,0.171840667724609,-0.0158376693725586,0.334211468696594,0.183747291564941,-0.0252201557159424,0.372402787208557,0.138893127441406,-0.0740115642547607,0.3242506980896,0.126851081848145,-0.00331902503967285,0.277940630912781,0.0471973419189453,-0.00296282768249512,0.182815656065941,0.0549173355102539,-0.0533115863800049,0.0574151873588562,-0.0144119262695313,-0.0375640392303467,-0.00513893365859985,-0.0142478942871094,-0.317112445831299,-0.813110113143921,-0.32652473449707,-0.375754714012146,-0.703682243824005,-0.277302742004395,-0.489056706428528,-0.502800583839417,-0.153005599975586,-0.364308714866638,-0.120689868927002,0,-0.080317497253418,0,0,-0.0818809270858765,0.0635456293821335,0,-0.0690330266952515,0.414361506700516,-0.165244102478027,-0.0517547130584717,0.559303760528564,-0.176733016967773, +0.0326416492462158,0.672659635543823,-0.132767677307129,0.0885100364685059,0.682797849178314,0.00822639465332031,0.0733418464660645,0.710869550704956,0.0347976684570313,0.215682983398438,0.756072342395782,0.145392417907715,0.398495197296143,0.718379855155945,0.342863082885742,0.459701538085938,0.61292290687561,0.363532543182373,0.524814605712891,0.450003206729889,0.438201904296875,0.582118034362793,0.27145066857338,0.557196617126465,0.586634159088135,0.0212851166725159,0.582931995391846,0.41298770904541,-0.190650820732117,0.686676979064941,0.304150104522705,-0.381133139133453,0.708871841430664,0.304475784301758,-0.674473285675049,0.543445587158203,0.24956750869751,-1.00929868221283,0.460567474365234,0.276658535003662,-1.17838072776794,0.363765716552734,0.0483541488647461,-1.1635023355484,0.270567893981934,-0.095689058303833,-1.0662636756897,0.0925083160400391,-0.25893759727478,-0.984093904495239,-0.134721755981445,-0.298631429672241,-0.946122169494629,0.23157787322998,-0.137356519699097,-1.02607607841492,0.290217399597168,-0.00890016555786133,-0.984704732894897,0.337482452392578,0.109194278717041,-0.915401220321655,0.279370307922363,0.0776505470275879,-0.776934385299683,0.26833438873291,0.0553760528564453,-0.504206657409668,0.257953643798828,0.153925895690918,-0.246819734573364,0.211785316467285,0.149906158447266,-0.13207882642746,0.150218963623047,0.3155198097229,-0.0100321173667908,0.080258846282959,0.261213302612305,0.139643788337708,0.226344585418701,0.267131805419922,0.323273796588182,0.363592624664307,0.262065410614014,0.502895951271057,0.368078231811523,0.267836570739746,0.619417190551758,0.389430999755859,0.0217571258544922,0.548386752605438,0.249654769897461,-0.00348043441772461,0.510543763637543,0.22429084777832,0.0260305404663086,0.493815809488297,0.151609420776367,0.00434041023254395,0.523340821266174,-0.00800228118896484,-0.0163586139678955,0.460755288600922,-0.0139265060424805,-0.0770086050033569,0.266324430704117,0.0189456939697266,-0.0678503513336182,0.117022693157196,0,-0.0881632566452026,0,0,-0.269426584243774, +-0.0844272971153259,0,-0.351263403892517,-0.445469617843628,-0.0812835693359375,-0.412430882453918,-0.622620284557343,-0.011012077331543,-0.363645315170288,-0.761506199836731,0.0880203247070313,-0.0137416124343872,-0.101747274398804,0,0.0034325122833252,-0.253147125244141,0.02838134765625,0.0266480445861816,-0.286109924316406,0.0775690078735352,0.0401268005371094,-0.302005767822266,0.125029563903809,0.061455249786377,-0.298107147216797,0.15529203414917,0.0772528648376465,-0.233085632324219,0.27659273147583,0.16134786605835,-0.277328491210938,0.611410140991211,0.188381195068359,-0.178329467773438,0.677287101745605,0.196249485015869,-0.127300262451172,0.655929088592529,0.298870086669922,0.0207136869430542,0.609638690948486,0.00166440010070801,-0.114236921072006,-0.0187788009643555,0.00190114974975586,-0.133217334747314,-0.0240631103515625,0.00148105621337891,-0.103152990341187,-0.0318975448608398,0.000875711441040039,-0.0532523989677429,-0.0573759078979492,0.000596284866333008,-0.0170965194702148,-0.0603981018066406,0.000378847122192383,-0.00135385990142822,-0.0513181686401367,0.000590324401855469,-0.00602579116821289,-0.0484523773193359,0.000969886779785156,-0.0220435857772827,-0.033660888671875,0.000946044921875,-0.0483163595199585,-0.0331182479858398,0.000468730926513672,-0.118765115737915,-0.0166940689086914,0.000940322875976563,-0.124072372913361,0.00554084777832031,0.00284576416015625,-0.184698939323425,0.0207204818725586,0.00301504135131836,-0.19495701789856,0.0297031402587891,8.24928283691406e-05,-0.106680572032928,-0.0329551696777344,0.00108599662780762,-0.115105032920837,-0.0233983993530273,-0.000810146331787109,-0.0708597600460052,-0.0542325973510742,0.000578165054321289,-0.0283589959144592,-0.071136474609375,0.000561714172363281,-0.00569820404052734,-0.0773811340332031,0.00109672546386719,-0.0367720127105713,-0.0659894943237305,0.00158500671386719,-0.0818553268909454,-0.0398082733154297,0.00211620330810547,-0.127741128206253,-0.0229215621948242,0.00262069702148438,-0.167717039585114,-3.14712524414063e-05, +0.00291299819946289,-0.183605074882507,0.0210466384887695,0.00298023223876953,-0.197807192802429,0.0346212387084961,0.00305795669555664,-0.180809795856476,0.0366973876953125,8.96453857421875e-05,-0.00369387865066528,-4.76837158203125e-06,0,-5.35845756530762e-05,-7.62939453125e-06,0,-4.17232513427734e-05,-9.5367431640625e-06,-5.7220458984375e-06,0.000255823135375977,0.000191688537597656,-2.98023223876953e-05,1.1444091796875e-05,-1.71661376953125e-05,-4.83989715576172e-05,-0.000208854675292969,0.0107479095458984,-3.79085540771484e-05,-0.000138759613037109,0.0074462890625,-0.000208854675292969,-2.288818359375e-05,0.000807762145996094,-0.000132083892822266,-0.00573110580444336,0.0122547149658203,-0.000106334686279297,-0.00455629825592041,0.0145206451416016,-5.7220458984375e-06,1.37090682983398e-05,1.52587890625e-05,0,-2.63601541519165e-05,-1.9073486328125e-06,9.96589660644531e-05,-0.00423955917358398,0.000155448913574219,6.866455078125e-05,-0.00031508132815361,-0.000194549560546875,-2.14576721191406e-06,5.15952706336975e-06,1.52587890625e-05,1.43051147460938e-06,2.25752592086792e-06,0 + } + Normals: *1233 { + a: 0.748467624187469,-0.171353340148926,-0.731088377535343,0.709871180355549,0.162239789962769,-0.328357599675655,1.3614776134491,-0.0720629096031189,-0.731144718825817,1.31699562072754,-0.193794816732407,-1.12042018771172,1.42309242486954,-0.467642910778522,-1.14135187864304,1.28357845544815,-0.53696046769619,-1.21157044172287,0.83007287979126,-0.339382082223892,-1.45046406984329,0.625854231417179,-0.137628078460693,-1.3830474615097,0.767585948109627,-0.468991324305534,-1.2218405008316,0.479158967733383,-0.53914899379015,-1.37618374824524,0.0410500168800354,-0.0949677228927612,-1.22073435783386,-0.124360501766205,0.180634468793869,-0.698714762926102,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,0.0443829894065857,-0.828761667013168,-0.600268512964249,-0.0483405590057373,-0.72516830265522,-0.783850222826004,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.148759245872498,-0.633256085216999,-0.979963928461075,0.436316877603531,-1.06725718080997,-0.971259981393814,0.731412559747696,-0.935251094400883,-0.929496020078659,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.11475163698196,-1.55463922023773,-0.532721102237701,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,1.06081318855286,-1.5966609120369,-0.129887118935585,1.10990577936172,-1.58567380905151,-0.114106029272079,1.12817811965942,-1.57741242647171,-0.122836217284203,1.11132651567459,-1.56799739599228,-0.132263526320457,0.990721821784973,-1.71219205856323,-0.0226743593811989,1.13014087080956,-1.63668167591095,-0.130451615899801,1.53132396936417,-1.10109636187553,-0.0638763904571533,1.13874542713165,-1.49950188398361,-0.638164967298508,0.789971172809601,-1.67169266939163,-0.56653693690896,0.889154158532619,-1.01006615161896,-0.0967767238616943,0.00948283821344376,-1.7460572719574,-0.780995815992355, +0.00721964240074158,-1.70924866199493,-0.542179560288787,-0.134070038795471,-1.59096431732178,-0.577957272529602,-0.435612916946411,-1.44407731294632,-0.515999183058739,-0.728567808866501,-1.44689455628395,-0.192887205630541,-0.689030796289444,-1.53497439622879,-0.274521194398403,0.865835547447205,-1.64165377616882,-0.649537488818169,0.492999956011772,-1.6540659070015,-0.770425193011761,0.0353803187608719,-1.47229209542274,-1.01546385884285,0.0712991058826447,-1.40509867668152,-0.890668410807848,0.0167191339455712,-1.45035907626152,-0.811803080141544,0.190254575827794,-1.49333116412163,-0.831907290965319,0.665620297193527,-1.41713359951973,-0.798303281888366,0.554056942462921,-1.44373741745949,-0.93021747469902,0.417870632627682,-1.49124047160149,-0.747361738234758,0.342369192279875,-1.45511212944984,-0.514218389987946,0.195500948466361,-1.39781981706619,-0.594249367713928,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.0577439665794373,-1.22365495562553,-1.11761349439621,-0.465524926781654,-1.10620513558388,-0.95232573337853,-0.192408733746333,-1.11395723372698,-0.95786764100194,-0.151815869493021,-1.16323705017567,-0.89501116424799,-0.136382515338482,-1.22652053833008,-0.954716114327312,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.270880788564682,-1.33722725510597,-0.992667615413666,0.319086387753487,-1.36241346597672,-0.79197016172111,0.171762824058533,-1.33218666911125,-0.87229210883379,0.167595505714417,-1.31046780943871,-0.952528700232506,0.0966457426548004,-1.25605016946793,-0.896219313144684,0.277864843606949,-1.27660098671913,-0.685841055586934,0.144291818141937,-1.34973454475403,-1.03733050823212,0.101049184799194,-1.32583200931549,-0.986115798354149,0.0991825759410858,-1.36009472608566,-0.968558892607689,0.150101780891418,-1.38051289319992,-0.859982855618,-0.140472143888474,-1.23247328400612,-0.874884150922298,-0.230859667062759,-1.18007475137711,-1.08577466011047,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147, +-1.03310644626617,-1.20933783054352,-0.744172289967537,-1.02270492911339,-1.27287912368774,-0.927098833024502,-0.642297714948654,-1.39842763543129,-0.588362723588943,-0.840161070227623,-0.981578290462494,-0.374440729618073,-0.294061690568924,-0.703935503959656,1.27722418308258,-1.38210272789001,-0.643014162778854,1.36485075950623,-1.23157405853271,-0.727332055568695,1.79262948036194,-0.54321976006031,-0.677536725997925,1.81738835573196,-0.623678773641586,-0.354944286867976,1.26688301563263,-1.2926287651062,-0.61518769711256,1.14060342311859,-1.30192238092422,-0.895896673202515,0.867383867502213,-1.30930882692337,-1.04578077793121,0.663054645061493,-1.35007756948471,-0.915925554931164,0.246965683996677,-1.48696053028107,-0.926107935607433,0.0944412350654602,-1.45965909957886,-0.992873921990395,0.103739857673645,-1.23589599132538,-1.03862646222115,-0.143902838230133,-1.13659101724625,-0.812449991703033,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.536932677030563,-1.66576999425888,-0.178576774895191,-0.6234350502491,-1.5840345621109,-0.249144423753023,-0.436932355165482,-1.5212607383728,-0.412938557565212,-0.312308669090271,-1.57270044088364,-0.40810327231884,-0.249290123581886,-1.6681997179985,-0.620587004348636,0.0377275347709656,-1.70539689064026,-0.56828597933054,0.426152870059013,-1.658616065979,-0.609041526913643,0.558128386735916,-1.66981202363968,-0.601820558309555,0.669186979532242,-1.692298412323,-0.34032092243433,0.709539905190468,-1.77536076307297,-0.128280056640506,0.532687039697308,-1.84619462490082,-0.00156058371067047,0.482187567861843,-1.86658304929733,0.182955831289291,0.477670133113861,-1.92859208583832,-0.0413478948175907,0.392928838729858,-1.93726867437363,-0.0355861112475395,0.338108538301753,-1.91305303573608,-0.0770834758877754,0.506615973430144,-1.85114878416061,-0.0369707196950912,0.657001532035338,-1.7390341758728,-0.0530509427189827,0.725529878052043,-1.65521770715714,-0.0666500851511955,0.548472657799721,-1.62673652172089, +-0.234216935932636,0.406572356820107,-1.60549187660217,-0.55508222989738,0.332084177645015,-1.62322825193405,-0.581734143197536,0.111744606518883,-1.62969774007797,-0.7592041073367,-0.183827131986618,-1.6250291466713,-0.74435443803668,-0.451646789908409,-1.5924431681633,-0.608562625944614,-0.683018788695335,-1.53360652923584,-0.510150529444218,-0.863214485347271,-1.46203288435936,-0.426729690283537,-1.06142365932465,-1.36622953414917,-0.340111467987299,-1.00883570313454,-1.57553482055664,-0.233834497630596,0.100973010063171,-1.64848303794861,-0.666075952351093,0.0247193723917007,-1.76358139514923,-0.596591262146831,-0.134871770162135,-1.73135250806808,-0.546649076044559,-0.269365061074495,-1.67684537172318,-0.601900599896908,-0.257796734571457,-1.68449622392654,-0.593187116086483,-0.0915863960981369,-1.69491028785706,-0.649043265730143,-0.0863640904426575,-1.58362901210785,-0.693196078762412,-0.10870373249054,-1.46605789661407,-0.675520487129688,0.065232127904892,-1.51649957895279,-0.816446907818317,0.0558519661426544,-1.49474841356277,-0.676395200192928,-0.191223859786987,-1.3428467810154,-0.790528543293476,-0.261868476867676,-1.10963428020477,-0.979095660150051,-0.867926314473152,-0.563618183135986,-0.926158208400011,-1.02762726694345,-0.61364521086216,-0.772719100117683,-1.04237522184849,0.159991383552551,-0.598136812448502,-1.06056278944016,0.0795976966619492,-0.748990565538406,-0.908920847869013,-0.700189411640167,-0.754435077309608,-0.60996375977993,-0.936978280544281,-0.700763180851936,-0.48595666885376,-0.128400862216949,-0.443611979484558,-0.431375682353973,-0.126315057277679,-0.401578813791275,-0.404081016778946,-0.143068045377731,-0.374956518411636,-0.386149108409882,-0.165289878845215,-0.363351047039032,-0.0152758359909058,0.295705318450928,-0.337241023778915,0.0887218117713928,0.264296293258667,-0.175146013498306,-0.300468057394028,0.297299742698669,-0.489746659994125,-0.486977875232697,-0.158717691898346,-0.549725264310837,-0.447408825159073,-0.182736814022064,-0.373649805784225,-0.114552080631256,0.166332602500916, +-0.259442955255508,-0.143667638301849,0.166047215461731,-0.275089055299759,-0.208167433738708,0.197712182998657,-0.37672832608223,0.110594660043716,0.378024756908417,-0.472437113523483,-0.0431231299880892,0.348702311515808,-0.364601582288742,-0.679909586906433,0.228971004486084,-0.506795912981033,-0.632715702056885,0.200329184532166,-0.385265856981277,-0.0575767178088427,0.293785810470581,-0.328283280134201,0.29610899835825,0.289396524429321,-0.286347806453705,0.619130112230778,0.399932056665421,-0.251579016447067,0.402966231107712,-0.0117897363379598,-1.50205767154694,0.244410067796707,0.690625194460154,-1.08279891312122,0.641441866755486,1.00313104689121,0.682928293943405,0.537629351019859,1.13714423775673,0.648418188095093,0.0643894895911217,1.15476337075233,0.629709541797638,-0.240039225667715,1.07869119942188,0.558957606554031,0.0623501539230347,1.1471019089222,0.518601775169373,0.238694563508034,0.881402564235032,0.478517025709152,-0.165767553262413,0.803203854709864,0.499753475189209,-0.424450166523457,1.00956544280052,0.454779148101807,-0.419200159609318,0.837365716695786,0.256595432758331,-0.0982338292524219,0.852155063301325,0.571601331233978,-0.257683232426643,-0.702032193541527,0.249309122562408,-0.503025785088539,-0.36045728623867,0.0880469083786011,0.609122812747955,-0.501033425331116,0.1789271235466,1.25154811143875,0.53336538374424,0.722003176808357,0.196837045252323,-0.189367920160294,0.0556443333625793,0.348773419857025,-0.118534505367279,0.00633633136749268,0.562592148780823,-0.453697100281715,0.0761546492576599,0.582393318414688,-0.541852223686874,0.155088484287262,0.496212497353554,-0.29812827706337,0.177683591842651,0.634330779314041,-0.24310228228569,0.188165903091431,0.704580187797546,-0.557326558977365,0.19455099105835,0.749721333384514,-0.503628209233284,0.0537264347076416,0.514998018741608,1.23284918069839,-0.0157626271247864,-0.889722406864166,0.39958019554615,-1.10928721725941,-0.757935747504234,0.352990083396435,-1.31668969988823,-0.711794137954712,0.520436465740204,-1.03702916204929, +-0.807102769613266,0.393747508525848,-0.813840061426163,-0.728759795427322,0.412859691306949,-0.899634547531605,-0.713007912039757,0.241911701858044,-1.33344557881355,-0.563540488481522,0.4015281945467,-0.51458153128624,-0.640906304121017,0.0285433232784271,-0.837002322077751,-0.538198739290237,0.379787273705006,-0.925946086645126,-0.546483129262924,-0.0157495141029358,-0.83397813886404,-0.420898497104645,0.0188667178153992,-0.887998312711716,-0.407479524612427,0.348058834671974,-1.05594447255135,-0.316707253456116,0.16451171785593,-0.89083905518055,-0.274854242801666,-0.0211529657244682,-0.631604455411434,0.257956802845001,0.0875755846500397,-1.42860263586044,0.211276352405548,-0.00884509459137917,-1.25484165549278,0.420895218849182,-0.0654055494815111,-1.35145825147629,0.625939220190048,-0.0411109514534473,-1.35262402892113,0.445218026638031,-0.153368311002851,-1.27422735095024,0.114085376262665,-0.197058223187923,-0.895023852586746,0.0707935690879822,0.0347345913760364,-1.11352127790451,0.614029079675674,0.0903580561280251,-1.38484156131744,-0.215474963188171,0.0788333804812282,-0.600047894753516,-0.17389714717865,0.0990883959457278,-0.649258948862553,-0.371794700622559,0.0722008347511292,-1.10977900028229,-0.324582934379578,0.0650625359266996,-1.07799533009529,-0.578811049461365,-0.15561206266284,-1.20478355884552,-0.490577906370163,-0.0121538527309895,-1.30989682674408,-0.570796966552734,-0.303658759221435,-1.32460591197014,-0.113252103328705,-0.329770175740123,-1.54338574409485,-0.0876168608665466,-0.101751018315554,-0.511747010052204,0.453197717666626,-0.0127957067452371,-1.41198134422302,-0.0247747302055359,-0.157172001898289,-0.677589893341064,-0.0674607753753662,-0.235194727778435,-0.709288060665131,0.0379536151885986,-0.109152182936668,-0.908801376819611,0.0929542183876038,-0.0864983387291431,-0.881313532590866,-0.145502150058746,0.0318169295787811,-1.17917492985725,-0.1243976354599,0.0411723367869854,-1.28752142190933,-0.280433237552643,-0.0559983036291669,-1.41769033670425,-0.368729919195175,-0.111302673816681, +-1.41159296035767,-0.183858662843704,-0.170020867139101,-1.82239359617233,-0.124316960573196,-0.399429179728031,-1.82076036930084,-0.338657319545746,-0.109513962641358,-1.50179356336594,-0.587101638317108,0.0469454741105437,-1.46615362167358,0.0371203124523163,0.396041333675385,-1.8057958483696,-0.30690598487854,-0.589279767125845,-0.975196562707424,-0.31858891248703,-0.32805510610342,-0.90739917755127,-0.133047580718994,-0.402142286300659,-0.851324856281281,0.338748961687088,-0.697140499949455,-0.631995916366577,0.0644165873527527,-0.380333170294762,-0.532987847924232,0.127723574638367,-0.45791195333004,-0.412613429129124,-0.0193964242935181,-0.174777860753238,-0.323619153350592,-0.253203421831131,0.030804455280304,-1.18986102938652,-0.498142749071121,0.455077409744263,-1.27436101436615,-0.335953682661057,0.0760220289230347,-1.14300060272217,-0.244286492466927,-0.0435982346534729,-1.16708359122276,-0.362486224621534,-0.134209275245667,-1.24079996347427,-0.528169095516205,-0.0660513639450073,-1.35198691487312,-0.354152619838715,-0.136313647031784,-1.34815785288811,-0.0523744225502014,-0.326421946287155,-1.29191786050797,-0.0662983059883118,-0.315371721982956,-1.21740317344666,-0.323341339826584,-0.0421311259269714,-1.22774824500084,-0.467649936676025,0.39191198348999,-1.31662404537201,-0.294226199388504,-0.245453804731369,-1.37384840846062,-0.205296546220779,-0.68906357884407,-1.31937453150749,-0.283072769641876,-0.461873427033424,-1.23241981863976,0.283098638057709,-1.00639636814594,-1.30733358860016,0.193798393011093,-1.02805794775486,-1.30896455049515,-0.0691885352134705,-0.907346248626709,-1.42971342802048,-0.209821954369545,-0.886958688497543,-1.5513379573822,-0.326575733721256,-0.995134457945824,-1.48937052488327,-0.48998411744833,-0.998220562934875,-1.4682095348835,-0.758111551403999,-0.946627110242844,-1.46026927232742,-0.655006185173988,-1.05856692790985,-1.466832280159,-0.294145941734314,-1.04554462432861,-1.46120059490204,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941, +-1.22371858358383,-0.116679728031158,-0.348106963559985,-1.34521836042404,-0.0809651613235474,-0.943344473838806,-1.49096304178238,-0.511926399543881,-0.990554302930832,-1.50666928291321,-0.877023607492447,-0.515398949384689,-1.54662621021271,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,0.08946892619133,-0.586630847305059,-1.50325155258179,0.0785695910453796,-0.357382372021675,-1.60936325788498,0.222538977861404,-0.831792712211609,-1.41247868537903,0.280119627714157,-0.923578292131424,-1.40613031387329,0.172758996486664,-0.742827057896648,-1.46512860059738,0.0081295371055603,-0.349958568811417,-1.49732863903046,-0.0173326134681702,-0.188348799943924,-1.43574166297913,0.161081403493881,-0.366377264261246,-1.38716787099838,0.179829120635986,-0.476554483175278,-1.37126457691193,0.0455271899700165,-0.480175539851189,-1.4614737033844,-0.0821044743061066,-0.258880812674761,-1.70654553174973,-0.126413524150848,-0.6414581425488,-1.59862315654755,-0.320595100522041,-0.593370091170073,-1.60125571489334,-0.573810718953609,-0.222018286585808,-1.68109464645386,-0.231750033795834,-0.510739549994469,-1.64363729953766,-0.230579569935799,-0.406163066625595,-1.58618032932281,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.187894940376282,-0.345382928848267,-1.5262770652771,0.229155153036118,-0.554194748401642,-1.48146241903305,0.00772532820701599,-0.461631417274475,-1.52488738298416,-0.223270408809185,-0.465174183249474,-1.65602523088455,-0.272527251392603,-0.613432247191668,-1.69918721914291,-0.277569133788347,-0.73839121311903,-1.69490927457809,-0.171540036797523,-0.855867579579353,-1.6463994383812,-0.156692922115326,-0.506141841411591,-1.75948995351791,0.0329167544841766,-0.4745252430439,-1.71916425228119,0.3124640583992,-0.6936977468431,-1.49131292104721,0.342744618654251,-0.590171653777361,-1.45161527395248,0.213826894760132,-0.189790830016136,-1.60936152935028,0.24815160036087,-0.144311904907227, +-1.61985474824905,0.245923459529877,-0.176694110035896,-1.65989756584167,0.30384823679924,-0.684334060177207,-1.47466993331909,0.311839550733566,-0.773287504911423,-1.47676855325699,0.230004817247391,-0.394912876188755,-1.67173105478287,0.292183488607407,-0.698915335349739,-1.48298436403275,0.229120492935181,-0.609001405537128,-1.5283967256546,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,-0.235909350216389,-0.891490027308464,-1.65005344152451,-0.0773504972457886,-1.04203036427498,-1.58117288351059,0.169546544551849,-0.918583989143372,-1.54104143381119,0.223212629556656,-0.350449431687593,-1.68132120370865,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.0422710180282593,0.0709802806377411,-1.6946507692337,0.351178735494614,-0.592103883624077,-1.43773728609085,0.431213587522507,-0.796348564326763,-1.3772514462471,0.427720353007317,-1.01248747110367,-1.36580908298492,0.275073140859604,-1.12474596500397,-1.42154371738434,0.0266938805580139,-1.09434476494789,-1.53698319196701,-0.0252010971307755,-1.04581725597382,-1.57049334049225,0.0953242480754852,-0.949589923024178,-1.57957583665848,0.179240807890892,-0.80996510386467,-1.56414943933487,0.251120507717133,-0.635817017406225,-1.54038214683533,0.369307965040207,-0.701317295432091,-1.27912187576294,0.634764835238457,-0.672030314803123,-1.28823155164719,0.719149217009544,-0.585731487721205,-1.32765519618988,0.579053401947021,-0.731961112469435,-1.13382712006569,0.617919921875,-0.843188583850861,-1.10810786485672,0.774773046374321,-0.870302051305771,-1.18545171618462,0.751920238137245,-0.867613315582275,-1.16804292798042,0.8443774433199,-0.969353914260864,-1.06576824188232,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.410534106194973,-0.708320364356041,-1.41948485374451,0.374559501706244,-0.388051748275757,-1.33646136522293, +0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.295771136879921,-0.988750234246254,-1.45182532072067,0.445517048239708,-1.03268878161907,-1.35189652442932,0.475732818245888,-0.906545907258987,-1.29178684949875,0.5553879737854,-0.871214412152767,-1.24229335784912,0.742462269961834,-0.965564593672752,-1.12341731786728,0.74607215821743,-0.972845494747162,-1.0915315747261,0.582482635974884,-0.873048216104507,-1.20738744735718,0.533394277095795,-0.811883710324764,-1.29966932535172,0.690526419039998,-0.910849507898092,-1.23894906044006,0.643226717360449,-0.908862553536892,-1.27202475070953,0.494340002536774,-0.855318148562219,-1.32607853412628,0.391213163733482,-0.838167292997241,-1.40319520235062,0.321734909661245,-0.865674071479589,-1.45463329553604,0.226719795061399,-0.957979753613472,-1.47050487995148,0.0581808015704155,-1.08784011006355,-1.46571457386017,0.106667190790176,-1.16624844074249,-1.44245409965515,0.303786933422089,-1.2081356048584,-1.362169444561,0.454737178981304,-1.13921824097633,-1.29307925701141,0.380120679736137,-0.895110890269279,-1.32164531946182,0.345162034034729,-0.65681566298008,-1.37516623735428,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,0.127847500145435,-1.0766413807869,-1.44812446832657,0.248432002961636,-1.09178760647774,-1.41496700048447,0.470593765416197,-1.11217659711838,-1.34488794207573,0.605843491086489,-1.10959251224995,-1.2558519244194,0.685809880495071,-1.05468791723251,-1.08283078670502,0.815370671451092,-0.975100658833981,-0.891954004764557,0.83636599034071,-0.958253972232342,-0.844457536935806,0.841456443071365,-0.945963643491268,-0.81961864233017,0.67180198431015,-0.91353165358305,-0.789975881576538,0.696475595235825,-0.899278223514557,-0.789775401353836,1.85216003656387,-0.489386051893234,-0.490969806909561,1.79383319616318,-0.105387568473816, +-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,1.51038610935211,0.350324928760529,0.171611189842224,1.3748921751976,0.807984981685877,0.223284348845482,1.00386889278889,0.906965226866305,-0.0908666849136353,0.726165696978569,0.589472055435181,-0.0828608572483063,0.469733357429504,0.600580662488937,-0.261548683047295,0.459389925003052,0.871210963465273,-0.277286469936371,0.412952184677124,0.81659435108304,-0.268578469753265,0.293773889541626,0.690742049366236,-0.150056359358132,0.208811521530151,0.664477586746216,-0.232709627598524,0.239331126213074,0.80169041082263,-0.487504579126835,1.43205624818802,-0.708357482217252,0.0060558021068573,1.74395287036896,-0.529954386875033,-0.258157923817635,1.17831620573997,-0.784377802163363,0.0281682014465332,1.09551700204611,-0.894101798534393,0.174575209617615,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.313414990901947,-0.789546798914671,-0.148835942149162,0.198823511600494,-0.716550438664854,-0.279832065105438,0.310346782207489,-0.798575423657894,0.00149720907211304,0.275838494300842,-0.666565477848053,-0.0126786082983017,0.0890900492668152,0.431337656453252,-0.086775922216475,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,1.5713255405426,0.768424635753036,-0.2488759085536,1.38082215189934,0.70128670334816,-0.266342602670193,1.13147161900997,0.959158843383193,-0.201163671910763,0.870096161961555,1.02827863395214,-0.198398943059146,0.738433077931404,0.723684951663017,-0.332758162170649,0.279410779476166,0.124802708625793,-0.654269427061081,0.259774148464203,0.0990632772445679,-0.615688234567642,0.104687869548798,-0.0223220586776733,-0.668458685278893,0.962147414684296,-1.56267940998077,-0.75883275270462,1.22695764899254,-1.02457988262177,-0.893671244382858,0.649900645017624,-1.75827872753143,-0.454143658280373,0.820662484504282, +-1.22292999923229,-0.639594420790672,0.76577752828598,-1.23354479670525,-0.510584950447083 + } + } + Geometry: 2807663837520, "Geometry::Tongue_LongStep1", "Shape" { + Version: 100 + Indexes: *181 { + a: 19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,119,120,121,122,123,124,125,127,129,130,131,132,133,134,135,136,137,138,141,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,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,274,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307 + } + Vertices: *543 { + a: 0,0.187673091888428,-0.00956583023071289,0,0.180512428283691,0,0,0.294208526611328,0,0,0.180512428283691,0,0,0.336992740631104,0.385053157806396,0,0.522496223449707,0.359954357147217,0,0.723875999450684,0.316071033477783,0,0.522496223449707,0.359954357147217,0,0.722837448120117,0.828493118286133,0,0.75377082824707,0.804118156433105,0,0.811850070953369,0.781644821166992,0,0.75377082824707,0.804118156433105,0,0.738060474395752,1.2620325088501,0,0.772225379943848,1.24532222747803,0,0.812665939331055,1.2726469039917,0,0.772225379943848,1.24532222747803,0,0.76690149307251,1.61725044250488,0,0.784619331359863,1.486741065979,0,0.790802955627441,1.5978422164917,0,0.784619331359863,1.486741065979,0,0.222600936889648,-0.018549919128418,0,0.0989336967468262,0,0,0.0649251937866211,0.0247335433959961,0,0.222600936889648,-0.018549919128418,0,0.0649251937866211,0.0247335433959961,0,0.269845962524414,0.0446667671203613,0,0.0833778381347656,0.0446667671203613,0,0.180512428283691,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.15064811706543,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.294208526611328,0,0,0.15064811706543,0,0,0.180512428283691,0,0,0.180512428283691,0,0,0.333643436431885,0.385502815246582,0,0.22156810760498,0.0825347900390625,0,0.217616558074951,0.0825347900390625,0,0.333643436431885,0.385502815246582,0,0.217616081237793,0.0825347900390625,0,0.440893173217773,0.377697467803955,0,0.331032752990723,0.0825347900390625,0,0.390588760375977,0.0825347900390625,0,0.594545364379883,0.344237804412842,0,0.430413246154785,0.0825347900390625,0,0.713373184204102,0.318408966064453,0,0.493996143341064,0.0825347900390625,0,0.734828948974609,0.313683032989502,0,0.49793529510498,0.0825347900390625,0,0.506249904632568,0.0825347900390625,0,0.734829425811768,0.313682556152344,0,0.506249904632568,0.0825347900390625,0,0.751954555511475,0.310015678405762,0,0.517498016357422,0.0825347900390625,0,0.594545364379883,0.344237804412842,0,0.390588760375977,0.0825347900390625,0,0.430413246154785, +0.0825347900390625,0,0.488492012023926,0.367390632629395,0,0.367498874664307,0.0825347900390625,0,0.726333141326904,0.829377174377441,0,0.662723541259766,0.574379444122314,0,0.665483474731445,0.573187351226807,0,0.726333141326904,0.829377174377441,0,0.665483474731445,0.573187828063965,0,0.735027313232422,0.82557201385498,0,0.680834293365479,0.56638240814209,0,0.711684226989746,0.552332878112793,0,0.774704933166504,0.797505378723145,0,0.745489597320557,0.537163734436035,0,0.80958366394043,0.787747383117676,0,0.802063465118408,0.511935234069824,0,0.816407203674316,0.780303001403809,0,0.806463241577148,0.509801387786865,0,0.812239646911621,0.507215023040771,0,0.816407203674316,0.780303001403809,0,0.812239646911621,0.507215023040771,0,0.821882247924805,0.781024932861328,0,0.820404529571533,0.503688335418701,0,0.774704933166504,0.797505378723145,0,0.711684226989746,0.552332878112793,0,0.745489597320557,0.537163734436035,0,0.746676445007324,0.807805061340332,0,0.698855400085449,0.558159351348877,0,0.742495059967041,1.26186752319336,0,0.73460578918457,1.07140064239502,0,0.737247943878174,1.07379531860352,0,0.742495059967041,1.26186752319336,0,0.737247943878174,1.07379531860352,0,0.751983165740967,1.25812149047852,0,0.744959354400635,1.07658576965332,0,0.76621150970459,1.07359218597412,0,0.787219524383545,1.25014686584473,0,0.783115386962891,1.08249950408936,0,0.81043815612793,1.26607131958008,0,0.810575485229492,1.09775924682617,0,0.816539764404297,1.27387142181396,0,0.813676357269287,1.09429264068604,0,0.817821979522705,1.09658622741699,0,0.816539764404297,1.27387142181396,0,0.817821979522705,1.09658622741699,0,0.82039213180542,1.27486324310303,0,0.821866512298584,1.10081100463867,0,0.787219524383545,1.25014686584473,0,0.76621150970459,1.07359218597412,0,0.783115386962891,1.08249950408936,0,0.765985488891602,1.24741649627686,0,0.760364055633545,1.07143115997314,0,0.768522262573242,1.61169052124023,0,0.743864059448242,1.44948959350586,0,0.748948097229004,1.44581985473633,0,0.768522262573242,1.61169052124023,0,0.748948097229004, +1.44581985473633,0,0.776587963104248,1.57653617858887,0,0.758716583251953,1.42446422576904,0,0.778730392456055,1.3733434677124,0,0.791953563690186,1.49379253387451,0,0.79108190536499,1.37275981903076,0,0.800856113433838,1.52603054046631,0,0.808991432189941,1.40214347839355,0,0.792611598968506,1.59503936767578,0,0.808026313781738,1.4379940032959,0,0.811019420623779,1.43738269805908,0,0.792612075805664,1.59503936767578,0,0.811019420623779,1.4373836517334,0,0.798752784729004,1.57704544067383,0,0.81517505645752,1.43052577972412,0,0.791953563690186,1.49379253387451,0,0.778730392456055,1.3733434677124,0,0.79108190536499,1.37276077270508,0,0.782088279724121,1.51567268371582,0,0.77278470993042,1.38754177093506,0,0.779191493988037,1.63731861114502,0,0.78056812286377,1.63240814208984,0,0.798752784729004,1.57704544067383,0,0.78678560256958,1.60179328918457,0,0.780568599700928,1.63240814208984,0,0.800856113433838,1.52603054046631,0,0.791548252105713,1.53793144226074,0,0.294208526611328,0,0,0.15064811706543,0,0,0.713373184204102,0.318408966064453,0,0.493996143341064,0.0825347900390625,0,0.80958366394043,0.787747383117676,0,0.802063465118408,0.511935234069824,0,0.810437679290771,1.26607227325439,0,0.810575485229492,1.09775924682617,0,0.808991432189941,1.40214347839355,0,0.776587963104248,1.57653617858887,0,0.78678560256958,1.60179328918457,0,0.751983165740967,1.25812149047852,0,0.758716583251953,1.42446422576904,0,0.735027313232422,0.82557201385498,0,0.744959354400635,1.07658576965332,0,0.440893173217773,0.377697467803955,0,0.680834293365479,0.566382884979248,0,0.269845962524414,0.0446667671203613,0,0.331032752990723,0.0825347900390625,0,0.0833778381347656,0.0446667671203613,0,0.180512428283691,0,0,0.488492488861084,0.367390632629395,0,0.367498874664307,0.0825347900390625,0,0.746675968170166,0.807806015014648,0,0.698855400085449,0.558159351348877,0,0.765985488891602,1.24741649627686,0,0.760364055633545,1.07143115997314,0,0.782088279724121,1.51567268371582,0,0.77278470993042,1.38754177093506,0,0.791548252105713,1.53793144226074, +0,0.82039213180542,1.27486324310303,0,0.81517505645752,1.43052673339844,0,0.821882247924805,0.781024932861328,0,0.821866512298584,1.10081100463867,0,0.751954555511475,0.310015678405762,0,0.820404529571533,0.503688812255859,0,0.294208526611328,0,0,0.517498016357422,0.0825347900390625,0,0.15064811706543,0 + } + Normals: *543 { + a: -0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.944908827543259,1.31607159972191,0.47273375466466,-0.921599141576962,1.37235361337662,-0.12590342387557,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.0860351920127869,-0.115906327962875,-0.718861132860184,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.684338128286157,-0.712757617235184,-0.929008990526199,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049, +-1.0406131669879,0.281359016895294,-1.001324608922,-1.25743305683136,1.07243165373802,-0.607321448624134,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082, +-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284, +-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.598149731755257,-0.00678813457489014,-0.199082851409912,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.16607412695885,-0.595094352960587,-0.701343905180693,0.926006108522415,-1.40033829212189,-0.595672160387039,1.05335786938667,-1.47649538516998,-0.191695690155029,0.300833195570476,-1.29680508375168,0.00777071714401245,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.638551711913578,-1.2888200879097,0.264883786439896,-0.845786213874817,-0.41208028793335,-0.494110137224197,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.337564095854759,-1.01062850654125,-0.674264281988144,-0.387330010533333,-1.54228508472443,-0.804431803524494,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525, +-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.894153416156769,1.25129035115242,-0.576352939009666,0.702015891671181,1.80767601728439,0.0715821126941592,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.0642043994739652,-0.338101089000702,-1.00382301211357 + } + } + Geometry: 2807663836656, "Geometry::Tongue_LongStep2", "Shape" { + Version: 100 + Indexes: *304 { + a: 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,40,45,46,47,48,49,50,51,52,54,55,56,58,59,60,61,62,63,64,65,66,67,69,70,71,72,73,74,75,76,77,78,79,80,81,82,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,313 + } + Vertices: *912 { + a: 0.298460721969604,-2.38418579101563e-06,0,0,4.76837158203125e-06,0,-0.298447489738464,-2.38418579101563e-06,0,0,1.9073486328125e-06,0,0,2.86102294921875e-06,0,0,1.9073486328125e-06,0,0.295654296875,3.814697265625e-06,0,0,-3.814697265625e-06,0,-0.295654296875,3.814697265625e-06,0,0,1.9073486328125e-06,0.62092399597168,0,-4.29153442382813e-06,0.315820217132568,0,1.9073486328125e-06,0.621030807495117,0.25104284286499,0,0.350605010986328,0,0.00147867202758789,0,-0.251043915748596,0,0.350605487823486,0,0.0891499519348145,0.820659160614014,0.353261947631836,-0.0530796051025391,0.804751873016357,0,0.102138519287109,0.546422004699707,-0.353261828422546,-0.0530796051025391,0.804751873016357,0,0.167038440704346,1.54842329025269,0.418906927108765,0.133477210998535,1.63512516021729,0,0.313694000244141,1.71888160705566,-0.418906927108765,0.133476734161377,1.63512468338013,0,-0.180120468139648,2.67286396026611,0.417097449302673,-0.171124935150146,2.68819570541382,0,-0.0608830451965332,2.89190196990967,-0.417098045349121,-0.171124935150146,2.68819570541382,0,-0.144774436950684,3.38189888000488,0.319933772087097,-0.114799022674561,3.40964317321777,0,-0.0109982490539551,3.43304252624512,-0.319933533668518,-0.114799022674561,3.40964317321777,0,-0.0791492462158203,3.56278228759766,0.290642738342285,-0.0858731269836426,3.54627513885498,0,0.0191793441772461,3.524977684021,-0.290643811225891,-0.0858731269836426,3.54627513885498,0,-0.0347309112548828,3.68325805664063,0.24822473526001,-0.0647068023681641,3.63838195800781,0,-0.00930070877075195,3.66595840454102,-0.2508864402771,-0.0651793479919434,3.63198566436768,0,-3.814697265625e-06,0,0.0185188055038452,-2.38418579101563e-06,0,0.310891628265381,-2.86102294921875e-06,0,0.240737795829773,9.5367431640625e-07,0,0.296840906143188,-3.814697265625e-06,0,0.279513716697693,0,0,0.102843284606934,-3.814697265625e-06,0,0.140187501907349,3.814697265625e-06,0,0.119377970695496,9.5367431640625e-07,0,0,4.76837158203125e-06,0,0,-2.86102294921875e-06,0,0,3.814697265625e-06,0,0,-2.86102294921875e-06, +0,0,3.814697265625e-06,0,-0.0519960522651672,-2.38418579101563e-06,0,-0.057947039604187,9.5367431640625e-07,0,-0.055777907371521,-3.814697265625e-06,0,-0.240737676620483,9.5367431640625e-07,0,-0.310877084732056,-2.86102294921875e-06,0,-0.296841621398926,-3.814697265625e-06,0,-0.279513478279114,0,0,-0.21926736831665,-3.814697265625e-06,0,0,-2.86102294921875e-06,0,0,3.814697265625e-06,0,0,3.814697265625e-06,0,0,-2.38418579101563e-06,0,0.00226438045501709,-2.86102294921875e-06,0,0.00529718399047852,0,0.533062934875488,0.0265829563140869,-2.38418579101563e-06,0,0.268007516860962,-9.5367431640625e-07,0,0.195124864578247,3.814697265625e-06,0,0.220188617706299,4.76837158203125e-06,0,0.0971983671188354,0,0,0.0933150053024292,2.86102294921875e-06,0,0,0.00565910339355469,0,0,-2.86102294921875e-06,0,0,0.00565910339355469,0,-6.27338886260986e-05,9.5367431640625e-07,0,-0.0529602766036987,0.00239944458007813,0,-0.0533127188682556,-3.814697265625e-06,0,-0.195112705230713,3.814697265625e-06,0,-0.268007278442383,-9.5367431640625e-07,0,-0.220189571380615,4.76837158203125e-06,0,-0.157735586166382,0,0.449384689331055,-0.209065556526184,2.86102294921875e-06,0,0,0.0642914772033691,0.87494421005249,0,0.0444116592407227,0.584774017333984,0,-2.38418579101563e-06,0.404292106628418,0,0.044410228729248,0.633496761322021,0,0.0642914772033691,0.87494421005249,0,-2.38418579101563e-06,0.404292106628418,0,0.044410228729248,0.633496284484863,0.0110411643981934,-0.0367631912231445,0.92303466796875,0.0241326093673706,2.86102294921875e-06,0.712357521057129,0.277857899665833,2.38418579101563e-06,0.470832347869873,0.337912678718567,-0.0499286651611328,0.703420639038086,0.250848412513733,-2.86102294921875e-06,0,0.17339813709259,0.0617070198059082,0.601244449615479,0.133182883262634,9.5367431640625e-07,0,0,0.0918192863464355,0.544517517089844,0,0.0148978233337402,0,0,0.0286645889282227,0,0,0.0918192863464355,0.544517517089844,0,0.0286645889282227,0,-0.0284221172332764,0.0563998222351074,0.546029567718506,-0.0466420650482178,0.0045170783996582,0,-0.337912440299988, +-0.0499286651611328,0.703420162200928,-0.277857899665833,2.38418579101563e-06,0.470832347869873,-0.25084924697876,-2.86102294921875e-06,0,-0.261481046676636,-0.0424008369445801,0.877210140228271,-0.20198929309845,-4.29153442382813e-06,0.53693675994873,0,0.140053749084473,1.65809679031372,0,0.138479709625244,1.09061098098755,0,0.156541347503662,1.14548444747925,0,0.140053749084473,1.65809679031372,0,0.156541347503662,1.14548444747925,0.0229523181915283,0.0663371086120605,1.6963324546814,0.0273973941802979,0.0169744491577148,1.26308012008667,0.402652502059937,0.0357837677001953,1.07817649841309,0.391128540039063,0.151822566986084,1.59884834289551,0.378832340240479,0.053194522857666,1.02306938171387,0.173742651939392,0.215082168579102,1.53208065032959,0.182240724563599,0.086606502532959,0.958737373352051,0,0.297698020935059,1.69873476028442,0,0.261649131774902,1.18369293212891,0,0.245674610137939,1.16274881362915,0,0.297698020935059,1.69873476028442,0,0.245674610137939,1.16274881362915,-0.0141924619674683,0.248825073242188,1.60572719573975,-0.0104990005493164,0.211533069610596,1.1324782371521,-0.3911292552948,0.151822566986084,1.59884834289551,-0.402652263641357,0.0357837677001953,1.07817697525024,-0.378817558288574,0.053194522857666,1.02306938171387,-0.325470685958862,0.125279903411865,1.66555166244507,-0.305439472198486,0.0364322662353516,1.13663387298584,0,-0.161754131317139,2.64732933044434,0,0.0138816833496094,2.07099056243896,0,0.0213661193847656,2.1135082244873,0,-0.161754131317139,2.64732933044434,0,0.0213656425476074,2.11350727081299,0.131826877593994,-0.176462650299072,2.67409753799438,0.141389966011047,-0.0518226623535156,2.23256397247314,0.412746429443359,-0.0463972091674805,2.16204309463501,0.357690453529358,-0.160445213317871,2.6955132484436,0.381201982498169,-0.0318150520324707,2.15104293823242,0.19710373878479,-0.14202880859375,2.71328639984131,0.181077122688293,-0.00959539413452148,2.11824417114258,0,-0.0759873390197754,2.85682010650635,0,0.0871706008911133,2.38461494445801,0,0.0698714256286621,2.35037994384766, +0,-0.075986385345459,2.85682106018066,0,0.0698714256286621,2.35037994384766,-0.0283493995666504,-0.13284969329834,2.76042795181274,-0.0152958631515503,0.0208282470703125,2.26888704299927,-0.357691526412964,-0.160445213317871,2.69551277160645,-0.412747383117676,-0.0463972091674805,2.16204261779785,-0.38120174407959,-0.0318150520324707,2.15104293823242,-0.34891939163208,-0.177542209625244,2.67255926132202,-0.334402680397034,-0.0512552261352539,2.19090175628662,0,-0.134435653686523,3.3816967010498,0,-0.158763885498047,3.07975244522095,0,-0.138489723205566,3.06558179855347,0,-0.134435653686523,3.3816967010498,0,-0.138490200042725,3.06558227539063,0.121262907981873,-0.116376399993896,3.38311004638672,0.125357627868652,-0.136521816253662,3.06630992889404,0.351033329963684,-0.136722564697266,3.0627965927124,0.294175386428833,-0.106605529785156,3.40964984893799,0.321293592453003,-0.125565528869629,3.10069942474365,0.163648128509521,-0.0758256912231445,3.43843555450439,0.185388922691345,-0.110358238220215,3.11969184875488,0,-0.0182828903198242,3.43333721160889,0,-0.0355515480041504,3.27271509170532,0,-0.0456171035766602,3.2604832649231,0,-0.0182828903198242,3.43333721160889,0,-0.0456171035766602,3.2604832649231,-0.0434439182281494,-0.0666294097900391,3.43695163726807,-0.0348807573318481,-0.101242542266846,3.17178106307983,-0.294176340103149,-0.106605529785156,3.40964984893799,-0.351035118103027,-0.136722564697266,3.0627965927124,-0.321277976036072,-0.125565528869629,3.10069942474365,-0.287428379058838,-0.117464542388916,3.4115743637085,-0.310929179191589,-0.139772415161133,3.06449842453003,-0.0163765251636505,-0.0938305854797363,3.5619535446167,0,-0.128186225891113,3.48684883117676,0,-0.119556427001953,3.48358345031738,0.0154803097248077,-0.0938630104064941,3.56195545196533,0,-0.119556427001953,3.48358345031738,0.151097655296326,-0.105112075805664,3.55817890167236,0.121285855770111,-0.101095199584961,3.47776031494141,0.310375452041626,-0.0973672866821289,3.48279762268066,0.272701621055603,-0.0651049613952637,3.53918933868408, +0.286442279815674,-0.087684154510498,3.46957015991211,0.173955082893372,-0.0333218574523926,3.5293140411377,0.166538000106812,-0.0276741981506348,3.47884941101074,0.0110068917274475,0.00843906402587891,3.52434921264648,0,0.021937370300293,3.47943878173828,0.00043100118637085,0.00929927825927734,3.47868251800537,-0.0109143853187561,0.00843906402587891,3.52434921264648,-0.00043100118637085,0.00929927825927734,3.47868251800537,-0.0805292725563049,-0.0241193771362305,3.52545070648193,-0.0577948689460754,-0.0241289138793945,3.47782707214355,-0.272702693939209,-0.0651049613952637,3.53918933868408,-0.310375213623047,-0.0973672866821289,3.48279857635498,-0.286425590515137,-0.087684154510498,3.46957015991211,-0.268575549125671,-0.0948514938354492,3.54974555969238,-0.283764958381653,-0.100555896759033,3.48793983459473,-0.0518088936805725,-0.0393714904785156,3.68231201171875,0,-0.0494170188903809,3.64352893829346,-0.0476897358894348,-0.0639810562133789,3.64241409301758,0.0518091022968292,-0.0393500328063965,3.68235778808594,0.0468094646930695,-0.0639758110046387,3.64241409301758,0.137817084789276,-0.056513786315918,3.67803001403809,0.139931201934814,-0.078984260559082,3.63288497924805,0.277220368385315,-0.0750179290771484,3.58734703063965,0.229841947555542,-0.0580859184265137,3.64872169494629,0.257107377052307,-0.0630874633789063,3.57737636566162,0.205419719219208,-0.0476822853088379,3.6871919631958,0.187644183635712,-0.0451693534851074,3.60916328430176,0.0401111841201782,-0.013554573059082,3.66479969024658,0,0.000185489654541016,3.60293674468994,0.0309822559356689,-0.0070033073425293,3.60223388671875,-0.0401111096143723,-0.0135540962219238,3.66479969024658,-0.0310016274452209,-0.0070033073425293,3.60223388671875,-0.122735917568207,-0.0352258682250977,3.67249774932861,-0.163097679615021,-0.0375070571899414,3.61946392059326,-0.23868453502655,-0.0585098266601563,3.64305114746094,-0.277221083641052,-0.0750174522399902,3.58734607696533,-0.257108449935913,-0.0630702972412109,3.57799434661865,-0.246168971061707,-0.0620956420898438, +3.67756271362305,-0.254979372024536,-0.0791902542114258,3.59969043731689,0,-0.0220098495483398,3.69055461883545,0.045039564371109,-0.025270938873291,3.68978118896484,0.120193541049957,-0.0354828834533691,3.66908740997314,0.122028291225433,-0.043327808380127,3.68140602111816,-0.045040637254715,-0.025270938873291,3.68978118896484,-0.224817931652069,-0.0476846694946289,3.68712329864502,-0.228068113327026,-0.0523171424865723,3.70450782775879,-0.152491211891174,3.814697265625e-06,0,-0.119194149971008,-3.814697265625e-06,0,-0.14048957824707,9.5367431640625e-07,0,-0.0181286334991455,9.5367431640625e-07,0,-0.111320495605469,0,0,-0.106593132019043,2.86102294921875e-06,0,-0.196863532066345,0.0617070198059082,0.601244449615479,-0.151251912117004,9.5367431640625e-07,0,-0.202544450759888,0.214639186859131,1.53018474578857,-0.211577177047729,0.0866060256958008,0.958737373352051,-0.21239173412323,-0.14202880859375,2.71328639984131,-0.202323913574219,-0.00971364974975586,2.11747550964355,-0.175418496131897,-0.0758252143859863,3.43843555450439,-0.197821974754333,-0.110358238220215,3.11969184875488,-0.182199478149414,-0.0333213806152344,3.5293140411377,-0.175503134727478,-0.0287003517150879,3.48351955413818,-0.197173416614532,-0.0453948974609375,3.60856437683105,-0.160684108734131,-0.0561904907226563,3.68141078948975,-0.128614485263824,-0.0430870056152344,3.68475437164307,-0.150892972946167,-0.105112075805664,3.55817890167236,-0.17569500207901,-0.0780086517333984,3.6369104385376,-0.12126350402832,-0.116376399993896,3.38310813903809,-0.121285378932953,-0.101095199584961,3.47776031494141,-0.131827116012573,-0.176462650299072,2.67409753799438,-0.125357508659363,-0.136521816253662,3.06630945205688,-0.0229523181915283,0.0663371086120605,1.6963324546814,-0.141390204429626,-0.0518226623535156,2.23256397247314,-0.0110411643981934,-0.0367631912231445,0.92303466796875,-0.0273973941802979,0.0169744491577148,1.26307964324951,-0.00529718399047852,0,0.533062934875488,-0.0241310596466064,2.86102294921875e-06,0.712357521057129,-0.00239384174346924, +0,0,-0.0265810489654541,-2.38418579101563e-06,0,0.219266533851624,-3.814697265625e-06,0,0.0337250232696533,9.5367431640625e-07,0,0.0235904455184937,-2.38418579101563e-06,0,0.0295599699020386,-3.814697265625e-06,0,0.157735586166382,0,0.449384212493896,0.209065794944763,2.86102294921875e-06,0,0.261480331420898,-0.0424008369445801,0.87721061706543,0.201988458633423,-4.29153442382813e-06,0.53693675994873,0.325470685958862,0.125279903411865,1.66555166244507,0.305452108383179,0.0364322662353516,1.13663291931152,0.34891951084137,-0.177541732788086,2.67255830764771,0.334401845932007,-0.0512552261352539,2.19090175628662,0.287451028823853,-0.117464065551758,3.4115743637085,0.310927510261536,-0.139772415161133,3.06449842453003,0.268593430519104,-0.0948519706726074,3.5497465133667,0.283763885498047,-0.100555896759033,3.48793888092041,0.222552061080933,-0.061678409576416,3.68146228790283,0.254917025566101,-0.0790629386901855,3.6013879776001,0.197322428226471,-0.0522642135620117,3.70504379272461,0.0705982446670532,-0.0247268676757813,3.52549648284912,0.161838948726654,-0.038020133972168,3.61581516265869,0.0204588174819946,-0.0680766105651855,3.43706035614014,0.0398297309875488,-0.0241308212280273,3.47719764709473,0.00209450721740723,-0.133209228515625,2.76046848297119,0.00935029983520508,-0.10222864151001,3.17185592651367,0,0.248824119567871,1.60572242736816,6.04391098022461e-05,0.0208282470703125,2.26888704299927,0.00441503524780273,0.0563998222351074,0.546030044555664,0,0.211533069610596,1.1324782371521,0.0286592245101929,0.00184869766235352,0,0.0200525522232056,0.00309085845947266,0,0.0290156006813049,-3.814697265625e-06,0,0,-2.38418579101563e-06,0,0,-3.814697265625e-06,0 + } + Normals: *912 { + a: -0.00549158453941345,-0.000439047813415527,0.0171330198645592,9.13804498736681e-09,-9.29459929466248e-07,0,0.00549674034118652,-0.000446796417236328,0.0171155035495758,0.00113576650619507,0.00536841154098511,-0.0132306218147278,1.91107392311096e-06,-1.10268592834473e-06,4.76837158203125e-07,-0.00123083591461182,0.0053558349609375,-0.0132727026939392,-0.0469234585762024,-0.0379617810249329,0.0576065480709076,-6.09927819361644e-09,7.5995922088623e-07,2.98023223876953e-07,0.0306386351585388,-0.0608815848827362,-0.011548325419426,-0.240852236747742,-0.504639774560928,-0.169179111719131,0.0116647626273334,-0.87309318780899,-0.74423161149025,0.240640997886658,-0.495761096477509,-0.170645385980606,-0.0642208456993103,-0.0711469873785973,0.194584652781487,-2.90841413175258e-08,-0.00897115468978882,-0.0076177716255188,0.0642392635345459,-0.0711903050541878,0.19460791349411,0.00429483510379214,-0.0111492872238159,-0.0411160737276077,-0.101342678070068,0.00301565229892731,0.242801457643509,-1.18008811611503e-08,-0.00332576036453247,-0.103429585695267,0.101332247257233,0.00302742421627045,0.242789939045906,9.97704887595319e-08,-0.000657975673675537,-0.149826906621456,-0.0213176608085632,0.102664098143578,0.00131142325699329,5.10852178337018e-08,0.0382972359657288,-0.107468575239182,0.0213174223899841,0.102661684155464,0.00133166648447514,7.9384150808437e-08,0.00283581018447876,-0.0853761099278927,-0.0415295958518982,0.0409038662910461,-0.102171041071415,-9.4388633442577e-07,0.0186227560043335,-0.0670008361339569,0.0415265560150146,0.0408938229084015,-0.102188907563686,6.21454091742635e-07,1.69873237609863e-05,0.000287678092718124,-0.0429233908653259,0.0314661264419556,-0.0685340464115143,6.94460364769611e-08,0.00126171112060547,-0.0534973375033587,0.0429326295852661,0.0314772129058838,-0.0685345232486725,1.9748312084289e-05,0.00994348526000977,0.0468751937150955,-0.0639887452125549,0.0358259677886963,-0.0991558730602264,-7.68798997796694e-08,-0.000282704830169678,0.00237007439136505,0.0638748407363892,0.0357319712638855, +-0.098987877368927,1.3473821852017e-05,-0.0241700410842896,-0.0202606320381165,-0.214526236057281,-0.050701480358839,-0.209534347057343,-1.12277257358073e-06,0.0587729215621948,-0.0636444687843323,0.182596623897552,-0.0518911629915237,-0.170115053653717,-0.315634727478027,-0.583707138895988,0.0920990705490112,-0.0700230002403259,0.0542425513267517,-0.164472430944443,-0.0325081348419189,-0.018704891204834,0.0381356179714203,-0.0775009393692017,-0.0162788331508636,0.146931409835815,-0.0272242426872253,-0.00719565153121948,0.0440544039011002,-0.0673033595085144,-0.0300320982933044,0.104334995150566,-0.11912739276886,0.017590343952179,0.112595677375793,-0.0890138149261475,-0.0176835656166077,0.105541467666626,-0.105757117271423,0.00762400031089783,0.127563059329987,-1.78029884168041e-08,5.66244125366211e-07,1.19209289550781e-07,-0.00503037869930267,-0.000885426998138428,0.000794470310211182,-0.00356630980968475,-2.42888927459717e-05,0.000464141368865967,0.00942835211753845,0.00446962751448154,0.00137907266616821,0.00730820000171661,0.0018007904291153,0.00123804807662964,0.0315828025341034,0.0029757171869278,0.00879895687103271,0.0509201288223267,0.0246032606810331,0.0185671448707581,0.0364857316017151,0.00605951249599457,0.0116674304008484,0.0689535737037659,-0.0306984484195709,0.127593398094177,0.0325065851211548,-0.018711268901825,0.0381294786930084,0.0217227339744568,-0.00414139032363892,0.041860818862915,0.0619962215423584,-0.028319776058197,0.0921760499477386,0.0909970998764038,0.0179468393325806,-0.238663241267204,0.27434054017067,-0.962919324636459,-0.00516366958618164,-1.16787850856781e-06,2.02655792236328e-06,-1.13248825073242e-06,-8.94069671630859e-07,1.43051147460938e-06,-1.01327896118164e-06,-0.0954701602458954,-0.106054604053497,0.0599478483200073,-0.298286855220795,-0.608213998377323,-0.00743797421455383,-0.00263869762420654,-0.315793052315712,-0.363231524825096,-0.293938994407654,-0.42407806598203,-0.302054643630981,-0.0195923447608948,-0.071926087141037,0.0249086767435074,-0.120343089103699,-0.10123487142846, +0.176825523376465,-0.0940954685211182,-0.0475573092699051,0.178466737270355,-0.0995184183120728,-0.0645154118537903,0.0532761812210083,-0.109153509140015,-0.0283857882022858,0.0957165956497192,-0.0017338590696454,-0.004669189453125,-0.00376629829406738,-4.51949100366278e-09,-0.000689208507537842,-0.000245332717895508,0.00174065958708525,-0.00377762317657471,-0.00304341316223145,0.00424329191446304,-0.000176429748535156,0.000267386436462402,0.0231729820370674,-0.00606900453567505,-0.000818133354187012,0.0256788730621338,-0.000521421432495117,0.00527602434158325,0.115518569946289,-0.0933587190229446,0.16737774014473,0.0195905566215515,-0.0719042867422104,0.0249078869819641,0.0886344909667969,-0.0461857169866562,0.164018213748932,0.0337298512458801,0.0382765233516693,-0.188007431570441,0.179482221603394,-0.182240188121796,-0.435851749032736,-0.0498250424861908,-0.0101257562637329,0.09041877835989,0.0196886828634888,-0.0768895149230957,-0.19751763343811,-0.27463111281395,-1.12290060520172,-0.389275729656219,-0.0761202871799469,-0.0318406820297241,-0.0127349868416786,0.0562313497066498,-0.0123149752616882,0.0853153485804796,0.267052382230759,-1.13983443379402,-0.398438334465027,0.0928095281124115,-0.0425657033920288,-0.0249636843800545,-0.0796191990375519,0.0341975092887878,0.0924011245369911,-0.0559398531913757,0.0377939939498901,-0.0310379527509212,-0.134376287460327,-0.0544292330741882,0.304607033729553,-0.0982664823532104,-0.18638198915869,0.214110121130943,-0.17125016450882,-0.118322169408202,0.273120790719986,-0.185094475746155,-0.195315629243851,0.0922132730484009,-0.218989729881287,-0.0841751396656036,0.199348598718643,-0.0279862657189369,-0.00102657079696655,-0.0884247089270502,-4.38197922392192e-08,0.0152902603149414,0.0494339764118195,-0.00303380936384201,0.0239834189414978,0.0691345632076263,0.0261376276612282,-0.00112444162368774,-0.087421512696892,0.000788696110248566,0.0243030786514282,0.070753276348114,0.044535543769598,-0.00814205408096313,-0.0625454261898994,0.0279081165790558,0.0370974540710449,0.0949774086475372, +0.0986180305480957,-0.166407458949834,0.215116128325462,0.134392917156219,-0.0544507950544357,0.304629445075989,0.170752108097076,-0.100530439987779,0.270983070135117,0.213555872440338,0.185623228549957,0.114776015281677,0.19021999835968,0.217219710350037,0.0513653755187988,-0.0878991931676865,-0.00587010383605957,-0.0865378566086292,-3.36919129040325e-07,0.00153070688247681,0.0410062596201897,-0.00422455370426178,-0.0120635032653809,0.142077540047467,0.0879015438258648,-0.00587064027786255,-0.0865356493741274,0.00421991944313049,-0.0120617747306824,0.14207399636507,-0.0623205006122589,0.0206954479217529,0.0287649892270565,-0.111248582601547,0.0299385786056519,0.161821406334639,-0.041817307472229,0.0600658804178238,0.140647053718567,-0.0649778246879578,-0.196767121553421,-0.121385097503662,-0.0348122119903564,-0.208728585392237,0.0167390704154968,-0.220013856887817,-0.175674915313721,-0.177563458681107,-0.183146476745605,-0.232691764831543,-0.118076331913471,-0.0562283545732498,0.0443741083145142,-0.103724598884583,-7.87344660579947e-08,0.0290990471839905,-0.187513623386621,-0.0354302898049355,0.0322660803794861,-0.18212915584445,0.0555886551737785,0.0444013476371765,-0.103969752788544,0.0344051346182823,0.0321372151374817,-0.181774515658617,0.113862428814173,0.0345174670219421,-0.122832000255585,0.0860692709684372,0.0170570611953735,-0.168109014630318,0.0606793165206909,-0.169757515192032,-0.115775763988495,0.0418136715888977,0.0600643008947372,0.140641644597054,0.0334976315498352,-0.183674514293671,0.0195615813136101,0.223243713378906,0.211416006088257,0.0581481549888849,0.240498602390289,0.22320955991745,0.153504945337772,-0.0158529579639435,-0.000150561332702637,-0.0869312528520823,1.67029270414787e-08,0.00140637159347534,-0.250888220965862,-0.0859462209045887,-0.00984078645706177,-0.216800332069397,0.0158528536558151,-0.000150740146636963,-0.08693016320467,0.0859508998692036,-0.00984203815460205,-0.216798461973667,-0.0288849622011185,0.00695091485977173,-0.0650799684226513,0.000955581665039063,-0.00256997346878052, +-0.140860512852669,-0.0457597374916077,0.0830264687538147,-0.112398214638233,-0.105993866920471,-0.246870398521423,-0.183940246701241,-0.11015111207962,-0.209913596510887,-0.188238516449928,-0.239423930644989,-0.16538017988205,-0.131368011236191,-0.250273168087006,-0.166951835155487,-0.155991226434708,-0.0728084482252598,0.021506667137146,-0.0623918622732162,-5.02894863529946e-07,0.0267866253852844,-0.0597796440124512,-0.0719958040863276,0.0333043336868286,-0.0596955716609955,0.0722446916624904,0.0214492678642273,-0.0621913075447083,0.0715587474405766,0.0333309173583984,-0.0597928762435913,0.104585569351912,0.0105478167533875,-0.0669874846935272,0.120917335152626,0.0237715244293213,-0.0753731429576874,0.103581786155701,-0.225867696106434,-0.180840983986855,0.0457587242126465,0.0830256640911102,-0.112396433949471,0.105494320392609,-0.1863032579422,-0.181946784257889,0.137062758207321,0.0620736479759216,-0.0270407075295225,0.183741748332977,0.123345732688904,-0.0590026532299817,0.0411141514778137,0.00564169883728027,-0.000347040593624115,2.53583255727108e-07,-0.000933229923248291,0.0336460862308741,0.0294365733861923,0.00320309400558472,0.0302092495840043,-0.0411180779337883,0.00564253330230713,-0.000348702073097229,-0.0294399484992027,0.00320374965667725,0.0302099117543548,-0.0727100372314453,0.0175341367721558,-0.00212904065847397,-0.058954045176506,0.0137805938720703,0.0322238565422595,-0.0379325151443481,0.0311228036880493,-0.0747550576925278,-0.0746996402740479,-0.237446680665016,-0.0923348665237427,-0.0839422345161438,-0.23805283010006,-0.144100055098534,-0.212273061275482,-0.177811741828918,-0.0522442758083344,-0.210213840007782,-0.161219775676727,-0.0967001020908356,-0.0545811243355274,0.00482320785522461,-0.0533482236787677,-2.57667693404073e-07,0.00532352924346924,-0.062974713742733,-0.0612397994846106,0.00805246829986572,-0.0607918128371239,0.0525957047939301,0.00473904609680176,-0.0531884976662695,0.0598493441939354,0.00802701711654663,-0.0609810724854469,0.0751987174153328,-0.00466090440750122,-0.060451865196228, +0.0771814286708832,-0.000527441501617432,-0.068591944873333,0.073223352432251,-0.219981230795383,-0.0937048494815826,0.0379276275634766,0.0311158299446106,-0.0747637003660202,0.0824703574180603,-0.218966417014599,-0.144023582339287,0.105701178312302,0.0394635200500488,0.00122687965631485,0.114504128694534,0.0437241792678833,0.0331530869007111,0.0132445394992828,0.0085640549659729,0.0257802456617355,8.81902678884217e-06,0.0040823221206665,0.0206951051950455,0.0359650105237961,0.00610166788101196,0.0041518360376358,-0.0113196074962616,0.00749003887176514,0.0229279845952988,-0.0359371155500412,0.00608134269714355,0.00407767295837402,-0.0694315284490585,0.0181838274002075,-0.0101154148578644,-0.0846981406211853,0.0202493071556091,-0.0146416425704956,-0.033605694770813,0.023029088973999,-0.0561355948448181,-0.116639137268066,-0.19146990776062,-0.0274702906608582,-0.0896766185760498,-0.238399475812912,-0.0258659720420837,-0.152810633182526,-0.110562324523926,0.0366315692663193,-0.190393209457397,-0.153124034404755,-0.011164203286171,-0.0429717376828194,0.00324887037277222,0.00162535160779953,4.41726566435818e-08,0.00125813484191895,-0.0449493802152574,-0.0484923236072063,0.00523549318313599,-0.0450856471434236,0.0414399467408657,0.00319498777389526,0.00132207572460175,0.046863354742527,0.0051453709602356,-0.0448396345600486,0.07004114985466,-0.00986999273300171,0.0193511694669724,0.0639722272753716,-0.00294613838195801,-0.0465111769735813,0.111982524394989,-0.178762555122375,-0.0296431481838226,0.0336105823516846,0.0230293869972229,-0.0561456382274628,0.0873653888702393,-0.223869040608406,-0.0298457145690918,0.111897319555283,0.04268479347229,-0.0264488458633423,0.109280198812485,0.0394690036773682,-0.0229991674423218,0.0236587822437286,-0.0232856869697571,-0.0243145823478699,8.73622502695071e-06,-0.00758486986160278,-0.0155946314334869,0.00898562371730804,-0.00627297163009644,-0.0151373147964478,-0.0203970521688461,-0.0211575627326965,-0.0217125415802002,-0.0051683634519577,-0.00607645511627197,-0.0131984055042267,-0.0483944714069366, +-0.0407143831253052,-0.0486472845077515,-0.059316873550415,0.00600540637969971,-0.0267833471298218,-0.107136905193329,0.0114564299583435,-0.134416937828064,-0.177898943424225,0.00617086887359619,-0.18280041217804,-0.135518312454224,-0.125271499156952,-0.0619670450687408,-0.0530048906803131,0.0957213044166565,-0.121822118759155,-0.100055932998657,-0.0282116532325745,-0.0414532124996185,-0.0123754981905222,0.0628252625465393,-0.0635785460472107,1.09132088255137e-07,0.027984082698822,-0.0606123805046082,-0.0231134742498398,0.0332717895507813,-0.0680201053619385,0.00816730596125126,0.0630649924278259,-0.0639211535453796,0.0202075615525246,0.0335490107536316,-0.0691089630126953,0.0312149748206139,0.0725522041320801,-0.0744215250015259,0.0336615703999996,0.0246574282646179,-0.0580344498157501,0.158253908157349,-0.00521910190582275,-0.147022306919098,0.100082993507385,0.0121089220046997,-0.123053967952728,0.125621795654297,-0.113906592130661,-0.0569882988929749,0.118651390075684,-0.0388532876968384,-0.0975689888000488,0.106009751558304,0.0309460163116455,-0.045490562915802,2.36750144040343e-05,0.0337097197771072,-0.00665026903152466,-0.030910313129425,0.027860552072525,-0.00863975286483765,-0.0296475365757942,0.0744860768318176,-0.0762688517570496,-0.0425284057855606,0.0160199850797653,-0.0137848854064941,0.0284493789076805,0.0271121859550476,-0.00817114114761353,0.0695152282714844,0.0853905081748962,-0.119610190391541,0.10642072558403,-0.00974224507808685,-0.0517296195030212,0.0681144595146179,0.00410979986190796,0.107703149318695,0.100178003311157,-0.00441053509712219,0.1038738489151,0.0928391814231873,0.00072401762008667,0.105177998542786,0.0700771808624268,0.0540834069252014,-0.164279192686081,0.0873916745185852,-0.0535174906253815,0.0467520952224731,0.0931477546691895,-0.0256233811378479,0.0791788101196289,0.178485929965973,-0.183155357837677,0.0938983410596848,0.20939314365387,-0.0676749348640442,0.199189275503159,0.215296030044556,-0.168246448040009,-0.177815079689026,0.177255272865295,-0.222218811511993,-0.116824004799128, +0.226351022720337,-0.148749649524689,-0.131701856851578,0.241929411888123,-0.155278742313385,-0.155283719301224,0.197272777557373,-0.159445524215698,-0.0571294277906418,0.194733321666718,-0.142825484275818,-0.0994837284088135,0.146016299724579,-0.103106021881104,0.0309293419122696,0.17922055721283,-0.139814555644989,-0.0178620964288712,0.104885280132294,-0.0323926210403442,-0.038785308599472,0.0597186088562012,-0.0383471250534058,-0.0521543025970459,0.0531551986932755,0.012141153216362,-0.016133725643158,0.0728194117546082,0.0222219824790955,-0.000878065824508667,0.0597282946109772,0.00995504856109619,-0.0203821957111359,0.0727142542600632,0.0175360441207886,-0.00212959200143814,0.0846233367919922,0.0202332735061646,-0.0146120935678482,0.0288844853639603,0.00695067644119263,-0.065080177038908,0.0589545071125031,0.013780951499939,0.0322209987789392,0.0623211264610291,0.020695686340332,0.0287663303315639,-0.000956147909164429,-0.00257009267807007,-0.140859559178352,0.0805562138557434,0.0335447788238525,0.0933870747685432,0.111251354217529,0.0299385190010071,0.161822404712439,0.00285124778747559,-0.315199017524719,-0.363266184926033,0.0590389668941498,0.0390922427177429,-0.0282151661813259,0.298007428646088,-0.613493297249079,-0.00909486413002014,0.293877303600311,-0.424029324669391,-0.302435606718063,-0.0908902883529663,0.0181207656860352,-0.238814637064934,-0.0470696985721588,0.00114213488996029,0.0164289474487305,-0.0239491164684296,0.00408796966075897,0.00689125061035156,-0.0313381254673004,0.00426697731018066,0.00978833436965942,-0.0337358713150024,0.0383342504501343,-0.187973286025226,-0.179404139518738,-0.182131767272949,-0.435919981449842,-0.213582098484039,0.185654938220978,0.11478528380394,-0.190206229686737,0.217217296361923,0.0513540357351303,-0.223247766494751,0.211421489715576,0.0581418480724096,-0.240488409996033,0.223204493522644,0.153504304587841,-0.13706237077713,0.0620735883712769,-0.0270421724999323,-0.183742731809616,0.123345732688904,-0.0590045005083084,-0.105699002742767,0.0394627451896667,0.00122889131307602, +-0.114504873752594,0.0437244176864624,0.0331561770290136,-0.117285013198853,0.0426678061485291,-0.0345642864704132,-0.109245836734772,0.0394611358642578,-0.0229635238647461,-0.130186587572098,-0.0366350710391998,-0.104884147644043,-0.120323330163956,0.0307188034057617,-0.0605748295783997,-0.0885584950447083,0.000539705157279968,-0.0436334609985352,-0.0680410824716091,-0.00975227355957031,0.020150363445282,-0.0317628718912601,0.0253192186355591,-0.0592219829559326,-0.0735411010682583,-0.00443094968795776,-0.0605462361127138,-0.062094658613205,-0.0027165412902832,-0.0460708700120449,-0.103277489542961,0.0106711387634277,-0.0666900277137756,-0.0757106356322765,-0.000355064868927002,-0.0681848302483559,-0.110797911882401,0.0350560545921326,-0.122850924730301,-0.117594256997108,0.0243160128593445,-0.0752205848693848,-0.0439349748194218,-0.0080762505531311,-0.0623966977000237,-0.0822428837418556,0.0175790786743164,-0.168270144611597,-0.019941546022892,-0.00418698787689209,3.55839729309082e-05,-0.0268620327115059,0.0375651717185974,0.0960762798786163,-0.0209942162036896,0.000393480062484741,0.00452655553817749,1.9371509552002e-06,3.57627868652344e-06,-2.08616256713867e-06,2.98023223876953e-08,7.15255737304688e-07,-6.55651092529297e-07 + } + } + Geometry: 2807663836944, "Geometry::Tongue_Left", "Shape" { + Version: 100 + Indexes: *133 { + a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,143,146,148,151,153,155,158,160,162,165,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,256,258,259,260,261,262,263,264,265,266,267,268,269,270,289,291,292,293,294,295,296,297,298,299,300,301,302,303 + } + Vertices: *399 { + a: 0.635910803452134,0,-0.137022972106934,0.654233455657959,0,0.207207202911377,0.704220946878195,0,-0.144786834716797,0.576516389846802,0,-0.476607799530029,2.00815437920392,0,-1.36818695068359,2.63889765739441,0,-0.335431098937988,2.1319927982986,0,-1.43447971343994,1.46730995178223,0,-2.45318269729614,3.23191015981138,0,-2.16118574142456,4.18942487239838,0,-0.959047317504883,3.24998900666833,0,-2.17578887939453,2.18175852298737,0,-3.28719806671143,4.04522655159235,0,-2.86883926391602,4.49901211261749,0,-1.55556869506836,3.98328971117735,0,-2.81072807312012,2.807000041008,0,-3.49796152114868,0.60919326543808,0,-0.252548217773438,0.63579660654068,0,-0.0184712409973145,0.635469973087311,0,0.1195969581604,0.665620803833008,0,0.232763767242432,0.682176470756531,0,0.217867374420166,0.70434957742691,0,-0.0386743545532227,0.68053463101387,0,-0.248219966888428,0.628820061683655,0,-0.420516490936279,0.581878423690796,0,-0.504067897796631,0.571819186210632,0,-0.449136734008789,1.81638231873512,0,-1.72769021987915,1.15356215275824,0,-0.760390758514404,1.06741738319397,0,-1.01813459396362,2.21138834953308,0,-1.01368141174316,1.22595998644829,0,-0.497836112976074,2.42778825759888,0,-0.646540641784668,1.31814193725586,0,-0.215489864349365,1.38339424133301,0,0.019139289855957,2.68695402145386,0,-0.286664009094238,1.44196391105652,0,0.0537128448486328,2.73334217071533,0,-0.363518714904785,1.47143566608429,0,0.0114016532897949,2.31312364339828,0,-1.11504745483398,1.35910852998495,0,-0.821870803833008,1.42127883434296,0,-0.585699558258057,1.95808079838753,0,-1.75681972503662,1.27909287810326,0,-1.05232095718384,1.68678557872772,0,-2.26672792434692,1.08964359760284,0,-1.41637897491455,1.4532253742218,0,-2.51674032211304,0.909520506858826,0,-1.53600692749023,0.939279317855835,0,-1.59598255157471,1.53748893737793,0,-2.32573938369751,0.935054779052734,0,-1.44769191741943,2.91812455654144,0,-2.52475881576538,2.67144435271621,0,-1.74041652679443,2.37987330555916,0,-2.13337898254395,3.54719206690788,0,-1.79527854919434,2.96685186028481, +0,-1.34849691390991,3.86469548940659,0,-1.40733528137207,3.27234899997711,0,-0.948871612548828,3.55613112449646,0,-0.605266571044922,4.19024133682251,0,-0.976071357727051,3.58729028701782,0,-0.578062057495117,4.09093701839447,0,-1.16506814956665,3.58397138118744,0,-0.711846351623535,3.50313660502434,0,-1.88805770874023,2.7661452293396,0,-1.8085880279541,3.01899385452271,0,-1.4797306060791,3.00360557436943,0,-2.46732950210571,2.52325052022934,0,-2.14261865615845,2.62966644763947,0,-2.90548086166382,2.15649455785751,0,-2.64484596252441,2.20133876800537,0,-3.28246212005615,1.83040833473206,0,-2.91283273696899,1.81650173664093,0,-2.945885181427,2.30299258232117,0,-3.16180992126465,1.93447470664978,0,-2.77552509307861,3.83676049113274,0,-3.0804295539856,3.73461525142193,0,-2.59983587265015,3.48708745837212,0,-2.86987447738647,4.22405955195427,0,-2.63144779205322,3.96631130576134,0,-2.31415271759033,4.45654588937759,0,-2.17679929733276,4.25724178552628,0,-1.84949588775635,4.40590000152588,0,-1.30303859710693,4.50732612609863,0,-1.61920595169067,4.37775850296021,0,-1.3143630027771,4.47480297088623,0,-1.945481300354,4.32342493534088,0,-1.64152717590332,4.13850831985474,0,-2.61385583877563,3.68431042134762,0,-2.55583000183105,3.87483862042427,0,-2.33125162124634,3.81172657012939,0,-2.99280166625977,3.49085277318954,0,-2.776535987854,3.51232302188873,0,-3.27440595626831,3.2619463801384,0,-3.05748224258423,2.88253808021545,0,-3.48587608337402,2.54869294166565,0,-3.45671367645264,2.55866634845734,0,-3.42574405670166,3.04618036746979,0,-3.50621509552002,2.69773161411285,0,-3.38833379745483,4.1138014793396,0,-2.9251708984375,4.27099451422691,0,-2.71631908416748,4.37265002727509,0,-2.26623392105103,4.4763885140419,0,-2.30006694793701,3.9305003285408,0,-3.11116600036621,3.22611105442047,0,-3.39328956604004,3.23055863380432,0,-3.49529075622559,0.601954817771912,0,-0.487987518310547,1.55414235591888,0,-2.49503087997437,0.99126136302948,0,-1.56442165374756,2.38886165618896,0,-3.13884830474854,1.96508455276489,0,-2.89071941375732,2.88870394229889, +0,-3.30340099334717,3.4565931558609,0,-3.34680986404419,3.56354463100433,0,-3.36894512176514,2.57935404777527,0,-2.89785623550415,3.12190955877304,0,-3.17857265472412,1.62019848823547,0,-2.1063289642334,2.08252561092377,0,-2.53985166549683,0.577891826629639,0,-0.387022018432617,0.986512422561646,0,-1.3038215637207,0.643491387367249,0,0.181492328643799,2.56769132614136,0,-0.463551998138428,1.35518884658813,0,-0.0689077377319336,4.08212852478027,0,-1.09867286682129,3.4525671005249,0,-0.745595455169678,4.56575298309326,0,-1.75611591339111,4.36205863952637,0,-1.46356010437012,4.58952176570892,0,-1.92104911804199,3.89779156446457,0,-1.43497276306152,4.11765199899673,0,-2.05390167236328,2.61882066726685,0,-0.582058906555176,3.41856628656387,0,-0.955323696136475,0.693648636341095,0,0.14989709854126,1.47404301166534,0,-0.154926776885986 + } + Normals: *399 { + a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.120483659207821,1.22050394117832,-0.975012172013521,0.20459649618715,1.60866624116898,-0.80628751963377,0.758160121738911,0.279101312160492,-1.14875745773315,0.508439189754426,-0.123756885528564,-1.16271796822548,-0.0839923524401627,-0.612549155950546,-1.24820390343666,0.0839898160554924,-0.612549930810928,-1.24820226430893,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721, +-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532, +0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508, +-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,0.344773926102203,1.88571286201477,-0.345818737521768,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994 + } + } + Geometry: 2807663839248, "Geometry::Tongue_Right", "Shape" { + Version: 100 + Indexes: *5553 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,138,139,140,141,142,143,145,146,147,148,149,150,151,152,153,154,155,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,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963, +2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401, +3402,3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812, +3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234,4235, +4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649, +4651,4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074, +5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489, +5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5965,5967,5995,5997,6028,6155,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6515,6525,6526,6529,6530,6531,6536,6544,6552,6553,6554,7214,7347,7349,7377,7379, +7410,7537,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7897,7907,7908,7911,7912,7913,7918,7926,7934,7935,7936,8591,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 + } + Vertices: *16659 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,0,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,0,0,-0.63590688072145,0,-0.137022972106934,-0.576609373092651,0,-0.476607799530029,-0.70421702042222,0,-0.144786834716797,-0.654326438903809,0,0.207207202911377,-2.00815440528095,0,-1.36818695068359,-1.46739745140076,0,-2.45318269729614,-2.1319928355515,0,-1.43447971343994,-2.63898515701294,0,-0.335431098937988,-3.23210198618472,0,-2.16118574142456,-2.18185389041901,0,-3.28719806671143,-3.24998905882239,0,-2.17578887939453,-4.18952023983002,0,-0.959047317504883,-4.04522659629583,0,-2.86883926391602,-2.80699241161346,0,-3.49796152114868,-3.98328972607851,0,-2.81072807312012,-4.49900448322296,0,-1.55556869506836,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0, +-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,0,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-0.635891735553741,0,-0.0184712409973145,-8.7440013885498e-05,-1.43051147460938e-06,0,-0.609288334846497,0,-0.252548217773438,-8.7440013885498e-05,1.43051147460938e-06,0,-0.57798707485199,0,-0.387022018432617,-9.52482223510742e-05,-1.43051147460938e-06,0,-9.51290130615234e-05,0,0,-0.581973314285278,0,-0.504067420959473,-8.74996185302734e-05,0,0,-0.6020427942276,0,-0.487987518310547,-8.53538513183594e-05,0,0,-0.680522680282593,0,-0.248219966888428,-9.51886177062988e-05,0,0,-0.704337596893311,0,-0.0386743545532227,-9.51886177062988e-05,0,0,-0.693636536598206,0,0.149897575378418,-9.5367431640625e-05,0,0,-0.66571569442749,0,0.232763290405273,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-0.643578886985779,0,0.181492328643799,-9.5367431640625e-05,0,0,-2.21148344874382,0,-1.01368141174316,-1.15356246195734,0,-0.760390758514404,-1.22605156898499,0,-0.497835636138916,-1.81647753715515,0,-1.72769021987915, +-1.06750896573067,0,-1.01813507080078,-1.62029457092285,0,-2.1063289642334,-0.986603140830994,0,-1.30382108688354,-0.909619212150574,0,-1.53600692749023,-1.45331990718842,0,-2.51674032211304,-0.939271569252014,0,-1.59598255157471,-1.5542368888855,0,-2.49502992630005,-0.991360545158386,0,-1.56442165374756,-1.95807319879532,0,-1.75681972503662,-1.35910884290934,0,-0.821870803833008,-1.27918446063995,0,-1.05232095718384,-2.31311604380608,0,-1.11504745483398,-1.42137041687965,0,-0.585699558258057,-2.61891603469849,0,-0.582058906555176,-1.47414219379425,0,-0.154927253723145,-2.68704867362976,0,-0.286664009094238,-1.38349306583405,0,0.019139289855957,-1.44195628166199,0,0.0537128448486328,-2.56768417358398,0,-0.463552951812744,-1.35528755187988,0,-0.0689067840576172,-3.54727947711945,0,-1.79527854919434,-2.67163616791368,0,-1.74041652679443,-2.96704289317131,0,-1.34849691390991,-2.91821196675301,0,-2.52475881576538,-2.38006433844566,0,-2.13337898254395,-2.57944923639297,0,-2.89785623550415,-2.08261382579803,0,-2.53985166549683,-1.83049595355988,0,-2.91283273696899,-2.20143461227417,0,-3.28246212005615,-1.8164941072464,0,-2.945885181427,-2.38894999027252,0,-3.1388463973999,-1.96507656574249,0,-2.89072036743164,-3.00369313359261,0,-2.46732950210571,-2.7661452293396,0,-1.8085880279541,-2.52333784103394,0,-2.14261865615845,-3.50322416424751,0,-1.88805770874023,-3.0190811753273,0,-1.4797306060791,-3.89787948131561,0,-1.43497276306152,-3.41865450143814,0,-0.955323696136475,-4.19033718109131,0,-0.976071357727051,-3.55621886253357,0,-0.605266571044922,-3.58728265762329,0,-0.578062057495117,-4.08212089538574,-2.86102294921875e-06,-1.09867286682129,-3.45266270637512,0,-0.745596408843994,-4.22414687275887,0,-2.63144779205322,-3.73480708897114,0,-2.59983587265015,-3.96650198101997,0,-2.31415271759033,-3.83684757351875,0,-3.0804295539856,-3.48727813363075,0,-2.86987447738647,-3.45668143033981,0,-3.34680986404419,-3.12200516462326,0,-3.17857265472412,-2.54878067970276,0,-3.45671272277832,-2.88252997398376,1.43051147460938e-06,-3.48587703704834, +-2.55876159667969,0,-3.42574214935303,-3.22620677947998,0,-3.39328956604004,-2.88879144191742,0,-3.30340003967285,-3.81181478500366,3.814697265625e-06,-2.99280166625977,-3.68431045114994,0,-2.55583000183105,-3.49094125628471,0,-2.77653408050537,-4.138596534729,-3.814697265625e-06,-2.61385583877563,-3.87492710351944,0,-2.33125352859497,-4.37273824214935,0,-2.26623392105103,-4.11774736642838,0,-2.05389976501465,-4.5073184967041,-1.43051147460938e-06,-1.61920499801636,-4.40598773956299,0,-1.30303955078125,-4.37785375118256,0,-1.31436491012573,-4.56584823131561,0,-1.75611591339111,-4.36214578151703,0,-1.46356010437012,-4.1138014793396,0,-2.9251708984375,-3.93059507012367,2.38418579101563e-06,-3.11116600036621,-3.512411236763,0,-3.27440595626831,-3.56373447179794,1.43051147460938e-06,-3.36894607543945,-4.27108973264694,-2.38418579101563e-06,-2.71631908416748,-4.47489869594574,0,-1.945481300354,-4.5896167755127,0,-1.92104911804199,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,0,-0.682264447212219,0,0.217867374420166,-8.53538513183594e-05,0,0,-2.73343658447266,0,-0.363519668579102,-1.4715348482132,0,0.0114016532897949,-4.09102535247803,0,-1.16507005691528,-3.58396339416504,0,-0.711845397949219,-4.32351243495941,0,-1.64152812957764,-4.45663392543793,0,-2.17679929733276,-4.47657835483551,-1.43051147460938e-06,-2.3000659942627,-3.86479067802429,0,-1.40733528137207,-4.25733715295792,0,-1.84949588775635,-2.42788434028625,0,-0.646540641784668,-3.27243721485138,0,-0.948871612548828,-0.635565280914307,0,0.1195969581604,-1.3182327747345,0,-0.215490341186523,-8.74996185302734e-05,0,0,-9.52482223510742e-05,1.43051147460938e-06,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05, +0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,-0.571906685829163,-1.43051147460938e-06,-0.449136734008789,-9.5367431640625e-05,0,0,-1.53748178482056,0,-2.32573843002319,-0.935153365135193,0,-1.44769287109375,-2.30298519134521,2.86102294921875e-06,-3.16180992126465,-1.9345703125,0,-2.7755241394043,-3.04627561569214,0,-3.50621509552002,-2.69781851768494,0,-3.38833379745483,-3.23065388202667,0,-3.49529075622559,-2.62975436449051,0,-2.90548086166382,-3.26204150915146,0,-3.05748414993286,-1.68688094615936,0,-2.26672792434692,-2.15658277273178,0,-2.64484596252441,-0.628807902336121,0,-0.420516967773438,-1.08974277973175,0,-1.41637849807739,-9.52482223510742e-05,0,0,-9.5367431640625e-05,0,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,0,0,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,0,0.000397086143493652,0,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828757882118225,0,0,0.000902518630027771,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06, +-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,0,0,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,0,-0.000397086143493652,0,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0,-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,0,1.43051147460938e-06,0.000117987394332886,0,0,0.000116556882858276,0,-3.33786010742188e-06,0,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543408095836639,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813722610473633,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,0,1.43051147460938e-06,-0.000117987394332886,0,0,-0.000116556882858276,0,-3.33786010742188e-06,0,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945, +0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05, +0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047, +0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05, +0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05, +0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05, +0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047, +0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05, +0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05, +0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496, +0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0, +8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05, +0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047, +0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0, +8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05, +0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05, +0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05, +0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05, +0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508, +0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05, +0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05, +0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945, +0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05, +0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0, +0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05, +0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0, +7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05, +0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699, +0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047, +0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668, +0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578, +0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0, +8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05, +0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0, +0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675, +0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0, +0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0, +0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05, +0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0, +0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477, +0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477, +0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0, +9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05, +0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0, +0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05, +0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05, +0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0, +0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883, +0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0, +0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05, +0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0, +9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, +0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0, +0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883, +0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0, +0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0, +0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05, +0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477, +0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0, +0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0, +0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05, +0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0, +0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0,0.000311195850372314,0,0,0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,-7.62939453125e-06,1.9073486328125e-06,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145077705383301,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778466463088989,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,-6.67572021484375e-06,-2.78949737548828e-05,7.62939453125e-06, +0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,0,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,1.43051147460938e-06,0,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,7.62939453125e-06,-1.9073486328125e-06,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,-6.67572021484375e-06,2.78949737548828e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,0,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,3.55243682861328e-05,-4.76837158203125e-06,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,1.43051147460938e-06,0,0,0,-3.55243682861328e-05,0,0,-0.000365912914276123,0,0,-0.000880539417266846,0,0,0.000715732574462891,0, +0,0.000732406973838806,0,0,-7.75158405303955e-05,0,0,3.55243682861328e-05,0,0,0.000365912914276123,0,0,0.000880539417266846,0,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,0,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,0,0,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,0,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,0,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,0,0,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,0,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 + } + Normals: *16659 { + a: 2.27689743041992e-05,3.20672988891602e-05,0.000124514102935791,-1.16591727733612,-0.240311801433563,-0.206880882382393,-0.913561075925827,0.00994575023651123,-0.584499821066856,-0.315583378076553,-0.177608251571655,-0.60228043794632,-0.0239431262016296,-0.152085363864899,-0.212756350636482,-1.54715305566788,0.132637053728104,-0.185484156012535,-1.63198620080948,0.721433788537979,-0.849138200283051,0.241971671581268,0.613164186477661,-1.0665009021759,0.316049695014954,0.74718501418829,-0.0224082171916962,-1.58791506290436,0.707276023924351,0.0987655520439148,0.196411609649658,0.613466709852219,-0.173938423395157,-1.07356637716293,0.400617688894272,-0.467543333768845,-0.262519783692767,1.13174542784691,-1.03474386036396,0.661105394363403,0.268221111036837,-0.971742909401655,-0.57694870319791,-0.250454187393188,-0.854813247919083,-1.61033010482788,0.63511061668396,-0.683864237740636,-0.262519301498045,1.13484868407249,-0.964971464127302,0.697285160422325,0.677558615803719,-1.17043273150921,-0.149441973067837,-0.97621020115912,-1.2896480858326,-1.12993746995926,0.547495991922915,-1.14102217555046,-0.262514572448254,1.13317188620567,-1.01411463320255,0.512449681758881,0.790123790502548,-1.19419477880001,-0.119208658913621,-0.824118673801422,-1.02771234512329,-0.872981801629066,0.76610954105854,-1.21790581941605,-0.262518899932942,1.11781790852547,-1.13946427404881,0.660008355975151,0.594155862927437,-1.40319916605949,-0.11920838000907,-0.818485379219055,-1.09466391801834,-0.786887782706344,0.673794075846672,-1.39644461870193,1.90639120773994e-05,0.746517777442932,-1.76961463689804,0.42756325006485,-0.00193877331912518,-1.80498969554901,-0.126878530339582,-0.560916766524315,-1.69107401371002,-0.576956666649494,0.136762849986553,-1.80973088741302,0.132587261497974,-0.694139184430242,-1.7294989824295,0.715989142656326,-0.551293224096298,-0.786049470305443,0.876190841197968,-0.355932012200356,-0.546774178743362,0.630465626716614,-0.695573136210442,-0.776317268610001,0.796463400125504,-0.415360301733017, +-0.626329571008682,0.791523873806,-0.106114879250526,-0.186304211616516,0.83971780538559,-0.535534754395485,-0.489210397005081,0.94908082485199,-0.367752172984183,-0.287983655929565,0.268673218786716,-0.197480635717511,-0.0111175775527954,0.412016898393631,0.157775579020381,0.0330725908279419,0.389458477497101,-0.00873500108718872,0.0260237455368042,0.126959718763828,-0.00951065123081207,0.0197047591209412,0.496620073914528,0.298215916380286,0.27671355009079,0.51661628484726,0.236968532204628,0.31736296415329,0.348649531602859,0.464357867836952,0.485252887010574,-0.000166714191436768,-0.000764849595725536,-6.41942024230957e-05,4.64916229248047e-05,4.26024198532104e-05,1.88350677490234e-05,-0.173185884952545,0.00339797139167786,-0.2273870408535,0.0804297924041748,-0.135916650295258,-0.159799411892891,6.63399696350098e-05,-6.97970390319824e-05,-0.000123158097267151,-0.117792308330536,0.0394893884658813,-0.121384382247925,-0.0635263323783875,-0.166486769914627,-1.1121646463871,1.67388039827347,0.725799754261971,-0.681956082582474,1.2652713060379,0.342959254980087,-0.814976945519447,1.45459306240082,0.608475118875504,0.000539183616638184,1.46634268760681,0.536579959094524,0.284443229436874,1.45160299539566,0.562016159296036,0.322017297148705,1.01497256755829,0.536536008119583,0.63135538995266,0.903989166021347,0.625417411327362,1.16240686178207,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.43242160230875,0.377818286418915,1.44677823781967,0.291686438024044,0.127883791923523,1.33702057600021,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.541885435581207,0.499287456274033,0.753043949604034,-0.822150065563619,0.466420635581017,1.24807327985764,-0.914204845990753,0.659946888685226,0.760876655578613,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,0.00137031078338623,1.83294171094894,0.273091407492757, +-0.0377517342567444,1.66545343399048,0.550613388419151,0.012391597032547,1.56471884250641,0.556147400289774,-0.0966790318489075,-0.0126661956310272,0.976471424102783,0.326926469802856,0.533524811267853,0.916109621524811,0.344792306423187,0.738515704870224,1.03014954924583,0.115300714969635,0.0272664427757263,0.781007051467896,-0.619631245732307,-0.237079322338104,0.439366321777925,-0.959396660327911,-1.16318753361702,0.760816186666489,-0.692750185728073,-1.21914592385292,0.526268573012203,-0.576831176877022,-0.50671261548996,0.988277971744537,-0.684110414236784,-0.573809146881104,0.688385270535946,-0.867743141949177,-1.13132801651955,0.947998553514481,-1.78472995758057,-0.528809487819672,0.653118491172791,-1.59750151634216,0.545366123318672,1.0639106631279,-1.46182864904404,0.456311896443367,1.09796705842018,-1.09547060728073,1.49366742372513,0.742532581090927,-1.30511432886124,1.13225799798965,0.894705176353455,-0.944893509149551,1.31604173779488,0.47277881577611,-1.08428926765919,1.21032673120499,-0.0548665672540665,-0.701022401452065,1.1955229640007,-0.524170788004994,-0.722540110349655,1.26275259256363,-0.282052993774414,-0.637647956609726,1.17633962631226,-0.117716930806637,-0.542793929576874,0.840272910892963,-0.250517711043358,0.163807392120361,0.324556693434715,-0.360174536705017,0.0860381126403809,-0.115832686424255,-0.718836218118668,0.122336030006409,-0.0540967583656311,-0.396296575665474,-0.163195192813873,-0.60698527097702,-1.00095996260643,0.144007086753845,-0.38711816072464,-0.844500996172428,-0.745927020907402,-0.67011870443821,-1.14504119753838,-0.996042430400848,-0.677311837673187,-0.673124119639397,-0.709598660469055,-0.704195737838745,-0.903533548116684,-0.478152826428413,-0.721471443772316,-0.988900542259216,-0.669058781117201,-0.666787043213844,-1.16921213269234,-0.592624947428703,-0.637175917625427,-0.999900132417679,-1.04062359035015,0.281357169151306,-1.00132443010807,-1.12000967562199,0.534246549010277,-0.665408492088318,-1.18508848547935,-0.0327898412942886,-0.836729533970356,-1.25749242305756, +1.07221993803978,-0.607341356575489,-1.21462106704712,1.00049267709255,-0.494261741638184,-0.289901584386826,1.29820761084557,-0.962001727893949,-0.225003533065319,1.21926210820675,-1.08551689237356,-0.120514489710331,1.22040452063084,-0.97502850368619,-0.052766352891922,1.28832253813744,-1.05252977460623,0.204597634263337,1.60867315530777,-0.806281916797161,0.225171983242035,1.27583736181259,-1.02904293686152,0.723326846957207,0.676983207464218,-1.12500961124897,0.758149698376656,0.279099464416504,-1.14875727891922,0.793812900781631,-0.0164097249507904,-1.312395632267,0.508440327830613,-0.123749971389771,-1.16271236538887,0.533544038447928,-0.0200812220573425,-1.20949444174767,-0.0839889591873089,-0.609957695007324,-1.24727627635002,-0.172890312969685,-0.560951113700867,-1.39662304520607,0.0839932093083462,-0.609958469867706,-1.24727463722229,0.102117602632916,-0.662188783288002,-1.42814111709595,-0.0486070728734376,-0.715996816754341,-1.31451740860939,-0.0463023430049816,-0.533515989780426,-1.42870756983757,-0.804806768894196,0.00139874219894409,-1.30235183238983,-0.806599229574203,0.58848175406456,-1.16165420413017,-0.864578778141777,-0.00262144207954407,-1.31020405888557,-0.344774360742974,1.61761999130249,-0.759577307850122,-0.451375104486942,1.51643300056458,-0.826774787157774,-0.0448345988988876,1.3156241774559,-1.00873395055532,0.0707771959399572,1.32349890470505,-0.898691952228546,-0.0897306278347969,1.62783771753311,-0.74655794724822,0.233051717281342,1.59332710504532,-0.855175741016865,0.290112920105457,1.29819542169571,-0.907721446827054,0.427900165319443,1.18217082321644,-1.03836122900248,0.293768122792244,1.19696226716042,-0.966163994278759,0.841730654239655,0.931804478168488,-1.13507458567619,1.08922828733921,-0.0217502117156982,-1.20991575717926,1.08393569290638,0.000399649143218994,-1.24969437718391,0.661719940602779,-0.214362561702728,-0.981971874833107,1.08581501245499,-0.466879904270172,-1.02211675047874,0.522050477564335,-0.755269125103951,-0.79476635158062,0.22848023432249,-0.787170574069023, +-1.06715959310532,0.099888451397419,-0.68646103143692,-1.0419784411788,0.714742369949818,-0.755269721150398,-0.794766984879971,0.730974562466145,-0.714991629123688,-0.819240488111973,0.774805270135403,-0.790098503232002,-0.585159309208393,0.759288981556892,-0.611934214830399,-0.571379512548447,-0.258354425430298,-0.0502884984016418,-0.987183451652527,-0.152585625648499,0.846274420619011,-0.940497174859047,-0.127714335918427,-0.209318280220032,-0.944458305835724,0.544471681118011,1.15379427373409,-0.625257395207882,0.328659176826477,1.19594107568264,-0.766841366887093,0.389959335327148,1.29731523990631,-0.992376059293747,0.837137740868002,1.18798451125622,-0.690323755145073,0.647967934608459,1.06689208745956,-0.826868861913681,1.04700767993927,0.886244557797909,-0.666475310921669,1.07445196807384,1.20325626432896,-0.40325391292572,1.06295697391033,1.30363854765892,-0.721705198287964,1.057108938694,1.15375630557537,-0.733633905649185,1.73910254240036,0.772451475262642,-0.498098894953728,1.62194103002548,-0.0591777861118317,-0.470157444477081,1.72104394435883,0.0587849318981171,-0.387019112706184,1.39416420459747,-0.630755826830864,-0.453466445207596,1.33090245723724,-0.504739910364151,0.295772701501846,0.606212481856346,-0.440488159656525,0.327813394367695,0.951020769592995,-0.767956897616386,-0.256127789616585,0.791749842464924,-1.06966439634562,-0.498910740017891,1.01490611582994,-1.34479573369026,0.0719393864274025,0.909953542053699,-0.667586177587509,0.434388171881437,0.750728979706764,-0.660596579313278,0.335528716444969,0.842648290097713,-1.34932360053062,0.0894105508923531,0.0518967509269714,-0.785337090492249,0.211875587701797,-0.137118339538574,0.965204447507858,0.337543934583664,-0.368718445301056,0.32023149728775,0.187582895159721,0.360552787780762,1.4219685792923,0.109510272741318,0.489474326372147,1.23816737532616,0.233746528625488,0.472436383366585,1.02160713076591,-0.151315689086914,0.256481477074885,-0.0710880160331726,-0.440301300492138,0.69925394654274,0.637663692235947,-0.0623703598976135,0.677355363965034, +-0.267045795917511,-0.833340048789978,0.51214699447155,-0.0845068097114563,-0.460718646645546,0.551953732967377,-0.441922426223755,-0.793557853903621,0.772852301597595,-0.0453571677207947,-0.554902374744415,1.13468185067177,-0.601791709661484,-0.785137236118317,0.774521112442017,-1.45972961187363,-0.693990321364254,0.967355132102966,-1.55421406030655,-0.453331485390663,0.300829101756221,-1.49604964256287,-0.248082339763641,0.337003856897354,-1.70812374353409,0.00916454195976257,0.696571469306946,-1.20840704441071,-0.279839038848877,0.256493517594663,-1.8599436879158,-0.444375993218273,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0281353355385363,-0.997822552919388,0.216074347496033,0.0838359710760415,-1.2048719227314,0.494569063186646,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.357405807822943,-1.84019339084625,-0.387582819908857,-1.26311898231506,-0.937444299459457,-0.201452910900116,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.638555805727833,-1.48806464672089,0.00903072953224182,-0.750104188919067,-0.506020545959473,-0.775803178548813,-0.696132689714432,-0.192689955234528,-0.472597789019346,-0.314200940420392,-1.12407279014587,-0.923451911658049,-0.24188207089901,-1.10456876456738,-0.955957323312759,-0.361878827214241,-1.54680669307709,-0.883593395352364,-0.281996116042137,-1.02101315557957,-1.00717423856258,-0.982605390250683,-0.396713539958,-0.579211950302124,-0.615037173032761,-1.56529301404953,-0.66562045738101,-0.89607048034668,-1.03760172426701,-0.949972376227379,-1.08366096019745,-1.53172677755356,0.419948473572731,-1.08207410573959,-1.16565904021263,0.578623279929161,-1.23885184526443,-1.11437630653381,0.337048649787903,-1.36567080020905,-0.562188386917114,1.29203933477402,-1.12509119510651,-1.09994253516197,0.702642276883125,-1.31338411569595,-1.38616764545441,0.0610187649726868,-1.50119131803513,-0.777707330882549,-0.815202593803406,-1.47671115398407,-0.941698759794235,-0.649157598614693,-1.27863705158234,-0.666943609714508,-1.03921023011208,-1.30492830276489, +-0.604949355125427,-1.10494035482407,-1.33303970098495,-1.03640148043633,-0.766430422663689,-1.38175857067108,-1.03451906144619,-0.742872029542923,-1.31387054920197,-0.68990458548069,-0.708648011088371,-1.27682077884674,-0.739906072616577,-0.843851447105408,-1.10945695638657,-0.72914844751358,-1.09947884082794,-1.16614979505539,0.696242198348045,-1.25934436917305,-0.883820042014122,0.5177171677351,-1.28701350092888,-0.77648589015007,1.45936197042465,-0.944396406412125,-0.818061172962189,1.15447491407394,-1.27228158712387,-0.970825895667076,1.07047528028488,-0.716188944876194,-0.974627047777176,1.03942173719406,-0.876335948705673,-0.750330746173859,1.50793033838272,-0.692312985658646,-0.722409605979919,1.51435732841492,-0.654386334121227,-0.972438663244247,1.62337863445282,-0.23786423355341,-0.329255282878876,1.9490749835968,-0.144308477640152,-0.476024221628904,1.79610055685043,-0.287568464875221,-0.894178092479706,1.2512566447258,-0.576350316405296,-1.35182136297226,0.760815918445587,-1.18189126253128,-0.544864814728498,1.76899069547653,-0.373373601585627,-0.576975360512733,0.507146924734116,-0.988420695066452,0.69166059512645,0.0868802070617676,-1.22141790390015,0.188138350844383,0.58930616080761,0.162414848804474,0.187553364783525,0.736033961176872,0.532335638999939,0.391483128070831,0.856711804866791,0.95176028041169,0.988028988242149,1.28781515359879,-0.550525173544884,0.762719739228487,0.578305721282959,-0.915182113647461,0.562059372663498,1.73156255483627,0.268642760813236,0.728303238749504,1.63895088434219,-0.0935689210891724,0.702010571956635,1.80767667293549,0.0715787443332374,0.596257486219884,1.76136165857315,0.265727765858173,0.344764222641061,1.88381153345108,-0.35139156319201,0.451374453492463,1.51644057035446,-0.826773099601269,0.366639986634254,1.87952637672424,-0.476496465504169,0.289731015701364,1.90240997076035,-0.343881847336888,0.346520279559684,1.55412709712982,-1.07236540317535,0.319236760053229,1.59172290563583,-0.989894062280655,0.41098161532409,1.37985408306122,-1.12718757987022,0.307923376560211, +1.68536382913589,-0.891816407442093,0.404866747558117,0.457042396068573,-1.67737454175949,0.05797723798878,-0.040850818157196,-0.479937955737114,0.0432012275116449,0.107149541378021,-0.437056057155132,-0.0665823630988598,-0.00335431098937988,-0.081670097541064,-0.00255930423736572,-0.0615086555480957,-0.461108490824699,-0.0253458768129349,-0.00861722230911255,-0.698158025741577,-0.0715568028390408,0.00241971015930176,-0.138340964447707,0.0839717946946621,0.0918899178504944,-0.479078274220228,0.0923748351633549,0.0320242047309875,-0.913072228431702,0.15073461458087,-0.395535171031952,-0.731160454452038,0.0642055422067642,-0.33810818195343,-1.00382861495018,0.0434592589735985,0.328439176082611,0.431270867586136,0.0921502821147442,1.78813934326172e-07,4.17232513427734e-07,0.2308827675879,0.599710375070572,0.509127646684647,0.709871176630259,0.162236630916595,-0.32836427539587,-0.133122742176056,-0.318976603448391,-0.859865576028824,0.0143033266067505,-0.324779510498047,-0.603271380066872,-0.00767624378204346,-0.467467963695526,-0.907363831996918,0.94681791216135,-0.925919987261295,-0.968253016471863,1.06833240389824,-1.0865786075592,-0.987176269292831,1.47956556081772,-1.16870227456093,0.0450340956449509,1.33433353900909,-1.05756455659866,-0.54900442995131,1.34067749977112,-1.07716698944569,-0.299261465668678,0.990751534700394,-1.71218031644821,-0.0226578488945961,-0.72856268286705,-1.4468939602375,-0.192890184000134,0.417880442567366,-1.47040221095085,-0.560392320156097,0.291448828406828,-1.22308778762817,-0.721169292926788,-0.151817253244133,-1.16323705017567,-0.89501116424799,-0.136377344635548,-1.22652113437653,-0.954713139683008,0.0928196460008621,-1.28687193989754,-1.07517227530479,0.144289717078209,-1.34973323345184,-1.03733745217323,0.099182665348053,-1.36009323596954,-0.968566492199898,-0.244149163365364,-1.28246656060219,-1.03269822895527,-0.351275527849793,-1.25350540876389,-1.13461817800999,-0.715589217841625,-1.03311812877655,-1.20933565497398,-1.59127080440521,-0.978834420442581,-0.174203000962734,0.200958132743835, +0.314088016748428,-0.133544579148293,0.168514370918274,0.225655555725098,-0.0671069771051407,0.733699407428503,0.41677463054657,-0.0521122068166733,-0.0876788347959518,0.159300684928894,-0.600793473422527,-0.146723762154579,0.0995345115661621,-0.179682344198227,-0.589308530092239,0.174604415893555,-0.173957914113998,-0.574047300964594,0.121808052062988,0.266901347786188,-0.363864406943321,0.0594217777252197,0.587303206324577,-0.415547087788582,0.0772577524185181,0.510293826460838,0.737010195851326,0.538031548261642,-0.214362307917327,-0.546769574284554,0.500250816345215,-0.767823874484748,-0.213439650833607,0.722269684076309,-0.701756045222282,0.184481676667929,0.83559188246727,-1.03362153097987,0.0488868252723478,0.736472383141518,-0.741445705294609,0.461818680167198,0.414966821670532,-0.849434293806553,0.6817587018013,-0.111155182123184,-0.99728599190712,0.158859729766846,0.257875025272369,-0.403835564851761,0.743029892444611,-0.621995031833649,-1.1688694357872,0.871723636053503,-0.164487540721893,-1.40279731154442,1.07469955831766,-0.000428676605224609,-1.06967511773109,1.36484736204147,-1.2315673828125,-0.72735321521759,-0.498848229646683,-1.25451108813286,-0.59922930598259,-0.346862941980362,-1.41308224201202,-0.49173703789711,-0.436936289072037,-1.52126276493073,-0.412930585443974,-0.308584421873093,-1.55669128894806,-0.3058962225914,0.429877117276192,-1.64260691404343,-0.506834477186203,0.543370336294174,-1.63401919603348,-0.359284788370132,0.691940702497959,-1.76409202814102,0.00679948925971985,0.0652283430099487,-1.51649755239487,-0.81645467877388,-1.06056427955627,0.0796251744031906,-0.749038636684418,-0.871898078417871,-0.704578131437302,-1.25933000445366,0.628079399466515,-0.140000253915787,-1.76122575998306,1.0938378572464,-0.715175524353981,-1.48616749048233,-0.116748034954071,0.171392142772675,-0.254009157419205,-0.0419191420078278,-0.12848624587059,0.0665911436080933,-0.0252695495728403,0.281335115432739,-0.2589071393013,-0.679931402206421,0.228977024555206,-0.506842911243439,0.596167698502541,0.355773717164993, +-0.170202374458313,-0.81699101626873,0.405151009559631,0.0179863274097443,0.929506316781044,0.492405951023102,0.140824973583221,0.775521914009005,0.347627520561218,0.142375081777573,0.743786791805178,0.308106184005737,0.135519981384277,0.493051379919052,0.304062008857727,-0.11811563372612,-0.20002344250679,0.216682612895966,-0.301098167896271,-0.463107369840145,0.285990357398987,-0.433048009872437,-0.728054195642471,0.139668405056,0.223181366920471,0.445702612400055,-0.916539072990417,-0.279988437891006,0.600562080740929,-1.09894993901253,-0.763939425349236,0.573840637574904,-1.14265102148056,-1.02040545642376,0.609981164336205,-0.748113632202148,-0.441476196050644,-0.0249423384666443,-1.35147961974144,-0.524167999625206,-0.0765139758586884,-1.47887676954269,-0.838672883808613,-0.0722322389483452,-1.5432785153389,-0.650082141160965,0.202096151653677,-1.46086364984512,-0.577644020318985,0.163782548159361,-1.38882067799568,-0.55871370434761,-0.460926342755556,-1.41483873128891,-0.333270043134689,0.0495202177044121,-0.630579322576523,-0.780275493860245,-0.302774691954255,-0.488794773817062,-0.635587155818939,-0.60431457310915,-0.238753199577332,-0.305603448301554,-0.44196816906333,-0.123320996761322,-0.0529126636683941,-0.381088756024837,-0.398500561714172,0.825117975473404,0.0495413427285882,-1.31864747405052,-0.78921315073967,-0.557509567588568,-1.20678924024105,-0.792998533695936,-0.8598344437778,-1.09676097333431,-0.4133539237082,-0.970819424837828,-0.990492119453847,-0.0924414731562138,-0.958506312221289,-0.990505191497505,-0.0793833844363689,-0.219148218631744,-0.93229927495122,-1.37413117289543,-0.687385022640228,-0.497952401638031,-0.748521536588669,-0.612932588905096,-1.13008594512939,-0.764551859349012,-0.427501119673252,-1.28001064062119,-0.857589337974787,-0.0263925202773407,-0.896127469837666,-1.19225949048996,-0.718113601207733,-1.04245716333389,-0.885479599237442,-0.415813148021698,-0.11290317773819,-0.733465850353241,-0.874615434557199,-1.00296080112457,-0.724965631961823,-0.844608254730701,-0.94824930280447, +-0.926833838224411,-0.561741888523102,-0.264219455420971,-0.838242888450623,-0.450984291732311,0.243462562561035,-0.757916145026684,-1.0211506485939,-0.998891459777951,-0.454053521156311,-0.811382532119751,-0.898547893390059,-0.653011366724968,-0.53705883026123,-0.362207822501659,-0.983633644878864,0.00817227363586426,0.833131767809391,-0.884735427796841,-0.949409671127796,-0.885149599052966,-0.507975067943335,-0.871264591813087,-0.69038494117558,-0.733752477914095,0.0977547168731689,1.03898254036903,-1.48455548286438,-0.460687480866909,-0.815607383847237,-1.63986420631409,-0.190352082252502,0.616353906691074,-1.28724110126495,-0.322658091783524,0.458958439528942,-1.28474843502045,-0.281652294099331,1.14079090952873,-1.03072134405375,-0.467890411615372,0.106507197022438,-1.31642749905586,0.265003770589828,1.07560221850872,-0.757006302475929,-0.139907240867615,-0.287737026810646,-0.935514688491821,0.222476422786713,0.307526275515556,-1.51780796051025,0.222009897232056,0.230836275964975,-1.46502947807312,-0.0643958747386932,-0.575934290885925,-1.70537197589874,-0.150019824504852,-0.227863185107708,-1.68088710308075,0.337144076824188,-0.435265451669693,-1.43934559822083,0.401588469743729,-0.392907038331032,-1.4823197722435,0.116402894258499,-0.328811623156071,-1.80014801025391,0.115244626998901,-0.0408204793930054,-1.7567440867424,0.731708700267063,-0.776347264647484,-1.40102589130402,-0.509054720401764,0.229806840419769,-0.826576314866543,-0.295067369937897,-0.296818509697914,-1.19507437944412,-0.107051968574524,-0.234913900494576,-1.02455803751945,-0.141582548618317,-0.588111598044634,-0.916000515222549,-0.159929811954498,-0.619622565805912,-0.87579345703125,-0.451551198959351,0.20702787488699,-1.31503438949585,-0.713418357074261,0.895454697310925,-0.710868895053864,-0.715841881930828,0.144833847880363,0.364166557788849,-0.447449594736099,0.255407214164734,-0.646417781710625,-0.264085114002228,-0.595262080430984,-0.49337100610137,-0.918233744800091,0.337570998817682,0.894615828990936,-1.18699295818806,0.470259182155132, +0.71542900800705,-1.22519971430302,0.775374239310622,0.573450308293104,-1.02398102730513,0.689002944156528,0.511006772518158,-1.11435075104237,0.359713144600391,0.477901011705399,-0.836736015975475,0.184727944433689,0.564706385135651,-0.652619756758213,1.77901631593704,0.342711672186852,-1.20380975306034,0.53190490603447,0.656925454735756,-0.920254461467266,0.294568676501513,0.903723876923323,-0.921571366488934,1.00303916539997,-0.163935929536819,-1.2255142480135,0.75722430087626,0.572011940181255,-1.07135639339685,0.99532387778163,0.156832471489906,-1.04091660678387,1.02418839372694,-0.0688746888190508,-1.09371288120747,1.00463353842497,0.0573395863175392,-0.183826453983784,1.09653896093369,-0.204356133937836,-0.475392624735832,0.460821539163589,-0.298561632633209,-0.339534863829613,0.666733264923096,-0.78726714849472,-0.381322160363197,0.908398768631741,-0.543533384799957,-0.432429358363152,0.657692164182663,-0.489996314048767,-0.458168879151344,0.695135205984116,-0.757074117660522,-0.867069013416767,1.53864812850952,-0.272837165743113,-0.59114658087492,0.855700872838497,-0.663952946662903,-0.0199847742915154,1.40435799956322,-0.777230322360992,-0.469850793480873,0.768884211778641,-0.855968402698636,-0.453669361770153,0.718461453914642,-0.959827840328217,-0.496323175728321,0.945143740624189,-0.923772130161524,-0.560075350105762,0.78766168653965,-0.866057071834803,-0.529199622571468,0.747950226068497,-0.928703725337982,-0.787875432521105,1.5454506278038,-0.180727154016495,-0.749938840046525,0.795930430293083,-0.392095893621445,-0.189738755696453,1.49677908420563,-0.418637424707413,-0.832645319402218,0.839809909462929,-0.478948056697845,-0.779034502804279,0.829825073480606,-0.702092919498682,-0.606582814827561,0.79088719189167,-0.52318599820137,-0.849057311192155,0.88332686573267,-0.280277699232101,-0.857151705771685,0.877077177166939,-0.396549224853516,-0.674918621778488,1.16945743560791,1.05252584815025,-0.68424516916275,0.301874488592148,0.421903431415558,-0.360609477036633,1.73919713497162,-0.074934333562851,-0.938058251515031, +0.930165376514196,-0.11629581451416,-0.717036962509155,0.454120151698589,0.442773818969727,-0.391489207744598,0.390144929289818,0.0947073101997375,-0.538487762212753,0.0134483873844147,0.440063834190369,-0.273171901702881,0.0892870798707008,0.285953640937805,-0.258507013320923,1.35590535402298,0.901364430785179,-0.731688737869263,0.424047157168388,0.486240267753601,-0.139996945858002,0.891668010503054,0.516678273677826,-0.581016927957535,0.0203811302781105,0.520251721143723,-0.702541947364807,0.424438409507275,0.41568848490715,-0.735327154397964,0.514795742928982,0.254782736301422,-0.62150827050209,0.0233165845274925,0.620311111211777,-0.797084450721741,-0.00984857603907585,0.674926906824112,-0.317112669348717,0.339220762252808,1.05711169540882,-0.646231591701508,-0.726861029863358,0.722113616764545,0.133086025714874,1.07575894892216,0.616821691393852,-0.668819338083267,0.106064900755882,0.81758963316679,-0.67391300201416,-0.475734036241192,0.682410106062889,-0.395181953907013,-0.548556186258793,0.553023219108582,-0.404858410358429,-0.379585657268763,0.590984418988228,-0.677724957466125,-0.455657867714763,0.71475076675415,-0.372121229767799,-0.0899384021759033,0.634440556168556,-0.685170620679855,-0.94461764395237,0.282999139279127,0.316419819872863,-0.176016688346863,1.77552300691605,0.768094405531883,-0.151183992624283,1.50587207078934,0.609559457749128,-0.14624285697937,0.951593667268753,0.63630573451519,-0.0378770232200623,0.583527788519859,0.689802035689354,-0.166410028934479,0.831897228956223,0.0541072914320466,0.0107587575912476,1.01716905832291,0.019982692029707,0.0438914895057678,0.655938625335693,0.102246737969836,0.0522599816322327,0.472123652696609,0.312812285735617,-0.216204226016998,1.05643135309219,0.568901434540749,-0.828649543225765,1.31358590722084,0.692455902695656,-0.800008356571198,1.12709179520607,0.98581850528717,-0.808042630553246,0.886818677186966,-0.12530572958201,-0.123997151851654,0.791398525238037,-0.0233084973797304,-1.11721317470074,1.17910254001617,0.996688108891249,-0.823536649346352, +0.582245647907257,0.519731350243092,-0.107183396816254,0.58689770847559,0.614579677581787,-0.866657763719559,0.86050683259964,-0.125304145934926,-0.0476542711257935,0.651078641414642,0.865367241203785,-1.02590370178223,0.331386312842369,0.167449086904526,0.08657306432724,0.67796865105629,0.854345560073853,-0.971660170704126,0.445309326052666,-0.204789698123932,0.05516117811203,0.434927776455879,0.867058448493481,-1.07891303300858,0.14052939042449,0.271603941917419,-0.0729292631149292,0.147934578359127,0.924088215455413,-0.897716976702213,0.497158110141754,-0.125307362517106,-0.188588201999664,0.879456520080566,0.183592051267624,-0.404229998588562,0.807277083396912,0.314194105565548,-0.918625220656395,0.952248360961676,0.426132492721081,-0.236506521701813,0.4675496481359,0.709335029125214,-0.957754164934158,0.626164376735687,0.238240577280521,-0.060702919960022,0.0301350429654121,0.927378114312887,-1.17099440097809,0.0364570617675781,0.341235935688019,-0.100039601325989,0.0582759780809283,0.872618965804577,-1.08015181869268,0.031016627792269,0.282363370060921,-0.497328400611877,0.63575504720211,0.451161749660969,-0.867670804262161,0.730479516088963,0.448319382965565,-0.951950665563345,0.740634061396122,0.516804441809654,-0.620344936847687,0.54487369954586,-0.11408372412118,-0.0908119678497314,0.215672552585602,0.277018815279007,-0.682420551776886,0.646812349557877,0.446385644376278,-0.7757882848382,0.426028281450272,-0.0263991699525832,-0.182522654533386,0.407161891460419,-0.11253456935583,-0.759315431118011,0.886641122400761,0.315655022859573,-0.113930881023407,0.0587256848812103,0.790006637573242,-1.00849791616201,0.180730283260345,0.793283484876156,-1.01045148819685,0.113682210445404,0.704503774642944,-0.65729084610939,0.0641524493694305,-0.0783465767218132,0.069439709186554,-0.159093946218491,0.912355296313763,-0.634911432862282,-0.0391612946987152,0.702272236347198,-0.99528175778687,0.339193612337112,-0.0783573232856725,-0.0168549418449402,0.0371524393558502,0.515526309609413,0.192536652088165,-0.506730630993843, +1.37827879190445,-0.482479572296143,-0.700618669390678,1.11475965380669,-0.419550523161888,-0.773624613881111,1.06903950870037,0.546081639826298,-0.87841122597456,0.44413642008135,0.937699280679226,-0.912878233939409,1.10035166144371,-0.30714362859726,-0.775515608489513,0.999115277081728,-0.391892604529858,-0.576796114444733,0.0886271455810507,1.32329684495926,-0.724307358264923,0.668041154742241,0.982287116348743,-0.873288959264755,1.15691123902798,0.0801842920482159,-0.829885885119438,0.9303889721632,0.876772582530975,-0.837953351438046,0.853479845449328,1.13843375444412,-0.270187616348267,0.830951154232025,1.22064083814621,-0.71508027613163,1.26417380571365,0.816851526498795,-0.763406649231911,0.480552773922682,0.540902815759182,-0.0969083905220032,0.492983624339104,0.48174736648798,-0.10304456949234,0.367759764194489,0.539137147367001,0.15456211566925,0.406053900718689,0.913227915763855,0.0951979756355286,0.48439590446651,1.26565882563591,0.121809959411621,0.238570414483547,1.0742819532752,0.90428164601326,0.187189698219299,1.39048939943314,0.852050837129354,0.907123476266861,0.541431784629822,-0.0224199891090393,0.671701967716217,0.697095490992069,-0.0175210237503052,0.453318238258362,1.22743208706379,0.791937049478292,0.639701671898365,1.48281136155128,0.559082388877869,0.35376887768507,1.09510751068592,1.05592730641365,0.44366630166769,1.7158362865448,0.634531930088997,0.869295008480549,1.21117231249809,0.463305771350861,0.892868340015411,1.06395550817251,0.251392509788275,0.714575819671154,1.1473723500967,0.733359038829803,0.401392571628094,1.69975620508194,0.682897001504898,0.607477188110352,1.04913437739015,0.706945952028036,0.433362774550915,1.84788751602173,-0.111240327358246,0.874962382018566,1.11086927354336,0.497199565172195,0.911098353564739,0.972678638063371,0.242602087557316,0.756951093673706,1.05391401425004,0.581466084346175,0.248643895611167,1.69987511634827,0.657517662115424,0.583041928708553,0.934778835624456,0.955747351050377,0.450547806918621,1.83094227313995,-0.0328228622674942,0.875545194372535, +1.24032531678677,0.351140489645331,0.949769273400307,0.97285451553762,-0.0773661378771067,0.910062149167061,1.20994426310062,0.226922063156962,0.314251443371177,1.87881171703339,0.33001943475756,0.920051988214254,0.800703167915344,0.164953805506229,0.459340579807758,1.86027032136917,-0.150500319898129,0.94717644713819,1.20728163421154,0.0579140352383547,0.91737699508667,0.871071562170982,-0.0628721807152033,0.892391983419657,1.33537197113037,0.00593491643667221,0.432674881070852,1.81937003135681,0.231304474174976,0.920476730912924,0.918502688407898,0.217766590416431,0.0597228966653347,1.04355819150805,0.885596208274364,-0.173991623719303,1.02068129554391,1.1333759278059,0.894026972353458,1.01667575538158,0.399791926145554,0.852215152233839,1.02832289040089,0.626261591911316,0.456165052950382,0.940172292292118,0.774252355098724,0.517605718225241,0.980081074871123,0.738577641546726,0.415599174797535,1.04652307927608,1.01859214901924,0.439799226820469,1.02366504073143,1.00584849715233,0.227856814861298,0.992225287482142,1.04994629323483,0.507450252771378,0.494941743323579,1.30368429422379,0.232405073940754,0.618799231946468,1.76997619867325,0.917831640690565,1.05228360742331,0.480237901210785,0.738510586321354,1.07841853797436,0.724870949983597,0.553445912897587,0.621348090469837,1.59173661470413,1.08499619364738,0.668252892792225,0.784512385725975,1.00271691335365,0.174044173210859,0.949373990297318,1.04261076450348,0.0838333535939455,1.43810364603996,0.612543016672134,0.575624916236848,1.66902977228165,0.685350753366947,0.591713640838861,1.46201121807098,0.635804802179337,0.152695830911398,0.572062879800797,0.998121991287917,0.139506530016661,1.11049492657185,0.842342115938663,0.56448404211551,1.20172166824341,0.631455510854721,0.608086809515953,0.920124776661396,0.993062451016158,0.225226819515228,0.880636103451252,0.694652110338211,0.202257841825485,1.10464087128639,0.680496245622635,-0.431753382086754,1.20896649360657,0.969179853796959,-0.494080670177937,1.01102569699287,1.14471858739853,0.0995677597820759,0.887091986835003, +0.99762625945732,0.162058599293232,1.10822620242834,-0.0157838695449755,0.465012073516846,0.999188527464867,0.126739734658258,0.464493811130524,0.94497337937355,0.17399113997817,0.461660981178284,0.959870167076588,-0.113246269524097,0.465259552001953,0.961811929941177,-0.125926040112972,0.191179156303406,0.724423140287399,0.17483314499259,0.133411765098572,0.61112155765295,0.0285570286214352,0.470995426177979,0.939898990094662,-0.353380486369133,0.519549369812012,0.992522418498993,-0.247399344108999,0.309767305850983,0.680181816685945,0.0151203647255898,0.193029403686523,0.492697440087795,-0.0751502811908722,0.196847319602966,0.692766278982162,-0.311006709933281,0.263892650604248,0.970422565937042,-0.309460807591677,0.150465250015259,0.837539106607437,-0.0850871112197638,0.125404238700867,0.435791932046413,0.0293691903352737,0.143470466136932,0.570843908935785,-0.133135534822941,0.158475637435913,0.878974318504333,-0.125076727941632,0.123730063438416,0.546945787966251,0.0426744371652603,0.0787023901939392,0.352128136903048,-0.418239066144451,0.190589368343353,0.491847731173038,-0.212345828767866,0.0544707775115967,0.439413994550705,-0.234569270163774,0.197132408618927,0.573178477585316,-0.397006079554558,0.335040748119354,0.660291813313961,-0.65015497431159,0.434106945991516,0.666004329919815,-0.4260583082214,0.169828951358795,0.631867423653603,-0.433610709616914,0.327492237091064,0.747396320104599,-0.599584166891873,0.567622572183609,0.714866384863853,-0.423826994374394,0.191806256771088,0.473711907863617,-0.645555379102007,0.440630495548248,0.431500837206841,-0.727635428309441,0.267548501491547,0.620053976774216,-0.650368481874466,-0.905619826167822,-0.846196062862873,-0.204794850911185,-0.738597109913826,-0.689364910125732,-0.0429202020168304,-0.718380220234394,1.33744499087334,-0.332017719187434,-0.885582055896521,1.09986441582441,-0.776427395641804,-0.874976798892021,-0.713985282927752,-0.686915285885334,-0.866178438067436,-0.782202798873186,-0.848137259483337,-0.761579513549805,-0.736957915127277,-0.796661466360092, +-0.894630666822195,-0.95854277163744,-0.828227236866951,-0.854743003845215,-0.828205302357674,-0.722264349460602,-0.883511703461409,-0.817877419292927,-1.45930296182632,-0.511492386460304,-0.310423791408539,-1.07310977578163,-0.627074234187603,-0.794555112719536,-1.15289056301117,-0.869795650243759,-0.62708318978548,-0.704671680927277,-0.846612468361855,-0.998987682163715,-1.60429072380066,-0.648740142583847,-0.290646776556969,-1.65304034948349,-0.602148488163948,-0.382173952646554,-1.26896527409554,-0.763120621442795,-0.623342514038086,-0.954379059374332,-0.816452890634537,-0.82806009054184,-0.978793278336525,-0.868084564805031,-0.624860987067223,-1.20353639125824,-0.827508166432381,-0.531260319054127,-1.27766910195351,-0.825638808310032,-0.621417105197906,-1.34706154465675,-0.908306597732008,-0.440240234136581,-1.72661119699478,-0.664770079776645,-0.0182796020526439,-1.69708347320557,-0.47844585776329,-0.315554566215724,-1.28951308131218,-0.503358781337738,-0.388201919384301,-1.05316118150949,-0.642565757036209,-0.462200745940208,-1.31987580657005,-0.676713094115257,-0.43926066160202,-1.33489188551903,-0.756384737789631,-0.543056949973106,-1.12736868858337,-0.878740725107491,-0.493690013885498,-0.944922935217619,-0.418637703172863,-0.951707828789949,-1.25494888424873,-0.344837959855795,-0.966367214918137,0.767077550292015,0.878077119588852,-0.578643918037415,0.942560657858849,0.865909337997437,-0.941024815663695,0.587353676557541,0.142969012260437,-0.796364583075047,0.413822680711746,0.238416641950607,-0.700870633125305,0.576735287904739,0.86704432964325,-0.57956837117672,0.840909227728844,0.688967615365982,-0.672898918390274,0.855101391673088,0.395824804902077,-0.739322267472744,0.633749216794968,0.508840743452311,-0.750847865827382,0.354068338871002,0.824620269238949,-0.087286370806396,0.748346820473671,0.97262842208147,-0.242546707391739,0.924587531015277,0.799122822820209,-0.294930517673492,1.03078930079937,0.534736514091492,-0.657525718212128,0.658329293131828,0.759087309241295,-0.273218393325806,0.521082296967506, +0.868325808085501,0.244045376777649,0.68010301887989,0.814452469348907,-0.00995966792106628,0.324864864349365,0.807530086487532,0.146649725735188,0.231883883476257,0.894995927810669,0.720605731010437,0.433520793914795,0.993116296827793,0.776961967349052,0.795527203008533,0.731671899557114,-0.0362756848335266,0.651420965790749,0.954441279172897,0.0483981370925903,0.358095169067383,1.20019516348839,0.809079691767693,0.373917393386364,1.03403167799115,0.849044770002365,0.31343275308609,0.889975503087044,1.07445585727692,0.44792889803648,1.13160008192062,0.98863160610199,0.328563205897808,1.20047749578953,0.848518520593643,0.0123088657855988,1.03191127628088,1.07196460664272,-0.207959562540054,0.667818514630198,1.31740108132362,0.219538062810898,1.71956259012222,0.636916220188141,0.0527450144290924,1.85010296106339,0.225154802203178,-0.203194707632065,1.58900117874146,0.346324916929007,0.21444308757782,1.79686713218689,0.400537222623825,-0.131012231111526,1.51862323284149,0.652909070253372,-0.14065819978714,1.56071209907532,0.624073058366776,0.140730261802673,1.73827010393143,0.512581631541252,0.350940309464931,1.77892756462097,0.577696472406387,0.129968255758286,1.70244061946869,0.756734430789948,0.00489169359207153,1.68928641080856,0.714499279856682,0.226179599761963,1.73006576299667,0.635472958907485,0.20031949877739,1.69564801454544,0.685658698901534,-0.0624848604202271,1.63000631332397,0.817935094237328,0.120957612991333,1.5619204044342,0.68384213000536,-0.0403440442491956,1.61872214078903,0.672186784446239,-0.0495582818984985,1.42460760474205,-0.670509353280067,-0.0440319776535034,1.50180327892303,-0.0392017364501953,-0.16246297955513,1.58727699518204,0.245766844600439,0.104707062244415,1.5120415687561,0.744127102196217,0.233363389968872,0.720181539654732,-0.693182878196239,0.233962893486023,0.613168060779572,-0.187675446271896,0.396451234817505,0.698597692884505,0.267056837677956,0.638374626636505,0.918328935280442,0.145484279841185,0.21358922123909,0.917995989322662,-0.785639479756355,0.571300450712442,1.48391184210777, +-0.72877062112093,0.288599252700806,0.796821340918541,-0.664861135184765,0.0249134600162506,0.628714859485626,-0.672434598207474,0.526522696018219,0.742142140865326,-0.225031912326813,-0.00866490602493286,1.45280021429062,0.134574055671692,0.312623381614685,0.587876074016094,0.0542100667953491,0.315001368522644,0.382575154304504,0.233623832464218,0.80636265873909,0.789811968803406,0.20071566849947,0.00536856055259705,1.84013748168945,0.170614778995514,0.365245282649994,0.448984168469906,0.346927046775818,0.625785499811172,0.467878509312868,0.596582397818565,0.427540898323059,-0.14556872844696,0.758983246982098,0.120415300130844,1.03665797412395,0.968807484954596,0.645794898271561,0.478342856280506,0.775084463879466,0.418915987014771,0.478919509798288,0.631709940731525,-0.205601990222931,0.709535449743271,-0.0268296003341675,-0.153574585914612,0.00877377390861511,-0.0803002715110779,0.029049813747406,1.15370461344719,0.290660172700882,0.246161758899689,0.48972387611866,-0.0283862948417664,-0.162103474140167,1.06648978590965,0.780740212649107,0.314842283725739,0.0941676795482635,0.3398697078228,-0.05000901222229,0.720159828662872,0.69180990755558,0.438033431768417,-0.424659848213196,0.467479050159454,0.091810405254364,0.659353777766228,0.194714069366455,0.0050310492515564,0.153658648952842,-0.00793659687042236,-0.0303018093109131,-0.530596688389778,-0.0437651872634888,0.342403501272202,-0.630544170737267,0.0617758631706238,0.201645970344543,-0.730315119028091,-0.00199639797210693,-0.103575438261032,-0.530145227909088,-0.0794728994369507,-0.0975888967514038,-0.789964079856873,-0.167923510074615,0.0602452754974365,-0.993930220603943,-0.22196239233017,-0.00370442867279053,0.563393771648407,0.755199056118727,0.359087288379669,-0.210257388651371,0.39818149805069,0.359924376010895,-0.325479000806808,0.365694373846054,0.447980105876923,-0.584731474518776,0.255140125751495,0.466184318065643,-0.616358645260334,0.295085102319717,0.351422131061554,-0.316012158989906,0.347369790077209,0.182110786437988,-0.527192652225494,0.061234176158905, +0.359437793493271,-0.799450740218163,0.0172868371009827,0.165477365255356,0.205901563167572,0.795852221548557,0.570441126823425,-0.592312596738338,0.677685551345348,0.561840027570724,-0.606667976826429,0.547782249748707,0.716756463050842,-0.763940948992968,0.370833665132523,0.392326235771179,0.772587822750211,0.233610726892948,0.367178618907928,0.660858076065779,0.208195239305496,-0.00304549932479858,0.0941614508628845,-0.0368596315383911,0.027447521686554,0.0547686442732811,0.0434754192829132,-0.336163520812988,0.969432070851326,0.504820168018341,0.363326072692871,0.466604232788086,0.432600723579526,0.346105694770813,0.710126374848187,0.245098497718573,0.0459786057472229,0.138025503605604,0.219339173287153,0.271516025066376,-0.674058621749282,-0.0703092152252793,0.300345063209534,-0.685163665562868,0.0846877135336399,0.0794318318367004,0.192514901980758,0.275100596249104,0.0450677275657654,0.1440339833498,0.206683315336704,-0.747238650918007,0.540811523795128,-0.475387036800385,-0.668034970760345,-0.116649284958839,-0.562226295471191,-0.455338984727859,-1.02413353323936,-0.786143764853477,-0.364644199609756,-0.678367704385892,-0.6586754322052,-0.588370501995087,-0.126984402537346,-0.61837175488472,-0.290689289569855,0.405006557703018,-0.587615519762039,0.15960681438446,1.29991310834885,-0.346458248794079,-0.523955166339874,-0.0304088965058327,-0.937100253999233,-0.803163394331932,-0.269260793924332,-0.920214054174721,-0.527560174465179,-0.103388383984566,-0.597747296094894,-0.579376637935638,-0.192506447434425,-0.928917549550533,-0.275792717933655,-0.680897120386362,-1.221509963274,-0.0963903963565826,0.480700567364693,-0.428053677082062,-0.153544187545776,0.464620992541313,-0.555044949054718,-0.0682281255722046,0.677758425474167,0.21514219045639,-0.00973939895629883,-0.0262644439935684,-0.00480037927627563,-0.452768683433533,1.28320306539536,-0.51728230714798,0.106331944465637,0.611579895019531,-0.402171105146408,-0.172477543354034,-0.0166295617818832,-0.243584454059601,-0.243178129196167,-0.0511592030525208,-0.251829624176025, +-0.000788271427154541,0.0412380993366241,-0.00903606414794922,-0.0505796670913696,0.038079172372818,-0.100322186946869,0.0875415802001953,-0.0764056444168091,0.527470856904984,0.238485157489777,-0.771463826298714,0.11213344335556,-0.474153131246567,0.936504691839218,0.0798209607601166,0.276571989059448,-0.589942164719105,0.141912490129471,0.311506927013397,-0.494635991752148,0.27867192029953,0.01591956615448,-0.0710787326097488,0.0391401648521423,0.32136482000351,-0.212241463363171,0.327338516712189,0.292551815509796,0.139466144144535,0.285905122756958,0.0398882031440735,0.98750427365303,0.968532979488373,0.396585702896118,-0.354040913283825,0.457449376583099,-0.276498883962631,1.08374598622322,0.314418971538544,0.36844801902771,0.545521005988121,0.160903424024582,0.315040588378906,0.142222382128239,0.356795281171799,0.235949873924255,0.179991941899061,0.21100127696991,0.409095644950867,0.548568237572908,0.261309891939163,0.355121612548828,0.622645124793053,0.102635651826859,-0.302612096071243,1.01166114211082,0.868571400642395,0.425136208534241,-0.512604653835297,0.70327752828598,-0.136384546756744,1.11104175448418,0.604433834552765,0.245464384555817,0.163231384009123,0.524789959192276,0.382333278656006,-0.432170358602889,0.527697116136551,1.86744779348373,-0.338365890085697,0.285385861992836,1.53794080018997,0.758489910513163,0.362818710505962,1.64508801698685,0.442684879526496,0.523507997393608,1.35863888263702,0.583166062831879,0.755213752388954,1.54152286052704,0.655609201639891,0.416005227714777,-0.231291890144348,1.20793187618256,1.04676401615143,-0.0651056468486786,1.4628421664238,0.871772259473801,0.179507076740265,1.28644040226936,0.811955869197845,-1.41802662611008,0.658070392906666,-0.0134578049182892,-1.35519951581955,0.302830785512924,0.706148892641068,-1.39867871999741,0.463415667414665,1.28543597459793,-1.69479644298553,-0.226293906569481,0.803167998790741,-1.92779648303986,0.327534206211567,-0.0145390927791595,-1.55407309532166,1.13868057727814,0.00429469347000122,-1.52669411897659,0.614701874554157, +1.01715299487114,-1.78686374425888,0.173180088400841,0.347868740558624,-1.27654930949211,0.655119493603706,-0.346235454082489,-1.76833981275558,-0.230130151845515,-0.373476713895798,-1.64483153820038,-0.79542675614357,-0.158552184700966,-0.976733803749084,0.185774207115173,-0.232898406684399,-1.73607504367828,-0.13571422547102,-0.265151709318161,-1.18640932440758,0.512035198509693,0.309897273778915,-1.27113610506058,-0.276918388903141,1.1228055357933,-1.12327808141708,0.054080069065094,0.181042522192001,-1.78611475229263,-0.219895888119936,0.592060189694166,-1.28583109378815,0.699116915464401,-0.152592062950134,-1.55004549026489,-0.952017799019814,-0.0221297293901443,-1.02419513463974,0.0764378309249878,-0.0708553395234048,-1.93128961324692,-0.318500518798828,-0.272494841367006,-1.23079368472099,0.253095164895058,0.29145735502243,-1.15903162956238,-0.611614793539047,0.489790439605713,-1.1570011973381,-0.723423205316067,0.572729021310806,-0.211574524641037,0.626162171363831,-0.180841207504272,-1.2714379131794,-0.0929728150367737,0.556740671396255,-0.846352577209473,-0.781763933598995,0.749641999602318,-0.354442201554775,1.06474700570107,-0.69051793217659,-1.78441685438156,-0.419084448367357,0.0906862318515778,-1.87424159049988,-0.318098627030849,0.435154180973768,-1.40659785270691,-0.583062216639519,0.425726614892483,-1.31237784028053,-0.640673890709877,0.284446761012077,-0.428148686885834,-0.380881477147341,-0.283975064754486,0.367290854454041,1.11780117452145,-0.433733463287354,-0.521424621343613,0.449745833873749,-0.526352658867836,-0.86578394472599,-0.638641051948071,-0.603278584778309,-0.144948363304138,0.638938322663307,-0.519568212330341,-0.565180033445358,0.447228416800499,-0.784626789391041,-0.861148439347744,0.252867564558983,-0.650788217782974,-0.0399281680583954,1.43996667861938,-0.56834202259779,-0.934463512152433,-0.474690292030573,-0.751866191625595,-0.720409601926804,0.040052056312561,-0.766380026936531,-0.9596146941185,-0.545236796140671,-0.131462931632996,-0.923540115356445,-0.287111937999725,-0.366152830421925, +-0.705680042505264,0.0626159906387329,-0.76589298248291,0.361271012574434,0.250706225633621,-0.0503018498420715,-0.19982336461544,-0.376600027084351,0.191761016845703,-0.409709095954895,-0.962275564670563,0.479057550430298,-0.860071688890457,0.136552929878235,0.0240298509597778,-0.770971447229385,0.0838708281517029,-0.165675222873688,-0.677090257406235,-0.777308806777,0.565910965204239,-0.959167242050171,-0.235208243131638,0.563159197568893,-0.728741824626923,-0.103801846504211,-0.0494588613510132,-0.581666838377714,-0.353270016610622,-0.131731152534485,-0.645991921424866,-0.660276040434837,0.38781151175499,-0.916930824518204,-0.364675283432007,0.28737410902977,-0.772519052028656,0.676084250211716,0.168800473213196,-1.51073575019836,0.823063030838966,0.370484925806522,-1.43613147735596,0.979005962610245,0.471741892397404,-1.32089683413506,0.634599946439266,-0.453646689653397,-1.2900405228138,0.00429025292396545,-0.279004156589508,-1.16411653161049,0.0842269062995911,0.211972028017044,-1.66562193632126,0.135618280619383,0.677391447126865,-0.513259276282042,1.27551275491714,0.8334571570158,-0.929542491998291,0.426485739648342,1.30083256959915,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.278077880706405,1.0030974149704,1.61055099964142,-0.640489830635488,0.629454337060452,1.49499142169952,-0.873845905065536,1.61643242835999,0.33424299955368,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.32414641976357,0.983848661184311,0.723856896162033,-0.837900280952454,1.5830836892128,0.840139001607895,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.21703493595123,1.20711943507195,0.527353502810001,-0.118730217218399,1.71798270940781,0.630363941192627,-0.534403562545776,0.753326289355755,0.69902765750885,0.443484500050545,0.756118640303612, +1.44794794917107,-0.491881161928177,0.804494785144925,0.669246643781662,-0.328478515148163,0.743985291570425,0.942258059978485,0.387935876846313,-0.276818979531527,1.28163370490074,-0.0383301973342896,0.687900196760893,1.34410381317139,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.498177303932607,0.708835490047932,1.59841650724411,0.00719901919364929,0.746766468510032,1.46287500858307,-0.142735064029694,-0.524324398022145,0.960010528564453,-0.309598620515317,-0.260747835040092,1.89561355113983,-0.528422653675079,0.79218777269125,0.889612853527069,-0.308773577213287,0.79453682154417,1.0799133181572,0.246253669261932,-0.16310603544116,1.18341228365898,-0.275825202465057,-0.430021159350872,0.420246955007315,-1.88285440206528,-0.175811901688576,0.35868576541543,-1.38638201355934,0.729295546188951,0.961364775896072,-0.89107957482338,0.77775804977864,1.36935120820999,-1.5136878490448,-0.414925260469317,1.13647443056107,-1.29482927918434,0.800419190898538,0.139752745628357,-0.977846040390432,0.693579722195864,0.858340695500374,-0.919537569861859,-0.315047124167904,1.32737845182419,-1.7303638458252,-0.327781707048416,0.622393891215324,-1.87316209077835,-0.124583072960377,0.289658330380917,-1.49147516489029,-0.783689185976982,0.109831839799881,-1.75397902727127,-0.194404773414135,0.882736295461655,-1.87210136651993,-0.202658144757152,0.562340244650841,-1.73919308185577,-0.403113003820181,0.397345408797264,-1.30653265118599,-0.902685165405273,0.176061417907476,0.254716836498119,0.0225028991699219,0.152522145304829,0.671606358140707,0.46372652053833,0.573742613196373,0.978313580155373,0.767198413610458,0.524602666497231,0.566788874566555,0.124650537967682,0.0731849521398544,0.761924207210541,0.76605549454689,0.509227283298969,0.775570198893547,0.767314791679382,0.610820956528187,0.897080361843109,1.58023500442505,0.253774560987949,0.805528913624585,1.57039421796799,0.05234540021047,0.791404128074646,1.44792348146439,0.104263603687286,0.786372436210513,1.6114889383316,0.263295948505402,0.824914243072271,1.56297659873962, +0.461870685219765,0.904906343668699,1.40826106071472,0.514075145125389,0.767078993842006,1.48081406950951,0.331325177103281,0.804073141887784,1.55919504165649,0.333765536546707,0.854419529438019,1.51806861162186,0.559113740921021,0.80709583312273,1.47913321852684,0.442538060247898,0.541278522461653,1.69769322872162,0.401599261909723,0.763734883861616,1.62304073572159,0.222819320857525,0.476286269258708,1.7867277264595,0.527372509241104,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.241786340251565,1.85231685638428,0.520481191575527,0.0346383396536112,1.84534472227097,0.436850316822529,0.173927243798971,1.70951771736145,0.95917996764183,0.234079107642174,0.798541679978371,-0.310554206371307,-0.430840253829956,0.938009135425091,1.44608670473099,0.599733114242554,0.966729655861855,-0.223978281021118,0.479107245802879,0.891885787248611,-0.179714858531952,0.180929332971573,0.956160888075829,-0.309599578380585,0.1994409263134,0.917244024574757,-0.464595317840576,0.440239548683167,0.995934918522835,-0.270433664321899,0.0549269020557404,0.83426870405674,-0.390586853027344,0.297391533851624,0.955099001526833,-0.228224068880081,0.0272106826305389,0.957908324897289,-0.603256464004517,0.274452924728394,0.891553469002247,-0.410135298967361,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.25251829624176,0.735688913613558,-0.0881797075271606,0.360866963863373,0.896096125245094,-0.220817312598228,0.325042307376862,0.95427331328392,-0.285648420453072,0.187124967575073,0.810431003570557,-0.194231033325195,0.142558455467224,0.781528726220131,-0.316094860434532,0.340007245540619,0.95484758913517,-0.474376825615764,0.353493809700012,0.917779207229614,-0.455331353470683,0.240715801715851,0.663647833047435,-0.0865296870470047,0.438927948474884,0.841940166428685,-0.118905684445053, +0.487617492675781,0.994106337428093,-0.185016337782145,0.43466317653656,1.19667482376099,-0.202063365839422,0.378180146217346,1.12411049008369,-0.275479458272457,0.385826468467712,1.04614229500294,-0.401511937379837,0.490427225828171,0.923018462955952,-0.451094344258308,0.509358525276184,0.88222754560411,-0.111206237226725,0.443121075630188,0.831469624303281,-0.20497477427125,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.40941923856735,1.33758389949799,-0.160100666806102,-1.50976824760437,1.26667147874832,-0.00724952667951584,-1.55958217382431,1.15285906195641,0.151922787074,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53299081325531,0.983538240194321,0.0525956079363823,-1.72519201040268,0.530218824744225,-0.0362916961312294,-1.66162168979645,0.682470936328173,-0.110914476215839,-1.5532460808754,0.882755249738693,-0.143395907245576,-1.70872431993484,0.758369371294975,0.333393335342407,-1.7254746556282,0.527642885223031,0.655571073293686,-1.68205934762955,0.851946368813515,0.161585606634617,-1.35043483972549,1.05354301631451,0.452316798269749,-1.40710371732712,0.668399226851761,0.988883852958679,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.61199897527695,0.864360317587852,0.585660323500633,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.34601664543152,0.948496520519257,1.00145864486694,-0.793964833021164,0.818313915282488,1.41629999876022,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.431035026907921,0.866227805614471,1.5694951415062,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.763218224048615,1.68038296699524,0.605878829956055,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185, +1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.612904384732246,1.53679293394089,0.993278384208679,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.505528777837753,0.753839731216431,1.26290223002434,0.586354583501816,0.681657999753952,1.14966779947281,0.306244000792503,1.10367447137833,1.42495876550674,0.536303669214249,0.699480146169662,1.24312499165535,-1.36875620484352,0.643642172217369,1.11405086517334,-1.25596117973328,0.859539300203323,1.16669163107872,-0.947915732860565,1.13605946302414,1.30505931377411,-1.30258357524872,0.76190060377121,1.16452479362488,-0.546696716714337,1.20195457339287,1.3560870885849,-1.21766954660416,1.02789768576622,1.03332209587097,-0.568269863724709,1.337377846241,1.21987202763557,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.586802750825882,0.539950087666512,1.2139892578125,0.400668829679489,0.789114475250244,1.20797851681709,-1.21451711654663,0.802849411964417,1.22674188017845,-1.21269392967224,0.659989893436432,1.16551604866982,-1.2941997051239,0.492052711546421,1.10258683562279,-1.00185072422028,1.16831392049789,1.08244845271111,-0.0574617236852646,1.28118413686752,1.33784940838814,0.721075944602489,1.00636294484138,1.14696523547173,-0.950204253196716,0.801229685544968,1.24357807636261,0.681102558970451,0.703865051269531,1.27471232414246,-0.326379186939448,0.0994954109191895,0.0269807577133179,-0.0896556489169598,0.1895991563797,-0.0497029423713684,-0.18878404982388,0.244311168789864,-0.0658057928085327,-0.744635976385325,-0.0575624108314514,0.404702723026276,-0.200114518404007,-0.00770577788352966,0.049508273601532, +-0.510504394769669,0.131151109933853,0.158178627490997,-0.773905918002129,0.120584040880203,0.514672875404358,-0.455355793237686,0.0612860321998596,0.164149522781372,-0.634327322244644,0.0121996700763702,0.380470454692841,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.656252652406693,-0.120608568191528,0.496248990297318,-0.591418780386448,0.071584165096283,0.255991876125336,-0.477094933390617,1.34012526273727,-0.443428367376328,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.0934821665287,0.853552982211113,-0.465439885854721,-1.02829971909523,0.402423679828644,-0.589183270931244,-1.06834062933922,0.35119640827179,-0.651084244251251,-0.820503830909729,1.25021693110466,0.735112234950066,-1.2461499273777,0.446116179227829,0.649007067084312,-1.38036096096039,0.439208500087261,-0.178132712841034,-1.32771369814873,0.371628671884537,0.302949219942093,-1.17716524004936,0.532041683793068,0.344762802124023,-1.3487337231636,0.280740015208721,0.191504657268524,-1.3406537771225,0.280103795230389,0.195976734161377,-0.902281701564789,1.32246601581573,0.911699518561363,-1.42935785651207,0.641811028122902,0.791249100118876,-1.42727488279343,0.647746428847313,0.416027307510376,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.36529433727264,0.801415771245956,0.694614060223103,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.37864512205124,0.398068230599165,0.751972869038582,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.44980016350746,0.399120796471834,0.740584410727024,-1.18500347435474,0.279945932328701,0.93449093028903,-1.3798308968544,0.449068101122975,0.766527581959963,-1.35252270102501,0.366480313241482,0.809917684644461, +-0.461360618472099,0.692743569612503,0.0324292182922363,-0.371179051231593,0.403830863535404,0.0157698392868042,-0.31957271695137,0.425106070935726,-0.0917988419532776,-0.455699399113655,0.357299894094467,-0.0475062131881714,-0.907043413957581,0.654803842306137,1.00222692638636,-0.563467055559158,0.427347779273987,0.241067409515381,-0.912817336153239,0.459371879696846,0.554474145174026,-0.990970449289307,0.366819635033607,0.957232819870114,-0.396825715899467,0.0882252678275108,0.141990423202515,-0.624937266111374,0.0259324014186859,0.362180948257446,-0.811688750982285,0.116476520895958,0.62496080994606,-0.310167416930199,0.830153167247772,0.386630892753601,-0.596842333674431,0.108133677393198,0.399664342403412,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.453769475221634,0.331221029162407,0.155710279941559,-0.491521224379539,0.550782762467861,1.49892961978912,-0.583108380436897,0.257034733891487,0.279255032539368,-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-0.993645738810301,-0.0283622741699219,0.915606036782265,-1.22584539651871,0.0200406610965729,1.20189124345779,-0.672045767307281,1.21834576129913,0.731021240353584,-0.850577086210251,0.301119334995747,0.122216999530792,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.20013108849525,1.36957579851151,0.665690571069717,-1.79218149185181,0.7458116710186,-0.0285762399435043,-1.78683006763458,0.761510074138641,0.214624658226967,-1.60606265068054,0.756403684616089,0.703317210078239,-1.75194972753525,0.3806082457304,0.112384349107742,-1.77342611551285,0.255772069096565,0.380891402252018,-1.75368964672089,0.279418751597404,0.636356800794601,-1.72800534963608,0.508586671203375,-0.0394192934036255,-1.68635576963425,0.591353986412287,-0.240835770964622,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.25498670339584,1.36215454339981,0.44971876591444,-1.43590885400772,1.04250253736973,0.333155822008848,-1.26549395918846,1.05410377681255, +0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-0.917216211557388,0.940421804785728,0.0792377889156342,-0.249697178602219,0.631892502307892,-0.290501594543457,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.903638996183872,0.721551805734634,0.282762706279755,-0.175711899995804,0.604710668325424,-0.427588671445847,0.19856333732605,0.605649814009666,-0.44828861951828,-0.241571992635727,0.533301040530205,-0.274403274059296,-0.185482740402222,0.603250205516815,-0.421743780374527,-0.0566655993461609,0.657576113939285,-0.566725105047226,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0514789521694183,0.826781917363405,-0.391633152961731,0.400801718235016,0.555962085723877,-0.819476217031479,0.383083328604698,0.495546758174896,-0.813162714242935,0.79310967028141,0.75305388122797,-0.726190805435181,0.467153547331691,0.941840976476669,-0.645289123058319,0.20493745803833,0.920929588377476,-0.815384298563004,-0.124387264251709,1.49059879779816,0.372635249048471,-0.130213439464569,0.744007501751184,-0.431461662054062,-0.34743195772171,0.76735969632864,0.347086533904076,-0.429402053356171,0.875981895253062,0.259458247572184,-0.270273298025131,0.690806180238724,-0.819258883595467,-0.424518287181854,0.579331994056702,-0.110154324909672,-0.262359201908112,0.505715474486351,0.323556065559387,-0.406826347112656,0.549784809350967,-0.512648120522499,-0.161262691020966,0.548809677362442,-0.991916865110397,-0.285753965377808,0.508508622646332,-0.596434727311134,-0.333628058433533,0.728943966329098,-0.583914592862129,-0.42655423283577,0.831785634160042,-0.454749375581741,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.101015448570251,0.670929044485092,-0.892550125718117,-0.109624981880188,0.632421255111694,-0.876050248742104, +-0.154679208993912,0.993957683444023,-0.909663677215576,-0.131892740726471,0.880829989910126,-0.606689994921908,0.1440709233284,1.49266523122787,0.334777161478996,-0.399873971939087,0.994403928518295,-0.404680743813515,-0.423723638057709,0.971185341477394,-0.0185007154941559,-0.277063071727753,0.86094468832016,0.246667250990868,-0.199632406234741,0.440934523940086,-0.43396957218647,-0.250260651111603,0.422530353069305,0.274030655622482,-0.362357258796692,0.550051629543304,0.203494653105736,-0.243884801864624,0.440618053078651,-0.0958574526011944,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.316095530986786,0.460210919380188,0.183956660330296,-0.300198912620544,0.738231666386127,0.0755893401801586,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.247799098491669,0.656695164740086,-0.178893506526947,-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.58144947886467,0.824715122580528,0.147110491991043,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.863145858049393,0.517763301730156,0.854377835988998,-0.490903168916702,0.593229323625565,1.04636949300766,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.817409843206406,0.327746510505676,0.665667092427611,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452, +0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.798140270992008,0.445560028776526,-0.630533367395401,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.00167497992516,0.253881990909576,-0.486727476119995,-1.16618254780769,0.178021669387817,-0.703141152858734,-1.19124701619148,0.41465725377202,-0.54842022061348,-0.328065127134323,0.438839361071587,-0.755996108055115,-1.23930078744888,0.167767137289047,-0.672516524791718,-1.26743048429489,0.169245854020119,-0.685623347759247,-1.20555165410042,0.408584967255592,-0.790624126791954,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254553347826004,0.300624512135983,0.0427093505859375,-0.352783150970936,0.39579326659441,0.0319750905036926,-0.0365146100521088,0.339040011167526,-0.107451736927032,0.142280012369156,0.0704751014709473,-0.100045561790466,-0.311332046985626,-0.0443573892116547,0.227989494800568,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.194156736135483,0.525945246219635,-0.0259293913841248,0.404859213158488,0.401944447308779,-0.217067360877991,0.543864011764526,0.430027171969414,-0.219958901405334,-0.0458362400531769,0.228217661380768,-0.0849301815032959,0.100195616483688,0.204440504312515,-0.148463129997253,0.135972768068314,0.373487427830696,-0.154390037059784,-0.0258847177028656,0.199462383985519,-0.0710670351982117,0.161382228136063,0.183369159698486,-0.152003467082977,0.266897581517696,0.23298816382885,-0.154217481613159,-0.180116504430771,0.402644162997603,-0.00870144367218018,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.192666918039322,0.160686776041985,0.0395709872245789,-0.243194311857224,0.315867632627487,-0.0120335817337036,-0.260843172669411,0.298378847539425,0.0131291151046753,-0.478741854429245,0.3888104185462,0.309565842151642,-0.309121400117874,0.393948033452034,0.055213451385498,-0.417646437883377,0.429838374257088,0.014710545539856,-0.473915989510715,-0.0477802753448486,0.148697197437286,-0.546204790472984,0.0180291831493378, +0.338241994380951,-0.483763217926025,0.0907883644104004,0.143525540828705,-0.918557997792959,0.246096298098564,0.463484674692154,-0.795294687151909,0.367559522390366,0.233894348144531,-0.256049032323062,0.336378956882982,-0.0250588655471802,-0.290663497522473,0.381923042237759,-0.0718626379966736,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.901711478829384,0.0890007317066193,0.324213743209839,-0.871301993727684,0.14758026599884,0.314127504825592,-0.802485201507807,0.237131997942924,0.284457921981812,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.626289620995522,-0.108705788850784,0.156155824661255,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.187909522821428,0.513653934001923,-0.503710597753525,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084,-0.72211679816246,0.451057091355324,0.83918884396553,-0.267322897911072,0.510100498795509,-0.0492933690547943,-0.335849940776825,0.536023497581482,0.0791924893856049,-0.351254642009735,0.773158930242062,-0.0150867998600006,-0.471167206764221,0.21373550593853,0.291065692901611,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.0912895202636719,-0.194613307714462,0.436569198966026,-0.460155636072159,-0.211181133985519,0.543340593576431,-0.256666928529739,0.384433314204216,0.0697574019432068,-0.130031406879425,0.294720023870468,0.000937938690185547,0.344577699899673,0.340148778632283,-0.218709170818329,-0.482782423496246,0.402304880321026,0.383791893720627,-0.259847819805145,0.224504679441452,0.137234151363373,-0.192385077476501,-0.000324517488479614,0.178033232688904,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.422161996364594,0.338037990033627,0.276015937328339,-0.475667625665665,0.360072359442711,0.307514727115631,-0.49616327881813,0.224386170506477, +0.531287372112274,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715291187167168,0.292442731559277,0.491235971450806,-0.607903003692627,-0.115091502666473,0.569381773471832,-0.554920256137848,-0.0701614022254944,0.87789018265903,-0.511365085840225,0.0173673033714294,0.635671123862267,-0.933158631436527,0.308915751054883,0.580741167068481,-0.856651113106636,0.353926531970501,0.469077587127686,-0.580856800079346,0.236465387046337,0.33800083398819,-0.37615804374218,0.32722844183445,0.0794332027435303,-0.418082043528557,0.221983894705772,0.00664085149765015,-1.05972182750702,0.0653276666998863,0.568977206945419,-0.907295212819008,0.164648249745369,0.5567806661129,-0.852034444920719,0.224659480154514,0.428634703159332,-1.03014232218266,0.344440408051014,0.506426423788071,-1.01413621008396,0.060689692851156,0.360238075256348,-0.854551374912262,-0.169787704944611,0.346814870834351,-0.684043750166893,-0.105423122644424,0.221783101558685,-0.473499618470669,0.0951932966709137,0.0252766013145447,-1.18383802473545,0.0178890749812126,0.722534328699112,-1.06865812838078,0.172535806894302,0.583366900682449,-0.733232885599136,0.585884811356664,0.850015304982662,-0.958015060052276,0.239198423922062,0.754502937197685,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.655905693769455,0.0718225687742233,0.577670037746429,-0.543791323900223,-0.239056155085564,0.535560339689255,-0.637500435113907,0.173734903335571,0.690609764307737,-0.589941114187241,-0.105211287736893,0.622145414352417,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.231361925601959,0.657105537131429,-0.136730864644051,0.126119077205658,0.498010899871588,-0.357506543397903,-0.36583948135376,0.692959101870656,0.271704375743866,-0.231545627117157,0.6298598498106,0.155951306223869,-0.165118396282196,0.361909076571465,0.182202056050301,-0.0640793442726135,-0.0363660156726837,0.242534205317497,-0.0801506042480469,0.14455059170723,-0.0279945731163025,0.100906729698181,0.178325116634369,-0.323474377393723, +-0.189441621303558,0.330834574997425,0.338515184819698,-0.385633528232574,0.801137775182724,0.626392502337694,-0.380740106105804,0.629274693317711,0.343386620283127,-0.38028883934021,0.66132976859808,0.345506340265274,-0.415777683258057,0.496264897286892,0.57616407237947,-0.669453382492065,0.527967497706413,0.850271113216877,-0.526741057634354,0.576558694243431,0.552982669323683,-0.719019889831543,0.592278338968754,0.641259957104921,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.624315351247787,0.286401301622391,0.670757589861751,-1.05278851091862,0.753886397927999,0.605929002165794,-0.863656722009182,0.888244777917862,0.557989254593849,-0.228835046291351,0.540311858057976,-0.220629811286926,0.144964054226875,0.6220912784338,-0.262327551841736,-0.633623257279396,1.41307371854782,1.19311878085136,-0.75817234069109,0.765670865774155,1.51837641000748,-1.32573828101158,0.767661958932877,0.985001534223557,-1.04566377401352,0.827757999300957,1.32876139879227,-0.132447779178619,1.02659633755684,-0.285555720329285,-0.208488136529922,0.6712866127491,-0.28717428445816,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.07090756297112,0.818924225866795,-0.191334426403046,-0.827712625265121,0.644553519785404,-0.588273167610168,-1.69160836935043,0.61854623653926,0.0686410069465637,-1.22487318515778,0.87166316062212,-0.62318280339241,-0.622070915997028,1.02026319503784,-0.60050842165947,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.699594929814339,0.778316773474216,-0.864000618457794,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.55032300949097,0.672187335789204,0.521258249878883,-0.46096083521843,1.50048846006393, +-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.40120130777359,0.682387210428715,-0.289338707923889,-1.16159385442734,1.41737255454063,0.418005105108023,-1.60119420289993,0.96843521296978,-0.179820585995913,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.5053551197052,0.580322265625,-0.471904963254929,-1.76797503232956,0.442972373217344,0.396708933869377,-1.05868554115295,1.6381961107254,0.360001727938652,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.30246150493622,1.14482977986336,-0.0523116886615753,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.71384954452515,0.583510495722294,0.194381438195705,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708,-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.0958998203277588,0.675446297973394,0.883943349123001,0.462101608514786,0.658518247306347,1.22978001832962,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.885600976645947,0.580853402614594,0.699740178883076,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.0665653944015503,0.747556075453758,1.57862377166748,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.417888276278973,0.605346051976085,1.61671817302704,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.50617808103561,0.928327918052673,0.523524343967438,1.44322448968887, +0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.6871817111969,0.807080835103989,0.689126193523407,1.55508345365524,0.433407412841916,1.0785368680954,1.3575786948204,0.437027879059315,1.2073957324028,0.997346997261047,1.32779806852341,1.07229605317116,1.71216821670532,0.869120836257935,0.234488919377327,1.84124773740768,0.423932887613773,0.495496787130833,1.75871795415878,0.66915725171566,0.602595195174217,1.22337013483047,1.32249301671982,0.590328752994537,1.61997663974762,1.06483486294746,0.37613320350647,1.7342067360878,0.793721824884415,0.447439804673195,1.83863061666489,0.367105107754469,0.546619176864624,1.29198369383812,1.30708065629005,0.562067657709122,0.714746743440628,0.497397970408201,0.976591184735298,0.838513225317001,0.291549673303962,1.13910499215126,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439,-0.192296214401722,1.2836207151413,1.43172496557236,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.350511848926544,0.692471534013748,1.72521591186523,-0.272463694214821,0.625714778900146,1.72132360935211,-0.0190511643886566,0.681022793054581,1.70135480165482,-0.336173713207245,1.11867183446884,1.53591132164001,-0.309674218297005,0.703436762094498,1.71479249000549,0.0927144289016724,0.645044803619385,1.54571837186813,-0.186306640505791,0.553133197128773,1.70965820550919,0.214541107416153,0.472547329962254,1.50920653343201,0.0521100163459778,0.84872242808342,1.59044772386551,0.142795026302338,0.6600192328915,1.6347708106041,0.119093880057335,0.531255599111319,1.75260090827942,0.121861338615417,0.491654865443707,1.60883116722107,-0.1945980489254,0.550001343712211,1.73375475406647,0.668878428637981,1.080013692379,1.16363430023193,0.564696460962296,0.72341026365757,1.28139007091522,0.371859610080719,0.946026176214218,1.32064712047577,0.28640054166317,1.31200331449509,1.29966634511948,0.657175227999687, +1.10517799854279,1.28640753030777,0.590708520263433,1.0811755657196,1.37105542421341,0.25691194832325,0.592578992247581,1.72085440158844,0.937942883465439,0.859512537717819,0.819090597331524,0.341051504015923,1.32787203788757,1.39292103052139,0.415135145187378,1.00713369250298,1.51329308748245,0.648758313152939,0.543215667828918,1.61019289493561,1.06533589959145,0.531957976520061,0.975092381238937,0.414673362392932,0.749678050167859,1.57589775323868,0.892121074721217,0.9887835085392,0.365420460700989,1.06783869862556,0.50284332036972,0.794533431529999,1.01373065263033,0.872377336025238,1.00304339826107,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.910574443638325,0.872335612773895,1.31465956568718,0.900299517437816,0.614159367978573,1.27238127589226,0.557452589273453,1.29768872261047,0.71635739505291,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937,0.585861831903458,0.4289336130023,1.1122690141201,0.656720131635666,0.559883451089263,0.796167030930519,0.408652544021606,0.409350365400314,1.0754606127739,0.353517234325409,0.618586111813784,0.283552289009094,0.216117918491364,1.00146484375,0.457571625709534,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.566276073455811,0.442594319581985,0.643884226679802,0.554420828819275,0.393805809319019,0.867822624742985,0.471678733825684,0.383285038173199,0.772117380052805,0.126732259988785,0.591638810932636,1.50325697660446,-0.072632223367691,0.549328880384564,1.67394810914993,0.380493938922882,0.562906999140978,1.33321893215179,-0.0197220146656036,0.883991479873657,1.51165932416916,0.00785070657730103,0.55509490147233,1.57442915439606,0.092689573764801,0.590341560542583,1.62470299005508,0.44608411192894,0.553566477261484,1.24453687667847,-0.138697624206543,0.492377787828445,1.7299867272377,0.126790314912796,0.456699252128601,1.60525357723236,0.161933720111847, +0.65004962682724,1.59966522455215,0.0521961450576782,0.580633815377951,1.64643222093582,-0.119605541229248,1.21047201752663,1.36179453134537,-0.155653953552246,1.17728525400162,1.41032207012177,0.273381367325783,0.853374361991882,1.66503113508224,0.111633986234665,0.755786389112473,1.6112734079361,-0.337070952885369,1.19873511791229,1.482053399086,-0.109128020703793,1.02114191651344,1.66859894990921,0.0466204197145998,1.27609592676163,1.50844192504883,0.0188791453838348,0.81043715775013,1.7640683054924,-0.0273794382810593,0.467269785702229,1.87020641565323,0.383759722928517,0.586887091398239,1.83147537708282,0.437049776315689,0.49733280390501,1.80879175662994,0.473930737469345,0.785092920064926,1.69110387563705,0.264719650964253,0.324520634952933,1.90968269109726,0.879356190562248,0.395490765571594,1.61324745416641,0.286729969084263,1.01272585988045,1.69671589136124,0.330474853515625,0.634350404143333,1.83057475090027,0.685173317790031,0.1877501308918,1.79579800367355,0.990150734782219,0.144000082276762,1.58114010095596,0.299684910103679,0.534788399934769,1.77247780561447,1.10657197982073,0.473982070572674,0.860886686481535,1.11687548458576,0.11468749307096,1.40443789958954,1.07267771661282,0.221110103651881,1.26496043801308,0.122104078531265,1.36477202177048,1.10897907614708,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0158661603927612,1.08330237865448,1.4027424454689,0.233516812324524,0.81639376282692,1.27687901258469,0.526161521673203,0.763278380036354,1.20843994617462,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.208725869655609,1.03013336658478,0.723546922206879,0.0760306119918823,0.471519562415779,0.828292965888977,0.199108958244324,1.03313887119293,0.392361789941788,-0.31430122256279,1.36796903610229,0.748472452163696,0.0686137676239014,0.883445501327515,0.822417020797729,0.127758383750916,0.385423388332129,0.777634620666504,0.172266125679016, +0.424839813262224,0.548078998923302,0.143039226531982,0.531586855649948,0.786759525537491,0.382920384407043,0.615221317624673,0.398718856275082,0.400903046131134,0.523003600537777,0.753314688801765,0.194376945495605,0.416941944509745,0.489397294819355,-0.207694590091705,1.52493876218796,0.549880966544151,-0.00286179780960083,1.50310152769089,0.713344261050224,0.662809878587723,0.788584798574448,0.783206857740879,0.41286301612854,0.551988702267408,0.581826576963067,0.190988779067993,1.48500770330429,1.0054660141468,0.605264037847519,0.972477644681931,1.04069402813911,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,1.01544828340411,0.738500943407416,0.976765811443329,1.03868880867958,0.730511073023081,1.12606874108315,1.07926705479622,0.55089708417654,1.01543295383453,0.8041972219944,0.597082037478685,1.25169494748116,1.05079159140587,0.645810913294554,1.09733843803406,1.3316322863102,0.613362334668636,0.77452240884304,0.850390881299973,1.261101603508,1.29025113582611,0.906742841005325,1.22872936725616,0.82433920353651,1.17722913622856,1.23493033647537,0.665784360840917,1.26968431472778,1.21677851676941,0.639851093292236,1.48086458444595,0.961934000253677,0.702623561024666,1.37814226746559,0.503906950354576,0.764988668262959,1.45574659109116,1.18024131655693,0.531324476003647,0.60984004131933,0.831286702305079,1.15940298140049,1.08386382460594,0.676765222102404,1.21777212619781,0.699731841683388,1.07210531830788,1.43491864204407,0.941403210163116,0.88403008878231,1.09815903007984,0.812751650810242,0.882923569530249,1.05935399979353,1.12202885746956,0.726719386875629,1.08194985985756,1.0429927110672,0.480728626251221,1.22069931030273,0.983196347951889,0.903832767158747,0.940964341163635,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.1747573018074,0.864833496510983, +1.08104693889618,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,1.05350279808044,0.923352494835854,1.14889085292816,1.5831041932106,0.79563907533884,0.277617287822068,1.20694699883461,0.962949015200138,0.690233498811722,1.47353279590607,0.744059910997748,0.503641996532679,1.75988972187042,0.613422736525536,0.391608830541372,1.45493495464325,0.837829560041428,0.71178837120533,1.134108543396,0.846919842064381,1.11157119274139,1.53506541252136,0.644225090742111,1.02570512890816,1.67474383115768,0.372223552316427,0.920175075531006,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.82544815540314,0.294568922370672,0.661156982183456,1.78063863515854,0.384668463841081,0.700218468904495,1.51091402769089,0.658264398574829,0.892960786819458,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.70371562242508,0.51677143573761,0.361733697354794,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.35327634215355,0.607937067281455,0.949861586093903,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07248941063881,0.76012896001339,0.531120702624321,1.34913751482964,0.490287870168686,0.458579674363136,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07919427752495,0.512475550174713,1.00059545040131,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286, +0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.240583598613739,0.918146431446075,1.01818892359734,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.169898450374603,0.554358348250389,1.17803883552551,-0.102061301469803,1.07679587602615,1.29313892126083,0.035373717546463,0.615011774003506,1.55101817846298,-0.0017511248588562,1.04639029502869,0.994142144918442,0.117601811885834,0.674496322870255,0.668709605932236,-0.30121898651123,1.18963295221329,0.826929241418839,-0.122267425060272,0.623348742723465,0.956350594758987,-0.280924797058105,1.10779559612274,0.0779312551021576,0.127178311347961,0.981413096189499,-0.242779761552811,-0.41663533449173,1.26211383938789,0.810621023178101,-0.133594036102295,0.668438374996185,1.01348438858986,-0.238351941108704,1.19945961236954,-0.190625697374344,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.648926764726639,1.08765107393265,0.658249944448471,1.1410958468914,0.956036388874054,0.491987407207489,0.856487035751343,1.39781534671783,0.930317118763924,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24206691980362,1.00305864214897,0.468275606632233,0.838156551122665,1.44377225637436,0.760494757443666,1.31618893146515,0.959592074155807,0.842566914856434,0.457283398136497,1.55641722679138,0.81784899532795,0.384722549468279,1.42759495973587,1.19819942116737,0.561840742826462,1.46012604236603,1.09324103593826,0.390379787422717,1.55805540084839,0.888118907809258,0.261906701838598,1.56419408321381,1.11294457316399,0.393707230687141,1.48125398159027,1.14371648430824,0.579362064599991,1.45116829872131,1.09949436783791,0.283373177051544,1.50734502077103,0.891054630279541,0.366661727428436,1.66257601976395,0.969198167324066,0.458482593297958,1.31248831748962, +1.40011382102966,0.0385873913764954,1.48590242862701,0.97580973803997,0.311997603625059,1.50430047512054,1.22777527570724,0.20582576841116,1.54831743240356,1.23645067214966,0.260980806313455,1.48757112026215,0.82818590849638,0.510996043682098,1.34741312265396,1.31980925798416,0.26986663416028,1.60181051492691,1.11559295654297,0.0793850496411324,1.69237869977951,0.851028308272362,0.0675491131842136,1.27372425794601,1.44361686706543,0.212373188696802,1.43047505617142,1.21418261528015,0.0589616466313601,1.73833256959915,0.723696142435074,0.286542192799971,1.60259622335434,1.03581497073174,0.147630304098129,1.31253325939178,1.27988550066948,-0.262685459107161,1.37927967309952,1.20216283202171,0.204205088317394,1.53849869966507,1.2383553981781,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.233444005250931,1.36290764808655,0.942588549107313,0.188678429229185,1.64835333824158,0.968535304069519,0.143057930283248,1.84601807594299,0.556133579462767,0.474871188402176,1.5003958940506,1.03545948863029,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.512217015028,1.4939780831337,1.03123062849045,0.765988543629646,1.53480702638626,0.788900703191757,0.48449133336544,1.44775730371475,1.0841451883316,0.597619533538818,1.31446984410286,1.28455883264542,0.494809497147799,1.47564408183098,0.695721708238125,0.636764049530029,1.50600785017014,0.510344907641411,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.422391961794347,1.51421982049942,0.77144231647253,0.507593574002385,1.48801630735397,0.742639593780041,0.458785824477673,1.40830132365227,1.04178485274315,0.395832534879446,1.47211709618568,0.87605258077383,0.393278025090694,1.52727466821671,0.8836270570755,0.524684447795153,1.49911463260651,0.808099739253521,0.389953009784222,1.38694262504578,1.14987343549728,0.338753052055836,1.37302631139755,1.24951612949371,0.385338760446757,1.52917146682739,0.659825578331947, +0.510006874799728,1.39323651790619,0.406630039215088,0.528459668159485,1.37909415364265,0.367838054895401,0.322532892227173,1.53321641683578,0.78629606962204,0.344595643691719,1.55739039182663,0.864842660725117,0.356290109455585,1.45400711894035,0.846588052809238,0.395894855260849,1.4529176056385,0.940874144434929,0.398648297414184,1.53222250938416,0.796728126704693,0.0956604704260826,1.55730050802231,0.859389871358871,0.31581375002861,1.39564514160156,0.956911310553551,0.293728794902563,1.38751864433289,1.14251574873924,0.333946144208312,1.50524669885635,1.08501622080803,0.0885206526145339,1.51787811517715,0.870611058548093,0.403696820139885,1.35661441087723,0.655460581183434,0.102981418371201,1.54878735542297,0.953972488641739,-0.0713489642366767,1.4256409406662,1.11241199076176,-0.164067151024938,1.21605791151524,1.1602541655302,0.0446670821402222,1.29617789387703,1.18836380541325,0.0117078889161348,1.51834869384766,0.934160687029362,-0.120163585059345,1.42015159130096,0.999753087759018,-0.102120481431484,1.1052967980504,1.12366013228893,-0.165045505389571,1.15940184891224,1.34554305672646,0.00249281898140907,1.36494785547256,1.29045259952545,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.117201916873455,1.10630731284618,0.824526518583298,-0.164182338863611,1.42254930734634,0.951596718281507,0.298433436313644,1.53632539510727,0.940364703536034,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.328864740207791,1.30362224578857,0.826449804008007,0.203960306942463,1.23524588346481,1.28763064742088,0.296377932652831,1.54851514101028,0.821255791932344,0.602477446198463,1.48340728878975,0.811082571744919,0.148699004203081,1.17739178240299,0.592778235673904,0.351911798119545,0.574663504958153,0.0681134462356567,0.101074865087867,1.08075318485498,1.10454161465168,0.347320780158043,0.990546859800816,0.585145592689514,0.164727479219437,1.19267705082893, +0.52667024731636,0.0978744998574257,1.16025938093662,0.56032258272171,-0.232026621699333,0.981006242334843,0.915338862687349,0.112368404865265,1.01548182964325,0.682232603430748,-0.156652837991714,1.13963796198368,0.678029477596283,-0.328567266464233,1.03558692336082,1.01253943890333,0.424286969006062,1.29150089621544,0.360896408557892,0.516025424003601,1.04302650690079,0.327120661735535,-0.045341819524765,1.13971470296383,0.641746371984482,0.143559187650681,1.16447098553181,0.561333984136581,-0.147349208593369,1.17237478494644,0.845213025808334,-0.0364854037761688,1.05116778612137,0.715809270739555,0.44061878323555,1.34315302968025,0.309181272983551,-0.249392569065094,1.19567164778709,1.03658580780029,0.123620200902224,0.954829134047031,0.546366035938263,0.724539622664452,0.892716467380524,0.142723083496094,0.476542055606842,1.4169260263443,0.41668526083231,0.390247255563736,1.38079288601875,0.460262194275856,0.262142986059189,1.04373985528946,1.04861217737198,0.524688929319382,1.14583529531956,0.580978725105524,0.437107548117638,1.37750574946404,0.945022165775299,0.654868116602302,1.59590142965317,0.380249194800854,0.56653868407011,1.55239349603653,0.358442366123199,0.224513391032815,1.33944287896156,0.96784170717001,0.576722141355276,1.42648926377296,0.709250761196017,0.40707340836525,1.5411502122879,0.901400446891785,0.201731376349926,1.52201598882675,0.925108656287193,0.698487251996994,1.28407377004623,0.625918969511986,0.375814899802208,1.12817291915417,1.24755501747131,0.582259923219681,1.05191443115473,0.788859821856022,0.910072579979897,0.963576108217239,0.153034538030624,0.940684154629707,1.2902737557888,0.517099894583225,0.822379060089588,1.2775547504425,0.703661605715752,0.81085591390729,1.05633267760277,0.771742343902588,0.989243894815445,1.05564788356423,0.454044684767723,0.748199601657689,1.28601223230362,0.615315264090896,0.795783579349518,1.22959986329079,0.781165987253189,0.749641140922904,1.49143955111504,0.406605329422746,0.726844418793917,1.41293209791183,0.307656854391098,0.57882659137249,1.2271686643362, +0.966429010033607,0.756107434805017,1.26731598377228,0.783488869667053,0.618400759994984,1.41971224546432,0.811244383454323,0.483239183202386,1.36255121231079,0.910232163965702,0.789731457829475,1.21223947405815,0.548054099082947,0.720706358551979,1.02260863780975,0.941194593906403,0.581082653254271,1.36676892638206,0.697804242372513,0.662010446190834,1.41791495680809,0.388943895697594,0.887888219207525,1.11057209968567,0.602740690112114,0.956131261773407,1.0665557384491,0.457156255841255,0.768860287964344,1.46034127473831,0.233292933553457,0.638734337873757,1.36630222201347,0.629049606621265,0.461299523711205,1.26542553305626,1.09382116794586,0.721343450248241,1.44445812702179,0.417471945285797,0.726209849119186,0.0341058671474457,-0.704343795776367,0.627437017858028,0.309128142893314,-0.367496371269226,1.06984287500381,0.30245915055275,1.47600746154785,0.903901547193527,0.454076372087002,1.64292258024216,1.6348015666008,0.653499662876129,0.806804105639458,1.64182180166245,0.848871514201164,0.564398005604744,0.802523963153362,-0.0669861137866974,1.00343684852123,1.11218893527985,-0.360115021467209,0.91341146081686,1.1314722597599,0.056167259812355,1.11100126802921,0.821736216545105,0.0339390188455582,1.33539977669716,0.924061357975006,-0.408654555678368,1.42191350460052,1.27426609396935,-0.552661139518023,1.11882984638214,1.22475519776344,0.029291570186615,1.46270138025284,0.967522650957108,-0.0420372262597084,1.5580957531929,0.677230626344681,0.143213480710983,1.77787792682648,0.952547341585159,0.0333831608295441,1.71363008022308,0.816545009613037,0.387746848165989,1.77177929878235,-0.281853854656219,-0.387340813875198,0.0357833504676819,0.15725269401446,-0.110616065561771,-0.0250723361968994,0.280074991285801,-0.148695714771748,0.00454401969909668,0.299058441072702,-0.00126899778842926,1.93764042854309,0.0289127230644226,-0.190749142318964,0.0167955160140991,0.277189195156097,-0.273920681327581,-0.0638006925582886,-0.392199367284775,-0.579085394740105,0.474678456783295,0.630767319351435,-0.152489330619574,-0.217157781124115, +0.12188458442688,-0.315924044698477,0.00804060697555542,-0.107978612184525,-0.214399367570877,0.10776823759079,-0.41194361448288,-0.494149997830391,0.597491785883904,0.549963489174843,-0.345434248447418,-0.107604146003723,-0.223748415708542,-0.273902744054794,0.28739857673645,-0.537672191858292,-0.0798127055168152,0.555885285139084,-0.530341297388077,-0.349816061556339,1.04811570048332,0.121527820825577,-0.0674814805388451,-0.031764805316925,-0.400227934122086,-0.132704526185989,0.376587212085724,-0.562626659870148,-0.193415828049183,0.717222481966019,-0.517308980226517,-0.282739020884037,1.07619133591652,0.00589627027511597,0.160150989890099,-0.0400698781013489,-0.421682357788086,-1.23339575529099,-0.0675026476383209,-0.432728290557861,-1.09687849879265,-0.119953379034996,0.058233380317688,-0.651419550180435,0.692128419876099,-0.151727259159088,-0.427030220627785,0.107324421405792,-0.389981746673584,-1.26988473534584,-0.0364431738853455,-0.438418745994568,-1.10599258542061,0.0480654370039701,0.133604526519775,-0.733775556087494,0.568409398198128,0.153263211250305,-0.44246444106102,-0.305652141571045,0.0281141400337219,-0.686229169368744,0.0994481593370438,-0.0264811515808105,-0.522714197635651,0.210148313548416,0.0833495259284973,-0.107583962380886,0.693268358707428,0.033613383769989,-0.218302831053734,0.703986525535583,1.55593591928482,-0.344813726842403,0.922244712710381,1.87833124399185,-0.311895783990622,0.0979272425174713,1.88523191213608,0.10871596634388,0.611550107598305,1.55562686920166,0.12871316075325,0.545722275972366,1.8217009305954,-0.137501403689384,0.769961923360825,1.75055068731308,-0.0402876413427293,0.00155806541442871,1.65464669466019,-0.167108124122024,1.10268062353134,1.75808167457581,-0.0716285035014153,0.124991029500961,1.66931998729706,0.0120432302355766,1.08895754814148,1.47139459848404,-0.0541041344404221,1.23658648133278,1.64837288856506,-0.184711936861277,1.11000740528107,1.2464519739151,0.192007809877396,1.47282344102859,1.52305883169174,0.824069768190384,0.651345364749432,1.58377206325531, +0.549292206764221,0.817581444978714,1.56160867214203,0.661233260296285,0.651598237454891,1.61530333757401,0.726069279015064,0.644787937402725,1.63711136579514,0.568571462295949,0.648804396390915,1.68377667665482,0.546138717792928,0.623555399477482,1.62581592798233,0.665293991565704,0.799176082015038,1.1832160949707,-0.367303013801575,0.609199121594429,1.30104941129684,-0.421952784061432,0.214672096073627,1.68752121925354,0.128578066825867,0.383432175964117,1.56936460733414,0.0843597650527954,0.81597700715065,1.27428758144379,-0.463010281324387,0.320013262331486,1.05184829235077,-0.272804200649261,0.36603207886219,1.48222655057907,0.280182778835297,0.497622665017843,1.56135785579681,0.225555390119553,0.459284838289022,1.31038269400597,0.3074771463871,0.592597510665655,1.2613465487957,0.29095870256424,0.646978672593832,1.37879094481468,0.667990811169147,0.678982332348824,1.28009563684464,0.728668294847012,0.653182591311634,1.07509791851044,0.255273461341858,1.08677762746811,1.20998722314835,0.284722000360489,0.665091600269079,1.81537526845932,0.43435775488615,0.407675887458026,1.40329983830452,0.738315358757973,0.259642608463764,1.7245876789093,0.468619987368584,0.0856633372604847,1.62568300962448,0.285640060901642,0.164401732385159,1.67668688297272,0.28479677438736,0.312367416918278,1.80343306064606,0.352229401469231,0.175434693694115,1.78329932689667,0.341788545250893,0.129883818328381,1.74009865522385,0.175525665283203,0.201726482249796,1.65956526994705,0.0956613421440125,0.546134881675243,1.68150854110718,0.609087787568569,0.770144551992416,1.67453002929688,0.587872639298439,0.806666702032089,1.60238122940063,0.573034956119955,0.869703233242035,1.65703850984573,0.573317736387253,0.783568352460861,1.38339582085609,0.674463301897049,0.981402516365051,1.45381826162338,0.684985654428601,0.872674614191055,1.34294220805168,0.732651732861996,0.99566051363945,1.30491551756859,0.664359802380204,0.721560729667544,1.25968915224075,0.705753073096275,0.378498107194901,1.19824859499931,0.978599697351456,0.43976067006588,1.25232344865799, +0.943106770515442,0.662914466112852,1.28706189990044,0.778536839410663,0.593264553695917,1.30182772874832,0.712315136566758,0.676617098972201,1.23415261507034,0.948261141777039,0.665388356894255,0.964390499230561,1.1015128493309,0.604351498186588,1.0807486101985,0.876088613644242,0.535977555438876,1.07210683822632,0.824746711179614,0.595506343990564,0.911971118951683,0.454064190387726,0.5544213950634,1.02188050746918,0.502095878124237,0.590468287467957,1.03119684010744,0.91998790204525,0.190114229917526,1.03155984729528,0.505017340183258,0.583577424287796,1.00600475072861,0.570551544427872,0.200670123100281,0.994700410188955,0.835389740765095,0.563740022480488,1.10373143851757,0.869854755699635,0.474801503121853,1.07920914888382,1.06926068663597,0.35405295342207,0.999303092861307,0.972015645354986,0.328273056074977,1.1005153208971,0.911021120846272,0.369504623115063,1.10341727733612,0.915925414301455,0.395559955388308,0.95035739273537,1.26270812749863,0.196269020438194,1.0799932256341,1.15222164988518,0.148301385343075,1.10115119069815,0.937303626909852,0.347497805953026,0.998633540547969,0.958243932574987,0.301235895603895,1.11488930881023,0.949854951351881,0.243969779461622,1.10914126038551,0.9373175855726,0.287669841200113,0.997308572724524,0.967668557539582,0.239166140556335,1.12878140807152,0.95905558206141,0.171874161809683,1.12165332585573,0.950348267331719,0.199172142893076,0.99262184662895,0.9573909714818,0.19861463457346,0.260785058140755,0.501815497875214,0.840435421094298,0.362874954938889,0.525737017393112,0.93079587072134,0.358599126338959,-0.656340956687927,-0.115613877773285,0.684404850006104,-0.761836618185043,-0.141334414482117,0.608028396964073,-0.380680814385414,-0.0487523674964905,0.559701502323151,-0.409437134861946,0.0567005276679993,0.985845476388931,-0.524356380105019,0.425230026245117,1.0036316215992,-0.525131925940514,0.197448909282684,0.937368988990784,-0.131524175405502,0.137863457202911,1.07840903103352,-0.175803981721401,0.570825159549713,0.911526754498482,-0.357483506202698,0.412563681602478, +1.04200956225395,-0.514553144574165,0.505001664161682,1.03888739645481,-0.383148960769176,0.689392119646072,0.961055606603622,0.091929268091917,0.528031170368195,1.47324168682098,-0.918651789426804,-0.475481420755386,0.855151019990444,-0.359897874295712,-1.0203142054379,1.42338162660599,-0.134748034179211,-0.921277459710836,1.086430773139,0.255990996956825,-0.588349193334579,1.09740418195724,-0.35785461217165,-1.00283478572965,1.04674237966537,-0.302208006381989,-0.205250382423401,1.12380582094193,-0.433604389429092,-0.123213112354279,1.32460090517998,-0.500027805566788,-0.917971666902304,1.32619270682335,-0.462739408016205,-0.928970690816641,1.29389905929565,-0.126485764980316,-0.0291976928710938,1.64426326751709,0.0119933038949966,0.496616169810295,1.48654133081436,0.846072794869542,-0.0755251608788967,1.82338118553162,-0.0567377358675003,-0.543413456529379,1.87700968980789,-0.0896599795669317,-0.422756772488356,1.73531103134155,-0.0862840600311756,-0.154026240110397,1.69375932216644,0.135163046419621,-0.146106600761414,1.69457417726517,0.537077650427818,0.206701874732971,1.89428329467773,0.234795372933149,0.419232936576009,1.46736836433411,0.855893017724156,0.179981712251902,1.50193113088608,0.291849479079247,0.8800283446908,1.80926430225372,0.573381438851357,0.338370732963085,1.99536955356598,0.0465367902070284,0.00151222571730614,1.60380566120148,-0.151136197149754,0.37191241979599,1.80247455835342,0.150155991315842,0.0515779256820679,1.48458248376846,0.0276113376021385,1.1172768175602,1.40998819470406,0.143178626894951,0.827120184898376,1.75164115428925,0.306792750954628,0.52861300483346,1.78311264514923,0.321295324712992,0.474007472395897,1.8707240819931,0.107886664569378,0.460414126515388,1.75120544433594,0.376246701925993,0.494530521333218,1.72676402330399,0.504632133990526,0.431931726634502,0.263685211539268,-0.54284717515111,-0.184852004051208,0.814386457204819,-0.615576684474945,-0.343519866466522,0.797770991921425,0.170045718550682,-0.0939892530441284,0.401455774903297,-0.160216089338064,-0.00967413187026978, +1.35611701011658,-0.560175135731697,0.195358097553253,1.26948541402817,-0.571063309907913,-0.356178760528564,1.71419161558151,0.205656468868256,0.581114688888192,1.55382078886032,-0.0846295356750488,0.783141990192235,1.33309209346771,-0.454107210040092,0.206796824932098,1.35538965463638,-0.291179902851582,-0.281504571437836,1.74094527959824,0.0323794633150101,0.225568771362305,0.832222983241081,0.235355041921139,-0.179677844047546,0.990917578339577,-0.175632812082767,0.389584004878998,1.02472719550133,0.448228046298027,0.210378110408783,1.19891780614853,0.205967105925083,-0.00959283113479614,1.17038571834564,0.0630742688663304,1.14892543852329,1.45435100793839,-0.505841091275215,-0.996936231851578,1.40496903657913,-0.018859326839447,0.0133788585662842,1.74298113584518,-0.101057916879654,-0.025638222694397,1.89927715063095,-0.459514573216438,-0.307536117732525,1.46431934833527,-0.704765722155571,-1.12289148569107,1.55186474323273,-0.925499424338341,0.632813006639481,1.42499387264252,-0.0897993817925453,-0.340661972761154,1.23191571235657,0.805128954350948,-0.669217765331268,1.68493461608887,-0.0549819469451904,-0.0679343640804291,1.81216382980347,0.24767155200243,0.699169784784317,1.82497620582581,0.380347371101379,-0.667854443192482,1.38439276814461,0.615861847996712,0.22832202911377,1.69051724672318,0.0410497263073921,0.0414721071720123,1.87419807910919,-0.132345750927925,-0.41738255508244,1.94276314973831,-0.0322520881891251,-0.350826993584633,1.82937014102936,0.0941538512706757,0.222539260983467,1.84417319297791,0.347706001251936,-0.377578564919531,1.9188546538353,0.0957033298909664,-0.502496093511581,1.67851436138153,0.0752215925604105,-1.05535486340523,1.7240709066391,0.443823158740997,0.190509468317032,1.90839791297913,0.517737105488777,-0.25906328111887,1.35573989152908,0.9739790558815,-0.348637126386166,1.81575894355774,0.29220736771822,0.48704694584012,1.81682461500168,0.0497762560844421,-0.634884372353554,1.77594125270844,-0.0143281817436218,0.463442727923393,1.78620541095734,0.525312080979347,-0.470908594317734, +1.20280247926712,0.487537384033203,-0.938943990506232,1.78750324249268,0.795491814613342,-0.284638412296772,1.63991278409958,0.362682774662971,-0.479497596621513,0.58430540561676,-0.900055274367332,-0.348526000976563,1.34880554676056,-1.01524133235216,-0.059325709939003,0.936714887619019,-0.492982655763626,-0.455384790897369,0.965104907751083,-0.491486370563507,-0.0169048309326172,0.715562045574188,-1.12617413699627,-0.717127904295921,0.855347812175751,-1.17913228273392,-0.785385396331549,1.28090772032738,-0.653185606002808,-0.588395148515701,1.19452178478241,-0.544647231698036,-0.368739724159241,1.18677088618279,-0.27188479155302,-0.398717045783997,1.07594306766987,-0.653434336185455,-0.655246406793594,1.12098273634911,-0.265335258096457,-0.544327229261398,0.8283836171031,0.215667515993118,-0.395815551280975,0.356774628162384,-0.198170997202396,-0.156734645366669,1.14381435513496,-0.22240486741066,-0.412122249603271,1.79667121171951,0.124164838343859,0.677714429795742,1.33725887537003,0.0963493846356869,0.299988269805908,1.11383014917374,-0.193306565284729,0.109578967094421,1.42742502689362,-0.679910358041525,-0.231526076793671,1.75068855285645,-0.522315561771393,-0.556985232280567,1.65663367509842,-0.502436488866806,-0.913343399763107,1.43289369344711,-0.904804781079292,-0.331988885998726,1.13377705216408,-1.15091893076897,-0.714448451530188,1.78641927242279,-0.739661812782288,-0.189516454935074,1.62413430213928,-0.578761368989944,-1.00439804792404,1.65979069471359,-0.372716009616852,-1.03025364875793,1.80636650323868,-0.500377170741558,-0.25973829627037,1.89974415302277,-0.0988556034862995,-0.233685508370399,1.74352061748505,0.0753192126285285,-0.963374137878418,1.55994772911072,-0.528294652700424,-1.00883820652962,1.43969249725342,-0.416307419538498,-1.3002073764801,1.46637183427811,0.127048109425232,-1.31373989582062,1.76446211338043,0.136198402382433,-0.816214740276337,1.85846781730652,0.369006380438805,-0.290514349937439,1.90454035997391,0.428065091371536,-0.359362632036209,1.48933333158493,0.754880444146693, +0.215987145900726,1.77111315727234,0.114471745444462,-0.205640554428101,1.91049814224243,-0.0253509283065796,0.235082492232323,1.80173176527023,-0.0227923989295959,-0.728881686925888,1.7430659532547,-0.279750923858956,-0.22880282998085,1.90534162521362,-0.302803043276072,-0.13758759200573,1.84699702262878,-0.0325394421815872,-0.473390821367502,1.92607045173645,0.00177383422851563,0.0104216188192368,1.9012822508812,0.455560453236103,0.0259315967559814,1.80071365833282,0.402935519814491,-0.569512024521828,1.94985085725784,0.270766297820956,-0.221383258700371,1.87478917837143,0.305055774748325,-0.460141371935606,1.71135997772217,0.320456892251968,-0.842193126678467,1.76876884698868,0.421234052628279,-0.524044685065746,1.65571761131287,0.122209912864491,0.182592123746872,1.83078336715698,0.0696938075125217,0.0428470373153687,1.56626760959625,0.245684081106447,1.16353672742844,1.51666116714478,0.191061269491911,1.26335078477859,1.91883379220963,-0.202154088765383,0.442035645246506,1.55121266841888,-0.100261592539027,1.25393563508987,1.58446091413498,0.0394265055656433,1.14154976606369,1.81626296043396,-0.106471419334412,0.379697531461716,1.67017424106598,-0.429665521951392,0.55154475569725,1.93462789058685,-0.230024863034487,0.220747757703066,1.82450467348099,-0.759786695241928,0.223461993038654,1.7334771156311,-0.320428021252155,0.524274945259094,1.90416216850281,0.0304534868337214,0.354143537580967,1.77120584249496,0.0197948857676238,0.594449952244759,1.73477029800415,-0.310357745736837,0.550308302044868,1.875483751297,-0.34327996103093,0.285555865615606,1.48692199587822,-0.814253479242325,0.0512557625770569,1.47082898020744,-0.863179143518209,-0.176255531609058,1.88257974386215,-0.204070955514908,-0.225469579920173,1.87161612510681,-0.30928311496973,0.240460954606533,1.43051865696907,-1.11284683644772,-0.253381907939911,-0.105548709630966,-0.580687314271927,-0.80137187615037,0.324466407299042,-0.41704926546663,-0.762280017137527,1.22596928477287,-0.653482258319855,-0.905310576781631,1.21649590134621,-0.689445942640305, +-0.89677113853395,1.39103516936302,-0.0790865737944841,-0.8562574647367,0.496913224458694,-0.110320838633925,-0.744702227413654,1.28484392166138,-0.215091165155172,-0.472820490598679,1.24972152709961,-0.635166853666306,-0.551405608654022,1.79918307065964,-0.424995683133602,-0.476926034316421,1.34249484539032,-0.0805384763516486,-0.817520268261433,1.25782451033592,0.312533922493458,-0.445133030414581,1.43861526250839,-0.0464224331080914,-0.422149807214737,1.63731014728546,-0.423309410456568,-0.516939111053944,1.305070489645,-0.390277909114957,-0.814358320087194,1.3338917195797,0.111802861094475,-0.844822488725185,1.37963983416557,-0.152773082256317,-0.596081241965294,1.02202714048326,-0.0395475910045207,-0.883085377514362,1.55551183223724,0.295159310102463,-0.58692954480648,0.869923800230026,0.240557631477714,-0.921985112130642,1.28716054558754,0.305204495787621,-0.774817906320095,1.2489752471447,0.23458069562912,-0.580483466386795,0.970655113458633,0.124443113803864,-0.36564964056015,1.3093698322773,-0.00316588580608368,-0.387102365493774,1.24033877253532,0.217685684561729,-0.750669106841087,0.88620250672102,0.266979977488518,-0.689539879560471,1.31558531522751,-0.500694140791893,-0.593734353780746,1.37753635644913,-0.595076953992248,-0.721827745437622,1.49277174472809,-0.411355346441269,-0.626311674714088,1.43621355295181,-0.451407819986343,-0.461802870035172,1.67604869604111,-0.608973741531372,-0.403672277927399,0.876668184995651,-0.612723223865032,-0.144597291946411,1.14650678634644,-0.260631017386913,0.0879289507865906,1.69432044029236,-0.592093586921692,-0.36652047932148,1.42901012301445,-0.602206707000732,-0.59802158176899,0.997764557600021,-0.217847801744938,-0.0198141932487488,1.02487862110138,-0.389698110055178,0.159576535224915,1.64992219209671,0.101508749648929,-0.481523439288139,1.78577369451523,-0.352172955870628,-0.105800032615662,1.22226560115814,-0.293471455574036,-0.765855923295021,1.22489100694656,-0.00639055366627872,-0.723354205489159,0.754629001021385,0.0151997162029147,-0.55293795466423,1.70074033737183, +0.0564145967364311,-0.362785696983337,1.59127652645111,0.0764265954494476,-0.133652210235596,1.67938244342804,0.182311063632369,-0.169732183218002,1.72506648302078,-0.147580871358514,-0.396618649363518,0.833537220954895,-0.341581434011459,0.0711892247200012,1.42592471837997,-0.181992098689079,-0.521589934825897,1.39114719629288,-0.130566263571382,-0.654869183897972,0.462863914959598,-0.365927330683917,-0.0420143008232117,1.80234926939011,0.0937238410115242,-0.226624011993408,1.35264495015144,0.0861126780509949,0.348388850688934,1.63188725709915,0.151389613747597,0.785786226391792,1.72996681928635,0.125814810395241,-0.367828249931335,1.76866245269775,0.0375420600175858,0.201258987188339,1.83806782960892,0.219950206577778,-0.16407510638237,1.87895530462265,0.132960379123688,-0.0544660985469818,1.64560973644257,-0.154488533735275,0.278110668063164,0.984596937894821,-0.323261678218842,0.422778189182281,0.955530405044556,0.0230503678321838,0.3995760679245,0.696795020252466,-0.538483839482069,0.654862016439438,0.854654550552368,-0.0307268276810646,0.223382472991943,1.15929394960403,0.24471016228199,0.131965100765228,0.522292852401733,0.237980525940657,-0.0770048499107361,1.12132686376572,0.0310899242758751,0.578385502099991,1.16412305831909,-0.0988916456699371,0.260975480079651,1.23744657635689,0.206042602658272,0.142080307006836,0.760573327541351,-0.036560982465744,-0.0287860631942749,1.0807814002037,0.306843943893909,0.616016328334808,1.20456305146217,0.109842345118523,0.437036335468292,1.285963088274,0.252726852893829,0.332845389842987,1.10147048532963,0.166682228446007,0.423562467098236,1.42743065953255,0.154345847666264,0.913141198456287,1.3831370472908,0.124904364347458,0.579163670539856,1.42662262916565,-0.376330580562353,0.863775540143251,1.27307456731796,-0.157443732023239,0.503590285778046,1.42476266622543,-0.0596231408417225,0.446531563997269,1.43826186656952,-0.354380998760462,0.652871325612068,1.29660665988922,0.376598201692104,0.357160747051239,1.32881984114647,0.251379629597068,0.513995230197906,0.964835584163666, +0.213172666728497,0.054518461227417,1.21730080246925,0.0299750417470932,0.320615649223328,0.722066581249237,0.0773456320166588,-0.0516181588172913,1.32596009969711,0.202798619866371,0.450503349304199,1.32766914367676,0.017332412302494,0.494344890117645,1.32549697160721,0.22644754499197,0.436214059591293,1.26956254243851,0.165053077042103,0.351795494556427,1.00901448726654,-0.241420447826385,0.152306437492371,1.1227313876152,-0.217879600822926,0.272651731967926,1.16547065973282,-0.0362953247968107,0.313991487026215,0.824809223413467,-0.300418248400092,-0.0160447359085083,1.38592648506165,0.0696912966668606,0.649093300104141,1.37996107339859,-0.0772476475685835,1.0212929546833,1.29892694950104,-0.102681871503592,0.550210148096085,1.10681124031544,0.284935034811497,0.73127593100071,1.12655214965343,0.305792709812522,0.870774082839489,0.937113502266584,-0.187887743115425,1.2510646879673,1.07570432126522,-0.355830654501915,0.921812862157822,1.00311206281185,-0.105718165636063,0.512940436601639,1.11841623485088,0.147497028112411,0.56962525844574,1.03145931661129,-0.356190130114555,0.696901082992554,1.17288237810135,0.138755137100816,0.645896434783936,0.945133527740836,-0.117448609322309,0.753583714365959,0.687616181894555,-0.16861529275775,0.251922965049744,0.993926748873491,-0.0364023968577385,0.894680425524712,0.803580075502396,0.0371933598071337,0.876991137862206,0.803796967491508,-0.598142057657242,0.6325743496418,0.675937741994858,-0.444893004372716,0.814588278532028,0.976020599715412,-0.0404109917581081,0.814398005604744,0.73468005657196,-0.42830416187644,0.347533822059631,1.35749247670174,0.355820246040821,0.944965295493603,1.36647433042526,-0.013879269361496,0.851849779486656,1.32698404788971,-0.0483450703322887,0.787966310977936,1.36249634623528,-0.0506377499550581,0.774818927049637,1.36340749263763,0.0087469294667244,1.04664359241724,1.36234745383263,0.0248398035764694,0.907651083543897,1.39258828759193,-0.151987794786692,0.85510041937232,1.20459145307541,-0.547803677618504,1.13503706455231,1.53581172227859,-1.1514778137207, +-0.318151824176311,1.65065997838974,-0.726897060871124,-0.436478868126869,1.84904426336288,-0.577982157468796,-0.254676615819335,1.91321957111359,0.0675471276044846,-0.360178351402283,1.65123927593231,-0.6173913218081,-0.472443886101246,0.688986212015152,-0.823947012424469,-0.62076735496521,0.567611396312714,-0.26258560270071,-0.449685513973236,1.89071804285049,0.0114145129919052,0.00350624322891235,1.59408193826675,-0.012716680765152,0.464403867721558,1.3461993932724,0.528389543294907,1.00575324892998,1.55590695142746,0.192903593182564,1.22030729055405,0.751329630613327,0.413649968802929,-1.2005490064621,0.797504529356956,-0.127005502581596,-1.1294481754303,1.53247475624084,0.413023054599762,-0.870974957942963,1.62943947315216,0.162021175026894,-1.0152342915535,1.2360071092844,0.0242011472582817,-1.08616668730974,1.92105561494827,0.306649587699212,-0.283220045268536,1.57709103822708,0.172072350978851,-1.05881249904633,0.721711054444313,0.590898290276527,-0.372089564800262,0.813421845436096,0.358795635402203,-1.10536526143551,1.1705470085144,-0.00739461928606033,-1.25262492895126,1.67243272066116,0.955744653940201,-0.246855735778809,1.78753352165222,0.20544717926532,0.283141225576401,1.71897524595261,0.125465214252472,0.939046263694763,1.02280359715223,1.00050565600395,-0.807630237191916,1.10386410355568,0.401561945676804,-1.02535853534937,1.46861726045609,1.21784535050392,-0.0519144795835018,1.86455726623535,0.516755871474743,-0.326332047581673,1.78728419542313,0.249231666326523,0.70030514895916,0.688400328159332,0.909292370080948,-0.0489234328269958,0.859544664621353,0.165223315358162,-0.158844888210297,1.72875273227692,0.0615035071969032,-0.183768272399902,1.2873432636261,1.22352203726768,0.343764904886484,1.79103285074234,0.53208202123642,0.314982265233994,1.78313285112381,0.130931979045272,0.876584708690643,1.20584686100483,0.950938545167446,-0.23951667547226,1.42176127433777,0.600102961063385,-0.295136958360672,1.8936715722084,0.249202311038971,0.322522734757513,1.29690408706665,1.31963521242142,0.436742343008518, +1.62438732385635,0.651559874415398,0.563461307436228,1.51346075534821,0.236226700246334,1.06090486049652,1.23649382591248,1.16266006231308,0.0750444233417511,1.40878140926361,0.648182660341263,-0.0079658031463623,1.38480839133263,0.41662784665823,0.684937439858913,1.37013325095177,0.969653934240341,0.379293516278267,1.8627445101738,0.306742444634438,0.386463232338428,0.571044921875,0.0314972065389156,1.39501541852951,0.72337295114994,-0.0337509057862917,1.47230261564255,0.699273109436035,0.153471283614635,1.48345020413399,0.0573427677154541,0.0224369317293167,1.05742138624191,-0.0823995471000671,0.0162046290934086,0.814425617456436,0.0163770318031311,0.161145359277725,1.03138962388039,-0.0704935789108276,-0.0231626853346825,0.551354810595512,-0.026358425617218,0.0237425155937672,0.0631731748580933,-0.103690207004547,-0.0658670933917165,0.393324572592974,-0.0821288228034973,-0.0658220909535885,0.336027145385742,0.729245960712433,0.481962729245424,1.22737300395966,0.465925008058548,0.122807085514069,1.28774285316467,0.550484180450439,0.0206425562500954,1.32940462231636,0.581795394420624,0.143655870109797,1.28307402133942,0.664901226758957,0.1171535551548,1.35838970541954,0.385775983333588,-0.0415047872811556,1.25332885980606,0.351487159729004,0.143868289887905,1.25308269262314,0.871873639523983,0.741378683596849,0.998831421136856,0.84878072142601,0.817086264491081,0.953617453575134,0.83813039958477,0.808679915033281,1.01841878890991,0.444348633289337,0.836225651204586,0.56008517742157,0.0766724944114685,0.303576253354549,0.889667332172394,-0.327205896377563,0.230773262679577,1.06134867668152,-0.299450218677521,0.574845030903816,0.682459615170956,-0.251980423927307,0.385767000727355,1.05400970578194,-0.185588359832764,-0.0495078591629863,1.22829818725586,-0.188382029533386,0.188604323193431,1.1602229475975,0.256953328847885,0.760293830186129,1.17909348011017,0.276047825813293,1.06368139386177,0.876518726348877,-0.164850950241089,0.448504466563463,0.87120409309864,-0.311810314655304,0.101593931205571,0.821942217648029, +-0.308125972747803,0.333362743258476,0.669957354664803,-0.201722323894501,0.331137046217918,0.841219812631607,-0.30920398235321,0.0450001349672675,0.872892901301384,-0.325043976306915,0.285037624649704,0.867653243243694,0.041186511516571,0.725873067975044,1.0050528049469,-0.144442021846771,0.0447970917448401,0.665764719247818,-0.0689182281494141,0.429419948719442,0.610817231237888,-0.203818619251251,-0.0912688095122576,0.807604745030403,0.708848938345909,0.957490103319287,0.66878442466259,0.718683332204819,0.759387030266225,1.18928813934326,0.668933063745499,0.88483202457428,0.987084746360779,0.688205853104591,0.434927210211754,1.39676719903946,0.447359472513199,0.0388784408569336,1.55133670568466,0.444952182471752,-0.727170672267675,0.701436370611191,0.482837714254856,-0.539619714021683,0.564758986234665,0.80277281999588,-0.0956397652626038,0.649007081985474,0.490433722734451,0.0202175974845886,0.631159782409668,-0.069568932056427,-0.783566512167454,0.359000355005264,0.3586335927248,-0.852240968495607,0.99767098762095,0.394017279148102,-0.24500348418951,1.04565744102001,0.505509376525879,-0.245574034750462,0.584019899368286,0.394977748394012,-0.301990918815136,0.526280879974365,0.555142551660538,-0.305488005280495,1.13071148097515,0.814253091812134,0.02654451970011,1.21822844445705,0.499687403440475,0.833859093487263,0.172681391239166,0.207937717437744,0.0860516726970673,0.36566960811615,0.0835193395614624,-0.182168014347553,0.230513453483582,0.15228134393692,0.417419649660587,0.19414296746254,0.284348845481873,0.432606652379036,0.440709829330444,0.522132158279419,0.949314206838608,0.407532811164856,-0.0187800526618958,0.666541695594788,-0.23370748385787,0.564691603183746,0.103599175810814,0.729100346565247,0.31306916475296,0.431559629738331,0.376985281705856,0.510995507240295,0.30323414131999,1.07858656346798,-0.073691189289093,0.372098457068205,0.332572117447853,0.247889518737793,0.352401500567794,0.475153267383575,0.533548980951309,0.0856984644196928,0.596339136362076,0.48723292350769,1.24109455943108,-0.219664238393307, +0.012925922870636,0.714441478252411,0.363677442073822,-0.150942921638489,0.493727669119835,0.182198710739613,-0.107733011245728,0.777372628450394,-0.679004460573196,-0.0142504572868347,0.679476857185364,-0.227699637413025,0.581241458654404,1.13919320702553,0.214594781398773,-0.0563105940818787,0.97877237200737,-0.11771659553051,-0.108396232128143,0.56122225522995,0.117428660392761,0.151193678379059,0.684477239847183,0.524950720369816,0.168780028820038,0.671405166387558,0.975679308176041,-0.079550564289093,0.0117095806635916,0.427792526781559,0.0708513259887695,-0.0863255709409714,0.340647394768894,0.0412774085998535,0.174347929656506,0.416823714971542,-0.00729471445083618,0.330954790115356,-0.181359820067883,0.591375678777695,0.936980508267879,0.132173384539783,0.120704114437103,0.488577581942081,0.134940288960934,-0.0404625535011292,0.324306778609753,0.169996060431004,0.0775210857391357,0.705461055040359,0.00578208640217781,-0.160027384757996,0.396406717598438,0.385207764804363,-0.115424752235413,0.229931756854057,0.273572005331516,-0.0397088527679443,0.200772598385811,0.144419495016336,0.360930562019348,0.877741724252701,1.0679669380188,-0.119677901268005,0.501437354832888,1.15747648477554,0.65720009803772,-0.0237952740862966,0.987643294036388,0.382170736789703,0.0708739385008812,0.828739449381828,0.471812039613724,-0.183817390352488,0.901585780084133,0.119954943656921,-0.181854258291423,0.542158141732216,0.514554679393768,0.0303914770483971,0.945309698581696,0.691986739635468,-0.174670033156872,0.989449456334114,0.470973789691925,-0.0661039650440216,0.930600054562092,0.441634654998779,-0.0394846759736538,0.902388244867325,0.540439695119858,0.0653267372399569,1.08163937926292,0.642189472913742,0.676257509738207,0.805153355002403,0.693066537380219,0.688404493499547,0.815265730023384,0.523121327161789,0.135708514600992,1.0124694108963,0.555957913398743,0.20243152230978,0.972133450210094,0.88372041285038,0.623044312000275,0.92670838534832,0.938923165202141,0.663091085851192,0.775588385760784,0.8004380017519,0.00912458077073097, +1.1279444694519,0.818289756774902,0.170125268399715,0.929830309003592,0.623762935400009,-0.110131211578846,0.870061784982681,0.604408144950867,0.204586673527956,1.03404647111893,0.801474541425705,0.507679302245378,1.00944386422634,0.257343471050262,0.137608928605914,0.614756803959608,0.732594460248947,-0.0811557790730149,0.942446228116751,0.429844200611115,0.3444589599967,1.25184562802315,0.649007618427277,0.238264039158821,1.36483377218246,0.0811614990234375,-0.00384399574249983,1.09788966178894,0.335910201072693,-0.0606972179375589,1.30342954397202,0.639198899269104,0.0232388339936733,1.32399213314056,-0.0149003267288208,-0.0317486966960132,0.906879425048828,-0.110943496227264,-0.00174367427825928,0.443259114399552,-0.0264505743980408,0.0551880914717913,0.670103400945663,0.355757534503937,0.758894967380911,0.834260791540146,0.374245941638947,0.655233897268772,0.837467342615128,-0.0829628705978394,0.133871527854353,0.682644873857498,-0.0514835119247437,0.194695484824479,0.808770000934601,0.488493800163269,0.630046635866165,0.990041643381119,0.0821364521980286,0.243825094774365,0.754080086946487,0.178179085254669,0.358333915472031,0.941275417804718,0.108712017536163,-0.0521758683025837,0.966604709625244,0.15271520614624,0.192459505051374,0.732054844498634,0.493721604347229,0.792570501565933,0.843735933303833,-0.00331825017929077,0.382606281898916,0.584682002663612,0.00772947072982788,-0.0679565016180277,0.903191298246384,0.0630080103874207,0.318081744015217,0.746470391750336,-0.0818446278572083,0.334328308701515,-0.18964010477066,-0.259087920188904,-0.0406114710494876,-0.507421880960464,-0.0958176851272583,0.052771769464016,-0.178482294082642,-0.0479025840759277,0.165823616087437,-0.043325275182724,-0.0433600544929504,0.044161781668663,-0.168010175228119,-0.260628938674927,0.0294538307934999,-0.782109692692757,-0.154712975025177,0.196512324735522,-0.421102657914162,0.281554162502289,0.915660783648491,-0.621611386537552,0.380602538585663,0.553599923849106,-0.217196486890316,-0.328560173511505,-0.238211644347757,-0.716837417334318, +-0.257261157035828,0.181278356350958,-0.641535826027393,0.140454351902008,0.537964597344398,-0.377076119184494,-0.237046539783478,0.00965404510498047,-0.346381992101669,-0.0399124026298523,0.478038176894188,-0.110405564308167,-0.12622731924057,0.124493062496185,-0.266607999801636,-0.00144016742706299,0.274218276143074,-0.01811483502388,-0.040376603603363,0.397695519030094,0.0764736831188202,0.0490396022796631,0.261494617909193,0.242307618260384,-0.125146329402924,0.135747350752354,-0.25469097495079,-0.0524778366088867,0.31299052387476,0.0477461218833923,-0.142561793327332,0.424989894032478,-0.0639037787914276,0.399426281452179,0.985701322555542,0.538812400773168,0.0107405781745911,1.082390666008,-0.0276532117277384,0.051356315612793,1.10032680630684,-0.143643375486135,0.00992625951766968,0.680239766836166,0.144715996459126,0.0633538365364075,0.834159702062607,0.171520136296749,-0.0330420732498169,0.997608810663223,0.237090460956097,-0.147753715515137,0.434154719114304,0.0153942368924618,0.696979522705078,0.979407042264938,0.832087893038988,0.470328539609909,0.572914607822895,1.01832727342844,0.632716864347458,0.362132899463177,1.01063666492701,0.551617562770844,0.325568951666355,0.886875461786985,0.605108320713043,0.305225854739547,0.714594528079033,0.516866624355316,0.338734075427055,0.736200511455536,0.368469834327698,0.575774300843477,0.828068811446428,0.587738424539566,0.44203220307827,0.888872694224119,0.806431546807289,0.0396889010444283,1.06020737439394,0.626989901065826,0.0712647549808025,0.998284317553043,0.182555973529816,-0.0675185183063149,0.63705700263381,0.300867021083832,0.0671730432659388,0.775353860110044,0.412270784378052,0.0364231588318944,0.889823921024799,0.407186329364777,0.0933191394433379,0.860082719475031,0.399365305900574,0.0460610399022698,0.859365176409483,0.469375669956207,0.119424127973616,0.900888569653034,0.528275936841965,0.152651228941977,0.929696567356586,0.75975789129734,0.0781210996210575,1.00578220561147,-0.00038832426071167,0.0147827919572592,0.0366087597794831,0.156263053417206, +-0.0383975734002888,0.584107831120491,0.130357325077057,0.0210095886141062,0.525640033185482,0.00559788942337036,0.0891341883689165,0.0213602632284164,0.193111538887024,0.0777847431600094,0.637315448373556,0.230325698852539,0.136246274691075,0.67000450193882,0.447824656963348,0.076159686781466,0.892495222389698,0.223433017730713,0.0379861476831138,0.67629899084568,0.102572083473206,0.0757880434393883,-0.390804011374712,0.0188530683517456,0.033193183131516,-0.148329760879278,0.0631003379821777,-0.0288830944336951,0.398403987288475,0.0445347428321838,-0.0448822639882565,0.348745610564947,0.200872778892517,0.00683235097676516,0.663678672164679,0.152632474899292,-0.044054489582777,0.57607264444232,0.279596865177155,0.0756869614124298,0.806459382176399,0.538905113935471,-0.0468698963522911,0.927941329777241,0.138838589191437,-0.00536786764860153,-0.47095787525177,0.0291935801506042,0.000774599611759186,0.444271191954613,0.00567179918289185,-0.142108300700784,0.162399791181087,0.00595033168792725,0.0293859373778105,-0.0420274138450623,0.0130259990692139,-0.0967321675270796,0.413219377398491,-0.00843942165374756,0.0248674303293228,0.223139554262161,0.0161646604537964,-0.20150338858366,0.256739363074303,0.0565828084945679,-0.288779571652412,0.462302938103676,-0.0130654573440552,-0.0465164184570313,0.0200507938861847,0.0110371708869934,-0.206075079739094,-0.040692463517189,-0.00548934936523438,-0.205870792269707,0.204105846583843,-0.00820720195770264,-0.239211723208427,0.212636563926935,-0.046333372592926,-0.183011393994093,0.489532813429832,-0.0198727250099182,-0.294046379625797,0.489667236804962,-0.0808365345001221,0.471391394734383,0.604393035173416,0.00151562690734863,0.290407687425613,0.606976687908173,0.652824074029922,0.00621411204338074,1.04287469387054,0.438637435436249,0.704330638051033,0.471901640295982,0.12930029630661,0.686412960290909,0.701593339443207,0.0499045848846436,0.755306631326675,0.317303501069546,0.170554935932159,0.360294756479561,0.479114200919867,0.450433969497681,0.242467269301414,0.896494626998901, +-0.715470894880127,-0.0207322048954666,1.69906282424927,-1.18335139751434,0.473240859806538,1.43801057338715,-1.27456015348434,0.184091728180647,1.52878540754318,-0.48543012648588,0.594707183539867,1.69173574447632,-0.531296953267884,0.100479220971465,1.83933520317078,-0.672075120033696,0.268076121807098,1.30846786499023,-1.46983605623245,-0.200388699769974,1.03289502859116,-1.11911404132843,0.728842027485371,1.1988713145256,-1.36985272169113,0.357928939163685,1.31746917963028,-1.11145222187042,0.34169727563858,0.413717448711395,-1.04449531435966,-0.201697945594788,0.39029723405838,-0.635916993021965,0.717203743755817,1.41122508049011,-1.01877179741859,0.405802495777607,1.56918269395828,-1.18246549367905,0.722736593335867,0.247741281986237,-1.42019045352936,0.156792633235455,0.219640851020813,-0.588925555348396,0.83621884137392,1.13097946345806,-0.53230881690979,0.543151721358299,1.17591165006161,-0.141328662633896,0.892683409154415,0.6355339884758,-0.562221556901932,0.751352578401566,0.597260594367981,-0.15302100777626,1.19660285115242,1.09454371035099,-0.545269429683685,0.535586550831795,1.1393503844738,-0.217180863022804,1.18769428133965,0.733014672994614,-0.625588893890381,0.753941833972931,0.65602433681488,-0.144410133361816,1.0641114115715,0.9732785243541,-0.567096531391144,0.413280885666609,1.04437383264303,0.372286593541503,1.09521648287773,1.03033689409494,0.436824411619455,0.836339391767979,1.34760400652885,0.320744003402069,0.888386210426688,1.33984032273293,0.381146879866719,1.0893414914608,1.0735090970993,0.226619765162468,1.14759692549706,1.25838959217072,0.354596465826035,0.825019218027592,1.31075185537338,0.397495996206999,0.939143218100071,0.968108966946602,-0.188668058544863,0.972940165549517,1.347286850214,-0.729329347610474,1.03170343488455,1.17570689320564,0.0279355347156525,1.09130495786667,1.17236585915089,-0.299312349307002,0.804353717714548,1.58632057905197,-0.544478848576546,0.971017979085445,1.37255001068115,-0.256778345734347,1.02102442458272,0.973516983911395,-0.165550415811595,0.870565764605999, +1.56289291381836,-0.993223667144775,0.845824237912893,1.27210688591003,-0.097641047090292,1.17688725888729,1.12180544435978,-0.512742847204208,1.04211938381195,1.3761490881443,-0.620743185281754,0.935031019151211,1.41650146245956,-0.197358404286206,1.19845469295979,1.01483767479658,0.194088160991669,1.01103117316961,1.27044090628624,0.125442832708359,1.00415061414242,1.22750568389893,0.558544456958771,1.21374467015266,1.2009482383728,0.0976521670818329,1.17577767372131,1.27041977643967,0.306032486259937,0.947195135056973,1.43531262874603,0.149706855416298,1.23008894920349,0.608246594667435,0.10452888906002,1.2551437318325,1.0464989989996,0.0443711876869202,1.04426466673613,0.959328424185514,0.62225662637502,1.07072997838259,0.83778015896678,0.727589026093483,0.985615905374289,0.657173454761505,0.613056495785713,1.24268460273743,0.801353067159653,0.531592498533428,1.28704315423965,0.937521532177925,0.136054128408432,1.18895235657692,1.28124243021011,0.152266129851341,1.02372175455093,1.18070206046104,0.693338669836521,0.924394138157368,1.30557471513748,0.368220388889313,1.25128757953644,1.05861580371857,0.492746405303478,0.891799934208393,1.35004276037216,0.326319042593241,1.07309383153915,0.824777856469154,0.336560357362032,0.832534775137901,0.838183261454105,0.540099367499352,0.771184310317039,0.55890879034996,0.937702880473807,0.765464559197426,0.297230783849955,0.914298440162383,1.03412371501327,0.472628898918629,0.591410962864757,1.0716100409627,0.809659505262971,0.706413578242064,0.784291610121727,0.830851912498474,0.649644695222378,1.20067000389099,1.09684014320374,0.60952652618289,1.15131014585495,0.941128015518188,0.512955665588379,0.843999773263931,1.3363134264946,0.341063406318426,0.936146568506956,1.02401416003704,0.676479808986187,1.02120721340179,1.29691278934479,0.310880206525326,0.995128266513348,0.550220996141434,0.3897276497446,0.940377980470657,0.830242276191711,0.311585113406181,0.854192823171616,0.504156649112701,0.592887323349714,1.25122034549713,0.886881239712238,0.507288254797459,1.25642722845078, +0.923089027404785,0.551224388182163,1.48515602946281,0.806829541921616,0.719519907608628,1.48430523276329,0.529732193797827,0.454119123518467,1.24646782875061,1.04193027317524,0.438769966363907,1.22308984398842,0.945783481001854,0.363036159425974,1.3741999566555,1.15605288743973,0.368762500584126,1.48369655013084,0.800418928265572,0.488668059930205,1.43196418881416,1.07157251238823,0.232567995786667,1.27630439400673,0.923275917768478,0.328396826982498,1.24982857704163,0.568259015679359,0.795947742648423,1.26675993204117,0.766781702637672,0.78490548953414,1.47374925017357,0.625015735626221,0.498523358255625,1.47092768549919,0.931257918477058,0.509445066563785,1.29297226667404,0.883517004549503,-0.169689882546663,0.973447176162153,1.23569294810295,-0.0323542570695281,1.03753139451146,1.09986863285303,0.180814489722252,1.11883047223091,1.35226398706436,-0.0230482667684555,1.10966491699219,1.14072887599468,0.459627255797386,1.00202928483486,1.24729543924332,0.645860727876425,0.928131863474846,0.610674418509007,-0.177314382046461,1.00283387536183,1.018869234249,-0.0340477600693703,1.10996180772781,0.847372025251389,-0.120789093431085,0.991506608668715,1.15350185334682,0.728491369634867,0.933432504534721,0.787751670926809,0.666007071733475,0.773555129766464,0.8691436201334,-0.188123513944447,0.875536471605301,0.894299559295177,-0.159998595714569,0.862933307886124,0.935605518519878,-0.0288218641653657,1.04071636870503,0.935741454362869,-0.118702107109129,1.00369575852528,1.03440712019801,-0.312594816088676,0.811237007379532,1.31310218572617,0.350183449685574,1.07003668695688,0.965052433311939,0.544902347028255,0.957285806536674,0.510703861713409,0.39915793389082,1.26555329561234,0.974915236234665,0.192971333861351,0.639504998922348,-0.0389863252639771,0.325986355543137,0.990100659430027,0.487028419971466,0.572639748454094,1.18824511766434,0.485766112804413,0.518339857459068,1.19189789891243,0.47557744383812,0.873410075902939,1.02240434288979,0.828586596995592,0.636268854141235,1.06514076888561,0.667064979672432,0.618788182735443, +0.996288537979126,0.687748432159424,0.796188443899155,0.96749772131443,1.07240954786539,0.141079820692539,1.14474672079086,0.442350894212723,0.0314747989177704,0.871544063091278,0.365956604480743,0.558603748679161,0.998286359012127,0.588913977146149,0.465901803225279,1.09511862695217,0.505750834941864,0.579220086336136,1.11202909052372,0.891126044094563,0.432243853807449,1.13936527073383,0.72024305164814,0.569967314600945,1.09105031192303,0.524804085493088,1.02724426984787,0.941425666213036,0.97929185628891,0.136020205914974,1.02454102039337,0.554304420948029,0.0267487466335297,0.949222952127457,0.323407769203186,0.497306331992149,1.24032229185104,0.832263335585594,0.357151910662651,1.16567774116993,0.747646346688271,0.412610359489918,1.03066056966782,1.24972206354141,0.671057373285294,1.08702604472637,0.938784196972847,0.707681447267532,1.04524972289801,1.09821727871895,0.46690408885479,0.969735393300653,0.78924036026001,0.500023871660233,1.05907102674246,0.570645779371262,0.565559526905417,1.06140658259392,0.905055485665798,0.538331739604473,0.79192279279232,0.861127568408847,0.687481641769409,0.854740545153618,1.0939679145813,0.637968637049198,1.02687072008848,0.927856244146824,0.689614623785019,1.00981091242284,0.811147090047598,0.663088664412498,1.11791279911995,1.26232302188873,0.435733295977116,1.23070111870766,0.757766626775265,0.475409470498562,0.926430575549603,0.370668649673462,0.361449003219604,1.24168793857098,0.954978972673416,0.377637840807438,1.24898201227188,0.972405523061752,0.536533418111503,1.0419748686254,1.01410475373268,0.600885577499866,1.06832096725702,0.815260738134384,0.906640651635826,1.02702262066305,0.462546611204743,0.894706476479769,1.15997651219368,0.861231297254562,0.61487041041255,1.28673133254051,0.751895321765915,0.410012494772673,1.26646974682808,0.570771604776382,0.393373716622591,1.08260510116816,1.04362766444683,0.666604416095652,1.05419562011957,0.935658007860184,0.659163884818554,1.25640615820885,0.987857326865196,0.649844000115991,1.06750962883234,0.847018286585808,0.526261672377586, +1.08565203100443,1.00444619357586,0.549326330423355,0.734469711780548,1.28504100441933,0.73352300748229,0.802601590752602,0.712529573589563,0.960460465401411,0.765315011143684,0.193936139345169,0.845828339457512,1.02394040487707,0.49992574006319,0.6572544882074,1.06293157488108,0.88434337079525,0.762659914791584,0.800341442227364,0.667691580951214,0.765337118878961,1.23075856268406,0.529988542199135,0.68964546918869,0.997781373560429,1.25495347380638,0.711761355400085,1.37537330389023,0.857437238097191,0.942033782601357,0.473667100071907,-0.566378861665726,0.246969372034073,0.186474904417992,1.80398380756378,0.180058568716049,-0.0661267042160034,1.76743084192276,-0.391782611608505,0.796994090080261,0.974476456642151,-0.20359879732132,0.997589230537415,0.804935202002525,-0.327237188816071,0.779581487178802,0.824723117053509,-0.485779136419296,0.556926563382149,0.877340495586395,-0.513781666755676,0.517282322049141,0.97509591281414,-0.327501475811005,0.455021858215332,1.10088151693344,0.0443229079246521,0.36913837492466,1.09864413738251,-0.0940499305725098,0.437085021287203,0.828057855367661,-0.200942575931549,0.59822116792202,1.28569722175598,-0.209067523479462,0.402386471629143,1.33564919233322,0.262841284275055,0.533030405640602,1.3904801607132,0.385425090789795,0.418110504746437,1.20635911822319,0.373559206724167,0.249457329511642,1.54445135593414,1.08423739671707,-0.0427224189043045,-0.574242204427719,0.706173305865377,0.176829513162374,-0.296075165271759,0.59029957652092,-0.332200646400452,-0.232300937175751,0.406707227230072,-0.086718175560236,1.60328334569931,0.302520588040352,-0.240722008980811,0.157644510269165,0.42473229765892,-0.257286421954632,0.0625402927398682,1.08737802505493,-0.0393229126930237,0.503989160060883,-0.126418221043423,0.0869241431355476,-0.0208954811096191,0.888761579990387,-0.17022716999054,0.00313067436218262,1.06818133592606,-0.232513285707682,0.126440405845642,0.714820042252541,-0.278700240887702,0.743865296244621,-0.232179209589958,0.0453146398067474,-0.00955981016159058,0.330125883221626, +-0.566962250508368,0.366114854812622,1.32147413492203,-0.377202115487307,0.544703334569931,1.39451766014099,-0.612223237752914,0.967332482337952,0.120188906788826,-0.307223945856094,0.0248538851737976,0.912916854023933,-0.641717657446861,0.447404742240906,1.12154644727707,-0.225951068103313,0.775357589125633,0.692243114113808,-0.381553300656378,1.13826385140419,0.202539250254631,-0.28649839758873,0.0473060607910156,1.48175936937332,-0.420302574522793,0.0955170392990112,1.73235386610031,-0.272875159978867,0.346160173416138,1.62958377599716,-0.242365822196007,0.971135318279266,1.50366693735123,-0.0257961601018906,-0.0645906925201416,1.65211963653564,-0.423325245268643,0.476522073149681,1.71008843183517,-0.10151007771492,0.62518753297627,1.55250453948975,-0.308662697672844,1.01324516534805,1.47382092475891,-0.156564678996801,0.0589717626571655,1.39591616392136,-0.145542293787003,0.581547304987907,1.68148511648178,0.0088459849357605,0.655867043416947,1.66300231218338,-0.37995083630085,1.0239973962307,1.57617473602295,-0.443602129817009,1.02780976891518,-0.272179305553436,0.17728179693222,0.792332634329796,-0.208351910114288,0.212488602846861,0.361296236515045,-0.195788025856018,-0.201278068125248,0.829510539770126,-0.176499843597412,-0.119312109425664,0.339029341936111,-0.438004016876221,0.157986782491207,1.08076164126396,-0.510432243347168,0.198893737047911,0.42578250169754,-0.719800919294357,0.353082304820418,1.50826025009155,-0.659381985664368,0.572500918060541,0.407432377338409,-0.428999781608582,0.25118525326252,1.51301109790802,0.0716357827186584,0.393656566739082,1.50879883766174,-0.713371187448502,0.335506372153759,1.51579785346985,-0.352725297212601,0.44545429199934,1.81482857465744,-0.138454735279083,0.88691782951355,0.910553157329559,-0.223801821470261,0.878560036420822,0.924176268279552,-0.857492968440056,0.865602716803551,1.06339723616838,-0.555607855319977,0.922018021345139,0.991789117455482,-0.535588383674622,1.13480567932129,0.899562351405621,-0.750144869089127,0.922708660364151,1.00954462587833,-0.898762628436089, +0.705962643027306,1.34104064106941,0.0630924105644226,0.546663416782394,0.747610598802567,0.0629082918167114,0.441690958105028,0.773201644420624,0.11304783821106,0.599795527756214,0.905876964330673,0.109143257141113,0.590901382267475,0.910100817680359,0.061413049697876,0.414761139312759,0.930830329656601,0.283676862716675,0.756981335580349,1.06908339262009,0.216968774795532,0.73506485670805,1.0217818915844,0.21363240480423,0.601352049969137,1.030676394701,0.618266075849533,0.843628540635109,0.933457970619202,0.59149831533432,0.81865282356739,0.449268043041229,0.545987963676453,1.01906594634056,0.683833531104028,0.560712873935699,1.10939672589302,1.03085917234421,0.447447270154953,1.14749777317047,1.17677539587021,0.528826236724854,0.84035749733448,1.25933086872101,0.132708370685577,0.588120356202126,0.671741932630539,0.204048573970795,0.854302063584328,0.307199943810701,0.343910574913025,1.05944748222828,0.707130029797554,0.0862219333648682,0.478711545467377,0.59189111739397,0.194829225540161,0.451254531741142,0.290325798094273,0.129954099655151,0.411680355668068,-0.125350281596184,0.161012351512909,0.719452992081642,-0.088697075843811,0.136298418045044,0.737740889191628,0.450793325901031,0.207688212394714,0.318376645445824,0.624239087104797,0.127683520317078,0.846349745988846,0.723443210124969,0.191935658454895,0.762241572141647,0.63533079624176,0.213625431060791,0.550025818869472,0.879539549350739,0.11916971206665,0.522999541833997,0.944601684808731,0.438292801380157,0.829232797026634,1.02361968159676,0.405659258365631,0.616050563752651,0.981771439313889,0.493774831295013,0.638631222769618,1.06408241391182,0.580613642930984,0.966723054647446,1.03385874629021,0.484682828187943,0.935402363538742,1.22307628393173,0.459263235330582,1.26152098178864,1.00511008501053,0.540419459342957,1.21265989542007,0.768391683697701,0.525228507816792,1.28913670778275,1.18503379821777,0.658549539744854,1.44394332170486,0.836448848247528,0.57272631675005,1.44204562902451,1.00498908758163,0.636569492518902,1.31286996603012,1.01720136404037, +0.744433857500553,1.29762294888496,0.84804892539978,0.823850184679031,1.24086502194405,0.512565336190164,0.735887169837952,1.40997982025146,0.578362360596657,0.633393459022045,1.49997562170029,0.726047158241272,0.725643366575241,1.31793329119682,0.808716088533401,0.0163927152752876,0.956421859562397,1.2988885641098,0.484869562089443,1.02986346185207,1.15267458558083,0.459257446229458,1.28689053654671,1.02323204278946,0.175626792013645,1.1678092032671,1.21280199289322,0.694261163473129,1.20530571043491,0.744700953364372,0.734647050499916,1.01908033341169,0.783146232366562,-0.0102516412734985,0.992634542286396,1.12560461461544,0.156657814979553,1.19170577824116,1.09725217521191,-0.0155015736818314,1.00060594826937,0.969879861921072,0.710322678089142,1.04554974287748,0.606124028563499,0.762631550431252,-0.228037402033806,-0.127166867256165,0.278774127364159,-0.251888357102871,0.0409068465232849,-0.0806576162576675,0.504840359091759,1.66986960172653,0.720924541354179,0.769250128418207,1.00147369503975,0.716839119791985,0.629387859255075,1.17549216747284,0.919417372962926,-0.0369231700897217,-0.607786595821381,0.558883428573608,-0.118913017213345,-0.528307944536209,0.936791630592779,-0.0185791924595833,-0.651646673679352,0.372181475162506,-0.0238330774009228,-0.477322071790695,0.634101629257202,-0.00707738380879164,-0.55974879860878,0.695746738983871,1.22909986972809,0.408909648656845,0.442675232887268,1.14991475641727,0.378830432891846,0.244854167103767,0.935344517230988,1.67307275533676,0.388452067738399,1.37714344263077,1.18181905150414,0.406666129827499,0.385185196995735,1.62745994329453,0.892910341688548,0.173817499540746,1.41177746653557,0.439313769340515,0.31991202943027,1.38963806629181,0.110264867544174,0.652036160230637,1.77628260850906,0.209602326154709,0.996355891227722,1.62263530492783,0.70951572060585,1.12375751137733,1.08213716745377,0.707091994583607,0.973956719040871,1.20223063230515,0.152702450752258,1.02323766052723,1.50774854421616,0.448520913720131,1.12881568074226,1.34505182504654,0.248540818691254, +1.27933394908905,1.34473782777786,0.230651006102562,1.20375573635101,1.40445816516876,0.120444387197495,1.05122442543507,1.4570295214653,0.544865101575851,1.09622877836227,1.20077776908875,0.641489297151566,1.08335202932358,1.02914601564407,0.764244392514229,0.744340747594833,0.8601895570755,0.726577475667,0.835462529212236,0.810060799121857,0.632058754563332,1.09776282310486,1.00062853097916,0.695345312356949,1.13341209292412,0.722155421972275,0.729066804051399,0.840022176504135,0.626785039901733,0.66700279712677,0.925007843412459,0.786756455898285,0.647460609674454,1.05292698740959,0.76319631934166,0.628618836402893,1.07602970302105,0.629331864416599,0.643347129225731,0.949220323003829,0.660627946257591,0.609380662441254,1.09373443573713,0.507511598989367,0.606678813695908,1.0954349860549,0.596849076449871,0.638454958796501,0.945389553904533,0.61841494590044,0.748660862445831,1.0893736705184,0.155912855640054,0.77326937019825,1.01602242141962,0.224814347922802,0.752690121531487,-0.0185385644435883,-0.966090060770512,1.05085023492575,0.994696348905563,0.922226712107658,1.31785747408867,-0.0620433017611504,-0.649480640888214,1.49452412128448,0.235623553395271,-0.614027217030525,1.25971084833145,0.122725846711546,-0.781026661396027,1.20762431621552,1.04306402057409,-0.0390657484531403,1.06244871020317,0.280911684036255,1.02941189706326,0.964131467277184,0.682693660259247,0.519383564591408,1.25815859436989,-0.0354150235652924,0.798710405826569,1.36390721797943,0.077078215777874,0.805342070758343,1.23403698205948,0.368946485221386,1.11095869541168,1.14941941201687,0.391388654708862,0.888897404074669,1.16414324939251,0.949482440948486,0.836948648095131,1.12975449860096,0.921509578824043,0.981075286865234,1.09633646905422,1.19795024394989,0.720619201660156,1.09086990356445,1.17992126941681,0.494538471102715,1.15368720889091,0.990119829773903,0.892843544483185,1.10354982316494,0.96549317240715,1.02031403779984,1.06759226322174,1.24351865053177,0.904789596796036,1.12234348058701,1.23880660533905,0.658920049667358,1.16873291134834, +1.27117413282394,0.587941467761993,1.08483159542084,1.25678312778473,0.876468867063522,1.19337663054466,1.15849950909615,0.751078903675079,1.22168883681297,1.1325463950634,0.688034877181053,1.26090759038925,1.19895794987679,0.288288466632366,1.18888542056084,1.35638380050659,0.389708906412125,1.23729109764099,1.20289769768715,0.523906752467155,1.25350990891457,1.05030378699303,0.56098935008049,1.16307324171066,0.829110316932201,0.650867998600006,1.15924409031868,0.817834109067917,0.704619869589806,1.23786160349846,1.09633019566536,0.292053434997797,1.16507804393768,0.984450723975897,0.586339496076107,1.12809133529663,0.846409060060978,0.594274088740349,1.11971256136894,0.852045170962811,0.524750862270594,0.536921292543411,0.942133583128452,1.24819424748421,-0.10873681306839,0.608922399580479,1.41916900873184,-0.463509857654572,0.355425946414471,0.858071781694889,-0.52602207660675,0.308062300086021,1.36779743432999,1.6902163028717,0.532566979527473,0.894745171070099,1.73980396986008,0.191534280776978,0.959405988454819,1.17393219470978,0.0573369264602661,1.35835766792297,1.30370855331421,0.16898246621713,1.2393781542778,1.1619331240654,0.00895499065518379,1.38634771108627,1.77902513742447,0.389643639326096,0.682572901248932,1.35673183202744,0.553427070379257,0.956390976905823,1.11487233638763,0.211811020970345,1.29978016018867,0.625971280038357,0.67048841714859,1.23588153719902,0.383622825145721,0.912718512117863,1.36104202270508,0.326069809496403,0.890191055834293,1.46323624253273,-0.0601856410503387,0.67481292784214,1.38253369927406,0.608171254396439,0.791070996550843,0.98862424492836,1.74170434474945,0.479499913752079,0.793176591396332,1.25134208798409,0.818694472312927,0.960645973682404,1.89352881908417,0.072761996416375,0.458058365620673,1.85730558633804,0.121779773384333,0.730639636516571,1.92710083723068,0.106106661260128,0.338222263380885,1.84449732303619,-0.0116309244185686,0.752726882696152,-0.169178545475006,0.284415900707245,1.10708838701248,-0.0581165552139282,0.557735458016396,0.899765163660049,-0.039203405380249, +-0.069698978215456,0.854671806097031,-0.0647168159484863,-0.123540813103318,0.777272701263428,-0.0963637232780457,0.198896722868085,0.963225811719894,0.345390200614929,0.987565070390701,0.890440702438354,-0.037010133266449,0.248142912983894,0.596221819519997,0.0240679979324341,0.279046140611172,0.811824291944504,0.847776979207993,1.00824651122093,1.17637723684311,0.584840223193169,0.999328956007957,1.10380005836487,0.307786680757999,1.14299473166466,1.37885564565659,1.08365160226822,0.920055270195007,1.36488395929337,1.02702814340591,0.937160238623619,1.13077676296234,1.14637130498886,0.823269750922918,1.05592530965805,-0.0118221044540405,0.620065093040466,0.974485665559769,0.241803497076035,1.0428971350193,1.51152592897415,0.139839008450508,1.03189095854759,1.49396425485611,0.941853940486908,0.993642866611481,1.17796629667282,1.81947445869446,0.201961064711213,0.487658575177193,1.35540628433228,0.190031363628805,0.8637630417943,1.4915589094162,0.259308353066444,1.083879083395,-0.496767580509186,0.387496344745159,1.07434970140457,-0.615856200456619,0.316178303211927,0.795707181096077,-0.641493618488312,0.190034140832722,0.863740369677544,-0.0286292433738708,0.0322893916600151,0.214092439040542,0.0260074734687805,-0.0410592933185399,0.483193472027779,-0.0314732789993286,0.112338826060295,0.269083758816123,0.0355250835418701,0.0859814919531345,0.619939357042313,-0.0281358361244202,0.0121994244836969,0.190108954906464,1.94370585680008,0.104001674801111,0.224189333617687,1.9402596950531,0.183877229690552,0.354945112019777,1.83413618803024,0.163472088053823,0.757545500993729,1.29808506369591,-0.936148091219366,-0.191644607111812,0.640466332435608,-0.681051760911942,-0.0475493371486664,0.579852551221848,-0.608600586652756,-0.0261948108673096,1.26317200064659,-0.832333113998175,0.0852363705635071,1.50818228721619,-0.816296819597483,0.164199411869049,0.394584476947784,-0.566430538892746,0.251163210719824,1.36895203590393,-1.22364503145218,-0.293250045739114,0.50284531712532,-0.869683786295354,-0.220455338712782,0.557341665029526, +-0.847416643053293,-0.0219660848379135,1.36618703603745,-0.543429732322693,-0.197231601458043,0.973959440627368,0.295155763626099,-1.09124489873648,1.25310003757477,-0.158792646601796,-0.994564551860094,1.62509948015213,-0.606249384582043,-0.394089296460152,1.32567366957664,-0.484607398509979,-0.411598260980099,1.45586603879929,-0.484698712825775,0.698567867279053,0.834981146369955,0.791572451591492,-0.690128296613693,1.47135478258133,0.69518905878067,-0.854656808078289,1.73125332593918,0.420266091823578,-0.20399883389473,1.82806044816971,0.293777007609606,0.195916995406151,1.76633298397064,0.488621425349265,0.317145474255085,1.18956902623177,0.864105880260468,-0.592903167009354,1.40814697742462,0.279131472110748,-0.531906753778458,1.31679898500443,0.974206358194351,-0.278363406658173,1.22180080413818,0.573696404695511,-0.46752342581749,0.920226154127249,0.547801434993744,-0.695392549037933,1.78858309984207,0.720255464315414,-0.399591416120529,1.65843600034714,-0.104708135128021,-0.287415497004986,1.60793536901474,0.734775483608246,-0.321422666311264,1.83250963687897,0.385115571320057,-0.127707183361053,1.56937479972839,0.218007661402225,0.534403637051582,1.27973389625549,-0.865034789312631,0.0483781397342682,1.68264347314835,0.65221956372261,-0.103583157062531,1.63140189647675,0.380866296589375,0.204306870698929,1.87818646430969,0.657418072223663,0.0607057753950357,1.35428231954575,-0.981148350983858,0.0457699969410896,1.59297782182693,0.0431596264243126,1.04578298330307,1.73253703117371,0.235956076532602,0.575804933905602,0.911105453968048,0.349003858864307,-0.101808309555054,0.984196647448698,0.282892238348722,-0.772726103663445,1.19942048192024,-0.569323733448982,-0.809260845184326,1.01811751723289,-0.110578060150146,-0.07603520154953,1.10450741648674,0.00870943069458008,-0.456682205200195,1.65106844902039,0.5140091474168,-0.0583954751491547,0.895815849304199,0.308315612375736,-0.124674081802368,1.23071789741516,-0.836995601654053,0.165314018726349,1.81482893228531,0.232441395521164,-0.305961467325687,1.66466999053955, +0.256744280457497,-0.490457333624363,1.86200398206711,0.156553012318909,-0.367433026432991,1.80701798200607,0.204541467130184,-0.440863370895386,1.33885079622269,-1.07139122486115,-0.146910332143307,1.87400138378143,0.0560384087730199,-0.320562541484833,1.77647942304611,0.342900052666664,-0.371715471148491,1.83438217639923,0.107470996677876,-0.376693822443485,1.75879848003387,0.429081737995148,-0.249873161315918,1.38098558783531,-0.603951871395111,-0.0715865790843964,1.5804455280304,0.561020731925964,0.642378907650709,1.54697674512863,0.726381957530975,0.137623488903046,1.31708666682243,0.645549654960632,-0.497980684041977,1.31250929832458,-0.00594876706600189,-1.01254674047232,1.40302136540413,0.803628444671631,-0.69944354146719,1.06394669413567,0.640967756509781,-0.153417587280273,1.18769752979279,0.60234072804451,-0.0832114219665527,1.36886963248253,0.677405148744583,-0.769216381013393,1.32490414381027,0.517477244138718,-0.805853620171547,1.03403526544571,0.531509160995483,-0.285542488098145,1.17489069700241,0.589316755533218,-0.53628221154213,0.686885677476994,0.726673752069473,-0.393495440483093,1.51544052362442,0.720302194356918,0.471566542983055,1.33515685796738,-0.53264194726944,0.508325226604939,1.77546072006226,0.542434424161911,-0.157422602176666,1.79729378223419,0.357659056782722,-0.410107955336571,1.79668891429901,-0.0983667075634003,-0.615775220096111,1.81633532047272,0.025428906083107,-0.598971575498581,1.88025832176208,0.308992028236389,-0.269750222563744,1.769790828228,0.309677466750145,-0.545871276408434,1.72271633148193,-0.212869942188263,-0.580659761093557,1.90474218130112,-0.0784183889627457,-0.390412412583828,1.38176721334457,-1.00966115295887,-0.118836835026741,1.89104229211807,0.196592509746552,-0.124147906899452,1.92723935842514,0.0455111055634916,-0.169938772916794,1.94360965490341,0.014707971829921,-0.123417869210243,1.92417067289352,-0.0456735193729401,-0.195406451821327,1.89002633094788,0.0986175588332117,-0.265638515353203,1.82044982910156,0.147253584582359,-0.37972703576088,1.81833475828171, +0.0162236839532852,-0.449926130473614,1.94520175457001,0.154318001121283,0.360370673239231,1.52689719200134,-0.765007957816124,-0.147120490670204,1.78336083889008,0.319031030870974,0.308015301823616,1.89644914865494,0.603388577699661,0.155455388128757,1.96540075540543,0.235271374695003,-0.00871531292796135,1.99565958976746,0.0246102279052138,-0.0772919878363609,1.99531137943268,0.0236060228198767,0.00443623587489128,1.95799165964127,0.261588318273425,-0.0340401828289032,1.98422878980637,0.0323306587524712,-0.0969115570187569,1.99101501703262,0.0266321593662724,-0.119588807225227,1.00017523765564,0.0398596525192261,-0.945151809602976,1.03435808420181,-0.369405195116997,-0.975797530263662,1.1613736897707,-0.00736126303672791,-1.13826805353165,1.20809097588062,0.370601817965508,-1.10661923885345,1.21750748157501,0.365065131336451,-0.85635893791914,1.26641416549683,-0.0702604353427887,-0.886451121419668,1.31117409467697,0.448371812701225,-0.97990732640028,1.75203078985214,0.490969508886337,-0.541123732924461,1.6539620757103,0.114034742116928,-0.535457201302052,1.22148779034615,0.960963219404221,-1.12361651659012,1.04406905174255,0.530504554510117,-0.915603563189507,0.92529071867466,0.0851420685648918,-0.939042586833239,1.29627084732056,0.742184609174728,-0.784333407878876,1.27252632379532,0.784995526075363,-0.970490463078022,1.20206487178802,0.904965698719025,-0.957030184566975,1.37222188711166,0.717374980449677,-0.749817967414856,1.46952921152115,0.493202015757561,-0.783347606658936,1.77999097108841,0.647175163030624,-0.417767561972141,1.72617453336716,-0.0548187494277954,-0.653991863131523,1.48951953649521,1.01531139016151,-0.84608119726181,1.08447134494781,0.968555361032486,-0.966639287769794,1.14948005974293,0.0407315492630005,-0.93116632848978,1.66934990882874,0.346035823225975,-0.783121638000011,1.68065756559372,0.332609713077545,-0.719660975039005,1.34039878845215,0.246748566627502,-0.457397222518921,1.77865546941757,-0.229087240993977,-0.255671218037605,1.86348181962967,0.266064092516899,-0.492797948420048,1.87959599494934, +0.415753573179245,0.43267448246479,1.80091392993927,-0.693649932742119,0.471856117248535,1.77179437875748,0.186573415994644,0.0654842108488083,0.814056590199471,0.32375431060791,0.393818438053131,0.624554127454758,-0.581420682370663,0.491482734680176,0.586518079042435,0.200432166457176,0.504932045936584,0.631745055317879,0.0436294749379158,0.498281270265579,0.302307039499283,0.595927961170673,0.336921572685242,0.896723836660385,0.228003568947315,0.439725041389465,0.942123055458069,0.369568765163422,0.42204737663269,0.796991422772408,0.388579607009888,1.01538985595107,0.391513675451279,-0.6279481574893,1.04376699775457,0.753617003560066,0.49292953312397,0.773437187075615,0.0902669131755829,0.355521075427532,0.0876941680908203,-0.301094442605972,-0.690930370241404,0.197704672813416,1.38793861865997,-0.681000739336014,-0.688134476542473,1.31823894381523,-0.534981116652489,-1.06168031692505,1.36594372987747,0.0455358475446701,-1.35686963796616,1.76931005716324,-0.148947238922119,-0.786989897489548,1.33937409520149,-0.539249911904335,-1.02738043665886,1.46969106793404,-0.492188606411219,-0.838397815823555,1.11962124705315,-1.12949195504189,-0.748291108757257,1.5734635591507,0.0994263142347336,-0.957634806632996,1.41629904508591,-0.349470943212509,0.132049918174744,0.208873838186264,-1.18398684263229,0.460963875055313,0.737055420875549,-0.0415540188550949,0.592287570238113,1.56351512670517,-0.107601784169674,0.340492218732834,0.665394991636276,-0.085304856300354,0.470803588628769,0.819656245410442,-0.400172986090183,0.527385979890823,0.830048739910126,-0.0481603220105171,0.62873962521553,0.793846607208252,0.0590397715568542,0.861347511410713,0.882689505815506,-1.43999570608139,0.558896750211716,1.51675379276276,-0.302762627601624,0.449396915733814,0.7488754093647,0.137150540947914,-0.240435004234314,0.435620102078246,0.174429655075073,-0.0541679859161377,1.52006220817566,-0.66763237118721,0.855526685714722,1.60916256904602,-0.701877139508724,0.762579411268234,1.48327594995499,-0.0055721253156662,-0.434118419885635,0.678498872555792, +0.109091892838478,-0.251933395862579,0.729985922574997,-0.185449123382568,-0.0905522704124451,1.4020614027977,-0.365817666053772,0.0923951864242554,1.4964696764946,-0.0137602388858795,0.194172978401184,0.597554504871368,0.134966269135475,-0.028784453868866,0.839154571294785,-0.309094071388245,-0.355040907859802,1.02624718844891,-0.239262521266937,-0.734138518571854,1.70171266794205,0.178330674767494,-0.220515519380569,1.62035942077637,0.0428337901830673,0.878156363964081,1.20415073633194,-0.192158728837967,0.209122180938721,0.644358277320862,-0.0847869217395782,0.326420605182648,0.835776969790459,0.0511182993650436,0.833402246236801,1.49293529987335,-0.0894406288862228,0.920997001230717,0.752993702888489,-0.268927812576294,0.407226204872131,0.736291036009789,-0.434779107570648,0.0190691947937012,1.06974466145039,-0.189500115811825,0.522462457418442,0.856391057372093,-0.244153290987015,0.865303084254265,1.41659247875214,-0.835089460015297,-0.189541637897491,1.51845240592957,-0.750128023326397,-0.471374332904816,1.89562886953354,-0.201509017497301,-0.15624475479126,1.78895676136017,-0.213971104531083,0.363038927316666,1.53508949279785,-0.645801149308681,-0.44569194316864,1.59922730922699,-0.553368579596281,-0.815953224897385,1.94865053892136,-0.192388743162155,-0.348953679203987,0.962019126565792,-0.700845196843147,1.05770838260651,0.0822919607162476,-1.29638129472733,0.955606341362,-0.537241116166115,-1.36518377065659,0.989726170897484,-0.283614233136177,-1.07742591202259,0.806832984089851,0.279859244823456,-0.983105733990669,0.687950134277344,0.30044261533738,-1.81091159582138,0.621730610728264,0.209941953420639,-0.598152667284012,1.64918518066406,-0.346202716231346,-0.57608138024807,1.76108849048615,-0.134225487709045,-1.22568255662918,0.718945719301701,0.567887491146848,-1.71249604225159,0.480717232450843,0.960383305807795,-0.409549221396446,1.12425570189953,0.0296421647071838,-0.5628362596035,0.492895677685738,-0.0676820278167725,-1.58341240882874,-0.10772698558867,-0.163397014141083,-0.967857241630554,0.318642348051071, +0.970801037487036,-1.14475132524967,0.150288969278336,-0.0196623802185059,-0.140093915164471,0.309149339795113,0.130782425403595,-1.62834793329239,0.445629179477692,-0.865040957927704,-0.637436904013157,0.95800107717514,-0.731158792972565,-0.271326206624508,1.0512218773365,0.499184310436249,-1.11584803462029,0.461908034980297,-0.860618710517883,-0.752570226788521,0.859164509922266,0.00302593410015106,-1.12734270095825,1.48622578382492,0.502294871076899,-0.558213204145432,1.77852821350098,0.0269546359777451,-0.889530345797539,1.60482931137085,-0.108541965484619,-1.17367380857468,0.891442690044641,0.0913198590278625,-1.08731374144554,0.901740873232484,0.188003063201904,-0.731832712888718,0.670293584465981,0.0851486921310425,-0.655736893415451,0.819778352975845,0.0193407535552979,-1.76335382461548,0.295484686270356,-0.517059981822968,-1.01896771788597,-0.357562642544508,0.157423317432404,-0.479105398058891,0.376229494810104,-0.0484738349914551,-0.32195708528161,0.326836317777634,-0.29873314499855,-0.996609650552273,0.605785787571222,-0.142347991466522,-1.73418188095093,0.519896988058463,-0.419527649879456,-0.428409909829497,1.05976071953773,-0.00718396902084351,-0.319244883954525,0.560541093349457,-0.738118380308151,-0.7688541226089,0.377193138003349,-0.591340780258179,-0.863024963065982,0.284137036651373,0.399349302053452,-1.31016260385513,0.203643441200256,-0.463741838932037,-0.405962363816798,0.868942439556122,-0.55726945400238,-1.00364496558905,-0.0484598949551582,0.0542485415935516,-1.24899762868881,0.722111701965332,0.623834878206253,-1.00360751152039,0.697813395410776,0.375003576278687,-0.57158850133419,0.771991964429617,-0.0231792628765106,-1.1974678337574,0.698775053024292,0.00590455532073975,-1.31498193740845,0.355607181787491,0.932275079608189,-1.20108875632286,0.215802580118179,0.584653496742249,-0.864606618881226,0.79330712929368,0.22078537940979,-1.20789632201195,0.883399466052651,0.436302502438139,-1.64217269420624,0.947871387004852,0.735810186226189,-0.828217446804047,1.45836794376373,-0.00108098983764648, +-0.456256568431854,0.55945260822773,-0.050881028175354,-1.6791290640831,0.446108289062977,-0.407360106706619,-0.882479760795832,0.612631291151047,-0.0130870342254639,-0.44923984259367,0.776799917221069,-0.0939424633979797,-0.653073340654373,1.04626303911209,0.424048833024244,-1.88983678817749,0.15832107886672,-0.308165967464447,-1.27332192659378,0.522899731993675,0.181443512439728,-0.595394223928452,0.705093026161194,0.911956329056011,-1.32267850637436,0.450083792209625,-0.431563019752502,-0.916507203131914,0.462154820561409,0.171669781208038,-1.74175596237183,-0.0712037533521652,0.000227689743041992,-0.119624048471451,0.082533210515976,-0.00046849250793457,-0.594211414456367,0.365158051252365,-0.730573922395706,-0.830768927931786,-1.01094622164965,-1.20995086431503,-0.365544214844704,-0.668606877326965,-1.20491737127304,-0.215960614383221,-0.514683306217194,-0.0849076803290245,-1.0547373816371,-0.952918540686369,-1.83849841356277,-0.0614531096071005,-0.190193921327591,-1.28464597463608,-0.94377376511693,-0.581432949751616,-1.75971353054047,-0.201607551425695,-0.304537653923035,-1.76610064506531,-0.122834204696119,-0.462159514427185,-1.57704252004623,-0.717907667160034,0.018039233982563,-1.66862559318542,-0.590749129652977,-0.204161770641804,-1.52898073196411,-0.946218639612198,-0.0514306128025055,-1.05531069636345,-0.42083815485239,1.06040028482676,-0.999451508745551,-0.839050889015198,0.469658926129341,-1.24967411160469,-0.60520201176405,0.741101585328579,-1.34514006972313,-0.00934290885925293,1.12048453092575,-1.31956449151039,-0.511401705443859,0.617215916514397,-1.31218215823174,-0.393884710967541,0.826501272618771,-1.41116687655449,-0.696432307362556,0.593861073255539,-1.18280658125877,-0.131618931889534,1.08268664777279,-1.44312080740929,-0.206108130514622,1.02975684404373,-0.46668952703476,-1.04887673258781,-0.0553324818611145,-0.807729601860046,-0.650833681225777,-0.153243899345398,-0.893245041370392,-0.456527814269066,-0.256984055042267,-0.685196846723557,-0.980426698923111,-0.143725872039795,-0.866134881973267, +-0.494745686650276,-0.0966969132423401,-0.982046604156494,-0.69289499334991,-0.32956200838089,-0.590152949094772,-0.30468674749136,-0.0493873357772827,-1.11162108182907,-0.450657650828362,-0.556061774492264,-0.67029881477356,-0.99453954398632,-0.60187953710556,-0.928277730941772,-0.493730209767818,-0.35448145866394,-1.37289595603943,-0.239189296960831,-0.534076571464539,-1.18498155474663,-0.577147543430328,-0.341707050800323,-0.791735053062439,-0.803073287010193,-0.122597813606262,-0.654040306806564,-1.00113521516323,-0.598122119903564,-1.03305062651634,-0.427367746829987,-0.111113727092743,-1.38304430246353,-0.606695048511028,-0.865842998027802,-1.07190757989883,-0.752625599503517,-1.13682898879051,-1.41907197237015,-0.491849556565285,-0.388255536556244,-1.48875331878662,-0.00462963432073593,-0.765265047550201,-1.43725913763046,-0.162607811391354,-0.33188396692276,-1.13562434911728,-0.350135907530785,-0.00347441434860229,-0.895014703273773,-1.17255401611328,-0.276205867528915,-1.0295637845993,-0.0830616112798452,-0.170616447925568,-1.42158329486847,0.14521811157465,-1.2375363111496,-0.521698961079039,-1.57157212495804,-0.957662343978882,-0.85390295144407,-1.13856384158134,-0.16223406791687,-1.03632051870227,-0.914773553609848,-0.474397510290146,-0.929077055305243,-1.08979475498199,-0.274638742208481,-0.85266239997236,-0.7593729570508,-0.0542676448822021,-0.341750054700242,-1.74012452363968,-0.298218756914139,-0.963910710066557,-0.764820486307144,-0.140092074871063,-1.03184581920505,-0.839100867509842,-0.407520309090614,-0.554166566580534,-1.6749786734581,-0.648374766111374,-0.962878298014402,-1.16767948865891,-0.301082670688629,-1.1578293889761,-0.598554193973541,-0.460778623819351,-0.903581723570824,-1.44715112447739,-0.628012440050952,-0.873119380325079,-0.848896954208612,-0.0669371485710144,-0.455847065895796,-1.70472776889801,-0.366433650255203,-1.06489984691143,-0.775853406637907,-0.164395034313202,-0.220823232084513,-1.06110319495201,0.291654646396637,-0.49291515430923,-1.20130622386932,1.05614075809717,-1.83919382095337, +-0.56214315444231,0.409875735640526,-1.80247133970261,-0.567187651991844,0.0530340671539307,-0.926065236330032,-1.11078375577927,0.726765438914299,-1.29117161035538,-0.723930329084396,1.00436292588711,-1.40058037638664,-0.457128740847111,0.974693164229393,-1.45196878910065,-0.418963298201561,0.497003555297852,-1.22493603825569,-0.721112787723541,0.626941323280334,-1.64995622634888,-0.704423755407333,0.293758630752563,-1.2014542222023,-0.402486249804497,0.613510310649872,-1.71816098690033,-0.38051924854517,-0.0119504332542419,-1.53161299228668,-0.747268915176392,0.125927746295929,-1.06147575378418,-1.23145437240601,0.588747009634972,-1.82457000017166,-0.622008517384529,-0.456000208854675,-1.77899831533432,-0.501893490552902,-0.635654106736183,-1.36370524764061,-1.00807820260525,0.047736257314682,-1.49064320325851,-0.0650096535682678,0.356037706136703,-1.70423352718353,-0.159550745040178,0.122943550348282,-1.76370847225189,0.0977462735027075,-0.930122166872025,-1.90058702230453,0.0371815375983715,-0.218647137284279,-1.73899048566818,-0.0665366500616074,0.0873284637928009,-1.7941220998764,-0.243850700557232,-0.110888779163361,-1.67624545097351,-0.0784554332494736,-0.57764108479023,-1.76667404174805,-0.0519344136118889,-0.122323334217072,-1.34550225734711,-0.867100439965725,0.108521580696106,-1.48239752650261,-0.802333015948534,-0.470667848363519,-1.24443897604942,-0.885014601051807,-0.681248471140862,-1.25995567440987,-0.976186320185661,-0.330917507410049,-0.486139563261531,-1.74066579341888,-0.467791281407699,-0.464510654197511,-1.74209469556808,-0.538680426776409,-0.292619522660971,-1.80995500087738,-0.566382735967636,-0.166699454188347,-1.81565880775452,-0.562846273183823,-0.464050516486168,-1.83363926410675,0.10533157736063,-0.992384672164917,-1.43760401010513,0.109053652733564,-0.929022345691919,-1.45130768418312,-0.204309269785881,-0.341341689229012,-1.87577986717224,-0.16778425918892,-0.893366533331573,-1.43318259716034,0.010294184088707,-1.04746413230896,-1.110810354352,-0.138006284832954,-0.969349037855864,-1.14533430337906, +-0.147463902831078,-0.823200859129429,-1.4430425465107,0.0196515768766403,-0.843598861247301,-1.44477745890617,0.014500692486763,-1.02501486614347,-1.12616682052612,-0.279251962900162,-0.946347655728459,-1.14809873700142,-0.253699786961079,-0.763989873230457,-1.47176820039749,-0.0686710029840469,-0.429237423464656,-1.87648075819016,-0.256721891462803,-0.913021933287382,-1.43501695990562,-0.325279295444489,-0.851805302780122,-1.47832816839218,-0.27811523526907,-0.376118409913033,-1.90490400791168,-0.213640358299017,-1.02605958655477,-0.87540652602911,-0.209691789001226,-1.00127235241234,-1.1927143484354,-0.229854710400105,-0.979000560939312,-0.956899520009756,-0.275376603007317,-0.979171882150695,-0.824665322899818,-0.139392465353012,-0.984406445175409,-1.18291117250919,-0.284203194081783,-0.950439067557454,-1.3151241838932,-0.282172158360481,-0.965690556447953,-1.12858086824417,-0.306730955839157,-0.98445822740905,-0.93871134147048,-0.392067193984985,-0.544748429208994,-1.78554344177246,-0.0952215977013111,-0.322734922170639,-0.59909962117672,-1.15748496353626,-0.302196311871967,-0.875172659754753,-1.15822838246822,0.307814329862595,-0.824038624763489,-0.900322549045086,-0.0591813921928406,-0.680595740675926,-1.05057306587696,-0.125631332397461,-0.670450292527676,-1.14883249998093,0.16244500875473,-0.751149654388428,-1.08852171897888,0.356289774179459,-0.844406969845295,-0.906852409243584,-0.609937965869904,0.0956849008798599,-1.18515652418137,-0.228693246841431,-0.0747651271522045,-0.772361628711224,-0.673522651195526,0.264771297574043,-1.09953773021698,-0.110943138599396,0.245427995920181,-0.767741233110428,-0.651721656322479,-0.00793486088514328,-1.05538486689329,-0.0542639493942261,-0.00609476864337921,-0.464912660419941,-0.0957034230232239,0.206104598939419,-0.544877476990223,-0.134338140487671,0.1446184925735,-0.691834151744843,-0.144901633262634,-0.145283620804548,-0.778575599193573,-0.15267950296402,-0.152913877740502,-0.609392400830984,-0.0536032915115356,-0.460355024784803,-0.501324091106653,-0.0899946093559265, +-0.334577264264226,-0.783477216959,-0.0884239673614502,-0.108429118990898,-0.494447108358145,-0.0260921120643616,-0.187631014734507,-0.351181335747242,0.107293009757996,-0.671474054455757,-0.233653217554092,0.00956422090530396,-0.780769437551498,-0.271670941263437,0.872193294002273,-1.21620745956898,-0.578461915254593,0.920931573231883,-1.06282295286655,-0.755489081144333,0.855658411979675,-1.01015500724316,-0.642877787351608,0.884270548820496,-0.984411586890928,-0.207635745406151,0.998715157826609,-0.919945491215913,-0.443682335317135,0.99621409864676,-0.785138307139277,-0.721505157649517,-0.999622702598572,-1.15112197399139,-0.793987452983856,-0.991140782833099,-1.37292703986168,-0.480253599584103,0.00278621912002563,-0.45132452249527,-1.26752743124962,-0.0897233424093429,-0.428726881742477,-1.57358801364899,-0.434112787246704,-1.05886769294739,0.380450904369354,-0.254408139868247,-1.13442598283291,0.628105223178864,0.143776267766953,-0.4623042345047,-0.956279814243317,0.504058063030243,-0.391462564468384,-0.982198864221573,0.164098054170609,-0.48619070649147,-1.15153014659882,-0.0771439522504807,-0.470518320798874,-0.974792882800102,0.378690648823977,-0.0727807283401489,-1.48581564426422,0.635822497308254,0.297039791941643,-1.40577670931816,0.273305892944336,0.311612337827682,-1.74637311697006,0.19834777712822,0.00552821159362793,-1.5076756477356,0.556948862969875,0.417023941874504,-1.36831557750702,0.755226865410805,0.447333008050919,-1.01071699149907,0.643093459308147,0.455561049282551,-1.45169135928154,0.519230574369431,0.346971541643143,-1.53500556945801,0.745323807001114,0.241499662399292,-1.2710080742836,0.851863853633404,0.294184841215611,-1.00505090504885,0.421869397163391,0.269054748117924,-1.53755229711533,0.238587558269501,0.203827887773514,-1.65686374902725,0.717065691947937,-0.259334295988083,-1.25769221782684,0.8267442882061,0.0999690294265747,-1.19650326669216,0.556044161319733,0.121087610721588,-1.28372523188591,0.510725170373917,-0.239844679832458,-1.21649673581123,0.437468767166138,-0.18588325381279, +-0.984633684158325,0.426901310682297,0.264759592711926,-0.877218304201961,0.372847467660904,0.371560888364911,-1.40906384587288,0.3645159304142,0.0194253921508789,-1.29554498195648,0.434713512659073,0.24480127543211,-0.889921806752682,0.484876155853271,0.302418215200305,-0.666592225432396,0.584122389554977,0.12071012891829,-0.431529104709625,-1.37123766541481,-0.0193565180525184,-0.655046612024307,-1.36066064238548,0.085420610383153,-0.635902225971222,-1.23557361960411,0.166581364348531,-0.827077686786652,-1.62738358974457,0.244999900460243,-0.829522654414177,-1.65206283330917,0.200240798294544,-0.685259837657213,-1.26701989769936,-0.342539545148611,-0.279273092746735,-1.32059141993523,0.0381719153374434,-0.514594256877899,-1.63601982593536,0.222604431211948,-0.569912403821945,-1.55163109302521,0.0182569175958633,-0.604788333177567,-0.903372257947922,0.246038313955069,-0.489904403686523,-1.39123332500458,0.161012190626934,-0.558140963315964,-1.59364581108093,0.236801043152809,-1.03073060512543,-1.09491583704948,-0.0415222253650427,-0.427335619926453,-1.1487158536911,-0.846018850803375,0.361924827098846,-1.70152688026428,-0.517796151340008,-0.0731456279754639,-1.6696645617485,-0.506313867866993,-0.59005718678236,-1.42166021466255,-0.94501505792141,-0.50648233294487,-1.36352467536926,-0.726731181144714,0.284653306007385,-1.64938598871231,-0.456160299479961,0.241219818592072,-1.67098569869995,-0.428161889314651,-0.275805830955505,-1.41423797607422,-0.751261293888092,-0.0373532176017761,-1.06907618045807,-0.82092672586441,0.204488635063171,-1.2626745402813,-0.559174835681915,0.148875594139099,-1.39323824644089,-0.471212238073349,0.157405614852905,-1.09066367149353,-0.722430765628815,0.303166031837463,-0.701947033405304,-1.09819906949997,0.412889271974564,-0.934877336025238,-0.785335004329681,0.272385358810425,-1.09725022315979,-1.33580037951469,-0.630688983947039,-0.67162136733532,-1.72156411409378,-0.622165247797966,-0.824669480323792,-1.61250567436218,-0.680863469839096,-1.04113739728928,-1.26568609476089,-0.62704286724329, +-0.979790568351746,-1.13772946596146,-0.64931608736515,-0.896679610013962,-1.47225594520569,-0.430031001567841,-1.04159826040268,-1.23452764749527,-0.471734836697578,-1.01761928200722,-0.966731026768684,-0.46951162815094,-0.782133758068085,-0.91235876083374,-0.532573074102402,-0.808202356100082,-1.11979115009308,-0.378116011619568,-0.773569732904434,-1.10953378677368,-0.337618798017502,-0.650785014033318,-0.871305108070374,-0.370510995388031,-1.19474333524704,-0.921041257679462,0.312703534960747,-1.1860765516758,-0.462247937917709,-1.12575645744801,-1.0630419254303,-1.29870027303696,-1.02901753783226,-0.879200428724289,-1.1038573384285,-1.24036455154419,-1.48430532217026,-1.07096537947655,0.193994835019112,-1.27377957105637,-0.508619159460068,-0.91082376241684,-1.26491045951843,0.152085232082754,-1.43895787000656,-1.92374485731125,-0.0282487124204636,-0.534638002514839,-1.96022379398346,-0.121605850290507,-0.326082251966,-0.763555258512497,0.315046280622482,-1.76455497741699,-1.10541099309921,-1.00213177502155,-0.507812589406967,-1.41714149713516,0.177633047103882,-0.298994541168213,-1.27912321686745,-0.129705220460892,-0.852427270263433,-1.26555091142654,-0.442269295454025,-0.386246338486671,-1.65626889467239,-0.889097154140472,0.180802941322327,-1.66545420885086,0.189035575836897,-0.135686457157135,-1.90121293067932,0.0141359195113182,-0.276794455945492,-1.84393239021301,-0.120873719453812,-0.195095162838697,-1.27357256412506,-1.27224346995354,-0.307155903428793,-1.79460471868515,0.263519577682018,-0.357470117509365,-1.88889729976654,0.0199171975255013,-0.502173736691475,-1.78789603710175,-0.0722425580024719,-0.155241556465626,-0.808798670768738,-1.81803530454636,-0.176167331635952,-1.86727410554886,-0.29575265198946,0.317009005695581,-1.87039130926132,-0.494172206148505,-0.179802093654871,-0.630833864212036,-0.509398281574249,-0.995537295937538,-0.664758205413818,-0.983352288603783,-1.32324820756912,-1.25457882881165,-0.130283623933792,-1.28980597853661,-0.971336990594864,0.0119220018386841,-1.4552646279335,-1.06274026632309, +-0.281759083271027,-0.961124688386917,-1.02126988768578,-0.0625640153884888,-1.36491134762764,-1.59280222654343,-0.491183146834373,-1.02492791414261,-1.64079201221466,0.294526696205139,-0.96603924036026,-1.3747296333313,0.0730762481689453,-1.12755870819092,-1.54864752292633,-0.247016251087189,-1.06806609034538,-1.62170553207397,0.114397317171097,-1.11925101280212,-1.31267634034157,-1.11154673993587,-0.433923721313477,-1.70352983474731,-0.483589816838503,-0.662283167243004,-1.1183340549469,-0.453667670488358,-1.02533441781998,-1.52711725234985,-0.221233114600182,-1.0964672267437,-1.64176720380783,-0.324663028120995,-0.725728288292885,-0.905495703220367,-1.68645226955414,-0.521621465682983,-1.95366758108139,0.307116627693176,-0.257263422012329,-1.85502946376801,0.35056309401989,-0.366564311087132,-1.3449159860611,0.238008037209511,-1.0139347165823,-1.14740726351738,-0.313705384731293,-1.49575811624527,-1.48170939087868,0.25202988088131,-0.63991367816925,-1.41147619485855,0.113196462392807,-0.539171099662781,-1.56932401657104,0.290550790727139,-0.58361804485321,-1.44931063055992,0.375822767615318,-0.711424246430397,-1.30465790629387,0.13422480225563,-0.584082365036011,-1.29215651750565,0.182317465543747,-0.997518822550774,-1.28633779287338,0.331233061850071,-1.05596728622913,-1.8971443772316,0.408552132546902,-0.0287268161773682,-1.07191473245621,-1.67070978879929,-0.065690103918314,-1.70417279005051,-0.168680548667908,-0.355867579579353,-1.68824887275696,-0.339958325028419,-0.680767118930817,-1.24700748920441,-0.765017852187157,-0.675676628947258,-1.69221425056458,-0.335137948393822,-0.459587529301643,-1.89279270172119,-0.0286080166697502,-0.262600064277649,-1.77005231380463,0.0160769373178482,-0.708713851869106,-1.65565532445908,-0.329584732651711,-0.724906623363495,-1.79474377632141,-0.33677627146244,-0.462158620357513,-1.38431629538536,-1.01429881155491,-0.357849679887295,-1.89204567670822,0.154070898890495,-0.406478531658649,-1.7961733341217,-0.453401409089565,-0.457147352397442,-1.37812238931656,-0.87947204709053, +-0.416614070534706,-1.80163866281509,-0.407736517488956,-0.467937767505646,-1.75719887018204,-0.397271633148193,-0.540801100432873,-1.21119517087936,-0.770622074604034,-0.625305995345116,-1.82574057579041,0.283320806920528,-0.560027249157429,-1.93665075302124,0.221025742590427,0.191255234181881,-1.52804958820343,-0.982516691088676,-0.0867748968303204,-1.84624928236008,-0.143433098681271,0.402047909796238,-1.45575833320618,-0.208209455013275,-0.53547939658165,-1.5810187458992,-0.158741881139576,-0.855059415102005,-1.51423794031143,-0.0524542389903218,-0.941681355237961,-1.47650429606438,-0.426040180027485,-0.835716515779495,-1.58095592260361,-0.162227442488074,-0.855130411684513,-1.52293288707733,-0.0453366031870246,-1.00354933738708,-1.41569289565086,-0.00140200964233372,-1.03573098778725,-0.587349370121956,0.354601506143808,-1.76621001958847,-0.612432077527046,-0.0778808034956455,-1.84903484582901,-0.653165653347969,0.288233796818531,-1.83535242080688,-1.09148965775967,0.329710125923157,-1.42855530977249,-1.00164303183556,0.330506347585469,-1.54380816221237,-0.804751992225647,-0.139249593019485,-1.68258970975876,-0.846253722906113,0.23338646069169,-1.75533252954483,-1.54488980770111,0.345592163968831,-1.17308723926544,-1.4101168513298,-0.785920739173889,-1.13117066025734,-0.661263927817345,0.408932959660888,-1.75976324081421,-0.897118996828794,0.337895911186934,-1.4620868563652,-0.804491844028234,-0.0445880517363548,-1.49674844741821,-0.851628512144089,0.254161129458225,-1.7731568813324,-0.933860898017883,0.205989234149456,-1.72427701950073,-0.877350032329559,0.260540261864662,-1.69529807567596,-0.957239270210266,0.163310796022415,-1.72169309854507,-0.774408876895905,0.197659082710743,-1.79106724262238,-1.17836353182793,-0.374227076768875,-1.00668239593506,-1.13822188973427,-1.10572916269302,-1.06047576665878,-0.915488734841347,-0.309674441814423,-1.06998807191849,-0.4521654099226,-0.359226822853088,-1.41025984287262,-0.524048566818237,-0.960471138358116,-1.55926287174225,-0.995802193880081,-0.540162608027458,-1.32546371221542, +-0.889210134744644,-0.598722785711288,-1.27471768856049,-0.629511132836342,-0.263477265834808,-1.29341024160385,-1.17860302329063,-0.598897837102413,-1.10037681460381,-1.15274253487587,-0.585418879985809,-1.11466577649117,-1.12325643002987,-0.443718254566193,-0.474171087145805,-1.07039430737495,-1.24179738759995,-0.383933171629906,-1.13380178809166,-0.23535293340683,-0.851318284869194,-0.949458718299866,-0.267294973134995,-1.25784933567047,-0.732812270522118,-1.44001162052155,-1.11102670431137,-1.07867388427258,-0.668565414845943,-1.03694662451744,-1.26990035176277,-0.234300509095192,-1.31051084399223,-1.006556391716,0.148901164531708,-1.45401000976563,-1.27838504314423,-0.0710253715515137,-1.41707479953766,-1.23091122508049,-0.0567376464605331,-1.43412411212921,-1.38287264108658,-0.171912923455238,-0.78874396905303,-1.11000263690948,-1.06412941217422,-0.744668878614902,-1.51075941324234,0.136054813861847,-0.993271380662918,-1.03929334878922,0.0319636613130569,-1.63960957527161,-0.340659010209492,-1.42264926433563,-1.30697190761566,-0.839174669336899,-0.622239798307419,-1.17415940761566,-0.874400794506073,-0.599730640649796,-1.17461228370667,-0.767462320625782,-0.373658001422882,-1.40091043710709,-0.859906952929123,-0.618788987398148,-1.1385306417942,-0.859916398346343,-0.640269249677658,-1.09687313437462,-1.02081098780036,-0.729475907981396,-0.771950140595436,-0.496418684720993,-1.64302635192871,-0.68949343636632,-0.937770783901215,-0.411098212003708,-0.911768227815628,-0.875376667827368,-0.657394960522652,-1.13722217082977,-0.562582522630692,-1.5421090722084,-1.09860736131668,-1.07665847241879,-0.632939472794533,-1.06722423434258,-0.98770297318697,-0.556259818375111,-1.13220235705376,-0.886113822460175,-0.461536109447479,-1.08874651789665,-1.08889858424664,-0.660840377211571,-1.04155248403549,-1.10828657448292,-0.547435067594051,-1.11031180620193,-1.15106123685837,0.129435647279024,-1.09758391976357,-0.521319341627532,-0.879205860197544,-1.15353141725063,-0.94543673874432,-0.035929948091507,-1.03193531930447,-0.223362304270267, +-0.0160293579101563,-1.86379235982895,-1.12276202440262,-0.103828925639391,-0.671667098999023,-1.00447502732277,-0.452539168298244,-0.396147191524506,-0.835270404815674,-0.145921424031258,-1.68528974056244,-0.27718001883477,0.221678785979748,-1.9070833325386,-0.765525162220001,0.34000049601309,-1.78347849845886,-1.23813849687576,-0.0042186975479126,-1.33731833100319,-1.16487124562263,0.209085715934634,-1.46430921554565,-0.61376728117466,0.329545384272933,-1.84369575977325,-0.675203204154968,0.052505761384964,-1.78480696678162,-0.624891117215157,-0.0633637309074402,-1.73627346754074,-1.07106679677963,0.339613765478134,-1.44050848484039,-1.28869810700417,0.265648586675525,-0.780259519815445,-1.0086242556572,-0.380578190088272,-1.20168751478195,-1.17895343899727,0.0198130011558533,-1.42572474479675,-1.23667713999748,0.0211539417505264,-1.09231339395046,-1.19770234823227,-0.465277716517448,-0.730295933783054,-1.28818097710609,-0.164351165294647,-1.34396257996559,-1.06913474202156,0.0782136097550392,-1.66843265295029,-1.08706375956535,-0.00238357298076153,-1.42150962352753,-1.2572890818119,-0.27424743771553,-1.0605168864131,-1.09798088669777,-0.289635479450226,-1.49367362260818,-1.00597164034843,-0.0688581969588995,-1.55689638853073,-1.83787190914154,-0.0575915370136499,-0.782964169979095,-1.89775145053864,-0.121153999265516,-0.571504652500153,-1.03819960355759,-0.498790010809898,-1.35380923748016,-1.12257876992226,-0.137333635240793,-1.4641278386116,-1.91080844402313,-0.175667628645897,-0.463956691324711,-0.161867260932922,-1.2530979514122,0.316438287496567,0.301705211400986,-0.65508995950222,-0.732180863618851,-0.456359028816223,-0.937167137861252,-0.659497663378716,-0.326664626598358,-0.828345984220505,-0.213210448622704,0.170521259307861,-0.361315248534083,-0.111880838871002,-0.481031388044357,-0.356872241944075,0.499253630638123,-0.236932635307312,-0.340466663241386,0.209731161594391,0.0301447510719299,-0.368355758488178,-0.177548378705978,-0.312831223011017,-0.853977307677269,-0.434941560029984,0.224387049674988, +-0.965942248702049,0.195473521947861,0.415420889854431,-0.631681650876999,-0.207493558526039,0.149884521961212,-1.80140089988708,-0.227415472269058,0.694506168365479,-0.973972335457802,-0.147198006510735,0.425101757049561,-0.835578516125679,-0.277871005237103,-0.260138094425201,-1.63642740249634,-0.430337738245726,0.692029684782028,-1.07514859735966,-0.289077833294868,-0.0424682796001434,-1.26334425806999,0.595608472824097,-0.372171521186829,-1.41883647441864,0.269437879323959,-0.0425566136837006,-1.00756177306175,0.454984128475189,0.0494227409362793,-1.06025131046772,0.541202932596207,0.442787796258926,-1.24873307347298,0.243371188640594,0.263202905654907,-1.03716421127319,0.155624389648438,-0.106455683708191,-1.60402208566666,-0.107611358165741,0.706307858228683,-1.03633670508862,-0.505530975759029,0.455596685409546,-1.01474691927433,0.276786595582962,0.122621476650238,-0.230595458298922,-0.209620609879494,-0.112111449241638,-0.362107239663601,0.232695162296295,-0.584279924631119,-1.08972409367561,-0.135523120872676,0.0784714818000793,-0.262670170515776,-0.106309622526169,0.003162682056427,-0.121328048408031,0.047299712896347,0.0860549211502075,-0.114807080477476,-0.546926736831665,0.0105286240577698,-0.0197413004934788,-0.104866690933704,-0.56134369969368,-1.05854311585426,-0.326278194785118,0.527078092098236,-0.732290930114686,-0.351518705487251,0.602403998374939,-0.875806882977486,-0.443721510469913,0.214094489812851,-1.19815424084663,0.275061249732971,0.0712830722332001,-1.47476750612259,0.148380160331726,0.166879773139954,-0.973095029592514,0.292156219482422,0.160477846860886,-1.07430797815323,0.219528436660767,0.329386651515961,-1.34090775251389,0.0988287925720215,0.128231853246689,-1.33733153343201,0.238403916358948,-0.271597474813461,-0.797350943088531,0.18985241651535,0.247770667076111,-0.509300038218498,-0.27249276638031,-0.426638722419739,-1.10417397320271,-0.284256588667631,0.217013359069824,-0.3674451187253,-0.22006556391716,0.212950110435486,-0.479293182492256,-0.185326039791107,0.10627007484436,-0.609709650278091, +-0.174255132675171,-0.148631632328033,-0.436133731156588,0.123717814683914,-0.165104508399963,-0.47068490087986,0.285595566034317,0.0866464376449585,0.0300491750240326,-0.1551553606987,-0.45862203836441,-1.0987598747015,-0.428638860583305,0.119581699371338,0.190686877816916,-0.234042584896088,0.107491612434387,-0.159526959061623,-0.283963054418564,-0.232008755207062,-0.974036440253258,-0.539348967373371,0.0958866477012634,-0.543858379125595,-0.211779117584229,0.16492623090744,-0.220581647008657,-0.257446557283401,0.169616460800171,0.0099270585924387,-0.330563634634018,-0.00922748446464539,-1.68805354833603,-0.382825396955013,0.123779058456421,-0.447309389710426,-0.103730618953705,0.185886144638062,-0.345273127779365,-0.327450409531593,0.129072517156601,-1.56348061561584,-0.535447061061859,-0.14657187461853,-1.11867502331734,-0.430201880633831,-0.385686457157135,-0.931590527296066,-0.347146017476916,-0.815052315592766,-0.395255532115698,0.471891283988953,-0.773804541677237,-1.08471223711967,0.203096598386765,-0.547897011041641,-0.888229161500931,0.326796382665634,-0.512645661830902,-0.160128060728312,0.455894231796265,-0.661014348268509,-0.647040456533432,0.679027810692787,-0.580028116703033,-0.744662910699844,0.761743798851967,-0.0409272611141205,-1.3953600525856,0.172465801239014,-0.602970600128174,-0.606892347335815,0.467066258192062,-0.430325299501419,-0.718225955963135,0.703239038586617,-0.31782703101635,-1.43091726303101,0.627389535307884,-0.487035572528839,-0.454901300370693,0.299909889698029,-0.336730718612671,-0.248993210494518,0.554051265120506,-0.501437574625015,-0.593170970678329,0.628696218132973,-0.42058390378952,-0.42745703086257,0.340079128742218,-0.520628750324249,-0.654297769069672,0.452204115688801,-0.6667859852314,-0.21264011785388,0.744630008935928,-0.106990933418274,-0.44138303399086,0.254436925053596,-0.557214349508286,-0.978922784328461,0.280337765812874,0.156661182641983,-1.31259870529175,0.547540087252855,0.391495108604431,-1.0171487480402,0.260983668267727,0.478960484266281,-1.37150341272354, +0.566141907125711,0.349506482481956,-1.28557473421097,0.613147094845772,-0.114683955907822,-1.68183481693268,0.264705799520016,-0.0414023399353027,-1.02856466174126,0.673489317297935,0.700453579425812,-1.04930993169546,-0.0760187953710556,0.266860693693161,-1.76040428876877,-0.270253475755453,0.238802790641785,-1.0443702340126,0.322256579995155,0.403842031955719,-0.876057460904121,-0.00760461390018463,0.551438599824905,-1.17230871319771,0.4213039688766,0.29405665397644,-1.08754473924637,0.828320994973183,-0.245462745428085,-1.61196106672287,0.367835588753223,0.0529963374137878,-0.898548401892185,0.599454030394554,0.623480051755905,-0.870830714702606,-0.489475302398205,0.221883207559586,-1.73134851455688,-0.403145480901003,-0.12006539106369,-0.512134417891502,0.292263112962246,0.014275848865509,-0.297845184803009,0.0117675140500069,-0.105693340301514,-0.306659058202058,0.382189352065325,-0.144893527030945,-0.0094885379076004,0.526309747714549,-0.63409548997879,-1.10509151220322,0.163390904664993,-0.0680680871009827,-0.130869403481483,0.321011811494827,-0.0099225640296936,0.0495082400739193,0.229730524122715,-0.490814208984375,-0.865957066882402,-0.0267265774309635,0.27107310295105,-1.05232042074203,-0.0371726453304291,0.400172054767609,-0.570402756333351,-0.195442050695419,0.429417997598648,-1.60318034887314,-0.276849056128412,0.534460306167603,-0.984960325062275,0.322804868221283,-0.164007216691971,-1.63172721862793,-0.135003924369812,0.319743692874908,-0.752515889704227,0.0912326276302338,-0.240173194557428,-1.23271772265434,0.650220066308975,0.6582912504673,-1.03113120049238,0.000526726245880127,0.0953496098518372,-0.412402883172035,-0.141948372125626,-0.390061110258102,-0.517783135175705,0.436228185892105,-0.48186269402504,-0.566487729549408,0.512133926153183,-0.347667008638382,-0.590064346790314,0.255034267902374,-0.358923256397247,-0.615238279104233,0.385126620531082,-0.518757373094559,-0.530904248356819,0.48393115401268,-0.171636939048767,-0.466369554400444,0.353467643260956,-0.634886980056763,-0.597543001174927, +0.558372288942337,-0.103210151195526,-0.301517689600587,0.113359808921814,-0.213774979114532,-0.520200043916702,0.289391726255417,-0.347961962223053,-0.362412502989173,0.419369608163834,0.00715452432632446,-0.173598356544971,-0.491564586758614,0.0336188673973083,-0.27473209798336,-0.472171545028687,-0.0122740268707275,-0.396566286683083,0.117824092507362,-0.384112238883972,-0.31392177939415,0.63079497218132,-0.146400511264801,-0.157719692215323,0.275413125753403,0.0327419638633728,-0.0893615074455738,-0.885388433933258,0.0948615074157715,-0.136915434151888,-0.26893025636673,-0.0710887908935547,0.0279721021652222,0.138681352138519,0.0598639249801636,-0.103415735065937,-0.14306977391243,0.0931967496871948,-0.230934232473373,-0.303735077381134,-0.0458182692527771,-0.228127621114254,0.1222785115242,-0.124405741691589,-0.0091896578669548,0.279114872217178,0.0827516317367554,0.0175598375499249,-0.399981701280922,0.00074458122253418,-0.211037091910839,-0.29518311470747,0.00440806150436401,-0.294201582670212,0.0200431570410728,-0.978784050559625,-0.886991456151009,-0.162180289858952,-0.940927870571613,-0.891385100781918,-0.142000179737806,-1.07610688358545,-1.16291238367558,-0.153346821665764,-1.05030568689108,-1.17079359292984,-0.0884987413883209,-0.846892915666103,-0.880539238452911,-0.315472241491079,-0.932804372161627,-0.882820978760719,-0.237788140773773,-0.714796051383018,-1.57059174776077,-0.548302025534213,-0.588282856158912,-1.59975337982178,-0.669621333479881,-0.182153299450874,-1.61395770311356,-1.00776356458664,-0.306853611022234,-1.68484991788864,-0.738649420440197,-0.660320993512869,-1.59988933801651,-0.365964025259018,-0.661747757345438,-1.73061722517014,-0.105790734291077,-0.228995535522699,-1.75813961029053,-0.770264491438866,-0.2881482206285,-1.65888768434525,-0.808508284389973,-0.894219882786274,-1.58352959156036,0.0588093735277653,-0.789857339113951,-1.6258253455162,-0.144459918141365,-0.798244070261717,-1.53691309690475,-0.216908061876893,-0.849562797229737,-1.52079194784164,-0.192495547235012,-0.779349364340305, +-1.63012462854385,-0.0747807901352644,-0.785712279379368,-1.55408805608749,-0.240479871630669,-0.811278145760298,-1.53068804740906,-0.0849152952432632,-0.833982669748366,-1.55280786752701,-0.113594399765134,-0.904856814624509,-1.41437256336212,-0.12956104055047,-0.863512429408729,-1.45935073494911,-0.296830430626869,-0.909424915909767,-1.3167367875576,-0.38617616891861,-0.938505575992167,-1.29518890380859,-0.277635186910629,-0.870515186921693,-1.45885524153709,-0.299293667078018,-0.877362057566643,-1.5516175031662,-0.0360435098409653,-1.17330926656723,-0.210334867238998,-1.14197710156441,-1.53048777580261,-0.212719239294529,-0.979735240340233,-1.51798731088638,-0.0528367310762405,-0.958590127527714,-1.49932718276978,-0.0500786490738392,-0.972195960581303,-1.33678928017616,-0.286769866943359,-1.03026811778545,-1.5037140250206,-0.429954119026661,-0.845174431800842,-1.33674713969231,0.10394499450922,-1.02962885051966,-1.753302693367,-0.00404740124940872,-0.704540878534317,-1.20822003483772,-0.234839245676994,-1.13551679253578,-1.72067421674728,-0.328600108623505,-0.673594757914543,-0.333164599163865,-0.196015916764736,-1.88493144512177,-0.928145405967371,0.0972405821084976,-1.34496703743935,-1.21348017454147,0.0172704458236694,-1.38279813528061,-0.962750963866711,-0.394314173609018,-1.42927867174149,-0.818899152000085,-0.0158789344131947,-1.57278960943222,-0.831283870502375,-0.0178453382104635,-1.55520343780518,-1.21054276823997,-0.0283797411248088,-1.48473608493805,-1.13914060592651,-0.0553648229688406,-1.51745384931564,-1.21568721532822,-0.0182617977261543,-1.38491061329842,-1.34035083651543,-0.0517212385311723,-1.21273133158684,-1.28755381703377,-0.183337140828371,-1.24153313040733,-1.16369667649269,-0.524397224187851,-1.27023828029633,-0.988663427531719,-0.652743399143219,-1.33084332942963,-1.24157583713531,-0.225758858025074,-1.30582743883133,-1.2358755171299,-0.307749807834625,-1.19232767820358,-1.082549482584,-0.618860181246419,-0.846830457448959,-1.40191307663918,-0.066195247520227,-0.963404387235641,-1.45534926652908, +-0.0160301229916513,-0.973918877542019,0.463012427091599,-0.399076085537672,-1.05532047152519,0.473171502351761,-0.426787847653031,-1.0028777346015,-0.568633250892162,0.461203601676971,-1.76745009422302,-0.290632411837578,-0.20784330368042,0.0591739416122437,-0.643232792615891,0.431973963975906,-1.73210948705673,-1.05799779295921,0.506798107177019,-1.48795562982559,-0.635327786207199,0.508501514792442,-1.77859276533127,-0.499645665287971,0.569148600101471,-1.79546529054642,-0.415160820615711,0.624556291848421,-1.71288400888443,-0.730841032993339,0.610997498035431,-1.43282625079155,-0.71064954996109,0.616002380847931,-1.70805931091309,-0.61155766248703,0.703620404005051,-1.66852462291718,-0.86862975358963,0.7359469383955,-1.37119683623314,-1.23374655842781,0.603831201791763,-0.940894015133381,-0.986086428165436,0.505680155940354,-1.42272534966469,-1.05250853300095,0.53170613758266,-1.46187174320221,-1.36509758234024,0.401145558804274,-1.15019479393959,-1.35000750422478,0.268483005464077,-0.917313430458307,-1.259616792202,0.278904568403959,-1.44404339790344,-0.88599818944931,0.328463323414326,-1.67602497339249,-1.09106206893921,0.264863982796669,-1.42981365323067,-1.34013596177101,0.221117757260799,-1.12923595309258,-1.29205501079559,0.141854986548424,-1.25630441308022,-1.03679569065571,0.268717058002949,-1.43940562009811,-1.26934358477592,0.164550870656967,-1.18400457501411,-1.33162161707878,0.170840576291084,-0.902971304953098,-1.00687392055988,0.299742586910725,-1.46472823619843,-0.998554944992065,0.352160945534706,-1.44832834601402,-1.23310708999634,0.294229298830032,-0.979626348242164,-1.2874656021595,0.143346101045609,-0.677727848291397,-1.2423554956913,0.0294600501656532,-0.377243399620056,0.643371492624283,-0.0647464115172625,-0.685947507619858,0.541984170675278,0.0188703611493111,-0.628669857978821,0.690366208553314,0.0452869087457657,-0.812984392046928,0.662474185228348,0.0978323332965374,-1.0123852416873,0.789737045764923,0.0577396303415298,-0.918662808835506,0.579181492328644,0.0175862992182374,-0.419731378555298, +0.501993507146835,-0.0282794646918774,-0.507614195346832,0.258750915527344,0.149798773229122,-0.518481612205505,0.459853887557983,0.177019538357854,-0.670243561267853,-0.00187498331069946,0.282978817820549,-0.0338888168334961,0.103685975074768,0.2212273478508,-0.231545686721802,0.113430440425873,0.223217144608498,-0.810355663299561,0.196762144565582,0.0192168429493904,-0.221711575984955,0.171051442623138,-0.0962959348689765,-0.118139326572418,0.0858519077301025,-0.0620643347501755,-0.167870730161667,0.588023543357849,-0.256728708744049,-0.874326517805457,0.352475464344025,-0.301404908299446,-0.78772203810513,-0.252145886421204,-0.271027490496635,0.189877271652222,0.2628413438797,-0.340760406805202,-0.285640478134155,0.264218509197235,-0.40560057759285,-0.430792301893234,0.00673335790634155,-0.409826710820198,-0.0992251634597778,-0.325407147407532,-0.377569124102592,0.126673996448517,-0.341061055660248,-0.370486065745354,0.202517211437225,-0.0038030743598938,-0.406974390149117,-0.0593679547309875,-0.295335173606873,-0.380059115588665,0.139750480651855,-0.378143936395645,-0.375140596181154,0.133414447307587,-0.326081782579422,-0.321459792554379,0.0798966288566589,-0.288774698972702,-0.993327848613262,-0.794550366699696,-0.533366590738297,-1.02985824644566,-0.84886822104454,-0.173271685838699,-1.06655183434486,-0.913937158882618,-0.17359933257103,-0.90988864377141,-0.673690974712372,0.0973314642906189,-0.923509158194065,-0.745869144797325,-0.0737363696098328,-0.894560519605875,-0.615725085139275,-0.162564188241959,-0.906132575124502,-0.525563254952431,-0.140157580375671,-0.972464360296726,-0.50644513964653,-0.255940586328506,-0.90506773814559,-0.397646546363831,-0.140161037445068,-0.905071318149567,-0.444031953811646,-0.243930250406265,-0.953189566731453,-0.357929766178131,-0.310792580246925,-0.92523542791605,-0.28504741191864,-0.366210520267487,-0.888447150588036,-0.247598528862,-0.674130722880363,0.214514032006264,-1.80752056837082,-0.739031746983528,0.183690540492535,-1.75959813594818,-0.572887051850557,0.0100230872631073, +-1.83275264501572,-0.34566493332386,0.248469546437263,-1.80144190788269,0.0206318795681,0.360508054494858,-1.82097536325455,0.0365314781665802,0.267589949071407,-1.76064372062683,-0.0940841436386108,0.185770235955715,-1.65970820188522,-0.330398947000504,-0.22897476144135,-1.52610743045807,-0.162240538746119,-1.08599814772606,-1.02792278677225,-0.275509208440781,-0.811426743865013,-0.159524917602539,-0.342796564102173,-0.646792143583298,0.238619327545166,0.140015810728073,-0.384338945150375,-0.0822890996932983,0.0821325778961182,-0.211420252919197,-0.0450571775436401,-0.0624195039272308,-0.094107611104846,0.0159868001937866,-0.225993797183037,-0.679272338747978,-0.0697017312049866,-0.811735868453979,-0.849480699747801,0.409611508250237,-0.735841482877731,-0.958130948245525,0.149634480476379,-0.795555338263512,-0.916591975837946,0.440091006457806,-0.764659389853477,-0.905681870877743,0.602942109107971,-0.757105529308319,-0.932175133377314,0.390058718621731,-0.601646989583969,-0.877216130495071,-0.176920831203461,-0.57350155711174,-0.979913700371981,-0.320035368204117,-0.719186455011368,-0.979765556752682,0.346137285232544,-0.547452092170715,-0.978800300508738,-0.500799655914307,-0.642797008156776,-0.992736341431737,-0.487750496715307,-0.648183912038803,-0.895484276115894,-0.675601825118065,-0.645232990384102,0.362064525485039,-1.50454533100128,-0.695700973272324,0.280720619484782,-1.40536314249039,-0.935022719204426,0.0897950530052185,-1.15775060653687,-1.09173680841923,0.282906364649534,-1.27161803841591,-1.18121129274368,0.456614784896374,-1.35181203484535,-1.17167216539383,0.0875909924507141,-1.45870733261108,-1.44891166687012,0.166395127773285,-0.826002279296517,-1.40183541178703,-0.0147994179278612,-0.740057706832886,-0.872867062687874,-1.03983943536878,-0.589378334581852,-1.12381169199944,-0.797221004962921,0.749100049957633,-1.32908597588539,-0.359024465084076,0.716595113277435,-1.32193976640701,-0.3348781876266,0.746855601668358,-1.35681283473969,-0.208520866930485,1.08027583360672,-0.874048799276352,-0.109540186822414, +0.108479976654053,-0.788078486919403,-0.639991953969002,0.042119562625885,-0.996080100536346,-0.96117427945137,0.00461292266845703,-0.952278882265091,-0.870966598391533,-0.135560870170593,-1.02222387492657,-1.0112302005291,-0.0868613719940186,-1.02047815918922,-1.02362504601479,-0.146691769361496,-1.06340983510017,-0.933931786566973,-0.149877548217773,-1.02598792314529,-0.940486714243889,-0.321092069149017,-1.17816039919853,-1.14380159974098,-0.141303181648254,-0.867534726858139,-1.07741844654083,-0.610852882266045,-0.982541620731354,-1.12641708552837,-0.588861063122749,-1.10812251269817,-1.22243219614029,-0.443361626937985,-0.824484929442406,-1.086365878582,-0.976465716958046,-1.53789275884628,-0.452678106725216,-0.775227652862668,-1.6736888885498,-0.364900331944227,-0.689049578155391,-1.71539217233658,-0.219601273536682,-0.596222884953022,-1.79130858182907,-0.185483548790216,-0.490969687700272,-1.74739122390747,-0.0674339309334755,-0.6325961984694,0.129272639751434,-0.364242721349001,-0.565939485713898,0.170876204967499,-0.43559592962265,-0.654213185422122,0.362071692943573,-0.22637601941824,-0.687422588467598,0.440185129642487,-0.0428324453532696,-0.753406144678593,0.236232101917267,-0.0577331185340881,-0.616674195975065,0.0155924558639526,-0.158999383449554,0.129345624591224,-0.117947399616241,-0.800696611404419,0.536330007016659,-0.837090738117695,-1.00896234810352,0.488801307976246,-1.48684495687485,-0.877386868000031,0.680726021528244,-1.9494606256485,-0.243343941867352,-0.120817333459854,-1.94921433925629,-0.1126778870821,-0.190003544092178,-1.92570245265961,-0.0345001723617315,0.43361933529377,-1.87324464321136,-0.473251849412918,-0.385259501636028,-1.9014036655426,-0.479943133890629,0.0957311317324638,-1.44762003421783,-0.873938336968422,0.360749019309878,-0.4359050989151,-0.92002559453249,-0.303055366501212,-0.0642603039741516,-0.479574747383595,0.0958379060029984,-0.0367724895477295,-0.277581246569753,-0.0164004750549793,-0.000214815139770508,0.00446730200201273,0.115737710148096,0.066347599029541,-0.0668699890375137, +0.471642404794693,0.0681577324867249,-0.0968799479305744,-0.28078731149435,-0.328589081764221,-0.739094954915345,-0.0987741053104401,-1.03931672871113,-0.959939545020461,-0.198773354291916,-1.65169352293015,-0.611183874309063,-0.36436827853322,-1.96124738454819,-0.0193110825493932,-0.271962734870613,-1.99372178316116,0.000945808365941048,0.1198187507689,0.00547277927398682,-0.0266299424692988,-0.0372786670923233,-0.0291199088096619,-0.360936975106597,-0.360554218292236,0.402258992195129,-0.263919807970524,-0.789403036236763,-1.38874754309654,-0.45251377671957,-0.927004743367434,-1.70813924074173,-0.428895942866802,-0.576294593513012,-0.798242865522752,-0.9472302980721,-0.690667703747749,-0.899437974672765,-0.781065449118614,-1.01064538955688,-1.08784112334251,-0.932668766006827,-0.663268275558949,-0.952260315418243,-0.876212898641825,-0.960829481482506,-0.235816597938538,-0.969483587890863,-0.979091890156269,-0.287616968154907,-1.02457296103239,-0.924376294016838,-0.603197932243347,0.153914332389832,-1.48801898956299,-0.315858885645866,0.484160389751196,-1.72313296794891,-0.0358567237854004,0.557182665914297,-1.44492346048355,-0.176533997058868,0.703897319734097,-1.2642530798912,0.154013276100159,0.112214632332325,-1.33277887105942,-0.2021364569664,0.45886567234993,-0.206949084997177,-0.760505020618439,-0.20684977248311,-0.533713161945343,-0.453402370214462,0.117212038487196,-0.339777648448944,-0.748437851667404,0.369959194213152,-0.550714522600174,-0.867775611579418,0.135796960443258,-0.403814733028412,-0.385615468025208,0.191159754991531,-1.33512955904007,-0.466694861650467,0.0887733027338982,-0.510048478841782,-0.639357924461365,0.385494664311409,-1.18107467889786,-0.67744380235672,0.321061376482248,-0.998740330338478,-0.348982870578766,-0.827579278498888,-0.367344483733177,0.0385461449623108,-0.0530496388673782,-0.382382594048977,-0.0468879342079163,0.291289303451777,-0.285233974456787,-0.184431731700897,0.00773943588137627,-0.482649482786655,0.0324724316596985,-0.22056663222611,-0.322937473654747,-0.142232596874237, +0.0835350416600704,-0.761234298348427,0.0382455587387085,-0.158981988206506,-1.15702819824219,-0.148173868656158,-0.0046728104352951,-0.56984081491828,-0.0738230347633362,0.179101053625345,-0.129256397485733,-0.432093590497971,-0.914709061384201,-0.708982557058334,-0.133158147335052,-0.47569876909256,-0.429983850568533,-0.0513978004455566,-0.0898447073996067,-0.230612255632877,-0.200741529464722,-0.247204452753067,-0.239507287740707,-0.0610010623931885,-0.314633082598448,0.0227584838867188,0.0141163468360901,0.236317418515682,-0.635228008031845,-0.0153646469116211,-0.35969839990139,-0.840994983911514,-0.130035877227783,0.0621507614850998,-0.753082320094109,-0.100749731063843,0.342332988977432,-0.803736090660095,0.0178537368774414,0.0721935480833054,-0.214795255102217,0.00691515207290649,-0.132657086476684,-0.125388767570257,-0.0162264704704285,0.337592884898186,0.0201275944709778,0.0562210083007813,0.170903712511063,-0.359164923429489,0.0132299661636353,0.0545078292489052,0.094386875629425,-0.000348985195159912,0.0376177038997412,-0.111659239977598,-0.797183007001877,-0.181507673114538,-1.00614205561578,-0.687916219234467,0.0951725319027901,-0.929187695961446,-0.830732047557831,0.38325572013855,-0.970275308936834,-0.886030741035938,0.297257609665394,-1.20028293132782,-0.792864665389061,0.0555050075054169,-1.11754658818245,-0.0707588791847229,-0.534370124340057,-0.077602656558156,-0.360055685043335,0.172607861459255,-1.07318836450577,0.0568665266036987,0.170895107090473,-0.440014980733395,-0.0464766621589661,0.128741379827261,-0.731457054615021,0.00754618644714355,-0.0282463133335114,-0.178801883012056,0.0132384300231934,0.332321956753731,-0.570051297545433,-0.163530051708221,0.514390625059605,-0.628096759319305,-0.430397987365723,-0.170853137969971,-1.09583702683449,-0.141789257526398,0.371360719203949,-0.856171011924744,-0.414947867393494,0.447247892618179,-0.614659637212753,-0.768319383263588,0.00466416776180267,-0.795937642455101,-0.375596284866333,-0.023324266076088,-0.536932975053787,-0.220144867897034,-0.355490427464247, +0.736695349216461,-0.0464559197425842,-0.1133873462677,-0.170537620782852,-0.0740815401077271,-0.0950425714254379,0.250872626900673,-0.0232149958610535,0.129019301384687,0.294588513672352,-0.125794053077698,0.00348544120788574,0.744616985321045,-0.0805718898773193,0.269427016377449,0.539594203233719,-0.0567589402198792,0.439677678048611,0.493677347898483,-0.585567384958267,-0.826716344803572,-0.0757768750190735,-0.125147521495819,-0.222824946045876,-0.327450312674046,-0.132217824459076,0.164514519274235,-0.291331887245178,-0.347519755363464,-0.00542111694812775,-0.596240565180779,-0.159460723400116,-0.18150383234024,-0.406012147665024,-0.500164836645126,-0.80200145766139,0.452740222215652,-0.228857755661011,-0.262933552265167,-0.671826362609863,-0.034987211227417,-0.000542029738426208,0.251134811900556,-0.0599483251571655,-0.205343455076218,-0.086547520942986,-0.0914236307144165,-0.200725957751274,0.162488639354706,-0.0152613520622253,0.138587918365374,0.211169718764722,-0.0206103920936584,0.342012815177441,0.338891059160233,-0.579052925109863,-0.834397487342358,-0.00940825045108795,-0.0872521996498108,-0.25827494263649,-0.12809815723449,0.0763322710990906,0.042439341545105,-0.502073459327221,-0.0989903211593628,-0.366794526576996,-0.867701411247253,-0.0599526166915894,-0.535392314195633,-0.282717771828175,0.00795555114746094,0.236040290445089,-0.387159138917923,-0.0612795948982239,0.248815357685089,-0.364061430096626,-0.089681088924408,-0.613943129777908,-0.180897079408169,-0.753768607974052,0.214332286268473,-1.12567630410194,0.0209605097770691,0.206476356834173,-0.305673565715551,-0.0992363095283508,0.165238294750452,-0.609658181667328,0.0276575088500977,0.00722385942935944,-0.285554103553295,0.00196003913879395,0.299101080745459,-0.32029052823782,-0.0619013905525208,0.422793675214052,-0.250468760728836,-0.742988139390945,0.495338633656502,-1.11489436030388,-0.635218232870102,0.546896709129214,-1.10856205224991,-0.431254863739014,0.32899209856987,-1.22919631004333,-0.572363048791885,0.320035573095083,-1.12945121526718, +-0.572726726531982,0.160638570785522,-1.09005330502987,-0.569332957267761,0.13165832310915,-1.24069529771805,-0.799389734864235,0.0323106944561005,-1.14488813281059,-0.770677775144577,0.00378203392028809,-1.12211884558201,-1.16459730267525,0.222936488687992,-1.26460558176041,-0.937081795185804,0.0957242082804441,-1.3199542760849,-0.670822530984879,-0.00947555899620056,-1.15963505208492,-0.250731587409973,-0.883877962827682,0.122405141592026,0.733480557799339,0.000668663531541824,-1.42722949385643,0.857880428433418,-0.0279158391058445,-0.724990725517273,0.645498186349869,-0.163523640483618,-0.837678663432598,0.610428184270859,-0.0192349478602409,-0.639753371477127,0.631235688924789,0.217839807271957,-0.714297235012054,0.606724709272385,0.218199577182531,-0.788194075226784,0.498619824647903,0.335383258759975,-1.21077424287796,0.434503048658371,0.574754863977432,-1.35413587093353,0.332120031118393,-0.701145634055138,-0.65551770478487,0.0554982423782349,-0.348574616014957,-0.626843899488449,0.108081459999084,-0.305856555700302,-0.819723635911942,0.389957427978516,-0.680741392076015,-0.681289792060852,-0.215940952301025,-0.254692897200584,-0.981877267360687,-0.301165342330933,0.0969648361206055,-0.996201634407043,-0.307521402835846,0.00446648895740509,-1.25043386220932,-0.0144059658050537,-0.317300237715244,-1.03228399157524,-0.300880610942841,-1.26066425442696,-0.31252558529377,-0.108462750911713,-0.359794087707996,-1.01667851209641,0.118328154087067,-0.130401063710451,-0.363320618867874,0.134030103683472,-0.712735027074814,-0.693208903074265,0.411148130893707,-1.12217515707016,-0.229966007173061,0.166491568088531,-0.242042377591133,-0.269087687134743,0.100769519805908,-0.0249356031417847,-0.20678374171257,0.42602664232254,-0.580700010061264,-0.783620983362198,0.29514491558075,0.191806554794312,-1.12503057718277,0.286261320114136,0.18598335236311,-1.06536403298378,0.184738636016846,0.0971902809105814,-1.0837641954422,0.386663913726807,-0.216013811528683,-1.18722641468048,0.282788872718811,0.0394869595766068,-1.07675874233246, +0.196935176849365,0.218870207667351,-1.28898072242737,0.00193029642105103,0.224289774894714,-1.06246054172516,0.107405245304108,0.017353821080178,-1.23489212989807,0.111573040485382,0.0501781939528883,-1.22688108682632,-0.0700199604034424,0.0918472558259964,0.0994082093238831,0.210371851921082,-0.104765390977263,-0.174280643463135,0.441082060337067,0.0913872420787811,-0.420010358095169,0.400219619274139,0.0507009327411652,-0.722297675907612,0.204039335250854,0.362598819192499,-0.616779312491417,0.591549932956696,-0.135766692925245,-0.984824597835541,0.722402930259705,-0.469493796583265,-0.921722784638405,0.605838894844055,-0.535340715199709,-0.811921644955873,0.552903383970261,-0.189206102862954,-0.92776882275939,0.362987041473389,-0.158865392906591,-0.804672259837389,0.342929363250732,-0.153157711029053,-0.793451622128487,0.548156529664993,-0.194033382460475,-0.986717030405998,-0.454008137738128,0.226529628038406,-1.84478384256363,-1.11771890521049,-0.00465207546949387,-1.6460702419281,-1.07663878798485,0.0748495608568192,-1.62030977010727,-1.14704442024231,0.135617822408676,-1.5607618689537,-1.13093340396881,0.188261423259974,-1.60446971654892,-0.265436202287674,0.25481715425849,-1.76076924800873,-0.307622671127319,0.136973440647125,-1.71950018405914,-0.28661322593689,-0.165765523910522,-1.50846338272095,-0.289139449596405,-0.0144284814596176,-1.68091893196106,-1.06449216604233,0.16429740190506,-1.62029737234116,-0.93946036696434,-0.195855438709259,-1.51280826330185,-0.168468117713928,0.220657639205456,-1.75623780488968,0.0676005780696869,0.221289999783039,-1.86325097084045,-0.0438088178634644,0.413723709061742,-1.64981490373611,-0.219627469778061,0.333161994814873,-1.50773352384567,0.500883191823959,0.428133022040129,-1.72054809331894,0.0874418020248413,0.201159508898854,-1.88936537504196,-0.104937493801117,0.434357030317187,-1.73069816827774,0.140124291181564,0.530587268061936,-1.71039319038391,-0.269499510526657,0.310482388362288,-1.91517037153244,-0.530347302556038,0.282722512944019,-1.85887986421585,-0.0905241668224335, +0.223207470029593,-1.70004618167877,0.063707172870636,0.180934749543667,-1.77629834413528,-0.0909239947795868,-0.230772614479065,-1.654576420784,-0.288127761334181,0.252406626939774,-1.82939797639847,-0.052735298871994,0.232838809490204,-1.61703699827194,0.0571478605270386,-0.448117449879646,-1.50010633468628,0.205808341503143,0.0550332516431808,-1.73953950405121,0.220967292785645,0.166275478899479,-1.76006007194519,0.0477449297904968,0.390975039452314,-1.55329662561417,0.0494479537010193,0.17322900891304,-1.57371354103088,-0.0181276202201843,0.291402906179428,-1.56210047006607,0.01323002576828,0.525906722992659,-1.47996717691422,0.442232847213745,0.37661231867969,-1.18142274022102,0.146359294652939,-0.012157067656517,-1.61957740783691,-0.596102751791477,-0.231007367372513,-1.60335147380829,-0.652210488915443,0.107852101325989,-1.78869479894638,0.234708577394485,0.0607026889920235,-1.5190954208374,0.262033522129059,-0.358142033219337,-1.38127291202545,-0.00537121295928955,0.138566911220551,-1.31071496009827,-0.0582769513130188,0.0675136898644269,-1.31206732988358,-0.679475575685501,0.234143733978271,-1.17335957288742,-0.676183562725782,-0.153554499149323,-1.30300667881966,0.106845140457153,0.123424612451345,-1.06818357110023,0.0222182869911194,0.147744096815586,-0.948643147945404,-0.140829265117645,0.409215357154608,-0.247837863862514,-0.0127153396606445,0.131514966487885,-0.545257464051247,0.00775164365768433,0.143591076135635,-0.368070356547832,-0.0898277759552002,0.0905200950801373,-0.418094225227833,-0.155887126922607,0.384046860039234,-0.754146486520767,-0.0252849459648132,0.200729846954346,-0.702101469039917,-0.411120072007179,-0.262889742851257,-1.32877799868584,-0.705314218997955,0.0516978800296783,-1.25852936506271,0.0419220924377441,-0.242114245891571,-0.998775660991669,0.32399445772171,-0.610424071550369,-0.930039167404175,0.462609618902206,0.461068645119667,-1.6298394203186,0.255940847098827,0.465041346848011,-1.77761292457581,0.632156863808632,0.369754046201706,-1.51210629940033,0.704165622591972,0.12577336654067, +-1.4799485206604,-0.0647416114807129,0.107844009995461,-1.0303907096386,0.0376410484313965,0.00665517151355743,-1.17634838819504,0.0231376886367798,0.150520838797092,-0.52772182226181,-0.0115888118743896,0.123230401426554,-0.289502084255219,0.421325504779816,-0.43221440911293,-0.759446322917938,0.194569170475006,-0.0228681266307831,-0.737771019339561,0.221550822257996,-0.215182900428772,-0.744309440255165,0.326380729675293,-0.733021283522248,-0.98417916893959,-0.377445101737976,-0.181986272335052,-1.4828507900238,-0.486113905906677,0.0166554600000381,-1.51554173231125,0.0147702097892761,0.0138760507106781,-1.07909941673279,0.102820456027985,-0.28395876288414,-1.06152606010437,0.0150561332702637,-0.105585098266602,-1.11052399873734,-0.00397872924804688,-0.13348994590342,-1.13116753101349,0.0103103518486023,0.129484310746193,-1.53780144453049,-0.213049620389938,-0.0510594248771667,-1.59130167961121,0.382210373878479,-0.621823787689209,-0.872920542955399,0.154180228710175,-0.302593365311623,-0.976602524518967,0.339866876602173,-0.264115899801254,-1.10626715421677,0.510487020015717,-0.736781142652035,-0.924184381961823,0.520186543464661,0.274489196483046,-0.817852407693863,0.540424436330795,-0.0178348831832409,-1.22088515758514,0.224027454853058,0.219388946890831,-1.23713928461075,0.298263549804688,0.344210304319859,-1.23256596922874,-0.0634363889694214,-0.620739951729774,-0.922543346881866,-0.374611437320709,-0.366030670702457,-0.997961834073067,0.106493771076202,-0.245501197874546,0.0930648744106293,0.370196163654327,-0.703705534338951,-0.0575125813484192,-0.137447535991669,-0.0703853368759155,-0.722220674157143,-0.318381726741791,0.214258722960949,-0.924633994698524,0.0359195470809937,0.177406877279282,0.161966532468796,0.111692905426025,-0.568989440798759,0.169617921113968,0.103977918624878,-0.257176958024502,0.0838595926761627,0.0682847499847412,-0.0691134892404079,0.12217104434967,-0.0523295402526855,0.0488855466246605,-0.191036209464073,0.0351663827896118,-0.439706685487181,-0.257327750325203,0.366866767406464, +-0.449902355670929,0.103290528059006,0.0910968780517578,0.0147271752357483,0.251713916659355,0.0864912867546082,-0.210443735122681,0.159328484907746,0.387841522693634,-1.04322250187397,-0.322349332273006,-1.08312141895294,0.422586668282747,-1.20102614164352,-1.10356965661049,0.241086706519127,-1.23276489973068,-0.493199408054352,-0.909265495836735,0.507795587182045,-0.19731193780899,-0.326896509155631,0.544070176780224,0.476401537656784,-1.2058097422123,-0.0324674695730209,-0.122202157974243,-0.726261854171753,0.194405853748322,-0.853511467576027,-0.36427537270356,-1.61668556928635,-0.521425902843475,-0.624645039439201,-1.41182786226273,-0.245866000652313,-0.673794537782669,-1.23480641841888,-0.282564461231232,0.0582860633730888,-1.25619229674339,-0.250638604164124,-0.356486402451992,-1.43396711349487,-0.133592188358307,-0.2663344591856,-1.46021920442581,-0.761410094797611,-0.426963053643703,-1.62630927562714,-0.866676189005375,0.0856470391154289,-1.61124390363693,0.381631344556808,-0.517334334552288,-1.14434051513672,0.527702778577805,-0.152318477630615,-1.078982681036,-0.214929386973381,-1.25127476453781,-1.33237832784653,-0.469105780124664,-0.248903259634972,-1.60081297159195,0.200961798429489,-1.07428467273712,-0.960251972079277,0.762152016162872,-0.790796764194965,-0.778181903064251,-0.178391739726067,-0.368736907839775,-1.81416642665863,0.12020468711853,-0.0293937218375504,-1.93254292011261,-0.0846894085407257,-0.963947467505932,-1.07995803654194,0.356544315814972,-0.249869830906391,-1.15155106782913,-0.471363976597786,-1.35420006513596,-0.9652478992939,-0.448629140853882,-0.390840359032154,-1.22568047046661,-0.376381784677505,-1.05825978517532,0.226501762866974,0.27772444486618,-0.953276187181473,0.0737495124340057,-0.472710579633713,-0.994943477213383,-0.582672357559204,0.0172239542007446,-0.401337951421738,-0.567493855953217,-0.895330056548119,-0.40309813991189,1.51029872894287,-0.980291947722435,-0.554458558559418,1.4665607213974,-1.5454478263855,-0.55990469455719,1.12814402580261,-1.5892379283905,-0.391152862459421, +1.11267399787903,-1.88917517662048,-0.00648706406354904,0.388452935963869,-1.85883259773254,-0.159394964575768,0.436783999204636,-0.851359277963638,-1.02338251471519,1.38277241587639,-1.07232999801636,-0.532640337944031,1.45300197601318,-0.690925374627113,-1.41546297073364,1.05513277649879,-1.18937362730503,-0.313736081123352,0.972320899367332,-1.49995857477188,-0.583377160131931,0.821843005716801,-1.30910131335258,-0.304084751754999,1.32313668727875,-1.48129147291183,-0.0909471064805984,1.18151101469994,-0.853959232568741,-1.11013090610504,0.721328064799309,-0.930892370641232,-1.3547942340374,0.222435534000397,-0.545844286680222,-1.74158501625061,0.351296409964561,-0.951610714197159,-1.30235821008682,0.425487771630287,-1.85602921247482,-0.458981513977051,-0.504848018288612,-1.81369471549988,-0.631077468395233,-0.06206114590168,-1.71592944860458,-0.906637728214264,-0.0161633640527725,-1.4623014330864,-0.952802389860153,-0.318580336868763,-1.78614324331284,-0.511006966233253,-0.391287650913,-1.64717763662338,-0.620683878660202,-0.0417197048664093,-1.13010331988335,-1.04167272150517,0.447480604052544,-1.74264240264893,-0.532696090638638,0.185702353715897,-1.63085150718689,-0.504386804997921,0.0205581188201904,-0.744760751724243,-1.70357537269592,-0.0278804004192352,-1.27743226289749,-0.717862784862518,0.191107541322708,-1.06206524372101,-0.989286959171295,-0.190398156642914,-1.23233529925346,-0.955416187644005,-0.13196074962616,-1.25813439488411,-0.677021682262421,0.0568366646766663,-1.3654742538929,-1.28675165772438,-0.0870075188577175,-1.75141614675522,-0.659917101264,0.142200157046318,-1.64303416013718,-0.949483752250671,0.630430608987808,-0.932287633419037,-1.70001357793808,0.432819783687592,-1.67106920480728,-0.96702978014946,0.101887658238411,-1.78376793861389,-0.750919327139854,-0.0703714340925217,-1.85708826780319,-0.52555413544178,0.512821957468987,-1.75179898738861,-0.401551082730293,0.648750603199005,-1.75341892242432,-0.601584665477276,0.637222588062286,-1.40931317210197,-1.08453164994717,0.392961367964745, +-1.34733957052231,-1.08081252872944,0.291617624461651,-1.13474169373512,-1.41225218772888,0.192779205739498,-0.878051310777664,-1.73098349571228,0.342948369681835,-1.18596038222313,-1.41595283150673,0.381008334457874,-1.86426413059235,-0.558666743338108,0.298503488302231,-1.51823765039444,-0.826895393431187,0.297242760658264,-1.98488795757294,-0.0210322737693787,0.0499650910496712,-1.89763432741165,-0.530276238918304,-0.226696684956551,-1.03037869930267,-0.59287728369236,1.06929267942905,-1.06063417345285,-0.270408898591995,1.04112049937248,-0.638205826282501,-1.31259471178055,0.687829554080963,-0.926499560475349,-1.21300995349884,0.495304524898529,-0.943718507885933,-0.879640102386475,0.693118751049042,-0.863223999738693,-1.23036402463913,0.633564412593842,-1.04159760475159,-0.759744763374329,0.758570611476898,-1.49952191114426,-0.380917891860008,0.675932660698891,-1.31748721003532,-0.667100876569748,0.571535483002663,-1.18243199586868,-0.766466587781906,0.686324059963226,-1.00085233151913,-0.752799510955811,0.735671281814575,-1.06018090993166,-0.432585000991821,0.750644996762276,-1.58429032564163,-0.635883241891861,0.139007747173309,-1.53351134061813,-0.748148202896118,0.244270116090775,-1.05724003911018,-1.47772413492203,0.304423391819,-1.2332224547863,-1.30185294151306,0.178337514400482,-1.40510106086731,-0.975409179925919,0.203669100999832,-1.0514360666275,-1.38627135753632,0.199929505586624,-1.29026916623116,-0.267177425324917,0.400921761989594,-1.77864891290665,-0.438603099435568,-0.697722122073174,-1.2877149283886,-0.879167884588242,0.117925941944122,-1.36930450797081,-0.453225895762444,0.323707342147827,-0.893499493598938,-1.15298178792,0.710799798369408,-1.2900019288063,-0.738800823688507,0.733068183064461,-1.74011224508286,-0.6532923579216,-0.17549791932106,-1.48310613632202,-0.862524006515741,0.0711011439561844,-1.82559072971344,-0.769520193338394,0.000752195715904236,-1.44107580184937,-0.978308409452438,-0.194970101118088,-1.89396893978119,-0.408830046653748,0.191876962780952,-1.61219692230225,-0.862357258796692, +0.753236293792725,-1.62113213539124,-0.564137786626816,0.866755723953247,-1.75916051864624,-0.582179516553879,0.663698434829712,-1.29840937256813,-0.97822542488575,0.561706393957138,-1.51970273256302,-0.874302923679352,0.733191832900047,-1.31860905885696,-0.83112508058548,0.742040738463402,-1.71377682685852,-0.278888076543808,0.700498998165131,-1.73066824674606,-0.964147984981537,-0.0969871282577515,-1.46020311117172,-0.996108829975128,0.143066849559546,-1.83178973197937,-0.426006816327572,0.0215511545538902,-1.35459944605827,-1.06168521940708,-0.113118636887521,-1.82737982273102,-0.659979358315468,0.201379254460335,-1.98000228404999,0.143802164122462,0.21457352489233,-1.36491316556931,-0.768517062067986,-0.0247228890657425,-1.40649098157883,-0.905725300312042,0.608873136341572,-1.20605182647705,-0.802933037281036,0.790233246982098,-1.13511908054352,-1.24076288938522,0.585671983659267,-1.24472552537918,-1.13467478752136,0.548663504421711,-1.41199922561646,-0.513445898890495,0.705326221883297,-1.26331126689911,-0.462090224027634,0.779774911701679,-1.06214952468872,-0.84990069270134,0.814807407557964,-1.20178762078285,-0.838416188955307,0.778324536979198,-1.47303432226181,-0.514006674289703,0.661759681999683,-1.25527662038803,-0.934269174933434,0.200979053974152,-1.11606302857399,-1.2794209420681,0.24252387881279,-0.640323355793953,-1.77115559577942,0.411368541419506,-1.14503771066666,-1.33939158916473,0.344363681972027,-0.755591481924057,-1.67703872919083,0.391960196197033,-0.234375884232577,-1.80412703752518,0.447068743407726,-0.194881268384052,-1.69943159818649,-0.0412715375423431,-0.192005924880505,-1.70613634586334,0.0457171201705933,-0.404392806813121,-1.52264219522476,0.659222006797791,-0.547100581767154,-1.19036221504211,0.23501443862915,-0.370621975882386,-0.717644929885864,-0.112930178642273,-0.592798851430416,-0.823005229234695,-0.112784087657928,-0.122724734246731,-1.62428992986679,0.180711269378662,-0.0687365010380745,-1.39055752754211,0.385701775550842,-0.116589408391633,-1.16131886839867,-0.219797670841217, +-0.17666457593441,-1.35584181547165,-0.112828373908997,0.0193755724781113,-1.21633598208427,0.579300284385681,-0.234933672472835,-1.29419723153114,0.829838931560516,-0.0933448597788811,-1.17624199390411,0.477655351161957,-0.312937723472714,-1.46658021211624,0.395166754722595,-0.30516398139298,-1.2927413880825,0.804861046373844,-0.384849738329649,-0.825255393981934,0.146866738796234,-0.393230676651001,-0.847223624587059,0.143220245838165,-0.614399719983339,-1.32831957936287,0.306152611970901,-0.26857396797277,-1.10272684693336,0.564468204975128,-0.920190215110779,-0.86971116065979,-0.291613161563873,-0.519395589828491,-1.28520333766937,-0.0575651526451111,-0.485629081726074,-1.24189877510071,0.516371816396713,-0.328310687094927,-1.05325524508953,0.546986609697342,-0.386695224791765,-0.993607208132744,0.534125715494156,-1.13231262564659,-1.04350331425667,-0.137260779738426,-1.0004771463573,-1.11394952982664,0.163265988230705,-0.463788636960089,-1.85062557458878,0.0729230046272278,-0.362159757176414,-1.82723772525787,-0.152773082256317,-0.307359952479601,-1.86006772518158,-0.210607081651688,-0.379855879582465,-1.89566832780838,0.0480754822492599,-0.375485095195472,-1.89864063262939,0.086219847202301,-0.722654044628143,-1.4587100148201,-0.47538822889328,-0.751472502946854,-1.4927584528923,-0.405363857746124,-0.607874810695648,-1.8132227063179,-0.0425317287445068,-1.01889339089394,-1.25963166356087,0.0239564776420593,-1.43535846471786,-0.699727430939674,-0.389288663864136,-1.32187908887863,-0.861916273832321,-0.326683729887009,-1.10962924361229,-1.1350222080946,-0.190585523843765,-0.587684899568558,-1.76790511608124,0.0962185263633728,-0.484073892235756,-1.79313713312149,0.114237576723099,-0.43966880440712,-1.78147608041763,0.0516079962253571,-0.851617220789194,-1.21379317343235,0.45924886316061,-0.777992457151413,-1.33424833416939,0.298772543668747,-0.776343647390604,-1.39247491955757,0.468365870416164,-0.740006756037474,-1.2495428621769,0.55755527317524,-1.20947253704071,-0.654478326439857,-0.0605450868606567,-1.15805235505104, +-0.54863665997982,-0.16521555185318,-0.832186296582222,-1.29304194450378,-0.0553335249423981,-0.950881451368332,-1.03231889009476,0.222504585981369,-1.32189217209816,-0.812145739793777,-0.894412882626057,-0.973778545856476,-1.00564056634903,-0.452193260192871,-1.03124424815178,-1.17903816699982,-0.0222998857498169,-0.864741936326027,-0.926129221916199,0.0724740624427795,-0.864429667592049,-0.86581713706255,0.0767650604248047,-1.22821405529976,-0.812691085040569,-0.218740999698639,-0.887125369161367,-0.918667249381542,0.225832797586918,-0.44985431432724,-1.86183714866638,-0.510055303573608,-0.354679152369499,-1.80033093690872,-0.661525294184685,0.264612719416618,-1.86197292804718,-0.475547760725021,-0.0350046157836914,-1.93645352125168,-0.330878540873528,-1.02681395411491,-1.048284471035,-0.802069023251534,-0.743076205253601,-1.29944670200348,-0.889553643763065,-0.682023853063583,-1.75624537467957,-0.510017395019531,-1.20811030268669,-1.07537117600441,-0.302408367395401,-1.49387413263321,-0.291535228490829,-0.552198559045792,-1.24155253171921,-0.530676513910294,-0.59744967520237,-1.16207055747509,-0.859291308559477,-0.283162772655487,-0.79697048664093,-1.68245422840118,-0.258616968989372,-0.601822853088379,-1.77148908376694,-0.31625309586525,-0.559275224804878,-1.75693166255951,-0.32527169585228,-1.00524298846722,-1.32530882954597,0.388850154355168,-1.19002372026443,-1.19157475233078,0.366874925792217,-1.0726412832737,-1.08396196365356,-0.0186066031455994,-1.22799548506737,-1.11794903874397,-0.122551620006561,-1.15139299631119,-1.23150652647018,0.439961962401867,-0.864384885877371,-1.11817359924316,0.273695535957813,-1.17626905441284,-0.530707262456417,-0.415912121534348,-1.09286117553711,-0.563081435859203,-0.4252028465271,-1.00461935997009,-0.96320928633213,-0.107542991638184,-1.09132532775402,-0.88857201859355,-0.0775275230407715,-1.120336830616,-0.433145936578512,-0.481177926063538,-1.38102453947067,-0.618312552571297,-0.651536151766777,-1.20387966930866,-0.734976515173912,-0.254118904471397,-0.74822610616684,-1.59902209043503, +-0.63611226528883,-0.917395532131195,-1.42439728975296,-0.609659284353256,-1.07035453617573,-1.4066344499588,-0.442899455316365,-0.868665728718042,-1.56840002536774,-0.177421126514673,-0.887462627142668,-1.50465905666351,-0.0279987528920174,-1.07307456433773,-1.28735533356667,-0.365555986762047,-1.11090862751007,-0.893728286027908,-0.465363472700119,-0.0397175438010891,-1.32926258444786,0.791519865393639,-0.41941000521183,-1.31358194351196,0.888326080515981,-0.701276659965515,-0.898508459329605,0.107318878173828,-0.673782490193844,-1.11005675792694,0.191516220569611,-0.53720723092556,-1.251470297575,0.582803398370743,-0.590114429593086,-1.00522099435329,0.471776932477951,-0.783992767333984,-0.695052310824394,0.339039742946625,-0.810086041688919,-0.736258983612061,0.26465916633606,-0.594605326652527,-1.19415983557701,0.471272855997086,-0.67627215385437,-1.24424633383751,0.536215096712112,-0.477632105350494,-1.20831525325775,0.612148016691208,-0.460409015417099,-1.11254039406776,0.545432835817337,-0.184993952512741,-1.34990379214287,0.690535336732864,-0.782488390803337,-1.17292700707912,0.562862686812878,-0.995044603943825,-1.06168819963932,0.163606375455856,-0.879366099834442,-1.24472737312317,0.412400275468826,-0.800592705607414,-1.22947986423969,0.520336680114269,-0.689237210899591,-1.22485226392746,0.615918308496475,-1.09179949760437,-0.856329649686813,0.0826091766357422,-1.02455332875252,-0.792149037122726,-0.0316346287727356,-0.574461355805397,-1.0665325820446,0.327211201190948,-0.676351219415665,-1.33826804161072,0.360445350408554,-0.740519344806671,-0.747393816709518,0.127136945724487,-1.58240377902985,-0.566831558942795,-0.612812653183937,-1.23382277786732,-1.04238896071911,-0.396029232913861,-0.926291719079018,-0.977624341845512,0.0350078940391541,-1.05373068153858,-1.10784259438515,-0.321607753634453,-1.22870941460133,-1.05785296857357,-0.465992674231529,-0.768681741785258,-1.35034438967705,0.556347751989961,-0.53722882270813,-1.26500454545021,0.26512485742569,-0.793601989746094,-1.24385154247284,0.322352856397629, +-0.787471726536751,-1.02600176632404,0.184037983417511,-0.478963673114777,-1.26408904790878,0.333372354507446,-0.70016148686409,-1.02050566673279,-0.718514531850815,-1.47793310880661,-0.409449525177479,-1.18533053994179,-1.62180942296982,-0.796792715787888,-0.490153484046459,-1.25770607590675,-0.983967304229736,-0.439720198512077,-1.18814815580845,-0.939005769789219,-0.063877135515213,-1.50579035282135,-0.790312692523003,0.0394201576709747,-1.37364327907562,-0.878070257604122,0.0923251509666443,-1.0892716050148,-1.00885073840618,0.404826700687408,-1.17116960883141,-1.0561157092452,0.442082896828651,-0.900979727506638,-1.14019006490707,0.713964834809303,-1.0812274813652,-0.918132077902555,-0.691895246505737,-0.961542375385761,-0.912949360907078,-0.339091345667839,-1.15125063061714,-0.893315613269806,0.571142584085464,-1.20591099560261,-1.09345696866512,-0.206777527928352,-1.22847208380699,-0.813259050250053,-0.490063354372978,-1.11116054654121,-0.966053929179907,0.691002637147903,-0.909350789617747,-0.932469367980957,0.432995850220323,-1.46174842119217,-0.702360659837723,-0.085252970457077,-1.30843737721443,-0.63158804923296,-0.00721648335456848,-1.03963203728199,-0.754452228546143,0.200305938720703,-1.24084168672562,-1.09448412060738,-0.154189996421337,-1.43987521529198,-0.769126303493977,-0.460899069905281,-1.46285647153854,-0.637604832649231,-0.371455207467079,-1.18490648269653,-0.790815442800522,-0.248828620649874,-1.11660666763783,-0.747377932071686,0.00867092609405518,-1.07122565805912,-1.0711155757308,0.163090378046036,-1.0905984044075,-0.992386501282454,0.181972295045853,-0.88358919788152,-0.900385797023773,0.338240951299667,-0.873719562776387,-0.958199694752693,0.413782611489296,-1.15006786584854,-1.07472056895494,0.283574223518372,-0.391198858618736,-1.27051711082458,0.656626582145691,-0.202375297434628,-1.31196242570877,0.875545337796211,-0.953634031116962,-1.46073082089424,0.34811307489872,-1.31517493724823,-1.19887468218803,-0.142963945865631,-1.01236516237259,-1.60399687290192,-0.273047909140587,-1.03211691975594, +-1.38926088809967,0.112640261650085,-0.633986264467239,-1.43984496593475,0.486493140459061,-1.11441606283188,-1.02230304479599,0.322989493608475,-0.90489473938942,-1.39390003681183,-0.0311989188194275,-0.740920469164848,-1.29712155461311,0.296314775943756,-0.61351016163826,-1.62314432859421,0.354639798402786,-0.649395346641541,-1.31689158082008,0.56018140912056,-0.748848482966423,-1.64281940460205,-0.0974538624286652,-0.778938256204128,-1.36109262704849,-0.00581496953964233,-0.439560475293547,-1.84619051218033,0.113900348544121,-0.875815808773041,-1.54395121335983,0.159456968307495,-0.794289261102676,-1.57770824432373,-0.774581640958786,-0.779444190207869,-1.2159686088562,-0.720534756779671,-0.450665880925953,-1.85588788986206,0.113594755530357,-1.23089468479156,-1.12774243950844,-0.159943789243698,-1.0016992688179,-1.15467953681946,-1.28012180328369,-0.956293344497681,-0.896863721311092,-1.14873373508453,-0.542681470513344,-1.81654000282288,-0.341999061405659,-1.30138969421387,-0.997445374727249,-0.337774753570557,-1.20072257518768,-1.5119880437851,-0.460267901420593,-1.08075724542141,-1.36266753077507,-0.425272345542908,-0.556694239377975,-1.72906059026718,-0.487355813384056,-0.974354088306427,-1.27824255824089,-0.218909651041031,-0.572378680109978,-1.86311817169189,-0.367323659360409,-0.818884413689375,-1.45795226097107,-0.288963444530964,0.0838503522788869,-1.74076449871063,-0.121455281972885,-0.177360259302077,-1.84836250543594,-0.139423370361328,-0.165409622713923,-1.81476652622223,-0.609067257493734,0.09610247425735,-1.76697736978531,-0.183095097541809,-0.0750925466418266,-1.89633339643478,-0.109338358044624,-0.687955246306956,-1.72376525402069,-0.12889464572072,-0.560183585388586,-1.73145431280136,0.58500349521637,-0.156204342842102,-1.94650095701218,0.38752281665802,-0.347471177577972,-1.91049379110336,-0.0507314503192902,-0.589725956320763,-1.76433283090591,0.204981580376625,-0.705002471804619,-1.82182246446609,0.30112911015749,-0.307164274156094,-1.83242255449295,0.575662642717361,0.176013514399529,-1.9374583363533, +0.203479513525963,-0.156553357839584,-1.90928035974503,0.493107080459595,-0.209476612508297,-1.87417191267014,0.538257122039795,-0.276239927858114,-1.94831657409668,-0.134511053562164,-0.32076495885849,-1.8628306388855,0.456437185406685,-0.384620577096939,-1.87702763080597,0.04534050822258,-0.1628093495965,-1.9858735203743,0.0989267090335488,-0.136634305119514,-1.89003926515579,0.487113013863564,-0.13151865825057,-1.9095384478569,-0.1266248524189,-0.505670567043126,-1.85438501834869,-0.0103633925318718,-0.702739596366882,-1.83624881505966,0.0433178544044495,-0.250723950564861,-1.93479919433594,0.253809813410044,0.110781244933605,-1.95149922370911,0.306682169437408,-0.533962972462177,-1.79748547077179,0.270687773823738,-0.647045820951462,-1.83558851480484,-0.26012715883553,-0.18322644563159,-1.84076261520386,-0.570888854563236,-0.339974515140057,-1.94294011592865,-0.11363622918725,-0.194907627999783,-1.97863394021988,0.0915522091090679,0.00944800773868337,-1.98992401361465,-0.190293483436108,-0.128462307155132,-1.97802364826202,0.0650659836828709,-0.165099805686623,-1.96338188648224,0.179436923936009,-0.0548043623566628,-1.99333465099335,0.0575764738023281,-0.219255797564983,-1.97558510303497,0.0765773020684719,-0.165535515639931,-1.98367512226105,0.0256561692804098,0.0560283102095127,-1.92482841014862,0.423413127660751,-0.544241867959499,-1.77869564294815,0.100569188594818,-0.429946377873421,-1.78776425123215,-0.681295186281204,-0.0364293530583382,-1.94943517446518,-0.424009501934052,-0.148849913792219,-1.92492008209229,-0.409195251762867,-0.365573929157108,-1.81360536813736,-0.543720737099648,-0.225093530025333,-1.69819575548172,-0.805993139743805,0.0447436384856701,-1.91665470600128,-0.515677750110626,0.0848930962383747,-1.97155380249023,0.0112903565168381,0.0667486377060413,-1.98539900779724,-0.202664002776146,0.0858816616237164,-1.9275621175766,-0.385680295526981,0.0477862283587456,-1.94441014528275,-0.379368640482426,0.164767969399691,-1.94820499420166,0.141643323004246,0.0958041456178762,-1.92979747056961,0.285060487687588, +0.0256503522396088,-1.95774286985397,-0.397978916764259,-0.0507841296494007,-1.85119640827179,-0.624594174325466,-0.0856902077794075,-1.83351105451584,-0.594736743718386,-0.136731520295143,-1.69622099399567,-0.788607865571976,-0.194629788398743,-1.55635899305344,-0.85572062805295,0.134162116795778,-1.84564191102982,-0.61060106754303,0.105648837983608,-1.92704021930695,-0.379608883522451,-0.212973221205175,-1.55035960674286,-0.9252764955163,-0.633268989622593,-1.64785772562027,-0.413764253258705,-0.232928462326527,-1.97488224506378,-0.208503291010857,0.0926768332719803,-1.84526908397675,-0.398550972342491,0.0730715449899435,-1.84139251708984,-0.36570917069912,-0.227513827383518,-1.96925270557404,-0.25191530585289,-0.089194156229496,-1.80810737609863,-0.799206554889679,0.0841022431850433,-1.92306226491928,-0.463967405259609,0.0715946778655052,-1.85321342945099,-0.521056060213596,0.106164284981787,-1.90251219272614,-0.429921836592257,0.0401018895208836,-1.94684851169586,-0.306745946174487,-0.710797085426748,-1.64420127868652,-0.45109748840332,-0.595790583640337,-1.6376713514328,0.347865208983421,-0.214047819375992,-1.88381332159042,0.193556502461433,-0.109926341101527,-1.97541749477386,0.0572715103626251,-0.631836347281933,-1.63160717487335,0.675078198313713,-0.596420414745808,-1.77507132291794,0.0853815078735352,-0.0249181510880589,-1.98014408349991,0.0752858892083168,-0.129300507949665,-1.90801614522934,0.382712760008872,-0.140253589488566,-1.90772253274918,0.369713244959712,-0.106553390622139,-1.96649158000946,-0.00871315598487854,-0.0475050846580416,-1.96978664398193,-0.0970494076609612,-0.0979433301836252,-1.90915232896805,0.166358232498169,-0.292630597949028,-1.9709689617157,-0.0107731074094772,-0.127934990916401,-1.90230828523636,0.289494566619396,-0.201954089105129,-1.91939640045166,0.295635618269444,0.0269043906591833,-1.79559236764908,-0.617895229719579,-0.640638157725334,-0.810512077994645,-0.708678513765335,-0.714767068624496,-1.62827849388123,-0.678990289568901,0.0527494624257088,-1.99345725774765,-0.111299760639668, +-0.132528565824032,-1.75598293542862,-0.460375279188156,-0.295334935188293,-1.66440945863724,-0.68023394048214,-0.26881281286478,-1.69241374731064,-0.761854961514473,0.537473782896996,-1.85373014211655,-0.319894209504128,0.44613990932703,-1.7797018289566,-0.570087440311909,0.742128029465675,-1.76096832752228,-0.0755043663084507,-0.0942403830122203,-1.68722665309906,-0.795744940638542,-0.202818733640015,-1.53198838233948,-0.936270751059055,0.113360352814198,-1.79185420274734,-0.400510996580124,0.123144816607237,-1.77121645212173,-0.70232517272234,0.459767418913543,-1.854507625103,-0.362058453261852,0.234301876276731,-1.82571345567703,-0.363288067281246,-0.196249529719353,-1.72009384632111,-0.711292698979378,0.133276432752609,-1.77827334403992,-0.0858389064669609,0.116630539298058,-1.73250377178192,-0.720828883349895,-0.0799011886119843,-1.82525873184204,-0.482083544135094,-0.136716201901436,-1.72376781702042,-0.824698716402054,0.42311098985374,-1.88310623168945,-0.0565916299819946,0.399916406720877,-1.9268895983696,-0.191762246191502,0.257490944117308,-1.96809458732605,0.0921490117907524,0.409507809206843,-1.79955577850342,0.215338155627251,0.013725979370065,-1.95428228378296,-0.417447179555893,-0.0602630889043212,-1.90558588504791,-0.452873080968857,0.136390425264835,-1.98747932910919,-0.157448552548885,0.0895682964473963,-1.98828762769699,-0.174471996724606,0.12366230878979,-1.98399740457535,0.0854983925819397,0.066956675844267,-1.99371618032455,-0.126838549971581,-0.292855888605118,-1.84394359588623,-0.508713155984879,-0.157593637704849,-1.73875725269318,-0.233788639307022,-0.0742549132555723,-1.90937352180481,-0.574936747550964,-0.0961234290152788,-1.79119896888733,-0.775413438677788,-0.422962948679924,-1.78731381893158,-0.574609115719795,-0.527469508349895,-1.87605774402618,-0.193906769156456,-0.124350121710449,-1.99123650789261,-0.0511809578165412,-0.0665118005126715,-1.93476539850235,-0.42172783613205,0.0196490045636892,-1.92401969432831,-0.520210757851601,-0.0481994673609734,-1.9741525053978,0.110431578010321, +-0.00170093029737473,-1.97610527276993,-0.233903480693698,-0.00161627307534218,-1.84989231824875,-0.73977866768837,0.010050481185317,-1.97430771589279,-0.294545643031597,0.0335499159991741,-1.93970614671707,-0.370242604985833,0.113502707332373,-1.95047003030777,-0.33842384442687,0.0207738960161805,-1.97232586145401,-0.330744817852974,-0.399195309728384,-1.84895402193069,-0.382304653525352,-0.411362491548061,-1.7797287106514,0.45008285343647,-0.16490276530385,-1.91635513305664,0.0105029791593552,-0.133199444040656,-1.98693776130676,-0.152861829847097,-0.50738868303597,-1.79645246267319,0.270953219383955,-0.44889984279871,-1.81948655843735,-0.029864490032196,-0.112383186817169,-1.972012758255,-0.164947362616658,-0.0373523831367493,-1.91958290338516,0.362977966666222,-0.10263404995203,-1.93746024370193,0.239099843543954,0.0479686409235001,-0.700417369604111,-0.910456063225865,0.100774772465229,-0.824277073144913,-1.00203659199178,-0.476927615702152,-1.05795501172543,1.15114742517471,-1.05026703327894,-1.34284898638725,-0.128897357732058,-0.819509133696556,-1.74752885103226,0.228163983672857,-0.972168572247028,-1.48901063203812,0.292426981031895,-0.704414363950491,-1.73936718702316,-0.0768060591071844,-1.42402350902557,-1.2515752017498,0.310798585414886,-1.34708446264267,-1.21928691864014,0.104365512728691,-1.03553314507008,-1.276979804039,0.337908325716853,-1.3955220580101,-1.00207226723433,0.122417613863945,-1.24322372674942,-1.17470037937164,0.240178555250168,-0.843708395957947,-1.11744053661823,0.216849222779274,-0.799807025119662,-1.25631394982338,0.298980325460434,-0.669726682826877,-1.20338940620422,0.487222224473953,-0.788860976696014,-1.19368241727352,0.306807652115822,-0.913538582157344,-1.07531739026308,0.240576133131981,-0.714515017345548,-1.38080367445946,0.285550341010094,-0.820457294583321,-1.32214218378067,0.671135721728206,-0.665260447189212,-1.35788151621819,0.420799642801285,-0.750924753025174,-1.11392855644226,0.367158338427544,-0.519335649907589,-1.51625126600266,0.678502360358834,-0.766308575868607, +-1.24247261881828,0.670463383197784,-0.880473524332047,-1.35429456830025,0.559601068496704,-0.573579590301961,-1.24031122028828,0.677170246839523,-0.254595965147018,-1.52549111843109,0.631055489182472,-0.719851493835449,-1.24266329407692,0.688118100166321,-0.753101199865341,-1.30626773834229,0.448624938726425,-0.398491628468037,-1.23622864484787,0.635345548391342,-0.350405435543507,-1.22556282579899,0.805922299623489,0.0767451492138207,-0.68607097864151,-1.04756560921669,-0.109403554350138,-0.518056392669678,-1.16619983315468,-0.280282759573311,-1.18046878278255,0.709966912865639,-0.425645203329623,-1.90491795539856,-0.105236250907183,-0.359149843454361,-1.88291299343109,-0.199294369667768,-0.50112185953185,-1.85366761684418,-0.165090478956699,-0.538362802006304,-1.84087240695953,-0.143065523356199,-0.659052855800837,-1.73520803451538,-0.0800618007779121,-1.16057348251343,-1.52246505022049,-0.292056493461132,-1.15274003148079,-1.42839127779007,-0.231705039739609,-0.770435616374016,-1.55930238962173,-0.078245997428894,-0.835593201220036,-1.51980096101761,0.059803694486618,-1.14173313975334,-1.41361522674561,-0.167884409427643,-1.18492555618286,-1.49207031726837,0.195061877369881,-0.873676411807537,-1.52154779434204,0.220382660627365,-0.606361910700798,-1.66846561431885,-0.0125921666622162,-0.564778909087181,-1.66319769620895,0.0471876263618469,-0.675359003245831,-1.68457275629044,0.294928222894669,-0.353564645862207,-1.77520263195038,0.368151038885117,-0.283579265698791,-1.69071286916733,0.181759297847748,-0.436130113899708,-1.71034103631973,0.284093052148819,-0.333679482340813,-1.69426029920578,0.168343842029572,-0.196435993537307,-1.68055480718613,0.234883248806,-0.243538150098175,-1.71605157852173,0.396691754460335,-0.911702752113342,-1.75489789247513,0.0972063541412354,-0.605505168437958,-1.85591471195221,0.0230641067028046,-0.815020434558392,-1.67161583900452,0.0411397963762283,-1.16326093673706,-1.58337360620499,0.292300812900066,-1.16679298877716,-1.56494075059891,0.271677780896425,-0.754121266305447,-1.66149526834488, +0.331240171100944,-0.800811469554901,-1.65182453393936,0.460612237453461,-0.805299162864685,-1.65098029375076,0.453004628419876,-0.667658470571041,-1.70947337150574,0.391166710760444,-0.627774649765342,-1.69525802135468,0.325218617916107,-0.581413440406322,-1.72285002470016,0.523289501667023,-0.515085630118847,-1.74221581220627,0.368605077266693,-0.403721801936626,-1.75408172607422,0.647942334413528,-0.280278499936685,-1.74045222997665,0.458124428987503,-0.763040781021118,-1.6377517580986,0.63838093355298,-0.655251935124397,-1.69732755422592,0.425042286515236,-0.252092785201967,-1.75452637672424,0.447234064340591,-0.309307985007763,-1.79365557432175,0.564879590179771,-0.65228083729744,-1.69670289754868,0.427191153168678,-0.378867066463641,-1.81950044631958,0.346965059638023,-0.0199863091111183,-1.89001578092575,0.388408664613962,-0.080187096260488,-1.87711715698242,0.311795175075531,-0.0307004600763321,-1.89837604761124,0.368135128170252,-0.200773507356644,-1.90012681484222,0.417141252662987,0.00540662711665618,-1.91108846664429,0.189582630991936,-0.129324728157371,-1.94236409664154,0.274506479501724,-0.500911585986614,-1.83672642707825,0.290772721171379,-0.105728106573224,-1.97250580787659,0.258055873215199,-0.0404744669795036,-1.95916032791138,0.1915651448071,-0.429300109497355,-1.89186155796051,0.108210988342762,-0.605937860906124,-1.84154999256134,0.0257460549473763,-0.195793747901917,-1.97628378868103,0.205848038196564,0.0098816937816375,-1.99188756942749,0.174859516322613,-0.0932934675365686,-1.99097657203674,0.119460392743349,-0.189280912280083,-1.98274952173233,0.16507975012064,-0.0849461159668863,-1.98901563882828,0.0249173119664192,-0.000612138704127574,-1.97129315137863,-0.106995299458504,0.013793982565403,-1.97567182779312,-0.235560055822134,-0.165542075410485,-0.504774153232574,-0.784791998565197,-0.161826020397712,-0.582810908555984,-0.790643945336342,-0.51628375146538,-0.33912605047226,-0.602520704269409,-1.06402108073235,-0.34699159860611,-0.768655963242054,-1.25491237640381,-0.409948527812958,-0.877571940422058, +-0.939701601862907,-0.768164694309235,-0.682123623788357,-0.0321540609002113,-0.805316656827927,-0.933766052126884,-0.706281915307045,-0.464253604412079,-1.23277819156647,-0.872406899929047,-0.552699908614159,-1.38003996014595,-0.268713980913162,-1.05767612159252,-1.36541196703911,-0.60499007999897,-0.93656162917614,-0.99946453422308,-0.620953142642975,-0.679484143853188,-1.22812530398369,-0.260783202946186,-0.637522548437119,-1.2882339656353,-0.314428334939294,-0.725824177265167,-0.988919451832771,-0.8935861364007,-0.937959294766188,-0.53844927251339,-1.09484468400478,-0.728334963321686,-0.302830003201962,-0.992146497475915,-1.06286229193211,-0.167281866073608,-0.622594004031271,-1.76321917772293,-0.0475490093231201,-0.999235096387565,-1.01597082801163,-0.244407810270786,-0.7910325974226,-0.909293353557587,-0.200305759906769,-0.951512806117535,-0.79837691783905,-0.223717242479324,-0.880447955802083,-0.857164621353149,-0.615441225469112,-0.80880568921566,-0.802527382969856,-0.158583283424377,-0.600888967514038,-0.813183158636093,0.257683515548706,-1.14611169695854,-0.552294701337814,0.50159165263176,-0.9778917953372,-1.28499236702919,-0.069793313741684,-0.558555535972118,-1.81407999992371,0.0973458737134933,-1.0680333673954,-0.869257479906082,0.479728251695633,-1.41635638475418,-0.705454409122467,0.339284956455231,-1.17751508951187,-0.882091447710991,-0.0242438614368439,-0.866632191464305,-0.829721763730049,-0.617368459701538,-0.868499668315053,-0.844178050756454,-0.631449960172176,-1.11939667910337,-0.970752045512199,0.267267353832722,-1.21982842683792,-0.765313386917114,0.315930169075727,-0.640534490346909,-0.530971820000559,0.701663114130497,-0.734585806727409,-0.256768718361855,1.03074385225773,-0.894236706197262,-0.935731336474419,0.31419899314642,-0.837061032652855,-0.951510444283485,0.26005595177412,0.144051574170589,-0.245118767023087,-0.115720868110657,-0.0411382168531418,-0.161996722221375,-0.0669472217559814,-0.276443347334862,-0.765567317605019,-0.57093757390976,-0.0892425701022148,-0.955493696033955,-0.594876736402512, +-0.0823182687163353,-0.722600847482681,-0.577578395605087,-0.861538276076317,-0.97903061658144,-0.0783508121967316,-0.999778929166496,-0.954920273274183,-0.236203640699387,-0.604658224619925,-0.930090073496103,-0.953419372439384,-0.758197709918022,-1.32320174574852,0.272613044828176,-0.883753262460232,-1.07701839506626,0.3608901463449,-0.816215910948813,-0.553763210773468,-0.552737310528755,-0.997359704226255,-0.792834490537643,-0.361868351697922,0.590547740459442,-0.414133757352829,-0.78797122836113,-0.027884304523468,-0.228313624858856,-0.161988258361816,-0.557966828346252,-0.754317998886108,-0.362314283847809,-0.0362189114093781,-1.24985924363136,-0.760162442922592,-0.0133898258209229,-0.442077159881592,-0.256018340587616,-0.614886850118637,-0.472678210586309,1.00337213277817,-0.722005411982536,-0.821940332651138,0.781667530536652,-0.652833938598633,-0.851177327334881,-0.230546325445175,-0.513396143913269,-1.34989133477211,0.724861681461334,-0.688272520899773,-0.974808484315872,0.851515769958496,-0.953282069414854,-0.63525727391243,0.115134999155998,-0.929473642259836,-0.802266404032707,0.319112740457058,-0.167330712080002,-1.00272104889154,-0.74126335978508,-0.588009238243103,-0.866854354739189,-0.346300423145294,-0.895261470228434,-1.29823759198189,-0.452930994331837,-0.223782598972321,-1.85055005550385,-0.423859298229218,-0.258136034011841,-0.711140185594559,0.157788813114166,-0.0211496949195862,-0.791470855474472,-0.100584726780653,-0.285646319389343,-0.875003382563591,0.176483295857906,-0.427283585071564,-1.28912559151649,-0.240270525217056,0.430766016244888,-1.27180632948875,0.211214404553175,-0.0930300951004028,-0.956474632024765,0.443382114171982,-0.494372457265854,-0.655240505933762,0.193745240569115,-0.305397272109985,-0.735686108004302,0.136478699743748,-0.154227435588837,-1.0154365003109,-0.577941574156284,-0.529074102640152,-0.922717742621899,-0.0854608193039894,-0.733887821435928,-1.39816576242447,-0.248619951307774,-0.0434963405132294,-1.80870336294174,-0.287284187972546,-0.585798442363739,-1.30304542183876, +0.206698708236217,-0.239921391010284,-0.356910973787308,-0.249455519020557,-0.601899087429047,-0.728845685720444,-0.355538427829742,-0.824756916612387,-0.955344099551439,-0.560618780553341,-1.10066682845354,-0.307821348309517,0.826699648052454,-0.416352286934853,-0.212704136967659,-0.0521751046180725,-1.10500635206699,-1.2617821097374,0.520496420562267,-1.12963999807835,-0.925599731504917,0.447628047317266,-1.10800394415855,-0.00390160083770752,0.822474427521229,-0.392028152942657,-0.246405035257339,0.585602752864361,0.014494001865387,-0.363943815231323,-0.494356781244278,-0.443233162164688,-0.38212713599205,-0.323230803012848,-0.702866718173027,-0.553333044052124,-0.282432556152344,-0.0725224912166595,-0.629970818758011,-0.586213499307632,-0.336379822343588,-0.736419826745987,-0.974384568631649,-0.637243419885635,-0.767125397920609,-0.846318192780018,-0.309183672070503,-0.566611409187317,-0.443510919809341,-0.396719411015511,-0.499706894159317,-0.380486309528351,-0.274915715679526,-0.877379775047302,-0.934891052544117,0.066229373216629,-0.701099187135696,-0.951622752472758,0.0643206536769867,-0.477043487131596,-0.233639061450958,-0.854833245277405,-0.657868407666683,0.924803659319878,-0.911543056368828,-0.897989843040705,0.626370668411255,-0.743532583117485,-1.00084422901273,-0.160807549953461,-0.565134644508362,-1.18938559293747,1.14264032244682,-1.06018168479204,-0.573103003203869,1.18121242523193,-1.08343233168125,-0.584100991487503,0.646102279424667,-0.916841015219688,-0.816351905465126,0.580515339970589,-0.712297007441521,-0.435764968395233,-0.0545950531959534,-1.0152537971735,-0.484524756669998,0.209133595228195,-0.988071784377098,-0.83008123934269,-0.554222969338298,-0.955035518854856,-0.888153687119484,-0.538628682494164,-0.766716167330742,-0.853739440441132,-0.102564632892609,-0.868252977728844,-0.821274966001511,-0.0186851024627686,-0.69630379602313,-0.787929624319077,-0.875693872570992,-0.701329920440912,-0.803364217281342,-0.858939856290817,0.184181928634644,-0.486341029405594,-0.570210069417953,-0.221224367618561, +-0.525745786726475,-0.0593670010566711,-0.650802791118622,-1.2472707927227,-0.00528690218925476,-0.549788117408752,-0.911935543641448,0.127119798213243,-0.209494113922119,-0.866088032722473,-0.0279685854911804,-0.144716411828995,-1.45510840415955,0.829602815210819,-0.788753613829613,-1.27813473343849,0.355527706444263,-0.617546081542969,-0.559325456619263,0.480999678373337,-0.701535701751709,-0.772186279296875,0.382228314876556,-0.728045091032982,-0.604545325040817,-0.0472893118858337,-0.9905562736094,-0.847769066691399,-0.440080851316452,-0.962236270308495,-0.921850807964802,-0.378142274916172,-0.464772582054138,-0.782085925340652,-0.378716465085745,-0.641094267368317,-0.846180215477943,-0.175404876470566,-0.958952710032463,-1.06834682077169,-0.389020510017872,-0.70031926035881,-0.823124036192894,-0.698808640241623,-0.415598094463348,-0.387395367026329,0.214847385883331,-0.0191260576248169,-0.557579081505537,-0.444146692752838,-0.350357860326767,-0.822190225124359,-0.650429613888264,-0.520811572670937,-1.0190199688077,1.06116217374802,0.0484538674354553,-0.549339672550559,0.745753109455109,-0.0806752443313599,-0.378640681505203,0.72091269493103,-0.487603664398193,-0.539899498224258,0.0903533287346363,-0.433365911245346,-0.485165417194366,-0.0449123084545135,-0.507501214742661,-0.871649220120162,-0.187970943748951,-0.552297174930573,-0.902737041004002,-0.0578521825373173,-0.859042555093765,-0.992439717054367,-0.226817820221186,-0.793766617774963,-0.948447065427899,-0.363346245139837,-0.802345588803291,-0.90319502283819,0.323331505060196,-0.504520446062088,-0.888100121170282,-0.217146046459675,-0.700698435306549,-0.538037329912186,-0.48336797952652,0.509649597574025,-0.701904475688934,-0.787017619237304,0.576934829354286,-0.338325127959251,-0.0592483878135681,0.386054486036301,-0.36025782302022,0.0337961316108704,0.384546466171741,-0.513397216796875,-0.189346492290497,-0.242349229753017,-0.599723726511002,-0.446375757455826,-0.37267655134201,-0.121006965637207,-0.0124907493591309,0.0771581828594208,-0.371480166912079, +-0.18418425321579,-0.0794988721609116,-0.530151873826981,-0.510967493057251,0.30353531986475,-0.423970401287079,-0.202922761440277,0.364770032465458,-0.451341778039932,-0.180299460887909,-0.143239989876747,-0.640144884586334,-0.528594076633453,-0.342145032715052,-0.72000515460968,-0.878366207703948,-0.685445547103882,-0.634889930486679,-0.499970465898514,-0.430593095719814,-0.474237948656082,-0.31451079249382,-0.459895305335522,-0.583926245570183,-0.282673239707947,-0.753820985555649,-0.539144665002823,-0.409614771604538,-0.494475193321705,-0.446624338626862,-0.587002113461494,0.258763194084167,-0.274296253919601,-0.471602737903595,0.548213012516499,-0.399638682603836,-0.371125280857086,0.255204178392887,-0.616860091686249,-0.722922787070274,-0.211969241499901,-0.719954714179039,-0.776715844869614,-0.0032336413860321,-0.421653717756271,-0.274381697177887,0.0948298797011375,-0.145672768354416,-0.0955554842948914,-0.173639096319675,-0.515799582004547,-0.434842377901077,-0.335416123270988,-0.836760833859444,-0.615244492888451,-0.275475695729256,-0.566602021455765,-0.568862780928612,-0.506313644349575,-0.661362200975418,-0.340171486139297,-0.631369300186634,-0.750505849719048,-0.654972031712532,-0.572405924089253,-0.670822143554688,-0.792448624968529,-0.327526077628136,-0.533747851848602,-0.619608610868454,-0.326742216944695,-0.385461568832397,-0.409449622035027,-0.504859854467213,-0.552666306495667,-0.780825302004814,-0.632978667505085,-0.884268097579479,-0.8636454641819,-0.130228817462921,-0.202064394950867,-0.578088313341141,0.819546729326248,-0.442355662584305,-0.853850722312927,0.390384204685688,-0.625273168087006,-0.971601169556379,-0.380911082029343,-0.717342674732208,-0.978676676750183,-0.0277779102325439,-0.521649241447449,-0.555127561092377,-0.136352777481079,-0.664414219558239,-0.329995453357697,-0.358608707785606,-0.448385059833527,-0.529874414205551,0.318854667246342,-0.472769320011139,-0.90833793208003,0.0438010841608047,-0.484385758638382,-0.883743327111006,-0.646993800997734,-0.851146645843983,-0.366836458444595, +-0.879959930665791,-0.876707144081593,-0.548352777957916,-0.89508572453633,-0.616544306278229,-0.364971041679382,-0.513951033353806,-0.421908020973206,-0.532100081443787,-0.629726022481918,-0.813975781202316,-0.427973251789808,-0.915508838836104,-0.604234755039215,-0.187379371374846,-0.706749819219112,-0.334828972816467,-0.586372911930084,-0.151982307434082,-0.198323130607605,-0.0375571548938751,0.492017760872841,-0.204436242580414,-1.44422733783722,0.116692990064621,-0.408703148365021,-1.41305083036423,-0.628655478358269,-0.830914899706841,-0.60463185608387,-0.130508601665497,-0.340102106332779,-1.04417937994003,0.4041488468647,-0.0763235092163086,-1.08104893565178,-0.245554953813553,-0.391482204198837,-0.949059903621674,-0.524601429700851,-0.714755870401859,-1.00953179597855,-0.395773500204086,-0.354401648044586,-1.03428000211716,-0.472198992967606,-0.747631296515465,-0.872021436691284,-0.757094286382198,-0.774230167269707,-0.907490164041519,-0.892768561840057,-0.672883987426758,-0.686058476567268,-0.736776813864708,-0.7043437063694,-0.249000012874603,-0.562321156263351,-0.393083781003952,-0.68349514901638,-0.81063312292099,-0.51044824719429,-0.852341264486313,-0.786488693207502,-0.918966239318252,-0.890895783901215,-0.652178645133972,-0.604555860161781,0.272463411092758,-0.221965089440346,-0.44904625415802,-0.152294933795929,-0.339335913769901,-0.738790169358253,-0.683120429515839,-0.856700018048286,-0.847643107175827,-0.428485445678234,-0.742512658238411,-0.452003493905067,0.256032705307007,-0.197977602481842,-0.684986308217049,-0.222781121730804,-0.534658595919609,-0.649240016937256,-0.662699833512306,-0.369526769034564,-0.638072818517685,-0.63925576210022,-0.622782106511295,-0.730050623416901,-0.51936662197113,-0.673680230975151,-0.846045732498169,-0.528805181384087,-0.842217545956373,-0.807600319385529,-0.779779762029648,-0.963201433420181,-1.0325640887022,-0.305791452527046,-0.937858715653419,-0.872403144836426,-0.281006298959255,-0.956986422650516,-0.926005758345127,-0.0802290439605713,-0.985802620649338, +-0.721775382757187,0.12829977273941,-0.888729330152273,-0.66478157043457,-0.340559005737305,-0.302145898342133,-0.514003545045853,-0.377394042909145,-0.0549384355545044,-0.899184715002775,-0.691756024956703,-0.588723314926028,-0.896153897047043,-0.812288453802466,-0.882915295660496,-0.930705055594444,-0.423874348402023,-0.422665894031525,-0.754498414695263,-0.229142352938652,-0.345273077487946,-0.487356603145599,-0.200153321027756,-0.817553356289864,-0.743827641010284,-0.449223689734936,-0.906790805980563,-1.22364424169064,-0.318269183859229,-0.865563465282321,-0.698424756526947,-0.373128971084952,-0.944466069340706,-0.939898025244474,-0.280706577003002,-0.957904692739248,-0.91018720716238,-0.315090835094452,-0.915662279818207,-0.993642772082239,-0.417623056098819,-0.886512137949467,-0.823749393224716,-0.376695603132248,-0.886189950630069,-0.639962881803513,-0.2360366191715,-0.919992795679718,-0.679154843091965,-0.232245711609721,-0.852530486881733,-1.17885722219944,-0.495072115212679,-0.343433856964111,-0.502553656697273,-0.22197393886745,0.723101198673248,-0.488439112901688,-0.905322978273034,0.18970163911581,-0.60519215464592,-1.03087828308344,-0.78478842228651,-1.29010039567947,-0.0629507154226303,-0.233073532581329,-1.16864487528801,0.512947967275977,0.0364955067634583,-1.63133496046066,0.450751699507236,-0.635100521147251,-1.33716052770615,0.592553377151489,0.233462922275066,-0.989293342921883,-1.10246590524912,0.220160447061062,-0.797038167715073,-1.08541647344828,-0.511524774134159,-1.28473165631294,-0.836622416973114,-0.570714123547077,-0.864291235804558,-0.846863020211458,-0.47767273709178,-1.27067080140114,-0.928326450288296,-0.429212383925915,-0.844298504292965,-1.13611575961113,0.141335651278496,-1.05194901302457,-1.11209873110056,0.138599086552858,-0.829010471701622,-1.1056317910552,-0.759996093809605,-1.40292552113533,-0.567797720432281,-0.389151334762573,-0.577465251088142,0.136380344629288,0.50494310259819,-1.07884839177132,-1.28072366118431,-0.0465318560600281,-0.777259349822998,-1.38420239090919, +-0.536429934203625,-1.75634294748306,-0.0198544710874557,-0.335550606250763,-0.729638621211052,-0.501284442842007,0.479443401098251,-1.20054212212563,-1.12124463915825,-0.188305102288723,-0.949761318974197,-1.25802454352379,-0.216141596436501,-1.79582846164703,-0.613619327545166,-0.720426186919212,-1.23280695080757,-0.724120855331421,-0.104747004806995,-1.6397043466568,-0.988957494497299,-0.376070030033588,-1.21831256151199,-1.14663556218147,-0.337606094777584,-1.74552243947983,-0.733245939016342,-0.756054155528545,-1.29523503780365,-0.33052309602499,-0.274545654654503,-1.7686350941658,-0.613585889339447,-0.822384051978588,-1.26400020718575,-0.561461225152016,0.162437045481056,-1.33902618288994,0.912757054902613,0.331048093736172,-1.1198194026947,1.51913034915924,0.895881831645966,-0.909873843193054,1.34661906957626,0.655561380088329,-1.22281447052956,1.05957227945328,0.914127051830292,-0.836303368210793,0.224446121603251,1.11865943670273,-0.517466090619564,0.752023670822382,0.730128526687622,-1.35186058282852,1.13799214363098,0.182557098567486,-1.19550597667694,1.38430643081665,0.199174515902996,-1.2525178194046,1.35742592811584,0.293713502585888,-1.39591297507286,0.986158646643162,0.549173781182617,-1.16798496246338,0.802428022958338,0.331966355443001,-1.17049635946751,1.23781690001488,0.437134206295013,-1.47851419448853,0.875088751316071,0.418582253158092,-1.06357863545418,1.32085013389587,-0.00515203177928925,-1.75810635089874,0.914202302694321,0.14026839658618,-1.8193187713623,0.646054036915302,0.470206409692764,-1.80018705129623,0.527938429266214,0.430174194276333,-1.85663783550262,-0.205045826733112,0.777239836752415,-1.41983529925346,0.126136146485806,1.36061364412308,-1.05292432010174,0.386737987399101,1.13762918114662,-1.14290973544121,0.310707777738571,0.822289288043976,-1.42179927229881,0.23294835537672,0.836415462195873,-1.04697653278708,0.316899701952934,0.705261223018169,-1.11807700991631,0.510761067271233,0.808942854404449,-1.16529084742069,0.605878055095673,0.822742592543364,-1.05953696370125,0.609337665140629, +0.404262918047607,-1.84203386306763,0.231268845498562,0.247255302965641,-1.87359297275543,0.212940044701099,0.190077863633633,-1.87732946872711,0.27145354449749,0.32273634057492,-1.85773468017578,0.271615169942379,0.331062144832686,-1.86745893955231,0.288325980305672,0.873227715492249,-1.73654973506927,-0.169048085808754,1.24834606051445,-1.36603724956512,0.302344942465425,0.866671808063984,-1.11718585342169,0.269320927560329,0.92181367892772,-1.38331246376038,-0.160954963415861,1.2744764983654,-1.33508059382439,0.276339972391725,1.31724226474762,-0.834283776581287,0.40234238281846,0.821190811693668,-1.305305570364,0.140271060168743,0.761457331478596,-1.54096215963364,0.0639271214604378,0.870567090809345,-1.10759177803993,0.261858813464642,0.373511053621769,-1.86407005786896,0.0203338041901588,0.358745790319517,-1.93080419301987,-0.0380757637321949,0.250939742662013,-1.9659276008606,-0.00859390944242477,0.384803635068238,-1.89559185504913,-0.0910954028367996,0.303116418421268,-1.9216468334198,0.00571959465742111,0.981858865357935,-0.990077951923013,0.130773887038231,0.997094828635454,-1.09833196550608,-0.0392749160528183,1.39304903149605,-1.2587134540081,-0.160048856865615,1.46183300018311,-0.773031927645206,-0.397372588515282,0.159525483846664,-1.65681624412537,0.314220756292343,0.332701250910759,-1.40344214439392,0.8301793448627,0.538887530565262,-1.02254182100296,0.418450534343719,0.522065870463848,-1.26443839073181,0.600675344467163,0.0893131019547582,-1.39898493885994,0.689004629850388,0.435714200139046,-1.46165215969086,0.405134350061417,0.611922338604927,-1.15305235981941,0.456537753343582,0.195091617293656,-1.25379082560539,0.728819936513901,0.441457856446505,-1.33685654401779,0.66178996860981,0.355267215520144,-1.26330867409706,0.599586933851242,0.164370596408844,-1.29676833748817,0.903477858752012,0.225875779986382,-1.22196912765503,0.580203801393509,0.406051743775606,-1.79867434501648,0.0916776955127716,0.58911681547761,-1.59802681207657,0.479866938665509,1.10503381490707,-1.23268347978592,0.86597241461277, +0.911159247159958,-1.36146777868271,1.03713738918304,0.537323500961065,-1.53866565227509,0.863916367292404,0.390520043671131,-1.78949844837189,0.530145362019539,1.14736512303352,-1.19142851233482,0.294202864170074,0.882540702819824,-1.21072885394096,0.845132887829095,0.655235812067986,-1.58067786693573,0.521365057677031,0.420998629182577,-1.49217873811722,0.995276182889938,0.361272629350424,-1.27564635872841,1.1437700688839,0.458803370594978,-1.30393946170807,0.82466096803546,0.414632949978113,-1.88581240177155,-0.134190326556563,0.806880764663219,-1.31460565328598,0.351760685443878,1.01963091641665,-1.00915454514325,-0.0740511640906334,0.86015709862113,-1.14004091918468,-0.134143680334091,0.830057315528393,-1.25026497244835,0.101970501244068,0.281949408352375,-1.84764230251312,0.397240767255425,1.25129967927933,-1.34873315691948,0.235835745930672,1.24352717399597,-0.966793484985828,0.519011445343494,0.766672886675224,-1.37051516771317,0.320019736886024,0.575538270175457,-1.3639834523201,0.501056924462318,1.33619022369385,-0.681554451584816,0.352823682129383,1.23654443025589,-0.859223926439881,0.800720110535622,0.395061351358891,-1.92831581830978,0.0317003726959229,0.84145913249813,-1.52257603406906,-0.139770928770304,0.991931773489341,-1.096524477005,-0.105511963367462,0.891562886536121,-1.46770018339157,-0.138115033507347,0.810928769409657,-1.52939802408218,0.0369072500616312,1.0107287298888,-0.816184774041176,-0.180255010724068,0.917568258941174,-0.961733506992459,-0.0744253396987915,0.392100043362007,-1.61217737197876,0.476493015885353,0.730600191280246,-1.30694359540939,0.375190958380699,0.338882916141301,-1.30633559823036,0.734239980578423,1.10220974683762,-1.18414136767387,0.439665824174881,0.925279915332794,-1.23235577344894,0.735728323459625,0.180513020604849,-1.3593578338623,0.806444257497787,0.373613812029362,-1.29594841599464,0.635310441255569,0.983543008565903,-1.25225514173508,0.693051397800446,0.766755551099777,-1.24651774764061,0.756956830620766,0.218614421784878,-1.81605243682861,0.316822662949562, +0.26338804885745,-1.8488741517067,0.335942894220352,0.198585193604231,-1.86320376396179,0.343662112951279,0.173870258033276,-1.82179492712021,0.332581952214241,0.250610499642789,-1.81692487001419,0.453043628484011,0.289769850671291,-1.81062471866608,0.223596006631851,0.221936758607626,-1.80295449495316,0.435426980257034,0.235184251330793,-1.8216278553009,0.453012157231569,0.375924086663872,-1.37778544425964,0.610613718628883,1.09780490398407,-1.17619135975838,0.780740598216653,0.936767011880875,-1.24550360441208,0.343905359506607,0.621744304895401,-1.30081138014793,0.381590455770493,0.232597097754478,-1.4935536980629,0.728645607829094,0.730821818113327,-1.45920413732529,0.231770485639572,0.643038690090179,-1.51970040798187,0.377336472272873,0.303725831210613,-1.25940868258476,0.66660812497139,0.288339540362358,-1.19725981354713,0.542287617921829,0.493968784809113,-1.09298564493656,0.515094727277756,0.370930470526218,-1.25873783230782,0.649167209863663,0.337520575616509,-1.51496607065201,0.546873047947884,0.338532472029328,-1.15201936662197,0.543979048728943,0.336471416056156,-1.67568284273148,0.564213737845421,0.981198519468307,-1.15331028401852,0.0862292051315308,0.299768233671784,-1.10309615731239,0.566598892211914,0.573794786119834,-1.40295532345772,0.565733999013901,0.81290265917778,-1.177354991436,1.07617029547691,0.783113032579422,-0.885344542562962,1.33228367567062,0.355967670679092,-1.12178073823452,1.11279052495956,1.02009796351194,-1.11974647641182,0.295328321866691,1.39919096231461,-0.938432738184929,0.633473888039589,1.00485306978226,-1.69667613506317,0.241036215797067,0.484371282160282,-1.89288192987442,0.0751884132623672,0.335126936435699,-1.92857110500336,0.355185493826866,0.431309849023819,-1.88687402009964,0.394148707389832,0.482723481953144,-1.89172166585922,0.0833336114883423,0.424576554680243,-1.85344809293747,0.130286365747452,0.234747774899006,-1.919946372509,0.37874972820282,0.42233657091856,-1.89404821395874,0.281023803167045,0.927083641290665,-1.31864169239998,0.551529914140701,0.918720729649067, +-1.12653444707394,0.394742548465729,0.843141263816506,-1.34665480256081,0.362400203943253,1.38524267077446,-1.12062178552151,0.154936950653791,0.81098797917366,-1.72755026817322,0.33767381310463,0.224650595802814,-1.86585921049118,0.278319180011749,0.212549865245819,-1.85661536455154,0.349575474858284,1.085339397192,-1.29829686880112,0.604962140321732,1.32292768359184,-1.06344345211983,0.706966012716293,0.741419543046504,-1.11683218181133,0.507614105939865,0.759398929774761,-1.2552133500576,0.689954909496009,0.744587129447609,-1.39391028881073,0.494777470827103,0.733806745149195,-1.16619323194027,0.47721840441227,0.310125261545181,-1.84926670789719,0.27887798845768,0.886230636853725,-1.43603420257568,-0.213163197040558,0.80772300157696,-1.09579650312662,0.403147593140602,0.778747319243848,-1.43285432457924,0.397516906261444,1.29177820682526,-1.2209906578064,0.373468115925789,1.29432582855225,-0.879582413006574,0.650307014584541,0.801756545901299,-1.06562159955502,0.644413258880377,1.03659785538912,-0.919624343514442,0.357498407363892,1.42453497648239,-0.907065041363239,0.403047367930412,0.725469946861267,-1.84766209125519,-0.164079654961824,0.0298348963260651,-1.95440942049026,-0.325091108679771,0.291724696755409,-1.93976789712906,-0.0896043963730335,0.192141771316528,-1.95691645145416,-0.138600412756205,0.363290160894394,-1.89182102680206,-0.0709044737741351,0.221743895672262,-1.96826511621475,-0.160042680799961,0.344060891948175,-1.93196094036102,0.0612204372882843,1.05861712247133,-1.06273663789034,0.284703642129898,0.96297113597393,-0.959962695837021,0.296502392739058,0.919241988740396,-1.29150727391243,0.362425282597542,0.977640683297068,-1.00884671509266,0.313638314604759,0.944296181201935,-1.41759580373764,-0.470771700143814,0.743862748146057,-1.64441150426865,-0.39172588288784,0.525470048189163,-1.88021802902222,-0.0192666798830032,1.01883178949356,-1.13932839035988,0.0394126772880554,1.40355989336967,-0.921080246567726,-0.23506698012352,1.39644432067871,-1.15798449516296,0.246510431170464,0.982183523476124, +-1.29433858394623,0.381705075502396,1.0539822280407,-1.03680791705847,0.232736960053444,1.0744614303112,-1.09326604753733,0.171952947974205,0.976991541683674,-1.26453492045403,0.418017745018005,0.900046581868082,-1.0798644721508,0.527318328619003,0.907235974562354,-1.03948380053043,0.342614367604256,1.12291121482849,-0.967532560229301,-0.0612344145774841,1.0780157148838,-0.92348163202405,0.181074127554893,0.974002594244666,-0.869671374559402,0.116966634988785,1.04514168947935,-1.02577206492424,-0.272475369274616,0.924053549766541,-0.575293179601431,1.00364428758621,1.12435847520828,-0.62629453279078,0.88272824883461,0.911982953548431,-0.610783994197845,0.857292011380196,1.03884774446487,-0.422331392765045,0.904718674719334,0.860754331573844,-0.608228027820587,1.12008260190487,0.933138847351074,-0.547230359166861,1.11640383303165,1.21893203258514,0.0905089601874352,1.04347217828035,0.287846311926842,-0.489619567990303,1.79687881469727,0.0235127210617065,-0.468263305723667,-0.0848913788795471,-0.123939275741577,-0.415274024009705,-0.00999653339385986,-0.213355645537376,-0.280253142118454,0.0173998475074768,-0.014975517988205,-0.0488753020763397,-0.000348865985870361,0.117156624794006,-0.255795355886221,-0.0489969849586487,-0.0637410283088684,-0.236472941935062,0.00829225778579712,0.00919836759567261,-0.249665975570679,-0.065366268157959,0.194655656814575,-0.201445773243904,-0.108773648738861,0.849412977695465,-0.414097622036934,1.67233085632324,0.957055300474167,-0.363623035140336,1.64251190423965,0.861210763454437,-0.175672046840191,1.74839019775391,1.51060736179352,-0.242154747247696,1.27751874923706,1.3488410115242,-0.13940804451704,1.43108147382736,1.32888525724411,-0.173144612461329,1.41328132152557,1.21347880363464,-0.391003038734198,1.51072365045547,1.38183748722076,-0.2762780636549,1.40004926919937,1.06345611810684,-0.59001450240612,1.57549035549164,1.06966969370842,-0.300901219248772,1.61989170312881,0.965128600597382,-0.355311535298824,1.6302849650383,1.03635910153389,-0.324687466025352,1.6700474023819,0.734101682901382, +-0.256532184779644,1.78185719251633,1.42760229110718,-0.0344244837760925,0.889155304379528,1.45342081785202,-0.212558722123504,0.967261962592602,1.3881214261055,-0.23560294508934,1.37787747383118,1.49971556663513,-0.380342200398445,0.75932639092207,1.47624498605728,-0.203791618347168,1.05153036117554,1.26463544368744,-0.237572602927685,1.42565321922302,1.20815458893776,-0.548486933112144,1.4125669002533,1.13333880901337,-0.24199428409338,1.56066733598709,1.45954942703247,-0.104647353291512,1.23379856348038,1.30176639556885,-0.232620548456907,1.4919006228447,1.31496366858482,-0.22676320374012,0.390395790338516,1.5050128698349,-0.152299825102091,0.197685122489929,1.63130164146423,0.0883968062698841,0.34269180893898,1.35159319639206,0.0488086193799973,0.84838243573904,1.53225094079971,-0.139240182936192,1.13443395495415,1.22300148010254,0.0807280167937279,1.40728554129601,1.38755792379379,0.124538317322731,1.2803381383419,1.54381144046783,-0.198553994297981,1.23248970508575,1.42946839332581,-0.135434176772833,1.34438329935074,0.960555255413055,-0.253634333610535,1.71470737457275,1.25733536481857,0.138609737157822,0.420577645301819,1.09597390890121,0.141305256634951,0.403471112251282,1.34056180715561,0.00398420915007591,1.18364790081978,1.16795212030411,0.229973882436752,0.548146694898605,1.3453776538372,-0.0799303203821182,1.10263235867023,1.38277173042297,0.0411798898130655,1.29340004920959,1.3005194067955,-0.068895261734724,1.30338537693024,1.72353374958038,-0.11815532669425,0.926802009344101,1.66069960594177,0.164000853896141,1.06862768530846,1.62775439023972,0.114798280410469,1.13152542710304,1.78917372226715,-0.164739482104778,0.62272191606462,1.75022435188293,-0.1429951088503,0.632745241746306,1.70882761478424,0.173081789165735,0.707946414127946,1.6880264878273,0.034509614109993,0.790921770036221,1.73023599386215,0.0522556602954865,0.868979930877686,1.27898865938187,-0.103673946112394,1.36709636449814,1.30522504448891,-0.0223152562975883,1.3347609937191,1.28841891884804,0.14288866892457,1.3728378713131,1.30528244376183, +0.0397601574659348,1.35139071941376,1.30296388268471,-0.0138936638832092,1.33008721470833,0.603138670325279,-0.206550188362598,1.84013324975967,0.588985204696655,-0.380967784672976,1.84741950035095,0.927376598119736,-0.89985778927803,1.05512601137161,1.62006640434265,-0.611731484532356,0.913511544466019,1.62105691432953,-0.219845533370972,0.782629162073135,1.61139893531799,-0.154482126235962,0.895865947008133,1.21507260203362,-0.602803707122803,1.36945027112961,1.4161411523819,0.0315583050251007,1.26475155353546,1.36655133962631,-0.361881226301193,0.866272658109665,1.41093289852142,-0.431224806234241,1.24877297878265,1.17104163765907,-0.790278792381287,1.2343710064888,0.824949324131012,-0.468810521066189,1.73455172777176,0.946445643901825,-0.527377337217331,1.22362592816353,1.25264719128609,-0.164154946804047,1.21534740924835,0.784858882427216,-0.94499746710062,1.19554129242897,1.09521695971489,-0.337707817554474,1.29418525099754,1.15900659561157,-0.379762411117554,0.255058228969574,1.15963181853294,-0.285224054008722,0.350017666816711,0.797906458377838,-0.949488200247288,1.15459387004375,1.71484041213989,-0.462895102798939,0.827466577291489,1.4604469537735,-0.551370524801314,-0.172843873500824,1.66674780845642,-0.0787818373646587,-0.0901596546173096,1.27125626802444,-0.936897458508611,0.503673955798149,1.7318559885025,-0.380196558078751,0.821877956390381,1.37093478441238,-0.780425951816142,0.211503148078918,1.74213939905167,-0.439036412164569,0.36803837120533,1.30803781747818,-0.922413291409612,0.493073381483555,1.21605524420738,-0.553883157670498,1.25149819254875,0.750524699687958,-0.835550762712955,0.823387682437897,1.19854748249054,-0.391498491168022,0.969192858785391,0.442737848497927,-1.05652948468924,0.847846992313862,0.341289577175758,-0.837172791361809,1.21465638279915,0.26777717191726,-0.773292660713196,1.30810844898224,0.325954689644277,-0.991847673431039,1.22159898281097,0.443804475478828,-1.0578384026885,0.909998526796699,1.04103779792786,-0.999291874468327,0.657277941703796,0.929567828774452,-0.777718260884285, +0.690612256526947,0.725798591971397,-0.763326928019524,0.578015580773354,1.05998794734478,-1.00605318695307,0.649137571454048,0.905953019857407,-0.728702530264854,0.867926001548767,0.400158673524857,-0.687272489070892,0.763185150921345,1.15253192186356,-0.891891937702894,0.885432928800583,0.935419350862503,-0.964727975428104,0.821236401796341,1.13596780598164,-1.090501755476,0.229387775063515,1.02950644493103,-0.916884835809469,0.904489606618881,1.20098528265953,-0.88474902138114,0.826365202665329,0.974638290703297,-1.09842494130135,0.340292363427579,1.10726647078991,-0.950673427432775,0.725612491369247,1.02500866353512,-0.905276924371719,0.8392593562603,0.930395712144673,-1.04540298506618,0.267966151237488,1.10136917233467,-1.06441810727119,0.54981803894043,1.1439174413681,-1.09353098273277,0.59210079908371,0.706956893205643,-0.753684788942337,0.630789831280708,1.15672981739044,-0.720644518733025,0.573020815849304,0.927565880119801,-1.05108113586903,0.908726394176483,1.11083169281483,-0.628059789538383,-0.203562319278717,1.17537122964859,-0.755855858325958,0.201140413060784,1.16021999716759,-1.05717727541924,0.428895279765129,0.836885126307607,-1.12802590429783,0.387828633189201,1.03894776105881,-1.09175737947226,0.594624251127243,1.02975960075855,-0.989734592847526,0.609731152653694,0.847562292590737,-1.01246473845094,0.47532631829381,1.01968710124493,-1.07461155205965,0.720813989639282,1.06149424612522,-0.988957322202623,0.595519885420799,0.774821951985359,-0.94836200773716,0.862712889909744,1.01281788945198,-1.09789881110191,0.578101869672537,0.964708566665649,-1.02989108115435,0.892072558403015,0.919421315193176,-1.07433327287436,0.216820448637009,0.923581123352051,-0.933619175106287,0.273370817303658,0.856404647231102,-0.834004953503609,0.355085432529449,0.879837832879275,-1.10711267590523,0.317111000418663,0.708880468853749,-0.901963010430336,0.599360220134258,0.742485990747809,-0.836115509271622,0.525577187538147,0.831922188401222,-1.11463066190481,0.408103093504906,0.814557820558548,-1.10034480690956,0.620468258857727, +0.87284903600812,-1.08127348124981,0.421754730865359,0.791047498583794,-0.943451867438853,0.67885422706604,0.939085181802511,-0.9928783189971,0.368861749768257,0.783658020198345,-1.03375456482172,0.812842160463333,0.992489784955978,-0.856515706749633,-0.0573326647281647,0.879695290699601,-0.974511390551925,0.214777261018753,0.996080815792084,-0.952621899545193,-0.0814519226551056,0.870287014171481,-1.10052756220102,0.411802601069212,0.80246726423502,-1.07021240890026,0.320407681167126,0.775061443448067,-0.735788613557816,0.350264601409435,0.911853959783912,-0.726732313632965,0.214782789349556,0.88091678917408,-1.04342337697744,0.37216136418283,0.83969683945179,-0.723503291606903,0.205329298973083,0.897927109152079,-0.653295040130615,0.126276966650039,1.07850597053766,-0.926607433706522,0.0683853104710579,0.898541467264295,-1.03228863328695,0.537773177027702,1.07410901039839,-1.01647530123591,0.0269191712141037,1.15870994329453,-0.905348421729286,-0.139153271913528,0.974819343537092,-0.922496430575848,-0.0248711185995489,0.950985612347722,-0.994942547476967,0.144230239093304,0.943990639410913,-0.968860967084765,0.296312068589032,0.994092226028442,-0.924200896173716,0.0188226252794266,1.04749861732125,-0.92144899815321,-0.0247021201066673,1.01942753233016,-1.005575241521,-0.187360782176256,0.94924932718277,-0.78414723277092,0.0524574890732765,1.0102556720376,-0.773394823074341,0.106521487236023,1.05297103524208,-1.06153383105993,0.155584078282118,0.99362600594759,-0.775381624698639,0.110124528408051,0.932819344336167,-0.784252345561981,0.26290808711201,0.973455086350441,-1.13013498485088,-0.154665283858776,1.00411440152675,-1.0786514505744,-0.0494484156370163,0.931535594863817,-1.3505574464798,-0.207257091067731,1.03750549256802,-1.21633885800838,-0.141300342977047,0.996120138093829,-1.14580261707306,-0.114075891673565,0.965626599267125,-1.22557751834393,-0.175980351865292,1.14071686565876,-1.14938205480576,0.160929620265961,1.10596884787083,-1.08072153478861,0.0534033849835396,0.957411650568247,-0.930455014109612,-0.665305227041245, +0.99286924302578,-1.23046331107616,-0.105252228677273,1.20390394330025,-1.10447895526886,-0.619295313023031,1.09412670135498,0.1480294438079,-0.937722105532885,1.08072187006474,-0.620209485292435,-0.621971234679222,0.761943534016609,-1.17416018247604,-0.501334942877293,0.898501262068748,-0.616777807474136,-0.626467630267143,0.546926140785217,-0.694428190588951,-0.342252425849438,0.534310221672058,-1.19151264429092,-0.372918047010899,0.288272202014923,-1.01109464466572,0.258402656763792,1.07894466072321,-0.793413013219833,-0.553605601191521,1.19899122416973,-0.667335703969002,-0.681409552693367,0.763557732105255,-1.09712278842926,-0.297148168087006,0.934983532875776,-0.904496029019356,-0.49561496078968,0.538750320672989,-1.01381962001324,-0.161933071911335,0.631490707397461,-1.18376153707504,-0.254103794693947,0.754992321133614,-1.08483165502548,-0.311859905719757,0.433854401111603,-1.10729749500751,0.372268259525299,0.891996201127768,-0.658652305603027,-0.361171364784241,0.665435165166855,-1.09305122494698,-0.0395717918872833,0.617352589964867,-0.755828201770782,0.0962543487548828,0.473257422447205,-0.682511478662491,0.5835981965065,0.637686431407928,-1.02460025250912,0.0541111975908279,0.752409547567368,-1.15350040793419,0.400135561823845,0.612408429384232,-0.834750088863075,0.481032069772482,0.997107168775983,-0.978960309177637,-0.195984411984682,1.0530934035778,-0.924289500340819,-0.348123028874397,0.95932500064373,-1.02743203938007,0.00231757760047913,0.970050178468227,-1.00937066040933,-0.0579331517219543,0.864430814981461,-1.02365421503782,0.233932293951511,0.911796912550926,-1.0915269702673,0.152430556714535,0.933228351175785,-1.02325929701328,-0.0230425894260406,0.824233964085579,-0.958802255801857,0.33673208579421,1.01124809682369,-0.619830310344696,-0.151305876672268,1.05946686863899,-0.470029056072235,-0.574421225115657,1.09046378731728,-0.999903611838818,-0.019613903015852,1.01351099461317,-0.652961373329163,-0.0583781879395247,0.958124495577067,-0.698778212070465,-0.0685788737609982,1.06903890520334,-1.00875404383987, +-0.037697795778513,0.982850031927228,-0.98953615874052,-0.136195573955774,0.928739227354527,-1.00528157874942,0.245288111269474,0.964153751730919,-0.992458573542535,-0.130943112075329,1.03602227568626,-0.930998973548412,-0.379720486700535,1.00860557425767,-1.04217653721571,0.00269708782434464,0.966742355376482,-1.01458268519491,0.0491949338465929,0.921523563563824,-1.00514379795641,0.0200172439217567,0.990271446295083,-1.00160035397857,-0.115987833589315,0.94321171939373,-1.00405561178923,-0.178921572864056,-0.94822533428669,-1.52582323551178,0.218428716063499,-0.877841342240572,-1.53856045007706,-0.313428103923798,-0.865872986614704,-1.4309056699276,-0.270023591816425,-0.896386873908341,-1.46892607212067,0.0293390695005655,-0.965475298464298,-1.41843977570534,-0.340906947851181,-0.906023761257529,-1.31621274352074,-0.502581939101219,-1.09433533251286,-1.33645468950272,-0.0864401608705521,-1.0015022456646,-1.46222466230392,0.0596545138396323,-0.971955224871635,-0.368365570902824,-0.904865562915802,-0.627784550189972,-0.263531848788261,0.869466654956341,-0.192883253097534,-0.784768000245094,-0.0996266596484929,-0.23385488986969,-1.36012768745422,-0.0299153262749314,-0.130534470081329,-0.690414980053902,-0.024736724793911,-0.311539709568024,-0.887965351343155,-0.17375848069787,0.0468752384185791,-0.940580099821091,0.0791756808757782,0.0725891590118408,-0.895767539739609,0.247783889994025,0.0808067321777344,-0.840355813503265,0.213203981518745,0.155022919178009,-0.719922564923763,0.197989955544472,-0.00913655757904053,-0.732146561145782,0.265795275568962,0.128122866153717,-0.729985892772675,0.27254755795002,0.019402027130127,-0.871117353439331,0.441912088543177,-0.153968930244446,-0.74898824095726,0.588450372219086,-0.00206345319747925,-0.669508174061775,0.285857602953911,0.0143896341323853,-0.473256252706051,0.19675225019455,-0.258017182350159,-0.4674082249403,0.48056498169899,-0.302821457386017,-0.402526699006557,0.575615905225277,-0.234735488891602,-0.713369995355606,0.424600496888161,-0.219617962837219,-0.217092595994473, +0.548634551465511,-0.486050367355347,-0.626203894615173,0.492113903164864,-0.550925999879837,-0.636676460504532,0.675299450755119,-0.475134551525116,-0.810461789369583,0.562095001339912,-0.387192845344543,-0.378292635083199,0.563375428318977,-0.603166729211807,-0.872328370809555,0.680870205163956,-0.635059833526611,-0.738412767648697,0.77985006570816,-0.626636177301407,-0.519857287406921,0.709494799375534,-0.639574259519577,-0.879282683134079,0.709501326084137,-0.547238528728485,-0.645444646477699,0.810704275965691,-0.902133151888847,0.142303884029388,-1.08015038073063,-1.01952922344208,0.0653656423091888,-1.14409705996513,-0.682371616363525,-0.339323997497559,0.723034217953682,-0.506403237581253,-0.885198460891843,-0.381910860538483,-0.549569427967072,-0.831898376345634,-0.281067211180925,-0.474488437175751,-0.820031102746725,-0.246036171913147,-0.307786762714386,-0.672041997313499,-0.164272777736187,-0.449926674365997,-0.716494798660278,-0.223998606204987,-0.29023277759552,-0.546244516968727,-0.0287222042679787,-0.291834652423859,-0.608107443898916,0.142960578203201,-0.297622740268707,-0.602202408015728,0.303740479052067,-0.215671241283417,-0.756741300225258,0.236748903989792,-0.314302086830139,-0.763662815093994,0.264997199177742,-0.299935460090637,-0.497104287147522,0.296194027177989,-0.229232132434845,-0.655077159404755,0.274278059601784,-0.506928443908691,-0.63899340480566,0.394871342927217,-0.452068448066711,-0.581197038292885,0.284264624118805,-0.425125002861023,-0.539084315299988,0.429351697675884,-0.682209223508835,-0.694133214652538,0.623108901083469,-0.626397967338562,-0.673295594751835,0.679248586297035,-0.600946396589279,-0.667257137596607,0.815148115158081,-0.772751227021217,-0.763684317935258,0.660621661692858,-0.707462280988693,-0.698539204895496,0.830792427062988,-0.735616192221642,-0.668032050132751,0.781755298376083,-0.576653033494949,-0.910126433242112,-0.0398854650557041,-0.506030738353729,-1.01296117901802,-0.267220243811607,-0.245323538780212,-0.936673238873482,-0.0215231329202652,-0.287521123886108, +-0.956392973661423,-0.0496437773108482,-0.293515861034393,-0.827199250459671,0.191876957193017,-0.289187610149384,-0.890402346849442,0.167344152927399,-0.30649322271347,-0.86298830807209,0.205993764102459,-0.325567305088043,-0.738848365843296,0.324087311048061,-0.4038125872612,-0.855670243501663,0.360242718830705,-0.356932103633881,-0.834730714559555,0.205697506666183,-0.42142254114151,-0.650161318480968,0.179025173187256,-0.534808963537216,-0.625794649124146,0.186572939157486,-0.564625442028046,-0.628014743328094,0.205398410558701,-0.676149904727936,-0.635938659310341,0.327130556106567,-0.663269370794296,-0.744546480476856,0.289170950651169,-0.721234232187271,-0.812717160210013,0.259301036596298,-0.694362670183182,-0.961858227849007,0.38715523481369,-0.654529199004173,-1.04216237366199,0.156624466180801,-0.682753354310989,-0.953887298703194,0.181439846754074,-0.873338311910629,-0.953839797526598,0.212987706065178,-0.820867046713829,-1.04237522184849,0.077944815158844,-0.829563803970814,-0.899062359705567,0.0744642019271851,-0.854210287332535,-0.963063079863787,0.188507333397865,-0.870545111596584,-0.992612041532993,0.411489121615887,-0.868120990693569,-1.04822924733162,0.336895678192377,-0.772362641990185,-1.2630929350853,-0.167651757597923,-0.870044939219952,-1.09588006138802,0.193633262068033,-0.67874513566494,-1.16332979500294,-0.444114819169044,-0.653289817273617,-1.23855325579643,-0.431752666831017,-0.784805923700333,-1.28156858682632,-0.306271854788065,-0.589279428124428,-0.942810691893101,-0.600192472338676,-0.786955893039703,-1.09780243784189,-0.547040544450283,-0.780945979058743,-1.18348003923893,-0.679249435663223,-0.804342910647392,0.201000280678272,-1.70084768533707,-0.997315138578415,0.0724038630723953,-1.44076612591743,-0.715825691819191,-0.042640894651413,-1.41737127304077,-0.343753576278687,-0.829532377421856,-1.38228666782379,-0.61540013551712,-0.676144696772099,-0.0299476981163025,-0.593165939673781,-0.919789973646402,-0.537979453802109,-0.645018458366394,-0.39920630119741,0.331149458885193,-0.594678103923798, +-0.234829559922218,0.401564359664917,-0.610281392931938,-0.514330586418509,0.256912589073181,-0.657845020294189,-0.271403390914202,0.520430713891983,-0.700594410300255,-0.681485049426556,0.233713001012802,-0.675560310482979,0.375862285494804,-1.4495997428894,-1.11787562072277,0.200661990791559,-1.10966457426548,-1.19731622934341,-0.887471154332161,-1.02027925848961,-0.981103762984276,-0.774565234780312,0.261601120233536,-0.956842578016222,-0.936470514163375,-0.0549813210964203,-1.09005478024483,-0.480968043208122,0.45737561583519,-1.15675580501556,-0.197678819298744,0.486119657754898,-1.13871835172176,-0.476102940738201,0.415987581014633,-1.20794466137886,-0.270452743396163,0.603469461202621,-1.204446002841,-0.784740712493658,0.481132134795189,-0.031291127204895,-0.237404124811292,-0.0905992276966572,-1.89332461357117,-0.479809291660786,0.298818066716194,-1.15143467485905,-1.14651480317116,-0.00637629628181458,-0.699606627225876,-1.0397672727704,0.292611494660378,-1.87866026163101,-0.43340365588665,-0.459529861807823,0.0412471890449524,-0.641991019248962,-0.287508472800255,-0.801710069179535,-1.14648601412773,-0.00629977881908417,-1.00530326366425,-1.00742612406611,-0.557336658239365,-1.75039708614349,-0.626048803329468,-0.480509482324123,-0.107284426689148,-0.95334666967392,-0.353642962872982,0.213781237602234,-0.516896054148674,-0.741904959082603,0.214916944503784,-0.40542371198535,-0.658912912011147,-1.407595038414,-0.673136197030544,-0.786060301586986,-1.48876196146011,-0.706726342439651,-0.567265905439854,-0.908975549042225,-1.01262116804719,-0.603577198460698,-0.724286660552025,-0.917133495211601,-0.57998607866466,1.25144293904305,0.576259195804596,0.718263939023018,0.363243162631989,-0.0671583712100983,-0.0226592421531677,1.14019925892353,0.64166733622551,-0.71885073184967,0.893426939845085,0.592887133359909,-0.276815176010132,1.59522259235382,0.342729933559895,-0.229739189147949,-0.404077678918839,-0.114102229475975,-1.35081419348717,-0.49203360080719,0.316820204257965,-1.24768269062042,0.25893446803093,-0.989785686135292, +-1.31457787752151,0.0443081259727478,-0.544210404157639,-1.33236181735992,-0.143218338489532,0.198351174592972,-1.28386896848679,-0.682209894061089,-0.425511911162175,-1.67380183935165,-0.503768846392632,-0.235071465373039,-1.74179488420486,-0.108527362346649,-0.535537675023079,-1.56887990236282,-0.123270452022552,-0.257535189390182,-1.61566752195358,-0.00497177243232727,-0.448853313922882,-1.53370690345764,0.0385787785053253,-0.511959984898567,-1.6048036813736,-0.170205764472485,-0.529170155525208,-1.68782019615173,-0.280951387248933,-0.67754171602428,-1.70212286710739,0.105184704065323,-0.0101376175880432,-1.36131304502487,0.0752409398555756,-0.0852542519569397,-1.46190649271011,0.208667770028114,-0.833349019289017,-1.54560339450836,0.766888989781364,-0.962119929492474,-1.16514247655869,0.546568632125854,-0.909795559942722,-1.32778030633926,0.365222776763403,-0.209681749343872,-1.1919332742691,0.121177189052105,-0.595416158437729,-1.47338259220123,0.15997950732708,-0.798599440604448,-1.5122794508934,0.75181495025754,-0.962957963347435,-1.12837880849838,0.321717543415616,-0.864605777431279,-1.45644116401672,0.408952154219151,-0.532782673835754,-1.344373524189,0.263381034135818,-0.432040840387344,-1.35529083013535,0.0508868545293808,-0.445479094982147,-1.46221899986267,-1.45227003097534,0.723425894975662,0.746835296973586,-1.84532606601715,0.421141415834427,-0.044289231300354,-1.03270083293319,-0.581435285508633,-0.750716969370842,-1.13329201936722,0.285813771188259,-0.534927487373352,-1.0895127505064,0.344778598286211,-0.512023746967316,-1.66517472267151,0.373864464461803,-0.90278622508049,-0.888846158981323,-0.115849040448666,0.0311911702156067,-1.21076026558876,1.05411314964294,-0.642862349748611,-1.56758952140808,0.0588790774345398,-0.788839165121317,-1.50347191095352,0.259934321045876,-0.379451423883438,-1.52456337213516,0.625925779342651,-0.372996479272842,-0.773510031402111,-0.110444935562555,-0.482091307640076,-0.915034212172031,0.0140971690416336,-0.504656463861465,-1.14907425642014,0.173659775406122,-0.435636341571808, +-1.11391872167587,0.45937292277813,-0.542100042104721,-1.22893753647804,0.354001544415951,-0.547025859355927,-0.682771563529968,0.459944576025009,-0.0529820919036865,-0.589803740382195,0.487037315964699,-0.180650889873505,-0.542226848192513,0.21022966876626,-0.18542468547821,-0.756023913621902,0.8131502866745,0.258547723293304,-1.08908677101135,0.637085944414139,-0.0479893088340759,-1.33803275227547,-0.0435188747942448,-0.611830294132233,-1.68796944618225,-0.494603030383587,-0.542273543775082,-1.49214798212051,-0.44408643245697,-0.504002898931503,-1.28665387630463,0.26600170135498,-0.582684718072414,-1.17308682203293,0.283020883798599,-0.767066836357117,-1.14630520343781,0.1007414534688,-0.593821406364441,-1.78837269544601,-0.071305189281702,-0.387679055333138,-1.15674492716789,0.479737557470798,-0.685572952032089,-1.3126956820488,0.80001100897789,-0.558557599782944,-1.25510877370834,0.706039726734161,-0.573089927434921,-1.15886178612709,0.616209417581558,-0.565499246120453,0.701195031404495,0.294073577970266,-0.206799149513245,1.78088003396988,-0.150466203689575,-0.507287500426173,1.58131158351898,0.19353398680687,-0.17568701505661,0.214657247066498,0.675421386957169,-0.195025604218245,0.973209209972993,-1.08030294626951,0.0266985148191452,0.712409719824791,-0.895649269223213,-0.248321205377579,0.472452610731125,-0.774934619665146,-0.122793525457382,0.0125998854637146,0.343876972794533,-0.0368145555257797,0.213820278644562,0.592939823865891,0.219484388828278,1.06985890865326,-0.305218577384949,-0.132091097533703,0.608765191398561,-1.75389897823334,0.135980993509293,0.81955361366272,-1.72304463386536,0.112436681985855,0.821520805358887,-1.78040707111359,0.289358017966151,1.77721494436264,-0.150137256830931,-0.685238316655159,1.79716128110886,-0.119714304804802,-0.68211854994297,1.70044130086899,0.51400063931942,-0.399403725285083,0.0857157707214355,-0.0327799916267395,-0.66402442753315,1.20763257145882,-1.03742998838425,-0.884495824575424,0.872195921838284,-1.28340443968773,-0.523295737802982,0.833149538375437,-1.27109894156456, +-0.59184630215168,0.701210118830204,-1.25009390711784,-0.695407412946224,0.758091986179352,-1.26933646202087,-0.502768725156784,0.594674944877625,-1.20693811774254,-0.708676278591156,0.48931086063385,-1.12764644622803,-0.727768450975418,0.671341329813004,-1.08524493873119,-0.559135496616364,0.139603495597839,0.0535838331561536,-0.939679950475693,0.13238537311554,0.0854144571349025,-0.858184963464737,0.259522676467896,0.578240705654025,-0.699788063764572,1.20110169053078,0.736815676093102,-0.881436198949814,0.0834463834762573,-0.290423080325127,-1.00825688242912,0.895596612244844,-0.916172951459885,-0.487319201231003,0.873024297878146,-0.954378224909306,-0.643488317728043,1.02674442529678,-1.16398918628693,-0.308839559555054,1.11081853508949,-1.14990539848804,-0.241061389446259,1.24959236383438,-1.06538477540016,-0.413530826568604,1.38740745186806,-0.732375234365463,-0.475363917648792,1.2688884139061,-0.774711169302464,-0.518880769610405,1.1549451649189,0.115493023768067,-1.23781740665436,0.786947146058083,-0.167228072881699,-1.04156735166907 + } + } + Geometry: 2807663838384, "Geometry::Tongue_Up", "Shape" { + Version: 100 + Indexes: *187 { + a: 19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,274,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307 + } + Vertices: *561 { + a: 0,-0.77085018157959,0.730055332183838,0,-0.79951810836792,1.25335168838501,0,-0.762394905090332,0.731472492218018,0,-0.799518585205078,1.25335121154785,0,0.0212016105651855,1.07408428192139,0.00611710548400879,-0.0401554107666016,0.730271816253662,0,-0.178327083587646,0.0572509765625,-0.00611686706542969,-0.0397963523864746,0.733312129974365,-3.7348393107095e-06,1.26465845108032,0.345621109008789,0.0253331661224365,0.997244834899902,0.028752326965332,-3.7348393107095e-06,0.473381042480469,-0.717018127441406,-0.0253349542617798,0.997244358062744,0.0287513732910156,7.04557169228792e-06,2.28074598312378,-0.87570858001709,0.138434767723083,1.79047775268555,-1.11923694610596,-4.83527492178837e-06,1.1506781578064,-1.69099235534668,-0.138368010520935,1.79056262969971,-1.11937856674194,-4.83527492178837e-06,2.63128566741943,-2.28920650482178,0.135891199111938,2.04337072372437,-1.85327100753784,-4.83527492178837e-06,2.14596128463745,-2.48529052734375,-0.129310131072998,2.03684186935425,-1.84626054763794,0.139999985694885,-0.653522491455078,1.07526445388794,0,-0.201223373413086,0.253488540649414,0.139999985694885,-0.15480375289917,0.604459762573242,-0.139999985694885,-0.653522491455078,1.07526445388794,-0.139999985694885,-0.15480375289917,0.604459762573242,0,-0.691389083862305,1.50102663040161,0,-0.255992412567139,0.95796012878418,0,-0.0235934257507324,0.0393218994140625,0,-0.829478740692139,1.08160018920898,0,-0.0235934257507324,0.0393218994140625,0,-0.900844097137451,0.818620204925537,0,-0.0235934257507324,0.0393218994140625,0,-0.77299165725708,0.709499835968018,0,-0.0235934257507324,0.0393218994140625,0,-0.0235934257507324,0.0393218994140625,0,-0.77299165725708,0.709499835968018,0,-0.0235934257507324,0.0393218994140625,0,-0.82275915145874,0.700970649719238,0,-0.0235934257507324,0.0393218994140625,0,-0.829478740692139,1.08160018920898,0,-0.0235934257507324,0.0393218994140625,0,-0.0235934257507324,0.0393218994140625,0,-0.77069091796875,1.35730266571045,0,-0.0235934257507324,0.0393218994140625,0.10480135679245, +0.0365414619445801,1.07473850250244,0,-0.449969291687012,1.41191005706787,0.139999985694885,-0.365424156188965,1.41910934448242,-0.104800879955292,0.0365409851074219,1.07473754882813,-0.139999985694885,-0.365424156188965,1.41910934448242,-0.00239813327789307,0.00588607788085938,0.886659145355225,0,-0.449788093566895,1.31218910217285,0,-0.4818115234375,1.14991426467896,0.00339865684509277,-0.120883464813232,0.565543651580811,0,-0.50985050201416,1.01074171066284,-0.00217306613922119,-0.244430541992188,0.281339168548584,0,-0.558896541595459,0.79278039932251,-0.00407153367996216,-0.208795547485352,0.0749001502990723,0,-0.399961471557617,0.677576065063477,0,-0.423880100250244,0.672278881072998,0.00407156348228455,-0.208796501159668,0.0748982429504395,0,-0.423880100250244,0.672278881072998,0.00673818588256836,-0.26038122177124,0.164176464080811,0,-0.466663837432861,0.681844234466553,-0.00339818000793457,-0.120555400848389,0.568149566650391,0,-0.4818115234375,1.1499137878418,0,-0.50985050201416,1.01074171066284,-0.00419557094573975,-0.00894498825073242,0.818577289581299,0,-0.448850631713867,1.22313165664673,0.049755722284317,1.24168062210083,0.294626235961914,-1.52854840962391e-06,0.351474285125732,0.75521993637085,0.0951043963432312,0.33375072479248,0.728955745697021,-0.0497567057609558,1.24167776107788,0.294625282287598,-0.0951091349124908,0.33375358581543,0.728952407836914,-0.0184521675109863,1.15119123458862,0.187896728515625,-0.00969517230987549,0.290238857269287,0.607819557189941,0.00824964046478271,0.216550350189209,0.492698669433594,0.0415276288986206,0.842169284820557,-0.205562591552734,0.0102047920227051,0.152676582336426,0.262694358825684,0.0601228475570679,0.579555511474609,-0.664704322814941,0.0118780136108398,0.0190048217773438,-0.0660171508789063,-0.0320749878883362,0.451911926269531,-0.758738040924072,-1.52854840962391e-06,0.0577874183654785,-0.316615104675293,-0.0240388214588165,0.0436525344848633,-0.321334838867188,0.0320795774459839,0.451911926269531,-0.758735179901123,0.0240341126918793,0.0436515808105469, +-0.321332931518555,-0.0278488397598267,0.484955310821533,-0.780506134033203,-0.0023268461227417,0.00329303741455078,-0.209946155548096,-0.0415304899215698,0.842170238494873,-0.205561637878418,-0.00825464725494385,0.216644287109375,0.499482154846191,-0.0105574131011963,0.153146743774414,0.276750564575195,-0.00830471515655518,1.0565938949585,0.105545997619629,-0.00286030769348145,0.252814769744873,0.566112041473389,0.0771471560001373,2.24955034255981,-0.90688419342041,7.04557169228792e-06,1.90163898468018,-0.23497486114502,0.0531958341598511,1.86164283752441,-0.281675338745117,-0.0771105885505676,2.24965333938599,-0.906881332397461,-0.0532113611698151,1.86164283752441,-0.281675338745117,-0.0568438172340393,2.13219451904297,-0.980380058288574,-0.00645339488983154,1.73879289627075,-0.381110191345215,0.0770277976989746,1.50472497940063,-0.570644378662109,0.108795404434204,1.54497098922729,-1.31096363067627,0.078588604927063,1.31262111663818,-0.785891532897949,0.0141075849533081,1.21222066879272,-1.64133930206299,0.0642863512039185,0.939902305603027,-1.25491046905518,-0.0618820786476135,1.12615585327148,-1.72764348983765,-4.83527492178837e-06,0.848007202148438,-1.2934889793396,-0.0429655313491821,0.832581520080566,-1.33189010620117,0.0618681609630585,1.12606811523438,-1.72767066955566,0.042959451675415,0.832581520080566,-1.33189010620117,0.0187290906906128,1.12117958068848,-1.76162004470825,-0.0262055993080139,0.845939159393311,-1.36768531799316,-0.108526706695557,1.54493808746338,-1.31107473373413,-0.0770342350006104,1.50473642349243,-0.57062816619873,-0.0785901546478271,1.31262111663818,-0.785891532897949,-0.0865561962127686,1.91172170639038,-1.05663681030273,-0.0495171546936035,1.57472515106201,-0.497337341308594,0.0745536983013153,2.59773206710815,-2.27999305725098,7.04557896824554e-06,2.62470436096191,-1.6329288482666,0.089566171169281,2.56701898574829,-1.6540265083313,-0.0804539024829865,2.59814023971558,-2.28053188323975,-0.0919888615608215,2.56718873977661,-1.65420532226563,0.0961069464683533,2.41859674453735,-2.17575550079346, +0.0101682543754578,2.40333461761475,-1.60790967941284,0.110376358032227,1.93968915939331,-1.55472373962402,0.121050596237183,1.95010805130005,-1.98800468444824,0.0843362808227539,1.72420501708984,-1.67240190505981,0.0490161180496216,1.91111326217651,-2.29671049118042,-0.0139743089675903,1.53876543045044,-2.05049610137939,-0.0795484781265259,2.1180248260498,-2.48883295059204,-4.83527492178837e-06,1.62048959732056,-2.15619087219238,-0.0881118774414063,1.59153127670288,-2.18039226531982,0.0764379799365997,2.11838102340698,-2.48783159255981,0.0881195962429047,1.59166431427002,-2.18016815185547,-0.0242535471916199,2.04522657394409,-2.44979286193848,0.0804736614227295,1.56262588500977,-2.22832155227661,-0.11698853969574,1.94531154632568,-1.98019409179688,-0.108785271644592,1.93865728378296,-1.55600166320801,-0.0833849906921387,1.72383737564087,-1.67462062835693,-0.201080203056335,2.20161199569702,-1.97519111633301,-0.0813004970550537,2.0973424911499,-1.55533313751221,-4.83527492178837e-06,2.48262357711792,-2.52855396270752,-0.0757349133491516,2.45193529129028,-2.52119302749634,0.0208317637443542,2.04176712036133,-2.44566822052002,0.0653596520423889,2.31261873245239,-2.41360235214233,0.072517067193985,2.45169067382813,-2.52096557617188,-0.0493685007095337,1.91004371643066,-2.2975926399231,-0.146963536739349,2.11520481109619,-2.23883581161499,0,-0.902185916900635,0.819250583648682,0,-0.0235934257507324,0.0393218994140625,0.00150656700134277,-0.244668960571289,0.279600143432617,0,-0.559442520141602,0.793032646179199,-0.058153510093689,0.57817268371582,-0.672775268554688,-0.0125925540924072,0.0186901092529297,-0.0652742385864258,-0.0129235982894897,1.21194171905518,-1.64144849777222,-0.0624217987060547,0.945513725280762,-1.26271486282349,0.01717209815979,1.53810596466064,-2.05032205581665,-0.096642017364502,2.41986465454102,-2.18255996704102,-0.0689818263053894,2.31557464599609,-2.41828632354736,0.056897759437561,2.13241624832153,-0.980584144592285,-0.0109386444091797,2.40380573272705,-1.61583280563354,0.0184694528579712,1.15118980407715, +0.187895774841309,0.00644707679748535,1.73891401290894,-0.381001472473145,0.00239872932434082,0.00599956512451172,0.887726783752441,0.00969040393829346,0.290238857269287,0.607818126678467,0,-0.691389083862305,1.50102663040161,0,-0.449787139892578,1.31219005584717,0,-0.255992412567139,0.95796012878418,0,-0.77069091796875,1.35730266571045,0,-0.0235934257507324,0.0393218994140625,0.00419604778289795,-0.00924015045166016,0.816054821014404,0,-0.448850631713867,1.22313165664673,0.00830793380737305,1.05659294128418,0.10554313659668,0.00285530090332031,0.252799510955811,0.562643527984619,0.0865849256515503,1.91159152984619,-1.05644941329956,0.0495097637176514,1.57465648651123,-0.497420310974121,0.200732707977295,2.20266103744507,-1.98354196548462,0.0801513195037842,2.09995269775391,-1.55618524551392,0.146638035774231,2.1163387298584,-2.23953723907471,-0.0188493132591248,1.12270736694336,-1.76099395751953,-0.0813963413238525,1.5629186630249,-2.21880769729614,0.0298064947128296,0.487343311309814,-0.776147842407227,0.028447687625885,0.845457553863525,-1.36644697189331,-0.00788378715515137,-0.259999752044678,0.165551662445068,0.00246179103851318,0.00356578826904297,-0.208343505859375,0,-0.822762012481689,0.700972080230713,0,-0.46666431427002,0.681844234466553,0,-0.0235934257507324,0.0393218994140625 + } + Normals: *561 { + a: -0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.944908827543259,1.31607159972191,0.47273375466466,-0.921599141576962,1.37235361337662,-0.12590342387557,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.684338128286157,-0.712757617235184,-0.929008990526199,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781, +-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602, +1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953, +-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.424183025956154,-0.110263764858246,-0.444203998893499,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.10890665650368,-0.614064067602158,-0.783127889037132,0.926006108522415,-1.40033829212189,-0.595672160387039,0.87939116358757,-1.57997101545334,-0.436816837638617,0.30083137422065,-1.60357117652893,-0.557847484946251,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.638553533263405,-1.59558618068695,-0.300734415650368,-0.676092267036438,-0.527703166007996,-0.737274393439293,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.16787014901638,-1.1262513846159,-0.917428538203239,-0.330165073275566,-1.56126272678375,-0.886212259531021,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577, +-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.35912668704987,-1.11923706531525,-0.733461797237396,-1.30834448337555,-0.783228062093258,-0.743068143725395,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.16062372922897,0.602918721735477,-1.29376450181007,-0.863061770796776,0.546797141432762,-1.2658616900444,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.951680392026901,1.65245860815048,-0.216712422668934,-0.354886561632156,1.94521659612656,-0.179306738078594,-0.894153416156769,1.25129035115242,-0.576352939009666,0.708895847201347,1.80676358938217,0.0761847757967189,0.596255257736743,1.7611757516861,0.276752037927508,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0431989990285047,0.106963634490967,-0.426031785085797,-0.0734565518796444,-0.00426602363586426,-0.0770695299725048,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0784309916198254,0.00150799751281738,-0.133740396879148,0.109619896858931,0.0880307555198669,-0.514075212180614,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.0642043994739652, +-0.338101089000702,-1.00382301211357 + } + } + Geometry: 2807663837232, "Geometry::Tongue_Down", "Shape" { + Version: 100 + Indexes: *133 { + a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,143,146,148,151,153,155,158,160,162,165,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,256,258,259,260,261,262,263,264,265,266,267,268,269,270,289,291,292,293,294,295,296,297,298,299,300,301,302,303 + } + Vertices: *399 { + a: -3.69267218047753e-06,-0.239584445953369,-0.238216876983643,-0.0722060203552246,-0.24332332611084,-0.069826602935791,-3.69267218047753e-06,-0.354012012481689,0.227151870727539,0.0722060203552246,-0.24332332611084,-0.069826602935791,-3.38279733114177e-06,-0.642720699310303,-1.40660429000854,-0.0722060203552246,-0.85010814666748,-1.15435266494751,-3.38279733114177e-06,-1.29678869247437,-0.575895309448242,0.0722060203552246,-0.85010814666748,-1.15435266494751,4.88052319269627e-06,-1.7404899597168,-2.09220743179321,0.0418063402175903,-1.93653774261475,-1.76021337509155,-3.38279733114177e-06,-2.44303274154663,-1.34915494918823,-0.0418679714202881,-1.93644523620605,-1.76021337509155,-3.38279733114177e-06,-2.67876529693604,-2.92640924453735,0.0525801181793213,-2.47234678268433,-2.23818683624268,-3.38279733114177e-06,-2.93209171295166,-2.61811447143555,-0.052280068397522,-2.46427297592163,-2.22675085067749,0.0722060203552246,-0.225534439086914,-0.224014282226563,-0.0722060203552246,-0.225534439086914,-0.224014282226563,-0.0722060203552246,-0.210052967071533,-0.165724277496338,-0.0722060203552246,-0.298155784606934,0.0144438743591309,-0.0722060203552246,-0.236057281494141,0.191009044647217,-0.0722060203552246,-0.335980892181396,0.234067916870117,0.0722059905529022,-0.335981369018555,0.234068870544434,0.0722060203552246,-0.284581661224365,0.228451251983643,0.0722060203552246,-0.298155784606934,0.0144438743591309,0.0722059011459351,-0.209875583648682,-0.109364032745361,0.0722060203552246,-0.678271770477295,-1.38424968719482,-3.35697473019536e-06,-0.374710083007813,-0.676616191864014,0.0722060203552246,-0.386026382446289,-0.654452800750732,-0.0722060203552246,-0.678271770477295,-1.38424968719482,-0.0722059905529022,-0.386026382446289,-0.654453277587891,-0.0722060203552246,-0.735881328582764,-1.3102855682373,-0.0722060203552246,-0.41362476348877,-0.605199813842773,-0.0722059011459351,-0.4275221824646,-0.502285957336426,-0.0722060203552246,-1.01517343521118,-0.849206447601318,-0.0722059011459351,-0.528650760650635, +-0.356384754180908,-0.0230401754379272,-1.28814601898193,-0.657267093658447,-0.0722060203552246,-0.645135879516602,-0.0988736152648926,-0.0722060203552246,-1.32013559341431,-0.562235355377197,-3.35697473019536e-06,-0.792793273925781,-0.0739116668701172,-0.0722060203552246,-0.791234970092773,-0.0633840560913086,0.0722060203552246,-1.32013559341431,-0.562235355377197,0.0722060203552246,-0.791234970092773,-0.0633840560913086,0.0230401754379272,-1.34110116958618,-0.592640399932861,0.0722060203552246,-0.721133232116699,-0.0628924369812012,0.0722060203552246,-1.01517343521118,-0.849206447601318,0.0722059011459351,-0.4275221824646,-0.502285957336426,0.0722060203552246,-0.528650760650635,-0.356384754180908,0.0722060203552246,-0.808088302612305,-1.19887733459473,0.0722060203552246,-0.400754928588867,-0.543442726135254,-0.017675518989563,-1.75803470611572,-2.08037662506104,4.88052319269627e-06,-1.24500513076782,-1.73116683959961,0.0722060203552246,-1.27891635894775,-1.70914459228516,0.017675518989563,-1.75799465179443,-2.08042669296265,-0.0722060203552246,-1.27891635894775,-1.70914459228516,-0.0204902291297913,-1.80761814117432,-2.01042079925537,-0.0722060203552246,-1.35319519042969,-1.62875890731812,-0.0028376579284668,-1.50362062454224,-1.45211887359619,0.080580472946167,-2.05935764312744,-1.56873416900635,0.0378619432449341,-1.63744640350342,-1.22874784469604,0.0844806432723999,-2.32239627838135,-1.41715860366821,0.0742621421813965,-1.97568130493164,-1.03356504440308,-0.0722060203552246,-2.46583223342896,-1.34370994567871,-3.38279755851545e-06,-2.09121084213257,-0.956823348999023,-0.0722060203552246,-2.11462116241455,-0.955212116241455,0.0722060203552246,-2.46583223342896,-1.34370994567871,0.0722060203552246,-2.11462116241455,-0.955212116241455,-0.0338687896728516,-2.45341968536377,-1.35923671722412,-0.0742133259773254,-2.12556123733521,-0.977460861206055,-0.0804687738418579,-2.05953884124756,-1.56873416900635,0.00284647941589355,-1.50362920761108,-1.45211982727051,-0.0378470420837402,-1.6374568939209,-1.22874784469604,0.0343663692474365, +-1.87701892852783,-1.82105541229248,0.0668885707855225,-1.4551420211792,-1.49048805236816,0.0722060203552246,-2.68212842941284,-2.89661407470703,4.88052319269627e-06,-2.1487398147583,-2.67491149902344,0.0722060203552246,-2.17598438262939,-2.63278341293335,-0.0722060203552246,-2.68222379684448,-2.89667415618896,-0.0722060203552246,-2.17599391937256,-2.63277721405029,-0.0323070883750916,-2.65062808990479,-2.70951461791992,-0.0302671194076538,-2.17900085449219,-2.47033834457397,0.0707007646560669,-2.22713613510132,-2.02336692810059,0.0584908723831177,-2.61194133758545,-2.21389150619507,0.087824821472168,-2.36184358596802,-1.82981967926025,0.00476181507110596,-2.79014921188354,-2.35010480880737,0.0584908723831177,-2.64439535140991,-1.87631845474243,-0.0722060203552246,-2.94242143630981,-2.59800052642822,-3.38279733114177e-06,-2.86982154846191,-1.9513087272644,-0.0665753185749054,-2.88745832443237,-1.93591213226318,0.0722060203552246,-2.9424262046814,-2.59799766540527,0.0655940175056458,-2.8863377571106,-1.93591165542603,0.0348709225654602,-2.90063571929932,-2.52633619308472,-0.00678020715713501,-2.8057336807251,-1.96252346038818,-0.0584908723831177,-2.6044545173645,-2.20375728607178,-0.0704225301742554,-2.22736787796021,-2.0233678817749,-0.088576078414917,-2.36159086227417,-1.83096075057983,-0.0427811145782471,-2.53950262069702,-2.43772125244141,-0.014262318611145,-2.20211744308472,-2.14593458175659,-3.38279755851545e-06,-2.91316890716553,-2.90567922592163,-0.0722060203552246,-2.91743803024292,-2.87953329086304,-0.0347679257392883,-2.89610195159912,-2.52024364471436,-0.0496422648429871,-2.88527059555054,-2.72208499908447,0.0722060203552246,-2.91744136810303,-2.87952899932861,-0.00202715396881104,-2.79335069656372,-2.34997892379761,-0.0252509117126465,-2.78141403198242,-2.48964405059814,0.0722060203552246,-0.236057281494141,0.191009044647217,0.0230401754379272,-1.28814792633057,-0.657268047332764,0.0722060203552246,-0.645136833190918,-0.0988736152648926,-0.0845239162445068,-2.32232761383057,-1.41716003417969,-0.0749058723449707, +-1.98060035705566,-1.04029417037964,-0.0584908723831177,-2.64326524734497,-1.87546396255493,0.0368247032165527,-2.66064548492432,-2.71547365188599,0.0508911609649658,-2.89110374450684,-2.72807693481445,0.0200576782226563,-1.80714797973633,-2.01042079925537,0.0347341895103455,-2.19094467163086,-2.47673749923706,0.0722060203552246,-0.735879421234131,-1.31028461456299,0.0722060203552246,-1.35319519042969,-1.62875890731812,0.0722060203552246,-0.210052967071533,-0.165724277496338,0.0722060203552246,-0.41362476348877,-0.605199813842773,-0.0722059011459351,-0.209875583648682,-0.109363079071045,-0.0722060203552246,-0.808088302612305,-1.19887781143188,-0.0722060203552246,-0.400754928588867,-0.543442726135254,-0.0345139503479004,-1.87725830078125,-1.82105731964111,-0.0668799877166748,-1.4551362991333,-1.49048709869385,0.0439352989196777,-2.54348039627075,-2.44454193115234,0.0142829418182373,-2.20441770553589,-2.14896678924561,0.0296176671981812,-2.77689456939697,-2.49058628082275,0.0340323448181152,-2.45259380340576,-1.36016416549683,0.0050046443939209,-2.80271911621094,-1.95628929138184,-0.0230401754379272,-1.34021425247192,-0.594513893127441,0.0744873285293579,-2.12448644638062,-0.976748466491699,-0.0722060203552246,-0.284557342529297,0.228207588195801,-0.0722060203552246,-0.720892906188965,-0.0638351440429688 + } + Normals: *399 { + a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.120483659207821,1.22050394117832,-0.975012172013521,0.20459649618715,1.60866624116898,-0.80628751963377,0.758160121738911,0.279101312160492,-1.14875745773315,0.508439189754426,-0.123756885528564,-1.16271796822548,-0.0839923524401627,-0.612549155950546,-1.24820390343666,0.0839898160554924,-0.612549930810928,-1.24820226430893,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721, +-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532, +0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508, +-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,0.344773926102203,1.88571286201477,-0.345818737521768,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994 + } + } + Geometry: 2807663837808, "Geometry::Tongue_Roll", "Shape" { + Version: 100 + Indexes: *168 { + a: 20,21,22,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,124,127,128,129,130,131,133,134,135,136,137,138,140,141,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,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,287,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,307 + } + Vertices: *504 { + a: 0.0715572834014893,0.343193054199219,0,-0.00134156446438283,0.154120922088623,-0.0751137733459473,-0.0715649127960205,0.343227863311768,0,0.088465690612793,0.822692394256592,-0.066739559173584,-0.00218660989776254,0.371076583862305,-0.184834480285645,-0.088468074798584,0.822755813598633,-0.0668425559997559,-0.000125123930047266,0.188595294952393,-0.25572681427002,0.178546905517578,0.975777149200439,-0.293458938598633,9.85942460829392e-06,0.118123531341553,-0.0542402267456055,-0.181957960128784,0.967661380767822,-0.298497200012207,0.000568211602512747,0.0891423225402832,-0.0137920379638672,0.356341361999512,0.798389911651611,-0.0741910934448242,-0.00296531757339835,-0.0337529182434082,-0.0502605438232422,-0.362590551376343,0.789304256439209,-0.0780181884765625,-0.00384230562485754,0.167460441589355,-0.157939910888672,0.336041331291199,0.581234931945801,-0.0280437469482422,-0.00301364390179515,0.0932011604309082,-0.114194869995117,-0.350623965263367,0.583075046539307,-0.0155735015869141,-0.107942581176758,0.229259967803955,0,0.163111925125122,0.590945243835449,-0.00609159469604492,0.00926899909973145,0.00901126861572266,0.000632286071777344,0.455690622329712,0.59542179107666,-0.0720028877258301,0.177258729934692,0.164892196655273,0.0116372108459473,0.046688437461853,0.145971298217773,-0.0537052154541016,6.92009925842285e-05,0.00106382369995117,-4.43458557128906e-05,-0.0499995946884155,0.146244525909424,-0.0565457344055176,-6.92605972290039e-05,0.00106430053710938,-4.43458557128906e-05,-0.575827062129974,0.411364555358887,-0.135119915008545,-0.269950866699219,0.066047191619873,-0.165488243103027,-0.163333177566528,0.592289924621582,-0.00581693649291992,-0.00926947593688965,0.00901174545288086,0.000632286071777344,0.00390744209289551,0.173913478851318,0,-0.182077169418335,0.117161750793457,-0.0170450210571289,-0.0461926460266113,0.0392417907714844,0,0.110377073287964,0.685339450836182,0,0.374793529510498,1.19657135009766,-0.0519871711730957,0.309398889541626,0.935471534729004,-0.0215024948120117,0.691290140151978, +1.09813499450684,-0.0611386299133301,0.666993975639343,1.02371883392334,-0.0891628265380859,0.145678579807281,0.437658786773682,-0.146846771240234,-0.00266240979544818,0.333650588989258,-0.179123878479004,0.140182912349701,0.397150993347168,-0.14873743057251,-0.152540773153305,0.427947521209717,-0.152379989624023,-0.147996872663498,0.393235206604004,-0.153366088867188,-0.684685230255127,0.754141807556152,-0.00976705551147461,-0.74010443687439,0.702571868896484,-0.10490894317627,-0.375489830970764,1.19634628295898,-0.0519847869873047,-0.11040210723877,0.685403347015381,0,-0.309438228607178,0.935570240020752,-0.0215129852294922,0.110532164573669,0.414016246795654,-0.0435914993286133,0.0601224899291992,0.306078433990479,0,0.0422159731388092,0.201963901519775,-0.272677421569824,-1.68299302458763e-05,0.0516319274902344,-0.0479106903076172,0.0384664535522461,0.0657138824462891,-0.0499210357666016,-0.0434284210205078,0.201858043670654,-0.271865844726563,-0.0387517511844635,0.0659394264221191,-0.0501923561096191,-0.12335467338562,0.277737140655518,-0.276169776916504,-0.161068677902222,0.188144207000732,-0.163179397583008,0.190035104751587,0.930246829986572,-0.0699939727783203,0.351669192314148,1.1606707572937,-0.332165718078613,0.384688377380371,1.18655300140381,-0.0770378112792969,0.552424490451813,0.930849075317383,-0.424801826477051,0.661182284355164,1.01296138763428,-0.136041164398193,0.139345705509186,0.215506076812744,-0.104123115539551,-0.0029457900673151,0.344180107116699,-0.294868469238281,0.132159739732742,0.434080123901367,-0.296662330627441,-0.140015810728073,0.217243194580078,-0.106452941894531,-0.137048900127411,0.422018051147461,-0.299755573272705,-0.479369521141052,0.665101051330566,-0.304807662963867,-0.572630941867828,0.770112037658691,-0.157512664794922,-0.357102155685425,1.15971231460571,-0.331371307373047,-0.18976616859436,0.930533885955811,-0.0706515312194824,-0.387880921363831,1.18733835220337,-0.0784845352172852,0.0340811014175415,0.541533470153809,-0.295461654663086,0.0448670387268066,0.498977184295654, +-0.155375480651855,0.00220069289207458,0.111958503723145,-0.00351715087890625,0.000119759613880888,0.137353897094727,-0.0819644927978516,0.00455772876739502,0.15515661239624,-0.0755071640014648,-0.000170469284057617,0.107191562652588,-0.00119876861572266,-0.00600028038024902,0.151247978210449,-0.0706100463867188,0.0197324752807617,0.304113388061523,-0.0268878936767578,-0.00720226764678955,0.276792049407959,-0.0874662399291992,0.25667929649353,0.920315265655518,-0.19080924987793,0.420951366424561,0.820794105529785,-0.0874748229980469,0.393502712249756,1.04579067230225,-0.21924877166748,0.407957851886749,0.591837882995605,-0.119003295898438,0.467503011226654,0.789066791534424,-0.292445182800293,0.102481588721275,0.0930309295654297,-0.0785417556762695,-0.00073300302028656,-0.0144753456115723,-0.0740079879760742,0.105085700750351,0.171563625335693,-0.123377799987793,-0.111301138997078,0.0877385139465332,-0.0828285217285156,-0.109932169318199,0.168755054473877,-0.12276554107666,-0.363543927669525,0.386679172515869,-0.117993354797363,-0.438645303249359,0.539416313171387,-0.217558860778809,-0.429742574691772,0.82070255279541,-0.0843982696533203,-0.262308835983276,0.913708686828613,-0.195096015930176,-0.398830771446228,1.0407190322876,-0.221144676208496,-0.219918727874756,0.542052745819092,-0.0621252059936523,-0.1281898021698,0.549643993377686,-0.135503768920898,-0.00113403797149658,0.180726051330566,-0.137643814086914,-0.0040311967022717,0.159158229827881,-0.0707721710205078,0.00507912039756775,0.129806518554688,-0.0429239273071289,-0.0108998119831085,0.17484188079834,-0.123985290527344,-0.0175063908100128,0.124320507049561,-0.0291709899902344,0.144306778907776,0.262930870056152,-0.0876951217651367,0.079658567905426,0.29421329498291,-0.0360126495361328,0.354766368865967,0.692086219787598,-0.0163402557373047,0.410064041614532,0.553143978118896,-0.0244255065917969,0.423850536346436,0.665680408477783,-0.00746726989746094,0.32252299785614,0.447977542877197,-0.147233009338379,0.332275032997131,0.501938819885254,-0.136701583862305, +0.0411018431186676,0.123730182647705,-0.115963935852051,-0.00378440879285336,0.0492429733276367,-0.0868511199951172,0.0681915432214737,0.125596523284912,-0.119760513305664,-0.0524221956729889,0.120753288269043,-0.111809730529785,-0.0903974175453186,0.118048667907715,-0.108057975769043,-0.227083921432495,0.236329078674316,-0.144240379333496,-0.188726007938385,0.317537784576416,-0.191018104553223,-0.399854779243469,0.545824527740479,-0.0415248870849609,-0.364158987998962,0.688045978546143,-0.018528938293457,-0.43459689617157,0.66435718536377,-0.0128030776977539,-0.300236642360687,0.462316989898682,-0.0783004760742188,-0.240296959877014,0.516739368438721,-0.0181074142456055,-0.00304810586385429,0.140667915344238,-0.147005081176758,0.0206046104431152,0.157440662384033,-0.123921394348145,0.204616993665695,0.238072872161865,-0.147210121154785,0.210114181041718,0.243772029876709,-0.103322982788086,-0.0296792834997177,0.155365943908691,-0.124935150146484,-0.314284324645996,0.451464176177979,-0.158519744873047,-0.343730390071869,0.434899806976318,-0.115299224853516,-0.444213271141052,0.588114261627197,-0.0742883682250977,-0.177285432815552,0.16587495803833,0.0116462707519531,-0.68551242351532,1.08335304260254,-0.061988353729248,-0.668927431106567,1.01338577270508,-0.0940437316894531,-0.543353736400604,0.920538902282715,-0.427005767822266,-0.663886070251465,1.00166988372803,-0.146541118621826,-0.40911990404129,0.586826801300049,-0.116129875183105,-0.463253319263458,0.7872633934021,-0.295866966247559,-0.329006314277649,0.500846862792969,-0.145634651184082,-0.130150496959686,0.255386352539063,-0.110037803649902,-0.219076633453369,0.247342586517334,-0.116979598999023,-0.0342451930046082,0.299649238586426,-0.0309581756591797,-0.0492287278175354,0.262847423553467,-0.0461816787719727,0.121662855148315,0.276943206787109,-0.277545928955078,0.000715136528015137,0.27590799331665,-0.0889768600463867,0.182080626487732,0.117184162139893,-0.0170469284057617,0.157484292984009,0.196347236633301,-0.170912742614746,0.107940793037415,0.229275703430176, +0,0.0461928844451904,0.0392475128173828,0,-0.00391483306884766,0.173878192901611,0,-0.110555291175842,0.413937091827393,-0.0434179306030273,-0.0601413249969482,0.306021690368652,0,-0.0328595638275146,0.544812679290771,-0.292421340942383,-0.0455783605575562,0.497898578643799,-0.153552055358887,0.213374853134155,0.550905227661133,-0.0581779479980469,0.120896816253662,0.555045127868652,-0.128382682800293,0.320579409599304,0.474356174468994,-0.069849967956543,0.225951671600342,0.532892227172852,-0.0135602951049805,0.366815567016602,0.433246612548828,-0.113364219665527,0.365937173366547,0.398444175720215,-0.117471694946289,0.170735776424408,0.32920503616333,-0.183926582336426,0.506812214851379,0.681757926940918,-0.310940742492676,0.455943495035172,0.547447204589844,-0.22027587890625,0.704180836677551,0.790369987487793,-0.0105795860290527,0.611482918262482,0.782426834106445,-0.153314113616943,0.579699575901031,0.419809341430664,-0.130352973937988,0.745508074760437,0.720680713653564,-0.104914665222168,0.270850896835327,0.0686125755310059,-0.168217182159424 + } + Normals: *504 { + a: 0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.637654334306717,1.17631858587265,-0.117711447179317,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951, +0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366, +0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194, +-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.30563378334045,-0.783810615539551,-0.747863724827766,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.15791302919388,0.602336168289185,-1.29856008291245,-0.86223529279232,0.542993351817131,-1.27621719241142,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.950853914022446,1.64865481853485,-0.227067925035954,-0.354275658726692,1.93988382816315, +-0.225037895143032,0.70878441631794,1.80671739578247,0.0641667153686285,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0733451209962368,-0.00431221723556519,-0.0890873642638326,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0783195607364178,0.00146180391311646,-0.145758231170475,0.109004940837622,0.0830060243606567,-0.557603970170021,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.0642043994739652,-0.338101089000702,-1.00382301211357 + } + } + Geometry: 2807663839536, "Geometry::Tongue_UpLeft_Morph", "Shape" { + Version: 100 + Indexes: *151 { + a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,272,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305 + } + Vertices: *453 { + a: -0.205587780103087,0.0939607620239258,0.157804489135742,0.00284099578857422,0.168184280395508,0.136541843414307,-0.0607957281172276,-0.0412545204162598,-0.0937509536743164,-0.449215888977051,-0.116327285766602,-0.032132625579834,-0.556366993114352,-0.260055065155029,0.613465309143066,-0.717149496078491,0.109637260437012,0.246726989746094,-0.864271063357592,-0.321128368377686,0.841568946838379,-0.597594857215881,-0.659493923187256,1.14812755584717,-1.13370306231081,-0.323439598083496,1.3339958190918,-1.76935374736786,0.0446782112121582,0.695526123046875,-1.51800348982215,-0.305262565612793,1.43346977233887,-0.762036323547363,-0.653791904449463,1.99246597290039,-1.83868553489447,-0.328373908996582,2.04752540588379,-2.07788980007172,-0.0655932426452637,1.22809028625488,-1.9208126142621,-0.31779670715332,2.00156402587891,-1.14759142696857,-0.621158599853516,2.28331851959229,-0.300505101680756,0.0285043716430664,0.0403261184692383,0.143511466681957,0,0.0105133056640625,0.112142086029053,0,-0.0855584144592285,-0.0649407505989075,0.144923210144043,0.192941188812256,0.264890551567078,0,0.107010364532471,-0.0381768941879272,0.160659790039063,0.166801929473877,0.253685832023621,0,0.186825275421143,0.233543157577515,0,0.250312805175781,0.0232701301574707,0.158554553985596,0.104612827301025,0.22700047492981,0,0.255780220031738,0.040794849395752,0.119499206542969,0.0370821952819824,0.21491527557373,0,0.250821590423584,-0.0303387045860291,0.000758171081542969,-0.0652966499328613,0.235396597534418,0,0.0122828483581543,0.235381275415421,0,0.0848870277404785,-0.356015384197235,-0.0867791175842285,-0.117659568786621,0.225639224052429,0,-0.0596747398376465,-0.39326000213623,-0.156573295593262,-0.14686393737793,0.209286212921143,0,-0.177070140838623,-0.443164825439453,-0.148068428039551,-0.0770344734191895,0.201622009277344,0,-0.22335958480835,0.194405317306519,0,-0.227898597717285,-0.449617385864258,-0.0959153175354004,-0.00537776947021484,0.210345506668091,0,-0.212890148162842,-0.561840891838074,-0.405056953430176, +0.74263858795166,-0.287122135981917,0.039344310760498,0.319331645965576,-0.352616161108017,-0.124626636505127,0.399148464202881,-0.563640356063843,-0.125696659088135,0.491817474365234,-0.119933158159256,0.181807041168213,0.33280086517334,-0.633548498153687,-0.00313234329223633,0.345720291137695,-0.065805196762085,0.237988471984863,0.28097677230835,0.0409787893295288,0.291952133178711,0.285060405731201,-0.774287343025208,0.107777118682861,0.266386032104492,0.0425509214401245,0.390091419219971,0.253280162811279,-0.900406360626221,0.06182861328125,0.38601016998291,0.0165401697158813,0.285684108734131,0.26543140411377,-0.868755400180817,-0.197999954223633,0.741269111633301,-0.437979616224766,-0.126250743865967,0.338989734649658,-0.309081733226776,-0.0116281509399414,0.328869342803955,-0.873090952634811,-0.453324317932129,0.959705352783203,-0.546612948179245,-0.255303859710693,0.351394176483154,-0.820358991622925,-0.630709648132324,1.19718837738037,-0.657158851623535,-0.437699317932129,0.400043964385986,-0.64508318901062,-0.696891307830811,1.21642589569092,-0.619542002677917,-0.271862030029297,0.410511016845703,-0.642108559608459,-0.338783740997314,0.430751800537109,-0.592451691627502,-0.60963249206543,1.07576560974121,-0.585883498191833,-0.367566108703613,0.435452938079834,-1.0608297586441,-0.449479103088379,1.52179718017578,-0.723371688276529,-0.262809276580811,0.899794578552246,-0.645912870764732,-0.40361213684082,1.09421920776367,-1.2699182331562,-0.192031860351563,1.16374397277832,-0.83472153544426,-0.125156879425049,0.719376564025879,-1.47079759836197,-0.0760364532470703,0.947590827941895,-1.02354896068573,-0.00837564468383789,0.508925437927246,-1.2221063375473,0.101638317108154,0.356998443603516,-1.84922528266907,0.0466175079345703,0.719354629516602,-1.30637609958649,0.102786540985107,0.382043838500977,-1.91801631450653,0.00638818740844727,0.869587898254395,-1.47627055644989,0.0718460083007813,0.550663948059082,-1.62093105912209,-0.196600914001465,1.30899810791016,-1.16278171539307,-0.270799160003662,1.15262317657471, +-1.24251818656921,-0.151448249816895,1.00997352600098,-1.42838254570961,-0.411989688873291,1.57287979125977,-1.09506845474243,-0.395058155059814,1.31423950195313,-1.22695079445839,-0.532276153564453,1.84154605865479,-0.928067445755005,-0.544066429138184,1.61684131622314,-0.852341294288635,-0.650603771209717,2.00783061981201,-0.518267869949341,-0.629729270935059,1.62970733642578,-0.582103252410889,-0.645744800567627,1.68958473205566,-0.794363141059875,-0.619987487792969,1.92052841186523,-0.542338371276855,-0.58850622177124,1.53691577911377,-1.76674118638039,-0.416779041290283,2.12898731231689,-1.56697984039783,-0.319906711578369,1.77947521209717,-1.4807234108448,-0.421423435211182,1.90398788452148,-1.89864900708199,-0.237202644348145,1.94237327575684,-1.66218081116676,-0.210771560668945,1.6525354385376,-2.04478639364243,-0.158890724182129,1.66092300415039,-1.84852093458176,-0.118727207183838,1.37655353546143,-1.96608114242554,0.00774908065795898,1.00487041473389,-2.12177753448486,-0.069432258605957,1.27757358551025,-2.01122450828552,0.00169086456298828,1.01231384277344,-2.16257762908936,-0.104999542236328,1.50559520721436,-2.08501183986664,-0.0422115325927734,1.25015544891357,-1.96887612342834,-0.236979007720947,1.92259502410889,-1.77265550196171,-0.312553405761719,1.76601982116699,-1.84179064631462,-0.220720767974854,1.67481517791748,-1.86970031261444,-0.396918773651123,2.06748676300049,-1.71176725625992,-0.400557518005371,1.8608226776123,-1.7172269821167,-0.495261192321777,2.22794628143311,-1.59766829013824,-0.469932079315186,2.04171371459961,-1.22836468368769,-0.606243133544922,2.28973770141602,-1.0397941172123,-0.638956546783447,2.19582271575928,-1.10595589876175,-0.636059284210205,2.18136215209961,-1.26343212928623,-0.589789390563965,2.37163829803467,-1.09643679857254,-0.612470626831055,2.17175006866455,-1.94118213653564,-0.318349361419678,2.10329151153564,-1.98970142006874,-0.235515594482422,2.01529312133789,-2.10347664356232,-0.1690993309021,1.71582317352295,-2.10884088277817,-0.164173603057861,1.75329780578613, +-1.88303810358047,-0.399067401885986,2.16918468475342,-1.56501263380051,-0.556692123413086,2.27937030792236,-1.44326958060265,-0.569689750671387,2.36939525604248,-0.418766260147095,-0.174753665924072,-0.136759757995605,0.183260917663574,0,-0.21696662902832,-0.783455371856689,-0.701176643371582,1.28617286682129,-0.641582369804382,-0.48029899597168,0.505779266357422,-1.07662944495678,-0.607513904571533,1.96954822540283,-0.821637749671936,-0.614950656890869,1.74565505981445,-1.38731747865677,-0.566314697265625,2.1624870300293,-1.5190252661705,-0.501655578613281,2.30951595306396,-1.63990354537964,-0.491461277008057,2.31882953643799,-0.907750830054283,-0.554007053375244,1.76502227783203,-1.2849308848381,-0.515987873077393,2.08220481872559,-0.568972110748291,-0.539233207702637,0.938935279846191,-0.562056511640549,-0.52604341506958,1.35853481292725,-0.343324065208435,-0.0503606796264648,0.0416269302368164,-0.495702028274536,-0.245667457580566,0.471998691558838,0.0903298854827881,0,-0.163149356842041,-0.011674165725708,0.166523456573486,0.150240421295166,0.240783214569092,0,0.238767147064209,-0.690457344055176,0.0721607208251953,0.291102409362793,0.0027930736541748,0.271498203277588,0.287755966186523,-1.67802023887634,0.00859975814819336,0.776963233947754,-1.1521053314209,0.0629634857177734,0.425430297851563,-2.12539863586426,-0.10247802734375,1.38973903656006,-1.91936182975769,-0.028714656829834,1.11679553985596,-2.19203865528107,-0.105506420135498,1.51102924346924,-1.83379870653152,-0.0651645660400391,1.04610824584961,-1.98031347990036,-0.129661560058594,1.51558303833008,-0.902108907699585,-0.0261454582214355,0.508074760437012,-1.42234843969345,-0.00378990173339844,0.714756011962891,0.0297569036483765,0.0813097953796387,-0.0061192512512207,-0.0711381435394287,0.184239387512207,0.275914192199707,0.235139131546021,0,0.206559658050537 + } + Normals: *453 { + a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842, +-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387, +-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429, +-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.329245887696743,1.94907534122467,-0.144308499991894,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946, +0.00242036581039429,-0.13834481080994,0.0923748388886452,0.0320273637771606,-0.913065552711487 + } + } + Geometry: 2805100583344, "Geometry::Tongue_UpRight_Morph", "Shape" { + Version: 100 + Indexes: *5555 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,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,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962, +2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400, +3401,3402,3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811, +3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234, +4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648, +4649,4651,4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073, +5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5965,5967,5995,5997,6028,6155,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6515,6525,6526,6529,6530,6531,6536,6544,6552,6553,6554,7214,7347,7349,7377, +7379,7410,7537,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7897,7907,7908,7911,7912,7913,7918,7926,7934,7935,7936,8591,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 + } + Vertices: *16665 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,0.205591702833772,0.0939607620239258,0.157804489135742,0.449122905731201,-0.116327285766602,-0.032132625579834,0.0607996545732021,-0.0412545204162598,-0.0937509536743164,-0.00293397903442383,0.168184280395508,0.136541843414307,0.55636696703732,-0.260055065155029,0.613465309143066,0.597507357597351,-0.659493923187256,1.14812755584717,0.864271026104689,-0.321128368377686,0.841568946838379,0.717061996459961,0.109637260437012,0.246726989746094,1.13351123593748,-0.323439598083496,1.3339958190918,0.761941075325012,-0.653791904449463,1.99246597290039,1.51800343766809,-0.305262565612793,1.43346977233887,1.7692586183548,0.0446782112121582,0.695526123046875,1.83868549019098,-0.328373908996582,2.04752540588379,1.14759910106659,-0.621158599853516,2.28331851959229,1.92081259936094,-0.31779670715332,2.00156402587891,2.07789742946625,-0.0655932426452637,1.22809028625488,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05, +0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.0648455619812012,0.144923210144043,0.192941188812256,-0.143511481583118,0,0.0105133056640625,-0.264977991580963,-1.43051147460938e-06,0.107010364532471,0.300409913063049,0.0285043716430664,0.0403261184692383,-0.112229526042938,1.43051147460938e-06,-0.0855584144592285,0.343228697776794,-0.0503606796264648,0.0416269302368164,-0.0904251337051392,-1.43051147460938e-06,-0.163149356842041,-0.201717138290405,0,-0.223359107971191,0.443069934844971,-0.148068428039551,-0.0770339965820313,-0.194492816925049,9.5367431640625e-07,-0.227898597717285,0.418678283691406,-0.174753665924072,-0.136759757995605, +-0.183346271514893,0,-0.21696662902832,0.356027334928513,-0.0867781639099121,-0.117659568786621,-0.23539661988616,0,0.0122828483581543,-0.225734412670135,0,-0.0596747398376465,0.0303506553173065,0.000757217407226563,-0.0652966499328613,-0.235476464033127,0,0.0848870277404785,-0.0297448635101318,0.0813097953796387,-0.0061187744140625,-0.235234498977661,4.76837158203125e-07,0.206559658050537,-0.0233650207519531,0.158554553985596,0.104612350463867,-0.233638286590576,0,0.250312328338623,-0.22708797454834,-9.5367431640625e-07,0.255780220031738,0.0115866661071777,0.166524887084961,0.150240421295166,-0.240878582000732,0,0.238767147064209,0.563545137643814,-0.125696659088135,0.491817474365234,0.287121826782823,0.039344310760498,0.319331645965576,0.119841456413269,0.181807041168213,0.332801342010498,0.561745643615723,-0.405056953430176,0.74263858795166,0.35252445936203,-0.124626636505127,0.399147987365723,0.568876028060913,-0.539233207702637,0.938935279846191,0.495611071586609,-0.245667457580566,0.471999168395996,0.619443297386169,-0.271862030029297,0.410511016845703,0.644988656044006,-0.696891307830811,1.21642589569092,0.642116069793701,-0.338783740997314,0.430751800537109,0.783360838890076,-0.701176643371582,1.28617382049561,0.641483187675476,-0.48029899597168,0.505779266357422,0.87309855222702,-0.453324317932129,0.959705352783203,0.437979303300381,-0.126250743865967,0.338989734649658,0.546521246433258,-0.255303859710693,0.351394176483154,0.868762999773026,-0.197999954223633,0.741269111633301,0.308990031480789,-0.0116281509399414,0.328869342803955,0.902013540267944,-0.0261454582214355,0.508074760437012,0.0710389614105225,0.184239387512207,0.275913715362549,0.774192810058594,0.107777118682861,0.266386032104492,-0.0410774946212769,0.291952133178711,0.285060405731201,-0.0425434112548828,0.390091419219971,0.253280162811279,0.690464735031128,0.0721607208251953,0.291101455688477,-0.0028918981552124,0.271498203277588,0.28775691986084,1.26983082294464,-0.192031860351563,1.16374397277832,0.723179873079062,-0.262809276580811,0.899794578552246, +0.834530264139175,-0.125156879425049,0.719376564025879,1.06074234843254,-0.449479103088379,1.52179718017578,0.645721584558487,-0.40361213684082,1.09421920776367,0.907655656337738,-0.554007053375244,1.76502227783203,0.561968326568604,-0.52604341506958,1.35853481292725,0.518180251121521,-0.629729270935059,1.62970733642578,0.852245569229126,-0.650603771209717,2.00783061981201,0.58211088180542,-0.645744800567627,1.68958473205566,1.07654106616974,-0.607513904571533,1.96955013275146,0.821645855903625,-0.614950656890869,1.74565410614014,1.42829498648643,-0.411989688873291,1.57287979125977,1.16278171539307,-0.270799160003662,1.15262317657471,1.0949809551239,-0.395058155059814,1.31423950195313,1.62084349989891,-0.196600914001465,1.30899810791016,1.24243062734604,-0.151448249816895,1.00997352600098,1.83371078968048,-0.0651645660400391,1.04610824584961,1.42226022481918,-0.00378990173339844,0.714756011962891,1.84912967681885,0.0466175079345703,0.719354629516602,1.22201871871948,0.101638317108154,0.356998443603516,1.30638372898102,0.102786540985107,0.382043838500977,1.67802786827087,0.00859689712524414,0.776963233947754,1.15200996398926,0.0629634857177734,0.425429344177246,1.89856144785881,-0.237202644348145,1.94237327575684,1.56678800284863,-0.319906711578369,1.77947521209717,1.66199013590813,-0.210771560668945,1.6525354385376,1.7666537463665,-0.416779041290283,2.12898731231689,1.48053273558617,-0.421423435211182,1.90398788452148,1.51893693208694,-0.501655578613281,2.30951595306396,1.28483563661575,-0.515987873077393,2.08220481872559,1.03970646858215,-0.638956546783447,2.19582366943359,1.22837233543396,-0.606241703033447,2.2897367477417,1.10586071014404,-0.636059284210205,2.18136405944824,1.56491684913635,-0.556692123413086,2.27937030792236,1.38723003864288,-0.566314697265625,2.16248798370361,1.86961197853088,-0.396914958953857,2.06748676300049,1.77265547215939,-0.312553405761719,1.76601982116699,1.71167901158333,-0.400556564331055,1.86082458496094,1.9687876701355,-0.236982822418213,1.92259502410889,1.84170240163803,-0.22072172164917, +1.67481327056885,2.10338842868805,-0.1690993309021,1.71582317352295,1.9802183508873,-0.129661560058594,1.51558494567871,2.12178516387939,-0.0694336891174316,1.27757453918457,1.96599340438843,0.00774908065795898,1.00486946105957,2.01112926006317,0.00169086456298828,1.0123119354248,2.12530338764191,-0.10247802734375,1.38973903656006,1.91927444934845,-0.028714656829834,1.11679553985596,1.94118213653564,-0.318349361419678,2.10329151153564,1.88294300436974,-0.399065017700195,2.16918468475342,1.71713864803314,-0.495261192321777,2.22794628143311,1.63971334695816,-0.491459846496582,2.31882858276367,1.98960620164871,-0.235517978668213,2.01529312133789,2.16248190402985,-0.104999542236328,1.50559520721436,2.19194340705872,-0.105506420135498,1.51102924346924,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,-0.0408828258514404,0.119499206542969,0.0370821952819824,-0.215000629425049,0,0.250821590423584,0.900311827659607,0.06182861328125,0.386009216308594,-0.0166393518447876,0.285684108734131,0.26543140411377,1.91792798042297,0.00638818740844727,0.869585990905762,1.47627878189087,0.0718460083007813,0.550664901733398,2.08492434024811,-0.0422115325927734,1.25015449523926,2.04469811916351,-0.158890724182129,1.66092300415039,2.1086505651474,-0.164175033569336,1.75329875946045,1.47070240974426,-0.0760364532470703,0.947590827941895,1.8484258055687,-0.118727207183838,1.37655353546143,0.633452415466309,-0.00313234329223633,0.345720291137695,1.02346074581146,-0.00837564468383789,0.508925437927246,0.0380815267562866,0.160659790039063,0.166801929473877,0.0657142400741577,0.237988471984863,0.280976295471191,-8.74996185302734e-05,0,0,-0.253781080245972,1.43051147460938e-06,0.186825275421143,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453, +0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.449529886245728,-0.095916748046875,-0.00537776947021484,-0.210440874099731,0,-0.212890148162842,0.592459082603455,-0.60963249206543,1.07576656341553,0.585784673690796,-0.367566108703613,0.435451984405518,0.794370889663696,-0.61998462677002,1.92052841186523,0.542243003845215,-0.58850622177124,1.53691673278809,1.26333689689636,-0.589789390563965,2.37163829803467,1.09634947776794,-0.612470626831055,2.17175006866455,1.44317424297333,-0.569689750671387,2.36939525604248,1.22686284780502,-0.532276153564453,1.84154605865479,1.59757310152054,-0.469932079315186,2.04171180725098,0.820263624191284,-0.630709648132324,1.19718837738037,0.927979290485382,-0.544066429138184,1.61684131622314,0.393272042274475,-0.156573295593262,-0.146864414215088,0.657059669494629,-0.437699317932129,0.400044441223145,-9.52482223510742e-05,0,0,-0.209381580352783,-4.76837158203125e-07,-0.177070140838623,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06, +0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05,-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0,-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05, +1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833,0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05, +0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05, +0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05, +0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05, +0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05, +0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609, +0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05, +0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05, +0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05, +0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05, +0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0, +8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05, +0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0, +8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05, +0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0, +0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05, +0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05, +0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05, +0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05, +0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05, +0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05, +0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05, +0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0, +8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0,8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625, +0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0, +0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05, +0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05, +0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, +0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05, +0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05, +0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0, +8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05, +0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0, +8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05, +0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086, +0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332, +0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05, +0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05, +0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0, +0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05, +0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0, +0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617, +0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05, +0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0, +8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05,0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05, +0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0, +0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05, +0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0, +0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05, +0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365,0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05, +0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05, +0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0, +0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05, +0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0, +0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0, +9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05, +0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05,0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05, +0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05, +0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0,0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0, +9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05, +0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0, +0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0,0.000311195850372314,0,0,0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,-7.62939453125e-06,1.9073486328125e-06,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06, +-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05,-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,-6.67572021484375e-06,-2.78949737548828e-05,7.62939453125e-06,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,1.43051147460938e-06,0,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,7.62939453125e-06,-1.9073486328125e-06,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,-6.67572021484375e-06,2.78949737548828e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078, +-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,3.55243682861328e-05,-4.76837158203125e-06,-7.51018524169922e-06,6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,1.43051147460938e-06,0,0,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 + } + Normals: *16665 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662, +-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528,0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668, +0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373,-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579, +1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941, +-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897, +-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461, +-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318, +0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345,3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.831986740231514,-1.45471206307411,-0.256839517503977,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.140986686572433,-1.1514785438776,-0.802622318267822,-0.0494998346839566,-1.23472410440445,-0.980435178615153,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683, +0.168493628501892,0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.355911031365395,0.0768817663192749,0.541599974036217,-0.407593712210655,0.0947177410125732,0.464590594172478,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.148774564266205,0.249500811100006,-0.373034179210663,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.429313331842422,-1.51347768306732,-0.457492679357529,-0.314539641141891,-1.57477766275406,-0.425196655094624,0.423921898007393,-1.66069328784943,-0.626134909689426,0.406331941485405,-1.68925100564957,-0.553491108119488,0.493490897119045,-1.76123064756393,0.00973547995090485,0.0374980270862579,-1.51087063550949,-0.742654098197818,-1.06436544656754,0.0388029664754868,-0.711108490824699,-0.873245977854822,-0.730827063322067,-0.669198244810104,-0.550414368510246,-0.779912859201431,-0.366896390914917,-0.39802885055542,-0.123441606760025,-0.441001325845718,-0.122196972370148,0.195658624172211,-0.296430170536041,0.283824041485786,0.430972993373871,-0.808780890889466,0.0201019772794098,0.366407930850983,-0.395660787820816,-0.659750461578369,0.22623735666275,-0.47093340754509,0.67371778190136,0.391672521829605,-0.25110524892807, +-0.860397607088089,0.414401888847351,-0.0104736983776093,1.00705640017986,0.528304755687714,0.0599220991134644,0.813746120780706,0.326629638671875,0.178752481937408,0.78201099857688,0.287108302116394,0.171897381544113,0.57217625528574,0.202253341674805,0.0774389505386353,0.0925849080085754,0.228675127029419,-0.395070791244507,-0.259149141609669,0.237442493438721,-0.264651149511337,-0.648929320275784,0.0378597378730774,0.418735951185226,0.524482190608978,-0.893576204776764,-0.444915741682053,0.610841885209084,-1.11562320590019,-0.937754448503256,0.645509381662123,-1.06557667255402,-1.14067909121513,0.688760742545128,-0.725150763988495,-0.60640349984169,-0.0146625339984894,-1.3681528866291,-0.697983022779226,-0.0688910186290741,-1.47109168767929,-0.883234977722168,-0.270682044327259,-1.54041713476181,-0.64714615046978,0.065057756844908,-1.51609545946121,-0.77185034006834,0.0222609005868435,-1.44348981976509,-1.00617432594299,-0.614130511879921,-1.48018604516983,-0.827719658613205,-0.188102859181527,-0.623065620660782,-1.00927282124758,-0.534484446048737,-0.452017039060593,-1.0284481793642,-0.906482756137848,-0.113284289836884,-0.670947343111038,-0.832640707492828,-0.0604232549667358,-0.0535344779491425,-0.579538561403751,-0.395639181137085,0.828053966164589,-0.18808173415735,-1.31113377213478,-1.018210478127,-0.948182106018066,-1.14389149844646,-0.793620347976685,-1.12192876636982,-0.994508609175682,-0.0973880887031555,-1.23291374742985,-0.888239755295217,0.223524361848831,-1.34917885065079,-0.927607449702919,-0.0800051987171173,-0.695245057344437,-1.00083227828145,-0.796974241733551,-0.864916890859604,-0.340461075305939,-0.125917017459869,-1.00360512733459,-1.06718820333481,-0.765173673629761,-0.72966930270195,-1.15454173088074,-1.22293323278427,-0.240225639997561,-0.793064124882221,-1.41210687160492,-1.19421043992043,-1.11099016666412,-0.308322668075562,-0.89190998673439,-0.18143618106842,-0.15630891919136,-1.08844855427742,-0.899897456169128,-0.944813013076782,-1.09071457386017,-0.97268059104681,-0.83754900097847, +-1.2588307261467,-1.11897388100624,0.293282777070999,-0.64717760682106,0.130110263824463,0.493075855076313,-1.19868251681328,-0.841400133445859,0.168550997972488,-1.28747937083244,-0.96708089672029,-0.0758544355630875,-1.23414766788483,-1.21696224808693,0.147892020642757,-0.688916563987732,-0.0216226577758789,0.246790237724781,-1.19551599025726,-0.909580887295306,-0.418690230697393,-1.23355752229691,-0.846795218065381,-0.481686312705278,-0.709983319044113,-0.440479904413223,-0.548690766096115,-0.656880795955658,-0.928959682583809,-0.38887220621109,-0.887440919876099,-0.238400518894196,-0.155715435743332,-1.13039612770081,-1.02050400525331,-0.348883718252182,-0.742265462875366,0.189440131187439,0.501275680959225,-1.64638417959213,-0.533405408263206,0.0779018700122833,-1.25368764996529,0.228878796100616,-0.00357171893119812,-1.74715322256088,0.429681822657585,-0.528637766838074,-1.26939028501511,0.899260193109512,-0.472641795873642,-1.29668152332306,-0.615887146443129,-0.711594894528389,-0.835555523633957,-0.900930494070053,-1.49201416969299,-1.15248101949692,0.0851616710424423,-1.57785922288895,-1.27010190486908,0.282153397798538,-1.03246867656708,-1.20565751194954,0.324511811137199,-1.07544285058975,-0.886058300733566,-0.0157867670059204,-1.6971201300621,-0.518243715167046,0.671140938997269,-1.00123719125986,-0.12161649534346,0.740867093205452,-1.03162876516581,-1.02173647284508,1.71576446294785,-0.0226936563849449,-1.78693407773972,0.294915407896042,-0.14990821480751,-1.71429795026779,0.482504948973656,-0.617681115865707,-0.99490774422884,0.929102759808302,-0.546603389084339,-1.01325500756502,0.897591792047024,-0.50639633089304,-1.0850395411253,0.918989293277264,-0.559527494013309,-0.585469186306,0.832401685416698,-0.295324176549911,-0.499422878026962,0.812273696064949,-0.478164426982403,-0.960131347179413,1.74136483669281,0.157464876770973,-1.11741030961275,0.921952277421951,-0.12397387996316,-0.701814740896225,1.00501084700227,0.0522848442196846,-0.861249774694443,1.02971842139959,-0.15994302649051,-0.626428782939911, +0.932176595553756,0.167820941656828,-0.654926240444183,0.91271604411304,-0.0285836309194565,-0.788607567548752,0.919172383844852,-0.397471022792161,-0.620317012071609,0.852167792618275,-0.277624599635601,-0.240541517734528,1.67253345251083,0.497809052467346,-0.605038821697235,0.688707262277603,0.25129608809948,-0.7038354575634,0.962008524686098,0.061392892152071,-0.793622195720673,0.939986153505743,0.251608788967133,-0.626743316650391,0.914026657119393,0.166382573544979,-0.659278154373169,0.888841014355421,0.311929851770401,-0.636726498603821,0.914597803726792,0.195043250918388,-0.700076907873154,0.934555940330029,0.195161797106266,0.185228332877159,1.3202520608902,-0.74394653737545,0.123378306627274,0.617623895406723,-0.704190999269485,0.0541011095046997,0.596655666828156,-0.649444937705994,-0.0887138098478317,0.920391282765195,-0.637506008148193,-0.139821007847786,0.669684678316116,-0.583968937397003,-0.0645329058170319,0.625057607889175,-0.619251906871796,-0.641161143779755,1.48843711614609,0.0265544354915619,-0.387188352644444,0.807153008878231,-0.495556086301804,0.373651199042797,1.33428040146828,-0.639408111572266,-0.065660685300827,0.659293621778488,-0.592050462961197,-0.16039252281189,0.675736606121063,-0.698100864887238,-0.270415306091309,0.894932728260756,-0.624380528926849,-0.33416748046875,0.737450674176216,-0.566665470600128,-0.235922783613205,0.705225378274918,-0.666976749897003,-0.507990270853043,1.50947797298431,-0.171180322766304,-0.53793740272522,0.764590248465538,-0.356109917163849,-0.0572948157787323,1.45595961809158,-0.350952506065369,-0.628687091171741,0.791262045502663,-0.310551196336746,-0.553126633167267,0.779614061117172,-0.402701318264008,-0.394581377506256,0.759547010064125,-0.487200021743774,-0.63705587387085,0.851986683905125,-0.244291722774506,-0.577266544103622,0.84110452234745,-0.387002393603325,-0.38139271736145,1.50873792171478,0.393839254975319,-0.432665944099426,0.610702961683273,-0.076494425535202,-0.228165537118912,1.69837766885757,-0.00724941492080688,-0.726056814193726,0.898825194686651, +-0.0803098380565643,-0.465457737445831,0.762948624789715,-0.0556240379810333,-0.325801938772202,0.523203298449516,-0.0948881506919861,-0.0672547221183777,0.444165430963039,-0.182048052549362,-0.0875720977783203,0.286989264190197,-0.00326636433601379,-0.192819744348526,1.48896372318268,0.711768969893456,-0.480109512805939,0.732875630259514,-0.0121575891971588,0.317896485328674,1.59475356340408,-0.246473342180252,-0.109783887863159,0.451098173856735,-0.101860165596008,-0.450962722301483,0.7332668825984,-0.0827093720436096,-0.441801249980927,0.854076229035854,-0.403903856873512,-0.150275230407715,0.454033628106117,-0.0018007755279541,-0.339191019535065,0.693236976861954,-0.0882247090339661,-0.0996013581752777,-0.061754584312439,0.341410152614117,-0.406362295150757,-1.08295804262161,-0.107924135401845,0.318685829639435,1.27346113324165,0.327601686120033,-0.197586297988892,0.536781944334507,0.195477746427059,-0.434043705463409,-0.831831048999447,-0.147627646103501,-0.254544377326965,-0.764483876526356,0.0868541300296783,-0.264220833778381,-0.595513347536325,0.124815329909325,-0.437855660915375,-0.811754880473018,-0.11528698541224,-0.4736512824893,-0.179071068763733,0.106227114796638,-0.794781908392906,-1.0294544249773,-0.00998420268297195,0.556289116423613,-0.532113701105118,0.945485254749656,0.985605716705322,-0.552159339189529,0.790170527994633,0.49487092718482,-0.287835359573364,0.374762754887342,0.53477568179369,-0.127009689807892,0.0553143471479416,0.588271982967854,-0.255542695522308,0.303683787584305,-0.0605812391322615,-0.130833745002747,0.440338145941496,-0.133221477094658,-0.0214558243751526,0.161489009857178,-0.0392749096026819,-0.00240916013717651,0.0246630311012268,0.203200998022567,-0.301041007041931,0.763448011130095,0.467371381819248,-0.917782209813595,0.785372465848923,0.550934255123138,-0.854677498340607,0.679631173610687,0.848780110478401,-0.863274440169334,0.692612357437611,-0.227725389077364,-0.135497391223907,0.507149565964937,-0.255018251474212,-1.08043543994427,0.786241516470909,0.843483939766884, +-0.888883963227272,0.0877960324287415,0.515427924692631,-0.222154438495636,0.20943409204483,0.674240365624428,-0.913426607847214,0.442288890480995,-0.22772380543028,-0.0591545104980469,0.366829682141542,0.861063815653324,-1.14087474346161,-0.0460773035883904,0.369244858622551,-0.109524130821228,0.127782750874758,0.751925900578499,-0.98316041007638,0.161060366779566,-0.145129010081291,0.008392333984375,0.0167098343372345,0.744878336787224,-1.02300775051117,-0.146492823958397,0.0820964872837067,-0.0132423639297485,-0.106406576931477,0.692378461360931,-0.860939241945744,0.104297086596489,-0.227727022012459,-0.200088441371918,0.595207560807467,-0.00591540336608887,-0.344543099403381,0.552935928106308,0.01202592253685,-0.793156310915947,0.586904466152191,0.123964309692383,-0.111037611961365,0.102205753326416,0.519827574491501,-0.898067265748978,0.371823221445084,0.091616302728653,-0.00960761308670044,-0.110421776771545,0.713544994592667,-1.06793105602264,-0.183390319347382,0.151728481054306,-0.0403527021408081,-0.196065177209675,0.75043885409832,-1.02424653619528,-0.256005586590618,0.149336338043213,-0.45187896490097,0.532603532075882,0.3045374751091,-0.81657549738884,0.589922696352005,0.301695108413696,-0.900855358690023,0.600077241659164,0.383777409791946,-0.57489550113678,0.441722184419632,-0.240957329074469,-0.0855914354324341,0.28106352686882,0.170795395970345,-0.655826210975647,0.619051396846771,0.200279325246811,-0.80021957308054,0.515313118696213,-0.240232289672804,-0.0794593095779419,0.187314510345459,-0.259158843907699,-0.70822012424469,0.746084302663803,0.209431603550911,-0.087336540222168,0.030964732170105,0.68378321826458,-0.981903575360775,0.15296933054924,0.666409879922867,-1.00523095577955,0.179073184728622,0.557842195034027,-0.694899648427963,0.249904841184616,-0.255011048348095,0.0386262536048889,-0.0115646123886108,0.666248977184296,-0.659342721104622,0.050123542547226,0.596048817038536,-0.968687416985631,0.311432659626007,-0.255021794911954,-0.0476683974266052,0.18468177318573,0.153233379125595,0.0361263751983643, +-0.254664465785027,0.607119143009186,-0.80747577548027,-0.487260863184929,0.606247782707214,-0.624740108847618,-0.51528562605381,0.371549963951111,1.00516954064369,-0.518979839980602,-0.558324774910716,1.25072413682938,-0.809850353747606,0.591839790344238,-0.51233321428299,-0.517176620662212,0.419113516807556,-0.67004831880331,-0.143240660429001,-0.599281786985592,1.74381375312805,-0.0224224627017975,-0.029448390007019,1.44137501716614,-0.513857573270798,0.459421694278717,0.53927219286561,-0.470454499125481,0.242480039596558,1.29728949069977,-0.13606845587492,0.722952902317047,1.31744480133057,0.459609001874924,0.632004603743553,1.58918434381485,0.0365093983709812,0.630685463547707,1.52881294488907,-0.00789975374937057,-0.521908421069384,0.853927671909332,0.0061194896697998,-0.204505920410156,0.940835267305374,0.256386816501617,0.168813213706017,0.907680653035641,0.906151790171862,0.207107350230217,1.2817714214325,0.84678765013814,0.353868961334229,1.44466987252235,0.851606577634811,0.408855497837067,1.03987254947424,1.2051260471344,0.383370965719223,1.35957080125809,1.10435131192207,0.273635134100914,1.2533932030201,0.733086906373501,0.472755417227745,1.06563899666071,0.734068650752306,0.649499505758286,1.19651348888874,1.04423752427101,0.767650842666626,1.41975834965706,0.974627107381821,0.678758084774017,1.03148193657398,1.17793169617653,0.855744540691376,1.60935342311859,0.789629310369492,0.99724417924881,1.14811930060387,0.878850489854813,1.08904960751534,1.03303690999746,0.503692984580994,1.00693987309933,1.09311406314373,0.88166606426239,0.726381778717041,1.63613063097,0.804901391267776,0.803658455610275,1.0182157792151,0.959246426820755,0.603647857904434,1.81347811222076,0.189604073762894,1.19995158910751,1.04724369943142,0.619203954935074,1.20346240699291,0.918420351110399,0.390909112989902,1.07860803604126,0.976134065538645,0.861018419265747,0.598584592342377,1.62107461690903,0.879706710577011,0.995120167732239,0.828295972198248,1.11084473133087,0.775537014007568,1.76731669902802,0.0891815274953842,1.22548589110374, +1.16152481734753,0.573329538106918,1.35395938158035,0.863263925537467,0.186551801860332,1.31425225734711,1.10035367310047,0.490840002894402,0.664192140102386,1.80001121759415,0.552208483219147,1.17706446349621,0.774484038352966,0.357051722705364,0.752617418766022,1.81754547357559,0.11122665554285,1.2971171438694,1.1284811347723,0.280103083699942,1.23903393745422,0.793291613459587,0.216680154204369,1.08095356822014,1.30927962064743,0.320211574435234,0.689687356352806,1.79315090179443,0.423402391374111,1.17748920619488,0.89228355884552,0.409864507615566,0.248284481465816,1.01746584102511,1.19987286627293,0.165139731566342,1.00739381089807,1.21535348892212,1.22940105199814,0.993805631995201,0.309224497526884,1.1321003139019,0.992350235581398,0.635808423161507,0.749441891908646,0.897447444498539,1.0359793305397,0.774618193507195,0.953861945308745,0.930675558745861,0.750973254442215,1.0236529558897,0.928024720400572,0.775173306465149,1.00079491734505,0.915281068533659,0.566988170146942,0.978937802836299,1.13192385435104,1.14034956693649,0.908330710837618,0.829308807849884,0.680516332387924,0.982598982751369,1.04197276383638,1.19771680235863,1.01631095260382,0.489784732460976,1.07388466596603,1.05554841458797,0.634303521364927,1.00155717134476,0.985147841274738,0.863733179867268,1.37852209806442,1.0075333788991,0.125825792551041,1.50830525159836,0.913478579372168,0.0274816751480103,1.50050419569016,0.786918906494975,0.674952030181885,0.906068921089172,0.91490540234372,1.01034317910671,1.13346201181412,0.955513391643763,0.734007783234119,1.34730851650238,0.825131248682737,0.0551014542579651,1.50371032953262,0.878940936177969,0.188602611422539,1.29045337438583,0.928283792920411,0.473718233406544,1.26435482501984,1.02147577702999,0.445749290287495,1.49865078926086,0.964661225676537,-0.0412562116980553,1.40615582466125,0.874693259596825,0.587679445743561,1.31204545497894,-0.815846130251884,0.727703839540482,1.41650399565697,-0.844704575836658,0.383774325251579,1.60261201858521,0.802653312683105,0.123940370976925,1.50321459770203, +0.90149300545454,0.186333887279034,0.431540272315033,0.114388167858124,0.371937155723572,0.344251045831697,0.0635184645652771,0.229271836578846,0.391502451151609,0.0606856346130371,0.244168624281883,0.334077872335911,0.114635646343231,0.334560558199883,-0.149525463581085,0.00468957424163818,0.276785686612129,0.0601446144282818,-0.00818073749542236,0.0342906452715397,0.475881170481443,0.120371520519257,0.312647618353367,0.278168722987175,0.135456621646881,0.511259764432907,-0.00852472800761461,0.000737369060516357,0.0399162177927792,-0.00847905874252319,0.00653982162475586,0.0450599864125252,-0.0987497046589851,0.0103577375411987,0.245128825306892,-0.0721320938318968,-0.0451372861862183,0.330156967043877,-0.107665035873652,-0.0456319451332092,0.287353206425905,-0.0893905367702246,0.0104331970214844,0.058328315615654,-0.0853193402290344,0.00187796354293823,-0.00598700344562531,-0.156734958291054,-0.0280139446258545,0.431336864829063,-0.129380153492093,0.0087590217590332,0.169482171535492,-0.110529731959105,0.0133550763130188,-0.142321478575468,-0.16453986777924,0.0111052989959717,0.0810438860207796,-0.152685140725225,0.00770193338394165,0.0211960524320602,-0.0327734984457493,0.00103521347045898,0.0229925774037838,-0.0467167049646378,0.00425362586975098,0.123860061168671,-0.234603922814131,0.0394078493118286,0.353079214692116,-0.172359109856188,-0.00965511798858643,0.221063578501344,-0.0833213350269943,-0.00329488515853882,0.210964567959309,-0.119760324247181,0.0546389222145081,0.351719185709953,-0.170127796009183,0.0123221874237061,0.0629080627113581,-0.230004327604547,0.0459313988685608,0.118575721979141,-0.423647359013557,0.0175045132637024,0.391535237431526,-0.613094061613083,-0.914641764014959,-1.07629176974297,-0.145134162868544,-0.785365954041481,-1.10758285224438,0.210778996348381,-0.897864289581776,0.926641145721078,-0.294743298926051,-0.894603993743658,0.869768708944321,-0.898607507348061,-0.819071516394615,-1.00100749731064,-0.809095397591591,-0.81027315557003,-1.06922501325607,-0.810862839221954,-0.770601451396942, +-0.96705362200737,-0.785842448472977,-0.892265196889639,-1.01048076152802,-0.961254268884659,-0.809293568134308,-0.931356817483902,-0.684989929199219,-0.892533641308546,-1.04797312617302,-1.15531489253044,-0.761536374688148,-0.538942530751228,-0.762301206588745,-0.843559198081493,-0.871681485325098,-1.14207154512405,-0.867430180311203,-0.679021179676056,-0.693852663040161,-0.844246998429298,-1.05092567205429,-1.29348215460777,-0.865225106477737,-0.367773149162531,-1.30464231967926,-0.83997531235218,-0.321175027638674,-1.18627035617828,-0.804902106523514,-0.554101057350636,-1.08125266432762,-0.811232358217239,-0.762669116258621,-1.11182031035423,-0.822635129094124,-0.728012502193451,-1.19271737337112,-0.825142696499825,-0.583198308944702,-1.19497418403625,-0.867420293390751,-0.552175648510456,-1.2643666267395,-0.950088082812726,-0.370998777449131,-1.37821316719055,-0.902596903964877,0.0427193229552358,-1.4172919690609,-0.753551095724106,-0.00132672488689423,-1.26361003518105,-0.580935776233673,-0.156187471933663,-1.18003478646278,-0.637345224618912,-0.39680977165699,-1.2371808886528,-0.718494579195976,-0.37001920491457,-1.30898883938789,-0.833961732685566,-0.311042502522469,-1.27403026819229,-0.916349527426064,-0.307937622070313,-1.52492469549179,-0.696793417446315,-0.518152374774218,-1.57922410964966,-0.757153805345297,-0.248910024762154,0.344985127449036,1.17636129260063,0.385372720658779,0.254651725292206,1.28642624616623,-0.23913992010057,0.263078451156616,-0.269346833229065,-0.0789073929190636,0.202271223068237,-0.313201010227203,0.110063835978508,0.304666996002197,0.983018100261688,0.51411409676075,0.418816804885864,0.987251788377762,0.29111772030592,0.433008968830109,0.694108977913857,0.22469437122345,0.361680924892426,0.624814514070749,0.342834602110088,0.758714094758034,0.87854190915823,0.540890757925808,0.843510717153549,1.03404707461596,0.47672176361084,0.794060587882996,0.978133869706653,0.434866100549698,0.342880368232727,0.955253422260284,0.0443591773509979,0.236236870288849,1.05737148225307,0.690798245370388, +0.616246193647385,0.929744460619986,0.963313847780228,0.775266915559769,0.875871121883392,0.709308803081512,0.729510620236397,0.861451726406813,0.774826854467392,0.805476531386375,1.01575815677643,0.993087142705917,0.817477691918612,0.988214589655399,1.00896763801575,0.665000259876251,0.910682946443558,0.693520933389664,0.746584862470627,1.01585993170738,0.767666608095169,0.742052067071199,1.19529345631599,1.04108536243439,0.544202476739883,0.999622274190187,1.1498891711235,0.733220264315605,0.867054238915443,1.20763090252876,0.740292951464653,1.07734179496765,1.13693863153458,0.498848289251328,1.16606809198856,1.14936292171478,0.396265763789415,1.02700956910849,1.30397027730942,0.450534731149673,0.803512958809733,1.49220877885818,0.639325574040413,1.69664132595062,0.770091265439987,0.436701912432909,1.84520125389099,0.457160472869873,0.370397940278053,1.70976340770721,0.618806328624487,0.634230598807335,1.77394586801529,0.533712267875671,0.527482062578201,1.65431767702103,0.827716767787933,0.580429740250111,1.6370045542717,0.899696409702301,0.672941416501999,1.69899308681488,0.761743664741516,0.643304362893105,1.724669277668,0.726003497838974,0.549755766987801,1.67951935529709,0.889909476041794,0.537102848291397,1.65000939369202,0.963661313056946,0.547836542129517,1.65228581428528,0.915025293827057,0.521976441144943,1.61786806583405,0.965211033821106,0.469726294279099,1.59072929620743,1.06709712743759,0.568262383341789,1.56316155195236,0.962683647871017,0.148217540551286,1.59262979030609,0.986463442444801,0.482652872800827,1.3853305876255,-0.421347320079803,0.677055962383747,1.57809573411942,0.23642161488533,0.491227134130895,1.70304262638092,0.526716616004705,0.552011832594872,1.51328271627426,1.02296862006187,0.680668160319328,0.72142268717289,-0.414341360330582,0.887653007172048,0.728933691978455,0.09327432513237,0.980139114893973,0.813970350660384,0.444395437836647,1.0796792730689,0.945209616795182,0.279075127094984,0.552720576524734,0.904708504676819,-0.703661918640137,0.759862035512924,1.45781949162483,-0.414493963122368, +0.735904023051262,0.798062488436699,-0.386019617319107,0.46621810644865,0.655595541000366,-0.538843750953674,0.967827342450619,0.769022822380066,-0.0914410650730133,0.575022974051535,1.5681728720665,0.311912655830383,0.962936624884605,0.740978471934795,0.106138646602631,1.09838442504406,0.79025462269783,0.0163510143756866,1.14549401402473,0.776524484157562,0.282693229615688,0.446673206984997,1.86701816320419,0.304205626249313,1.14862833917141,0.856663636863232,0.129654228687286,1.25868481397629,0.881267476826906,0.122206911444664,1.28057399392128,0.486388653516769,0.470830552279949,0.831919014453888,1.70909339189529,0.451846059411764,1.27869421243668,0.891731823794544,0.300708977505565,1.20229904353619,0.886598978191614,0.414437122642994,0.577994704246521,1.06383323669434,-0.0451058745384216,0.699458509683609,0.640731155872345,-0.368452966213226,0.812432870268822,1.56138408184052,0.0733873546123505,0.896475002169609,0.642826274037361,0.0235422849655151,0.690929621458054,1.69844716787338,0.492587517946959,1.09843897819519,0.448465466499329,0.321593433618546,0.67003707587719,0.322135210037231,0.685433998703957,1.16320560872555,-0.92799323797226,0.190843820571899,0.803314119577408,1.33178919553757,-0.322247356176376,0.858064144849777,0.785616030916572,-0.296089291572571,0.694870367646217,-1.03393007814884,-0.320400416851044,0.97395271062851,-1.0146369189024,-0.419486790895462,0.833195179700851,-1.11440786719322,-0.483259052038193,0.621596738696098,-1.03347861766815,-0.356108129024506,0.294847246259451,-1.26009613275528,-0.796605423092842,0.299119891598821,-1.30296015739441,-0.862227991223335,0.72146774828434,0.0600603818893433,0.478563826531172,1.07913337647915,-0.608282007277012,0.391805589199066,0.846494629979134,-0.989711076021194,-0.0583600699901581,0.840416248887777,-1.05486352741718,-0.373541787266731,0.858620461076498,-1.08649069815874,-0.333596810698509,0.837992385029793,-0.980244234204292,-0.0766846537590027,0.66193462908268,-1.0401763021946,-0.301913022994995,0.709727168083191,-1.13023786246777,-0.519144915044308, +0.40435198135674,-0.103128373622894,0.155586622655392,0.96287726983428,-1.06244464963675,0.0490036383271217,0.912129402160645,-0.937455099076033,0.0113504976034164,0.918552234768867,-0.960038144141436,-0.179352235049009,1.11341417580843,0.848880277946591,0.509234078228474,1.02567291259766,0.796552520245314,0.383002936840057,0.388029217720032,-0.434859946370125,0.369393229484558,0.485054939985275,-0.366813711822033,0.469989687204361,0.054911196231842,0.440410673618317,0.91107302904129,1.0218203663826,0.602298676967621,0.607408421114087,0.919698342680931,0.830888603813946,0.517579909414053,0.393679618835449,-0.40193197503686,0.622289072722197,0.619914054870605,-0.911885445937514,-0.0093102902173996,0.61115363240242,-0.901648629456758,0.0075613409280777,0.470506548881531,-0.336506495252252,0.681353457272053,0.392768740653992,-0.395923495292664,0.609633214771748,-0.289631232619286,0.119229167699814,-0.0488727688789368,-0.276960253715515,-0.645670682191849,-0.155973434448242,-0.144530415534973,-1.24061849713326,-0.86327013745904,-0.0606561303138733,-0.928411692613736,-0.88719417154789,-0.24066948890686,-0.66694188117981,-0.215421855449677,0.282903358340263,0.525768786668777,-0.315134108066559,0.564252570271492,1.35383474826813,0.281718879938126,-0.188311338424683,-0.727798335254192,-0.439581096172333,-0.454765364527702,-0.507087618112564,-0.859215129166842,-0.179859161376953,-0.643345862627029,-0.194797396659851,-0.243732810020447,-0.889895886182785,-0.431398391723633,0.00399878621101379,-0.956002358347178,-0.907282121945173,0.487297483719885,0.596073225140572,-0.25071507692337,0.500145926140249,0.580386623740196,-0.274095177650452,0.448862880468369,0.420954301953316,0.619038045406342,0.605405241250992,-0.441015914082527,0.298491179943085,0.200921430252492,1.39896869659424,-0.236332535743713,0.827419884502888,0.687872350215912,-0.126547753810883,0.285129874944687,-0.438211917877197,0.182929813861847,0.273912876844406,-0.307963326573372,0.152066230773926,0.516302734613419,-0.215566024184227,0.394859790802002,0.407027751207352, +-0.383503183722496,0.326192080974579,0.391529649496078,-0.326449632644653,0.298952117562294,0.654036208987236,-1.1661629229784,-0.200791671872139,0.0429378747940063,0.679700568318367,0.483716815710068,0.692123040556908,-0.984641261398792,-0.171012625098228,0.791330769658089,-1.00761964172125,-0.0844752788543701,0.631064206361771,-0.485830202698708,0.342431724071503,1.04141090810299,-0.610266081988811,0.320962607860565,1.07614850997925,0.4937639310956,0.267628848552704,0.667209636420012,0.608243301510811,1.18492144346237,0.883155956864357,-1.01827298849821,0.0333949327468872,0.507097810506821,1.43804377317429,0.29614269733429,1.01876126229763,0.698623403906822,0.212832003831863,0.942362021654844,-0.237038590013981,0.573183745145798,0.863271307200193,-0.199269030243158,0.427389740943909,1.05940888822079,0.70167063549161,0.313238471746445,0.938809492625296,0.738017782568932,0.27997425198555,0.312532544136047,0.596909672021866,1.17186295986176,0.91170646250248,-1.17683672904968,0.279223084449768,0.490936886519194,0.731780782341957,0.820822298526764,0.860609024763107,-0.251520086079836,0.828081518411636,0.862157121300697,-0.94515400857199,0.164549916982651,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265, +-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652,-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.76926136016846,-0.261380959302187,0.6716183796525,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.1068457365036,0.13796192407608,0.0313783367164433,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691,0.572726845741272,-1.3900682926178,-0.013750433921814,1.21348816156387,-1.27278581261635,-0.119221746921539,1.14687243103981,-0.843219459056854,-0.775745712220669,1.11347754299641,-0.815055370330811,0.113396227359772,0.84147909283638,-1.78576475381851,-0.445333380252123,0.680817991495132,-1.8573881983757,-0.3595836982131,0.514712370932102,-1.48924845457077,-0.521538123488426,0.527960291132331,-1.30924472212791,-0.634655669331551,0.648282304406166,-1.1993083357811,-0.705877680331469,-0.0706172585487366,-1.15140056610107,0.271077752113342,0.319701120257378,-1.32916265726089,-1.02971661090851,0.409512057900429,-1.22807687520981,-0.795051328837872,-0.351212419569492,-1.66363978385925,-0.207785099744797,0.23386637121439,-1.74367380142212,-0.192684188485146,0.609702579677105,-1.32176160812378,-0.69848321378231,0.881208807229996,-0.847666203975677,-0.0394957661628723,0.367522694170475,-1.51446527242661,-0.752846006304026,-0.318310737609863,-1.22892147302628,-0.165137529373169,-0.50804103910923,-1.13627916574478,-0.576050251722336,0.0160664021968842,-1.07020169496536,-0.324720740318298,-0.180400438606739,-1.21419191360474,-0.142573595046997,-0.507553994655609,-0.409888636320829,-0.0742899775505066,0.163055956363678, +-0.562116295099258,-0.533010303974152,0.44382718205452,-0.586373567581177,-0.993089020252228,0.626586884260178,-1.07162314653397,-0.415064722299576,0.834964320063591,-1.09524667263031,-0.328445017337799,0.551781967282295,-0.651187211275101,-0.854885801672935,0.797925412654877,-0.679375737905502,-0.510313481092453,0.877387038897723,-1.05301705002785,-0.516117691993713,0.66799832880497,-1.16166859865189,-0.631425730884075,0.301824301481247,-0.792653501033783,-0.69788484275341,0.573563903570175,-0.89102777838707,-0.442252278327942,0.519388556480408,-1.0445873439312,0.792058020830154,1.26248294115067,-1.17509192228317,0.125673592090607,0.868004083633423,-1.03148572146893,1.03292760252953,1.09991902112961,-1.5929651260376,0.750573717057705,0.640035778284073,-1.50159198045731,-0.547327399253845,0.531930312514305,-0.88432502746582,-0.190878331661224,0.526199869345874,-1.32997810840607,-0.561771158128977,1.17491060495377,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042, +0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925,-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241,0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076, +1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653,1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013,0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996, +1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222,0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338,-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216, +0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072,1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331,1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314, +-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976,-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489,0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943, +0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026,1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368,-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536, +0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369,0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198,-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798, +-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003,-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207,-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024, +0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566,0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298, +0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515,0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084,-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078, +0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727,0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669,0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309, +-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085,-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093,-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132, +-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356,0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708,-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448, +1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204,0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439,-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934, +1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656,0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937,0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647, +1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336,0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039,1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572, +0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177,1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407,0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316, +0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133,0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795,0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267, +1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711,1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304,-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054, +1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083,1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519,0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731, +0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157,0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928,1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099, +0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009,1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978,0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662, +0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391,0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073,1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287, +-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376,0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912,-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441, +0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628,-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536,1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792, +0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081,0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127,0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029, +0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976,-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893,-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654, +-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186,0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072,0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136, +-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369,-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675,0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345, +-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132,-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155,0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213, +-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526,-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933,0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344, +1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411,1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192,0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296, +0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879,1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067, +1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444,0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072, +0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231,0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355, +-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498,0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599, +-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596,1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758, +0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133,0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178, +0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943,0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339, +-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073,0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476, +-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278,1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818, +0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705,1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524, +1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011,1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216, +0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487,0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538, +0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739,0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302, +0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552,0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642, +1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439,-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978, +0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782,0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005, +1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736,0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461, +1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578,0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848, +-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867,0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161, +-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058,-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362, +0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205,-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898, +-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954,0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637, +0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147,0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782, +0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484,-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176, +0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071,-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662, +0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405,1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716, +-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283,-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083, +-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409,0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335, +-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442,-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818, +-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243,-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792, +-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216,0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655, +-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329,-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955, +-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646,-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481, +-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401,-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051, +-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112,-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744, +-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174,-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603, +0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048,-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756, +-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822,-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839, +0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742,-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764, +-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147,-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042, +-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429,-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295, +-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914,-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801, +0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966,0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671, +-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852,-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707, +0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875,-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407, +-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539,-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412, +0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843,-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173, +-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614,0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653, +-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567,-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339, +0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235,-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601, +-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523,0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606, +0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357,-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869, +-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527,0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997, +-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559,1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779, +-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491,-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551, +-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145,-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494, +-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833,0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859, +-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687,-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978, +-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505,-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716, +-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589,-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575, +-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673,-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533, +0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182,-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657, +0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516,-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519, +-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696,-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205, +-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186,-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081, +-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727,-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359, +-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353,-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745, +-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283,-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848, +-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571,-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068, +-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452,-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652, +-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168,0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285, +-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248,0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805, +-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124,-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787, +-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595,-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069, +-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915,-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501, +-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719,-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016, +-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634,-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677, +0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942,0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878, +0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454,0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466, +1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382,0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425, +1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657,1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585, +1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039,1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915, +-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183,-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876, +0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169,0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963, +-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552,0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987, +-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391,0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038, +-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571,0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833, +-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928,-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499, +-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012,-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,1.61700159311295,0.242999859154224,-0.226044476032257,-0.368729919195175,-0.111302673816681,-1.41159296035767, +-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941,-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.179240807890892,-0.80996510386467,-1.56414943933487,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752,-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-1.43386590480804,0.734417945146561,0.614903017878532,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.68238508701324,0.32922638207674,-0.883319422602654,-0.882849395275116,-0.127865627408028,0.0330973267555237,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743, +0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438,-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,0.714810416102409,0.279693081974983,-0.203442215919495,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177, +-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598,-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Geometry: 2805100584784, "Geometry::Tongue_DownLeft_Morph", "Shape" { + Version: 100 + Indexes: *151 { + a: 23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,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,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,272,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,305 + } + Vertices: *453 { + a: -0.163236444815993,0.316608905792236,-0.45400333404541,-0.110726594924927,0.220363140106201,-0.484040260314941,-0.246851090341806,0.464320659637451,-0.748857021331787,-0.291880488395691,0.579027652740479,-0.636441230773926,-1.02622629515827,0.760498523712158,0.744402885437012,-1.20341229438782,0.579352378845215,0.125687599182129,-0.963314730674028,1.04166269302368,0.343765258789063,-0.857027232646942,1.0785698890686,1.13138866424561,-1.57173437811434,1.40104293823242,1.32053089141846,-2.01184570789337,1.12218236923218,0.457630157470703,-1.5072572492063,1.61498117446899,0.976916313171387,-0.988689959049225,1.79058265686035,1.84751415252686,-1.90204956382513,1.78813743591309,1.95364093780518,-2.00812232494354,1.34388542175293,0.979628562927246,-1.82475257664919,1.85025072097778,1.7632007598877,-1.30336195230484,1.9931526184082,2.00351619720459,-0.200106143951416,0.406716346740723,-0.506356239318848,0.108051806688309,0.180086135864258,0,0.108051776885986,0.180086135864258,0,-0.131125450134277,0.351021289825439,-0.415806770324707,0.108051806688309,0.180086135864258,0,-0.103855490684509,0.220879077911377,-0.434317588806152,0.108051776885986,0.180086135864258,0,0.108051776885986,0.180087089538574,0,-0.111229658126831,0.226613521575928,-0.524806499481201,0.108051776885986,0.180086135864258,0,-0.150555491447449,0.129169464111328,-0.633941650390625,0.108051776885986,0.180086135864258,0,-0.21868109703064,0.364002227783203,-0.710164546966553,0.108051810413599,0.180086135864258,0,0.108051806688309,0.180086135864258,0,-0.281650528311729,0.543350219726563,-0.795363903045654,0.108051776885986,0.180086135864258,0,-0.323653399944305,0.644194602966309,-0.828494548797607,0.108051776885986,0.180086135864258,0,-0.305092692375183,0.627612590789795,-0.693944454193115,0.108051776885986,0.180087089538574,0,0.108051776885986,0.180086135864258,0,-0.283467173576355,0.5438232421875,-0.610285758972168,0.108051776885986,0.180086135864258,0,-0.976772755384445,0.875030994415283,0.866182327270508,-0.449985658749938,0.554248332977295, +-0.0990705490112305,-0.469739556312561,0.676424503326416,-0.0683975219726563,-1.06711101531982,0.673501491546631,0.59266471862793,-0.418733149766922,0.438302516937256,-0.154390811920166,-1.13815784454346,0.609827518463135,0.365914344787598,-0.408720970153809,0.341751575469971,-0.259702682495117,-0.423448204994202,0.257369518280029,-0.378831386566162,-1.12829840183258,0.690921783447266,-0.0261240005493164,-0.405990481376648,0.288949012756348,-0.445245265960693,-1.11698222160339,0.786606788635254,-0.0926656723022461,-0.379314303398132,0.360768795013428,-0.529740333557129,-0.998615801334381,0.957512855529785,0.212958335876465,-0.477945692837238,0.73891544342041,-0.333733081817627,-0.449289321899414,0.628235340118408,-0.37602424621582,-0.921926945447922,1.14163446426392,0.45228099822998,-0.497931748628616,0.845081806182861,-0.304910182952881,-0.811174154281616,1.27879810333252,0.673996925354004,-0.482325792312622,0.954606056213379,-0.243752002716064,-0.759950399398804,1.22046995162964,1.02727890014648,-0.524710893630981,0.85565185546875,0.0257530212402344,-0.511022090911865,0.928935527801514,-0.0171470642089844,-0.887667775154114,1.03663635253906,1.09697341918945,-0.52323591709137,0.816135406494141,0.0192432403564453,-1.41918003559113,1.54899215698242,1.47762298583984,-1.27304143086076,1.14137172698975,0.970470428466797,-1.13051435351372,1.27201747894287,1.1616907119751,-1.71921256184578,1.25745248794556,1.15140438079834,-1.41368946433067,1.03967714309692,0.75071907043457,-1.87047344446182,1.19366025924683,0.843637466430664,-1.58027970790863,0.970215797424316,0.43718433380127,-1.74119532108307,0.939564228057861,0.120940208435059,-1.99211573600769,1.17419195175171,0.394406318664551,-1.7421942949295,1.04539108276367,0.00953197479248047,-1.91699469089508,1.28160905838013,0.455656051635742,-1.73572981357574,1.20872783660889,0.0199308395385742,-1.61194255948067,1.52068710327148,0.824322700500488,-1.28955578804016,1.52869415283203,0.595437049865723,-1.40686404705048,1.43630599975586,0.421204566955566,-1.39887550473213,1.71977567672729, +1.12453174591064,-1.17483758926392,1.63794088363647,0.759795188903809,-1.16630071401596,1.87287378311157,1.38187980651855,-0.939973950386047,1.80324172973633,1.03846645355225,-0.969878315925598,1.8643970489502,1.73486423492432,-0.843257427215576,1.54936170578003,1.52989864349365,-0.804293692111969,1.70035934448242,1.43769073486328,-1.07298719882965,1.71754789352417,1.82545852661133,-0.910048246383667,1.49337100982666,1.49844264984131,-1.83986404538155,1.87164211273193,2.03553295135498,-1.72601874172688,1.61874961853027,1.72778224945068,-1.64956787228584,1.72188949584961,1.83775806427002,-1.94676688313484,1.69746208190918,1.8316707611084,-1.79888930916786,1.51302766799927,1.57553100585938,-2.03271478414536,1.55769968032837,1.5047492980957,-1.91969746351242,1.37302732467651,1.25129985809326,-1.96714234352112,1.21131610870361,0.762463569641113,-1.99410057067871,1.40326261520386,0.996114730834961,-1.93248105049133,1.26646375656128,0.677387237548828,-1.95939183235168,1.56421327590942,1.21755409240723,-1.88059031963348,1.43618679046631,0.874884605407715,-1.85961627960205,1.77217817306519,1.66887283325195,-1.67412950098515,1.76382875442505,1.33490371704102,-1.72544524073601,1.67637062072754,1.23044395446777,-1.77958786487579,1.92706823348999,1.83004856109619,-1.61760240793228,1.8568868637085,1.42274951934814,-1.62194412946701,2.01780080795288,1.97168731689453,-1.49180394411087,1.94235372543335,1.61100769042969,-1.31799507141113,2.03520774841309,1.97027206420898,-1.18449103832245,1.93138408660889,1.90789985656738,-1.16319835186005,1.98578262329102,1.78392887115479,-1.41608941555023,2.01106929779053,2.10142230987549,-1.26714789867401,1.88992166519165,1.93768405914307,-1.91845273971558,1.8642430305481,1.95352458953857,-1.95333018898964,1.7822642326355,1.84969139099121,-1.94638645648956,1.6660795211792,1.45219039916992,-2.03082031011581,1.65385103225708,1.54905700683594,-1.86736446619034,1.94100856781006,2.02123737335205,-1.46024924516678,2.04755735397339,1.986403465271,-1.4849357008934,2.06644344329834,2.09626960754395,-0.33610463142395, +0.665955066680908,-0.809619903564453,0.108051776885986,0.180086135864258,0,-0.760261654853821,1.3183422088623,0.844394683837891,-0.474712252616882,0.980405330657959,-0.173447608947754,-1.03953212499619,1.91024303436279,1.55305671691895,-0.858912527561188,1.8172926902771,1.23848533630371,-1.27543902397156,2.02814531326294,1.72148513793945,-1.64715200662613,1.95419454574585,2.12191200256348,-1.68486255407333,2.01711130142212,2.11203098297119,-1.23606806993484,1.63472032546997,1.71501541137695,-1.47220033407211,1.81909608840942,1.95893859863281,-0.91038966178894,0.975683212280273,1.01810646057129,-0.974843502044678,1.40159368515015,1.38921928405762,-0.240240454673767,0.506894111633301,-0.572866439819336,-0.486417293548584,0.787151336669922,-0.0049281120300293,0.108051776885986,0.180087089538574,0,-0.115668892860413,0.221103191375732,-0.463557243347168,0.108051776885986,0.180086135864258,0,-1.18669867515564,0.594881057739258,0.219123840332031,-0.430276989936829,0.282042026519775,-0.332832813262939,-1.95996904373169,1.16061544418335,0.548367500305176,-1.67998671531677,0.956308841705322,0.207980155944824,-2.04230403900146,1.42161130905151,1.18270111083984,-1.95530581474304,1.26186466217041,0.896743774414063,-2.03739511966705,1.53246879577637,1.27166175842285,-1.77594095468521,1.39200782775879,0.54828929901123,-1.82875508069992,1.57133960723877,1.10865592956543,-1.05395996570587,0.836990833282471,-0.0532197952270508,-1.59551566839218,1.32110118865967,0.138707160949707,-0.172099828720093,0.198128700256348,-0.665771484375,-0.402864813804626,0.435389995574951,-0.497227191925049,0.108051776885986,0.180086135864258,0 + } + Normals: *453 { + a: -0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579,1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842, +-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941,-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387, +-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897,-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429, +-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461,-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.329245887696743,1.94907534122467,-0.144308499991894,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318,0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946, +0.00242036581039429,-0.13834481080994,0.0923748388886452,0.0320273637771606,-0.913065552711487 + } + } + Geometry: 2805100585360, "Geometry::Tongue_DownRight_Morph", "Shape" { + Version: 100 + Indexes: *5555 { + a: 0,2,3,5,6,8,9,11,12,14,16,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,43,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,74,75,76,77,78,79,80,81,83,84,85,86,87,88,89,90,91,92,93,97,100,101,102,103,104,105,107,109,110,111,112,113,114,115,116,117,118,119,121,122,123,124,125,126,127,128,129,130,131,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,250,251,252,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,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,315,326,327,330,334,335,337,338,339,344,354,364,367,371,372,373,380,382,386,387,388,394,405,406,409,413,414,416,417,418,423,433,443,446,450,451,452,459,461,465,466,467,473,484,485,488,489,492,493,495,522,529,530,531,535,542,544,545,546,550,552,563,564,567,568,571,572,574,601,608,609,610,614,621,623,624,625,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,1315,1316,1317,1318,1319,1320,1321,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,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,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1426,1427,1428,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,1508,1509,1510,1511,1512,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,1568,1569,1570,1572,1573,1574,1575,1576,1577,1578,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,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,1642,1644,1645,1646,1647,1649,1650,1651,1652,1653,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,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,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,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,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,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,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,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,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,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2291,2292,2293,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,2370,2371,2372,2373,2374,2375,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,2433,2434,2435,2436,2437,2438,2439,2440,2441,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,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,2505,2507,2508,2509,2510,2512,2513,2514,2515,2516,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,2566,2567,2568,2569,2570,2571,2572,2573,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,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2642,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2665,2667,2668,2669,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2688,2690,2691,2692,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,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,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,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962, +2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3033,3034,3035,3036,3037,3038,3039,3042,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3065,3066,3067,3068,3069,3070,3071,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3099,3100,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3113,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3138,3139,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3205,3206,3207,3209,3210,3211,3216,3217,3218,3220,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400, +3401,3402,3403,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811, +3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4175,4176,4177,4178,4179,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4210,4216,4217,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4234, +4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4507,4508,4509,4510,4511,4512,4514,4515,4516,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648, +4649,4651,4652,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5017,5020,5022,5023,5024,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073, +5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488, +5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5823,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5866,5869,5871,5872,5873,5874,5877,5878,5965,5967,5995,5997,6028,6155,6440,6444,6453,6454,6459,6460,6461,6478,6481,6498,6499,6500,6505,6506,6515,6525,6526,6529,6530,6531,6536,6544,6552,6553,6554,7214,7347,7349,7377, +7379,7410,7537,7822,7826,7835,7836,7841,7842,7843,7860,7863,7880,7881,7882,7887,7888,7897,7907,7908,7911,7912,7913,7918,7926,7934,7935,7936,8591,8699,8700,8709,8715,8716,8717,8724,8725,8734,8740,8741,8742,8748,8749,8750,8758,8762,8764,8765,8766,8767,8768,8769,8770,8773,8774,8775,8783,8787,8789,8790,8791,8792,8793,8794,8795,8798,8799 + } + Vertices: *16665 { + a: 7.86781311035156e-06,0,0,7.86781311035156e-06,0,0,-8.7738037109375e-05,0,0,-8.7738037109375e-05,0,0,-8.83340835571289e-05,0,0,-8.83340835571289e-05,0,0,-0.000191152095794678,0,0.000197887420654297,-0.000191152095794678,0,-0.000197887420654297,-9.5367431640625e-05,0,0,-9.5367431640625e-05,0,0,-8.79764556884766e-05,0,0,-8.79764556884766e-05,0,0,-1.60932540893555e-06,0,0,-8.72611999511719e-05,9.5367431640625e-07,0,-1.61305069923401e-06,0,0,-8.72611999511719e-05,-9.5367431640625e-07,0,0.163240367546678,0.316608905792236,-0.45400333404541,0.291787505149841,0.579027652740479,-0.636441230773926,0.246855016797781,0.464320659637451,-0.748857021331787,0.110633611679077,0.220363140106201,-0.484040260314941,1.02622626908123,0.760498523712158,0.744402885437012,0.856939792633057,1.0785698890686,1.13138866424561,0.963314693421125,1.04166269302368,0.343765258789063,1.20332479476929,0.579352378845215,0.125687599182129,1.571542551741,1.40104293823242,1.32053089141846,0.988594651222229,1.79058265686035,1.84751415252686,1.50725719705224,1.61498117446899,0.976916313171387,2.01175034046173,1.12218236923218,0.457630157470703,1.90204951912165,1.78813743591309,1.95364093780518,1.30336964130402,1.9931526184082,2.00351619720459,1.82475256174803,1.85025072097778,1.7632007598877,2.00812995433807,1.34388542175293,0.979628562927246,-0.000589419156312943,0,0,7.86781311035156e-06,0,0,-8.83340835571289e-05,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-0.000191092491149902,0,0,-9.46521759033203e-05,0,0,8.34465026855469e-06,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-8.82446765899658e-05,0,0,-8.82148742675781e-05,0,0,-9.52482223510742e-05,0,0,-0.000191092491149902,0,0,-0.000191211700439453,0,0,7.62939453125e-06,0,0,-8.83340835571289e-05,0,0,7.86781311035156e-06,0,0,-9.32216644287109e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,7.62939453125e-06,0,0,-9.5367431640625e-05,0,0,-8.83340835571289e-05, +0,0,8.34465026855469e-06,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.52482223510742e-05,0,0,-9.52184200286865e-05,0,0,-9.44733619689941e-05,0,0,7.74860382080078e-06,0,0,7.62939453125e-06,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,7.74860382080078e-06,0,0,7.74860382080078e-06,0,0,-9.5367431640625e-05,0,0,8.34465026855469e-06,0,0,-8.74996185302734e-05,0,0,-8.82148742675781e-05,0,0,-9.5367431640625e-05,0,0,-8.53538513183594e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,8.40425491333008e-06,0,0,-9.52482223510742e-05,0,0,-8.84532928466797e-05,0,0,-8.83340835571289e-05,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.5367431640625e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-9.43541526794434e-05,0,0,-9.51290130615234e-05,0,0,-8.74996185302734e-05,0,0,-8.7738037109375e-05,0,4.76837158203125e-07,-8.74996185302734e-05,-1.43051147460938e-06,0,-9.39369201660156e-05,0,0,8.58306884765625e-06,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,-4.76837158203125e-07,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.5069408416748e-05,0,0,-9.51886177062988e-05,0,0,-9.52482223510742e-05,0,0,7.74860382080078e-06,0,0,-9.39369201660156e-05,0,0,-8.74996185302734e-05,1.43051147460938e-06,0,8.58306884765625e-06,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.131030261516571,0.351021289825439,-0.415806770324707,-0.108051829040051,0.180086135864258,0,-0.108139246702194,0.180084705352783,0,0.20001095533371,0.406716346740723,-0.506356239318848,-0.108139216899872,0.180087566375732,0,0.240145087242126,0.506894111633301,-0.572866439819336,-0.108147025108337,0.1800856590271,0,-0.108146905899048,0.180087089538574,4.76837158203125e-07,0.304997801780701,0.627612590789795,-0.693943977355957,-0.108139276504517,0.180087089538574,0,0.336016654968262,0.665955066680908,-0.809619903564453,-0.108137130737305,0.180086135864258,0,0.281662464141846,0.543351173400879,-0.795363903045654, +-0.108051832765341,0.180086135864258,0,-0.108146965503693,0.180086135864258,0,0.218693047761917,0.364001274108887,-0.710164546966553,-0.108146995306015,0.180086135864258,0,0.172111868858337,0.198128700256348,-0.665771007537842,-0.108147144317627,0.180086612701416,0,0.111134767532349,0.226613521575928,-0.524806976318359,-0.108146905899048,0.180087089538574,-4.76837158203125e-07,-0.108139276504517,0.180085182189941,0,0.115581393241882,0.221104621887207,-0.463557243347168,-0.108147144317627,0.180086135864258,0,1.06701567769051,0.673501491546631,0.59266471862793,0.449985349550843,0.554248332977295,-0.0990705490112305,0.418641448020935,0.438302516937256,-0.154390335083008,0.976677417755127,0.875030994415283,0.866182327270508,0.469647854566574,0.676424503326416,-0.0683979988098145,0.910293579101563,0.975683212280273,1.01810646057129,0.486326336860657,0.787151336669922,-0.00492763519287109,0.524612188339233,0.85565185546875,0.0257530212402344,0.75985586643219,1.22046995162964,1.02727890014648,0.511029601097107,0.928935527801514,-0.0171470642089844,0.760167121887207,1.3183422088623,0.844395637512207,0.474613070487976,0.980405330657959,-0.173447608947754,0.921934545040131,1.14163446426392,0.45228099822998,0.477945379912853,0.73891544342041,-0.333733081817627,0.497840046882629,0.845081806182861,-0.304910182952881,0.99862340092659,0.957512855529785,0.212958335876465,0.449197620153427,0.628235340118408,-0.37602424621582,1.05386459827423,0.836990833282471,-0.0532197952270508,0.40276563167572,0.435389995574951,-0.497227668762207,1.12820386886597,0.690921783447266,-0.0261240005493164,0.423349499702454,0.257369518280029,-0.378831386566162,0.40599799156189,0.288949012756348,-0.445245265960693,1.18670606613159,0.594881057739258,0.219122886657715,0.430178165435791,0.282042026519775,-0.332831859588623,1.71912515163422,1.25745248794556,1.15140438079834,1.27284961566329,1.14137172698975,0.970470428466797,1.41349819302559,1.03967714309692,0.75071907043457,1.41909262537956,1.54899215698242,1.47762298583984,1.13032308220863,1.27201747894287, +1.1616907119751,1.23597282171249,1.63472032546997,1.71501541137695,0.9747554063797,1.40159368515015,1.38921928405762,0.843169808387756,1.54936170578003,1.52989864349365,0.969782590866089,1.8643970489502,1.73486423492432,0.804301381111145,1.70035934448242,1.43769073486328,1.03944385051727,1.91024303436279,1.55305862426758,0.858920454978943,1.8172926902771,1.23848438262939,1.39878794550896,1.71977567672729,1.12453174591064,1.28955578804016,1.52869415283203,0.595437049865723,1.1747499704361,1.63794088363647,0.759795188903809,1.61185500025749,1.52068710327148,0.824322700500488,1.40677636861801,1.43630599975586,0.421204566955566,1.77585303783417,1.39200782775879,0.54828929901123,1.59542745351791,1.32110118865967,0.138707160949707,1.99202013015747,1.17419195175171,0.394406318664551,1.74110770225525,0.939564228057861,0.120940208435059,1.74220192432404,1.04539108276367,0.00953197479248047,1.95997643470764,1.1606125831604,0.548367500305176,1.67989134788513,0.956308841705322,0.207979202270508,1.94667932391167,1.69746208190918,1.8316707611084,1.72582690417767,1.61874961853027,1.72778224945068,1.79869863390923,1.51302766799927,1.57553100585938,1.83977648615837,1.87164211273193,2.03553295135498,1.64937719702721,1.72188949584961,1.83775806427002,1.64706379175186,1.95419454574585,2.12191200256348,1.47210532426834,1.81909608840942,1.95893859863281,1.18440318107605,1.93138408660889,1.9079008102417,1.31800270080566,2.03520917892456,1.97027111053467,1.1631031036377,1.98578262329102,1.78393077850342,1.46015357971191,2.04755735397339,1.986403465271,1.27535164356232,2.02814531326294,1.72148609161377,1.77949953079224,1.92707204818726,1.83004856109619,1.67412947118282,1.76382875442505,1.33490371704102,1.61751416325569,1.85688781738281,1.42275142669678,1.85952806472778,1.77217435836792,1.66887283325195,1.72535699605942,1.67636966705322,1.23044204711914,1.9462982416153,1.6660795211792,1.45219039916992,1.82865995168686,1.57133960723877,1.10865783691406,1.99410820007324,1.40326118469238,0.996115684509277,1.96705460548401,1.21131610870361,0.762462615966797, +1.93238580226898,1.26646375656128,0.677385330200195,2.04220879077911,1.42161130905151,1.18270111083984,1.9552184343338,1.26186466217041,0.896743774414063,1.91845273971558,1.8642430305481,1.95352458953857,1.8672693669796,1.94101095199585,2.02123737335205,1.6218558549881,2.01780080795288,1.97168731689453,1.68467217683792,2.01711273193359,2.11203002929688,1.95323497056961,1.78226184844971,1.84969139099121,1.95929610729218,1.56421327590942,1.21755409240723,2.0372998714447,1.53246879577637,1.27166175842285,-9.46521759033203e-05,0,0,-0.000191092491149902,0,0,8.34465026855469e-06,0,0,-8.83340835571289e-05,0,0,8.34465026855469e-06,0,0,-8.53538513183594e-05,0,0,-9.44137573242188e-05,0,0,8.58306884765625e-06,0,4.76837158203125e-07,0.15046751499176,0.129169464111328,-0.633941650390625,-0.108137130737305,0.180086135864258,0,1.11688768863678,0.786606788635254,-0.0926666259765625,0.379215121269226,0.360768795013428,-0.529740333557129,1.91690635681152,1.28160905838013,0.455654144287109,1.73573780059814,1.20872783660889,0.0199317932128906,1.88050282001495,1.43618679046631,0.874883651733398,2.03262650966644,1.55769968032837,1.5047492980957,2.03062999248505,1.65384960174561,1.54905796051025,1.87037825584412,1.19366025924683,0.843637466430664,1.91960233449936,1.37302732467651,1.25129985809326,1.13806176185608,0.609827518463135,0.365914344787598,1.58019149303436,0.970215797424316,0.43718433380127,0.103760123252869,0.220879077911377,-0.434317588806152,0.408630013465881,0.341751575469971,-0.259703159332275,-8.74996185302734e-05,0,0,-0.108147025108337,0.180087566375732,0,-9.5367431640625e-05,0,0,-8.7738037109375e-05,0,-4.76837158203125e-07,-8.82148742675781e-05,0,0,8.34465026855469e-06,0,0,8.34465026855469e-06,0,0,-9.5367431640625e-05,0,0,-0.000191211700439453,0,0,-0.000191092491149902,0,0,7.62939453125e-06,0,0,-8.82148742675781e-05,0,0,-8.74996185302734e-05,0,0,-9.51290130615234e-05,0,0,-9.47713851928711e-05,0,0,-8.79764556884766e-05,0,0,7.86781311035156e-06,0,0,0.283379673957825,0.543821811676025,-0.610285758972168,-0.108147144317627, +0.180086135864258,0,0.887675046920776,1.03663635253906,1.09697437286377,0.523137092590332,0.816135406494141,0.0192422866821289,1.07299470901489,1.71755075454712,1.82545852661133,0.909952878952026,1.49337100982666,1.49844360351563,1.41599416732788,2.01106929779053,2.10142230987549,1.26706051826477,1.88992166519165,1.93768405914307,1.4848405122757,2.06644344329834,2.09626960754395,1.16621273756027,1.87287378311157,1.38187980651855,1.49170881509781,1.94235372543335,1.61100578308105,0.811078786849976,1.27879810333252,0.673996925354004,0.939885675907135,1.80324172973633,1.03846645355225,0.32366544008255,0.644194602966309,-0.828495025634766,0.482226610183716,0.954606056213379,-0.243751525878906,-9.52482223510742e-05,0,0,-0.108147144317627,0.1800856590271,0,-8.84532928466797e-05,0,0,7.74860382080078e-06,0,0,-9.44733619689941e-05,0,0,-8.83340835571289e-05,0,0,7.74860382080078e-06,0,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-0.000226020812988281,-0.000553250312805176,-0.000223159790039063,0,-1.1444091796875e-05,0,1.04904174804688e-05,0.000925540924072266,2.00271606445313e-05,0,0.000253200531005859,0,6.67572021484375e-06,0.000121414661407471,0,0,-3.57627868652344e-06,0,1.66893005371094e-05,0.000357389450073242,9.5367431640625e-07,-9.5367431640625e-07,0.000230073928833008,0,-2.38418579101563e-06,-3.91304492950439e-05,0,-5.98430633544922e-05,-4.64916229248047e-06,-1.62124633789063e-05,-9.5367431640625e-07,0.000397086143493652,9.5367431640625e-07,1.43051147460938e-06,0.000261962413787842,0,-1.43051147460938e-06,0.000186920166015625,0,-5.24520874023438e-06,-8.89301300048828e-05,0,0,-3.30805778503418e-06,0,-1.43051147460938e-06,0.000735431909561157,0,0,0.000828742980957031,0,0,0.000902526080608368,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-0.000226020812988281,0.000553250312805176,0.000223159790039063,0,1.1444091796875e-05,0,1.04904174804688e-05, +-0.000925540924072266,-2.00271606445313e-05,0,-0.000253200531005859,0,6.67572021484375e-06,-0.000121414661407471,0,0,3.57627868652344e-06,0,1.66893005371094e-05,-0.000357389450073242,-9.5367431640625e-07,-9.5367431640625e-07,-0.000230073928833008,0,-2.38418579101563e-06,3.91304492950439e-05,0,-5.98430633544922e-05,4.64916229248047e-06,1.62124633789063e-05,-9.5367431640625e-07,-0.000397086143493652,-9.5367431640625e-07,1.43051147460938e-06,-0.000261962413787842,0,-1.43051147460938e-06,-0.000186920166015625,0,-5.24520874023438e-06,8.89301300048828e-05,0,0,3.30805778503418e-06,0,-1.43051147460938e-06,-0.000735431909561157,0,0,-0.000828742980957031,0,0,-0.000902526080608368,0,5.24520874023438e-06,0.000114977359771729,0,1.54972076416016e-06,4.99486923217773e-05,0,2.86102294921875e-06,0.000145077705383301,0,-7.96318054199219e-05,0.000614643096923828,5.7220458984375e-06,0,-0.000287890434265137,0,0,-0.000575125217437744,0,0,-1.57356262207031e-05,0,-7.62939453125e-06,-9.05394554138184e-05,-1.1444091796875e-05,-2.38418579101563e-06,-3.91304492950439e-05,0,0,0.000406146049499512,9.5367431640625e-07,1.43051147460938e-06,0.000117987394332886,0,-9.5367431640625e-07,0.000116556882858276,0,-3.33786010742188e-06,-3.72529029846191e-08,0,1.43051147460938e-06,1.01327896118164e-06,0,0,0.000543422996997833,0,0,0.00067293643951416,0,1.19209289550781e-06,0.000813741236925125,0,4.05311584472656e-06,-3.49283218383789e-05,0,5.24520874023438e-06,-0.000114977359771729,0,1.54972076416016e-06,-4.99486923217773e-05,0,2.86102294921875e-06,-0.000145077705383301,0,-7.96318054199219e-05,-0.000614643096923828,-5.7220458984375e-06,0,0.000287890434265137,0,0,0.000575125217437744,0,0,1.57356262207031e-05,0,-7.62939453125e-06,9.05394554138184e-05,1.1444091796875e-05,-2.38418579101563e-06,3.91304492950439e-05,0,0,-0.000406146049499512,-9.5367431640625e-07,1.43051147460938e-06,-0.000117987394332886,0,-9.5367431640625e-07,-0.000116556882858276,0,-3.33786010742188e-06,3.72529029846191e-08,0,1.43051147460938e-06,-1.01327896118164e-06,0,0,-0.000543422996997833, +0,0,-0.00067293643951416,0,1.19209289550781e-06,-0.000813741236925125,0,4.05311584472656e-06,3.49283218383789e-05,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05, +0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,0.000153440982103348,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05, +0,0,0.00024259090423584,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,0.000153440982103348,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352, +0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609, +0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74264335632324e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,7.78436660766602e-05,0,0,0.000160187482833862,0,0,0.00016021728515625,0,0,7.95125961303711e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,0.000159502029418945,0,0,0.000159621238708496,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159859657287598,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05, +0,0,8.29696655273438e-05,0,0,0.000159740447998047,0,0,8.34017992019653e-05,0,0,7.73072242736816e-05,0,0,7.78436660766602e-05,0,0,8.28802585601807e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,7.67111778259277e-05,0,0,7.72476196289063e-05,0,0,0.000159680843353271,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,0.000160098075866699,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.96318054199219e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,8.30888748168945e-05,0,0,0.000159502029418945,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,8.36849212646484e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,8.4996223449707e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,7.82012939453125e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72774219512939e-05,0,0,0.000160127878189087,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,8.28802585601807e-05,0,0,7.65323638916016e-05,0,0,7.7366828918457e-05,0,0,0.00024259090423584, +0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.000159740447998047,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000241756439208984,0,0,7.74860382080078e-05,0,0,0.000160157680511475,0,0,8.28802585601807e-05,0,0,7.78287649154663e-05,0,0,8.34465026855469e-05,0,0,8.29100608825684e-05,0,0,0.000159680843353271,0,0,0.000159084796905518,0,0,0.000159680843353271,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,0.000159382820129395,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.26120376586914e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000160694122314453,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.27312469482422e-05,0,0,7.72774219512939e-05,0,0,0.000159621238708496,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.89165496826172e-05,0,0,7.67707824707031e-05,0,0,7.54594802856445e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.65323638916016e-05,0,0,0.000159502029418945,0,0,0.000160694122314453,0,0,7.70092010498047e-05,0,0,8.32080841064453e-05,0,0,7.82012939453125e-05,0,0,0.000160455703735352,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,0.000160127878189087,0,0,7.72774219512939e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05, +0,0,7.7366828918457e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,0.00016021728515625,0,0,0.00016021728515625,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,8.23140144348145e-05,0,0,7.53402709960938e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,0.00016021728515625,0,0,8.24928283691406e-05,0,0,7.74860382080078e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.67707824707031e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,0.000157833099365234,0,0,0.000156044960021973,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000154018402099609,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,7.74264335632324e-05,0,0,0.00016021728515625,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05, +0,0,8.30888748168945e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,0.000159084796905518,0,0,0.00016021728515625,0,0,0.000159561634063721,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,0.000153440982103348,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.29100608825684e-05,0,0,8.27312469482422e-05,0,0,8.09431076049805e-05,0,0,0.000159740447998047,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.78436660766602e-05,0,0,8.35061073303223e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.79032707214355e-05, +0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000160276889801025,0,0,0.000159680843353271,0,0,8.28802585601807e-05,0,0,0.000160165131092072,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,7.79628753662109e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.51018524169922e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,7.70092010498047e-05, +0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.70092010498047e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.34167003631592e-05,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,0.000160157680511475,0,0,8.35657119750977e-05,0,0,8.35657119750977e-05,0,0,1.13248825073242e-06,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.29398632049561e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,8.29100608825684e-05,0,0,7.66515731811523e-05,0,0,0.000160098075866699,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.2850456237793e-05,0,0,7.65323638916016e-05,0,0,8.51154327392578e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,8.10623168945313e-05,0,0,7.72476196289063e-05,0,0,8.46385955810547e-05,0,0,7.66515731811523e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945, +0,0,8.392333984375e-05,0,0,0.000159740447998047,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.65323638916016e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159740447998047,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,7.79628753662109e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,7.62939453125e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,0.00016021728515625,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,8.41617584228516e-05,0,0,0.000159263610839844,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,7.62939453125e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05,0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05, +0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72923231124878e-05,0,0,0.000159561634063721,0,0,7.72774219512939e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159382820129395,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,0.000160157680511475,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.68899917602539e-05,0,0,7.7366828918457e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,0.000160157680511475,0,0,8.33868980407715e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,8.29100608825684e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,7.66515731811523e-05,0,0,0.000159382820129395,0,0, +8.33272933959961e-05,0,0,8.32080841064453e-05,0,0,7.66515731811523e-05,0,0,8.16583633422852e-05,0,0,7.76052474975586e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,8.52346420288086e-05,0,0,0.000157833099365234,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.33272933959961e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.67707824707031e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.30292701721191e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000153440982103348,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,7.67186284065247e-05,0,0,8.34502279758453e-05,0,0,7.72476196289063e-05,0,0,8.34167003631592e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000152587890625,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.89165496826172e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05, +0,0,0.000160932540893555,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,7.65323638916016e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000153440982103348,0,0,8.34427773952484e-05,0,0,8.28802585601807e-05,0,0,8.28877091407776e-05,0,0,8.34465026855469e-05,0,0,7.73072242736816e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.35657119750977e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.4996223449707e-05,0,0,7.53402709960938e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.87973403930664e-05,0,0,7.54594802856445e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,8.22544097900391e-05,0,0,7.7269971370697e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0, +8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,8.2850456237793e-05,0,0,8.34167003631592e-05,0,0,0.000159591436386108,0,0,8.2850456237793e-05,0,0,7.73072242736816e-05,0,0,8.29696655273438e-05,0,0,0.00016021728515625,0,0,8.35061073303223e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,8.24332237243652e-05,0,0,8.45789909362793e-05,0,0,7.84397125244141e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,0.000160098075866699,0,0,8.27312469482422e-05,0,0,7.87973403930664e-05,0,0,7.89165496826172e-05,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,0.000159502029418945,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.26120376586914e-05,0,0,0.000159502029418945,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.26120376586914e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.67707824707031e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05, +0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.77244567871094e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,0.000159978866577148,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000165700912475586,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000165224075317383,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.65323638916016e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28653573989868e-05,0,0,7.72774219512939e-05, +0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.71284103393555e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,8.29696655273438e-05,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05, +0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,0.000153440982103348,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,0.000153440982103348,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000153440982103348,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,0.000153440982103348,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,0.000153440982103348,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,0.000153440982103348,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.29100608825684e-05,0,0,8.09431076049805e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05, +0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,0.000160127878189087,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.79032707214355e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,0.000159621238708496,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.24928283691406e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.77244567871094e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,8.29696655273438e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,0.000160276889801025,0,0,7.7366828918457e-05,0,0,0.000159680843353271,0,0,8.28653573989868e-05,0,0,7.67260789871216e-05,0,0,8.28802585601807e-05,0,0,7.72848725318909e-05,0,0,7.78436660766602e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.22544097900391e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,0.000159263610839844,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.71284103393555e-05,0,0,8.32080841064453e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05, +0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.77244567871094e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.32080841064453e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.77244567871094e-05,0,0,7.72774219512939e-05,0,0,8.34427773952484e-05,0,0,8.33868980407715e-05,0,0,8.34167003631592e-05,0,0,7.72774219512939e-05,0,0,0.000159598886966705,0,0,8.35657119750977e-05,0,0,0.000160157680511475,0,0,1.13248825073242e-06,0,0,8.35657119750977e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,8.35061073303223e-05,0,0,8.29398632049561e-05,0,0,8.29696655273438e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.33272933959961e-05,0,0,0.00016021728515625,0,0,0.000159680843353271,0,0,0.000159680843353271,0,0,7.7366828918457e-05,0,0,8.29100608825684e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.65323638916016e-05,0,0,8.34465026855469e-05,0,0,7.66515731811523e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,8.32080841064453e-05,0,0,8.51154327392578e-05,0,0,7.65323638916016e-05,0,0,8.26120376586914e-05,0,0,8.10623168945313e-05,0,0,8.34465026855469e-05,0,0,8.46385955810547e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0, +7.7366828918457e-05,0,0,7.66515731811523e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,0.000160098075866699,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.392333984375e-05,0,0,0.000159502029418945,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,7.74860382080078e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.00016021728515625,0,0,7.65323638916016e-05,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.29696655273438e-05,0,0,7.72476196289063e-05,0,0,0.000159740447998047,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,7.62939453125e-05,0,0,8.22544097900391e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.392333984375e-05,0,0,8.32080841064453e-05,0,0,0.000159263610839844,0,0,8.41617584228516e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,7.62939453125e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.34763050079346e-05,0,0,8.28802585601807e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.29696655273438e-05, +0,0,8.35657119750977e-05,0,0,8.2850456237793e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,0.000159978866577148,0,0,0.000159621238708496,0,0,8.33272933959961e-05,0,0,8.34465026855469e-05,0,0,7.67409801483154e-05,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,7.68899917602539e-05,0,0,7.71284103393555e-05,0,0,7.66515731811523e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000159561634063721,0,0,7.72923231124878e-05,0,0,7.72774219512939e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,7.67111778259277e-05,0,0,8.29696655273438e-05,0,0,0.000159382820129395,0,0,7.72476196289063e-05,0,0,0.000160157680511475,0,0,8.28877091407776e-05,0,0,7.78436660766602e-05,0,0,7.7366828918457e-05,0,0,7.68899917602539e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,2.14576721191406e-06,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,0.000153779983520508,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.73072242736816e-05,0,0,7.72774219512939e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,8.33868980407715e-05,0,0,0.000160157680511475,0,0,8.28653573989868e-05,0,0,8.33868980407715e-05,0,0,7.78436660766602e-05,0,0, +8.29100608825684e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,8.35061073303223e-05,0,0,8.32080841064453e-05,0,0,8.33272933959961e-05,0,0,0.000159382820129395,0,0,7.66515731811523e-05,0,0,7.66515731811523e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,7.76052474975586e-05,0,0,8.16583633422852e-05,0,0,8.52346420288086e-05,0,0,8.52346420288086e-05,0,0,7.77244567871094e-05,0,0,0.000157833099365234,0,0,8.33272933959961e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.7366828918457e-05,0,0,8.29696655273438e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.65323638916016e-05,0,0,8.27312469482422e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,0.000159621238708496,0,0,8.30292701721191e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,8.34371894598007e-05,0,0,8.28783959150314e-05,0,0,8.34502279758453e-05,0,0,7.67186284065247e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,8.35657119750977e-05,0,0,7.74860382080078e-05,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,0.000152587890625,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.71284103393555e-05,0,0,7.89165496826172e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05, +0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000160932540893555,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,7.77244567871094e-05,0,0,0.000159382820129395,0,0,7.70092010498047e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.79628753662109e-05,0,0,8.29696655273438e-05,0,0,8.29696655273438e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,8.34427773952484e-05,0,0,8.28877091407776e-05,0,0,7.73072242736816e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159621238708496,0,0,8.34465026855469e-05,0,0,8.35657119750977e-05,0,0,8.33272933959961e-05,0,0,7.84993171691895e-05,0,0,7.84397125244141e-05,0,0,8.35657119750977e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.53402709960938e-05,0,0,8.4996223449707e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.72611999511719e-05,0,0,7.54594802856445e-05,0,0,7.87973403930664e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.000159502029418945,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,0.00016021728515625,0,0,8.22544097900391e-05,0,0,8.29696655273438e-05,0,0,7.7269971370697e-05,0,0, +8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,8.29696655273438e-05,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,0.000159382820129395,0,0,8.33272933959961e-05,0,0,8.33868980407715e-05,0,0,8.34465026855469e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.51018524169922e-05,0,0,7.78436660766602e-05,0,0,8.2850456237793e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.24928283691406e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,7.74860382080078e-05,0,0,7.74860382080078e-05,0,0,7.72811472415924e-05,0,0,0.000159606337547302,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,0.00016021728515625,0,0,7.67707824707031e-05,0,0,8.35061073303223e-05,0,0,0.00016021728515625,0,0,8.45789909362793e-05,0,0,8.24332237243652e-05,0,0,7.84397125244141e-05,0,0,7.7366828918457e-05,0,0,8.2850456237793e-05,0,0,0.000159680843353271,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,7.78436660766602e-05,0,0,7.72476196289063e-05,0,0,0.000160098075866699,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,7.89165496826172e-05,0,0,7.87973403930664e-05,0,0,8.33272933959961e-05,0,0,8.2850456237793e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,8.29696655273438e-05,0,0,0.000159502029418945,0,0,8.32080841064453e-05,0,0,7.71284103393555e-05,0,0,8.27312469482422e-05,0,0,8.26120376586914e-05,0,0,7.7366828918457e-05,0,0,0.000160098075866699,0,0,7.74860382080078e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.41617584228516e-05,0,0,8.34465026855469e-05, +0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,0.000159502029418945,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.79628753662109e-05,0,0,8.32080841064453e-05,0,0,7.77244567871094e-05,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,0.000159740447998047,0,0,0.000165700912475586,0,0,7.72476196289063e-05,0,0,8.32080841064453e-05,0,0,0.000165224075317383,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,8.34167003631592e-05,0,0,8.34465026855469e-05,0,0,8.28802585601807e-05,0,0,0.000159591436386108,0,0,8.29696655273438e-05,0,0,7.73072242736816e-05,0,0,7.7366828918457e-05,0,0,0.000160157680511475,0,0,7.73072242736816e-05,0,0,0.000160098075866699,0,0,8.29100608825684e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,7.71284103393555e-05,0,0,7.72476196289063e-05,0,0,7.56978988647461e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,0.000159978866577148,0,0,8.27312469482422e-05,0,0,0.000159978866577148,0,0,8.29696655273438e-05,0,0,0.000165700912475586,0,0,7.77244567871094e-05,0,0,0.000160694122314453,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.79628753662109e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159978866577148,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.67707824707031e-05,0,0,0.00016021728515625,0,0,0.000159978866577148,0,0,8.34465026855469e-05,0,0,8.392333984375e-05,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,7.74860382080078e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,7.72476196289063e-05, +0,0,0.000159502029418945,0,0,7.70092010498047e-05,0,0,0.000159740447998047,0,0,8.34465026855469e-05,0,0,8.28653573989868e-05,0,0,8.28802585601807e-05,0,0,7.72774219512939e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.00016021728515625,0,0,0.000160098075866699,0,0,7.71284103393555e-05,0,0,8.2850456237793e-05,0,0,8.2850456237793e-05,0,0,0.000159382820129395,0,0,7.77244567871094e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,7.72774219512939e-05,0,0,7.72774219512939e-05,0,0,0.000159591436386108,0,0,8.34465026855469e-05,0,0,7.7366828918457e-05,0,0,8.34167003631592e-05,0,0,8.29100608825684e-05,0,0,7.67111778259277e-05,0,0,8.2850456237793e-05,0,0,7.79628753662109e-05,0,0,8.27312469482422e-05,0,0,0.000159382820129395,0,0,7.56978988647461e-05,0,0,7.7366828918457e-05,0,0,7.7366828918457e-05,0,0,0.000159502029418945,0,0,0.000154018402099609,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,7.67707824707031e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,8.29696655273438e-05,0,0,7.74860382080078e-05,0,0,7.67707824707031e-05,0,0,8.34465026855469e-05,0,0,8.41617584228516e-05,0,0,7.70092010498047e-05,0,0,0.000159502029418945,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,0.000159263610839844,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,0.000159740447998047,0,0,7.70092010498047e-05,0,0,7.72476196289063e-05,0,0,8.2850456237793e-05,0,0,7.33137130737305e-05,0,0,7.78436660766602e-05,0,0,8.32080841064453e-05,0,0,7.67707824707031e-05,0,0,8.29100608825684e-05,0,0,7.67707824707031e-05,0,0,7.74860382080078e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,7.77244567871094e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,0.000160098075866699,0,0,7.66515731811523e-05,0,0,7.54594802856445e-05,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,8.2850456237793e-05,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.29100608825684e-05,0,0,8.28802585601807e-05, +0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,0.000159382820129395,0,0,8.34465026855469e-05,0,0,8.34465026855469e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,7.65323638916016e-05,0,0,7.78436660766602e-05,0,0,7.71284103393555e-05,0,0,0.000159740447998047,0,0,7.71284103393555e-05,0,0,7.71284103393555e-05,0,0,8.26120376586914e-05,0,0,8.34465026855469e-05,0,0,0.000153779983520508,0,0,7.7366828918457e-05,0,0,8.35061073303223e-05,0,0,7.78436660766602e-05,0,0,7.73072242736816e-05,0,0,8.2850456237793e-05,0,0,7.7269971370697e-05,0,0,8.28802585601807e-05,0,0,8.28653573989868e-05,0,0,7.72625207901001e-05,0,0,7.72923231124878e-05,0,0,0.000160127878189087,0,0,8.34167003631592e-05,0,0,8.28653573989868e-05,0,0,0.000159591436386108,0,0,8.34167003631592e-05,0,0,7.73072242736816e-05,0,0,7.72476196289063e-05,0,0,8.28802585601807e-05,0,0,7.78138637542725e-05,0,0,8.2850456237793e-05,0,0,8.23140144348145e-05,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,0.000160165131092072,0,0,8.28802585601807e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.65323638916016e-05,0,0,0.000153440982103348,0,0,7.72848725318909e-05,0,0,0.000153440982103348,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,0.000153440982103348,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,0.000153440982103348,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05, +0,0,7.67260789871216e-05,0,0,8.2850456237793e-05,0,0,7.72848725318909e-05,0,0,7.72811472415924e-05,0,0,8.34465026855469e-05,0,0,8.28877091407776e-05,0,0,7.67111778259277e-05,0,0,8.34465026855469e-05,0,0,0.000160165131092072,0,0,7.72774219512939e-05,0,0,8.34167003631592e-05,0,0,8.343905210495e-05,0,0,0.000160172581672668,0,0,7.72848725318909e-05,0,0,8.28802585601807e-05,0,0,8.34167003631592e-05,0,0,8.34167003631592e-05,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.34465026855469e-05,0,0,8.29696655273438e-05,0,0,8.35061073303223e-05,0,0,8.34465026855469e-05,0,0,8.35061073303223e-05,0,0,7.7366828918457e-05,0,0,7.72476196289063e-05,0,0,7.7366828918457e-05,0,0,0.00016021728515625,0,0,7.72476196289063e-05,0,0,0.000159621238708496,0,0,8.2850456237793e-05,0,0,7.72476196289063e-05,0,0,8.33272933959961e-05,0,0,7.72476196289063e-05,0,0,7.71284103393555e-05,0,0,8.34465026855469e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,8.34465026855469e-05,0,0,8.27312469482422e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,8.24928283691406e-05,0,0,7.77244567871094e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,1.19209289550781e-06,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,8.33272933959961e-05,0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.34465026855469e-05,0,0,7.77244567871094e-05,0,0,7.65323638916016e-05,0,0,0.000159263610839844,0,0,7.77244567871094e-05,0,0,8.24928283691406e-05,0,0,8.34465026855469e-05,0,0,7.65323638916016e-05,0,0,7.77244567871094e-05,0,0,1.19209289550781e-06,0,0,8.34465026855469e-05,0,0,0.000159025192260742,0,0,7.70092010498047e-05,0,0,0.000159978866577148,0,0,0.000160127878189087,0,0,8.33272933959961e-05,0,0,0.000160127878189087,0,0,7.72476196289063e-05,0,0,0.00016021728515625,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,8.27312469482422e-05,0,0,0.00016021728515625,0,0,8.32080841064453e-05,0,0,8.27312469482422e-05, +0,0,8.27312469482422e-05,0,0,7.74860382080078e-05,0,0,7.72476196289063e-05,0,0,8.27312469482422e-05,0,0,7.72476196289063e-05,0,0,7.72476196289063e-05,0,0,0.000179648399353027,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000172775238752365,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000172775238752365,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0, +0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05, +0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000172775238752365,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000172775238752365,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,0.000172775238752365,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,0.000172775238752365,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,0.000172775238752365,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000172775238752365,0,0, +9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000172775238752365,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,0.000172775238752365,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05, +0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,0.000172775238752365,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000172775238752365,0,0,0.000179678201675415,0,0,0.000172775238752365,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05, +0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0, +0,0.000180244445800781,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,0.000179648399353027,0,0,8.71121883392334e-05,0,0,9.40561294555664e-05,0,0,0.000177860260009766,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180482864379883,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,0.000179708003997803,0,0,9.34302806854248e-05,0,0,9.3996524810791e-05,0,0,0.000180333852767944,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.46521759033203e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.78572463989258e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05, +0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.47578048706055e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179529190063477,0,0,0.00018465518951416,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.29832458496094e-05,0,0,8.63075256347656e-05,0,0,8.74996185302734e-05,0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,8.70823860168457e-05,0,0,9.27448272705078e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.83340835571289e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.60826873779297e-05,0,0,8.7738037109375e-05,0,0,8.47578048706055e-05,0,0,8.74996185302734e-05,0,0,9.31024551391602e-05,0,0,9.36985015869141e-05,0,0,0.00018012523651123,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,0.000178098678588867,0,0,9.29832458496094e-05,0,0,0.000173091888427734,0,0,0.000179648399353027,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,0.000182867050170898,0,0,8.67843627929688e-05,0,0,0.000174045562744141,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,0.00017973780632019,0,0,9.33706760406494e-05,0,0,8.71419906616211e-05,0,0,0.000180333852767944, +0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.97645950317383e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,0.000180363655090332,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179052352905273,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179678201675415,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,9.35792922973633e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000179529190063477,0,0,0.000180363655090332,0,0,0.000177741050720215,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.32216644287109e-05,0,0,9.40263271331787e-05,0,0,8.71121883392334e-05,0,0,0.000180348753929138,0,0,9.34004783630371e-05,0,0,8.64267349243164e-05,0,0,0.000179648399353027,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000186681747436523,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.000180363655090332,0,0,8.47578048706055e-05,0,0,0.000179886817932129,0,0,0.000182271003723145,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0, +0,0.000179767608642578,0,0,9.35792922973633e-05,0,0,0.000179529190063477,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.40263271331787e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.64863395690918e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,0.000177621841430664,0,0,9.41753387451172e-05,0,0,0.000186800956726074,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,0.00018000602722168,0,0,0.00018031895160675,0,0,8.7052583694458e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.59634780883789e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,9.38177108764648e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.40263271331787e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,8.65459442138672e-05,0,0,0.000179886817932129,0,0,0.000179708003997803,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.84668731689453e-05,0,0,0.000177860260009766,0,0,0.000180363655090332,0,0,8.70227813720703e-05, +0,0,0.000180244445800781,0,0,8.74996185302734e-05,0,0,0.00018000602722168,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,8.63075256347656e-05,0,0,9.27448272705078e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.60691070556641e-05,0,0,0.000180959701538086,0,0,0.000179529190063477,0,0,0.000180348753929138,0,0,0.000179678201675415,0,0,9.34302806854248e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.46521759033203e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179886817932129,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000177860260009766,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.63075256347656e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,0.000177741050720215,0,0,8.71419906616211e-05,0,0,0.000177145004272461,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.39369201660156e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,0.000177860260009766,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,0.000179886817932129,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.83340835571289e-05,0,0,0.000180363655090332,0,0,0.000179678201675415,0,0,0.00017973780632019,0,0,8.71121883392334e-05,0, +0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.71121883392334e-05,0,0,0.000179730355739594,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.71121883392334e-05,0,0,0.0001797154545784,0,0,9.40263271331787e-05,0,0,8.71047377586365e-05,0,0,8.64714384078979e-05,0,0,8.70972871780396e-05,0,0,0.000180333852767944,0,0,0.0001797154545784,0,0,0.000180333852767944,0,0,9.40188765525818e-05,0,0,9.34004783630371e-05,0,0,0.000180333852767944,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.40561294555664e-05,0,0,8.70823860168457e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.00018000602722168,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,0.000445127487182617,0,0.000357627868652344,0.000445127487182617,0,-0.000357627868652344,8.74996185302734e-05,0,0,0.000179290771484375,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.39369201660156e-05, +0,0,0.000179052352905273,0,0,0.000179052352905273,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,0.000172775238752365,0,0,-0.00196417793631554,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,0.000179529190063477,0,0,9.58442687988281e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,9.38177108764648e-05,0,0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.65161418914795e-05,0,0,9.40263271331787e-05,0,0,0.000180304050445557,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000182390213012695,0,0,0.000177264213562012,0,0,8.72611999511719e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.7738037109375e-05,0,0, +9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179767608642578,0,0,0.000179648399353027,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,9.36985015869141e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,8.64267349243164e-05,0,0,9.2625617980957e-05,0,0,9.40561294555664e-05,0,0,8.77305865287781e-05,0,0,0.000180341303348541,0,0,8.71047377586365e-05,0,0,9.33967530727386e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.45193862915039e-05,0,0,9.14335250854492e-05,0,0,0.000180363655090332,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.63075256347656e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000180244445800781,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.74996185302734e-05,0,0,8.60691070556641e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,0.000179529190063477,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.00018000602722168,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.44137573242188e-05,0,0,8.55922698974609e-05,0,0,8.74996185302734e-05,0,0,0.000172775238752365,0,0,8.70972871780396e-05,0,0,8.70898365974426e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,8.71121883392334e-05, +0,0,8.7052583694458e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,0.000172734260559082,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,0.000179886817932129,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.90493392944336e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,1.19209289550781e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0, +0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.25064086914063e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.36985015869141e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.58306884765625e-05,0,0,0.00017845630645752,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.64267349243164e-05,0,0,9.33930277824402e-05,0,0,9.34004783630371e-05,0,0,9.40337777137756e-05,0,0,0.000180244445800781,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.36985015869141e-05,0,0,9.29832458496094e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0, +0.000180482864379883,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179708003997803,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000179648399353027,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.78572463989258e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.7738037109375e-05,0,0,9.58442687988281e-05,0,0,9.39369201660156e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.7738037109375e-05,0,0,9.32216644287109e-05,0,0,9.33408737182617e-05,0,0,0.000180244445800781,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.7052583694458e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179708003997803,0,0,0.000180348753929138,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,0.0001797154545784,0,0,9.34004783630371e-05,0,0,0.000172775238752365,0,0,8.7101012468338e-05,0,0,0.000172775238752365,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.40263271331787e-05,0,0,8.70227813720703e-05,0,0,9.34302806854248e-05,0,0,9.33706760406494e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05, +0,0,8.47578048706055e-05,0,0,9.58442687988281e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.74996185302734e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.22679901123047e-05,0,0,9.41753387451172e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000172775238752365,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,0.000179711729288101,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,9.40263271331787e-05,0,0,8.70972871780396e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0, +0,0.000179678201675415,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,0.000180363655090332,0,0,8.72611999511719e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000173449516296387,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.79764556884766e-05,0,0,0.000180244445800781,0,0,8.7738037109375e-05,0,0,8.64267349243164e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.97645950317383e-05,0,0,8.90493392944336e-05,0,0,8.7738037109375e-05,0,0,8.90493392944336e-05,0,0,2.50339508056641e-06,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.35792922973633e-05,0,0,9.09566879272461e-05,0,0,8.72611999511719e-05,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,0.000179648399353027,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.3407928943634e-05,0,0,9.40337777137756e-05,0,0,9.32216644287109e-05,0,0,0.000179767608642578,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,0.000172775238752365, +0,0,0.000179708003997803,0,0,8.71047377586365e-05,0,0,9.34004783630371e-05,0,0,8.7738037109375e-05,0,0,9.3996524810791e-05,0,0,9.40263271331787e-05,0,0,9.34302806854248e-05,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,0.000180482864379883,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.52346420288086e-05,0,0,0.000180363655090332,0,0,8.46385955810547e-05,0,0,9.14335250854492e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,9.1552734375e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,9.77516174316406e-05,0,0,0.000179529190063477,0,0,0.000179290771484375,0,0,9.41753387451172e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,8.65459442138672e-05,0,0,9.29832458496094e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05, +0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332, +0,0,9.34302806854248e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.35792922973633e-05,0,0,8.78572463989258e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,9.34302806854248e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,0.000172775238752365,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,0.000172775238752365,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,0.000172775238752365,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.35792922973633e-05,0,0,9.38177108764648e-05,0,0,9.40561294555664e-05,0, +0,9.35792922973633e-05,0,0,8.6665153503418e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000179886817932129,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,0.000179290771484375,0,0,8.74996185302734e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,9.40263271331787e-05,0,0,8.65161418914795e-05,0,0,8.70227813720703e-05,0,0,9.34004783630371e-05,0,0,0.000180304050445557,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,0.000179648399353027,0,0,9.41753387451172e-05,0,0,8.73804092407227e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000177264213562012,0,0,0.000182390213012695,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.32216644287109e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,0.000179648399353027,0,0,0.000179767608642578,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.36985015869141e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.2625617980957e-05,0,0,8.64267349243164e-05,0,0,9.40561294555664e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,9.33967530727386e-05,0,0,8.71047377586365e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05, +0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,8.45193862915039e-05,0,0,8.71419906616211e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.96453857421875e-05,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000179767608642578,0,0,9.33408737182617e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.63075256347656e-05,0,0,0.000180244445800781,0,0,0.000179529190063477,0,0,8.65459442138672e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.74996185302734e-05,0,0,0.000179529190063477,0,0,8.60691070556641e-05,0,0,0.000179767608642578,0,0,0.000179529190063477,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.00018000602722168,0,0,8.72611999511719e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.63075256347656e-05,0,0,8.67843627929688e-05,0,0,9.44137573242188e-05,0,0,8.74996185302734e-05,0,0,8.55922698974609e-05,0,0,9.34004783630371e-05,0,0,8.70898365974426e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,8.7052583694458e-05,0,0,8.71121883392334e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,9.41753387451172e-05,0,0, +8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,8.65459442138672e-05,0,0,9.34600830078125e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,0.000172734260559082,0,0,9.35792922973633e-05,0,0,9.40561294555664e-05,0,0,0.000179886817932129,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.63075256347656e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.90493392944336e-05,0,0,0.000180244445800781,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,1.19209289550781e-06,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.65459442138672e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.34600830078125e-05,0,0,0.000179529190063477,0,0,9.39369201660156e-05,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,8.74996185302734e-05,0,0,9.25064086914063e-05,0,0,9.39369201660156e-05,0,0,8.67843627929688e-05,0,0,8.70972871780396e-05,0,0,9.34004783630371e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.65459442138672e-05,0,0,9.41753387451172e-05,0,0,9.40561294555664e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,0.000182390213012695,0,0,8.45193862915039e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,0.000180244445800781,0,0, +9.39369201660156e-05,0,0,0.000179290771484375,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,0.000179529190063477,0,0,8.70227813720703e-05,0,0,0.000179767608642578,0,0,8.65459442138672e-05,0,0,8.71419906616211e-05,0,0,9.40859317779541e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,0.000179767608642578,0,0,8.58306884765625e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,0.00017845630645752,0,0,9.33408737182617e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,9.40337777137756e-05,0,0,9.34004783630371e-05,0,0,9.33930277824402e-05,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,0.000179648399353027,0,0,0.000180244445800781,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.34004783630371e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.29832458496094e-05,0,0,9.36985015869141e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000180363655090332,0,0,8.70823860168457e-05,0,0,9.40263271331787e-05,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,0.000180482864379883,0,0,0.000179648399353027,0,0,8.70227813720703e-05,0,0,8.73804092407227e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.58442687988281e-05, +0,0,8.7738037109375e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,9.16719436645508e-05,0,0,0.000180482864379883,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,9.32216644287109e-05,0,0,8.7738037109375e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,0.000180244445800781,0,0,9.33408737182617e-05,0,0,8.65459442138672e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,8.64267349243164e-05,0,0,8.7052583694458e-05,0,0,8.70227813720703e-05,0,0,0.000180348753929138,0,0,0.000179708003997803,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,0.0001797154545784,0,0,8.7101012468338e-05,0,0,9.3407928943634e-05,0,0,8.71047377586365e-05,0,0,9.34302806854248e-05,0,0,8.70227813720703e-05,0,0,9.40263271331787e-05,0,0,9.33706760406494e-05,0,0,9.58442687988281e-05,0,0,8.47578048706055e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,0.000177979469299316,0,0,9.34600830078125e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.7738037109375e-05,0,0,9.40561294555664e-05,0,0,0.000180482864379883,0,0,0.000180482864379883,0,0,8.7738037109375e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,9.41753387451172e-05,0,0,8.57114791870117e-05,0,0,8.70823860168457e-05,0,0,9.39369201660156e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.72611999511719e-05,0,0,8.64267349243164e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.74996185302734e-05,0,0,9.36985015869141e-05,0,0,9.39369201660156e-05,0,0,0.000179529190063477, +0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.29832458496094e-05,0,0,9.32216644287109e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.35792922973633e-05,0,0,8.72611999511719e-05,0,0,9.58442687988281e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,0.000179529190063477,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,8.78572463989258e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.41753387451172e-05,0,0,9.22679901123047e-05,0,0,8.96453857421875e-05,0,0,8.70227813720703e-05,0,0,0.000180244445800781,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,8.72611999511719e-05,0,0,8.67843627929688e-05,0,0,0.000179529190063477,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,0.000179711729288101,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,8.70935618877411e-05,0,0,0.000180304050445557,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.40561294555664e-05,0,0,0.000180304050445557,0,0,0.000179678201675415,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.72611999511719e-05,0,0,0.000180363655090332,0,0,8.7738037109375e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,8.72611999511719e-05,0,0,0.000180244445800781,0,0,9.40561294555664e-05,0,0,8.73804092407227e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000173449516296387,0,0,8.79764556884766e-05,0,0,8.71419906616211e-05,0,0,0.000180244445800781,0,0,8.64267349243164e-05,0,0,8.7738037109375e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,8.90493392944336e-05,0,0,8.97645950317383e-05,0, +0,8.7738037109375e-05,0,0,2.50339508056641e-06,0,0,8.90493392944336e-05,0,0,9.34600830078125e-05,0,0,8.73804092407227e-05,0,0,8.72611999511719e-05,0,0,9.09566879272461e-05,0,0,9.35792922973633e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05,0,0,0.000179648399353027,0,0,9.36985015869141e-05,0,0,9.32216644287109e-05,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.32216644287109e-05,0,0,9.40337777137756e-05,0,0,9.3407928943634e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.40561294555664e-05,0,0,0.000179648399353027,0,0,9.34600830078125e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,0.000179767608642578,0,0,9.59634780883789e-05,0,0,9.32216644287109e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,0.000180721282958984,0,0,8.67843627929688e-05,0,0,8.72611999511719e-05,0,0,8.71047377586365e-05,0,0,0.000179708003997803,0,0,9.34004783630371e-05,0,0,9.40263271331787e-05,0,0,9.3996524810791e-05,0,0,8.7738037109375e-05,0,0,9.34302806854248e-05,0,0,8.71419906616211e-05,0,0,8.65459442138672e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,9.40561294555664e-05,0,0,9.40561294555664e-05,0,0,9.39369201660156e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,0.000180363655090332,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,9.33408737182617e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.64267349243164e-05,0,0,9.41753387451172e-05,0,0,8.72611999511719e-05, +0,0,9.39369201660156e-05,0,0,9.34600830078125e-05,0,0,8.71419906616211e-05,0,0,9.41753387451172e-05,0,0,0.000180482864379883,0,0,8.52346420288086e-05,0,0,9.40561294555664e-05,0,0,0.000180363655090332,0,0,9.14335250854492e-05,0,0,8.46385955810547e-05,0,0,0.000179767608642578,0,0,0.000179767608642578,0,0,8.70227813720703e-05,0,0,9.1552734375e-05,0,0,9.35792922973633e-05,0,0,8.71419906616211e-05,0,0,9.16719436645508e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.77516174316406e-05,0,0,0.000179290771484375,0,0,0.000179529190063477,0,0,9.41753387451172e-05,0,0,9.36985015869141e-05,0,0,8.67843627929688e-05,0,0,8.67843627929688e-05,0,0,9.39369201660156e-05,0,0,0.00018000602722168,0,0,0.000180244445800781,0,0,0.000180244445800781,0,0,9.34600830078125e-05,0,0,0.000180244445800781,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.44137573242188e-05,0,0,9.44137573242188e-05,0,0,8.63075256347656e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000180244445800781,0,0,9.32216644287109e-05,0,0,9.29832458496094e-05,0,0,8.65459442138672e-05,0,0,9.39369201660156e-05,0,0,8.71121883392334e-05,0,0,9.34004783630371e-05,0,0,9.34004783630371e-05,0,0,8.70972871780396e-05,0,0,0.000179708003997803,0,0,8.70227813720703e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,0.000180363655090332,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.72611999511719e-05,0,0,8.71419906616211e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,0.000179767608642578,0,0,8.96453857421875e-05,0,0,9.35792922973633e-05,0,0,8.96453857421875e-05,0,0,8.53538513183594e-05,0,0,8.71419906616211e-05,0,0,1.07288360595703e-06,0,0,9.41753387451172e-05,0,0,9.41753387451172e-05,0,0,9.35792922973633e-05,0,0,9.33408737182617e-05,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0, +9.29832458496094e-05,0,0,8.74996185302734e-05,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,1.43051147460938e-06,0,0,0.000180244445800781,0,0,8.70227813720703e-05,0,0,0.000179529190063477,0,0,0.00018000602722168,0,0,9.29832458496094e-05,0,0,8.70227813720703e-05,0,0,9.34600830078125e-05,0,0,8.70227813720703e-05,0,0,8.74996185302734e-05,0,0,9.46521759033203e-05,0,0,8.67843627929688e-05,0,0,8.63075256347656e-05,0,0,9.34600830078125e-05,0,0,9.39369201660156e-05,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,9.40412282943726e-05,0,0,9.40412282943726e-05,0,0,9.32216644287109e-05,0,0,8.60691070556641e-05,0,0,9.39369201660156e-05,0,0,9.32216644287109e-05,0,0,9.44137573242188e-05,0,0,9.39369201660156e-05,0,0,9.35792922973633e-05,0,0,8.79764556884766e-05,0,0,8.52346420288086e-05,0,0,9.13143157958984e-05,0,0,8.72611999511719e-05,0,0,0.000180482864379883,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.39369201660156e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,9.34600830078125e-05,0,0,9.40561294555664e-05,0,0,9.33408737182617e-05,0,0,0.000180363655090332,0,0,9.34004783630371e-05,0,0,9.34302806854248e-05,0,0,0.000180304050445557,0,0,0.000179708003997803,0,0,8.7738037109375e-05,0,0,0.000179708003997803,0,0,9.39369201660156e-05,0,0,8.70227813720703e-05,0,0,8.67843627929688e-05,0,0,8.70227813720703e-05,0,0,9.36985015869141e-05,0,0,8.70227813720703e-05,0,0,8.78572463989258e-05,0,0,9.35792922973633e-05,0,0,0.000180721282958984,0,0,8.71419906616211e-05,0,0,8.71419906616211e-05,0,0,8.73804092407227e-05,0,0,9.34600830078125e-05,0,0,8.72611999511719e-05,0,0,9.40561294555664e-05,0,0,8.70227813720703e-05,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.71121883392334e-05,0,0,9.34302806854248e-05,0,0,0.000180363655090332,0,0,8.6665153503418e-05,0,0,0.000180482864379883,0,0,8.70227813720703e-05,0,0,9.39369201660156e-05,0,0,0.000177860260009766,0,0,9.41753387451172e-05,0,0,8.71419906616211e-05,0,0,9.33408737182617e-05,0,0,9.35792922973633e-05, +0,0,8.70227813720703e-05,0,0,0.000180482864379883,0,0,9.40561294555664e-05,0,0,8.71419906616211e-05,0,0,8.70227813720703e-05,0,0,9.33408737182617e-05,0,0,8.71121883392334e-05,0,0,0.000180363655090332,0,0,0.000180333852767944,0,0,8.70972871780396e-05,0,0,9.33930277824402e-05,0,0,8.71047377586365e-05,0,0,8.70972871780396e-05,0,0,8.64714384078979e-05,0,0,9.40412282943726e-05,0,0,8.70972871780396e-05,0,0,8.71121883392334e-05,0,0,0.000179708003997803,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,8.70823860168457e-05,0,0,9.33706760406494e-05,0,0,9.40263271331787e-05,0,0,8.70823860168457e-05,0,0,0.000180341303348541,0,0,8.77305865287781e-05,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,0.000179708003997803,0,0,8.64565372467041e-05,0,0,0.0001797154545784,0,0,8.77156853675842e-05,0,0,8.70972871780396e-05,0,0,9.40263271331787e-05,0,0,0.0001797154545784,0,0,8.70823860168457e-05,0,0,8.64714384078979e-05,0,0,9.34004783630371e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.72611999511719e-05,0,0,8.70227813720703e-05,0,0,8.7738037109375e-05,0,0,8.74996185302734e-05,0,0,8.67843627929688e-05,0,0,9.46521759033203e-05,0,0,9.32216644287109e-05,0,0,8.67843627929688e-05,0,0,9.32216644287109e-05,0,0,9.46521759033203e-05,0,0,0.000180333852767944,0,0,0.000180333852767944,0,0,0,0.000311195850372314,0,0,0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,-7.62939453125e-06,1.9073486328125e-06,5.24520874023438e-06,0.000114977359771729,0,-2.38418579101563e-06,-3.91006469726563e-05,0,2.86102294921875e-06,0.000145107507705688,0,1.19209289550781e-06,-1.54972076416016e-05,0,0,0.000309064984321594,0,0,0.000778436660766602,0,0,0.0005522221326828,0,-5.26905059814453e-05,-0.000125586986541748,-6.19888305664063e-05,-4.93526458740234e-05,-8.84532928466797e-05, +-5.81741333007813e-05,0,0.000153422355651855,-0.000370025634765625,0,0.000217914581298828,0,0,8.65459442138672e-05,0,0,8.32080841064453e-05,1.43051147460938e-05,0,3.9219856262207e-05,5.7220458984375e-06,-6.67572021484375e-06,-2.78949737548828e-05,7.62939453125e-06,0,-1.02519989013672e-05,0.0002288818359375,3.33786010742188e-06,0.000103473663330078,9.918212890625e-05,0,1.66893005371094e-06,9.5367431640625e-07,4.29153442382813e-06,-1.35898590087891e-05,-2.86102294921875e-06,-1.19209289550781e-06,3.33786010742188e-06,1.9073486328125e-06,0,-0.000195503234863281,0,-3.814697265625e-06,-3.55243682861328e-05,4.76837158203125e-06,-7.51018524169922e-06,-6.52074813842773e-05,-1.04904174804688e-05,2.11000442504883e-05,-0.00030827522277832,-2.57492065429688e-05,0.000108718872070313,-0.000699043273925781,-9.5367431640625e-06,1.43051147460938e-06,0,0,0,-0.000311195850372314,0,0,-0.000519618391990662,0,1.43051147460938e-06,0,0,1.43051147460938e-06,0,0,-1.19209289550781e-06,0,0,-1.43051147460938e-06,7.62939453125e-06,-1.9073486328125e-06,5.24520874023438e-06,-0.000114977359771729,0,-2.38418579101563e-06,3.91006469726563e-05,0,2.86102294921875e-06,-0.000145107507705688,0,1.19209289550781e-06,1.54972076416016e-05,0,0,-0.000309064984321594,0,0,-0.000778436660766602,0,0,-0.0005522221326828,0,-5.26905059814453e-05,0.000125586986541748,6.19888305664063e-05,-4.93526458740234e-05,8.84532928466797e-05,5.81741333007813e-05,0,-0.000153422355651855,0.000370025634765625,0,-0.000217914581298828,0,0,-8.65459442138672e-05,0,0,-8.32080841064453e-05,-1.43051147460938e-05,0,-3.9219856262207e-05,-5.7220458984375e-06,-6.67572021484375e-06,2.78949737548828e-05,-7.62939453125e-06,0,1.02519989013672e-05,-0.0002288818359375,3.33786010742188e-06,-0.000103473663330078,-9.918212890625e-05,0,-1.66893005371094e-06,-9.5367431640625e-07,4.29153442382813e-06,1.35898590087891e-05,2.86102294921875e-06,-1.19209289550781e-06,-3.33786010742188e-06,-1.9073486328125e-06,0,0.000195503234863281,0,-3.814697265625e-06,3.55243682861328e-05,-4.76837158203125e-06,-7.51018524169922e-06, +6.52074813842773e-05,1.04904174804688e-05,2.11000442504883e-05,0.00030827522277832,2.57492065429688e-05,0.000108718872070313,0.000699043273925781,9.5367431640625e-06,1.43051147460938e-06,0,0,-2.38418579101563e-07,-3.55243682861328e-05,0,2.38418579101563e-07,-0.000365912914276123,0,0,-0.000880539417266846,9.5367431640625e-07,0,0.000715732574462891,0,0,0.000732406973838806,0,0,-7.75158405303955e-05,0,-2.38418579101563e-07,3.55243682861328e-05,0,2.38418579101563e-07,0.000365912914276123,0,0,0.000880539417266846,-9.5367431640625e-07,0,-0.000715732574462891,0,0,-0.000732406973838806,0,0,7.75158405303955e-05,0,-3.814697265625e-06,0.000305116176605225,0,7.15255737304688e-07,0.000402688980102539,0,5.00679016113281e-06,0.000412344932556152,0,-4.29153442382813e-06,-0.000235080718994141,0,-4.64916229248047e-05,0.000967323780059814,0,-6.19888305664063e-05,-1.47521495819092e-05,3.33786010742188e-05,6.67572021484375e-06,0.000166982412338257,-9.5367431640625e-07,-2.38418579101563e-07,-2.14278697967529e-05,0,1.43051147460938e-06,3.88696789741516e-05,-9.5367431640625e-07,0,-1.49011611938477e-06,0,0,3.33786010742188e-06,0,0,1.60932540893555e-06,0,-3.814697265625e-06,-0.000305116176605225,0,7.15255737304688e-07,-0.000402688980102539,0,5.00679016113281e-06,-0.000412344932556152,0,-4.29153442382813e-06,0.000235080718994141,0,-4.64916229248047e-05,-0.000967323780059814,0,-6.19888305664063e-05,1.47521495819092e-05,-3.33786010742188e-05,6.67572021484375e-06,-0.000166982412338257,9.5367431640625e-07,-2.38418579101563e-07,2.14278697967529e-05,0,1.43051147460938e-06,-3.88696789741516e-05,9.5367431640625e-07,0,1.49011611938477e-06,0,0,-3.33786010742188e-06,0,0,-1.60932540893555e-06,0,0,1.84774398803711e-06,0,0,-1.84774398803711e-06,0 + } + Normals: *16665 { + a: -5.96046447753906e-08,1.19209289550781e-07,-1.49011611938477e-08,-1.1659049987793,-0.240306973457336,-0.206896737217903,-0.91362801194191,0.00987720489501953,-0.584616392850876,-0.315505236387253,-0.177535176277161,-0.602321371436119,-0.0238613486289978,-0.151901692152023,-0.212686255574226,-1.54714077711105,0.13264188170433,-0.185500010848045,-1.63190442323685,0.721617460250854,-0.849068105220795,0.241949677467346,0.61326652765274,-1.06642097234726,0.315845966339111,0.746817134320736,-0.0226853489875793,-1.58790278434753,0.707280851900578,0.0987496972084045,0.196389615535736,0.613569051027298,-0.173858493566513,-1.07353696227074,0.400718525052071,-0.467532902956009,-0.262565977292468,1.13178808987141,-1.03472520411015,0.661272704601288,0.267456190660596,-0.971807222813368,-0.577152431873753,-0.250822067260742,-0.855090379714966,-1.6103520989418,0.635212957859039,-0.683784307911992,-0.262565495097746,1.13489134609699,-0.964952807873487,0.697275161743164,0.677558586001396,-1.17043136060238,-0.149451301194745,-0.976420057937503,-1.28964182734489,-1.12977015972137,0.546731071546674,-1.14108648896217,-0.262560766047955,1.13321454823017,-1.01409597694874,0.512479096651077,0.790224626660347,-1.19418434798717,-0.1192213770547,-0.824091777205467,-1.0277059674263,-0.872991800308228,0.766109511256218,-1.21790444850922,-0.262565093532643,1.11786057054996,-1.13944561779499,0.65999835729599,0.594155833125114,-1.40319779515266,-0.119221098150149,-0.8184584826231,-1.09465754032135,-0.786892170337596,0.678731635212898,-1.39530062675476,1.32694438077507e-05,0.794272989034653,-1.76285290718079,0.427553921937943,-0.00214863009750843,-1.80498343706131,-0.126888529018743,-0.560916796326637,-1.69107264280319,-0.576962461117764,0.184518061578274,-1.80296915769577,0.132576890289783,-0.693929007276893,-1.72950541973114,0.715978637337685,-0.551293283700943,-0.786050602793694,0.876180544495583,-0.355931997299194,-0.546775490045547,0.630455330014229,-0.69557312130928,-0.776318579912186,0.796452894806862,-0.415360361337662, +-0.626330703496933,0.79154759645462,-0.106117203831673,-0.186299085617065,0.839671313762665,-0.535577356815338,-0.48922923207283,0.949247539043427,-0.366987323388457,-0.287919461727142,0.268662847578526,-0.197270458564162,-0.0111240148544312,0.411970406770706,0.157732976600528,0.0330537557601929,0.389411985874176,-0.00877760350704193,0.0260049104690552,0.126983441412449,-0.00951297581195831,0.0197098851203918,0.496664598584175,0.298227241262794,0.276758372783661,0.516594409942627,0.236866280436516,0.31728321313858,0.348445206880569,0.464725688099861,0.485529184341431,0,0,0,0,0,0,-0.173207759857178,0.00329571962356567,-0.22746679186821,0.0804423689842224,-0.135921478271484,-0.159783110022545,0,0,0,-0.117996633052826,0.0398572087287903,-0.121108084917068,-0.06354820728302,-0.166589021682739,-1.11224439740181,1.67390990257263,0.72575618326664,-0.681934207677841,1.26531577110291,0.342943340539932,-0.814895525574684,1.45452672243118,0.608544915914536,0.000662341713905334,1.46635526418686,0.536575131118298,0.28445953130722,1.45164746046066,0.562000244855881,0.322098717093468,1.01495033502579,0.536569088697433,0.631489172577858,1.04566240310669,0.563195586204529,1.16566717624664,0.491116785444319,0.140301764011383,1.19132447242737,0.514489881694317,0.326853632926941,1.55876010656357,0.459985335357487,0.1402947306633,1.19131875038147,0.458434261381626,0.389728367328644,1.40130606293678,0.372907929122448,0.0549933910369873,1.36208045482635,0.246016263961792,0.361882299184799,1.54349368810654,-0.340577095746994,0.571585521101952,1.23827159404755,-0.460663944482803,0.426397055387497,0.778103828430176,-0.820277055725455,0.466323062777519,1.24812144041061,-0.9053242104128,0.871483474969864,0.665378987789154,-0.364988148212433,0.325641185045242,0.125706791877747,0.102074176073074,1.61029309034348,0.593057371675968,-0.0872480571269989,1.74319851398468,0.391083331778646,-0.0377517342567444,1.66545343399048,0.550613388419151,-0.000214040279388428,1.59159862995148,0.503235999494791,-0.0967036485671997,-0.0127399563789368,0.976374626159668, +0.300720572471619,0.479098677635193,0.962723433971405,0.344733685255051,0.73848369717598,1.03015640377998,0.0890948176383972,-0.0271596908569336,0.82762086391449,-0.676509574055672,-0.359152674674988,0.551482002949342,-0.959421277046204,-1.16326129436493,0.760719388723373,-0.692783981561661,-1.21905963122845,0.526253135409206,-0.576845362782478,-0.506674557924271,0.988237619400024,-0.684124600142241,-0.573771089315414,0.688344918191433,-0.867776937782764,-1.13124172389507,0.947983115911484,-1.78474742174149,-0.528798520565033,0.653056040406227,-1.59751683473587,0.545395985245705,1.06386560201645,-1.46187025308609,0.456311717629433,1.09790170192719,-1.14296078681946,1.36633294820786,0.874938905239105,-1.30512851476669,1.13229605555534,0.894664824008942,-0.944908827543259,1.31607159972191,0.47273375466466,-1.08429564535618,1.21030569076538,-0.0548610836267471,-0.701025322079659,1.19544932246208,-0.524195702746511,-0.722499698400497,1.26294994354248,-0.282003819942474,-0.637654334306717,1.17631858587265,-0.117711447179317,-0.542822182178497,0.840221144258976,-0.250451847910881,0.163792014122009,0.324541561305523,-0.360157787799835,0.0860351920127869,-0.115906327962875,-0.718861132860184,0.122333109378815,-0.0541703999042511,-0.39632149040699,-0.163210570812225,-0.607000403106213,-1.00094321370125,0.144031763076782,-0.387084454298019,-0.844503618776798,-0.745947822928429,-0.67016476392746,-1.14503875374794,-0.996002018451691,-0.677114486694336,-0.673074945807457,-0.709601581096649,-0.704269379377365,-0.9035584628582,-0.47817362844944,-0.721517503261566,-0.988898098468781,-0.669079583138227,-0.666833102703094,-1.1692096889019,-0.592600271105766,-0.637142211198807,-0.999902755022049,-1.0406131669879,0.281359016895294,-1.001324608922,-1.12001609802246,0.534238323569298,-0.665409803390503,-1.18505765497684,-0.0326904207468033,-0.836713202297688,-1.25743305683136,1.07243165373802,-0.607321448624134,-1.21464186906815,1.0004466176033,-0.494259297847748,-0.2899080067873,1.29819938540459,-0.962003039196134,-0.0707778545339579, +1.31727945804596,-1.06311938911676,-0.225016131997108,1.21928870677948,-1.08550932258368,-0.120483659207821,1.22050394117832,-0.975012172013521,-0.0527727752923965,1.28831431269646,-1.05253108590841,0.20459649618715,1.60866624116898,-0.80628751963377,0.225166417658329,1.27583503723145,-1.02904335409403,0.723320424556732,0.676974982023239,-1.12501092255116,0.758160121738911,0.279101312160492,-1.14875745773315,0.793807335197926,-0.0164120495319366,-1.31239604949951,0.508439189754426,-0.123756885528564,-1.16271796822548,0.533544685518763,-0.0476380586624146,-1.23407265543938,-0.0839923524401627,-0.612549155950546,-1.24820390343666,-0.092989646161584,-0.663598477840424,-1.40610229969025,-0.172895878553391,-0.560953438282013,-1.39662346243858,0.0839898160554924,-0.612549930810928,-1.24820226430893,0.102113215001664,-0.657251223921776,-1.42699712514877,-0.0486114605046892,-0.711059257388115,-1.31337341666222,-0.0463057362578354,-0.536107450723648,-1.42963519692421,-0.804812356829643,0.00140109658241272,-1.30235141515732,-0.806609734892845,0.588481694459915,-1.16165533661842,-0.86458217139463,-0.00521290302276611,-1.31113168597221,-0.34477371367214,1.59006315469742,-0.784155521541834,-0.451376247219741,1.5164400935173,-0.826769184321165,-0.0448401868343353,1.31562653183937,-1.00873353332281,0.0707716080045095,1.32350125908852,-0.898691534996033,-0.089731770567596,1.62784481048584,-0.746552344411612,0.233062066137791,1.59332525730133,-0.855175741016865,0.290106453001499,1.29820364713669,-0.907720075920224,0.427923887968063,1.18216849863529,-1.03835610300303,0.293757617473602,1.19696220755577,-0.966165126767009,0.841725066304207,0.931806832551956,-1.13507416844368,1.08922182023525,-0.0217419862747192,-1.20991438627243,1.08392922580242,0.000407874584197998,-1.24969300627708,0.661730289459229,-0.214364409446716,-0.981971874833107,1.08583980798721,-0.466913729906082,-1.02211394906044,0.522029913961887,-0.755223006010056,-0.794768616557121,0.22850395697111,-0.787172898650169,-1.06715446710587,0.0998819842934608,-0.686452805995941, +-1.04197707027197,0.71472180634737,-0.755223602056503,-0.794769249856472,0.731019087135792,-0.71498030424118,-0.819195665419102,0.774802349507809,-0.790024861693382,-0.585134394466877,0.759312644600868,-0.611985206604004,-0.571379512548447,-0.258309900760651,-0.0502771735191345,-0.987138628959656,-0.152606189250946,0.846320539712906,-0.940499439835548,-0.127729713916779,-0.209303185343742,-0.944474875926971,0.544468760490417,1.15386791527271,-0.625232480466366,0.32863861322403,1.19598719477654,-0.766843631863594,0.389984130859375,1.2972814142704,-0.992373257875443,0.837134820240408,1.18805815279484,-0.690298840403557,0.647952556610107,1.06690718233585,-0.826885432004929,1.04697918891907,0.886296175420284,-0.66654135286808,1.07444559037685,1.20327720046043,-0.403259858489037,1.06298063695431,1.30358755588531,-0.721705198287964,1.05710601806641,1.15382994711399,-0.733608990907669,1.73909616470337,0.772472411394119,-0.498104840517044,1.62197053432465,-0.0592213571071625,-0.470135569572449,1.72107344865799,0.0587413609027863,-0.386997237801552,1.39415782690048,-0.630734890699387,-0.453472390770912,1.33088719844818,-0.504769414663315,0.29581755399704,0.606170400977135,-0.440487086772919,0.327878542244434,0.951014391896004,-0.767935961484909,-0.256133735179901,0.791721351444721,-1.06961277872324,-0.498976781964302,1.01488871127367,-1.34480687975883,0.0720016732811928,0.909938283264637,-0.667615681886673,0.434433024376631,0.750713720917702,-0.660626083612442,0.335573568940163,0.842630885541439,-1.3493347465992,0.0894728377461433,0.0518627166748047,-0.785423636436462,0.211891502141953,-0.137132883071899,0.965166300535202,0.337584644556046,-0.32141774892807,0.192999958992004,0.320115134119987,0.36051070690155,1.4219696521759,0.109575420618057,0.489459067583084,1.23813787102699,0.233791381120682,0.47242183983326,1.02156898379326,-0.151274979114532,0.407966473155284,-0.0116966962814331,-0.341983139514923,0.699228078126907,0.63773301243782,-0.0622779726982117,0.677330926060677,-0.267061650753021,-0.833310637623072,0.512103393673897, +-0.0845223069190979,-0.460739618167281,0.703438729047775,-0.382531106472015,-0.695239692926407,0.772827863693237,-0.0453730225563049,-0.554872963577509,1.13465213775635,-0.601803451776505,-0.785153746604919,0.926006108522415,-1.40033829212189,-0.595672160387039,0.967311531305313,-1.55422955751419,-0.453352456912398,0.296293341554701,-1.57729494571686,-0.44446063041687,0.337003856897354,-1.70812374353409,0.00916454195976257,0.690128922462463,-0.417963683605194,-0.08154296875,0.407978513675062,-1.80055236816406,-0.346057832241058,-0.0958046093583107,-1.77607434988022,0.00497755408287048,0.0271096248179674,-0.775330170989037,0.263221621513367,0.0828102603554726,-0.982379540801048,0.541716337203979,-0.0918744951486588,-1.54514157772064,-0.29169362783432,-0.477068688720465,-1.78451603651047,-0.31963424384594,-1.21680420637131,-0.216619402170181,-0.0391316413879395,-0.722450852394104,-0.597825795412064,-0.188579678535461,-0.643091565929353,-1.56930994987488,-0.187347561120987,-0.750147968530655,-0.506004095077515,-0.775781722739339,-0.815795570611954,-0.137012600898743,-0.404649212956429,-0.433863821317914,-1.06839543581009,-0.855503335595131,-0.241925850510597,-1.10455231368542,-0.955935867503285,-0.361909672617912,-1.54679435491562,-0.883575677871704,-0.282019540667534,-1.02099765837193,-1.00720399990678,-0.982630006968975,-0.39678730070591,-0.579308748245239,-0.734700053930283,-1.50961565971375,-0.597671881318092,-0.896093904972076,-1.03758622705936,-0.950002137571573,-1.08368438482285,-1.53171128034592,0.419918712228537,-1.08210495114326,-1.16564670205116,0.578640997409821,-1.23884850740433,-1.11436980962753,0.337028086185455,-1.36570459604263,-0.562102094292641,1.29202389717102,-1.1251146197319,-1.09992703795433,0.702612515538931,-1.31340426206589,-1.3861477971077,0.0610151886940002,-1.50121957063675,-0.777759097516537,-0.815136730670929,-1.47673386335373,-0.941713571548462,-0.649120703339577,-1.27865743637085,-0.66695973277092,-1.03918877243996,-1.30494368076324,-0.60496448725462,-1.10492360591888,-1.33306241035461, +-1.03641629219055,-0.766393527388573,-1.38173854351044,-1.03452557325363,-0.742903411388397,-1.31385844945908,-0.689937949180603,-0.708683326840401,-1.27684116363525,-0.739922195672989,-0.843829989433289,-1.10947734117508,-0.729164570569992,-1.09945738315582,-1.1661376953125,0.696208834648132,-1.25937968492508,-0.883799776434898,0.517728611826897,-1.28703063726425,-0.811210602521896,1.45136564970016,-0.921583622694016,-0.818036496639252,1.15450862050056,-1.27228420972824,-0.970841273665428,1.07046014815569,-0.716172195971012,-0.974647432565689,1.03940561413765,-0.876314491033554,-0.785055458545685,1.49993401765823,-0.669500201940536,-0.757134318351746,1.50636100769043,-0.631573550403118,-0.972418397665024,1.62339007854462,-0.237881369888783,-0.329245887696743,1.94907534122467,-0.144308499991894,-0.476024217903614,1.79609715938568,-0.287575647234917,-0.894153416156769,1.25129035115242,-0.576352939009666,-1.38654607534409,0.7528195977211,-1.15907847881317,-0.544864811003208,1.76898729801178,-0.373380783945322,-0.576969921588898,0.507147401571274,-0.988418310880661,0.691659457050264,0.0868732929229736,-1.22142350673676,0.188148774206638,0.589308008551598,0.16241466999054,0.187553368508816,0.73603056371212,0.532328456640244,0.391488447785378,0.856711149215698,0.951763648772612,0.988034427165985,1.28781563043594,-0.550522789359093,0.762719742953777,0.578302323818207,-0.915189296007156,0.562068767845631,1.73156291246414,0.268642738461494,0.72830867767334,1.63895136117935,-0.0935665369033813,0.702015891671181,1.80767601728439,0.0715821126941592,0.596256361993774,1.76123362779617,0.273998470976949,0.344773926102203,1.88571286201477,-0.345818737521768,0.451373315416276,1.51643365621567,-0.826778702437878,0.36664542555809,1.8795268535614,-0.476494081318378,0.289740719162506,1.90431129932404,-0.338309021666646,0.346520926630518,1.52657026052475,-1.09694361686707,0.319237407124064,1.56416606903076,-1.01447227597237,0.410991318785232,1.38175541162491,-1.12161475419998,0.307928845286369,1.68536329269409,-0.89181911945343,0.404865604825318, +0.457049489021301,-1.67736893892288,0.0579869414499221,-0.0389494895935059,-0.474365130066872,0.0432001032855354,0.107021510601044,-0.428785352036357,-0.0665770433843136,-0.00335365533828735,-0.0816739439032972,-0.00255383551120758,-0.0615091919898987,-0.461111202836037,-0.0253404080867767,-0.00861775875091553,-0.698160737752914,-0.0715514831244946,0.00242036581039429,-0.13834481080994,0.0839811787009239,0.091889500617981,-0.479078248143196,0.0923748388886452,0.0320273637771606,-0.913065552711487,0.150744963437319,-0.39553701877594,-0.731160454452038,0.0642043994739652,-0.338101089000702,-1.00382301211357,0.0434647276997566,0.328438639640808,0.431268155574799,0.0921502858400345,3.33786010742188e-06,7.09295272827148e-06,0.23088277131319,0.599713534116745,0.509134322404861,0.709871180355549,0.162239789962769,-0.328357599675655,-0.133143305778503,-0.318960465490818,-0.859887212514877,0.0143154859542847,-0.324746146798134,-0.603236243128777,-0.00769162178039551,-0.467452868819237,-0.907380402088165,0.946789421141148,-0.92586836963892,-0.968319058418274,1.06830945611,-1.08656384050846,-0.987213402986526,1.47954815626144,-1.1687134206295,0.0450963824987411,1.33431059122086,-1.05754978954792,-0.549041563645005,1.34069746732712,-1.07716050744057,-0.299230173230171,0.990721821784973,-1.71219205856323,-0.0226743593811989,-0.749606654047966,-1.4373143017292,-0.053527295589447,0.417870632627682,-1.49124047160149,-0.747361738234758,0.291439018467145,-1.24392604827881,-0.908138711005449,-0.161382004618645,-1.05396319925785,-0.513744622468948,-0.138103778270306,-1.20143139362335,-0.750641033053398,0.0928217470645905,-1.28687325119972,-1.07516533136368,0.144291818141937,-1.34973454475403,-1.03733050823212,0.0991825759410858,-1.36009472608566,-0.968558892607689,-0.244180008769035,-1.28245422244072,-1.03268051147461,-0.351275617256761,-1.25350689888,-1.13461057841778,-0.715603224933147,-1.03310644626617,-1.20933783054352,-1.59126418828964,-0.978847846388817,-0.174214832484722,0.200937390327454,0.314069658517838,-0.133558943867683,0.168493628501892, +0.225637197494507,-0.0671213418245316,0.733682453632355,0.416774332523346,-0.0521146059036255,-0.0876694396138191,0.159301042556763,-0.600793495774269,-0.146719992160797,0.0995349884033203,-0.179686293005943,-0.589299134910107,0.174604773521423,-0.17395793646574,-0.574064254760742,0.121807754039764,0.266898948699236,-0.35359588265419,0.104142367839813,0.457534208893776,-0.405278563499451,0.121978342533112,0.380524829030037,0.737015515565872,0.538032203912735,-0.21436615427956,-0.546764254570007,0.500251471996307,-0.767827720846981,-0.213456615805626,0.722269922494888,-0.701753467321396,0.184491060674191,0.835591465234756,-1.03362150490284,0.0488698603003286,0.736472621560097,-0.741443127393723,0.461797818541527,0.414985239505768,-0.849419750273228,0.68174797296524,-0.111116349697113,-0.997287027537823,0.165670394897461,0.295464694499969,-0.500444114208221,0.743036568164825,-0.621981665492058,-1.16885763406754,0.871735795401037,-0.16445417702198,-1.40276217460632,1.0746888294816,-0.000389844179153442,-1.0696761533618,1.36485075950623,-1.23157405853271,-0.727332055568695,-0.498848378658295,-1.25450947880745,-0.599236831068993,-0.346892654895782,-1.41309398412704,-0.491753548383713,-0.390739500522614,-1.50808614492416,-0.287592258304358,-0.315913110971451,-1.12327319383621,0.320105105638504,0.422548428177834,-1.20918881893158,0.119166851043701,0.671828657388687,-1.25056737661362,0.126695454120636,0.980899393558502,-1.36358249187469,0.564809024333954,0.00742617249488831,-1.49335306882858,-0.621683776378632,-1.06951183080673,0.044293686747551,-0.737937182188034,-0.869004511332605,-0.649495929479599,-0.567525774240494,-0.584306225180626,-0.899750649929047,-0.54957589507103,-0.393604874610901,-0.209802389144897,-0.344795912504196,-0.135650992393494,0.181978642940521,-0.290093004703522,-0.161604985594749,0.385692477226257,-0.791899390518665,-0.0231092928443104,0.423402965068817,-0.530645191669464,-0.668128907680511,0.241285622119904,-0.511174738407135,0.640268750488758,0.504607528448105,-0.638111755251884,-0.863918073475361, +0.435806035995483,-0.0657691359519958,0.973607368767262,0.641239762306213,-0.32708440721035,0.766300393268466,0.439416646957397,-0.548276260495186,0.734565271064639,0.399895310401917,-0.555131360888481,0.495951473712921,0.211482346057892,-1.05847698450089,-0.489864364266396,0.08268141746521,-1.22465837001801,-0.645588040351868,0.0445109605789185,-1.25832206010818,-0.725154101848602,0.0470887422561646,-0.717179983854294,0.310177981853485,-0.741805136203766,-0.0238990783691406,0.489026233553886,-0.755321234464645,-0.184028089046478,0.658560295472853,-1.07980275154114,-0.946902813157067,0.474456533789635,-0.573379695415497,-0.185386836528778,-0.136478185653687,-1.00785091519356,0.0557433366775513,-0.0303171873092651,-1.46570014953613,-0.713334556668997,0.216726452112198,-1.14276897907257,-0.092072606086731,0.33055447274819,-1.07741183042526,-0.0916637778282166,0.433306839317083,-1.34795114398003,-0.651144549250603,-0.13226118683815,-1.38169622421265,-0.421652227640152,0.367417109089729,-0.542311042547226,-0.69436976313591,0.0580798983573914,-0.395844370126724,-0.514152407646179,-0.272970229387283,-0.140760540962219,-0.00278332829475403,-0.138300538063049,-0.0341156721115112,0.198432460427284,-0.0921300649642944,0.00200897455215454,1.38312751054764,0.367438234113905,-1.23037919402122,-0.703307420015335,-0.253841936588287,-1.11758391559124,-0.541653409600258,-0.562605053186417,-0.80489419400692,0.165252417325974,-0.673590034246445,-0.698625340126455,0.48616486787796,-0.654838681221008,-0.901299866847694,0.171961739659309,-0.240367963910103,-1.01991166546941,-0.692354738712311,-0.55964907258749,-0.370120882987976,-0.114611148834229,-0.309264957904816,-1.04088062047958,-0.513206735253334,-0.0961567759513855,-1.18201798200607,-0.554769217967987,0.0643689438118145,-0.865752227604389,-0.690634667873383,-0.739333346486092,-1.13006955385208,-0.203703165054321,-0.437032893300056,-0.200515568256378,-0.0516894161701202,-0.783853970468044,-0.972585558891296,-0.223340809345245,-0.997247755527496,-1.0265097245574,-0.14514034986496, +-1.01279227808118,-1.15835019946098,0.296451300382614,-0.470972508192062,0.00792717933654785,0.335340835154057,-0.893414698541164,-0.871059941127896,0.179856866598129,-0.832602277398109,-0.986160283908248,0.0287650674581528,-0.988109219819307,-1.25633856654167,0.151060543954372,-0.442878115922213,-0.0609989762306213,0.249958761036396,-1.10204917192459,-0.963410020805895,0.273718420416117,-1.2361276447773,-0.904961066320539,0.255561631172895,-0.52289129793644,-0.499953657388687,-0.579250246286392,-0.48067569732666,-1.05114276707172,-0.546607226133347,-0.641402471810579,-0.277776837348938,-0.152546912431717,-0.943304106593132,-1.07997775822878,-0.379443198442459,-0.606610536575317,-0.00869834423065186,0.19425605982542,-1.68027603626251,-0.653243198990822,-0.104777634143829,-1.28013017773628,0.272570371627808,0.0360900312662125,-1.88916218280792,0.166141077876091,-0.340020638424903,-1.26496630907059,0.81289941072464,-0.37643638253212,-1.32312405109406,-0.572195570915937,-0.671933144330978,-1.35880813002586,-0.663720667362213,-0.904618006199598,-1.49383008480072,0.125580683350563,-1.11223545670509,-1.41211086511612,0.0186126530170441,-0.843851548153907,-1.34766647219658,0.0609710663557053,-0.886825722176582,-1.22740736603737,0.0246322453022003,-1.23149636387825,-0.954065322875977,0.354286223649979,-1.30574747920036,-0.668372457417263,0.477179184556007,-1.12626397609711,-1.162254601717,1.54256498813629,0.248521275818348,-1.7825101017952,0.208554625511169,-0.0537028014659882,-1.85630691051483,0.218964204192162,-0.429063987452537,-1.54166370630264,0.665414851158857,-0.64123860001564,-1.56001096963882,0.633903883397579,-0.601031541824341,-1.52086114883423,0.602134577929974,-0.864037781953812,-1.02180264890194,0.791395835578442,-1.00395211577415,-1.07776314020157,0.789258971810341,-0.842327207326889,-1.10064947605133,1.56816536188126,0.428679808974266,-1.66416627168655,0.658264368772507,-0.218609090894461,-1.28015500307083,0.98199612274766,-0.311877936124802,-1.30667880177498,0.98443790525198,-0.143061526119709,-1.22375158965588, +0.97394478879869,-0.297899398952723,-1.24408182501793,0.921946598216891,-0.411894619464874,-1.23403659462929,0.873891867697239,-0.38058952242136,-1.19865727424622,0.829153068363667,-0.641787379980087,-0.712931647896767,1.7268334031105,-0.216215878725052,-1.2023616284132,0.730475455522537,-0.214424252510071,-1.28217571973801,0.93899380043149,-0.302769888192415,-1.22995565831661,0.898980303667486,-0.457019150257111,-1.22406612336636,0.955794850364327,-0.299337767064571,-1.13166828453541,0.943140964955091,-0.402095079421997,-1.30021673440933,0.923939997330308,-0.404689207673073,-1.3461087346077,0.927764348685741,-0.294445596635342,-0.403927251696587,1.32948261499405,-1.12725752592087,-0.473944500088692,0.659392088651657,-1.16991133987904,-0.591930717229843,0.589864075183868,-1.1390523314476,-0.671163082122803,0.774397573200986,-1.46709358692169,-0.722270280122757,0.523690968751907,-1.4135565161705,-0.710564732551575,0.618266016244888,-1.1088593006134,-1.13207378983498,1.45577651262283,-0.483717069029808,-0.773627251386642,0.614221476018429,-1.48922699689865,-0.272380627691746,1.32748880982399,-1.12901550531387,-0.729150921106339,0.668635815382004,-1.19178292155266,-0.732213020324707,0.625268578529358,-1.160630017519,-0.76132795214653,0.862272124737501,-1.13465203344822,-0.825080126523972,0.704790070652962,-1.0769369751215,-0.807743281126022,0.654757350683212,-1.12950590252876,-0.840620450675488,1.51456928253174,-0.59204038977623,-0.827450096607208,0.799207732081413,-0.888807073235512,-0.262602724134922,1.31070190668106,-1.46771174669266,-1.01512598991394,0.59833051264286,-1.30422210693359,-1.04403927922249,0.746953457593918,-0.912972822785378,-0.684094071388245,0.79416449368,-1.01989717781544,-0.926568567752838,0.886604167521,-0.776988878846169,-0.909896723926067,0.846195831894875,-0.807862460613251,-0.156644225120544,1.38512313365936,0.12920730561018,-0.32966947555542,0.604764550924301,-0.537853419780731,-0.433473445475101,1.55311995744705,-1.1240086555481,-1.01556950807571,0.933442678302526,-0.613006994128227,-0.362461268901825, +0.757010214030743,-0.516983032226563,-0.186571598052979,0.455086752772331,-1.0804808139801,0.0912461280822754,0.2250841781497,-0.440484132617712,0.0546184778213501,0.117258183658123,-0.163845777511597,-0.053589403629303,1.42084717750549,-0.273823693394661,-0.377113044261932,0.726937219500542,-0.473516583442688,0.68390303850174,1.0219496935606,-0.348339460790157,0.0487169623374939,0.232016921043396,-0.360296245664358,-0.347966253757477,0.727328471839428,-0.544068366289139,-0.217052757740021,0.730461440980434,-0.668535806238651,0.00822561979293823,0.234952375292778,-0.260236855596304,0.0268155336380005,0.120433107018471,-0.190090827643871,0.370788067579269,0.36809504032135,0.510801210999489,-0.0807356238365173,-0.665817588567734,0.126747913658619,0.460876405239105,1.10373005270958,0.16702227294445,-0.0390854477882385,0.317700691521168,-0.0629583336412907,-0.10841703414917,-0.414690594945569,0.0870444029569626,-0.389367580413818,-0.364088840782642,0.634958863258362,-0.399044036865234,-0.195118311792612,0.672920063138008,-0.112228989601135,-0.394614426419139,0.119385063648224,-0.0854621529579163,-0.0464825630187988,0.479909151792526,-0.685787975788116,-0.573725119233131,0.75500850006938,0.881915787737853,-0.114973247051239,1.18015730381012,1.45599514245987,-0.12230971455574,0.959561586380005,0.988567739725113,-0.138648569583893,0.743182182312012,0.922964811325073,0.00557881593704224,0.428996384143829,0.976461112499237,-0.122954189777374,0.677365824580193,0.433115573408031,0.0183530449867249,0.808757573366165,0.348647847947113,0.0770339965820313,0.567556440830231,0.371771029127558,0.0931295156478882,0.379692807793617,0.312194930627356,0.15468829870224,1.52844071388245,0.855560511350632,-0.785193704068661,1.15905450284481,0.961980193853378,-0.759138822555542,1.03466095030308,1.11427682638168,-0.424590811133385,1.37279891967773,0.288317126558127,-0.0305638313293457,0.950840830802917,0.337546092931916,-1.0242627710104,1.30053728818893,1.32535326480865,-0.790394142270088,0.493863463401794,0.964371174573898,-0.0849087238311768, +0.519747443497181,1.11297434568405,-0.79627451300621,0.978091299533844,0.28831871020521,0.0457790493965149,0.810520946979523,1.31000706553459,-1.00362902879715,0.26423604786396,0.788776308298111,0.0591142177581787,0.578444570302963,1.26796841621399,-0.878226850181818,0.604751631617546,0.293604969978333,0.125544428825378,0.552512243390083,1.21221850812435,-0.979526937007904,0.499284699559212,0.605144754052162,0.0351207256317139,0.503760479390621,1.28494280576706,-0.804766573011875,0.618592858314514,0.288315493623031,-0.095154881477356,1.03889882564545,0.517132863402367,-0.296180009841919,1.16310298442841,0.645538449287415,-0.820632562041283,1.25506848096848,0.757476836442947,-0.1385138630867,0.7703697681427,1.04287584125996,-0.849704176187515,0.981990277767181,0.340228362940252,0.0105754733085632,0.511585921049118,1.01813957840204,-1.14061915874481,0.538081884384155,0.674776747822762,0.0080103874206543,0.414101879112422,1.21777902543545,-0.980765722692013,0.389771936926991,0.356958087533712,-0.439175307750702,1.15968638658524,0.553149535320699,-0.796392410993576,1.21193039417267,0.550307168625295,-0.88067227229476,1.22208493947983,0.591399159282446,-0.562191843986511,1.06880503892899,-0.217183554569807,-0.0492007732391357,0.883433669805527,0.209749296307564,-0.62246161699295,1.24739304184914,0.293746143579483,-0.854048706591129,1.20772176980972,0.064362294136572,-0.15214741230011,0.908786714076996,-0.0105467836960997,-0.688037037849426,1.36809200048447,0.24838550388813,-0.0539719462394714,0.65930637717247,0.722737118601799,-0.948538981378078,0.781310975551605,0.690183654427528,-0.968840293586254,0.781443327665329,0.451361000537872,-0.621878892183304,0.851764380931854,-0.327163364918377,0.0810913443565369,0.665748298168182,0.759715795516968,-0.713171854615211,0.742532193660736,0.635002717375755,-0.935322823002934,0.939774304628372,-0.327174111482236,-0.00520330667495728,0.861994683742523,0.150663256645203,-0.0220394730567932,0.482583478093147,0.0838665366172791,-0.57026594877243,0.100135300308466,0.046027660369873,-0.246372148394585, +0.0540540404617786,0.0272474884986877,0.78730234503746,-0.225803069770336,-0.899673840214518,1.2911431491375,-0.344226587563753,0.031619668006897,-0.133965253829956,0.0521630458533764,-0.0125972628593445,-0.239513419568539,0.381778355687857,-0.839976786680416,1.45737817883492,-0.0438255667686462,-0.373750865459442,1.22350782155991,-0.220680803060532,0.115119218826294,0.321404997259378,-0.177277728915215,0.0017850399017334,1.01085391640663,-0.157471559941769,0.314635396003723,1.10965901613235,0.0388892292976379,0.185309290885925,1.30315566062927,-0.301833525300026,0.194863855838776,1.21195822954178,-0.312410041689873,-0.863257486373186,0.894346684217453,0.471743255853653,-0.548808395862579,0.722968071699142,0.549563586711884,-0.277882099151611,0.621651969850063,0.567808866500854,-0.239587962627411,0.995742738246918,0.508444726467133,-0.0544485449790955,1.23688408732414,0.430886805057526,0.122119084000587,1.02438231557608,0.687914907932281,0.0556896477937698,1.30281221866608,0.518243223428726,-0.162186473608017,0.936538487672806,0.428576618432999,0.0260601043701172,0.779610313475132,0.395725727081299,0.321818187832832,1.13975490629673,0.458129435777664,0.331317380070686,1.3787524998188,0.265999168157578,0.326258279383183,1.04143257439137,0.557673752307892,0.383354410529137,1.66365337371826,0.0756043791770935,0.56091071665287,1.10711345076561,0.170222550630569,0.761368289589882,0.976278327405453,-0.0824151039123535,0.708749249577522,1.13334541022778,0.353101059794426,0.373881973326206,1.64608126878738,0.184643447399139,0.475977137684822,0.961457196623087,0.373138338327408,0.316911444067955,1.7979878783226,-0.327607065439224,0.847451783716679,1.0571943372488,-0.00105398893356323,0.905271783471107,0.958651698194444,-0.137655891478062,0.54212898015976,0.978707436472178,0.29679611325264,0.00629264116287231,1.5915395617485,0.294322341680527,0.52273003757,0.882595922797918,0.396819800138474,0.423037208616734,1.7772673368454,-0.531076416373253,0.63319393992424,1.131989762187,-0.012054830789566,0.690469145774841,0.872606119140983, +-0.413180656731129,0.650762021541595,1.10969586670399,-0.10889245569706,0.0719001889228821,1.77047616243362,-0.0331758856773376,0.668606549501419,0.702628493309021,-0.0803183019161224,0.180796921253204,1.76707744598389,-0.351302497088909,0.704825192689896,1.09894607961178,-0.305281285196543,0.702554881572723,0.79586498439312,-0.347542151808739,0.639187157154083,1.26670283079147,-0.128543570637703,0.181229442358017,1.72129535675049,-0.0139676332473755,0.669031292200089,0.820428013801575,-0.0275055170059204,-0.193481929600239,0.974889051169157,0.751117721199989,-0.0895837502675931,1.0292041040957,0.8453249335289,0.93600283190608,0.990831479430199,-0.0255769193172455,0.799470134079456,0.997441545128822,0.214948356151581,0.177621394395828,0.846979416906834,0.573450177907944,0.266160279512405,0.8820064002648,0.493305534124374,0.457575034350157,1.0206788033247,0.593223303556442,0.481775086373091,0.997820764780045,0.580479651689529,0.312264688313007,1.00074809603393,0.761895298957825,1.30378857254982,0.896268518874422,0.591785706579685,0.900188773870468,0.864824794232845,0.879367314279079,0.865086622536182,1.02140226215124,0.0689246654510498,0.780486445873976,1.05257426202297,0.299502104520798,1.2212296128273,0.867373652756214,0.701127730309963,1.60327059030533,0.883918590843678,-0.138806156814098,1.9457431435585,0.336491014808416,0.106159210205078,1.86651074886322,0.214115036651492,0.57308591157198,1.13081741333008,0.7912906142883,0.745711229741573,1.35313445329666,0.837739203125238,0.571402333676815,1.76789730787277,0.497321199625731,-0.111240208148956,1.94114822149277,0.301953371614218,0.267280146479607,1.51012581586838,0.810509604401886,0.311112783849239,1.42779383063316,1.0094135850668,0.208226189017296,1.93608868122101,0.387673661112785,0.0374213233590126,1.82674461603165,0.546883210539818,0.421337783336639,1.76897615194321,-0.268445238471031,0.817377209663391,1.80514299869537,-0.420022912323475,0.516928017139435,1.96861857175827,0.229849442839622,0.0220742523670197,1.94065248966217,0.324505440890789,0.265011422336102, +0.820179275353439,0.539069831371307,0.505090847611427,0.814640471586245,0.493368089199066,0.398662894964218,0.861891876906157,0.490535259246826,0.413559682667255,0.722716875374317,0.539317309856415,0.467714250087738,0.362274080514908,0.18824428319931,0.540685325860977,0.553841426968575,0.141006052494049,0.402710072696209,0.86452017351985,0.54505318403244,0.445801310241222,0.735099419951439,0.682857513427734,0.600933134555817,0.470837191678584,0.233796417713165,0.457880631554872,0.50332048535347,0.190094530582428,0.308959625661373,0.413049839437008,0.193912446498871,0.50902846455574,0.407229825854301,0.187921762466431,0.748121380805969,0.311866413801908,0.123006403446198,0.738015025854111,0.359552713111043,0.147678911685944,0.368641667068005,0.408377472311258,0.15106475353241,0.362432423979044,0.355064585804939,0.155540764331818,0.695236504077911,0.319563096389174,0.146004736423492,0.479795522987843,0.371339593082666,0.111844897270203,0.263745952397585,0.281096449354663,0.240730226039886,0.667926140129566,0.286048839334399,0.124854028224945,0.556998461484909,0.386757951229811,0.169673562049866,0.473654396831989,0.370924338698387,0.283604204654694,0.666020356118679,0.216165978461504,0.485509753227234,0.980587631464005,0.273277207277715,0.219969809055328,0.80794583261013,0.334319708636031,0.276055693626404,0.753124862909317,0.328368539921939,0.569547027349472,0.892779633402824,0.275508521124721,0.241947114467621,0.649790316820145,0.220765573671088,0.492033302783966,0.74608413875103,0.0108676925301552,0.378599464893341,1.15215387940407,-0.164328455924988,-0.787461664527655,-0.39568030834198,0.29359981719108,-0.668213859200478,-0.571780443191528,0.656415313482285,-0.668239362537861,1.51352339982986,0.154022306762045,-0.767423894256353,1.55038017034531,-0.431267336010933,-0.77559070289135,-0.35522997379303,-0.341755226254463,-0.766792342066765,-0.423447489738464,-0.362097233533859,-0.643421351909637,-0.286442160606384,-0.627529308199883,-0.786972280591726,-0.349754154682159,-0.753632519394159,-0.796589910984039,-0.304273962974548, +-0.236224323511124,-0.765353541821241,-0.367361664772034,-0.720799840986729,-0.40044142305851,0.221676111221313,-0.678293406963348,-0.464572243392467,-0.139928221702576,-0.98375840485096,-0.76213726401329,-0.0182945728302002,-0.535539522767067,-0.738954082131386,-0.390199065208435,-1.20947435498238,-0.486238151788712,0.363980114459991,-1.45137184858322,-0.386242225766182,0.341452538967133,-1.22203287482262,-0.666918128728867,0.0520349144935608,-1.05747888982296,-0.774841696023941,-0.160298973321915,-0.904198560863733,-0.809931471943855,-0.100929647684097,-1.03440423309803,-0.719849780201912,0.0775282979011536,-1.23073670268059,-0.729436315596104,0.0539603233337402,-1.30012914538383,-0.812104105018079,0.235137194395065,-1.52494269609451,-0.448863817378879,0.705346889561042,-1.72710078954697,-0.199686616659164,0.582551561761647,-1.44005346298218,-0.406224727630615,0.401075067929924,-1.15626101195812,-0.600954562425613,0.205560371279716,-1.27294340729713,-0.580510601401329,0.236116766929626,-1.48543226718903,-0.659250684082508,0.246220037341118,-1.38051146268845,-0.843328771181405,0.293921917676926,-1.95663547515869,-0.266258518211544,0.00686664134263992,-1.96385061740875,-0.172597553580999,0.0603089332580566,0.0855922102928162,0.907480210065842,0.0843663513660431,0.0139567255973816,0.999990671873093,-0.260543024167418,-0.121548056602478,0.315209418535233,0.230311565101147,-0.0546551942825317,0.577661111950874,0.375241667032242,0.138117253780365,0.894396960735321,0.138749046251178,0.159423887729645,0.718370705842972,-0.00988864898681641,0.173616051673889,0.425227895379066,-0.0763119980692863,0.195131182670593,0.536193374544382,-0.0325304483994842,0.470699965953827,0.910067580640316,0.104743671603501,0.447198569774628,0.920180566608906,-0.000732943415641785,0.385743081569672,0.770348084508441,0.0141463279724121,0.102185368537903,0.668817847967148,0.0229560732841492,-0.0231560468673706,0.788490399718285,0.389791876077652,0.219934046268463,0.815877952612936,0.485859140753746,0.378954768180847,0.762004613876343,0.231854096055031, +0.44149649143219,0.892977397888899,0.338679768145084,0.605179727077484,1.13333582878113,0.640565291047096,0.563831314444542,1.03761098533869,0.569454990327358,0.256682753562927,0.702897161245346,0.272801160812378,0.350272715091705,0.901993423700333,0.290211901068687,0.48840568959713,1.24468985199928,0.601572714745998,0.257466062903404,0.984132040292025,0.632678031921387,0.453599460422993,0.951599255204201,0.768839631229639,0.442102327942848,1.1175731420517,0.608373627066612,0.212111875414848,1.1505778580904,0.632151782512665,0.142619386315346,1.07640596479177,0.864457629621029,0.178654327988625,0.939344374462962,1.12640503048897,0.3597047701478,1.78118634223938,0.331299994140863,0.183055534958839,1.89459764957428,0.0176478251814842,0.170101135969162,1.82734107971191,0.266284476965666,0.354609794914722,1.85849088430405,0.0949209965765476,0.255601659417152,1.79014909267426,0.461913019418716,0.133179783821106,1.74983274936676,0.488672748208046,0.159310072660446,1.75330674648285,0.27419363707304,0.3451137393713,1.76490062475204,0.19743849337101,0.270134963095188,1.76406437158585,0.45111820474267,0.0234715044498444,1.70432305335999,0.47611128538847,0.0113574862480164,1.65485918521881,0.35080298781395,-0.014502614736557,1.62044143676758,0.400988727807999,-0.0439050495624542,1.6450429558754,0.579547099769115,0.164448976516724,1.57802778482437,0.523278102278709,-0.293548870514769,1.55005300045013,0.537708297371864,-0.0309784710407257,1.43964424729347,-0.90889734774828,0.229806005954742,1.69092392921448,-0.174602046608925,0.162468552589417,1.80536425113678,0.14900466427207,0.148198425769806,1.52814894914627,0.583563074469566,0.276854753494263,0.736288920044899,-0.85374690592289,0.558894425630569,0.831255316734314,-0.284437626600266,0.820363193750381,0.963910066522658,0.0924955904483795,0.835021451115608,0.994742268696427,-0.08717773668468,0.2979970946908,0.926518797874451,-1.07369047403336,0.318095624446869,1.41524270176888,-0.863249108195305,0.332090616226196,0.812928721308708,-0.825425162911415,0.221560284495354,0.705128192901611, +-0.905096614733338,0.723169520497322,0.818555474281311,-0.457693928852677,0.415247052907944,1.71811258792877,-0.0399871915578842,0.970956087112427,0.937602870166302,-0.278693586587906,1.15048432350159,0.883451074361801,-0.322677113115788,0.8907705321908,0.798334777355194,-0.0873353257775307,0.2020153850317,1.91655081510544,-0.0620472375303507,1.20072823762894,0.949860088527203,-0.209373898804188,1.42212381958961,0.86920528486371,-0.115316189825535,1.63735115528107,0.364489287137985,0.261586718261242,1.25250780582428,1.38128334283829,0.285504397004843,1.44213321805,0.879669631831348,0.0631858762353659,1.25439894199371,0.979795429855585,0.0754089951515198,0.961896657943726,1.14802116155624,-0.405523538589478,1.0562356710434,0.518831789493561,-0.577696800231934,0.864532768726349,1.65458053350449,-0.265640772879124,0.90449446439743,0.839450672268867,-0.361289948225021,1.04770678281784,1.5765478014946,0.283343683928251,1.4823409318924,0.532653391361237,-0.0388242304325104,1.20309722423553,0.950239174067974,0.557791367173195,1.68001198768616,-0.2622991502285,0.299076676368713,1.2239029109478,1.00397914648056,-0.488589018583298,1.21484130620956,0.663716664537787,-0.505333125591278,1.21167674660683,-0.368235990405083,-0.21216756105423,1.43088340759277,-0.467236027121544,-0.329813420772552,1.29012587666512,-0.567006975412369,-0.393585681915283,1.13840311765671,-0.367784529924393,-0.247875273227692,0.786795109510422,-0.893600106239319,-0.276879370212555,0.778481811285019,-1.06990110874176,-0.444263577461243,1.23827412724495,0.725754469633102,0.586796682327986,1.61219352483749,0.0198219567537308,0.264162957668304,1.385229408741,-0.380553811788559,0.377477258443832,1.33236411213875,-0.688367500901222,0.146184265613556,1.35056832432747,-0.71999467164278,0.186129242181778,1.37672716379166,-0.371086969971657,0.359152674674988,1.1100634932518,-0.525268197059631,0.239147424697876,1.12736821174622,-0.850887283682823,0.0230153799057007,0.883713901042938,0.129930675029755,0.573551036417484,1.45482513308525,-0.695948623120785,0.568729691207409, +1.32977044582367,-0.65810452029109,0.553510792553425,1.33808368444443,-0.791399795562029,0.271309584379196,0.666164219379425,0.961708473041654,0.0982104167342186,0.753792509436607,0.932383935898542,0.0171991884708405,0.481448799371719,0.459957584738731,0.326846301555634,0.64850065112114,0.470952190458775,0.387697905302048,0.14833077788353,1.33522820472717,0.868526101112366,0.74993996322155,0.73813009262085,0.24160467274487,0.71940153837204,0.948466275818646,0.165058057755232,0.419090867042542,0.495530899614096,0.597427617758512,0.473184525966644,-0.458152359351516,0.653317276388407,0.695161432027817,-0.522661674767733,0.7393146045506,0.563926130533218,0.558311035856605,0.638806529343128,0.418179988861084,0.501539379358292,0.584771759808064,-0.126185521483421,0.956995069980621,-0.13116455078125,-0.183540672063828,0.249146848917007,-0.198520362377167,-0.0605226159095764,-0.861631542444229,-0.131516873836517,0.373858921229839,-0.567316740984097,-0.126575529575348,-0.215258240699768,0.230520993471146,-0.240283310413361,0.0826065540313721,0.643346458673477,-0.66765595972538,0.276238441467285,1.38536041975021,-0.154428206384182,-0.286650717258453,0.321795113384724,-0.388706147670746,-0.601494893431664,-0.0533545315265656,-0.196587562561035,-0.154447913169861,0.254117012023926,-0.219658851623535,-0.342072188854218,0.159697562456131,-0.380523443222046,-0.305810034275055,-0.402137879282236,-0.323403835296631,0.327521562576294,0.746012941002846,-0.602614924311638,0.17138734459877,0.682708248496056,-0.651807129383087,0.646695099771023,1.09426617622375,0.514301538467407,0.803183153271675,0.354115262627602,0.194961428642273,-0.127837151288986,1.5012903213501,-0.614044487476349,0.380169928073883,0.800700545310974,-0.537571415305138,0.448575586080551,0.39955398440361,0.100638031959534,0.47174509614706,0.365348547697067,0.0473297238349915,0.714134953916073,0.457745850086212,0.290123283863068,0.570473462343216,0.454262718558311,0.243900299072266,0.826044701039791,0.0346453189849854,1.05957075953484,1.10480611026287,-0.720061019062996, +0.42671674489975,0.240770094096661,1.35301244258881,0.378980308771133,1.14289294183254,-0.538539357483387,0.45649579167366,1.23945963382721,-0.492711536586285,0.456585168838501,0.828842118382454,0.309300974011421,0.238901972770691,1.57447105646133,0.0178378820419312,0.193319976329803,1.46005046367645,0.577951855957508,-0.0927888154983521,0.987788408994675,1.23936468362808,0.992232263088226,1.42189073562622,-0.409115724265575,0.469232261180878,0.890999764204025,1.52223169803619,-0.0642749667167664,1.02678072452545,0.895247802138329,-0.172000229358673,1.26294079422951,0.394082792103291,0.380494564771652,1.18385007977486,0.431852351874113,0.234700560569763,1.06742835044861,0.898295033723116,-0.0715937614440918,0.779033571481705,0.887957498431206,-0.0719255954027176,0.510310456156731,1.39204084873199,1.06833320856094,1.45044124126434,-0.567679464817047,0.715060412883759,0.811515659093857,1.36290216445923,0.628133118152618,1.05838693678379,0.543611090630293,0.724551767110825,1.31028598546982,-0.430245903437026,0.705610364675522,1.8674219250679,-0.338296569883823,0.285478249192238,1.56553471088409,0.701781336218119,0.41099276393652,1.64507347345352,0.44264673255384,0.52354870736599,1.35860484838486,0.583079516887665,0.755229666829109,1.56911677122116,0.598900627344847,0.464179281145334,-0.23135057091713,1.20796358585358,1.04675820469856,-0.00805491209030151,1.34092110395432,0.983512699604034,0.17949253320694,1.28640225529671,0.811996579170227,-1.4180548787117,0.658018626272678,-0.0133919417858124,-1.35520589351654,0.302809745073318,0.706154376268387,-1.39869403839111,0.463445529341698,1.28539091348648,-1.69481390714645,-0.226282939314842,0.803105548024178,-1.92780286073685,0.327513165771961,-0.0145336091518402,-1.55403214693069,1.13876867294312,0.00424934923648834,-1.52673572301865,0.614701695740223,1.01708763837814,-1.78687906265259,0.173209950327873,0.347823679447174,-1.27652928233147,0.655112981796265,-0.346266835927963,-1.76836252212524,-0.230144963599741,-0.373439818620682,-1.64485168457031,-0.79540690779686,-0.158555760979652, +-0.976730465888977,0.185780704021454,-0.232918970286846,-1.73609775304794,-0.135729037225246,-0.265114814043045,-1.1864375770092,0.511983431875706,0.309963136911392,-1.2711535692215,-0.276907421648502,1.12274308502674,-1.12329822778702,0.0540999174118042,0.181038945913315,-1.76824134588242,-0.257186908274889,0.691756904125214,-1.28582447767258,0.699103489518166,-0.152603894472122,-1.55005949735641,-0.952006116509438,-0.0221319049596786,-1.10433894395828,0.142134189605713,0.105841862503439,-1.93128299713135,-0.318513944745064,-0.272506672888994,-1.23077365756035,0.253088653087616,0.291425973176956,-1.15902829170227,-0.611608296632767,0.489769876003265,-1.15701520442963,-0.723411522805691,0.572726845741272,-1.42396014928818,-0.133588224649429,1.03080865740776,-1.26854434609413,-0.037890613079071,1.24854490160942,-0.846407145261765,-0.730971537530422,1.24981904029846,-0.679400444030762,-0.0847422480583191,0.534459471702576,-1.7815232872963,-0.364002246409655,0.782490462064743,-1.85636818408966,-0.355389647185802,0.534850895404816,-1.48674166202545,-0.517365857958794,0.602423816919327,-1.31243240833282,-0.589881494641304,0.784623801708221,-1.722560942173,-0.468667853623629,0.516778904944658,-1.17784309387207,0.314769327640533,0.359362870454788,-1.14207063615322,-1.08919036388397,0.378952577710152,-1.2306469976902,-0.853217177093029,0.386035524308681,-1.69008231163025,-0.164093524217606,0.2735281214118,-1.7775656580925,-0.312521979212761,0.427023075520992,-1.18610668182373,-0.896621689200401,0.574189186096191,-0.660574182868004,-0.0989695191383362,0.336963213980198,-1.94617605209351,-0.322311107069254,0.206708278506994,-1.78914159536362,0.213230431079865,0.0612986274063587,-1.20843148231506,-0.533585160970688,0.693379312753677,-1.17668288946152,-0.251699984073639,0.421459101140499,-1.77441203594208,0.235794365406036,0.0617856718599796,-0.933141242712736,0.162919849157333,0.750452119857073,-0.564686417579651,-0.591176152229309,1.18107512593269,-0.658525884151459,-0.95062392950058,1.30389979481697,-1.32854956388474,0.475797399878502, +1.10014215111732,-1.4798731803894,0.256111234426498,0.861000925302505,-0.827630639076233,-0.680174753069878,1.35518795251846,-0.989184558391571,0.0435509979724884,1.46126532554626,-1.43764355778694,0.0684385597705841,0.97721728682518,-1.59337937831879,-0.200890831649303,0.826843317598104,-0.899134695529938,-0.624864086508751,1.17542344331741,-1.0674712061882,-0.267541229724884,1.07665109634399,-1.21113708615303,0.703436881303787,0.887117890641093,-1.27343130111694,1.17526704072952,0.91887903213501,-1.31949985027313,1.06445327401161,0.663771934807301,-1.75951486825943,0.661952577531338,0.264670727774501,-1.75851839780807,0.343534722924232,0.797108143568039,-1.19413384795189,0.362986147403717,1.11007815599442,-1.42831748723984,0.487822290509939,1.22578555345535,-0.513259276282042,1.27551275491714,0.8334571570158,-0.920661856420338,0.63802232593298,1.20533490180969,-1.41904503107071,0.661087145097554,0.694299072027206,-1.2690244615078,0.707855820655823,1.17549002170563,-0.269197245128453,1.21463400125504,1.51505333185196,-0.638616820797324,0.629356764256954,1.4950395822525,-0.972639560699463,1.52861249446869,0.37642365694046,-1.32773143053055,0.913588717579842,0.958263784646988,-1.41784709692001,0.64660095050931,0.510058544576168,-1.42294007539749,0.896028727293015,0.766037553548813,-0.850505918264389,1.60996347665787,0.787227600812912,-1.41777089238167,0.581515491008759,0.68439581990242,-0.939107269048691,1.51668322086334,0.55994375795126,-1.39936149120331,0.880493491888046,0.665156617760658,-1.46198484301567,0.649193748831749,0.331107586622238,-1.35910975933075,1.14485082030296,0.530833519995213,-0.0293216705322266,1.62712216377258,0.750259459018707,-0.534462243318558,0.753357999026775,0.699021846055984,0.471078410744667,0.699410066008568,1.49612200260162,-0.491881161928177,0.804494785144925,0.669246643781662,-0.300884604454041,0.687276717275381,0.990432113409042,0.387910008430481,-0.276749659329653,1.28172609210014,-0.0123175382614136,0.699810277670622,1.2986316382885,-0.0134430229663849,0.834351673722267,1.28815150260925, +-0.496304294094443,0.708737917244434,1.59846466779709,0.0884205102920532,0.673876067623496,1.48793488740921,-0.149177610874176,0.266118962783366,1.15830659866333,-0.310624331235886,-0.0382554531097412,1.94276082515717,-0.447201162576675,0.719297371804714,0.91467273235321,-0.282760918140411,0.806446902453899,1.03444114327431,0.2462278008461,-0.163036715239286,1.18350467085838,-0.28226774930954,0.360422201454639,0.618543025106192,-1.88287901878357,-0.175885662436485,0.358588967472315,-1.39898765087128,0.756175333634019,0.908453375101089,-0.989873230457306,0.689938115887344,1.41153186559677,-1.46737307310104,0.305899636819959,1.29879570007324,-1.39362293481827,0.712599257007241,0.181933403015137,-0.975973030552268,0.693482149392366,0.858388856053352,-0.920563280582428,-0.092554742237553,1.37452572584152,-1.68404906988144,0.39304319024086,0.784715160727501,-1.87318670749664,-0.124656833708286,0.289561532437801,-1.49149858951569,-0.783673688769341,0.109802078455687,-1.75401282310486,-0.194318480789661,0.882720857858658,-1.87212598323822,-0.202731905505061,0.562243446707726,-1.69287830591202,0.317711893469095,0.559666678309441,-1.42619553208351,-0.847007811069489,0.244009993970394,0.406201832578517,0.0818942189216614,0.250840306282043,0.665163811296225,1.25416988134384,0.77203868329525,0.97828771173954,0.767267733812332,0.524695053696632,0.566764436662197,0.124634683132172,0.0732143633067608,0.761898338794708,0.766124814748764,0.509319670498371,0.77553616464138,0.767228245735168,0.610836870968342,0.897080361843109,1.58023500442505,0.253774560987949,0.807912384159863,1.5553223490715,0.128655055072159,0.791526198387146,1.44798645377159,0.103624626994133,0.854187024757266,1.50074845552444,0.303487211465836,0.886384513229132,1.45930594205856,0.505458384752274,0.905028413981199,1.40832403302193,0.513436168432236,0.758186278864741,1.52641612291336,0.28511655703187,0.80383269675076,1.56007689237595,0.332661032676697,0.854179084300995,1.51895046234131,0.55800923705101,0.798203118145466,1.52473527193069,0.396329440176487,0.541278522461653, +1.69769322872162,0.401599261909723,0.603664226131514,1.7209198474884,0.406311012804508,0.613440073560923,1.71276849508286,0.478242844343185,0.52945814281702,1.69732916355133,0.479288127273321,0.283863209187984,1.76296448707581,0.60882581397891,0.354472624137998,1.836834192276,0.542047619819641,0.357988113537431,1.82371813058853,0.613379567861557,0.320466669392772,1.75542616844177,0.695855885744095,0.115428105928004,1.76532489061356,0.678352639079094,0.164942437782884,1.85726451873779,0.543953649699688,0.15901087783277,1.85492891073227,0.396261550486088,0.173927243798971,1.70951771736145,0.95917996764183,0.250905424356461,0.814455166459084,-0.32813948392868,-0.431404389441013,0.937727682292461,1.44648504257202,0.599168978631496,0.966448202729225,-0.223579943180084,0.495933562517166,0.907799273729324,-0.197300136089325,0.225005656480789,0.982793197035789,-0.323634564876556,0.199284017086029,0.916595228016376,-0.463337987661362,0.440082639455795,0.995286121964455,-0.269176334142685,0.0990032255649567,0.860901013016701,-0.404621839523315,0.297391533851624,0.955099001526833,-0.228224068880081,-0.0858147740364075,0.923057787120342,-0.656097710132599,0.374736666679382,0.920892901718616,-0.277008771896362,-0.0976208448410034,0.889066062867641,-0.543606728315353,0.288517832756042,0.799112010747194,-0.164030969142914,0.360627055168152,0.895881131291389,-0.220552876591682,0.324802398681641,0.954058319330215,-0.285383984446526,0.223124504089355,0.873854100704193,-0.270082294940948,0.238889813423157,0.88675232231617,-0.400536924600601,0.340003430843353,0.954841926693916,-0.47448761202395,0.353489995002747,0.917773544788361,-0.455442139878869,0.337047159671783,0.768871429143474,-0.170971751213074,0.438977003097534,0.841960670426488,-0.118999569211155,0.487873256206512,0.994274124503136,-0.184946078807116,0.434918940067291,1.19684261083603,-0.201993106864393,0.378229200839996,1.1241309940815,-0.275573343038559,0.425311088562012,1.06297363340855,-0.443192407488823,0.515638828277588,0.962435968220234,-0.363262414932251,0.532874882221222, +0.874435370787978,-0.254115074872971,0.482605695724487,0.84830096270889,-0.246655244380236,0.522264122962952,0.906566888093948,-0.221526473760605,-1.35397720336914,1.22985479235649,0.111260592937469,-1.36993461847305,1.35441523790359,-0.201781136915088,-1.51010006666183,1.26650190353394,-0.0062810480594635,-1.53525394201279,1.17109528183937,0.0973935276269913,-1.41505098342896,1.16766059398651,0.0161640197038651,-1.53294175863266,0.983558744192123,0.0525017231702805,-1.78297638893127,0.467590197920799,0.195911407470703,-1.66195350885391,0.682301361113787,-0.109945997595787,-1.5137614607811,0.899586588144302,-0.185076377354562,-1.61239296197891,0.863592967391014,0.248951271176338,-1.7254746556282,0.527642885223031,0.655571073293686,-1.73880064487457,0.786152914166451,0.371116124093533,-1.35038578510284,1.05356352031231,0.452222913503647,-1.37110418081284,0.731822323985398,0.913032591342926,-1.58127212524414,0.491923913359642,0.894435286521912,-1.74152463674545,0.576999172568321,0.595092386007309,-1.51566761732101,0.969583913683891,0.501218259334564,-1.25234377384186,0.852195724844933,1.01098057627678,-1.33573347330093,0.563060827553272,1.14537233114243,-1.55244171619415,0.632051311433315,0.953130751848221,-1.31001710891724,1.01191961765289,0.92560738325119,-0.749888509511948,0.844946224242449,1.40226501226425,-0.862172722816467,0.634202606976032,1.49742519855499,-1.04508858919144,0.778708457946777,1.41550874710083,-0.897778928279877,0.9959986358881,1.26057675480843,-0.414208710193634,0.882141292095184,1.55190986394882,-0.466388165950775,0.651685428805649,1.66051203012466,-0.835578262805939,1.43864703178406,1.01787009835243,-0.719141900539398,1.7070152759552,0.591843843460083,-0.388788267970085,1.6232887506485,0.68684085085988,-0.445084646344185,1.4646378159523,0.903991714119911,-0.613227277994156,1.45318722724915,1.01112160086632,-0.59607806801796,1.5527064204216,0.975693106651306,-0.21077498793602,1.52411025762558,0.932718992233276,-0.214083909988403,1.38546025753021,1.16128244996071,-0.332255765795708,1.38366729021072, +1.26917630434036,-0.240089908242226,1.49361389875412,1.21234887838364,0.247282266616821,1.40189903974533,1.07666170597076,0.240072280168533,1.28996390104294,1.27014178037643,-0.00268468260765076,1.31264466047287,1.40178567171097,-0.226880043745041,1.37752640247345,1.12730807065964,0.387083768844604,0.776866883039474,1.19565537571907,0.572372049093246,0.696015417575836,1.13502383232117,0.306244000792503,1.10367447137833,1.42495876550674,0.4178586602211,0.722507297992706,1.17587813735008,-1.36877605319023,0.643637493252754,1.1140421628952,-1.25598353147507,0.859523683786392,1.16668930649757,-0.90752187371254,1.1313314139843,1.32694214582443,-1.33248093724251,0.748090445995331,1.15511697530746,-0.420782113242581,1.23298659920692,1.41890388727188,-1.21769189834595,1.02788206934929,1.03331977128983,-0.598167225718498,1.32356768846512,1.21046420931816,0.187692135572433,1.15500447154045,1.06372040510178,0.620221734046936,0.492043299600482,1.10332930088043,0.501403003931046,0.612273499369621,1.13667714595795,0.400668829679489,0.789114475250244,1.20797851681709,-1.19855329394341,0.791603326797485,1.23975202441216,-1.11251373589039,0.641462415456772,1.20581784844398,-1.2941997051239,0.492052711546421,1.10258683562279,-0.98588690161705,1.15706783533096,1.09545859694481,-0.0573055297136307,1.28108355402946,1.33792647719383,0.783772235736251,0.989578396081924,1.15913042426109,-1.06335891783237,0.804668575525284,1.22398895025253,0.681258752942085,0.703764468431473,1.27478939294815,-0.326391315087676,0.0993723273277283,0.0270248055458069,-0.0653498470783234,0.220616340637207,-0.0646260976791382,-0.229547748342156,0.236404344439507,-0.0615690350532532,-0.744648104533553,-0.0576854944229126,0.404746770858765,-0.200198896229267,-0.00799605250358582,0.0496014356613159,-0.510504394769669,0.131151109933853,0.158178627490997,-0.812336981296539,0.156987398862839,0.502417862415314,-0.455440171062946,0.0609957575798035,0.164242684841156,-0.631080567836761,0.0368318855762482,0.372793197631836,-1.06471659243107,0.713169874157757,0.217044711112976, +-0.739643663167953,0.0278234481811523,0.57764595746994,-0.65300589799881,-0.0959763526916504,0.488571733236313,-0.591418780386448,0.071584165096283,0.255991876125336,-0.668114230036736,1.21518623828888,-0.40178719162941,-0.624110892415047,0.776291310787201,-0.210773646831512,0.137563068419695,0.47308174520731,-0.0885060429573059,-0.538708791136742,0.675788260996342,-0.266775071620941,-0.821787118911743,0.392886519432068,-0.140364348888397,-1.05498376488686,0.734085783362389,-0.270844101905823,-1.02825692296028,0.402444124221802,-0.589133262634277,-0.861437231302261,0.427536308765411,-0.433443754911423,-0.938948839902878,1.2732440829277,0.667865380644798,-1.24599602818489,0.446083843708038,0.649068757891655,-1.26194274425507,0.426289848983288,-0.0473564267158508,-1.32773354649544,0.371623992919922,0.302940517663956,-1.29561024904251,0.555068835616112,0.277515947818756,-1.3487337231636,0.280740015208721,0.191504657268524,-1.33883160352707,0.271105103194714,0.201965391635895,-0.932179063558578,1.30865585803986,0.90229170024395,-1.42937770485878,0.641806349158287,0.791240397840738,-1.42627447843552,0.639256343245506,0.42117840051651,-1.46352097392082,0.59081743657589,0.816888332366943,-1.42938855290413,0.48070902377367,0.751425679773092,-1.39519169926643,0.787605613470078,0.685206241905689,-1.40972599387169,0.316230602562428,0.409937471151352,-1.3830349445343,0.284386321902275,0.446412146091461,-1.36268129944801,0.386822145432234,0.764983013272285,-1.3937021791935,0.356389548629522,1.06929132342339,-1.45369666814804,0.322869069874287,0.784220078960061,-1.40120512247086,0.387192953377962,0.771018899977207,-1.18484728038311,0.279845349490643,0.934567999094725,-1.36386707425117,0.437822015956044,0.779537726193666,-1.40221440792084,0.378164403140545,0.783073123544455,-0.461263373494148,0.693237155675888,0.0322890281677246,-0.371191179379821,0.403707779943943,0.0158138871192932,-0.319416522979736,0.425005488097668,-0.091721773147583,-0.455602154135704,0.357793480157852,-0.0476464033126831,-0.907027055713115,0.655384093523026, +1.00208619982004,-0.563551433384418,0.427057504653931,0.241160571575165,-0.912829464301467,0.459248796105385,0.554518193006516,-0.990954091044841,0.367399886250496,0.9570920933038,-0.396935269236565,0.0885805860161781,0.141946911811829,-0.621690511703491,0.0505646169185638,0.354503691196442,-0.811773128807545,0.116186246275902,0.625053972005844,-0.310276970267296,0.83050848543644,0.386587381362915,-0.626677915453911,0.149241324514151,0.402068555355072,-0.145427726209164,0.505638852715492,-0.0595958232879639,-0.450522720813751,0.355853244662285,0.148033022880554,-0.511957034468651,0.592350445687771,1.49919849634171,-0.583108380436897,0.257034733891487,0.279255032539368,-1.33267426490784,0.616676027886569,0.8800258487463,-0.794812418520451,0.415799733251333,1.37935397028923,-0.637446895241737,-0.0415250062942505,0.366837322711945,-1.02139220386744,-0.0780894458293915,0.927747800946236,-1.22583669424057,0.0200384110212326,1.20189464092255,-0.955817878246307,1.46575582027435,0.420925036072731,-0.643046535551548,0.34917338937521,0.150168418884277,-1.62321758270264,0.735179170966148,-0.433656379580498,-1.26914831995964,1.25536185503006,0.709784239530563,-1.79206264019012,0.745743632316589,-0.027940034866333,-1.78995603322983,0.745363056659698,0.290761947631836,-1.66753613948822,0.650615990161896,0.751443803310394,-1.75219225883484,0.379714354872704,0.113472282886505,-1.76369434595108,0.302367106080055,0.335995336063206,-1.7535707950592,0.279350712895393,0.636993005871773,-1.72824788093567,0.507692780345678,-0.0383313596248627,-1.52707087993622,0.687736723572016,-0.0570835769176483,-1.34479415416718,0.68295519426465,-0.182945251464844,-1.24525493383408,1.4087495803833,0.404822699725628,-1.57502466440201,0.968456402420998,0.280855070799589,-1.26549395918846,1.05410377681255,0.0577118694782257,-1.29064083099365,0.99681094288826,0.518538851290941,-1.53105026483536,0.4476468116045,0.369244799017906,-1.22669067978859,0.625420853495598,-0.0266918838024139,-0.969123840332031,1.28666758537292,0.557723015546799,-0.597260445356369, +0.870301984250546,-0.391170382499695,-1.04243439435959,0.952394172549248,0.0359452664852142,-0.265837766230106,0.646284818649292,-0.305973172187805,-0.930743873119354,0.574060246348381,0.0787314772605896,-0.904198095202446,0.721845477819443,0.282365143299103,-0.175858557224274,0.605381995439529,-0.428862601518631,0.152427792549133,0.631836220622063,-0.459767043590546,-0.257712580263615,0.547693356871605,-0.289874851703644,-0.185629397630692,0.60392153263092,-0.423017710447311,0.066013514995575,0.622238367795944,-0.634040534496307,0.0953263938426971,0.519869685173035,-0.52972674369812,-0.0976144969463348,0.852968323975801,-0.403111577033997,0.308829724788666,0.584616422653198,-0.698155164718628,0.382831320166588,0.495755851268768,-0.813438422977924,0.751218870282173,0.806959606707096,-0.78527757525444,0.467153547331691,0.941840976476669,-0.645289123058319,0.20468544960022,0.921138681471348,-0.815660007297993,-0.124391794204712,1.49060642719269,0.372746299952269,-0.226025938987732,0.835999820381403,-0.506778415292501,-0.389322757720947,0.821265421807766,0.287999764084816,-0.429406583309174,0.875989524647593,0.259569298475981,-0.270009607076645,0.690637737512589,-0.819330379366875,-0.424473404884338,0.579315364360809,-0.110062205931172,-0.358171701431274,0.59770779311657,0.248239312320948,-0.406562656164169,0.549616366624832,-0.512719616293907,-0.186323374509811,0.58810093998909,-0.9042878895998,-0.325531482696533,0.525319993495941,-0.639084622263908,-0.333583176136017,0.728927336633205,-0.583822473883629,-0.449920445680618,0.823862448334694,-0.597875878214836,-0.462437838315964,0.816604949533939,-0.542554393410683,-0.432004481554031,0.942282691597939,-0.559140413999557,-0.140792965888977,0.687740415334702,-0.935200020670891,-0.149402499198914,0.649232625961304,-0.918700143694878,-0.154679208993912,0.993957683444023,-0.909663677215576,-0.156220972537994,0.899061560630798,-0.662188641726971,0.14373642206192,1.49283534288406,0.33380065113306,-0.399829089641571,0.994387298822403,-0.404588624835014,-0.463501155376434,0.987996712327003, +-0.0611506104469299,-0.277397572994232,0.861114799976349,0.245690740644932,-0.157288014888763,0.398655876517296,-0.20786464959383,-0.346073150634766,0.514522671699524,0.198713902384043,-0.362312376499176,0.550034999847412,0.203586772084236,-0.202607095241547,0.388843312859535,0.047744233161211,-0.167582869529724,0.344072371721268,-0.00796955823898315,-0.357986330986023,0.514116644859314,0.124869890511036,-0.396011412143707,0.830223985016346,0.000272586941719055,-0.234651625156403,0.591943001374602,0.143466085195541,-0.310086786746979,0.603315319865942,0.251739099621773,-0.501371264457703,0.888251230120659,0.308141492307186,-0.289689898490906,0.710600890219212,-0.237980276346207,-0.22081458568573,0.520821869373322,-0.0209960043430328,-0.356349945068359,0.777026519179344,0.0859822630882263,-0.627585023641586,0.850901529192924,0.135632067918777,-0.222232818603516,0.798260813811794,1.04193979501724,-0.238709926605225,0.62376806885004,1.180792927742,-0.489088982343674,0.583141483366489,1.28618252277374,-0.87928644567728,0.532155618071556,0.83890625834465,-0.537038713693619,0.619415730237961,1.03489106893539,-0.672468036413193,0.414268285036087,0.657591877505183,-0.838611096143723,0.235872536897659,0.658231250941753,-1.01977032423019,0.33994534611702,0.78221307694912,-0.833550430834293,0.342138826847076,0.650195514783263,-0.938326507806778,0.675180078484118,0.67453245818615,-1.10145358741283,0.650310343131423,0.692053563892841,-1.31863003969193,0.780178612098098,0.521563712507486,-1.12235409021378,0.776785429567099,0.597845528274775,-1.1027208417654,0.647943573538214,0.714093707501888,-1.2675746679306,0.64207380823791,0.618992641568184,-1.55541616678238,0.729252677410841,0.307940512895584,-1.27643620967865,0.935583338141441,0.330109983682632,-1.22712206840515,0.391975164413452,0.541512176394463,-1.5206151008606,0.658654619008303,0.493002906441689,-0.78840850143024,0.492155065760016,-0.675429433584213,-0.035680890083313,1.02044731378555,-0.340596318244934,0.061785101890564,0.609369581565261,-0.225501000881195,-1.07801792025566, +0.182078570127487,-0.53543022274971,-1.16606369614601,0.177953630685806,-0.702504947781563,-1.18151524662971,0.46125229075551,-0.593316286802292,-0.32623890042305,0.437518462538719,-0.73636269569397,-1.2391819357872,0.167699098587036,-0.671880319714546,-1.26738625764847,0.169437065720558,-0.685808211565018,-1.20568576455116,0.408391073346138,-0.790755212306976,-0.673186421394348,0.391298554837704,0.391338348388672,-0.254397690296173,0.300656460225582,0.0426472425460815,-0.351580217480659,0.431352086365223,0.018718421459198,-0.0225587785243988,0.353395968675613,-0.122083246707916,0.14226096868515,0.0704797208309174,-0.100037097930908,-0.19281592965126,-0.0212616920471191,0.160685300827026,-0.235714972019196,0.0250239074230194,0.0767419934272766,-0.19417878985405,0.525960743427277,-0.0259273052215576,0.434737591072917,0.388163167983294,-0.226481080055237,0.543844968080521,0.430031791329384,-0.219950437545776,-0.0863214433193207,0.223466277122498,-0.0629886984825134,-0.0256753861904144,0.23549211025238,-0.0856902599334717,0.135972768068314,0.373487427830696,-0.154390037059784,0.00399366021156311,0.185681104660034,-0.0804807543754578,0.161360174417496,0.183384656906128,-0.15200138092041,0.266897581517696,0.23298816382885,-0.154217481613159,-0.195335119962692,0.391237800940871,0.00405257940292358,-0.117405235767365,0.514472402632236,-0.029744565486908,-0.107262969017029,0.233024284243584,-0.0377516746520996,-0.346044450998306,0.300033062696457,0.0275806188583374,-0.260686546564102,0.298479221761227,0.0130519270896912,-0.493960469961166,0.377404056489468,0.322319865226746,-0.309121400117874,0.393948033452034,0.055213451385498,-0.481136053800583,0.416186168789864,0.0252517461776733,-0.473927541752346,-0.0476577877998352,0.148653566837311,-0.546048164367676,0.0181295573711395,0.338164806365967,-0.370742291212082,0.0968981981277466,0.122382640838623,-0.919143375009298,0.273408964276314,0.451807409524918,-0.79536896944046,0.36781969666481,0.233815014362335,-0.256060584564693,0.336501444427995,-0.0251024961471558,-0.249362379312515, +0.377195946872234,-0.0692678093910217,0.0481478050351143,0.452974228188396,-0.109459042549133,-0.896484866738319,0.121514856815338,0.316224336624146,-0.871376276016235,0.147840440273285,0.314048171043396,-0.797005470842123,0.264894589781761,0.27288681268692,-0.697973251342773,0.825039505958557,0.131487011909485,-0.544823162257671,0.245748065412045,0.0225366950035095,-0.621063008904457,-0.0761916637420654,0.148166418075562,-0.436900056898594,-0.0618447363376617,0.101227164268494,0.412851670553209,0.377552807331085,-0.410633504390717,-0.597992211580276,0.508298240602016,0.248544991016388,-0.98144369572401,0.295166410505772,0.412568032741547,-0.719180524349213,0.484495267271996,0.168932378292084,-0.72211679816246,0.451057091355324,0.83918884396553,-0.522063404321671,0.558481112122536,0.217151910066605,-0.335821390151978,0.536018788814545,0.0791501700878143,-0.37739086151123,0.627505443990231,0.188244342803955,-0.352651089429855,0.236831203103065,0.22376149892807,-0.117697417736053,-0.221079349517822,0.281040042638779,-0.209854185581207,-0.207435727119446,0.567472741007805,-0.459999978542328,-0.21114918589592,0.543278485536575,-0.256685972213745,0.384437933564186,0.0697658658027649,-0.131859660148621,0.285725593566895,0.00692850351333618,0.344577699899673,0.340148778632283,-0.218709170818329,-0.452904045581818,0.388523600995541,0.374378174543381,-0.259847819805145,0.224504679441452,0.137234151363373,-0.193389296531677,-0.00880888104438782,0.183184027671814,0.101372838020325,0.057603120803833,-0.0730116963386536,-0.414942115545273,0.217847287654877,0.340909391641617,-0.443922460079193,0.497718565165997,0.431440949440002,-0.392283618450165,0.324256710708141,0.266602218151093,-0.490886241197586,0.348665997385979,0.320268750190735,-0.544580429792404,0.212304130196571,0.561701834201813,-0.537146359682083,0.260530479252338,0.86232890188694,-0.715134561061859,0.292543105781078,0.491158783435822,-0.607805892825127,-0.115585029125214,0.569521963596344,-0.504925519227982,-0.0585992634296417,0.85096181742847,-0.526583701372147,0.00596094131469727, +0.64842514693737,-0.933170183678158,0.309038238599896,0.580697536468506,-0.856634643801954,0.353346399962902,0.469218313694,-0.580759689211845,0.235971860587597,0.338141024112701,-0.376001417636871,0.327328816056252,0.0793560147285461,-0.418156325817108,0.222244068980217,0.0065615177154541,-1.05982847511768,0.0649853870272636,0.569017678499222,-0.907278743514325,0.16406811773777,0.556921392679214,-0.85204599716235,0.224781967699528,0.428591072559357,-1.02491571009159,0.376954533159733,0.498437017202377,-0.980982512235641,0.102483605500311,0.363679766654968,-0.854658022522926,-0.170129984617233,0.346855342388153,-0.684118032455444,-0.10516294836998,0.221703767776489,-0.473499618470669,0.0951932966709137,0.0252766013145447,-1.15722641348839,0.0599647015333176,0.724477022886276,-1.06343151628971,0.205049932003021,0.575377494096756,-0.733232885599136,0.585884811356664,0.850015304982662,-0.9269291870296,0.196266852319241,0.765034541487694,-1.08318410813808,-0.0919614285230637,1.23059496283531,-1.1212046071887,0.346392340958118,0.856581427156925,-0.65590688586235,0.0718226581811905,0.577670335769653,-0.751853119581938,-0.191380366683006,0.55844047665596,-0.637500435113907,0.173734903335571,0.690609764307737,-0.338650107383728,0.141495943069458,0.349907040596008,-0.302495241165161,0.7306769490242,0.0644814819097519,-0.235685706138611,0.607932956889272,0.00351452827453613,0.153784692287445,0.438498374074697,-0.351647973060608,-0.234922230243683,0.605680318549275,0.161891430616379,-0.234486818313599,0.63028059899807,0.163530424237251,-0.137452781200409,0.302396550774574,0.188060626387596,-0.108711719512939,-0.00187110900878906,0.287189200520515,-0.0799246430397034,0.144228607416153,-0.027945876121521,0.101132690906525,0.178003132343292,-0.323425680398941,-0.234073996543884,0.36532948166132,0.383170180022717,-0.417095422744751,0.798255652189255,0.658105511218309,-0.380256414413452,0.629152921028435,0.342944651842117,-0.379805147647858,0.661207996308804,0.345064371824265,-0.447239577770233,0.493382774293423,0.607877081260085, +-0.669453382492065,0.527967497706413,0.850271113216877,-0.642081052064896,0.613931700587273,0.589554410427809,-0.641341060400009,0.593300200998783,0.603475797921419,-0.588024139404297,0.194509118795395,0.655715100467205,-0.786960981786251,0.171354204416275,0.970240339636803,-0.807923391461372,0.291041284799576,0.717262981459498,-0.902031913399696,0.750129815191031,0.605730816721916,-0.863656722009182,0.888244777917862,0.557989254593849,-0.22976553440094,0.539608106017113,-0.220187544822693,0.145016595721245,0.622559055685997,-0.26279354095459,-0.633570715785027,1.41354149580002,1.19265279173851,-0.759102828800678,0.764967113733292,1.51881867647171,-1.2759847342968,0.78963765501976,0.990937501192093,-1.04589551687241,0.828011080622673,1.32836109399796,-0.132679522037506,1.02684941887856,-0.285956025123596,-0.15873458981514,0.693262308835983,-0.281238317489624,-1.12823557853699,1.17584770917892,-0.0131329894065857,-1.20995634794235,0.788480795919895,-0.277133762836456,-0.785736352205276,0.629925407469273,-0.507137596607208,-1.65088719129562,0.641738880658522,0.110628247261047,-1.22484534978867,0.871708877384663,-0.623303711414337,-0.581349737942219,1.0434558391571,-0.558521181344986,-0.583687901496887,0.750608369708061,-0.799421638250351,-0.746664568781853,0.757178284227848,-0.961689356714487,-1.44276010990143,1.34749895334244,0.0590184181928635,-1.62372136116028,0.757628665305674,-0.123024493455887,-1.39716926217079,0.770654410123825,0.327015407383442,-0.579992897808552,1.49545991420746,-0.840226344764233,-0.810192599892616,0.836356222629547,-0.851355522871017,-0.885090827941895,1.77716445922852,0.0371815040707588,-1.32346785068512,1.00993828475475,-0.116766579449177,-1.47321683168411,0.764751799404621,0.356394551694393,-0.46096083521843,1.50048846006393,-0.608172550797462,-0.531051397323608,1.01896868646145,-0.806980535387993,-1.32409512996674,0.774951674044132,-0.454202406108379,-1.16159391403198,1.41748178005219,0.41786926612258,-1.65132826566696,0.813969835639,0.243512526154518,-1.20973977446556,0.910320547409356, +0.687026038765907,-0.906307563185692,1.56931269168854,-0.371345192193985,-1.4583991765976,0.574412614107132,-0.346931397914886,-1.7679750919342,0.443081598728895,0.396573094883934,-0.9815793633461,1.73076057434082,0.195138029754162,-1.70697218179703,0.848825827240944,0.141520697623491,-1.79843300580978,0.27619181573391,0.679357260465622,-1.27315157651901,1.13703897595406,0.0233247578144073,-1.42281103134155,0.925239726901054,-0.48411813378334,-1.67312836647034,0.606703139841557,0.236368678510189,-1.17674690485001,1.34928518533707,0.467948481440544,-1.8260909318924,0.579078108072281,0.309803381562233,-0.574354350566864,0.662352565472247,1.17503949999809,-0.221662759780884,0.683038927614689,1.51674383878708,-0.383535698056221,0.579946804791689,1.62771308422089,0.254737496376038,0.513847697526217,0.854416608810425,0.136620998382568,0.698638942092657,0.925930589437485,0.511855155229568,0.68049394339323,1.23571598529816,0.669668227434158,0.510292965918779,0.454558163881302,0.440392076969147,0.454415693879128,0.792691394686699,0.454266548156738,0.560839757323265,0.516025006771088,0.884670488536358,0.58014965057373,0.700182445347309,0.262772262096405,0.628810904920101,1.77156543731689,0.0950569212436676,0.582244239747524,1.72130525112152,0.116318941116333,0.769531771540642,1.58455973863602,0.284498266875744,1.06770953536034,1.64754647016525,0.318123608827591,0.672334060072899,1.79703426361084,0.457188546657562,0.720122471451759,1.6567440032959,0.416957788169384,0.604642299935222,1.61716043949127,0.319608712790114,1.43123298883438,1.29461717605591,0.32120506465435,1.376449406147,1.3486265540123,0.112181816250086,1.33620810508728,1.44327974319458,0.133848201483488,1.45138096809387,1.34089958667755,1.47471618652344,0.925445795059204,0.555237352848053,1.44322448968887,0.534982558339834,1.01710286736488,1.07762628793716,0.888930350542068,1.25242879986763,0.783692002296448,1.48229151964188,0.870341867208481,1.64254933595657,0.841575741767883,0.733781188726425,1.62545639276505,0.390637652948499,1.02281355857849,1.3575786948204, +0.437027879059315,1.2073957324028,0.965885102748871,1.32491594552994,1.10400906205177,1.73983383178711,0.809608310461044,0.240347489714622,1.84131783246994,0.423950858414173,0.495335258543491,1.6257997751236,0.803861320018768,0.736469104886055,1.17873775959015,1.35698792338371,0.634983748197556,1.61301952600479,1.03981921076775,0.450116619467735,1.73436033725739,0.793729513883591,0.447091862559319,1.83870071172714,0.367123078554869,0.546457648277283,1.31964930891991,1.24756813049316,0.567926228046417,0.714746743440628,0.497397970408201,0.976591184735298,0.783963337540627,0.39775144122541,1.09135642647743,0.588434547185898,0.8450927734375,0.910576771944761,-0.43620182604073,1.40096467733383,1.14996117353439,-0.243230141699314,1.31434714794159,1.38978523015976,-0.137227639555931,1.44083914160728,0.982179835438728,-0.308079212903976,1.39396232366562,1.14535254240036,-0.34160390496254,0.701509565114975,1.72395694255829,-0.27248652279377,0.625701308250427,1.72132241725922,-0.0210576057434082,0.6893490254879,1.69457095861435,-0.32726576924324,1.12770986557007,1.53465235233307,-0.315061375498772,0.697703927755356,1.7159218788147,0.171183198690414,0.664973318576813,1.5733528137207,-0.18632946908474,0.553119726479053,1.70965701341629,0.209153950214386,0.466814495623112,1.51033592224121,0.0521129965782166,0.848714560270309,1.59045469760895,0.142795026302338,0.6600192328915,1.6347708106041,0.0100697576999664,0.604398783296347,1.65839213132858,0.121864318847656,0.491646997630596,1.60883814096451,-0.157956093549728,0.545322200283408,1.75342392921448,0.66458660364151,1.05431979894638,1.19099903106689,0.564696460962296,0.72341026365757,1.28139007091522,0.40850156545639,0.941347032785416,1.34031629562378,0.286544546484947,1.31197875738144,1.29971146583557,0.658527255058289,1.09351062774658,1.2993056178093,0.503827095031738,1.06839215755463,1.37383115291595,0.257055953145027,0.592554435133934,1.72089952230453,0.937983244890347,0.859435647726059,0.81913798302412,0.350877095013857,1.34256690740585,1.37818342447281,0.422949612140656, +0.995368152856827,1.526715695858,0.648798674577847,0.543138777837157,1.6102402806282,1.06524980813265,0.531529955565929,0.975329846143723,0.414673362392932,0.749678050167859,1.57589775323868,0.874531287699938,1.00068494677544,0.352631986141205,1.06775260716677,0.502415299415588,0.794770896434784,1.00621712207794,0.900320261716843,0.988323137164116,0.251686736941338,1.68178516626358,0.676856383681297,0.939472679514438,1.09640657901764,0.637496050447226,0.903060913085938,0.9002785384655,1.29993930459023,0.900299517437816,0.614159367978573,1.27238127589226,0.435236185789108,1.1795836687088,0.803995475172997,0.157622918486595,1.57994323968887,1.1111104786396,0.719398049637675,0.947699636220932,1.41752755641937,0.581712126731873,0.494962088763714,1.05784639716148,0.652570426464081,0.625911926850677,0.741744413971901,0.408718943595886,0.409471422433853,1.07542592287064,0.353499829769135,0.618753958493471,0.283358812332153,0.47520723938942,1.1579921245575,0.537748694419861,0.5594123005867,0.520521599799395,0.845528431236744,0.57113042473793,0.864775389432907,0.985439628362656,-0.214184135198593,1.33682882785797,0.793251752853394,0.575184017419815,0.451632350683212,0.642625257372856,0.554420828819275,0.393805809319019,0.867822624742985,0.486133873462677,0.379210911691189,0.785099033266306,0.126730561256409,0.591636635363102,1.50325739383698,-0.078019380569458,0.543596046045423,1.67507749795914,0.389401882886887,0.571945030242205,1.33195996284485,-0.0197237133979797,0.883989304304123,1.51165974140167,0.0391208231449127,0.534552428871393,1.60887974500656,0.0926925539970398,0.590333692729473,1.62470996379852,0.440696954727173,0.547833642922342,1.24566626548767,-0.172676384449005,0.505996823310852,1.70154464244843,0.122141897678375,0.457303017377853,1.60229480266571,0.198575675487518,0.645370483398438,1.61933439970016,0.052199125289917,0.58062594756484,1.64643919467926,-0.118990927934647,1.20927727222443,1.36286616325378,-0.108220934867859,1.16877818107605,1.44013124704361,0.27352537214756,0.853349804878235,1.66507625579834,0.148275941610336, +0.75110724568367,1.63094258308411,-0.389638136856775,1.21284854412079,1.45104312896729,-0.109035111963749,1.02169448137283,1.66837126016617,0.0466607811395079,1.27601903676987,1.50848931074142,0.0190231502056122,0.810412600636482,1.7641134262085,-0.0272865295410156,0.467822350561619,1.86997872591019,0.383804404234979,0.587595641613007,1.83123010396957,0.436963684856892,0.496904782950878,1.80902922153473,0.473971098894253,0.785016030073166,1.69115126132965,0.264764332270715,0.3252291851677,1.90943741798401,0.879250347614288,0.395932108163834,1.61315196752548,0.279216438531876,1.04066878557205,1.68199563026428,0.330388762056828,0.633922383189201,1.83081221580505,0.685067474842072,0.188191473484039,1.79570251703262,0.96955044567585,0.186744495294988,1.578100502491,0.299684910103679,0.534788399934769,1.77247780561447,1.09905844926834,0.501924996264279,0.846166425384581,1.07619215548038,0.156819870695472,1.40580970048904,1.07267771661282,0.221110103651881,1.26496043801308,0.11795437335968,1.43080049753189,1.05455645918846,0.460695175454021,1.39406526088715,1.17938753962517,1.04425804316998,0.444995999336243,1.28431642055511,0.867588520050049,0.450448229908943,1.16002149879932,0.0474816262722015,1.07284772396088,1.41776305437088,0.233583211898804,0.816514819860458,1.27684432268143,0.522011816501617,0.829306855797768,1.154017329216,0.728796005249023,0.439925700426102,1.4915474653244,0.134598672389984,0.660332537256181,0.886985063552856,0.103668332099915,0.955890297889709,0.639037191867828,0.0454640984535217,0.403872462920845,0.837589174509048,0.195720195770264,0.990929067134857,0.484553873538971,-0.320258289575577,1.35905402898788,0.751557350158691,0.0688339471817017,0.883760809898376,0.822366893291473,0.172676801681519,0.421400096267462,0.821136504411697,0.141699612140656,0.35719271376729,0.557375207543373,0.143259406089783,0.53190216422081,0.786709398031235,0.383411765098572,0.615341838216409,0.399170599877834,0.435113787651062,0.518950961530209,0.78847362101078,0.239295363426208,0.452918652445078,0.532899178564548,-0.207203209400177, +1.52505928277969,0.550332710146904,0.10956996679306,1.54146456718445,0.746348485350609,0.662809878587723,0.788584798574448,0.783206857740879,0.447073757648468,0.54793606325984,0.616985509172082,0.113944888114929,1.49063634872437,0.964827626943588,0.790254585444927,0.975630551576614,1.08777019381523,0.819571644067764,0.8756442964077,1.1438897550106,0.629981428384781,0.751076579093933,1.014489620924,0.868854098021984,0.734387984499335,0.976999461650848,1.03873901069164,0.730040553957224,1.12652173638344,1.07996879518032,0.548591338098049,1.01718705892563,0.8041972219944,0.597082037478685,1.25169494748116,1.05084179341793,0.645340394228697,1.09779143333435,1.33140218257904,0.613108836114407,0.774914309382439,0.801161855459213,1.28597670793533,1.29376971721649,0.907444581389427,1.22642362117767,0.826093308627605,1.17699903249741,1.23467683792114,0.666176261380315,1.41002202033997,1.18478536605835,0.555475741624832,1.48086458444595,0.961934000253677,0.702623561024666,1.32891324162483,0.528782054781914,0.768507249653339,1.41371858119965,1.16338130831718,0.614647656679153,0.609867221037348,0.831240627914667,1.15952232480049,1.04390171170235,0.69785125926137,1.26278877258301,0.699731841683388,1.07210531830788,1.43491864204407,0.941430389881134,0.883984014391899,1.09827837347984,0.861306816339493,0.861290063709021,0.956027881242335,1.12202885746956,0.726719386875629,1.08194985985756,1.0030305981636,0.501814663410187,1.26571595668793,1.01361909508705,0.887473497539759,0.888222531415522,0.673806235194206,0.928175542503595,0.916070207953453,1.02190226316452,0.913724303245544,1.03933311998844,1.08340558409691,0.773300215601921,1.09475603699684,1.2992134988308,0.813325360417366,0.511273965239525,1.03849098086357,1.01417748630047,0.771476283669472,1.09727662801743,0.957577489316463,0.916294015944004,1.23365122079849,0.802114721387625,0.935730472207069,0.940236419439316,0.995227817445993,0.85733862221241,0.789636135101318,1.08149774372578,0.992596372961998,0.57729260623455,1.01647743582726,1.16314470767975,0.976022124290466,1.01609648764133, +0.984137929975986,1.50562351942062,0.888383068144321,0.112864364869893,1.20694699883461,0.962949015200138,0.690233498811722,1.52370691299438,0.589590003713965,0.926102578639984,1.75988954305649,0.613313660025597,0.391744997352362,1.45493495464325,0.837829560041428,0.71178837120533,1.05662786960602,0.939663834869862,0.946818269789219,1.53506523370743,0.644116014242172,1.02584129571915,1.62435960769653,0.38109027966857,1.03786119818687,1.60991358757019,0.761581473052502,-0.265114396810532,1.62934201955795,0.798073899000883,-0.0671375691890717,1.80297410488129,0.301109131425619,0.70561671257019,1.78063863515854,0.384668463841081,0.700218468904495,1.47095191478729,0.679350435733795,0.937977433204651,1.55979615449905,0.641666173934937,0.701759248971939,1.30469113588333,0.387549310922623,1.23602372407913,1.41348105669022,0.631828129291534,1.18346494436264,1.41101831197739,0.65677534788847,0.0430255532264709,1.66375350952148,0.537857472896576,0.406750343739986,1.65595763921738,0.591454707086086,0.777468144893646,1.5469337105751,0.617255326360464,0.48274028301239,1.30404731631279,0.632812171708792,0.953380167484283,1.52791368961334,0.462169244885445,0.695235908031464,1.5503368973732,0.6573166847229,0.67866887152195,1.20034790039063,0.33406463265419,1.09357178211212,1.07319115102291,0.757823213934898,0.532874807715416,1.29990848898888,0.515162974596024,0.462098255753517,1.26169574260712,0.413213714957237,0.839389178901911,1.08068054914474,0.400436401367188,0.886987689882517,0.89912149310112,0.683805275708437,0.990081503987312,1.07989601790905,0.510169804096222,1.0023495554924,1.01226568222046,0.508217323571444,1.22830119729042,0.889136604964733,0.790546089410782,1.00754076242447,0.0233327150344849,0.639053478837013,1.67349779605865,0.80712679028511,1.02946707606316,1.01155529916286,0.729455582797527,0.91213470697403,1.32030358910561,0.282167583703995,1.34200197458267,1.07185241580009,0.274794340133667,0.914093792438507,1.05334785580635,0.225971013307571,0.875100284814835,1.52700173854828,0.460663110017776,0.538394680246711, +1.49929094314575,0.0703007876873016,1.00285819172859,1.36378967761993,-0.124980032444,0.590335056185722,1.22154071927071,-0.0678505599498749,1.07274323701859,1.32829785346985,0.035373717546463,0.615011774003506,1.55101817846298,-0.0715484619140625,1.00638675689697,0.936424106359482,0.0870352983474731,0.60684922337532,0.678005814552307,-0.256300568580627,1.22560966014862,0.870431125164032,0.00902312994003296,0.758994460105896,1.08918523788452,-0.280852556228638,1.10777580738068,0.0781047940254211,0.122870445251465,0.931699484586716,-0.130010277032852,-0.44720184803009,1.19446673989296,0.819917231798172,-0.133521795272827,0.66841858625412,1.01365792751312,-0.238201558589935,1.19945734739304,-0.190263032913208,1.07809966802597,0.648457884788513,0.27759850025177,0.782834321260452,1.40295407176018,0.926146760582924,1.18135020136833,0.825198590755463,1.10527074337006,0.703484803438187,1.19384914636612,0.610501080751419,1.1920028924942,0.986763060092926,0.45005989074707,0.847555845975876,1.40685743093491,0.929068520665169,1.32288774847984,0.892822235822678,0.968738913536072,0.731456220149994,1.33085671067238,0.658974975347519,1.24204450845718,1.00307193398476,0.468276858329773,0.843522101640701,1.43806540966034,0.7616175301373,1.30725774168968,0.968634158372879,0.841318316757679,0.378872146829963,1.57637393474579,0.845425620675087,0.384726274758577,1.42760241031647,1.19819203019142,0.567206293344498,1.45441919565201,1.0943638086319,0.390357376076281,1.55806869268417,0.888120159506798,0.261906701838598,1.56419408321381,1.11294457316399,0.357861891388893,1.47636955976486,1.16318926215172,0.579365789890289,1.45117574930191,1.09948697686195,0.392401546239853,1.58050525188446,0.796830177307129,0.367150083184242,1.63892078399658,0.99491548538208,0.458627045154572,1.3125131726265,1.40006828308105,0.00274205207824707,1.48101800680161,0.995282515883446,0.311997603625059,1.50430047512054,1.22777527570724,0.203209608793259,1.53977853059769,1.24588871002197,0.261020941194147,1.48764765262604,0.828138940036297,0.511140495538712,1.34743797779083, +1.31976372003555,0.356604427099228,1.59147846698761,1.11561119556427,0.100873466581106,1.69100874662399,0.850997552275658,0.0674883089959621,1.27411469817162,1.44341486692429,0.212413323577493,1.43055158853531,1.21413564682007,0.0520164649933577,1.7297278046608,0.733484476804733,0.286542192799971,1.60259622335434,1.03581497073174,0.165936313569546,1.35470309853554,1.26080796122551,-0.262746263295412,1.37967011332512,1.20196083188057,0.153729733079672,1.54695665836334,1.23586231470108,0.305684953927994,1.69858914613724,0.824155330657959,0.122457161545753,1.46884912252426,0.559982568025589,0.251750014722347,1.4050774872303,0.923511009663343,0.188678429229185,1.64835333824158,0.968535304069519,0.307184386067092,1.71067488193512,0.673487912863493,0.439848631620407,1.56461262702942,0.999480158090591,0.11195020377636,1.43872672319412,1.22064158320427,0.055402459576726,1.73005932569504,0.804826691746712,0.477194458246231,1.55819481611252,0.995251297950745,0.469447895884514,1.66692614555359,0.881296724081039,0.48447684943676,1.44758230447769,1.08434301614761,0.597694128751755,1.31434816122055,1.28459244966507,0.494809497147799,1.47564408183098,0.695721708238125,0.54502147436142,1.45574727654457,0.622751221060753,0.748337849974632,1.41452559828758,0.493374332785606,0.307681483693159,1.4017108976841,0.930538229644299,0.41346077201888,1.52326190471649,0.770193718373775,0.50759151764214,1.48801884055138,0.742639295756817,0.444336108863354,1.40423342585564,1.05475857853889,0.395832534879446,1.47211709618568,0.87605258077383,0.39864357560873,1.52156782150269,0.884749829769135,0.493408728390932,1.47857096791267,0.842555157840252,0.389950953423977,1.38694515824318,1.14987313747406,0.329821862280369,1.38206839561462,1.24826753139496,0.385342485737056,1.52917891740799,0.659818187355995,0.51465517282486,1.39384010434151,0.403671503067017,0.562436461448669,1.39271381497383,0.339397042989731,0.327898442745209,1.52750957012177,0.787418842315674,0.30875030439347,1.55250597000122,0.884315438568592,0.309008248150349,1.44534561038017,0.876410640776157, +0.39528015255928,1.45172265172005,0.941945895552635,0.398652022704482,1.53222995996475,0.796720735728741,0.0958049222826958,1.55732536315918,0.859344333410263,0.315906628966331,1.39509272575378,0.957139000296593,0.34653964266181,1.40150085091591,1.11146923899651,0.298100804910064,1.50036227703094,1.1044889986515,0.0885607874952257,1.51795464754105,0.87056409008801,0.403789699077606,1.35606199502945,0.655688270926476,0.103125870227814,1.54881221055984,0.95392695069313,-0.0714097684249282,1.4260313808918,1.11220999062061,-0.164170103147626,1.21563073992729,1.16034446656704,0.0447120136814192,1.29546934366226,1.18860901892185,0.0117480237968266,1.51842522621155,0.934113718569279,-0.101857575587928,1.46232143044472,0.980675548315048,-0.0780762061476707,1.15140825510025,1.12144647538662,-0.165148457512259,1.1589746773243,1.34563335776329,0.00243201479315758,1.36533829569817,1.29025059938431,-0.0166339799761772,1.52809327840805,0.871822956949472,-0.117962151765823,1.20985440909863,0.841090865433216,-0.0670785680413246,1.15169930458069,0.828143507242203,-0.145876329392195,1.4647191464901,0.932519178837538,0.263410879531875,1.60054212808609,0.90438537299633,0.057133749127388,1.2929402589798,1.08972208201885,-0.0879486910998821,1.21490375697613,0.914392683655024,-0.0647438671439886,1.52653688192368,0.763917252421379,0.288833575323224,1.29036983847618,0.845165424048901,0.203960306942463,1.23524588346481,1.28763064742088,0.261355375871062,1.61273187398911,0.785276461392641,0.6025520414114,1.48328560590744,0.811116188764572,0.164591405540705,1.15033361315727,0.59592679142952,0.360761821269989,0.558744743466377,0.0702804923057556,0.143140500411391,1.0837527140975,1.10015906393528,0.360150277614594,0.997908115386963,0.581765472888947,0.174123913049698,1.15001365542412,0.535469323396683,0.113766901195049,1.1332012116909,0.563471138477325,-0.219197124242783,0.98836749792099,0.911958742886782,0.0995701253414154,1.02402475476265,0.686365053057671,-0.140760436654091,1.11257979273796,0.681178033351898,-0.319170832633972,0.992923527956009, +1.02133851498365,0.409817226231098,1.24012476205826,0.389891982078552,0.473129063844681,1.08416149020195,0.326175332069397,-0.036491796374321,1.12379594147205,0.643913418054581,0.159451588988304,1.13741281628609,0.564482539892197,-0.190245568752289,1.2135097682476,0.844267696142197,-0.101284518837929,1.18030223250389,0.704833671450615,0.450464576482773,1.27730783820152,0.338086247444153,-0.187587529420853,1.13449198007584,1.0381555557251,0.206914741545916,0.974337577819824,0.525627851486206,0.742836579680443,0.89893114566803,0.127318263053894,0.493818044662476,1.35663759708405,0.441080965101719,0.400093048810959,1.31494769454002,0.489167168736458,0.28043994307518,1.04995453357697,1.03320735692978,0.516806811094284,1.14332307875156,0.593119952827692,0.446953341364861,1.31166055798531,0.973927140235901,0.656602730974555,1.58282375335693,0.394147478044033,0.588642470538616,1.53855538368225,0.352469384670258,0.286318430677056,1.27826321125031,0.969411455094814,0.586567934602499,1.36064407229424,0.738155735656619,0.429177194833755,1.52731209993362,0.895427465438843,0.278115056455135,1.51651155948639,0.900546357035637,0.722691386938095,1.24980288743973,0.609822615981102,0.420462474226952,1.09898349642754,1.225102186203,0.642991334199905,1.05996807664633,0.749238051474094,0.926682725548744,0.970654644072056,0.12897589802742,0.961610987782478,1.24929481744766,0.500779666006565,0.846583195030689,1.243283867836,0.687565252184868,0.827466059476137,1.06341121345758,0.747683703899384,0.990532487630844,1.0637546852231,0.449507668614388,0.77240373659879,1.25174134969711,0.599218910560012,0.816710412502289,1.18862092494965,0.764845758676529,0.781540950760245,1.43177711963654,0.412647899298463,0.763899493962526,1.37577745318413,0.290043443441391,0.623474165797234,1.19797924160957,0.943976178765297,0.780311569746118,1.23304510116577,0.767392516136169,0.655455835163593,1.38255760073662,0.793630972504616,0.581549534574151,1.35799899697304,0.846862949430943,0.846415475010872,1.10814092308283,0.463017076253891,0.77218122780323,0.901944509707391, +0.86584135890007,0.63076813146472,1.3376832306385,0.664667576551437,0.748269155621529,1.36983802914619,0.298532381653786,0.939363088458776,0.989907971583307,0.527387455105782,0.956271869130433,0.996017255354673,0.465954229235649,0.762747950851917,1.4627488553524,0.248029466718435,0.688419816084206,1.33721652626991,0.59591294080019,0.510985001921654,1.2363398373127,1.06068450212479,0.715231113135815,1.44686570763588,0.432208478450775,0.727762013673782,-0.0382763892412186,-0.63558629155159,0.629398487508297,0.261439420282841,-0.354602158069611,1.15610158443451,0.254382222890854,1.38559594750404,0.953587025403976,0.424990676343441,1.60978591442108,1.63676303625107,0.605810940265656,0.819698318839073,1.6670538187027,0.821149632334709,0.530204579234123,0.83866772800684,-0.0342674255371094,1.02318744361401,1.13024112582207,-0.302958190441132,0.945709548890591,1.15926529467106,0.147490315139294,1.11636759340763,0.870886344462633,0.104096129536629,1.34614196419716,0.942113548517227,-0.35149772465229,1.45421159267426,1.29406243562698,-0.487803597003222,1.15905821323395,1.23417130112648,0.13546109944582,1.47250288724899,0.995315685868263,0.0492858290672302,1.56346207857132,0.705023661255836,0.234536536037922,1.7832442522049,0.961963444948196,0.139552690088749,1.72343158721924,0.826495230197906,0.385537467896938,1.76699560880661,-0.232703726738691,-0.317183703184128,0.0465255379676819,0.185045728925616,-0.0192930102348328,-0.0197060108184814,0.324089787900448,-0.147799648344517,-0.00581490993499756,0.368886729702353,0.00287946686148643,1.9378759264946,-0.0361951589584351,-0.647779226303101,-0.0382529497146606,0.209526002407074,-0.725867033004761,-0.126250028610229,-0.363358914852142,-0.562025144696236,0.463294267654419,0.566486272960901,-0.231588795781136,-0.177688956260681,0.0542213916778564,-0.767870396375656,-0.0544087290763855,-0.12794503569603,-0.615492418408394,0.0343989729881287,-0.413435339927673,-0.463506534695625,0.605470165610313,0.578803941607475,-0.328373998403549,-0.118988335132599,-0.216102719306946,-1.05255168676376, +0.204192161560059,-0.540628850460052,-0.851384878158569,0.483309596776962,-0.54308670759201,-0.756954491138458,0.997814923524857,0.0923281013965607,-0.488935753703117,-0.0770755410194397,-0.41236275434494,-0.908750414848328,0.299821376800537,-0.591826379299164,-0.614870101213455,0.671911746263504,-0.552616626024246,-0.697984039783478,1.04419830441475,-0.00475355982780457,-0.606523409485817,-0.114297449588776,-0.367662012577057,-1.23088449239731,-0.100726127624512,-0.446021676063538,-1.10623255372047,-0.130858063697815,0.0866076946258545,-0.456958323717117,0.712050348520279,-0.0738303065299988,-0.256915278732777,0.0844462513923645,-0.40327513217926,-1.27923879027367,-0.0473478585481644,-0.476934850215912,-1.12974384427071,0.0352846290916204,0.160974323749542,-0.539571993052959,0.602188557386398,0.181637525558472,-0.248003214597702,-0.285730212926865,0.0564884543418884,-0.491767942905426,0.119370087981224,0.000888645648956299,-0.328510634601116,0.243927472736686,0.0758234858512878,-0.0862732976675034,0.709083557128906,0.0327221751213074,-0.208628475666046,0.702438831329346,1.63383287191391,-0.174698784947395,0.899366542696953,1.90670555830002,-0.117434557527304,0.117849171161652,1.8843407034874,0.118390321731567,0.610002413392067,1.61811709403992,0.138580411672592,0.494421452283859,1.7482590675354,-0.446713417768478,0.782953828573227,1.66329032182693,-0.385498838033527,0.00421905517578125,1.65191972255707,-0.176843216642737,1.10449856519699,1.75546032190323,-0.0879277959465981,0.125405341386795,1.58205962181091,-0.333167966455221,1.09161853790283,1.46707981824875,-0.0566467344760895,1.24474430084229,1.64564591646194,-0.19444702938199,1.11182534694672,1.11972588300705,-0.528083145618439,1.33284538984299,1.37722605466843,0.0917127132415771,0.523952566087246,1.52555233240128,0.17061510682106,0.750525683164597,1.48978167772293,0.289149582386017,0.621067486703396,1.47082906961441,0.0151271224021912,0.528357714414597,1.56528437137604,0.196487784385681,0.61827364563942,1.62380850315094,0.183661997318268,0.596633113920689,1.49991756677628, +-0.030851423740387,0.6711515635252,1.23135742545128,-0.360381364822388,0.537821128964424,1.30029195547104,-0.419443309307098,0.193358525633812,1.73705512285233,0.293120339512825,0.389221251010895,1.66347187757492,0.262333258986473,0.756525337696075,1.27353012561798,-0.460500806570053,0.29869969189167,1.04175183176994,-0.277134776115417,0.362212553620338,1.53120237588882,0.445034995675087,0.514618970453739,1.6108917593956,0.390097662806511,0.4650739133358,1.35991659760475,0.472019419074059,0.598386585712433,1.31032237410545,0.45581091940403,0.663974978029728,1.37746086716652,0.696129463613033,0.688467314466834,1.27926808595657,0.748119909316301,0.667132191825658,1.16920518875122,0.433246955275536,1.02732595801353,1.25952112674713,0.449264273047447,0.670880675315857,1.81454771757126,0.45380936935544,0.421625487972051,1.3380518257618,0.509908676147461,0.276360683143139,1.66150712966919,0.267947822809219,0.0919680967926979,1.65219902992249,0.339665085077286,0.127847284078598,1.70626765489578,0.331164091825485,0.249008305370808,1.74035251140594,0.151557236909866,0.181739453226328,1.73764938116074,0.198525220155716,0.108275398612022,1.74813860654831,0.19631353020668,0.208361038938165,1.68608129024506,0.149686366319656,0.509580433368683,1.64028465747833,0.174376308917999,0.720532864332199,1.6189398765564,0.134470343589783,0.772464573383331,1.58732402324677,0.342735514044762,0.845216274261475,1.64189052581787,0.36054539680481,0.775636345148087,1.36824783682823,0.461690962314606,0.973470509052277,1.44419568777084,0.489382103085518,0.859538286924362,1.31024447083473,0.314625084400177,0.926593214273453,1.30387106537819,0.686429034918547,0.732154967263341,1.27662301063538,0.70047714561224,0.432043790817261,1.21555361151695,0.93396383523941,0.459632635116577,1.25976181030273,0.917156457901001,0.681214559823275,1.28636589646339,0.827649768441916,0.598537564277649,1.30078327655792,0.734384369105101,0.687211336567998,1.24159097671509,0.922310829162598,0.683688450604677,0.965931458111939,1.0954746901989,0.604739300906658,1.0797041580081, +0.898157846182585,0.546571793034673,1.07141083478928,0.873859640210867,0.600779354572296,0.966556695009118,0.611243933439255,0.562984604388475,1.06741386651993,0.649536162614822,0.568666413426399,1.04813069850206,0.914711974561214,0.243659913539886,1.07709320634604,0.652457624673843,0.561775550246239,1.04101186990738,0.704271048307419,0.208919197320938,0.996143557848256,0.844178531318903,0.551253773272038,1.10342316329479,0.8757070209831,0.482211492955685,1.09854847192764,0.98718149960041,0.437680963426828,0.999694814586771,0.951890498399734,0.365795033052564,1.10020704567432,0.916873386129737,0.376914612948895,1.10307604074478,0.91636501532048,0.40275951102376,0.97666217417229,1.17430025339127,0.245015949010849,1.09933254867792,1.07014246284962,0.231929395347834,1.08485748618841,0.76932729780674,0.33109237998724,0.985302246488216,0.801633849740028,0.287563975900412,1.07093648612499,0.676088094711304,0.228975953534245,1.05880215764046,0.64662891626358,0.277949525043368,0.981014868214789,0.79969222843647,0.222760714590549,1.07851573824883,0.667547762393951,0.159696308895946,1.06120014935732,0.635700762271881,0.197673790156841,0.97143716378288,0.778480216860771,0.177570261061192,0.275840744376183,0.600208222866058,0.886955415830016,0.369658932089806,0.602197468280792,0.966089986264706,0.365383103489876,-0.579880505800247,-0.0803197622299194,0.688202440738678,-0.697430461645126,-0.103053450584412,0.585828855633736,-0.283887930214405,-0.0272412300109863,0.549373537302017,-0.330235164612532,0.0665929317474365,0.975517511367798,-0.445154409855604,0.435122430324554,0.98143208026886,-0.428339041769505,0.218960046768188,0.924570709466934,-0.122981250286102,0.141995906829834,1.09123852849007,-0.168442726135254,0.567445039749146,0.907506540417671,-0.284680638462305,0.41817569732666,1.03168159723282,-0.435351174324751,0.514894068241119,1.05171689391136,-0.375787705183029,0.686011999845505,1.00312124192715,0.0949287973344326,0.523648619651794,1.48517638444901,-0.873411267995834,-0.401920318603516,0.857067547738552,-0.355352871119976, +-1.02691456116736,1.43571406602859,-0.063696064054966,-0.878553609363735,1.06644766032696,0.36871674656868,-0.471121370792389,1.09932070970535,-0.353309608995914,-1.00943514145911,1.08416646718979,-0.312377601861954,-0.248009502887726,1.16090613603592,-0.373218849301338,-0.141968369483948,1.33693334460258,-0.428975835442543,-0.875247816555202,1.33852514624596,-0.39168743789196,-0.886246840469539,1.33099937438965,-0.066100224852562,-0.0479529500007629,1.57940530776978,0.0410939306020737,0.553219839930534,1.47623109817505,0.856551773380488,0.0271341949701309,1.83571362495422,0.0143142342567444,-0.500689606182277,1.86669945716858,-0.0791810010559857,-0.320097416639328,1.69533205032349,-0.0761311762034893,-0.074331670999527,1.74709051847458,0.0697359815239906,-0.24121630191803,1.67999446392059,0.482807502150536,0.252002596855164,1.85430431365967,0.244948256760836,0.498927505686879,1.45705813169479,0.866371996235102,0.282641068100929,1.52608543634415,0.283256314694881,0.865482963621616,1.86259549856186,0.507954373955727,0.243261031806469,1.98505932092667,0.0570157687179744,0.104171581566334,1.53894770145416,-0.122035570442677,0.428516089916229,1.85580575466156,0.0847289264202118,-0.0435317754745483,1.50873678922653,0.0190181732177734,1.10273143649101,1.4592664539814,0.217669203877449,0.784291326999664,1.83167046308517,0.332201853394508,0.375913713127375,1.76853293180466,0.267025176435709,0.519308194518089,1.92405527830124,0.042459599673748,0.365304425358772,1.83123475313187,0.401655804365873,0.341831229627132,1.64175915718079,0.44954090192914,0.581478141248226,0.318579614162445,-0.543361265212297,-0.196433007717133,0.833653002977371,-0.599275529384613,-0.339604735374451,0.836028411984444,0.318936131894588,-0.0954859852790833,0.463639825582504,-0.0461903251707554,-0.00459867715835571,1.37538355588913,-0.543873980641365,0.199273228645325,1.29217678308487,-0.53836128115654,-0.330175012350082,1.72771835327148,0.384531807154417,0.601053694263101,1.59207820892334,0.0642608776688576,0.78164525795728,1.37134951353073,-0.305216796696186, +0.205300092697144,1.36891639232635,-0.11230456456542,-0.261565566062927,1.73306316137314,0.0298672467470169,0.237709999084473,0.850519940257072,0.241569720208645,-0.195082664489746,1.05310162901878,-0.0616070479154587,0.394659459590912,1.06298461556435,0.597118459641933,0.208881378173828,1.21721476316452,0.212181784212589,-0.0249976515769958,1.25368025898933,0.0825827126391232,1.12818725407124,1.47796589136124,-0.503262057900429,-0.935919374227524,1.40711331367493,-0.00201159715652466,0.000372171401977539,1.76385027170181,-0.000431423541158438,4.9889087677002e-05,1.93186205625534,-0.328305678442121,-0.205601163208485,1.46646362543106,-0.687917992472649,-1.13589817285538,1.51472389698029,-0.993157967925072,0.544557154178619,1.27766299247742,0.0122221633791924,-0.118881821632385,1.2527848482132,0.905755447689444,-0.643529653549194,1.53760373592377,0.0470395982265472,0.15384578704834,1.67232948541641,0.249246697872877,0.873936742544174,1.84110647439957,0.395559579133987,-0.628586962819099,1.416977673769,0.747070742771029,0.33025698363781,1.7113863825798,0.141676219645888,0.0671602189540863,1.89032834768295,-0.117133542895317,-0.378115074709058,1.95355451107025,-0.0190635919570923,-0.258324325084686,1.82216936349869,0.0500162392854691,0.149137079715729,1.86536890268326,0.289215426892042,-0.35459828004241,1.92964601516724,0.108891826122999,-0.409993425011635,1.69464462995529,0.0904338005930185,-1.01608738303185,1.68013101816177,0.419250011444092,0.260487347841263,1.90119713544846,0.473599493503571,-0.332465462386608,1.37187016010284,0.989191263914108,-0.309369646012783,1.67592459917068,0.293782513588667,0.661813903599977,1.80962383747101,0.00563864409923553,-0.708286553621292,1.73200136423111,-0.0389013290405273,0.533420607447624,1.77525234222412,0.531503483653069,-0.582900516688824,1.22399818897247,0.429046809673309,-0.91596370562911,1.78030246496201,0.751354202628136,-0.35804059356451,1.63372528553009,0.358651652932167,-0.414690136909485,0.616142690181732,-0.967225357890129,-0.467428237199783,1.32686117291451,-1.03019238263369, +-0.0872990936040878,0.972002804279327,-0.312803685665131,-0.431089401245117,1.03072854876518,-0.361375413835049,-0.0325457453727722,0.693617671728134,-1.14112518727779,-0.745101287961006,0.839047819375992,-1.18564713001251,-0.784072332084179,1.32710441946983,-0.449123039841652,-0.54358646273613,1.22980970144272,-0.364468261599541,-0.344444334506989,1.22205880284309,-0.091705821454525,-0.374421656131744,1.12213976681232,-0.4493717700243,-0.610437721014023,1.12227132916451,-0.257228456437588,-0.548864245414734,0.844993762671947,0.222746051847935,-0.41987419128418,0.422398269176483,-0.068060040473938,-0.172375559806824,1.17910227179527,-0.0422258973121643,-0.387826859951019,1.81328135728836,0.131243374198675,0.653655789792538,1.39799028635025,0.104403030127287,0.260366499423981,1.09970387816429,-0.225229799747467,0.189020171761513,1.3829303085804,-0.729207154363394,-0.200350910425186,1.79652684926987,-0.40193122625351,-0.535667571472004,1.72947353124619,-0.348032534122467,-0.795046702027321,1.3883989751339,-0.954101577401161,-0.300813719630241,1.00537165999413,-1.20953068137169,-0.67326495423913,1.82300627231598,-0.597436785697937,-0.0852105021476746,1.6699725985527,-0.458377033472061,-0.983080387115479,1.70562899112701,-0.252331674098969,-1.00893598794937,1.84295350313187,-0.358152143657207,-0.155432343482971,1.88647788763046,-0.0893748290836811,-0.166325509548187,1.77765166759491,0.0830401685088873,-0.906970888376236,1.63278758525848,-0.373890697956085,-0.890541508793831,1.48553079366684,-0.295923084020615,-1.27888971567154,1.50050288438797,0.134769065305591,-1.25733664631844,1.78223347663879,0.147363107651472,-0.702666223049164,1.86674737930298,0.328245133161545,-0.292003393173218,1.91854125261307,0.381559267640114,-0.302842246368527,1.50710469484329,0.766045149415731,0.329535663127899,1.8052442073822,0.122192701324821,-0.149237304925919,1.91746562719345,-0.103137090802193,0.314559504389763,1.81001132726669,-0.0635536462068558,-0.730370730161667,1.77719700336456,-0.272029967978597,-0.172399580478668,1.89207535982132, +-0.293322268873453,-0.0702275931835175,1.85527658462524,-0.073300689458847,-0.474879864603281,1.93303793668747,-0.0760123282670975,0.0898986309766769,1.86473679542542,0.503498174250126,0.115219064056873,1.83523339033127,0.376870051026344,-0.522399857640266,1.963851749897,0.224260474089533,-0.164862873032689,1.88306874036789,0.264294527471066,-0.461630415171385,1.74587970972061,0.294391423463821,-0.795080959796906,1.79456216096878,0.374752473086119,-0.381916951388121,1.66323339939117,0.13288364559412,0.173215717077255,1.84382742643356,0.0778606906533241,0.0130183696746826,1.59149962663651,0.217962199239992,1.12934330105782,1.51862263679504,0.143372546881437,1.27624499797821,1.89229965209961,-0.195721965283155,0.53305946290493,1.55872845649719,-0.0895878598093987,1.24455922842026,1.58642238378525,-0.00826221704483032,1.15444397926331,1.81781512498856,-0.178853675723076,0.448455035686493,1.67769002914429,-0.418991789221764,0.542168349027634,1.90809375047684,-0.223592739552259,0.31177157536149,1.84348034858704,-0.598316445946693,0.312837116420269,1.76339799165726,-0.175503246486187,0.548566997051239,1.91720622777939,0.0386203699745238,0.324314869940281,1.77872163057327,0.0304686184972525,0.585073545575142,1.7646911740303,-0.165432970970869,0.574600353837013,1.91332161426544,-0.202724966686219,0.301273103803396,1.484256118536,-0.824722737073898,0.00467585027217865,1.45209875702858,-0.872000452131033,-0.189614363014698,1.92780941724777,-0.0607676059007645,-0.188429947942495,1.90945398807526,-0.168728120625019,0.256178192794323,1.41178843379021,-1.12166814506054,-0.266740739345551,-0.122830122709274,-0.588525980710983,-0.804025249555707,0.379051983356476,-0.259869522415102,-0.753716807812452,1.27119895815849,-0.510178908705711,-0.868270944803953,1.26172557473183,-0.546142593026161,-0.859731506556273,1.39033916592598,-0.0299736447632313,-0.850984454154968,0.496270149946213,-0.0817944966256618,-0.744485959410667,1.29788798093796,-0.20692428201437,-0.502649158239365,1.28755939006805,-0.494611859321594,-0.535688370466232,1.84441274404526, +-0.281692333519459,-0.439886402338743,1.34185177087784,-0.0520121343433857,-0.817304000258446,1.28305652737617,0.284812040627003,-0.479326456785202,1.45165932178497,-0.038255549967289,-0.451978474855423,1.63666707277298,-0.394783068448305,-0.516722843050957,1.30437448620796,-0.341164980083704,-0.809085309505463,1.33543267846107,0.105764701962471,-0.844434686005116,1.38865330815315,-0.169827803969383,-0.618167668581009,1.02138406597078,-0.0110212489962578,-0.882869109511375,1.56452530622482,0.278104588389397,-0.609015971422195,0.871464759111404,0.23451947234571,-0.921597309410572,1.34456989169121,0.202995166182518,-0.781301185488701,1.31134834885597,0.147582679986954,-0.629765912890434,1.05691382288933,0.0763661861419678,-0.456061154603958,1.33460184931755,-0.0308877676725388,-0.421295791864395,1.2493522465229,0.200630962848663,-0.772755533456802,0.948575608432293,0.179981961846352,-0.73882232606411,1.3208310008049,-0.452629551291466,-0.508895456790924,1.40698611736298,-0.554501151666045,-0.745953641831875,1.51007121801376,-0.308055855333805,-0.623550683259964,1.40888613462448,-0.331198558211327,-0.354947298765182,1.70549845695496,-0.56839793920517,-0.427798174321651,0.733606457710266,-0.587184004485607,-0.0636624097824097,0.92531830072403,-0.187690384685993,0.195351600646973,1.71161991357803,-0.488794095814228,-0.363759487867355,1.44630959630013,-0.498907215893269,-0.595260590314865,0.776576071977615,-0.144907169044018,0.0876084566116333,0.814196348190308,-0.396329605253413,0.240973114967346,1.65041273832321,0.109136014478281,-0.48338907957077,1.7584462761879,-0.231963694095612,0.00105553865432739,1.23956507444382,-0.190171964466572,-0.763094931840897,1.22538155317307,0.00123671116307378,-0.72521984577179,0.715673491358757,0.0285932430997491,-0.481331586837769,1.71473586559296,0.00482955574989319,-0.384847670793533,1.56502795219421,0.032392218708992,-0.075869619846344,1.64042693376541,0.195704590529203,-0.0981258153915405,1.72555702924728,-0.139953606529161,-0.398484289646149,0.676409602165222,-0.396905615925789,0.15408056974411, +1.4399202466011,-0.233577139675617,-0.543651908636093,1.39163774251938,-0.122938998742029,-0.656734824180603,0.252181642048527,-0.372558825882152,0.03938227891922,1.81634479761124,0.0421388000249863,-0.248685985803604,1.19551733136177,0.0307884961366653,0.431280195713043,1.47784215211868,0.193941816687584,0.884979382157326,1.7304835319519,0.101155951619148,-0.336046636104584,1.74241387844086,-0.00649231672286987,0.259041577577591,1.85206335783005,0.16836516559124,-0.186137080192566,1.87947201728821,0.108301520347595,-0.0226844847202301,1.56494164466858,-0.169705331325531,0.417507961392403,0.974946260452271,-0.359622627496719,0.43606561422348,0.947207987308502,3.02046537399292e-05,0.405203938484192,0.766623308882117,-0.534335374832153,0.655097514390945,0.898669347167015,-0.0298307612538338,0.213023543357849,1.16822263598442,0.195996358990669,0.14325487613678,0.512642174959183,0.201619576662779,-0.0637174248695374,1.16534166038036,0.0319859907031059,0.568026572465897,1.17305174469948,-0.147605448961258,0.272265255451202,1.21717020869255,0.222019717097282,0.146843671798706,0.725633859634399,-0.00389721989631653,-0.0248621702194214,1.07245898246765,0.283823780715466,0.621644198894501,1.19491237401962,0.0734813958406448,0.450323760509491,1.25102362036705,0.285390615463257,0.336769282817841,1.11000069975853,0.19671069085598,0.411740601062775,1.40972557663918,-0.66107239574194,0.776470668613911,1.36890599131584,-0.684463500976563,0.449734807014465,1.35895943641663,-0.828276932239532,0.801326204091311,1.25139579176903,-0.972066730260849,0.36869490146637,1.35709947347641,-0.511569492518902,0.384082227945328,1.37315398454666,-0.811411082744598,0.597822859883308,1.28127637505531,-0.441898085176945,0.208707630634308,1.34863695502281,-0.505148092284799,0.412839472293854,0.946486502885818,-0.527320541441441,-0.0187292695045471,1.2006348669529,-0.320412144064903,0.299001574516296,0.724517703056335,-0.285191982984543,-0.0800443887710571,1.32332208752632,-0.549180880188942,0.358425557613373,1.33012026548386,-0.345205202698708,0.465918660163879, +1.35223349928856,-0.166650034487247,0.388914853334427,1.28009042143822,-0.609939031302929,0.2397141456604,1.03575101494789,-0.634518027305603,0.105007231235504,1.1251825094223,-0.580417215824127,0.24422550201416,1.184944242239,-0.050812509143725,0.305218994617462,0.828938901424408,-0.324181005358696,-0.0193167328834534,1.38837760686874,-0.292846318334341,0.620667070150375,1.38526323437691,-0.0767428819090128,1.01908794045448,1.31840053200722,-0.117199055850506,0.541437655687332,1.1747023165226,-0.415617041289806,0.703361824154854,0.997593937176134,-0.396732876077294,0.862750582396984,0.937033343928306,-0.52371746301651,1.21177932620049,1.03921677172184,-0.687427043914795,0.89775750041008,1.02493299543858,-0.811317920684814,0.487445205450058,1.11475256085396,-0.549054741859436,0.552974164485931,0.994971767067909,-0.687786519527435,0.672845721244812,1.13844433426857,-0.247849365696311,0.637872040271759,0.999432295560837,-0.0937708280980587,0.757248803973198,0.687664964420037,-0.148832585662603,0.256085872650146,0.994025932624936,-0.0500232353806496,0.893587097525597,0.850244626402855,-0.0263165049254894,0.884494706988335,0.858095735311508,-0.574464276432991,0.636239439249039,0.722602292895317,-0.508402869105339,0.822091847658157,0.987038654275239,-0.13421281054616,0.814485147595406,0.772411093115807,-0.481833897531033,0.340474843978882,1.32218483090401,-0.0594247728586197,0.912972263991833,1.33727461099625,-0.435333542525768,0.806539043784142,1.33939665555954,-0.0580747835338116,0.78240978717804,1.36306968331337,-0.0689357910305262,0.773249357938766,1.33420777320862,-0.412707343697548,1.00133285671473,1.34960204362869,-0.38229862600565,0.857350306585431,1.38352972269058,-0.158003445714712,0.858353164047003,1.21700406074524,-0.557533390820026,1.12948054075241,1.54375582933426,-1.15996932983398,-0.267122633755207,1.64371818304062,-0.72304093837738,-0.453976586461067,1.8569837808609,-0.456506449729204,-0.265095448121428,1.93752092123032,0.206083860248327,-0.297965124249458,1.64429748058319,-0.613535199314356,-0.489941604435444, +0.674910038709641,-0.856733381748199,-0.669201701879501,0.554013311862946,-0.125282503664494,-0.400193691253662,1.89865756034851,0.132890220731497,-0.00691258907318115,1.60202145576477,0.10875902697444,0.453985035419464,1.33260130882263,0.665692642331123,1.05524507164955,1.51447176933289,0.203890942037106,1.28057050704956,0.761342495679855,0.421599559485912,-1.16090494394302,0.821805879473686,0.0115312300622463,-1.06723494827747,1.54041427373886,0.534498762339354,-0.881393790245056,1.63945233821869,0.169970765709877,-0.975590229034424,1.24099333584309,0.0329886972904205,-1.01860254257917,1.93814080953598,0.251120768138207,-0.245272133499384,1.58710390329361,0.180021941661835,-1.01916843652725,0.665184512734413,0.561919763684273,-0.286303758621216,0.818315446376801,0.287614353001118,-1.18176856637001,1.18055987358093,0.000554971396923065,-1.21298086643219,1.67732632160187,0.884563371539116,-0.32325904071331,1.73100697994232,0.176468652673066,0.368927031755447,1.62345051765442,0.230059653520584,1.01225125789642,1.00458531826735,1.01117786765099,-0.938682526350021,1.12094929814339,0.346033126115799,-0.987410623580217,1.4503989815712,1.22851756215096,-0.182966768741608,1.89118355512619,0.487727485597134,-0.184157735668123,1.8077877163887,0.2192063331604,0.684118375182152,0.771443545818329,0.854578346014023,-0.0951716899871826,0.92203488945961,0.175090566277504,-0.210145711898804,1.72786152362823,0.0711778625845909,-0.18531596660614,1.29045081138611,1.21963396668434,0.33878156915307,1.81153637170792,0.502056688070297,0.298795491456985,1.78224164247513,0.14060633443296,0.875037014484406,1.19832082092762,0.972249209880829,-0.223701477050781,1.44226479530334,0.570077627897263,-0.31132373213768,1.89677911996841,0.245314240455627,0.317539399024099,1.30849409103394,1.29868167638779,0.435269929468632,1.72035646438599,0.618030413985252,0.472379449754953,1.5965039730072,0.181512676179409,1.01465660333633,1.25699734687805,1.13263472914696,0.058857649564743,1.50475054979324,0.614653199911118,-0.0990476608276367,1.56385171413422,0.399702273309231, +0.579714380204678,1.18158701062202,0.306334555149078,0.365385547280312,1.71952039003372,-0.379092872142792,0.250655807554722,0.508548438549042,-0.342289157211781,1.32327827811241,0.636112585663795,-0.37896210247709,1.4749636054039,0.537809729576111,-0.526885576546192,1.42343747615814,-0.0299175977706909,-0.322774264961481,1.06008237600327,-0.155841410160065,-0.293007384985685,0.827417522668839,-0.132633030414581,-0.474781267344952,1.0013542175293,-0.18763667345047,-0.630815997719765,0.411640509963036,-0.177326440811157,-0.589820791035891,-0.00209343433380127,-0.140187323093414,-0.388633582741022,0.336420465260744,-0.114830255508423,-0.383570652455091,0.26481968164444,0.591332018375397,-0.107938975095749,1.13619467616081,0.433223575353622,-0.194941475987434,1.21653538942337,0.530419945716858,-0.307176642119884,1.21187835931778,0.460188031196594,-0.453121930360794,1.12792292237282,0.644836992025375,-0.210665643215179,1.24086344242096,0.353074550628662,-0.359253348782659,1.18212139606476,0.358888924121857,0.112878195941448,1.23325178027153,0.880339585244656,0.710343219339848,0.972704917192459,0.816079288721085,0.499337702989578,0.882409989833832,0.801633283495903,0.485913425683975,0.961514681577682,0.441736698150635,0.818661391735077,0.563791930675507,0.0840742588043213,0.272586159408092,0.869836419820786,-0.371571719646454,-0.570887036621571,0.852628707885742,-0.402752995491028,-0.217015713453293,0.540705882012844,-0.29597795009613,-0.031624972820282,0.979129105806351,-0.234131932258606,-0.476038128137589,1.15279203653336,-0.30549031496048,-0.588052811101079,1.01134133338928,0.225679367780685,0.330138117074966,1.08295965194702,0.195419430732727,0.279880464076996,0.680167406797409,-0.196124911308289,0.018348753452301,0.775070264935493,-0.360353887081146,-0.324936337769032,0.746436066925526,-0.270007848739624,0.293264985084534,0.635004714131355,-0.180590212345123,0.287294313311577,0.813013702630997,-0.357747554779053,-0.381530134007335,0.79738675057888,-0.369041502475739,-0.132354348897934,0.792772643268108,0.0793046355247498, +0.685775309801102,0.970100164413452,-0.204410195350647,-0.31767962872982,0.638842433691025,-0.140745222568512,0.0573362708091736,0.580286480486393,-0.194609999656677,-0.11001561768353,0.79224456846714,0.696403190493584,0.905656889081001,0.683515354990959,0.646856337785721,0.387303352355957,1.15875738859177,0.610713332891464,0.506154924631119,0.920028984546661,0.691873446106911,0.44017568230629,1.39347380399704,0.456568092107773,0.0201316326856613,1.5359765291214,0.435200028121471,-0.753162171691656,0.759928226470947,0.434245206415653,-0.568145304918289,0.552726477384567,0.829335331916809,0.0513848438858986,0.640015453100204,0.537385255098343,0.163338601589203,0.706072196364403,-0.11816143989563,-0.81209210306406,0.346967846155167,0.28039975464344,-0.898497808724642,1.01304842159152,0.41299295425415,-0.0835332348942757,1.13503256440163,0.532071888446808,-0.0985494256019592,0.575028270483017,0.421540260314941,-0.154966309666634,0.517289251089096,0.574118226766586,-0.14401775598526,1.22008660435677,0.787718951702118,0.0329766431823373,1.30925226211548,0.501959651708603,0.84371979534626,0.182421624660492,0.254889249801636,0.229172676801682,0.440582022070885,0.110081851482391,-0.0351434051990509,0.221521824598312,0.154553592205048,0.427280351519585,0.203883200883865,0.292424559593201,0.440428286790848,0.497239917516708,0.527373850345612,0.899810969829559,0.372593134641647,0.00729483366012573,0.617709219455719,-0.179090138524771,0.572767317295074,0.111420810222626,0.785630434751511,0.315341413021088,0.441420331597328,0.386725515127182,0.48446136713028,0.309666264802217,1.1696103811264,-0.0721390247344971,0.299716200679541,0.40132962167263,0.253131210803986,0.302898263558745,0.440213590860367,0.535821229219437,0.0955591662786901,0.606079369783401,0.492474615573883,1.19159132242203,-0.254603914916515,0.0144780874252319,0.642059221863747,0.432434946298599,-0.157055258750916,0.496135249733925,0.196935243904591,-0.093761682510376,0.739063173532486,-0.699704974889755,0.0118244290351868,0.630644381046295,-0.173082292079926,0.586483150720596, +1.08968997001648,0.179655104875565,-0.0423392653465271,0.940462917089462,-0.138417109847069,-0.0236181020736694,0.495818763971329,0.256997689604759,0.159824967384338,0.656027346849442,0.517348647117615,0.21337890625,0.611252054572105,0.905605763196945,-0.0499762296676636,0.02620913926512,0.349129743874073,0.070023775100708,-0.0668739564716816,0.354596995282918,0.0417362451553345,0.172067917883396,0.419430259615183,0.00133657455444336,0.302504897117615,-0.188961893320084,0.590548127889633,0.956432122737169,0.146122985053807,0.11937403678894,0.516716234385967,0.144425271078944,-0.0318312644958496,0.295856885612011,0.162393987178802,0.0779799222946167,0.70318104326725,0.00838863104581833,-0.0981938242912292,0.330634512007236,0.28038439899683,-0.0708258748054504,0.169778645038605,0.203498460352421,-0.0310775637626648,0.172322705388069,0.136817421764135,0.422764122486115,0.811969518661499,0.963143572211266,0.0224833488464355,0.480100054293871,0.944623231887817,0.574247002601624,-0.391498849727213,0.9633863940835,0.30252730846405,-0.290532484650612,0.810210114344954,0.426162093877792,-0.327080715447664,0.879977360367775,0.0568743944168091,-0.382526422850788,0.548462901264429,0.432774007320404,-0.345050513744354,0.897422827780247,0.628906190395355,-0.375342197716236,0.995754215866327,0.4057257771492,-0.294510647654533,0.947318129241467,0.350628733634949,-0.427793525159359,0.898229777812958,0.490055471658707,-0.297500248998404,1.00718964636326,0.636437505483627,0.530147090554237,0.741160944104195,0.636134922504425,0.338797062635422,0.778562322258949,0.508096665143967,-0.0250325798988342,0.951660819351673,0.530945181846619,0.0300072729587555,0.901600182056427,0.822928205132484,0.25645911693573,0.864399023354053,0.913910433650017,0.490666836500168,0.705055117607117,0.785413339734077,-0.151616513729095,1.06713587790728,0.816985547542572,0.159466236829758,0.98775602504611,0.623408526182175,-0.125337906181812,0.924658812582493,0.589383482933044,0.0438455790281296,0.973237879574299,0.79572257399559,0.361568883061409,0.945451453328133, +0.257957339286804,0.132766745984554,0.656166199827567,0.731290251016617,-0.0918148106429726,1.00037194415927,0.350809335708618,-0.192456752061844,1.1677226126194,0.534862101078033,-0.31319971382618,1.33309772610664,0.0588343143463135,-0.275952398777008,1.0540366768837,0.324463546276093,-0.33806187659502,1.23290947079659,0.539513826370239,-0.49750155583024,1.28532460331917,-0.0263469815254211,-0.309113355353475,0.836359351873398,-0.122941434383392,-0.278939390555024,0.374580943956971,-0.110192477703094,-0.44983216188848,0.624974012374878,0.344310879707336,0.48153030872345,0.763740718364716,0.377696454524994,0.65521652251482,0.830723971128464,-0.0944095253944397,-0.143493130803108,0.612124800682068,-0.0738106966018677,-0.0774129182100296,0.764917016029358,0.488984048366547,0.62689246982336,0.988265246152878,0.0725138783454895,0.048221543431282,0.740943759679794,0.163031101226807,0.145561575889587,0.933343410491943,0.111005187034607,-0.0542522817850113,0.960814446210861,0.140608727931976,0.133606489049271,0.794861644506454,0.478573620319366,0.57979816198349,0.835803925991058,-0.0183754563331604,0.152306839823723,0.560195043683052,0.0126475095748901,-0.0663071591407061,0.893372386693954,0.0653011798858643,0.316005330532789,0.740680128335953,-0.0491102337837219,0.342315450310707,-0.152057290077209,-0.267289578914642,-0.0331066614016891,-0.51596012711525,-0.151713073253632,0.0587274208664894,-0.255128920078278,-0.0563669204711914,0.14251995831728,-0.0663331151008606,-0.0264261960983276,0.0388858541846275,-0.114464491605759,-0.22789454460144,0.0374409724026918,-0.744526877999306,-0.163177311420441,0.173208666965365,-0.444110497832298,0.314288556575775,0.923647925257683,-0.584028571844101,0.415609657764435,0.687319427728653,-0.208947412669659,-0.291703343391418,-0.125631434377283,-0.710989188402891,-0.265462815761566,0.188783165998757,-0.650074072182178,0.177311182022095,0.650544807314873,-0.371227890253067,-0.248091280460358,0.116157442331314,-0.383868366479874,-0.048376739025116,0.454734519124031,-0.133413404226303,-0.182122707366943, +0.130448713898659,-0.343254625797272,-0.0747659802436829,0.382633909583092,-0.148783355951309,-0.0296945571899414,0.394620843231678,0.101327896118164,0.0663446187973022,0.216858755797148,0.262179583311081,-0.133610665798187,0.112443692982197,-0.277698814868927,-0.0417957901954651,0.309915848076344,0.0726003348827362,-0.0924734473228455,0.348506197333336,-0.0128157287836075,0.422314941883087,0.91476833820343,0.55318000447005,0.0665438771247864,0.98345547914505,-3.48780304193497e-05,0.101444661617279,1.0238431096077,-0.0925553254783154,0.0328149199485779,0.609306782484055,0.159083600156009,0.085401177406311,0.769611448049545,0.166851446032524,0.0243672728538513,0.895399481058121,0.230607181787491,-0.0919504165649414,0.335219532251358,0.0430125705897808,0.752782821655273,0.880471855401993,0.859706226736307,0.527737885713577,0.470705278217793,1.01184399425983,0.634257823228836,0.356094740331173,1.01102446764708,0.559055924415588,0.299618639051914,0.905175555497408,0.622413337230682,0.260589992627501,0.73446649312973,0.566954970359802,0.262250378727913,0.787288561463356,0.424273133277893,0.476839113980532,0.855687145143747,0.595176786184311,0.416081890463829,0.907172787934542,0.790791407227516,-0.0964985266327858,1.10086861252785,0.6063392162323,-0.0527168586850166,1.08332784473896,0.133787751197815,-0.294287871569395,0.784806817770004,0.257687926292419,-0.183035157620907,0.858343482017517,0.396630644798279,-0.0997642688453197,0.930485159158707,0.363863885402679,-0.156025983393192,0.945540308952332,0.361093819141388,-0.214512135833502,0.869008213281631,0.458095908164978,-0.0202179253101349,0.903949901461601,0.516996175050735,0.013009175658226,0.932757899165154,0.720542922616005,-0.175488002598286,1.03628119826317,-0.0402897596359253,-0.247401997447014,0.0277083464898169,0.144691348075867,-0.185280282050371,0.575845327228308,0.0902460813522339,-0.238810684531927,0.523891253396869,-0.0384831428527832,-0.183062151074409,0.0110840331763029,0.179780244827271,-0.0788253396749496,0.623643528670073,0.2187539935112,-0.0106364339590073, +0.661741998046637,0.436544895172119,-0.063482366502285,0.895556554198265,0.211861312389374,-0.108896560966969,0.668036486953497,0.102535665035248,0.0759313507005572,-0.389979407191277,0.0185118317604065,0.0336327841505408,-0.141130205243826,0.0515286326408386,-0.175765803083777,0.390141483396292,0.0312034487724304,-0.201492346823215,0.335073690861464,0.201096534729004,0.0088875899091363,0.660312138497829,0.152596056461334,-0.0439111823216081,0.576897248625755,0.258412182331085,-0.103223793208599,0.785415008664131,0.478507429361343,-0.362132096663117,0.924580298364162,0.0607054233551025,-0.353301979601383,-0.44545341283083,-0.00134766101837158,-0.18769221752882,0.431349992752075,-0.0696245431900024,-0.506646730005741,0.136499360203743,-0.0886668562889099,-0.362596988677979,-0.0255129486322403,-0.0309926271438599,-0.300936816260219,0.415381148457527,-0.0389806628227234,-0.163599386811256,0.210218355059624,-0.00502002239227295,-0.380414143204689,0.235694989562035,0.026041567325592,-0.477246388792992,0.449381738901138,-0.0038495659828186,-0.037823349237442,-0.00910736620426178,0.0169923901557922,-0.210945211350918,-0.0750778019428253,-0.0360305905342102,-0.394337609410286,0.191184647381306,-0.0522258281707764,-0.443416371941566,0.214798334985971,-0.0342351794242859,-0.168296542018652,0.459749162197113,-0.0106568336486816,-0.285353310406208,0.460509076714516,-0.0241525173187256,0.36729284375906,0.51935601234436,0.0314769744873047,0.212458148598671,0.574781224131584,0.65384629368782,-0.000383317470550537,1.02994478493929,0.444592654705048,0.699460506439209,0.437516301870346,0.159261643886566,0.608463421463966,0.669397875666618,0.0719519257545471,0.690758377313614,0.312634810805321,0.170778691768646,0.362349995411932,0.475747667253017,0.451456189155579,0.235869839787483,0.883564718067646,-0.714884516783059,0.0261218049563468,1.69872295856476,-1.15320056676865,0.514094524085522,1.46135407686234,-1.19826102256775,0.194806322455406,1.58597135543823,-0.484693771621096,0.603152431547642,1.69117540121078,-0.530710575170815,0.147333230823278, +1.83899533748627,-0.671456798911095,0.282665371894836,1.3141233921051,-1.45790416002274,-0.105252355337143,1.087795317173,-1.08896321058273,0.769695691764355,1.22221481800079,-1.33970189094543,0.398782603442669,1.34081268310547,-1.09952032566071,0.436833620071411,0.468617737293243,-1.07102137804031,-0.0565231740474701,0.457167744636536,-0.676660507917404,0.797728203237057,1.40403616428375,-0.99259340763092,0.404297918081284,1.57724976539612,-1.10616636276245,0.733451187610626,0.304927229881287,-1.39003962278366,0.197646297514439,0.242984354496002,-0.629669070243835,0.91674330085516,1.1237905472517,-0.526903837919235,0.136979401111603,1.13782148063183,-0.15407407283783,0.485544979572296,0.585233211517334,-0.522707879543304,-0.0249145925045013,0.512207567691803,-0.132457166910172,0.44244709610939,1.03305120766163,-0.53986445069313,0.129414230585098,1.10126021504402,-0.157739132642746,0.429960578680038,0.661777287721634,-0.607710927724838,0.0228554308414459,0.615493357181549,-0.134120851755142,0.668123751878738,0.95368498750031,-0.576754748821259,0.447472673840821,1.04814305156469,0.372391765937209,1.05232267081738,1.03407613188028,0.407474250067025,0.833329975605011,1.36090329289436,0.316135402070358,0.886625315994024,1.34134605526924,0.381252052262425,1.04644767940044,1.07724833488464,0.225475892424583,1.05094307661057,1.27778196334839,0.345537900924683,0.819003567099571,1.31400460004807,0.36814583465457,0.936133801937103,0.981408253312111,-0.189761906440253,1.00478241592646,1.34501907229424,-0.733810424804688,1.03747873008251,1.1723698079586,-0.0477924346923828,1.10697604715824,1.14298690855503,-0.299019860387489,0.861164234578609,1.5817021727562,-0.54895992577076,0.976793274283409,1.36921292543411,-0.257872193629737,1.05286667495966,0.971249205991626,-0.16481406094681,0.879011012613773,1.56233257055283,-0.91692453622818,0.856538832187653,1.32929283380508,-0.123399898409843,1.21481242775917,1.11201925575733,-0.588470816612244,1.05779047310352,1.34677013754845,-0.625224262475967,0.940806314349174,1.41316437721252,-0.224176664836705, +1.16324158012867,1.01601707190275,0.165722966194153,0.634387940168381,1.24661633372307,0.108776897192001,0.653763428330421,1.20589160919189,0.579540371894836,0.465917766094208,1.11322367191315,0.0817433595657349,0.426351308822632,1.20139873027802,0.277667291462421,0.57055190205574,1.41148805618286,0.148644134402275,0.478212833404541,0.5342016518116,0.0938087552785873,0.488479763269424,0.972294852137566,0.00906354188919067,0.629019647836685,0.927335392683744,0.593309749849141,1.07851748913527,0.858577471226454,0.687610045075417,0.995768789201975,0.736868023872375,0.598476782441139,1.18841445446014,0.846653789281845,0.531120489351451,1.23886425793171,0.953998818993568,0.145450562238693,1.1462889611721,1.29004150629044,0.139467850327492,1.03226467967033,1.18483451008797,0.664391793310642,0.932181648910046,1.32637202739716,0.367748379707336,1.20310868322849,1.07509309053421,0.463799528777599,0.899587444961071,1.37084007263184,0.313520763069391,1.08163675665855,0.828910306096077,0.314360816031694,0.92932765930891,0.85969439893961,0.495175823569298,0.889255724847317,0.621174544095993,0.917719767661765,0.87819030880928,0.414458606392145,0.874319459144317,1.04427659884095,0.552323468029499,0.562464086338878,1.07939755171537,0.830456817522645,0.66149003431201,0.902363024652004,0.893117666244507,0.534513972699642,1.0576788932085,1.20326352119446,0.552838873118162,1.05844108760357,0.993232190608978,0.507123589515686,0.83210077136755,1.3381541967392,0.341636743396521,0.917848527431488,1.02244459092617,0.619792155921459,0.928338155150414,1.34901696443558,0.30655961483717,0.980268236249685,0.553043574094772,0.395029810722917,0.940882746130228,0.828037261962891,0.305753037333488,0.842293821275234,0.5059974193573,0.477756600826979,1.10822923481464,0.993304617702961,0.460017241537571,1.13954673707485,0.970433056354523,0.515344716608524,1.40690597891808,0.874131888151169,0.634515041485429,1.4292140007019,0.679278608411551,0.406848110258579,1.12958733737469,1.08927430212498,0.437626093626022,1.12643599510193,0.965175852179527,0.348566416651011, +1.32282382249832,1.18504846096039,0.332882829010487,1.40544649958611,0.867721274495125,0.452788388356566,1.35371413826942,1.13887485861778,0.241964429616928,1.23364099860191,0.932074993848801,0.327924817800522,1.20164968073368,0.584736302495003,0.781368029303849,1.21248978376389,0.812082424759865,0.69990062341094,1.41865801811218,0.774562150239944,0.462643686681986,1.39267763495445,0.998560264706612,0.508973057381809,1.2447933703661,0.899994291365147,-0.140047501772642,0.982320612296462,1.23887488245964,0.037474031560123,1.04167985916138,1.10010413080454,0.172492071986198,1.09581030905247,1.35789185762405,-0.100753110367805,1.08991252630949,1.14588640630245,0.483781561255455,0.993436120450497,1.23275005817413,0.58100276812911,0.957232490181923,0.667278088629246,-0.14767200127244,1.01170731149614,1.02205116860569,-0.11175260366872,1.09020941704512,0.852529555559158,-0.0911467126570642,1.00038004480302,1.15668378770351,0.663633409887552,0.962533131241798,0.844355341047049,0.703107386827469,0.833940669894218,0.850388363003731,-0.178062875755131,0.933539144694805,0.901586942374706,-0.110848467797041,0.933090418577194,0.946347706019878,0.0410064244642854,1.04486483335495,0.935976952314377,-0.0890597263351083,1.01256919465959,1.0375890545547,-0.302534177899361,0.869239680469036,1.32038956880569,0.369485013186932,0.672709465026855,0.898853249847889,0.52493592351675,0.556192755699158,0.437334597110748,0.394820772111416,0.454205334186554,0.84117916226387,0.195700243115425,-0.156587421894073,-0.162940859794617,0.345287919044495,0.5927734375,0.420829236507416,0.579663082957268,0.391284763813019,0.359991908073425,0.528003171086311,0.417083591222763,0.363858193159103,0.90014660358429,0.629306763410568,0.781287390738726,0.683367133140564,0.98850716650486,0.653451457619667,0.651344180107117,0.937875155359507,0.682543992996216,0.717863395810127,0.994593992829323,1.07504413276911,0.149610035121441,1.17477518320084,0.430529028177261,0.064030796289444,0.813130680471659,0.360752165317535,0.554283156991005,0.983426328748465,0.591736555099487, +0.515180062502623,1.16960920393467,0.462921977043152,0.500895038247108,1.13912536203861,0.89376062899828,0.353918805718422,1.16646154224873,0.722877636551857,0.619245573878288,1.16554088890553,0.481975227594376,1.05139857530594,0.932832501828671,0.964746475219727,0.058315362315625,1.00478862971067,0.559461951255798,0.0184263288974762,0.926202788949013,0.329035639762878,0.505836546421051,1.27035075426102,0.820441469550133,0.278826862573624,1.19277401268482,0.750280931591988,0.334905515890568,1.01090817898512,1.25487959384918,0.718155652284622,1.01039244234562,0.925170674920082,0.721252948045731,0.977842178195715,1.09413006901741,0.47103376686573,0.945972636342049,0.785968363285065,0.513595372438431,0.991663482040167,0.566558569669724,0.562856337055564,0.984637198969722,0.90908332914114,0.536840014159679,0.822566255927086,0.869105948135257,0.662811696529388,0.854444317519665,1.11084628105164,0.599945403635502,0.597294092178345,0.856033481657505,0.645617097616196,0.592418938875198,0.736266490072012,0.673766955733299,0.294867515563965,1.04738962650299,0.383612044155598,0.418527185916901,0.607521377503872,0.437386237084866,0.496853947639465,0.298845887184143,0.372487008571625,0.41552346944809,0.77301487326622,0.358085371553898,0.431338787078857,0.825870245695114,0.471425536088645,0.584944784641266,0.959056288003922,0.580790407955647,1.07361082732677,0.832335025072098,0.867685141973197,1.04041614755988,0.534152979031205,0.868457902222872,1.11594213545322,0.919013887643814,0.625774126499891,1.23799414932728,0.760179115692154,0.418941181153059,1.21775594353676,0.582061380147934,0.40332393720746,1.08039572089911,1.03884397447109,0.646509246551432,1.05948548018932,0.952732294797897,0.670067600905895,1.20766897499561,0.996141120791435,0.629748830571771,1.07279948890209,0.864092573523521,0.536211892962456,1.08344265073538,0.999662503600121,0.558742433786392,0.840639241039753,1.29484251141548,0.72042566165328,0.918584212660789,0.747274253517389,0.93313304707408,0.885524272918701,0.300791710615158,0.806872829794884,1.0373339317739, +0.571532107889652,0.63715931866318,1.06822143495083,0.901417657732964,0.749562568962574,0.916324064135551,0.70243626087904,0.724576065316796,1.16622494161129,0.600304678082466,0.665098011493683,0.935124710202217,1.27463248372078,0.68514609336853,1.37676858901978,0.878023132681847,0.86136569082737,0.458450302481651,-0.426981568336487,0.222421914339066,0.12381824105978,1.82366281747818,0.177355378866196,-0.142896087840199,1.7714586853981,-0.412058979272842,0.812971204519272,0.979239821434021,-0.230214059352875,0.998984515666962,0.825521096587181,-0.353852450847626,0.78097677230835,0.845309011638165,-0.506055504083633,0.572903677821159,0.882103860378265,-0.50485298037529,0.46856851875782,0.986385688185692,-0.316597759723663,0.406284675002098,1.10916531085968,0.0180743336677551,0.325103998184204,1.15642672777176,-0.174718022346497,0.421868223696947,0.967455148696899,-0.227557837963104,0.599616453051567,1.30628311634064,-0.19816380739212,0.353649288415909,1.34393298625946,0.222080230712891,0.468496784567833,1.46079629659653,0.360228896141052,0.33973240852356,1.29199489951134,0.306709975004196,0.18393012881279,1.60596770048141,1.05904120206833,-0.121100515127182,-0.488606423139572,0.66237718379125,0.172681462019682,-0.25434273481369,0.577871888875961,-0.343766957521439,-0.22302371263504,0.339857995510101,-0.152245376259089,1.66479969024658,0.372625440359116,-0.236327685415745,0.170393466949463,0.508026838302612,-0.237777978181839,0.0418021082878113,1.14918306469917,-0.100502580404282,0.505558907985687,-0.113212916301563,0.0430364534258842,-0.0116557478904724,0.731633961200714,-0.225551351904869,0.0860220193862915,0.857499063014984,-0.239144780905917,0.207836985588074,0.784924894571304,-0.274305917322636,0.756614252924919,-0.218973904848099,0.00142695009708405,-0.000320076942443848,0.40023073554039,-0.562567926943302,0.37886381149292,1.11079186201096,-0.383833610685542,0.626099914312363,1.17332917451859,-0.539282605051994,1.07475513219833,0.110914662480354,-0.244967453181744,0.0311375260353088,0.97510090470314,-0.527691893279552, +0.45248019695282,1.20484098792076,-0.206442624330521,0.754619404673576,0.762347966432571,-0.377158977091312,1.15101280808449,0.193265005946159,-0.224241904914379,0.0535897016525269,1.4474361538887,-0.826150059700012,-0.00388634204864502,1.67413413524628,-0.651552259922028,0.27910441160202,1.50834715366364,-0.98675325512886,0.813549548387527,1.36233055591583,-0.775076374411583,-0.203503340482712,1.61779642105103,-0.829172730445862,0.377118691802025,1.60614484548569,-0.867705076932907,0.444846140220761,1.42359232902527,-1.07293146848679,0.86388173699379,1.44254696369171,-0.586720392107964,-0.0371620655059814,1.46939140558243,-0.247792020440102,0.559140309691429,1.72130423784256,-0.111790478229523,0.64821046916768,1.65336579084396,-0.385934099555016,1.03507587313652,1.59730684757233,-0.487444862723351,0.999603658914566,-0.232360184192657,0.0566453337669373,0.784676060080528,-0.191122889518738,0.0774051435291767,0.381951034069061,-0.192120432853699,-0.196029596030712,0.826217144727707,-0.186136364936829,-0.12529537267983,0.350107818841934,-0.364528775215149,0.0557370558381081,1.05835464596748,-0.452684223651886,0.114741396158934,0.415769577026367,-0.809447040781379,0.339297955855727,1.51803988218307,-0.582998305559158,0.566996488720179,0.382870078086853,-0.3712517619133,0.167032912373543,1.50299817323685,-0.0824093222618103,0.43620876967907,1.60799199342728,-0.803017308935523,0.321722023189068,1.52557748556137,-0.442371418699622,0.431669943034649,1.82460820674896,-0.292499840259552,0.929470032453537,1.00974631309509,-0.380929440259933,0.823235854506493,1.00706761330366,-0.844287663698196,0.821715027093887,1.07263696938753,-0.493802815675735,0.860838353633881,0.993358865380287,-0.459204703569412,1.12930124998093,0.875000052154064,-0.839790990576148,0.90892431139946,1.01932425796986,-0.885557323694229,0.662074953317642,1.35028037428856,0.0220937728881836,0.205168008804321,0.699427574872971,0.0264111757278442,0.118924468755722,0.716297537088394,0.00882184505462646,-0.0463059544563293,0.752508550882339,-0.0340034961700439, +-0.066731184720993,0.819027185440063,0.020414412021637,0.0732657313346863,0.882647305727005,0.173169851303101,0.080438494682312,0.927700579166412,0.0804380178451538,0.0446053743362427,0.908684283494949,0.153664231300354,0.238875329494476,1.00375410914421,0.604451328516006,0.845081970095634,0.979501754045486,0.60228967666626,0.831841319799423,0.541770711541176,0.567183673381805,0.960575371980667,0.70681381598115,0.587982773780823,1.04856669902802,1.03695079684258,0.464723259210587,1.08720934391022,1.20117110013962,0.520944118499756,0.837845280766487,1.27147209644318,0.118893623352051,0.589573785662651,0.717785716056824,0.190233826637268,0.855755493044853,0.353243727236986,0.336028456687927,1.05693526566029,0.719271257519722,0.0997486710548401,0.657586883753538,0.611830122768879,0.199771344661713,0.620669411495328,0.343183286488056,0.162539005279541,0.542889250442386,-0.0234153270721436,0.171803712844849,0.732641488313675,0.00380559265613556,0.122483670711517,0.739194318652153,0.496837109327316,0.212630331516266,0.487791525200009,0.677096575498581,0.12776517868042,0.734022378921509,0.806596517562866,0.198937773704529,0.676387771964073,0.689464300870895,0.201225697994232,0.50752330571413,0.902176409959793,0.106723964214325,0.471166327595711,0.9593326151371,0.433213114738464,0.813145503401756,1.04102742671967,0.403047323226929,0.598486304283142,0.985478192567825,0.481375098228455,0.596128709614277,1.08671927452087,0.580695301294327,0.854395687580109,1.1170120537281,0.488170951604843,0.814416199922562,1.26993417739868,0.456260293722153,1.24827647209167,1.03544828295708,0.534231960773468,1.20862877368927,0.833199143409729,0.526963122189045,1.27605903148651,1.19893208146095,0.655546598136425,1.4306988120079,0.866787046194077,0.574460931122303,1.42896795272827,1.01888737082481,0.653845481574535,1.25258153676987,1.04159706830978,0.771703757345676,1.23679292201996,0.854140549898148,0.845045894384384,1.18237444758415,0.535545621067286,0.729699671268463,1.40594869852066,0.643169820308685,0.630390517413616,1.48673111200333,0.75638535618782, +0.752913266420364,1.25710326433182,0.814807713031769,0.0855343118309975,0.972585080191493,1.28779619932175,0.5473597869277,1.03973071277142,1.10137376189232,0.542300663888454,1.23217651247978,0.976983785629272,0.14788431674242,1.1134560406208,1.23124140501022,0.650321274995804,1.18073256313801,0.814678832888603,0.594812706112862,1.02065547928214,0.957913190126419,0.0588899552822113,1.00879776291549,1.11451224982738,0.128915339708328,1.13735261559486,1.11569158732891,0.0536400228738785,1.01676916889846,0.958787497133017,0.570488333702087,1.04712488874793,0.780890986323357,0.825121775269508,-0.218170151114464,-0.178467690944672,0.347915723919868,-0.235725136473775,0.0298144817352295,-0.0570959150791168,0.592369012534618,1.67886167764664,0.695605739951134,0.411535084247589,0.861587464809418,0.654342636466026,0.255601495504379,1.10375502705574,0.743822923919652,-0.698394082486629,-0.678669393062592,0.437264144420624,-0.754556611180305,-0.716867685317993,0.798667403068976,-0.639510460197926,-0.800686538219452,0.247552216053009,-0.617768727242947,-0.624739319086075,0.614037394523621,-0.334896582178771,-0.677275061607361,0.76283784635234,1.17773576080799,0.351498395204544,0.495877623558044,1.07969844341278,0.341766357421875,0.20927856862545,0.909249812364578,1.69875055551529,0.567495390539989,1.36021786928177,1.0765959918499,0.459868520498276,0.314968883991241,1.59039586782455,0.887830655046855,0.157730205915868,1.42918521165848,0.340531349182129,0.378379417583346,1.4940037727356,0.0746892690658569,0.625941455364227,1.80196040868759,0.174026727676392,0.970261186361313,1.64831310510635,0.610733300447464,1.18222489953041,1.18650287389755,0.663152106106281,0.949383571743965,1.27220851182938,0.124959975481033,0.968884497880936,1.52618795633316,0.531564131379128,1.07410165667534,1.29880356788635,0.427584141492844,1.26240837574005,1.23951476812363,0.195075407624245,1.1776610314846,1.43013596534729,0.0927019119262695,0.996871262788773,1.47546893358231,0.611956208944321,1.04486466944218,1.14336651563644,0.693074613809586,0.999099031090736, +0.974891811609268,0.761907830834389,0.732765816152096,0.862908989191055,0.735043421387672,0.804427064955235,0.78393429517746,0.683644071221352,1.01350982487202,0.946374326944351,0.704210370779037,1.00169079005718,0.746569603681564,0.726730242371559,0.828447245061398,0.629504472017288,0.621017515659332,0.639579057693481,0.775215536355972,0.585051566362381,0.468758434057236,0.638672232627869,0.521623313426971,0.470525115728378,0.564223416149616,0.597361847758293,0.663791537284851,0.649087026715279,0.521316051483154,0.478029876947403,0.413824869319797,0.481656223535538,0.446323215961456,0.530354015529156,0.565013095736504,0.636177539825439,0.631406851112843,0.741683423519135,1.10351780056953,0.182307625189424,0.778255596756935,1.02480997145176,0.29237849265337,0.769775316119194,-0.0740673840045929,-0.92814214900136,1.05870737880468,0.971226006746292,0.92012132704258,1.31033143401146,-0.0407326370477676,-0.633665442466736,1.50238126516342,0.212153211236,-0.616132602095604,1.25273340940475,0.136869976762682,-0.754631891846657,1.20009827613831,1.06437468528748,-0.023250550031662,1.08981850743294,0.475115247070789,1.06319105625153,0.985735647613183,0.853238888084888,0.555939242243767,1.28245994448662,0.10312170907855,0.860923632979393,1.36889344453812,0.0858657658100128,0.872906215488911,1.22705954313278,0.383090615272522,1.13735346496105,1.17102359235287,0.561933882534504,0.925453081727028,1.14023654162884,0.823423445224762,0.997091799974442,1.10860027372837,0.807158194482327,1.08637711405754,1.10085915029049,1.1586109995842,0.815799295902252,1.11749619245529,1.1508928835392,0.636712783016264,1.13253298401833,0.875768445432186,0.998145371675491,1.11241488158703,0.833771869540215,1.04472821950912,1.07918226718903,1.22256511449814,0.903317183256149,1.12686616182327,1.19946736097336,0.754100143909454,1.17325559258461,1.23183488845825,0.683121562004089,1.09642159938812,1.2358295917511,0.874996453523636,1.19648417830467,1.1546114385128,0.746095567941666,1.22954598069191,1.10907605290413,0.685929492115974,1.27799278497696,1.14342913031578, +0.326236378401518,1.1934081017971,1.3170445561409,0.484889000654221,1.24514824151993,1.17942735552788,0.521801367402077,1.23697683215141,0.938324930146337,0.638064652681351,1.1693486571312,0.821906566619873,0.638727426528931,1.1566227376461,0.801534816622734,0.705034181475639,1.22132852673531,0.984351338818669,0.369128737598658,1.15592759847641,0.969494121149182,0.602201066911221,1.13165777921677,0.843717910349369,0.587220147252083,1.12598797678947,0.844841420650482,0.512610290199518,0.58553758263588,0.954322330653667,1.23367938399315,-0.0480054020881653,0.616976045072079,1.37954723834991,-0.418862283229828,0.32623652368784,0.835618950426579,-0.548155039548874,0.269124075770378,1.38264417648315,1.6336897611618,0.503588452935219,0.980530977249146,1.6983687877655,0.202521629631519,1.01966920495033,1.22254848480225,0.0695256739854813,1.34384280443192,1.28157559037209,0.130044241901487,1.25422489643097,1.21054941415787,0.0211437381803989,1.37183284759521,1.7375899553299,0.400630988180637,0.742836117744446,1.34313374757767,0.690730169415474,1.0058827996254,1.12626573443413,0.314357623457909,1.30927529931068,0.691594921052456,0.800599373877048,1.22024062275887,0.444354236125946,0.920772157609463,1.32142025232315,0.374686099588871,0.902379803359509,1.44872137904167,-0.0487922430038452,0.777359530329704,1.39202883839607,0.594220787286758,0.533452928066254,0.941242873668671,1.68379521369934,0.0280833542346954,0.764285355806351,1.17890301346779,0.339816033840179,0.929985076189041,1.87957835197449,-0.184856072068214,0.410676994360983,1.78430050611496,-0.356606643646955,0.701299458742142,1.84207308292389,-0.397806972265244,0.296119956299663,1.83249938488007,-0.288826640695333,0.684048712253571,-0.0670855045318604,0.186056915670633,0.995850026607513,-0.0194099545478821,0.453766360878944,0.871057063341141,-0.0342049598693848,-0.0708349384367466,0.844786375761032,-0.061266303062439,-0.12355818785727,0.770529329776764,-0.0576571226119995,0.0949276257306337,0.934517711400986,0.367169201374054,0.887834995985031,0.894135415554047,-0.0320920944213867, +0.249792255461216,0.586402907967567,0.0290664434432983,0.277910180389881,0.801938861608505,0.949870020151138,0.90988752618432,1.06513887643814,0.668183133006096,0.907628918648697,1.0150071978569,0.278284944593906,1.13923022150993,1.39213293790817,1.18196195363998,0.915503054857254,1.30151474475861,1.11037105321884,0.845460201264359,1.04198390245438,1.13722085952759,0.808313148096204,1.07178688049316,-0.107346832752228,0.724659532308578,1.04769065976143,0.212301760911942,1.03913262486458,1.52480322122574,0.110337272286415,1.02812644839287,1.5072415471077,0.846329212188721,1.09823730587959,1.25117129087448,1.76294791698456,0.172982538118958,0.573444381356239,1.33327332139015,0.151093139313161,0.878609783947468,1.53620648384094,0.230118930339813,1.06142625212669,-0.398457229137421,0.382944129407406,1.01098048686981,-0.645357936620712,0.312413793057203,0.808984473347664,-0.663626581430435,0.151095916517079,0.878587111830711,-0.0298302173614502,-0.126362971961498,0.16099183820188,0.0202555060386658,-0.187169712502509,0.41920106112957,-0.0702394247055054,-0.265616282820702,0.181491499766707,-0.0158146023750305,-0.291499774903059,0.596824809908867,-0.0293368101119995,-0.146452939137816,0.137008354067802,1.90994715690613,-0.293101016432047,0.145494230091572,1.89062803983688,-0.218328088521957,0.329988021403551,1.8245136141777,-0.0321314632892609,0.744409173727036,1.31585642695427,-0.924983385950327,-0.0780960898846388,0.654467225074768,-0.727557584643364,0.00897104851901531,0.595065802335739,-0.649954795837402,-0.0384440124034882,1.26446059346199,-0.824226312339306,0.0806993544101715,1.50355005264282,-0.806321661919355,0.185687527060509,0.409797728061676,-0.607784748077393,0.238914009183645,1.4417918920517,-1.06924107670784,-0.174953348003328,0.520616680383682,-0.858519081026316,-0.106906821485609,0.552709430456161,-0.837441485375166,-0.000477969646453857,1.38747662305832,-0.628132402896881,-0.104847259819508,0.980436140933307,0.27475693821907,-1.06192610412836,1.25371390581131,-0.163634829223156,-0.953155155992135,1.62600582838058, +-0.660373155027628,-0.307157851755619,1.34696325659752,-0.569310069084167,-0.319213919341564,1.46975558996201,-0.571599885821342,0.717918127775192,0.854596617733023,0.741254717111588,-0.666255474090576,1.49714809656143,0.64870747923851,-0.712529074400663,1.7451428771019,0.333364918828011,-0.18464857339859,1.84983944892883,0.194046933203936,0.199611708521843,1.79823279380798,0.428958993870765,0.323188044130802,1.20918449759483,0.813788145780563,-0.569030344486237,1.42776244878769,0.228813737630844,-0.508033931255341,1.34869879484177,0.914543926715851,-0.272320836782455,1.24272763729095,0.53271746635437,-0.48384365439415,0.935439405241141,0.506447225809097,-0.707641750574112,1.80258399248123,0.673749640583992,-0.343071030452847,1.68422931432724,-0.151189714670181,-0.14528776332736,1.62755084037781,0.684457749128342,-0.297549843788147,1.84772288799286,0.34376136213541,-0.139956384897232,1.61859065294266,0.237330973148346,0.492031589150429,1.30930823087692,-0.850535230711102,-0.0302846431732178,1.72724235057831,0.592066451907158,-0.173656702041626,1.61798185110092,0.290865607559681,0.248724728822708,1.88515394926071,0.57963190972805,0.140182787552476,1.34101605415344,-0.97166757658124,0.113129995763302,1.6421936750412,0.062482938170433,1.00341093540192,1.71911698579788,0.145955387502909,0.620222792029381,0.960321307182312,0.368327170610428,-0.144180357456207,0.970930382056395,0.292373012751341,-0.705366104841232,1.23600748181343,-0.427098706364632,-0.704954892396927,1.09018525481224,0.0442496836185455,-0.0599655508995056,1.19861468672752,0.186682924628258,-0.51613387465477,1.68064278364182,0.528508706018329,-0.137058258056641,0.945031702518463,0.327638924121857,-0.167046129703522,1.30278563499451,-0.682167857885361,0.181383669376373,1.77779632806778,0.0741419494152069,-0.361119801178575,1.61902004480362,0.11348095536232,-0.512065753340721,1.78582644462585,-0.222549095749855,-0.4382468406111,1.73416590690613,-0.164247125387192,-0.477790489792824,1.30181819200516,-1.2296906709671,-0.202068665996194,1.80630993843079,-0.327610068023205, +-0.400228038430214,1.71498048305511,-0.022013396024704,-0.429267220199108,1.80936944484711,-0.0649532526731491,-0.447227090597153,1.80722790956497,0.329125165939331,-0.396877706050873,1.43122258782387,-0.718427203595638,-0.198667392134666,1.6342481970787,0.557614535093307,0.594681661576033,1.68913799524307,0.705044656991959,-0.0752297639846802,1.36732366681099,0.531074322760105,-0.625061497092247,1.31898599863052,-0.0263475924730301,-0.983227945864201,1.36647590994835,0.851566165685654,-0.610156074166298,1.11774936318398,0.637561559677124,-0.20111483335495,1.24150019884109,0.598934531211853,-0.130908668041229,1.33232417702675,0.725342869758606,-0.679928913712502,1.33187162876129,0.439691081643105,-0.726376608014107,1.02061522006989,0.44150847196579,-0.241124629974365,1.21948957443237,0.529163643717766,-0.606355756521225,0.829046927591435,0.705336451530457,-0.606348693370819,1.56924319267273,0.716895997524261,0.423869296908379,1.32173681259155,-0.622642636299133,0.552743084728718,1.82389014959335,0.442477852106094,-0.304427146911621,1.81994068622589,0.252887733280659,-0.468634113669395,1.79432994127274,-0.115758836269379,-0.577358959242702,1.81598091125488,0.0102222114801407,-0.544374547898769,1.90290522575378,0.204220704734325,-0.328276380896568,1.78014034032822,0.218826897442341,-0.541342806071043,1.7307562828064,-0.192082077264786,-0.574025204405189,1.90238320827484,-0.0958105176687241,-0.351996151730418,1.32339411973953,-1.23319712281227,-0.103488728404045,1.847023665905,-0.00761213898658752,-0.121986135840416,1.8419286608696,-0.370689395815134,-0.229221105575562,1.85301858186722,-0.4116734508425,-0.176218651235104,1.86579757928848,-0.269209489226341,-0.180058345198631,1.79754441976547,-0.323962524533272,-0.306565217673779,1.73838990926743,-0.267687141895294,-0.466794669628143,1.75308674573898,-0.212182998657227,-0.433208055794239,1.944491147995,0.17437457293272,0.355490196496248,1.53497290611267,-0.757186323404312,-0.0905904024839401,1.8094357252121,0.270198554731905,0.362632647156715,1.90233594179153,0.582162976264954, +0.158044481649995,1.96585959196091,0.232991362921894,-0.00610876828432083,1.99432951211929,0.0527488803490996,-0.0678070057183504,1.99460077285767,0.0436625946313143,-0.000444240868091583,1.96387845277786,0.240362716838717,-0.0314510893076658,1.98351818323135,0.0523872305639088,-0.10179203376174,1.98968493938446,0.0547708118101582,-0.110103825107217,1.04915106296539,0.204711869359016,-0.92815550416708,1.07581281661987,-0.215018376708031,-0.950082316994667,1.20832522213459,0.135759741067886,-1.06335563957691,1.21616668999195,0.378423452377319,-1.05008915066719,1.216796875,0.385121703147888,-0.861239414662123,1.30786889791489,0.0841263830661774,-0.860735908150673,1.32619279623032,0.333511464297771,-0.864803493022919,1.75919204950333,0.422086343169212,-0.505337193608284,1.70845639705658,0.0242028832435608,-0.461515001952648,1.30626592040062,0.895559728145599,-0.98404748737812,1.05123031139374,0.461621388792992,-0.879817023873329,0.935640230774879,-0.00570850074291229,-0.934514116495848,1.33513164520264,0.667730003595352,-0.796726949512959,1.3270206451416,0.695163667201996,-0.896548263728619,1.25655919313431,0.815133839845657,-0.883087985217571,1.41108268499374,0.6429203748703,-0.762211509048939,1.46998804807663,0.490922003984451,-0.780741062015295,1.78587776422501,0.625949561595917,-0.415178468450904,1.75224941968918,-0.103651225566864,-0.599374517798424,1.57429766654968,0.949907898902893,-0.706512168049812,1.1389656662941,0.878723502159119,-0.892697088420391,1.15536685287952,0.0195059478282928,-0.928577234968543,1.68436861038208,0.231175474822521,-0.66801780462265,1.68692815303802,0.162790583446622,-0.615248046815395,1.36532807350159,0.279164731502533,-0.516204014420509,1.80823624134064,-0.182719923555851,-0.319030329585075,1.86975240707397,0.0962449628859758,-0.388385020196438,1.87973660230637,0.345215090084821,0.441472455859184,1.81301212310791,-0.678935080766678,0.442072466015816,1.79672366380692,0.218989580869675,0.00667741894721985,0.81003637611866,0.396557178348303,0.399430453777313,0.666619762778282,-0.578421153128147, +0.487100183963776,0.612696468830109,0.198927588760853,0.51299911737442,0.59100154042244,0.124153934419155,0.491092354059219,0.328485429286957,0.59442338347435,0.344988644123077,0.93878947198391,0.231003098189831,0.435342490673065,0.950973078608513,0.353650003671646,0.424214422702789,0.770173162221909,0.353366494178772,1.01656925305724,0.417692065238953,-0.629452735185623,1.05183406919241,0.726798743009567,0.457716420292854,0.774616584181786,0.085785835981369,0.361296370625496,0.0843570828437805,-0.224795311689377,-0.680215775966644,0.254890620708466,1.42473560571671,-0.658528357744217,-0.670609831809998,1.33904469013214,-0.55243407189846,-1.01847574114799,1.40280055999756,0.158116057515144,-1.35102140903473,1.80431717634201,-0.015227735042572,-0.77874082326889,1.3601798415184,-0.556702867150307,-0.984175860881805,1.45272067189217,-0.527099821716547,-0.820648565888405,1.10857650637627,-1.02298855781555,-0.785777483135462,1.61032038927078,0.212006524205208,-0.951786577701569,1.45372313261032,-0.359640538692474,0.0892907977104187,0.189062029123306,-1.1370954811573,0.475037425756454,0.747116059064865,0.0164486542344093,0.599574953317642,1.60061544179916,-0.0472162440419197,0.321736961603165,0.645583182573318,-0.0384134948253632,0.48487713932991,0.85580001026392,-0.367454297840595,0.547136574983597,0.879198867827654,0.0219967886805534,0.63948181271553,0.803907245397568,0.117042444646358,0.868634894490242,0.902485847473145,-1.37513816356659,0.599125117063522,1.53164792060852,-0.247756123542786,0.491305716335773,0.73577806353569,0.253133162856102,-0.205690324306488,0.445036205441284,0.280599184334278,-0.0443664789199829,1.53495633602142,-0.612625867128372,0.897435486316681,1.61440825462341,-0.653812550008297,0.847418308258057,1.45594853162766,0.114637136459351,-0.327262848615646,0.665401526726782,0.225074514746666,-0.217188715934753,0.733783513307571,-0.121042966842651,-0.05227130651474,1.41813665628433,-0.283571004867554,0.16010856628418,1.45154613256454,0.104311175644398,0.256438732147217,0.575354963541031,0.231759153306484, +-0.00727331638336182,0.855229824781418,-0.226847410202026,-0.287327527999878,1.03818188607693,-0.194021999835968,-0.660577416419983,1.68172955513,0.291056424379349,-0.103287696838379,1.57543587684631,0.160905204713345,0.940422117710114,1.06108900904655,-0.166619509458542,0.290057063102722,0.647272057831287,-0.0742135345935822,0.331499397754669,0.826502725481987,0.113374792039394,0.839685887098312,1.27174681425095,-0.0164999961853027,1.0284196510911,0.755907483398914,-0.258354425430298,0.412304997444153,0.791185438632965,-0.435293197631836,0.0074881911277771,1.13192871212959,-0.075474351644516,0.527537912130356,0.847116813063622,-0.181896798312664,0.871586725115776,1.43928384780884,-0.802387431263924,-0.163537889719009,1.53778344392776,-0.726160638034344,-0.446802586317062,1.90057098865509,-0.0320941377431154,-0.103387266397476,1.80248349905014,-0.0350957662449218,0.382977932691574,1.55442053079605,-0.621833764016628,-0.421120196580887,1.62284219264984,-0.550789546221495,-0.754936367273331,1.98123544454575,-0.0611798483878374,-0.247018724679947,0.966961245687344,-0.531430317088962,1.11056587100029,0.0451511144638062,-1.36403983831406,0.867350488901138,-0.533666796982288,-1.37513661384583,0.981355831027031,-0.260052531957626,-0.989897258579731,0.815825060009956,0.132528364658356,-0.881084188818932,0.909730285406113,0.354462960548409,-1.8084003329277,0.588507130742073,0.287838906049728,-0.428037725389004,1.62630701065063,-0.322641015052795,-0.48855272680521,1.77008056640625,-0.172741591930389,-1.24943381547928,0.706164911389351,0.546980148712919,-1.72661638259888,0.477984825149179,0.981987486143794,-0.239003993570805,1.16081137955189,0.0570119619369507,-0.368632696568966,0.526674836874008,-0.0885893702507019,-1.59753274917603,-0.110459392890334,-0.155452907085419,-0.976348757743835,0.369671538472176,0.995102387603765,-1.00621459260583,0.21250219643116,0.00194180011749268,0.030451312661171,0.345705017447472,0.116706252098083,-1.66113430261612,0.3971948325634,-0.866581447422504,-0.649145044386387,0.949828505516052,-0.719765394926071, +-0.168779604136944,1.06071701645851,0.485586225986481,-0.978544935584068,0.511399857699871,-0.862159200012684,-0.764278367161751,0.850991938263178,0.034863218665123,-1.19451278448105,1.3673235476017,0.567918512090998,-0.428102247416973,1.76288729906082,0.0383480340242386,-0.786983743309975,1.61432445049286,-0.124841958284378,-1.18018865585327,0.892755754292011,0.0648690462112427,-1.09935638308525,0.909176195040345,0.237273275852203,-0.545576587319374,0.726139634847641,0.131345391273499,-0.451674327254295,0.864587038755417,-0.00711005926132202,-1.77539646625519,0.302920008078218,-0.531186252832413,-1.05089095234871,-0.278121437877417,0.23026317358017,-0.324701443314552,0.494526192545891,0.000796377658843994,-0.135700959712267,0.382682368159294,-0.427138537168503,-1.05522140115499,0.64696928486228,-0.147183150053024,-1.74964445829391,0.497426752233878,-0.34745991230011,-0.273582166060805,1.07583037018776,0.029403030872345,-0.177019856870174,0.664847046136856,-0.742953538894653,-0.784316699951887,0.354722902178764,-0.543199449777603,-0.856103314086795,0.212759044021368,0.493456572294235,-1.13218910992146,0.144191771745682,-0.391674101352692,-0.251134620048106,0.885012090206146,-0.567365914583206,-1.0079755410552,-0.05227942019701,0.0350046157836914,-1.26068979501724,0.731964461505413,0.665289610624313,-0.84922069311142,0.723528608679771,0.42397940158844,-0.4067362844944,0.788988269865513,-0.0424231886863708,-1.20916000008583,0.708627812564373,-0.00384759902954102,-1.34097343683243,0.414099037647247,0.979226611972081,-1.05796775221825,0.290714994072914,0.626108229160309,-0.71021980047226,0.819022342562675,0.14255154132843,-1.25415316224098,0.898776900023222,0.413028646990369,-1.66079550981522,0.934254199266434,0.765731062252343,-0.683292672038078,1.48265999555588,0.0178946852684021,-0.29478631913662,0.648827731609344,-0.0741548836231232,-1.69775187969208,0.432491101324558,-0.410025984048843,-0.892949018627405,0.566051378846169,0.024750828742981,-0.308684848248959,0.792517155408859,-0.0640215873718262,-0.508148565888405, +1.07055509090424,0.406767419945936,-1.89767545461655,0.155667705461383,-0.307642966508865,-1.27234011888504,0.531753256917,0.226976871490479,-0.447953939437866,0.683291152119637,0.966541905113445,-1.16549876332283,0.4586470015347,-0.431040018796921,-0.915525395423174,0.471008345484734,0.208466768264771,-1.71928358078003,-0.0536791086196899,0.035234808921814,0.0140954554080963,0.0907822847366333,0.0450648665428162,-0.446771129965782,0.343356177210808,-0.764123573899269,-0.836429685354233,-1.00586587935686,-1.24039256572723,-0.338028766214848,-0.661193192005157,-1.20283401012421,-0.219589043408632,-0.515171587467194,-0.106136150237262,-1.05389768630266,-0.950924824923277,-1.80315065383911,-0.0586535539478064,-0.25097268819809,-1.27927362918854,-0.942692052572966,-0.589267324656248,-1.7714849114418,-0.143707763403654,-0.300274550914764,-1.81127160787582,-0.0686412742361426,-0.410412788391113,-1.58135187625885,-0.755186200141907,-0.00528848171234131,-1.67420423030853,-0.636875927448273,-0.201157085597515,-1.53027164936066,-0.865009795874357,-0.0903926491737366,-1.06241568922997,-0.363848587498069,1.02385598421097,-1.00837193988264,-0.719727770425379,0.48319000005722,-1.25082764029503,-0.483844954520464,0.875227928161621,-1.34069094061852,-0.0530151538550854,1.15467247366905,-1.31385752558708,-0.522184778004885,0.580414429306984,-1.31333568692207,-0.272527653723955,0.960627615451813,-1.41014131903648,-0.552882045507431,0.649530984461308,-1.19179812073708,-0.180234834551811,1.04702670872211,-1.43867167830467,-0.249780375510454,1.06394478678703,-0.444235444068909,-0.976433098316193,-0.0979683995246887,-0.756119400262833,-0.6164495870471,-0.178753614425659,-0.903298735618591,-0.423679202795029,-0.259449064731598,-0.696355849504471,-0.937021404504776,-0.164052844047546,-0.814524680376053,-0.4603615924716,-0.122206628322601,-1.01684284210205,-0.68608533591032,-0.308043658733368,-0.684196352958679,-0.293938927352428,-0.0181093215942383,-1.12167477607727,-0.417809039354324,-0.558526784181595,-0.680352509021759,-0.961690932512283, +-0.604344546794891,-1.02232113480568,-0.482982389628887,-0.323203444480896,-1.40820553898811,-0.233459431678057,-0.515548527240753,-1.18669500946999,-0.545547932386398,-0.346397995948792,-0.802894055843353,-0.759667992591858,-0.142924785614014,-0.664094001054764,-0.968286603689194,-0.600587129592896,-1.0347640812397,-0.395768135786057,-0.115804672241211,-1.38009366393089,-0.577511660754681,-0.886191785335541,-1.08784210681915,-0.835038941353559,-1.12639364600182,-1.41488802433014,-0.458775445818901,-0.399369418621063,-1.52077788114548,-0.0497454144060612,-0.748600006103516,-1.42761421203613,-0.18067367002368,-0.339863479137421,-1.13144040107727,-0.317061796784401,-0.0145882964134216,-0.860451996326447,-1.03973717987537,-0.349519401788712,-1.10665321350098,-0.148493617773056,-0.134466290473938,-1.45360785722733,0.100102331489325,-1.22087126970291,-0.521699453946439,-1.57671624422073,-0.95091587305069,-0.85389191199215,-1.14212998747826,-0.157103300094604,-1.04495677351952,-0.918495267629623,-0.46831026673317,-0.938806880265474,-1.09340637922287,-0.269277185201645,-0.85265136052044,-0.762939102947712,-0.0491368770599365,-0.341739311688798,-1.74274945259094,-0.294217437505722,-0.973263390362263,-0.767427116632462,-0.13513058423996,-1.04048207402229,-0.842822581529617,-0.401433065533638,-0.562802821397781,-1.67870038747787,-0.642287522554398,-0.972230978310108,-1.17028611898422,-0.296121180057526,-1.18175667524338,-0.573732018470764,-0.483586460351944,-0.933008685708046,-1.42376720905304,-0.64655848487746,-0.882849205285311,-0.852508578449488,-0.0615755915641785,-0.464483320713043,-1.70844948291779,-0.360346406698227,-1.09432680904865,-0.75246949121356,-0.182941079139709,-0.257710251957178,-1.05339655280113,0.293552815914154,-0.524734855503993,-1.18699914216995,1.01423040777445,-1.87907642126083,-0.489273019134998,0.349360302090645,-1.82579898834229,-0.503727987408638,0.0336115062236786,-0.940031707286835,-1.10023337602615,0.705872237682343,-1.33105421066284,-0.651060193777084,0.943847492337227,-1.41421326994896,-0.388897657394409, +0.889643464237452,-1.45524597167969,-0.358552802354097,0.494722664356232,-1.24826368689537,-0.657653123140335,0.607518762350082,-1.67328387498856,-0.640964090824127,0.274336069822311,-1.20473140478134,-0.342075753957033,0.611229419708252,-1.7289332151413,-0.330532686784863,0.00336742401123047,-1.55177003145218,-0.706574201583862,0.129194587469101,-1.07544222474098,-1.22090399265289,0.567853808403015,-1.84789764881134,-0.558548852801323,-0.475422769784927,-1.79915535449982,-0.461198776960373,-0.632387265563011,-1.37380334734917,-1.00044403970242,0.0400829613208771,-1.50143253803253,-0.111541077494621,0.369509249925613,-1.69476240873337,-0.159970079548657,0.104450166225433,-1.77487641572952,0.0895686205476522,-0.912195116281509,-1.89687705039978,0.0369632057845592,-0.227196082472801,-1.72951936721802,-0.066955984570086,0.0688350796699524,-1.7485898733139,-0.196501158177853,-0.193230181932449,-1.73633074760437,-0.111059273593128,-0.515731230378151,-1.77784198522568,-0.0601120665669441,-0.104396283626556,-1.27179828286171,-0.915438912808895,0.114177048206329,-1.41316193342209,-0.837331313639879,-0.480444172397256,-1.27477139234543,-0.890152998268604,-0.655611589550972,-1.28342950344086,-0.97971199452877,-0.308613330125809,-0.416903970181011,-1.77566409111023,-0.477567605441436,-0.392736678109941,-1.77092212438583,-0.556862227618694,-0.328133281320333,-1.81799226999283,-0.535523146390915,-0.197031870484352,-1.82079720497131,-0.537209391593933,-0.435479685664177,-1.85932862758636,0.0325612016022205,-1.01261478662491,-1.40812894701958,0.073817815631628,-0.948523495346308,-1.41028478741646,-0.207964718341827,-0.320674046874046,-1.88223528862,-0.186836779583246,-0.913596647791564,-1.40370753407478,-0.0249416530132294,-1.06301790475845,-1.05654975026846,-0.194386467337608,-0.975489389151335,-1.08307425677776,-0.162278145551682,-0.842702008783817,-1.40201964974403,0.015996128320694,-0.86310001090169,-1.40375456213951,0.0108452439308167,-1.03115521743894,-1.06390677392483,-0.294066205620766,-0.953959824517369,-1.0709200501442, +-0.263429515063763,-0.793441124260426,-1.41775557398796,-0.0629791915416718,-0.408569781109691,-1.88293617963791,-0.275774411857128,-0.932523082941771,-1.39399406313896,-0.328934744000435,-0.88125655381009,-1.42431554198265,-0.272423423826694,-0.382482308428735,-1.90276211500168,-0.210928168147802,-1.02718909457326,-1.05900444835424,-0.245329611003399,-0.983019085600972,-1.26004239916801,-0.248523525893688,-0.985752277076244,-1.02456126362085,-0.235774010419846,-0.986435661790892,-0.869711562991142,-0.136640459299088,-0.966153178364038,-1.25023922324181,-0.302872009575367,-0.944883676245809,-1.32379665970802,-0.304187253117561,-0.969863179605454,-1.15914566814899,-0.261641666293144,-0.991209943545982,-1.00637308508158,-0.352464601397514,-0.427026007324457,-1.86390125751495,-0.0837817527353764,-0.206234335899353,-0.67992214858532,-1.14066916704178,-0.316751170079669,-0.866989776492119,-1.17680998146534,0.295642405748367,-0.817504227161407,-0.919466242194176,0.0573191940784454,-0.761418268084526,-1.03375726938248,0.0270481705665588,-0.794453643262386,-1.10818432271481,0.150807350873947,-0.745679795742035,-1.09505413472652,0.341734915971756,-0.836224086582661,-0.9254340082407,-0.61979079246521,0.168539676815271,-1.1673995256424,-0.234385371208191,0.0139160789549351,-0.78511381149292,-0.679059982299805,0.236047029495239,-1.08228814601898,-0.118377149105072,0.207483604550362,-0.753066167235374,-0.65741378068924,0.0807463452219963,-1.06813704967499,-0.0643982887268066,0.094310499727726,-0.460977703332901,-0.0977001786231995,0.184933342039585,-0.545455887913704,-0.139875471591949,0.115894224494696,-0.674584567546844,-0.128494381904602,-0.058512020856142,-0.88276395201683,-0.151005744934082,0.00359860621392727,-0.744883000850677,-0.068913459777832,-0.431822758167982,-0.611036118119955,-0.0797366499900818,-0.325215877965093,-0.836844354867935,-0.0867502093315125,0.0480833649635315,-0.629937708377838,-0.0311674475669861,0.0279178507626057,-0.438607200980186,0.090085506439209,-0.648738041520119,-0.297163779381663,-0.00574594736099243, +-0.752237170934677,-0.381382968276739,0.872201480685362,-1.21685071289539,-0.574004352092743,0.920935436726722,-1.06473042070866,-0.750996798276901,0.834315717220306,-1.00957916676998,-0.637748062610626,0.859340280294418,-0.981852819095366,-0.20314072072506,0.998719021321449,-0.921852959058015,-0.439190052449703,0.996221732582853,-0.786018310114741,-0.72043489664793,-1.01853676140308,-1.15390306711197,-0.787610530853271,-1.01248347759247,-1.3723511993885,-0.475123874843121,-0.0185564756393433,-0.450748682022095,-1.26239770650864,-0.108637401213855,-0.431507974863052,-1.5672110915184,-0.454916894435883,-1.07476431131363,0.413830518722534,-0.282457698269354,-1.1479769796133,0.691538900136948,0.118845999240875,-0.459745466709137,-0.951784789562225,0.482715368270874,-0.390886723995209,-0.977069139480591,0.136048495769501,-0.499741703271866,-1.08809646964073,-0.0909501016139984,-0.468311160802841,-0.962566517293453,0.378738962113857,-0.0388193130493164,-1.51260596513748,0.655189856886864,0.347493067383766,-1.41794940829277,0.269654497504234,0.349384814500809,-1.75308406352997,0.19268549233675,0.0220295190811157,-1.51988053321838,0.576316222548485,0.467477217316628,-1.38048827648163,0.760208129882813,0.459234599024057,-1.0119048524648,0.62186498939991,0.456400744616985,-1.44969764351845,0.515579178929329,0.384744018316269,-1.54171651601791,0.741672411561012,0.279272139072418,-1.27771902084351,0.830635383725166,0.295024536550045,-1.00305718928576,0.423952758312225,0.265426319092512,-1.53804057836533,0.237832874059677,0.234994307160378,-1.66201746463776,0.711403407156467,-0.242832988500595,-1.26989710330963,0.823092892765999,0.137741506099701,-1.20321421325207,0.555289477109909,0.152254030108452,-1.28887894749641,0.515183687210083,-0.232570886611938,-1.22398588061333,0.387109220027924,-0.127159714698792,-0.99118047952652,0.39226245880127,0.305961824953556,-0.861321387812495,0.377372652292252,0.371794027276337,-1.41106113791466,0.353166967630386,0.0655041933059692,-1.30857717990875,0.400074660778046,0.28600350767374,-0.874024890363216, +0.516594588756561,0.30349662899971,-0.681175157427788,0.647824853658676,0.112845102325082,-0.446328043937683,-1.36671248078346,-0.0191233791410923,-0.657043904066086,-1.35613545775414,0.085653749294579,-0.637899518013,-1.17187115550041,0.158716337755322,-0.841876626014709,-1.48201107978821,0.213043011724949,-0.934063836932182,-1.6223783493042,0.156453318893909,-0.715434987097979,-1.27836886048317,-0.296460743993521,-0.292305290699005,-1.31606623530388,0.0384050542488694,-0.516591548919678,-1.60633534193039,0.178816951811314,-0.600087553262711,-1.55523842573166,0.0290759801864624,-0.604111045598984,-0.992906451225281,0.224535246379673,-0.48033195734024,-1.44425934553146,0.206105787307024,-0.527491003274918,-1.44827330112457,0.204844154417515,-1.13527178764343,-1.03121337294579,-0.049387251958251,-0.44213455915451,-1.15174317359924,-0.828504145145416,0.334659904241562,-1.70642286539078,-0.44968768209219,-0.116230130195618,-1.69153922796249,-0.459468223154545,-0.594806961715221,-1.4279645383358,-0.94172428548336,-0.505821168422699,-1.36842066049576,-0.658622711896896,0.241568803787231,-1.66201448440552,-0.398801784962416,0.25996732711792,-1.71615666151047,-0.373968958854675,-0.224059104919434,-1.43611264228821,-0.704415649175644,-0.0421029925346375,-1.09095084667206,-0.774081081151962,0.19973886013031,-1.30784550309181,-0.504981905221939,0.200622320175171,-1.40500962734222,-0.413312450051308,0.161668717861176,-1.10543018579483,-0.68824103474617,0.297805190086365,-0.708251357078552,-1.09490829706192,0.413550436496735,-0.956752002239227,-0.738489359617233,0.267635583877563,-1.11201673746109,-1.30161064863205,-0.636049825698137,-0.666982844471931,-1.72810333967209,-0.615958735346794,-0.853513687849045,-1.62410515546799,-0.643050342798233,-1.09768265485764,-1.22980496287346,-0.597455479204655,-0.946176767349243,-1.12107184529305,-0.673977091908455,-0.838915020227432,-1.47718781232834,-0.460322380065918,-1.09814351797104,-1.19864651560783,-0.442147448658943,-1.04887560009956,-0.912760425359011,-0.450563311576843,-0.78953093290329, +-0.87902806699276,-0.530986815690994,-0.77458855509758,-1.10313352942467,-0.402777016162872,-0.739955931901932,-1.09287616610527,-0.362279802560806,-0.658182188868523,-0.837974414229393,-0.368924736976624,-1.22527587413788,-0.900697752833366,0.58096287958324,-1.19297459721565,-0.484181880950928,-0.923327371478081,-1.00527733564377,-1.30363214015961,-1.05930891633034,-0.845586627721786,-1.08719971776009,-1.26502555608749,-1.49120336771011,-1.09289932250977,0.396423920989037,-1.22212284803391,-0.557410031557083,-0.88777107745409,-1.23986268043518,0.151892436202615,-1.45071119070053,-1.9625803232193,-0.0219563618302345,-0.337554685771465,-1.9907563328743,-0.101262345444411,-0.0578229073435068,-0.770952433347702,0.348376974463463,-1.76296871900558,-1.08321678638458,-1.04495449364185,-0.607696190476418,-1.44780170917511,0.207841873168945,-0.350143522024155,-1.30258169770241,-0.0728583335876465,-0.861808497458696,-1.24362960457802,-0.452169328927994,-0.393797256052494,-1.68692910671234,-0.858888328075409,0.129653960466385,-1.69899773597717,0.223391445353627,-0.20601686835289,-1.90831792354584,0.0711254868656397,-0.313338756561279,-1.86739087104797,-0.0640268325805664,-0.20447639003396,-1.29703104496002,-1.21539658308029,-0.316537130624056,-1.80170971155167,0.32050914503634,-0.394014418125153,-1.89018821716309,0.101126041263342,-0.541135773062706,-1.82339715957642,0.000223249197006226,-0.15556538850069,-0.786877363920212,-1.82793533802032,-0.183718249201775,-1.89073258638382,-0.238905765116215,0.307627778500319,-1.90589243173599,-0.421706398949027,-0.180125925689936,-0.624342262744904,-0.513234674930573,-0.985350966453552,-0.653573751449585,-1.0088898986578,-1.27202722430229,-1.29454159736633,-0.0942286550998688,-1.25422865152359,-0.996979504823685,0.058843195438385,-1.45647341012955,-1.04602915048599,-0.297588169574738,-0.946636825799942,-1.06123265624046,-0.0265090465545654,-1.32933402061462,-1.62861698865891,-0.421622341265902,-0.952687650918961,-1.72070336341858,0.36125286668539,-0.843941509723663,-1.40037214756012,0.119997441768646, +-1.12876749038696,-1.57429003715515,-0.200095057487488,-1.06927487254143,-1.70161688327789,0.181123487651348,-0.997153282165527,-1.34109482169151,-1.02370110154152,-0.352737352252007,-1.7307755947113,-0.427826035767794,-0.689413651823997,-1.1016229391098,-0.469496756792068,-1.010846555233,-1.55275976657867,-0.174311921000481,-1.09767600893974,-1.66901296377182,-0.268899247050285,-0.752858772873878,-0.879935741424561,-1.69856375455856,-0.525332540273666,-1.91139447689056,0.236153416335583,-0.424536108970642,-1.85945677757263,0.264103544875979,-0.465155102312565,-1.37333446741104,0.325853675603867,-0.932748347520828,-1.2273186147213,-0.246979214251041,-1.37366038560867,-1.49393698573112,0.340738579630852,-0.677953690290451,-1.43189758062363,0.191828679293394,-0.582790404558182,-1.56487488746643,0.246878545731306,-0.549430102109909,-1.45830217003822,0.327206864953041,-0.747084185481071,-1.32507929205894,0.212857019156218,-0.627701669931412,-1.28664833307266,0.243689237162471,-1.07313992083073,-1.28063082695007,0.320449989289045,-1.09276877343655,-1.89269524812698,0.364879887551069,0.00546112656593323,-1.05568501353264,-1.68084162473679,-0.123765070224181,-1.72983634471893,-0.126035392284393,-0.394630707800388,-1.70818209648132,-0.303465500473976,-0.679754510521889,-1.23533979058266,-0.768249198794365,-0.689958781003952,-1.717877805233,-0.292492792010307,-0.498350657522678,-1.90502029657364,0.060100682079792,-0.300640076398849,-1.78023433685303,0.107490442693233,-0.686010785400867,-1.67558854818344,-0.293091908097267,-0.723894014954567,-1.81467700004578,-0.300283446907997,-0.461146011948586,-1.39449831843376,-0.922885306179523,-0.335146613419056,-1.9021800160408,0.2544761672616,-0.402543574571609,-1.81940269470215,-0.411170892417431,-0.45906588435173,-1.36645469069481,-0.882703393697739,-0.4308962225914,-1.82157188653946,-0.371243692934513,-0.466925159096718,-1.78042823076248,-0.355041116476059,-0.542719632387161,-1.21236336231232,-0.769887864589691,-0.62780599296093,-1.82783263921738,0.250426918268204,-0.585766009986401, +-1.93864750862122,0.199854485690594,0.1906768232584,-1.53818392753601,-0.882111422717571,-0.0828399397432804,-1.85643130540848,-0.0520195933058858,0.424750976264477,-1.50046670436859,-0.170738786458969,-0.527974337339401,-1.61476796865463,-0.118207034654915,-0.83578434586525,-1.4957680106163,-0.0542316196952015,-0.95251539349556,-1.46692129969597,-0.415624774992466,-0.846899420022964,-1.61470514535904,-0.121692596003413,-0.835855342447758,-1.49975168704987,-0.0452916203066707,-1.01783871650696,-1.33241450786591,-0.0119357091607526,-1.07019540667534,-0.568879440426826,0.352824125438929,-1.77704405784607,-0.593962147831917,-0.0796581842005253,-1.85986888408661,-0.569887265563011,0.277700097300112,-1.86981683969498,-1.08936057984829,0.294962046202272,-1.43317031860352,-1.02638378739357,0.276309624314308,-1.50953525304794,-0.795168995857239,-0.128834187984467,-1.69377261400223,-0.827783793210983,0.231609079986811,-1.76616656780243,-1.56963056325912,0.29139544069767,-1.13881433010101,-1.44468927383423,-0.784649401903152,-1.10053262114525,-0.728652149438858,0.413746505975723,-1.74216365814209,-0.917574297636747,0.364550496451557,-1.43019157648087,-0.802362766116858,-0.0793361314572394,-1.50136345624924,-0.768350124359131,0.243627429939806,-1.80762130022049,-0.86658051609993,0.218655612319708,-1.76150631904602,-0.867880403995514,0.299609698355198,-1.70591998100281,-0.992548853158951,0.169040661305189,-1.70316505432129,-0.868452280759811,0.208406902849674,-1.75978922843933,-1.15419936180115,-0.390837758779526,-0.999438107013702,-1.11825746297836,-1.1271675825119,-1.04511022567749,-0.943281888961792,-0.296747028827667,-1.07728320360184,-0.482087790966034,-0.35147100687027,-1.40905433893204,-0.504084140062332,-0.981909558176994,-1.54389733076096,-0.983105093240738,-0.552940711379051,-1.31664419174194,-0.915111884474754,-0.58248046040535,-1.28712898492813,-0.657304286956787,-0.250549852848053,-1.3007053732872,-1.16590592265129,-0.611675940454006,-1.09155729413033,-1.15474835038185,-0.591030895709991,-1.10752919316292,-1.1464883685112, +-0.422813355922699,-0.493189856410027,-1.09629605710506,-1.22555506229401,-0.396344467997551,-1.13580760359764,-0.240964949131012,-0.844181701540947,-0.953358024358749,-0.269351929426193,-1.25410830974579,-0.756739556789398,-1.41518944501877,-1.13383454084396,-1.10190582275391,-0.64766051620245,-1.05596539378166,-1.27385687828064,-0.153984025120735,-1.33912923932076,-1.03676402568817,0.217765897512436,-1.46564435958862,-1.28511199355125,-0.0508240908384323,-1.41820025444031,-1.23495519161224,-0.0442418605089188,-1.43520605564117,-1.41308027505875,-0.10304819047451,-0.800378318876028,-1.16348764300346,-0.991953074932098,-0.743383266031742,-1.47037202119827,0.145668491721153,-1.02235290408134,-1.04602029919624,0.0521649420261383,-1.64073503017426,-0.340579566691304,-1.37557804584503,-1.34717690944672,-0.839161092204449,-0.622258096933365,-1.17413771152496,-0.888516396284103,-0.596363037824631,-1.17757505178452,-0.798824071884155,-0.32751077413559,-1.43620508909225,-0.859893375796673,-0.618807286024094,-1.13850894570351,-0.859916891213743,-0.645413368940353,-1.09012666344643,-1.03054081276059,-0.733087532222271,-0.7665885835886,-0.510534286499023,-1.63965874910355,-0.69245620444417,-0.951886385679245,-0.407730609178543,-0.914730995893478,-0.8851064927876,-0.661006584763527,-1.13186061382294,-0.599469542503357,-1.53440243005753,-1.09670919179916,-1.11973090469837,-0.627417400479317,-1.06172540783882,-1.01906472444534,-0.510112591087818,-1.16749700903893,-0.900229424238205,-0.458168506622314,-1.0917092859745,-1.13197101652622,-0.655318304896355,-1.03605365753174,-1.11813278496265,-0.546328388154507,-1.10884606838226,-1.16453237831593,0.115054689347744,-1.09425362944603,-0.521252501690469,-0.892218887805939,-1.15292720496655,-0.945347331464291,0.0800622552633286,-1.06715063750744,-0.240614362061024,0.0824120044708252,-1.89219981431961,-1.13623316586018,-0.118209883570671,-0.668336808681488,-1.02172708511353,-0.354097805917263,-0.424554646015167,-0.832193821668625,-0.0360059291124344,-1.72287756204605,-0.26841154973954,0.219291128218174, +-1.90944564342499,-0.769147455692291,0.241110809147358,-1.77670764923096,-1.23395437002182,0.00282937288284302,-1.34124800562859,-1.19548010826111,0.169653242453933,-1.45266342163086,-0.608186677098274,0.309528014622629,-1.8466539978981,-0.671019077301025,0.0595538318157196,-1.78873664140701,-0.601411268115044,0.0462871491909027,-1.79177659749985,-1.11418786644936,0.312432996928692,-1.42312568426132,-1.31930696964264,0.226216113194823,-0.76861372590065,-1.05339226126671,-0.375689655542374,-1.1899528503418,-1.22316029667854,0.0649579465389252,-1.4172146320343,-1.22667750716209,0.0387430489063263,-1.09827445447445,-1.17054004967213,-0.452956423163414,-0.745064593851566,-1.33238783478737,-0.119206219911575,-1.33545246720314,-1.12193232774734,0.135447398759425,-1.64049363136292,-1.16171571612358,0.0230262039694935,-1.40441137552261,-1.24728944897652,-0.256658330559731,-1.06647794693708,-1.08798125386238,-0.272046372294426,-1.49963468313217,-1.08062359690666,-0.0434484200086445,-1.53979814052582,-1.70071125030518,-0.0469151567667723,-0.998729467391968,-1.72476142644882,-0.157240715023363,-0.839014947414398,-1.01103730499744,-0.486468717455864,-1.36857789754868,-1.11257913708687,-0.119744528084993,-1.47008889913559,-1.73781841993332,-0.211754344403744,-0.731466986238956,-0.0125975608825684,-1.31289184093475,0.171040743589401,0.34053573012352,-0.705765705555677,-0.748452931642532,-0.378963589668274,-0.900822170544416,-0.777816757559776,-0.189503967761993,-0.817669603973627,-0.428975746035576,0.0958693027496338,-0.335905471583828,-0.0947825908660889,-0.477064341306686,-0.373863833025098,0.484754472970963,-0.236971259117126,-0.354792213067412,0.208788722753525,0.0193725228309631,-0.318369196727872,-0.162230521440506,-0.316108405590057,-0.793566811829805,-0.437222450971603,0.326259255409241,-1.04931615293026,0.230088114738464,0.515468448400497,-0.712574690580368,-0.17678938806057,0.132272690534592,-1.79183661937714,-0.238228350877762,0.6860710978508,-0.969130352139473,-0.153544291853905,0.525149315595627,-0.916471555829048, +-0.247166834771633,-0.126389294862747,-1.74425023794174,-0.405278753489256,0.67241433262825,-1.07148118317127,-0.281244292855263,-0.0600801110267639,-1.25377997756004,0.584795594215393,-0.238422721624374,-1.52665930986404,0.294496864080429,0.0418924987316132,-1.06793823838234,0.471035659313202,0.0270799696445465,-1.06120379269123,0.560909062623978,0.423172444105148,-1.24506565928459,0.2512047290802,0.347652018070221,-1.09754067659378,0.17167592048645,-0.0327517092227936,-1.65236055850983,-0.101955890655518,0.682834029197693,-1.03986237943172,-0.483226798474789,0.433253914117813,-1.01569940149784,0.296492725610733,0.107899963855743,-0.180184949189425,-0.211009100079536,-0.144506692886353,-0.324405528604984,0.292602598667145,-0.57416233420372,-1.0612546056509,-0.218012626282871,0.0632464289665222,-0.209444966167212,-0.103086709976196,-0.0292325615882874,-0.0836263373494148,0.107207149267197,0.058820366859436,-0.0779843293130398,-0.494241416454315,0.0303543210029602,-0.0309191234409809,-0.201674290001392,-0.551226109266281,-1.03007362782955,-0.408767700195313,0.598852068185806,-0.761118358932436,-0.369700506329536,0.632705599069595,-0.889980152249336,-0.444467045366764,0.178821504116058,-1.19816634058952,0.291448056697845,0.0357693135738373,-1.48280477523804,0.179239749908447,0.19718137383461,-0.987268298864365,0.291410684585571,0.184642016887665,-1.09091866016388,0.226772725582123,0.299464270472527,-1.33315193653107,0.100034296512604,0.0929588675498962,-1.3373436331749,0.254790723323822,-0.293729931116104,-0.736307054758072,0.174594938755035,0.174047708511353,-0.460830941796303,-0.213644206523895,-0.381684362888336,-1.08457361161709,-0.398253601044416,0.211621880531311,-0.302998669445515,-0.243825107812881,0.139227151870728,-0.430824086070061,-0.126477479934692,0.0366647243499756,-0.543203935027122,-0.114104747772217,-0.0914130806922913,-0.474668741226196,-0.0020536482334137,-0.120150148868561,-0.451084539294243,0.171598553657532,0.0905606746673584,-0.0163740534335375,-0.165183365345001,-0.450692892074585,-1.05238209664822, +-0.454420194029808,0.095836877822876,0.179884971585125,-0.202444791793823,0.107248663902283,-0.169507950544357,-0.284898966550827,-0.224079608917236,-0.927658662199974,-0.565130300819874,0.120362043380737,-0.432984918355942,-0.293969750404358,0.119044363498688,-0.224225830286741,-0.205596417188644,0.145871639251709,-0.000874847639352083,-0.298965841531754,0.00486543774604797,-1.71079760789871,-0.348753176629543,0.100142478942871,-0.412702485918999,-0.0850203037261963,0.172900795936584,-0.300227722153068,-0.336666867136955,0.151083439588547,-1.57617980241776,-0.535689651966095,-0.17020845413208,-1.08406811952591,-0.411491565406322,-0.394936144351959,-0.875927489250898,-0.333001537248492,-0.820072397589684,-0.347815573215485,0.477593094110489,-0.786789890378714,-1.03966683149338,0.193880140781403,-0.560882359743118,-0.843183755874634,0.317579925060272,-0.51766574382782,-0.112688101828098,0.461596041917801,-0.655506163835526,-0.585668684914708,0.603406712412834,-0.594698011875153,-0.695807218551636,0.720743790268898,-0.0189163386821747,-1.40805923938751,0.172223210334778,-0.615955948829651,-0.561846941709518,0.4578498005867,-0.444995194673538,-0.669370263814926,0.662239030003548,-0.272835746407509,-1.45200407505035,0.604666978120804,-0.487834572792053,-0.478878200054169,0.298553317785263,-0.331023752689362,-0.259776283055544,0.517249777913094,-0.495929390192032,-0.531799199059606,0.55307511985302,-0.425603985786438,-0.380017071962357,0.345780938863754,-0.522002518177032,-0.688068079762161,0.45706082880497,-0.669852286577225,-0.238297862932086,0.758030593395233,-0.114603102207184,-0.364204347133636,0.244707196950912,-0.563354700803757,-0.916662737727165,0.26552352309227,0.269097834825516,-1.36641842126846,0.520812027156353,0.515055298805237,-1.08628340065479,0.306655585765839,0.469575971364975,-1.36931520700455,0.527312004938722,0.335700333118439,-1.28336757421494,0.625373460352421,0.00887623429298401,-1.75096946954727,0.310377717018127,0.137379735708237,-1.14835497736931,0.719079196453094,0.701297253370285,-1.04991450160742, +-0.111429126001894,0.257476180791855,-1.75821608304977,-0.309083377942443,0.417584866285324,-1.16416054964066,0.367846459150314,0.530624687671661,-0.957975640892982,0.0184245109558105,0.544605582952499,-1.16876438260078,0.401382796466351,0.294900327920914,-1.08814930915833,0.792910664342344,-0.118680089712143,-1.69387924671173,0.393864713609219,0.170718759298325,-0.976906217634678,0.610893875360489,0.611308127641678,-0.864296317100525,-0.508618995547295,0.21505019068718,-1.72780418395996,-0.423066653311253,-0.125137269496918,-0.503171518445015,0.324019111692905,0.00929534435272217,-0.286987230181694,0.0518945567309856,-0.106610357761383,-0.306648021098226,0.35348673351109,-0.145133912563324,-0.00560352951288223,0.509085820056498,-0.639075994491577,-1.0942335575819,0.203517947345972,-0.0685282945632935,-0.141648009419441,0.355887487530708,-0.0125828981399536,0.0369995906949043,0.180965413339436,-0.491731226444244,-0.86594602977857,-0.055429195985198,0.42375260591507,-1.17632377147675,0.00347553193569183,0.507549047470093,-0.659489527344704,-0.150630831718445,0.420487016439438,-1.59964865446091,-0.278811479452997,0.522822648286819,-0.979490466415882,0.31627245247364,-0.0566302239894867,-1.72081398963928,-0.0901927053928375,0.421615898609161,-0.835889793932438,0.125847220420837,-0.248608265072107,-1.22787573933601,0.643873780965805,0.64936026930809,-1.02759950608015,-0.00143569707870483,0.107618808746338,-0.364377900958061,-0.18922433257103,-0.409677773714066,-0.497265249490738,0.464627295732498,-0.489669889211655,-0.531068682670593,0.504895448684692,-0.372904628515244,-0.56617160141468,0.278763473033905,-0.37853991985321,-0.594720393419266,0.413525730371475,-0.541892677545547,-0.526555210351944,0.535958886146545,-0.154093265533447,-0.458199366927147,0.276896953582764,-0.642694175243378,-0.562123954296112,0.551133811473846,-0.108761727809906,-0.346344586461782,0.131642818450928,-0.218574285507202,-0.512289941310883,0.300967901945114,-0.353151142597198,-0.376798495650291,0.437878847122192,0.0101544857025146,-0.185749311291147, +-0.501380458474159,0.0288195610046387,-0.266821995377541,-0.460595369338989,-0.0210795402526855,-0.359512776136398,0.11718162894249,-0.386921584606171,-0.267329551279545,0.614616960287094,-0.151589691638947,-0.172105684876442,0.293922364711761,0.0367056131362915,-0.0137821584939957,-0.904676735401154,0.0766915082931519,-0.0645558387041092,-0.24315145611763,-0.0751695036888123,-0.00209855660796165,0.143291234970093,0.0400546789169312,-0.113689472898841,-0.108563303947449,0.0750267505645752,-0.158574637025595,-0.277956277132034,-0.0556710958480835,-0.155272845178843,0.140035510063171,-0.131839752197266,-0.0471340492367744,0.293789938092232,0.0786709189414978,-0.012510821223259,-0.395371818449348,-0.00802791118621826,0.0239986181259155,-0.281488038599491,-0.00355011224746704,-0.0539802089333534,-0.01448904722929,-0.984321381663904,-0.915715724229813,-0.144930705660954,-0.942924626171589,-0.912556357681751,-0.142578590661287,-1.08406505733728,-0.922691009938717,-0.187879025936127,-1.0553810223937,-0.955244727432728,-0.175924606621265,-0.85432692617178,-0.918483629822731,-0.300797175616026,-0.938341703265905,-0.911545246839523,-0.220538556575775,-0.587912544608116,-1.6296563744545,-0.607456476427615,-0.450424822978675,-1.64668250083923,-0.748813793063164,-0.19859279692173,-1.61889785528183,-0.99674266576767,-0.318629879504442,-1.68249261379242,-0.735838942229748,-0.522462960332632,-1.64681845903397,-0.4451564848423,-0.519736591726542,-1.77857494354248,-0.239284530282021,-0.249799642711878,-1.77403622865677,-0.736884877085686,-0.304587718099356,-1.66382783651352,-0.797487385571003,-0.887039549648762,-1.59160912036896,0.0447362810373306,-0.809909354895353,-1.6002562046051,-0.14563550427556,-0.802672576159239,-1.53010940551758,-0.221026889979839,-0.850482258480042,-1.52074784040451,-0.184524051845074,-0.799401380121708,-1.60455548763275,-0.0759563762694597,-0.80774412304163,-1.51883155107498,-0.252381823956966,-0.828485649079084,-1.50795203447342,-0.148425857070833,-0.838411175645888,-1.54600417613983,-0.11771322786808,-0.900175704242429, +-1.42320576310158,-0.134929198771715,-0.86142638605088,-1.46302744746208,-0.297281108796597,-0.917159989476204,-1.31926012039185,-0.339842602610588,-0.94339417014271,-1.29444548487663,-0.252097547054291,-0.868429143563844,-1.46253195405006,-0.299744345247746,-0.8774144500494,-1.55118119716644,-0.0381169095635414,-1.17625594139099,-0.221510827541351,-1.1019589304924,-1.53822284936905,-0.215242572128773,-0.933401674032211,-1.52675980329514,0.182198978960514,-0.944895051419735,-1.50339025259018,0.142760571092367,-0.924035392701626,-1.33895900845528,-0.288048267364502,-1.01420266926289,-1.5046334862709,-0.429910011589527,-0.837202936410904,-1.34081020951271,0.296784214675426,-0.98146828263998,-1.752277135849,0.139502860605717,-0.648870967328548,-1.21116670966148,-0.246015205979347,-1.09549862146378,-1.7228439450264,-0.329878509044647,-0.657529309391975,-0.333008880115813,-0.179514668881893,-1.89022994041443,-0.927923335460946,0.0839724093675613,-1.34432277083397,-1.2250519990921,-0.00795356929302216,-1.37623882293701,-0.995696485042572,-0.413601640611887,-1.41491842269897,-0.818677081493661,-0.0291471071541309,-1.57214534282684,-0.831022182945162,-0.0255674216896296,-1.55488443374634,-1.19758987426758,-0.0296882791444659,-1.48995757102966,-1.15071243047714,-0.0805888380855322,-1.51089453697205,-1.22725903987885,-0.0434858128428459,-1.37835130095482,-1.32739794254303,-0.0530297765508294,-1.21795281767845,-1.28524723649025,-0.16772149503231,-1.24316039681435,-1.17714700102806,-0.465827256441116,-1.27765643596649,-1.02160894870758,-0.672030866146088,-1.31648308038712,-1.25314766168594,-0.250982873141766,-1.29926812648773,-1.24932584166527,-0.249179840087891,-1.19974583387375,-1.11800672113895,-0.552430685434956,-0.890663892030716,-1.35528284311295,-0.0807384306681342,-0.981471687555313,-1.32051548361778,-0.0303547736257315,-1.03135111182928,0.501358181238174,-0.429168459028006,-1.07242175936699,0.478752106428146,-0.446805217303336,-1.00583597272635,-0.433799467980862,0.446878951042891,-1.82488232851028,-0.165510788559914, +-0.199840657413006,0.00581037998199463,-0.634897261857986,0.433104820549488,-1.73567622900009,-1.01965203881264,0.476705733686686,-1.50505691766739,-0.746484816074371,0.573073655366898,-1.73840647935867,-0.546463295817375,0.516718959435821,-1.78072118759155,-0.414948415053004,0.571953250095248,-1.71474415063858,-0.730754977092147,0.6584183126688,-1.42758080363274,-0.714948236942291,0.557904709130526,-1.71102172136307,-0.658375293016434,0.6511907633394,-1.65378051996231,-0.979786783456802,0.800519078969955,-1.33101055026054,-1.21710550785065,0.640481382608414,-0.943004079163074,-1.0949735045433,0.490580486133695,-1.38662770390511,-1.02079010009766,0.532784551382065,-1.4764546751976,-1.32235342264175,0.400093115866184,-1.17474648356438,-1.37714713811874,0.28876980766654,-0.906064782291651,-1.21687263250351,0.27785212546587,-1.46859508752823,-0.883914828300476,0.324834894388914,-1.67651325464249,-1.12150377035141,0.292379431426525,-1.42239996790886,-1.36727559566498,0.241404559463263,-1.11798730492592,-1.28938761353493,0.222703777253628,-1.26787093281746,-0.998684972524643,0.300095070153475,-1.44989454746246,-1.27236527204514,0.177756562829018,-1.18523988127708,-1.33566558361053,0.183336362242699,-0.904053248465061,-0.968763202428818,0.331120599061251,-1.47521716356277,-1.11624327301979,0.30728380382061,-1.41350528597832,-1.27622815966606,0.26704853028059,-0.962243547663093,-1.29048728942871,0.156551793217659,-0.678963154554367,-1.19572526216507,0.014916867017746,-0.395310699939728,0.595908463001251,-0.0980499442666769,-0.665608316659927,0.514844536781311,0.0391571633517742,-0.617421209812164,0.659924507141113,0.0728023573756218,-0.805570706725121,0.615011155605316,0.064528800547123,-0.992046050727367,0.672048717737198,0.0128624886274338,-0.883839748799801,0.470294415950775,0.00248662941157818,-0.383633732795715,0.474853873252869,-0.00799266248941422,-0.496365547180176,0.421123921871185,0.122911625541747,-0.655254662036896,0.425057649612427,0.183829195797443,-0.648725211620331,0.0202513933181763,0.269454963505268,-0.0682727098464966, +0.128373920917511,0.213574837893248,-0.266974270343781,0.135556817054749,0.209693290293217,-0.844739556312561,0.342134654521942,-0.0127400457859039,-0.32625275850296,0.118025422096252,-0.0512023381888866,-0.0874893665313721,0.110539853572845,-0.0697168447077274,-0.203299313783646,0.590690940618515,-0.175879918038845,-0.885893037542701,0.283355116844177,-0.267016552388668,-0.730134354904294,-0.227457940578461,-0.278680000454187,0.154448688030243,0.209815323352814,-0.295666810125113,-0.254990518093109,0.195098161697388,-0.371212221682072,-0.373204618692398,0.102903664112091,-0.424044452607632,-0.18887859582901,-0.16303414106369,-0.404456271789968,-0.0100990533828735,-0.316373109817505,-0.378138575702906,0.167088627815247,0.0294950604438782,-0.443417102098465,-0.078593909740448,-0.21006166934967,-0.408468298614025,0.0724160671234131,-0.323124200105667,-0.397119153290987,0.0918616056442261,-0.316436856985092,-0.339525651186705,0.0719171166419983,-0.2035011947155,-1.02173703163862,-0.861884780228138,-0.437196284532547,-1.04407598823309,-0.938521653413773,-0.132884293794632,-1.05693815648556,-0.943018682301044,-0.118579596281052,-0.931867200881243,-0.715243816375732,0.00376060605049133,-0.913656983524561,-0.701174482703209,-0.0505551695823669,-0.894515536725521,-0.630014464259148,-0.13214585185051,-0.905698299407959,-0.54932214319706,-0.164161384105682,-0.93895348161459,-0.494075030088425,-0.225522249937057,-0.904633462429047,-0.421405434608459,-0.175470620393753,-0.899341452866793,-0.42550390958786,-0.23446062207222,-0.914120130240917,-0.368551671504974,-0.334796383976936,-0.891724549233913,-0.272677302360535,-0.332912385463715,-0.924889862537384,-0.26682448387146,-0.70686386525631,0.155485197901726,-1.78095895051956,-0.763035550713539,0.217201419174671,-1.74722802639008,-0.563417423516512,0.049092523753643,-1.84337455034256,-0.378398075699806,0.189440712332726,-1.77488029003143,-0.0968932211399078,0.287982396781445,-1.77148848772049,-0.0570393800735474,0.277442123740911,-1.71594905853271,-0.118087947368622,0.219281114637852, +-1.64733809232712,-0.367248982191086,-0.113949524238706,-1.51555389165878,-0.208081368356943,-1.0945528447628,-1.01689956337214,-0.336835473775864,-0.82076770067215,-0.127361238002777,-0.348188042640686,-0.582345694303513,0.214859783649445,0.0941749811172485,-0.392893642187119,-0.0712658762931824,-0.0353925228118896,-0.28394591063261,0.00442969799041748,-0.139508932828903,-0.159539617598057,0.0521369576454163,-0.28732006251812,-0.688613295555115,-0.0375380516052246,-0.772129595279694,-0.848379150032997,0.243430912494659,-0.748469978570938,-0.90077243372798,0.168381989002228,-0.796851262450218,-0.895033091306686,0.469636300578713,-0.777775749564171,-0.899489261209965,0.487460233271122,-0.758401453495026,-0.910616248846054,0.419604012742639,-0.599517911672592,-0.911964210215956,-0.181535840034485,-0.593956857919693,-0.953259115107358,-0.288140088319778,-0.732302814722061,-0.973572947084904,0.230655409395695,-0.556618690490723,-0.995829943567514,-0.487136781215668,-0.629782631993294,-1.01350060105324,-0.510008748620749,-0.619795888662338,-0.92572464235127,-0.725780323147774,-0.645475938916206,0.352083534002304,-1.50548124313354,-0.682686597108841,0.259956359863281,-1.42762139439583,-0.90683925896883,0.0680298209190369,-1.27346453070641,-1.03451825678349,0.244371354579926,-1.39738950133324,-1.15282326936722,0.426374418660998,-1.40199053287506,-1.20852220058441,0.202616229653358,-1.4481537938118,-1.45214557647705,0.192115478217602,-0.82395101711154,-1.41495177149773,-0.0086068082600832,-0.855539582669735,-0.893322363495827,-1.01318485010415,-0.557483054697514,-1.12704560160637,-0.771500654518604,0.751151312142611,-1.3009025156498,-0.380789697170258,0.600881189107895,-1.28233349323273,-0.333776637911797,0.580675005912781,-1.36992919445038,-0.202328257262707,0.964793957769871,-0.969482809305191,-0.140993027016521,0.181001603603363,-0.819334805011749,-0.586021352559328,0.0610678791999817,-0.981936991214752,-0.898987777531147,-0.0285485982894897,-0.984125405550003,-0.884854875504971,-0.095028817653656,-1.00808076560497,-0.949043698608875, +-0.120022892951965,-1.03224954009056,-0.965725257992744,-0.142428666353226,-1.05803748965263,-0.932850074023008,-0.157711923122406,-1.05783444643021,-0.954374991357327,-0.28056001663208,-1.2454961836338,-1.03450727462769,0.0304459035396576,-0.817703276872635,-1.03379954397678,-0.652208015322685,-1.03149127960205,-1.10411082208157,-0.537988439202309,-1.12334756553173,-1.16920699179173,-0.440138714388013,-0.774653479456902,-1.04274697601795,-1.01782085001469,-1.5885449051857,-0.445847891271114,-0.732889937236905,-1.71957075595856,-0.368544515222311,-0.637199438060634,-1.76434183120728,-0.197295010089874,-0.545350261032581,-1.80047518014908,-0.202513191848993,-0.477306813001633,-1.77439618110657,-0.0709074102342129,-0.600532297044992,0.134644985198975,-0.363161008805037,-0.57377386061853,0.143871247768402,-0.439069408923388,-0.622149283997715,0.311419546604156,-0.219545803964138,-0.645084872841835,0.344751119613647,-0.0742852855473757,-0.680884517729282,0.204385578632355,-0.0716213956475258,-0.576142143458128,0.00195956230163574,-0.0907682999968529,0.0442959245992824,-0.161099255084991,-0.759206391870975,0.46526687592268,-0.824651725590229,-1.03128573298454,0.516642190515995,-1.5299968123436,-0.835896648466587,0.609662890434265,-1.97999316453934,-0.223000437021255,0.147442011162639,-1.98804980516434,-0.106385536491871,0.00707977265119553,-1.91326344013214,-0.0568235572427511,0.461460217833519,-1.94058042764664,-0.363957524299622,-0.213510416448116,-1.89850449562073,-0.438240420073271,0.128099165856838,-1.43518102169037,-0.896261721849442,0.388589901849627,-0.474740564823151,-0.913733243942261,-0.105972049757838,-0.0613611340522766,-0.437872033566236,0.128205940127373,-0.0330126285552979,-0.256298159249127,-0.112587347626686,-0.00181537866592407,-0.0174204700160772,0.0751460520550609,0.0787866115570068,-0.0891933739185333,0.499483287334442,0.0719718337059021,-0.0832139179110527,-0.288287572562695,-0.320800125598907,-0.719199996441603,-0.12318080663681,-1.02636606991291,-0.967847410589457,-0.235983729362488,-1.64798355102539, +-0.611402206122875,-0.372917223721743,-1.95345842838287,0.000583875924348831,-0.296369436196983,-1.98996192216873,0.0222288956865668,0.0236318781971931,0.0252984762191772,-0.037807765416801,-0.134086266160011,-0.0161692500114441,-0.368844840675592,-0.397764593362808,0.387849032878876,-0.299364224076271,-0.783119395375252,-1.44154512882233,-0.395279987715185,-0.899065721780062,-1.73163545131683,-0.372568145394325,-0.550779275596142,-0.807345508058916,-0.964911039918661,-0.679566755890846,-0.899476598482579,-0.79539099894464,-1.01158782839775,-1.10124883055687,-0.922267999500036,-0.641903467476368,-1.00462120771408,-0.878988292068243,-0.918687388300896,-0.205466389656067,-0.943663956597447,-0.995408721268177,-0.361847460269928,-1.0362442061305,-0.853624448180199,-0.628435552120209,0.177807077765465,-1.46428978443146,-0.285508677363396,0.509980021044612,-1.73944979906082,-0.0882176160812378,0.554407272487879,-1.40278136730194,-0.236619293689728,0.671293479390442,-1.20234322547913,0.0797827839851379,0.100543387234211,-1.26202702522278,-0.215555191040039,0.419039323925972,-0.23611256480217,-0.794048547744751,-0.17249390296638,-0.604043573141098,-0.497853308916092,0.138985820114613,-0.406578123569489,-0.699437409639359,0.334313412662596,-0.446016013622284,-0.912226550281048,0.157570742070675,-0.470615208148956,-0.308220028877258,0.227504722308367,-1.45344865322113,-0.417694419622421,0.0531275211833417,-0.405349969863892,-0.63735967874527,0.462233558297157,-1.14216282963753,-0.672562420368195,0.405448980629444,-0.976801365613937,-0.331445276737213,-0.842328853905201,-0.429905712604523,0.041546106338501,-0.0652005936135538,-0.392198465764523,-0.0420065522193909,0.375676907598972,-0.263295009732246,-0.185725450515747,0.0834851209074259,-0.486603364348412,0.0500161051750183,-0.212396444752812,-0.399508163332939,-0.124695003032684,0.0687854662537575,-0.823795527219772,0.00280743837356567,-0.0480691660195589,-1.13168489933014,-0.147617936134338,0.0697795301675797,-0.392448514699936,-0.0248225927352905,0.143455272074789,-0.024557888507843, +-0.354698151350021,-0.878364094067365,-0.827301651239395,-0.132602214813232,-0.401246428489685,-0.252591550350189,-0.0526915192604065,-0.0140990223735571,-0.234566137194633,-0.214160263538361,-0.287030801177025,-0.2686707675457,-0.0120006203651428,-0.350278864149004,0.127456992864609,0.0164263248443604,0.164492547512054,-0.67595311999321,-0.0511794090270996,-0.290137594332919,-0.768754720687866,-0.129060208797455,0.143282472155988,-0.772821918129921,-0.115277469158173,0.281043283641338,-0.786618769168854,0.0188294053077698,0.153325258754194,-0.23453485313803,0.00562423467636108,-0.051448242738843,-0.164350803941488,-0.0218051075935364,0.29146608710289,0.0231322795152664,0.0416932702064514,0.109614007174969,-0.342047601938248,0.019505500793457,0.132733769714832,0.0765369534492493,0.020700991153717,0.143110891804099,-0.213452875614166,-0.800808757543564,-0.137054402381182,-1.04525844752789,-0.688156604766846,0.0990575402975082,-0.946411623619497,-0.809682071208954,0.488748908042908,-1.0720689445734,-0.859902210533619,0.410565406084061,-1.23886531591415,-0.795674011111259,0.102097235620022,-1.13372460007668,-0.0743846297264099,-0.489916853606701,-0.116719048470259,-0.35805743932724,0.249346755445004,-1.03427651524544,0.0648385286331177,0.253192968666553,-0.417996607720852,-0.0610044002532959,0.0674516744911671,-0.714339733123779,0.00196754932403564,-0.0743731111288071,-0.175797197967768,0.0212104320526123,0.414619818329811,-0.54803292453289,-0.137401521205902,0.627698421478271,-0.66667914390564,-0.428088009357452,-0.242678008973598,-1.13656213879585,-0.156316995620728,0.310071013867855,-0.839053690433502,-0.415218532085419,0.397024221718311,-0.606594540178776,-0.783873155713081,0.0589247718453407,-0.852317824959755,-0.395663499832153,0.0508323907852173,-0.561422020196915,-0.211522459983826,-0.431104961782694,0.77470400929451,-0.0665231347084045,-0.039230689406395,-0.19502666592598,-0.102500021457672,-0.00719693303108215,0.332058995962143,-0.0276423096656799,0.042559752240777,0.195997722446918,-0.11717164516449,-0.0721290931105614, +0.782625645399094,-0.0742963552474976,0.347652956843376,0.521744281053543,-0.0591303110122681,0.468030050396919,0.473607197403908,-0.576944977045059,-0.902330879122019,-0.0377682149410248,-0.129574835300446,-0.309284495189786,-0.426041103899479,-0.134589195251465,0.192866891622543,-0.311402037739754,-0.356679260730743,0.00898820906877518,-0.679743193089962,-0.159731388092041,-0.231727503240108,-0.397947050631046,-0.491542428731918,-0.877615991979837,0.490748882293701,-0.227544546127319,-0.258963793516159,-0.677242040634155,-0.0338494181632996,-0.000938519835472107,0.211287051439285,-0.0633721351623535,-0.234999671578407,-0.122601471841335,-0.0986874103546143,-0.245772197842598,0.16524064540863,-0.0141235589981079,0.138191428268328,0.171321958303452,-0.0297698974609375,0.356422141194344,0.255388431251049,-0.581713259220123,-0.846906136721373,-0.0581733612343669,-0.0906760096549988,-0.28793115913868,-0.164152108132839,0.0626092553138733,0.0067010335624218,-0.474346183240414,-0.108240008354187,-0.311131488531828,-0.853556931018829,-0.0643168687820435,-0.464108422398567,-0.295457534492016,0.000932157039642334,0.205684844404459,-0.364360615611076,-0.065643846988678,0.320099249482155,-0.376801192760468,-0.0972932577133179,-0.536764442920685,-0.190626807510853,-0.756834909319878,0.188674541190267,-1.11227571964264,0.0139371156692505,0.176120910793543,-0.282875042408705,-0.0979230999946594,0.16920805349946,-0.61507385969162,0.0291717648506165,0.0441179946064949,-0.277030982077122,-0.00506335496902466,0.268745634704828,-0.297492004930973,-0.0649676918983459,0.397135930135846,-0.237068176269531,-0.741473883390427,0.532232768833637,-1.10637123882771,-0.63330152630806,0.611888334155083,-1.10540181398392,-0.444977879524231,0.293253790587187,-1.20146903395653,-0.579386442899704,0.289680127054453,-1.10665269196033,-0.581647157669067,0.279961689375341,-1.07652223110199,-0.550353527069092,0.219466976821423,-1.29455533623695,-0.802952960133553,0.0264663696289063,-1.11838541924953,-0.77556636929512,0.00452545285224915,-1.09658120572567, +-1.14561787247658,0.310745142400265,-1.31846562027931,-0.935165088623762,0.160715833306313,-1.31679403781891,-0.67499515414238,-0.0400403589010239,-1.11454576253891,-0.254294812679291,-0.889722287654877,0.148907855153084,0.743753030896187,-0.0534255794118508,-1.43034842610359,0.862861692905426,-0.0160142481327057,-0.726178586483002,0.647804766893387,-0.147907994687557,-0.839305929839611,0.606129497289658,-0.0773326195776463,-0.642715781927109,0.626937001943588,0.159742135554552,-0.717259645462036,0.609031289815903,0.233815222978592,-0.789821341633797,0.5115727186203,0.334074720740318,-1.21599572896957,0.387685418128967,0.522325223311782,-1.33939176797867,0.329909086227417,-0.701904460787773,-0.640074953436852,0.0347262620925903,-0.311419226229191,-0.61680980026722,0.0874546766281128,-0.274122625589371,-0.809160947799683,0.384538590908051,-0.68915506452322,-0.648010432720184,-0.23671293258667,-0.217537507414818,-0.971843168139458,-0.311018168926239,0.169819612056017,-0.978444635868073,-0.325691401958466,0.0768260844051838,-1.22465506196022,-0.0350327491760254,-0.285566307604313,-1.02172130346298,-0.321507394313812,-1.22893032431602,-0.301962897181511,-0.126632750034332,-0.287434492260218,-0.990899711847305,0.122291803359985,-0.054821714758873,-0.38260892033577,0.129152774810791,-0.683375000953674,-0.709071636199951,0.405729293823242,-1.13058882951736,-0.196686647832394,0.14586478471756,-0.210308447480202,-0.258524999022484,0.0958921909332275,0.00442442297935486,-0.222646474838257,0.41427218914032,-0.594527989625931,-0.747310966253281,0.291537582874298,0.202625617384911,-1.12435328960419,0.31594580411911,0.142195872962475,-1.09553918242455,0.19732803106308,0.0950188818387687,-1.09691321849823,0.363703668117523,-0.160086236894131,-1.19306516647339,0.312473356723785,-0.00430051982402802,-1.10693389177322,0.342307686805725,0.186913318932056,-1.39352190494537,0.0240566730499268,0.210765920579433,-1.09684443473816,0.119994640350342,0.0151824220083654,-1.2480411529541,0.124162435531616,0.0480067948810756,-1.24003010988235, +-0.0478935837745667,0.0783234015107155,0.0650243163108826,0.175575613975525,-0.097955733537674,-0.152762293815613,0.49269226193428,0.125771336257458,-0.44552007317543,0.377259373664856,0.106628507375717,-0.72813642770052,0.216628730297089,0.360427420120686,-0.629928335547447,0.643160134553909,-0.101382598746568,-1.0103343129158,0.744857013225555,-0.397050162311643,-0.964358702301979,0.608789533376694,-0.506157327443361,-0.832270432263613,0.551189929246902,-0.157606491819024,-0.932459767907858,0.366241991519928,-0.121589005691931,-0.814439851790667,0.340110182762146,-0.115589141845703,-0.821771934628487,0.546443074941635,-0.162433771416545,-0.991407975554466,-0.489317720686813,0.23225949332118,-1.82625579833984,-1.08730056881905,-0.00421779975295067,-1.66982913017273,-1.07338383793831,0.11212594807148,-1.63007736206055,-1.14378947019577,0.172894209623337,-1.57052946090698,-1.10051506757736,0.188695698976517,-1.62822860479355,-0.242255002260208,0.254862137138844,-1.7750586271286,-0.341371893882751,0.177508287131786,-1.70022511482239,-0.289432406425476,-0.128196954727173,-1.53678369522095,-0.285884499549866,0.022847905755043,-1.69068652391434,-1.09824138879776,0.204832248389721,-1.6010223031044,-0.984168738126755,-0.158384770154953,-1.5053032040596,-0.101187735795975,0.233324017375708,-1.79346710443497,-0.02644282579422,0.23203781992197,-1.83197295665741,-0.078605055809021,0.420533366501331,-1.62829655408859,-0.0572544634342194,0.306274847127497,-1.64450657367706,0.4113489985466,0.406629954464734,-1.71097564697266,0.15114426612854,0.193294482305646,-1.90416431427002,-0.0732190608978271,0.435435444116592,-1.74528110027313,0.0312372148036957,0.515487598255277,-1.67429554462433,-0.33688773214817,0.315295934677124,-1.89757078886032,-0.44706891477108,0.272188813425601,-1.89334428310394,-0.0673429667949677,0.223252452909946,-1.71433556079865,-0.0298636853694916,0.190786924213171,-1.73160368204117,-0.0864654779434204,-0.223498821258545,-1.66206556558609,-0.288882445544004,0.283573046326637,-1.83455169200897,-0.0488215386867523, +0.270649179816246,-1.62567549943924,0.0571022033691406,-0.416123285889626,-1.52590793371201,0.20505365729332,0.0861996710300446,-1.74469321966171,0.223050653934479,0.162647049874067,-1.76054835319519,0.0904890894889832,0.389922596514225,-1.57784831523895,0.053361713886261,0.211039379239082,-1.58235204219818,-0.0142138600349426,0.32921327650547,-1.57073897123337,0.0559741854667664,0.524854280054569,-1.504518866539,0.473951280117035,0.377690732479095,-1.19600567221642,0.111720442771912,0.0290451645851135,-1.60368049144745,-0.596148408949375,-0.199013203382492,-1.62915307283401,-0.648296728730202,0.145662471652031,-1.79733330011368,0.200069725513458,0.101904921233654,-1.50319850444794,0.211673974990845,-0.299418494105339,-1.38781970739365,-0.0399436354637146,0.139838248491287,-1.28007692098618,-0.0830177068710327,0.0133169665932655,-1.27779442071915,-0.693571120500565,0.260074749588966,-1.15088349580765,-0.713727634400129,-0.146712362766266,-1.25315535068512,0.0821043848991394,0.0692278891801834,-1.03391066193581,0.0243473649024963,0.112996017094702,-0.953258156776428,-0.142125189304352,0.430774241685867,-0.218292569741607,-0.026810884475708,0.157445982098579,-0.522781386971474,-0.00634390115737915,0.16952209174633,-0.34559427946806,-0.0911237001419067,0.112078979611397,-0.388548931106925,-0.168515622615814,0.44140537455678,-0.735398977994919,-0.0301809310913086,0.268838316202164,-0.745185971260071,-0.448664143681526,-0.256047606468201,-1.2789266705513,-0.719409763813019,0.0776288956403732,-1.23605328798294,0.0370261073112488,-0.174005776643753,-1.04186016321182,0.320967137813568,-0.59290936589241,-0.957304090261459,0.429059967398643,0.45540788769722,-1.62475907802582,0.23471237719059,0.465881042182446,-1.77561920881271,0.63713812828064,0.381655637174845,-1.51329416036606,0.71443809568882,0.0716791235972778,-1.48306745290756,-0.0293938517570496,0.110643565654755,-1.09116947650909,-0.00752991437911987,0.0608481019735336,-1.12460166215897,0.010509192943573,0.207879353314638,-0.508974313735962,0.0280174612998962,0.124331951141357, +-0.455682680010796,0.425964027643204,-0.438753634691238,-0.753239810466766,0.179802656173706,0.0113216042518616,-0.74313186109066,0.200630307197571,-0.174466252326965,-0.746551051735878,0.324418067932129,-0.735458636656404,-0.977369993925095,-0.392211616039276,-0.147796541452408,-1.4882116317749,-0.497885286808014,0.0745552480220795,-1.51127862930298,0.0289133191108704,0.0760625526309013,-1.11226093769073,0.0818999409675598,-0.243242114782333,-1.06376767158508,-0.00586438179016113,-0.0648684501647949,-1.11276561021805,0.0101643800735474,-0.0713034439831972,-1.16432905197144,-0.0209459662437439,0.183454912155867,-1.51885312795639,-0.269594877958298,-0.0151782929897308,-1.56171429157257,0.380247712135315,-0.624261140823364,-0.866111367940903,0.13325971364975,-0.261876717209816,-0.97884413599968,0.283321619033813,-0.228234767913818,-1.07667976617813,0.481642812490463,-0.748380623757839,-0.886371254920959,0.545234322547913,0.274296400602907,-0.829605728387833,0.53302726149559,0.0154958106577396,-1.21929889917374,0.192771136760712,0.273359548300505,-1.21819096803665,0.202829539775848,0.312757464125752,-1.16004434227943,-0.0117796659469604,-0.66953082382679,-0.899490661919117,-0.381509482860565,-0.387964613735676,-0.795532748103142,0.085033118724823,-0.212107039988041,0.0778925120830536,0.359088122844696,-0.692454442381859,-0.0500149130821228,-0.144345581531525,-0.0923192799091339,-0.519791588187218,-0.348914265632629,0.234602227807045,-0.656374650076032,-0.00723230838775635,0.218897096812725,0.0909034013748169,0.090232253074646,-0.535595282912254,0.154445558786392,0.0825172662734985,-0.223782800137997,0.068687230348587,0.0251328945159912,-0.0276232697069645,0.0511079132556915,-0.0659624338150024,0.117116630077362,-0.276085909456015,-0.00471621751785278,-0.366836550179869,-0.317843183875084,0.355758726596832,-0.438651263713837,0.110788196325302,0.0696362257003784,0.0481213331222534,0.236541554331779,0.0466086864471436,-0.137573599815369,0.0988130513578653,0.356021821498871,-1.0289154201746,-0.36425968259573,-1.07915437221527, +0.405595077201724,-1.21552529931068,-1.10684683918953,0.30149720236659,-1.2350457906723,-0.506832301616669,-0.841034412384033,0.422745887190104,-0.198912501335144,-0.348784281173721,0.503478518687189,0.466303437948227,-1.19817557930946,-0.0401207655668259,-0.14235919713974,-0.685567140579224,0.197672694921494,-0.886962309479713,-0.317982799489982,-1.60458934307098,-0.548596739768982,-0.610875591635704,-1.41383343935013,-0.26602303981781,-0.63309982419014,-1.23153957724571,-0.293336689472198,0.108272625133395,-1.24087443947792,-0.274134814739227,-0.300158604979515,-1.408451795578,-0.167043030261993,-0.220041885972023,-1.44812297821045,-0.794860936701298,-0.380670480430126,-1.61421304941177,-0.890172399580479,0.141974836587906,-1.58572858572006,0.328833758831024,-0.460100545547903,-1.11640149354935,0.48349592089653,-0.107173532247543,-1.07047256827354,-0.242100223898888,-1.23750531673431,-1.33438390493393,-0.502556622028351,-0.202610686421394,-1.58871674537659,0.156754940748215,-1.02913972735405,-0.951741859316826,0.71738401055336,-0.785908229649067,-0.766447238624096,-0.139561221003532,-0.419412653893232,-1.83043849468231,0.0455527305603027,-0.00398394488729537,-1.9154446721077,-0.13748699426651,-0.906713678501546,-1.05201901495457,0.342134356498718,-0.285314247012138,-1.14526742696762,-0.322094276547432,-1.41399395465851,-1.11064544320107,-0.275639116764069,-0.426927074790001,-1.49319076538086,-0.365314453840256,-1.03261314332485,0.252032101154327,0.315657794475555,-0.97126230597496,0.0920567512512207,-0.2997205555439,-1.03103019297123,-0.85018265247345,0.154384613037109,-0.39066157117486,-0.783259153366089,-0.939780995249748,-0.381324358284473,1.44349825382233,-0.969224616885185,-0.528811916708946,1.49209105968475,-1.53438049554825,-0.534258052706718,1.15367436408997,-1.63368886709213,-0.369379080832005,1.04587352275848,-1.9227187037468,0.0278688054531813,0.318122524768114,-1.88949280977249,-0.129186138510704,0.385635018348694,-0.813425928354263,-1.04136863350868,1.4010796546936,-1.06126266717911,-0.506993696093559, +1.47853231430054,-0.668731167912483,-1.45828568935394,0.955249175429344,-1.19368298351765,-0.351014614105225,0.948993183672428,-1.5070635676384,-0.52638759277761,0.785298705101013,-1.3426448404789,-0.269728882238269,1.25280627608299,-1.49471020698547,-0.130773454904556,1.15234753489494,-0.847467631101608,-1.11396729946136,0.731514394283295,-0.961685858666897,-1.29817199707031,0.226718813180923,-0.531332701444626,-1.74997580051422,0.366138681769371,-0.987111836671829,-1.22989240288734,0.425163939595222,-1.85505354404449,-0.377849803306162,-0.524587616324425,-1.84448820352554,-0.574455231428146,-0.0577778667211533,-1.74672293663025,-0.850015491247177,-0.0118800848722458,-1.46132576465607,-0.871670679189265,-0.338319934904575,-1.82195800542831,-0.441446160664782,-0.319047387689352,-1.68714040517807,-0.584628909826279,-0.00614237785339355,-1.11559173464775,-1.05006350576878,0.462322875857353,-1.77343589067459,-0.476073853671551,0.189985632896423,-1.67081427574158,-0.468331836163998,0.0561354458332062,-0.73357629776001,-1.72911298274994,0.0233405828475952,-1.23515915870667,-0.788825996220112,0.0238348543643951,-1.14197659492493,-0.922560788691044,-0.0683004260063171,-1.26815006136894,-0.885855382075533,-0.0597204864025116,-1.25582441687584,-0.748846553266048,0.0161115527153015,-1.33991429209709,-1.29886314272881,-0.0907185934484005,-1.77866190671921,-0.604153320193291,0.115069672465324,-1.66542828083038,-0.904223442077637,0.638810485601425,-0.913165390491486,-1.71620053052902,0.421978145837784,-1.69831496477127,-0.911265999078751,0.0747571736574173,-1.81218641996384,-0.663073688745499,0.0108149349689484,-1.87715548276901,-0.451397478580475,0.488332912325859,-1.77419310808182,-0.356290772557259,0.657130479812622,-1.77581304311752,-0.556324355304241,0.645602464675903,-1.42938038706779,-1.01037499308586,0.368472322821617,-1.3628933429718,-1.0265519246459,0.235237441956997,-1.15497180819511,-1.38277712464333,0.157543368637562,-0.858929067850113,-1.74717044830322,0.332106731832027,-1.20835450291634,-1.37069252133369,0.389388211071491, +-1.88449424505234,-0.529191680252552,0.263267651200294,-1.48966681957245,-0.852584756910801,0.224472384899855,-1.98626172542572,-0.0548025844618678,0.0548218041658401,-1.90377467870712,-0.468016192317009,-0.241510927677155,-1.04593247175217,-0.538616679608822,1.0129124969244,-1.06090483814478,-0.320632569491863,1.04918559640646,-0.644569724798203,-1.31045281887054,0.690541744232178,-0.955950811505318,-1.15899732708931,0.500996336340904,-0.966524079442024,-0.835039108991623,0.695803821086884,-0.860256612300873,-1.23443800210953,0.645548120141029,-1.07104885578156,-0.705732136964798,0.764262422919273,-1.50713407993317,-0.303739205002785,0.666202932596207,-1.32185146212578,-0.595816984772682,0.558795720338821,-1.20523756742477,-0.721865594387054,0.689009130001068,-1.02365790307522,-0.708198517560959,0.738356351852417,-1.06454516202211,-0.361301109194756,0.737905234098434,-1.59354001283646,-0.580220203846693,0.153152227401733,-1.55714792013168,-0.713541299104691,0.262980431318283,-1.05427265167236,-1.48179811239243,0.316407099366188,-1.25602802634239,-1.25725194811821,0.181022584438324,-1.42873764038086,-0.940802276134491,0.222379416227341,-1.03734314441681,-1.409015417099,0.234001725912094,-1.29106816649437,-0.291154325008392,0.399565190076828,-1.78366899490356,-0.391163140535355,-0.692020311951637,-1.29696461558342,-0.823504846543074,0.132070422172546,-1.38302752375603,-0.488964203745127,0.351434618234634,-0.848508208990097,-1.17406859993935,0.688077241182327,-1.30467182397842,-0.689945131540298,0.692068174481392,-1.75492167472839,-0.613628059625626,-0.154266655445099,-1.4481643140316,-0.881383035331964,0.0723917335271835,-1.84026062488556,-0.720664501190186,-0.0402478128671646,-1.43556761741638,-0.916936637833714,-0.270591199398041,-1.91439032554626,-0.33019782975316,0.148257657885551,-1.62700635194778,-0.822692960500717,0.774467557668686,-1.63594156503677,-0.524473488330841,0.887986987829208,-1.77958190441132,-0.503547299653292,0.620079129934311,-1.31063696742058,-0.889516726136208,0.523666381835938,-1.54536628723145, +-0.831657767295837,0.694428704679012,-1.28366723656654,-0.849984109401703,0.743331328034401,-1.72858625650406,-0.239223778247833,0.721730262041092,-1.75633180141449,-0.921502828598022,-0.135750256478786,-1.44397339224815,-1.00624066591263,0.0849918832536787,-1.83388179540634,-0.458900704979897,-0.00418760627508163,-1.36478146910667,-0.970271714031696,-0.0904155704192817,-1.83960741758347,-0.571270659565926,0.163339242339134,-1.98899382352829,0.0951862614601851,0.178913585841656,-1.36608135700226,-0.767782852053642,-0.0272228866815567,-1.42972034215927,-0.863494783639908,0.606954604387283,-1.22707605361938,-0.762614995241165,0.787706859409809,-1.13070824742317,-1.24319750070572,0.595639705657959,-1.26795488595963,-1.09244427084923,0.546744972467422,-1.42213356494904,-0.41304063051939,0.709261178970337,-1.26900339126587,-0.373409017920494,0.767022728919983,-1.08317375183105,-0.809582650661469,0.812281019985676,-1.22281184792519,-0.798098146915436,0.77579814940691,-1.47872644662857,-0.425325468182564,0.649007499217987,-1.26512944698334,-0.861414398998022,0.218736052513123,-1.13683500885963,-1.24226555228233,0.252557978034019,-0.635912522673607,-1.77359020709991,0.421336263418198,-1.16606193780899,-1.29907354712486,0.341837294399738,-0.757802426815033,-1.67779755592346,0.407402947545052,-0.234362553142773,-1.80288577079773,0.434600315988064,-0.194747670553625,-1.69515353441238,-0.0480706393718719,-0.236436635721475,-1.71804147958755,0.0661885440349579,-0.399442598223686,-1.52119559049606,0.644858866930008,-0.546966983936727,-1.18608415126801,0.228215336799622,-0.370466256834334,-0.701143682003021,-0.118228673934937,-0.625744372606277,-0.842292696237564,-0.0984238386154175,-0.167155445087701,-1.636195063591,0.201182693243027,-0.113167211879045,-1.40246266126633,0.406173199415207,-0.149534929567494,-1.18060633540154,-0.205437421798706,-0.212121814489365,-1.28941231966019,-0.156661808490753,-0.00374063939443658,-1.21477678418159,0.57502543926239,-0.2299834638834,-1.29275062680244,0.815475791692734,-0.137775570619851,-1.18814712762833, +0.498126775026321,-0.336053935345262,-1.46502101421356,0.390891909599304,-0.30080059915781,-1.29246923327446,0.801339693367481,-0.384801425039768,-0.791293978691101,0.120076417922974,-0.398892961442471,-0.830722317099571,0.131015360355377,-0.616438623517752,-1.3292381465435,0.308467626571655,-0.273043094202876,-1.09697815775871,0.550841063261032,-0.925852499902248,-0.853209853172302,-0.303818047046661,-0.514937072992325,-1.27792954444885,-0.0650542974472046,-0.465787291526794,-1.25044506788254,0.529093593358994,-0.330349590629339,-1.05417381227016,0.549301624298096,-0.388734128326178,-0.994525775313377,0.53644073009491,-1.11247083544731,-1.0520496070385,-0.124539002776146,-1.00134664773941,-1.1134052798152,0.159097872674465,-0.466403005644679,-1.84921437501907,0.0641786158084869,-0.36662888340652,-1.82148903608322,-0.166400223970413,-0.309398856014013,-1.86098629236221,-0.208292067050934,-0.382470248267055,-1.89425712823868,0.0393310934305191,-0.370311592705548,-1.89498680830002,0.0592752695083618,-0.718195527791977,-1.45143622159958,-0.482877373695374,-0.751518160104752,-1.46076428890228,-0.431165456771851,-0.592708691954613,-1.81643426418304,-0.0450518131256104,-0.999051600694656,-1.2681779563427,0.0366782546043396,-1.43540412187576,-0.667733266949654,-0.415090262889862,-1.37223863601685,-0.803192734718323,-0.333230525255203,-1.14845648407936,-1.13558523356915,-0.170681565999985,-0.572518780827522,-1.77111667394638,0.0936984419822693,-0.46890777349472,-1.79634869098663,0.111717492341995,-0.478496044874191,-1.78203910589218,0.0715119540691376,-0.860013399273157,-1.21321024000645,0.454060919582844,-0.758150666952133,-1.34279462695122,0.311494320631027,-0.784739825874567,-1.39189198613167,0.463177926838398,-0.740876257419586,-1.24899861216545,0.553387157618999,-1.25983208417892,-0.595754787325859,-0.0670918822288513,-1.16940131783485,-0.50255785882473,-0.17824774980545,-0.825152263045311,-1.29644650220871,-0.0502664148807526,-0.989708691835403,-1.03288191556931,0.24240854382515,-1.33324113488197,-0.766066938638687, +-0.907445080578327,-0.977385878562927,-0.99482150375843,-0.451515972614288,-1.03264346718788,-1.15528512001038,-0.0533205270767212,-0.857707902789116,-0.929533779621124,0.077541172504425,-0.857395634055138,-0.869221694767475,0.0818321704864502,-1.22961327433586,-0.788938038051128,-0.249761641025543,-0.875282354652882,-0.914071373641491,0.191146284341812,-0.488681554794312,-1.86240017414093,-0.490151345729828,-0.347645118832588,-1.80373549461365,-0.656458184123039,0.208075299859047,-1.88030570745468,-0.488053724169731,-0.101735770702362,-1.94808894395828,-0.308880351483822,-1.03042128682137,-1.0374654084444,-0.801391735672951,-0.766036450862885,-1.24351912736893,-0.895392395555973,-0.695645928382874,-1.72355818748474,-0.55424290895462,-1.20950952172279,-1.05161812901497,-0.333429008722305,-1.51683437824249,-0.235607653856277,-0.558037310838699,-1.21909844875336,-0.458232879638672,-0.640085592865944,-1.1418983489275,-0.81953274551779,-0.351294666528702,-0.81059256196022,-1.64976704120636,-0.302842482924461,-0.615444928407669,-1.73880189657211,-0.360478609800339,-0.539103016257286,-1.71717309951782,-0.393403589725494,-0.969110667705536,-1.32569542527199,0.310250043869019,-1.18156266212463,-1.19558036327362,0.327391970902681,-1.0740405023098,-1.06020891666412,-0.0496272444725037,-1.24161756038666,-1.08526185154915,-0.16677713394165,-1.14293193817139,-1.23551213741302,0.400479007512331,-0.852541871368885,-1.11357772350311,0.239009022712708,-1.15381497144699,-0.458263628184795,-0.458548039197922,-1.10402017831802,-0.519676141440868,-0.445529818534851,-1.01859171688557,-0.955832913517952,-0.115469694137573,-1.07115311920643,-0.848813455551863,-0.145659416913986,-1.13149583339691,-0.389740642160177,-0.501504898071289,-1.37807390093803,-0.589129164814949,-0.671884939074516,-1.20176143944263,-0.74431411921978,-0.236918762326241,-0.762198463082314,-1.59164571762085,-0.644038967788219,-0.931367889046669,-1.41702091693878,-0.617585986852646,-1.0682363063097,-1.41597205400467,-0.425699313171208,-0.863159108906984,-1.57203406095505, +-0.145525369793177,-0.893428605049849,-1.50525081157684,-0.0222320631146431,-1.05290235579014,-1.24759677052498,-0.433687880635262,-1.12488098442554,-0.88635191321373,-0.473290175199509,-0.0456835217082698,-1.32985433936119,0.797286555171013,-0.38327768445015,-1.31396853923798,0.809725970029831,-0.698326021432877,-0.869325071573257,0.0869700908660889,-0.67660167068243,-1.07248818874359,0.163195908069611,-0.528859212994576,-1.25474491715431,0.584480285644531,-0.587996199727058,-1.01455859839916,0.488977074623108,-0.786811947822571,-0.657483741641045,0.310719430446625,-0.854794412851334,-0.698788315057755,0.272164225578308,-0.617970734834671,-1.2035536468029,0.506162911653519,-0.667924135923386,-1.24752095341682,0.537891983985901,-0.46928408741951,-1.21158987283707,0.613824903964996,-0.483774423599243,-1.12193420529366,0.58032289147377,-0.21968824416399,-1.36012461781502,0.726722896099091,-0.778363808058202,-1.17335616052151,0.569531295448542,-0.992926374077797,-1.07102580368519,0.180806517601013,-0.871018081903458,-1.24800199270248,0.414077162742615,-0.796468122862279,-1.22990901768208,0.527005288749933,-0.683730591088533,-1.22848629951477,0.647814065217972,-1.13650786876678,-0.818858981132507,0.0901142358779907,-1.01497033238411,-0.781733632087708,-0.0428175330162048,-0.554979234933853,-1.07278886437416,0.333388149738312,-0.699716627597809,-1.34766185283661,0.395335406064987,-0.730936348438263,-0.7369784116745,0.115954041481018,-1.61697620153427,-0.565560221672058,-0.582174614071846,-1.24254062771797,-1.04478822648525,-0.38497611778439,-0.906809598207474,-0.983880624175072,0.0411848425865173,-1.03424856066704,-1.11409887671471,-0.31543080508709,-1.23742726445198,-1.06025223433971,-0.454939559102058,-0.780272202566266,-1.35042288899422,0.530522458255291,-0.538622289896011,-1.26631125807762,0.268095314502716,-0.816967397928238,-1.25324535369873,0.357242912054062,-0.767989605665207,-1.0322580486536,0.190214931964874,-0.480357140302658,-1.26539576053619,0.336342811584473,-0.734855778515339,-1.03072649240494,-0.682326972484589, +-1.51250553131104,-0.408178187906742,-1.1546925008297,-1.65935349464417,-0.789950579404831,-0.440302155911922,-1.27847242355347,-0.978739678859711,-0.407061744481325,-1.1968660056591,-0.941405035555363,-0.0528240203857422,-1.5433344244957,-0.783470556139946,0.0892714858055115,-1.37667059898376,-0.860555551946163,0.0650602281093597,-1.07898950576782,-1.00856982171535,0.385785236954689,-1.19193595647812,-1.05088808387518,0.474741350859404,-0.921746075153351,-1.13496243953705,0.746623288840055,-1.07094538211823,-0.917851161211729,-0.710936710238457,-0.941245287656784,-0.921751417219639,-0.392256952822208,-1.1587949693203,-0.901825726032257,0.539655297994614,-1.21462884545326,-1.09585623443127,-0.195724412798882,-1.2492384314537,-0.808031424880028,-0.457404900342226,-1.11870488524437,-0.974564041942358,0.659515351057053,-0.920941250398755,-0.932547867298126,0.407170556485653,-1.46477574110031,-0.684845954179764,-0.112517893314362,-1.31474170088768,-0.62829727679491,-0.00655531883239746,-1.03792949020863,-0.757214963436127,0.209223240613937,-1.23055958747864,-1.09420320391655,-0.173231460154057,-1.44617953896523,-0.765835531055927,-0.46023790538311,-1.45821794867516,-0.644144058227539,-0.365248695015907,-1.17456060647964,-0.795975297689438,-0.237597585655749,-1.11490412056446,-0.75014066696167,0.0175882279872894,-1.06952311098576,-1.07387831062078,0.17200767993927,-1.08025252819061,-0.99754635617137,0.193203330039978,-0.874796072021127,-0.901414573192596,0.34976352751255,-0.873558059334755,-0.958260968327522,0.415068995207548,-1.13978576660156,-1.07443965226412,0.264532759785652,-0.389496311545372,-1.27327984571457,0.665543884038925,-0.202213793992996,-1.3120236992836,0.876831721514463,-0.933336943387985,-1.4695328772068,0.29494746774435,-1.31053641438484,-1.20541390776634,-0.136757433414459,-1.01432782411575,-1.60643422603607,-0.266238734126091,-1.02100604772568,-1.39442694187164,0.122329771518707,-0.623640388250351,-1.44500482082367,0.497724175453186,-1.11637872457504,-1.02474039793015,0.329798668622971,-0.933738946914673, +-1.40549951791763,0.00661420822143555,-0.743104085326195,-1.31772789359093,0.343837559223175,-0.602399289608002,-1.62831038236618,0.364329308271408,-0.638284474611282,-1.32205763459206,0.569870918989182,-0.751032099127769,-1.66342574357986,-0.0499310791492462,-0.78485831618309,-1.38024568557739,0.049238383769989,-0.43122028093785,-1.84767246246338,0.125050276517868,-0.865469932556152,-1.54911106824875,0.17068800330162,-0.783178389072418,-1.5828742980957,-0.764892131090164,-0.771103995852172,-1.21745055913925,-0.709384828805923,-0.44187275506556,-1.85691666603088,0.12511733174324,-1.25973889231682,-1.13934192061424,-0.122130662202835,-0.943934679031372,-1.15961140394211,-1.31041318178177,-0.916863419115543,-0.901738844811916,-1.1510973572731,-0.54486508667469,-1.83714634180069,-0.29447627812624,-1.24362510442734,-1.0023772418499,-0.368066132068634,-1.14906585216522,-1.56077891588211,-0.437215216457844,-1.04233978688717,-1.37138548493385,-0.418005019426346,-0.517264313995838,-1.73393571376801,-0.489719435572624,-0.93492416292429,-1.28311768174171,-0.221273273229599,-0.533961221575737,-1.87183612585068,-0.360056333243847,-0.816284339874983,-1.46558183431625,-0.265633769333363,0.0842299370085584,-1.7584775686264,-0.0932213366031647,-0.179543875463423,-1.86896884441376,-0.0919005870819092,-0.125979697331786,-1.81964164972305,-0.611430879682302,0.0964820589870214,-1.78469043970108,-0.154861152172089,-0.0810126066207886,-1.91548645496368,-0.054285004734993,-0.636298523284495,-1.77255612611771,-0.105841960757971,-0.571291626198217,-1.72020322084427,0.592501163482666,-0.163482964038849,-1.93902367353439,0.436060264706612,-0.309053719043732,-1.91921174526215,-0.0434641242027283,-0.600833997130394,-1.75308173894882,0.212479248642921,-0.736822172999382,-1.80751538276672,0.259218759834766,-0.295193508267403,-1.83461606502533,0.557095155119896,0.168734893202782,-1.92998105287552,0.252016961574554,-0.163831979036331,-1.90180307626724,0.541644528508186,-0.197505846619606,-1.87636542320251,0.519689634442329,-0.267860125750303,-1.94967484474182, +-0.15683002397418,-0.327240638434887,-1.85823607444763,0.513899214565754,-0.346203118562698,-1.88574558496475,0.0526078343391418,-0.170087970793247,-1.97839623689651,0.14746415708214,-0.143109984695911,-1.88544470071793,0.544575043022633,-0.128918584436178,-1.91716802120209,-0.103295177221298,-0.537490268237889,-1.84007793664932,-0.0522737428545952,-0.716706067323685,-1.82569843530655,0.022424653172493,-0.247026389464736,-1.93480849266052,0.250231292098761,0.122752010822296,-1.95369273424149,0.288114681839943,-0.54792944341898,-1.78693509101868,0.249794572591782,-0.657143920660019,-1.82795435190201,-0.267780454829335,-0.182493612170219,-1.84040611982346,-0.576187305152416,-0.336276954039931,-1.94294941425323,-0.117214750498533,-0.191210066899657,-1.97864323854446,0.0879736877977848,0.0101808412000537,-1.98956751823425,-0.195591934025288,-0.131622798740864,-1.97826874256134,0.0679454728960991,-0.16573553532362,-1.96336787939072,0.178806606680155,-0.0428335964679718,-1.99552816152573,0.0390089862048626,-0.215558236464858,-1.97559440135956,0.0729987807571888,-0.166171245276928,-1.98366111516953,0.0250258520245552,0.0644081123173237,-1.92618668079376,0.401094157248735,-0.554339967668056,-1.77106148004532,0.0929158926010132,-0.457117214798927,-1.77399480342865,-0.683300763368607,-0.0320645123720169,-1.95010769367218,-0.41911269724369,-0.148117080330849,-1.92456358671188,-0.414493702352047,-0.392744766082615,-1.79983592033386,-0.54572631418705,-0.269861535634845,-1.69330722093582,-0.79425847530365,0.0462042279541492,-1.93122750520706,-0.476156890392303,0.089257936924696,-1.97222632169724,0.0161871612071991,0.0711134783923626,-1.98607152700424,-0.197767198085785,0.0873422510921955,-1.94213491678238,-0.346159435808659,0.0307703539729118,-1.9533423781395,-0.355063147842884,0.159102704375982,-1.94948947429657,0.15031623095274,0.0965369790792465,-1.92944097518921,0.279762037098408,0.03001519292593,-1.95841538906097,-0.393082112073898,-0.0564493946731091,-1.8524808883667,-0.615921266376972,-0.088850699365139,-1.83375614881516, +-0.591857254505157,-0.181499525904655,-1.69133245944977,-0.776873201131821,-0.1674674898386,-1.5440376996994,-0.870489288121462,0.173116840422153,-1.85143566131592,-0.595629334449768,0.107109427452087,-1.94161301851273,-0.340088023804128,-0.185810922645032,-1.53803831338882,-0.940045155584812,-0.483999289572239,-1.70765161514282,-0.559161797165871,-0.127310175448656,-1.9831155538559,-0.213975928723812,0.131631556898355,-1.85106283426285,-0.383579239249229,0.112026268616319,-1.84718626737595,-0.350737437605858,-0.121895540505648,-1.97748601436615,-0.257387943565845,-0.089871808886528,-1.80404245853424,-0.808012098073959,0.0855628326535225,-1.93763506412506,-0.424446545541286,0.11054940149188,-1.85900717973709,-0.506084327120334,0.105486632324755,-1.89844727516174,-0.438727379776537,0.0230860151350498,-1.95578074455261,-0.282440453534946,-0.561527385376394,-1.70399516820908,-0.596495032310486,-0.557857234030962,-1.65565747022629,0.366172447800636,-0.182916566729546,-1.88443875312805,0.201239541172981,-0.00430805422365665,-1.98365080356598,0.0517988726496696,-0.593902997672558,-1.64959329366684,0.693385437130928,-0.574226208031178,-1.81789404153824,-0.0145020931959152,0.0184788694605231,-1.9911835193634,-0.00207623839378357,-0.098169255303219,-1.90864157676697,0.390395798720419,-0.10912233684212,-1.9083479642868,0.37739628367126,-0.0631563700735569,-1.97753101587296,-0.0860752835869789,-0.0241749102715403,-1.97636359930038,-0.172518074512482,-0.0930795539170504,-1.90721994638443,0.172372221946716,-0.187012311071157,-1.97920227050781,-0.0162457451224327,-0.0968037382699549,-1.90293371677399,0.297177605330944,-0.197090312838554,-1.91746401786804,0.301649607717991,0.0439147874712944,-1.79292547702789,-0.678138799965382,-0.618443951010704,-0.853334796614945,-0.808562114834785,-0.69284576177597,-1.63817852735519,-0.686541207134724,0.0580312162637711,-1.99309581518173,-0.110603973269463,-0.0891315452754498,-1.76702237129211,-0.537737406790257,-0.273413628339767,-1.67430949211121,-0.687784858047962,-0.262321211397648,-1.69625014066696, +-0.751668632030487,0.526827603578568,-1.85493713617325,-0.316697172820568,0.451421663165092,-1.77934038639069,-0.569391652941704,0.731481850147247,-1.76217532157898,-0.0723073296248913,-0.0998366698622704,-1.68743360042572,-0.793147355318069,-0.207254372537136,-1.53258383274078,-0.931764714419842,0.15675737336278,-1.80289363861084,-0.477873124182224,0.128426570445299,-1.77085500955582,-0.701629385352135,0.455331780016422,-1.8551030755043,-0.357552416622639,0.257632050663233,-1.83229041099548,-0.438756734132767,-0.18975792825222,-1.72393023967743,-0.701106369495392,0.147788017988205,-1.78666412830353,-0.0709966346621513,0.118056695908308,-1.73235070705414,-0.72218568995595,-0.0653896033763885,-1.83364951610565,-0.467241272330284,-0.125531747937202,-1.74930542707443,-0.773477733135223,0.437231577932835,-1.88926947116852,-0.0221167057752609,0.401342563331127,-1.92673653364182,-0.193119052797556,0.258917100727558,-1.96794152259827,0.0907922051846981,0.423628397285938,-1.80571901798248,0.249813079833984,0.00792023225221783,-1.95786648988724,-0.395563155412674,-0.0653190156444907,-1.90504735708237,-0.465459268540144,0.125744245946407,-1.98868632316589,-0.154251515865326,0.0909944530576468,-1.98813456296921,-0.17582880333066,0.11860638204962,-1.9834588766098,0.0729122050106525,0.0613603889942169,-1.99392312765121,-0.124240964651108,-0.281671434640884,-1.86948120594025,-0.457492172718048,-0.140882521867752,-1.75458633899689,-0.219300776720047,-0.0588991679251194,-1.90971183776855,-0.573484659194946,-0.0820028409361839,-1.79736220836639,-0.740938514471054,-0.406251832842827,-1.80314290523529,-0.56012125313282,-0.501909546554089,-1.88816922903061,-0.197617843747139,-0.107285133097321,-1.99269843101501,-0.0573281450197101,-0.0511560551822186,-1.93510371446609,-0.420275747776031,0.0350047498941422,-1.92435801029205,-0.518758669495583,-0.0311344787478447,-1.9756144285202,0.104284390807152,-0.00257082283496857,-1.97557538747787,-0.250009257346392,0.00396579131484032,-1.84576845169067,-0.752016723155975,0.0241710692644119,-1.98047095537186, +-0.260070718824863,0.048905661329627,-1.94004446268082,-0.368790516629815,0.119084771722555,-1.94634616374969,-0.350661899894476,0.0149681488983333,-1.97591006755829,-0.308860793709755,-0.373635347932577,-1.86106550693512,-0.386015728116035,-0.39224024862051,-1.79591566324234,0.439241215586662,-0.131055075675249,-1.92507421970367,0.00506578385829926,-0.116134455427527,-1.98839968442917,-0.159009017050266,-0.488266440108418,-1.81263941526413,0.260111581534147,-0.420329011976719,-1.84517592191696,-0.102634865790606,-0.0712747499346733,-1.97677934169769,-0.21107741817832,-0.00350469350814819,-1.9283019900322,0.357540771365166,-0.0687863603234291,-1.94617933034897,0.233662648242898,0.0890770778059959,-0.705183953046799,-0.956586118787527,0.0982449539005756,-0.823259443044662,-1.02595025673509,-0.469745062291622,-1.05923382937908,1.14937719702721,-1.03320204466581,-1.34431090950966,-0.135044544935226,-0.785661444067955,-1.75624793767929,0.222726788371801,-0.964986018836498,-1.49028944969177,0.290656752884388,-0.705284256488085,-1.73883730173111,-0.0929118357598782,-1.39545267820358,-1.27726456522942,0.238028209656477,-1.3264168202877,-1.22574234008789,0.0853129923343658,-0.99442470818758,-1.28174638748169,0.291778270155191,-1.37485441565514,-1.00852768868208,0.10336509346962,-1.24958762526512,-1.17255848646164,0.242890745401382,-0.86770761013031,-1.11910380423069,0.216829001903534,-0.793476600199938,-1.25649651885033,0.300663635134697,-0.663396257907152,-1.20357197523117,0.488905534148216,-0.812860190868378,-1.19534568488598,0.306787431240082,-0.913092903327197,-1.07639688998461,0.247775539755821,-0.728483556769788,-1.38718834519386,0.310967639088631,-0.779348857700825,-1.32690876722336,0.625005666166544,-0.658930022269487,-1.35806408524513,0.422482952475548,-0.764893292449415,-1.12031322717667,0.392575636506081,-0.521865468472242,-1.5152336359024,0.65458869561553,-0.772672474384308,-1.24033072590828,0.673175573348999,-0.877506136894226,-1.35836854577065,0.571584776043892,-0.572434079833329,-1.24002702534199,0.674443304538727, +-0.278595179319382,-1.52715438604355,0.631035268306732,-0.716884106397629,-1.24673727154732,0.700101807713509,-0.739008277654648,-1.32901179790497,0.482697159051895,-0.368782445788383,-1.24511933326721,0.66175776720047,-0.349259925074875,-1.2252786308527,0.803195357322693,0.0778906596824527,-0.685786783695221,-1.05029255151749,-0.0796943716704845,-0.52694708108902,-1.13978761434555,-0.28066228562966,-1.18265233933926,0.719590425491333,-0.428053076379001,-1.90342777967453,-0.125994317233562,-0.383149057626724,-1.88457626104355,-0.199314590543509,-0.499976349063218,-1.85338342189789,-0.167817421257496,-0.540770675055683,-1.8393822312355,-0.163823589682579,-0.65860717697069,-1.73628753423691,-0.0728623941540718,-1.14648056030273,-1.54520910978317,-0.257984273135662,-1.13072910904884,-1.44109046459198,-0.231947630643845,-0.754522211849689,-1.5612296462059,-0.0766900479793549,-0.805884018540382,-1.52869164943695,0.0862159132957458,-1.1197222173214,-1.42631441354752,-0.168127000331879,-1.13993427157402,-1.51315712928772,0.1723393201828,-0.856807388365269,-1.52213984727859,0.212294206023216,-0.590448506176472,-1.67039287090302,-0.011036217212677,-0.548865504562855,-1.66512495279312,0.0487435758113861,-0.658489979803562,-1.68516480922699,0.28683976829052,-0.353774213115685,-1.77561146020889,0.371055990457535,-0.284299559891224,-1.68913799524307,0.177889913320541,-0.406420931220055,-1.71923172473907,0.310505270957947,-0.317766077816486,-1.69618755578995,0.169899791479111,-0.19715628772974,-1.67897993326187,0.231013864278793,-0.243917676154524,-1.71823513507843,0.406315267086029,-0.876760929822922,-1.77375692129135,0.0984969437122345,-0.581423699855804,-1.85806840658188,0.0288465470075607,-0.798151411116123,-1.67220789194107,0.0330513417720795,-1.12831911444664,-1.60223263502121,0.293591402471066,-1.15056326985359,-1.57507258653641,0.213602814590558,-0.725757788866758,-1.66309714317322,0.299792757257819,-0.776730000972748,-1.65397822856903,0.466394677758217,-0.781217694282532,-1.65313398838043,0.458787068724632,-0.639294993132353, +-1.71107524633408,0.359719296917319,-0.629520834423602,-1.69468861818314,0.311806958168745,-0.578839855268598,-1.72207409143448,0.530367963016033,-0.498216606676579,-1.74280786514282,0.360516622662544,-0.401148216798902,-1.75330579280853,0.655020795762539,-0.280488067190163,-1.74086105823517,0.461029380559921,-0.746811062097549,-1.6478835940361,0.580305967247114,-0.643584236502647,-1.70055890083313,0.410760134458542,-0.248123457655311,-1.75454860925674,0.447823464870453,-0.280944507569075,-1.79525744915009,0.533432176336646,-0.64061313867569,-1.69993424415588,0.412909001111984,-0.380035257896594,-1.81876623630524,0.344465062022209,-0.0469846464693546,-1.89149624109268,0.3822857812047,-0.0762177687138319,-1.87713938951492,0.312384575605392,-0.0576987974345684,-1.89985650777817,0.36201224476099,-0.172410029917955,-1.90172868967056,0.385693838819861,0.00374584334150541,-1.91487896442413,0.211221277713776,-0.13107091281563,-1.94179469347,0.261094819754362,-0.502079777419567,-1.8359922170639,0.288272723555565,-0.103497267700732,-1.97280645370483,0.253058552742004,-0.0674728043377399,-1.96064078807831,0.185442261397839,-0.424889276377009,-1.89429616928101,0.118178710341454,-0.6081488057971,-1.84230881929398,0.0411888062953949,-0.171375777572393,-1.97788107395172,0.209507741034031,0.0121125326541298,-1.99218821525574,0.169862195849419,-0.0910626286640763,-1.99127721786499,0.114463072270155,-0.16486294195056,-1.98434680700302,0.168739452958107,-0.0893741324543953,-1.98965519666672,0.0180411711335182,-0.00544703017567372,-1.9736447930336,-0.132099404931068,-0.0132043547928333,-1.97715228796005,-0.241682939231396,-0.163311236537993,-0.505074799060822,-0.789789319038391,-0.166660911869258,-0.585162550210953,-0.815748050808907,-0.513679303228855,-0.339062929153442,-0.603509843349457,-1.06623202562332,-0.347750425338745,-0.753213211894035,-1.26033121347427,-0.418362200260162,-0.84429258108139,-0.914370089769363,-0.774100303649902,-0.657465733587742,-0.00773609057068825,-0.806913942098618,-0.930106349289417,-0.71170075237751,-0.472667276859283, +-1.1994988322258,-0.884161353111267,-0.566527888178825,-1.34372994303703,-0.259827151894569,-1.07738135755062,-1.31834110617638,-0.579658567905426,-0.942497238516808,-0.974806644022465,-0.612066313624382,-0.699189379811287,-1.18105444312096,-0.267475448548794,-0.658862262964249,-1.23337289690971,-0.310659376438707,-0.728109776973724,-0.951262556016445,-0.869168166071177,-0.939556580036879,-0.534789569675922,-1.06951317191124,-0.734270572662354,-0.278172113001347,-0.988377538975328,-1.06514789164066,-0.129624970257282,-0.62702202051878,-1.76385873556137,-0.0544251501560211,-0.994061593897641,-1.01231700368226,-0.271352387964725,-0.777547270059586,-0.91417783498764,-0.214517444372177,-0.975113689899445,-0.767948985099792,-0.152186870574951,-0.876084573566914,-0.856892466545105,-0.618962578475475,-0.795320361852646,-0.80741186439991,-0.172794967889786,-0.58583328127861,-0.714790433645248,0.304203510284424,-1.17263776063919,-0.407119929790497,0.568462163209915,-1.00149267911911,-1.25456443428993,0.00173705816268921,-0.582156419754028,-1.78365206718445,0.168876245617867,-1.09455943107605,-0.724082708358765,0.546598762273788,-1.40442448854446,-0.610318064689636,0.394185245037079,-1.19830879569054,-0.873706802725792,-0.0155136287212372,-0.86168198287487,-0.82827515900135,-0.631731599569321,-0.864136286079884,-0.84390589594841,-0.634971313178539,-1.14299756288528,-0.940324112772942,0.338797725737095,-1.24062213301659,-0.756928741931915,0.324660401791334,-0.636736899614334,-0.466565663460642,0.739944078028202,-0.727801829576492,-0.180308267474174,1.06603796780109,-0.899949386715889,-0.935808166861534,0.315497808158398,-0.846757337450981,-0.932081535458565,0.315207950770855,0.150835551321507,-0.168658316135406,-0.0804267525672913,-0.0260825306177139,-0.0636039972305298,-0.0204272270202637,-0.262958019971848,-0.770451799035072,-0.585149258375168,-0.094955250620842,-0.95557052642107,-0.593577921390533,-0.0880309492349625,-0.722677677869797,-0.576279580593109,-0.848052948713303,-0.983915098011494,-0.0925624966621399,-0.994605426676571, +-0.951266448944807,-0.263148218393326,-0.607272593304515,-0.928678873926401,-0.962163761258125,-0.767894014716148,-1.3037728369236,0.327765043824911,-0.889465942978859,-1.07709522545338,0.362188961356878,-0.818830279633403,-0.552352011203766,-0.561481699347496,-0.998229205608368,-0.792290240526199,-0.366036467254162,0.602482438087463,-0.36889323592186,-0.714410126209259,-0.0118090510368347,-0.146066963672638,-0.0942748785018921,-0.548820227384567,-0.741334140300751,-0.318589270114899,-0.0602248013019562,-1.26002535223961,-0.72033528983593,0.00268542766571045,-0.359830498695374,-0.188304960727692,-0.611089259386063,-0.408272054046392,1.04165309667587,-0.731701716780663,-0.802511423826218,0.836819529533386,-0.643687337636948,-0.838193468749523,-0.186821311712265,-0.504249542951584,-1.33690747618675,0.768586695194244,-0.697968825697899,-0.955379575490952,0.906667768955231,-0.954151570796967,-0.634713023900986,0.110966883599758,-0.937869820743799,-0.801683470606804,0.313924796879292,-0.19133660197258,-1.01288715749979,-0.701436206698418,-0.578862637281418,-0.853870496153831,-0.302575409412384,-0.903657648712397,-1.29765465855598,-0.458118937909603,-0.290513753890991,-1.86218547821045,-0.401861108839512,-0.220711946487427,-0.721309781074524,0.115029692649841,-0.0192331671714783,-0.786925852298737,-0.107185082510114,-0.306865751743317,-0.890972897410393,0.154625259339809,-0.395697742700577,-1.28535351157188,-0.266925692558289,0.432682543992996,-1.26726132631302,0.204614048823714,-0.0810953974723816,-0.911234110593796,0.516943216323853,-0.518378347158432,-0.665406614542007,0.233572393655777,-0.326616704463959,-0.751655622851104,0.114620663225651,-0.17544686794281,-1.0314060151577,-0.599799610674381,-0.55307999253273,-0.932883851230145,-0.0456336662173271,-0.800618976354599,-1.40980118513107,-0.226621761918068,-0.100033760070801,-1.82703614234924,-0.299790151417255,-0.554212599992752,-1.29927334189415,0.180043540894985,-0.261140823364258,-0.372880488634109,-0.271313555538654,-0.658436506986618,-0.747178465127945,-0.368044391274452, +-0.812913902103901,-0.950748223811388,-0.595305293798447,-1.06452306360006,-0.275102660059929,0.846450243145227,-0.43616409599781,-0.165812775492668,-0.0381015539169312,-1.12056870758533,-1.23193436861038,0.55541455000639,-1.10255211591721,-0.937421597540379,0.433404501527548,-1.12781575322151,0.0429897606372833,0.83654797822237,-0.354604065418243,-0.256574630737305,0.542843632400036,0.0460798442363739,-0.360171735286713,-0.52101194858551,-0.458795517683029,-0.352279394865036,-0.288312673568726,-0.718429073691368,-0.52348530292511,-0.247514426708221,-0.0409366488456726,-0.6261987388134,-0.612868666648865,-0.324536807835102,-0.731823951005936,-1.00907108187675,-0.628782361745834,-0.771131008863449,-0.885801147669554,-0.282095789909363,-0.578433275222778,-0.45773446559906,-0.412281766533852,-0.469859153032303,-0.345568180084229,-0.266454657539725,-0.881385385990143,-0.974374007433653,0.10236169397831,-0.70148578286171,-1.03022286295891,0.0841169953346252,-0.412185944616795,-0.193410694599152,-0.836781054735184,-0.600711576640606,0.957101747393608,-0.911814533174038,-0.887118492275476,0.653495103120804,-0.732773557305336,-0.983701396733522,-0.113498508930206,-0.547082453966141,-1.13222876191139,1.17493841052055,-1.02403791993856,-0.540384314954281,1.20096302032471,-1.05634444952011,-0.595922857522964,0.631878733634949,-0.917112492024899,-0.805480554699898,0.607639774680138,-0.712568484246731,-0.424893617630005,-0.0274706184864044,-0.98816591501236,-0.49634662270546,0.194910049438477,-0.951939463615417,-0.830467835068703,-0.632823079824448,-0.961001496762037,-0.888745442032814,-0.532861992716789,-0.755957141518593,-0.836596608161926,-0.0552555918693542,-0.868524454534054,-0.810403615236282,0.0084393322467804,-0.702269773930311,-0.788521379232407,-0.869927182793617,-0.695823300629854,-0.806998252868652,-0.827044099569321,0.189427614212036,-0.438276439905167,-0.485371172428131,-0.206330239772797,-0.470739282667637,-0.0174582004547119,-0.640246719121933,-1.23770973086357,0.0201356112957001,-0.559659868478775,-0.913618063554168, +0.183722235262394,-0.194599986076355,-0.811081528663635,0.0139402151107788,-0.124920070171356,-1.39025086164474,0.869831182062626,-0.777994588017464,-1.26099190115929,0.402836747467518,-0.60699000954628,-0.549764394760132,0.506422191858292,-0.69097962975502,-0.762625217437744,0.407650828361511,-0.717286065220833,-0.587402492761612,1.97291374206543e-05,-0.985049653798342,-0.851403102278709,-0.408185094594955,-0.95811168756336,-0.922279961407185,-0.371473666280508,-0.474644333124161,-0.783768445253372,-0.322114028036594,-0.630538195371628,-0.836619153618813,-0.149982362985611,-0.954828127287328,-1.06877597421408,-0.382351901382208,-0.735013552010059,-0.833344861865044,-0.662621080875397,-0.558659821748734,-0.361856147646904,0.295782268047333,0.010323703289032,-0.517003279179335,-0.468272589147091,-0.335109651088715,-0.810126602649689,-0.673524245619774,-0.554844826459885,-1.02950418740511,1.05179068446159,0.0779036283493042,-0.508763870224357,0.721627213060856,-0.0754295587539673,-0.330576092004776,0.805751591920853,-0.497475415468216,-0.541582018136978,0.146955765783787,-0.418117702007294,-0.473101794719696,-0.0680069401860237,-0.492253005504608,-0.859585597645491,-0.211065575480461,-0.562168926000595,-0.904419560916722,-0.00124974548816681,-0.893736846745014,-1.00266054272652,-0.190630260854959,-0.795160084962845,-0.94975377805531,-0.360375788062811,-0.836378842592239,-0.913679241435602,0.313960015773773,-0.489272236824036,-0.876036498695612,-0.240240678191185,-0.702091902494431,-0.539344042539597,-0.480397522449493,0.498059136793017,-0.701982975006104,-0.812842912971973,0.631829231977463,-0.338839218020439,-0.0708293914794922,0.388968266546726,-0.349684435874224,0.0388749241828918,0.375640109181404,-0.509207248687744,-0.186087429523468,-0.217733010649681,-0.619689911603928,-0.48812010884285,-0.369762770831585,-0.110433578491211,-0.00741195678710938,-0.0659035444259644,-0.345940947532654,-0.103249371051788,-0.11353212594986,-0.540636092424393,-0.520338982343674,0.294628962874413,-0.419780433177948,-0.199663698673248, +0.355863675475121,-0.447151809930801,-0.17704039812088,-0.177273243665695,-0.650629103183746,-0.537965565919876,-0.35373549349606,-0.720083653926849,-0.904191501438618,-0.692989885807037,-0.64340004324913,-0.531457751989365,-0.405976876616478,-0.494204133749008,-0.356255143880844,-0.468801662325859,-0.579736277461052,-0.279414176940918,-0.761365324258804,-0.547654777765274,-0.441102057695389,-0.474178105592728,-0.455426394939423,-0.640167720615864,0.281454563140869,-0.241594225168228,-0.445598989725113,0.567479558289051,-0.383337527513504,-0.367210149765015,0.254761300981045,-0.616785109043121,-0.722174659371376,-0.200118511915207,-0.715229198336601,-0.758315458893776,0.0160329043865204,-0.405352562665939,-0.270466566085815,0.149724282324314,-0.146186858415604,-0.107136487960815,-0.149022877216339,-0.535765767097473,-0.476586729288101,-0.335859000682831,-0.836685851216316,-0.614496365189552,-0.275918573141098,-0.566527038812637,-0.568114653229713,-0.481697425246239,-0.681328386068344,-0.381915837526321,-0.611072212457657,-0.759307906031609,-0.708137638866901,-0.572244420647621,-0.670883417129517,-0.791162241250277,-0.315675348043442,-0.529022336006165,-0.601208224892616,-0.327185094356537,-0.38538658618927,-0.408701494336128,-0.504698351025581,-0.552727580070496,-0.779538918286562,-0.624185541644692,-0.885296873748302,-0.852122887969017,-0.10661393404007,-0.19948536157608,-0.517071455717087,0.838877767324448,-0.418388277292252,-0.829278975725174,0.399449057877064,-0.622977018356323,-0.959305837750435,-0.382441312074661,-0.73358166217804,-0.929652810096741,-0.00844687223434448,-0.497681856155396,-0.530555814504623,-0.113661408424377,-0.631712190806866,-0.303991705179214,-0.346757978200912,-0.443659543991089,-0.511474028229713,0.327919520437717,-0.470473170280457,-0.896042600274086,0.0528659373521805,-0.4820896089077,-0.871447995305061,-0.63514307141304,-0.846421130001545,-0.348436072468758,-0.871166804805398,-0.877735920250416,-0.536830201745033,-0.886745530180633,-0.618026256561279,-0.353821113705635,-0.515481263399124, +-0.438147008419037,-0.483076214790344,-0.620661169290543,-0.811679631471634,-0.415677919983864,-0.907168644480407,-0.605716705322266,-0.176229443401098,-0.712669879198074,-0.353982031345367,-0.531319558620453,-0.189123153686523,-0.265981674194336,-0.125813007354736,0.494162037968636,-0.187588512897491,-1.45723402500153,0.102733016014099,-0.418332815170288,-1.40729033946991,-0.683445304632187,-0.806390270590782,-0.795133292675018,-0.128364324569702,-0.323254376649857,-1.05718606710434,0.427763730287552,-0.0737444758415222,-1.02003207802773,-0.247085183858871,-0.407721191644669,-0.900036036968231,-0.538561403751373,-0.724385537207127,-1.00377130508423,-0.409733474254608,-0.364031314849854,-1.02851951122284,-0.473729223012924,-0.763870283961296,-0.822997570037842,-0.76301434636116,-0.793383225798607,-0.852436810731888,-0.892388977110386,-0.690597057342529,-0.657824531197548,-0.791566640138626,-0.679819077253342,-0.439501449465752,-0.576281130313873,-0.402713447809219,-0.677734658122063,-0.810253538191319,-0.528161317110062,-0.824107319116592,-0.78388861939311,-0.926595812663436,-0.867566108703613,-0.598158299922943,-0.602044597268105,0.239239931106567,-0.218390770256519,-0.45899909734726,-0.160665273666382,-0.379855021834373,-0.730222716927528,-0.653920471668243,-0.843424264341593,-0.849077016115189,-0.440876066684723,-0.738938339054585,-0.461956337094307,0.247662365436554,-0.235118448734283,-0.75264485180378,-0.311036974191666,-0.589448422193527,-0.624715387821198,-0.853201270103455,-0.410045877099037,-0.62950536608696,-0.610055804252625,-0.663301214575768,-0.721483170986176,-0.490166664123535,-0.728470057249069,-0.821521103382111,-0.719306617975235,-0.839617472141981,-0.815229892730713,-0.756450086832047,-0.969677112996578,-1.02796952426434,-0.248329423367977,-0.924582961946726,-0.873837053775787,-0.293396919965744,-0.997505530714989,-0.917438305914402,-0.0510290861129761,-0.992278300225735,-0.717180818319321,0.185761801898479,-0.880349528044462,-0.666139841079712,-0.362877976149321,-0.340662002563477,-0.53775480389595, +-0.390174850821495,-0.0682318210601807,-0.908538769930601,-0.702660709619522,-0.59135639294982,-0.896147757768631,-0.814483532682061,-0.898244008421898,-0.930886849761009,-0.430353835225105,-0.435959279537201,-0.763852469623089,-0.240047037601471,-0.291252732276917,-0.484845340251923,-0.233376801013947,-0.80427760258317,-0.745261549949646,-0.461614310741425,-0.909423884004354,-1.22363810241222,-0.320464262738824,-0.868196543306112,-0.698418617248535,-0.375324049964547,-0.931190315634012,-0.941331934183836,-0.293097198009491,-0.949524890631437,-0.911545477807522,-0.337409805506468,-0.916298009455204,-0.993628764990717,-0.418253373354673,-0.901840850710869,-0.823931187391281,-0.38317508995533,-0.88882302865386,-0.639956742525101,-0.238231698051095,-0.920628525316715,-0.679140836000443,-0.232876028865576,-0.855690978467464,-1.17910231649876,-0.492192625999451,-0.335489749908447,-0.511045172810555,-0.170944748446345,0.702193856239319,-0.502559453248978,-0.908055385574698,0.180598847568035,-0.605739861726761,-1.03084471821785,-0.791353471577168,-1.29882925748825,-0.0374555736780167,-0.253980875015259,-1.1827652156353,0.510215559974313,-0.00202059745788574,-1.65508621931076,0.437970891594887,-0.650429233908653,-1.33734232187271,0.586073890328407,0.224360130727291,-0.989841050002724,-1.10243234038353,0.211057655513287,-0.797585874795914,-1.08538290858269,-0.526853486895561,-1.28491345047951,-0.843101903796196,-0.573874615132809,-0.864536330103874,-0.84398353099823,-0.483338002115488,-1.27195528149605,-0.919653542339802,-0.435777433216572,-0.853027366101742,-1.11062061786652,0.132232859730721,-1.05249672010541,-1.11206516623497,0.13293382152915,-0.830294951796532,-1.09695888310671,-0.777011968195438,-1.41185775399208,-0.54349222779274,-0.403227508068085,-0.610251620411873,0.0879459977149963,0.498001307249069,-1.07499226927757,-1.29822137951851,-0.0615270137786865,-0.770981192588806,-1.40308055281639,-0.577191285789013,-1.76305240392685,-0.153150539845228,-0.342492401599884,-0.725782498717308,-0.518782161176205,0.487387508153915, +-1.20903363823891,-1.07021544873714,-0.19487015157938,-0.958490180782974,-1.23252940177917,-0.231136754155159,-1.78955030441284,-0.632497489452362,-0.735421344637871,-1.22652879357338,-0.742999017238617,-0.111312054097652,-1.64843320846558,-0.963462352752686,-0.393085904419422,-1.22724479436874,-1.12233006954193,-0.338283747434616,-1.74145752191544,-0.742051482200623,-0.796815507113934,-1.30194449424744,-0.463819164782763,-0.289540812373161,-1.76235693693161,-0.632464051246643,-0.82306170463562,-1.25993528962135,-0.570266768336296,0.179447442293167,-1.33635929226875,0.852513484656811,0.362885378301144,-1.1869894862175,1.40022811293602,0.894341342151165,-0.921581983566284,1.33844649791718,0.622882477939129,-1.23641774058342,1.02647423744202,0.913336858153343,-0.849032178521156,0.12015962228179,1.11711894720793,-0.529174230992794,0.743851099163294,0.716052353382111,-1.38464695215225,1.08955779671669,0.149878196418285,-1.2091092467308,1.35120838880539,0.166495613753796,-1.26612108945847,1.32432788610458,0.2529521510005,-1.40262243151665,0.852862577885389,0.566184177994728,-1.16531807184219,0.742184452712536,0.336830131709576,-1.16856397688389,1.24383088946342,0.436344012618065,-1.49124300479889,0.77080225199461,0.385903351008892,-1.07718190550804,1.28775209188461,-0.000288255512714386,-1.75617396831512,0.920216292142868,0.163598570972681,-1.82589572668076,0.570585370063782,0.453906416893005,-1.80670189857483,0.529251493513584,0.426204860210419,-1.85668164491653,-0.202436529099941,0.7879703566432,-1.42192026972771,0.137112364172935,1.33866927027702,-1.06787537038326,0.358764603734016,1.16946646571159,-1.210079818964,0.19180554151535,0.821499094367027,-1.43452808260918,0.12866185605526,0.832446128129959,-1.04702034220099,0.319508999586105,0.701291888952255,-1.11812081933022,0.513370364904404,0.808152660727501,-1.17801965773106,0.501591555774212,0.846072766929865,-1.0661139190197,0.533868998289108,0.399827279150486,-1.84262931346893,0.235774882137775,0.257985822856426,-1.87567794322968,0.223916262388229,0.186108529567719, +-1.87737327814102,0.274062842130661,0.318300701677799,-1.85833013057709,0.276121206581593,0.325465857982635,-1.86766588687897,0.290923565626144,0.859101444482803,-1.76847296953201,-0.0896068811416626,1.22189524769783,-1.37807989120483,0.309780264273286,0.866160459816456,-1.11697717756033,0.266925550997257,0.90391324646771,-1.39040279388428,-0.125620853155851,1.24802568554878,-1.3471232354641,0.283775294199586,1.30094227194786,-0.840798623859882,0.40365544706583,0.831921331584454,-1.30739054083824,0.151247277855873,0.760945983231068,-1.54075348377228,0.0615317448973656,0.870055742561817,-1.10738310217857,0.259463436901569,0.384241573512554,-1.8661550283432,0.0313100218772888,0.353149503469467,-1.93101114034653,-0.0354781784117222,0.245883815921843,-1.96538907289505,-0.0211800970137119,0.366903202608228,-1.90268218517303,-0.0557612925767899,0.30260507017374,-1.92143815755844,0.00332421809434891,0.976802938617766,-0.989539423957467,0.118187699466944,0.991289081517607,-1.10191617161036,-0.0173908919095993,1.2646436393261,-1.31732520461082,-0.118865359574556,1.41733828186989,-0.822328723967075,-0.366197422146797,0.130751937627792,-1.66141414642334,0.320063263177872,0.261840007267892,-1.40697544813156,0.849228199571371,0.494392812252045,-1.07183861732483,0.449625700712204,0.507939599454403,-1.29636162519455,0.680116549134254,0.0714126694947481,-1.40607526898384,0.724338740110397,0.406940653920174,-1.46625006198883,0.410976856946945,0.583148792386055,-1.15765026211739,0.462380260229111,0.177191184833646,-1.26088115572929,0.764154046773911,0.435652109328657,-1.34044075012207,0.683673992753029,0.360849279910326,-1.25918480753899,0.587348878383636,0.0935093527659774,-1.30030164122581,0.922526713460684,0.197102233767509,-1.226567029953,0.586046308279037,0.411633808165789,-1.7945504784584,0.079439640045166,0.588246922940016,-1.59749692678452,0.463761162012815,1.15317514538765,-1.22576183080673,0.794594421982765,0.906324088573456,-1.3769303560257,1.01466715335846,0.524549089372158,-1.54218631982803,0.84975004196167,0.385863553732634, +-1.79033416509628,0.491914604892372,1.14252996444702,-1.20689108967781,0.27173262834549,0.754135310649872,-1.26934060454369,0.886316385120153,0.584374568425119,-1.58421117067337,0.540413912385702,0.40822421759367,-1.49569940567017,0.981109857559204,0.348498217761517,-1.27916702628136,1.12960374355316,0.387942126952112,-1.30747276544571,0.843709822744131,0.413763057440519,-1.88528251647949,-0.150296103209257,0.81406331807375,-1.31588447093964,0.349990457296371,1.01497442647815,-1.00999026186764,-0.1122819212178,0.847382687032223,-1.14356158673763,-0.148310005664825,0.837239868938923,-1.25154379010201,0.100200273096561,0.279419589787722,-1.84662467241287,0.373327102512121,1.2412032186985,-1.35306373238564,0.23201622068882,1.24276971817017,-0.964284010231495,0.497697874903679,0.763650404755026,-1.37052971124649,0.320076301693916,0.604198694229126,-1.36602735519409,0.502107352018356,1.33543276786804,-0.679044976830482,0.331510111689568,1.28468576073647,-0.852302277460694,0.729342117905617,0.390404861420393,-1.92915153503418,-0.00653038443124387,0.838436650577933,-1.52259057760239,-0.139714363962412,0.988909291569144,-1.09653902053833,-0.10545539855957,0.886906396597624,-1.46853590011597,-0.176345790634514,0.808398950845003,-1.52838039398193,0.012993585318327,0.996760190464556,-0.822569444775581,-0.154837712645531,0.946228682994843,-0.963777409866452,-0.0733749121427536,0.389077561441809,-1.61219191551208,0.476549580693245,0.716631651856005,-1.3133282661438,0.400608256459236,0.339328594971448,-1.30741509795189,0.741439387202263,1.09245759248734,-1.21013286709785,0.498157680034637,0.906035989522934,-1.24404793977737,0.745581082999706,0.175705321133137,-1.3591473698616,0.805131204426289,0.344700306653976,-1.30544367432594,0.662549525499344,0.964299082756042,-1.26394730806351,0.702904157340527,0.756659090518951,-1.25084832310677,0.753137305378914,0.247274845838547,-1.81809633970261,0.3178730905056,0.258580349385738,-1.84866368770599,0.334629841148853,0.193777494132519,-1.86299329996109,0.34234905987978,0.202530682086945,-1.8238388299942, +0.333632379770279,0.248202626593411,-1.81543469429016,0.432285562157631,0.260856345295906,-1.82011997699738,0.250835090875626,0.217129059135914,-1.80274403095245,0.434113927185535,0.232776378281415,-1.82013767957687,0.43225409090519,0.375544560607523,-1.37996900081635,0.620237231254578,1.01957106590271,-1.22244819998741,0.796118032187223,0.888174504041672,-1.27402919530869,0.331872850656509,0.589525863528252,-1.30585786700249,0.382595360279083,0.198942504823208,-1.49819827079773,0.739622533321381,0.682229310274124,-1.48772972822189,0.219737976789474,0.633286535739899,-1.54569190740585,0.435828328132629,0.274812325835228,-1.26890394091606,0.693847209215164,0.256121098995209,-1.20230630040169,0.54329252243042,0.461750343441963,-1.09803213179111,0.516099631786346,0.342016965150833,-1.26823309063911,0.676406294107437,0.337141049560159,-1.51714962720871,0.556496560573578,0.337812177836895,-1.15044449269772,0.540109664201736,0.302816823124886,-1.68032741546631,0.575190663337708,0.948980078101158,-1.15835677087307,0.0872341096401215,0.299047939479351,-1.10152128338814,0.562729507684708,0.573585218866356,-1.40336415171623,0.568638950586319,0.810236781835556,-1.18782424926758,1.02959038317204,0.759839177131653,-0.90396735817194,1.31866648793221,0.339874625205994,-1.12342290580273,1.10875219106674,1.00012262165546,-1.12094900012016,0.268463988788426,1.37591710686684,-0.957055553793907,0.61985670030117,0.926619231700897,-1.74293297529221,0.256413649767637,0.450716689229012,-1.89752650260925,0.0861653387546539,0.319033890962601,-1.93021327257156,0.351147159934044,0.41521680355072,-1.88851618766785,0.390110373497009,0.449068889021873,-1.89636623859406,0.094310536980629,0.424366987426765,-1.85385692119598,0.13319131731987,0.237321360036731,-1.91917043924332,0.38582818955183,0.40236122906208,-1.89525073766708,0.25415947008878,0.910990595817566,-1.32028385996819,0.547491580247879,0.921294314786792,-1.12575851380825,0.401821009814739,0.841395079158247,-1.34608539938927,0.34898854419589,1.36796125769615,-1.12846045196056,0.152283577248454, +0.792257755994797,-1.73637157678604,0.32431498169899,0.220881445333362,-1.86606597900391,0.279947236180305,0.237194254994392,-1.85841184854507,0.352002680301666,1.06660917401314,-1.30711817741394,0.591603308916092,1.32026180624962,-1.0739127099514,0.660386100411415,0.737650392577052,-1.11703895032406,0.509242162108421,0.739423587918282,-1.25641587376595,0.663090576417744,0.74284094478935,-1.39334088563919,0.481365811079741,0.732145961374044,-1.16998372972012,0.498857051134109,0.334769651293755,-1.85106319189072,0.281305193901062,0.882461486384273,-1.43624097108841,-0.211535140872002,0.806062217801809,-1.09958700090647,0.424786239862442,0.781351767480373,-1.43279120326042,0.396527767181396,1.32857519388199,-1.1985182762146,0.390992760658264,1.29484882950783,-0.878600605297834,0.659160539507866,0.799911285750568,-1.06593732535839,0.638813626021147,1.02325480431318,-0.921045675873756,0.349516443908215,1.42505797743797,-0.906083233654499,0.411900892853737,0.708188533782959,-1.85550075769424,-0.166733028367162,0.0544792860746384,-1.9562059044838,-0.322663903236389,0.289879436604679,-1.94008362293243,-0.0952040292322636,0.190296511165798,-1.95723217725754,-0.144200045615435,0.387934550642967,-1.89361751079559,-0.0684772683307528,0.224348343908787,-1.96820199489594,-0.161031819880009,0.339226000476629,-1.93431258201599,0.0361163318157196,1.0452740713954,-1.06415797024965,0.276721678674221,0.9611258758232,-0.960278421640396,0.290902759879827,0.91440709726885,-1.2938589155674,0.337321177124977,0.973212666809559,-1.0094862729311,0.306762173771858,0.927325785160065,-1.45250701904297,-0.453022450208664,0.764668494462967,-1.66186445951462,-0.348521307110786,0.496515385806561,-1.89174789190292,0.0226433426141739,0.949218571186066,-1.20461687445641,0.133490592241287,1.42436563968658,-0.938533201813698,-0.191862404346466,1.43324130773544,-1.13551211357117,0.264035075902939,0.968840472400188,-1.29575991630554,0.373723112046719,1.02502756565809,-1.04833777993917,0.274646982550621,1.0455067679286,-1.10479591041803,0.213862970471382, +0.963648490607738,-1.26595625281334,0.410035781562328,0.895618565380573,-1.08050402998924,0.520442187786102,0.911004933062941,-1.04176940023899,0.380271263420582,1.053297996521,-1.03282104432583,0.0328435003757477,1.0490610525012,-0.935011494904757,0.222984150052071,0.977771552745253,-0.87195697426796,0.154623530805111,1.03844944387674,-1.04711177945137,-0.21761430054903,0.961784586310387,-0.628822915256023,0.996585309505463,1.11974987387657,-0.628055427223444,0.884233981370926,0.922272235155106,-1.00677165389061,0.837698474526405,1.0044097006321,-0.808935895562172,0.896694280207157,0.915053099393845,-0.584550246596336,1.12374769151211,0.97086988389492,-0.600760094821453,1.1093448549509,1.18449398875237,-0.296095542609692,1.03544778376818,0.251358762383461,-0.821215957403183,1.77282345294952,0.0322811901569366,-0.470650963485241,-0.0872536897659302,-0.115603744983673,-0.414143167436123,-0.0135632753372192,-0.0882340222597122,-0.27225049585104,-0.0359637141227722,0.00166553258895874,-0.0122251212596893,-0.00245893001556396,0.103685483336449,-0.270176313817501,-0.0456666946411133,-0.0549725592136383,-0.238860599696636,0.00592994689941406,0.0258394181728363,-0.213015794754028,-0.0674763321876526,0.083498626947403,-0.136873632669449,-0.0685873627662659,0.836985290050507,-0.425663933157921,1.68160808086395,0.913057774305344,-0.781015008687973,1.56763130426407,0.823187530040741,-0.605248674750328,1.67656743526459,1.44375813007355,-0.307681947946548,1.33903509378433,1.3108177781105,-0.568984672427177,1.35925871133804,1.26377737522125,-0.630174696445465,1.35823285579681,1.14919775724411,-0.47010250389576,1.55019247531891,1.31498825550079,-0.341805264353752,1.46156561374664,1.06196439266205,-0.559371039271355,1.58346873521805,1.04970327019691,-0.701994270086288,1.54652243852615,0.98443016409874,-0.752638757228851,1.56408578157425,1.01168915629387,-0.324983693659306,1.68692576885223,0.75340324640274,-0.653859406709671,1.71565800905228,1.45433881878853,-0.42752206325531,0.841856098122662,1.45755049586296,-0.236321479082108,0.963989965617657, +1.36345148086548,-0.235899172723293,1.39475584030151,1.49822384119034,-0.34969873726368,0.767304770648479,1.47354179620743,-0.280561001971364,1.05555820465088,1.24008798599243,-0.300229266285896,1.44533222913742,1.23699504137039,-0.531426683068275,1.40118271112442,1.10879135131836,-0.304650947451591,1.58034634590149,1.41878837347031,-0.169180974364281,1.30411469936371,1.23748534917831,-0.311720013618469,1.53136944770813,1.34380412101746,-0.209702953696251,0.379011601209641,1.49258518218994,-0.163866136223078,0.20696234703064,1.58750551939011,0.0842487551271915,0.384424239397049,1.40934121608734,-0.0353437215089798,0.838369511067867,1.57036906480789,-0.179337941110134,1.0994813144207,1.28074949979782,-0.00342432409524918,1.39727261662483,1.46103316545486,0.022288590669632,1.25793114304543,1.56494355201721,-0.242396727204323,1.20428359508514,1.46758651733398,-0.175531934946775,1.30943065881729,0.965857416391373,-0.253129567950964,1.71250236034393,1.25301477313042,0.123749706894159,0.423400223255157,1.12852990627289,0.0828918740153313,0.398266673088074,1.36003538966179,-0.0105329751968384,1.17487540841103,1.20050811767578,0.171560499817133,0.542942255735397,1.39247593283653,-0.156563922762871,1.08901883661747,1.38690140843391,0.0174171328544617,1.29012805223465,1.31999298930168,-0.0834124460816383,1.29461288452148,1.7272013425827,-0.112906854599714,0.923508614301682,1.60247987508774,-0.21467624604702,1.00157192349434,1.5934311747551,-0.29104920476675,1.03212204575539,1.77953720092773,-0.170722745358944,0.633800392970443,1.71590113639832,-0.548842594027519,0.53334186039865,1.67755365371704,-0.257073923945427,0.611812585964799,1.70915859937668,-0.00933311879634857,0.76271566003561,1.72059947252274,0.0462723970413208,0.880058407783508,1.28429082036018,-0.103169180452824,1.36489135026932,1.28855910897255,-0.372702442109585,1.31314691901207,1.26005372405052,-0.233754564076662,1.34901329874992,1.29945036768913,0.0278611555695534,1.35323148965836,1.27459868788719,-0.390536896884441,1.30626264214516,0.56783102452755,-0.621795207262039, +1.8081402182579,0.58955854177475,-0.399265825748444,1.84584993124008,0.921544522047043,-0.911756791174412,1.05696678161621,1.62373399734497,-0.60648301243782,0.910218149423599,1.63828593492508,-0.354928992688656,0.803283959627151,1.61488705873489,-0.275468289852142,0.942723840475082,1.22428122162819,-0.621550515294075,1.35409009456635,1.4196292757988,-0.0894278585910797,1.31160944700241,1.36663299798965,-0.47420859336853,0.949425965547562,1.3984871506691,-0.483058020472527,1.26350390911102,1.18025025725365,-0.809025600552559,1.21901082992554,0.81589075922966,-0.474826171994209,1.73780447244644,0.94530177116394,-0.624031186103821,1.2430182993412,1.2053761780262,-0.28103543817997,1.26269143819809,0.797271490097046,-0.954727180302143,1.18998476862907,1.047945946455,-0.454588308930397,1.34152927994728,1.04387587308884,-0.522753521800041,0.361481606960297,1.16020515561104,-0.30352209508419,0.348448097705841,0.810319066047668,-0.959217913448811,1.14903734624386,1.71222847700119,-0.480459362268448,0.831173330545425,1.42394983768463,-0.87413701415062,-0.229747980833054,1.62574917078018,-0.420277245342731,-0.138342678546906,1.25885653495789,-0.979399971663952,0.526310816407204,1.69085735082626,-0.721691966056824,0.773694932460785,1.31096661090851,-1.1429026722908,0.184580862522125,1.72969365119934,-0.490869626402855,0.382769301533699,1.29563808441162,-0.964915804564953,0.515710242092609,1.20699667930603,-0.559898808598518,1.25475093722343,0.737779289484024,-1.24268919229507,0.773086905479431,1.20395246148109,-0.797670811414719,0.931102689355612,0.413387686945498,-1.0595389008522,0.861146278679371,0.346694556166312,-1.24334511160851,1.17656621336937,0.278066453523934,-1.16928032040596,1.28851491212845,0.321346088312566,-0.993608567863703,1.22310471534729,0.414454313926399,-1.06084781885147,0.923297813162208,1.03842586278915,-1.01685613393784,0.660984694957733,0.924488142132759,-0.793805554509163,0.708020001649857,0.779000982642174,-0.833543241024017,0.540951505303383,1.06738971173763,-1.03704328089952,0.62930665910244,0.959155410528183, +-0.798918843269348,0.830861926078796,0.467249780893326,-0.73863659799099,0.705773897469044,1.16099786758423,-0.922927401959896,0.859306424856186,0.942821115255356,-0.995718069374561,0.801405489444733,1.13165302574635,-1.09304435551167,0.237545594573021,0.967009961605072,-1.29067119956017,0.832752466201782,1.17566648125648,-1.24246406555176,0.686478972434998,0.972301729023457,-1.10999987274408,0.343011795543134,1.08194766938686,-1.30838847160339,0.585726261138916,1.00494442880154,-1.2330961227417,0.721733093261719,0.938861657865345,-1.07643844932318,0.241839647293091,1.09903261065483,-1.07599303871393,0.552537471055984,1.13960266113281,-1.09607358276844,0.600258618593216,0.715821951627731,-0.885406091809273,0.655204012989998,1.13557559251785,-0.834995903074741,0.678322643041611,0.924838908016682,-1.06081622838974,0.910544335842133,1.08967746794224,-0.7424111738801,-0.0982604920864105,1.15146452188492,-0.881914854049683,0.361283564940095,1.15759864449501,-1.07347656786442,0.429309591650963,0.834158154204488,-1.13776099681854,0.389646574854851,1.04251420497894,-1.09444852918386,0.587570309638977,1.00743241608143,-1.26184299588203,0.565878167748451,0.8015770111233,-1.29789352416992,0.463785398751497,1.02596251666546,-1.08181530237198,0.708673417568207,1.01550896465778,-1.2743861079216,0.583978965878487,0.701380088925362,-1.25757402181625,0.875704795122147,1.0101965367794,-1.1141981035471,0.578516181558371,0.970983982086182,-1.03709483146667,0.87993198633194,0.922987759113312,-1.07702442258596,0.209766507148743,0.914430677890778,-0.948575777933002,0.289232388138771,0.939747557044029,-0.925704990862869,0.266292572021484,0.880328081082553,-1.11026684194803,0.315334603190422,0.792223378666677,-0.993663047789596,0.510567359626293,0.844579031690955,-0.934474494308233,0.414338827133179,0.83537270128727,-1.11464803665876,0.401359722018242,0.815048068761826,-1.10349897295237,0.618691861629486,0.877767074853182,-1.07962413877249,0.41193581931293,0.775990292429924,-1.17375130951405,0.65436726808548,0.925134714692831,-1.25049638748169, +0.321480378508568,0.788656465709209,-1.03489052504301,0.802956730127335,0.978539317846298,-1.11413377523422,-0.104714035987854,0.867697352543473,-1.25170710682869,0.146099090576172,0.999531328678131,-0.952639274299145,-0.0881952941417694,0.875285459682345,-1.10166352242231,0.401917170733213,0.807385303080082,-1.06856306642294,0.310588769614697,0.796840444207191,-0.835518687963486,0.353959314525127,0.925743510946631,-0.813633486628532,0.234133049845695,0.883209958672523,-1.04549979045987,0.366371100768447,0.85358639061451,-0.81040446460247,0.224679559469223,0.919216696172953,-0.737997710704803,0.218661308288574,1.0663994923234,-0.985460449708626,0.131192110478878,0.900834636762738,-1.03436504676938,0.531982913613319,1.06835704296827,-1.16258572041988,-0.0370732396841049,1.15750896930695,-1.0640007853508,-0.19225387275219,0.975725691765547,-0.976620201021433,0.0620603261049837,0.949784638360143,-1.15359491109848,0.0911296382546425,0.934368065558374,-1.16446451842785,0.283175741322339,0.981985747814178,-0.983053912175819,0.0816294252872467,1.04840496554971,-0.975572768598795,0.0622293245978653,1.0200414005667,-1.01041742414236,-0.145951386308298,0.955726027488708,-0.804546058177948,0.0817762836813927,1.06049267202616,-0.887870155274868,-0.0205593258142471,1.05166682600975,-1.07219286262989,0.213509794324636,1.04386300593615,-0.889856956899166,-0.0169562846422195,0.981248773867264,-0.884208917617798,0.115903542377055,0.973100677132607,-1.14534167945385,-0.100068256258965,1.00281019229442,-1.08931048214436,0.00847730040550232,0.93957554618828,-1.32976958155632,-0.200622534379363,0.991855546832085,-1.35960218310356,-0.162908762693405,0.9590875338763,-1.30410206317902,-0.169234225526452,0.963267626240849,-1.2429696470499,-0.137564091011882,1.10368426144123,-1.30768150091171,0.105771286413074,1.0809561163187,-1.25314578413963,-0.0171298831701279,0.957057241350412,-0.945661708712578,-0.610708199441433,0.990510269999504,-1.24785543978214,-0.066835967823863,1.21194389462471,-1.08369109034538,-0.612660756334662,1.1044762134552, +0.0571788745000958,-0.933193635195494,1.08788312971592,-0.68909265100956,-0.586184695363045,0.788459554314613,-1.1201351583004,-0.537889391183853,0.905662521719933,-0.685660973191261,-0.590681090950966,0.561944842338562,-0.809288538992405,-0.227148592472076,0.560826241970062,-1.13748762011528,-0.409472495317459,0.300370395183563,-0.996379792690277,0.228619005531073,1.03492603451014,-0.997617661952972,-0.551443830132484,1.14061813056469,-0.890871673822403,-0.666061446070671,0.788487017154694,-1.06470662355423,-0.355954959988594,0.876610439270735,-1.12803199887276,-0.480266854166985,0.473502308130264,-1.24222630262375,-0.14521499723196,0.661071479320526,-1.13739421963692,-0.317462906241417,0.779921606183052,-1.05241549015045,-0.370666697621346,0.445952594280243,-1.09258264303207,0.34248460829258,0.892136808484793,-0.729190788697451,-0.352373391389847,0.674651056528091,-1.08435815572739,-0.0687299519777298,0.668827459216118,-0.876492329873145,0.0209011137485504,0.529941439628601,-0.786610029637814,0.498561173677444,0.643641650676727,-1.02947038412094,0.0197258591651917,0.761625438928604,-1.1448073387146,0.370977401733398,0.612632185220718,-0.832694849930704,0.477665536105633,0.98377587471623,-1.1355703920126,-0.209656331688166,1.03679969906807,-1.09226582944393,-0.364528454840183,0.960347220301628,-1.034029468894,-0.0106123313307762,0.953756473958492,-1.17734698951244,-0.0743385776877403,0.843246132135391,-1.20256496965885,0.212887920439243,0.917752131819725,-1.09639710187912,0.118045218288898,0.934250570833683,-1.02985672652721,-0.035972498357296,0.824457719922066,-0.956747016869485,0.333365552127361,1.0332954376936,-0.684378564357758,-0.155974566936493,1.0823555290699,-0.540962040424347,-0.560053621418774,1.09042736887932,-0.999760304577649,-0.0187892988324165,1.03639965504408,-0.723894357681274,-0.0440105842426419,0.984429277013987,-0.787186086177826,-0.0198319451883435,1.068697668612,-1.00831444282085,-0.0304982401430607,0.98281361348927,-0.989392851479352,-0.135370969772339,0.908088542521,-1.12926319241524,0.330331638455391, +0.948513612151146,-1.12864600121975,-0.0902818739414215,1.03571400046349,-0.925146708264947,-0.372310496866703,1.01004872191697,-1.0333877466619,-0.00978916138410568,0.951102215796709,-1.15077011287212,0.0898561719805002,0.910243801772594,-1.14478585124016,0.0230785757303238,0.989930209703743,-1.00116075295955,-0.108788277953863,0.942903444170952,-0.998203346505761,-0.171511583030224,-0.965432837605476,-1.50308722257614,0.154918154235929,-0.899873185902834,-1.50330394506454,-0.325330056250095,-0.867337413132191,-1.42458221316338,-0.277929119765759,-0.911697042174637,-1.44039380550385,-0.0803729575127363,-0.966939724981785,-1.41211631894112,-0.348812475800514,-0.896997531875968,-1.31941971182823,-0.524292781949043,-1.08407737314701,-1.32709330320358,-0.139807298779488,-1.01681241393089,-1.4336923956871,-0.0500575131736696,-0.989162728190422,-0.345629557967186,-0.968376124743372,-0.632859885692596,-0.0479829832911491,0.782040789723396,-0.200841426849365,-0.544546626508236,-0.134158863918856,-0.238283395767212,-1.35332399606705,-0.0340341543778777,-0.13849264383316,-0.450193606317043,-0.0592689290642738,-0.320312201976776,-0.6529296413064,-0.160063404589891,0.0459557771682739,-0.940535992383957,0.0871471762657166,0.0681606531143188,-0.888963848352432,0.243665061891079,0.0807543396949768,-0.83991950750351,0.211130581796169,0.159112513065338,-0.72334011644125,0.185075290501118,-0.0113062858581543,-0.733424961566925,0.28186072409153,0.132212460041046,-0.733403444290161,0.259632892906666,0.0265823602676392,-0.879196882247925,0.427838996052742,-0.154888391494751,-0.748944133520126,0.596421867609024,-0.00423318147659302,-0.670786574482918,0.301923051476479,0.0114429593086243,-0.484432213008404,0.236770421266556,-0.256991624832153,-0.323857963085175,0.536234892904758,-0.303974986076355,-0.281169641762972,0.709742248058319,-0.242470562458038,-0.71589332818985,0.470934063196182,-0.220771491527557,-0.0957355387508869,0.682760894298553,-0.494970798492432,-0.506880776025355,0.505644977092743,-0.55581459403038,-0.635933041572571, +0.700837090611458,-0.482869625091553,-0.812985122203827,0.608428567647934,-0.391365468502045,-0.408857434988022,0.60846471786499,-0.597611337900162,-0.881000846624374,0.658855110406876,-0.629375994205475,-0.748640060424805,0.767988935112953,-0.630199402570724,-0.525701612234116,0.735997512936592,-0.633890420198441,-0.889509975910187,0.69764019548893,-0.542557418346405,-0.654277846217155,0.805336117744446,-0.907021746039391,0.143047302961349,-1.05461274087429,-1.0230924487114,0.0595213174819946,-1.11759434640408,-0.686544239521027,-0.369888797402382,0.768123507499695,-0.504486531019211,-0.820206835865974,-0.378750622272491,-0.548055171966553,-0.795004241168499,-0.272544089704752,-0.481240153312683,-0.887692846357822,-0.206433579325676,-0.306272506713867,-0.635147862136364,-0.155749656260014,-0.448613464832306,-0.71252503991127,-0.229414284229279,-0.297496557235718,-0.591290757060051,-0.0259701982140541,-0.298586368560791,-0.675769187510014,0.182563170790672,-0.300283074378967,-0.614711057394743,0.254975368268788,-0.216131448745728,-0.767519906163216,0.271624580025673,-0.303319036960602,-0.835417583584785,0.26659057289362,-0.303359270095825,-0.526760503649712,0.26014007627964,-0.218249082565308,-0.726831927895546,0.275871433317661,-0.508057951927185,-0.822591327130795,0.359233520925045,-0.459332227706909,-0.626243278384209,0.287016630172729,-0.428548812866211,-0.568740531802177,0.393297746777534,-0.684869557619095,-0.706641864031553,0.57434379030019,-0.635557472705841,-0.658886268734932,0.595745958387852,-0.603317767381668,-0.638904765248299,0.795077964663506,-0.773668244481087,-0.763673280831426,0.631919043138623,-0.709833651781082,-0.670186832547188,0.810722276568413,-0.72934065759182,-0.589806109666824,0.763905376195908,-0.577570050954819,-0.910115396138281,-0.0685880836099386,-0.508840084075928,-0.966368950903416,-0.283398255705833,-0.25412905216217,-0.899619728326797,-0.0221655964851379,-0.293565928936005,-0.94425043463707,-0.0282424315810204,-0.29714161157608,-0.782745979726315,0.152760565280914,-0.29523241519928, +-0.878259807825089,0.188745498657227,-0.311565101146698,-0.854025408625603,0.237749762833118,-0.325807690620422,-0.734963357448578,0.306863383390009,-0.407438337802887,-0.811216972768307,0.321126326918602,-0.359741449356079,-0.78813848644495,0.189519494771957,-0.395294010639191,-0.536853522062302,0.140442788600922,-0.526836961507797,-0.543496787548065,0.208591312170029,-0.556653439998627,-0.545716881752014,0.227416783571243,-0.674151659011841,-0.559199765324593,0.366042405366898,-0.660269409418106,-0.756697435223032,0.279355078935623,-0.726423412561417,-0.827103152871132,0.277810275554657,-0.676818996667862,-0.95368804037571,0.310584545135498,-0.677664503455162,-1.03781333565712,0.208652198314667,-0.690356642007828,-0.966128677129745,0.206200063228607,-0.855800718069077,-0.968589372932911,0.150426477193832,-0.828470334410667,-1.05461660027504,0.102705031633377,-0.835115380585194,-0.943889256566763,0.0927472114562988,-0.836672693490982,-0.9778126552701,0.12594610452652,-0.871838830411434,-0.916866356506944,0.407535240054131,-0.867565058171749,-0.973776906728745,0.514287978410721,-0.7801698371768,-1.22767388820648,-0.174890235066414,-0.869489006698132,-1.02142772078514,0.371025562286377,-0.714183256030083,-1.05241697281599,-0.418771520256996,-0.678527437150478,-1.2146605104208,-0.408023461699486,-0.792613118886948,-1.24614953994751,-0.313510332256556,-0.649364724755287,-0.975414532236755,-0.538282617926598,-0.741423666477203,-1.05045289546251,-0.629381947219372,-0.72393061965704,-1.1200906932354,-0.784974157810211,-0.878573402762413,0.189329035580158,-1.63009583950043,-0.940299779176712,0.135793209075928,-1.54649084806442,-0.70355649292469,0.00538408756256104,-1.46464723348618,-0.417984068393707,-0.84120362251997,-1.31153482198715,-0.67548543214798,-0.708748537115753,0.0319621562957764,-0.645526831969619,-0.922565367072821,-0.495837360620499,-0.65842616558075,-0.388805534690619,0.352514266967773,-0.605846047401428,-0.243007212877274,0.419491410255432,-0.623689100146294,-0.503929819911718,0.278277397155762,-0.654030919075012, +-0.25773736089468,0.512930452823639,-0.6968844383955,-0.681703381240368,0.22516405582428,-0.686728253960609,0.367684632539749,-1.43167269229889,-1.09804992377758,0.189484167844057,-1.20647217333317,-1.22455078363419,-0.850648403167725,-0.967593938112259,-0.991271004080772,-0.768259383738041,0.282991707324982,-0.943891919218004,-0.94437837973237,-0.0921916961669922,-1.10022202134132,-0.474662192165852,0.478766202926636,-1.16754513978958,-0.244210243225098,0.499591201543808,-1.13500837981701,-0.476321272552013,0.407438635826111,-1.19499400258064,-0.278360608965158,0.56625908613205,-1.18462030589581,-0.79591853544116,0.384324535727501,-0.0275312662124634,-0.216121037490666,-0.186786100268364,-1.89042544364929,-0.438106577843428,0.331186100840569,-1.14131708443165,-1.11804531514645,-0.088865801692009,-0.696707457304001,-0.998064558953047,0.324979528784752,-1.94599604606628,-0.324109330773354,-0.287780776619911,0.0260221362113953,-0.588765814900398,-0.284285560250282,-0.791592478752136,-1.11801652610302,-0.0887892842292786,-1.051185131073,-1.0110703073442,-0.505486518144608,-1.72601342201233,-0.550957024097443,-0.54945083707571,-0.122005939483643,-0.902936160564423,-0.355031453073025,0.164831578731537,-0.494589790701866,-0.691032335162163,0.169035077095032,-0.409067895263433,-0.607062771916389,-1.45824718475342,-0.666305981576443,-0.743722585961223,-1.51576691865921,-0.710199821740389,-0.535202004015446,-0.918142147362232,-1.02965081110597,-0.589914323762059,-0.724529609084129,-0.927114486694336,-0.580921990796924,1.25154811143875,0.53336538374424,0.722003176808357,0.348773419857025,-0.118534505367279,0.00633633136749268,1.14071597158909,0.617008477449417,-0.687069118022919,0.933246061205864,0.472250670194626,-0.284471750259399,1.61700159311295,0.242999859154224,-0.226044476032257,-0.368729919195175,-0.111302673816681,-1.41159296035767,-0.467649936676025,0.39191198348999,-1.31662404537201,0.283098638057709,-1.00639636814594,-1.30733358860016,0.0695436596870422,-0.586248070001602,-1.31039190292358,-0.212823688983917,0.264856889843941, +-1.22371858358383,-0.704342350363731,-0.364468022831716,-1.68905931711197,-0.469206139445305,-0.102254629135132,-1.81510841846466,-0.0908800661563873,-0.537528768181801,-1.57772791385651,-0.119769632816315,-0.268035620450974,-1.60777980089188,0.00772532820701599,-0.461631417274475,-1.52488738298416,0.0344792604446411,-0.509009137749672,-1.60622185468674,-0.16832359880209,-0.546514570713043,-1.6722224354744,-0.279069221578538,-0.694886131212115,-1.68652510643005,0.107066869735718,-0.0274820327758789,-1.34571528434753,0.0753583610057831,-0.0935311913490295,-1.4545778632164,0.179240807890892,-0.80996510386467,-1.56414943933487,0.766900459824683,-0.964041344821453,-1.16208875179291,0.536079093813896,-0.911562837660313,-1.32366555929184,0.365236007329258,-0.211114525794983,-1.18957316875458,0.109465599060059,-0.596244722604752,-1.47035539150238,0.149489969015121,-0.800366718322039,-1.50816470384598,0.742462269961834,-0.965564593672752,-1.12341731786728,0.321734909661245,-0.865674071479589,-1.45463329553604,0.397240564227104,-0.533611238002777,-1.34134632349014,0.250522136688232,-0.431944280862808,-1.3534414768219,0.0230937004089355,-0.432551681995392,-1.46951413154602,-1.43386590480804,0.734417945146561,0.614903017878532,-1.83026814460754,0.260754287242889,-0.104523025453091,-1.00761884078383,-0.753998667001724,-0.820716641843319,-1.13574504852295,0.283755149692297,-0.541101843118668,-1.07469116151333,0.114421665668488,-0.537041932344437,-1.68238508701324,0.32922638207674,-0.883319422602654,-0.882849395275116,-0.127865627408028,0.0330973267555237,-1.21560576558113,1.01388141512871,-0.546481549739838,-1.58477389812469,0.00310644507408142,-0.74983162805438,-1.51228588819504,0.127471126616001,-0.354602783918381,-1.50818598270416,0.514162722975016,-0.296300679445267,-0.77980887144804,-0.117596881987993,-0.494259834289551,-0.918596364557743,0.011425793170929,-0.511698126792908,-1.13989436626434,0.158830491825938,-0.419734954833984,-1.05582499504089,0.00829964876174927,-0.570500135421753,-1.15622106194496,-0.12431663274765,-0.576766967773438, +-0.653300106525421,0.456198543310165,-0.0397232174873352,-0.688109442591667,0.482461705803871,-0.244004607200623,-0.586863991804421,0.18104163184762,-0.20787113904953,-0.73391181230545,0.774241030216217,0.273383319377899,-1.17239665985107,0.545397323789075,-0.136751711368561,-1.32842960953712,-0.239087201654911,-0.624999791383743,-1.73713213205338,-0.308576427400112,-0.486310943961143,-1.53838777542114,-0.240083053708076,-0.459260851144791,-1.33581656217575,0.452028304338455,-0.526722118258476,-1.16851991415024,0.293097216635942,-0.745929017663002,-1.1476166844368,0.108546689152718,-0.598364681005478,-1.77625769376755,-0.13015839853324,-0.324852734804153,-1.17622342705727,0.429580040276051,-0.661527395248413,-1.33217418193817,0.749853491783142,-0.534512042999268,-1.27041208744049,0.664681270718575,-0.585652828216553,-1.17274203896523,0.529428601264954,-0.546197116374969,0.714810416102409,0.279693081974983,-0.203442215919495,1.79383319616318,-0.105387568473816,-0.516582218930125,1.59426474571228,0.238612622022629,-0.184981733560562,0.208811521530151,0.664477586746216,-0.232709627598524,0.982148595387116,-0.960604871623218,0.0401097536087036,0.713142260909081,-0.919617880135775,-0.249807059764862,0.486199229955673,-0.810649890452623,-0.0950049757957458,0.0114766955375671,0.343396082520485,-0.0763116758316755,0.215160965919495,0.559184493497014,0.223927780985832,1.09020203351974,-0.299506068229675,-0.121575847268105,0.52515936549753,-1.81544435024261,0.16229422390461,0.690056800842285,-1.81896650791168,0.148523196578026,0.824477821588516,-1.77929121255875,0.254096133634448,1.78222274780273,-0.13932503387332,-0.644678674638271,1.80224269628525,-0.110990539193153,-0.64986103028059,1.70070177316666,0.518169701099396,-0.416405103169382,0.104687869548798,-0.0223220586776733,-0.668458685278893,1.22695764899254,-1.02457988262177,-0.893671244382858,0.891695402562618,-1.26303026080132,-0.495054043829441,0.820662484504282,-1.22292999923229,-0.639594420790672,0.726481296122074,-1.22622004151344,-0.671622239053249,0.76577752828598, +-1.23354479670525,-0.510584950447083,0.614174425601959,-1.18656393885612,-0.680434584617615,0.496996402740479,-1.0918547809124,-0.735584676265717,0.653912454843521,-1.0767727792263,-0.635491490364075,0.145425140857697,0.00856729596853256,-0.920645862817764,0.129442751407623,0.0738570544635877,-0.867804646492004,0.264577150344849,0.564087497070432,-0.681743592023849,1.19704273343086,0.812456183135509,-0.900899171829224,0.101619184017181,-0.218093574047089,-0.982465595006943,0.899685729295015,-0.94619420170784,-0.482682764530182,0.892384661361575,-0.964597495272756,-0.609758943319321,1.01030576229095,-1.07725595682859,-0.413102194666862,1.11877021193504,-0.909951813519001,-0.275602489709854,1.25836610794067,-0.830386325716972,-0.399912178516388,1.38937053084373,-0.753519847989082,-0.476235657930374,1.27443796396255,-0.803521431982517,-0.501611813902855,1.16247263550758,0.077547388151288,-1.22278264164925,0.792041137814522,0.0481657013297081,-1.12885807454586 + } + } + Model: 2807828244416, "Model::Head", "Mesh" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",0,-5.09788710765478,0.420266751388517 + P: "ScalingPivot", "Vector3D", "Vector", "",0,-5.09788710765478,0.420266751388517 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Model: 2807828235136, "Model::Eye_Left", "Mesh" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",3.44803977012634,0.824235498905182,7.8922843218974 + P: "ScalingPivot", "Vector3D", "Vector", "",3.44803977012634,0.824235498905182,7.8922843218974 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Model: 2807828258336, "Model::Eye_Right", "Mesh" { + Version: 232 + Properties70: { + P: "RotationPivot", "Vector3D", "Vector", "",-3.44803977012634,0.824235498905182,7.8922843218974 + P: "ScalingPivot", "Vector3D", "Vector", "",-3.44803977012634,0.824235498905182,7.8922843218974 + P: "RotationActive", "bool", "", "",1 + P: "InheritType", "enum", "", "",1 + P: "ScalingMax", "Vector3D", "Vector", "",0,0,0 + P: "DefaultAttributeIndex", "int", "Integer", "",0 + P: "currentUVSet", "KString", "", "U", "map1" + } + Shading: T + Culling: "CullingOff" + } + Material: 2807582018768, "Material::head_mat1", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties70: { + P: "AmbientColor", "Color", "", "A",0,0,0 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "DiffuseFactor", "Number", "", "A",0.800000011920929 + P: "TransparencyFactor", "Number", "", "A",1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0,0,0 + P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929 + P: "Opacity", "double", "Number", "",1 + } + } + Material: 2807582011568, "Material::eyelash_mat1", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties70: { + P: "AmbientColor", "Color", "", "A",0,0,0 + P: "DiffuseColor", "Color", "", "A",1,1,1 + P: "DiffuseFactor", "Number", "", "A",0.800000011920929 + P: "TransparencyFactor", "Number", "", "A",1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0,0,0 + P: "Diffuse", "Vector3D", "Vector", "",0.800000011920929,0.800000011920929,0.800000011920929 + P: "Opacity", "double", "Number", "",1 + } + } + Material: 2807582009968, "Material::lambert1", "" { + Version: 102 + ShadingModel: "lambert" + MultiLayer: 0 + Properties70: { + P: "AmbientColor", "Color", "", "A",0,0,0 + P: "DiffuseColor", "Color", "", "A",0.5,0.5,0.5 + P: "DiffuseFactor", "Number", "", "A",0.800000011920929 + P: "TransparencyFactor", "Number", "", "A",1 + P: "Emissive", "Vector3D", "Vector", "",0,0,0 + P: "Ambient", "Vector3D", "Vector", "",0,0,0 + P: "Diffuse", "Vector3D", "Vector", "",0.400000005960464,0.400000005960464,0.400000005960464 + P: "Opacity", "double", "Number", "",1 + } + } + Deformer: 2807846333360, "Deformer::head", "BlendShape" { + Version: 100 + Properties70: { + P: "RootGroup", "KString", "", "", "" + P: "RootGroup|Jaw_Left", "KString", "", "", "" + P: "RootGroup|Jaw_Right", "KString", "", "", "" + P: "RootGroup|Jaw_Forward", "KString", "", "", "" + P: "RootGroup|Jaw_Open", "KString", "", "", "" + P: "RootGroup|Mouth_Ape_Shape", "KString", "", "", "" + P: "RootGroup|Mouth_Upper_Left", "KString", "", "", "" + P: "RootGroup|Mouth_Upper_Right", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_Left", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_Right", "KString", "", "", "" + P: "RootGroup|Mouth_Upper_Overturn", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_Overturn", "KString", "", "", "" + P: "RootGroup|Mouth_Pout", "KString", "", "", "" + P: "RootGroup|Mouth_Raiser_Left", "KString", "", "", "" + P: "RootGroup|Mouth_Raiser_Right", "KString", "", "", "" + P: "RootGroup|Mouth_Stretcher_Left", "KString", "", "", "" + P: "RootGroup|Mouth_Stretcher_Right", "KString", "", "", "" + P: "RootGroup|Cheek_Puff_Left", "KString", "", "", "" + P: "RootGroup|Cheek_Puff_Right", "KString", "", "", "" + P: "RootGroup|Cheek_Suck", "KString", "", "", "" + P: "RootGroup|Mouth_Upper_UpLeft", "KString", "", "", "" + P: "RootGroup|Mouth_Upper_UpRight", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_DownLeft", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_DownRight", "KString", "", "", "" + P: "RootGroup|Mouth_Upper_Inside", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_Inside", "KString", "", "", "" + P: "RootGroup|Mouth_Lower_Overlay", "KString", "", "", "" + P: "RootGroup|Eye_Left_Blink", "KString", "", "", "" + P: "RootGroup|Eye_Left_Wide", "KString", "", "", "" + P: "RootGroup|Eye_Left_Right", "KString", "", "", "" + P: "RootGroup|Eye_Left_Left", "KString", "", "", "" + P: "RootGroup|Eye_Left_Up", "KString", "", "", "" + P: "RootGroup|Eye_Left_Down", "KString", "", "", "" + P: "RootGroup|Eye_Right_Blink", "KString", "", "", "" + P: "RootGroup|Eye_Right_Wide", "KString", "", "", "" + P: "RootGroup|Eye_Right_Right", "KString", "", "", "" + P: "RootGroup|Eye_Right_Left", "KString", "", "", "" + P: "RootGroup|Eye_Right_Up", "KString", "", "", "" + P: "RootGroup|Eye_Right_Down", "KString", "", "", "" + P: "RootGroup|Eye_Frown", "KString", "", "", "" + P: "RootGroup|Eye_Left_squeeze", "KString", "", "", "" + P: "RootGroup|Eye_Right_squeeze", "KString", "", "", "" + P: "RootGroup|Tongue_LongStep1", "KString", "", "", "" + P: "RootGroup|Tongue_LongStep2", "KString", "", "", "" + P: "RootGroup|Tongue_Left", "KString", "", "", "" + P: "RootGroup|Tongue_Right", "KString", "", "", "" + P: "RootGroup|Tongue_Up", "KString", "", "", "" + P: "RootGroup|Tongue_Down", "KString", "", "", "" + P: "RootGroup|Tongue_Roll", "KString", "", "", "" + P: "RootGroup|Tongue_UpLeft_Morph", "KString", "", "", "" + P: "RootGroup|Tongue_UpRight_Morph", "KString", "", "", "" + P: "RootGroup|Tongue_DownLeft_Morph", "KString", "", "", "" + P: "RootGroup|Tongue_DownRight_Morph", "KString", "", "", "" + } + } + Deformer: 2805037335680, "SubDeformer::Jaw_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037336384, "SubDeformer::Jaw_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037336560, "SubDeformer::Jaw_Forward", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037337264, "SubDeformer::Jaw_Open", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037337616, "SubDeformer::Mouth_Ape_Shape", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037335856, "SubDeformer::Mouth_Upper_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037338144, "SubDeformer::Mouth_Upper_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805037336208, "SubDeformer::Mouth_Lower_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805292903472, "SubDeformer::Mouth_Lower_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2806816711456, "SubDeformer::Mouth_Upper_Overturn", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807266036576, "SubDeformer::Mouth_Lower_Overturn", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2805561191808, "SubDeformer::Mouth_Pout", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027180528, "SubDeformer::Mouth_Raiser_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027180880, "SubDeformer::Mouth_Raiser_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027183168, "SubDeformer::Mouth_Stretcher_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027179824, "SubDeformer::Mouth_Stretcher_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027181936, "SubDeformer::Cheek_Puff_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027182992, "SubDeformer::Cheek_Puff_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027183344, "SubDeformer::Cheek_Suck", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027180352, "SubDeformer::Mouth_Upper_UpLeft", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027181760, "SubDeformer::Mouth_Upper_UpRight", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027182640, "SubDeformer::Mouth_Lower_DownLeft", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027181232, "SubDeformer::Mouth_Lower_DownRight", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027179648, "SubDeformer::Mouth_Upper_Inside", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027182816, "SubDeformer::Mouth_Lower_Inside", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027182112, "SubDeformer::Mouth_Lower_Overlay", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027182288, "SubDeformer::Eye_Left_Blink", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027181056, "SubDeformer::Eye_Left_Wide", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027182464, "SubDeformer::Eye_Left_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027180000, "SubDeformer::Eye_Left_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027180176, "SubDeformer::Eye_Left_Up", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027180704, "SubDeformer::Eye_Left_Down", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027181408, "SubDeformer::Eye_Right_Blink", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807027181584, "SubDeformer::Eye_Right_Wide", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243850800, "SubDeformer::Eye_Right_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243849568, "SubDeformer::Eye_Right_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243852736, "SubDeformer::Eye_Right_Up", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243852384, "SubDeformer::Eye_Right_Down", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243851152, "SubDeformer::Eye_Frown", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243849920, "SubDeformer::Eye_Left_squeeze", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243850096, "SubDeformer::Eye_Right_squeeze", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243850448, "SubDeformer::Tongue_LongStep1", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243849744, "SubDeformer::Tongue_LongStep2", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243850272, "SubDeformer::Tongue_Left", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243851328, "SubDeformer::Tongue_Right", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243851504, "SubDeformer::Tongue_Up", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243852912, "SubDeformer::Tongue_Down", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243850624, "SubDeformer::Tongue_Roll", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243850976, "SubDeformer::Tongue_UpLeft_Morph", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243852560, "SubDeformer::Tongue_UpRight_Morph", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243853088, "SubDeformer::Tongue_DownLeft_Morph", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Deformer: 2807243851680, "SubDeformer::Tongue_DownRight_Morph", "BlendShapeChannel" { + Version: 100 + DeformPercent: 0 + FullWeights: *1 { + a: 100 + } + } + Video: 2805740697664, "Video::file14", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" + } + UseMipMap: 0 + Filename: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" + RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" + } + Video: 2805740688544, "Video::file15", "Clip" { + Type: "Clip" + Properties70: { + P: "Path", "KString", "XRefUrl", "", "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" + P: "RelPath", "KString", "XRefUrl", "", "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" + } + UseMipMap: 0 + Filename: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" + RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" + } + Texture: 2805740683744, "Texture::file14", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file14" + Properties70: { + P: "CurrentTextureBlendMode", "enum", "", "",0 + P: "UVSet", "KString", "", "", "map1" + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file14" + FileName: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" + RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } + Texture: 2805740697184, "Texture::file15", "" { + Type: "TextureVideoClip" + Version: 202 + TextureName: "Texture::file15" + Properties70: { + P: "CurrentTextureBlendMode", "enum", "", "",0 + P: "UVSet", "KString", "", "", "map1" + P: "UseMaterial", "bool", "", "",1 + } + Media: "Video::file15" + FileName: "D:/MAYA/sourceimages/SBP/Head_b/Head_b_albedo.png" + RelativeFilename: "..\..\..\sourceimages\SBP\Head_b\Head_b_albedo.png" + ModelUVTranslation: 0,0 + ModelUVScaling: 1,1 + Texture_Alpha_Source: "None" + Cropping: 0,0,0,0 + } +} + +; Object connections +;------------------------------------------------------------------ + +Connections: { + + ;Model::Head, Model::RootNode + C: "OO",2807828244416,0 + + ;Model::Eye_Left, Model::RootNode + C: "OO",2807828235136,0 + + ;Model::Eye_Right, Model::RootNode + C: "OO",2807828258336,0 + + ;Deformer::head, Geometry:: + C: "OO",2807846333360,2807092188944 + + ;Texture::file14, Material::head_mat1 + C: "OP",2805740683744,2807582018768, "DiffuseColor" + + ;Texture::file15, Material::eyelash_mat1 + C: "OP",2805740697184,2807582011568, "DiffuseColor" + + ;Texture::file15, Material::eyelash_mat1 + C: "OP",2805740697184,2807582011568, "TransparentColor" + + ;Video::file14, Texture::file14 + C: "OO",2805740697664,2805740683744 + + ;Video::file15, Texture::file15 + C: "OO",2805740688544,2805740697184 + + ;Geometry::, Model::Head + C: "OO",2807092188944,2807828244416 + + ;Material::head_mat1, Model::Head + C: "OO",2807582018768,2807828244416 + + ;Material::eyelash_mat1, Model::Head + C: "OO",2807582011568,2807828244416 + + ;Geometry::, Model::Eye_Left + C: "OO",2807092190992,2807828235136 + + ;Material::head_mat1, Model::Eye_Left + C: "OO",2807582018768,2807828235136 + + ;Geometry::, Model::Eye_Right + C: "OO",2807092192528,2807828258336 + + ;Material::head_mat1, Model::Eye_Right + C: "OO",2807582018768,2807828258336 + + ;SubDeformer::Jaw_Left, Deformer::head + C: "OO",2805037335680,2807846333360 + + ;SubDeformer::Jaw_Right, Deformer::head + C: "OO",2805037336384,2807846333360 + + ;SubDeformer::Jaw_Forward, Deformer::head + C: "OO",2805037336560,2807846333360 + + ;SubDeformer::Jaw_Open, Deformer::head + C: "OO",2805037337264,2807846333360 + + ;SubDeformer::Mouth_Ape_Shape, Deformer::head + C: "OO",2805037337616,2807846333360 + + ;SubDeformer::Mouth_Upper_Left, Deformer::head + C: "OO",2805037335856,2807846333360 + + ;SubDeformer::Mouth_Upper_Right, Deformer::head + C: "OO",2805037338144,2807846333360 + + ;SubDeformer::Mouth_Lower_Left, Deformer::head + C: "OO",2805037336208,2807846333360 + + ;SubDeformer::Mouth_Lower_Right, Deformer::head + C: "OO",2805292903472,2807846333360 + + ;SubDeformer::Mouth_Upper_Overturn, Deformer::head + C: "OO",2806816711456,2807846333360 + + ;SubDeformer::Mouth_Lower_Overturn, Deformer::head + C: "OO",2807266036576,2807846333360 + + ;SubDeformer::Mouth_Pout, Deformer::head + C: "OO",2805561191808,2807846333360 + + ;SubDeformer::Mouth_Raiser_Left, Deformer::head + C: "OO",2807027180528,2807846333360 + + ;SubDeformer::Mouth_Raiser_Right, Deformer::head + C: "OO",2807027180880,2807846333360 + + ;SubDeformer::Mouth_Stretcher_Left, Deformer::head + C: "OO",2807027183168,2807846333360 + + ;SubDeformer::Mouth_Stretcher_Right, Deformer::head + C: "OO",2807027179824,2807846333360 + + ;SubDeformer::Cheek_Puff_Left, Deformer::head + C: "OO",2807027181936,2807846333360 + + ;SubDeformer::Cheek_Puff_Right, Deformer::head + C: "OO",2807027182992,2807846333360 + + ;SubDeformer::Cheek_Suck, Deformer::head + C: "OO",2807027183344,2807846333360 + + ;SubDeformer::Mouth_Upper_UpLeft, Deformer::head + C: "OO",2807027180352,2807846333360 + + ;SubDeformer::Mouth_Upper_UpRight, Deformer::head + C: "OO",2807027181760,2807846333360 + + ;SubDeformer::Mouth_Lower_DownLeft, Deformer::head + C: "OO",2807027182640,2807846333360 + + ;SubDeformer::Mouth_Lower_DownRight, Deformer::head + C: "OO",2807027181232,2807846333360 + + ;SubDeformer::Mouth_Upper_Inside, Deformer::head + C: "OO",2807027179648,2807846333360 + + ;SubDeformer::Mouth_Lower_Inside, Deformer::head + C: "OO",2807027182816,2807846333360 + + ;SubDeformer::Mouth_Lower_Overlay, Deformer::head + C: "OO",2807027182112,2807846333360 + + ;SubDeformer::Eye_Left_Blink, Deformer::head + C: "OO",2807027182288,2807846333360 + + ;SubDeformer::Eye_Left_Wide, Deformer::head + C: "OO",2807027181056,2807846333360 + + ;SubDeformer::Eye_Left_Right, Deformer::head + C: "OO",2807027182464,2807846333360 + + ;SubDeformer::Eye_Left_Left, Deformer::head + C: "OO",2807027180000,2807846333360 + + ;SubDeformer::Eye_Left_Up, Deformer::head + C: "OO",2807027180176,2807846333360 + + ;SubDeformer::Eye_Left_Down, Deformer::head + C: "OO",2807027180704,2807846333360 + + ;SubDeformer::Eye_Right_Blink, Deformer::head + C: "OO",2807027181408,2807846333360 + + ;SubDeformer::Eye_Right_Wide, Deformer::head + C: "OO",2807027181584,2807846333360 + + ;SubDeformer::Eye_Right_Right, Deformer::head + C: "OO",2807243850800,2807846333360 + + ;SubDeformer::Eye_Right_Left, Deformer::head + C: "OO",2807243849568,2807846333360 + + ;SubDeformer::Eye_Right_Up, Deformer::head + C: "OO",2807243852736,2807846333360 + + ;SubDeformer::Eye_Right_Down, Deformer::head + C: "OO",2807243852384,2807846333360 + + ;SubDeformer::Eye_Frown, Deformer::head + C: "OO",2807243851152,2807846333360 + + ;SubDeformer::Eye_Left_squeeze, Deformer::head + C: "OO",2807243849920,2807846333360 + + ;SubDeformer::Eye_Right_squeeze, Deformer::head + C: "OO",2807243850096,2807846333360 + + ;SubDeformer::Tongue_LongStep1, Deformer::head + C: "OO",2807243850448,2807846333360 + + ;SubDeformer::Tongue_LongStep2, Deformer::head + C: "OO",2807243849744,2807846333360 + + ;SubDeformer::Tongue_Left, Deformer::head + C: "OO",2807243850272,2807846333360 + + ;SubDeformer::Tongue_Right, Deformer::head + C: "OO",2807243851328,2807846333360 + + ;SubDeformer::Tongue_Up, Deformer::head + C: "OO",2807243851504,2807846333360 + + ;SubDeformer::Tongue_Down, Deformer::head + C: "OO",2807243852912,2807846333360 + + ;SubDeformer::Tongue_Roll, Deformer::head + C: "OO",2807243850624,2807846333360 + + ;SubDeformer::Tongue_UpLeft_Morph, Deformer::head + C: "OO",2807243850976,2807846333360 + + ;SubDeformer::Tongue_UpRight_Morph, Deformer::head + C: "OO",2807243852560,2807846333360 + + ;SubDeformer::Tongue_DownLeft_Morph, Deformer::head + C: "OO",2807243853088,2807846333360 + + ;SubDeformer::Tongue_DownRight_Morph, Deformer::head + C: "OO",2807243851680,2807846333360 + + ;Geometry::Jaw_Left, SubDeformer::Jaw_Left + C: "OO",2807563820512,2805037335680 + + ;Geometry::Jaw_Right, SubDeformer::Jaw_Right + C: "OO",2807563817632,2805037336384 + + ;Geometry::Jaw_Forward, SubDeformer::Jaw_Forward + C: "OO",2807563817056,2805037336560 + + ;Geometry::Jaw_Open, SubDeformer::Jaw_Open + C: "OO",2807563817344,2805037337264 + + ;Geometry::Mouth_Ape_Shape, SubDeformer::Mouth_Ape_Shape + C: "OO",2807563817920,2805037337616 + + ;Geometry::Mouth_Upper_Left, SubDeformer::Mouth_Upper_Left + C: "OO",2807563818208,2805037335856 + + ;Geometry::Mouth_Upper_Right, SubDeformer::Mouth_Upper_Right + C: "OO",2807563819648,2805037338144 + + ;Geometry::Mouth_Lower_Left, SubDeformer::Mouth_Lower_Left + C: "OO",2807563818496,2805037336208 + + ;Geometry::Mouth_Lower_Right, SubDeformer::Mouth_Lower_Right + C: "OO",2807563819072,2805292903472 + + ;Geometry::Mouth_Upper_Overturn, SubDeformer::Mouth_Upper_Overturn + C: "OO",2807563819360,2806816711456 + + ;Geometry::Mouth_Lower_Overturn, SubDeformer::Mouth_Lower_Overturn + C: "OO",2805454334880,2807266036576 + + ;Geometry::Mouth_Pout, SubDeformer::Mouth_Pout + C: "OO",2805454332576,2805561191808 + + ;Geometry::Mouth_Raiser_Left, SubDeformer::Mouth_Raiser_Left + C: "OO",2805454334592,2807027180528 + + ;Geometry::Mouth_Raiser_Right, SubDeformer::Mouth_Raiser_Right + C: "OO",2805454333728,2807027180880 + + ;Geometry::Mouth_Stretcher_Left, SubDeformer::Mouth_Stretcher_Left + C: "OO",2805454334304,2807027183168 + + ;Geometry::Mouth_Stretcher_Right, SubDeformer::Mouth_Stretcher_Right + C: "OO",2805454335168,2807027179824 + + ;Geometry::Cheek_Puff_Left, SubDeformer::Cheek_Puff_Left + C: "OO",2805454332864,2807027181936 + + ;Geometry::Cheek_Puff_Right, SubDeformer::Cheek_Puff_Right + C: "OO",2805454335456,2807027182992 + + ;Geometry::Cheek_Suck, SubDeformer::Cheek_Suck + C: "OO",2805454333152,2807027183344 + + ;Geometry::Mouth_Upper_UpLeft, SubDeformer::Mouth_Upper_UpLeft + C: "OO",2805454332000,2807027180352 + + ;Geometry::Mouth_Upper_UpRight, SubDeformer::Mouth_Upper_UpRight + C: "OO",2805454332288,2807027181760 + + ;Geometry::Mouth_Lower_DownLeft, SubDeformer::Mouth_Lower_DownLeft + C: "OO",2805454334016,2807027182640 + + ;Geometry::Mouth_Lower_DownRight, SubDeformer::Mouth_Lower_DownRight + C: "OO",2805454333440,2807027181232 + + ;Geometry::Mouth_Upper_Inside, SubDeformer::Mouth_Upper_Inside + C: "OO",2807030774448,2807027179648 + + ;Geometry::Mouth_Lower_Inside, SubDeformer::Mouth_Lower_Inside + C: "OO",2807030774736,2807027182816 + + ;Geometry::Mouth_Lower_Overlay, SubDeformer::Mouth_Lower_Overlay + C: "OO",2807030772720,2807027182112 + + ;Geometry::Eye_Left_Blink, SubDeformer::Eye_Left_Blink + C: "OO",2807030772144,2807027182288 + + ;Geometry::Eye_Left_Wide, SubDeformer::Eye_Left_Wide + C: "OO",2807030773584,2807027181056 + + ;Geometry::Eye_Left_Right, SubDeformer::Eye_Left_Right + C: "OO",2807030773872,2807027182464 + + ;Geometry::Eye_Left_Left, SubDeformer::Eye_Left_Left + C: "OO",2807030774160,2807027180000 + + ;Geometry::Eye_Left_Up, SubDeformer::Eye_Left_Up + C: "OO",2807030775024,2807027180176 + + ;Geometry::Eye_Left_Down, SubDeformer::Eye_Left_Down + C: "OO",2807030771568,2807027180704 + + ;Geometry::Eye_Right_Blink, SubDeformer::Eye_Right_Blink + C: "OO",2807030773296,2807027181408 + + ;Geometry::Eye_Right_Wide, SubDeformer::Eye_Right_Wide + C: "OO",2807030771856,2807027181584 + + ;Geometry::Eye_Right_Right, SubDeformer::Eye_Right_Right + C: "OO",2807030772432,2807243850800 + + ;Geometry::Eye_Right_Left, SubDeformer::Eye_Right_Left + C: "OO",2807030773008,2807243849568 + + ;Geometry::Eye_Right_Up, SubDeformer::Eye_Right_Up + C: "OO",2807663840112,2807243852736 + + ;Geometry::Eye_Right_Down, SubDeformer::Eye_Right_Down + C: "OO",2807663838096,2807243852384 + + ;Geometry::Eye_Frown, SubDeformer::Eye_Frown + C: "OO",2807663838672,2807243851152 + + ;Geometry::Eye_Left_squeeze, SubDeformer::Eye_Left_squeeze + C: "OO",2807663838960,2807243849920 + + ;Geometry::Eye_Right_squeeze, SubDeformer::Eye_Right_squeeze + C: "OO",2807663839824,2807243850096 + + ;Geometry::Tongue_LongStep1, SubDeformer::Tongue_LongStep1 + C: "OO",2807663837520,2807243850448 + + ;Geometry::Tongue_LongStep2, SubDeformer::Tongue_LongStep2 + C: "OO",2807663836656,2807243849744 + + ;Geometry::Tongue_Left, SubDeformer::Tongue_Left + C: "OO",2807663836944,2807243850272 + + ;Geometry::Tongue_Right, SubDeformer::Tongue_Right + C: "OO",2807663839248,2807243851328 + + ;Geometry::Tongue_Up, SubDeformer::Tongue_Up + C: "OO",2807663838384,2807243851504 + + ;Geometry::Tongue_Down, SubDeformer::Tongue_Down + C: "OO",2807663837232,2807243852912 + + ;Geometry::Tongue_Roll, SubDeformer::Tongue_Roll + C: "OO",2807663837808,2807243850624 + + ;Geometry::Tongue_UpLeft_Morph, SubDeformer::Tongue_UpLeft_Morph + C: "OO",2807663839536,2807243850976 + + ;Geometry::Tongue_UpRight_Morph, SubDeformer::Tongue_UpRight_Morph + C: "OO",2805100583344,2807243852560 + + ;Geometry::Tongue_DownLeft_Morph, SubDeformer::Tongue_DownLeft_Morph + C: "OO",2805100584784,2807243853088 + + ;Geometry::Tongue_DownRight_Morph, SubDeformer::Tongue_DownRight_Morph + C: "OO",2805100585360,2807243851680 +} + diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Materials/eyelash_mat.mat b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Materials/eyelash_mat.mat index 97ebea5..c6663f4 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Materials/eyelash_mat.mat +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/FacialTracking/ViveSR/Models/version2/Avatar_Shieh/Materials/eyelash_mat.mat @@ -22,6 +22,7 @@ Material: RenderType: Transparent disabledShaderPasses: - GRABPASS + - ALWAYS m_SavedProperties: serializedVersion: 3 m_TexEnvs: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.inputactions b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.inputactions index 7aa5e1a..4628edb 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.inputactions +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.inputactions @@ -54,6 +54,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "068b86ec-3f14-4d24-9b42-7057d00ab904", + "path": "{LeftHand}/isTracked", + "interactions": "", + "processors": "", + "groups": "", + "action": "isTrackedL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "b605cbf6-38fb-422a-b12d-48e386a67e9a", @@ -65,6 +76,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "fa2d2138-eb75-4cce-8088-3445f1560e97", + "path": "{RightHand}/isTracked", + "interactions": "", + "processors": "", + "groups": "", + "action": "isTrackedR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "9535518b-92b1-45ff-9525-624d0c52de13", @@ -76,6 +98,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "4331ebf5-824f-405f-8a29-a4c4049c23d9", + "path": "{RightHand}/trackingState", + "interactions": "", + "processors": "", + "groups": "", + "action": "trackingStateR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "1ccbb62c-6370-4507-847e-8fda100510e8", @@ -86,6 +119,17 @@ "action": "trackingStateL", "isComposite": false, "isPartOfComposite": false + }, + { + "name": "", + "id": "f4e2d931-5b80-4e10-8e95-37c99a3d9536", + "path": "{LeftHand}/trackingState", + "interactions": "", + "processors": "", + "groups": "", + "action": "trackingStateL", + "isComposite": false, + "isPartOfComposite": false } ] }, @@ -160,6 +204,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "0afb0794-9c98-41f7-9f58-8a1e64bc8bdc", + "path": "{LeftHand}/devicePose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "d41d33db-8b6c-4f21-9459-fd203551d990", @@ -171,6 +226,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "d46b4d0f-f908-4cd0-aece-22eb2318f8e7", + "path": "{RightHand}/devicePose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "48b33d4f-e9f9-4890-b836-d7303386c8b0", @@ -182,6 +248,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "005e532f-bb88-4636-8604-3c3dbf891803", + "path": "{LeftHand}/graspValue", + "interactions": "", + "processors": "", + "groups": "", + "action": "ValueL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "e43dc5cd-3e96-4453-b6b2-818250c91436", @@ -193,6 +270,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "ddd425a1-b196-4a6c-bbba-69f3fa9b44b8", + "path": "{RightHand}/graspValue", + "interactions": "", + "processors": "", + "groups": "", + "action": "ValueR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "3e8a289a-aa43-44fd-bbdf-ed15035ad5ef", @@ -204,6 +292,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "9c47003b-b29e-49a8-8ee5-7700bdf3ef66", + "path": "{RightHand}/graspReady", + "interactions": "", + "processors": "", + "groups": "", + "action": "ReadyR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "79e10ffe-7276-4a95-b380-9d244bc2b213", @@ -214,6 +313,17 @@ "action": "ReadyL", "isComposite": false, "isPartOfComposite": false + }, + { + "name": "", + "id": "5f1f8ba8-8258-4293-8a1c-b7680ae212c0", + "path": "{LeftHand}/graspReady", + "interactions": "", + "processors": "", + "groups": "", + "action": "ReadyL", + "isComposite": false, + "isPartOfComposite": false } ] }, @@ -230,6 +340,24 @@ "interactions": "", "initialStateCheck": false }, + { + "name": "PositionL", + "type": "PassThrough", + "id": "3c743437-254f-480d-ab2a-fbb7fa3a1c75", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "RotationL", + "type": "PassThrough", + "id": "a61c5a21-e370-4bd7-91cc-4939db98a735", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, { "name": "ValueL", "type": "Value", @@ -257,6 +385,24 @@ "interactions": "", "initialStateCheck": false }, + { + "name": "PositionR", + "type": "PassThrough", + "id": "eb88b286-d41a-4441-8680-eae89ddd9427", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "RotationR", + "type": "PassThrough", + "id": "4b410388-aabc-4cef-944e-68d5f68bcc44", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, { "name": "ValueR", "type": "Value", @@ -288,6 +434,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "45cf0dab-fbfc-478f-aa3b-f74eafb029e9", + "path": "{LeftHand}/pointer", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "cbaae569-a034-4ce6-8cdd-eef5586aaa7e", @@ -299,6 +456,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "bb49f848-f6b0-4a1a-b60c-1f08a8bdffcc", + "path": "{RightHand}/pointer", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "514be0ed-99f4-4f3a-a53b-672c0caeb1d5", @@ -310,6 +478,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "8e248108-0a74-421f-b2b6-0172ccf49da8", + "path": "{LeftHand}/pointerActivateValue", + "interactions": "", + "processors": "", + "groups": "", + "action": "ValueL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "b3c9d90b-0ad0-42c6-9cda-1ac1d74719a5", @@ -321,6 +500,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "afb0658c-57a3-4f84-99ce-f2b5731b081a", + "path": "{RightHand}/pointerActivateValue", + "interactions": "", + "processors": "", + "groups": "", + "action": "ValueR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "03ca7d96-43df-406f-8b41-c3b8168cbcbc", @@ -332,6 +522,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "ff1d9683-a045-4394-95f3-8b8637109b91", + "path": "{RightHand}/pointerActivateReady", + "interactions": "", + "processors": "", + "groups": "", + "action": "ReadyR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "0f20788a-3543-4fd0-8e4e-9ad56108877e", @@ -342,6 +543,299 @@ "action": "ReadyL", "isComposite": false, "isPartOfComposite": false + }, + { + "name": "", + "id": "4df69cb3-1d60-4aab-9af4-528400022e93", + "path": "{LeftHand}/pointerActivateReady", + "interactions": "", + "processors": "", + "groups": "", + "action": "ReadyL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "4af711ee-8f25-4a6b-900b-cce9a68655de", + "path": "{LeftHand}/pointerPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "056d875e-56e5-4783-b73c-7d2a83407530", + "path": "{LeftHand}/pointerPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "d47309f6-c5d1-4892-bf76-e51faa8b6137", + "path": "{LeftHand}/pointerRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "f4fade07-9a27-4a3a-9145-87fc4e6fc282", + "path": "{LeftHand}/pointerRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "61444e1e-91f4-45a7-8104-93317a4fcfa8", + "path": "{RightHand}/pointerPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "d66724bb-6f33-46eb-8205-3912e3cdb72d", + "path": "{RightHand}/pointerPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3f05dfd2-7dcb-46ee-a8c8-20c921c62793", + "path": "{RightHand}/pointerRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "c3aa63db-3ff8-4206-b62a-d1caf6ffafd5", + "path": "{RightHand}/pointerRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationR", + "isComposite": false, + "isPartOfComposite": false + } + ] + }, + { + "name": "HandPoke", + "id": "a4cfc781-c114-4451-96d5-857c3a9385fa", + "actions": [ + { + "name": "PoseL", + "type": "PassThrough", + "id": "e9feeab8-c68c-47d7-8560-8f3b2c44d2bf", + "expectedControlType": "Pose", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "PositionL", + "type": "PassThrough", + "id": "eed73641-933c-4836-9ed7-f0f28ddbf9ec", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "RotationL", + "type": "PassThrough", + "id": "5ad8d488-2973-487b-a19f-c8eb588c67d3", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "PoseR", + "type": "PassThrough", + "id": "1bac4e9e-ce3d-4218-bbca-255ef780cf6c", + "expectedControlType": "Pose", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "PositionR", + "type": "PassThrough", + "id": "cdd9430c-70f2-4854-b3ae-81b884e87168", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "RotationR", + "type": "PassThrough", + "id": "81746764-95ef-48ce-b2e1-e05330f97e05", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + } + ], + "bindings": [ + { + "name": "", + "id": "efd73d26-df7d-4b90-93c2-202a5f70c05c", + "path": "{LeftHand}/pokePose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "8e9539c4-4aca-471f-b843-bd282a33616b", + "path": "{LeftHand}/pokePose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "124f3c45-0d83-4302-9f2a-cb945f7c268e", + "path": "{RightHand}/pokePose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "d6bd90fd-f8ab-4cc7-ab90-c604788b32e8", + "path": "{RightHand}/pokePose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "29fcebb4-1111-4c52-becf-a20a4919c8bd", + "path": "{RightHand}/pokePosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3f1a484f-a430-4f62-9587-47944d3ceb8a", + "path": "{RightHand}/pokePosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "72bb3809-4dba-4b8c-a35a-6c2078873256", + "path": "{LeftHand}/pokeRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "c64e7c60-8e41-47d7-80b3-8f8dd7c17071", + "path": "{LeftHand}/pokeRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "cae2d11b-bd7f-4fc4-b247-c21af26cf2d5", + "path": "{RightHand}/pokeRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "59f0ff0b-c894-4fb7-b775-7a8dbc56c718", + "path": "{RightHand}/pokeRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "79dfac35-3c6f-45b2-8045-eeba5534cb14", + "path": "{LeftHand}/pokePosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "6b420474-04e5-46bb-b76f-a4aef922dac4", + "path": "{LeftHand}/pokePosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionL", + "isComposite": false, + "isPartOfComposite": false } ] }, @@ -358,6 +852,24 @@ "interactions": "", "initialStateCheck": false }, + { + "name": "PositionL", + "type": "PassThrough", + "id": "d0f34fc0-7d91-44ad-8fcb-2be82414f6ba", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "RotationL", + "type": "PassThrough", + "id": "69f4a637-3eaf-490d-9de8-d9a08bff9fff", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, { "name": "ValueL", "type": "Value", @@ -385,6 +897,24 @@ "interactions": "", "initialStateCheck": false }, + { + "name": "PositionR", + "type": "PassThrough", + "id": "d46fd2f7-9611-4d4f-bc93-12999b1f862e", + "expectedControlType": "Vector3", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, + { + "name": "RotationR", + "type": "PassThrough", + "id": "5ea8b91a-29fb-4e5a-bb65-f61664a39b2a", + "expectedControlType": "Quaternion", + "processors": "", + "interactions": "", + "initialStateCheck": false + }, { "name": "ValueR", "type": "Value", @@ -416,6 +946,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "e73a46a3-8913-44c6-a015-713f387ff238", + "path": "{LeftHand}/pinchPose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "92e779f7-ba6f-417d-9f4c-9d5f81790686", @@ -427,6 +968,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "8c9406c8-c451-43cc-8a39-b8ec5d841c2b", + "path": "{RightHand}/pinchPose", + "interactions": "", + "processors": "", + "groups": "", + "action": "PoseR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "f5f748fd-da48-423b-864a-340e9934041f", @@ -438,6 +990,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "dbc9eb68-a3a8-4309-b690-2215efd2af77", + "path": "{LeftHand}/pinchValue", + "interactions": "", + "processors": "", + "groups": "", + "action": "ValueL", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "838dbd9a-6c54-4959-9a92-0168b20d3632", @@ -449,6 +1012,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "79ebe950-0644-4adb-a13d-fd1d5e109e57", + "path": "{RightHand}/pinchValue", + "interactions": "", + "processors": "", + "groups": "", + "action": "ValueR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "30bc3116-8581-42b7-9a73-8f4ce570083e", @@ -460,6 +1034,17 @@ "isComposite": false, "isPartOfComposite": false }, + { + "name": "", + "id": "e50e1257-1b2b-46ab-99b2-231ccee5eeb6", + "path": "{RightHand}/pinchReady", + "interactions": "", + "processors": "", + "groups": "", + "action": "ReadyR", + "isComposite": false, + "isPartOfComposite": false + }, { "name": "", "id": "9591b4cc-cf0b-4096-91ae-848358b0f366", @@ -470,52 +1055,103 @@ "action": "ReadyL", "isComposite": false, "isPartOfComposite": false - } - ] - }, - { - "name": "HandPoke", - "id": "a4cfc781-c114-4451-96d5-857c3a9385fa", - "actions": [ - { - "name": "PoseL", - "type": "PassThrough", - "id": "e9feeab8-c68c-47d7-8560-8f3b2c44d2bf", - "expectedControlType": "Pose", - "processors": "", - "interactions": "", - "initialStateCheck": false }, - { - "name": "PoseR", - "type": "PassThrough", - "id": "1bac4e9e-ce3d-4218-bbca-255ef780cf6c", - "expectedControlType": "Pose", - "processors": "", - "interactions": "", - "initialStateCheck": false - } - ], - "bindings": [ { "name": "", - "id": "efd73d26-df7d-4b90-93c2-202a5f70c05c", - "path": "{LeftHand}/pokePose", + "id": "136c49a3-8f2b-476b-9adf-98e7ed1e6e9a", + "path": "{LeftHand}/pinchReady", "interactions": "", "processors": "", "groups": "", - "action": "PoseL", + "action": "ReadyL", "isComposite": false, "isPartOfComposite": false }, { "name": "", - "id": "124f3c45-0d83-4302-9f2a-cb945f7c268e", - "path": "{RightHand}/pokePose", + "id": "9221267c-62a0-47cb-aeba-aca47714c033", + "path": "{LeftHand}/pinchRotation", "interactions": "", "processors": "", "groups": "", - "action": "PoseR", + "action": "RotationL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "b4dcfb93-89e5-45cf-bde0-6c2adea454b3", + "path": "{LeftHand}/pinchRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "b841def8-addf-4eae-808f-5160a5ff3ed5", + "path": "{LeftHand}/pinchPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "3253d57e-11aa-4449-8960-16e8911854d5", + "path": "{LeftHand}/pinchPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionL", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "88a63c73-43a1-469c-99b0-ef08bd0b95e7", + "path": "{RightHand}/pinchPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "bf69fb00-cf5a-40da-a774-437f1ea76d44", + "path": "{RightHand}/pinchPosition", + "interactions": "", + "processors": "", + "groups": "", + "action": "PositionR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "7f0a8dc7-c33a-4811-ad95-367df499cfb8", + "path": "{RightHand}/pinchRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationR", + "isComposite": false, + "isPartOfComposite": false + }, + { + "name": "", + "id": "ef207392-905c-4a08-9e1f-7bdf0b66069a", + "path": "{RightHand}/pinchRotation", + "interactions": "", + "processors": "", + "groups": "", + "action": "RotationR", "isComposite": false, "isPartOfComposite": false } diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.unity b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.unity index 382ac2d..c784306 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.unity +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/HandInteractionExt/HandInteractionExt.unity @@ -1768,6 +1768,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -1808,6 +1809,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 5c275b7c-6878-407c-acb9-66806a61261b + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -1826,7 +1839,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &672225543 GameObject: m_ObjectHideFlags: 0 @@ -2227,6 +2239,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -2245,6 +2258,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: 226fcfb5-99d1-4280-be7d-6cab3c65b50e + m_Path: {RightHand}/pinchPosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -2265,6 +2286,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: bcafb8fd-f86e-42bf-90ac-af906ad3c602 + m_Path: {RightHand}/pinchRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: de44ecc7-66b7-4528-a659-367b18da0fbc + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -2285,7 +2326,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1001 &743277234 PrefabInstance: m_ObjectHideFlags: 0 @@ -2939,6 +2979,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -2957,6 +2998,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: 4364030c-a105-4d8e-a293-2110f00c6bd2 + m_Path: {LeftHand}/pinchPosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -2977,6 +3026,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: a3e41bb8-f7e1-4d78-982f-efb634541fad + m_Path: {LeftHand}/pinchRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: c406c9d0-8b04-4a9b-8176-c2f2ecb97e6d + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -2997,7 +3066,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1007103283 GameObject: m_ObjectHideFlags: 0 @@ -3361,6 +3429,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -3401,6 +3470,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 03a60622-a192-4d59-b71c-846ad1399680 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -3419,7 +3500,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1001 &1226082257 PrefabInstance: m_ObjectHideFlags: 0 @@ -3736,6 +3816,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -3754,6 +3835,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: 34a62fdc-c1b6-4cf1-a7de-b7024d3ca2cf + m_Path: {LeftHand}/pointerPosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -3774,6 +3863,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: 6e74078d-e467-4dc6-8023-a29a8e78d576 + m_Path: {LeftHand}/pointerRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 6a3020fa-bbda-4b50-adfe-31d7c651a205 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -3794,7 +3903,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1414890483 GameObject: m_ObjectHideFlags: 0 @@ -4053,6 +4161,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -4071,6 +4180,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: 449e07f6-b6de-4297-8c24-68fa0c54203b + m_Path: {RightHand}/devicePosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -4091,6 +4208,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: 2d2d7513-e9e2-44fe-a2f3-8519275ddf39 + m_Path: {RightHand}/deviceRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: f109a673-1db0-4c0a-90b3-7d2f485e71e1 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -4111,7 +4248,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1001 &1495351303 PrefabInstance: m_ObjectHideFlags: 0 @@ -4760,6 +4896,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -4778,6 +4915,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: a98522ae-3d15-4f68-8b52-3e0b07bac073 + m_Path: {RightHand}/pokePosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -4798,6 +4943,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: a5a97017-b5d5-497d-b9e8-a4c31f49c490 + m_Path: {RightHand}/pokeRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 1105b297-66c4-46e5-a497-8c5fada26fca + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -4818,7 +4983,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1708107229 GameObject: m_ObjectHideFlags: 0 @@ -5771,6 +5935,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -5811,6 +5976,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: dbd06a1e-0881-4702-b7ef-a4bb81c023fd + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -5829,7 +6006,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1947228662 GameObject: m_ObjectHideFlags: 0 @@ -5893,6 +6069,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -5911,6 +6088,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: b51f75c3-0d11-4a26-b603-185a4f559861 + m_Path: {LeftHand}/pokePosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -5931,6 +6116,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: 59e61b20-ab73-411d-8b56-ac6f0e182f9d + m_Path: {LeftHand}/pokeRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 52fe8957-1665-4732-a1a1-f95cc70a1c78 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -5951,7 +6156,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1962967395 GameObject: m_ObjectHideFlags: 0 @@ -6093,6 +6297,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -6111,6 +6316,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: 2b53a195-ce43-4708-a385-e61a8c6ec293 + m_Path: {LeftHand}/devicePosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -6131,6 +6344,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: 5717e88d-f9be-4c5d-a42b-a82e179bc64d + m_Path: {LeftHand}/deviceRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: ec3ea843-1c14-4b82-a1ca-3e61d0da8985 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -6151,7 +6384,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2064717940 GameObject: m_ObjectHideFlags: 0 @@ -6215,6 +6447,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -6255,6 +6488,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: eb274547-769d-45f6-890b-abda078e5899 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -6273,7 +6518,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2073298331 GameObject: m_ObjectHideFlags: 0 @@ -6504,6 +6748,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -6522,6 +6767,14 @@ MonoBehaviour: m_Groups: m_Action: Position Input m_Flags: 0 + - m_Name: + m_Id: b9726b6c-9ecb-4694-982a-9099c7c1df5e + m_Path: {RightHand}/pointerPosition + m_Interactions: + m_Processors: + m_Groups: + m_Action: Position Input + m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} m_RotationInput: @@ -6542,6 +6795,26 @@ MonoBehaviour: m_Groups: m_Action: Rotation Input m_Flags: 0 + - m_Name: + m_Id: fdb8ffda-f0d5-4c9b-b785-6afb920dafa8 + m_Path: {RightHand}/pointerRotation + m_Interactions: + m_Processors: + m_Groups: + m_Action: Rotation Input + m_Flags: 0 + m_Flags: 0 + m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 0b86eacc-f773-400d-98a7-92e950a58b04 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 0} m_PositionAction: @@ -6562,7 +6835,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!4 &543450651583740275 stripped Transform: m_CorrespondingSourceObject: {fileID: 5562507940235781211, guid: a6579de606ad5b54893722f363b5371d, type: 3} @@ -7983,6 +8255,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -8023,6 +8296,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 8d1a2e5f-8b6f-4fa9-a4d9-b17c00a26569 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -8057,7 +8342,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &6088718223833369450 GameObject: m_ObjectHideFlags: 0 @@ -8172,6 +8456,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -8212,6 +8497,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 7b3328e4-c5ac-4bf5-86d8-e72901205f35 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -8246,7 +8543,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &6088718223950534255 GameObject: m_ObjectHideFlags: 0 @@ -8736,6 +9032,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -8776,6 +9073,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: ae1fc38a-9c71-495c-aab6-ed33ddf01498 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -8810,7 +9119,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1001 &7278110509245602027 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/OpenXRInput.unity b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/OpenXRInput.unity index 7bc69bf..cee5052 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/OpenXRInput.unity +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/OpenXRInput.unity @@ -844,6 +844,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -884,6 +885,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -918,7 +931,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &44028069 GameObject: m_ObjectHideFlags: 0 @@ -1322,6 +1334,84 @@ MonoBehaviour: m_OnValueChanged: m_PersistentCalls: m_Calls: [] +--- !u!1 &95751956 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 95751957} + - component: {fileID: 95751959} + - component: {fileID: 95751958} + m_Layer: 0 + m_Name: Panel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &95751957 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 95751956} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1807340437} + - {fileID: 1301415412} + m_Father: {fileID: 1335781104} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &95751958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 95751956} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &95751959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 95751956} + m_CullTransparentMesh: 1 --- !u!1 &99841488 GameObject: m_ObjectHideFlags: 0 @@ -2481,7 +2571,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &169007645 RectTransform: m_ObjectHideFlags: 0 @@ -2843,6 +2933,105 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 202480261} m_CullTransparentMesh: 0 +--- !u!1 &204292438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 204292439} + - component: {fileID: 204292442} + - component: {fileID: 204292441} + - component: {fileID: 204292443} + m_Layer: 0 + m_Name: ControllerDeviceLText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &204292439 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204292438} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2115463875} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 200} + m_SizeDelta: {x: 780, y: 210} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &204292441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204292438} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.860898, g: 0.8773585, b: 0.1779548, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Pose +--- !u!222 &204292442 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204292438} + m_CullTransparentMesh: 1 +--- !u!114 &204292443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204292438} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 04725f4c022874d40a6e786b002b782a, type: 3} + m_Name: + m_EditorClassIdentifier: + PoseName: Controller Device Left + isTracked: {fileID: 3005817691354473129, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + trackingState: {fileID: 5178774767481721072, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + position: {fileID: 9019252231132517785, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + rotation: {fileID: -22420666449113973, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + pose: {fileID: -1624222239408711063, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} --- !u!1 &205297455 GameObject: m_ObjectHideFlags: 0 @@ -3348,8 +3537,8 @@ RectTransform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 247509055} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.015, y: 0.015, z: 0.015} + m_LocalPosition: {x: 0, y: 0, z: 10} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 343022093} @@ -3417,7 +3606,7 @@ Canvas: m_SortingBucketNormalizedSize: 0 m_AdditionalShaderChannelsFlag: 0 m_SortingLayerID: 0 - m_SortingOrder: 0 + m_SortingOrder: 3000 m_TargetDisplay: 0 --- !u!1 &251179011 GameObject: @@ -4122,6 +4311,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -4146,6 +4336,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 3242339893588026215, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -4164,7 +4366,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1001 &308409639 PrefabInstance: m_ObjectHideFlags: 0 @@ -4700,6 +4901,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -4724,6 +4926,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: -2199575455336610917, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -4742,7 +4956,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &354515905 GameObject: m_ObjectHideFlags: 0 @@ -4798,6 +5011,105 @@ MonoBehaviour: enabledColor: {r: 0, g: 1, b: 0, a: 1} disabledColor: {r: 1, g: 0, b: 0, a: 1} image: {fileID: 614512880} +--- !u!1 &360924782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 360924783} + - component: {fileID: 360924786} + - component: {fileID: 360924785} + - component: {fileID: 360924784} + m_Layer: 0 + m_Name: ControllerPointerLText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &360924783 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360924782} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2115463875} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -10} + m_SizeDelta: {x: 780, y: 210} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &360924784 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360924782} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 04725f4c022874d40a6e786b002b782a, type: 3} + m_Name: + m_EditorClassIdentifier: + PoseName: Controller Pointer Left + isTracked: {fileID: 0} + trackingState: {fileID: 0} + position: {fileID: 1805487408676636314, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + rotation: {fileID: -3341103204585363708, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + pose: {fileID: -6495569650943898615, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} +--- !u!114 &360924785 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360924782} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.860898, g: 0.8773585, b: 0.1779548, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Pose +--- !u!222 &360924786 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360924782} + m_CullTransparentMesh: 1 --- !u!1 &366208948 GameObject: m_ObjectHideFlags: 0 @@ -5738,6 +6050,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -5778,6 +6091,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -5796,7 +6121,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &474357745 GameObject: m_ObjectHideFlags: 0 @@ -6928,6 +7252,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -6968,6 +7293,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -7002,7 +7339,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &579305141 GameObject: m_ObjectHideFlags: 0 @@ -10137,13 +10473,15 @@ Transform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 855247512} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: -3.41, y: -0.24, z: 2} + m_LocalPosition: {x: 0, y: 0, z: 2} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 867397450} - {fileID: 169007645} - {fileID: 1654580157} + - {fileID: 1232393573} + - {fileID: 1335781104} m_Father: {fileID: 1588199579} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -10499,7 +10837,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 3, y: 0.368} + m_AnchoredPosition: {x: -0.5, y: 0.05} m_SizeDelta: {x: 400, y: 140} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &867397451 @@ -11254,6 +11592,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -11278,6 +11617,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: -4462678269106331646, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -11296,7 +11647,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &983759432 GameObject: m_ObjectHideFlags: 0 @@ -12155,6 +12505,7 @@ GameObject: - component: {fileID: 1060976102} - component: {fileID: 1060976104} - component: {fileID: 1060976105} + - component: {fileID: 1060976106} m_Layer: 0 m_Name: PlayerRig m_TagString: Untagged @@ -12268,6 +12619,18 @@ MonoBehaviour: Enabled: 1 m_HandRaycast: Enabled: 1 +--- !u!114 &1060976106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1060976100} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7f60faf6b28b7954b9ddf397eda40dc7, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1062713251 GameObject: m_ObjectHideFlags: 0 @@ -14700,6 +15063,107 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1228911008} m_CullTransparentMesh: 1 +--- !u!1 &1232393572 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1232393573} + - component: {fileID: 1232393576} + - component: {fileID: 1232393575} + - component: {fileID: 1232393574} + m_Layer: 0 + m_Name: ControllerPoseL + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1232393573 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232393572} + m_LocalRotation: {x: 0, y: -0.13052624, z: 0, w: 0.9914449} + m_LocalPosition: {x: 0, y: 0, z: 1.3105831} + m_LocalScale: {x: 0.003, y: 0.003, z: 0.003} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2115463875} + m_Father: {fileID: 855247513} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: -15, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -1.7, y: 0} + m_SizeDelta: {x: 800, y: 620} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1232393574 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232393572} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1232393575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232393572} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1232393576 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232393572} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 963194227} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 --- !u!1 &1235362498 GameObject: m_ObjectHideFlags: 0 @@ -15328,6 +15792,105 @@ MonoBehaviour: enabledColor: {r: 0, g: 1, b: 0, a: 1} disabledColor: {r: 1, g: 0, b: 0, a: 1} image: {fileID: 2026257814} +--- !u!1 &1301415411 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1301415412} + - component: {fileID: 1301415415} + - component: {fileID: 1301415414} + - component: {fileID: 1301415413} + m_Layer: 0 + m_Name: ControllerPointerRText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1301415412 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1301415411} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 95751957} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -10} + m_SizeDelta: {x: 780, y: 210} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1301415413 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1301415411} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 04725f4c022874d40a6e786b002b782a, type: 3} + m_Name: + m_EditorClassIdentifier: + PoseName: Controller Pointer Right + isTracked: {fileID: 0} + trackingState: {fileID: 0} + position: {fileID: -5730229631511484051, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + rotation: {fileID: -5246335118593862002, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + pose: {fileID: -8433335059429281244, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} +--- !u!114 &1301415414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1301415411} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.860898, g: 0.8773585, b: 0.1779548, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Pose +--- !u!222 &1301415415 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1301415411} + m_CullTransparentMesh: 1 --- !u!1 &1301507905 GameObject: m_ObjectHideFlags: 0 @@ -15581,6 +16144,107 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1330451524} m_CullTransparentMesh: 1 +--- !u!1 &1335781103 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1335781104} + - component: {fileID: 1335781107} + - component: {fileID: 1335781106} + - component: {fileID: 1335781105} + m_Layer: 0 + m_Name: ControllerPoseR + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1335781104 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1335781103} + m_LocalRotation: {x: 0, y: 0.13052616, z: 0, w: 0.9914449} + m_LocalPosition: {x: 0, y: 0, z: 0.79} + m_LocalScale: {x: 0.003, y: 0.003, z: 0.003} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 95751957} + m_Father: {fileID: 855247513} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 15, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 3.1, y: 0} + m_SizeDelta: {x: 800, y: 620} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1335781105 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1335781103} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1335781106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1335781103} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 1 +--- !u!223 &1335781107 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1335781103} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 2 + m_Camera: {fileID: 963194227} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 --- !u!1 &1337837810 GameObject: m_ObjectHideFlags: 0 @@ -18178,6 +18842,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -18218,6 +18883,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -18252,7 +18929,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1573123701 GameObject: m_ObjectHideFlags: 0 @@ -18357,8 +19033,8 @@ RectTransform: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1574464185} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.015, y: 0.015, z: 0.015} + m_LocalPosition: {x: 0, y: 0, z: 10} + m_LocalScale: {x: 0.2, y: 0.2, z: 0.2} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1162657276} @@ -18388,7 +19064,7 @@ Canvas: m_SortingBucketNormalizedSize: 0 m_AdditionalShaderChannelsFlag: 0 m_SortingLayerID: 0 - m_SortingOrder: 0 + m_SortingOrder: 3000 m_TargetDisplay: 0 --- !u!114 &1574464188 MonoBehaviour: @@ -19269,6 +19945,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -19309,6 +19986,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -19343,7 +20032,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1632315497 GameObject: m_ObjectHideFlags: 0 @@ -19658,6 +20346,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -19698,6 +20387,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -19716,7 +20417,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1640201746 GameObject: m_ObjectHideFlags: 0 @@ -19987,7 +20687,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 3, y: -1.299} + m_AnchoredPosition: {x: -0.5, y: -1} m_SizeDelta: {x: 800, y: 550} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1654580158 @@ -21005,6 +21705,105 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1807220543} m_CullTransparentMesh: 1 +--- !u!1 &1807340436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1807340437} + - component: {fileID: 1807340440} + - component: {fileID: 1807340439} + - component: {fileID: 1807340438} + m_Layer: 0 + m_Name: ControllerDeviceRText + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1807340437 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807340436} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 95751957} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 200} + m_SizeDelta: {x: 780, y: 210} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1807340438 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807340436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 04725f4c022874d40a6e786b002b782a, type: 3} + m_Name: + m_EditorClassIdentifier: + PoseName: Controller Device Right + isTracked: {fileID: -1219534774619098812, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + trackingState: {fileID: 7186331274470829537, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + position: {fileID: 7443918988805782556, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + rotation: {fileID: 7542131730279260107, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + pose: {fileID: 5353795866969974560, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} +--- !u!114 &1807340439 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807340436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.860898, g: 0.8773585, b: 0.1779548, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Pose +--- !u!222 &1807340440 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807340436} + m_CullTransparentMesh: 1 --- !u!1 &1808727839 GameObject: m_ObjectHideFlags: 0 @@ -21645,6 +22444,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -21685,6 +22485,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -21719,7 +22531,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &1863449114 GameObject: m_ObjectHideFlags: 0 @@ -23742,6 +24553,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -23766,6 +24578,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 728203289168863980, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -23784,7 +24608,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2002148294 GameObject: m_ObjectHideFlags: 0 @@ -23835,6 +24658,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -23859,6 +24683,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 8869308336890601743, guid: 699f4d2073ed2e34ea7f7944795b868c, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -23877,7 +24713,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2007418226 GameObject: m_ObjectHideFlags: 0 @@ -24286,6 +25121,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 0 m_Action: @@ -24326,6 +25162,18 @@ MonoBehaviour: m_Flags: 0 m_Flags: 0 m_Reference: {fileID: 0} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: Tracking State Input + m_Type: 0 + m_ExpectedControlType: + m_Id: 9d0b38fe-1f35-4a69-89e3-cd656a0016cd + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: Position m_Type: 0 @@ -24360,7 +25208,6 @@ MonoBehaviour: m_Action: Rotation m_Flags: 0 m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2026257812 GameObject: m_ObjectHideFlags: 0 @@ -25222,6 +26069,84 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2113810499} m_CullTransparentMesh: 0 +--- !u!1 &2115463874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2115463875} + - component: {fileID: 2115463877} + - component: {fileID: 2115463876} + m_Layer: 0 + m_Name: Panel + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2115463875 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2115463874} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 204292439} + - {fileID: 360924783} + m_Father: {fileID: 1232393573} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2115463876 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2115463874} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &2115463877 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2115463874} + m_CullTransparentMesh: 1 --- !u!1 &2130989217 GameObject: m_ObjectHideFlags: 0 diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/ActionToVisibilityISX.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/ActionToVisibilityISX.cs index fa7a305..ea3c87b 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/ActionToVisibilityISX.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/ActionToVisibilityISX.cs @@ -27,7 +27,7 @@ namespace UnityEngine.XR.OpenXR.Samples.ControllerSample if (m_ActionReference != null && m_ActionReference.action != null - && m_ActionReference.action.controls.Count > 0 + //&& m_ActionReference.action.controls.Count > 0 // The Count of InputActionProperty will become 0 after switching interaction profiles. && m_ActionReference.action.enabled == true) { m_TargetGameobject.SetActive(true); diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/AutomaticTrackingModeChanger.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/AutomaticTrackingModeChanger.cs index e8053fe..4c08673 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/AutomaticTrackingModeChanger.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/AutomaticTrackingModeChanger.cs @@ -24,7 +24,7 @@ namespace UnityEngine.XR.OpenXR.Samples.ControllerSample if (m_TimeRemainingTillChange <= 0.0f) { List inputSubsystems = new List(); - SubsystemManager.GetInstances(inputSubsystems); + SubsystemManager.GetSubsystems(inputSubsystems); XRInputSubsystem subsystem = inputSubsystems?[0]; if (subsystem != null) { diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/TrackingModeOrigin.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/TrackingModeOrigin.cs index 85bc1a9..3c7c0a4 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/TrackingModeOrigin.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/TrackingModeOrigin.cs @@ -138,7 +138,7 @@ namespace UnityEngine.XR.OpenXR.Samples.ControllerSample XRInputSubsystem subsystem = null; - SubsystemManager.GetInstances(s_InputSubsystems); + SubsystemManager.GetSubsystems(s_InputSubsystems); if(s_InputSubsystems.Count > 0) { subsystem = s_InputSubsystems[0]; diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/VIVE/RemoveRenderMask.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/VIVE/RemoveRenderMask.cs new file mode 100644 index 0000000..b5c7179 --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/VIVE/RemoveRenderMask.cs @@ -0,0 +1,37 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using UnityEngine.XR; + +namespace VIVE.OpenXR.Samples.OpenXRInput +{ + public class RemoveRenderMask : MonoBehaviour + { + private void OnEnable() + { + StartCoroutine(RemoveOcclusionMask()); + } + IEnumerator RemoveOcclusionMask() + { + // Find DisplaySubsystem + XRDisplaySubsystem display = null; + List displaySubsystems = new List(); + do + { + SubsystemManager.GetSubsystems(displaySubsystems); + foreach (var d in displaySubsystems) + { + if (d.running) + { + display = d; + break; + } + } + yield return null; + } while (display == null); + Debug.Log("RemoveOcclusionMask XRSettings.occlusionMaskScale = 0"); + XRSettings.occlusionMaskScale = 0; + XRSettings.useOcclusionMesh = false; + } + } +} \ No newline at end of file diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/VIVE/RemoveRenderMask.cs.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/VIVE/RemoveRenderMask.cs.meta new file mode 100644 index 0000000..23f1f3d --- /dev/null +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/Input/Scripts/VIVE/RemoveRenderMask.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 7f60faf6b28b7954b9ddf397eda40dc7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/PlaneDetection/Scripts/PlaneDetectionTestHandle.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/PlaneDetection/Scripts/PlaneDetectionTestHandle.cs index 06cf017..4365f86 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/PlaneDetection/Scripts/PlaneDetectionTestHandle.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/PlaneDetection/Scripts/PlaneDetectionTestHandle.cs @@ -29,7 +29,7 @@ public class PlaneDetectionTestHandle : MonoBehaviour void GetXRInputSubsystem() { List xrSubsystemList = new List(); - SubsystemManager.GetInstances(xrSubsystemList); + SubsystemManager.GetSubsystems(xrSubsystemList); foreach (var xrSubsystem in xrSubsystemList) { if (xrSubsystem.running) diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Controller.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Controller.cs index 5893548..17767ab 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Controller.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Controller.cs @@ -96,7 +96,11 @@ public class Controller : MonoBehaviour { GameObject ball = Instantiate(sphere, spawnPoint); Rigidbody rb = ball.GetComponent(); +#if UNITY_6000_0_OR_NEWER + rb.linearVelocity = ball.transform.parent.forward * shootVelocity; +#else rb.velocity = ball.transform.parent.forward * shootVelocity; +#endif rb.isKinematic = false; ball.transform.parent = null; } diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/FallingSphere.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/FallingSphere.cs index 42ae0bf..0e27ddf 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/FallingSphere.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/FallingSphere.cs @@ -21,7 +21,11 @@ namespace UnityEngine.XR.OpenXR.Samples.MeshingFeature { if (transform.position.y < -10) { +#if UNITY_6000_0_OR_NEWER + rb.linearVelocity = Vector3.zero; +#else rb.velocity = Vector3.zero; +#endif rb.angularVelocity = Vector3.zero; rb.MovePosition(starting); } diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/MeshingBehaviour.cs b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/MeshingBehaviour.cs index 3c6e10c..77302aa 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/MeshingBehaviour.cs +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/SceneUnderstanding/Meshing Subsystem Feature/MeshingBehaviour.cs @@ -85,7 +85,7 @@ namespace UnityEngine.XR.OpenXR.Samples.MeshingFeature } var meshSubsystems = new List(); - SubsystemManager.GetInstances(meshSubsystems); + SubsystemManager.GetSubsystems(meshSubsystems); if (meshSubsystems.Count == 1) { s_MeshSubsystem = meshSubsystems[0]; diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVE.OpenXR.Samples.asmdef b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVE.OpenXR.Samples.asmdef index 870fb96..6d41703 100644 --- a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVE.OpenXR.Samples.asmdef +++ b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVE.OpenXR.Samples.asmdef @@ -23,6 +23,11 @@ "autoReferenced": true, "defineConstraints": [], "versionDefines": [ + { + "name": "com.unity.textmeshpro", + "expression": "3.2.0-pre.10", + "define": "UNITY_TEXT_MESH_PRO_3_2_0_PRE_10_OR_NEWER" + }, { "name": "com.unity.xr.openxr", "expression": "1.6.0", @@ -32,12 +37,7 @@ "name": "com.unity.xr.openxr", "expression": "1.9.1", "define": "UNITY_XR_OPENXR_1_9_1" - }, - { - "name": "com.unity.textmeshpro", - "expression": "3.2.0-pre.10", - "define": "UNITY_TEXT_MESH_PRO_3_2_0_PRE_10_OR_NEWER" } ], "noEngineReferences": false -} +} \ No newline at end of file diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/ViveTracker/ViveTrackerSample.unity b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVETracker/VIVETracker.unity similarity index 100% rename from com.htc.upm.vive.openxr/Samples~/Samples/Samples/ViveTracker/ViveTrackerSample.unity rename to com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVETracker/VIVETracker.unity diff --git a/com.htc.upm.vive.openxr/Samples~/Samples/Samples/ViveTracker/ViveTrackerSample.unity.meta b/com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVETracker/VIVETracker.unity.meta similarity index 100% rename from com.htc.upm.vive.openxr/Samples~/Samples/Samples/ViveTracker/ViveTrackerSample.unity.meta rename to com.htc.upm.vive.openxr/Samples~/Samples/Samples/VIVETracker/VIVETracker.unity.meta diff --git a/com.htc.upm.vive.openxr/Samples~/Toolkits/Toolkits/BodyTracking(experimental)/Demo/BodyTracking.unity b/com.htc.upm.vive.openxr/Samples~/Toolkits/Toolkits/BodyTracking(experimental)/Demo/BodyTracking.unity index e09b301..f754b57 100644 --- a/com.htc.upm.vive.openxr/Samples~/Toolkits/Toolkits/BodyTracking(experimental)/Demo/BodyTracking.unity +++ b/com.htc.upm.vive.openxr/Samples~/Toolkits/Toolkits/BodyTracking(experimental)/Demo/BodyTracking.unity @@ -23034,7 +23034,7 @@ GameObject: - component: {fileID: 785420544} - component: {fileID: 785420543} - component: {fileID: 785420542} - - component: {fileID: 785420541} + - component: {fileID: 785420545} m_Layer: 5 m_Name: QuitBtn m_TagString: Untagged @@ -23063,18 +23063,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -96} m_SizeDelta: {x: 86.2, y: 30} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &785420541 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 785420539} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: b661f25ed5b57874290a0bafb5ad8234, type: 3} - m_Name: - m_EditorClassIdentifier: --- !u!114 &785420542 MonoBehaviour: m_ObjectHideFlags: 0 @@ -23119,8 +23107,8 @@ MonoBehaviour: m_OnClick: m_PersistentCalls: m_Calls: - - m_Target: {fileID: 785420541} - m_TargetAssemblyTypeName: Wave.Essence.Extra.QuitApplication, Wave.Essence + - m_Target: {fileID: 785420545} + m_TargetAssemblyTypeName: VIVE.OpenXR.Toolkits.Common.LeaveScene, VIVE.OpenXR.Toolkits m_MethodName: ExitGame m_Mode: 1 m_Arguments: @@ -23169,6 +23157,18 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 785420539} m_CullTransparentMesh: 1 +--- !u!114 &785420545 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 785420539} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 46285a19de0bb1b4f849a4b0bcfc5c0f, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &792366970 GameObject: m_ObjectHideFlags: 0 @@ -68792,6 +68792,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -68816,6 +68817,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: 3113219943245244623, guid: 7731a6c81e069424eb7df31b19b84b41, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: 49637aaa-d811-48fe-9f86-4076b1bbf006 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -68834,7 +68847,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!4 &2336634745151424894 Transform: m_ObjectHideFlags: 0 @@ -68947,6 +68959,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -68971,6 +68984,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: -5246335118593862002, guid: 7731a6c81e069424eb7df31b19b84b41, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: 49846443-d944-470e-969c-29e6fe616f69 + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -68989,7 +69014,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2336634745461817778 GameObject: m_ObjectHideFlags: 0 @@ -69698,6 +69722,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_TrackingType: 0 m_UpdateType: 0 + m_IgnoreTrackingState: 0 m_PositionInput: m_UseReference: 1 m_Action: @@ -69722,6 +69747,18 @@ MonoBehaviour: m_SingletonActionBindings: [] m_Flags: 0 m_Reference: {fileID: -3341103204585363708, guid: 7731a6c81e069424eb7df31b19b84b41, type: 3} + m_TrackingStateInput: + m_UseReference: 0 + m_Action: + m_Name: + m_Type: 0 + m_ExpectedControlType: + m_Id: 346b5aa3-6f99-4b26-847e-776c912c914e + m_Processors: + m_Interactions: + m_SingletonActionBindings: [] + m_Flags: 0 + m_Reference: {fileID: 0} m_PositionAction: m_Name: m_Type: 0 @@ -69740,7 +69777,6 @@ MonoBehaviour: m_Interactions: m_SingletonActionBindings: [] m_Flags: 0 - m_HasMigratedActions: 1 --- !u!1 &2336634746049650654 GameObject: m_ObjectHideFlags: 0 diff --git a/com.htc.upm.vive.openxr/package.json b/com.htc.upm.vive.openxr/package.json index 429d579..1970d95 100644 --- a/com.htc.upm.vive.openxr/package.json +++ b/com.htc.upm.vive.openxr/package.json @@ -1,7 +1,7 @@ { "name": "com.htc.upm.vive.openxr", "displayName": "VIVE OpenXR Plugin", - "version": "2.5.0", + "version": "2.5.1", "unity": "2021.3", "description": "The \"VIVE OpenXR Plugin\" package enables your application to run on VIVE devices. \nThis package is a bridge between VIVE devides and Unity OpenXR.\nThis package complements Unity's \"OpenXR Plugin\" package, and enables you to use extra features, as listed in the following.\n\n- Controller Input\n- Hand Tracking\n- Wrist Tracking\n- Eye Gaze\n- CompositionLayer\n- Facial Tracking\n\n\nYou can view the documentation for additional information.", "keywords": [ @@ -15,9 +15,10 @@ "url": "https://www.htc.com" }, "dependencies": { - "com.unity.inputsystem": "1.4.3", "com.unity.xr.management": "4.2.1", - "com.unity.xr.openxr": "1.3.1" + "com.unity.inputsystem": "1.7.0", + "com.unity.xr.openxr": "1.12.1", + "com.unity.xr.interaction.toolkit": "2.5.4" }, "samples": [ { @@ -33,6 +34,6 @@ ], "type": "library", "hideInEditor": false, - "documentationUrl": "https://developer.vive.com/resources/openxr/openxr-mobile/tutorials/unity/getting-started-openxr-mobile/", - "changelogUrl": "https://developer.vive.com/resources/openxr/openxr-mobile/download/latest/" + "documentationUrl": "https://developer.vive.com/resources/openxr/unity/tutorials/setup-and-installation/getting-started-with-openxr/", + "changelogUrl": "https://developer.vive.com/resources/openxr/unity/download/latest/" }